Regenerate gnulib files
[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"
268a13a5
TT
45#include "gdbsupport/filestuff.h"
46#include "gdbsupport/rsp-low.h"
6b940e6a 47#include "disasm.h"
f00aae0f 48#include "location.h"
c906108c 49
268a13a5 50#include "gdbsupport/gdb_sys_time.h"
c906108c 51
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"
268a13a5 71#include "gdbsupport/agent.h"
9accd112 72#include "btrace.h"
c0272db5 73#include "record-btrace.h"
325fac50 74#include <algorithm>
268a13a5
TT
75#include "gdbsupport/scoped_restore.h"
76#include "gdbsupport/environ.h"
77#include "gdbsupport/byte-vector.h"
39ef2f62 78#include <algorithm>
9d6eea31 79#include <unordered_map>
35b1e5cc 80
f6ac5f3d
PA
81/* The remote target. */
82
d9f719f1
PA
83static const char remote_doc[] = N_("\
84Use a remote computer via a serial line, using a gdb-specific protocol.\n\
85Specify the serial device it is connected to\n\
86(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).");
87
6b8edb51
PA
88#define OPAQUETHREADBYTES 8
89
90/* a 64 bit opaque identifier */
91typedef unsigned char threadref[OPAQUETHREADBYTES];
92
93struct gdb_ext_thread_info;
94struct threads_listing_context;
95typedef int (*rmt_thread_action) (threadref *ref, void *context);
96struct protocol_feature;
97struct packet_reg;
98
99struct stop_reply;
32603266 100typedef std::unique_ptr<stop_reply> stop_reply_up;
6b8edb51
PA
101
102/* Generic configuration support for packets the stub optionally
103 supports. Allows the user to specify the use of the packet as well
104 as allowing GDB to auto-detect support in the remote stub. */
105
106enum packet_support
107 {
108 PACKET_SUPPORT_UNKNOWN = 0,
109 PACKET_ENABLE,
110 PACKET_DISABLE
111 };
112
113/* Analyze a packet's return value and update the packet config
114 accordingly. */
115
116enum packet_result
117{
118 PACKET_ERROR,
119 PACKET_OK,
120 PACKET_UNKNOWN
121};
122
123struct threads_listing_context;
3c69da40
PA
124
125/* Stub vCont actions support.
126
127 Each field is a boolean flag indicating whether the stub reports
128 support for the corresponding action. */
129
130struct vCont_action_support
131{
132 /* vCont;t */
133 bool t = false;
134
135 /* vCont;r */
136 bool r = false;
137
138 /* vCont;s */
139 bool s = false;
140
141 /* vCont;S */
142 bool S = false;
143};
144
405feb71 145/* About this many threadids fit in a packet. */
3c69da40
PA
146
147#define MAXTHREADLISTRESULTS 32
148
149/* Data for the vFile:pread readahead cache. */
150
151struct readahead_cache
152{
153 /* Invalidate the readahead cache. */
154 void invalidate ();
155
156 /* Invalidate the readahead cache if it is holding data for FD. */
157 void invalidate_fd (int fd);
158
159 /* Serve pread from the readahead cache. Returns number of bytes
160 read, or 0 if the request can't be served from the cache. */
161 int pread (int fd, gdb_byte *read_buf, size_t len, ULONGEST offset);
162
163 /* The file descriptor for the file that is being cached. -1 if the
164 cache is invalid. */
165 int fd = -1;
166
167 /* The offset into the file that the cache buffer corresponds
168 to. */
169 ULONGEST offset = 0;
170
171 /* The buffer holding the cache contents. */
172 gdb_byte *buf = nullptr;
173 /* The buffer's size. We try to read as much as fits into a packet
174 at a time. */
175 size_t bufsize = 0;
176
177 /* Cache hit and miss counters. */
178 ULONGEST hit_count = 0;
179 ULONGEST miss_count = 0;
180};
181
182/* Description of the remote protocol for a given architecture. */
183
184struct packet_reg
185{
186 long offset; /* Offset into G packet. */
187 long regnum; /* GDB's internal register number. */
188 LONGEST pnum; /* Remote protocol register number. */
189 int in_g_packet; /* Always part of G packet. */
190 /* long size in bytes; == register_size (target_gdbarch (), regnum);
191 at present. */
192 /* char *name; == gdbarch_register_name (target_gdbarch (), regnum);
193 at present. */
194};
195
196struct remote_arch_state
197{
198 explicit remote_arch_state (struct gdbarch *gdbarch);
199
200 /* Description of the remote protocol registers. */
201 long sizeof_g_packet;
202
203 /* Description of the remote protocol registers indexed by REGNUM
204 (making an array gdbarch_num_regs in size). */
205 std::unique_ptr<packet_reg[]> regs;
206
207 /* This is the size (in chars) of the first response to the ``g''
208 packet. It is used as a heuristic when determining the maximum
209 size of memory-read and memory-write packets. A target will
210 typically only reserve a buffer large enough to hold the ``g''
211 packet. The size does not include packet overhead (headers and
212 trailers). */
213 long actual_register_packet_size;
214
215 /* This is the maximum size (in chars) of a non read/write packet.
216 It is also used as a cap on the size of read/write packets. */
217 long remote_packet_size;
218};
219
220/* Description of the remote protocol state for the currently
221 connected target. This is per-target state, and independent of the
222 selected architecture. */
223
224class remote_state
225{
226public:
227
228 remote_state ();
229 ~remote_state ();
230
231 /* Get the remote arch state for GDBARCH. */
232 struct remote_arch_state *get_remote_arch_state (struct gdbarch *gdbarch);
233
234public: /* data */
235
236 /* A buffer to use for incoming packets, and its current size. The
237 buffer is grown dynamically for larger incoming packets.
238 Outgoing packets may also be constructed in this buffer.
8d64371b 239 The size of the buffer is always at least REMOTE_PACKET_SIZE;
3c69da40
PA
240 REMOTE_PACKET_SIZE should be used to limit the length of outgoing
241 packets. */
8d64371b 242 gdb::char_vector buf;
3c69da40
PA
243
244 /* True if we're going through initial connection setup (finding out
245 about the remote side's threads, relocating symbols, etc.). */
246 bool starting_up = false;
247
248 /* If we negotiated packet size explicitly (and thus can bypass
249 heuristics for the largest packet size that will not overflow
250 a buffer in the stub), this will be set to that packet size.
251 Otherwise zero, meaning to use the guessed size. */
252 long explicit_packet_size = 0;
253
254 /* remote_wait is normally called when the target is running and
255 waits for a stop reply packet. But sometimes we need to call it
256 when the target is already stopped. We can send a "?" packet
257 and have remote_wait read the response. Or, if we already have
258 the response, we can stash it in BUF and tell remote_wait to
259 skip calling getpkt. This flag is set when BUF contains a
260 stop reply packet and the target is not waiting. */
261 int cached_wait_status = 0;
262
263 /* True, if in no ack mode. That is, neither GDB nor the stub will
264 expect acks from each other. The connection is assumed to be
265 reliable. */
266 bool noack_mode = false;
267
268 /* True if we're connected in extended remote mode. */
269 bool extended = false;
270
271 /* True if we resumed the target and we're waiting for the target to
272 stop. In the mean time, we can't start another command/query.
273 The remote server wouldn't be ready to process it, so we'd
274 timeout waiting for a reply that would never come and eventually
275 we'd close the connection. This can happen in asynchronous mode
276 because we allow GDB commands while the target is running. */
277 bool waiting_for_stop_reply = false;
278
279 /* The status of the stub support for the various vCont actions. */
280 vCont_action_support supports_vCont;
281
282 /* True if the user has pressed Ctrl-C, but the target hasn't
283 responded to that. */
284 bool ctrlc_pending_p = false;
285
286 /* True if we saw a Ctrl-C while reading or writing from/to the
287 remote descriptor. At that point it is not safe to send a remote
288 interrupt packet, so we instead remember we saw the Ctrl-C and
289 process it once we're done with sending/receiving the current
290 packet, which should be shortly. If however that takes too long,
291 and the user presses Ctrl-C again, we offer to disconnect. */
292 bool got_ctrlc_during_io = false;
293
294 /* Descriptor for I/O to remote machine. Initialize it to NULL so that
295 remote_open knows that we don't have a file open when the program
296 starts. */
297 struct serial *remote_desc = nullptr;
298
299 /* These are the threads which we last sent to the remote system. The
300 TID member will be -1 for all or -2 for not sent yet. */
301 ptid_t general_thread = null_ptid;
302 ptid_t continue_thread = null_ptid;
303
304 /* This is the traceframe which we last selected on the remote system.
305 It will be -1 if no traceframe is selected. */
306 int remote_traceframe_number = -1;
307
308 char *last_pass_packet = nullptr;
309
310 /* The last QProgramSignals packet sent to the target. We bypass
311 sending a new program signals list down to the target if the new
312 packet is exactly the same as the last we sent. IOW, we only let
313 the target know about program signals list changes. */
314 char *last_program_signals_packet = nullptr;
315
316 gdb_signal last_sent_signal = GDB_SIGNAL_0;
317
318 bool last_sent_step = false;
319
320 /* The execution direction of the last resume we got. */
321 exec_direction_kind last_resume_exec_dir = EXEC_FORWARD;
322
323 char *finished_object = nullptr;
324 char *finished_annex = nullptr;
325 ULONGEST finished_offset = 0;
326
327 /* Should we try the 'ThreadInfo' query packet?
328
329 This variable (NOT available to the user: auto-detect only!)
330 determines whether GDB will use the new, simpler "ThreadInfo"
331 query or the older, more complex syntax for thread queries.
332 This is an auto-detect variable (set to true at each connect,
333 and set to false when the target fails to recognize it). */
334 bool use_threadinfo_query = false;
335 bool use_threadextra_query = false;
336
337 threadref echo_nextthread {};
338 threadref nextthread {};
339 threadref resultthreadlist[MAXTHREADLISTRESULTS] {};
340
341 /* The state of remote notification. */
342 struct remote_notif_state *notif_state = nullptr;
343
344 /* The branch trace configuration. */
345 struct btrace_config btrace_config {};
346
347 /* The argument to the last "vFile:setfs:" packet we sent, used
348 to avoid sending repeated unnecessary "vFile:setfs:" packets.
349 Initialized to -1 to indicate that no "vFile:setfs:" packet
350 has yet been sent. */
351 int fs_pid = -1;
352
353 /* A readahead cache for vFile:pread. Often, reading a binary
354 involves a sequence of small reads. E.g., when parsing an ELF
355 file. A readahead cache helps mostly the case of remote
356 debugging on a connection with higher latency, due to the
357 request/reply nature of the RSP. We only cache data for a single
358 file descriptor at a time. */
359 struct readahead_cache readahead_cache;
360
361 /* The list of already fetched and acknowledged stop events. This
362 queue is used for notification Stop, and other notifications
363 don't need queue for their events, because the notification
364 events of Stop can't be consumed immediately, so that events
365 should be queued first, and be consumed by remote_wait_{ns,as}
366 one per time. Other notifications can consume their events
367 immediately, so queue is not needed for them. */
953edf2b 368 std::vector<stop_reply_up> stop_reply_queue;
3c69da40
PA
369
370 /* Asynchronous signal handle registered as event loop source for
371 when we have pending events ready to be passed to the core. */
372 struct async_event_handler *remote_async_inferior_event_token = nullptr;
373
374 /* FIXME: cagney/1999-09-23: Even though getpkt was called with
375 ``forever'' still use the normal timeout mechanism. This is
376 currently used by the ASYNC code to guarentee that target reads
377 during the initial connect always time-out. Once getpkt has been
378 modified to return a timeout indication and, in turn
379 remote_wait()/wait_for_inferior() have gained a timeout parameter
380 this can go away. */
381 int wait_forever_enabled_p = 1;
382
383private:
384 /* Mapping of remote protocol data for each gdbarch. Usually there
385 is only one entry here, though we may see more with stubs that
386 support multi-process. */
387 std::unordered_map<struct gdbarch *, remote_arch_state>
388 m_arch_states;
389};
6b8edb51 390
d9f719f1
PA
391static const target_info remote_target_info = {
392 "remote",
393 N_("Remote serial target in gdb-specific protocol"),
394 remote_doc
395};
396
3b3dac9b 397class remote_target : public process_stratum_target
f6ac5f3d
PA
398{
399public:
3b3dac9b 400 remote_target () = default;
6b8edb51 401 ~remote_target () override;
f6ac5f3d 402
d9f719f1
PA
403 const target_info &info () const override
404 { return remote_target_info; }
f6ac5f3d
PA
405
406 thread_control_capabilities get_thread_control_capabilities () override
407 { return tc_schedlock; }
408
d9f719f1
PA
409 /* Open a remote connection. */
410 static void open (const char *, int);
411
f6ac5f3d
PA
412 void close () override;
413
414 void detach (inferior *, int) override;
415 void disconnect (const char *, int) override;
416
417 void commit_resume () override;
418 void resume (ptid_t, int, enum gdb_signal) override;
419 ptid_t wait (ptid_t, struct target_waitstatus *, int) override;
420
421 void fetch_registers (struct regcache *, int) override;
422 void store_registers (struct regcache *, int) override;
423 void prepare_to_store (struct regcache *) override;
424
425 void files_info () override;
426
427 int insert_breakpoint (struct gdbarch *, struct bp_target_info *) override;
428
429 int remove_breakpoint (struct gdbarch *, struct bp_target_info *,
430 enum remove_bp_reason) override;
431
432
57810aa7
PA
433 bool stopped_by_sw_breakpoint () override;
434 bool supports_stopped_by_sw_breakpoint () override;
f6ac5f3d 435
57810aa7 436 bool stopped_by_hw_breakpoint () override;
f6ac5f3d 437
57810aa7 438 bool supports_stopped_by_hw_breakpoint () override;
f6ac5f3d 439
57810aa7 440 bool stopped_by_watchpoint () override;
f6ac5f3d 441
57810aa7 442 bool stopped_data_address (CORE_ADDR *) override;
f6ac5f3d 443
57810aa7 444 bool watchpoint_addr_within_range (CORE_ADDR, CORE_ADDR, int) override;
f6ac5f3d
PA
445
446 int can_use_hw_breakpoint (enum bptype, int, int) override;
447
448 int insert_hw_breakpoint (struct gdbarch *, struct bp_target_info *) override;
449
450 int remove_hw_breakpoint (struct gdbarch *, struct bp_target_info *) override;
451
452 int region_ok_for_hw_watchpoint (CORE_ADDR, int) override;
453
454 int insert_watchpoint (CORE_ADDR, int, enum target_hw_bp_type,
455 struct expression *) override;
456
457 int remove_watchpoint (CORE_ADDR, int, enum target_hw_bp_type,
458 struct expression *) override;
459
460 void kill () override;
461
462 void load (const char *, int) override;
463
464 void mourn_inferior () override;
465
adc6a863 466 void pass_signals (gdb::array_view<const unsigned char>) override;
f6ac5f3d
PA
467
468 int set_syscall_catchpoint (int, bool, int,
469 gdb::array_view<const int>) override;
470
adc6a863 471 void program_signals (gdb::array_view<const unsigned char>) override;
f6ac5f3d 472
57810aa7 473 bool thread_alive (ptid_t ptid) override;
f6ac5f3d
PA
474
475 const char *thread_name (struct thread_info *) override;
476
477 void update_thread_list () override;
478
a068643d 479 std::string pid_to_str (ptid_t) override;
f6ac5f3d
PA
480
481 const char *extra_thread_info (struct thread_info *) override;
482
483 ptid_t get_ada_task_ptid (long lwp, long thread) override;
484
485 thread_info *thread_handle_to_thread_info (const gdb_byte *thread_handle,
486 int handle_len,
487 inferior *inf) override;
488
3d6c6204
KB
489 gdb::byte_vector thread_info_to_thread_handle (struct thread_info *tp)
490 override;
491
f6ac5f3d
PA
492 void stop (ptid_t) override;
493
494 void interrupt () override;
495
496 void pass_ctrlc () override;
497
498 enum target_xfer_status xfer_partial (enum target_object object,
499 const char *annex,
500 gdb_byte *readbuf,
501 const gdb_byte *writebuf,
502 ULONGEST offset, ULONGEST len,
503 ULONGEST *xfered_len) override;
504
505 ULONGEST get_memory_xfer_limit () override;
506
507 void rcmd (const char *command, struct ui_file *output) override;
508
509 char *pid_to_exec_file (int pid) override;
510
511 void log_command (const char *cmd) override
512 {
513 serial_log_command (this, cmd);
514 }
515
516 CORE_ADDR get_thread_local_address (ptid_t ptid,
517 CORE_ADDR load_module_addr,
518 CORE_ADDR offset) override;
519
57810aa7 520 bool can_execute_reverse () override;
f6ac5f3d
PA
521
522 std::vector<mem_region> memory_map () override;
523
524 void flash_erase (ULONGEST address, LONGEST length) override;
525
526 void flash_done () override;
527
528 const struct target_desc *read_description () override;
529
530 int search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
531 const gdb_byte *pattern, ULONGEST pattern_len,
532 CORE_ADDR *found_addrp) override;
533
57810aa7 534 bool can_async_p () override;
f6ac5f3d 535
57810aa7 536 bool is_async_p () override;
f6ac5f3d
PA
537
538 void async (int) override;
539
540 void thread_events (int) override;
541
542 int can_do_single_step () override;
543
544 void terminal_inferior () override;
545
546 void terminal_ours () override;
547
57810aa7 548 bool supports_non_stop () override;
f6ac5f3d 549
57810aa7 550 bool supports_multi_process () override;
f6ac5f3d 551
57810aa7 552 bool supports_disable_randomization () override;
f6ac5f3d 553
57810aa7 554 bool filesystem_is_local () override;
f6ac5f3d
PA
555
556
557 int fileio_open (struct inferior *inf, const char *filename,
558 int flags, int mode, int warn_if_slow,
559 int *target_errno) override;
560
561 int fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
562 ULONGEST offset, int *target_errno) override;
563
564 int fileio_pread (int fd, gdb_byte *read_buf, int len,
565 ULONGEST offset, int *target_errno) override;
566
567 int fileio_fstat (int fd, struct stat *sb, int *target_errno) override;
568
569 int fileio_close (int fd, int *target_errno) override;
570
571 int fileio_unlink (struct inferior *inf,
572 const char *filename,
573 int *target_errno) override;
574
575 gdb::optional<std::string>
576 fileio_readlink (struct inferior *inf,
577 const char *filename,
578 int *target_errno) override;
579
57810aa7 580 bool supports_enable_disable_tracepoint () override;
f6ac5f3d 581
57810aa7 582 bool supports_string_tracing () override;
f6ac5f3d 583
57810aa7 584 bool supports_evaluation_of_breakpoint_conditions () override;
f6ac5f3d 585
57810aa7 586 bool can_run_breakpoint_commands () override;
f6ac5f3d
PA
587
588 void trace_init () override;
589
590 void download_tracepoint (struct bp_location *location) override;
591
57810aa7 592 bool can_download_tracepoint () override;
f6ac5f3d
PA
593
594 void download_trace_state_variable (const trace_state_variable &tsv) override;
595
596 void enable_tracepoint (struct bp_location *location) override;
597
598 void disable_tracepoint (struct bp_location *location) override;
599
600 void trace_set_readonly_regions () override;
601
602 void trace_start () override;
603
604 int get_trace_status (struct trace_status *ts) override;
605
606 void get_tracepoint_status (struct breakpoint *tp, struct uploaded_tp *utp)
607 override;
608
609 void trace_stop () override;
610
611 int trace_find (enum trace_find_type type, int num,
612 CORE_ADDR addr1, CORE_ADDR addr2, int *tpp) override;
613
57810aa7 614 bool get_trace_state_variable_value (int tsv, LONGEST *val) override;
f6ac5f3d
PA
615
616 int save_trace_data (const char *filename) override;
617
618 int upload_tracepoints (struct uploaded_tp **utpp) override;
619
620 int upload_trace_state_variables (struct uploaded_tsv **utsvp) override;
621
622 LONGEST get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len) override;
623
624 int get_min_fast_tracepoint_insn_len () override;
625
626 void set_disconnected_tracing (int val) override;
627
628 void set_circular_trace_buffer (int val) override;
629
630 void set_trace_buffer_size (LONGEST val) override;
631
57810aa7
PA
632 bool set_trace_notes (const char *user, const char *notes,
633 const char *stopnotes) override;
f6ac5f3d
PA
634
635 int core_of_thread (ptid_t ptid) override;
636
637 int verify_memory (const gdb_byte *data,
638 CORE_ADDR memaddr, ULONGEST size) override;
639
640
57810aa7 641 bool get_tib_address (ptid_t ptid, CORE_ADDR *addr) override;
f6ac5f3d
PA
642
643 void set_permissions () override;
644
645 bool static_tracepoint_marker_at (CORE_ADDR,
646 struct static_tracepoint_marker *marker)
647 override;
648
649 std::vector<static_tracepoint_marker>
650 static_tracepoint_markers_by_strid (const char *id) override;
651
652 traceframe_info_up traceframe_info () override;
653
57810aa7
PA
654 bool use_agent (bool use) override;
655 bool can_use_agent () override;
f6ac5f3d
PA
656
657 struct btrace_target_info *enable_btrace (ptid_t ptid,
658 const struct btrace_config *conf) override;
659
660 void disable_btrace (struct btrace_target_info *tinfo) override;
661
662 void teardown_btrace (struct btrace_target_info *tinfo) override;
663
664 enum btrace_error read_btrace (struct btrace_data *data,
665 struct btrace_target_info *btinfo,
666 enum btrace_read_type type) override;
667
668 const struct btrace_config *btrace_conf (const struct btrace_target_info *) override;
57810aa7 669 bool augmented_libraries_svr4_read () override;
f6ac5f3d 670 int follow_fork (int, int) override;
4ca51187 671 void follow_exec (struct inferior *, const char *) override;
f6ac5f3d
PA
672 int insert_fork_catchpoint (int) override;
673 int remove_fork_catchpoint (int) override;
674 int insert_vfork_catchpoint (int) override;
675 int remove_vfork_catchpoint (int) override;
676 int insert_exec_catchpoint (int) override;
677 int remove_exec_catchpoint (int) override;
678 enum exec_direction_kind execution_direction () override;
679
6b8edb51
PA
680public: /* Remote specific methods. */
681
682 void remote_download_command_source (int num, ULONGEST addr,
683 struct command_line *cmds);
684
685 void remote_file_put (const char *local_file, const char *remote_file,
686 int from_tty);
687 void remote_file_get (const char *remote_file, const char *local_file,
688 int from_tty);
689 void remote_file_delete (const char *remote_file, int from_tty);
690
691 int remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
692 ULONGEST offset, int *remote_errno);
693 int remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
694 ULONGEST offset, int *remote_errno);
695 int remote_hostio_pread_vFile (int fd, gdb_byte *read_buf, int len,
696 ULONGEST offset, int *remote_errno);
697
698 int remote_hostio_send_command (int command_bytes, int which_packet,
699 int *remote_errno, char **attachment,
700 int *attachment_len);
701 int remote_hostio_set_filesystem (struct inferior *inf,
702 int *remote_errno);
703 /* We should get rid of this and use fileio_open directly. */
704 int remote_hostio_open (struct inferior *inf, const char *filename,
705 int flags, int mode, int warn_if_slow,
706 int *remote_errno);
707 int remote_hostio_close (int fd, int *remote_errno);
708
709 int remote_hostio_unlink (inferior *inf, const char *filename,
710 int *remote_errno);
711
712 struct remote_state *get_remote_state ();
713
714 long get_remote_packet_size (void);
715 long get_memory_packet_size (struct memory_packet_config *config);
716
717 long get_memory_write_packet_size ();
718 long get_memory_read_packet_size ();
719
720 char *append_pending_thread_resumptions (char *p, char *endp,
721 ptid_t ptid);
d9f719f1 722 static void open_1 (const char *name, int from_tty, int extended_p);
f6ac5f3d 723 void start_remote (int from_tty, int extended_p);
00431a78 724 void remote_detach_1 (struct inferior *inf, int from_tty);
6b8edb51
PA
725
726 char *append_resumption (char *p, char *endp,
727 ptid_t ptid, int step, gdb_signal siggnal);
728 int remote_resume_with_vcont (ptid_t ptid, int step,
729 gdb_signal siggnal);
730
731 void add_current_inferior_and_thread (char *wait_status);
732
733 ptid_t wait_ns (ptid_t ptid, struct target_waitstatus *status,
734 int options);
735 ptid_t wait_as (ptid_t ptid, target_waitstatus *status,
736 int options);
737
738 ptid_t process_stop_reply (struct stop_reply *stop_reply,
739 target_waitstatus *status);
740
741 void remote_notice_new_inferior (ptid_t currthread, int executing);
742
743 void process_initial_stop_replies (int from_tty);
744
00431a78 745 thread_info *remote_add_thread (ptid_t ptid, bool running, bool executing);
6b8edb51
PA
746
747 void btrace_sync_conf (const btrace_config *conf);
748
749 void remote_btrace_maybe_reopen ();
750
751 void remove_new_fork_children (threads_listing_context *context);
752 void kill_new_fork_children (int pid);
753 void discard_pending_stop_replies (struct inferior *inf);
754 int stop_reply_queue_length ();
755
756 void check_pending_events_prevent_wildcard_vcont
757 (int *may_global_wildcard_vcont);
758
759 void discard_pending_stop_replies_in_queue ();
760 struct stop_reply *remote_notif_remove_queued_reply (ptid_t ptid);
761 struct stop_reply *queued_stop_reply (ptid_t ptid);
762 int peek_stop_reply (ptid_t ptid);
bb277751 763 void remote_parse_stop_reply (const char *buf, stop_reply *event);
6b8edb51
PA
764
765 void remote_stop_ns (ptid_t ptid);
766 void remote_interrupt_as ();
767 void remote_interrupt_ns ();
768
769 char *remote_get_noisy_reply ();
770 int remote_query_attached (int pid);
9ab8741a 771 inferior *remote_add_inferior (bool fake_pid_p, int pid, int attached,
6b8edb51
PA
772 int try_open_exec);
773
774 ptid_t remote_current_thread (ptid_t oldpid);
775 ptid_t get_current_thread (char *wait_status);
776
777 void set_thread (ptid_t ptid, int gen);
778 void set_general_thread (ptid_t ptid);
779 void set_continue_thread (ptid_t ptid);
780 void set_general_process ();
781
782 char *write_ptid (char *buf, const char *endbuf, ptid_t ptid);
783
784 int remote_unpack_thread_info_response (char *pkt, threadref *expectedref,
785 gdb_ext_thread_info *info);
786 int remote_get_threadinfo (threadref *threadid, int fieldset,
787 gdb_ext_thread_info *info);
788
789 int parse_threadlist_response (char *pkt, int result_limit,
790 threadref *original_echo,
791 threadref *resultlist,
792 int *doneflag);
793 int remote_get_threadlist (int startflag, threadref *nextthread,
794 int result_limit, int *done, int *result_count,
795 threadref *threadlist);
796
797 int remote_threadlist_iterator (rmt_thread_action stepfunction,
798 void *context, int looplimit);
799
800 int remote_get_threads_with_ql (threads_listing_context *context);
801 int remote_get_threads_with_qxfer (threads_listing_context *context);
802 int remote_get_threads_with_qthreadinfo (threads_listing_context *context);
803
804 void extended_remote_restart ();
805
806 void get_offsets ();
807
808 void remote_check_symbols ();
809
810 void remote_supported_packet (const struct protocol_feature *feature,
811 enum packet_support support,
812 const char *argument);
813
814 void remote_query_supported ();
815
816 void remote_packet_size (const protocol_feature *feature,
817 packet_support support, const char *value);
818
819 void remote_serial_quit_handler ();
820
821 void remote_detach_pid (int pid);
822
823 void remote_vcont_probe ();
824
825 void remote_resume_with_hc (ptid_t ptid, int step,
826 gdb_signal siggnal);
827
828 void send_interrupt_sequence ();
829 void interrupt_query ();
830
831 void remote_notif_get_pending_events (notif_client *nc);
832
833 int fetch_register_using_p (struct regcache *regcache,
834 packet_reg *reg);
835 int send_g_packet ();
836 void process_g_packet (struct regcache *regcache);
837 void fetch_registers_using_g (struct regcache *regcache);
838 int store_register_using_P (const struct regcache *regcache,
839 packet_reg *reg);
840 void store_registers_using_G (const struct regcache *regcache);
841
842 void set_remote_traceframe ();
843
844 void check_binary_download (CORE_ADDR addr);
845
846 target_xfer_status remote_write_bytes_aux (const char *header,
847 CORE_ADDR memaddr,
848 const gdb_byte *myaddr,
849 ULONGEST len_units,
850 int unit_size,
851 ULONGEST *xfered_len_units,
852 char packet_format,
853 int use_length);
854
855 target_xfer_status remote_write_bytes (CORE_ADDR memaddr,
856 const gdb_byte *myaddr, ULONGEST len,
857 int unit_size, ULONGEST *xfered_len);
858
859 target_xfer_status remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr,
860 ULONGEST len_units,
861 int unit_size, ULONGEST *xfered_len_units);
862
863 target_xfer_status remote_xfer_live_readonly_partial (gdb_byte *readbuf,
864 ULONGEST memaddr,
865 ULONGEST len,
866 int unit_size,
867 ULONGEST *xfered_len);
868
869 target_xfer_status remote_read_bytes (CORE_ADDR memaddr,
870 gdb_byte *myaddr, ULONGEST len,
871 int unit_size,
872 ULONGEST *xfered_len);
873
874 packet_result remote_send_printf (const char *format, ...)
875 ATTRIBUTE_PRINTF (2, 3);
876
877 target_xfer_status remote_flash_write (ULONGEST address,
878 ULONGEST length, ULONGEST *xfered_len,
879 const gdb_byte *data);
880
881 int readchar (int timeout);
882
883 void remote_serial_write (const char *str, int len);
884
885 int putpkt (const char *buf);
886 int putpkt_binary (const char *buf, int cnt);
887
8d64371b
TT
888 int putpkt (const gdb::char_vector &buf)
889 {
890 return putpkt (buf.data ());
891 }
892
6b8edb51 893 void skip_frame ();
8d64371b
TT
894 long read_frame (gdb::char_vector *buf_p);
895 void getpkt (gdb::char_vector *buf, int forever);
896 int getpkt_or_notif_sane_1 (gdb::char_vector *buf, int forever,
6b8edb51 897 int expecting_notif, int *is_notif);
8d64371b
TT
898 int getpkt_sane (gdb::char_vector *buf, int forever);
899 int getpkt_or_notif_sane (gdb::char_vector *buf, int forever,
6b8edb51
PA
900 int *is_notif);
901 int remote_vkill (int pid);
902 void remote_kill_k ();
903
904 void extended_remote_disable_randomization (int val);
905 int extended_remote_run (const std::string &args);
906
907 void send_environment_packet (const char *action,
908 const char *packet,
909 const char *value);
910
911 void extended_remote_environment_support ();
3c69da40 912 void extended_remote_set_inferior_cwd ();
80152258 913
3c69da40
PA
914 target_xfer_status remote_write_qxfer (const char *object_name,
915 const char *annex,
916 const gdb_byte *writebuf,
917 ULONGEST offset, LONGEST len,
918 ULONGEST *xfered_len,
919 struct packet_config *packet);
43c3a0e4 920
3c69da40
PA
921 target_xfer_status remote_read_qxfer (const char *object_name,
922 const char *annex,
923 gdb_byte *readbuf, ULONGEST offset,
924 LONGEST len,
925 ULONGEST *xfered_len,
926 struct packet_config *packet);
43c3a0e4 927
3c69da40 928 void push_stop_reply (struct stop_reply *new_event);
43c3a0e4 929
3c69da40 930 bool vcont_r_supported ();
43c3a0e4 931
3c69da40 932 void packet_command (const char *args, int from_tty);
43c3a0e4 933
3c69da40 934private: /* data fields */
43c3a0e4 935
3c69da40
PA
936 /* The remote state. Don't reference this directly. Use the
937 get_remote_state method instead. */
938 remote_state m_remote_state;
43c3a0e4
PA
939};
940
3c69da40
PA
941static const target_info extended_remote_target_info = {
942 "extended-remote",
943 N_("Extended remote serial target in gdb-specific protocol"),
944 remote_doc
945};
ea9c271d 946
3c69da40
PA
947/* Set up the extended remote target by extending the standard remote
948 target and adding to it. */
949
950class extended_remote_target final : public remote_target
ea9c271d 951{
9d6eea31 952public:
3c69da40
PA
953 const target_info &info () const override
954 { return extended_remote_target_info; }
9d6eea31 955
3c69da40
PA
956 /* Open an extended-remote connection. */
957 static void open (const char *, int);
de44f5a7 958
3c69da40
PA
959 bool can_create_inferior () override { return true; }
960 void create_inferior (const char *, const std::string &,
961 char **, int) override;
9d6eea31 962
3c69da40 963 void detach (inferior *, int) override;
9d6eea31 964
3c69da40
PA
965 bool can_attach () override { return true; }
966 void attach (const char *, int) override;
be2a5f71 967
3c69da40
PA
968 void post_attach (int) override;
969 bool supports_disable_randomization () override;
970};
1e51243a 971
3c69da40 972/* Per-program-space data key. */
7b4a314f
TT
973static const struct program_space_key<char, gdb::xfree_deleter<char>>
974 remote_pspace_data;
2d717e4f 975
3c69da40
PA
976/* The variable registered as the control variable used by the
977 remote exec-file commands. While the remote exec-file setting is
978 per-program-space, the set/show machinery uses this as the
979 location of the remote exec-file value. */
980static char *remote_exec_file_var;
a6f3e723 981
3c69da40
PA
982/* The size to align memory write packets, when practical. The protocol
983 does not guarantee any alignment, and gdb will generate short
984 writes and unaligned writes, but even as a best-effort attempt this
985 can improve bulk transfers. For instance, if a write is misaligned
986 relative to the target's data bus, the stub may need to make an extra
987 round trip fetching data from the target. This doesn't make a
988 huge difference, but it's easy to do, so we try to be helpful.
82f73884 989
3c69da40
PA
990 The alignment chosen is arbitrary; usually data bus width is
991 important here, not the possibly larger cache line size. */
992enum { REMOTE_ALIGN_WRITES = 16 };
82f73884 993
3c69da40 994/* Prototypes for local functions. */
74531fed 995
3c69da40 996static int hexnumlen (ULONGEST num);
782b2b07 997
3c69da40 998static int stubhex (int ch);
5d93a237 999
3c69da40 1000static int hexnumstr (char *, ULONGEST);
048094ac 1001
3c69da40 1002static int hexnumnstr (char *, ULONGEST, int);
47f8a51d 1003
3c69da40 1004static CORE_ADDR remote_address_masked (CORE_ADDR);
262e1174 1005
3c69da40 1006static void print_packet (const char *);
747dc59d 1007
3c69da40 1008static int stub_unpack_int (char *buff, int fieldlength);
5e4a05c4 1009
3c69da40 1010struct packet_config;
b73be471 1011
3c69da40 1012static void show_packet_config_cmd (struct packet_config *config);
280ceea3 1013
3c69da40
PA
1014static void show_remote_protocol_packet_cmd (struct ui_file *file,
1015 int from_tty,
1016 struct cmd_list_element *c,
1017 const char *value);
8e88304f 1018
3c69da40 1019static ptid_t read_ptid (const char *buf, const char **obuf);
3a00c802 1020
3c69da40 1021static void remote_async_inferior_event_handler (gdb_client_data);
b80fafe3 1022
eefce37f 1023static bool remote_read_description_p (struct target_ops *target);
88b496c3 1024
05be00a8 1025static void remote_console_output (const char *msg);
5965e028 1026
3c69da40 1027static void remote_btrace_reset (remote_state *rs);
f4abbc16 1028
3c69da40 1029static void remote_unpush_and_throw (void);
15a201c8 1030
3c69da40 1031/* For "remote". */
80152258 1032
3c69da40 1033static struct cmd_list_element *remote_cmdlist;
9d6eea31 1034
3c69da40 1035/* For "set remote" and "show remote". */
6b8edb51 1036
3c69da40
PA
1037static struct cmd_list_element *remote_set_cmdlist;
1038static struct cmd_list_element *remote_show_cmdlist;
6b8edb51 1039
3c69da40 1040/* Controls whether GDB is willing to use range stepping. */
6b8edb51 1041
491144b5 1042static bool use_range_stepping = true;
3c69da40
PA
1043
1044/* The max number of chars in debug output. The rest of chars are
1045 omitted. */
1046
1047#define REMOTE_DEBUG_MAX_CHAR 512
ea9c271d 1048
7aabaf9d
SM
1049/* Private data that we'll store in (struct thread_info)->priv. */
1050struct remote_thread_info : public private_thread_info
dc146f7c 1051{
7aabaf9d
SM
1052 std::string extra;
1053 std::string name;
1054 int core = -1;
799a2abe 1055
f6327dcb
KB
1056 /* Thread handle, perhaps a pthread_t or thread_t value, stored as a
1057 sequence of bytes. */
7aabaf9d 1058 gdb::byte_vector thread_handle;
f6327dcb 1059
799a2abe 1060 /* Whether the target stopped for a breakpoint/watchpoint. */
7aabaf9d 1061 enum target_stop_reason stop_reason = TARGET_STOPPED_BY_NO_REASON;
799a2abe
PA
1062
1063 /* This is set to the data address of the access causing the target
1064 to stop for a watchpoint. */
7aabaf9d 1065 CORE_ADDR watch_data_address = 0;
85ad3aaf
PA
1066
1067 /* Fields used by the vCont action coalescing implemented in
1068 remote_resume / remote_commit_resume. remote_resume stores each
1069 thread's last resume request in these fields, so that a later
1070 remote_commit_resume knows which is the proper action for this
1071 thread to include in the vCont packet. */
1072
1073 /* True if the last target_resume call for this thread was a step
1074 request, false if a continue request. */
7aabaf9d 1075 int last_resume_step = 0;
85ad3aaf
PA
1076
1077 /* The signal specified in the last target_resume call for this
1078 thread. */
7aabaf9d 1079 gdb_signal last_resume_sig = GDB_SIGNAL_0;
85ad3aaf
PA
1080
1081 /* Whether this thread was already vCont-resumed on the remote
1082 side. */
7aabaf9d 1083 int vcont_resumed = 0;
dc146f7c
VP
1084};
1085
de44f5a7 1086remote_state::remote_state ()
8d64371b 1087 : buf (400)
de44f5a7 1088{
de44f5a7
PA
1089}
1090
1091remote_state::~remote_state ()
1092{
1093 xfree (this->last_pass_packet);
1094 xfree (this->last_program_signals_packet);
de44f5a7
PA
1095 xfree (this->finished_object);
1096 xfree (this->finished_annex);
cf792862
TT
1097}
1098
35b1e5cc
SS
1099/* Utility: generate error from an incoming stub packet. */
1100static void
1101trace_error (char *buf)
1102{
1103 if (*buf++ != 'E')
1104 return; /* not an error msg */
1105 switch (*buf)
1106 {
1107 case '1': /* malformed packet error */
1108 if (*++buf == '0') /* general case: */
1109 error (_("remote.c: error in outgoing packet."));
1110 else
1111 error (_("remote.c: error in outgoing packet at field #%ld."),
1112 strtol (buf, NULL, 16));
35b1e5cc
SS
1113 default:
1114 error (_("Target returns error code '%s'."), buf);
1115 }
1116}
1117
1118/* Utility: wait for reply from stub, while accepting "O" packets. */
b6bb3468 1119
6b8edb51
PA
1120char *
1121remote_target::remote_get_noisy_reply ()
35b1e5cc 1122{
b6bb3468
PA
1123 struct remote_state *rs = get_remote_state ();
1124
35b1e5cc
SS
1125 do /* Loop on reply from remote stub. */
1126 {
1127 char *buf;
a744cf53 1128
0df8b418 1129 QUIT; /* Allow user to bail out with ^C. */
8d64371b
TT
1130 getpkt (&rs->buf, 0);
1131 buf = rs->buf.data ();
ad91cd99 1132 if (buf[0] == 'E')
35b1e5cc 1133 trace_error (buf);
61012eef 1134 else if (startswith (buf, "qRelocInsn:"))
dde08ee1
PA
1135 {
1136 ULONGEST ul;
1137 CORE_ADDR from, to, org_to;
256642e8 1138 const char *p, *pp;
dde08ee1 1139 int adjusted_size = 0;
7556d4a4 1140 int relocated = 0;
dde08ee1
PA
1141
1142 p = buf + strlen ("qRelocInsn:");
1143 pp = unpack_varlen_hex (p, &ul);
1144 if (*pp != ';')
cb91c06a 1145 error (_("invalid qRelocInsn packet: %s"), buf);
dde08ee1
PA
1146 from = ul;
1147
1148 p = pp + 1;
a9cbf802 1149 unpack_varlen_hex (p, &ul);
dde08ee1
PA
1150 to = ul;
1151
1152 org_to = to;
1153
a70b8144 1154 try
dde08ee1 1155 {
f5656ead 1156 gdbarch_relocate_instruction (target_gdbarch (), &to, from);
7556d4a4 1157 relocated = 1;
dde08ee1 1158 }
230d2906 1159 catch (const gdb_exception &ex)
7556d4a4
PA
1160 {
1161 if (ex.error == MEMORY_ERROR)
1162 {
1163 /* Propagate memory errors silently back to the
1164 target. The stub may have limited the range of
1165 addresses we can write to, for example. */
1166 }
1167 else
1168 {
1169 /* Something unexpectedly bad happened. Be verbose
1170 so we can tell what, and propagate the error back
1171 to the stub, so it doesn't get stuck waiting for
1172 a response. */
1173 exception_fprintf (gdb_stderr, ex,
1174 _("warning: relocating instruction: "));
1175 }
1176 putpkt ("E01");
1177 }
1178
1179 if (relocated)
dde08ee1
PA
1180 {
1181 adjusted_size = to - org_to;
1182
8d64371b 1183 xsnprintf (buf, rs->buf.size (), "qRelocInsn:%x", adjusted_size);
dde08ee1
PA
1184 putpkt (buf);
1185 }
dde08ee1 1186 }
ad91cd99 1187 else if (buf[0] == 'O' && buf[1] != 'K')
35b1e5cc
SS
1188 remote_console_output (buf + 1); /* 'O' message from stub */
1189 else
0df8b418 1190 return buf; /* Here's the actual reply. */
35b1e5cc
SS
1191 }
1192 while (1);
1193}
3c3bea1c 1194
9d6eea31
PA
1195struct remote_arch_state *
1196remote_state::get_remote_arch_state (struct gdbarch *gdbarch)
d01949b6 1197{
43c3a0e4
PA
1198 remote_arch_state *rsa;
1199
1200 auto it = this->m_arch_states.find (gdbarch);
1201 if (it == this->m_arch_states.end ())
9d6eea31 1202 {
43c3a0e4
PA
1203 auto p = this->m_arch_states.emplace (std::piecewise_construct,
1204 std::forward_as_tuple (gdbarch),
1205 std::forward_as_tuple (gdbarch));
1206 rsa = &p.first->second;
9d6eea31
PA
1207
1208 /* Make sure that the packet buffer is plenty big enough for
1209 this architecture. */
8d64371b
TT
1210 if (this->buf.size () < rsa->remote_packet_size)
1211 this->buf.resize (2 * rsa->remote_packet_size);
9d6eea31 1212 }
43c3a0e4
PA
1213 else
1214 rsa = &it->second;
1215
1216 return rsa;
d01949b6
AC
1217}
1218
0b83947e
DJ
1219/* Fetch the global remote target state. */
1220
6b8edb51
PA
1221remote_state *
1222remote_target::get_remote_state ()
0b83947e
DJ
1223{
1224 /* Make sure that the remote architecture state has been
1225 initialized, because doing so might reallocate rs->buf. Any
1226 function which calls getpkt also needs to be mindful of changes
1227 to rs->buf, but this call limits the number of places which run
1228 into trouble. */
3c69da40 1229 m_remote_state.get_remote_arch_state (target_gdbarch ());
0b83947e 1230
3c69da40 1231 return &m_remote_state;
0b83947e
DJ
1232}
1233
94585166
DB
1234/* Fetch the remote exec-file from the current program space. */
1235
1236static const char *
1237get_remote_exec_file (void)
1238{
1239 char *remote_exec_file;
1240
7b4a314f 1241 remote_exec_file = remote_pspace_data.get (current_program_space);
94585166
DB
1242 if (remote_exec_file == NULL)
1243 return "";
1244
1245 return remote_exec_file;
1246}
1247
1248/* Set the remote exec file for PSPACE. */
1249
1250static void
1251set_pspace_remote_exec_file (struct program_space *pspace,
7b4a314f 1252 const char *remote_exec_file)
94585166 1253{
7b4a314f 1254 char *old_file = remote_pspace_data.get (pspace);
94585166
DB
1255
1256 xfree (old_file);
7b4a314f 1257 remote_pspace_data.set (pspace, xstrdup (remote_exec_file));
94585166
DB
1258}
1259
1260/* The "set/show remote exec-file" set command hook. */
1261
1262static void
eb4c3f4a 1263set_remote_exec_file (const char *ignored, int from_tty,
94585166
DB
1264 struct cmd_list_element *c)
1265{
1266 gdb_assert (remote_exec_file_var != NULL);
1267 set_pspace_remote_exec_file (current_program_space, remote_exec_file_var);
1268}
1269
1270/* The "set/show remote exec-file" show command hook. */
1271
1272static void
1273show_remote_exec_file (struct ui_file *file, int from_tty,
1274 struct cmd_list_element *cmd, const char *value)
1275{
1276 fprintf_filtered (file, "%s\n", remote_exec_file_var);
1277}
1278
c21236dc
PA
1279static int
1280map_regcache_remote_table (struct gdbarch *gdbarch, struct packet_reg *regs)
d01949b6 1281{
74ca34ce 1282 int regnum, num_remote_regs, offset;
74ca34ce 1283 struct packet_reg **remote_regs;
ea9c271d 1284
4a22f64d 1285 for (regnum = 0; regnum < gdbarch_num_regs (gdbarch); regnum++)
ad10f812 1286 {
c21236dc 1287 struct packet_reg *r = &regs[regnum];
baef701f 1288
4a22f64d 1289 if (register_size (gdbarch, regnum) == 0)
baef701f
DJ
1290 /* Do not try to fetch zero-sized (placeholder) registers. */
1291 r->pnum = -1;
1292 else
1293 r->pnum = gdbarch_remote_register_number (gdbarch, regnum);
1294
b323314b 1295 r->regnum = regnum;
74ca34ce
DJ
1296 }
1297
1298 /* Define the g/G packet format as the contents of each register
1299 with a remote protocol number, in order of ascending protocol
1300 number. */
1301
224c3ddb 1302 remote_regs = XALLOCAVEC (struct packet_reg *, gdbarch_num_regs (gdbarch));
f57d151a 1303 for (num_remote_regs = 0, regnum = 0;
4a22f64d 1304 regnum < gdbarch_num_regs (gdbarch);
f57d151a 1305 regnum++)
c21236dc
PA
1306 if (regs[regnum].pnum != -1)
1307 remote_regs[num_remote_regs++] = &regs[regnum];
7d58c67d 1308
39ef2f62
CB
1309 std::sort (remote_regs, remote_regs + num_remote_regs,
1310 [] (const packet_reg *a, const packet_reg *b)
1311 { return a->pnum < b->pnum; });
74ca34ce
DJ
1312
1313 for (regnum = 0, offset = 0; regnum < num_remote_regs; regnum++)
1314 {
1315 remote_regs[regnum]->in_g_packet = 1;
1316 remote_regs[regnum]->offset = offset;
4a22f64d 1317 offset += register_size (gdbarch, remote_regs[regnum]->regnum);
ad10f812
AC
1318 }
1319
c21236dc
PA
1320 return offset;
1321}
1322
1323/* Given the architecture described by GDBARCH, return the remote
1324 protocol register's number and the register's offset in the g/G
1325 packets of GDB register REGNUM, in PNUM and POFFSET respectively.
1326 If the target does not have a mapping for REGNUM, return false,
1327 otherwise, return true. */
1328
1329int
1330remote_register_number_and_offset (struct gdbarch *gdbarch, int regnum,
1331 int *pnum, int *poffset)
1332{
c21236dc
PA
1333 gdb_assert (regnum < gdbarch_num_regs (gdbarch));
1334
b80406ac 1335 std::vector<packet_reg> regs (gdbarch_num_regs (gdbarch));
c21236dc 1336
b80406ac 1337 map_regcache_remote_table (gdbarch, regs.data ());
c21236dc
PA
1338
1339 *pnum = regs[regnum].pnum;
1340 *poffset = regs[regnum].offset;
1341
c21236dc
PA
1342 return *pnum != -1;
1343}
1344
9d6eea31 1345remote_arch_state::remote_arch_state (struct gdbarch *gdbarch)
c21236dc 1346{
c21236dc
PA
1347 /* Use the architecture to build a regnum<->pnum table, which will be
1348 1:1 unless a feature set specifies otherwise. */
9d6eea31 1349 this->regs.reset (new packet_reg [gdbarch_num_regs (gdbarch)] ());
c21236dc 1350
74ca34ce
DJ
1351 /* Record the maximum possible size of the g packet - it may turn out
1352 to be smaller. */
9d6eea31
PA
1353 this->sizeof_g_packet
1354 = map_regcache_remote_table (gdbarch, this->regs.get ());
74ca34ce 1355
0df8b418 1356 /* Default maximum number of characters in a packet body. Many
d01949b6
AC
1357 remote stubs have a hardwired buffer size of 400 bytes
1358 (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
1359 as the maximum packet-size to ensure that the packet and an extra
1360 NUL character can always fit in the buffer. This stops GDB
1361 trashing stubs that try to squeeze an extra NUL into what is
ea9c271d 1362 already a full buffer (As of 1999-12-04 that was most stubs). */
9d6eea31 1363 this->remote_packet_size = 400 - 1;
d01949b6 1364
ea9c271d 1365 /* This one is filled in when a ``g'' packet is received. */
9d6eea31 1366 this->actual_register_packet_size = 0;
ea9c271d
DJ
1367
1368 /* Should rsa->sizeof_g_packet needs more space than the
0df8b418
MS
1369 default, adjust the size accordingly. Remember that each byte is
1370 encoded as two characters. 32 is the overhead for the packet
1371 header / footer. NOTE: cagney/1999-10-26: I suspect that 8
d01949b6 1372 (``$NN:G...#NN'') is a better guess, the below has been padded a
23860348 1373 little. */
9d6eea31
PA
1374 if (this->sizeof_g_packet > ((this->remote_packet_size - 32) / 2))
1375 this->remote_packet_size = (this->sizeof_g_packet * 2 + 32);
ea9c271d
DJ
1376}
1377
6b8edb51
PA
1378/* Get a pointer to the current remote target. If not connected to a
1379 remote target, return NULL. */
1380
1381static remote_target *
1382get_current_remote_target ()
1383{
1384 target_ops *proc_target = find_target_at (process_stratum);
1385 return dynamic_cast<remote_target *> (proc_target);
1386}
1387
ea9c271d
DJ
1388/* Return the current allowed size of a remote packet. This is
1389 inferred from the current architecture, and should be used to
1390 limit the length of outgoing packets. */
6b8edb51
PA
1391long
1392remote_target::get_remote_packet_size ()
ea9c271d 1393{
be2a5f71 1394 struct remote_state *rs = get_remote_state ();
9d6eea31 1395 remote_arch_state *rsa = rs->get_remote_arch_state (target_gdbarch ());
ea9c271d 1396
be2a5f71
DJ
1397 if (rs->explicit_packet_size)
1398 return rs->explicit_packet_size;
1399
ea9c271d 1400 return rsa->remote_packet_size;
d01949b6
AC
1401}
1402
ad10f812 1403static struct packet_reg *
5cd63fda
PA
1404packet_reg_from_regnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
1405 long regnum)
ad10f812 1406{
5cd63fda 1407 if (regnum < 0 && regnum >= gdbarch_num_regs (gdbarch))
b323314b
AC
1408 return NULL;
1409 else
ad10f812 1410 {
ea9c271d 1411 struct packet_reg *r = &rsa->regs[regnum];
a744cf53 1412
b323314b
AC
1413 gdb_assert (r->regnum == regnum);
1414 return r;
ad10f812 1415 }
ad10f812
AC
1416}
1417
1418static struct packet_reg *
5cd63fda
PA
1419packet_reg_from_pnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
1420 LONGEST pnum)
ad10f812 1421{
b323314b 1422 int i;
a744cf53 1423
5cd63fda 1424 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
ad10f812 1425 {
ea9c271d 1426 struct packet_reg *r = &rsa->regs[i];
a744cf53 1427
b323314b
AC
1428 if (r->pnum == pnum)
1429 return r;
ad10f812
AC
1430 }
1431 return NULL;
d01949b6
AC
1432}
1433
9a7071a8
JB
1434/* Allow the user to specify what sequence to send to the remote
1435 when he requests a program interruption: Although ^C is usually
1436 what remote systems expect (this is the default, here), it is
1437 sometimes preferable to send a break. On other systems such
1438 as the Linux kernel, a break followed by g, which is Magic SysRq g
1439 is required in order to interrupt the execution. */
1440const char interrupt_sequence_control_c[] = "Ctrl-C";
1441const char interrupt_sequence_break[] = "BREAK";
1442const char interrupt_sequence_break_g[] = "BREAK-g";
40478521 1443static const char *const interrupt_sequence_modes[] =
9a7071a8
JB
1444 {
1445 interrupt_sequence_control_c,
1446 interrupt_sequence_break,
1447 interrupt_sequence_break_g,
1448 NULL
1449 };
1450static const char *interrupt_sequence_mode = interrupt_sequence_control_c;
1451
1452static void
1453show_interrupt_sequence (struct ui_file *file, int from_tty,
1454 struct cmd_list_element *c,
1455 const char *value)
1456{
1457 if (interrupt_sequence_mode == interrupt_sequence_control_c)
1458 fprintf_filtered (file,
1459 _("Send the ASCII ETX character (Ctrl-c) "
1460 "to the remote target to interrupt the "
1461 "execution of the program.\n"));
1462 else if (interrupt_sequence_mode == interrupt_sequence_break)
1463 fprintf_filtered (file,
1464 _("send a break signal to the remote target "
1465 "to interrupt the execution of the program.\n"));
1466 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
1467 fprintf_filtered (file,
1468 _("Send a break signal and 'g' a.k.a. Magic SysRq g to "
1469 "the remote target to interrupt the execution "
1470 "of Linux kernel.\n"));
1471 else
1472 internal_error (__FILE__, __LINE__,
1473 _("Invalid value for interrupt_sequence_mode: %s."),
1474 interrupt_sequence_mode);
1475}
6426a772 1476
9a7071a8
JB
1477/* This boolean variable specifies whether interrupt_sequence is sent
1478 to the remote target when gdb connects to it.
1479 This is mostly needed when you debug the Linux kernel: The Linux kernel
1480 expects BREAK g which is Magic SysRq g for connecting gdb. */
491144b5 1481static bool interrupt_on_connect = false;
c906108c 1482
9a7071a8
JB
1483/* This variable is used to implement the "set/show remotebreak" commands.
1484 Since these commands are now deprecated in favor of "set/show remote
1485 interrupt-sequence", it no longer has any effect on the code. */
491144b5 1486static bool remote_break;
c906108c 1487
9a7071a8 1488static void
eb4c3f4a 1489set_remotebreak (const char *args, int from_tty, struct cmd_list_element *c)
9a7071a8
JB
1490{
1491 if (remote_break)
1492 interrupt_sequence_mode = interrupt_sequence_break;
1493 else
1494 interrupt_sequence_mode = interrupt_sequence_control_c;
1495}
1496
1497static void
1498show_remotebreak (struct ui_file *file, int from_tty,
1499 struct cmd_list_element *c,
1500 const char *value)
1501{
1502}
1503
c906108c
SS
1504/* This variable sets the number of bits in an address that are to be
1505 sent in a memory ("M" or "m") packet. Normally, after stripping
0df8b418 1506 leading zeros, the entire address would be sent. This variable
c906108c
SS
1507 restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
1508 initial implementation of remote.c restricted the address sent in
1509 memory packets to ``host::sizeof long'' bytes - (typically 32
1510 bits). Consequently, for 64 bit targets, the upper 32 bits of an
1511 address was never sent. Since fixing this bug may cause a break in
85102364 1512 some remote targets this variable is principally provided to
23860348 1513 facilitate backward compatibility. */
c906108c 1514
883b9c6c 1515static unsigned int remote_address_size;
c906108c 1516
11cf8741 1517\f
11cf8741 1518/* User configurable variables for the number of characters in a
ea9c271d
DJ
1519 memory read/write packet. MIN (rsa->remote_packet_size,
1520 rsa->sizeof_g_packet) is the default. Some targets need smaller
24b06219 1521 values (fifo overruns, et.al.) and some users need larger values
ad10f812
AC
1522 (speed up transfers). The variables ``preferred_*'' (the user
1523 request), ``current_*'' (what was actually set) and ``forced_*''
23860348 1524 (Positive - a soft limit, negative - a hard limit). */
11cf8741
JM
1525
1526struct memory_packet_config
1527{
a121b7c1 1528 const char *name;
11cf8741
JM
1529 long size;
1530 int fixed_p;
1531};
1532
cc0be08f
PA
1533/* The default max memory-write-packet-size, when the setting is
1534 "fixed". The 16k is historical. (It came from older GDB's using
1535 alloca for buffers and the knowledge (folklore?) that some hosts
1536 don't cope very well with large alloca calls.) */
1537#define DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED 16384
a5c0808e
PA
1538
1539/* The minimum remote packet size for memory transfers. Ensures we
1540 can write at least one byte. */
1541#define MIN_MEMORY_PACKET_SIZE 20
1542
cc0be08f
PA
1543/* Get the memory packet size, assuming it is fixed. */
1544
1545static long
1546get_fixed_memory_packet_size (struct memory_packet_config *config)
1547{
1548 gdb_assert (config->fixed_p);
1549
1550 if (config->size <= 0)
1551 return DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED;
1552 else
1553 return config->size;
1554}
1555
11cf8741
JM
1556/* Compute the current size of a read/write packet. Since this makes
1557 use of ``actual_register_packet_size'' the computation is dynamic. */
1558
6b8edb51
PA
1559long
1560remote_target::get_memory_packet_size (struct memory_packet_config *config)
11cf8741 1561{
d01949b6 1562 struct remote_state *rs = get_remote_state ();
9d6eea31 1563 remote_arch_state *rsa = rs->get_remote_arch_state (target_gdbarch ());
ea9c271d 1564
11cf8741
JM
1565 long what_they_get;
1566 if (config->fixed_p)
cc0be08f 1567 what_they_get = get_fixed_memory_packet_size (config);
11cf8741
JM
1568 else
1569 {
ea9c271d 1570 what_they_get = get_remote_packet_size ();
23860348 1571 /* Limit the packet to the size specified by the user. */
11cf8741
JM
1572 if (config->size > 0
1573 && what_they_get > config->size)
1574 what_they_get = config->size;
be2a5f71
DJ
1575
1576 /* Limit it to the size of the targets ``g'' response unless we have
1577 permission from the stub to use a larger packet size. */
1578 if (rs->explicit_packet_size == 0
1579 && rsa->actual_register_packet_size > 0
1580 && what_they_get > rsa->actual_register_packet_size)
1581 what_they_get = rsa->actual_register_packet_size;
11cf8741 1582 }
a5c0808e
PA
1583 if (what_they_get < MIN_MEMORY_PACKET_SIZE)
1584 what_they_get = MIN_MEMORY_PACKET_SIZE;
6d820c5c
DJ
1585
1586 /* Make sure there is room in the global buffer for this packet
1587 (including its trailing NUL byte). */
8d64371b
TT
1588 if (rs->buf.size () < what_they_get + 1)
1589 rs->buf.resize (2 * what_they_get);
6d820c5c 1590
11cf8741
JM
1591 return what_they_get;
1592}
1593
0df8b418 1594/* Update the size of a read/write packet. If they user wants
23860348 1595 something really big then do a sanity check. */
11cf8741
JM
1596
1597static void
ac88e2de 1598set_memory_packet_size (const char *args, struct memory_packet_config *config)
11cf8741
JM
1599{
1600 int fixed_p = config->fixed_p;
1601 long size = config->size;
a744cf53 1602
11cf8741 1603 if (args == NULL)
8a3fe4f8 1604 error (_("Argument required (integer, `fixed' or `limited')."));
11cf8741
JM
1605 else if (strcmp (args, "hard") == 0
1606 || strcmp (args, "fixed") == 0)
1607 fixed_p = 1;
1608 else if (strcmp (args, "soft") == 0
1609 || strcmp (args, "limit") == 0)
1610 fixed_p = 0;
1611 else
1612 {
1613 char *end;
a744cf53 1614
11cf8741
JM
1615 size = strtoul (args, &end, 0);
1616 if (args == end)
8a3fe4f8 1617 error (_("Invalid %s (bad syntax)."), config->name);
a5c0808e
PA
1618
1619 /* Instead of explicitly capping the size of a packet to or
1620 disallowing it, the user is allowed to set the size to
1621 something arbitrarily large. */
11cf8741 1622 }
a5c0808e 1623
23860348 1624 /* Extra checks? */
11cf8741
JM
1625 if (fixed_p && !config->fixed_p)
1626 {
cc0be08f
PA
1627 /* So that the query shows the correct value. */
1628 long query_size = (size <= 0
1629 ? DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED
1630 : size);
1631
e2e0b3e5
AC
1632 if (! query (_("The target may not be able to correctly handle a %s\n"
1633 "of %ld bytes. Change the packet size? "),
cc0be08f 1634 config->name, query_size))
8a3fe4f8 1635 error (_("Packet size not changed."));
11cf8741 1636 }
23860348 1637 /* Update the config. */
11cf8741
JM
1638 config->fixed_p = fixed_p;
1639 config->size = size;
1640}
1641
1642static void
1643show_memory_packet_size (struct memory_packet_config *config)
1644{
cc0be08f
PA
1645 if (config->size == 0)
1646 printf_filtered (_("The %s is 0 (default). "), config->name);
1647 else
1648 printf_filtered (_("The %s is %ld. "), config->name, config->size);
11cf8741 1649 if (config->fixed_p)
a3f17187 1650 printf_filtered (_("Packets are fixed at %ld bytes.\n"),
cc0be08f 1651 get_fixed_memory_packet_size (config));
11cf8741 1652 else
cc0be08f 1653 {
6b8edb51 1654 remote_target *remote = get_current_remote_target ();
cc0be08f 1655
6b8edb51 1656 if (remote != NULL)
cc0be08f 1657 printf_filtered (_("Packets are limited to %ld bytes.\n"),
6b8edb51 1658 remote->get_memory_packet_size (config));
cc0be08f
PA
1659 else
1660 puts_filtered ("The actual limit will be further reduced "
1661 "dependent on the target.\n");
1662 }
11cf8741
JM
1663}
1664
1665static struct memory_packet_config memory_write_packet_config =
1666{
1667 "memory-write-packet-size",
1668};
1669
1670static void
ac88e2de 1671set_memory_write_packet_size (const char *args, int from_tty)
11cf8741
JM
1672{
1673 set_memory_packet_size (args, &memory_write_packet_config);
1674}
1675
1676static void
ac88e2de 1677show_memory_write_packet_size (const char *args, int from_tty)
11cf8741
JM
1678{
1679 show_memory_packet_size (&memory_write_packet_config);
1680}
1681
055303e2
AB
1682/* Show the number of hardware watchpoints that can be used. */
1683
1684static void
1685show_hardware_watchpoint_limit (struct ui_file *file, int from_tty,
1686 struct cmd_list_element *c,
1687 const char *value)
1688{
1689 fprintf_filtered (file, _("The maximum number of target hardware "
1690 "watchpoints is %s.\n"), value);
1691}
1692
1693/* Show the length limit (in bytes) for hardware watchpoints. */
1694
1695static void
1696show_hardware_watchpoint_length_limit (struct ui_file *file, int from_tty,
1697 struct cmd_list_element *c,
1698 const char *value)
1699{
1700 fprintf_filtered (file, _("The maximum length (in bytes) of a target "
1701 "hardware watchpoint is %s.\n"), value);
1702}
1703
1704/* Show the number of hardware breakpoints that can be used. */
1705
1706static void
1707show_hardware_breakpoint_limit (struct ui_file *file, int from_tty,
1708 struct cmd_list_element *c,
1709 const char *value)
1710{
1711 fprintf_filtered (file, _("The maximum number of target hardware "
1712 "breakpoints is %s.\n"), value);
1713}
1714
6b8edb51
PA
1715long
1716remote_target::get_memory_write_packet_size ()
11cf8741
JM
1717{
1718 return get_memory_packet_size (&memory_write_packet_config);
1719}
1720
1721static struct memory_packet_config memory_read_packet_config =
1722{
1723 "memory-read-packet-size",
1724};
1725
1726static void
ac88e2de 1727set_memory_read_packet_size (const char *args, int from_tty)
11cf8741
JM
1728{
1729 set_memory_packet_size (args, &memory_read_packet_config);
1730}
1731
1732static void
ac88e2de 1733show_memory_read_packet_size (const char *args, int from_tty)
11cf8741
JM
1734{
1735 show_memory_packet_size (&memory_read_packet_config);
1736}
1737
6b8edb51
PA
1738long
1739remote_target::get_memory_read_packet_size ()
11cf8741
JM
1740{
1741 long size = get_memory_packet_size (&memory_read_packet_config);
a744cf53 1742
11cf8741
JM
1743 /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
1744 extra buffer size argument before the memory read size can be
ea9c271d
DJ
1745 increased beyond this. */
1746 if (size > get_remote_packet_size ())
1747 size = get_remote_packet_size ();
11cf8741
JM
1748 return size;
1749}
1750
11cf8741 1751\f
5a2468f5 1752
5a2468f5
JM
1753struct packet_config
1754 {
bb572ddd
DJ
1755 const char *name;
1756 const char *title;
4082afcc
PA
1757
1758 /* If auto, GDB auto-detects support for this packet or feature,
1759 either through qSupported, or by trying the packet and looking
1760 at the response. If true, GDB assumes the target supports this
ca4f7f8b
PA
1761 packet. If false, the packet is disabled. Configs that don't
1762 have an associated command always have this set to auto. */
7f19b9a2 1763 enum auto_boolean detect;
4082afcc
PA
1764
1765 /* Does the target support this packet? */
5a2468f5
JM
1766 enum packet_support support;
1767 };
1768
4082afcc
PA
1769static enum packet_support packet_config_support (struct packet_config *config);
1770static enum packet_support packet_support (int packet);
5a2468f5
JM
1771
1772static void
fba45db2 1773show_packet_config_cmd (struct packet_config *config)
5a2468f5 1774{
a121b7c1 1775 const char *support = "internal-error";
a744cf53 1776
4082afcc 1777 switch (packet_config_support (config))
5a2468f5
JM
1778 {
1779 case PACKET_ENABLE:
1780 support = "enabled";
1781 break;
1782 case PACKET_DISABLE:
1783 support = "disabled";
1784 break;
1785 case PACKET_SUPPORT_UNKNOWN:
1786 support = "unknown";
1787 break;
1788 }
1789 switch (config->detect)
1790 {
7f19b9a2 1791 case AUTO_BOOLEAN_AUTO:
3e43a32a
MS
1792 printf_filtered (_("Support for the `%s' packet "
1793 "is auto-detected, currently %s.\n"),
37a105a1 1794 config->name, support);
5a2468f5 1795 break;
7f19b9a2
AC
1796 case AUTO_BOOLEAN_TRUE:
1797 case AUTO_BOOLEAN_FALSE:
37a105a1
DJ
1798 printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
1799 config->name, support);
8e248173 1800 break;
5a2468f5
JM
1801 }
1802}
1803
1804static void
bb572ddd
DJ
1805add_packet_config_cmd (struct packet_config *config, const char *name,
1806 const char *title, int legacy)
d471ea57 1807{
5a2468f5
JM
1808 char *set_doc;
1809 char *show_doc;
d471ea57 1810 char *cmd_name;
3ed07be4 1811
5a2468f5
JM
1812 config->name = name;
1813 config->title = title;
590042fc 1814 set_doc = xstrprintf ("Set use of remote protocol `%s' (%s) packet.",
b435e160 1815 name, title);
3e43a32a 1816 show_doc = xstrprintf ("Show current use of remote "
590042fc 1817 "protocol `%s' (%s) packet.",
b435e160 1818 name, title);
d471ea57 1819 /* set/show TITLE-packet {auto,on,off} */
b435e160 1820 cmd_name = xstrprintf ("%s-packet", title);
e9e68a56 1821 add_setshow_auto_boolean_cmd (cmd_name, class_obscure,
3e43a32a
MS
1822 &config->detect, set_doc,
1823 show_doc, NULL, /* help_doc */
4082afcc 1824 NULL,
bb572ddd
DJ
1825 show_remote_protocol_packet_cmd,
1826 &remote_set_cmdlist, &remote_show_cmdlist);
1eefb858
TT
1827 /* The command code copies the documentation strings. */
1828 xfree (set_doc);
1829 xfree (show_doc);
23860348 1830 /* set/show remote NAME-packet {auto,on,off} -- legacy. */
d471ea57
AC
1831 if (legacy)
1832 {
1833 char *legacy_name;
a744cf53 1834
b435e160 1835 legacy_name = xstrprintf ("%s-packet", name);
d471ea57 1836 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
bb572ddd 1837 &remote_set_cmdlist);
d471ea57 1838 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
bb572ddd 1839 &remote_show_cmdlist);
d471ea57 1840 }
5a2468f5
JM
1841}
1842
d471ea57 1843static enum packet_result
a76d924d 1844packet_check_result (const char *buf)
5a2468f5 1845{
d471ea57 1846 if (buf[0] != '\0')
5a2468f5 1847 {
d471ea57 1848 /* The stub recognized the packet request. Check that the
23860348 1849 operation succeeded. */
a76d924d
DJ
1850 if (buf[0] == 'E'
1851 && isxdigit (buf[1]) && isxdigit (buf[2])
1852 && buf[3] == '\0')
85102364 1853 /* "Enn" - definitely an error. */
a76d924d
DJ
1854 return PACKET_ERROR;
1855
1856 /* Always treat "E." as an error. This will be used for
1857 more verbose error messages, such as E.memtypes. */
1858 if (buf[0] == 'E' && buf[1] == '.')
1859 return PACKET_ERROR;
1860
1861 /* The packet may or may not be OK. Just assume it is. */
1862 return PACKET_OK;
1863 }
1864 else
1865 /* The stub does not support the packet. */
1866 return PACKET_UNKNOWN;
1867}
1868
8d64371b
TT
1869static enum packet_result
1870packet_check_result (const gdb::char_vector &buf)
1871{
1872 return packet_check_result (buf.data ());
1873}
1874
a76d924d
DJ
1875static enum packet_result
1876packet_ok (const char *buf, struct packet_config *config)
1877{
1878 enum packet_result result;
1879
4082afcc
PA
1880 if (config->detect != AUTO_BOOLEAN_TRUE
1881 && config->support == PACKET_DISABLE)
1882 internal_error (__FILE__, __LINE__,
1883 _("packet_ok: attempt to use a disabled packet"));
1884
a76d924d
DJ
1885 result = packet_check_result (buf);
1886 switch (result)
1887 {
1888 case PACKET_OK:
1889 case PACKET_ERROR:
1890 /* The stub recognized the packet request. */
4082afcc 1891 if (config->support == PACKET_SUPPORT_UNKNOWN)
d471ea57 1892 {
d471ea57
AC
1893 if (remote_debug)
1894 fprintf_unfiltered (gdb_stdlog,
4082afcc
PA
1895 "Packet %s (%s) is supported\n",
1896 config->name, config->title);
d471ea57 1897 config->support = PACKET_ENABLE;
d471ea57 1898 }
a76d924d
DJ
1899 break;
1900 case PACKET_UNKNOWN:
23860348 1901 /* The stub does not support the packet. */
4082afcc
PA
1902 if (config->detect == AUTO_BOOLEAN_AUTO
1903 && config->support == PACKET_ENABLE)
d471ea57 1904 {
4082afcc
PA
1905 /* If the stub previously indicated that the packet was
1906 supported then there is a protocol error. */
1907 error (_("Protocol error: %s (%s) conflicting enabled responses."),
1908 config->name, config->title);
1909 }
1910 else if (config->detect == AUTO_BOOLEAN_TRUE)
1911 {
1912 /* The user set it wrong. */
1913 error (_("Enabled packet %s (%s) not recognized by stub"),
1914 config->name, config->title);
d471ea57 1915 }
4082afcc
PA
1916
1917 if (remote_debug)
1918 fprintf_unfiltered (gdb_stdlog,
1919 "Packet %s (%s) is NOT supported\n",
1920 config->name, config->title);
1921 config->support = PACKET_DISABLE;
a76d924d 1922 break;
5a2468f5 1923 }
a76d924d
DJ
1924
1925 return result;
5a2468f5
JM
1926}
1927
8d64371b
TT
1928static enum packet_result
1929packet_ok (const gdb::char_vector &buf, struct packet_config *config)
1930{
1931 return packet_ok (buf.data (), config);
1932}
1933
444abaca
DJ
1934enum {
1935 PACKET_vCont = 0,
1936 PACKET_X,
1937 PACKET_qSymbol,
1938 PACKET_P,
1939 PACKET_p,
1940 PACKET_Z0,
1941 PACKET_Z1,
1942 PACKET_Z2,
1943 PACKET_Z3,
1944 PACKET_Z4,
15a201c8 1945 PACKET_vFile_setfs,
a6b151f1
DJ
1946 PACKET_vFile_open,
1947 PACKET_vFile_pread,
1948 PACKET_vFile_pwrite,
1949 PACKET_vFile_close,
1950 PACKET_vFile_unlink,
b9e7b9c3 1951 PACKET_vFile_readlink,
0a93529c 1952 PACKET_vFile_fstat,
0876f84a 1953 PACKET_qXfer_auxv,
23181151 1954 PACKET_qXfer_features,
c78fa86a 1955 PACKET_qXfer_exec_file,
cfa9d6d9 1956 PACKET_qXfer_libraries,
2268b414 1957 PACKET_qXfer_libraries_svr4,
fd79ecee 1958 PACKET_qXfer_memory_map,
07e059b5 1959 PACKET_qXfer_osdata,
dc146f7c 1960 PACKET_qXfer_threads,
0fb4aa4b 1961 PACKET_qXfer_statictrace_read,
b3b9301e 1962 PACKET_qXfer_traceframe_info,
169081d0 1963 PACKET_qXfer_uib,
711e434b 1964 PACKET_qGetTIBAddr,
444abaca 1965 PACKET_qGetTLSAddr,
be2a5f71 1966 PACKET_qSupported,
bd3eecc3 1967 PACKET_qTStatus,
89be2091 1968 PACKET_QPassSignals,
82075af2 1969 PACKET_QCatchSyscalls,
9b224c5e 1970 PACKET_QProgramSignals,
bc3b087d 1971 PACKET_QSetWorkingDir,
aefd8b33 1972 PACKET_QStartupWithShell,
0a2dde4a
SDJ
1973 PACKET_QEnvironmentHexEncoded,
1974 PACKET_QEnvironmentReset,
1975 PACKET_QEnvironmentUnset,
936d2992 1976 PACKET_qCRC,
08388c79 1977 PACKET_qSearch_memory,
2d717e4f
DJ
1978 PACKET_vAttach,
1979 PACKET_vRun,
a6f3e723 1980 PACKET_QStartNoAckMode,
82f73884 1981 PACKET_vKill,
4aa995e1
PA
1982 PACKET_qXfer_siginfo_read,
1983 PACKET_qXfer_siginfo_write,
0b16c5cf 1984 PACKET_qAttached,
4082afcc
PA
1985
1986 /* Support for conditional tracepoints. */
782b2b07 1987 PACKET_ConditionalTracepoints,
4082afcc
PA
1988
1989 /* Support for target-side breakpoint conditions. */
3788aec7 1990 PACKET_ConditionalBreakpoints,
4082afcc
PA
1991
1992 /* Support for target-side breakpoint commands. */
d3ce09f5 1993 PACKET_BreakpointCommands,
4082afcc
PA
1994
1995 /* Support for fast tracepoints. */
7a697b8d 1996 PACKET_FastTracepoints,
4082afcc
PA
1997
1998 /* Support for static tracepoints. */
0fb4aa4b 1999 PACKET_StaticTracepoints,
4082afcc
PA
2000
2001 /* Support for installing tracepoints while a trace experiment is
2002 running. */
1e4d1764 2003 PACKET_InstallInTrace,
4082afcc 2004
40ab02ce
MS
2005 PACKET_bc,
2006 PACKET_bs,
409873ef 2007 PACKET_TracepointSource,
d914c394 2008 PACKET_QAllow,
78d85199 2009 PACKET_qXfer_fdpic,
03583c20 2010 PACKET_QDisableRandomization,
d1feda86 2011 PACKET_QAgent,
f6f899bf 2012 PACKET_QTBuffer_size,
9accd112
MM
2013 PACKET_Qbtrace_off,
2014 PACKET_Qbtrace_bts,
b20a6524 2015 PACKET_Qbtrace_pt,
9accd112 2016 PACKET_qXfer_btrace,
4082afcc
PA
2017
2018 /* Support for the QNonStop packet. */
2019 PACKET_QNonStop,
2020
65706a29
PA
2021 /* Support for the QThreadEvents packet. */
2022 PACKET_QThreadEvents,
2023
4082afcc
PA
2024 /* Support for multi-process extensions. */
2025 PACKET_multiprocess_feature,
2026
2027 /* Support for enabling and disabling tracepoints while a trace
2028 experiment is running. */
2029 PACKET_EnableDisableTracepoints_feature,
2030
2031 /* Support for collecting strings using the tracenz bytecode. */
2032 PACKET_tracenz_feature,
2033
2034 /* Support for continuing to run a trace experiment while GDB is
2035 disconnected. */
2036 PACKET_DisconnectedTracing_feature,
2037
2038 /* Support for qXfer:libraries-svr4:read with a non-empty annex. */
2039 PACKET_augmented_libraries_svr4_read_feature,
2040
f4abbc16
MM
2041 /* Support for the qXfer:btrace-conf:read packet. */
2042 PACKET_qXfer_btrace_conf,
2043
d33501a5
MM
2044 /* Support for the Qbtrace-conf:bts:size packet. */
2045 PACKET_Qbtrace_conf_bts_size,
2046
f7e6eed5
PA
2047 /* Support for swbreak+ feature. */
2048 PACKET_swbreak_feature,
2049
2050 /* Support for hwbreak+ feature. */
2051 PACKET_hwbreak_feature,
2052
89245bc0
DB
2053 /* Support for fork events. */
2054 PACKET_fork_event_feature,
2055
2056 /* Support for vfork events. */
2057 PACKET_vfork_event_feature,
2058
b20a6524
MM
2059 /* Support for the Qbtrace-conf:pt:size packet. */
2060 PACKET_Qbtrace_conf_pt_size,
2061
94585166
DB
2062 /* Support for exec events. */
2063 PACKET_exec_event_feature,
2064
750ce8d1
YQ
2065 /* Support for query supported vCont actions. */
2066 PACKET_vContSupported,
2067
de979965
PA
2068 /* Support remote CTRL-C. */
2069 PACKET_vCtrlC,
2070
f2faf941
PA
2071 /* Support TARGET_WAITKIND_NO_RESUMED. */
2072 PACKET_no_resumed,
2073
444abaca
DJ
2074 PACKET_MAX
2075};
506fb367 2076
444abaca 2077static struct packet_config remote_protocol_packets[PACKET_MAX];
dc8acb97 2078
f7e6eed5
PA
2079/* Returns the packet's corresponding "set remote foo-packet" command
2080 state. See struct packet_config for more details. */
2081
2082static enum auto_boolean
2083packet_set_cmd_state (int packet)
2084{
2085 return remote_protocol_packets[packet].detect;
2086}
2087
4082afcc
PA
2088/* Returns whether a given packet or feature is supported. This takes
2089 into account the state of the corresponding "set remote foo-packet"
2090 command, which may be used to bypass auto-detection. */
dc8acb97 2091
4082afcc
PA
2092static enum packet_support
2093packet_config_support (struct packet_config *config)
2094{
2095 switch (config->detect)
444abaca 2096 {
4082afcc
PA
2097 case AUTO_BOOLEAN_TRUE:
2098 return PACKET_ENABLE;
2099 case AUTO_BOOLEAN_FALSE:
2100 return PACKET_DISABLE;
2101 case AUTO_BOOLEAN_AUTO:
2102 return config->support;
2103 default:
2104 gdb_assert_not_reached (_("bad switch"));
444abaca 2105 }
4082afcc
PA
2106}
2107
2108/* Same as packet_config_support, but takes the packet's enum value as
2109 argument. */
2110
2111static enum packet_support
2112packet_support (int packet)
2113{
2114 struct packet_config *config = &remote_protocol_packets[packet];
2115
2116 return packet_config_support (config);
dc8acb97
MS
2117}
2118
5a2468f5 2119static void
444abaca
DJ
2120show_remote_protocol_packet_cmd (struct ui_file *file, int from_tty,
2121 struct cmd_list_element *c,
2122 const char *value)
5a2468f5 2123{
444abaca 2124 struct packet_config *packet;
5a2468f5 2125
444abaca
DJ
2126 for (packet = remote_protocol_packets;
2127 packet < &remote_protocol_packets[PACKET_MAX];
2128 packet++)
2129 {
2130 if (&packet->detect == c->var)
2131 {
2132 show_packet_config_cmd (packet);
2133 return;
2134 }
2135 }
9b20d036 2136 internal_error (__FILE__, __LINE__, _("Could not find config for %s"),
444abaca 2137 c->name);
5a2468f5
JM
2138}
2139
d471ea57
AC
2140/* Should we try one of the 'Z' requests? */
2141
2142enum Z_packet_type
2143{
2144 Z_PACKET_SOFTWARE_BP,
2145 Z_PACKET_HARDWARE_BP,
2146 Z_PACKET_WRITE_WP,
2147 Z_PACKET_READ_WP,
2148 Z_PACKET_ACCESS_WP,
2149 NR_Z_PACKET_TYPES
2150};
96baa820 2151
d471ea57 2152/* For compatibility with older distributions. Provide a ``set remote
23860348 2153 Z-packet ...'' command that updates all the Z packet types. */
d471ea57 2154
7f19b9a2 2155static enum auto_boolean remote_Z_packet_detect;
96baa820
JM
2156
2157static void
eb4c3f4a 2158set_remote_protocol_Z_packet_cmd (const char *args, int from_tty,
fba45db2 2159 struct cmd_list_element *c)
96baa820 2160{
d471ea57 2161 int i;
a744cf53 2162
d471ea57 2163 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
4082afcc 2164 remote_protocol_packets[PACKET_Z0 + i].detect = remote_Z_packet_detect;
96baa820
JM
2165}
2166
2167static void
08546159
AC
2168show_remote_protocol_Z_packet_cmd (struct ui_file *file, int from_tty,
2169 struct cmd_list_element *c,
2170 const char *value)
96baa820 2171{
d471ea57 2172 int i;
a744cf53 2173
d471ea57
AC
2174 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
2175 {
444abaca 2176 show_packet_config_cmd (&remote_protocol_packets[PACKET_Z0 + i]);
d471ea57 2177 }
96baa820
JM
2178}
2179
4082afcc
PA
2180/* Returns true if the multi-process extensions are in effect. */
2181
2182static int
2183remote_multi_process_p (struct remote_state *rs)
2184{
2185 return packet_support (PACKET_multiprocess_feature) == PACKET_ENABLE;
2186}
2187
de0d863e
DB
2188/* Returns true if fork events are supported. */
2189
2190static int
2191remote_fork_event_p (struct remote_state *rs)
2192{
2193 return packet_support (PACKET_fork_event_feature) == PACKET_ENABLE;
2194}
2195
c269dbdb
DB
2196/* Returns true if vfork events are supported. */
2197
2198static int
2199remote_vfork_event_p (struct remote_state *rs)
2200{
2201 return packet_support (PACKET_vfork_event_feature) == PACKET_ENABLE;
2202}
2203
d46addbb
DB
2204/* Returns true if exec events are supported. */
2205
2206static int
2207remote_exec_event_p (struct remote_state *rs)
2208{
2209 return packet_support (PACKET_exec_event_feature) == PACKET_ENABLE;
2210}
2211
cbb8991c
DB
2212/* Insert fork catchpoint target routine. If fork events are enabled
2213 then return success, nothing more to do. */
2214
f6ac5f3d
PA
2215int
2216remote_target::insert_fork_catchpoint (int pid)
cbb8991c
DB
2217{
2218 struct remote_state *rs = get_remote_state ();
2219
2220 return !remote_fork_event_p (rs);
2221}
2222
2223/* Remove fork catchpoint target routine. Nothing to do, just
2224 return success. */
2225
f6ac5f3d
PA
2226int
2227remote_target::remove_fork_catchpoint (int pid)
cbb8991c
DB
2228{
2229 return 0;
2230}
2231
2232/* Insert vfork catchpoint target routine. If vfork events are enabled
2233 then return success, nothing more to do. */
2234
f6ac5f3d
PA
2235int
2236remote_target::insert_vfork_catchpoint (int pid)
cbb8991c
DB
2237{
2238 struct remote_state *rs = get_remote_state ();
2239
2240 return !remote_vfork_event_p (rs);
2241}
2242
2243/* Remove vfork catchpoint target routine. Nothing to do, just
2244 return success. */
2245
f6ac5f3d
PA
2246int
2247remote_target::remove_vfork_catchpoint (int pid)
cbb8991c
DB
2248{
2249 return 0;
2250}
2251
d46addbb
DB
2252/* Insert exec catchpoint target routine. If exec events are
2253 enabled, just return success. */
2254
f6ac5f3d
PA
2255int
2256remote_target::insert_exec_catchpoint (int pid)
d46addbb
DB
2257{
2258 struct remote_state *rs = get_remote_state ();
2259
2260 return !remote_exec_event_p (rs);
2261}
2262
2263/* Remove exec catchpoint target routine. Nothing to do, just
2264 return success. */
2265
f6ac5f3d
PA
2266int
2267remote_target::remove_exec_catchpoint (int pid)
d46addbb
DB
2268{
2269 return 0;
2270}
2271
c906108c
SS
2272\f
2273
ffdd69cf
TT
2274/* Take advantage of the fact that the TID field is not used, to tag
2275 special ptids with it set to != 0. */
2276static const ptid_t magic_null_ptid (42000, -1, 1);
2277static const ptid_t not_sent_ptid (42000, -2, 1);
2278static const ptid_t any_thread_ptid (42000, 0, 1);
79d7f229 2279
0b16c5cf
PA
2280/* Find out if the stub attached to PID (and hence GDB should offer to
2281 detach instead of killing it when bailing out). */
2282
6b8edb51
PA
2283int
2284remote_target::remote_query_attached (int pid)
0b16c5cf
PA
2285{
2286 struct remote_state *rs = get_remote_state ();
bba74b36 2287 size_t size = get_remote_packet_size ();
0b16c5cf 2288
4082afcc 2289 if (packet_support (PACKET_qAttached) == PACKET_DISABLE)
0b16c5cf
PA
2290 return 0;
2291
2292 if (remote_multi_process_p (rs))
8d64371b 2293 xsnprintf (rs->buf.data (), size, "qAttached:%x", pid);
0b16c5cf 2294 else
8d64371b 2295 xsnprintf (rs->buf.data (), size, "qAttached");
0b16c5cf
PA
2296
2297 putpkt (rs->buf);
8d64371b 2298 getpkt (&rs->buf, 0);
0b16c5cf
PA
2299
2300 switch (packet_ok (rs->buf,
1554e9be 2301 &remote_protocol_packets[PACKET_qAttached]))
0b16c5cf
PA
2302 {
2303 case PACKET_OK:
8d64371b 2304 if (strcmp (rs->buf.data (), "1") == 0)
0b16c5cf
PA
2305 return 1;
2306 break;
2307 case PACKET_ERROR:
8d64371b 2308 warning (_("Remote failure reply: %s"), rs->buf.data ());
0b16c5cf
PA
2309 break;
2310 case PACKET_UNKNOWN:
2311 break;
2312 }
2313
2314 return 0;
2315}
2316
49c62f2e
PA
2317/* Add PID to GDB's inferior table. If FAKE_PID_P is true, then PID
2318 has been invented by GDB, instead of reported by the target. Since
2319 we can be connected to a remote system before before knowing about
2320 any inferior, mark the target with execution when we find the first
2321 inferior. If ATTACHED is 1, then we had just attached to this
2322 inferior. If it is 0, then we just created this inferior. If it
2323 is -1, then try querying the remote stub to find out if it had
1b6e6f5c
GB
2324 attached to the inferior or not. If TRY_OPEN_EXEC is true then
2325 attempt to open this inferior's executable as the main executable
2326 if no main executable is open already. */
1941c569 2327
6b8edb51 2328inferior *
9ab8741a 2329remote_target::remote_add_inferior (bool fake_pid_p, int pid, int attached,
6b8edb51 2330 int try_open_exec)
1941c569 2331{
1941c569
PA
2332 struct inferior *inf;
2333
0b16c5cf
PA
2334 /* Check whether this process we're learning about is to be
2335 considered attached, or if is to be considered to have been
2336 spawned by the stub. */
2337 if (attached == -1)
2338 attached = remote_query_attached (pid);
2339
f5656ead 2340 if (gdbarch_has_global_solist (target_gdbarch ()))
6c95b8df
PA
2341 {
2342 /* If the target shares code across all inferiors, then every
2343 attach adds a new inferior. */
2344 inf = add_inferior (pid);
2345
2346 /* ... and every inferior is bound to the same program space.
2347 However, each inferior may still have its own address
2348 space. */
2349 inf->aspace = maybe_new_address_space ();
2350 inf->pspace = current_program_space;
2351 }
2352 else
2353 {
2354 /* In the traditional debugging scenario, there's a 1-1 match
2355 between program/address spaces. We simply bind the inferior
2356 to the program space's address space. */
2357 inf = current_inferior ();
2358 inferior_appeared (inf, pid);
2359 }
1941c569 2360
0b16c5cf 2361 inf->attach_flag = attached;
49c62f2e 2362 inf->fake_pid_p = fake_pid_p;
0b16c5cf 2363
1b6e6f5c
GB
2364 /* If no main executable is currently open then attempt to
2365 open the file that was executed to create this inferior. */
835205d0 2366 if (try_open_exec && get_exec_file (0) == NULL)
bb805577 2367 exec_file_locate_attach (pid, 0, 1);
1b6e6f5c 2368
1941c569
PA
2369 return inf;
2370}
2371
7aabaf9d 2372static remote_thread_info *get_remote_thread_info (thread_info *thread);
00431a78 2373static remote_thread_info *get_remote_thread_info (ptid_t ptid);
85ad3aaf 2374
1941c569
PA
2375/* Add thread PTID to GDB's thread list. Tag it as executing/running
2376 according to RUNNING. */
2377
00431a78 2378thread_info *
6b8edb51 2379remote_target::remote_add_thread (ptid_t ptid, bool running, bool executing)
c906108c 2380{
b7ea362b 2381 struct remote_state *rs = get_remote_state ();
85ad3aaf 2382 struct thread_info *thread;
b7ea362b
PA
2383
2384 /* GDB historically didn't pull threads in the initial connection
2385 setup. If the remote target doesn't even have a concept of
2386 threads (e.g., a bare-metal target), even if internally we
2387 consider that a single-threaded target, mentioning a new thread
2388 might be confusing to the user. Be silent then, preserving the
2389 age old behavior. */
2390 if (rs->starting_up)
85ad3aaf 2391 thread = add_thread_silent (ptid);
b7ea362b 2392 else
85ad3aaf 2393 thread = add_thread (ptid);
1941c569 2394
7aabaf9d 2395 get_remote_thread_info (thread)->vcont_resumed = executing;
0d5b594f 2396 set_executing (ptid, executing);
1941c569 2397 set_running (ptid, running);
00431a78
PA
2398
2399 return thread;
1941c569
PA
2400}
2401
2402/* Come here when we learn about a thread id from the remote target.
2403 It may be the first time we hear about such thread, so take the
2404 opportunity to add it to GDB's thread list. In case this is the
2405 first time we're noticing its corresponding inferior, add it to
0d5b594f
PA
2406 GDB's inferior list as well. EXECUTING indicates whether the
2407 thread is (internally) executing or stopped. */
1941c569 2408
6b8edb51
PA
2409void
2410remote_target::remote_notice_new_inferior (ptid_t currthread, int executing)
1941c569 2411{
0d5b594f
PA
2412 /* In non-stop mode, we assume new found threads are (externally)
2413 running until proven otherwise with a stop reply. In all-stop,
2414 we can only get here if all threads are stopped. */
2415 int running = target_is_non_stop_p () ? 1 : 0;
2416
c906108c
SS
2417 /* If this is a new thread, add it to GDB's thread list.
2418 If we leave it up to WFI to do this, bad things will happen. */
82f73884 2419
00431a78
PA
2420 thread_info *tp = find_thread_ptid (currthread);
2421 if (tp != NULL && tp->state == THREAD_EXITED)
82f73884
PA
2422 {
2423 /* We're seeing an event on a thread id we knew had exited.
2424 This has to be a new thread reusing the old id. Add it. */
0d5b594f 2425 remote_add_thread (currthread, running, executing);
82f73884
PA
2426 return;
2427 }
2428
79d7f229 2429 if (!in_thread_list (currthread))
c0a2216e 2430 {
1941c569 2431 struct inferior *inf = NULL;
e99b03dc 2432 int pid = currthread.pid ();
1941c569 2433
0e998d96 2434 if (inferior_ptid.is_pid ()
e99b03dc 2435 && pid == inferior_ptid.pid ())
c0a2216e
PA
2436 {
2437 /* inferior_ptid has no thread member yet. This can happen
2438 with the vAttach -> remote_wait,"TAAthread:" path if the
2439 stub doesn't support qC. This is the first stop reported
2440 after an attach, so this is the main thread. Update the
2441 ptid in the thread list. */
f2907e49 2442 if (in_thread_list (ptid_t (pid)))
bad34192
PA
2443 thread_change_ptid (inferior_ptid, currthread);
2444 else
2445 {
0d5b594f 2446 remote_add_thread (currthread, running, executing);
bad34192
PA
2447 inferior_ptid = currthread;
2448 }
dc146f7c 2449 return;
c0a2216e 2450 }
82f73884 2451
d7e15655 2452 if (magic_null_ptid == inferior_ptid)
c0a2216e
PA
2453 {
2454 /* inferior_ptid is not set yet. This can happen with the
2455 vRun -> remote_wait,"TAAthread:" path if the stub
2456 doesn't support qC. This is the first stop reported
2457 after an attach, so this is the main thread. Update the
2458 ptid in the thread list. */
dc146f7c 2459 thread_change_ptid (inferior_ptid, currthread);
82f73884 2460 return;
c0a2216e 2461 }
82f73884 2462
29c87f7f
PA
2463 /* When connecting to a target remote, or to a target
2464 extended-remote which already was debugging an inferior, we
2465 may not know about it yet. Add it before adding its child
2466 thread, so notifications are emitted in a sensible order. */
e99b03dc 2467 if (find_inferior_pid (currthread.pid ()) == NULL)
49c62f2e
PA
2468 {
2469 struct remote_state *rs = get_remote_state ();
9ab8741a 2470 bool fake_pid_p = !remote_multi_process_p (rs);
49c62f2e
PA
2471
2472 inf = remote_add_inferior (fake_pid_p,
e99b03dc 2473 currthread.pid (), -1, 1);
49c62f2e 2474 }
29c87f7f 2475
82f73884 2476 /* This is really a new thread. Add it. */
00431a78
PA
2477 thread_info *new_thr
2478 = remote_add_thread (currthread, running, executing);
1941c569
PA
2479
2480 /* If we found a new inferior, let the common code do whatever
2481 it needs to with it (e.g., read shared libraries, insert
b7ea362b
PA
2482 breakpoints), unless we're just setting up an all-stop
2483 connection. */
1941c569 2484 if (inf != NULL)
b7ea362b
PA
2485 {
2486 struct remote_state *rs = get_remote_state ();
2487
6efcd9a8 2488 if (!rs->starting_up)
00431a78 2489 notice_new_inferior (new_thr, executing, 0);
b7ea362b 2490 }
c0a2216e 2491 }
c906108c
SS
2492}
2493
85ad3aaf 2494/* Return THREAD's private thread data, creating it if necessary. */
dc146f7c 2495
7aabaf9d
SM
2496static remote_thread_info *
2497get_remote_thread_info (thread_info *thread)
dc146f7c 2498{
85ad3aaf 2499 gdb_assert (thread != NULL);
dc146f7c 2500
85ad3aaf 2501 if (thread->priv == NULL)
7aabaf9d 2502 thread->priv.reset (new remote_thread_info);
dc146f7c 2503
7aabaf9d 2504 return static_cast<remote_thread_info *> (thread->priv.get ());
85ad3aaf
PA
2505}
2506
7aabaf9d
SM
2507static remote_thread_info *
2508get_remote_thread_info (ptid_t ptid)
85ad3aaf 2509{
00431a78
PA
2510 thread_info *thr = find_thread_ptid (ptid);
2511 return get_remote_thread_info (thr);
dc146f7c
VP
2512}
2513
74531fed
PA
2514/* Call this function as a result of
2515 1) A halt indication (T packet) containing a thread id
2516 2) A direct query of currthread
0df8b418 2517 3) Successful execution of set thread */
74531fed
PA
2518
2519static void
47f8a51d 2520record_currthread (struct remote_state *rs, ptid_t currthread)
74531fed 2521{
47f8a51d 2522 rs->general_thread = currthread;
74531fed
PA
2523}
2524
89be2091
DJ
2525/* If 'QPassSignals' is supported, tell the remote stub what signals
2526 it can simply pass through to the inferior without reporting. */
2527
f6ac5f3d 2528void
adc6a863 2529remote_target::pass_signals (gdb::array_view<const unsigned char> pass_signals)
89be2091 2530{
4082afcc 2531 if (packet_support (PACKET_QPassSignals) != PACKET_DISABLE)
89be2091
DJ
2532 {
2533 char *pass_packet, *p;
adc6a863 2534 int count = 0;
747dc59d 2535 struct remote_state *rs = get_remote_state ();
89be2091 2536
adc6a863
PA
2537 gdb_assert (pass_signals.size () < 256);
2538 for (size_t i = 0; i < pass_signals.size (); i++)
89be2091 2539 {
2455069d 2540 if (pass_signals[i])
89be2091
DJ
2541 count++;
2542 }
224c3ddb 2543 pass_packet = (char *) xmalloc (count * 3 + strlen ("QPassSignals:") + 1);
89be2091
DJ
2544 strcpy (pass_packet, "QPassSignals:");
2545 p = pass_packet + strlen (pass_packet);
adc6a863 2546 for (size_t i = 0; i < pass_signals.size (); i++)
89be2091 2547 {
2455069d 2548 if (pass_signals[i])
89be2091
DJ
2549 {
2550 if (i >= 16)
2551 *p++ = tohex (i >> 4);
2552 *p++ = tohex (i & 15);
2553 if (count)
2554 *p++ = ';';
2555 else
2556 break;
2557 count--;
2558 }
2559 }
2560 *p = 0;
747dc59d 2561 if (!rs->last_pass_packet || strcmp (rs->last_pass_packet, pass_packet))
89be2091 2562 {
89be2091 2563 putpkt (pass_packet);
8d64371b 2564 getpkt (&rs->buf, 0);
8dc5b319 2565 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QPassSignals]);
747dc59d
TT
2566 if (rs->last_pass_packet)
2567 xfree (rs->last_pass_packet);
2568 rs->last_pass_packet = pass_packet;
89be2091
DJ
2569 }
2570 else
2571 xfree (pass_packet);
2572 }
2573}
2574
82075af2
JS
2575/* If 'QCatchSyscalls' is supported, tell the remote stub
2576 to report syscalls to GDB. */
2577
f6ac5f3d
PA
2578int
2579remote_target::set_syscall_catchpoint (int pid, bool needed, int any_count,
2580 gdb::array_view<const int> syscall_counts)
82075af2 2581{
b80406ac 2582 const char *catch_packet;
82075af2
JS
2583 enum packet_result result;
2584 int n_sysno = 0;
2585
2586 if (packet_support (PACKET_QCatchSyscalls) == PACKET_DISABLE)
2587 {
2588 /* Not supported. */
2589 return 1;
2590 }
2591
649a140c 2592 if (needed && any_count == 0)
82075af2 2593 {
649a140c
PA
2594 /* Count how many syscalls are to be caught. */
2595 for (size_t i = 0; i < syscall_counts.size (); i++)
82075af2 2596 {
649a140c 2597 if (syscall_counts[i] != 0)
82075af2
JS
2598 n_sysno++;
2599 }
2600 }
2601
2602 if (remote_debug)
2603 {
2604 fprintf_unfiltered (gdb_stdlog,
2605 "remote_set_syscall_catchpoint "
2606 "pid %d needed %d any_count %d n_sysno %d\n",
2607 pid, needed, any_count, n_sysno);
2608 }
2609
1b81856f 2610 std::string built_packet;
82075af2
JS
2611 if (needed)
2612 {
2613 /* Prepare a packet with the sysno list, assuming max 8+1
2614 characters for a sysno. If the resulting packet size is too
2615 big, fallback on the non-selective packet. */
2616 const int maxpktsz = strlen ("QCatchSyscalls:1") + n_sysno * 9 + 1;
1b81856f
PA
2617 built_packet.reserve (maxpktsz);
2618 built_packet = "QCatchSyscalls:1";
649a140c 2619 if (any_count == 0)
82075af2 2620 {
649a140c
PA
2621 /* Add in each syscall to be caught. */
2622 for (size_t i = 0; i < syscall_counts.size (); i++)
82075af2 2623 {
649a140c
PA
2624 if (syscall_counts[i] != 0)
2625 string_appendf (built_packet, ";%zx", i);
82075af2
JS
2626 }
2627 }
1b81856f 2628 if (built_packet.size () > get_remote_packet_size ())
82075af2
JS
2629 {
2630 /* catch_packet too big. Fallback to less efficient
2631 non selective mode, with GDB doing the filtering. */
b80406ac 2632 catch_packet = "QCatchSyscalls:1";
82075af2 2633 }
b80406ac 2634 else
1b81856f 2635 catch_packet = built_packet.c_str ();
82075af2
JS
2636 }
2637 else
b80406ac 2638 catch_packet = "QCatchSyscalls:0";
82075af2 2639
b80406ac 2640 struct remote_state *rs = get_remote_state ();
82075af2 2641
b80406ac 2642 putpkt (catch_packet);
8d64371b 2643 getpkt (&rs->buf, 0);
b80406ac
TT
2644 result = packet_ok (rs->buf, &remote_protocol_packets[PACKET_QCatchSyscalls]);
2645 if (result == PACKET_OK)
2646 return 0;
2647 else
2648 return -1;
82075af2
JS
2649}
2650
9b224c5e
PA
2651/* If 'QProgramSignals' is supported, tell the remote stub what
2652 signals it should pass through to the inferior when detaching. */
2653
f6ac5f3d 2654void
adc6a863 2655remote_target::program_signals (gdb::array_view<const unsigned char> signals)
9b224c5e 2656{
4082afcc 2657 if (packet_support (PACKET_QProgramSignals) != PACKET_DISABLE)
9b224c5e
PA
2658 {
2659 char *packet, *p;
adc6a863 2660 int count = 0;
5e4a05c4 2661 struct remote_state *rs = get_remote_state ();
9b224c5e 2662
adc6a863
PA
2663 gdb_assert (signals.size () < 256);
2664 for (size_t i = 0; i < signals.size (); i++)
9b224c5e
PA
2665 {
2666 if (signals[i])
2667 count++;
2668 }
224c3ddb 2669 packet = (char *) xmalloc (count * 3 + strlen ("QProgramSignals:") + 1);
9b224c5e
PA
2670 strcpy (packet, "QProgramSignals:");
2671 p = packet + strlen (packet);
adc6a863 2672 for (size_t i = 0; i < signals.size (); i++)
9b224c5e
PA
2673 {
2674 if (signal_pass_state (i))
2675 {
2676 if (i >= 16)
2677 *p++ = tohex (i >> 4);
2678 *p++ = tohex (i & 15);
2679 if (count)
2680 *p++ = ';';
2681 else
2682 break;
2683 count--;
2684 }
2685 }
2686 *p = 0;
5e4a05c4
TT
2687 if (!rs->last_program_signals_packet
2688 || strcmp (rs->last_program_signals_packet, packet) != 0)
9b224c5e 2689 {
9b224c5e 2690 putpkt (packet);
8d64371b 2691 getpkt (&rs->buf, 0);
8dc5b319 2692 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QProgramSignals]);
5e4a05c4
TT
2693 xfree (rs->last_program_signals_packet);
2694 rs->last_program_signals_packet = packet;
9b224c5e
PA
2695 }
2696 else
2697 xfree (packet);
2698 }
2699}
2700
79d7f229
PA
2701/* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
2702 MINUS_ONE_PTID, set the thread to -1, so the stub returns the
2703 thread. If GEN is set, set the general thread, if not, then set
2704 the step/continue thread. */
6b8edb51
PA
2705void
2706remote_target::set_thread (ptid_t ptid, int gen)
c906108c 2707{
d01949b6 2708 struct remote_state *rs = get_remote_state ();
47f8a51d 2709 ptid_t state = gen ? rs->general_thread : rs->continue_thread;
8d64371b
TT
2710 char *buf = rs->buf.data ();
2711 char *endbuf = buf + get_remote_packet_size ();
c906108c 2712
d7e15655 2713 if (state == ptid)
c906108c
SS
2714 return;
2715
79d7f229
PA
2716 *buf++ = 'H';
2717 *buf++ = gen ? 'g' : 'c';
d7e15655 2718 if (ptid == magic_null_ptid)
79d7f229 2719 xsnprintf (buf, endbuf - buf, "0");
d7e15655 2720 else if (ptid == any_thread_ptid)
79d7f229 2721 xsnprintf (buf, endbuf - buf, "0");
d7e15655 2722 else if (ptid == minus_one_ptid)
79d7f229
PA
2723 xsnprintf (buf, endbuf - buf, "-1");
2724 else
82f73884 2725 write_ptid (buf, endbuf, ptid);
79d7f229 2726 putpkt (rs->buf);
8d64371b 2727 getpkt (&rs->buf, 0);
c906108c 2728 if (gen)
47f8a51d 2729 rs->general_thread = ptid;
c906108c 2730 else
47f8a51d 2731 rs->continue_thread = ptid;
c906108c 2732}
79d7f229 2733
6b8edb51
PA
2734void
2735remote_target::set_general_thread (ptid_t ptid)
79d7f229
PA
2736{
2737 set_thread (ptid, 1);
2738}
2739
6b8edb51
PA
2740void
2741remote_target::set_continue_thread (ptid_t ptid)
79d7f229
PA
2742{
2743 set_thread (ptid, 0);
2744}
2745
3c9c4b83
PA
2746/* Change the remote current process. Which thread within the process
2747 ends up selected isn't important, as long as it is the same process
2748 as what INFERIOR_PTID points to.
2749
2750 This comes from that fact that there is no explicit notion of
2751 "selected process" in the protocol. The selected process for
2752 general operations is the process the selected general thread
2753 belongs to. */
2754
6b8edb51
PA
2755void
2756remote_target::set_general_process ()
3c9c4b83
PA
2757{
2758 struct remote_state *rs = get_remote_state ();
2759
2760 /* If the remote can't handle multiple processes, don't bother. */
8020350c 2761 if (!remote_multi_process_p (rs))
3c9c4b83
PA
2762 return;
2763
2764 /* We only need to change the remote current thread if it's pointing
2765 at some other process. */
e99b03dc 2766 if (rs->general_thread.pid () != inferior_ptid.pid ())
3c9c4b83
PA
2767 set_general_thread (inferior_ptid);
2768}
2769
c906108c 2770\f
7d1a114c
PA
2771/* Return nonzero if this is the main thread that we made up ourselves
2772 to model non-threaded targets as single-threaded. */
c906108c
SS
2773
2774static int
f6ac5f3d 2775remote_thread_always_alive (ptid_t ptid)
c906108c 2776{
d7e15655 2777 if (ptid == magic_null_ptid)
c0a2216e
PA
2778 /* The main thread is always alive. */
2779 return 1;
2780
e38504b3 2781 if (ptid.pid () != 0 && ptid.lwp () == 0)
c0a2216e
PA
2782 /* The main thread is always alive. This can happen after a
2783 vAttach, if the remote side doesn't support
2784 multi-threading. */
2785 return 1;
2786
7d1a114c
PA
2787 return 0;
2788}
2789
2790/* Return nonzero if the thread PTID is still alive on the remote
2791 system. */
2792
57810aa7 2793bool
f6ac5f3d 2794remote_target::thread_alive (ptid_t ptid)
7d1a114c
PA
2795{
2796 struct remote_state *rs = get_remote_state ();
2797 char *p, *endp;
2798
2799 /* Check if this is a thread that we made up ourselves to model
2800 non-threaded targets as single-threaded. */
f6ac5f3d 2801 if (remote_thread_always_alive (ptid))
7d1a114c
PA
2802 return 1;
2803
8d64371b
TT
2804 p = rs->buf.data ();
2805 endp = p + get_remote_packet_size ();
82f73884
PA
2806
2807 *p++ = 'T';
2808 write_ptid (p, endp, ptid);
2809
2e9f7625 2810 putpkt (rs->buf);
8d64371b 2811 getpkt (&rs->buf, 0);
2e9f7625 2812 return (rs->buf[0] == 'O' && rs->buf[1] == 'K');
c906108c
SS
2813}
2814
79efa585
SM
2815/* Return a pointer to a thread name if we know it and NULL otherwise.
2816 The thread_info object owns the memory for the name. */
2817
f6ac5f3d
PA
2818const char *
2819remote_target::thread_name (struct thread_info *info)
79efa585
SM
2820{
2821 if (info->priv != NULL)
a9334058
SM
2822 {
2823 const std::string &name = get_remote_thread_info (info)->name;
2824 return !name.empty () ? name.c_str () : NULL;
2825 }
79efa585
SM
2826
2827 return NULL;
2828}
2829
c906108c
SS
2830/* About these extended threadlist and threadinfo packets. They are
2831 variable length packets but, the fields within them are often fixed
30baf67b 2832 length. They are redundant enough to send over UDP as is the
c906108c
SS
2833 remote protocol in general. There is a matching unit test module
2834 in libstub. */
2835
23860348 2836/* WARNING: This threadref data structure comes from the remote O.S.,
0df8b418 2837 libstub protocol encoding, and remote.c. It is not particularly
23860348 2838 changable. */
cce74817
JM
2839
2840/* Right now, the internal structure is int. We want it to be bigger.
0df8b418 2841 Plan to fix this. */
cce74817 2842
23860348 2843typedef int gdb_threadref; /* Internal GDB thread reference. */
cce74817 2844
9d1f7ab2 2845/* gdb_ext_thread_info is an internal GDB data structure which is
cfde0993 2846 equivalent to the reply of the remote threadinfo packet. */
cce74817
JM
2847
2848struct gdb_ext_thread_info
c5aa993b 2849 {
23860348 2850 threadref threadid; /* External form of thread reference. */
2bc416ba 2851 int active; /* Has state interesting to GDB?
23860348 2852 regs, stack. */
2bc416ba 2853 char display[256]; /* Brief state display, name,
cedea757 2854 blocked/suspended. */
23860348 2855 char shortname[32]; /* To be used to name threads. */
2bc416ba 2856 char more_display[256]; /* Long info, statistics, queue depth,
23860348 2857 whatever. */
c5aa993b 2858 };
cce74817
JM
2859
2860/* The volume of remote transfers can be limited by submitting
2861 a mask containing bits specifying the desired information.
2862 Use a union of these values as the 'selection' parameter to
0df8b418 2863 get_thread_info. FIXME: Make these TAG names more thread specific. */
cce74817
JM
2864
2865#define TAG_THREADID 1
2866#define TAG_EXISTS 2
2867#define TAG_DISPLAY 4
2868#define TAG_THREADNAME 8
c5aa993b 2869#define TAG_MOREDISPLAY 16
cce74817 2870
23860348 2871#define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
c906108c 2872
a14ed312 2873static char *unpack_nibble (char *buf, int *val);
cce74817 2874
a14ed312 2875static char *unpack_byte (char *buf, int *value);
cce74817 2876
a14ed312 2877static char *pack_int (char *buf, int value);
cce74817 2878
a14ed312 2879static char *unpack_int (char *buf, int *value);
cce74817 2880
a14ed312 2881static char *unpack_string (char *src, char *dest, int length);
cce74817 2882
23860348 2883static char *pack_threadid (char *pkt, threadref *id);
cce74817 2884
23860348 2885static char *unpack_threadid (char *inbuf, threadref *id);
cce74817 2886
23860348 2887void int_to_threadref (threadref *id, int value);
cce74817 2888
23860348 2889static int threadref_to_int (threadref *ref);
cce74817 2890
23860348 2891static void copy_threadref (threadref *dest, threadref *src);
cce74817 2892
23860348 2893static int threadmatch (threadref *dest, threadref *src);
cce74817 2894
2bc416ba 2895static char *pack_threadinfo_request (char *pkt, int mode,
23860348 2896 threadref *id);
cce74817 2897
a14ed312
KB
2898static char *pack_threadlist_request (char *pkt, int startflag,
2899 int threadcount,
23860348 2900 threadref *nextthread);
cce74817 2901
23860348 2902static int remote_newthread_step (threadref *ref, void *context);
cce74817 2903
82f73884
PA
2904
2905/* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the
2906 buffer we're allowed to write to. Returns
2907 BUF+CHARACTERS_WRITTEN. */
2908
6b8edb51
PA
2909char *
2910remote_target::write_ptid (char *buf, const char *endbuf, ptid_t ptid)
82f73884
PA
2911{
2912 int pid, tid;
2913 struct remote_state *rs = get_remote_state ();
2914
2915 if (remote_multi_process_p (rs))
2916 {
e99b03dc 2917 pid = ptid.pid ();
82f73884
PA
2918 if (pid < 0)
2919 buf += xsnprintf (buf, endbuf - buf, "p-%x.", -pid);
2920 else
2921 buf += xsnprintf (buf, endbuf - buf, "p%x.", pid);
2922 }
e38504b3 2923 tid = ptid.lwp ();
82f73884
PA
2924 if (tid < 0)
2925 buf += xsnprintf (buf, endbuf - buf, "-%x", -tid);
2926 else
2927 buf += xsnprintf (buf, endbuf - buf, "%x", tid);
2928
2929 return buf;
2930}
2931
256642e8
PA
2932/* Extract a PTID from BUF. If non-null, OBUF is set to one past the
2933 last parsed char. Returns null_ptid if no thread id is found, and
2934 throws an error if the thread id has an invalid format. */
82f73884
PA
2935
2936static ptid_t
256642e8 2937read_ptid (const char *buf, const char **obuf)
82f73884 2938{
256642e8
PA
2939 const char *p = buf;
2940 const char *pp;
82f73884 2941 ULONGEST pid = 0, tid = 0;
82f73884
PA
2942
2943 if (*p == 'p')
2944 {
2945 /* Multi-process ptid. */
2946 pp = unpack_varlen_hex (p + 1, &pid);
2947 if (*pp != '.')
b37520b6 2948 error (_("invalid remote ptid: %s"), p);
82f73884
PA
2949
2950 p = pp;
2951 pp = unpack_varlen_hex (p + 1, &tid);
2952 if (obuf)
2953 *obuf = pp;
fd79271b 2954 return ptid_t (pid, tid, 0);
82f73884
PA
2955 }
2956
2957 /* No multi-process. Just a tid. */
2958 pp = unpack_varlen_hex (p, &tid);
2959
c9f35b34
KB
2960 /* Return null_ptid when no thread id is found. */
2961 if (p == pp)
2962 {
2963 if (obuf)
2964 *obuf = pp;
2965 return null_ptid;
2966 }
2967
82f73884 2968 /* Since the stub is not sending a process id, then default to
ca19bf23
PA
2969 what's in inferior_ptid, unless it's null at this point. If so,
2970 then since there's no way to know the pid of the reported
2971 threads, use the magic number. */
d7e15655 2972 if (inferior_ptid == null_ptid)
e99b03dc 2973 pid = magic_null_ptid.pid ();
ca19bf23 2974 else
e99b03dc 2975 pid = inferior_ptid.pid ();
82f73884
PA
2976
2977 if (obuf)
2978 *obuf = pp;
fd79271b 2979 return ptid_t (pid, tid, 0);
82f73884
PA
2980}
2981
c906108c 2982static int
fba45db2 2983stubhex (int ch)
c906108c
SS
2984{
2985 if (ch >= 'a' && ch <= 'f')
2986 return ch - 'a' + 10;
2987 if (ch >= '0' && ch <= '9')
2988 return ch - '0';
2989 if (ch >= 'A' && ch <= 'F')
2990 return ch - 'A' + 10;
2991 return -1;
2992}
2993
2994static int
fba45db2 2995stub_unpack_int (char *buff, int fieldlength)
c906108c
SS
2996{
2997 int nibble;
2998 int retval = 0;
2999
3000 while (fieldlength)
3001 {
3002 nibble = stubhex (*buff++);
3003 retval |= nibble;
3004 fieldlength--;
3005 if (fieldlength)
3006 retval = retval << 4;
3007 }
3008 return retval;
3009}
3010
c906108c 3011static char *
fba45db2 3012unpack_nibble (char *buf, int *val)
c906108c 3013{
b7589f7d 3014 *val = fromhex (*buf++);
c906108c
SS
3015 return buf;
3016}
3017
c906108c 3018static char *
fba45db2 3019unpack_byte (char *buf, int *value)
c906108c
SS
3020{
3021 *value = stub_unpack_int (buf, 2);
3022 return buf + 2;
3023}
3024
3025static char *
fba45db2 3026pack_int (char *buf, int value)
c906108c
SS
3027{
3028 buf = pack_hex_byte (buf, (value >> 24) & 0xff);
3029 buf = pack_hex_byte (buf, (value >> 16) & 0xff);
3030 buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
3031 buf = pack_hex_byte (buf, (value & 0xff));
3032 return buf;
3033}
3034
3035static char *
fba45db2 3036unpack_int (char *buf, int *value)
c906108c
SS
3037{
3038 *value = stub_unpack_int (buf, 8);
3039 return buf + 8;
3040}
3041
23860348 3042#if 0 /* Currently unused, uncomment when needed. */
a14ed312 3043static char *pack_string (char *pkt, char *string);
c906108c
SS
3044
3045static char *
fba45db2 3046pack_string (char *pkt, char *string)
c906108c
SS
3047{
3048 char ch;
3049 int len;
3050
3051 len = strlen (string);
3052 if (len > 200)
23860348 3053 len = 200; /* Bigger than most GDB packets, junk??? */
c906108c
SS
3054 pkt = pack_hex_byte (pkt, len);
3055 while (len-- > 0)
3056 {
3057 ch = *string++;
3058 if ((ch == '\0') || (ch == '#'))
23860348 3059 ch = '*'; /* Protect encapsulation. */
c906108c
SS
3060 *pkt++ = ch;
3061 }
3062 return pkt;
3063}
3064#endif /* 0 (unused) */
3065
3066static char *
fba45db2 3067unpack_string (char *src, char *dest, int length)
c906108c
SS
3068{
3069 while (length--)
3070 *dest++ = *src++;
3071 *dest = '\0';
3072 return src;
3073}
3074
3075static char *
fba45db2 3076pack_threadid (char *pkt, threadref *id)
c906108c
SS
3077{
3078 char *limit;
3079 unsigned char *altid;
3080
3081 altid = (unsigned char *) id;
3082 limit = pkt + BUF_THREAD_ID_SIZE;
3083 while (pkt < limit)
3084 pkt = pack_hex_byte (pkt, *altid++);
3085 return pkt;
3086}
3087
3088
3089static char *
fba45db2 3090unpack_threadid (char *inbuf, threadref *id)
c906108c
SS
3091{
3092 char *altref;
3093 char *limit = inbuf + BUF_THREAD_ID_SIZE;
3094 int x, y;
3095
3096 altref = (char *) id;
3097
3098 while (inbuf < limit)
3099 {
3100 x = stubhex (*inbuf++);
3101 y = stubhex (*inbuf++);
3102 *altref++ = (x << 4) | y;
3103 }
3104 return inbuf;
3105}
3106
3107/* Externally, threadrefs are 64 bits but internally, they are still
0df8b418 3108 ints. This is due to a mismatch of specifications. We would like
c906108c
SS
3109 to use 64bit thread references internally. This is an adapter
3110 function. */
3111
3112void
fba45db2 3113int_to_threadref (threadref *id, int value)
c906108c
SS
3114{
3115 unsigned char *scan;
3116
3117 scan = (unsigned char *) id;
3118 {
3119 int i = 4;
3120 while (i--)
3121 *scan++ = 0;
3122 }
3123 *scan++ = (value >> 24) & 0xff;
3124 *scan++ = (value >> 16) & 0xff;
3125 *scan++ = (value >> 8) & 0xff;
3126 *scan++ = (value & 0xff);
3127}
3128
3129static int
fba45db2 3130threadref_to_int (threadref *ref)
c906108c
SS
3131{
3132 int i, value = 0;
3133 unsigned char *scan;
3134
cfd77fa1 3135 scan = *ref;
c906108c
SS
3136 scan += 4;
3137 i = 4;
3138 while (i-- > 0)
3139 value = (value << 8) | ((*scan++) & 0xff);
3140 return value;
3141}
3142
3143static void
fba45db2 3144copy_threadref (threadref *dest, threadref *src)
c906108c
SS
3145{
3146 int i;
3147 unsigned char *csrc, *cdest;
3148
3149 csrc = (unsigned char *) src;
3150 cdest = (unsigned char *) dest;
3151 i = 8;
3152 while (i--)
3153 *cdest++ = *csrc++;
3154}
3155
3156static int
fba45db2 3157threadmatch (threadref *dest, threadref *src)
c906108c 3158{
23860348 3159 /* Things are broken right now, so just assume we got a match. */
c906108c
SS
3160#if 0
3161 unsigned char *srcp, *destp;
3162 int i, result;
3163 srcp = (char *) src;
3164 destp = (char *) dest;
3165
3166 result = 1;
3167 while (i-- > 0)
3168 result &= (*srcp++ == *destp++) ? 1 : 0;
3169 return result;
3170#endif
3171 return 1;
3172}
3173
3174/*
c5aa993b
JM
3175 threadid:1, # always request threadid
3176 context_exists:2,
3177 display:4,
3178 unique_name:8,
3179 more_display:16
3180 */
c906108c
SS
3181
3182/* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
3183
3184static char *
fba45db2 3185pack_threadinfo_request (char *pkt, int mode, threadref *id)
c906108c 3186{
23860348
MS
3187 *pkt++ = 'q'; /* Info Query */
3188 *pkt++ = 'P'; /* process or thread info */
3189 pkt = pack_int (pkt, mode); /* mode */
c906108c 3190 pkt = pack_threadid (pkt, id); /* threadid */
23860348 3191 *pkt = '\0'; /* terminate */
c906108c
SS
3192 return pkt;
3193}
3194
23860348 3195/* These values tag the fields in a thread info response packet. */
c906108c 3196/* Tagging the fields allows us to request specific fields and to
23860348 3197 add more fields as time goes by. */
c906108c 3198
23860348 3199#define TAG_THREADID 1 /* Echo the thread identifier. */
c5aa993b 3200#define TAG_EXISTS 2 /* Is this process defined enough to
23860348 3201 fetch registers and its stack? */
c5aa993b 3202#define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
23860348 3203#define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
802188a7 3204#define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
23860348 3205 the process. */
c906108c 3206
6b8edb51
PA
3207int
3208remote_target::remote_unpack_thread_info_response (char *pkt,
3209 threadref *expectedref,
3210 gdb_ext_thread_info *info)
c906108c 3211{
d01949b6 3212 struct remote_state *rs = get_remote_state ();
c906108c 3213 int mask, length;
cfd77fa1 3214 int tag;
c906108c 3215 threadref ref;
8d64371b 3216 char *limit = pkt + rs->buf.size (); /* Plausible parsing limit. */
c906108c
SS
3217 int retval = 1;
3218
23860348 3219 /* info->threadid = 0; FIXME: implement zero_threadref. */
c906108c
SS
3220 info->active = 0;
3221 info->display[0] = '\0';
3222 info->shortname[0] = '\0';
3223 info->more_display[0] = '\0';
3224
23860348
MS
3225 /* Assume the characters indicating the packet type have been
3226 stripped. */
c906108c
SS
3227 pkt = unpack_int (pkt, &mask); /* arg mask */
3228 pkt = unpack_threadid (pkt, &ref);
3229
3230 if (mask == 0)
8a3fe4f8 3231 warning (_("Incomplete response to threadinfo request."));
c906108c 3232 if (!threadmatch (&ref, expectedref))
23860348 3233 { /* This is an answer to a different request. */
8a3fe4f8 3234 warning (_("ERROR RMT Thread info mismatch."));
c906108c
SS
3235 return 0;
3236 }
3237 copy_threadref (&info->threadid, &ref);
3238
405feb71 3239 /* Loop on tagged fields , try to bail if something goes wrong. */
c906108c 3240
23860348
MS
3241 /* Packets are terminated with nulls. */
3242 while ((pkt < limit) && mask && *pkt)
c906108c
SS
3243 {
3244 pkt = unpack_int (pkt, &tag); /* tag */
23860348
MS
3245 pkt = unpack_byte (pkt, &length); /* length */
3246 if (!(tag & mask)) /* Tags out of synch with mask. */
c906108c 3247 {
8a3fe4f8 3248 warning (_("ERROR RMT: threadinfo tag mismatch."));
c906108c
SS
3249 retval = 0;
3250 break;
3251 }
3252 if (tag == TAG_THREADID)
3253 {
3254 if (length != 16)
3255 {
8a3fe4f8 3256 warning (_("ERROR RMT: length of threadid is not 16."));
c906108c
SS
3257 retval = 0;
3258 break;
3259 }
3260 pkt = unpack_threadid (pkt, &ref);
3261 mask = mask & ~TAG_THREADID;
3262 continue;
3263 }
3264 if (tag == TAG_EXISTS)
3265 {
3266 info->active = stub_unpack_int (pkt, length);
3267 pkt += length;
3268 mask = mask & ~(TAG_EXISTS);
3269 if (length > 8)
3270 {
8a3fe4f8 3271 warning (_("ERROR RMT: 'exists' length too long."));
c906108c
SS
3272 retval = 0;
3273 break;
3274 }
3275 continue;
3276 }
3277 if (tag == TAG_THREADNAME)
3278 {
3279 pkt = unpack_string (pkt, &info->shortname[0], length);
3280 mask = mask & ~TAG_THREADNAME;
3281 continue;
3282 }
3283 if (tag == TAG_DISPLAY)
3284 {
3285 pkt = unpack_string (pkt, &info->display[0], length);
3286 mask = mask & ~TAG_DISPLAY;
3287 continue;
3288 }
3289 if (tag == TAG_MOREDISPLAY)
3290 {
3291 pkt = unpack_string (pkt, &info->more_display[0], length);
3292 mask = mask & ~TAG_MOREDISPLAY;
3293 continue;
3294 }
8a3fe4f8 3295 warning (_("ERROR RMT: unknown thread info tag."));
23860348 3296 break; /* Not a tag we know about. */
c906108c
SS
3297 }
3298 return retval;
3299}
3300
6b8edb51
PA
3301int
3302remote_target::remote_get_threadinfo (threadref *threadid,
3303 int fieldset,
3304 gdb_ext_thread_info *info)
c906108c 3305{
d01949b6 3306 struct remote_state *rs = get_remote_state ();
c906108c 3307 int result;
c906108c 3308
8d64371b 3309 pack_threadinfo_request (rs->buf.data (), fieldset, threadid);
2e9f7625 3310 putpkt (rs->buf);
8d64371b 3311 getpkt (&rs->buf, 0);
3084dd77
PA
3312
3313 if (rs->buf[0] == '\0')
3314 return 0;
3315
8d64371b 3316 result = remote_unpack_thread_info_response (&rs->buf[2],
23860348 3317 threadid, info);
c906108c
SS
3318 return result;
3319}
3320
c906108c
SS
3321/* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
3322
3323static char *
fba45db2
KB
3324pack_threadlist_request (char *pkt, int startflag, int threadcount,
3325 threadref *nextthread)
c906108c
SS
3326{
3327 *pkt++ = 'q'; /* info query packet */
3328 *pkt++ = 'L'; /* Process LIST or threadLIST request */
23860348 3329 pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */
c906108c
SS
3330 pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */
3331 pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */
3332 *pkt = '\0';
3333 return pkt;
3334}
3335
3336/* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
3337
6b8edb51
PA
3338int
3339remote_target::parse_threadlist_response (char *pkt, int result_limit,
3340 threadref *original_echo,
3341 threadref *resultlist,
3342 int *doneflag)
c906108c 3343{
d01949b6 3344 struct remote_state *rs = get_remote_state ();
c906108c
SS
3345 char *limit;
3346 int count, resultcount, done;
3347
3348 resultcount = 0;
3349 /* Assume the 'q' and 'M chars have been stripped. */
8d64371b 3350 limit = pkt + (rs->buf.size () - BUF_THREAD_ID_SIZE);
23860348 3351 /* done parse past here */
c906108c
SS
3352 pkt = unpack_byte (pkt, &count); /* count field */
3353 pkt = unpack_nibble (pkt, &done);
3354 /* The first threadid is the argument threadid. */
3355 pkt = unpack_threadid (pkt, original_echo); /* should match query packet */
3356 while ((count-- > 0) && (pkt < limit))
3357 {
3358 pkt = unpack_threadid (pkt, resultlist++);
3359 if (resultcount++ >= result_limit)
3360 break;
3361 }
3362 if (doneflag)
3363 *doneflag = done;
3364 return resultcount;
3365}
3366
6dc54d91
PA
3367/* Fetch the next batch of threads from the remote. Returns -1 if the
3368 qL packet is not supported, 0 on error and 1 on success. */
3369
6b8edb51
PA
3370int
3371remote_target::remote_get_threadlist (int startflag, threadref *nextthread,
3372 int result_limit, int *done, int *result_count,
3373 threadref *threadlist)
c906108c 3374{
d01949b6 3375 struct remote_state *rs = get_remote_state ();
c906108c
SS
3376 int result = 1;
3377
405feb71 3378 /* Truncate result limit to be smaller than the packet size. */
3e43a32a
MS
3379 if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10)
3380 >= get_remote_packet_size ())
ea9c271d 3381 result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2;
c906108c 3382
8d64371b
TT
3383 pack_threadlist_request (rs->buf.data (), startflag, result_limit,
3384 nextthread);
6d820c5c 3385 putpkt (rs->buf);
8d64371b
TT
3386 getpkt (&rs->buf, 0);
3387 if (rs->buf[0] == '\0')
6dc54d91
PA
3388 {
3389 /* Packet not supported. */
3390 return -1;
3391 }
3392
3393 *result_count =
8d64371b 3394 parse_threadlist_response (&rs->buf[2], result_limit,
6dc54d91 3395 &rs->echo_nextthread, threadlist, done);
c906108c 3396
0d031856 3397 if (!threadmatch (&rs->echo_nextthread, nextthread))
c906108c 3398 {
23860348 3399 /* FIXME: This is a good reason to drop the packet. */
405feb71
TV
3400 /* Possibly, there is a duplicate response. */
3401 /* Possibilities :
c906108c
SS
3402 retransmit immediatly - race conditions
3403 retransmit after timeout - yes
3404 exit
3405 wait for packet, then exit
3406 */
8a3fe4f8 3407 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
23860348 3408 return 0; /* I choose simply exiting. */
c906108c
SS
3409 }
3410 if (*result_count <= 0)
3411 {
3412 if (*done != 1)
3413 {
8a3fe4f8 3414 warning (_("RMT ERROR : failed to get remote thread list."));
c906108c
SS
3415 result = 0;
3416 }
3417 return result; /* break; */
3418 }
3419 if (*result_count > result_limit)
3420 {
3421 *result_count = 0;
8a3fe4f8 3422 warning (_("RMT ERROR: threadlist response longer than requested."));
c906108c
SS
3423 return 0;
3424 }
3425 return result;
3426}
3427
6dc54d91
PA
3428/* Fetch the list of remote threads, with the qL packet, and call
3429 STEPFUNCTION for each thread found. Stops iterating and returns 1
3430 if STEPFUNCTION returns true. Stops iterating and returns 0 if the
3431 STEPFUNCTION returns false. If the packet is not supported,
3432 returns -1. */
c906108c 3433
6b8edb51
PA
3434int
3435remote_target::remote_threadlist_iterator (rmt_thread_action stepfunction,
3436 void *context, int looplimit)
c906108c 3437{
0d031856 3438 struct remote_state *rs = get_remote_state ();
c906108c
SS
3439 int done, i, result_count;
3440 int startflag = 1;
3441 int result = 1;
3442 int loopcount = 0;
c906108c
SS
3443
3444 done = 0;
3445 while (!done)
3446 {
3447 if (loopcount++ > looplimit)
3448 {
3449 result = 0;
8a3fe4f8 3450 warning (_("Remote fetch threadlist -infinite loop-."));
c906108c
SS
3451 break;
3452 }
6dc54d91
PA
3453 result = remote_get_threadlist (startflag, &rs->nextthread,
3454 MAXTHREADLISTRESULTS,
3455 &done, &result_count,
3456 rs->resultthreadlist);
3457 if (result <= 0)
3458 break;
23860348 3459 /* Clear for later iterations. */
c906108c
SS
3460 startflag = 0;
3461 /* Setup to resume next batch of thread references, set nextthread. */
3462 if (result_count >= 1)
0d031856
TT
3463 copy_threadref (&rs->nextthread,
3464 &rs->resultthreadlist[result_count - 1]);
c906108c
SS
3465 i = 0;
3466 while (result_count--)
6dc54d91
PA
3467 {
3468 if (!(*stepfunction) (&rs->resultthreadlist[i++], context))
3469 {
3470 result = 0;
3471 break;
3472 }
3473 }
c906108c
SS
3474 }
3475 return result;
3476}
3477
6dc54d91
PA
3478/* A thread found on the remote target. */
3479
21fe1c75 3480struct thread_item
6dc54d91 3481{
21fe1c75
SM
3482 explicit thread_item (ptid_t ptid_)
3483 : ptid (ptid_)
3484 {}
3485
3486 thread_item (thread_item &&other) = default;
3487 thread_item &operator= (thread_item &&other) = default;
3488
3489 DISABLE_COPY_AND_ASSIGN (thread_item);
3490
6dc54d91
PA
3491 /* The thread's PTID. */
3492 ptid_t ptid;
3493
21fe1c75
SM
3494 /* The thread's extra info. */
3495 std::string extra;
6dc54d91 3496
21fe1c75
SM
3497 /* The thread's name. */
3498 std::string name;
79efa585 3499
6dc54d91 3500 /* The core the thread was running on. -1 if not known. */
21fe1c75 3501 int core = -1;
f6327dcb
KB
3502
3503 /* The thread handle associated with the thread. */
21fe1c75 3504 gdb::byte_vector thread_handle;
21fe1c75 3505};
6dc54d91
PA
3506
3507/* Context passed around to the various methods listing remote
3508 threads. As new threads are found, they're added to the ITEMS
3509 vector. */
3510
3511struct threads_listing_context
3512{
21fe1c75
SM
3513 /* Return true if this object contains an entry for a thread with ptid
3514 PTID. */
6dc54d91 3515
21fe1c75
SM
3516 bool contains_thread (ptid_t ptid) const
3517 {
3518 auto match_ptid = [&] (const thread_item &item)
3519 {
3520 return item.ptid == ptid;
3521 };
80134cf5 3522
21fe1c75
SM
3523 auto it = std::find_if (this->items.begin (),
3524 this->items.end (),
3525 match_ptid);
80134cf5 3526
21fe1c75
SM
3527 return it != this->items.end ();
3528 }
80134cf5 3529
21fe1c75 3530 /* Remove the thread with ptid PTID. */
80134cf5 3531
21fe1c75
SM
3532 void remove_thread (ptid_t ptid)
3533 {
3534 auto match_ptid = [&] (const thread_item &item)
3535 {
3536 return item.ptid == ptid;
3537 };
cbb8991c 3538
21fe1c75
SM
3539 auto it = std::remove_if (this->items.begin (),
3540 this->items.end (),
3541 match_ptid);
cbb8991c 3542
21fe1c75
SM
3543 if (it != this->items.end ())
3544 this->items.erase (it);
3545 }
3546
3547 /* The threads found on the remote target. */
3548 std::vector<thread_item> items;
3549};
cbb8991c 3550
c906108c 3551static int
6dc54d91 3552remote_newthread_step (threadref *ref, void *data)
c906108c 3553{
19ba03f4
SM
3554 struct threads_listing_context *context
3555 = (struct threads_listing_context *) data;
21fe1c75
SM
3556 int pid = inferior_ptid.pid ();
3557 int lwp = threadref_to_int (ref);
3558 ptid_t ptid (pid, lwp);
6dc54d91 3559
21fe1c75 3560 context->items.emplace_back (ptid);
6dc54d91 3561
c906108c
SS
3562 return 1; /* continue iterator */
3563}
3564
3565#define CRAZY_MAX_THREADS 1000
3566
6b8edb51
PA
3567ptid_t
3568remote_target::remote_current_thread (ptid_t oldpid)
c906108c 3569{
d01949b6 3570 struct remote_state *rs = get_remote_state ();
c906108c
SS
3571
3572 putpkt ("qC");
8d64371b 3573 getpkt (&rs->buf, 0);
2e9f7625 3574 if (rs->buf[0] == 'Q' && rs->buf[1] == 'C')
c9f35b34 3575 {
256642e8 3576 const char *obuf;
c9f35b34
KB
3577 ptid_t result;
3578
3579 result = read_ptid (&rs->buf[2], &obuf);
3580 if (*obuf != '\0' && remote_debug)
3581 fprintf_unfiltered (gdb_stdlog,
3582 "warning: garbage in qC reply\n");
3583
3584 return result;
3585 }
c906108c
SS
3586 else
3587 return oldpid;
3588}
3589
6dc54d91 3590/* List remote threads using the deprecated qL packet. */
cce74817 3591
6b8edb51
PA
3592int
3593remote_target::remote_get_threads_with_ql (threads_listing_context *context)
c906108c 3594{
6dc54d91
PA
3595 if (remote_threadlist_iterator (remote_newthread_step, context,
3596 CRAZY_MAX_THREADS) >= 0)
3597 return 1;
3598
3599 return 0;
c906108c
SS
3600}
3601
dc146f7c
VP
3602#if defined(HAVE_LIBEXPAT)
3603
dc146f7c
VP
3604static void
3605start_thread (struct gdb_xml_parser *parser,
3606 const struct gdb_xml_element *element,
4d0fdd9b
SM
3607 void *user_data,
3608 std::vector<gdb_xml_value> &attributes)
dc146f7c 3609{
19ba03f4
SM
3610 struct threads_listing_context *data
3611 = (struct threads_listing_context *) user_data;
3d2c1d41 3612 struct gdb_xml_value *attr;
dc146f7c 3613
4d0fdd9b 3614 char *id = (char *) xml_find_attribute (attributes, "id")->value.get ();
21fe1c75
SM
3615 ptid_t ptid = read_ptid (id, NULL);
3616
3617 data->items.emplace_back (ptid);
3618 thread_item &item = data->items.back ();
dc146f7c 3619
3d2c1d41
PA
3620 attr = xml_find_attribute (attributes, "core");
3621 if (attr != NULL)
4d0fdd9b 3622 item.core = *(ULONGEST *) attr->value.get ();
dc146f7c 3623
79efa585 3624 attr = xml_find_attribute (attributes, "name");
21fe1c75 3625 if (attr != NULL)
4d0fdd9b 3626 item.name = (const char *) attr->value.get ();
79efa585 3627
f6327dcb
KB
3628 attr = xml_find_attribute (attributes, "handle");
3629 if (attr != NULL)
4d0fdd9b 3630 item.thread_handle = hex2bin ((const char *) attr->value.get ());
dc146f7c
VP
3631}
3632
3633static void
3634end_thread (struct gdb_xml_parser *parser,
3635 const struct gdb_xml_element *element,
3636 void *user_data, const char *body_text)
3637{
19ba03f4
SM
3638 struct threads_listing_context *data
3639 = (struct threads_listing_context *) user_data;
dc146f7c 3640
21fe1c75
SM
3641 if (body_text != NULL && *body_text != '\0')
3642 data->items.back ().extra = body_text;
dc146f7c
VP
3643}
3644
3645const struct gdb_xml_attribute thread_attributes[] = {
3646 { "id", GDB_XML_AF_NONE, NULL, NULL },
3647 { "core", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
79efa585 3648 { "name", GDB_XML_AF_OPTIONAL, NULL, NULL },
f6327dcb 3649 { "handle", GDB_XML_AF_OPTIONAL, NULL, NULL },
dc146f7c
VP
3650 { NULL, GDB_XML_AF_NONE, NULL, NULL }
3651};
3652
3653const struct gdb_xml_element thread_children[] = {
3654 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3655};
3656
3657const struct gdb_xml_element threads_children[] = {
3658 { "thread", thread_attributes, thread_children,
3659 GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL,
3660 start_thread, end_thread },
3661 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3662};
3663
3664const struct gdb_xml_element threads_elements[] = {
3665 { "threads", NULL, threads_children,
3666 GDB_XML_EF_NONE, NULL, NULL },
3667 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3668};
3669
3670#endif
3671
6dc54d91 3672/* List remote threads using qXfer:threads:read. */
9d1f7ab2 3673
6b8edb51
PA
3674int
3675remote_target::remote_get_threads_with_qxfer (threads_listing_context *context)
0f71a2f6 3676{
dc146f7c 3677#if defined(HAVE_LIBEXPAT)
4082afcc 3678 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
dc146f7c 3679 {
9018be22 3680 gdb::optional<gdb::char_vector> xml
6b8edb51 3681 = target_read_stralloc (this, TARGET_OBJECT_THREADS, NULL);
efc0eabd 3682
9018be22 3683 if (xml && (*xml)[0] != '\0')
dc146f7c 3684 {
6dc54d91 3685 gdb_xml_parse_quick (_("threads"), "threads.dtd",
9018be22 3686 threads_elements, xml->data (), context);
dc146f7c
VP
3687 }
3688
6dc54d91 3689 return 1;
dc146f7c
VP
3690 }
3691#endif
3692
6dc54d91
PA
3693 return 0;
3694}
3695
3696/* List remote threads using qfThreadInfo/qsThreadInfo. */
3697
6b8edb51
PA
3698int
3699remote_target::remote_get_threads_with_qthreadinfo (threads_listing_context *context)
6dc54d91
PA
3700{
3701 struct remote_state *rs = get_remote_state ();
3702
b80fafe3 3703 if (rs->use_threadinfo_query)
9d1f7ab2 3704 {
256642e8 3705 const char *bufp;
6dc54d91 3706
9d1f7ab2 3707 putpkt ("qfThreadInfo");
8d64371b
TT
3708 getpkt (&rs->buf, 0);
3709 bufp = rs->buf.data ();
9d1f7ab2 3710 if (bufp[0] != '\0') /* q packet recognized */
802188a7 3711 {
9d1f7ab2
MS
3712 while (*bufp++ == 'm') /* reply contains one or more TID */
3713 {
3714 do
3715 {
21fe1c75
SM
3716 ptid_t ptid = read_ptid (bufp, &bufp);
3717 context->items.emplace_back (ptid);
9d1f7ab2
MS
3718 }
3719 while (*bufp++ == ','); /* comma-separated list */
3720 putpkt ("qsThreadInfo");
8d64371b
TT
3721 getpkt (&rs->buf, 0);
3722 bufp = rs->buf.data ();
9d1f7ab2 3723 }
6dc54d91
PA
3724 return 1;
3725 }
3726 else
3727 {
3728 /* Packet not recognized. */
3729 rs->use_threadinfo_query = 0;
9d1f7ab2
MS
3730 }
3731 }
3732
6dc54d91
PA
3733 return 0;
3734}
3735
e8032dde 3736/* Implement the to_update_thread_list function for the remote
6dc54d91
PA
3737 targets. */
3738
f6ac5f3d
PA
3739void
3740remote_target::update_thread_list ()
6dc54d91 3741{
6dc54d91 3742 struct threads_listing_context context;
ab970af1 3743 int got_list = 0;
e8032dde 3744
6dc54d91
PA
3745 /* We have a few different mechanisms to fetch the thread list. Try
3746 them all, starting with the most preferred one first, falling
3747 back to older methods. */
6b8edb51
PA
3748 if (remote_get_threads_with_qxfer (&context)
3749 || remote_get_threads_with_qthreadinfo (&context)
3750 || remote_get_threads_with_ql (&context))
6dc54d91 3751 {
ab970af1
PA
3752 got_list = 1;
3753
21fe1c75 3754 if (context.items.empty ()
f6ac5f3d 3755 && remote_thread_always_alive (inferior_ptid))
7d1a114c
PA
3756 {
3757 /* Some targets don't really support threads, but still
3758 reply an (empty) thread list in response to the thread
3759 listing packets, instead of replying "packet not
3760 supported". Exit early so we don't delete the main
3761 thread. */
7d1a114c
PA
3762 return;
3763 }
3764
ab970af1
PA
3765 /* CONTEXT now holds the current thread list on the remote
3766 target end. Delete GDB-side threads no longer found on the
3767 target. */
08036331 3768 for (thread_info *tp : all_threads_safe ())
cbb8991c 3769 {
21fe1c75 3770 if (!context.contains_thread (tp->ptid))
ab970af1
PA
3771 {
3772 /* Not found. */
00431a78 3773 delete_thread (tp);
ab970af1 3774 }
cbb8991c
DB
3775 }
3776
3777 /* Remove any unreported fork child threads from CONTEXT so
3778 that we don't interfere with follow fork, which is where
3779 creation of such threads is handled. */
3780 remove_new_fork_children (&context);
74531fed 3781
ab970af1 3782 /* And now add threads we don't know about yet to our list. */
21fe1c75 3783 for (thread_item &item : context.items)
6dc54d91 3784 {
21fe1c75 3785 if (item.ptid != null_ptid)
6dc54d91 3786 {
6dc54d91 3787 /* In non-stop mode, we assume new found threads are
0d5b594f
PA
3788 executing until proven otherwise with a stop reply.
3789 In all-stop, we can only get here if all threads are
6dc54d91 3790 stopped. */
0d5b594f 3791 int executing = target_is_non_stop_p () ? 1 : 0;
6dc54d91 3792
21fe1c75 3793 remote_notice_new_inferior (item.ptid, executing);
6dc54d91 3794
08036331 3795 thread_info *tp = find_thread_ptid (item.ptid);
00431a78 3796 remote_thread_info *info = get_remote_thread_info (tp);
21fe1c75 3797 info->core = item.core;
7aabaf9d
SM
3798 info->extra = std::move (item.extra);
3799 info->name = std::move (item.name);
3800 info->thread_handle = std::move (item.thread_handle);
6dc54d91
PA
3801 }
3802 }
3803 }
3804
ab970af1
PA
3805 if (!got_list)
3806 {
3807 /* If no thread listing method is supported, then query whether
3808 each known thread is alive, one by one, with the T packet.
3809 If the target doesn't support threads at all, then this is a
3810 no-op. See remote_thread_alive. */
3811 prune_threads ();
3812 }
9d1f7ab2
MS
3813}
3814
802188a7 3815/*
9d1f7ab2
MS
3816 * Collect a descriptive string about the given thread.
3817 * The target may say anything it wants to about the thread
3818 * (typically info about its blocked / runnable state, name, etc.).
3819 * This string will appear in the info threads display.
802188a7 3820 *
9d1f7ab2
MS
3821 * Optional: targets are not required to implement this function.
3822 */
3823
f6ac5f3d
PA
3824const char *
3825remote_target::extra_thread_info (thread_info *tp)
9d1f7ab2 3826{
d01949b6 3827 struct remote_state *rs = get_remote_state ();
9d1f7ab2
MS
3828 int set;
3829 threadref id;
3830 struct gdb_ext_thread_info threadinfo;
9d1f7ab2 3831
5d93a237 3832 if (rs->remote_desc == 0) /* paranoia */
8e65ff28 3833 internal_error (__FILE__, __LINE__,
e2e0b3e5 3834 _("remote_threads_extra_info"));
9d1f7ab2 3835
d7e15655 3836 if (tp->ptid == magic_null_ptid
e38504b3 3837 || (tp->ptid.pid () != 0 && tp->ptid.lwp () == 0))
60e569b9
PA
3838 /* This is the main thread which was added by GDB. The remote
3839 server doesn't know about it. */
3840 return NULL;
3841
c76a8ea3
PA
3842 std::string &extra = get_remote_thread_info (tp)->extra;
3843
3844 /* If already have cached info, use it. */
3845 if (!extra.empty ())
3846 return extra.c_str ();
3847
4082afcc 3848 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
dc146f7c 3849 {
c76a8ea3
PA
3850 /* If we're using qXfer:threads:read, then the extra info is
3851 included in the XML. So if we didn't have anything cached,
3852 it's because there's really no extra info. */
3853 return NULL;
dc146f7c
VP
3854 }
3855
b80fafe3 3856 if (rs->use_threadextra_query)
9d1f7ab2 3857 {
8d64371b
TT
3858 char *b = rs->buf.data ();
3859 char *endb = b + get_remote_packet_size ();
82f73884
PA
3860
3861 xsnprintf (b, endb - b, "qThreadExtraInfo,");
3862 b += strlen (b);
3863 write_ptid (b, endb, tp->ptid);
3864
2e9f7625 3865 putpkt (rs->buf);
8d64371b 3866 getpkt (&rs->buf, 0);
2e9f7625 3867 if (rs->buf[0] != 0)
9d1f7ab2 3868 {
8d64371b
TT
3869 extra.resize (strlen (rs->buf.data ()) / 2);
3870 hex2bin (rs->buf.data (), (gdb_byte *) &extra[0], extra.size ());
c76a8ea3 3871 return extra.c_str ();
9d1f7ab2 3872 }
0f71a2f6 3873 }
9d1f7ab2
MS
3874
3875 /* If the above query fails, fall back to the old method. */
b80fafe3 3876 rs->use_threadextra_query = 0;
9d1f7ab2
MS
3877 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
3878 | TAG_MOREDISPLAY | TAG_DISPLAY;
e38504b3 3879 int_to_threadref (&id, tp->ptid.lwp ());
9d1f7ab2
MS
3880 if (remote_get_threadinfo (&id, set, &threadinfo))
3881 if (threadinfo.active)
0f71a2f6 3882 {
9d1f7ab2 3883 if (*threadinfo.shortname)
c76a8ea3 3884 string_appendf (extra, " Name: %s", threadinfo.shortname);
9d1f7ab2 3885 if (*threadinfo.display)
c76a8ea3
PA
3886 {
3887 if (!extra.empty ())
3888 extra += ',';
3889 string_appendf (extra, " State: %s", threadinfo.display);
3890 }
9d1f7ab2 3891 if (*threadinfo.more_display)
c5aa993b 3892 {
c76a8ea3
PA
3893 if (!extra.empty ())
3894 extra += ',';
3895 string_appendf (extra, " Priority: %s", threadinfo.more_display);
c5aa993b 3896 }
c76a8ea3 3897 return extra.c_str ();
0f71a2f6 3898 }
9d1f7ab2 3899 return NULL;
0f71a2f6 3900}
c906108c 3901\f
c5aa993b 3902
f6ac5f3d
PA
3903bool
3904remote_target::static_tracepoint_marker_at (CORE_ADDR addr,
3905 struct static_tracepoint_marker *marker)
0fb4aa4b
PA
3906{
3907 struct remote_state *rs = get_remote_state ();
8d64371b 3908 char *p = rs->buf.data ();
0fb4aa4b 3909
bba74b36 3910 xsnprintf (p, get_remote_packet_size (), "qTSTMat:");
0fb4aa4b
PA
3911 p += strlen (p);
3912 p += hexnumstr (p, addr);
3913 putpkt (rs->buf);
8d64371b
TT
3914 getpkt (&rs->buf, 0);
3915 p = rs->buf.data ();
0fb4aa4b
PA
3916
3917 if (*p == 'E')
3918 error (_("Remote failure reply: %s"), p);
3919
3920 if (*p++ == 'm')
3921 {
256642e8 3922 parse_static_tracepoint_marker_definition (p, NULL, marker);
5d9310c4 3923 return true;
0fb4aa4b
PA
3924 }
3925
5d9310c4 3926 return false;
0fb4aa4b
PA
3927}
3928
f6ac5f3d
PA
3929std::vector<static_tracepoint_marker>
3930remote_target::static_tracepoint_markers_by_strid (const char *strid)
0fb4aa4b
PA
3931{
3932 struct remote_state *rs = get_remote_state ();
5d9310c4 3933 std::vector<static_tracepoint_marker> markers;
256642e8 3934 const char *p;
5d9310c4 3935 static_tracepoint_marker marker;
0fb4aa4b
PA
3936
3937 /* Ask for a first packet of static tracepoint marker
3938 definition. */
3939 putpkt ("qTfSTM");
8d64371b
TT
3940 getpkt (&rs->buf, 0);
3941 p = rs->buf.data ();
0fb4aa4b
PA
3942 if (*p == 'E')
3943 error (_("Remote failure reply: %s"), p);
3944
0fb4aa4b
PA
3945 while (*p++ == 'm')
3946 {
0fb4aa4b
PA
3947 do
3948 {
5d9310c4 3949 parse_static_tracepoint_marker_definition (p, &p, &marker);
0fb4aa4b 3950
5d9310c4
SM
3951 if (strid == NULL || marker.str_id == strid)
3952 markers.push_back (std::move (marker));
0fb4aa4b
PA
3953 }
3954 while (*p++ == ','); /* comma-separated list */
3955 /* Ask for another packet of static tracepoint definition. */
3956 putpkt ("qTsSTM");
8d64371b
TT
3957 getpkt (&rs->buf, 0);
3958 p = rs->buf.data ();
0fb4aa4b
PA
3959 }
3960
0fb4aa4b
PA
3961 return markers;
3962}
3963
3964\f
10760264
JB
3965/* Implement the to_get_ada_task_ptid function for the remote targets. */
3966
f6ac5f3d
PA
3967ptid_t
3968remote_target::get_ada_task_ptid (long lwp, long thread)
10760264 3969{
e99b03dc 3970 return ptid_t (inferior_ptid.pid (), lwp, 0);
10760264
JB
3971}
3972\f
3973
24b06219 3974/* Restart the remote side; this is an extended protocol operation. */
c906108c 3975
6b8edb51
PA
3976void
3977remote_target::extended_remote_restart ()
c906108c 3978{
d01949b6 3979 struct remote_state *rs = get_remote_state ();
c906108c
SS
3980
3981 /* Send the restart command; for reasons I don't understand the
3982 remote side really expects a number after the "R". */
8d64371b 3983 xsnprintf (rs->buf.data (), get_remote_packet_size (), "R%x", 0);
6d820c5c 3984 putpkt (rs->buf);
c906108c 3985
ad9a8f3f 3986 remote_fileio_reset ();
c906108c
SS
3987}
3988\f
3989/* Clean up connection to a remote debugger. */
3990
f6ac5f3d
PA
3991void
3992remote_target::close ()
c906108c 3993{
048094ac 3994 /* Make sure we leave stdin registered in the event loop. */
f6ac5f3d 3995 terminal_ours ();
ce5ce7ed 3996
ce5ce7ed 3997 /* We don't have a connection to the remote stub anymore. Get rid
f67fd822
PM
3998 of all the inferiors and their threads we were controlling.
3999 Reset inferior_ptid to null_ptid first, as otherwise has_stack_frame
4000 will be unable to find the thread corresponding to (pid, 0, 0). */
0f2caa1b 4001 inferior_ptid = null_ptid;
f67fd822 4002 discard_all_inferiors ();
ce5ce7ed 4003
6b8edb51
PA
4004 trace_reset_local_state ();
4005
4006 delete this;
4007}
4008
4009remote_target::~remote_target ()
4010{
4011 struct remote_state *rs = get_remote_state ();
4012
4013 /* Check for NULL because we may get here with a partially
4014 constructed target/connection. */
4015 if (rs->remote_desc == nullptr)
4016 return;
4017
4018 serial_close (rs->remote_desc);
4019
4020 /* We are destroying the remote target, so we should discard
f48ff2a7 4021 everything of this target. */
6b8edb51 4022 discard_pending_stop_replies_in_queue ();
74531fed 4023
6b8edb51
PA
4024 if (rs->remote_async_inferior_event_token)
4025 delete_async_event_handler (&rs->remote_async_inferior_event_token);
722247f1 4026
97dfbadd 4027 delete rs->notif_state;
c906108c
SS
4028}
4029
23860348 4030/* Query the remote side for the text, data and bss offsets. */
c906108c 4031
6b8edb51
PA
4032void
4033remote_target::get_offsets ()
c906108c 4034{
d01949b6 4035 struct remote_state *rs = get_remote_state ();
2e9f7625 4036 char *buf;
085dd6e6 4037 char *ptr;
31d99776
DJ
4038 int lose, num_segments = 0, do_sections, do_segments;
4039 CORE_ADDR text_addr, data_addr, bss_addr, segments[2];
c906108c 4040 struct section_offsets *offs;
31d99776
DJ
4041 struct symfile_segment_data *data;
4042
4043 if (symfile_objfile == NULL)
4044 return;
c906108c
SS
4045
4046 putpkt ("qOffsets");
8d64371b
TT
4047 getpkt (&rs->buf, 0);
4048 buf = rs->buf.data ();
c906108c
SS
4049
4050 if (buf[0] == '\000')
4051 return; /* Return silently. Stub doesn't support
23860348 4052 this command. */
c906108c
SS
4053 if (buf[0] == 'E')
4054 {
8a3fe4f8 4055 warning (_("Remote failure reply: %s"), buf);
c906108c
SS
4056 return;
4057 }
4058
4059 /* Pick up each field in turn. This used to be done with scanf, but
4060 scanf will make trouble if CORE_ADDR size doesn't match
4061 conversion directives correctly. The following code will work
4062 with any size of CORE_ADDR. */
4063 text_addr = data_addr = bss_addr = 0;
4064 ptr = buf;
4065 lose = 0;
4066
61012eef 4067 if (startswith (ptr, "Text="))
c906108c
SS
4068 {
4069 ptr += 5;
4070 /* Don't use strtol, could lose on big values. */
4071 while (*ptr && *ptr != ';')
4072 text_addr = (text_addr << 4) + fromhex (*ptr++);
c906108c 4073
61012eef 4074 if (startswith (ptr, ";Data="))
31d99776
DJ
4075 {
4076 ptr += 6;
4077 while (*ptr && *ptr != ';')
4078 data_addr = (data_addr << 4) + fromhex (*ptr++);
4079 }
4080 else
4081 lose = 1;
4082
61012eef 4083 if (!lose && startswith (ptr, ";Bss="))
31d99776
DJ
4084 {
4085 ptr += 5;
4086 while (*ptr && *ptr != ';')
4087 bss_addr = (bss_addr << 4) + fromhex (*ptr++);
c906108c 4088
31d99776
DJ
4089 if (bss_addr != data_addr)
4090 warning (_("Target reported unsupported offsets: %s"), buf);
4091 }
4092 else
4093 lose = 1;
4094 }
61012eef 4095 else if (startswith (ptr, "TextSeg="))
c906108c 4096 {
31d99776
DJ
4097 ptr += 8;
4098 /* Don't use strtol, could lose on big values. */
c906108c 4099 while (*ptr && *ptr != ';')
31d99776
DJ
4100 text_addr = (text_addr << 4) + fromhex (*ptr++);
4101 num_segments = 1;
4102
61012eef 4103 if (startswith (ptr, ";DataSeg="))
31d99776
DJ
4104 {
4105 ptr += 9;
4106 while (*ptr && *ptr != ';')
4107 data_addr = (data_addr << 4) + fromhex (*ptr++);
4108 num_segments++;
4109 }
c906108c
SS
4110 }
4111 else
4112 lose = 1;
4113
4114 if (lose)
8a3fe4f8 4115 error (_("Malformed response to offset query, %s"), buf);
31d99776
DJ
4116 else if (*ptr != '\0')
4117 warning (_("Target reported unsupported offsets: %s"), buf);
c906108c 4118
802188a7 4119 offs = ((struct section_offsets *)
a39a16c4 4120 alloca (SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections)));
802188a7 4121 memcpy (offs, symfile_objfile->section_offsets,
a39a16c4 4122 SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections));
c906108c 4123
31d99776
DJ
4124 data = get_symfile_segment_data (symfile_objfile->obfd);
4125 do_segments = (data != NULL);
4126 do_sections = num_segments == 0;
c906108c 4127
28c32713 4128 if (num_segments > 0)
31d99776 4129 {
31d99776
DJ
4130 segments[0] = text_addr;
4131 segments[1] = data_addr;
4132 }
28c32713
JB
4133 /* If we have two segments, we can still try to relocate everything
4134 by assuming that the .text and .data offsets apply to the whole
4135 text and data segments. Convert the offsets given in the packet
4136 to base addresses for symfile_map_offsets_to_segments. */
4137 else if (data && data->num_segments == 2)
4138 {
4139 segments[0] = data->segment_bases[0] + text_addr;
4140 segments[1] = data->segment_bases[1] + data_addr;
4141 num_segments = 2;
4142 }
8d385431
DJ
4143 /* If the object file has only one segment, assume that it is text
4144 rather than data; main programs with no writable data are rare,
4145 but programs with no code are useless. Of course the code might
4146 have ended up in the data segment... to detect that we would need
4147 the permissions here. */
4148 else if (data && data->num_segments == 1)
4149 {
4150 segments[0] = data->segment_bases[0] + text_addr;
4151 num_segments = 1;
4152 }
28c32713
JB
4153 /* There's no way to relocate by segment. */
4154 else
4155 do_segments = 0;
31d99776
DJ
4156
4157 if (do_segments)
4158 {
4159 int ret = symfile_map_offsets_to_segments (symfile_objfile->obfd, data,
4160 offs, num_segments, segments);
4161
4162 if (ret == 0 && !do_sections)
3e43a32a
MS
4163 error (_("Can not handle qOffsets TextSeg "
4164 "response with this symbol file"));
31d99776
DJ
4165
4166 if (ret > 0)
4167 do_sections = 0;
4168 }
c906108c 4169
9ef895d6
DJ
4170 if (data)
4171 free_symfile_segment_data (data);
31d99776
DJ
4172
4173 if (do_sections)
4174 {
4175 offs->offsets[SECT_OFF_TEXT (symfile_objfile)] = text_addr;
4176
3e43a32a
MS
4177 /* This is a temporary kludge to force data and bss to use the
4178 same offsets because that's what nlmconv does now. The real
4179 solution requires changes to the stub and remote.c that I
4180 don't have time to do right now. */
31d99776
DJ
4181
4182 offs->offsets[SECT_OFF_DATA (symfile_objfile)] = data_addr;
4183 offs->offsets[SECT_OFF_BSS (symfile_objfile)] = data_addr;
4184 }
c906108c
SS
4185
4186 objfile_relocate (symfile_objfile, offs);
4187}
4188
9a7071a8 4189/* Send interrupt_sequence to remote target. */
6b8edb51
PA
4190
4191void
4192remote_target::send_interrupt_sequence ()
9a7071a8 4193{
5d93a237
TT
4194 struct remote_state *rs = get_remote_state ();
4195
9a7071a8 4196 if (interrupt_sequence_mode == interrupt_sequence_control_c)
c33e31fd 4197 remote_serial_write ("\x03", 1);
9a7071a8 4198 else if (interrupt_sequence_mode == interrupt_sequence_break)
5d93a237 4199 serial_send_break (rs->remote_desc);
9a7071a8
JB
4200 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
4201 {
5d93a237 4202 serial_send_break (rs->remote_desc);
c33e31fd 4203 remote_serial_write ("g", 1);
9a7071a8
JB
4204 }
4205 else
4206 internal_error (__FILE__, __LINE__,
4207 _("Invalid value for interrupt_sequence_mode: %s."),
4208 interrupt_sequence_mode);
4209}
4210
3405876a
PA
4211
4212/* If STOP_REPLY is a T stop reply, look for the "thread" register,
4213 and extract the PTID. Returns NULL_PTID if not found. */
4214
4215static ptid_t
4216stop_reply_extract_thread (char *stop_reply)
4217{
4218 if (stop_reply[0] == 'T' && strlen (stop_reply) > 3)
4219 {
256642e8 4220 const char *p;
3405876a
PA
4221
4222 /* Txx r:val ; r:val (...) */
4223 p = &stop_reply[3];
4224
4225 /* Look for "register" named "thread". */
4226 while (*p != '\0')
4227 {
256642e8 4228 const char *p1;
3405876a
PA
4229
4230 p1 = strchr (p, ':');
4231 if (p1 == NULL)
4232 return null_ptid;
4233
4234 if (strncmp (p, "thread", p1 - p) == 0)
4235 return read_ptid (++p1, &p);
4236
4237 p1 = strchr (p, ';');
4238 if (p1 == NULL)
4239 return null_ptid;
4240 p1++;
4241
4242 p = p1;
4243 }
4244 }
4245
4246 return null_ptid;
4247}
4248
b7ea362b
PA
4249/* Determine the remote side's current thread. If we have a stop
4250 reply handy (in WAIT_STATUS), maybe it's a T stop reply with a
4251 "thread" register we can extract the current thread from. If not,
4252 ask the remote which is the current thread with qC. The former
4253 method avoids a roundtrip. */
4254
6b8edb51
PA
4255ptid_t
4256remote_target::get_current_thread (char *wait_status)
b7ea362b 4257{
6a49a997 4258 ptid_t ptid = null_ptid;
b7ea362b
PA
4259
4260 /* Note we don't use remote_parse_stop_reply as that makes use of
4261 the target architecture, which we haven't yet fully determined at
4262 this point. */
4263 if (wait_status != NULL)
4264 ptid = stop_reply_extract_thread (wait_status);
d7e15655 4265 if (ptid == null_ptid)
b7ea362b
PA
4266 ptid = remote_current_thread (inferior_ptid);
4267
4268 return ptid;
4269}
4270
49c62f2e
PA
4271/* Query the remote target for which is the current thread/process,
4272 add it to our tables, and update INFERIOR_PTID. The caller is
4273 responsible for setting the state such that the remote end is ready
3405876a
PA
4274 to return the current thread.
4275
4276 This function is called after handling the '?' or 'vRun' packets,
4277 whose response is a stop reply from which we can also try
4278 extracting the thread. If the target doesn't support the explicit
4279 qC query, we infer the current thread from that stop reply, passed
4280 in in WAIT_STATUS, which may be NULL. */
49c62f2e 4281
6b8edb51
PA
4282void
4283remote_target::add_current_inferior_and_thread (char *wait_status)
49c62f2e
PA
4284{
4285 struct remote_state *rs = get_remote_state ();
9ab8741a 4286 bool fake_pid_p = false;
49c62f2e
PA
4287
4288 inferior_ptid = null_ptid;
4289
b7ea362b 4290 /* Now, if we have thread information, update inferior_ptid. */
87215ad1 4291 ptid_t curr_ptid = get_current_thread (wait_status);
3405876a 4292
87215ad1 4293 if (curr_ptid != null_ptid)
49c62f2e
PA
4294 {
4295 if (!remote_multi_process_p (rs))
9ab8741a 4296 fake_pid_p = true;
49c62f2e
PA
4297 }
4298 else
4299 {
4300 /* Without this, some commands which require an active target
4301 (such as kill) won't work. This variable serves (at least)
4302 double duty as both the pid of the target process (if it has
4303 such), and as a flag indicating that a target is active. */
87215ad1 4304 curr_ptid = magic_null_ptid;
9ab8741a 4305 fake_pid_p = true;
49c62f2e
PA
4306 }
4307
e99b03dc 4308 remote_add_inferior (fake_pid_p, curr_ptid.pid (), -1, 1);
49c62f2e 4309
87215ad1
SDJ
4310 /* Add the main thread and switch to it. Don't try reading
4311 registers yet, since we haven't fetched the target description
4312 yet. */
4313 thread_info *tp = add_thread_silent (curr_ptid);
4314 switch_to_thread_no_regs (tp);
49c62f2e
PA
4315}
4316
6efcd9a8
PA
4317/* Print info about a thread that was found already stopped on
4318 connection. */
4319
4320static void
4321print_one_stopped_thread (struct thread_info *thread)
4322{
4323 struct target_waitstatus *ws = &thread->suspend.waitstatus;
4324
00431a78 4325 switch_to_thread (thread);
f2ffa92b 4326 thread->suspend.stop_pc = get_frame_pc (get_current_frame ());
6efcd9a8
PA
4327 set_current_sal_from_frame (get_current_frame ());
4328
4329 thread->suspend.waitstatus_pending_p = 0;
4330
4331 if (ws->kind == TARGET_WAITKIND_STOPPED)
4332 {
4333 enum gdb_signal sig = ws->value.sig;
4334
4335 if (signal_print_state (sig))
76727919 4336 gdb::observers::signal_received.notify (sig);
6efcd9a8 4337 }
76727919 4338 gdb::observers::normal_stop.notify (NULL, 1);
6efcd9a8
PA
4339}
4340
221e1a37
PA
4341/* Process all initial stop replies the remote side sent in response
4342 to the ? packet. These indicate threads that were already stopped
4343 on initial connection. We mark these threads as stopped and print
4344 their current frame before giving the user the prompt. */
4345
6b8edb51
PA
4346void
4347remote_target::process_initial_stop_replies (int from_tty)
221e1a37
PA
4348{
4349 int pending_stop_replies = stop_reply_queue_length ();
6efcd9a8
PA
4350 struct thread_info *selected = NULL;
4351 struct thread_info *lowest_stopped = NULL;
4352 struct thread_info *first = NULL;
221e1a37
PA
4353
4354 /* Consume the initial pending events. */
4355 while (pending_stop_replies-- > 0)
4356 {
4357 ptid_t waiton_ptid = minus_one_ptid;
4358 ptid_t event_ptid;
4359 struct target_waitstatus ws;
4360 int ignore_event = 0;
4361
4362 memset (&ws, 0, sizeof (ws));
4363 event_ptid = target_wait (waiton_ptid, &ws, TARGET_WNOHANG);
4364 if (remote_debug)
4365 print_target_wait_results (waiton_ptid, event_ptid, &ws);
4366
4367 switch (ws.kind)
4368 {
4369 case TARGET_WAITKIND_IGNORE:
4370 case TARGET_WAITKIND_NO_RESUMED:
4371 case TARGET_WAITKIND_SIGNALLED:
4372 case TARGET_WAITKIND_EXITED:
4373 /* We shouldn't see these, but if we do, just ignore. */
4374 if (remote_debug)
4375 fprintf_unfiltered (gdb_stdlog, "remote: event ignored\n");
4376 ignore_event = 1;
4377 break;
4378
4379 case TARGET_WAITKIND_EXECD:
4380 xfree (ws.value.execd_pathname);
4381 break;
4382 default:
4383 break;
4384 }
4385
4386 if (ignore_event)
4387 continue;
4388
b926417a 4389 struct thread_info *evthread = find_thread_ptid (event_ptid);
221e1a37
PA
4390
4391 if (ws.kind == TARGET_WAITKIND_STOPPED)
4392 {
4393 enum gdb_signal sig = ws.value.sig;
4394
4395 /* Stubs traditionally report SIGTRAP as initial signal,
4396 instead of signal 0. Suppress it. */
4397 if (sig == GDB_SIGNAL_TRAP)
4398 sig = GDB_SIGNAL_0;
b926417a 4399 evthread->suspend.stop_signal = sig;
6efcd9a8
PA
4400 ws.value.sig = sig;
4401 }
221e1a37 4402
b926417a 4403 evthread->suspend.waitstatus = ws;
6efcd9a8
PA
4404
4405 if (ws.kind != TARGET_WAITKIND_STOPPED
4406 || ws.value.sig != GDB_SIGNAL_0)
b926417a 4407 evthread->suspend.waitstatus_pending_p = 1;
6efcd9a8
PA
4408
4409 set_executing (event_ptid, 0);
4410 set_running (event_ptid, 0);
b926417a 4411 get_remote_thread_info (evthread)->vcont_resumed = 0;
6efcd9a8
PA
4412 }
4413
4414 /* "Notice" the new inferiors before anything related to
4415 registers/memory. */
08036331 4416 for (inferior *inf : all_non_exited_inferiors ())
6efcd9a8 4417 {
6efcd9a8
PA
4418 inf->needs_setup = 1;
4419
4420 if (non_stop)
4421 {
08036331 4422 thread_info *thread = any_live_thread_of_inferior (inf);
00431a78 4423 notice_new_inferior (thread, thread->state == THREAD_RUNNING,
6efcd9a8
PA
4424 from_tty);
4425 }
4426 }
4427
4428 /* If all-stop on top of non-stop, pause all threads. Note this
4429 records the threads' stop pc, so must be done after "noticing"
4430 the inferiors. */
4431 if (!non_stop)
4432 {
4433 stop_all_threads ();
4434
4435 /* If all threads of an inferior were already stopped, we
4436 haven't setup the inferior yet. */
08036331 4437 for (inferior *inf : all_non_exited_inferiors ())
6efcd9a8 4438 {
6efcd9a8
PA
4439 if (inf->needs_setup)
4440 {
08036331 4441 thread_info *thread = any_live_thread_of_inferior (inf);
6efcd9a8
PA
4442 switch_to_thread_no_regs (thread);
4443 setup_inferior (0);
4444 }
4445 }
221e1a37 4446 }
6efcd9a8
PA
4447
4448 /* Now go over all threads that are stopped, and print their current
4449 frame. If all-stop, then if there's a signalled thread, pick
4450 that as current. */
08036331 4451 for (thread_info *thread : all_non_exited_threads ())
6efcd9a8 4452 {
6efcd9a8
PA
4453 if (first == NULL)
4454 first = thread;
4455
4456 if (!non_stop)
00431a78 4457 thread->set_running (false);
6efcd9a8
PA
4458 else if (thread->state != THREAD_STOPPED)
4459 continue;
4460
6efcd9a8
PA
4461 if (selected == NULL
4462 && thread->suspend.waitstatus_pending_p)
4463 selected = thread;
4464
5d5658a1
PA
4465 if (lowest_stopped == NULL
4466 || thread->inf->num < lowest_stopped->inf->num
4467 || thread->per_inf_num < lowest_stopped->per_inf_num)
6efcd9a8
PA
4468 lowest_stopped = thread;
4469
4470 if (non_stop)
4471 print_one_stopped_thread (thread);
4472 }
4473
4474 /* In all-stop, we only print the status of one thread, and leave
4475 others with their status pending. */
4476 if (!non_stop)
4477 {
08036331 4478 thread_info *thread = selected;
6efcd9a8
PA
4479 if (thread == NULL)
4480 thread = lowest_stopped;
4481 if (thread == NULL)
4482 thread = first;
4483
4484 print_one_stopped_thread (thread);
4485 }
4486
4487 /* For "info program". */
08036331 4488 thread_info *thread = inferior_thread ();
6efcd9a8
PA
4489 if (thread->state == THREAD_STOPPED)
4490 set_last_target_status (inferior_ptid, thread->suspend.waitstatus);
221e1a37
PA
4491}
4492
048094ac
PA
4493/* Start the remote connection and sync state. */
4494
f6ac5f3d
PA
4495void
4496remote_target::start_remote (int from_tty, int extended_p)
c906108c 4497{
c8d104ad
PA
4498 struct remote_state *rs = get_remote_state ();
4499 struct packet_config *noack_config;
2d717e4f 4500 char *wait_status = NULL;
8621d6a9 4501
048094ac
PA
4502 /* Signal other parts that we're going through the initial setup,
4503 and so things may not be stable yet. E.g., we don't try to
4504 install tracepoints until we've relocated symbols. Also, a
4505 Ctrl-C before we're connected and synced up can't interrupt the
4506 target. Instead, it offers to drop the (potentially wedged)
4507 connection. */
4508 rs->starting_up = 1;
4509
522002f9 4510 QUIT;
c906108c 4511
9a7071a8
JB
4512 if (interrupt_on_connect)
4513 send_interrupt_sequence ();
4514
57e12211 4515 /* Ack any packet which the remote side has already sent. */
048094ac 4516 remote_serial_write ("+", 1);
1e51243a 4517
c8d104ad
PA
4518 /* The first packet we send to the target is the optional "supported
4519 packets" request. If the target can answer this, it will tell us
4520 which later probes to skip. */
4521 remote_query_supported ();
4522
d914c394 4523 /* If the stub wants to get a QAllow, compose one and send it. */
4082afcc 4524 if (packet_support (PACKET_QAllow) != PACKET_DISABLE)
f6ac5f3d 4525 set_permissions ();
d914c394 4526
57809e5e
JK
4527 /* gdbserver < 7.7 (before its fix from 2013-12-11) did reply to any
4528 unknown 'v' packet with string "OK". "OK" gets interpreted by GDB
4529 as a reply to known packet. For packet "vFile:setfs:" it is an
4530 invalid reply and GDB would return error in
4531 remote_hostio_set_filesystem, making remote files access impossible.
4532 Disable "vFile:setfs:" in such case. Do not disable other 'v' packets as
4533 other "vFile" packets get correctly detected even on gdbserver < 7.7. */
4534 {
4535 const char v_mustreplyempty[] = "vMustReplyEmpty";
4536
4537 putpkt (v_mustreplyempty);
8d64371b
TT
4538 getpkt (&rs->buf, 0);
4539 if (strcmp (rs->buf.data (), "OK") == 0)
57809e5e 4540 remote_protocol_packets[PACKET_vFile_setfs].support = PACKET_DISABLE;
8d64371b 4541 else if (strcmp (rs->buf.data (), "") != 0)
57809e5e 4542 error (_("Remote replied unexpectedly to '%s': %s"), v_mustreplyempty,
8d64371b 4543 rs->buf.data ());
57809e5e
JK
4544 }
4545
c8d104ad
PA
4546 /* Next, we possibly activate noack mode.
4547
4548 If the QStartNoAckMode packet configuration is set to AUTO,
4549 enable noack mode if the stub reported a wish for it with
4550 qSupported.
4551
4552 If set to TRUE, then enable noack mode even if the stub didn't
4553 report it in qSupported. If the stub doesn't reply OK, the
4554 session ends with an error.
4555
4556 If FALSE, then don't activate noack mode, regardless of what the
4557 stub claimed should be the default with qSupported. */
4558
4559 noack_config = &remote_protocol_packets[PACKET_QStartNoAckMode];
4082afcc 4560 if (packet_config_support (noack_config) != PACKET_DISABLE)
c8d104ad
PA
4561 {
4562 putpkt ("QStartNoAckMode");
8d64371b 4563 getpkt (&rs->buf, 0);
c8d104ad
PA
4564 if (packet_ok (rs->buf, noack_config) == PACKET_OK)
4565 rs->noack_mode = 1;
4566 }
4567
04bd08de 4568 if (extended_p)
5fe04517
PA
4569 {
4570 /* Tell the remote that we are using the extended protocol. */
4571 putpkt ("!");
8d64371b 4572 getpkt (&rs->buf, 0);
5fe04517
PA
4573 }
4574
9b224c5e
PA
4575 /* Let the target know which signals it is allowed to pass down to
4576 the program. */
4577 update_signals_program_target ();
4578
d962ef82
DJ
4579 /* Next, if the target can specify a description, read it. We do
4580 this before anything involving memory or registers. */
4581 target_find_description ();
4582
6c95b8df
PA
4583 /* Next, now that we know something about the target, update the
4584 address spaces in the program spaces. */
4585 update_address_spaces ();
4586
50c71eaf
PA
4587 /* On OSs where the list of libraries is global to all
4588 processes, we fetch them early. */
f5656ead 4589 if (gdbarch_has_global_solist (target_gdbarch ()))
e696b3ad 4590 solib_add (NULL, from_tty, auto_solib_add);
50c71eaf 4591
6efcd9a8 4592 if (target_is_non_stop_p ())
74531fed 4593 {
4082afcc 4594 if (packet_support (PACKET_QNonStop) != PACKET_ENABLE)
3e43a32a
MS
4595 error (_("Non-stop mode requested, but remote "
4596 "does not support non-stop"));
74531fed
PA
4597
4598 putpkt ("QNonStop:1");
8d64371b 4599 getpkt (&rs->buf, 0);
74531fed 4600
8d64371b
TT
4601 if (strcmp (rs->buf.data (), "OK") != 0)
4602 error (_("Remote refused setting non-stop mode with: %s"),
4603 rs->buf.data ());
74531fed
PA
4604
4605 /* Find about threads and processes the stub is already
4606 controlling. We default to adding them in the running state.
4607 The '?' query below will then tell us about which threads are
4608 stopped. */
f6ac5f3d 4609 this->update_thread_list ();
74531fed 4610 }
4082afcc 4611 else if (packet_support (PACKET_QNonStop) == PACKET_ENABLE)
74531fed
PA
4612 {
4613 /* Don't assume that the stub can operate in all-stop mode.
e6f3fa52 4614 Request it explicitly. */
74531fed 4615 putpkt ("QNonStop:0");
8d64371b 4616 getpkt (&rs->buf, 0);
74531fed 4617
8d64371b
TT
4618 if (strcmp (rs->buf.data (), "OK") != 0)
4619 error (_("Remote refused setting all-stop mode with: %s"),
4620 rs->buf.data ());
74531fed
PA
4621 }
4622
a0743c90
YQ
4623 /* Upload TSVs regardless of whether the target is running or not. The
4624 remote stub, such as GDBserver, may have some predefined or builtin
4625 TSVs, even if the target is not running. */
f6ac5f3d 4626 if (get_trace_status (current_trace_status ()) != -1)
a0743c90
YQ
4627 {
4628 struct uploaded_tsv *uploaded_tsvs = NULL;
4629
f6ac5f3d 4630 upload_trace_state_variables (&uploaded_tsvs);
a0743c90
YQ
4631 merge_uploaded_trace_state_variables (&uploaded_tsvs);
4632 }
4633
2d717e4f
DJ
4634 /* Check whether the target is running now. */
4635 putpkt ("?");
8d64371b 4636 getpkt (&rs->buf, 0);
2d717e4f 4637
6efcd9a8 4638 if (!target_is_non_stop_p ())
2d717e4f 4639 {
74531fed 4640 if (rs->buf[0] == 'W' || rs->buf[0] == 'X')
2d717e4f 4641 {
04bd08de 4642 if (!extended_p)
74531fed 4643 error (_("The target is not running (try extended-remote?)"));
c35b1492
PA
4644
4645 /* We're connected, but not running. Drop out before we
4646 call start_remote. */
e278ad5b 4647 rs->starting_up = 0;
c35b1492 4648 return;
2d717e4f
DJ
4649 }
4650 else
74531fed 4651 {
74531fed 4652 /* Save the reply for later. */
8d64371b
TT
4653 wait_status = (char *) alloca (strlen (rs->buf.data ()) + 1);
4654 strcpy (wait_status, rs->buf.data ());
74531fed
PA
4655 }
4656
b7ea362b 4657 /* Fetch thread list. */
e8032dde 4658 target_update_thread_list ();
b7ea362b 4659
74531fed
PA
4660 /* Let the stub know that we want it to return the thread. */
4661 set_continue_thread (minus_one_ptid);
4662
b7ea362b
PA
4663 if (thread_count () == 0)
4664 {
4665 /* Target has no concept of threads at all. GDB treats
4666 non-threaded target as single-threaded; add a main
4667 thread. */
4668 add_current_inferior_and_thread (wait_status);
4669 }
4670 else
4671 {
4672 /* We have thread information; select the thread the target
4673 says should be current. If we're reconnecting to a
4674 multi-threaded program, this will ideally be the thread
4675 that last reported an event before GDB disconnected. */
4676 inferior_ptid = get_current_thread (wait_status);
d7e15655 4677 if (inferior_ptid == null_ptid)
b7ea362b
PA
4678 {
4679 /* Odd... The target was able to list threads, but not
4680 tell us which thread was current (no "thread"
4681 register in T stop reply?). Just pick the first
4682 thread in the thread list then. */
c9f35b34
KB
4683
4684 if (remote_debug)
4685 fprintf_unfiltered (gdb_stdlog,
4686 "warning: couldn't determine remote "
4687 "current thread; picking first in list.\n");
4688
08036331 4689 inferior_ptid = inferior_list->thread_list->ptid;
b7ea362b
PA
4690 }
4691 }
74531fed 4692
6e586cc5
YQ
4693 /* init_wait_for_inferior should be called before get_offsets in order
4694 to manage `inserted' flag in bp loc in a correct state.
4695 breakpoint_init_inferior, called from init_wait_for_inferior, set
4696 `inserted' flag to 0, while before breakpoint_re_set, called from
4697 start_remote, set `inserted' flag to 1. In the initialization of
4698 inferior, breakpoint_init_inferior should be called first, and then
4699 breakpoint_re_set can be called. If this order is broken, state of
4700 `inserted' flag is wrong, and cause some problems on breakpoint
4701 manipulation. */
4702 init_wait_for_inferior ();
4703
74531fed
PA
4704 get_offsets (); /* Get text, data & bss offsets. */
4705
d962ef82
DJ
4706 /* If we could not find a description using qXfer, and we know
4707 how to do it some other way, try again. This is not
4708 supported for non-stop; it could be, but it is tricky if
4709 there are no stopped threads when we connect. */
f6ac5f3d 4710 if (remote_read_description_p (this)
f5656ead 4711 && gdbarch_target_desc (target_gdbarch ()) == NULL)
d962ef82
DJ
4712 {
4713 target_clear_description ();
4714 target_find_description ();
4715 }
4716
74531fed
PA
4717 /* Use the previously fetched status. */
4718 gdb_assert (wait_status != NULL);
8d64371b 4719 strcpy (rs->buf.data (), wait_status);
74531fed
PA
4720 rs->cached_wait_status = 1;
4721
f6ac5f3d 4722 ::start_remote (from_tty); /* Initialize gdb process mechanisms. */
2d717e4f
DJ
4723 }
4724 else
4725 {
68c97600
PA
4726 /* Clear WFI global state. Do this before finding about new
4727 threads and inferiors, and setting the current inferior.
4728 Otherwise we would clear the proceed status of the current
4729 inferior when we want its stop_soon state to be preserved
4730 (see notice_new_inferior). */
4731 init_wait_for_inferior ();
4732
74531fed
PA
4733 /* In non-stop, we will either get an "OK", meaning that there
4734 are no stopped threads at this time; or, a regular stop
4735 reply. In the latter case, there may be more than one thread
4736 stopped --- we pull them all out using the vStopped
4737 mechanism. */
8d64371b 4738 if (strcmp (rs->buf.data (), "OK") != 0)
74531fed 4739 {
722247f1 4740 struct notif_client *notif = &notif_client_stop;
2d717e4f 4741
722247f1
YQ
4742 /* remote_notif_get_pending_replies acks this one, and gets
4743 the rest out. */
f48ff2a7 4744 rs->notif_state->pending_event[notif_client_stop.id]
8d64371b 4745 = remote_notif_parse (this, notif, rs->buf.data ());
722247f1 4746 remote_notif_get_pending_events (notif);
74531fed 4747 }
2d717e4f 4748
74531fed
PA
4749 if (thread_count () == 0)
4750 {
04bd08de 4751 if (!extended_p)
74531fed 4752 error (_("The target is not running (try extended-remote?)"));
82f73884 4753
c35b1492
PA
4754 /* We're connected, but not running. Drop out before we
4755 call start_remote. */
e278ad5b 4756 rs->starting_up = 0;
c35b1492
PA
4757 return;
4758 }
74531fed 4759
74531fed
PA
4760 /* In non-stop mode, any cached wait status will be stored in
4761 the stop reply queue. */
4762 gdb_assert (wait_status == NULL);
f0223081 4763
2455069d 4764 /* Report all signals during attach/startup. */
adc6a863 4765 pass_signals ({});
221e1a37
PA
4766
4767 /* If there are already stopped threads, mark them stopped and
4768 report their stops before giving the prompt to the user. */
6efcd9a8 4769 process_initial_stop_replies (from_tty);
221e1a37
PA
4770
4771 if (target_can_async_p ())
4772 target_async (1);
74531fed 4773 }
c8d104ad 4774
c8d104ad
PA
4775 /* If we connected to a live target, do some additional setup. */
4776 if (target_has_execution)
4777 {
f4ccffad 4778 if (symfile_objfile) /* No use without a symbol-file. */
36d25514 4779 remote_check_symbols ();
c8d104ad 4780 }
50c71eaf 4781
d5551862
SS
4782 /* Possibly the target has been engaged in a trace run started
4783 previously; find out where things are at. */
f6ac5f3d 4784 if (get_trace_status (current_trace_status ()) != -1)
d5551862 4785 {
00bf0b85 4786 struct uploaded_tp *uploaded_tps = NULL;
00bf0b85 4787
00bf0b85
SS
4788 if (current_trace_status ()->running)
4789 printf_filtered (_("Trace is already running on the target.\n"));
4790
f6ac5f3d 4791 upload_tracepoints (&uploaded_tps);
00bf0b85
SS
4792
4793 merge_uploaded_tracepoints (&uploaded_tps);
d5551862
SS
4794 }
4795
c0272db5
TW
4796 /* Possibly the target has been engaged in a btrace record started
4797 previously; find out where things are at. */
4798 remote_btrace_maybe_reopen ();
4799
1e51243a
PA
4800 /* The thread and inferior lists are now synchronized with the
4801 target, our symbols have been relocated, and we're merged the
4802 target's tracepoints with ours. We're done with basic start
4803 up. */
4804 rs->starting_up = 0;
4805
a25a5a45
PA
4806 /* Maybe breakpoints are global and need to be inserted now. */
4807 if (breakpoints_should_be_inserted_now ())
50c71eaf 4808 insert_breakpoints ();
c906108c
SS
4809}
4810
4811/* Open a connection to a remote debugger.
4812 NAME is the filename used for communication. */
4813
f6ac5f3d
PA
4814void
4815remote_target::open (const char *name, int from_tty)
c906108c 4816{
f6ac5f3d 4817 open_1 (name, from_tty, 0);
43ff13b4
JM
4818}
4819
c906108c
SS
4820/* Open a connection to a remote debugger using the extended
4821 remote gdb protocol. NAME is the filename used for communication. */
4822
f6ac5f3d
PA
4823void
4824extended_remote_target::open (const char *name, int from_tty)
c906108c 4825{
f6ac5f3d 4826 open_1 (name, from_tty, 1 /*extended_p */);
43ff13b4
JM
4827}
4828
ca4f7f8b
PA
4829/* Reset all packets back to "unknown support". Called when opening a
4830 new connection to a remote target. */
c906108c 4831
d471ea57 4832static void
ca4f7f8b 4833reset_all_packet_configs_support (void)
d471ea57
AC
4834{
4835 int i;
a744cf53 4836
444abaca 4837 for (i = 0; i < PACKET_MAX; i++)
4082afcc 4838 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
d471ea57
AC
4839}
4840
ca4f7f8b
PA
4841/* Initialize all packet configs. */
4842
4843static void
4844init_all_packet_configs (void)
4845{
4846 int i;
4847
4848 for (i = 0; i < PACKET_MAX; i++)
4849 {
4850 remote_protocol_packets[i].detect = AUTO_BOOLEAN_AUTO;
4851 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
4852 }
4853}
4854
23860348 4855/* Symbol look-up. */
dc8acb97 4856
6b8edb51
PA
4857void
4858remote_target::remote_check_symbols ()
dc8acb97 4859{
8d64371b 4860 char *tmp;
dc8acb97
MS
4861 int end;
4862
63154eca
PA
4863 /* The remote side has no concept of inferiors that aren't running
4864 yet, it only knows about running processes. If we're connected
4865 but our current inferior is not running, we should not invite the
4866 remote target to request symbol lookups related to its
4867 (unrelated) current process. */
4868 if (!target_has_execution)
4869 return;
4870
4082afcc 4871 if (packet_support (PACKET_qSymbol) == PACKET_DISABLE)
dc8acb97
MS
4872 return;
4873
63154eca
PA
4874 /* Make sure the remote is pointing at the right process. Note
4875 there's no way to select "no process". */
3c9c4b83
PA
4876 set_general_process ();
4877
6d820c5c
DJ
4878 /* Allocate a message buffer. We can't reuse the input buffer in RS,
4879 because we need both at the same time. */
66644cd3 4880 gdb::char_vector msg (get_remote_packet_size ());
8d64371b 4881 gdb::char_vector reply (get_remote_packet_size ());
6d820c5c 4882
23860348 4883 /* Invite target to request symbol lookups. */
dc8acb97
MS
4884
4885 putpkt ("qSymbol::");
8d64371b 4886 getpkt (&reply, 0);
28170b88 4887 packet_ok (reply, &remote_protocol_packets[PACKET_qSymbol]);
dc8acb97 4888
8d64371b 4889 while (startswith (reply.data (), "qSymbol:"))
dc8acb97 4890 {
77e371c0
TT
4891 struct bound_minimal_symbol sym;
4892
dc8acb97 4893 tmp = &reply[8];
66644cd3
AB
4894 end = hex2bin (tmp, reinterpret_cast <gdb_byte *> (msg.data ()),
4895 strlen (tmp) / 2);
dc8acb97 4896 msg[end] = '\0';
66644cd3 4897 sym = lookup_minimal_symbol (msg.data (), NULL, NULL);
3b7344d5 4898 if (sym.minsym == NULL)
66644cd3
AB
4899 xsnprintf (msg.data (), get_remote_packet_size (), "qSymbol::%s",
4900 &reply[8]);
dc8acb97 4901 else
2bbe3cc1 4902 {
f5656ead 4903 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
77e371c0 4904 CORE_ADDR sym_addr = BMSYMBOL_VALUE_ADDRESS (sym);
2bbe3cc1
DJ
4905
4906 /* If this is a function address, return the start of code
4907 instead of any data function descriptor. */
f5656ead 4908 sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
2bbe3cc1 4909 sym_addr,
8b88a78e 4910 current_top_target ());
2bbe3cc1 4911
66644cd3 4912 xsnprintf (msg.data (), get_remote_packet_size (), "qSymbol:%s:%s",
5af949e3 4913 phex_nz (sym_addr, addr_size), &reply[8]);
2bbe3cc1 4914 }
66644cd3
AB
4915
4916 putpkt (msg.data ());
8d64371b 4917 getpkt (&reply, 0);
dc8acb97
MS
4918 }
4919}
4920
9db8d71f 4921static struct serial *
baa336ce 4922remote_serial_open (const char *name)
9db8d71f
DJ
4923{
4924 static int udp_warning = 0;
4925
4926 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
4927 of in ser-tcp.c, because it is the remote protocol assuming that the
4928 serial connection is reliable and not the serial connection promising
4929 to be. */
61012eef 4930 if (!udp_warning && startswith (name, "udp:"))
9db8d71f 4931 {
3e43a32a
MS
4932 warning (_("The remote protocol may be unreliable over UDP.\n"
4933 "Some events may be lost, rendering further debugging "
4934 "impossible."));
9db8d71f
DJ
4935 udp_warning = 1;
4936 }
4937
4938 return serial_open (name);
4939}
4940
d914c394
SS
4941/* Inform the target of our permission settings. The permission flags
4942 work without this, but if the target knows the settings, it can do
4943 a couple things. First, it can add its own check, to catch cases
4944 that somehow manage to get by the permissions checks in target
4945 methods. Second, if the target is wired to disallow particular
4946 settings (for instance, a system in the field that is not set up to
4947 be able to stop at a breakpoint), it can object to any unavailable
4948 permissions. */
4949
4950void
f6ac5f3d 4951remote_target::set_permissions ()
d914c394
SS
4952{
4953 struct remote_state *rs = get_remote_state ();
4954
8d64371b 4955 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QAllow:"
bba74b36
YQ
4956 "WriteReg:%x;WriteMem:%x;"
4957 "InsertBreak:%x;InsertTrace:%x;"
4958 "InsertFastTrace:%x;Stop:%x",
4959 may_write_registers, may_write_memory,
4960 may_insert_breakpoints, may_insert_tracepoints,
4961 may_insert_fast_tracepoints, may_stop);
d914c394 4962 putpkt (rs->buf);
8d64371b 4963 getpkt (&rs->buf, 0);
d914c394
SS
4964
4965 /* If the target didn't like the packet, warn the user. Do not try
4966 to undo the user's settings, that would just be maddening. */
8d64371b
TT
4967 if (strcmp (rs->buf.data (), "OK") != 0)
4968 warning (_("Remote refused setting permissions with: %s"),
4969 rs->buf.data ());
d914c394
SS
4970}
4971
be2a5f71
DJ
4972/* This type describes each known response to the qSupported
4973 packet. */
4974struct protocol_feature
4975{
4976 /* The name of this protocol feature. */
4977 const char *name;
4978
4979 /* The default for this protocol feature. */
4980 enum packet_support default_support;
4981
4982 /* The function to call when this feature is reported, or after
4983 qSupported processing if the feature is not supported.
4984 The first argument points to this structure. The second
4985 argument indicates whether the packet requested support be
4986 enabled, disabled, or probed (or the default, if this function
4987 is being called at the end of processing and this feature was
4988 not reported). The third argument may be NULL; if not NULL, it
4989 is a NUL-terminated string taken from the packet following
4990 this feature's name and an equals sign. */
6b8edb51
PA
4991 void (*func) (remote_target *remote, const struct protocol_feature *,
4992 enum packet_support, const char *);
be2a5f71
DJ
4993
4994 /* The corresponding packet for this feature. Only used if
4995 FUNC is remote_supported_packet. */
4996 int packet;
4997};
4998
be2a5f71 4999static void
6b8edb51
PA
5000remote_supported_packet (remote_target *remote,
5001 const struct protocol_feature *feature,
be2a5f71
DJ
5002 enum packet_support support,
5003 const char *argument)
5004{
5005 if (argument)
5006 {
5007 warning (_("Remote qSupported response supplied an unexpected value for"
5008 " \"%s\"."), feature->name);
5009 return;
5010 }
5011
4082afcc 5012 remote_protocol_packets[feature->packet].support = support;
be2a5f71 5013}
be2a5f71 5014
6b8edb51
PA
5015void
5016remote_target::remote_packet_size (const protocol_feature *feature,
5017 enum packet_support support, const char *value)
be2a5f71
DJ
5018{
5019 struct remote_state *rs = get_remote_state ();
5020
5021 int packet_size;
5022 char *value_end;
5023
5024 if (support != PACKET_ENABLE)
5025 return;
5026
5027 if (value == NULL || *value == '\0')
5028 {
5029 warning (_("Remote target reported \"%s\" without a size."),
5030 feature->name);
5031 return;
5032 }
5033
5034 errno = 0;
5035 packet_size = strtol (value, &value_end, 16);
5036 if (errno != 0 || *value_end != '\0' || packet_size < 0)
5037 {
5038 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
5039 feature->name, value);
5040 return;
5041 }
5042
be2a5f71
DJ
5043 /* Record the new maximum packet size. */
5044 rs->explicit_packet_size = packet_size;
5045}
5046
6b8edb51
PA
5047void
5048remote_packet_size (remote_target *remote, const protocol_feature *feature,
5049 enum packet_support support, const char *value)
5050{
5051 remote->remote_packet_size (feature, support, value);
5052}
5053
dc473cfb 5054static const struct protocol_feature remote_protocol_features[] = {
0876f84a 5055 { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 },
40e57cf2 5056 { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet,
fd79ecee 5057 PACKET_qXfer_auxv },
c78fa86a
GB
5058 { "qXfer:exec-file:read", PACKET_DISABLE, remote_supported_packet,
5059 PACKET_qXfer_exec_file },
23181151
DJ
5060 { "qXfer:features:read", PACKET_DISABLE, remote_supported_packet,
5061 PACKET_qXfer_features },
cfa9d6d9
DJ
5062 { "qXfer:libraries:read", PACKET_DISABLE, remote_supported_packet,
5063 PACKET_qXfer_libraries },
2268b414
JK
5064 { "qXfer:libraries-svr4:read", PACKET_DISABLE, remote_supported_packet,
5065 PACKET_qXfer_libraries_svr4 },
ced63ec0 5066 { "augmented-libraries-svr4-read", PACKET_DISABLE,
4082afcc 5067 remote_supported_packet, PACKET_augmented_libraries_svr4_read_feature },
fd79ecee 5068 { "qXfer:memory-map:read", PACKET_DISABLE, remote_supported_packet,
89be2091 5069 PACKET_qXfer_memory_map },
07e059b5
VP
5070 { "qXfer:osdata:read", PACKET_DISABLE, remote_supported_packet,
5071 PACKET_qXfer_osdata },
dc146f7c
VP
5072 { "qXfer:threads:read", PACKET_DISABLE, remote_supported_packet,
5073 PACKET_qXfer_threads },
b3b9301e
PA
5074 { "qXfer:traceframe-info:read", PACKET_DISABLE, remote_supported_packet,
5075 PACKET_qXfer_traceframe_info },
89be2091
DJ
5076 { "QPassSignals", PACKET_DISABLE, remote_supported_packet,
5077 PACKET_QPassSignals },
82075af2
JS
5078 { "QCatchSyscalls", PACKET_DISABLE, remote_supported_packet,
5079 PACKET_QCatchSyscalls },
9b224c5e
PA
5080 { "QProgramSignals", PACKET_DISABLE, remote_supported_packet,
5081 PACKET_QProgramSignals },
bc3b087d
SDJ
5082 { "QSetWorkingDir", PACKET_DISABLE, remote_supported_packet,
5083 PACKET_QSetWorkingDir },
aefd8b33
SDJ
5084 { "QStartupWithShell", PACKET_DISABLE, remote_supported_packet,
5085 PACKET_QStartupWithShell },
0a2dde4a
SDJ
5086 { "QEnvironmentHexEncoded", PACKET_DISABLE, remote_supported_packet,
5087 PACKET_QEnvironmentHexEncoded },
5088 { "QEnvironmentReset", PACKET_DISABLE, remote_supported_packet,
5089 PACKET_QEnvironmentReset },
5090 { "QEnvironmentUnset", PACKET_DISABLE, remote_supported_packet,
5091 PACKET_QEnvironmentUnset },
a6f3e723
SL
5092 { "QStartNoAckMode", PACKET_DISABLE, remote_supported_packet,
5093 PACKET_QStartNoAckMode },
4082afcc
PA
5094 { "multiprocess", PACKET_DISABLE, remote_supported_packet,
5095 PACKET_multiprocess_feature },
5096 { "QNonStop", PACKET_DISABLE, remote_supported_packet, PACKET_QNonStop },
4aa995e1
PA
5097 { "qXfer:siginfo:read", PACKET_DISABLE, remote_supported_packet,
5098 PACKET_qXfer_siginfo_read },
5099 { "qXfer:siginfo:write", PACKET_DISABLE, remote_supported_packet,
5100 PACKET_qXfer_siginfo_write },
4082afcc 5101 { "ConditionalTracepoints", PACKET_DISABLE, remote_supported_packet,
782b2b07 5102 PACKET_ConditionalTracepoints },
4082afcc 5103 { "ConditionalBreakpoints", PACKET_DISABLE, remote_supported_packet,
3788aec7 5104 PACKET_ConditionalBreakpoints },
4082afcc 5105 { "BreakpointCommands", PACKET_DISABLE, remote_supported_packet,
d3ce09f5 5106 PACKET_BreakpointCommands },
4082afcc 5107 { "FastTracepoints", PACKET_DISABLE, remote_supported_packet,
7a697b8d 5108 PACKET_FastTracepoints },
4082afcc 5109 { "StaticTracepoints", PACKET_DISABLE, remote_supported_packet,
0fb4aa4b 5110 PACKET_StaticTracepoints },
4082afcc 5111 {"InstallInTrace", PACKET_DISABLE, remote_supported_packet,
1e4d1764 5112 PACKET_InstallInTrace},
4082afcc
PA
5113 { "DisconnectedTracing", PACKET_DISABLE, remote_supported_packet,
5114 PACKET_DisconnectedTracing_feature },
40ab02ce
MS
5115 { "ReverseContinue", PACKET_DISABLE, remote_supported_packet,
5116 PACKET_bc },
5117 { "ReverseStep", PACKET_DISABLE, remote_supported_packet,
5118 PACKET_bs },
409873ef
SS
5119 { "TracepointSource", PACKET_DISABLE, remote_supported_packet,
5120 PACKET_TracepointSource },
d914c394
SS
5121 { "QAllow", PACKET_DISABLE, remote_supported_packet,
5122 PACKET_QAllow },
4082afcc
PA
5123 { "EnableDisableTracepoints", PACKET_DISABLE, remote_supported_packet,
5124 PACKET_EnableDisableTracepoints_feature },
78d85199
YQ
5125 { "qXfer:fdpic:read", PACKET_DISABLE, remote_supported_packet,
5126 PACKET_qXfer_fdpic },
169081d0
TG
5127 { "qXfer:uib:read", PACKET_DISABLE, remote_supported_packet,
5128 PACKET_qXfer_uib },
03583c20
UW
5129 { "QDisableRandomization", PACKET_DISABLE, remote_supported_packet,
5130 PACKET_QDisableRandomization },
d1feda86 5131 { "QAgent", PACKET_DISABLE, remote_supported_packet, PACKET_QAgent},
f6f899bf
HAQ
5132 { "QTBuffer:size", PACKET_DISABLE,
5133 remote_supported_packet, PACKET_QTBuffer_size},
4082afcc 5134 { "tracenz", PACKET_DISABLE, remote_supported_packet, PACKET_tracenz_feature },
9accd112
MM
5135 { "Qbtrace:off", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_off },
5136 { "Qbtrace:bts", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_bts },
b20a6524 5137 { "Qbtrace:pt", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_pt },
9accd112 5138 { "qXfer:btrace:read", PACKET_DISABLE, remote_supported_packet,
f4abbc16
MM
5139 PACKET_qXfer_btrace },
5140 { "qXfer:btrace-conf:read", PACKET_DISABLE, remote_supported_packet,
d33501a5
MM
5141 PACKET_qXfer_btrace_conf },
5142 { "Qbtrace-conf:bts:size", PACKET_DISABLE, remote_supported_packet,
f7e6eed5
PA
5143 PACKET_Qbtrace_conf_bts_size },
5144 { "swbreak", PACKET_DISABLE, remote_supported_packet, PACKET_swbreak_feature },
0a93529c 5145 { "hwbreak", PACKET_DISABLE, remote_supported_packet, PACKET_hwbreak_feature },
89245bc0
DB
5146 { "fork-events", PACKET_DISABLE, remote_supported_packet,
5147 PACKET_fork_event_feature },
5148 { "vfork-events", PACKET_DISABLE, remote_supported_packet,
5149 PACKET_vfork_event_feature },
94585166
DB
5150 { "exec-events", PACKET_DISABLE, remote_supported_packet,
5151 PACKET_exec_event_feature },
b20a6524 5152 { "Qbtrace-conf:pt:size", PACKET_DISABLE, remote_supported_packet,
750ce8d1 5153 PACKET_Qbtrace_conf_pt_size },
65706a29
PA
5154 { "vContSupported", PACKET_DISABLE, remote_supported_packet, PACKET_vContSupported },
5155 { "QThreadEvents", PACKET_DISABLE, remote_supported_packet, PACKET_QThreadEvents },
f2faf941 5156 { "no-resumed", PACKET_DISABLE, remote_supported_packet, PACKET_no_resumed },
be2a5f71
DJ
5157};
5158
c8d5aac9
L
5159static char *remote_support_xml;
5160
5161/* Register string appended to "xmlRegisters=" in qSupported query. */
5162
5163void
6e39997a 5164register_remote_support_xml (const char *xml)
c8d5aac9
L
5165{
5166#if defined(HAVE_LIBEXPAT)
5167 if (remote_support_xml == NULL)
c4f7c687 5168 remote_support_xml = concat ("xmlRegisters=", xml, (char *) NULL);
c8d5aac9
L
5169 else
5170 {
5171 char *copy = xstrdup (remote_support_xml + 13);
5172 char *p = strtok (copy, ",");
5173
5174 do
5175 {
5176 if (strcmp (p, xml) == 0)
5177 {
5178 /* already there */
5179 xfree (copy);
5180 return;
5181 }
5182 }
5183 while ((p = strtok (NULL, ",")) != NULL);
5184 xfree (copy);
5185
94b0dee1
PA
5186 remote_support_xml = reconcat (remote_support_xml,
5187 remote_support_xml, ",", xml,
5188 (char *) NULL);
c8d5aac9
L
5189 }
5190#endif
5191}
5192
69b6ecb0
TT
5193static void
5194remote_query_supported_append (std::string *msg, const char *append)
c8d5aac9 5195{
69b6ecb0
TT
5196 if (!msg->empty ())
5197 msg->append (";");
5198 msg->append (append);
c8d5aac9
L
5199}
5200
6b8edb51
PA
5201void
5202remote_target::remote_query_supported ()
be2a5f71
DJ
5203{
5204 struct remote_state *rs = get_remote_state ();
5205 char *next;
5206 int i;
5207 unsigned char seen [ARRAY_SIZE (remote_protocol_features)];
5208
5209 /* The packet support flags are handled differently for this packet
5210 than for most others. We treat an error, a disabled packet, and
5211 an empty response identically: any features which must be reported
5212 to be used will be automatically disabled. An empty buffer
5213 accomplishes this, since that is also the representation for a list
5214 containing no features. */
5215
5216 rs->buf[0] = 0;
4082afcc 5217 if (packet_support (PACKET_qSupported) != PACKET_DISABLE)
be2a5f71 5218 {
69b6ecb0 5219 std::string q;
c8d5aac9 5220
73b8c1fd 5221 if (packet_set_cmd_state (PACKET_multiprocess_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5222 remote_query_supported_append (&q, "multiprocess+");
c8d5aac9 5223
f7e6eed5 5224 if (packet_set_cmd_state (PACKET_swbreak_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5225 remote_query_supported_append (&q, "swbreak+");
f7e6eed5 5226 if (packet_set_cmd_state (PACKET_hwbreak_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5227 remote_query_supported_append (&q, "hwbreak+");
f7e6eed5 5228
69b6ecb0 5229 remote_query_supported_append (&q, "qRelocInsn+");
dde08ee1 5230
8020350c
DB
5231 if (packet_set_cmd_state (PACKET_fork_event_feature)
5232 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5233 remote_query_supported_append (&q, "fork-events+");
8020350c
DB
5234 if (packet_set_cmd_state (PACKET_vfork_event_feature)
5235 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5236 remote_query_supported_append (&q, "vfork-events+");
8020350c
DB
5237 if (packet_set_cmd_state (PACKET_exec_event_feature)
5238 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5239 remote_query_supported_append (&q, "exec-events+");
89245bc0 5240
750ce8d1 5241 if (packet_set_cmd_state (PACKET_vContSupported) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5242 remote_query_supported_append (&q, "vContSupported+");
750ce8d1 5243
65706a29 5244 if (packet_set_cmd_state (PACKET_QThreadEvents) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5245 remote_query_supported_append (&q, "QThreadEvents+");
65706a29 5246
f2faf941 5247 if (packet_set_cmd_state (PACKET_no_resumed) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5248 remote_query_supported_append (&q, "no-resumed+");
f2faf941 5249
b35d5edb
PA
5250 /* Keep this one last to work around a gdbserver <= 7.10 bug in
5251 the qSupported:xmlRegisters=i386 handling. */
7cc244de
PA
5252 if (remote_support_xml != NULL
5253 && packet_support (PACKET_qXfer_features) != PACKET_DISABLE)
69b6ecb0 5254 remote_query_supported_append (&q, remote_support_xml);
82f73884 5255
69b6ecb0
TT
5256 q = "qSupported:" + q;
5257 putpkt (q.c_str ());
94b0dee1 5258
8d64371b 5259 getpkt (&rs->buf, 0);
be2a5f71
DJ
5260
5261 /* If an error occured, warn, but do not return - just reset the
5262 buffer to empty and go on to disable features. */
5263 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported])
5264 == PACKET_ERROR)
5265 {
8d64371b 5266 warning (_("Remote failure reply: %s"), rs->buf.data ());
be2a5f71
DJ
5267 rs->buf[0] = 0;
5268 }
5269 }
5270
5271 memset (seen, 0, sizeof (seen));
5272
8d64371b 5273 next = rs->buf.data ();
be2a5f71
DJ
5274 while (*next)
5275 {
5276 enum packet_support is_supported;
5277 char *p, *end, *name_end, *value;
5278
5279 /* First separate out this item from the rest of the packet. If
5280 there's another item after this, we overwrite the separator
5281 (terminated strings are much easier to work with). */
5282 p = next;
5283 end = strchr (p, ';');
5284 if (end == NULL)
5285 {
5286 end = p + strlen (p);
5287 next = end;
5288 }
5289 else
5290 {
89be2091
DJ
5291 *end = '\0';
5292 next = end + 1;
5293
be2a5f71
DJ
5294 if (end == p)
5295 {
5296 warning (_("empty item in \"qSupported\" response"));
5297 continue;
5298 }
be2a5f71
DJ
5299 }
5300
5301 name_end = strchr (p, '=');
5302 if (name_end)
5303 {
5304 /* This is a name=value entry. */
5305 is_supported = PACKET_ENABLE;
5306 value = name_end + 1;
5307 *name_end = '\0';
5308 }
5309 else
5310 {
5311 value = NULL;
5312 switch (end[-1])
5313 {
5314 case '+':
5315 is_supported = PACKET_ENABLE;
5316 break;
5317
5318 case '-':
5319 is_supported = PACKET_DISABLE;
5320 break;
5321
5322 case '?':
5323 is_supported = PACKET_SUPPORT_UNKNOWN;
5324 break;
5325
5326 default:
3e43a32a
MS
5327 warning (_("unrecognized item \"%s\" "
5328 "in \"qSupported\" response"), p);
be2a5f71
DJ
5329 continue;
5330 }
5331 end[-1] = '\0';
5332 }
5333
5334 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
5335 if (strcmp (remote_protocol_features[i].name, p) == 0)
5336 {
5337 const struct protocol_feature *feature;
5338
5339 seen[i] = 1;
5340 feature = &remote_protocol_features[i];
6b8edb51 5341 feature->func (this, feature, is_supported, value);
be2a5f71
DJ
5342 break;
5343 }
5344 }
5345
5346 /* If we increased the packet size, make sure to increase the global
5347 buffer size also. We delay this until after parsing the entire
5348 qSupported packet, because this is the same buffer we were
5349 parsing. */
8d64371b
TT
5350 if (rs->buf.size () < rs->explicit_packet_size)
5351 rs->buf.resize (rs->explicit_packet_size);
be2a5f71
DJ
5352
5353 /* Handle the defaults for unmentioned features. */
5354 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
5355 if (!seen[i])
5356 {
5357 const struct protocol_feature *feature;
5358
5359 feature = &remote_protocol_features[i];
6b8edb51 5360 feature->func (this, feature, feature->default_support, NULL);
be2a5f71
DJ
5361 }
5362}
5363
048094ac
PA
5364/* Serial QUIT handler for the remote serial descriptor.
5365
5366 Defers handling a Ctrl-C until we're done with the current
5367 command/response packet sequence, unless:
5368
5369 - We're setting up the connection. Don't send a remote interrupt
5370 request, as we're not fully synced yet. Quit immediately
5371 instead.
5372
5373 - The target has been resumed in the foreground
223ffa71 5374 (target_terminal::is_ours is false) with a synchronous resume
048094ac
PA
5375 packet, and we're blocked waiting for the stop reply, thus a
5376 Ctrl-C should be immediately sent to the target.
5377
5378 - We get a second Ctrl-C while still within the same serial read or
5379 write. In that case the serial is seemingly wedged --- offer to
5380 quit/disconnect.
5381
5382 - We see a second Ctrl-C without target response, after having
5383 previously interrupted the target. In that case the target/stub
5384 is probably wedged --- offer to quit/disconnect.
5385*/
5386
6b8edb51
PA
5387void
5388remote_target::remote_serial_quit_handler ()
048094ac
PA
5389{
5390 struct remote_state *rs = get_remote_state ();
5391
5392 if (check_quit_flag ())
5393 {
5394 /* If we're starting up, we're not fully synced yet. Quit
5395 immediately. */
5396 if (rs->starting_up)
5397 quit ();
5398 else if (rs->got_ctrlc_during_io)
5399 {
5400 if (query (_("The target is not responding to GDB commands.\n"
5401 "Stop debugging it? ")))
5402 remote_unpush_and_throw ();
5403 }
5404 /* If ^C has already been sent once, offer to disconnect. */
223ffa71 5405 else if (!target_terminal::is_ours () && rs->ctrlc_pending_p)
048094ac
PA
5406 interrupt_query ();
5407 /* All-stop protocol, and blocked waiting for stop reply. Send
5408 an interrupt request. */
223ffa71 5409 else if (!target_terminal::is_ours () && rs->waiting_for_stop_reply)
e671cd59 5410 target_interrupt ();
048094ac
PA
5411 else
5412 rs->got_ctrlc_during_io = 1;
5413 }
5414}
5415
6b8edb51
PA
5416/* The remote_target that is current while the quit handler is
5417 overridden with remote_serial_quit_handler. */
5418static remote_target *curr_quit_handler_target;
5419
5420static void
5421remote_serial_quit_handler ()
5422{
5423 curr_quit_handler_target->remote_serial_quit_handler ();
5424}
5425
78a095c3
JK
5426/* Remove any of the remote.c targets from target stack. Upper targets depend
5427 on it so remove them first. */
5428
5429static void
5430remote_unpush_target (void)
5431{
915ef8b1 5432 pop_all_targets_at_and_above (process_stratum);
78a095c3 5433}
be2a5f71 5434
048094ac
PA
5435static void
5436remote_unpush_and_throw (void)
5437{
5438 remote_unpush_target ();
5439 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
5440}
5441
f6ac5f3d
PA
5442void
5443remote_target::open_1 (const char *name, int from_tty, int extended_p)
c906108c 5444{
6b8edb51 5445 remote_target *curr_remote = get_current_remote_target ();
a6f3e723 5446
c906108c 5447 if (name == 0)
8a3fe4f8 5448 error (_("To open a remote debug connection, you need to specify what\n"
22e04375 5449 "serial device is attached to the remote system\n"
8a3fe4f8 5450 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
c906108c 5451
2d717e4f 5452 /* If we're connected to a running target, target_preopen will kill it.
78a095c3
JK
5453 Ask this question first, before target_preopen has a chance to kill
5454 anything. */
6b8edb51 5455 if (curr_remote != NULL && !have_inferiors ())
2d717e4f 5456 {
78a095c3
JK
5457 if (from_tty
5458 && !query (_("Already connected to a remote target. Disconnect? ")))
2d717e4f
DJ
5459 error (_("Still connected."));
5460 }
5461
78a095c3 5462 /* Here the possibly existing remote target gets unpushed. */
c906108c
SS
5463 target_preopen (from_tty);
5464
ad9a8f3f 5465 remote_fileio_reset ();
1dd41f16
NS
5466 reopen_exec_file ();
5467 reread_symbols ();
5468
6b8edb51
PA
5469 remote_target *remote
5470 = (extended_p ? new extended_remote_target () : new remote_target ());
5471 target_ops_up target_holder (remote);
5472
5473 remote_state *rs = remote->get_remote_state ();
5474
5475 /* See FIXME above. */
5476 if (!target_async_permitted)
5477 rs->wait_forever_enabled_p = 1;
5478
5d93a237
TT
5479 rs->remote_desc = remote_serial_open (name);
5480 if (!rs->remote_desc)
c906108c
SS
5481 perror_with_name (name);
5482
5483 if (baud_rate != -1)
5484 {
5d93a237 5485 if (serial_setbaudrate (rs->remote_desc, baud_rate))
c906108c 5486 {
9b74d5d3
KB
5487 /* The requested speed could not be set. Error out to
5488 top level after closing remote_desc. Take care to
5489 set remote_desc to NULL to avoid closing remote_desc
5490 more than once. */
5d93a237
TT
5491 serial_close (rs->remote_desc);
5492 rs->remote_desc = NULL;
c906108c
SS
5493 perror_with_name (name);
5494 }
5495 }
5496
236af5e3 5497 serial_setparity (rs->remote_desc, serial_parity);
5d93a237 5498 serial_raw (rs->remote_desc);
c906108c
SS
5499
5500 /* If there is something sitting in the buffer we might take it as a
5501 response to a command, which would be bad. */
5d93a237 5502 serial_flush_input (rs->remote_desc);
c906108c
SS
5503
5504 if (from_tty)
5505 {
5506 puts_filtered ("Remote debugging using ");
5507 puts_filtered (name);
5508 puts_filtered ("\n");
5509 }
d9f719f1 5510
6b8edb51 5511 /* Switch to using the remote target now. */
dea57a62 5512 push_target (std::move (target_holder));
c906108c 5513
74531fed 5514 /* Register extra event sources in the event loop. */
6b8edb51 5515 rs->remote_async_inferior_event_token
74531fed 5516 = create_async_event_handler (remote_async_inferior_event_handler,
6b8edb51
PA
5517 remote);
5518 rs->notif_state = remote_notif_state_allocate (remote);
74531fed 5519
be2a5f71
DJ
5520 /* Reset the target state; these things will be queried either by
5521 remote_query_supported or as they are needed. */
ca4f7f8b 5522 reset_all_packet_configs_support ();
74531fed 5523 rs->cached_wait_status = 0;
be2a5f71 5524 rs->explicit_packet_size = 0;
a6f3e723 5525 rs->noack_mode = 0;
82f73884 5526 rs->extended = extended_p;
e24a49d8 5527 rs->waiting_for_stop_reply = 0;
3a29589a 5528 rs->ctrlc_pending_p = 0;
048094ac 5529 rs->got_ctrlc_during_io = 0;
802188a7 5530
47f8a51d
TT
5531 rs->general_thread = not_sent_ptid;
5532 rs->continue_thread = not_sent_ptid;
262e1174 5533 rs->remote_traceframe_number = -1;
c906108c 5534
3a00c802
PA
5535 rs->last_resume_exec_dir = EXEC_FORWARD;
5536
9d1f7ab2 5537 /* Probe for ability to use "ThreadInfo" query, as required. */
b80fafe3
TT
5538 rs->use_threadinfo_query = 1;
5539 rs->use_threadextra_query = 1;
9d1f7ab2 5540
dd194f6b 5541 rs->readahead_cache.invalidate ();
80152258 5542
c6ebd6cf 5543 if (target_async_permitted)
92d1e331 5544 {
92d1e331
DJ
5545 /* FIXME: cagney/1999-09-23: During the initial connection it is
5546 assumed that the target is already ready and able to respond to
0df8b418 5547 requests. Unfortunately remote_start_remote() eventually calls
92d1e331 5548 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
0df8b418 5549 around this. Eventually a mechanism that allows
92d1e331 5550 wait_for_inferior() to expect/get timeouts will be
23860348 5551 implemented. */
6b8edb51 5552 rs->wait_forever_enabled_p = 0;
92d1e331
DJ
5553 }
5554
23860348 5555 /* First delete any symbols previously loaded from shared libraries. */
f78f6cf1 5556 no_shared_libraries (NULL, 0);
f78f6cf1 5557
36918e70 5558 /* Start the remote connection. If error() or QUIT, discard this
165b8e33
AC
5559 target (we'd otherwise be in an inconsistent state) and then
5560 propogate the error on up the exception chain. This ensures that
5561 the caller doesn't stumble along blindly assuming that the
5562 function succeeded. The CLI doesn't have this problem but other
5563 UI's, such as MI do.
36918e70
AC
5564
5565 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
5566 this function should return an error indication letting the
ce2826aa 5567 caller restore the previous state. Unfortunately the command
36918e70
AC
5568 ``target remote'' is directly wired to this function making that
5569 impossible. On a positive note, the CLI side of this problem has
5570 been fixed - the function set_cmd_context() makes it possible for
5571 all the ``target ....'' commands to share a common callback
5572 function. See cli-dump.c. */
109c3e39 5573 {
2d717e4f 5574
a70b8144 5575 try
04bd08de 5576 {
6b8edb51 5577 remote->start_remote (from_tty, extended_p);
04bd08de 5578 }
230d2906 5579 catch (const gdb_exception &ex)
109c3e39 5580 {
c8d104ad
PA
5581 /* Pop the partially set up target - unless something else did
5582 already before throwing the exception. */
6b8edb51 5583 if (ex.error != TARGET_CLOSE_ERROR)
78a095c3 5584 remote_unpush_target ();
eedc3f4f 5585 throw;
109c3e39
AC
5586 }
5587 }
c906108c 5588
6b8edb51 5589 remote_btrace_reset (rs);
f4abbc16 5590
c6ebd6cf 5591 if (target_async_permitted)
6b8edb51 5592 rs->wait_forever_enabled_p = 1;
43ff13b4
JM
5593}
5594
de0d863e
DB
5595/* Detach the specified process. */
5596
6b8edb51
PA
5597void
5598remote_target::remote_detach_pid (int pid)
de0d863e
DB
5599{
5600 struct remote_state *rs = get_remote_state ();
5601
4c7333b3
PA
5602 /* This should not be necessary, but the handling for D;PID in
5603 GDBserver versions prior to 8.2 incorrectly assumes that the
5604 selected process points to the same process we're detaching,
5605 leading to misbehavior (and possibly GDBserver crashing) when it
5606 does not. Since it's easy and cheap, work around it by forcing
5607 GDBserver to select GDB's current process. */
5608 set_general_process ();
5609
de0d863e 5610 if (remote_multi_process_p (rs))
8d64371b 5611 xsnprintf (rs->buf.data (), get_remote_packet_size (), "D;%x", pid);
de0d863e 5612 else
8d64371b 5613 strcpy (rs->buf.data (), "D");
de0d863e
DB
5614
5615 putpkt (rs->buf);
8d64371b 5616 getpkt (&rs->buf, 0);
de0d863e
DB
5617
5618 if (rs->buf[0] == 'O' && rs->buf[1] == 'K')
5619 ;
5620 else if (rs->buf[0] == '\0')
5621 error (_("Remote doesn't know how to detach"));
5622 else
5623 error (_("Can't detach process."));
5624}
5625
5626/* This detaches a program to which we previously attached, using
5627 inferior_ptid to identify the process. After this is done, GDB
5628 can be used to debug some other program. We better not have left
5629 any breakpoints in the target program or it'll die when it hits
5630 one. */
c906108c 5631
6b8edb51 5632void
00431a78 5633remote_target::remote_detach_1 (inferior *inf, int from_tty)
c906108c 5634{
e99b03dc 5635 int pid = inferior_ptid.pid ();
d01949b6 5636 struct remote_state *rs = get_remote_state ();
de0d863e 5637 int is_fork_parent;
c906108c 5638
2d717e4f
DJ
5639 if (!target_has_execution)
5640 error (_("No process to detach from."));
5641
0f48b757 5642 target_announce_detach (from_tty);
7cee1e54 5643
c906108c 5644 /* Tell the remote target to detach. */
de0d863e 5645 remote_detach_pid (pid);
82f73884 5646
8020350c
DB
5647 /* Exit only if this is the only active inferior. */
5648 if (from_tty && !rs->extended && number_of_live_inferiors () == 1)
7cee1e54 5649 puts_filtered (_("Ending remote debugging.\n"));
82f73884 5650
00431a78
PA
5651 struct thread_info *tp = find_thread_ptid (inferior_ptid);
5652
de0d863e
DB
5653 /* Check to see if we are detaching a fork parent. Note that if we
5654 are detaching a fork child, tp == NULL. */
5655 is_fork_parent = (tp != NULL
5656 && tp->pending_follow.kind == TARGET_WAITKIND_FORKED);
5657
5658 /* If doing detach-on-fork, we don't mourn, because that will delete
5659 breakpoints that should be available for the followed inferior. */
5660 if (!is_fork_parent)
f67c0c91 5661 {
249b5733
PA
5662 /* Save the pid as a string before mourning, since that will
5663 unpush the remote target, and we need the string after. */
f2907e49 5664 std::string infpid = target_pid_to_str (ptid_t (pid));
f67c0c91
SDJ
5665
5666 target_mourn_inferior (inferior_ptid);
5667 if (print_inferior_events)
5668 printf_unfiltered (_("[Inferior %d (%s) detached]\n"),
5669 inf->num, infpid.c_str ());
5670 }
de0d863e
DB
5671 else
5672 {
5673 inferior_ptid = null_ptid;
00431a78 5674 detach_inferior (current_inferior ());
de0d863e 5675 }
2d717e4f
DJ
5676}
5677
f6ac5f3d
PA
5678void
5679remote_target::detach (inferior *inf, int from_tty)
2d717e4f 5680{
00431a78 5681 remote_detach_1 (inf, from_tty);
2d717e4f
DJ
5682}
5683
f6ac5f3d
PA
5684void
5685extended_remote_target::detach (inferior *inf, int from_tty)
2d717e4f 5686{
00431a78 5687 remote_detach_1 (inf, from_tty);
de0d863e
DB
5688}
5689
5690/* Target follow-fork function for remote targets. On entry, and
5691 at return, the current inferior is the fork parent.
5692
5693 Note that although this is currently only used for extended-remote,
5694 it is named remote_follow_fork in anticipation of using it for the
5695 remote target as well. */
5696
f6ac5f3d
PA
5697int
5698remote_target::follow_fork (int follow_child, int detach_fork)
de0d863e
DB
5699{
5700 struct remote_state *rs = get_remote_state ();
c269dbdb 5701 enum target_waitkind kind = inferior_thread ()->pending_follow.kind;
de0d863e 5702
c269dbdb
DB
5703 if ((kind == TARGET_WAITKIND_FORKED && remote_fork_event_p (rs))
5704 || (kind == TARGET_WAITKIND_VFORKED && remote_vfork_event_p (rs)))
de0d863e
DB
5705 {
5706 /* When following the parent and detaching the child, we detach
5707 the child here. For the case of following the child and
5708 detaching the parent, the detach is done in the target-
5709 independent follow fork code in infrun.c. We can't use
5710 target_detach when detaching an unfollowed child because
5711 the client side doesn't know anything about the child. */
5712 if (detach_fork && !follow_child)
5713 {
5714 /* Detach the fork child. */
5715 ptid_t child_ptid;
5716 pid_t child_pid;
5717
5718 child_ptid = inferior_thread ()->pending_follow.value.related_pid;
e99b03dc 5719 child_pid = child_ptid.pid ();
de0d863e
DB
5720
5721 remote_detach_pid (child_pid);
de0d863e
DB
5722 }
5723 }
5724 return 0;
c906108c
SS
5725}
5726
94585166
DB
5727/* Target follow-exec function for remote targets. Save EXECD_PATHNAME
5728 in the program space of the new inferior. On entry and at return the
5729 current inferior is the exec'ing inferior. INF is the new exec'd
5730 inferior, which may be the same as the exec'ing inferior unless
5731 follow-exec-mode is "new". */
5732
f6ac5f3d 5733void
4ca51187 5734remote_target::follow_exec (struct inferior *inf, const char *execd_pathname)
94585166
DB
5735{
5736 /* We know that this is a target file name, so if it has the "target:"
5737 prefix we strip it off before saving it in the program space. */
5738 if (is_target_filename (execd_pathname))
5739 execd_pathname += strlen (TARGET_SYSROOT_PREFIX);
5740
5741 set_pspace_remote_exec_file (inf->pspace, execd_pathname);
5742}
5743
6ad8ae5c
DJ
5744/* Same as remote_detach, but don't send the "D" packet; just disconnect. */
5745
f6ac5f3d
PA
5746void
5747remote_target::disconnect (const char *args, int from_tty)
43ff13b4 5748{
43ff13b4 5749 if (args)
2d717e4f 5750 error (_("Argument given to \"disconnect\" when remotely debugging."));
43ff13b4 5751
8020350c
DB
5752 /* Make sure we unpush even the extended remote targets. Calling
5753 target_mourn_inferior won't unpush, and remote_mourn won't
5754 unpush if there is more than one inferior left. */
f6ac5f3d 5755 unpush_target (this);
8020350c 5756 generic_mourn_inferior ();
2d717e4f 5757
43ff13b4
JM
5758 if (from_tty)
5759 puts_filtered ("Ending remote debugging.\n");
5760}
5761
2d717e4f
DJ
5762/* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
5763 be chatty about it. */
5764
f6ac5f3d
PA
5765void
5766extended_remote_target::attach (const char *args, int from_tty)
2d717e4f
DJ
5767{
5768 struct remote_state *rs = get_remote_state ();
be86555c 5769 int pid;
96ef3384 5770 char *wait_status = NULL;
2d717e4f 5771
74164c56 5772 pid = parse_pid_to_attach (args);
2d717e4f 5773
74164c56
JK
5774 /* Remote PID can be freely equal to getpid, do not check it here the same
5775 way as in other targets. */
2d717e4f 5776
4082afcc 5777 if (packet_support (PACKET_vAttach) == PACKET_DISABLE)
2d717e4f
DJ
5778 error (_("This target does not support attaching to a process"));
5779
7cee1e54
PA
5780 if (from_tty)
5781 {
5782 char *exec_file = get_exec_file (0);
5783
5784 if (exec_file)
5785 printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file,
a068643d 5786 target_pid_to_str (ptid_t (pid)).c_str ());
7cee1e54
PA
5787 else
5788 printf_unfiltered (_("Attaching to %s\n"),
a068643d 5789 target_pid_to_str (ptid_t (pid)).c_str ());
7cee1e54
PA
5790 }
5791
8d64371b 5792 xsnprintf (rs->buf.data (), get_remote_packet_size (), "vAttach;%x", pid);
2d717e4f 5793 putpkt (rs->buf);
8d64371b 5794 getpkt (&rs->buf, 0);
2d717e4f 5795
4082afcc
PA
5796 switch (packet_ok (rs->buf,
5797 &remote_protocol_packets[PACKET_vAttach]))
2d717e4f 5798 {
4082afcc 5799 case PACKET_OK:
6efcd9a8 5800 if (!target_is_non_stop_p ())
74531fed
PA
5801 {
5802 /* Save the reply for later. */
8d64371b
TT
5803 wait_status = (char *) alloca (strlen (rs->buf.data ()) + 1);
5804 strcpy (wait_status, rs->buf.data ());
74531fed 5805 }
8d64371b 5806 else if (strcmp (rs->buf.data (), "OK") != 0)
74531fed 5807 error (_("Attaching to %s failed with: %s"),
a068643d 5808 target_pid_to_str (ptid_t (pid)).c_str (),
8d64371b 5809 rs->buf.data ());
4082afcc
PA
5810 break;
5811 case PACKET_UNKNOWN:
5812 error (_("This target does not support attaching to a process"));
5813 default:
50fa3001
SDJ
5814 error (_("Attaching to %s failed"),
5815 target_pid_to_str (ptid_t (pid)).c_str ());
2d717e4f 5816 }
2d717e4f 5817
9ab8741a 5818 set_current_inferior (remote_add_inferior (false, pid, 1, 0));
bad34192 5819
f2907e49 5820 inferior_ptid = ptid_t (pid);
79d7f229 5821
6efcd9a8 5822 if (target_is_non_stop_p ())
bad34192
PA
5823 {
5824 struct thread_info *thread;
79d7f229 5825
bad34192 5826 /* Get list of threads. */
f6ac5f3d 5827 update_thread_list ();
82f73884 5828
00431a78 5829 thread = first_thread_of_inferior (current_inferior ());
bad34192
PA
5830 if (thread)
5831 inferior_ptid = thread->ptid;
5832 else
f2907e49 5833 inferior_ptid = ptid_t (pid);
bad34192
PA
5834
5835 /* Invalidate our notion of the remote current thread. */
47f8a51d 5836 record_currthread (rs, minus_one_ptid);
bad34192 5837 }
74531fed 5838 else
bad34192
PA
5839 {
5840 /* Now, if we have thread information, update inferior_ptid. */
5841 inferior_ptid = remote_current_thread (inferior_ptid);
5842
5843 /* Add the main thread to the thread list. */
00aecdcf
PA
5844 thread_info *thr = add_thread_silent (inferior_ptid);
5845 /* Don't consider the thread stopped until we've processed the
5846 saved stop reply. */
5847 set_executing (thr->ptid, true);
bad34192 5848 }
c0a2216e 5849
96ef3384
UW
5850 /* Next, if the target can specify a description, read it. We do
5851 this before anything involving memory or registers. */
5852 target_find_description ();
5853
6efcd9a8 5854 if (!target_is_non_stop_p ())
74531fed
PA
5855 {
5856 /* Use the previously fetched status. */
5857 gdb_assert (wait_status != NULL);
5858
5859 if (target_can_async_p ())
5860 {
722247f1 5861 struct notif_event *reply
6b8edb51 5862 = remote_notif_parse (this, &notif_client_stop, wait_status);
74531fed 5863
722247f1 5864 push_stop_reply ((struct stop_reply *) reply);
74531fed 5865
6a3753b3 5866 target_async (1);
74531fed
PA
5867 }
5868 else
5869 {
5870 gdb_assert (wait_status != NULL);
8d64371b 5871 strcpy (rs->buf.data (), wait_status);
74531fed
PA
5872 rs->cached_wait_status = 1;
5873 }
5874 }
5875 else
5876 gdb_assert (wait_status == NULL);
2d717e4f
DJ
5877}
5878
b9c1d481
AS
5879/* Implementation of the to_post_attach method. */
5880
f6ac5f3d
PA
5881void
5882extended_remote_target::post_attach (int pid)
b9c1d481 5883{
6efcd9a8
PA
5884 /* Get text, data & bss offsets. */
5885 get_offsets ();
5886
b9c1d481
AS
5887 /* In certain cases GDB might not have had the chance to start
5888 symbol lookup up until now. This could happen if the debugged
5889 binary is not using shared libraries, the vsyscall page is not
5890 present (on Linux) and the binary itself hadn't changed since the
5891 debugging process was started. */
5892 if (symfile_objfile != NULL)
5893 remote_check_symbols();
5894}
5895
c906108c 5896\f
506fb367
DJ
5897/* Check for the availability of vCont. This function should also check
5898 the response. */
c906108c 5899
6b8edb51
PA
5900void
5901remote_target::remote_vcont_probe ()
c906108c 5902{
6b8edb51 5903 remote_state *rs = get_remote_state ();
2e9f7625 5904 char *buf;
6d820c5c 5905
8d64371b 5906 strcpy (rs->buf.data (), "vCont?");
2e9f7625 5907 putpkt (rs->buf);
8d64371b
TT
5908 getpkt (&rs->buf, 0);
5909 buf = rs->buf.data ();
c906108c 5910
506fb367 5911 /* Make sure that the features we assume are supported. */
61012eef 5912 if (startswith (buf, "vCont"))
506fb367
DJ
5913 {
5914 char *p = &buf[5];
750ce8d1 5915 int support_c, support_C;
506fb367 5916
750ce8d1
YQ
5917 rs->supports_vCont.s = 0;
5918 rs->supports_vCont.S = 0;
506fb367
DJ
5919 support_c = 0;
5920 support_C = 0;
d458bd84 5921 rs->supports_vCont.t = 0;
c1e36e3e 5922 rs->supports_vCont.r = 0;
506fb367
DJ
5923 while (p && *p == ';')
5924 {
5925 p++;
5926 if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 5927 rs->supports_vCont.s = 1;
506fb367 5928 else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 5929 rs->supports_vCont.S = 1;
506fb367
DJ
5930 else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
5931 support_c = 1;
5932 else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
5933 support_C = 1;
74531fed 5934 else if (*p == 't' && (*(p + 1) == ';' || *(p + 1) == 0))
d458bd84 5935 rs->supports_vCont.t = 1;
c1e36e3e
PA
5936 else if (*p == 'r' && (*(p + 1) == ';' || *(p + 1) == 0))
5937 rs->supports_vCont.r = 1;
506fb367
DJ
5938
5939 p = strchr (p, ';');
5940 }
c906108c 5941
750ce8d1
YQ
5942 /* If c, and C are not all supported, we can't use vCont. Clearing
5943 BUF will make packet_ok disable the packet. */
5944 if (!support_c || !support_C)
506fb367
DJ
5945 buf[0] = 0;
5946 }
c906108c 5947
8d64371b 5948 packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCont]);
506fb367 5949}
c906108c 5950
0d8f58ca
PA
5951/* Helper function for building "vCont" resumptions. Write a
5952 resumption to P. ENDP points to one-passed-the-end of the buffer
5953 we're allowed to write to. Returns BUF+CHARACTERS_WRITTEN. The
5954 thread to be resumed is PTID; STEP and SIGGNAL indicate whether the
5955 resumed thread should be single-stepped and/or signalled. If PTID
5956 equals minus_one_ptid, then all threads are resumed; if PTID
5957 represents a process, then all threads of the process are resumed;
5958 the thread to be stepped and/or signalled is given in the global
5959 INFERIOR_PTID. */
5960
6b8edb51
PA
5961char *
5962remote_target::append_resumption (char *p, char *endp,
5963 ptid_t ptid, int step, gdb_signal siggnal)
0d8f58ca
PA
5964{
5965 struct remote_state *rs = get_remote_state ();
5966
a493e3e2 5967 if (step && siggnal != GDB_SIGNAL_0)
0d8f58ca 5968 p += xsnprintf (p, endp - p, ";S%02x", siggnal);
c1e36e3e
PA
5969 else if (step
5970 /* GDB is willing to range step. */
5971 && use_range_stepping
5972 /* Target supports range stepping. */
5973 && rs->supports_vCont.r
5974 /* We don't currently support range stepping multiple
5975 threads with a wildcard (though the protocol allows it,
5976 so stubs shouldn't make an active effort to forbid
5977 it). */
0e998d96 5978 && !(remote_multi_process_p (rs) && ptid.is_pid ()))
c1e36e3e
PA
5979 {
5980 struct thread_info *tp;
5981
d7e15655 5982 if (ptid == minus_one_ptid)
c1e36e3e
PA
5983 {
5984 /* If we don't know about the target thread's tid, then
5985 we're resuming magic_null_ptid (see caller). */
5986 tp = find_thread_ptid (magic_null_ptid);
5987 }
5988 else
5989 tp = find_thread_ptid (ptid);
5990 gdb_assert (tp != NULL);
5991
5992 if (tp->control.may_range_step)
5993 {
5994 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
5995
5996 p += xsnprintf (p, endp - p, ";r%s,%s",
5997 phex_nz (tp->control.step_range_start,
5998 addr_size),
5999 phex_nz (tp->control.step_range_end,
6000 addr_size));
6001 }
6002 else
6003 p += xsnprintf (p, endp - p, ";s");
6004 }
0d8f58ca
PA
6005 else if (step)
6006 p += xsnprintf (p, endp - p, ";s");
a493e3e2 6007 else if (siggnal != GDB_SIGNAL_0)
0d8f58ca
PA
6008 p += xsnprintf (p, endp - p, ";C%02x", siggnal);
6009 else
6010 p += xsnprintf (p, endp - p, ";c");
6011
0e998d96 6012 if (remote_multi_process_p (rs) && ptid.is_pid ())
0d8f58ca
PA
6013 {
6014 ptid_t nptid;
6015
6016 /* All (-1) threads of process. */
e99b03dc 6017 nptid = ptid_t (ptid.pid (), -1, 0);
0d8f58ca
PA
6018
6019 p += xsnprintf (p, endp - p, ":");
6020 p = write_ptid (p, endp, nptid);
6021 }
d7e15655 6022 else if (ptid != minus_one_ptid)
0d8f58ca
PA
6023 {
6024 p += xsnprintf (p, endp - p, ":");
6025 p = write_ptid (p, endp, ptid);
6026 }
6027
6028 return p;
6029}
6030
799a2abe
PA
6031/* Clear the thread's private info on resume. */
6032
6033static void
6034resume_clear_thread_private_info (struct thread_info *thread)
6035{
6036 if (thread->priv != NULL)
6037 {
7aabaf9d
SM
6038 remote_thread_info *priv = get_remote_thread_info (thread);
6039
6040 priv->stop_reason = TARGET_STOPPED_BY_NO_REASON;
6041 priv->watch_data_address = 0;
799a2abe
PA
6042 }
6043}
6044
e5ef252a
PA
6045/* Append a vCont continue-with-signal action for threads that have a
6046 non-zero stop signal. */
6047
6b8edb51
PA
6048char *
6049remote_target::append_pending_thread_resumptions (char *p, char *endp,
6050 ptid_t ptid)
e5ef252a 6051{
08036331
PA
6052 for (thread_info *thread : all_non_exited_threads (ptid))
6053 if (inferior_ptid != thread->ptid
70509625 6054 && thread->suspend.stop_signal != GDB_SIGNAL_0)
e5ef252a
PA
6055 {
6056 p = append_resumption (p, endp, thread->ptid,
6057 0, thread->suspend.stop_signal);
6058 thread->suspend.stop_signal = GDB_SIGNAL_0;
799a2abe 6059 resume_clear_thread_private_info (thread);
e5ef252a
PA
6060 }
6061
6062 return p;
6063}
6064
7b68ffbb
PA
6065/* Set the target running, using the packets that use Hc
6066 (c/s/C/S). */
6067
6b8edb51
PA
6068void
6069remote_target::remote_resume_with_hc (ptid_t ptid, int step,
6070 gdb_signal siggnal)
7b68ffbb
PA
6071{
6072 struct remote_state *rs = get_remote_state ();
7b68ffbb
PA
6073 char *buf;
6074
6075 rs->last_sent_signal = siggnal;
6076 rs->last_sent_step = step;
6077
6078 /* The c/s/C/S resume packets use Hc, so set the continue
6079 thread. */
d7e15655 6080 if (ptid == minus_one_ptid)
7b68ffbb
PA
6081 set_continue_thread (any_thread_ptid);
6082 else
6083 set_continue_thread (ptid);
6084
08036331 6085 for (thread_info *thread : all_non_exited_threads ())
7b68ffbb
PA
6086 resume_clear_thread_private_info (thread);
6087
8d64371b 6088 buf = rs->buf.data ();
6b8edb51 6089 if (::execution_direction == EXEC_REVERSE)
7b68ffbb
PA
6090 {
6091 /* We don't pass signals to the target in reverse exec mode. */
6092 if (info_verbose && siggnal != GDB_SIGNAL_0)
6093 warning (_(" - Can't pass signal %d to target in reverse: ignored."),
6094 siggnal);
6095
6096 if (step && packet_support (PACKET_bs) == PACKET_DISABLE)
6097 error (_("Remote reverse-step not supported."));
6098 if (!step && packet_support (PACKET_bc) == PACKET_DISABLE)
6099 error (_("Remote reverse-continue not supported."));
6100
6101 strcpy (buf, step ? "bs" : "bc");
6102 }
6103 else if (siggnal != GDB_SIGNAL_0)
6104 {
6105 buf[0] = step ? 'S' : 'C';
6106 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
6107 buf[2] = tohex (((int) siggnal) & 0xf);
6108 buf[3] = '\0';
6109 }
6110 else
6111 strcpy (buf, step ? "s" : "c");
6112
6113 putpkt (buf);
6114}
6115
506fb367
DJ
6116/* Resume the remote inferior by using a "vCont" packet. The thread
6117 to be resumed is PTID; STEP and SIGGNAL indicate whether the
79d7f229
PA
6118 resumed thread should be single-stepped and/or signalled. If PTID
6119 equals minus_one_ptid, then all threads are resumed; the thread to
6120 be stepped and/or signalled is given in the global INFERIOR_PTID.
6121 This function returns non-zero iff it resumes the inferior.
44eaed12 6122
7b68ffbb
PA
6123 This function issues a strict subset of all possible vCont commands
6124 at the moment. */
44eaed12 6125
6b8edb51
PA
6126int
6127remote_target::remote_resume_with_vcont (ptid_t ptid, int step,
6128 enum gdb_signal siggnal)
506fb367
DJ
6129{
6130 struct remote_state *rs = get_remote_state ();
82f73884
PA
6131 char *p;
6132 char *endp;
44eaed12 6133
7b68ffbb 6134 /* No reverse execution actions defined for vCont. */
6b8edb51 6135 if (::execution_direction == EXEC_REVERSE)
7b68ffbb
PA
6136 return 0;
6137
4082afcc 6138 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6b8edb51 6139 remote_vcont_probe ();
44eaed12 6140
4082afcc 6141 if (packet_support (PACKET_vCont) == PACKET_DISABLE)
6d820c5c 6142 return 0;
44eaed12 6143
8d64371b
TT
6144 p = rs->buf.data ();
6145 endp = p + get_remote_packet_size ();
82f73884 6146
506fb367
DJ
6147 /* If we could generate a wider range of packets, we'd have to worry
6148 about overflowing BUF. Should there be a generic
6149 "multi-part-packet" packet? */
6150
0d8f58ca
PA
6151 p += xsnprintf (p, endp - p, "vCont");
6152
d7e15655 6153 if (ptid == magic_null_ptid)
c906108c 6154 {
79d7f229
PA
6155 /* MAGIC_NULL_PTID means that we don't have any active threads,
6156 so we don't have any TID numbers the inferior will
6157 understand. Make sure to only send forms that do not specify
6158 a TID. */
a9cbf802 6159 append_resumption (p, endp, minus_one_ptid, step, siggnal);
506fb367 6160 }
d7e15655 6161 else if (ptid == minus_one_ptid || ptid.is_pid ())
506fb367 6162 {
0d8f58ca
PA
6163 /* Resume all threads (of all processes, or of a single
6164 process), with preference for INFERIOR_PTID. This assumes
6165 inferior_ptid belongs to the set of all threads we are about
6166 to resume. */
a493e3e2 6167 if (step || siggnal != GDB_SIGNAL_0)
82f73884 6168 {
0d8f58ca
PA
6169 /* Step inferior_ptid, with or without signal. */
6170 p = append_resumption (p, endp, inferior_ptid, step, siggnal);
82f73884 6171 }
0d8f58ca 6172
e5ef252a
PA
6173 /* Also pass down any pending signaled resumption for other
6174 threads not the current. */
6175 p = append_pending_thread_resumptions (p, endp, ptid);
6176
0d8f58ca 6177 /* And continue others without a signal. */
a493e3e2 6178 append_resumption (p, endp, ptid, /*step=*/ 0, GDB_SIGNAL_0);
c906108c
SS
6179 }
6180 else
506fb367
DJ
6181 {
6182 /* Scheduler locking; resume only PTID. */
a9cbf802 6183 append_resumption (p, endp, ptid, step, siggnal);
506fb367 6184 }
c906108c 6185
8d64371b 6186 gdb_assert (strlen (rs->buf.data ()) < get_remote_packet_size ());
82f73884 6187 putpkt (rs->buf);
506fb367 6188
6efcd9a8 6189 if (target_is_non_stop_p ())
74531fed
PA
6190 {
6191 /* In non-stop, the stub replies to vCont with "OK". The stop
6192 reply will be reported asynchronously by means of a `%Stop'
6193 notification. */
8d64371b
TT
6194 getpkt (&rs->buf, 0);
6195 if (strcmp (rs->buf.data (), "OK") != 0)
6196 error (_("Unexpected vCont reply in non-stop mode: %s"),
6197 rs->buf.data ());
74531fed
PA
6198 }
6199
506fb367 6200 return 1;
c906108c 6201}
43ff13b4 6202
506fb367
DJ
6203/* Tell the remote machine to resume. */
6204
f6ac5f3d
PA
6205void
6206remote_target::resume (ptid_t ptid, int step, enum gdb_signal siggnal)
43ff13b4 6207{
d01949b6 6208 struct remote_state *rs = get_remote_state ();
43ff13b4 6209
85ad3aaf
PA
6210 /* When connected in non-stop mode, the core resumes threads
6211 individually. Resuming remote threads directly in target_resume
6212 would thus result in sending one packet per thread. Instead, to
6213 minimize roundtrip latency, here we just store the resume
6214 request; the actual remote resumption will be done in
6215 target_commit_resume / remote_commit_resume, where we'll be able
6216 to do vCont action coalescing. */
f6ac5f3d 6217 if (target_is_non_stop_p () && ::execution_direction != EXEC_REVERSE)
85ad3aaf 6218 {
7aabaf9d 6219 remote_thread_info *remote_thr;
85ad3aaf 6220
d7e15655 6221 if (minus_one_ptid == ptid || ptid.is_pid ())
7aabaf9d 6222 remote_thr = get_remote_thread_info (inferior_ptid);
85ad3aaf 6223 else
7aabaf9d
SM
6224 remote_thr = get_remote_thread_info (ptid);
6225
85ad3aaf
PA
6226 remote_thr->last_resume_step = step;
6227 remote_thr->last_resume_sig = siggnal;
6228 return;
6229 }
6230
722247f1
YQ
6231 /* In all-stop, we can't mark REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN
6232 (explained in remote-notif.c:handle_notification) so
6233 remote_notif_process is not called. We need find a place where
6234 it is safe to start a 'vNotif' sequence. It is good to do it
6235 before resuming inferior, because inferior was stopped and no RSP
6236 traffic at that moment. */
6efcd9a8 6237 if (!target_is_non_stop_p ())
5965e028 6238 remote_notif_process (rs->notif_state, &notif_client_stop);
722247f1 6239
f6ac5f3d 6240 rs->last_resume_exec_dir = ::execution_direction;
3a00c802 6241
7b68ffbb
PA
6242 /* Prefer vCont, and fallback to s/c/S/C, which use Hc. */
6243 if (!remote_resume_with_vcont (ptid, step, siggnal))
6b8edb51 6244 remote_resume_with_hc (ptid, step, siggnal);
43ff13b4 6245
2acceee2 6246 /* We are about to start executing the inferior, let's register it
0df8b418
MS
6247 with the event loop. NOTE: this is the one place where all the
6248 execution commands end up. We could alternatively do this in each
23860348 6249 of the execution commands in infcmd.c. */
2acceee2
JM
6250 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
6251 into infcmd.c in order to allow inferior function calls to work
23860348 6252 NOT asynchronously. */
362646f5 6253 if (target_can_async_p ())
6a3753b3 6254 target_async (1);
e24a49d8
PA
6255
6256 /* We've just told the target to resume. The remote server will
6257 wait for the inferior to stop, and then send a stop reply. In
6258 the mean time, we can't start another command/query ourselves
74531fed
PA
6259 because the stub wouldn't be ready to process it. This applies
6260 only to the base all-stop protocol, however. In non-stop (which
6261 only supports vCont), the stub replies with an "OK", and is
6262 immediate able to process further serial input. */
6efcd9a8 6263 if (!target_is_non_stop_p ())
74531fed 6264 rs->waiting_for_stop_reply = 1;
43ff13b4 6265}
85ad3aaf 6266
85ad3aaf
PA
6267static int is_pending_fork_parent_thread (struct thread_info *thread);
6268
6269/* Private per-inferior info for target remote processes. */
6270
089354bb 6271struct remote_inferior : public private_inferior
85ad3aaf
PA
6272{
6273 /* Whether we can send a wildcard vCont for this process. */
089354bb 6274 bool may_wildcard_vcont = true;
85ad3aaf
PA
6275};
6276
089354bb
SM
6277/* Get the remote private inferior data associated to INF. */
6278
6279static remote_inferior *
6280get_remote_inferior (inferior *inf)
6281{
6282 if (inf->priv == NULL)
6283 inf->priv.reset (new remote_inferior);
6284
6285 return static_cast<remote_inferior *> (inf->priv.get ());
6286}
6287
f5db4863 6288/* Class used to track the construction of a vCont packet in the
85ad3aaf
PA
6289 outgoing packet buffer. This is used to send multiple vCont
6290 packets if we have more actions than would fit a single packet. */
6291
f5db4863 6292class vcont_builder
85ad3aaf 6293{
f5db4863 6294public:
6b8edb51
PA
6295 explicit vcont_builder (remote_target *remote)
6296 : m_remote (remote)
f5db4863
PA
6297 {
6298 restart ();
6299 }
6300
6301 void flush ();
6302 void push_action (ptid_t ptid, bool step, gdb_signal siggnal);
6303
6304private:
6305 void restart ();
6306
6b8edb51
PA
6307 /* The remote target. */
6308 remote_target *m_remote;
6309
85ad3aaf
PA
6310 /* Pointer to the first action. P points here if no action has been
6311 appended yet. */
f5db4863 6312 char *m_first_action;
85ad3aaf
PA
6313
6314 /* Where the next action will be appended. */
f5db4863 6315 char *m_p;
85ad3aaf
PA
6316
6317 /* The end of the buffer. Must never write past this. */
f5db4863 6318 char *m_endp;
85ad3aaf
PA
6319};
6320
6321/* Prepare the outgoing buffer for a new vCont packet. */
6322
f5db4863
PA
6323void
6324vcont_builder::restart ()
85ad3aaf 6325{
6b8edb51 6326 struct remote_state *rs = m_remote->get_remote_state ();
85ad3aaf 6327
8d64371b
TT
6328 m_p = rs->buf.data ();
6329 m_endp = m_p + m_remote->get_remote_packet_size ();
f5db4863
PA
6330 m_p += xsnprintf (m_p, m_endp - m_p, "vCont");
6331 m_first_action = m_p;
85ad3aaf
PA
6332}
6333
6334/* If the vCont packet being built has any action, send it to the
6335 remote end. */
6336
f5db4863
PA
6337void
6338vcont_builder::flush ()
85ad3aaf
PA
6339{
6340 struct remote_state *rs;
6341
f5db4863 6342 if (m_p == m_first_action)
85ad3aaf
PA
6343 return;
6344
6b8edb51
PA
6345 rs = m_remote->get_remote_state ();
6346 m_remote->putpkt (rs->buf);
8d64371b
TT
6347 m_remote->getpkt (&rs->buf, 0);
6348 if (strcmp (rs->buf.data (), "OK") != 0)
6349 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf.data ());
85ad3aaf
PA
6350}
6351
6352/* The largest action is range-stepping, with its two addresses. This
6353 is more than sufficient. If a new, bigger action is created, it'll
6354 quickly trigger a failed assertion in append_resumption (and we'll
6355 just bump this). */
6356#define MAX_ACTION_SIZE 200
6357
6358/* Append a new vCont action in the outgoing packet being built. If
6359 the action doesn't fit the packet along with previous actions, push
6360 what we've got so far to the remote end and start over a new vCont
6361 packet (with the new action). */
6362
f5db4863
PA
6363void
6364vcont_builder::push_action (ptid_t ptid, bool step, gdb_signal siggnal)
85ad3aaf
PA
6365{
6366 char buf[MAX_ACTION_SIZE + 1];
85ad3aaf 6367
6b8edb51
PA
6368 char *endp = m_remote->append_resumption (buf, buf + sizeof (buf),
6369 ptid, step, siggnal);
85ad3aaf
PA
6370
6371 /* Check whether this new action would fit in the vCont packet along
6372 with previous actions. If not, send what we've got so far and
6373 start a new vCont packet. */
f5db4863
PA
6374 size_t rsize = endp - buf;
6375 if (rsize > m_endp - m_p)
85ad3aaf 6376 {
f5db4863
PA
6377 flush ();
6378 restart ();
85ad3aaf
PA
6379
6380 /* Should now fit. */
f5db4863 6381 gdb_assert (rsize <= m_endp - m_p);
85ad3aaf
PA
6382 }
6383
f5db4863
PA
6384 memcpy (m_p, buf, rsize);
6385 m_p += rsize;
6386 *m_p = '\0';
85ad3aaf
PA
6387}
6388
6389/* to_commit_resume implementation. */
6390
f6ac5f3d
PA
6391void
6392remote_target::commit_resume ()
85ad3aaf 6393{
85ad3aaf
PA
6394 int any_process_wildcard;
6395 int may_global_wildcard_vcont;
85ad3aaf
PA
6396
6397 /* If connected in all-stop mode, we'd send the remote resume
6398 request directly from remote_resume. Likewise if
6399 reverse-debugging, as there are no defined vCont actions for
6400 reverse execution. */
f6ac5f3d 6401 if (!target_is_non_stop_p () || ::execution_direction == EXEC_REVERSE)
85ad3aaf
PA
6402 return;
6403
6404 /* Try to send wildcard actions ("vCont;c" or "vCont;c:pPID.-1")
6405 instead of resuming all threads of each process individually.
6406 However, if any thread of a process must remain halted, we can't
6407 send wildcard resumes and must send one action per thread.
6408
6409 Care must be taken to not resume threads/processes the server
6410 side already told us are stopped, but the core doesn't know about
6411 yet, because the events are still in the vStopped notification
6412 queue. For example:
6413
6414 #1 => vCont s:p1.1;c
6415 #2 <= OK
6416 #3 <= %Stopped T05 p1.1
6417 #4 => vStopped
6418 #5 <= T05 p1.2
6419 #6 => vStopped
6420 #7 <= OK
6421 #8 (infrun handles the stop for p1.1 and continues stepping)
6422 #9 => vCont s:p1.1;c
6423
6424 The last vCont above would resume thread p1.2 by mistake, because
6425 the server has no idea that the event for p1.2 had not been
6426 handled yet.
6427
6428 The server side must similarly ignore resume actions for the
6429 thread that has a pending %Stopped notification (and any other
6430 threads with events pending), until GDB acks the notification
6431 with vStopped. Otherwise, e.g., the following case is
6432 mishandled:
6433
6434 #1 => g (or any other packet)
6435 #2 <= [registers]
6436 #3 <= %Stopped T05 p1.2
6437 #4 => vCont s:p1.1;c
6438 #5 <= OK
6439
6440 Above, the server must not resume thread p1.2. GDB can't know
6441 that p1.2 stopped until it acks the %Stopped notification, and
6442 since from GDB's perspective all threads should be running, it
6443 sends a "c" action.
6444
6445 Finally, special care must also be given to handling fork/vfork
6446 events. A (v)fork event actually tells us that two processes
6447 stopped -- the parent and the child. Until we follow the fork,
6448 we must not resume the child. Therefore, if we have a pending
6449 fork follow, we must not send a global wildcard resume action
6450 (vCont;c). We can still send process-wide wildcards though. */
6451
6452 /* Start by assuming a global wildcard (vCont;c) is possible. */
6453 may_global_wildcard_vcont = 1;
6454
6455 /* And assume every process is individually wildcard-able too. */
08036331 6456 for (inferior *inf : all_non_exited_inferiors ())
85ad3aaf 6457 {
089354bb
SM
6458 remote_inferior *priv = get_remote_inferior (inf);
6459
6460 priv->may_wildcard_vcont = true;
85ad3aaf
PA
6461 }
6462
6463 /* Check for any pending events (not reported or processed yet) and
6464 disable process and global wildcard resumes appropriately. */
6465 check_pending_events_prevent_wildcard_vcont (&may_global_wildcard_vcont);
6466
08036331 6467 for (thread_info *tp : all_non_exited_threads ())
85ad3aaf
PA
6468 {
6469 /* If a thread of a process is not meant to be resumed, then we
6470 can't wildcard that process. */
6471 if (!tp->executing)
6472 {
089354bb 6473 get_remote_inferior (tp->inf)->may_wildcard_vcont = false;
85ad3aaf
PA
6474
6475 /* And if we can't wildcard a process, we can't wildcard
6476 everything either. */
6477 may_global_wildcard_vcont = 0;
6478 continue;
6479 }
6480
6481 /* If a thread is the parent of an unfollowed fork, then we
6482 can't do a global wildcard, as that would resume the fork
6483 child. */
6484 if (is_pending_fork_parent_thread (tp))
6485 may_global_wildcard_vcont = 0;
6486 }
6487
6488 /* Now let's build the vCont packet(s). Actions must be appended
6489 from narrower to wider scopes (thread -> process -> global). If
6490 we end up with too many actions for a single packet vcont_builder
6491 flushes the current vCont packet to the remote side and starts a
6492 new one. */
6b8edb51 6493 struct vcont_builder vcont_builder (this);
85ad3aaf
PA
6494
6495 /* Threads first. */
08036331 6496 for (thread_info *tp : all_non_exited_threads ())
85ad3aaf 6497 {
7aabaf9d 6498 remote_thread_info *remote_thr = get_remote_thread_info (tp);
85ad3aaf
PA
6499
6500 if (!tp->executing || remote_thr->vcont_resumed)
6501 continue;
6502
6503 gdb_assert (!thread_is_in_step_over_chain (tp));
6504
6505 if (!remote_thr->last_resume_step
6506 && remote_thr->last_resume_sig == GDB_SIGNAL_0
089354bb 6507 && get_remote_inferior (tp->inf)->may_wildcard_vcont)
85ad3aaf
PA
6508 {
6509 /* We'll send a wildcard resume instead. */
6510 remote_thr->vcont_resumed = 1;
6511 continue;
6512 }
6513
f5db4863 6514 vcont_builder.push_action (tp->ptid,
85ad3aaf
PA
6515 remote_thr->last_resume_step,
6516 remote_thr->last_resume_sig);
6517 remote_thr->vcont_resumed = 1;
6518 }
6519
6520 /* Now check whether we can send any process-wide wildcard. This is
6521 to avoid sending a global wildcard in the case nothing is
6522 supposed to be resumed. */
6523 any_process_wildcard = 0;
6524
08036331 6525 for (inferior *inf : all_non_exited_inferiors ())
85ad3aaf 6526 {
089354bb 6527 if (get_remote_inferior (inf)->may_wildcard_vcont)
85ad3aaf
PA
6528 {
6529 any_process_wildcard = 1;
6530 break;
6531 }
6532 }
6533
6534 if (any_process_wildcard)
6535 {
6536 /* If all processes are wildcard-able, then send a single "c"
6537 action, otherwise, send an "all (-1) threads of process"
6538 continue action for each running process, if any. */
6539 if (may_global_wildcard_vcont)
6540 {
f5db4863
PA
6541 vcont_builder.push_action (minus_one_ptid,
6542 false, GDB_SIGNAL_0);
85ad3aaf
PA
6543 }
6544 else
6545 {
08036331 6546 for (inferior *inf : all_non_exited_inferiors ())
85ad3aaf 6547 {
089354bb 6548 if (get_remote_inferior (inf)->may_wildcard_vcont)
85ad3aaf 6549 {
f2907e49 6550 vcont_builder.push_action (ptid_t (inf->pid),
f5db4863 6551 false, GDB_SIGNAL_0);
85ad3aaf
PA
6552 }
6553 }
6554 }
6555 }
6556
f5db4863 6557 vcont_builder.flush ();
85ad3aaf
PA
6558}
6559
c906108c 6560\f
43ff13b4 6561
74531fed
PA
6562/* Non-stop version of target_stop. Uses `vCont;t' to stop a remote
6563 thread, all threads of a remote process, or all threads of all
6564 processes. */
6565
6b8edb51
PA
6566void
6567remote_target::remote_stop_ns (ptid_t ptid)
74531fed
PA
6568{
6569 struct remote_state *rs = get_remote_state ();
8d64371b
TT
6570 char *p = rs->buf.data ();
6571 char *endp = p + get_remote_packet_size ();
74531fed 6572
4082afcc 6573 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6b8edb51 6574 remote_vcont_probe ();
74531fed 6575
d458bd84 6576 if (!rs->supports_vCont.t)
74531fed
PA
6577 error (_("Remote server does not support stopping threads"));
6578
d7e15655 6579 if (ptid == minus_one_ptid
0e998d96 6580 || (!remote_multi_process_p (rs) && ptid.is_pid ()))
74531fed
PA
6581 p += xsnprintf (p, endp - p, "vCont;t");
6582 else
6583 {
6584 ptid_t nptid;
6585
74531fed
PA
6586 p += xsnprintf (p, endp - p, "vCont;t:");
6587
0e998d96 6588 if (ptid.is_pid ())
74531fed 6589 /* All (-1) threads of process. */
e99b03dc 6590 nptid = ptid_t (ptid.pid (), -1, 0);
74531fed
PA
6591 else
6592 {
6593 /* Small optimization: if we already have a stop reply for
6594 this thread, no use in telling the stub we want this
6595 stopped. */
6596 if (peek_stop_reply (ptid))
6597 return;
6598
6599 nptid = ptid;
6600 }
6601
a9cbf802 6602 write_ptid (p, endp, nptid);
74531fed
PA
6603 }
6604
6605 /* In non-stop, we get an immediate OK reply. The stop reply will
6606 come in asynchronously by notification. */
6607 putpkt (rs->buf);
8d64371b
TT
6608 getpkt (&rs->buf, 0);
6609 if (strcmp (rs->buf.data (), "OK") != 0)
a068643d 6610 error (_("Stopping %s failed: %s"), target_pid_to_str (ptid).c_str (),
8d64371b 6611 rs->buf.data ());
74531fed
PA
6612}
6613
bfedc46a
PA
6614/* All-stop version of target_interrupt. Sends a break or a ^C to
6615 interrupt the remote target. It is undefined which thread of which
6616 process reports the interrupt. */
74531fed 6617
6b8edb51
PA
6618void
6619remote_target::remote_interrupt_as ()
74531fed
PA
6620{
6621 struct remote_state *rs = get_remote_state ();
6622
3a29589a
DJ
6623 rs->ctrlc_pending_p = 1;
6624
74531fed
PA
6625 /* If the inferior is stopped already, but the core didn't know
6626 about it yet, just ignore the request. The cached wait status
6627 will be collected in remote_wait. */
6628 if (rs->cached_wait_status)
6629 return;
6630
9a7071a8
JB
6631 /* Send interrupt_sequence to remote target. */
6632 send_interrupt_sequence ();
74531fed
PA
6633}
6634
de979965
PA
6635/* Non-stop version of target_interrupt. Uses `vCtrlC' to interrupt
6636 the remote target. It is undefined which thread of which process
e42de8c7
PA
6637 reports the interrupt. Throws an error if the packet is not
6638 supported by the server. */
de979965 6639
6b8edb51
PA
6640void
6641remote_target::remote_interrupt_ns ()
de979965
PA
6642{
6643 struct remote_state *rs = get_remote_state ();
8d64371b
TT
6644 char *p = rs->buf.data ();
6645 char *endp = p + get_remote_packet_size ();
de979965
PA
6646
6647 xsnprintf (p, endp - p, "vCtrlC");
6648
6649 /* In non-stop, we get an immediate OK reply. The stop reply will
6650 come in asynchronously by notification. */
6651 putpkt (rs->buf);
8d64371b 6652 getpkt (&rs->buf, 0);
de979965
PA
6653
6654 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCtrlC]))
6655 {
6656 case PACKET_OK:
6657 break;
6658 case PACKET_UNKNOWN:
e42de8c7 6659 error (_("No support for interrupting the remote target."));
de979965 6660 case PACKET_ERROR:
8d64371b 6661 error (_("Interrupting target failed: %s"), rs->buf.data ());
de979965 6662 }
de979965
PA
6663}
6664
bfedc46a 6665/* Implement the to_stop function for the remote targets. */
74531fed 6666
f6ac5f3d
PA
6667void
6668remote_target::stop (ptid_t ptid)
c906108c 6669{
7a292a7a 6670 if (remote_debug)
0f71a2f6 6671 fprintf_unfiltered (gdb_stdlog, "remote_stop called\n");
c906108c 6672
6efcd9a8 6673 if (target_is_non_stop_p ())
74531fed 6674 remote_stop_ns (ptid);
c906108c 6675 else
bfedc46a
PA
6676 {
6677 /* We don't currently have a way to transparently pause the
6678 remote target in all-stop mode. Interrupt it instead. */
de979965 6679 remote_interrupt_as ();
bfedc46a
PA
6680 }
6681}
6682
6683/* Implement the to_interrupt function for the remote targets. */
6684
f6ac5f3d
PA
6685void
6686remote_target::interrupt ()
bfedc46a
PA
6687{
6688 if (remote_debug)
6689 fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n");
6690
e42de8c7
PA
6691 if (target_is_non_stop_p ())
6692 remote_interrupt_ns ();
bfedc46a 6693 else
e42de8c7 6694 remote_interrupt_as ();
c906108c
SS
6695}
6696
93692b58
PA
6697/* Implement the to_pass_ctrlc function for the remote targets. */
6698
f6ac5f3d
PA
6699void
6700remote_target::pass_ctrlc ()
93692b58
PA
6701{
6702 struct remote_state *rs = get_remote_state ();
6703
6704 if (remote_debug)
6705 fprintf_unfiltered (gdb_stdlog, "remote_pass_ctrlc called\n");
6706
6707 /* If we're starting up, we're not fully synced yet. Quit
6708 immediately. */
6709 if (rs->starting_up)
6710 quit ();
6711 /* If ^C has already been sent once, offer to disconnect. */
6712 else if (rs->ctrlc_pending_p)
6713 interrupt_query ();
6714 else
e671cd59 6715 target_interrupt ();
93692b58
PA
6716}
6717
c906108c
SS
6718/* Ask the user what to do when an interrupt is received. */
6719
6b8edb51
PA
6720void
6721remote_target::interrupt_query ()
c906108c 6722{
abc56d60 6723 struct remote_state *rs = get_remote_state ();
c906108c 6724
abc56d60 6725 if (rs->waiting_for_stop_reply && rs->ctrlc_pending_p)
74531fed 6726 {
abc56d60
PA
6727 if (query (_("The target is not responding to interrupt requests.\n"
6728 "Stop debugging it? ")))
74531fed 6729 {
78a095c3 6730 remote_unpush_target ();
abc56d60 6731 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
74531fed
PA
6732 }
6733 }
abc56d60
PA
6734 else
6735 {
6736 if (query (_("Interrupted while waiting for the program.\n"
6737 "Give up waiting? ")))
6738 quit ();
6739 }
c906108c
SS
6740}
6741
6426a772
JM
6742/* Enable/disable target terminal ownership. Most targets can use
6743 terminal groups to control terminal ownership. Remote targets are
6744 different in that explicit transfer of ownership to/from GDB/target
23860348 6745 is required. */
6426a772 6746
f6ac5f3d
PA
6747void
6748remote_target::terminal_inferior ()
6426a772 6749{
6426a772
JM
6750 /* NOTE: At this point we could also register our selves as the
6751 recipient of all input. Any characters typed could then be
23860348 6752 passed on down to the target. */
6426a772
JM
6753}
6754
f6ac5f3d
PA
6755void
6756remote_target::terminal_ours ()
6426a772 6757{
6426a772
JM
6758}
6759
176a6961 6760static void
05be00a8 6761remote_console_output (const char *msg)
c906108c 6762{
05be00a8 6763 const char *p;
c906108c 6764
c5aa993b 6765 for (p = msg; p[0] && p[1]; p += 2)
c906108c
SS
6766 {
6767 char tb[2];
6768 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
a744cf53 6769
c906108c
SS
6770 tb[0] = c;
6771 tb[1] = 0;
43ff13b4 6772 fputs_unfiltered (tb, gdb_stdtarg);
c906108c 6773 }
00db5b94
PA
6774 gdb_flush (gdb_stdtarg);
6775}
74531fed 6776
32603266 6777struct stop_reply : public notif_event
74531fed 6778{
32603266 6779 ~stop_reply ();
74531fed 6780
722247f1 6781 /* The identifier of the thread about this event */
74531fed
PA
6782 ptid_t ptid;
6783
340e3c99 6784 /* The remote state this event is associated with. When the remote
bcc75809
YQ
6785 connection, represented by a remote_state object, is closed,
6786 all the associated stop_reply events should be released. */
6787 struct remote_state *rs;
6788
74531fed
PA
6789 struct target_waitstatus ws;
6790
5cd63fda
PA
6791 /* The architecture associated with the expedited registers. */
6792 gdbarch *arch;
6793
15148d6a
PA
6794 /* Expedited registers. This makes remote debugging a bit more
6795 efficient for those targets that provide critical registers as
6796 part of their normal status mechanism (as another roundtrip to
6797 fetch them is avoided). */
32603266 6798 std::vector<cached_reg_t> regcache;
74531fed 6799
f7e6eed5
PA
6800 enum target_stop_reason stop_reason;
6801
74531fed
PA
6802 CORE_ADDR watch_data_address;
6803
dc146f7c 6804 int core;
32603266 6805};
c906108c 6806
221e1a37
PA
6807/* Return the length of the stop reply queue. */
6808
6b8edb51
PA
6809int
6810remote_target::stop_reply_queue_length ()
221e1a37 6811{
6b8edb51 6812 remote_state *rs = get_remote_state ();
953edf2b 6813 return rs->stop_reply_queue.size ();
221e1a37
PA
6814}
6815
6b8edb51
PA
6816void
6817remote_notif_stop_parse (remote_target *remote,
bb277751 6818 struct notif_client *self, const char *buf,
722247f1
YQ
6819 struct notif_event *event)
6820{
6b8edb51 6821 remote->remote_parse_stop_reply (buf, (struct stop_reply *) event);
722247f1
YQ
6822}
6823
6824static void
6b8edb51 6825remote_notif_stop_ack (remote_target *remote,
bb277751 6826 struct notif_client *self, const char *buf,
722247f1
YQ
6827 struct notif_event *event)
6828{
6829 struct stop_reply *stop_reply = (struct stop_reply *) event;
6830
6831 /* acknowledge */
6b8edb51 6832 putpkt (remote, self->ack_command);
722247f1
YQ
6833
6834 if (stop_reply->ws.kind == TARGET_WAITKIND_IGNORE)
6b8edb51 6835 {
722247f1
YQ
6836 /* We got an unknown stop reply. */
6837 error (_("Unknown stop reply"));
6b8edb51 6838 }
722247f1 6839
6b8edb51 6840 remote->push_stop_reply (stop_reply);
722247f1
YQ
6841}
6842
6843static int
6b8edb51
PA
6844remote_notif_stop_can_get_pending_events (remote_target *remote,
6845 struct notif_client *self)
722247f1
YQ
6846{
6847 /* We can't get pending events in remote_notif_process for
6848 notification stop, and we have to do this in remote_wait_ns
6849 instead. If we fetch all queued events from stub, remote stub
6850 may exit and we have no chance to process them back in
6851 remote_wait_ns. */
6b8edb51
PA
6852 remote_state *rs = remote->get_remote_state ();
6853 mark_async_event_handler (rs->remote_async_inferior_event_token);
722247f1
YQ
6854 return 0;
6855}
6856
32603266 6857stop_reply::~stop_reply ()
722247f1 6858{
32603266
TT
6859 for (cached_reg_t &reg : regcache)
6860 xfree (reg.data);
722247f1
YQ
6861}
6862
32603266
TT
6863static notif_event_up
6864remote_notif_stop_alloc_reply ()
722247f1 6865{
32603266 6866 return notif_event_up (new struct stop_reply ());
722247f1
YQ
6867}
6868
6869/* A client of notification Stop. */
6870
6871struct notif_client notif_client_stop =
6872{
6873 "Stop",
6874 "vStopped",
6875 remote_notif_stop_parse,
6876 remote_notif_stop_ack,
6877 remote_notif_stop_can_get_pending_events,
6878 remote_notif_stop_alloc_reply,
f48ff2a7 6879 REMOTE_NOTIF_STOP,
722247f1
YQ
6880};
6881
85ad3aaf 6882/* Determine if THREAD_PTID is a pending fork parent thread. ARG contains
cbb8991c
DB
6883 the pid of the process that owns the threads we want to check, or
6884 -1 if we want to check all threads. */
6885
6886static int
6887is_pending_fork_parent (struct target_waitstatus *ws, int event_pid,
6888 ptid_t thread_ptid)
6889{
6890 if (ws->kind == TARGET_WAITKIND_FORKED
6891 || ws->kind == TARGET_WAITKIND_VFORKED)
6892 {
e99b03dc 6893 if (event_pid == -1 || event_pid == thread_ptid.pid ())
cbb8991c
DB
6894 return 1;
6895 }
6896
6897 return 0;
6898}
6899
85ad3aaf
PA
6900/* Return the thread's pending status used to determine whether the
6901 thread is a fork parent stopped at a fork event. */
6902
6903static struct target_waitstatus *
6904thread_pending_fork_status (struct thread_info *thread)
6905{
6906 if (thread->suspend.waitstatus_pending_p)
6907 return &thread->suspend.waitstatus;
6908 else
6909 return &thread->pending_follow;
6910}
6911
6912/* Determine if THREAD is a pending fork parent thread. */
6913
6914static int
6915is_pending_fork_parent_thread (struct thread_info *thread)
6916{
6917 struct target_waitstatus *ws = thread_pending_fork_status (thread);
6918 int pid = -1;
6919
6920 return is_pending_fork_parent (ws, pid, thread->ptid);
6921}
6922
cbb8991c
DB
6923/* If CONTEXT contains any fork child threads that have not been
6924 reported yet, remove them from the CONTEXT list. If such a
6925 thread exists it is because we are stopped at a fork catchpoint
6926 and have not yet called follow_fork, which will set up the
6927 host-side data structures for the new process. */
6928
6b8edb51
PA
6929void
6930remote_target::remove_new_fork_children (threads_listing_context *context)
cbb8991c 6931{
cbb8991c
DB
6932 int pid = -1;
6933 struct notif_client *notif = &notif_client_stop;
cbb8991c
DB
6934
6935 /* For any threads stopped at a fork event, remove the corresponding
6936 fork child threads from the CONTEXT list. */
08036331 6937 for (thread_info *thread : all_non_exited_threads ())
cbb8991c 6938 {
85ad3aaf 6939 struct target_waitstatus *ws = thread_pending_fork_status (thread);
cbb8991c
DB
6940
6941 if (is_pending_fork_parent (ws, pid, thread->ptid))
21fe1c75 6942 context->remove_thread (ws->value.related_pid);
cbb8991c
DB
6943 }
6944
6945 /* Check for any pending fork events (not reported or processed yet)
6946 in process PID and remove those fork child threads from the
6947 CONTEXT list as well. */
6948 remote_notif_get_pending_events (notif);
953edf2b
TT
6949 for (auto &event : get_remote_state ()->stop_reply_queue)
6950 if (event->ws.kind == TARGET_WAITKIND_FORKED
6951 || event->ws.kind == TARGET_WAITKIND_VFORKED
6952 || event->ws.kind == TARGET_WAITKIND_THREAD_EXITED)
6953 context->remove_thread (event->ws.value.related_pid);
85ad3aaf
PA
6954}
6955
6956/* Check whether any event pending in the vStopped queue would prevent
6957 a global or process wildcard vCont action. Clear
6958 *may_global_wildcard if we can't do a global wildcard (vCont;c),
6959 and clear the event inferior's may_wildcard_vcont flag if we can't
6960 do a process-wide wildcard resume (vCont;c:pPID.-1). */
6961
6b8edb51
PA
6962void
6963remote_target::check_pending_events_prevent_wildcard_vcont
6964 (int *may_global_wildcard)
85ad3aaf
PA
6965{
6966 struct notif_client *notif = &notif_client_stop;
6967
6968 remote_notif_get_pending_events (notif);
953edf2b
TT
6969 for (auto &event : get_remote_state ()->stop_reply_queue)
6970 {
6971 if (event->ws.kind == TARGET_WAITKIND_NO_RESUMED
6972 || event->ws.kind == TARGET_WAITKIND_NO_HISTORY)
6973 continue;
85ad3aaf 6974
953edf2b
TT
6975 if (event->ws.kind == TARGET_WAITKIND_FORKED
6976 || event->ws.kind == TARGET_WAITKIND_VFORKED)
6977 *may_global_wildcard = 0;
722247f1 6978
953edf2b 6979 struct inferior *inf = find_inferior_ptid (event->ptid);
722247f1 6980
953edf2b
TT
6981 /* This may be the first time we heard about this process.
6982 Regardless, we must not do a global wildcard resume, otherwise
6983 we'd resume this process too. */
6984 *may_global_wildcard = 0;
6985 if (inf != NULL)
6986 get_remote_inferior (inf)->may_wildcard_vcont = false;
722247f1 6987 }
722247f1
YQ
6988}
6989
f48ff2a7 6990/* Discard all pending stop replies of inferior INF. */
c906108c 6991
6b8edb51
PA
6992void
6993remote_target::discard_pending_stop_replies (struct inferior *inf)
c906108c 6994{
f48ff2a7
YQ
6995 struct stop_reply *reply;
6996 struct remote_state *rs = get_remote_state ();
6997 struct remote_notif_state *rns = rs->notif_state;
6998
6999 /* This function can be notified when an inferior exists. When the
7000 target is not remote, the notification state is NULL. */
7001 if (rs->remote_desc == NULL)
7002 return;
7003
7004 reply = (struct stop_reply *) rns->pending_event[notif_client_stop.id];
c906108c 7005
74531fed 7006 /* Discard the in-flight notification. */
e99b03dc 7007 if (reply != NULL && reply->ptid.pid () == inf->pid)
74531fed 7008 {
32603266 7009 delete reply;
f48ff2a7 7010 rns->pending_event[notif_client_stop.id] = NULL;
74531fed 7011 }
c906108c 7012
74531fed
PA
7013 /* Discard the stop replies we have already pulled with
7014 vStopped. */
953edf2b
TT
7015 auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7016 rs->stop_reply_queue.end (),
7017 [=] (const stop_reply_up &event)
7018 {
7019 return event->ptid.pid () == inf->pid;
7020 });
7021 rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
bcc75809
YQ
7022}
7023
7024/* Discard the stop replies for RS in stop_reply_queue. */
f48ff2a7 7025
6b8edb51
PA
7026void
7027remote_target::discard_pending_stop_replies_in_queue ()
f48ff2a7 7028{
6b8edb51 7029 remote_state *rs = get_remote_state ();
f48ff2a7 7030
f48ff2a7
YQ
7031 /* Discard the stop replies we have already pulled with
7032 vStopped. */
953edf2b
TT
7033 auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7034 rs->stop_reply_queue.end (),
7035 [=] (const stop_reply_up &event)
7036 {
7037 return event->rs == rs;
7038 });
7039 rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
74531fed 7040}
43ff13b4 7041
722247f1
YQ
7042/* Remove the first reply in 'stop_reply_queue' which matches
7043 PTID. */
2e9f7625 7044
6b8edb51
PA
7045struct stop_reply *
7046remote_target::remote_notif_remove_queued_reply (ptid_t ptid)
74531fed 7047{
953edf2b 7048 remote_state *rs = get_remote_state ();
722247f1 7049
953edf2b
TT
7050 auto iter = std::find_if (rs->stop_reply_queue.begin (),
7051 rs->stop_reply_queue.end (),
7052 [=] (const stop_reply_up &event)
7053 {
7054 return event->ptid.matches (ptid);
7055 });
7056 struct stop_reply *result;
7057 if (iter == rs->stop_reply_queue.end ())
7058 result = nullptr;
7059 else
7060 {
7061 result = iter->release ();
7062 rs->stop_reply_queue.erase (iter);
7063 }
722247f1 7064
722247f1
YQ
7065 if (notif_debug)
7066 fprintf_unfiltered (gdb_stdlog,
7067 "notif: discard queued event: 'Stop' in %s\n",
a068643d 7068 target_pid_to_str (ptid).c_str ());
a744cf53 7069
953edf2b 7070 return result;
74531fed 7071}
75c99385 7072
74531fed
PA
7073/* Look for a queued stop reply belonging to PTID. If one is found,
7074 remove it from the queue, and return it. Returns NULL if none is
7075 found. If there are still queued events left to process, tell the
7076 event loop to get back to target_wait soon. */
e24a49d8 7077
6b8edb51
PA
7078struct stop_reply *
7079remote_target::queued_stop_reply (ptid_t ptid)
74531fed 7080{
953edf2b 7081 remote_state *rs = get_remote_state ();
722247f1 7082 struct stop_reply *r = remote_notif_remove_queued_reply (ptid);
74531fed 7083
953edf2b 7084 if (!rs->stop_reply_queue.empty ())
6b8edb51 7085 {
6b8edb51
PA
7086 /* There's still at least an event left. */
7087 mark_async_event_handler (rs->remote_async_inferior_event_token);
7088 }
74531fed 7089
722247f1 7090 return r;
74531fed
PA
7091}
7092
7093/* Push a fully parsed stop reply in the stop reply queue. Since we
7094 know that we now have at least one queued event left to pass to the
7095 core side, tell the event loop to get back to target_wait soon. */
7096
6b8edb51
PA
7097void
7098remote_target::push_stop_reply (struct stop_reply *new_event)
74531fed 7099{
6b8edb51 7100 remote_state *rs = get_remote_state ();
953edf2b 7101 rs->stop_reply_queue.push_back (stop_reply_up (new_event));
74531fed 7102
722247f1
YQ
7103 if (notif_debug)
7104 fprintf_unfiltered (gdb_stdlog,
7105 "notif: push 'Stop' %s to queue %d\n",
a068643d 7106 target_pid_to_str (new_event->ptid).c_str (),
953edf2b 7107 int (rs->stop_reply_queue.size ()));
74531fed 7108
6b8edb51 7109 mark_async_event_handler (rs->remote_async_inferior_event_token);
74531fed
PA
7110}
7111
7112/* Returns true if we have a stop reply for PTID. */
7113
6b8edb51
PA
7114int
7115remote_target::peek_stop_reply (ptid_t ptid)
74531fed 7116{
6b8edb51 7117 remote_state *rs = get_remote_state ();
953edf2b
TT
7118 for (auto &event : rs->stop_reply_queue)
7119 if (ptid == event->ptid
7120 && event->ws.kind == TARGET_WAITKIND_STOPPED)
7121 return 1;
7122 return 0;
74531fed
PA
7123}
7124
26d56a93
SL
7125/* Helper for remote_parse_stop_reply. Return nonzero if the substring
7126 starting with P and ending with PEND matches PREFIX. */
7127
7128static int
7129strprefix (const char *p, const char *pend, const char *prefix)
7130{
7131 for ( ; p < pend; p++, prefix++)
7132 if (*p != *prefix)
7133 return 0;
7134 return *prefix == '\0';
7135}
7136
74531fed
PA
7137/* Parse the stop reply in BUF. Either the function succeeds, and the
7138 result is stored in EVENT, or throws an error. */
7139
6b8edb51 7140void
bb277751 7141remote_target::remote_parse_stop_reply (const char *buf, stop_reply *event)
74531fed 7142{
5cd63fda 7143 remote_arch_state *rsa = NULL;
74531fed 7144 ULONGEST addr;
256642e8 7145 const char *p;
94585166 7146 int skipregs = 0;
74531fed
PA
7147
7148 event->ptid = null_ptid;
bcc75809 7149 event->rs = get_remote_state ();
74531fed
PA
7150 event->ws.kind = TARGET_WAITKIND_IGNORE;
7151 event->ws.value.integer = 0;
f7e6eed5 7152 event->stop_reason = TARGET_STOPPED_BY_NO_REASON;
32603266 7153 event->regcache.clear ();
dc146f7c 7154 event->core = -1;
74531fed
PA
7155
7156 switch (buf[0])
7157 {
7158 case 'T': /* Status with PC, SP, FP, ... */
cea39f65
MS
7159 /* Expedited reply, containing Signal, {regno, reg} repeat. */
7160 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
7161 ss = signal number
7162 n... = register number
7163 r... = register contents
7164 */
7165
7166 p = &buf[3]; /* after Txx */
7167 while (*p)
7168 {
256642e8 7169 const char *p1;
cea39f65 7170 int fieldsize;
43ff13b4 7171
1f10ba14
PA
7172 p1 = strchr (p, ':');
7173 if (p1 == NULL)
7174 error (_("Malformed packet(a) (missing colon): %s\n\
7175Packet: '%s'\n"),
7176 p, buf);
7177 if (p == p1)
7178 error (_("Malformed packet(a) (missing register number): %s\n\
7179Packet: '%s'\n"),
7180 p, buf);
3c3bea1c 7181
1f10ba14
PA
7182 /* Some "registers" are actually extended stop information.
7183 Note if you're adding a new entry here: GDB 7.9 and
7184 earlier assume that all register "numbers" that start
7185 with an hex digit are real register numbers. Make sure
7186 the server only sends such a packet if it knows the
7187 client understands it. */
c8e38a49 7188
26d56a93 7189 if (strprefix (p, p1, "thread"))
1f10ba14 7190 event->ptid = read_ptid (++p1, &p);
82075af2
JS
7191 else if (strprefix (p, p1, "syscall_entry"))
7192 {
7193 ULONGEST sysno;
7194
7195 event->ws.kind = TARGET_WAITKIND_SYSCALL_ENTRY;
7196 p = unpack_varlen_hex (++p1, &sysno);
7197 event->ws.value.syscall_number = (int) sysno;
7198 }
7199 else if (strprefix (p, p1, "syscall_return"))
7200 {
7201 ULONGEST sysno;
7202
7203 event->ws.kind = TARGET_WAITKIND_SYSCALL_RETURN;
7204 p = unpack_varlen_hex (++p1, &sysno);
7205 event->ws.value.syscall_number = (int) sysno;
7206 }
26d56a93
SL
7207 else if (strprefix (p, p1, "watch")
7208 || strprefix (p, p1, "rwatch")
7209 || strprefix (p, p1, "awatch"))
cea39f65 7210 {
f7e6eed5 7211 event->stop_reason = TARGET_STOPPED_BY_WATCHPOINT;
1f10ba14
PA
7212 p = unpack_varlen_hex (++p1, &addr);
7213 event->watch_data_address = (CORE_ADDR) addr;
cea39f65 7214 }
26d56a93 7215 else if (strprefix (p, p1, "swbreak"))
f7e6eed5
PA
7216 {
7217 event->stop_reason = TARGET_STOPPED_BY_SW_BREAKPOINT;
7218
7219 /* Make sure the stub doesn't forget to indicate support
7220 with qSupported. */
7221 if (packet_support (PACKET_swbreak_feature) != PACKET_ENABLE)
7222 error (_("Unexpected swbreak stop reason"));
7223
7224 /* The value part is documented as "must be empty",
7225 though we ignore it, in case we ever decide to make
7226 use of it in a backward compatible way. */
8424cc97 7227 p = strchrnul (p1 + 1, ';');
f7e6eed5 7228 }
26d56a93 7229 else if (strprefix (p, p1, "hwbreak"))
f7e6eed5
PA
7230 {
7231 event->stop_reason = TARGET_STOPPED_BY_HW_BREAKPOINT;
7232
7233 /* Make sure the stub doesn't forget to indicate support
7234 with qSupported. */
7235 if (packet_support (PACKET_hwbreak_feature) != PACKET_ENABLE)
7236 error (_("Unexpected hwbreak stop reason"));
7237
7238 /* See above. */
8424cc97 7239 p = strchrnul (p1 + 1, ';');
f7e6eed5 7240 }
26d56a93 7241 else if (strprefix (p, p1, "library"))
cea39f65 7242 {
1f10ba14 7243 event->ws.kind = TARGET_WAITKIND_LOADED;
8424cc97 7244 p = strchrnul (p1 + 1, ';');
1f10ba14 7245 }
26d56a93 7246 else if (strprefix (p, p1, "replaylog"))
1f10ba14
PA
7247 {
7248 event->ws.kind = TARGET_WAITKIND_NO_HISTORY;
7249 /* p1 will indicate "begin" or "end", but it makes
7250 no difference for now, so ignore it. */
8424cc97 7251 p = strchrnul (p1 + 1, ';');
1f10ba14 7252 }
26d56a93 7253 else if (strprefix (p, p1, "core"))
1f10ba14
PA
7254 {
7255 ULONGEST c;
a744cf53 7256
1f10ba14
PA
7257 p = unpack_varlen_hex (++p1, &c);
7258 event->core = c;
cea39f65 7259 }
26d56a93 7260 else if (strprefix (p, p1, "fork"))
de0d863e
DB
7261 {
7262 event->ws.value.related_pid = read_ptid (++p1, &p);
7263 event->ws.kind = TARGET_WAITKIND_FORKED;
7264 }
26d56a93 7265 else if (strprefix (p, p1, "vfork"))
c269dbdb
DB
7266 {
7267 event->ws.value.related_pid = read_ptid (++p1, &p);
7268 event->ws.kind = TARGET_WAITKIND_VFORKED;
7269 }
26d56a93 7270 else if (strprefix (p, p1, "vforkdone"))
c269dbdb
DB
7271 {
7272 event->ws.kind = TARGET_WAITKIND_VFORK_DONE;
8424cc97 7273 p = strchrnul (p1 + 1, ';');
c269dbdb 7274 }
6ab24463 7275 else if (strprefix (p, p1, "exec"))
94585166
DB
7276 {
7277 ULONGEST ignored;
94585166
DB
7278 int pathlen;
7279
7280 /* Determine the length of the execd pathname. */
7281 p = unpack_varlen_hex (++p1, &ignored);
7282 pathlen = (p - p1) / 2;
7283
7284 /* Save the pathname for event reporting and for
7285 the next run command. */
c6321f19
TT
7286 gdb::unique_xmalloc_ptr<char[]> pathname
7287 ((char *) xmalloc (pathlen + 1));
7288 hex2bin (p1, (gdb_byte *) pathname.get (), pathlen);
94585166
DB
7289 pathname[pathlen] = '\0';
7290
7291 /* This is freed during event handling. */
c6321f19 7292 event->ws.value.execd_pathname = pathname.release ();
94585166
DB
7293 event->ws.kind = TARGET_WAITKIND_EXECD;
7294
7295 /* Skip the registers included in this packet, since
7296 they may be for an architecture different from the
7297 one used by the original program. */
7298 skipregs = 1;
7299 }
65706a29
PA
7300 else if (strprefix (p, p1, "create"))
7301 {
7302 event->ws.kind = TARGET_WAITKIND_THREAD_CREATED;
8424cc97 7303 p = strchrnul (p1 + 1, ';');
65706a29 7304 }
cea39f65
MS
7305 else
7306 {
1f10ba14 7307 ULONGEST pnum;
256642e8 7308 const char *p_temp;
1f10ba14 7309
94585166
DB
7310 if (skipregs)
7311 {
8424cc97 7312 p = strchrnul (p1 + 1, ';');
94585166
DB
7313 p++;
7314 continue;
7315 }
7316
1f10ba14
PA
7317 /* Maybe a real ``P'' register number. */
7318 p_temp = unpack_varlen_hex (p, &pnum);
7319 /* If the first invalid character is the colon, we got a
7320 register number. Otherwise, it's an unknown stop
7321 reason. */
7322 if (p_temp == p1)
7323 {
5cd63fda
PA
7324 /* If we haven't parsed the event's thread yet, find
7325 it now, in order to find the architecture of the
7326 reported expedited registers. */
7327 if (event->ptid == null_ptid)
7328 {
7329 const char *thr = strstr (p1 + 1, ";thread:");
7330 if (thr != NULL)
7331 event->ptid = read_ptid (thr + strlen (";thread:"),
7332 NULL);
7333 else
3cada740
PA
7334 {
7335 /* Either the current thread hasn't changed,
7336 or the inferior is not multi-threaded.
7337 The event must be for the thread we last
7338 set as (or learned as being) current. */
7339 event->ptid = event->rs->general_thread;
7340 }
5cd63fda
PA
7341 }
7342
7343 if (rsa == NULL)
7344 {
7345 inferior *inf = (event->ptid == null_ptid
7346 ? NULL
7347 : find_inferior_ptid (event->ptid));
7348 /* If this is the first time we learn anything
7349 about this process, skip the registers
7350 included in this packet, since we don't yet
7351 know which architecture to use to parse them.
7352 We'll determine the architecture later when
7353 we process the stop reply and retrieve the
7354 target description, via
7355 remote_notice_new_inferior ->
7356 post_create_inferior. */
7357 if (inf == NULL)
7358 {
7359 p = strchrnul (p1 + 1, ';');
7360 p++;
7361 continue;
7362 }
7363
7364 event->arch = inf->gdbarch;
9d6eea31 7365 rsa = event->rs->get_remote_arch_state (event->arch);
5cd63fda
PA
7366 }
7367
7368 packet_reg *reg
7369 = packet_reg_from_pnum (event->arch, rsa, pnum);
1f10ba14 7370 cached_reg_t cached_reg;
43ff13b4 7371
1f10ba14
PA
7372 if (reg == NULL)
7373 error (_("Remote sent bad register number %s: %s\n\
8a3fe4f8 7374Packet: '%s'\n"),
1f10ba14 7375 hex_string (pnum), p, buf);
c8e38a49 7376
1f10ba14 7377 cached_reg.num = reg->regnum;
d1dff226 7378 cached_reg.data = (gdb_byte *)
5cd63fda 7379 xmalloc (register_size (event->arch, reg->regnum));
4100683b 7380
1f10ba14
PA
7381 p = p1 + 1;
7382 fieldsize = hex2bin (p, cached_reg.data,
5cd63fda 7383 register_size (event->arch, reg->regnum));
1f10ba14 7384 p += 2 * fieldsize;
5cd63fda 7385 if (fieldsize < register_size (event->arch, reg->regnum))
1f10ba14 7386 warning (_("Remote reply is too short: %s"), buf);
74531fed 7387
32603266 7388 event->regcache.push_back (cached_reg);
1f10ba14
PA
7389 }
7390 else
7391 {
7392 /* Not a number. Silently skip unknown optional
7393 info. */
8424cc97 7394 p = strchrnul (p1 + 1, ';');
1f10ba14 7395 }
cea39f65 7396 }
c8e38a49 7397
cea39f65
MS
7398 if (*p != ';')
7399 error (_("Remote register badly formatted: %s\nhere: %s"),
7400 buf, p);
7401 ++p;
7402 }
5b5596ff
PA
7403
7404 if (event->ws.kind != TARGET_WAITKIND_IGNORE)
7405 break;
7406
c8e38a49
PA
7407 /* fall through */
7408 case 'S': /* Old style status, just signal only. */
3a09da41
PA
7409 {
7410 int sig;
7411
7412 event->ws.kind = TARGET_WAITKIND_STOPPED;
7413 sig = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
7414 if (GDB_SIGNAL_FIRST <= sig && sig < GDB_SIGNAL_LAST)
7415 event->ws.value.sig = (enum gdb_signal) sig;
7416 else
7417 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
7418 }
c8e38a49 7419 break;
65706a29
PA
7420 case 'w': /* Thread exited. */
7421 {
65706a29
PA
7422 ULONGEST value;
7423
7424 event->ws.kind = TARGET_WAITKIND_THREAD_EXITED;
7425 p = unpack_varlen_hex (&buf[1], &value);
7426 event->ws.value.integer = value;
7427 if (*p != ';')
7428 error (_("stop reply packet badly formatted: %s"), buf);
974eac9d 7429 event->ptid = read_ptid (++p, NULL);
65706a29
PA
7430 break;
7431 }
c8e38a49
PA
7432 case 'W': /* Target exited. */
7433 case 'X':
7434 {
c8e38a49
PA
7435 int pid;
7436 ULONGEST value;
82f73884 7437
c8e38a49
PA
7438 /* GDB used to accept only 2 hex chars here. Stubs should
7439 only send more if they detect GDB supports multi-process
7440 support. */
7441 p = unpack_varlen_hex (&buf[1], &value);
82f73884 7442
c8e38a49
PA
7443 if (buf[0] == 'W')
7444 {
7445 /* The remote process exited. */
74531fed
PA
7446 event->ws.kind = TARGET_WAITKIND_EXITED;
7447 event->ws.value.integer = value;
c8e38a49
PA
7448 }
7449 else
7450 {
7451 /* The remote process exited with a signal. */
74531fed 7452 event->ws.kind = TARGET_WAITKIND_SIGNALLED;
3a09da41
PA
7453 if (GDB_SIGNAL_FIRST <= value && value < GDB_SIGNAL_LAST)
7454 event->ws.value.sig = (enum gdb_signal) value;
7455 else
7456 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
c8e38a49 7457 }
82f73884 7458
c8e38a49 7459 /* If no process is specified, assume inferior_ptid. */
e99b03dc 7460 pid = inferior_ptid.pid ();
c8e38a49
PA
7461 if (*p == '\0')
7462 ;
7463 else if (*p == ';')
7464 {
7465 p++;
7466
0b24eb2d 7467 if (*p == '\0')
82f73884 7468 ;
61012eef 7469 else if (startswith (p, "process:"))
82f73884 7470 {
c8e38a49 7471 ULONGEST upid;
a744cf53 7472
c8e38a49
PA
7473 p += sizeof ("process:") - 1;
7474 unpack_varlen_hex (p, &upid);
7475 pid = upid;
82f73884
PA
7476 }
7477 else
7478 error (_("unknown stop reply packet: %s"), buf);
43ff13b4 7479 }
c8e38a49
PA
7480 else
7481 error (_("unknown stop reply packet: %s"), buf);
f2907e49 7482 event->ptid = ptid_t (pid);
74531fed
PA
7483 }
7484 break;
f2faf941
PA
7485 case 'N':
7486 event->ws.kind = TARGET_WAITKIND_NO_RESUMED;
7487 event->ptid = minus_one_ptid;
7488 break;
74531fed
PA
7489 }
7490
d7e15655 7491 if (target_is_non_stop_p () && event->ptid == null_ptid)
74531fed
PA
7492 error (_("No process or thread specified in stop reply: %s"), buf);
7493}
7494
722247f1
YQ
7495/* When the stub wants to tell GDB about a new notification reply, it
7496 sends a notification (%Stop, for example). Those can come it at
7497 any time, hence, we have to make sure that any pending
7498 putpkt/getpkt sequence we're making is finished, before querying
7499 the stub for more events with the corresponding ack command
7500 (vStopped, for example). E.g., if we started a vStopped sequence
7501 immediately upon receiving the notification, something like this
7502 could happen:
74531fed
PA
7503
7504 1.1) --> Hg 1
7505 1.2) <-- OK
7506 1.3) --> g
7507 1.4) <-- %Stop
7508 1.5) --> vStopped
7509 1.6) <-- (registers reply to step #1.3)
7510
7511 Obviously, the reply in step #1.6 would be unexpected to a vStopped
7512 query.
7513
796cb314 7514 To solve this, whenever we parse a %Stop notification successfully,
74531fed
PA
7515 we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
7516 doing whatever we were doing:
7517
7518 2.1) --> Hg 1
7519 2.2) <-- OK
7520 2.3) --> g
7521 2.4) <-- %Stop
7522 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
7523 2.5) <-- (registers reply to step #2.3)
7524
85102364 7525 Eventually after step #2.5, we return to the event loop, which
74531fed
PA
7526 notices there's an event on the
7527 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
7528 associated callback --- the function below. At this point, we're
7529 always safe to start a vStopped sequence. :
7530
7531 2.6) --> vStopped
7532 2.7) <-- T05 thread:2
7533 2.8) --> vStopped
7534 2.9) --> OK
7535*/
7536
722247f1 7537void
6b8edb51 7538remote_target::remote_notif_get_pending_events (notif_client *nc)
74531fed
PA
7539{
7540 struct remote_state *rs = get_remote_state ();
74531fed 7541
f48ff2a7 7542 if (rs->notif_state->pending_event[nc->id] != NULL)
74531fed 7543 {
722247f1
YQ
7544 if (notif_debug)
7545 fprintf_unfiltered (gdb_stdlog,
7546 "notif: process: '%s' ack pending event\n",
7547 nc->name);
74531fed 7548
722247f1 7549 /* acknowledge */
8d64371b
TT
7550 nc->ack (this, nc, rs->buf.data (),
7551 rs->notif_state->pending_event[nc->id]);
f48ff2a7 7552 rs->notif_state->pending_event[nc->id] = NULL;
74531fed
PA
7553
7554 while (1)
7555 {
8d64371b
TT
7556 getpkt (&rs->buf, 0);
7557 if (strcmp (rs->buf.data (), "OK") == 0)
74531fed
PA
7558 break;
7559 else
8d64371b 7560 remote_notif_ack (this, nc, rs->buf.data ());
74531fed
PA
7561 }
7562 }
722247f1
YQ
7563 else
7564 {
7565 if (notif_debug)
7566 fprintf_unfiltered (gdb_stdlog,
7567 "notif: process: '%s' no pending reply\n",
7568 nc->name);
7569 }
74531fed
PA
7570}
7571
6b8edb51
PA
7572/* Wrapper around remote_target::remote_notif_get_pending_events to
7573 avoid having to export the whole remote_target class. */
7574
7575void
7576remote_notif_get_pending_events (remote_target *remote, notif_client *nc)
7577{
7578 remote->remote_notif_get_pending_events (nc);
7579}
7580
74531fed
PA
7581/* Called when it is decided that STOP_REPLY holds the info of the
7582 event that is to be returned to the core. This function always
7583 destroys STOP_REPLY. */
7584
6b8edb51
PA
7585ptid_t
7586remote_target::process_stop_reply (struct stop_reply *stop_reply,
7587 struct target_waitstatus *status)
74531fed
PA
7588{
7589 ptid_t ptid;
7590
7591 *status = stop_reply->ws;
7592 ptid = stop_reply->ptid;
7593
7594 /* If no thread/process was reported by the stub, assume the current
7595 inferior. */
d7e15655 7596 if (ptid == null_ptid)
74531fed
PA
7597 ptid = inferior_ptid;
7598
5f3563ea 7599 if (status->kind != TARGET_WAITKIND_EXITED
f2faf941
PA
7600 && status->kind != TARGET_WAITKIND_SIGNALLED
7601 && status->kind != TARGET_WAITKIND_NO_RESUMED)
74531fed 7602 {
5f3563ea 7603 /* Expedited registers. */
32603266 7604 if (!stop_reply->regcache.empty ())
5f3563ea 7605 {
217f1f79 7606 struct regcache *regcache
5cd63fda 7607 = get_thread_arch_regcache (ptid, stop_reply->arch);
5f3563ea 7608
32603266
TT
7609 for (cached_reg_t &reg : stop_reply->regcache)
7610 {
7611 regcache->raw_supply (reg.num, reg.data);
7612 xfree (reg.data);
7613 }
d1dff226 7614
32603266 7615 stop_reply->regcache.clear ();
5f3563ea 7616 }
74531fed 7617
1941c569 7618 remote_notice_new_inferior (ptid, 0);
7aabaf9d 7619 remote_thread_info *remote_thr = get_remote_thread_info (ptid);
799a2abe
PA
7620 remote_thr->core = stop_reply->core;
7621 remote_thr->stop_reason = stop_reply->stop_reason;
7622 remote_thr->watch_data_address = stop_reply->watch_data_address;
85ad3aaf 7623 remote_thr->vcont_resumed = 0;
74531fed
PA
7624 }
7625
32603266 7626 delete stop_reply;
74531fed
PA
7627 return ptid;
7628}
7629
7630/* The non-stop mode version of target_wait. */
7631
6b8edb51
PA
7632ptid_t
7633remote_target::wait_ns (ptid_t ptid, struct target_waitstatus *status, int options)
74531fed
PA
7634{
7635 struct remote_state *rs = get_remote_state ();
74531fed
PA
7636 struct stop_reply *stop_reply;
7637 int ret;
fee9eda9 7638 int is_notif = 0;
74531fed
PA
7639
7640 /* If in non-stop mode, get out of getpkt even if a
7641 notification is received. */
7642
8d64371b 7643 ret = getpkt_or_notif_sane (&rs->buf, 0 /* forever */, &is_notif);
74531fed
PA
7644 while (1)
7645 {
fee9eda9 7646 if (ret != -1 && !is_notif)
74531fed
PA
7647 switch (rs->buf[0])
7648 {
7649 case 'E': /* Error of some sort. */
7650 /* We're out of sync with the target now. Did it continue
7651 or not? We can't tell which thread it was in non-stop,
7652 so just ignore this. */
8d64371b 7653 warning (_("Remote failure reply: %s"), rs->buf.data ());
74531fed
PA
7654 break;
7655 case 'O': /* Console output. */
8d64371b 7656 remote_console_output (&rs->buf[1]);
74531fed
PA
7657 break;
7658 default:
8d64371b 7659 warning (_("Invalid remote reply: %s"), rs->buf.data ());
74531fed
PA
7660 break;
7661 }
7662
7663 /* Acknowledge a pending stop reply that may have arrived in the
7664 mean time. */
f48ff2a7 7665 if (rs->notif_state->pending_event[notif_client_stop.id] != NULL)
722247f1 7666 remote_notif_get_pending_events (&notif_client_stop);
74531fed
PA
7667
7668 /* If indeed we noticed a stop reply, we're done. */
7669 stop_reply = queued_stop_reply (ptid);
7670 if (stop_reply != NULL)
7671 return process_stop_reply (stop_reply, status);
7672
47608cb1 7673 /* Still no event. If we're just polling for an event, then
74531fed 7674 return to the event loop. */
47608cb1 7675 if (options & TARGET_WNOHANG)
74531fed
PA
7676 {
7677 status->kind = TARGET_WAITKIND_IGNORE;
7678 return minus_one_ptid;
7679 }
7680
47608cb1 7681 /* Otherwise do a blocking wait. */
8d64371b 7682 ret = getpkt_or_notif_sane (&rs->buf, 1 /* forever */, &is_notif);
74531fed
PA
7683 }
7684}
7685
7686/* Wait until the remote machine stops, then return, storing status in
7687 STATUS just as `wait' would. */
7688
6b8edb51
PA
7689ptid_t
7690remote_target::wait_as (ptid_t ptid, target_waitstatus *status, int options)
74531fed
PA
7691{
7692 struct remote_state *rs = get_remote_state ();
74531fed 7693 ptid_t event_ptid = null_ptid;
cea39f65 7694 char *buf;
74531fed
PA
7695 struct stop_reply *stop_reply;
7696
47608cb1
PA
7697 again:
7698
74531fed
PA
7699 status->kind = TARGET_WAITKIND_IGNORE;
7700 status->value.integer = 0;
7701
7702 stop_reply = queued_stop_reply (ptid);
7703 if (stop_reply != NULL)
7704 return process_stop_reply (stop_reply, status);
7705
7706 if (rs->cached_wait_status)
7707 /* Use the cached wait status, but only once. */
7708 rs->cached_wait_status = 0;
7709 else
7710 {
7711 int ret;
722247f1 7712 int is_notif;
567420d1 7713 int forever = ((options & TARGET_WNOHANG) == 0
6b8edb51 7714 && rs->wait_forever_enabled_p);
567420d1
PA
7715
7716 if (!rs->waiting_for_stop_reply)
7717 {
7718 status->kind = TARGET_WAITKIND_NO_RESUMED;
7719 return minus_one_ptid;
7720 }
74531fed 7721
74531fed
PA
7722 /* FIXME: cagney/1999-09-27: If we're in async mode we should
7723 _never_ wait for ever -> test on target_is_async_p().
7724 However, before we do that we need to ensure that the caller
7725 knows how to take the target into/out of async mode. */
8d64371b 7726 ret = getpkt_or_notif_sane (&rs->buf, forever, &is_notif);
722247f1
YQ
7727
7728 /* GDB gets a notification. Return to core as this event is
7729 not interesting. */
7730 if (ret != -1 && is_notif)
7731 return minus_one_ptid;
567420d1
PA
7732
7733 if (ret == -1 && (options & TARGET_WNOHANG) != 0)
7734 return minus_one_ptid;
74531fed
PA
7735 }
7736
8d64371b 7737 buf = rs->buf.data ();
74531fed 7738
3a29589a
DJ
7739 /* Assume that the target has acknowledged Ctrl-C unless we receive
7740 an 'F' or 'O' packet. */
7741 if (buf[0] != 'F' && buf[0] != 'O')
7742 rs->ctrlc_pending_p = 0;
7743
74531fed
PA
7744 switch (buf[0])
7745 {
7746 case 'E': /* Error of some sort. */
7747 /* We're out of sync with the target now. Did it continue or
7748 not? Not is more likely, so report a stop. */
29090fb6
LM
7749 rs->waiting_for_stop_reply = 0;
7750
74531fed
PA
7751 warning (_("Remote failure reply: %s"), buf);
7752 status->kind = TARGET_WAITKIND_STOPPED;
a493e3e2 7753 status->value.sig = GDB_SIGNAL_0;
74531fed
PA
7754 break;
7755 case 'F': /* File-I/O request. */
e42e5352
YQ
7756 /* GDB may access the inferior memory while handling the File-I/O
7757 request, but we don't want GDB accessing memory while waiting
7758 for a stop reply. See the comments in putpkt_binary. Set
7759 waiting_for_stop_reply to 0 temporarily. */
7760 rs->waiting_for_stop_reply = 0;
6b8edb51 7761 remote_fileio_request (this, buf, rs->ctrlc_pending_p);
3a29589a 7762 rs->ctrlc_pending_p = 0;
e42e5352
YQ
7763 /* GDB handled the File-I/O request, and the target is running
7764 again. Keep waiting for events. */
7765 rs->waiting_for_stop_reply = 1;
74531fed 7766 break;
f2faf941 7767 case 'N': case 'T': case 'S': case 'X': case 'W':
74531fed 7768 {
29090fb6
LM
7769 /* There is a stop reply to handle. */
7770 rs->waiting_for_stop_reply = 0;
7771
7772 stop_reply
6b8edb51
PA
7773 = (struct stop_reply *) remote_notif_parse (this,
7774 &notif_client_stop,
8d64371b 7775 rs->buf.data ());
74531fed 7776
74531fed 7777 event_ptid = process_stop_reply (stop_reply, status);
c8e38a49
PA
7778 break;
7779 }
7780 case 'O': /* Console output. */
7781 remote_console_output (buf + 1);
c8e38a49
PA
7782 break;
7783 case '\0':
b73be471 7784 if (rs->last_sent_signal != GDB_SIGNAL_0)
c8e38a49
PA
7785 {
7786 /* Zero length reply means that we tried 'S' or 'C' and the
7787 remote system doesn't support it. */
223ffa71 7788 target_terminal::ours_for_output ();
c8e38a49
PA
7789 printf_filtered
7790 ("Can't send signals to this remote system. %s not sent.\n",
b73be471
TT
7791 gdb_signal_to_name (rs->last_sent_signal));
7792 rs->last_sent_signal = GDB_SIGNAL_0;
223ffa71 7793 target_terminal::inferior ();
c8e38a49 7794
f5c4fcd9
TT
7795 strcpy (buf, rs->last_sent_step ? "s" : "c");
7796 putpkt (buf);
c8e38a49 7797 break;
43ff13b4 7798 }
86a73007 7799 /* fallthrough */
c8e38a49
PA
7800 default:
7801 warning (_("Invalid remote reply: %s"), buf);
c8e38a49 7802 break;
43ff13b4 7803 }
c8e38a49 7804
f2faf941
PA
7805 if (status->kind == TARGET_WAITKIND_NO_RESUMED)
7806 return minus_one_ptid;
7807 else if (status->kind == TARGET_WAITKIND_IGNORE)
47608cb1
PA
7808 {
7809 /* Nothing interesting happened. If we're doing a non-blocking
7810 poll, we're done. Otherwise, go back to waiting. */
7811 if (options & TARGET_WNOHANG)
7812 return minus_one_ptid;
7813 else
7814 goto again;
7815 }
74531fed
PA
7816 else if (status->kind != TARGET_WAITKIND_EXITED
7817 && status->kind != TARGET_WAITKIND_SIGNALLED)
82f73884 7818 {
d7e15655 7819 if (event_ptid != null_ptid)
47f8a51d 7820 record_currthread (rs, event_ptid);
82f73884
PA
7821 else
7822 event_ptid = inferior_ptid;
43ff13b4 7823 }
74531fed
PA
7824 else
7825 /* A process exit. Invalidate our notion of current thread. */
47f8a51d 7826 record_currthread (rs, minus_one_ptid);
79d7f229 7827
82f73884 7828 return event_ptid;
43ff13b4
JM
7829}
7830
74531fed
PA
7831/* Wait until the remote machine stops, then return, storing status in
7832 STATUS just as `wait' would. */
7833
f6ac5f3d
PA
7834ptid_t
7835remote_target::wait (ptid_t ptid, struct target_waitstatus *status, int options)
c8e38a49
PA
7836{
7837 ptid_t event_ptid;
7838
6efcd9a8 7839 if (target_is_non_stop_p ())
6b8edb51 7840 event_ptid = wait_ns (ptid, status, options);
74531fed 7841 else
6b8edb51 7842 event_ptid = wait_as (ptid, status, options);
c8e38a49 7843
d9d41e78 7844 if (target_is_async_p ())
c8e38a49 7845 {
6b8edb51
PA
7846 remote_state *rs = get_remote_state ();
7847
74531fed
PA
7848 /* If there are are events left in the queue tell the event loop
7849 to return here. */
953edf2b 7850 if (!rs->stop_reply_queue.empty ())
6b8edb51 7851 mark_async_event_handler (rs->remote_async_inferior_event_token);
c8e38a49 7852 }
c8e38a49
PA
7853
7854 return event_ptid;
7855}
7856
74ca34ce 7857/* Fetch a single register using a 'p' packet. */
c906108c 7858
6b8edb51
PA
7859int
7860remote_target::fetch_register_using_p (struct regcache *regcache,
7861 packet_reg *reg)
b96ec7ac 7862{
ac7936df 7863 struct gdbarch *gdbarch = regcache->arch ();
b96ec7ac 7864 struct remote_state *rs = get_remote_state ();
2e9f7625 7865 char *buf, *p;
9890e433 7866 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
b96ec7ac
AC
7867 int i;
7868
4082afcc 7869 if (packet_support (PACKET_p) == PACKET_DISABLE)
74ca34ce
DJ
7870 return 0;
7871
7872 if (reg->pnum == -1)
7873 return 0;
7874
8d64371b 7875 p = rs->buf.data ();
fcad0fa4 7876 *p++ = 'p';
74ca34ce 7877 p += hexnumstr (p, reg->pnum);
fcad0fa4 7878 *p++ = '\0';
1f4437a4 7879 putpkt (rs->buf);
8d64371b 7880 getpkt (&rs->buf, 0);
3f9a994c 7881
8d64371b 7882 buf = rs->buf.data ();
2e9f7625 7883
8d64371b 7884 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_p]))
74ca34ce
DJ
7885 {
7886 case PACKET_OK:
7887 break;
7888 case PACKET_UNKNOWN:
7889 return 0;
7890 case PACKET_ERROR:
27a9c0bf 7891 error (_("Could not fetch register \"%s\"; remote failure reply '%s'"),
ac7936df 7892 gdbarch_register_name (regcache->arch (),
27a9c0bf
MS
7893 reg->regnum),
7894 buf);
74ca34ce 7895 }
3f9a994c
JB
7896
7897 /* If this register is unfetchable, tell the regcache. */
7898 if (buf[0] == 'x')
8480adf2 7899 {
73e1c03f 7900 regcache->raw_supply (reg->regnum, NULL);
8480adf2 7901 return 1;
b96ec7ac 7902 }
b96ec7ac 7903
3f9a994c
JB
7904 /* Otherwise, parse and supply the value. */
7905 p = buf;
7906 i = 0;
7907 while (p[0] != 0)
7908 {
7909 if (p[1] == 0)
74ca34ce 7910 error (_("fetch_register_using_p: early buf termination"));
3f9a994c
JB
7911
7912 regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
7913 p += 2;
7914 }
73e1c03f 7915 regcache->raw_supply (reg->regnum, regp);
3f9a994c 7916 return 1;
b96ec7ac
AC
7917}
7918
74ca34ce
DJ
7919/* Fetch the registers included in the target's 'g' packet. */
7920
6b8edb51
PA
7921int
7922remote_target::send_g_packet ()
c906108c 7923{
d01949b6 7924 struct remote_state *rs = get_remote_state ();
cea39f65 7925 int buf_len;
c906108c 7926
8d64371b 7927 xsnprintf (rs->buf.data (), get_remote_packet_size (), "g");
b75abf5b 7928 putpkt (rs->buf);
8d64371b 7929 getpkt (&rs->buf, 0);
b75abf5b
AK
7930 if (packet_check_result (rs->buf) == PACKET_ERROR)
7931 error (_("Could not read registers; remote failure reply '%s'"),
8d64371b 7932 rs->buf.data ());
c906108c 7933
29709017
DJ
7934 /* We can get out of synch in various cases. If the first character
7935 in the buffer is not a hex character, assume that has happened
7936 and try to fetch another packet to read. */
7937 while ((rs->buf[0] < '0' || rs->buf[0] > '9')
7938 && (rs->buf[0] < 'A' || rs->buf[0] > 'F')
7939 && (rs->buf[0] < 'a' || rs->buf[0] > 'f')
7940 && rs->buf[0] != 'x') /* New: unavailable register value. */
7941 {
7942 if (remote_debug)
7943 fprintf_unfiltered (gdb_stdlog,
7944 "Bad register packet; fetching a new packet\n");
8d64371b 7945 getpkt (&rs->buf, 0);
29709017
DJ
7946 }
7947
8d64371b 7948 buf_len = strlen (rs->buf.data ());
74ca34ce
DJ
7949
7950 /* Sanity check the received packet. */
7951 if (buf_len % 2 != 0)
8d64371b 7952 error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf.data ());
29709017
DJ
7953
7954 return buf_len / 2;
7955}
7956
6b8edb51
PA
7957void
7958remote_target::process_g_packet (struct regcache *regcache)
29709017 7959{
ac7936df 7960 struct gdbarch *gdbarch = regcache->arch ();
29709017 7961 struct remote_state *rs = get_remote_state ();
9d6eea31 7962 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
29709017
DJ
7963 int i, buf_len;
7964 char *p;
7965 char *regs;
7966
8d64371b 7967 buf_len = strlen (rs->buf.data ());
29709017
DJ
7968
7969 /* Further sanity checks, with knowledge of the architecture. */
74ca34ce 7970 if (buf_len > 2 * rsa->sizeof_g_packet)
fc809827 7971 error (_("Remote 'g' packet reply is too long (expected %ld bytes, got %d "
8d64371b
TT
7972 "bytes): %s"),
7973 rsa->sizeof_g_packet, buf_len / 2,
7974 rs->buf.data ());
74ca34ce
DJ
7975
7976 /* Save the size of the packet sent to us by the target. It is used
7977 as a heuristic when determining the max size of packets that the
7978 target can safely receive. */
7979 if (rsa->actual_register_packet_size == 0)
7980 rsa->actual_register_packet_size = buf_len;
7981
7982 /* If this is smaller than we guessed the 'g' packet would be,
7983 update our records. A 'g' reply that doesn't include a register's
7984 value implies either that the register is not available, or that
7985 the 'p' packet must be used. */
7986 if (buf_len < 2 * rsa->sizeof_g_packet)
b323314b 7987 {
9dc193c3 7988 long sizeof_g_packet = buf_len / 2;
74ca34ce 7989
4a22f64d 7990 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
b96ec7ac 7991 {
9dc193c3
LF
7992 long offset = rsa->regs[i].offset;
7993 long reg_size = register_size (gdbarch, i);
7994
74ca34ce
DJ
7995 if (rsa->regs[i].pnum == -1)
7996 continue;
7997
9dc193c3 7998 if (offset >= sizeof_g_packet)
74ca34ce 7999 rsa->regs[i].in_g_packet = 0;
9dc193c3
LF
8000 else if (offset + reg_size > sizeof_g_packet)
8001 error (_("Truncated register %d in remote 'g' packet"), i);
b96ec7ac 8002 else
74ca34ce 8003 rsa->regs[i].in_g_packet = 1;
b96ec7ac 8004 }
9dc193c3
LF
8005
8006 /* Looks valid enough, we can assume this is the correct length
8007 for a 'g' packet. It's important not to adjust
8008 rsa->sizeof_g_packet if we have truncated registers otherwise
8009 this "if" won't be run the next time the method is called
8010 with a packet of the same size and one of the internal errors
8011 below will trigger instead. */
8012 rsa->sizeof_g_packet = sizeof_g_packet;
74ca34ce 8013 }
b323314b 8014
224c3ddb 8015 regs = (char *) alloca (rsa->sizeof_g_packet);
c906108c
SS
8016
8017 /* Unimplemented registers read as all bits zero. */
ea9c271d 8018 memset (regs, 0, rsa->sizeof_g_packet);
c906108c 8019
c906108c
SS
8020 /* Reply describes registers byte by byte, each byte encoded as two
8021 hex characters. Suck them all up, then supply them to the
8022 register cacheing/storage mechanism. */
8023
8d64371b 8024 p = rs->buf.data ();
ea9c271d 8025 for (i = 0; i < rsa->sizeof_g_packet; i++)
c906108c 8026 {
74ca34ce
DJ
8027 if (p[0] == 0 || p[1] == 0)
8028 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
8029 internal_error (__FILE__, __LINE__,
9b20d036 8030 _("unexpected end of 'g' packet reply"));
74ca34ce 8031
c906108c 8032 if (p[0] == 'x' && p[1] == 'x')
c5aa993b 8033 regs[i] = 0; /* 'x' */
c906108c
SS
8034 else
8035 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
8036 p += 2;
8037 }
8038
a744cf53
MS
8039 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
8040 {
8041 struct packet_reg *r = &rsa->regs[i];
9dc193c3 8042 long reg_size = register_size (gdbarch, i);
a744cf53
MS
8043
8044 if (r->in_g_packet)
8045 {
8d64371b 8046 if ((r->offset + reg_size) * 2 > strlen (rs->buf.data ()))
a744cf53
MS
8047 /* This shouldn't happen - we adjusted in_g_packet above. */
8048 internal_error (__FILE__, __LINE__,
9b20d036 8049 _("unexpected end of 'g' packet reply"));
a744cf53
MS
8050 else if (rs->buf[r->offset * 2] == 'x')
8051 {
8d64371b 8052 gdb_assert (r->offset * 2 < strlen (rs->buf.data ()));
a744cf53
MS
8053 /* The register isn't available, mark it as such (at
8054 the same time setting the value to zero). */
73e1c03f 8055 regcache->raw_supply (r->regnum, NULL);
a744cf53
MS
8056 }
8057 else
73e1c03f 8058 regcache->raw_supply (r->regnum, regs + r->offset);
a744cf53
MS
8059 }
8060 }
c906108c
SS
8061}
8062
6b8edb51
PA
8063void
8064remote_target::fetch_registers_using_g (struct regcache *regcache)
29709017
DJ
8065{
8066 send_g_packet ();
56be3814 8067 process_g_packet (regcache);
29709017
DJ
8068}
8069
e6e4e701
PA
8070/* Make the remote selected traceframe match GDB's selected
8071 traceframe. */
8072
6b8edb51
PA
8073void
8074remote_target::set_remote_traceframe ()
e6e4e701
PA
8075{
8076 int newnum;
262e1174 8077 struct remote_state *rs = get_remote_state ();
e6e4e701 8078
262e1174 8079 if (rs->remote_traceframe_number == get_traceframe_number ())
e6e4e701
PA
8080 return;
8081
8082 /* Avoid recursion, remote_trace_find calls us again. */
262e1174 8083 rs->remote_traceframe_number = get_traceframe_number ();
e6e4e701
PA
8084
8085 newnum = target_trace_find (tfind_number,
8086 get_traceframe_number (), 0, 0, NULL);
8087
8088 /* Should not happen. If it does, all bets are off. */
8089 if (newnum != get_traceframe_number ())
8090 warning (_("could not set remote traceframe"));
8091}
8092
f6ac5f3d
PA
8093void
8094remote_target::fetch_registers (struct regcache *regcache, int regnum)
74ca34ce 8095{
ac7936df 8096 struct gdbarch *gdbarch = regcache->arch ();
9d6eea31
PA
8097 struct remote_state *rs = get_remote_state ();
8098 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
74ca34ce
DJ
8099 int i;
8100
e6e4e701 8101 set_remote_traceframe ();
222312d3 8102 set_general_thread (regcache->ptid ());
74ca34ce
DJ
8103
8104 if (regnum >= 0)
8105 {
5cd63fda 8106 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
a744cf53 8107
74ca34ce
DJ
8108 gdb_assert (reg != NULL);
8109
8110 /* If this register might be in the 'g' packet, try that first -
8111 we are likely to read more than one register. If this is the
8112 first 'g' packet, we might be overly optimistic about its
8113 contents, so fall back to 'p'. */
8114 if (reg->in_g_packet)
8115 {
56be3814 8116 fetch_registers_using_g (regcache);
74ca34ce
DJ
8117 if (reg->in_g_packet)
8118 return;
8119 }
8120
56be3814 8121 if (fetch_register_using_p (regcache, reg))
74ca34ce
DJ
8122 return;
8123
8124 /* This register is not available. */
73e1c03f 8125 regcache->raw_supply (reg->regnum, NULL);
74ca34ce
DJ
8126
8127 return;
8128 }
8129
56be3814 8130 fetch_registers_using_g (regcache);
74ca34ce 8131
5cd63fda 8132 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
74ca34ce 8133 if (!rsa->regs[i].in_g_packet)
56be3814 8134 if (!fetch_register_using_p (regcache, &rsa->regs[i]))
74ca34ce
DJ
8135 {
8136 /* This register is not available. */
73e1c03f 8137 regcache->raw_supply (i, NULL);
74ca34ce
DJ
8138 }
8139}
8140
c906108c
SS
8141/* Prepare to store registers. Since we may send them all (using a
8142 'G' request), we have to read out the ones we don't want to change
8143 first. */
8144
f6ac5f3d
PA
8145void
8146remote_target::prepare_to_store (struct regcache *regcache)
c906108c 8147{
9d6eea31
PA
8148 struct remote_state *rs = get_remote_state ();
8149 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
cf0e1e0d 8150 int i;
cf0e1e0d 8151
c906108c 8152 /* Make sure the entire registers array is valid. */
4082afcc 8153 switch (packet_support (PACKET_P))
5a2468f5
JM
8154 {
8155 case PACKET_DISABLE:
8156 case PACKET_SUPPORT_UNKNOWN:
cf0e1e0d 8157 /* Make sure all the necessary registers are cached. */
ac7936df 8158 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
ea9c271d 8159 if (rsa->regs[i].in_g_packet)
0b47d985 8160 regcache->raw_update (rsa->regs[i].regnum);
5a2468f5
JM
8161 break;
8162 case PACKET_ENABLE:
8163 break;
8164 }
8165}
8166
ad10f812 8167/* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
23860348 8168 packet was not recognized. */
5a2468f5 8169
6b8edb51
PA
8170int
8171remote_target::store_register_using_P (const struct regcache *regcache,
8172 packet_reg *reg)
5a2468f5 8173{
ac7936df 8174 struct gdbarch *gdbarch = regcache->arch ();
d01949b6 8175 struct remote_state *rs = get_remote_state ();
5a2468f5 8176 /* Try storing a single register. */
8d64371b 8177 char *buf = rs->buf.data ();
9890e433 8178 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
5a2468f5 8179 char *p;
5a2468f5 8180
4082afcc 8181 if (packet_support (PACKET_P) == PACKET_DISABLE)
74ca34ce
DJ
8182 return 0;
8183
8184 if (reg->pnum == -1)
8185 return 0;
8186
ea9c271d 8187 xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
5a2468f5 8188 p = buf + strlen (buf);
34a79281 8189 regcache->raw_collect (reg->regnum, regp);
4a22f64d 8190 bin2hex (regp, p, register_size (gdbarch, reg->regnum));
1f4437a4 8191 putpkt (rs->buf);
8d64371b 8192 getpkt (&rs->buf, 0);
5a2468f5 8193
74ca34ce
DJ
8194 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P]))
8195 {
8196 case PACKET_OK:
8197 return 1;
8198 case PACKET_ERROR:
27a9c0bf 8199 error (_("Could not write register \"%s\"; remote failure reply '%s'"),
8d64371b 8200 gdbarch_register_name (gdbarch, reg->regnum), rs->buf.data ());
74ca34ce
DJ
8201 case PACKET_UNKNOWN:
8202 return 0;
8203 default:
8204 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
8205 }
c906108c
SS
8206}
8207
23860348
MS
8208/* Store register REGNUM, or all registers if REGNUM == -1, from the
8209 contents of the register cache buffer. FIXME: ignores errors. */
c906108c 8210
6b8edb51
PA
8211void
8212remote_target::store_registers_using_G (const struct regcache *regcache)
c906108c 8213{
d01949b6 8214 struct remote_state *rs = get_remote_state ();
9d6eea31 8215 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
cfd77fa1 8216 gdb_byte *regs;
c906108c
SS
8217 char *p;
8218
193cb69f
AC
8219 /* Extract all the registers in the regcache copying them into a
8220 local buffer. */
8221 {
b323314b 8222 int i;
a744cf53 8223
224c3ddb 8224 regs = (gdb_byte *) alloca (rsa->sizeof_g_packet);
ea9c271d 8225 memset (regs, 0, rsa->sizeof_g_packet);
ac7936df 8226 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
193cb69f 8227 {
ea9c271d 8228 struct packet_reg *r = &rsa->regs[i];
a744cf53 8229
b323314b 8230 if (r->in_g_packet)
34a79281 8231 regcache->raw_collect (r->regnum, regs + r->offset);
193cb69f
AC
8232 }
8233 }
c906108c
SS
8234
8235 /* Command describes registers byte by byte,
8236 each byte encoded as two hex characters. */
8d64371b 8237 p = rs->buf.data ();
193cb69f 8238 *p++ = 'G';
74ca34ce 8239 bin2hex (regs, p, rsa->sizeof_g_packet);
1f4437a4 8240 putpkt (rs->buf);
8d64371b 8241 getpkt (&rs->buf, 0);
1f4437a4 8242 if (packet_check_result (rs->buf) == PACKET_ERROR)
27a9c0bf 8243 error (_("Could not write registers; remote failure reply '%s'"),
8d64371b 8244 rs->buf.data ());
c906108c 8245}
74ca34ce
DJ
8246
8247/* Store register REGNUM, or all registers if REGNUM == -1, from the contents
8248 of the register cache buffer. FIXME: ignores errors. */
8249
f6ac5f3d
PA
8250void
8251remote_target::store_registers (struct regcache *regcache, int regnum)
74ca34ce 8252{
5cd63fda 8253 struct gdbarch *gdbarch = regcache->arch ();
9d6eea31
PA
8254 struct remote_state *rs = get_remote_state ();
8255 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
74ca34ce
DJ
8256 int i;
8257
e6e4e701 8258 set_remote_traceframe ();
222312d3 8259 set_general_thread (regcache->ptid ());
74ca34ce
DJ
8260
8261 if (regnum >= 0)
8262 {
5cd63fda 8263 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
a744cf53 8264
74ca34ce
DJ
8265 gdb_assert (reg != NULL);
8266
8267 /* Always prefer to store registers using the 'P' packet if
8268 possible; we often change only a small number of registers.
8269 Sometimes we change a larger number; we'd need help from a
8270 higher layer to know to use 'G'. */
56be3814 8271 if (store_register_using_P (regcache, reg))
74ca34ce
DJ
8272 return;
8273
8274 /* For now, don't complain if we have no way to write the
8275 register. GDB loses track of unavailable registers too
8276 easily. Some day, this may be an error. We don't have
0df8b418 8277 any way to read the register, either... */
74ca34ce
DJ
8278 if (!reg->in_g_packet)
8279 return;
8280
56be3814 8281 store_registers_using_G (regcache);
74ca34ce
DJ
8282 return;
8283 }
8284
56be3814 8285 store_registers_using_G (regcache);
74ca34ce 8286
5cd63fda 8287 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
74ca34ce 8288 if (!rsa->regs[i].in_g_packet)
56be3814 8289 if (!store_register_using_P (regcache, &rsa->regs[i]))
74ca34ce
DJ
8290 /* See above for why we do not issue an error here. */
8291 continue;
8292}
c906108c
SS
8293\f
8294
8295/* Return the number of hex digits in num. */
8296
8297static int
fba45db2 8298hexnumlen (ULONGEST num)
c906108c
SS
8299{
8300 int i;
8301
8302 for (i = 0; num != 0; i++)
8303 num >>= 4;
8304
325fac50 8305 return std::max (i, 1);
c906108c
SS
8306}
8307
2df3850c 8308/* Set BUF to the minimum number of hex digits representing NUM. */
c906108c
SS
8309
8310static int
fba45db2 8311hexnumstr (char *buf, ULONGEST num)
c906108c 8312{
c906108c 8313 int len = hexnumlen (num);
a744cf53 8314
2df3850c
JM
8315 return hexnumnstr (buf, num, len);
8316}
8317
c906108c 8318
2df3850c 8319/* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
c906108c 8320
2df3850c 8321static int
fba45db2 8322hexnumnstr (char *buf, ULONGEST num, int width)
2df3850c
JM
8323{
8324 int i;
8325
8326 buf[width] = '\0';
8327
8328 for (i = width - 1; i >= 0; i--)
c906108c 8329 {
c5aa993b 8330 buf[i] = "0123456789abcdef"[(num & 0xf)];
c906108c
SS
8331 num >>= 4;
8332 }
8333
2df3850c 8334 return width;
c906108c
SS
8335}
8336
23860348 8337/* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
c906108c
SS
8338
8339static CORE_ADDR
fba45db2 8340remote_address_masked (CORE_ADDR addr)
c906108c 8341{
883b9c6c 8342 unsigned int address_size = remote_address_size;
a744cf53 8343
911c95a5
UW
8344 /* If "remoteaddresssize" was not set, default to target address size. */
8345 if (!address_size)
f5656ead 8346 address_size = gdbarch_addr_bit (target_gdbarch ());
911c95a5
UW
8347
8348 if (address_size > 0
8349 && address_size < (sizeof (ULONGEST) * 8))
c906108c
SS
8350 {
8351 /* Only create a mask when that mask can safely be constructed
23860348 8352 in a ULONGEST variable. */
c906108c 8353 ULONGEST mask = 1;
a744cf53 8354
911c95a5 8355 mask = (mask << address_size) - 1;
c906108c
SS
8356 addr &= mask;
8357 }
8358 return addr;
8359}
8360
8361/* Determine whether the remote target supports binary downloading.
8362 This is accomplished by sending a no-op memory write of zero length
8363 to the target at the specified address. It does not suffice to send
23860348
MS
8364 the whole packet, since many stubs strip the eighth bit and
8365 subsequently compute a wrong checksum, which causes real havoc with
8366 remote_write_bytes.
7a292a7a 8367
96baa820 8368 NOTE: This can still lose if the serial line is not eight-bit
0df8b418 8369 clean. In cases like this, the user should clear "remote
23860348 8370 X-packet". */
96baa820 8371
6b8edb51
PA
8372void
8373remote_target::check_binary_download (CORE_ADDR addr)
c906108c 8374{
d01949b6 8375 struct remote_state *rs = get_remote_state ();
24b06219 8376
4082afcc 8377 switch (packet_support (PACKET_X))
c906108c 8378 {
96baa820
JM
8379 case PACKET_DISABLE:
8380 break;
8381 case PACKET_ENABLE:
8382 break;
8383 case PACKET_SUPPORT_UNKNOWN:
8384 {
96baa820 8385 char *p;
802188a7 8386
8d64371b 8387 p = rs->buf.data ();
96baa820
JM
8388 *p++ = 'X';
8389 p += hexnumstr (p, (ULONGEST) addr);
8390 *p++ = ',';
8391 p += hexnumstr (p, (ULONGEST) 0);
8392 *p++ = ':';
8393 *p = '\0';
802188a7 8394
8d64371b
TT
8395 putpkt_binary (rs->buf.data (), (int) (p - rs->buf.data ()));
8396 getpkt (&rs->buf, 0);
c906108c 8397
2e9f7625 8398 if (rs->buf[0] == '\0')
96baa820
JM
8399 {
8400 if (remote_debug)
8401 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
8402 "binary downloading NOT "
8403 "supported by target\n");
444abaca 8404 remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
96baa820
JM
8405 }
8406 else
8407 {
8408 if (remote_debug)
8409 fprintf_unfiltered (gdb_stdlog,
64b9b334 8410 "binary downloading supported by target\n");
444abaca 8411 remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
96baa820
JM
8412 }
8413 break;
8414 }
c906108c
SS
8415 }
8416}
8417
124e13d9
SM
8418/* Helper function to resize the payload in order to try to get a good
8419 alignment. We try to write an amount of data such that the next write will
8420 start on an address aligned on REMOTE_ALIGN_WRITES. */
8421
8422static int
8423align_for_efficient_write (int todo, CORE_ADDR memaddr)
8424{
8425 return ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr;
8426}
8427
c906108c
SS
8428/* Write memory data directly to the remote machine.
8429 This does not inform the data cache; the data cache uses this.
a76d924d 8430 HEADER is the starting part of the packet.
c906108c
SS
8431 MEMADDR is the address in the remote memory space.
8432 MYADDR is the address of the buffer in our space.
124e13d9
SM
8433 LEN_UNITS is the number of addressable units to write.
8434 UNIT_SIZE is the length in bytes of an addressable unit.
a76d924d
DJ
8435 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
8436 should send data as binary ('X'), or hex-encoded ('M').
8437
8438 The function creates packet of the form
8439 <HEADER><ADDRESS>,<LENGTH>:<DATA>
8440
124e13d9 8441 where encoding of <DATA> is terminated by PACKET_FORMAT.
a76d924d
DJ
8442
8443 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
8444 are omitted.
8445
9b409511 8446 Return the transferred status, error or OK (an
124e13d9
SM
8447 'enum target_xfer_status' value). Save the number of addressable units
8448 transferred in *XFERED_LEN_UNITS. Only transfer a single packet.
8449
8450 On a platform with an addressable memory size of 2 bytes (UNIT_SIZE == 2), an
8451 exchange between gdb and the stub could look like (?? in place of the
8452 checksum):
8453
8454 -> $m1000,4#??
8455 <- aaaabbbbccccdddd
8456
8457 -> $M1000,3:eeeeffffeeee#??
8458 <- OK
8459
8460 -> $m1000,4#??
8461 <- eeeeffffeeeedddd */
c906108c 8462
6b8edb51
PA
8463target_xfer_status
8464remote_target::remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
8465 const gdb_byte *myaddr,
8466 ULONGEST len_units,
8467 int unit_size,
8468 ULONGEST *xfered_len_units,
8469 char packet_format, int use_length)
c906108c 8470{
6d820c5c 8471 struct remote_state *rs = get_remote_state ();
cfd77fa1 8472 char *p;
a76d924d
DJ
8473 char *plen = NULL;
8474 int plenlen = 0;
124e13d9
SM
8475 int todo_units;
8476 int units_written;
8477 int payload_capacity_bytes;
8478 int payload_length_bytes;
a76d924d
DJ
8479
8480 if (packet_format != 'X' && packet_format != 'M')
8481 internal_error (__FILE__, __LINE__,
9b20d036 8482 _("remote_write_bytes_aux: bad packet format"));
c906108c 8483
124e13d9 8484 if (len_units == 0)
9b409511 8485 return TARGET_XFER_EOF;
b2182ed2 8486
124e13d9 8487 payload_capacity_bytes = get_memory_write_packet_size ();
2bc416ba 8488
6d820c5c
DJ
8489 /* The packet buffer will be large enough for the payload;
8490 get_memory_packet_size ensures this. */
a76d924d 8491 rs->buf[0] = '\0';
c906108c 8492
a257b5bb 8493 /* Compute the size of the actual payload by subtracting out the
0df8b418
MS
8494 packet header and footer overhead: "$M<memaddr>,<len>:...#nn". */
8495
124e13d9 8496 payload_capacity_bytes -= strlen ("$,:#NN");
a76d924d 8497 if (!use_length)
0df8b418 8498 /* The comma won't be used. */
124e13d9
SM
8499 payload_capacity_bytes += 1;
8500 payload_capacity_bytes -= strlen (header);
8501 payload_capacity_bytes -= hexnumlen (memaddr);
c906108c 8502
a76d924d 8503 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
917317f4 8504
8d64371b
TT
8505 strcat (rs->buf.data (), header);
8506 p = rs->buf.data () + strlen (header);
a76d924d
DJ
8507
8508 /* Compute a best guess of the number of bytes actually transfered. */
8509 if (packet_format == 'X')
c906108c 8510 {
23860348 8511 /* Best guess at number of bytes that will fit. */
325fac50
PA
8512 todo_units = std::min (len_units,
8513 (ULONGEST) payload_capacity_bytes / unit_size);
a76d924d 8514 if (use_length)
124e13d9 8515 payload_capacity_bytes -= hexnumlen (todo_units);
325fac50 8516 todo_units = std::min (todo_units, payload_capacity_bytes / unit_size);
a76d924d
DJ
8517 }
8518 else
8519 {
124e13d9 8520 /* Number of bytes that will fit. */
325fac50
PA
8521 todo_units
8522 = std::min (len_units,
8523 (ULONGEST) (payload_capacity_bytes / unit_size) / 2);
a76d924d 8524 if (use_length)
124e13d9 8525 payload_capacity_bytes -= hexnumlen (todo_units);
325fac50
PA
8526 todo_units = std::min (todo_units,
8527 (payload_capacity_bytes / unit_size) / 2);
917317f4 8528 }
a76d924d 8529
124e13d9 8530 if (todo_units <= 0)
3de11b2e 8531 internal_error (__FILE__, __LINE__,
405f8e94 8532 _("minimum packet size too small to write data"));
802188a7 8533
6765f3e5
DJ
8534 /* If we already need another packet, then try to align the end
8535 of this packet to a useful boundary. */
124e13d9
SM
8536 if (todo_units > 2 * REMOTE_ALIGN_WRITES && todo_units < len_units)
8537 todo_units = align_for_efficient_write (todo_units, memaddr);
6765f3e5 8538
a257b5bb 8539 /* Append "<memaddr>". */
917317f4
JM
8540 memaddr = remote_address_masked (memaddr);
8541 p += hexnumstr (p, (ULONGEST) memaddr);
a257b5bb 8542
a76d924d
DJ
8543 if (use_length)
8544 {
8545 /* Append ",". */
8546 *p++ = ',';
802188a7 8547
124e13d9
SM
8548 /* Append the length and retain its location and size. It may need to be
8549 adjusted once the packet body has been created. */
a76d924d 8550 plen = p;
124e13d9 8551 plenlen = hexnumstr (p, (ULONGEST) todo_units);
a76d924d
DJ
8552 p += plenlen;
8553 }
a257b5bb
AC
8554
8555 /* Append ":". */
917317f4
JM
8556 *p++ = ':';
8557 *p = '\0';
802188a7 8558
a257b5bb 8559 /* Append the packet body. */
a76d924d 8560 if (packet_format == 'X')
917317f4 8561 {
917317f4
JM
8562 /* Binary mode. Send target system values byte by byte, in
8563 increasing byte addresses. Only escape certain critical
8564 characters. */
124e13d9
SM
8565 payload_length_bytes =
8566 remote_escape_output (myaddr, todo_units, unit_size, (gdb_byte *) p,
8567 &units_written, payload_capacity_bytes);
6765f3e5 8568
124e13d9 8569 /* If not all TODO units fit, then we'll need another packet. Make
9b7194bc
DJ
8570 a second try to keep the end of the packet aligned. Don't do
8571 this if the packet is tiny. */
124e13d9 8572 if (units_written < todo_units && units_written > 2 * REMOTE_ALIGN_WRITES)
6765f3e5 8573 {
124e13d9
SM
8574 int new_todo_units;
8575
8576 new_todo_units = align_for_efficient_write (units_written, memaddr);
8577
8578 if (new_todo_units != units_written)
8579 payload_length_bytes =
8580 remote_escape_output (myaddr, new_todo_units, unit_size,
8581 (gdb_byte *) p, &units_written,
8582 payload_capacity_bytes);
6765f3e5
DJ
8583 }
8584
124e13d9
SM
8585 p += payload_length_bytes;
8586 if (use_length && units_written < todo_units)
c906108c 8587 {
802188a7 8588 /* Escape chars have filled up the buffer prematurely,
124e13d9 8589 and we have actually sent fewer units than planned.
917317f4
JM
8590 Fix-up the length field of the packet. Use the same
8591 number of characters as before. */
124e13d9
SM
8592 plen += hexnumnstr (plen, (ULONGEST) units_written,
8593 plenlen);
917317f4 8594 *plen = ':'; /* overwrite \0 from hexnumnstr() */
c906108c 8595 }
a76d924d
DJ
8596 }
8597 else
8598 {
917317f4
JM
8599 /* Normal mode: Send target system values byte by byte, in
8600 increasing byte addresses. Each byte is encoded as a two hex
8601 value. */
124e13d9
SM
8602 p += 2 * bin2hex (myaddr, p, todo_units * unit_size);
8603 units_written = todo_units;
c906108c 8604 }
802188a7 8605
8d64371b
TT
8606 putpkt_binary (rs->buf.data (), (int) (p - rs->buf.data ()));
8607 getpkt (&rs->buf, 0);
802188a7 8608
2e9f7625 8609 if (rs->buf[0] == 'E')
00d84524 8610 return TARGET_XFER_E_IO;
802188a7 8611
124e13d9
SM
8612 /* Return UNITS_WRITTEN, not TODO_UNITS, in case escape chars caused us to
8613 send fewer units than we'd planned. */
8614 *xfered_len_units = (ULONGEST) units_written;
92ffd475 8615 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
c906108c
SS
8616}
8617
a76d924d
DJ
8618/* Write memory data directly to the remote machine.
8619 This does not inform the data cache; the data cache uses this.
8620 MEMADDR is the address in the remote memory space.
8621 MYADDR is the address of the buffer in our space.
8622 LEN is the number of bytes.
8623
9b409511
YQ
8624 Return the transferred status, error or OK (an
8625 'enum target_xfer_status' value). Save the number of bytes
8626 transferred in *XFERED_LEN. Only transfer a single packet. */
a76d924d 8627
6b8edb51
PA
8628target_xfer_status
8629remote_target::remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr,
8630 ULONGEST len, int unit_size,
8631 ULONGEST *xfered_len)
a76d924d 8632{
a121b7c1 8633 const char *packet_format = NULL;
a76d924d
DJ
8634
8635 /* Check whether the target supports binary download. */
8636 check_binary_download (memaddr);
8637
4082afcc 8638 switch (packet_support (PACKET_X))
a76d924d
DJ
8639 {
8640 case PACKET_ENABLE:
8641 packet_format = "X";
8642 break;
8643 case PACKET_DISABLE:
8644 packet_format = "M";
8645 break;
8646 case PACKET_SUPPORT_UNKNOWN:
8647 internal_error (__FILE__, __LINE__,
8648 _("remote_write_bytes: bad internal state"));
8649 default:
8650 internal_error (__FILE__, __LINE__, _("bad switch"));
8651 }
8652
8653 return remote_write_bytes_aux (packet_format,
124e13d9 8654 memaddr, myaddr, len, unit_size, xfered_len,
9b409511 8655 packet_format[0], 1);
a76d924d
DJ
8656}
8657
9217e74e
YQ
8658/* Read memory data directly from the remote machine.
8659 This does not use the data cache; the data cache uses this.
8660 MEMADDR is the address in the remote memory space.
8661 MYADDR is the address of the buffer in our space.
124e13d9
SM
8662 LEN_UNITS is the number of addressable memory units to read..
8663 UNIT_SIZE is the length in bytes of an addressable unit.
9217e74e
YQ
8664
8665 Return the transferred status, error or OK (an
8666 'enum target_xfer_status' value). Save the number of bytes
124e13d9
SM
8667 transferred in *XFERED_LEN_UNITS.
8668
8669 See the comment of remote_write_bytes_aux for an example of
8670 memory read/write exchange between gdb and the stub. */
9217e74e 8671
6b8edb51
PA
8672target_xfer_status
8673remote_target::remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr,
8674 ULONGEST len_units,
8675 int unit_size, ULONGEST *xfered_len_units)
9217e74e
YQ
8676{
8677 struct remote_state *rs = get_remote_state ();
124e13d9 8678 int buf_size_bytes; /* Max size of packet output buffer. */
9217e74e 8679 char *p;
124e13d9
SM
8680 int todo_units;
8681 int decoded_bytes;
9217e74e 8682
124e13d9 8683 buf_size_bytes = get_memory_read_packet_size ();
9217e74e
YQ
8684 /* The packet buffer will be large enough for the payload;
8685 get_memory_packet_size ensures this. */
8686
124e13d9 8687 /* Number of units that will fit. */
325fac50
PA
8688 todo_units = std::min (len_units,
8689 (ULONGEST) (buf_size_bytes / unit_size) / 2);
9217e74e
YQ
8690
8691 /* Construct "m"<memaddr>","<len>". */
8692 memaddr = remote_address_masked (memaddr);
8d64371b 8693 p = rs->buf.data ();
9217e74e
YQ
8694 *p++ = 'm';
8695 p += hexnumstr (p, (ULONGEST) memaddr);
8696 *p++ = ',';
124e13d9 8697 p += hexnumstr (p, (ULONGEST) todo_units);
9217e74e
YQ
8698 *p = '\0';
8699 putpkt (rs->buf);
8d64371b 8700 getpkt (&rs->buf, 0);
9217e74e
YQ
8701 if (rs->buf[0] == 'E'
8702 && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2])
8703 && rs->buf[3] == '\0')
8704 return TARGET_XFER_E_IO;
8705 /* Reply describes memory byte by byte, each byte encoded as two hex
8706 characters. */
8d64371b 8707 p = rs->buf.data ();
124e13d9 8708 decoded_bytes = hex2bin (p, myaddr, todo_units * unit_size);
9217e74e 8709 /* Return what we have. Let higher layers handle partial reads. */
124e13d9 8710 *xfered_len_units = (ULONGEST) (decoded_bytes / unit_size);
92ffd475 8711 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
9217e74e
YQ
8712}
8713
b55fbac4
YQ
8714/* Using the set of read-only target sections of remote, read live
8715 read-only memory.
8acf9577
YQ
8716
8717 For interface/parameters/return description see target.h,
8718 to_xfer_partial. */
8719
6b8edb51
PA
8720target_xfer_status
8721remote_target::remote_xfer_live_readonly_partial (gdb_byte *readbuf,
8722 ULONGEST memaddr,
8723 ULONGEST len,
8724 int unit_size,
8725 ULONGEST *xfered_len)
8acf9577
YQ
8726{
8727 struct target_section *secp;
8728 struct target_section_table *table;
8729
6b8edb51 8730 secp = target_section_by_addr (this, memaddr);
8acf9577 8731 if (secp != NULL
fd361982 8732 && (bfd_section_flags (secp->the_bfd_section) & SEC_READONLY))
8acf9577
YQ
8733 {
8734 struct target_section *p;
8735 ULONGEST memend = memaddr + len;
8736
6b8edb51 8737 table = target_get_section_table (this);
8acf9577
YQ
8738
8739 for (p = table->sections; p < table->sections_end; p++)
8740 {
8741 if (memaddr >= p->addr)
8742 {
8743 if (memend <= p->endaddr)
8744 {
8745 /* Entire transfer is within this section. */
124e13d9 8746 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 8747 xfered_len);
8acf9577
YQ
8748 }
8749 else if (memaddr >= p->endaddr)
8750 {
8751 /* This section ends before the transfer starts. */
8752 continue;
8753 }
8754 else
8755 {
8756 /* This section overlaps the transfer. Just do half. */
8757 len = p->endaddr - memaddr;
124e13d9 8758 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 8759 xfered_len);
8acf9577
YQ
8760 }
8761 }
8762 }
8763 }
8764
8765 return TARGET_XFER_EOF;
8766}
8767
9217e74e
YQ
8768/* Similar to remote_read_bytes_1, but it reads from the remote stub
8769 first if the requested memory is unavailable in traceframe.
8770 Otherwise, fall back to remote_read_bytes_1. */
c906108c 8771
6b8edb51
PA
8772target_xfer_status
8773remote_target::remote_read_bytes (CORE_ADDR memaddr,
8774 gdb_byte *myaddr, ULONGEST len, int unit_size,
8775 ULONGEST *xfered_len)
c906108c 8776{
6b6aa828 8777 if (len == 0)
96c4f946 8778 return TARGET_XFER_EOF;
b2182ed2 8779
8acf9577
YQ
8780 if (get_traceframe_number () != -1)
8781 {
a79b1bc6 8782 std::vector<mem_range> available;
8acf9577
YQ
8783
8784 /* If we fail to get the set of available memory, then the
8785 target does not support querying traceframe info, and so we
8786 attempt reading from the traceframe anyway (assuming the
8787 target implements the old QTro packet then). */
8788 if (traceframe_available_memory (&available, memaddr, len))
8789 {
a79b1bc6 8790 if (available.empty () || available[0].start != memaddr)
8acf9577
YQ
8791 {
8792 enum target_xfer_status res;
8793
8794 /* Don't read into the traceframe's available
8795 memory. */
a79b1bc6 8796 if (!available.empty ())
8acf9577
YQ
8797 {
8798 LONGEST oldlen = len;
8799
a79b1bc6 8800 len = available[0].start - memaddr;
8acf9577
YQ
8801 gdb_assert (len <= oldlen);
8802 }
8803
8acf9577 8804 /* This goes through the topmost target again. */
6b8edb51 8805 res = remote_xfer_live_readonly_partial (myaddr, memaddr,
124e13d9 8806 len, unit_size, xfered_len);
8acf9577
YQ
8807 if (res == TARGET_XFER_OK)
8808 return TARGET_XFER_OK;
8809 else
8810 {
8811 /* No use trying further, we know some memory starting
8812 at MEMADDR isn't available. */
8813 *xfered_len = len;
92ffd475
PC
8814 return (*xfered_len != 0) ?
8815 TARGET_XFER_UNAVAILABLE : TARGET_XFER_EOF;
8acf9577
YQ
8816 }
8817 }
8818
8819 /* Don't try to read more than how much is available, in
8820 case the target implements the deprecated QTro packet to
8821 cater for older GDBs (the target's knowledge of read-only
8822 sections may be outdated by now). */
a79b1bc6 8823 len = available[0].length;
8acf9577
YQ
8824 }
8825 }
8826
124e13d9 8827 return remote_read_bytes_1 (memaddr, myaddr, len, unit_size, xfered_len);
c906108c 8828}
74531fed 8829
c906108c 8830\f
c906108c 8831
a76d924d
DJ
8832/* Sends a packet with content determined by the printf format string
8833 FORMAT and the remaining arguments, then gets the reply. Returns
8834 whether the packet was a success, a failure, or unknown. */
8835
6b8edb51
PA
8836packet_result
8837remote_target::remote_send_printf (const char *format, ...)
a76d924d
DJ
8838{
8839 struct remote_state *rs = get_remote_state ();
8840 int max_size = get_remote_packet_size ();
a76d924d 8841 va_list ap;
a744cf53 8842
a76d924d
DJ
8843 va_start (ap, format);
8844
8845 rs->buf[0] = '\0';
8d64371b 8846 int size = vsnprintf (rs->buf.data (), max_size, format, ap);
33b031ce
GB
8847
8848 va_end (ap);
8849
8850 if (size >= max_size)
9b20d036 8851 internal_error (__FILE__, __LINE__, _("Too long remote packet."));
a76d924d
DJ
8852
8853 if (putpkt (rs->buf) < 0)
8854 error (_("Communication problem with target."));
8855
8856 rs->buf[0] = '\0';
8d64371b 8857 getpkt (&rs->buf, 0);
a76d924d
DJ
8858
8859 return packet_check_result (rs->buf);
8860}
8861
a76d924d
DJ
8862/* Flash writing can take quite some time. We'll set
8863 effectively infinite timeout for flash operations.
8864 In future, we'll need to decide on a better approach. */
8865static const int remote_flash_timeout = 1000;
8866
f6ac5f3d
PA
8867void
8868remote_target::flash_erase (ULONGEST address, LONGEST length)
a76d924d 8869{
f5656ead 8870 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
a76d924d 8871 enum packet_result ret;
2ec845e7
TT
8872 scoped_restore restore_timeout
8873 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
a76d924d
DJ
8874
8875 ret = remote_send_printf ("vFlashErase:%s,%s",
5af949e3 8876 phex (address, addr_size),
a76d924d
DJ
8877 phex (length, 4));
8878 switch (ret)
8879 {
8880 case PACKET_UNKNOWN:
8881 error (_("Remote target does not support flash erase"));
8882 case PACKET_ERROR:
8883 error (_("Error erasing flash with vFlashErase packet"));
8884 default:
8885 break;
8886 }
a76d924d
DJ
8887}
8888
6b8edb51
PA
8889target_xfer_status
8890remote_target::remote_flash_write (ULONGEST address,
8891 ULONGEST length, ULONGEST *xfered_len,
8892 const gdb_byte *data)
a76d924d 8893{
2ec845e7
TT
8894 scoped_restore restore_timeout
8895 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
8896 return remote_write_bytes_aux ("vFlashWrite:", address, data, length, 1,
8897 xfered_len,'X', 0);
a76d924d
DJ
8898}
8899
f6ac5f3d
PA
8900void
8901remote_target::flash_done ()
a76d924d 8902{
a76d924d 8903 int ret;
a76d924d 8904
2ec845e7
TT
8905 scoped_restore restore_timeout
8906 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
8907
a76d924d 8908 ret = remote_send_printf ("vFlashDone");
a76d924d
DJ
8909
8910 switch (ret)
8911 {
8912 case PACKET_UNKNOWN:
8913 error (_("Remote target does not support vFlashDone"));
8914 case PACKET_ERROR:
8915 error (_("Error finishing flash operation"));
8916 default:
8917 break;
8918 }
8919}
8920
f6ac5f3d
PA
8921void
8922remote_target::files_info ()
c906108c
SS
8923{
8924 puts_filtered ("Debugging a target over a serial line.\n");
8925}
8926\f
8927/* Stuff for dealing with the packets which are part of this protocol.
8928 See comment at top of file for details. */
8929
1927e618
PA
8930/* Close/unpush the remote target, and throw a TARGET_CLOSE_ERROR
8931 error to higher layers. Called when a serial error is detected.
8932 The exception message is STRING, followed by a colon and a blank,
d6cb50a2
JK
8933 the system error message for errno at function entry and final dot
8934 for output compatibility with throw_perror_with_name. */
1927e618
PA
8935
8936static void
8937unpush_and_perror (const char *string)
8938{
d6cb50a2 8939 int saved_errno = errno;
1927e618
PA
8940
8941 remote_unpush_target ();
d6cb50a2
JK
8942 throw_error (TARGET_CLOSE_ERROR, "%s: %s.", string,
8943 safe_strerror (saved_errno));
1927e618
PA
8944}
8945
048094ac
PA
8946/* Read a single character from the remote end. The current quit
8947 handler is overridden to avoid quitting in the middle of packet
8948 sequence, as that would break communication with the remote server.
8949 See remote_serial_quit_handler for more detail. */
c906108c 8950
6b8edb51
PA
8951int
8952remote_target::readchar (int timeout)
c906108c
SS
8953{
8954 int ch;
5d93a237 8955 struct remote_state *rs = get_remote_state ();
048094ac 8956
2ec845e7 8957 {
6b8edb51
PA
8958 scoped_restore restore_quit_target
8959 = make_scoped_restore (&curr_quit_handler_target, this);
2ec845e7 8960 scoped_restore restore_quit
6b8edb51 8961 = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
c906108c 8962
2ec845e7 8963 rs->got_ctrlc_during_io = 0;
c906108c 8964
2ec845e7 8965 ch = serial_readchar (rs->remote_desc, timeout);
048094ac 8966
2ec845e7
TT
8967 if (rs->got_ctrlc_during_io)
8968 set_quit_flag ();
8969 }
048094ac 8970
2acceee2 8971 if (ch >= 0)
0876f84a 8972 return ch;
2acceee2
JM
8973
8974 switch ((enum serial_rc) ch)
c906108c
SS
8975 {
8976 case SERIAL_EOF:
78a095c3 8977 remote_unpush_target ();
598d3636 8978 throw_error (TARGET_CLOSE_ERROR, _("Remote connection closed"));
2acceee2 8979 /* no return */
c906108c 8980 case SERIAL_ERROR:
1927e618
PA
8981 unpush_and_perror (_("Remote communication error. "
8982 "Target disconnected."));
2acceee2 8983 /* no return */
c906108c 8984 case SERIAL_TIMEOUT:
2acceee2 8985 break;
c906108c 8986 }
2acceee2 8987 return ch;
c906108c
SS
8988}
8989
c33e31fd 8990/* Wrapper for serial_write that closes the target and throws if
048094ac
PA
8991 writing fails. The current quit handler is overridden to avoid
8992 quitting in the middle of packet sequence, as that would break
8993 communication with the remote server. See
8994 remote_serial_quit_handler for more detail. */
c33e31fd 8995
6b8edb51
PA
8996void
8997remote_target::remote_serial_write (const char *str, int len)
c33e31fd 8998{
5d93a237 8999 struct remote_state *rs = get_remote_state ();
048094ac 9000
6b8edb51
PA
9001 scoped_restore restore_quit_target
9002 = make_scoped_restore (&curr_quit_handler_target, this);
2ec845e7 9003 scoped_restore restore_quit
6b8edb51 9004 = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
048094ac
PA
9005
9006 rs->got_ctrlc_during_io = 0;
5d93a237
TT
9007
9008 if (serial_write (rs->remote_desc, str, len))
c33e31fd 9009 {
1927e618
PA
9010 unpush_and_perror (_("Remote communication error. "
9011 "Target disconnected."));
c33e31fd 9012 }
048094ac
PA
9013
9014 if (rs->got_ctrlc_during_io)
9015 set_quit_flag ();
c33e31fd
PA
9016}
9017
b3ced9ba
PA
9018/* Return a string representing an escaped version of BUF, of len N.
9019 E.g. \n is converted to \\n, \t to \\t, etc. */
6e5abd65 9020
b3ced9ba 9021static std::string
6e5abd65
PA
9022escape_buffer (const char *buf, int n)
9023{
d7e74731 9024 string_file stb;
6e5abd65 9025
d7e74731
PA
9026 stb.putstrn (buf, n, '\\');
9027 return std::move (stb.string ());
6e5abd65
PA
9028}
9029
c906108c
SS
9030/* Display a null-terminated packet on stdout, for debugging, using C
9031 string notation. */
9032
9033static void
baa336ce 9034print_packet (const char *buf)
c906108c
SS
9035{
9036 puts_filtered ("\"");
43e526b9 9037 fputstr_filtered (buf, '"', gdb_stdout);
c906108c
SS
9038 puts_filtered ("\"");
9039}
9040
9041int
6b8edb51 9042remote_target::putpkt (const char *buf)
c906108c
SS
9043{
9044 return putpkt_binary (buf, strlen (buf));
9045}
9046
6b8edb51
PA
9047/* Wrapper around remote_target::putpkt to avoid exporting
9048 remote_target. */
9049
9050int
9051putpkt (remote_target *remote, const char *buf)
9052{
9053 return remote->putpkt (buf);
9054}
9055
c906108c 9056/* Send a packet to the remote machine, with error checking. The data
23860348 9057 of the packet is in BUF. The string in BUF can be at most
ea9c271d 9058 get_remote_packet_size () - 5 to account for the $, # and checksum,
23860348
MS
9059 and for a possible /0 if we are debugging (remote_debug) and want
9060 to print the sent packet as a string. */
c906108c 9061
6b8edb51
PA
9062int
9063remote_target::putpkt_binary (const char *buf, int cnt)
c906108c 9064{
2d717e4f 9065 struct remote_state *rs = get_remote_state ();
c906108c
SS
9066 int i;
9067 unsigned char csum = 0;
b80406ac
TT
9068 gdb::def_vector<char> data (cnt + 6);
9069 char *buf2 = data.data ();
085dd6e6 9070
c906108c
SS
9071 int ch;
9072 int tcount = 0;
9073 char *p;
9074
e24a49d8
PA
9075 /* Catch cases like trying to read memory or listing threads while
9076 we're waiting for a stop reply. The remote server wouldn't be
9077 ready to handle this request, so we'd hang and timeout. We don't
9078 have to worry about this in synchronous mode, because in that
9079 case it's not possible to issue a command while the target is
74531fed
PA
9080 running. This is not a problem in non-stop mode, because in that
9081 case, the stub is always ready to process serial input. */
6efcd9a8
PA
9082 if (!target_is_non_stop_p ()
9083 && target_is_async_p ()
9084 && rs->waiting_for_stop_reply)
9597b22a
DE
9085 {
9086 error (_("Cannot execute this command while the target is running.\n"
9087 "Use the \"interrupt\" command to stop the target\n"
9088 "and then try again."));
9089 }
e24a49d8 9090
2d717e4f
DJ
9091 /* We're sending out a new packet. Make sure we don't look at a
9092 stale cached response. */
9093 rs->cached_wait_status = 0;
9094
c906108c
SS
9095 /* Copy the packet into buffer BUF2, encapsulating it
9096 and giving it a checksum. */
9097
c906108c
SS
9098 p = buf2;
9099 *p++ = '$';
9100
9101 for (i = 0; i < cnt; i++)
9102 {
9103 csum += buf[i];
9104 *p++ = buf[i];
9105 }
9106 *p++ = '#';
9107 *p++ = tohex ((csum >> 4) & 0xf);
9108 *p++ = tohex (csum & 0xf);
9109
9110 /* Send it over and over until we get a positive ack. */
9111
9112 while (1)
9113 {
9114 int started_error_output = 0;
9115
9116 if (remote_debug)
9117 {
9118 *p = '\0';
b3ced9ba 9119
6f8976bf
YQ
9120 int len = (int) (p - buf2);
9121
9122 std::string str
9123 = escape_buffer (buf2, std::min (len, REMOTE_DEBUG_MAX_CHAR));
9124
9125 fprintf_unfiltered (gdb_stdlog, "Sending packet: %s", str.c_str ());
9126
567a3e54
SM
9127 if (len > REMOTE_DEBUG_MAX_CHAR)
9128 fprintf_unfiltered (gdb_stdlog, "[%d bytes omitted]",
9129 len - REMOTE_DEBUG_MAX_CHAR);
6f8976bf
YQ
9130
9131 fprintf_unfiltered (gdb_stdlog, "...");
b3ced9ba 9132
0f71a2f6 9133 gdb_flush (gdb_stdlog);
c906108c 9134 }
c33e31fd 9135 remote_serial_write (buf2, p - buf2);
c906108c 9136
a6f3e723
SL
9137 /* If this is a no acks version of the remote protocol, send the
9138 packet and move on. */
9139 if (rs->noack_mode)
9140 break;
9141
74531fed
PA
9142 /* Read until either a timeout occurs (-2) or '+' is read.
9143 Handle any notification that arrives in the mean time. */
c906108c
SS
9144 while (1)
9145 {
9146 ch = readchar (remote_timeout);
9147
c5aa993b 9148 if (remote_debug)
c906108c
SS
9149 {
9150 switch (ch)
9151 {
9152 case '+':
1216fa2c 9153 case '-':
c906108c
SS
9154 case SERIAL_TIMEOUT:
9155 case '$':
74531fed 9156 case '%':
c906108c
SS
9157 if (started_error_output)
9158 {
9159 putchar_unfiltered ('\n');
9160 started_error_output = 0;
9161 }
9162 }
9163 }
9164
9165 switch (ch)
9166 {
9167 case '+':
9168 if (remote_debug)
0f71a2f6 9169 fprintf_unfiltered (gdb_stdlog, "Ack\n");
c906108c 9170 return 1;
1216fa2c
AC
9171 case '-':
9172 if (remote_debug)
9173 fprintf_unfiltered (gdb_stdlog, "Nak\n");
a17d146e 9174 /* FALLTHROUGH */
c906108c 9175 case SERIAL_TIMEOUT:
c5aa993b 9176 tcount++;
c906108c 9177 if (tcount > 3)
b80406ac 9178 return 0;
23860348 9179 break; /* Retransmit buffer. */
c906108c
SS
9180 case '$':
9181 {
40e3f985 9182 if (remote_debug)
2bc416ba 9183 fprintf_unfiltered (gdb_stdlog,
23860348 9184 "Packet instead of Ack, ignoring it\n");
d6f7abdf
AC
9185 /* It's probably an old response sent because an ACK
9186 was lost. Gobble up the packet and ack it so it
9187 doesn't get retransmitted when we resend this
9188 packet. */
6d820c5c 9189 skip_frame ();
c33e31fd 9190 remote_serial_write ("+", 1);
23860348 9191 continue; /* Now, go look for +. */
c906108c 9192 }
74531fed
PA
9193
9194 case '%':
9195 {
9196 int val;
9197
9198 /* If we got a notification, handle it, and go back to looking
9199 for an ack. */
9200 /* We've found the start of a notification. Now
9201 collect the data. */
8d64371b 9202 val = read_frame (&rs->buf);
74531fed
PA
9203 if (val >= 0)
9204 {
9205 if (remote_debug)
9206 {
8d64371b 9207 std::string str = escape_buffer (rs->buf.data (), val);
6e5abd65 9208
6e5abd65
PA
9209 fprintf_unfiltered (gdb_stdlog,
9210 " Notification received: %s\n",
b3ced9ba 9211 str.c_str ());
74531fed 9212 }
8d64371b 9213 handle_notification (rs->notif_state, rs->buf.data ());
74531fed
PA
9214 /* We're in sync now, rewait for the ack. */
9215 tcount = 0;
9216 }
9217 else
9218 {
9219 if (remote_debug)
9220 {
9221 if (!started_error_output)
9222 {
9223 started_error_output = 1;
9224 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
9225 }
9226 fputc_unfiltered (ch & 0177, gdb_stdlog);
8d64371b 9227 fprintf_unfiltered (gdb_stdlog, "%s", rs->buf.data ());
74531fed
PA
9228 }
9229 }
9230 continue;
9231 }
9232 /* fall-through */
c906108c
SS
9233 default:
9234 if (remote_debug)
9235 {
9236 if (!started_error_output)
9237 {
9238 started_error_output = 1;
0f71a2f6 9239 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
c906108c 9240 }
0f71a2f6 9241 fputc_unfiltered (ch & 0177, gdb_stdlog);
c906108c
SS
9242 }
9243 continue;
9244 }
23860348 9245 break; /* Here to retransmit. */
c906108c
SS
9246 }
9247
9248#if 0
9249 /* This is wrong. If doing a long backtrace, the user should be
c5aa993b
JM
9250 able to get out next time we call QUIT, without anything as
9251 violent as interrupt_query. If we want to provide a way out of
9252 here without getting to the next QUIT, it should be based on
9253 hitting ^C twice as in remote_wait. */
c906108c
SS
9254 if (quit_flag)
9255 {
9256 quit_flag = 0;
9257 interrupt_query ();
9258 }
9259#endif
9260 }
a5c0808e 9261
a6f3e723 9262 return 0;
c906108c
SS
9263}
9264
6d820c5c
DJ
9265/* Come here after finding the start of a frame when we expected an
9266 ack. Do our best to discard the rest of this packet. */
9267
6b8edb51
PA
9268void
9269remote_target::skip_frame ()
6d820c5c
DJ
9270{
9271 int c;
9272
9273 while (1)
9274 {
9275 c = readchar (remote_timeout);
9276 switch (c)
9277 {
9278 case SERIAL_TIMEOUT:
9279 /* Nothing we can do. */
9280 return;
9281 case '#':
9282 /* Discard the two bytes of checksum and stop. */
9283 c = readchar (remote_timeout);
9284 if (c >= 0)
9285 c = readchar (remote_timeout);
9286
9287 return;
9288 case '*': /* Run length encoding. */
9289 /* Discard the repeat count. */
9290 c = readchar (remote_timeout);
9291 if (c < 0)
9292 return;
9293 break;
9294 default:
9295 /* A regular character. */
9296 break;
9297 }
9298 }
9299}
9300
c906108c 9301/* Come here after finding the start of the frame. Collect the rest
6d820c5c
DJ
9302 into *BUF, verifying the checksum, length, and handling run-length
9303 compression. NUL terminate the buffer. If there is not enough room,
8d64371b 9304 expand *BUF.
c906108c 9305
c2d11a7d
JM
9306 Returns -1 on error, number of characters in buffer (ignoring the
9307 trailing NULL) on success. (could be extended to return one of the
23860348 9308 SERIAL status indications). */
c2d11a7d 9309
6b8edb51 9310long
8d64371b 9311remote_target::read_frame (gdb::char_vector *buf_p)
c906108c
SS
9312{
9313 unsigned char csum;
c2d11a7d 9314 long bc;
c906108c 9315 int c;
8d64371b 9316 char *buf = buf_p->data ();
a6f3e723 9317 struct remote_state *rs = get_remote_state ();
c906108c
SS
9318
9319 csum = 0;
c2d11a7d 9320 bc = 0;
c906108c
SS
9321
9322 while (1)
9323 {
9324 c = readchar (remote_timeout);
c906108c
SS
9325 switch (c)
9326 {
9327 case SERIAL_TIMEOUT:
9328 if (remote_debug)
0f71a2f6 9329 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog);
c2d11a7d 9330 return -1;
c906108c
SS
9331 case '$':
9332 if (remote_debug)
0f71a2f6
JM
9333 fputs_filtered ("Saw new packet start in middle of old one\n",
9334 gdb_stdlog);
23860348 9335 return -1; /* Start a new packet, count retries. */
c906108c
SS
9336 case '#':
9337 {
9338 unsigned char pktcsum;
e1b09194
AC
9339 int check_0 = 0;
9340 int check_1 = 0;
c906108c 9341
c2d11a7d 9342 buf[bc] = '\0';
c906108c 9343
e1b09194
AC
9344 check_0 = readchar (remote_timeout);
9345 if (check_0 >= 0)
9346 check_1 = readchar (remote_timeout);
802188a7 9347
e1b09194
AC
9348 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
9349 {
9350 if (remote_debug)
2bc416ba 9351 fputs_filtered ("Timeout in checksum, retrying\n",
23860348 9352 gdb_stdlog);
e1b09194
AC
9353 return -1;
9354 }
9355 else if (check_0 < 0 || check_1 < 0)
40e3f985
FN
9356 {
9357 if (remote_debug)
2bc416ba 9358 fputs_filtered ("Communication error in checksum\n",
23860348 9359 gdb_stdlog);
40e3f985
FN
9360 return -1;
9361 }
c906108c 9362
a6f3e723
SL
9363 /* Don't recompute the checksum; with no ack packets we
9364 don't have any way to indicate a packet retransmission
9365 is necessary. */
9366 if (rs->noack_mode)
9367 return bc;
9368
e1b09194 9369 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
c906108c 9370 if (csum == pktcsum)
c2d11a7d 9371 return bc;
c906108c 9372
c5aa993b 9373 if (remote_debug)
c906108c 9374 {
b3ced9ba 9375 std::string str = escape_buffer (buf, bc);
6e5abd65 9376
6e5abd65 9377 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
9378 "Bad checksum, sentsum=0x%x, "
9379 "csum=0x%x, buf=%s\n",
b3ced9ba 9380 pktcsum, csum, str.c_str ());
c906108c 9381 }
c2d11a7d 9382 /* Number of characters in buffer ignoring trailing
23860348 9383 NULL. */
c2d11a7d 9384 return -1;
c906108c 9385 }
23860348 9386 case '*': /* Run length encoding. */
c2c6d25f
JM
9387 {
9388 int repeat;
c906108c 9389
a744cf53 9390 csum += c;
b4501125
AC
9391 c = readchar (remote_timeout);
9392 csum += c;
23860348 9393 repeat = c - ' ' + 3; /* Compute repeat count. */
c906108c 9394
23860348 9395 /* The character before ``*'' is repeated. */
c2d11a7d 9396
6d820c5c 9397 if (repeat > 0 && repeat <= 255 && bc > 0)
c2c6d25f 9398 {
8d64371b 9399 if (bc + repeat - 1 >= buf_p->size () - 1)
6d820c5c
DJ
9400 {
9401 /* Make some more room in the buffer. */
8d64371b
TT
9402 buf_p->resize (buf_p->size () + repeat);
9403 buf = buf_p->data ();
6d820c5c
DJ
9404 }
9405
c2d11a7d
JM
9406 memset (&buf[bc], buf[bc - 1], repeat);
9407 bc += repeat;
c2c6d25f
JM
9408 continue;
9409 }
9410
c2d11a7d 9411 buf[bc] = '\0';
6d820c5c 9412 printf_filtered (_("Invalid run length encoding: %s\n"), buf);
c2d11a7d 9413 return -1;
c2c6d25f 9414 }
c906108c 9415 default:
8d64371b 9416 if (bc >= buf_p->size () - 1)
c906108c 9417 {
6d820c5c 9418 /* Make some more room in the buffer. */
8d64371b
TT
9419 buf_p->resize (buf_p->size () * 2);
9420 buf = buf_p->data ();
c906108c
SS
9421 }
9422
6d820c5c
DJ
9423 buf[bc++] = c;
9424 csum += c;
9425 continue;
c906108c
SS
9426 }
9427 }
9428}
9429
ed2b7c17
TT
9430/* Set this to the maximum number of seconds to wait instead of waiting forever
9431 in target_wait(). If this timer times out, then it generates an error and
9432 the command is aborted. This replaces most of the need for timeouts in the
9433 GDB test suite, and makes it possible to distinguish between a hung target
9434 and one with slow communications. */
9435
9436static int watchdog = 0;
9437static void
9438show_watchdog (struct ui_file *file, int from_tty,
9439 struct cmd_list_element *c, const char *value)
9440{
9441 fprintf_filtered (file, _("Watchdog timer is %s.\n"), value);
9442}
9443
c906108c 9444/* Read a packet from the remote machine, with error checking, and
8d64371b
TT
9445 store it in *BUF. Resize *BUF if necessary to hold the result. If
9446 FOREVER, wait forever rather than timing out; this is used (in
9447 synchronous mode) to wait for a target that is is executing user
9448 code to stop. */
d9fcf2fb
JM
9449/* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
9450 don't have to change all the calls to getpkt to deal with the
9451 return value, because at the moment I don't know what the right
23860348 9452 thing to do it for those. */
6b8edb51 9453
c906108c 9454void
8d64371b 9455remote_target::getpkt (gdb::char_vector *buf, int forever)
d9fcf2fb 9456{
8d64371b 9457 getpkt_sane (buf, forever);
d9fcf2fb
JM
9458}
9459
9460
9461/* Read a packet from the remote machine, with error checking, and
8d64371b
TT
9462 store it in *BUF. Resize *BUF if necessary to hold the result. If
9463 FOREVER, wait forever rather than timing out; this is used (in
9464 synchronous mode) to wait for a target that is is executing user
9465 code to stop. If FOREVER == 0, this function is allowed to time
9466 out gracefully and return an indication of this to the caller.
9467 Otherwise return the number of bytes read. If EXPECTING_NOTIF,
9468 consider receiving a notification enough reason to return to the
9469 caller. *IS_NOTIF is an output boolean that indicates whether *BUF
9470 holds a notification or not (a regular packet). */
74531fed 9471
6b8edb51 9472int
8d64371b 9473remote_target::getpkt_or_notif_sane_1 (gdb::char_vector *buf,
6b8edb51
PA
9474 int forever, int expecting_notif,
9475 int *is_notif)
c906108c 9476{
2d717e4f 9477 struct remote_state *rs = get_remote_state ();
c906108c
SS
9478 int c;
9479 int tries;
9480 int timeout;
df4b58fe 9481 int val = -1;
c906108c 9482
2d717e4f
DJ
9483 /* We're reading a new response. Make sure we don't look at a
9484 previously cached response. */
9485 rs->cached_wait_status = 0;
9486
8d64371b 9487 strcpy (buf->data (), "timeout");
c906108c
SS
9488
9489 if (forever)
74531fed
PA
9490 timeout = watchdog > 0 ? watchdog : -1;
9491 else if (expecting_notif)
9492 timeout = 0; /* There should already be a char in the buffer. If
9493 not, bail out. */
c906108c
SS
9494 else
9495 timeout = remote_timeout;
9496
9497#define MAX_TRIES 3
9498
74531fed
PA
9499 /* Process any number of notifications, and then return when
9500 we get a packet. */
9501 for (;;)
c906108c 9502 {
d9c43928 9503 /* If we get a timeout or bad checksum, retry up to MAX_TRIES
74531fed
PA
9504 times. */
9505 for (tries = 1; tries <= MAX_TRIES; tries++)
c906108c 9506 {
74531fed
PA
9507 /* This can loop forever if the remote side sends us
9508 characters continuously, but if it pauses, we'll get
9509 SERIAL_TIMEOUT from readchar because of timeout. Then
9510 we'll count that as a retry.
9511
9512 Note that even when forever is set, we will only wait
9513 forever prior to the start of a packet. After that, we
9514 expect characters to arrive at a brisk pace. They should
9515 show up within remote_timeout intervals. */
9516 do
9517 c = readchar (timeout);
9518 while (c != SERIAL_TIMEOUT && c != '$' && c != '%');
c906108c
SS
9519
9520 if (c == SERIAL_TIMEOUT)
9521 {
74531fed
PA
9522 if (expecting_notif)
9523 return -1; /* Don't complain, it's normal to not get
9524 anything in this case. */
9525
23860348 9526 if (forever) /* Watchdog went off? Kill the target. */
c906108c 9527 {
78a095c3 9528 remote_unpush_target ();
598d3636
JK
9529 throw_error (TARGET_CLOSE_ERROR,
9530 _("Watchdog timeout has expired. "
9531 "Target detached."));
c906108c 9532 }
c906108c 9533 if (remote_debug)
0f71a2f6 9534 fputs_filtered ("Timed out.\n", gdb_stdlog);
c906108c 9535 }
74531fed
PA
9536 else
9537 {
9538 /* We've found the start of a packet or notification.
9539 Now collect the data. */
8d64371b 9540 val = read_frame (buf);
74531fed
PA
9541 if (val >= 0)
9542 break;
9543 }
9544
c33e31fd 9545 remote_serial_write ("-", 1);
c906108c 9546 }
c906108c 9547
74531fed
PA
9548 if (tries > MAX_TRIES)
9549 {
9550 /* We have tried hard enough, and just can't receive the
9551 packet/notification. Give up. */
9552 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
c906108c 9553
74531fed
PA
9554 /* Skip the ack char if we're in no-ack mode. */
9555 if (!rs->noack_mode)
c33e31fd 9556 remote_serial_write ("+", 1);
74531fed
PA
9557 return -1;
9558 }
c906108c 9559
74531fed
PA
9560 /* If we got an ordinary packet, return that to our caller. */
9561 if (c == '$')
c906108c
SS
9562 {
9563 if (remote_debug)
43e526b9 9564 {
6f8976bf 9565 std::string str
8d64371b 9566 = escape_buffer (buf->data (),
6f8976bf
YQ
9567 std::min (val, REMOTE_DEBUG_MAX_CHAR));
9568
9569 fprintf_unfiltered (gdb_stdlog, "Packet received: %s",
9570 str.c_str ());
9571
567a3e54
SM
9572 if (val > REMOTE_DEBUG_MAX_CHAR)
9573 fprintf_unfiltered (gdb_stdlog, "[%d bytes omitted]",
9574 val - REMOTE_DEBUG_MAX_CHAR);
6e5abd65 9575
6f8976bf 9576 fprintf_unfiltered (gdb_stdlog, "\n");
43e526b9 9577 }
a6f3e723
SL
9578
9579 /* Skip the ack char if we're in no-ack mode. */
9580 if (!rs->noack_mode)
c33e31fd 9581 remote_serial_write ("+", 1);
fee9eda9
YQ
9582 if (is_notif != NULL)
9583 *is_notif = 0;
0876f84a 9584 return val;
c906108c
SS
9585 }
9586
74531fed
PA
9587 /* If we got a notification, handle it, and go back to looking
9588 for a packet. */
9589 else
9590 {
9591 gdb_assert (c == '%');
9592
9593 if (remote_debug)
9594 {
8d64371b 9595 std::string str = escape_buffer (buf->data (), val);
6e5abd65 9596
6e5abd65
PA
9597 fprintf_unfiltered (gdb_stdlog,
9598 " Notification received: %s\n",
b3ced9ba 9599 str.c_str ());
74531fed 9600 }
fee9eda9
YQ
9601 if (is_notif != NULL)
9602 *is_notif = 1;
c906108c 9603
8d64371b 9604 handle_notification (rs->notif_state, buf->data ());
c906108c 9605
74531fed 9606 /* Notifications require no acknowledgement. */
a6f3e723 9607
74531fed 9608 if (expecting_notif)
fee9eda9 9609 return val;
74531fed
PA
9610 }
9611 }
9612}
9613
6b8edb51 9614int
8d64371b 9615remote_target::getpkt_sane (gdb::char_vector *buf, int forever)
74531fed 9616{
8d64371b 9617 return getpkt_or_notif_sane_1 (buf, forever, 0, NULL);
74531fed
PA
9618}
9619
6b8edb51 9620int
8d64371b 9621remote_target::getpkt_or_notif_sane (gdb::char_vector *buf, int forever,
6b8edb51 9622 int *is_notif)
74531fed 9623{
8d64371b 9624 return getpkt_or_notif_sane_1 (buf, forever, 1, is_notif);
c906108c 9625}
74531fed 9626
cbb8991c
DB
9627/* Kill any new fork children of process PID that haven't been
9628 processed by follow_fork. */
9629
6b8edb51
PA
9630void
9631remote_target::kill_new_fork_children (int pid)
cbb8991c 9632{
6b8edb51 9633 remote_state *rs = get_remote_state ();
cbb8991c 9634 struct notif_client *notif = &notif_client_stop;
cbb8991c
DB
9635
9636 /* Kill the fork child threads of any threads in process PID
9637 that are stopped at a fork event. */
08036331 9638 for (thread_info *thread : all_non_exited_threads ())
cbb8991c
DB
9639 {
9640 struct target_waitstatus *ws = &thread->pending_follow;
9641
9642 if (is_pending_fork_parent (ws, pid, thread->ptid))
9643 {
953edf2b 9644 int child_pid = ws->value.related_pid.pid ();
cbb8991c
DB
9645 int res;
9646
6b8edb51 9647 res = remote_vkill (child_pid);
cbb8991c
DB
9648 if (res != 0)
9649 error (_("Can't kill fork child process %d"), child_pid);
9650 }
9651 }
9652
9653 /* Check for any pending fork events (not reported or processed yet)
9654 in process PID and kill those fork child threads as well. */
9655 remote_notif_get_pending_events (notif);
953edf2b
TT
9656 for (auto &event : rs->stop_reply_queue)
9657 if (is_pending_fork_parent (&event->ws, pid, event->ptid))
9658 {
9659 int child_pid = event->ws.value.related_pid.pid ();
9660 int res;
9661
9662 res = remote_vkill (child_pid);
9663 if (res != 0)
9664 error (_("Can't kill fork child process %d"), child_pid);
9665 }
cbb8991c
DB
9666}
9667
c906108c 9668\f
8020350c
DB
9669/* Target hook to kill the current inferior. */
9670
f6ac5f3d
PA
9671void
9672remote_target::kill ()
43ff13b4 9673{
8020350c 9674 int res = -1;
e99b03dc 9675 int pid = inferior_ptid.pid ();
8020350c 9676 struct remote_state *rs = get_remote_state ();
0fdf84ca 9677
8020350c 9678 if (packet_support (PACKET_vKill) != PACKET_DISABLE)
0fdf84ca 9679 {
8020350c
DB
9680 /* If we're stopped while forking and we haven't followed yet,
9681 kill the child task. We need to do this before killing the
9682 parent task because if this is a vfork then the parent will
9683 be sleeping. */
6b8edb51 9684 kill_new_fork_children (pid);
8020350c 9685
6b8edb51 9686 res = remote_vkill (pid);
8020350c 9687 if (res == 0)
0fdf84ca 9688 {
bc1e6c81 9689 target_mourn_inferior (inferior_ptid);
0fdf84ca
PA
9690 return;
9691 }
8020350c 9692 }
0fdf84ca 9693
8020350c
DB
9694 /* If we are in 'target remote' mode and we are killing the only
9695 inferior, then we will tell gdbserver to exit and unpush the
9696 target. */
9697 if (res == -1 && !remote_multi_process_p (rs)
9698 && number_of_live_inferiors () == 1)
9699 {
9700 remote_kill_k ();
9701
9702 /* We've killed the remote end, we get to mourn it. If we are
9703 not in extended mode, mourning the inferior also unpushes
9704 remote_ops from the target stack, which closes the remote
9705 connection. */
bc1e6c81 9706 target_mourn_inferior (inferior_ptid);
8020350c
DB
9707
9708 return;
0fdf84ca 9709 }
43ff13b4 9710
8020350c 9711 error (_("Can't kill process"));
43ff13b4
JM
9712}
9713
8020350c
DB
9714/* Send a kill request to the target using the 'vKill' packet. */
9715
6b8edb51
PA
9716int
9717remote_target::remote_vkill (int pid)
82f73884 9718{
4082afcc 9719 if (packet_support (PACKET_vKill) == PACKET_DISABLE)
82f73884
PA
9720 return -1;
9721
6b8edb51
PA
9722 remote_state *rs = get_remote_state ();
9723
82f73884 9724 /* Tell the remote target to detach. */
8d64371b 9725 xsnprintf (rs->buf.data (), get_remote_packet_size (), "vKill;%x", pid);
82f73884 9726 putpkt (rs->buf);
8d64371b 9727 getpkt (&rs->buf, 0);
82f73884 9728
4082afcc
PA
9729 switch (packet_ok (rs->buf,
9730 &remote_protocol_packets[PACKET_vKill]))
9731 {
9732 case PACKET_OK:
9733 return 0;
9734 case PACKET_ERROR:
9735 return 1;
9736 case PACKET_UNKNOWN:
9737 return -1;
9738 default:
9739 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
9740 }
82f73884
PA
9741}
9742
8020350c
DB
9743/* Send a kill request to the target using the 'k' packet. */
9744
6b8edb51
PA
9745void
9746remote_target::remote_kill_k ()
82f73884 9747{
8020350c
DB
9748 /* Catch errors so the user can quit from gdb even when we
9749 aren't on speaking terms with the remote system. */
a70b8144 9750 try
82f73884 9751 {
82f73884 9752 putpkt ("k");
82f73884 9753 }
230d2906 9754 catch (const gdb_exception_error &ex)
8020350c
DB
9755 {
9756 if (ex.error == TARGET_CLOSE_ERROR)
9757 {
9758 /* If we got an (EOF) error that caused the target
9759 to go away, then we're done, that's what we wanted.
9760 "k" is susceptible to cause a premature EOF, given
9761 that the remote server isn't actually required to
9762 reply to "k", and it can happen that it doesn't
9763 even get to reply ACK to the "k". */
9764 return;
9765 }
82f73884 9766
8020350c
DB
9767 /* Otherwise, something went wrong. We didn't actually kill
9768 the target. Just propagate the exception, and let the
9769 user or higher layers decide what to do. */
eedc3f4f 9770 throw;
8020350c 9771 }
82f73884
PA
9772}
9773
f6ac5f3d
PA
9774void
9775remote_target::mourn_inferior ()
c906108c 9776{
8020350c 9777 struct remote_state *rs = get_remote_state ();
ce5ce7ed 9778
9607784a
PA
9779 /* We're no longer interested in notification events of an inferior
9780 that exited or was killed/detached. */
9781 discard_pending_stop_replies (current_inferior ());
9782
8020350c
DB
9783 /* In 'target remote' mode with one inferior, we close the connection. */
9784 if (!rs->extended && number_of_live_inferiors () <= 1)
9785 {
f6ac5f3d 9786 unpush_target (this);
c906108c 9787
8020350c
DB
9788 /* remote_close takes care of doing most of the clean up. */
9789 generic_mourn_inferior ();
9790 return;
9791 }
c906108c 9792
e24a49d8
PA
9793 /* In case we got here due to an error, but we're going to stay
9794 connected. */
9795 rs->waiting_for_stop_reply = 0;
9796
dc1981d7
PA
9797 /* If the current general thread belonged to the process we just
9798 detached from or has exited, the remote side current general
9799 thread becomes undefined. Considering a case like this:
9800
9801 - We just got here due to a detach.
9802 - The process that we're detaching from happens to immediately
9803 report a global breakpoint being hit in non-stop mode, in the
9804 same thread we had selected before.
9805 - GDB attaches to this process again.
9806 - This event happens to be the next event we handle.
9807
9808 GDB would consider that the current general thread didn't need to
9809 be set on the stub side (with Hg), since for all it knew,
9810 GENERAL_THREAD hadn't changed.
9811
9812 Notice that although in all-stop mode, the remote server always
9813 sets the current thread to the thread reporting the stop event,
9814 that doesn't happen in non-stop mode; in non-stop, the stub *must
9815 not* change the current thread when reporting a breakpoint hit,
9816 due to the decoupling of event reporting and event handling.
9817
9818 To keep things simple, we always invalidate our notion of the
9819 current thread. */
47f8a51d 9820 record_currthread (rs, minus_one_ptid);
dc1981d7 9821
8020350c 9822 /* Call common code to mark the inferior as not running. */
48aa3c27
PA
9823 generic_mourn_inferior ();
9824
d729566a 9825 if (!have_inferiors ())
2d717e4f 9826 {
82f73884
PA
9827 if (!remote_multi_process_p (rs))
9828 {
9829 /* Check whether the target is running now - some remote stubs
9830 automatically restart after kill. */
9831 putpkt ("?");
8d64371b 9832 getpkt (&rs->buf, 0);
82f73884
PA
9833
9834 if (rs->buf[0] == 'S' || rs->buf[0] == 'T')
9835 {
3e43a32a
MS
9836 /* Assume that the target has been restarted. Set
9837 inferior_ptid so that bits of core GDB realizes
9838 there's something here, e.g., so that the user can
9839 say "kill" again. */
82f73884
PA
9840 inferior_ptid = magic_null_ptid;
9841 }
82f73884 9842 }
2d717e4f
DJ
9843 }
9844}
c906108c 9845
57810aa7 9846bool
f6ac5f3d 9847extended_remote_target::supports_disable_randomization ()
03583c20 9848{
4082afcc 9849 return packet_support (PACKET_QDisableRandomization) == PACKET_ENABLE;
03583c20
UW
9850}
9851
6b8edb51
PA
9852void
9853remote_target::extended_remote_disable_randomization (int val)
03583c20
UW
9854{
9855 struct remote_state *rs = get_remote_state ();
9856 char *reply;
9857
8d64371b
TT
9858 xsnprintf (rs->buf.data (), get_remote_packet_size (),
9859 "QDisableRandomization:%x", val);
03583c20 9860 putpkt (rs->buf);
b6bb3468 9861 reply = remote_get_noisy_reply ();
03583c20
UW
9862 if (*reply == '\0')
9863 error (_("Target does not support QDisableRandomization."));
9864 if (strcmp (reply, "OK") != 0)
9865 error (_("Bogus QDisableRandomization reply from target: %s"), reply);
9866}
9867
6b8edb51
PA
9868int
9869remote_target::extended_remote_run (const std::string &args)
2d717e4f
DJ
9870{
9871 struct remote_state *rs = get_remote_state ();
2d717e4f 9872 int len;
94585166 9873 const char *remote_exec_file = get_remote_exec_file ();
c906108c 9874
2d717e4f
DJ
9875 /* If the user has disabled vRun support, or we have detected that
9876 support is not available, do not try it. */
4082afcc 9877 if (packet_support (PACKET_vRun) == PACKET_DISABLE)
2d717e4f 9878 return -1;
424163ea 9879
8d64371b
TT
9880 strcpy (rs->buf.data (), "vRun;");
9881 len = strlen (rs->buf.data ());
c906108c 9882
2d717e4f
DJ
9883 if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ())
9884 error (_("Remote file name too long for run packet"));
8d64371b 9885 len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf.data () + len,
9f1b45b0 9886 strlen (remote_exec_file));
2d717e4f 9887
7c5ded6a 9888 if (!args.empty ())
2d717e4f 9889 {
2d717e4f 9890 int i;
2d717e4f 9891
773a1edc 9892 gdb_argv argv (args.c_str ());
2d717e4f
DJ
9893 for (i = 0; argv[i] != NULL; i++)
9894 {
9895 if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ())
9896 error (_("Argument list too long for run packet"));
9897 rs->buf[len++] = ';';
8d64371b 9898 len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf.data () + len,
9f1b45b0 9899 strlen (argv[i]));
2d717e4f 9900 }
2d717e4f
DJ
9901 }
9902
9903 rs->buf[len++] = '\0';
9904
9905 putpkt (rs->buf);
8d64371b 9906 getpkt (&rs->buf, 0);
2d717e4f 9907
4082afcc 9908 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun]))
2d717e4f 9909 {
4082afcc 9910 case PACKET_OK:
3405876a 9911 /* We have a wait response. All is well. */
2d717e4f 9912 return 0;
4082afcc
PA
9913 case PACKET_UNKNOWN:
9914 return -1;
9915 case PACKET_ERROR:
2d717e4f
DJ
9916 if (remote_exec_file[0] == '\0')
9917 error (_("Running the default executable on the remote target failed; "
9918 "try \"set remote exec-file\"?"));
9919 else
9920 error (_("Running \"%s\" on the remote target failed"),
9921 remote_exec_file);
4082afcc
PA
9922 default:
9923 gdb_assert_not_reached (_("bad switch"));
2d717e4f 9924 }
c906108c
SS
9925}
9926
0a2dde4a
SDJ
9927/* Helper function to send set/unset environment packets. ACTION is
9928 either "set" or "unset". PACKET is either "QEnvironmentHexEncoded"
9929 or "QEnvironmentUnsetVariable". VALUE is the variable to be
9930 sent. */
9931
6b8edb51
PA
9932void
9933remote_target::send_environment_packet (const char *action,
9934 const char *packet,
9935 const char *value)
0a2dde4a 9936{
6b8edb51
PA
9937 remote_state *rs = get_remote_state ();
9938
0a2dde4a
SDJ
9939 /* Convert the environment variable to an hex string, which
9940 is the best format to be transmitted over the wire. */
9941 std::string encoded_value = bin2hex ((const gdb_byte *) value,
9942 strlen (value));
9943
8d64371b 9944 xsnprintf (rs->buf.data (), get_remote_packet_size (),
0a2dde4a
SDJ
9945 "%s:%s", packet, encoded_value.c_str ());
9946
9947 putpkt (rs->buf);
8d64371b
TT
9948 getpkt (&rs->buf, 0);
9949 if (strcmp (rs->buf.data (), "OK") != 0)
0a2dde4a
SDJ
9950 warning (_("Unable to %s environment variable '%s' on remote."),
9951 action, value);
9952}
9953
9954/* Helper function to handle the QEnvironment* packets. */
9955
6b8edb51
PA
9956void
9957remote_target::extended_remote_environment_support ()
0a2dde4a 9958{
6b8edb51
PA
9959 remote_state *rs = get_remote_state ();
9960
0a2dde4a
SDJ
9961 if (packet_support (PACKET_QEnvironmentReset) != PACKET_DISABLE)
9962 {
9963 putpkt ("QEnvironmentReset");
8d64371b
TT
9964 getpkt (&rs->buf, 0);
9965 if (strcmp (rs->buf.data (), "OK") != 0)
0a2dde4a
SDJ
9966 warning (_("Unable to reset environment on remote."));
9967 }
9968
9969 gdb_environ *e = &current_inferior ()->environment;
9970
9971 if (packet_support (PACKET_QEnvironmentHexEncoded) != PACKET_DISABLE)
9972 for (const std::string &el : e->user_set_env ())
6b8edb51 9973 send_environment_packet ("set", "QEnvironmentHexEncoded",
0a2dde4a
SDJ
9974 el.c_str ());
9975
9976 if (packet_support (PACKET_QEnvironmentUnset) != PACKET_DISABLE)
9977 for (const std::string &el : e->user_unset_env ())
6b8edb51 9978 send_environment_packet ("unset", "QEnvironmentUnset", el.c_str ());
0a2dde4a
SDJ
9979}
9980
bc3b087d
SDJ
9981/* Helper function to set the current working directory for the
9982 inferior in the remote target. */
9983
6b8edb51
PA
9984void
9985remote_target::extended_remote_set_inferior_cwd ()
bc3b087d
SDJ
9986{
9987 if (packet_support (PACKET_QSetWorkingDir) != PACKET_DISABLE)
9988 {
9989 const char *inferior_cwd = get_inferior_cwd ();
6b8edb51 9990 remote_state *rs = get_remote_state ();
bc3b087d
SDJ
9991
9992 if (inferior_cwd != NULL)
9993 {
9994 std::string hexpath = bin2hex ((const gdb_byte *) inferior_cwd,
9995 strlen (inferior_cwd));
9996
8d64371b 9997 xsnprintf (rs->buf.data (), get_remote_packet_size (),
bc3b087d
SDJ
9998 "QSetWorkingDir:%s", hexpath.c_str ());
9999 }
10000 else
10001 {
10002 /* An empty inferior_cwd means that the user wants us to
10003 reset the remote server's inferior's cwd. */
8d64371b 10004 xsnprintf (rs->buf.data (), get_remote_packet_size (),
bc3b087d
SDJ
10005 "QSetWorkingDir:");
10006 }
10007
10008 putpkt (rs->buf);
8d64371b 10009 getpkt (&rs->buf, 0);
bc3b087d
SDJ
10010 if (packet_ok (rs->buf,
10011 &remote_protocol_packets[PACKET_QSetWorkingDir])
10012 != PACKET_OK)
10013 error (_("\
10014Remote replied unexpectedly while setting the inferior's working\n\
10015directory: %s"),
8d64371b 10016 rs->buf.data ());
bc3b087d
SDJ
10017
10018 }
10019}
10020
2d717e4f
DJ
10021/* In the extended protocol we want to be able to do things like
10022 "run" and have them basically work as expected. So we need
10023 a special create_inferior function. We support changing the
10024 executable file and the command line arguments, but not the
10025 environment. */
10026
f6ac5f3d
PA
10027void
10028extended_remote_target::create_inferior (const char *exec_file,
10029 const std::string &args,
10030 char **env, int from_tty)
43ff13b4 10031{
3405876a
PA
10032 int run_worked;
10033 char *stop_reply;
10034 struct remote_state *rs = get_remote_state ();
94585166 10035 const char *remote_exec_file = get_remote_exec_file ();
3405876a 10036
43ff13b4 10037 /* If running asynchronously, register the target file descriptor
23860348 10038 with the event loop. */
75c99385 10039 if (target_can_async_p ())
6a3753b3 10040 target_async (1);
43ff13b4 10041
03583c20 10042 /* Disable address space randomization if requested (and supported). */
f6ac5f3d 10043 if (supports_disable_randomization ())
03583c20
UW
10044 extended_remote_disable_randomization (disable_randomization);
10045
aefd8b33
SDJ
10046 /* If startup-with-shell is on, we inform gdbserver to start the
10047 remote inferior using a shell. */
10048 if (packet_support (PACKET_QStartupWithShell) != PACKET_DISABLE)
10049 {
8d64371b 10050 xsnprintf (rs->buf.data (), get_remote_packet_size (),
aefd8b33
SDJ
10051 "QStartupWithShell:%d", startup_with_shell ? 1 : 0);
10052 putpkt (rs->buf);
8d64371b
TT
10053 getpkt (&rs->buf, 0);
10054 if (strcmp (rs->buf.data (), "OK") != 0)
aefd8b33
SDJ
10055 error (_("\
10056Remote replied unexpectedly while setting startup-with-shell: %s"),
8d64371b 10057 rs->buf.data ());
aefd8b33
SDJ
10058 }
10059
6b8edb51 10060 extended_remote_environment_support ();
0a2dde4a 10061
6b8edb51 10062 extended_remote_set_inferior_cwd ();
bc3b087d 10063
43ff13b4 10064 /* Now restart the remote server. */
3405876a
PA
10065 run_worked = extended_remote_run (args) != -1;
10066 if (!run_worked)
2d717e4f
DJ
10067 {
10068 /* vRun was not supported. Fail if we need it to do what the
10069 user requested. */
10070 if (remote_exec_file[0])
10071 error (_("Remote target does not support \"set remote exec-file\""));
7c5ded6a 10072 if (!args.empty ())
65e65158 10073 error (_("Remote target does not support \"set args\" or run ARGS"));
43ff13b4 10074
2d717e4f
DJ
10075 /* Fall back to "R". */
10076 extended_remote_restart ();
10077 }
424163ea 10078
3405876a 10079 /* vRun's success return is a stop reply. */
8d64371b 10080 stop_reply = run_worked ? rs->buf.data () : NULL;
3405876a 10081 add_current_inferior_and_thread (stop_reply);
c0a2216e 10082
2d717e4f
DJ
10083 /* Get updated offsets, if the stub uses qOffsets. */
10084 get_offsets ();
2d717e4f 10085}
c906108c 10086\f
c5aa993b 10087
b775012e
LM
10088/* Given a location's target info BP_TGT and the packet buffer BUF, output
10089 the list of conditions (in agent expression bytecode format), if any, the
10090 target needs to evaluate. The output is placed into the packet buffer
bba74b36 10091 started from BUF and ended at BUF_END. */
b775012e
LM
10092
10093static int
10094remote_add_target_side_condition (struct gdbarch *gdbarch,
bba74b36
YQ
10095 struct bp_target_info *bp_tgt, char *buf,
10096 char *buf_end)
b775012e 10097{
3cde5c42 10098 if (bp_tgt->conditions.empty ())
b775012e
LM
10099 return 0;
10100
10101 buf += strlen (buf);
bba74b36 10102 xsnprintf (buf, buf_end - buf, "%s", ";");
b775012e
LM
10103 buf++;
10104
83621223 10105 /* Send conditions to the target. */
d538e36d 10106 for (agent_expr *aexpr : bp_tgt->conditions)
b775012e 10107 {
bba74b36 10108 xsnprintf (buf, buf_end - buf, "X%x,", aexpr->len);
b775012e 10109 buf += strlen (buf);
3cde5c42 10110 for (int i = 0; i < aexpr->len; ++i)
b775012e
LM
10111 buf = pack_hex_byte (buf, aexpr->buf[i]);
10112 *buf = '\0';
10113 }
b775012e
LM
10114 return 0;
10115}
10116
d3ce09f5
SS
10117static void
10118remote_add_target_side_commands (struct gdbarch *gdbarch,
10119 struct bp_target_info *bp_tgt, char *buf)
10120{
3cde5c42 10121 if (bp_tgt->tcommands.empty ())
d3ce09f5
SS
10122 return;
10123
10124 buf += strlen (buf);
10125
10126 sprintf (buf, ";cmds:%x,", bp_tgt->persist);
10127 buf += strlen (buf);
10128
10129 /* Concatenate all the agent expressions that are commands into the
10130 cmds parameter. */
df97be55 10131 for (agent_expr *aexpr : bp_tgt->tcommands)
d3ce09f5
SS
10132 {
10133 sprintf (buf, "X%x,", aexpr->len);
10134 buf += strlen (buf);
3cde5c42 10135 for (int i = 0; i < aexpr->len; ++i)
d3ce09f5
SS
10136 buf = pack_hex_byte (buf, aexpr->buf[i]);
10137 *buf = '\0';
10138 }
d3ce09f5
SS
10139}
10140
8181d85f
DJ
10141/* Insert a breakpoint. On targets that have software breakpoint
10142 support, we ask the remote target to do the work; on targets
10143 which don't, we insert a traditional memory breakpoint. */
c906108c 10144
f6ac5f3d
PA
10145int
10146remote_target::insert_breakpoint (struct gdbarch *gdbarch,
10147 struct bp_target_info *bp_tgt)
c906108c 10148{
d471ea57
AC
10149 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
10150 If it succeeds, then set the support to PACKET_ENABLE. If it
10151 fails, and the user has explicitly requested the Z support then
23860348 10152 report an error, otherwise, mark it disabled and go on. */
802188a7 10153
4082afcc 10154 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 10155 {
0d5ed153 10156 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 10157 struct remote_state *rs;
bba74b36 10158 char *p, *endbuf;
4fff2411 10159
28439a30
PA
10160 /* Make sure the remote is pointing at the right process, if
10161 necessary. */
10162 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10163 set_general_process ();
10164
4fff2411 10165 rs = get_remote_state ();
8d64371b
TT
10166 p = rs->buf.data ();
10167 endbuf = p + get_remote_packet_size ();
802188a7 10168
96baa820
JM
10169 *(p++) = 'Z';
10170 *(p++) = '0';
10171 *(p++) = ',';
7c0f6dcc 10172 addr = (ULONGEST) remote_address_masked (addr);
8181d85f 10173 p += hexnumstr (p, addr);
579c6ad9 10174 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
802188a7 10175
f6ac5f3d 10176 if (supports_evaluation_of_breakpoint_conditions ())
bba74b36 10177 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 10178
f6ac5f3d 10179 if (can_run_breakpoint_commands ())
d3ce09f5
SS
10180 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10181
6d820c5c 10182 putpkt (rs->buf);
8d64371b 10183 getpkt (&rs->buf, 0);
96baa820 10184
6d820c5c 10185 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
96baa820 10186 {
d471ea57
AC
10187 case PACKET_ERROR:
10188 return -1;
10189 case PACKET_OK:
10190 return 0;
10191 case PACKET_UNKNOWN:
10192 break;
96baa820
JM
10193 }
10194 }
c906108c 10195
0000e5cc
PA
10196 /* If this breakpoint has target-side commands but this stub doesn't
10197 support Z0 packets, throw error. */
3cde5c42 10198 if (!bp_tgt->tcommands.empty ())
0000e5cc
PA
10199 throw_error (NOT_SUPPORTED_ERROR, _("\
10200Target doesn't support breakpoints that have target side commands."));
10201
f6ac5f3d 10202 return memory_insert_breakpoint (this, gdbarch, bp_tgt);
c906108c
SS
10203}
10204
f6ac5f3d
PA
10205int
10206remote_target::remove_breakpoint (struct gdbarch *gdbarch,
10207 struct bp_target_info *bp_tgt,
10208 enum remove_bp_reason reason)
c906108c 10209{
8181d85f 10210 CORE_ADDR addr = bp_tgt->placed_address;
d01949b6 10211 struct remote_state *rs = get_remote_state ();
96baa820 10212
4082afcc 10213 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 10214 {
8d64371b
TT
10215 char *p = rs->buf.data ();
10216 char *endbuf = p + get_remote_packet_size ();
802188a7 10217
28439a30
PA
10218 /* Make sure the remote is pointing at the right process, if
10219 necessary. */
10220 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10221 set_general_process ();
10222
96baa820
JM
10223 *(p++) = 'z';
10224 *(p++) = '0';
10225 *(p++) = ',';
10226
8181d85f
DJ
10227 addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
10228 p += hexnumstr (p, addr);
579c6ad9 10229 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
802188a7 10230
6d820c5c 10231 putpkt (rs->buf);
8d64371b 10232 getpkt (&rs->buf, 0);
96baa820 10233
6d820c5c 10234 return (rs->buf[0] == 'E');
96baa820
JM
10235 }
10236
f6ac5f3d 10237 return memory_remove_breakpoint (this, gdbarch, bp_tgt, reason);
c906108c
SS
10238}
10239
f486487f 10240static enum Z_packet_type
d471ea57
AC
10241watchpoint_to_Z_packet (int type)
10242{
10243 switch (type)
10244 {
10245 case hw_write:
bb858e6a 10246 return Z_PACKET_WRITE_WP;
d471ea57
AC
10247 break;
10248 case hw_read:
bb858e6a 10249 return Z_PACKET_READ_WP;
d471ea57
AC
10250 break;
10251 case hw_access:
bb858e6a 10252 return Z_PACKET_ACCESS_WP;
d471ea57
AC
10253 break;
10254 default:
8e65ff28 10255 internal_error (__FILE__, __LINE__,
e2e0b3e5 10256 _("hw_bp_to_z: bad watchpoint type %d"), type);
d471ea57
AC
10257 }
10258}
10259
f6ac5f3d
PA
10260int
10261remote_target::insert_watchpoint (CORE_ADDR addr, int len,
10262 enum target_hw_bp_type type, struct expression *cond)
96baa820 10263{
d01949b6 10264 struct remote_state *rs = get_remote_state ();
8d64371b 10265 char *endbuf = rs->buf.data () + get_remote_packet_size ();
e514a9d6 10266 char *p;
d471ea57 10267 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
96baa820 10268
4082afcc 10269 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
85d721b8 10270 return 1;
802188a7 10271
28439a30
PA
10272 /* Make sure the remote is pointing at the right process, if
10273 necessary. */
10274 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10275 set_general_process ();
10276
8d64371b
TT
10277 xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "Z%x,", packet);
10278 p = strchr (rs->buf.data (), '\0');
96baa820
JM
10279 addr = remote_address_masked (addr);
10280 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 10281 xsnprintf (p, endbuf - p, ",%x", len);
802188a7 10282
6d820c5c 10283 putpkt (rs->buf);
8d64371b 10284 getpkt (&rs->buf, 0);
96baa820 10285
6d820c5c 10286 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
10287 {
10288 case PACKET_ERROR:
d471ea57 10289 return -1;
85d721b8
PA
10290 case PACKET_UNKNOWN:
10291 return 1;
d471ea57
AC
10292 case PACKET_OK:
10293 return 0;
10294 }
8e65ff28 10295 internal_error (__FILE__, __LINE__,
e2e0b3e5 10296 _("remote_insert_watchpoint: reached end of function"));
96baa820
JM
10297}
10298
57810aa7 10299bool
f6ac5f3d
PA
10300remote_target::watchpoint_addr_within_range (CORE_ADDR addr,
10301 CORE_ADDR start, int length)
283002cf
MR
10302{
10303 CORE_ADDR diff = remote_address_masked (addr - start);
10304
10305 return diff < length;
10306}
10307
d471ea57 10308
f6ac5f3d
PA
10309int
10310remote_target::remove_watchpoint (CORE_ADDR addr, int len,
10311 enum target_hw_bp_type type, struct expression *cond)
96baa820 10312{
d01949b6 10313 struct remote_state *rs = get_remote_state ();
8d64371b 10314 char *endbuf = rs->buf.data () + get_remote_packet_size ();
e514a9d6 10315 char *p;
d471ea57
AC
10316 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
10317
4082afcc 10318 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
5cffb350 10319 return -1;
802188a7 10320
28439a30
PA
10321 /* Make sure the remote is pointing at the right process, if
10322 necessary. */
10323 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10324 set_general_process ();
10325
8d64371b
TT
10326 xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "z%x,", packet);
10327 p = strchr (rs->buf.data (), '\0');
96baa820
JM
10328 addr = remote_address_masked (addr);
10329 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 10330 xsnprintf (p, endbuf - p, ",%x", len);
6d820c5c 10331 putpkt (rs->buf);
8d64371b 10332 getpkt (&rs->buf, 0);
96baa820 10333
6d820c5c 10334 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
10335 {
10336 case PACKET_ERROR:
10337 case PACKET_UNKNOWN:
10338 return -1;
10339 case PACKET_OK:
10340 return 0;
10341 }
8e65ff28 10342 internal_error (__FILE__, __LINE__,
e2e0b3e5 10343 _("remote_remove_watchpoint: reached end of function"));
96baa820
JM
10344}
10345
3c3bea1c 10346
60fcc1c3
TT
10347static int remote_hw_watchpoint_limit = -1;
10348static int remote_hw_watchpoint_length_limit = -1;
10349static int remote_hw_breakpoint_limit = -1;
d471ea57 10350
f6ac5f3d
PA
10351int
10352remote_target::region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
480a3f21
PW
10353{
10354 if (remote_hw_watchpoint_length_limit == 0)
10355 return 0;
10356 else if (remote_hw_watchpoint_length_limit < 0)
10357 return 1;
10358 else if (len <= remote_hw_watchpoint_length_limit)
10359 return 1;
10360 else
10361 return 0;
10362}
10363
f6ac5f3d
PA
10364int
10365remote_target::can_use_hw_breakpoint (enum bptype type, int cnt, int ot)
96baa820 10366{
3c3bea1c
GS
10367 if (type == bp_hardware_breakpoint)
10368 {
10369 if (remote_hw_breakpoint_limit == 0)
10370 return 0;
501eef12
AC
10371 else if (remote_hw_breakpoint_limit < 0)
10372 return 1;
3c3bea1c
GS
10373 else if (cnt <= remote_hw_breakpoint_limit)
10374 return 1;
10375 }
10376 else
10377 {
10378 if (remote_hw_watchpoint_limit == 0)
10379 return 0;
501eef12
AC
10380 else if (remote_hw_watchpoint_limit < 0)
10381 return 1;
3c3bea1c
GS
10382 else if (ot)
10383 return -1;
10384 else if (cnt <= remote_hw_watchpoint_limit)
10385 return 1;
10386 }
10387 return -1;
10388}
10389
f7e6eed5
PA
10390/* The to_stopped_by_sw_breakpoint method of target remote. */
10391
57810aa7 10392bool
f6ac5f3d 10393remote_target::stopped_by_sw_breakpoint ()
f7e6eed5 10394{
799a2abe 10395 struct thread_info *thread = inferior_thread ();
f7e6eed5 10396
799a2abe 10397 return (thread->priv != NULL
7aabaf9d
SM
10398 && (get_remote_thread_info (thread)->stop_reason
10399 == TARGET_STOPPED_BY_SW_BREAKPOINT));
f7e6eed5
PA
10400}
10401
10402/* The to_supports_stopped_by_sw_breakpoint method of target
10403 remote. */
10404
57810aa7 10405bool
f6ac5f3d 10406remote_target::supports_stopped_by_sw_breakpoint ()
f7e6eed5 10407{
f7e6eed5
PA
10408 return (packet_support (PACKET_swbreak_feature) == PACKET_ENABLE);
10409}
10410
10411/* The to_stopped_by_hw_breakpoint method of target remote. */
10412
57810aa7 10413bool
f6ac5f3d 10414remote_target::stopped_by_hw_breakpoint ()
f7e6eed5 10415{
799a2abe 10416 struct thread_info *thread = inferior_thread ();
f7e6eed5 10417
799a2abe 10418 return (thread->priv != NULL
7aabaf9d
SM
10419 && (get_remote_thread_info (thread)->stop_reason
10420 == TARGET_STOPPED_BY_HW_BREAKPOINT));
f7e6eed5
PA
10421}
10422
10423/* The to_supports_stopped_by_hw_breakpoint method of target
10424 remote. */
10425
57810aa7 10426bool
f6ac5f3d 10427remote_target::supports_stopped_by_hw_breakpoint ()
f7e6eed5 10428{
f7e6eed5
PA
10429 return (packet_support (PACKET_hwbreak_feature) == PACKET_ENABLE);
10430}
10431
57810aa7 10432bool
f6ac5f3d 10433remote_target::stopped_by_watchpoint ()
3c3bea1c 10434{
799a2abe 10435 struct thread_info *thread = inferior_thread ();
ee154bee 10436
799a2abe 10437 return (thread->priv != NULL
7aabaf9d
SM
10438 && (get_remote_thread_info (thread)->stop_reason
10439 == TARGET_STOPPED_BY_WATCHPOINT));
3c3bea1c
GS
10440}
10441
57810aa7 10442bool
f6ac5f3d 10443remote_target::stopped_data_address (CORE_ADDR *addr_p)
3c3bea1c 10444{
799a2abe 10445 struct thread_info *thread = inferior_thread ();
a744cf53 10446
799a2abe 10447 if (thread->priv != NULL
7aabaf9d
SM
10448 && (get_remote_thread_info (thread)->stop_reason
10449 == TARGET_STOPPED_BY_WATCHPOINT))
4aa7a7f5 10450 {
7aabaf9d 10451 *addr_p = get_remote_thread_info (thread)->watch_data_address;
57810aa7 10452 return true;
4aa7a7f5
JJ
10453 }
10454
57810aa7 10455 return false;
3c3bea1c
GS
10456}
10457
10458
f6ac5f3d
PA
10459int
10460remote_target::insert_hw_breakpoint (struct gdbarch *gdbarch,
10461 struct bp_target_info *bp_tgt)
3c3bea1c 10462{
0d5ed153 10463 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 10464 struct remote_state *rs;
bba74b36 10465 char *p, *endbuf;
dd61ec5c 10466 char *message;
3c3bea1c 10467
4082afcc 10468 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 10469 return -1;
2bc416ba 10470
28439a30
PA
10471 /* Make sure the remote is pointing at the right process, if
10472 necessary. */
10473 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10474 set_general_process ();
10475
4fff2411 10476 rs = get_remote_state ();
8d64371b
TT
10477 p = rs->buf.data ();
10478 endbuf = p + get_remote_packet_size ();
4fff2411 10479
96baa820
JM
10480 *(p++) = 'Z';
10481 *(p++) = '1';
10482 *(p++) = ',';
802188a7 10483
0d5ed153 10484 addr = remote_address_masked (addr);
96baa820 10485 p += hexnumstr (p, (ULONGEST) addr);
579c6ad9 10486 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
96baa820 10487
f6ac5f3d 10488 if (supports_evaluation_of_breakpoint_conditions ())
bba74b36 10489 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 10490
f6ac5f3d 10491 if (can_run_breakpoint_commands ())
d3ce09f5
SS
10492 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10493
6d820c5c 10494 putpkt (rs->buf);
8d64371b 10495 getpkt (&rs->buf, 0);
96baa820 10496
6d820c5c 10497 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
10498 {
10499 case PACKET_ERROR:
dd61ec5c
MW
10500 if (rs->buf[1] == '.')
10501 {
8d64371b 10502 message = strchr (&rs->buf[2], '.');
dd61ec5c 10503 if (message)
0316657e 10504 error (_("Remote failure reply: %s"), message + 1);
dd61ec5c
MW
10505 }
10506 return -1;
d471ea57
AC
10507 case PACKET_UNKNOWN:
10508 return -1;
10509 case PACKET_OK:
10510 return 0;
10511 }
8e65ff28 10512 internal_error (__FILE__, __LINE__,
e2e0b3e5 10513 _("remote_insert_hw_breakpoint: reached end of function"));
96baa820
JM
10514}
10515
d471ea57 10516
f6ac5f3d
PA
10517int
10518remote_target::remove_hw_breakpoint (struct gdbarch *gdbarch,
10519 struct bp_target_info *bp_tgt)
96baa820 10520{
8181d85f 10521 CORE_ADDR addr;
d01949b6 10522 struct remote_state *rs = get_remote_state ();
8d64371b
TT
10523 char *p = rs->buf.data ();
10524 char *endbuf = p + get_remote_packet_size ();
c8189ed1 10525
4082afcc 10526 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 10527 return -1;
802188a7 10528
28439a30
PA
10529 /* Make sure the remote is pointing at the right process, if
10530 necessary. */
10531 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10532 set_general_process ();
10533
96baa820
JM
10534 *(p++) = 'z';
10535 *(p++) = '1';
10536 *(p++) = ',';
802188a7 10537
8181d85f 10538 addr = remote_address_masked (bp_tgt->placed_address);
96baa820 10539 p += hexnumstr (p, (ULONGEST) addr);
579c6ad9 10540 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
96baa820 10541
6d820c5c 10542 putpkt (rs->buf);
8d64371b 10543 getpkt (&rs->buf, 0);
802188a7 10544
6d820c5c 10545 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
10546 {
10547 case PACKET_ERROR:
10548 case PACKET_UNKNOWN:
10549 return -1;
10550 case PACKET_OK:
10551 return 0;
10552 }
8e65ff28 10553 internal_error (__FILE__, __LINE__,
e2e0b3e5 10554 _("remote_remove_hw_breakpoint: reached end of function"));
96baa820 10555}
96baa820 10556
4a5e7a5b
PA
10557/* Verify memory using the "qCRC:" request. */
10558
f6ac5f3d
PA
10559int
10560remote_target::verify_memory (const gdb_byte *data, CORE_ADDR lma, ULONGEST size)
4a5e7a5b
PA
10561{
10562 struct remote_state *rs = get_remote_state ();
10563 unsigned long host_crc, target_crc;
10564 char *tmp;
10565
936d2992
PA
10566 /* It doesn't make sense to use qCRC if the remote target is
10567 connected but not running. */
10568 if (target_has_execution && packet_support (PACKET_qCRC) != PACKET_DISABLE)
10569 {
10570 enum packet_result result;
28439a30 10571
936d2992
PA
10572 /* Make sure the remote is pointing at the right process. */
10573 set_general_process ();
4a5e7a5b 10574
936d2992 10575 /* FIXME: assumes lma can fit into long. */
8d64371b 10576 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qCRC:%lx,%lx",
936d2992
PA
10577 (long) lma, (long) size);
10578 putpkt (rs->buf);
4a5e7a5b 10579
936d2992
PA
10580 /* Be clever; compute the host_crc before waiting for target
10581 reply. */
10582 host_crc = xcrc32 (data, size, 0xffffffff);
10583
8d64371b 10584 getpkt (&rs->buf, 0);
4a5e7a5b 10585
936d2992
PA
10586 result = packet_ok (rs->buf,
10587 &remote_protocol_packets[PACKET_qCRC]);
10588 if (result == PACKET_ERROR)
10589 return -1;
10590 else if (result == PACKET_OK)
10591 {
10592 for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
10593 target_crc = target_crc * 16 + fromhex (*tmp);
4a5e7a5b 10594
936d2992
PA
10595 return (host_crc == target_crc);
10596 }
10597 }
4a5e7a5b 10598
f6ac5f3d 10599 return simple_verify_memory (this, data, lma, size);
4a5e7a5b
PA
10600}
10601
c906108c
SS
10602/* compare-sections command
10603
10604 With no arguments, compares each loadable section in the exec bfd
10605 with the same memory range on the target, and reports mismatches.
4a5e7a5b 10606 Useful for verifying the image on the target against the exec file. */
e514a9d6 10607
c906108c 10608static void
ac88e2de 10609compare_sections_command (const char *args, int from_tty)
c906108c
SS
10610{
10611 asection *s;
ce359b09 10612 const char *sectname;
c906108c
SS
10613 bfd_size_type size;
10614 bfd_vma lma;
10615 int matched = 0;
10616 int mismatched = 0;
4a5e7a5b 10617 int res;
95cf3b38 10618 int read_only = 0;
c906108c
SS
10619
10620 if (!exec_bfd)
8a3fe4f8 10621 error (_("command cannot be used without an exec file"));
c906108c 10622
95cf3b38
DT
10623 if (args != NULL && strcmp (args, "-r") == 0)
10624 {
10625 read_only = 1;
10626 args = NULL;
10627 }
10628
c5aa993b 10629 for (s = exec_bfd->sections; s; s = s->next)
c906108c
SS
10630 {
10631 if (!(s->flags & SEC_LOAD))
0df8b418 10632 continue; /* Skip non-loadable section. */
c906108c 10633
95cf3b38
DT
10634 if (read_only && (s->flags & SEC_READONLY) == 0)
10635 continue; /* Skip writeable sections */
10636
fd361982 10637 size = bfd_section_size (s);
c906108c 10638 if (size == 0)
0df8b418 10639 continue; /* Skip zero-length section. */
c906108c 10640
fd361982 10641 sectname = bfd_section_name (s);
c906108c 10642 if (args && strcmp (args, sectname) != 0)
0df8b418 10643 continue; /* Not the section selected by user. */
c906108c 10644
0df8b418 10645 matched = 1; /* Do this section. */
c906108c 10646 lma = s->lma;
c906108c 10647
b80406ac
TT
10648 gdb::byte_vector sectdata (size);
10649 bfd_get_section_contents (exec_bfd, s, sectdata.data (), 0, size);
c906108c 10650
b80406ac 10651 res = target_verify_memory (sectdata.data (), lma, size);
4a5e7a5b
PA
10652
10653 if (res == -1)
5af949e3 10654 error (_("target memory fault, section %s, range %s -- %s"), sectname,
f5656ead
TT
10655 paddress (target_gdbarch (), lma),
10656 paddress (target_gdbarch (), lma + size));
c906108c 10657
5af949e3 10658 printf_filtered ("Section %s, range %s -- %s: ", sectname,
f5656ead
TT
10659 paddress (target_gdbarch (), lma),
10660 paddress (target_gdbarch (), lma + size));
4a5e7a5b 10661 if (res)
c906108c
SS
10662 printf_filtered ("matched.\n");
10663 else
c5aa993b
JM
10664 {
10665 printf_filtered ("MIS-MATCHED!\n");
10666 mismatched++;
10667 }
c906108c
SS
10668 }
10669 if (mismatched > 0)
936d2992 10670 warning (_("One or more sections of the target image does not match\n\
8a3fe4f8 10671the loaded file\n"));
c906108c 10672 if (args && !matched)
a3f17187 10673 printf_filtered (_("No loaded section named '%s'.\n"), args);
c906108c
SS
10674}
10675
0e7f50da
UW
10676/* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
10677 into remote target. The number of bytes written to the remote
10678 target is returned, or -1 for error. */
10679
6b8edb51
PA
10680target_xfer_status
10681remote_target::remote_write_qxfer (const char *object_name,
10682 const char *annex, const gdb_byte *writebuf,
10683 ULONGEST offset, LONGEST len,
10684 ULONGEST *xfered_len,
10685 struct packet_config *packet)
0e7f50da
UW
10686{
10687 int i, buf_len;
10688 ULONGEST n;
0e7f50da
UW
10689 struct remote_state *rs = get_remote_state ();
10690 int max_size = get_memory_write_packet_size ();
10691
7cc244de 10692 if (packet_config_support (packet) == PACKET_DISABLE)
2ed4b548 10693 return TARGET_XFER_E_IO;
0e7f50da
UW
10694
10695 /* Insert header. */
8d64371b 10696 i = snprintf (rs->buf.data (), max_size,
0e7f50da
UW
10697 "qXfer:%s:write:%s:%s:",
10698 object_name, annex ? annex : "",
10699 phex_nz (offset, sizeof offset));
10700 max_size -= (i + 1);
10701
10702 /* Escape as much data as fits into rs->buf. */
10703 buf_len = remote_escape_output
8d64371b 10704 (writebuf, len, 1, (gdb_byte *) rs->buf.data () + i, &max_size, max_size);
0e7f50da 10705
8d64371b
TT
10706 if (putpkt_binary (rs->buf.data (), i + buf_len) < 0
10707 || getpkt_sane (&rs->buf, 0) < 0
0e7f50da 10708 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 10709 return TARGET_XFER_E_IO;
0e7f50da 10710
8d64371b 10711 unpack_varlen_hex (rs->buf.data (), &n);
9b409511
YQ
10712
10713 *xfered_len = n;
92ffd475 10714 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
0e7f50da
UW
10715}
10716
0876f84a
DJ
10717/* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
10718 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
10719 number of bytes read is returned, or 0 for EOF, or -1 for error.
10720 The number of bytes read may be less than LEN without indicating an
10721 EOF. PACKET is checked and updated to indicate whether the remote
10722 target supports this object. */
10723
6b8edb51
PA
10724target_xfer_status
10725remote_target::remote_read_qxfer (const char *object_name,
10726 const char *annex,
10727 gdb_byte *readbuf, ULONGEST offset,
10728 LONGEST len,
10729 ULONGEST *xfered_len,
10730 struct packet_config *packet)
0876f84a 10731{
0876f84a 10732 struct remote_state *rs = get_remote_state ();
0876f84a
DJ
10733 LONGEST i, n, packet_len;
10734
7cc244de 10735 if (packet_config_support (packet) == PACKET_DISABLE)
2ed4b548 10736 return TARGET_XFER_E_IO;
0876f84a
DJ
10737
10738 /* Check whether we've cached an end-of-object packet that matches
10739 this request. */
8e88304f 10740 if (rs->finished_object)
0876f84a 10741 {
8e88304f
TT
10742 if (strcmp (object_name, rs->finished_object) == 0
10743 && strcmp (annex ? annex : "", rs->finished_annex) == 0
10744 && offset == rs->finished_offset)
9b409511
YQ
10745 return TARGET_XFER_EOF;
10746
0876f84a
DJ
10747
10748 /* Otherwise, we're now reading something different. Discard
10749 the cache. */
8e88304f
TT
10750 xfree (rs->finished_object);
10751 xfree (rs->finished_annex);
10752 rs->finished_object = NULL;
10753 rs->finished_annex = NULL;
0876f84a
DJ
10754 }
10755
10756 /* Request only enough to fit in a single packet. The actual data
10757 may not, since we don't know how much of it will need to be escaped;
10758 the target is free to respond with slightly less data. We subtract
10759 five to account for the response type and the protocol frame. */
768adc05 10760 n = std::min<LONGEST> (get_remote_packet_size () - 5, len);
8d64371b
TT
10761 snprintf (rs->buf.data (), get_remote_packet_size () - 4,
10762 "qXfer:%s:read:%s:%s,%s",
0876f84a
DJ
10763 object_name, annex ? annex : "",
10764 phex_nz (offset, sizeof offset),
10765 phex_nz (n, sizeof n));
10766 i = putpkt (rs->buf);
10767 if (i < 0)
2ed4b548 10768 return TARGET_XFER_E_IO;
0876f84a
DJ
10769
10770 rs->buf[0] = '\0';
8d64371b 10771 packet_len = getpkt_sane (&rs->buf, 0);
0876f84a 10772 if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 10773 return TARGET_XFER_E_IO;
0876f84a
DJ
10774
10775 if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
8d64371b 10776 error (_("Unknown remote qXfer reply: %s"), rs->buf.data ());
0876f84a
DJ
10777
10778 /* 'm' means there is (or at least might be) more data after this
10779 batch. That does not make sense unless there's at least one byte
10780 of data in this reply. */
10781 if (rs->buf[0] == 'm' && packet_len == 1)
10782 error (_("Remote qXfer reply contained no data."));
10783
10784 /* Got some data. */
8d64371b 10785 i = remote_unescape_input ((gdb_byte *) rs->buf.data () + 1,
bc20a4af 10786 packet_len - 1, readbuf, n);
0876f84a
DJ
10787
10788 /* 'l' is an EOF marker, possibly including a final block of data,
0e7f50da
UW
10789 or possibly empty. If we have the final block of a non-empty
10790 object, record this fact to bypass a subsequent partial read. */
10791 if (rs->buf[0] == 'l' && offset + i > 0)
0876f84a 10792 {
8e88304f
TT
10793 rs->finished_object = xstrdup (object_name);
10794 rs->finished_annex = xstrdup (annex ? annex : "");
10795 rs->finished_offset = offset + i;
0876f84a
DJ
10796 }
10797
9b409511
YQ
10798 if (i == 0)
10799 return TARGET_XFER_EOF;
10800 else
10801 {
10802 *xfered_len = i;
10803 return TARGET_XFER_OK;
10804 }
0876f84a
DJ
10805}
10806
f6ac5f3d
PA
10807enum target_xfer_status
10808remote_target::xfer_partial (enum target_object object,
10809 const char *annex, gdb_byte *readbuf,
10810 const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
10811 ULONGEST *xfered_len)
c906108c 10812{
82f73884 10813 struct remote_state *rs;
c906108c 10814 int i;
6d820c5c 10815 char *p2;
1e3ff5ad 10816 char query_type;
124e13d9 10817 int unit_size = gdbarch_addressable_memory_unit_size (target_gdbarch ());
c906108c 10818
e6e4e701 10819 set_remote_traceframe ();
82f73884
PA
10820 set_general_thread (inferior_ptid);
10821
10822 rs = get_remote_state ();
10823
b2182ed2 10824 /* Handle memory using the standard memory routines. */
21e3b9b9
DJ
10825 if (object == TARGET_OBJECT_MEMORY)
10826 {
2d717e4f
DJ
10827 /* If the remote target is connected but not running, we should
10828 pass this request down to a lower stratum (e.g. the executable
10829 file). */
10830 if (!target_has_execution)
9b409511 10831 return TARGET_XFER_EOF;
2d717e4f 10832
21e3b9b9 10833 if (writebuf != NULL)
124e13d9
SM
10834 return remote_write_bytes (offset, writebuf, len, unit_size,
10835 xfered_len);
21e3b9b9 10836 else
6b8edb51 10837 return remote_read_bytes (offset, readbuf, len, unit_size,
124e13d9 10838 xfered_len);
21e3b9b9
DJ
10839 }
10840
4aa995e1
PA
10841 /* Handle extra signal info using qxfer packets. */
10842 if (object == TARGET_OBJECT_SIGNAL_INFO)
10843 {
10844 if (readbuf)
f6ac5f3d 10845 return remote_read_qxfer ("siginfo", annex, readbuf, offset, len,
9b409511 10846 xfered_len, &remote_protocol_packets
4aa995e1
PA
10847 [PACKET_qXfer_siginfo_read]);
10848 else
f6ac5f3d 10849 return remote_write_qxfer ("siginfo", annex,
9b409511 10850 writebuf, offset, len, xfered_len,
4aa995e1
PA
10851 &remote_protocol_packets
10852 [PACKET_qXfer_siginfo_write]);
10853 }
10854
0fb4aa4b
PA
10855 if (object == TARGET_OBJECT_STATIC_TRACE_DATA)
10856 {
10857 if (readbuf)
f6ac5f3d 10858 return remote_read_qxfer ("statictrace", annex,
9b409511 10859 readbuf, offset, len, xfered_len,
0fb4aa4b
PA
10860 &remote_protocol_packets
10861 [PACKET_qXfer_statictrace_read]);
10862 else
2ed4b548 10863 return TARGET_XFER_E_IO;
0fb4aa4b
PA
10864 }
10865
a76d924d
DJ
10866 /* Only handle flash writes. */
10867 if (writebuf != NULL)
10868 {
a76d924d
DJ
10869 switch (object)
10870 {
10871 case TARGET_OBJECT_FLASH:
6b8edb51 10872 return remote_flash_write (offset, len, xfered_len,
9b409511 10873 writebuf);
a76d924d
DJ
10874
10875 default:
2ed4b548 10876 return TARGET_XFER_E_IO;
a76d924d
DJ
10877 }
10878 }
4b8a223f 10879
1e3ff5ad
AC
10880 /* Map pre-existing objects onto letters. DO NOT do this for new
10881 objects!!! Instead specify new query packets. */
10882 switch (object)
c906108c 10883 {
1e3ff5ad
AC
10884 case TARGET_OBJECT_AVR:
10885 query_type = 'R';
10886 break;
802188a7
RM
10887
10888 case TARGET_OBJECT_AUXV:
0876f84a 10889 gdb_assert (annex == NULL);
f6ac5f3d 10890 return remote_read_qxfer ("auxv", annex, readbuf, offset, len,
9b409511 10891 xfered_len,
0876f84a 10892 &remote_protocol_packets[PACKET_qXfer_auxv]);
802188a7 10893
23181151
DJ
10894 case TARGET_OBJECT_AVAILABLE_FEATURES:
10895 return remote_read_qxfer
f6ac5f3d 10896 ("features", annex, readbuf, offset, len, xfered_len,
23181151
DJ
10897 &remote_protocol_packets[PACKET_qXfer_features]);
10898
cfa9d6d9
DJ
10899 case TARGET_OBJECT_LIBRARIES:
10900 return remote_read_qxfer
f6ac5f3d 10901 ("libraries", annex, readbuf, offset, len, xfered_len,
cfa9d6d9
DJ
10902 &remote_protocol_packets[PACKET_qXfer_libraries]);
10903
2268b414
JK
10904 case TARGET_OBJECT_LIBRARIES_SVR4:
10905 return remote_read_qxfer
f6ac5f3d 10906 ("libraries-svr4", annex, readbuf, offset, len, xfered_len,
2268b414
JK
10907 &remote_protocol_packets[PACKET_qXfer_libraries_svr4]);
10908
fd79ecee
DJ
10909 case TARGET_OBJECT_MEMORY_MAP:
10910 gdb_assert (annex == NULL);
f6ac5f3d 10911 return remote_read_qxfer ("memory-map", annex, readbuf, offset, len,
9b409511 10912 xfered_len,
fd79ecee
DJ
10913 &remote_protocol_packets[PACKET_qXfer_memory_map]);
10914
07e059b5
VP
10915 case TARGET_OBJECT_OSDATA:
10916 /* Should only get here if we're connected. */
5d93a237 10917 gdb_assert (rs->remote_desc);
07e059b5 10918 return remote_read_qxfer
f6ac5f3d 10919 ("osdata", annex, readbuf, offset, len, xfered_len,
07e059b5
VP
10920 &remote_protocol_packets[PACKET_qXfer_osdata]);
10921
dc146f7c
VP
10922 case TARGET_OBJECT_THREADS:
10923 gdb_assert (annex == NULL);
f6ac5f3d 10924 return remote_read_qxfer ("threads", annex, readbuf, offset, len,
9b409511 10925 xfered_len,
dc146f7c
VP
10926 &remote_protocol_packets[PACKET_qXfer_threads]);
10927
b3b9301e
PA
10928 case TARGET_OBJECT_TRACEFRAME_INFO:
10929 gdb_assert (annex == NULL);
10930 return remote_read_qxfer
f6ac5f3d 10931 ("traceframe-info", annex, readbuf, offset, len, xfered_len,
b3b9301e 10932 &remote_protocol_packets[PACKET_qXfer_traceframe_info]);
78d85199
YQ
10933
10934 case TARGET_OBJECT_FDPIC:
f6ac5f3d 10935 return remote_read_qxfer ("fdpic", annex, readbuf, offset, len,
9b409511 10936 xfered_len,
78d85199 10937 &remote_protocol_packets[PACKET_qXfer_fdpic]);
169081d0
TG
10938
10939 case TARGET_OBJECT_OPENVMS_UIB:
f6ac5f3d 10940 return remote_read_qxfer ("uib", annex, readbuf, offset, len,
9b409511 10941 xfered_len,
169081d0
TG
10942 &remote_protocol_packets[PACKET_qXfer_uib]);
10943
9accd112 10944 case TARGET_OBJECT_BTRACE:
f6ac5f3d 10945 return remote_read_qxfer ("btrace", annex, readbuf, offset, len,
9b409511 10946 xfered_len,
9accd112
MM
10947 &remote_protocol_packets[PACKET_qXfer_btrace]);
10948
f4abbc16 10949 case TARGET_OBJECT_BTRACE_CONF:
f6ac5f3d 10950 return remote_read_qxfer ("btrace-conf", annex, readbuf, offset,
f4abbc16
MM
10951 len, xfered_len,
10952 &remote_protocol_packets[PACKET_qXfer_btrace_conf]);
10953
c78fa86a 10954 case TARGET_OBJECT_EXEC_FILE:
f6ac5f3d 10955 return remote_read_qxfer ("exec-file", annex, readbuf, offset,
c78fa86a
GB
10956 len, xfered_len,
10957 &remote_protocol_packets[PACKET_qXfer_exec_file]);
10958
1e3ff5ad 10959 default:
2ed4b548 10960 return TARGET_XFER_E_IO;
c906108c
SS
10961 }
10962
0df8b418 10963 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
24b06219 10964 large enough let the caller deal with it. */
ea9c271d 10965 if (len < get_remote_packet_size ())
2ed4b548 10966 return TARGET_XFER_E_IO;
ea9c271d 10967 len = get_remote_packet_size ();
1e3ff5ad 10968
23860348 10969 /* Except for querying the minimum buffer size, target must be open. */
5d93a237 10970 if (!rs->remote_desc)
8a3fe4f8 10971 error (_("remote query is only available after target open"));
c906108c 10972
1e3ff5ad 10973 gdb_assert (annex != NULL);
4b8a223f 10974 gdb_assert (readbuf != NULL);
c906108c 10975
8d64371b 10976 p2 = rs->buf.data ();
c906108c
SS
10977 *p2++ = 'q';
10978 *p2++ = query_type;
10979
23860348
MS
10980 /* We used one buffer char for the remote protocol q command and
10981 another for the query type. As the remote protocol encapsulation
10982 uses 4 chars plus one extra in case we are debugging
10983 (remote_debug), we have PBUFZIZ - 7 left to pack the query
10984 string. */
c906108c 10985 i = 0;
ea9c271d 10986 while (annex[i] && (i < (get_remote_packet_size () - 8)))
c906108c 10987 {
1e3ff5ad
AC
10988 /* Bad caller may have sent forbidden characters. */
10989 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
10990 *p2++ = annex[i];
c906108c
SS
10991 i++;
10992 }
1e3ff5ad
AC
10993 *p2 = '\0';
10994 gdb_assert (annex[i] == '\0');
c906108c 10995
6d820c5c 10996 i = putpkt (rs->buf);
c5aa993b 10997 if (i < 0)
2ed4b548 10998 return TARGET_XFER_E_IO;
c906108c 10999
8d64371b
TT
11000 getpkt (&rs->buf, 0);
11001 strcpy ((char *) readbuf, rs->buf.data ());
c906108c 11002
9b409511 11003 *xfered_len = strlen ((char *) readbuf);
92ffd475 11004 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
c906108c
SS
11005}
11006
09c98b44
DB
11007/* Implementation of to_get_memory_xfer_limit. */
11008
f6ac5f3d
PA
11009ULONGEST
11010remote_target::get_memory_xfer_limit ()
09c98b44
DB
11011{
11012 return get_memory_write_packet_size ();
11013}
11014
f6ac5f3d
PA
11015int
11016remote_target::search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
11017 const gdb_byte *pattern, ULONGEST pattern_len,
11018 CORE_ADDR *found_addrp)
08388c79 11019{
f5656ead 11020 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
08388c79
DE
11021 struct remote_state *rs = get_remote_state ();
11022 int max_size = get_memory_write_packet_size ();
11023 struct packet_config *packet =
11024 &remote_protocol_packets[PACKET_qSearch_memory];
0df8b418
MS
11025 /* Number of packet bytes used to encode the pattern;
11026 this could be more than PATTERN_LEN due to escape characters. */
08388c79 11027 int escaped_pattern_len;
0df8b418 11028 /* Amount of pattern that was encodable in the packet. */
08388c79
DE
11029 int used_pattern_len;
11030 int i;
11031 int found;
11032 ULONGEST found_addr;
11033
7cc244de
PA
11034 /* Don't go to the target if we don't have to. This is done before
11035 checking packet_config_support to avoid the possibility that a
11036 success for this edge case means the facility works in
11037 general. */
08388c79
DE
11038 if (pattern_len > search_space_len)
11039 return 0;
11040 if (pattern_len == 0)
11041 {
11042 *found_addrp = start_addr;
11043 return 1;
11044 }
11045
11046 /* If we already know the packet isn't supported, fall back to the simple
11047 way of searching memory. */
11048
4082afcc 11049 if (packet_config_support (packet) == PACKET_DISABLE)
08388c79
DE
11050 {
11051 /* Target doesn't provided special support, fall back and use the
11052 standard support (copy memory and do the search here). */
f6ac5f3d 11053 return simple_search_memory (this, start_addr, search_space_len,
08388c79
DE
11054 pattern, pattern_len, found_addrp);
11055 }
11056
28439a30
PA
11057 /* Make sure the remote is pointing at the right process. */
11058 set_general_process ();
11059
08388c79 11060 /* Insert header. */
8d64371b 11061 i = snprintf (rs->buf.data (), max_size,
08388c79 11062 "qSearch:memory:%s;%s;",
5af949e3 11063 phex_nz (start_addr, addr_size),
08388c79
DE
11064 phex_nz (search_space_len, sizeof (search_space_len)));
11065 max_size -= (i + 1);
11066
11067 /* Escape as much data as fits into rs->buf. */
11068 escaped_pattern_len =
8d64371b
TT
11069 remote_escape_output (pattern, pattern_len, 1,
11070 (gdb_byte *) rs->buf.data () + i,
08388c79
DE
11071 &used_pattern_len, max_size);
11072
11073 /* Bail if the pattern is too large. */
11074 if (used_pattern_len != pattern_len)
9b20d036 11075 error (_("Pattern is too large to transmit to remote target."));
08388c79 11076
8d64371b
TT
11077 if (putpkt_binary (rs->buf.data (), i + escaped_pattern_len) < 0
11078 || getpkt_sane (&rs->buf, 0) < 0
08388c79
DE
11079 || packet_ok (rs->buf, packet) != PACKET_OK)
11080 {
11081 /* The request may not have worked because the command is not
11082 supported. If so, fall back to the simple way. */
7cc244de 11083 if (packet_config_support (packet) == PACKET_DISABLE)
08388c79 11084 {
f6ac5f3d 11085 return simple_search_memory (this, start_addr, search_space_len,
08388c79
DE
11086 pattern, pattern_len, found_addrp);
11087 }
11088 return -1;
11089 }
11090
11091 if (rs->buf[0] == '0')
11092 found = 0;
11093 else if (rs->buf[0] == '1')
11094 {
11095 found = 1;
11096 if (rs->buf[1] != ',')
8d64371b
TT
11097 error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ());
11098 unpack_varlen_hex (&rs->buf[2], &found_addr);
08388c79
DE
11099 *found_addrp = found_addr;
11100 }
11101 else
8d64371b 11102 error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ());
08388c79
DE
11103
11104 return found;
11105}
11106
f6ac5f3d
PA
11107void
11108remote_target::rcmd (const char *command, struct ui_file *outbuf)
96baa820 11109{
d01949b6 11110 struct remote_state *rs = get_remote_state ();
8d64371b 11111 char *p = rs->buf.data ();
96baa820 11112
5d93a237 11113 if (!rs->remote_desc)
8a3fe4f8 11114 error (_("remote rcmd is only available after target open"));
96baa820 11115
23860348 11116 /* Send a NULL command across as an empty command. */
7be570e7
JM
11117 if (command == NULL)
11118 command = "";
11119
23860348 11120 /* The query prefix. */
8d64371b
TT
11121 strcpy (rs->buf.data (), "qRcmd,");
11122 p = strchr (rs->buf.data (), '\0');
96baa820 11123
8d64371b 11124 if ((strlen (rs->buf.data ()) + strlen (command) * 2 + 8/*misc*/)
3e43a32a 11125 > get_remote_packet_size ())
8a3fe4f8 11126 error (_("\"monitor\" command ``%s'' is too long."), command);
96baa820 11127
23860348 11128 /* Encode the actual command. */
a30bf1f1 11129 bin2hex ((const gdb_byte *) command, p, strlen (command));
96baa820 11130
6d820c5c 11131 if (putpkt (rs->buf) < 0)
8a3fe4f8 11132 error (_("Communication problem with target."));
96baa820
JM
11133
11134 /* get/display the response */
11135 while (1)
11136 {
2e9f7625
DJ
11137 char *buf;
11138
00bf0b85 11139 /* XXX - see also remote_get_noisy_reply(). */
5b37825d 11140 QUIT; /* Allow user to bail out with ^C. */
2e9f7625 11141 rs->buf[0] = '\0';
8d64371b 11142 if (getpkt_sane (&rs->buf, 0) == -1)
5b37825d
PW
11143 {
11144 /* Timeout. Continue to (try to) read responses.
11145 This is better than stopping with an error, assuming the stub
11146 is still executing the (long) monitor command.
11147 If needed, the user can interrupt gdb using C-c, obtaining
11148 an effect similar to stop on timeout. */
11149 continue;
11150 }
8d64371b 11151 buf = rs->buf.data ();
96baa820 11152 if (buf[0] == '\0')
8a3fe4f8 11153 error (_("Target does not support this command."));
96baa820
JM
11154 if (buf[0] == 'O' && buf[1] != 'K')
11155 {
23860348 11156 remote_console_output (buf + 1); /* 'O' message from stub. */
96baa820
JM
11157 continue;
11158 }
11159 if (strcmp (buf, "OK") == 0)
11160 break;
7be570e7
JM
11161 if (strlen (buf) == 3 && buf[0] == 'E'
11162 && isdigit (buf[1]) && isdigit (buf[2]))
11163 {
8a3fe4f8 11164 error (_("Protocol error with Rcmd"));
7be570e7 11165 }
96baa820
JM
11166 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
11167 {
11168 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
a744cf53 11169
96baa820
JM
11170 fputc_unfiltered (c, outbuf);
11171 }
11172 break;
11173 }
11174}
11175
f6ac5f3d
PA
11176std::vector<mem_region>
11177remote_target::memory_map ()
fd79ecee 11178{
a664f67e 11179 std::vector<mem_region> result;
9018be22 11180 gdb::optional<gdb::char_vector> text
8b88a78e 11181 = target_read_stralloc (current_top_target (), TARGET_OBJECT_MEMORY_MAP, NULL);
fd79ecee
DJ
11182
11183 if (text)
9018be22 11184 result = parse_memory_map (text->data ());
fd79ecee
DJ
11185
11186 return result;
11187}
11188
c906108c 11189static void
ac88e2de 11190packet_command (const char *args, int from_tty)
c906108c 11191{
6b8edb51 11192 remote_target *remote = get_current_remote_target ();
c906108c 11193
6b8edb51 11194 if (remote == nullptr)
8a3fe4f8 11195 error (_("command can only be used with remote target"));
c906108c 11196
6b8edb51
PA
11197 remote->packet_command (args, from_tty);
11198}
11199
11200void
11201remote_target::packet_command (const char *args, int from_tty)
11202{
c5aa993b 11203 if (!args)
8a3fe4f8 11204 error (_("remote-packet command requires packet text as argument"));
c906108c
SS
11205
11206 puts_filtered ("sending: ");
11207 print_packet (args);
11208 puts_filtered ("\n");
11209 putpkt (args);
11210
6b8edb51
PA
11211 remote_state *rs = get_remote_state ();
11212
8d64371b 11213 getpkt (&rs->buf, 0);
c906108c 11214 puts_filtered ("received: ");
8d64371b 11215 print_packet (rs->buf.data ());
c906108c
SS
11216 puts_filtered ("\n");
11217}
11218
11219#if 0
23860348 11220/* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
c906108c 11221
a14ed312 11222static void display_thread_info (struct gdb_ext_thread_info *info);
c906108c 11223
a14ed312 11224static void threadset_test_cmd (char *cmd, int tty);
c906108c 11225
a14ed312 11226static void threadalive_test (char *cmd, int tty);
c906108c 11227
a14ed312 11228static void threadlist_test_cmd (char *cmd, int tty);
c906108c 11229
23860348 11230int get_and_display_threadinfo (threadref *ref);
c906108c 11231
a14ed312 11232static void threadinfo_test_cmd (char *cmd, int tty);
c906108c 11233
23860348 11234static int thread_display_step (threadref *ref, void *context);
c906108c 11235
a14ed312 11236static void threadlist_update_test_cmd (char *cmd, int tty);
c906108c 11237
a14ed312 11238static void init_remote_threadtests (void);
c906108c 11239
23860348 11240#define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
c906108c
SS
11241
11242static void
0b39b52e 11243threadset_test_cmd (const char *cmd, int tty)
c906108c
SS
11244{
11245 int sample_thread = SAMPLE_THREAD;
11246
a3f17187 11247 printf_filtered (_("Remote threadset test\n"));
79d7f229 11248 set_general_thread (sample_thread);
c906108c
SS
11249}
11250
11251
11252static void
0b39b52e 11253threadalive_test (const char *cmd, int tty)
c906108c
SS
11254{
11255 int sample_thread = SAMPLE_THREAD;
e99b03dc 11256 int pid = inferior_ptid.pid ();
fd79271b 11257 ptid_t ptid = ptid_t (pid, sample_thread, 0);
c906108c 11258
79d7f229 11259 if (remote_thread_alive (ptid))
c906108c
SS
11260 printf_filtered ("PASS: Thread alive test\n");
11261 else
11262 printf_filtered ("FAIL: Thread alive test\n");
11263}
11264
23860348 11265void output_threadid (char *title, threadref *ref);
c906108c
SS
11266
11267void
fba45db2 11268output_threadid (char *title, threadref *ref)
c906108c
SS
11269{
11270 char hexid[20];
11271
405feb71 11272 pack_threadid (&hexid[0], ref); /* Convert thread id into hex. */
c906108c
SS
11273 hexid[16] = 0;
11274 printf_filtered ("%s %s\n", title, (&hexid[0]));
11275}
11276
11277static void
0b39b52e 11278threadlist_test_cmd (const char *cmd, int tty)
c906108c
SS
11279{
11280 int startflag = 1;
11281 threadref nextthread;
11282 int done, result_count;
11283 threadref threadlist[3];
11284
11285 printf_filtered ("Remote Threadlist test\n");
11286 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
11287 &result_count, &threadlist[0]))
11288 printf_filtered ("FAIL: threadlist test\n");
11289 else
11290 {
11291 threadref *scan = threadlist;
11292 threadref *limit = scan + result_count;
11293
11294 while (scan < limit)
11295 output_threadid (" thread ", scan++);
11296 }
11297}
11298
11299void
fba45db2 11300display_thread_info (struct gdb_ext_thread_info *info)
c906108c
SS
11301{
11302 output_threadid ("Threadid: ", &info->threadid);
11303 printf_filtered ("Name: %s\n ", info->shortname);
11304 printf_filtered ("State: %s\n", info->display);
11305 printf_filtered ("other: %s\n\n", info->more_display);
11306}
11307
11308int
fba45db2 11309get_and_display_threadinfo (threadref *ref)
c906108c
SS
11310{
11311 int result;
11312 int set;
11313 struct gdb_ext_thread_info threadinfo;
11314
11315 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
11316 | TAG_MOREDISPLAY | TAG_DISPLAY;
11317 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
11318 display_thread_info (&threadinfo);
11319 return result;
11320}
11321
11322static void
0b39b52e 11323threadinfo_test_cmd (const char *cmd, int tty)
c906108c
SS
11324{
11325 int athread = SAMPLE_THREAD;
11326 threadref thread;
11327 int set;
11328
11329 int_to_threadref (&thread, athread);
11330 printf_filtered ("Remote Threadinfo test\n");
11331 if (!get_and_display_threadinfo (&thread))
11332 printf_filtered ("FAIL cannot get thread info\n");
11333}
11334
11335static int
fba45db2 11336thread_display_step (threadref *ref, void *context)
c906108c
SS
11337{
11338 /* output_threadid(" threadstep ",ref); *//* simple test */
11339 return get_and_display_threadinfo (ref);
11340}
11341
11342static void
0b39b52e 11343threadlist_update_test_cmd (const char *cmd, int tty)
c906108c
SS
11344{
11345 printf_filtered ("Remote Threadlist update test\n");
11346 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
11347}
11348
11349static void
11350init_remote_threadtests (void)
11351{
3e43a32a
MS
11352 add_com ("tlist", class_obscure, threadlist_test_cmd,
11353 _("Fetch and print the remote list of "
590042fc 11354 "thread identifiers, one pkt only."));
c906108c 11355 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
590042fc 11356 _("Fetch and display info about one thread."));
c906108c 11357 add_com ("tset", class_obscure, threadset_test_cmd,
590042fc 11358 _("Test setting to a different thread."));
c906108c 11359 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
590042fc 11360 _("Iterate through updating all remote thread info."));
c906108c 11361 add_com ("talive", class_obscure, threadalive_test,
590042fc 11362 _("Remote thread alive test."));
c906108c
SS
11363}
11364
11365#endif /* 0 */
11366
a068643d 11367/* Convert a thread ID to a string. */
f3fb8c85 11368
a068643d 11369std::string
f6ac5f3d 11370remote_target::pid_to_str (ptid_t ptid)
f3fb8c85 11371{
82f73884 11372 struct remote_state *rs = get_remote_state ();
f3fb8c85 11373
d7e15655 11374 if (ptid == null_ptid)
7cee1e54 11375 return normal_pid_to_str (ptid);
0e998d96 11376 else if (ptid.is_pid ())
ecd0ada5
PA
11377 {
11378 /* Printing an inferior target id. */
11379
11380 /* When multi-process extensions are off, there's no way in the
11381 remote protocol to know the remote process id, if there's any
11382 at all. There's one exception --- when we're connected with
11383 target extended-remote, and we manually attached to a process
11384 with "attach PID". We don't record anywhere a flag that
11385 allows us to distinguish that case from the case of
11386 connecting with extended-remote and the stub already being
11387 attached to a process, and reporting yes to qAttached, hence
11388 no smart special casing here. */
11389 if (!remote_multi_process_p (rs))
a068643d 11390 return "Remote target";
ecd0ada5
PA
11391
11392 return normal_pid_to_str (ptid);
82f73884 11393 }
ecd0ada5 11394 else
79d7f229 11395 {
d7e15655 11396 if (magic_null_ptid == ptid)
a068643d 11397 return "Thread <main>";
8020350c 11398 else if (remote_multi_process_p (rs))
e38504b3 11399 if (ptid.lwp () == 0)
de0d863e
DB
11400 return normal_pid_to_str (ptid);
11401 else
a068643d
TT
11402 return string_printf ("Thread %d.%ld",
11403 ptid.pid (), ptid.lwp ());
ecd0ada5 11404 else
a068643d 11405 return string_printf ("Thread %ld", ptid.lwp ());
79d7f229 11406 }
f3fb8c85
MS
11407}
11408
38691318
KB
11409/* Get the address of the thread local variable in OBJFILE which is
11410 stored at OFFSET within the thread local storage for thread PTID. */
11411
f6ac5f3d
PA
11412CORE_ADDR
11413remote_target::get_thread_local_address (ptid_t ptid, CORE_ADDR lm,
11414 CORE_ADDR offset)
38691318 11415{
4082afcc 11416 if (packet_support (PACKET_qGetTLSAddr) != PACKET_DISABLE)
38691318
KB
11417 {
11418 struct remote_state *rs = get_remote_state ();
8d64371b
TT
11419 char *p = rs->buf.data ();
11420 char *endp = p + get_remote_packet_size ();
571dd617 11421 enum packet_result result;
38691318
KB
11422
11423 strcpy (p, "qGetTLSAddr:");
11424 p += strlen (p);
82f73884 11425 p = write_ptid (p, endp, ptid);
38691318
KB
11426 *p++ = ',';
11427 p += hexnumstr (p, offset);
11428 *p++ = ',';
11429 p += hexnumstr (p, lm);
11430 *p++ = '\0';
11431
6d820c5c 11432 putpkt (rs->buf);
8d64371b 11433 getpkt (&rs->buf, 0);
3e43a32a
MS
11434 result = packet_ok (rs->buf,
11435 &remote_protocol_packets[PACKET_qGetTLSAddr]);
571dd617 11436 if (result == PACKET_OK)
38691318 11437 {
b926417a 11438 ULONGEST addr;
38691318 11439
8d64371b 11440 unpack_varlen_hex (rs->buf.data (), &addr);
b926417a 11441 return addr;
38691318 11442 }
571dd617 11443 else if (result == PACKET_UNKNOWN)
109c3e39
AC
11444 throw_error (TLS_GENERIC_ERROR,
11445 _("Remote target doesn't support qGetTLSAddr packet"));
38691318 11446 else
109c3e39
AC
11447 throw_error (TLS_GENERIC_ERROR,
11448 _("Remote target failed to process qGetTLSAddr request"));
38691318
KB
11449 }
11450 else
109c3e39
AC
11451 throw_error (TLS_GENERIC_ERROR,
11452 _("TLS not supported or disabled on this target"));
38691318
KB
11453 /* Not reached. */
11454 return 0;
11455}
11456
711e434b
PM
11457/* Provide thread local base, i.e. Thread Information Block address.
11458 Returns 1 if ptid is found and thread_local_base is non zero. */
11459
57810aa7 11460bool
f6ac5f3d 11461remote_target::get_tib_address (ptid_t ptid, CORE_ADDR *addr)
711e434b 11462{
4082afcc 11463 if (packet_support (PACKET_qGetTIBAddr) != PACKET_DISABLE)
711e434b
PM
11464 {
11465 struct remote_state *rs = get_remote_state ();
8d64371b
TT
11466 char *p = rs->buf.data ();
11467 char *endp = p + get_remote_packet_size ();
711e434b
PM
11468 enum packet_result result;
11469
11470 strcpy (p, "qGetTIBAddr:");
11471 p += strlen (p);
11472 p = write_ptid (p, endp, ptid);
11473 *p++ = '\0';
11474
11475 putpkt (rs->buf);
8d64371b 11476 getpkt (&rs->buf, 0);
711e434b
PM
11477 result = packet_ok (rs->buf,
11478 &remote_protocol_packets[PACKET_qGetTIBAddr]);
11479 if (result == PACKET_OK)
11480 {
b926417a 11481 ULONGEST val;
8d64371b 11482 unpack_varlen_hex (rs->buf.data (), &val);
711e434b 11483 if (addr)
b926417a 11484 *addr = (CORE_ADDR) val;
57810aa7 11485 return true;
711e434b
PM
11486 }
11487 else if (result == PACKET_UNKNOWN)
11488 error (_("Remote target doesn't support qGetTIBAddr packet"));
11489 else
11490 error (_("Remote target failed to process qGetTIBAddr request"));
11491 }
11492 else
11493 error (_("qGetTIBAddr not supported or disabled on this target"));
11494 /* Not reached. */
57810aa7 11495 return false;
711e434b
PM
11496}
11497
29709017
DJ
11498/* Support for inferring a target description based on the current
11499 architecture and the size of a 'g' packet. While the 'g' packet
11500 can have any size (since optional registers can be left off the
11501 end), some sizes are easily recognizable given knowledge of the
11502 approximate architecture. */
11503
11504struct remote_g_packet_guess
11505{
eefce37f
TT
11506 remote_g_packet_guess (int bytes_, const struct target_desc *tdesc_)
11507 : bytes (bytes_),
11508 tdesc (tdesc_)
11509 {
11510 }
11511
29709017
DJ
11512 int bytes;
11513 const struct target_desc *tdesc;
11514};
29709017 11515
eefce37f 11516struct remote_g_packet_data : public allocate_on_obstack
29709017 11517{
eefce37f 11518 std::vector<remote_g_packet_guess> guesses;
29709017
DJ
11519};
11520
11521static struct gdbarch_data *remote_g_packet_data_handle;
11522
11523static void *
11524remote_g_packet_data_init (struct obstack *obstack)
11525{
eefce37f 11526 return new (obstack) remote_g_packet_data;
29709017
DJ
11527}
11528
11529void
11530register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes,
11531 const struct target_desc *tdesc)
11532{
11533 struct remote_g_packet_data *data
19ba03f4
SM
11534 = ((struct remote_g_packet_data *)
11535 gdbarch_data (gdbarch, remote_g_packet_data_handle));
29709017
DJ
11536
11537 gdb_assert (tdesc != NULL);
11538
eefce37f
TT
11539 for (const remote_g_packet_guess &guess : data->guesses)
11540 if (guess.bytes == bytes)
29709017 11541 internal_error (__FILE__, __LINE__,
9b20d036 11542 _("Duplicate g packet description added for size %d"),
29709017
DJ
11543 bytes);
11544
eefce37f 11545 data->guesses.emplace_back (bytes, tdesc);
29709017
DJ
11546}
11547
eefce37f
TT
11548/* Return true if remote_read_description would do anything on this target
11549 and architecture, false otherwise. */
d962ef82 11550
eefce37f 11551static bool
d962ef82
DJ
11552remote_read_description_p (struct target_ops *target)
11553{
11554 struct remote_g_packet_data *data
19ba03f4
SM
11555 = ((struct remote_g_packet_data *)
11556 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
d962ef82 11557
eefce37f 11558 return !data->guesses.empty ();
d962ef82
DJ
11559}
11560
f6ac5f3d
PA
11561const struct target_desc *
11562remote_target::read_description ()
29709017
DJ
11563{
11564 struct remote_g_packet_data *data
19ba03f4
SM
11565 = ((struct remote_g_packet_data *)
11566 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
29709017 11567
d962ef82
DJ
11568 /* Do not try this during initial connection, when we do not know
11569 whether there is a running but stopped thread. */
d7e15655 11570 if (!target_has_execution || inferior_ptid == null_ptid)
b6a8c27b 11571 return beneath ()->read_description ();
d962ef82 11572
eefce37f 11573 if (!data->guesses.empty ())
29709017 11574 {
29709017
DJ
11575 int bytes = send_g_packet ();
11576
eefce37f
TT
11577 for (const remote_g_packet_guess &guess : data->guesses)
11578 if (guess.bytes == bytes)
11579 return guess.tdesc;
29709017
DJ
11580
11581 /* We discard the g packet. A minor optimization would be to
11582 hold on to it, and fill the register cache once we have selected
11583 an architecture, but it's too tricky to do safely. */
11584 }
11585
b6a8c27b 11586 return beneath ()->read_description ();
29709017
DJ
11587}
11588
a6b151f1
DJ
11589/* Remote file transfer support. This is host-initiated I/O, not
11590 target-initiated; for target-initiated, see remote-fileio.c. */
11591
11592/* If *LEFT is at least the length of STRING, copy STRING to
11593 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11594 decrease *LEFT. Otherwise raise an error. */
11595
11596static void
a121b7c1 11597remote_buffer_add_string (char **buffer, int *left, const char *string)
a6b151f1
DJ
11598{
11599 int len = strlen (string);
11600
11601 if (len > *left)
11602 error (_("Packet too long for target."));
11603
11604 memcpy (*buffer, string, len);
11605 *buffer += len;
11606 *left -= len;
11607
11608 /* NUL-terminate the buffer as a convenience, if there is
11609 room. */
11610 if (*left)
11611 **buffer = '\0';
11612}
11613
11614/* If *LEFT is large enough, hex encode LEN bytes from BYTES into
11615 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11616 decrease *LEFT. Otherwise raise an error. */
11617
11618static void
11619remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes,
11620 int len)
11621{
11622 if (2 * len > *left)
11623 error (_("Packet too long for target."));
11624
11625 bin2hex (bytes, *buffer, len);
11626 *buffer += 2 * len;
11627 *left -= 2 * len;
11628
11629 /* NUL-terminate the buffer as a convenience, if there is
11630 room. */
11631 if (*left)
11632 **buffer = '\0';
11633}
11634
11635/* If *LEFT is large enough, convert VALUE to hex and add it to
11636 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11637 decrease *LEFT. Otherwise raise an error. */
11638
11639static void
11640remote_buffer_add_int (char **buffer, int *left, ULONGEST value)
11641{
11642 int len = hexnumlen (value);
11643
11644 if (len > *left)
11645 error (_("Packet too long for target."));
11646
11647 hexnumstr (*buffer, value);
11648 *buffer += len;
11649 *left -= len;
11650
11651 /* NUL-terminate the buffer as a convenience, if there is
11652 room. */
11653 if (*left)
11654 **buffer = '\0';
11655}
11656
11657/* Parse an I/O result packet from BUFFER. Set RETCODE to the return
11658 value, *REMOTE_ERRNO to the remote error number or zero if none
11659 was included, and *ATTACHMENT to point to the start of the annex
11660 if any. The length of the packet isn't needed here; there may
11661 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
11662
11663 Return 0 if the packet could be parsed, -1 if it could not. If
11664 -1 is returned, the other variables may not be initialized. */
11665
11666static int
11667remote_hostio_parse_result (char *buffer, int *retcode,
11668 int *remote_errno, char **attachment)
11669{
11670 char *p, *p2;
11671
11672 *remote_errno = 0;
11673 *attachment = NULL;
11674
11675 if (buffer[0] != 'F')
11676 return -1;
11677
11678 errno = 0;
11679 *retcode = strtol (&buffer[1], &p, 16);
11680 if (errno != 0 || p == &buffer[1])
11681 return -1;
11682
11683 /* Check for ",errno". */
11684 if (*p == ',')
11685 {
11686 errno = 0;
11687 *remote_errno = strtol (p + 1, &p2, 16);
11688 if (errno != 0 || p + 1 == p2)
11689 return -1;
11690 p = p2;
11691 }
11692
11693 /* Check for ";attachment". If there is no attachment, the
11694 packet should end here. */
11695 if (*p == ';')
11696 {
11697 *attachment = p + 1;
11698 return 0;
11699 }
11700 else if (*p == '\0')
11701 return 0;
11702 else
11703 return -1;
11704}
11705
11706/* Send a prepared I/O packet to the target and read its response.
11707 The prepared packet is in the global RS->BUF before this function
11708 is called, and the answer is there when we return.
11709
11710 COMMAND_BYTES is the length of the request to send, which may include
11711 binary data. WHICH_PACKET is the packet configuration to check
11712 before attempting a packet. If an error occurs, *REMOTE_ERRNO
11713 is set to the error number and -1 is returned. Otherwise the value
11714 returned by the function is returned.
11715
11716 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
11717 attachment is expected; an error will be reported if there's a
11718 mismatch. If one is found, *ATTACHMENT will be set to point into
11719 the packet buffer and *ATTACHMENT_LEN will be set to the
11720 attachment's length. */
11721
6b8edb51
PA
11722int
11723remote_target::remote_hostio_send_command (int command_bytes, int which_packet,
11724 int *remote_errno, char **attachment,
11725 int *attachment_len)
a6b151f1
DJ
11726{
11727 struct remote_state *rs = get_remote_state ();
11728 int ret, bytes_read;
11729 char *attachment_tmp;
11730
20db9c52 11731 if (packet_support (which_packet) == PACKET_DISABLE)
a6b151f1
DJ
11732 {
11733 *remote_errno = FILEIO_ENOSYS;
11734 return -1;
11735 }
11736
8d64371b
TT
11737 putpkt_binary (rs->buf.data (), command_bytes);
11738 bytes_read = getpkt_sane (&rs->buf, 0);
a6b151f1
DJ
11739
11740 /* If it timed out, something is wrong. Don't try to parse the
11741 buffer. */
11742 if (bytes_read < 0)
11743 {
11744 *remote_errno = FILEIO_EINVAL;
11745 return -1;
11746 }
11747
11748 switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet]))
11749 {
11750 case PACKET_ERROR:
11751 *remote_errno = FILEIO_EINVAL;
11752 return -1;
11753 case PACKET_UNKNOWN:
11754 *remote_errno = FILEIO_ENOSYS;
11755 return -1;
11756 case PACKET_OK:
11757 break;
11758 }
11759
8d64371b 11760 if (remote_hostio_parse_result (rs->buf.data (), &ret, remote_errno,
a6b151f1
DJ
11761 &attachment_tmp))
11762 {
11763 *remote_errno = FILEIO_EINVAL;
11764 return -1;
11765 }
11766
11767 /* Make sure we saw an attachment if and only if we expected one. */
11768 if ((attachment_tmp == NULL && attachment != NULL)
11769 || (attachment_tmp != NULL && attachment == NULL))
11770 {
11771 *remote_errno = FILEIO_EINVAL;
11772 return -1;
11773 }
11774
11775 /* If an attachment was found, it must point into the packet buffer;
11776 work out how many bytes there were. */
11777 if (attachment_tmp != NULL)
11778 {
11779 *attachment = attachment_tmp;
8d64371b 11780 *attachment_len = bytes_read - (*attachment - rs->buf.data ());
a6b151f1
DJ
11781 }
11782
11783 return ret;
11784}
11785
dd194f6b 11786/* See declaration.h. */
80152258 11787
dd194f6b
PA
11788void
11789readahead_cache::invalidate ()
80152258 11790{
dd194f6b 11791 this->fd = -1;
80152258
PA
11792}
11793
dd194f6b 11794/* See declaration.h. */
80152258 11795
dd194f6b
PA
11796void
11797readahead_cache::invalidate_fd (int fd)
80152258 11798{
dd194f6b
PA
11799 if (this->fd == fd)
11800 this->fd = -1;
80152258
PA
11801}
11802
15a201c8
GB
11803/* Set the filesystem remote_hostio functions that take FILENAME
11804 arguments will use. Return 0 on success, or -1 if an error
11805 occurs (and set *REMOTE_ERRNO). */
11806
6b8edb51
PA
11807int
11808remote_target::remote_hostio_set_filesystem (struct inferior *inf,
11809 int *remote_errno)
15a201c8
GB
11810{
11811 struct remote_state *rs = get_remote_state ();
11812 int required_pid = (inf == NULL || inf->fake_pid_p) ? 0 : inf->pid;
8d64371b 11813 char *p = rs->buf.data ();
15a201c8
GB
11814 int left = get_remote_packet_size () - 1;
11815 char arg[9];
11816 int ret;
11817
11818 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11819 return 0;
11820
11821 if (rs->fs_pid != -1 && required_pid == rs->fs_pid)
11822 return 0;
11823
11824 remote_buffer_add_string (&p, &left, "vFile:setfs:");
11825
11826 xsnprintf (arg, sizeof (arg), "%x", required_pid);
11827 remote_buffer_add_string (&p, &left, arg);
11828
8d64371b 11829 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_setfs,
15a201c8
GB
11830 remote_errno, NULL, NULL);
11831
11832 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11833 return 0;
11834
11835 if (ret == 0)
11836 rs->fs_pid = required_pid;
11837
11838 return ret;
11839}
11840
12e2a5fd 11841/* Implementation of to_fileio_open. */
a6b151f1 11842
6b8edb51
PA
11843int
11844remote_target::remote_hostio_open (inferior *inf, const char *filename,
11845 int flags, int mode, int warn_if_slow,
11846 int *remote_errno)
a6b151f1
DJ
11847{
11848 struct remote_state *rs = get_remote_state ();
8d64371b 11849 char *p = rs->buf.data ();
a6b151f1
DJ
11850 int left = get_remote_packet_size () - 1;
11851
4313b8c0
GB
11852 if (warn_if_slow)
11853 {
11854 static int warning_issued = 0;
11855
11856 printf_unfiltered (_("Reading %s from remote target...\n"),
11857 filename);
11858
11859 if (!warning_issued)
11860 {
11861 warning (_("File transfers from remote targets can be slow."
11862 " Use \"set sysroot\" to access files locally"
11863 " instead."));
11864 warning_issued = 1;
11865 }
11866 }
11867
15a201c8
GB
11868 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
11869 return -1;
11870
a6b151f1
DJ
11871 remote_buffer_add_string (&p, &left, "vFile:open:");
11872
11873 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
11874 strlen (filename));
11875 remote_buffer_add_string (&p, &left, ",");
11876
11877 remote_buffer_add_int (&p, &left, flags);
11878 remote_buffer_add_string (&p, &left, ",");
11879
11880 remote_buffer_add_int (&p, &left, mode);
11881
8d64371b 11882 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_open,
a6b151f1
DJ
11883 remote_errno, NULL, NULL);
11884}
11885
f6ac5f3d
PA
11886int
11887remote_target::fileio_open (struct inferior *inf, const char *filename,
11888 int flags, int mode, int warn_if_slow,
11889 int *remote_errno)
11890{
6b8edb51 11891 return remote_hostio_open (inf, filename, flags, mode, warn_if_slow,
f6ac5f3d
PA
11892 remote_errno);
11893}
11894
12e2a5fd 11895/* Implementation of to_fileio_pwrite. */
a6b151f1 11896
6b8edb51
PA
11897int
11898remote_target::remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
11899 ULONGEST offset, int *remote_errno)
a6b151f1
DJ
11900{
11901 struct remote_state *rs = get_remote_state ();
8d64371b 11902 char *p = rs->buf.data ();
a6b151f1
DJ
11903 int left = get_remote_packet_size ();
11904 int out_len;
11905
dd194f6b 11906 rs->readahead_cache.invalidate_fd (fd);
80152258 11907
a6b151f1
DJ
11908 remote_buffer_add_string (&p, &left, "vFile:pwrite:");
11909
11910 remote_buffer_add_int (&p, &left, fd);
11911 remote_buffer_add_string (&p, &left, ",");
11912
11913 remote_buffer_add_int (&p, &left, offset);
11914 remote_buffer_add_string (&p, &left, ",");
11915
124e13d9 11916 p += remote_escape_output (write_buf, len, 1, (gdb_byte *) p, &out_len,
8d64371b
TT
11917 (get_remote_packet_size ()
11918 - (p - rs->buf.data ())));
a6b151f1 11919
8d64371b 11920 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pwrite,
a6b151f1
DJ
11921 remote_errno, NULL, NULL);
11922}
11923
f6ac5f3d
PA
11924int
11925remote_target::fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
11926 ULONGEST offset, int *remote_errno)
11927{
6b8edb51 11928 return remote_hostio_pwrite (fd, write_buf, len, offset, remote_errno);
f6ac5f3d
PA
11929}
11930
80152258
PA
11931/* Helper for the implementation of to_fileio_pread. Read the file
11932 from the remote side with vFile:pread. */
a6b151f1 11933
6b8edb51
PA
11934int
11935remote_target::remote_hostio_pread_vFile (int fd, gdb_byte *read_buf, int len,
11936 ULONGEST offset, int *remote_errno)
a6b151f1
DJ
11937{
11938 struct remote_state *rs = get_remote_state ();
8d64371b 11939 char *p = rs->buf.data ();
a6b151f1
DJ
11940 char *attachment;
11941 int left = get_remote_packet_size ();
11942 int ret, attachment_len;
11943 int read_len;
11944
11945 remote_buffer_add_string (&p, &left, "vFile:pread:");
11946
11947 remote_buffer_add_int (&p, &left, fd);
11948 remote_buffer_add_string (&p, &left, ",");
11949
11950 remote_buffer_add_int (&p, &left, len);
11951 remote_buffer_add_string (&p, &left, ",");
11952
11953 remote_buffer_add_int (&p, &left, offset);
11954
8d64371b 11955 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pread,
a6b151f1
DJ
11956 remote_errno, &attachment,
11957 &attachment_len);
11958
11959 if (ret < 0)
11960 return ret;
11961
bc20a4af 11962 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
a6b151f1
DJ
11963 read_buf, len);
11964 if (read_len != ret)
11965 error (_("Read returned %d, but %d bytes."), ret, (int) read_len);
11966
11967 return ret;
11968}
11969
dd194f6b 11970/* See declaration.h. */
80152258 11971
dd194f6b
PA
11972int
11973readahead_cache::pread (int fd, gdb_byte *read_buf, size_t len,
11974 ULONGEST offset)
80152258 11975{
dd194f6b
PA
11976 if (this->fd == fd
11977 && this->offset <= offset
11978 && offset < this->offset + this->bufsize)
80152258 11979 {
dd194f6b 11980 ULONGEST max = this->offset + this->bufsize;
80152258
PA
11981
11982 if (offset + len > max)
11983 len = max - offset;
11984
dd194f6b 11985 memcpy (read_buf, this->buf + offset - this->offset, len);
80152258
PA
11986 return len;
11987 }
11988
11989 return 0;
11990}
11991
11992/* Implementation of to_fileio_pread. */
11993
6b8edb51
PA
11994int
11995remote_target::remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
11996 ULONGEST offset, int *remote_errno)
80152258
PA
11997{
11998 int ret;
11999 struct remote_state *rs = get_remote_state ();
dd194f6b 12000 readahead_cache *cache = &rs->readahead_cache;
80152258 12001
dd194f6b 12002 ret = cache->pread (fd, read_buf, len, offset);
80152258
PA
12003 if (ret > 0)
12004 {
12005 cache->hit_count++;
12006
12007 if (remote_debug)
12008 fprintf_unfiltered (gdb_stdlog, "readahead cache hit %s\n",
12009 pulongest (cache->hit_count));
12010 return ret;
12011 }
12012
12013 cache->miss_count++;
12014 if (remote_debug)
12015 fprintf_unfiltered (gdb_stdlog, "readahead cache miss %s\n",
12016 pulongest (cache->miss_count));
12017
12018 cache->fd = fd;
12019 cache->offset = offset;
12020 cache->bufsize = get_remote_packet_size ();
224c3ddb 12021 cache->buf = (gdb_byte *) xrealloc (cache->buf, cache->bufsize);
80152258 12022
6b8edb51 12023 ret = remote_hostio_pread_vFile (cache->fd, cache->buf, cache->bufsize,
80152258
PA
12024 cache->offset, remote_errno);
12025 if (ret <= 0)
12026 {
dd194f6b 12027 cache->invalidate_fd (fd);
80152258
PA
12028 return ret;
12029 }
12030
12031 cache->bufsize = ret;
dd194f6b 12032 return cache->pread (fd, read_buf, len, offset);
80152258
PA
12033}
12034
f6ac5f3d
PA
12035int
12036remote_target::fileio_pread (int fd, gdb_byte *read_buf, int len,
12037 ULONGEST offset, int *remote_errno)
12038{
6b8edb51 12039 return remote_hostio_pread (fd, read_buf, len, offset, remote_errno);
f6ac5f3d
PA
12040}
12041
12e2a5fd 12042/* Implementation of to_fileio_close. */
a6b151f1 12043
6b8edb51
PA
12044int
12045remote_target::remote_hostio_close (int fd, int *remote_errno)
a6b151f1
DJ
12046{
12047 struct remote_state *rs = get_remote_state ();
8d64371b 12048 char *p = rs->buf.data ();
a6b151f1
DJ
12049 int left = get_remote_packet_size () - 1;
12050
dd194f6b 12051 rs->readahead_cache.invalidate_fd (fd);
80152258 12052
a6b151f1
DJ
12053 remote_buffer_add_string (&p, &left, "vFile:close:");
12054
12055 remote_buffer_add_int (&p, &left, fd);
12056
8d64371b 12057 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_close,
a6b151f1
DJ
12058 remote_errno, NULL, NULL);
12059}
12060
f6ac5f3d
PA
12061int
12062remote_target::fileio_close (int fd, int *remote_errno)
12063{
6b8edb51 12064 return remote_hostio_close (fd, remote_errno);
f6ac5f3d
PA
12065}
12066
12e2a5fd 12067/* Implementation of to_fileio_unlink. */
a6b151f1 12068
6b8edb51
PA
12069int
12070remote_target::remote_hostio_unlink (inferior *inf, const char *filename,
12071 int *remote_errno)
a6b151f1
DJ
12072{
12073 struct remote_state *rs = get_remote_state ();
8d64371b 12074 char *p = rs->buf.data ();
a6b151f1
DJ
12075 int left = get_remote_packet_size () - 1;
12076
15a201c8
GB
12077 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
12078 return -1;
12079
a6b151f1
DJ
12080 remote_buffer_add_string (&p, &left, "vFile:unlink:");
12081
12082 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12083 strlen (filename));
12084
8d64371b 12085 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_unlink,
a6b151f1
DJ
12086 remote_errno, NULL, NULL);
12087}
12088
f6ac5f3d
PA
12089int
12090remote_target::fileio_unlink (struct inferior *inf, const char *filename,
12091 int *remote_errno)
12092{
6b8edb51 12093 return remote_hostio_unlink (inf, filename, remote_errno);
f6ac5f3d
PA
12094}
12095
12e2a5fd 12096/* Implementation of to_fileio_readlink. */
b9e7b9c3 12097
f6ac5f3d
PA
12098gdb::optional<std::string>
12099remote_target::fileio_readlink (struct inferior *inf, const char *filename,
12100 int *remote_errno)
b9e7b9c3
UW
12101{
12102 struct remote_state *rs = get_remote_state ();
8d64371b 12103 char *p = rs->buf.data ();
b9e7b9c3
UW
12104 char *attachment;
12105 int left = get_remote_packet_size ();
12106 int len, attachment_len;
12107 int read_len;
b9e7b9c3 12108
15a201c8 12109 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
e0d3522b 12110 return {};
15a201c8 12111
b9e7b9c3
UW
12112 remote_buffer_add_string (&p, &left, "vFile:readlink:");
12113
12114 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12115 strlen (filename));
12116
8d64371b 12117 len = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_readlink,
b9e7b9c3
UW
12118 remote_errno, &attachment,
12119 &attachment_len);
12120
12121 if (len < 0)
e0d3522b 12122 return {};
b9e7b9c3 12123
e0d3522b 12124 std::string ret (len, '\0');
b9e7b9c3 12125
bc20a4af 12126 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
e0d3522b 12127 (gdb_byte *) &ret[0], len);
b9e7b9c3
UW
12128 if (read_len != len)
12129 error (_("Readlink returned %d, but %d bytes."), len, read_len);
12130
b9e7b9c3
UW
12131 return ret;
12132}
12133
12e2a5fd 12134/* Implementation of to_fileio_fstat. */
0a93529c 12135
f6ac5f3d
PA
12136int
12137remote_target::fileio_fstat (int fd, struct stat *st, int *remote_errno)
0a93529c
GB
12138{
12139 struct remote_state *rs = get_remote_state ();
8d64371b 12140 char *p = rs->buf.data ();
0a93529c
GB
12141 int left = get_remote_packet_size ();
12142 int attachment_len, ret;
12143 char *attachment;
12144 struct fio_stat fst;
12145 int read_len;
12146
464b0089
GB
12147 remote_buffer_add_string (&p, &left, "vFile:fstat:");
12148
12149 remote_buffer_add_int (&p, &left, fd);
12150
8d64371b 12151 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_fstat,
464b0089
GB
12152 remote_errno, &attachment,
12153 &attachment_len);
12154 if (ret < 0)
0a93529c 12155 {
464b0089
GB
12156 if (*remote_errno != FILEIO_ENOSYS)
12157 return ret;
12158
0a93529c
GB
12159 /* Strictly we should return -1, ENOSYS here, but when
12160 "set sysroot remote:" was implemented in August 2008
12161 BFD's need for a stat function was sidestepped with
12162 this hack. This was not remedied until March 2015
12163 so we retain the previous behavior to avoid breaking
12164 compatibility.
12165
12166 Note that the memset is a March 2015 addition; older
12167 GDBs set st_size *and nothing else* so the structure
12168 would have garbage in all other fields. This might
12169 break something but retaining the previous behavior
12170 here would be just too wrong. */
12171
12172 memset (st, 0, sizeof (struct stat));
12173 st->st_size = INT_MAX;
12174 return 0;
12175 }
12176
0a93529c
GB
12177 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
12178 (gdb_byte *) &fst, sizeof (fst));
12179
12180 if (read_len != ret)
12181 error (_("vFile:fstat returned %d, but %d bytes."), ret, read_len);
12182
12183 if (read_len != sizeof (fst))
12184 error (_("vFile:fstat returned %d bytes, but expecting %d."),
12185 read_len, (int) sizeof (fst));
12186
12187 remote_fileio_to_host_stat (&fst, st);
12188
12189 return 0;
12190}
12191
12e2a5fd 12192/* Implementation of to_filesystem_is_local. */
e3dd7556 12193
57810aa7 12194bool
f6ac5f3d 12195remote_target::filesystem_is_local ()
e3dd7556
GB
12196{
12197 /* Valgrind GDB presents itself as a remote target but works
12198 on the local filesystem: it does not implement remote get
12199 and users are not expected to set a sysroot. To handle
12200 this case we treat the remote filesystem as local if the
12201 sysroot is exactly TARGET_SYSROOT_PREFIX and if the stub
12202 does not support vFile:open. */
a3be80c3 12203 if (strcmp (gdb_sysroot, TARGET_SYSROOT_PREFIX) == 0)
e3dd7556
GB
12204 {
12205 enum packet_support ps = packet_support (PACKET_vFile_open);
12206
12207 if (ps == PACKET_SUPPORT_UNKNOWN)
12208 {
12209 int fd, remote_errno;
12210
12211 /* Try opening a file to probe support. The supplied
12212 filename is irrelevant, we only care about whether
12213 the stub recognizes the packet or not. */
6b8edb51 12214 fd = remote_hostio_open (NULL, "just probing",
4313b8c0 12215 FILEIO_O_RDONLY, 0700, 0,
e3dd7556
GB
12216 &remote_errno);
12217
12218 if (fd >= 0)
6b8edb51 12219 remote_hostio_close (fd, &remote_errno);
e3dd7556
GB
12220
12221 ps = packet_support (PACKET_vFile_open);
12222 }
12223
12224 if (ps == PACKET_DISABLE)
12225 {
12226 static int warning_issued = 0;
12227
12228 if (!warning_issued)
12229 {
12230 warning (_("remote target does not support file"
12231 " transfer, attempting to access files"
12232 " from local filesystem."));
12233 warning_issued = 1;
12234 }
12235
57810aa7 12236 return true;
e3dd7556
GB
12237 }
12238 }
12239
57810aa7 12240 return false;
e3dd7556
GB
12241}
12242
a6b151f1
DJ
12243static int
12244remote_fileio_errno_to_host (int errnum)
12245{
12246 switch (errnum)
12247 {
12248 case FILEIO_EPERM:
12249 return EPERM;
12250 case FILEIO_ENOENT:
12251 return ENOENT;
12252 case FILEIO_EINTR:
12253 return EINTR;
12254 case FILEIO_EIO:
12255 return EIO;
12256 case FILEIO_EBADF:
12257 return EBADF;
12258 case FILEIO_EACCES:
12259 return EACCES;
12260 case FILEIO_EFAULT:
12261 return EFAULT;
12262 case FILEIO_EBUSY:
12263 return EBUSY;
12264 case FILEIO_EEXIST:
12265 return EEXIST;
12266 case FILEIO_ENODEV:
12267 return ENODEV;
12268 case FILEIO_ENOTDIR:
12269 return ENOTDIR;
12270 case FILEIO_EISDIR:
12271 return EISDIR;
12272 case FILEIO_EINVAL:
12273 return EINVAL;
12274 case FILEIO_ENFILE:
12275 return ENFILE;
12276 case FILEIO_EMFILE:
12277 return EMFILE;
12278 case FILEIO_EFBIG:
12279 return EFBIG;
12280 case FILEIO_ENOSPC:
12281 return ENOSPC;
12282 case FILEIO_ESPIPE:
12283 return ESPIPE;
12284 case FILEIO_EROFS:
12285 return EROFS;
12286 case FILEIO_ENOSYS:
12287 return ENOSYS;
12288 case FILEIO_ENAMETOOLONG:
12289 return ENAMETOOLONG;
12290 }
12291 return -1;
12292}
12293
12294static char *
12295remote_hostio_error (int errnum)
12296{
12297 int host_error = remote_fileio_errno_to_host (errnum);
12298
12299 if (host_error == -1)
12300 error (_("Unknown remote I/O error %d"), errnum);
12301 else
12302 error (_("Remote I/O error: %s"), safe_strerror (host_error));
12303}
12304
440b7aec
PA
12305/* A RAII wrapper around a remote file descriptor. */
12306
12307class scoped_remote_fd
a6b151f1 12308{
440b7aec 12309public:
6b8edb51
PA
12310 scoped_remote_fd (remote_target *remote, int fd)
12311 : m_remote (remote), m_fd (fd)
440b7aec
PA
12312 {
12313 }
a6b151f1 12314
440b7aec
PA
12315 ~scoped_remote_fd ()
12316 {
12317 if (m_fd != -1)
12318 {
12319 try
12320 {
12321 int remote_errno;
6b8edb51 12322 m_remote->remote_hostio_close (m_fd, &remote_errno);
440b7aec
PA
12323 }
12324 catch (...)
12325 {
12326 /* Swallow exception before it escapes the dtor. If
12327 something goes wrong, likely the connection is gone,
12328 and there's nothing else that can be done. */
12329 }
12330 }
12331 }
12332
12333 DISABLE_COPY_AND_ASSIGN (scoped_remote_fd);
12334
12335 /* Release ownership of the file descriptor, and return it. */
88a774b9 12336 ATTRIBUTE_UNUSED_RESULT int release () noexcept
440b7aec
PA
12337 {
12338 int fd = m_fd;
12339 m_fd = -1;
12340 return fd;
12341 }
12342
12343 /* Return the owned file descriptor. */
12344 int get () const noexcept
12345 {
12346 return m_fd;
12347 }
12348
12349private:
6b8edb51
PA
12350 /* The remote target. */
12351 remote_target *m_remote;
12352
440b7aec
PA
12353 /* The owned remote I/O file descriptor. */
12354 int m_fd;
12355};
a6b151f1
DJ
12356
12357void
12358remote_file_put (const char *local_file, const char *remote_file, int from_tty)
6b8edb51
PA
12359{
12360 remote_target *remote = get_current_remote_target ();
12361
12362 if (remote == nullptr)
12363 error (_("command can only be used with remote target"));
12364
12365 remote->remote_file_put (local_file, remote_file, from_tty);
12366}
12367
12368void
12369remote_target::remote_file_put (const char *local_file, const char *remote_file,
12370 int from_tty)
a6b151f1 12371{
440b7aec 12372 int retcode, remote_errno, bytes, io_size;
a6b151f1
DJ
12373 int bytes_in_buffer;
12374 int saw_eof;
12375 ULONGEST offset;
a6b151f1 12376
d419f42d 12377 gdb_file_up file = gdb_fopen_cloexec (local_file, "rb");
a6b151f1
DJ
12378 if (file == NULL)
12379 perror_with_name (local_file);
a6b151f1 12380
440b7aec 12381 scoped_remote_fd fd
6b8edb51
PA
12382 (this, remote_hostio_open (NULL,
12383 remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT
12384 | FILEIO_O_TRUNC),
12385 0700, 0, &remote_errno));
440b7aec 12386 if (fd.get () == -1)
a6b151f1
DJ
12387 remote_hostio_error (remote_errno);
12388
12389 /* Send up to this many bytes at once. They won't all fit in the
12390 remote packet limit, so we'll transfer slightly fewer. */
12391 io_size = get_remote_packet_size ();
5ca3b260 12392 gdb::byte_vector buffer (io_size);
a6b151f1 12393
a6b151f1
DJ
12394 bytes_in_buffer = 0;
12395 saw_eof = 0;
12396 offset = 0;
12397 while (bytes_in_buffer || !saw_eof)
12398 {
12399 if (!saw_eof)
12400 {
5ca3b260 12401 bytes = fread (buffer.data () + bytes_in_buffer, 1,
3e43a32a 12402 io_size - bytes_in_buffer,
d419f42d 12403 file.get ());
a6b151f1
DJ
12404 if (bytes == 0)
12405 {
d419f42d 12406 if (ferror (file.get ()))
a6b151f1
DJ
12407 error (_("Error reading %s."), local_file);
12408 else
12409 {
12410 /* EOF. Unless there is something still in the
12411 buffer from the last iteration, we are done. */
12412 saw_eof = 1;
12413 if (bytes_in_buffer == 0)
12414 break;
12415 }
12416 }
12417 }
12418 else
12419 bytes = 0;
12420
12421 bytes += bytes_in_buffer;
12422 bytes_in_buffer = 0;
12423
5ca3b260 12424 retcode = remote_hostio_pwrite (fd.get (), buffer.data (), bytes,
3e43a32a 12425 offset, &remote_errno);
a6b151f1
DJ
12426
12427 if (retcode < 0)
12428 remote_hostio_error (remote_errno);
12429 else if (retcode == 0)
12430 error (_("Remote write of %d bytes returned 0!"), bytes);
12431 else if (retcode < bytes)
12432 {
12433 /* Short write. Save the rest of the read data for the next
12434 write. */
12435 bytes_in_buffer = bytes - retcode;
5ca3b260 12436 memmove (buffer.data (), buffer.data () + retcode, bytes_in_buffer);
a6b151f1
DJ
12437 }
12438
12439 offset += retcode;
12440 }
12441
6b8edb51 12442 if (remote_hostio_close (fd.release (), &remote_errno))
a6b151f1
DJ
12443 remote_hostio_error (remote_errno);
12444
12445 if (from_tty)
12446 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file);
a6b151f1
DJ
12447}
12448
12449void
12450remote_file_get (const char *remote_file, const char *local_file, int from_tty)
6b8edb51
PA
12451{
12452 remote_target *remote = get_current_remote_target ();
12453
12454 if (remote == nullptr)
12455 error (_("command can only be used with remote target"));
12456
12457 remote->remote_file_get (remote_file, local_file, from_tty);
12458}
12459
12460void
12461remote_target::remote_file_get (const char *remote_file, const char *local_file,
12462 int from_tty)
a6b151f1 12463{
440b7aec 12464 int remote_errno, bytes, io_size;
a6b151f1 12465 ULONGEST offset;
a6b151f1 12466
440b7aec 12467 scoped_remote_fd fd
6b8edb51
PA
12468 (this, remote_hostio_open (NULL,
12469 remote_file, FILEIO_O_RDONLY, 0, 0,
12470 &remote_errno));
440b7aec 12471 if (fd.get () == -1)
a6b151f1
DJ
12472 remote_hostio_error (remote_errno);
12473
d419f42d 12474 gdb_file_up file = gdb_fopen_cloexec (local_file, "wb");
a6b151f1
DJ
12475 if (file == NULL)
12476 perror_with_name (local_file);
a6b151f1
DJ
12477
12478 /* Send up to this many bytes at once. They won't all fit in the
12479 remote packet limit, so we'll transfer slightly fewer. */
12480 io_size = get_remote_packet_size ();
5ca3b260 12481 gdb::byte_vector buffer (io_size);
a6b151f1 12482
a6b151f1
DJ
12483 offset = 0;
12484 while (1)
12485 {
5ca3b260 12486 bytes = remote_hostio_pread (fd.get (), buffer.data (), io_size, offset,
440b7aec 12487 &remote_errno);
a6b151f1
DJ
12488 if (bytes == 0)
12489 /* Success, but no bytes, means end-of-file. */
12490 break;
12491 if (bytes == -1)
12492 remote_hostio_error (remote_errno);
12493
12494 offset += bytes;
12495
5ca3b260 12496 bytes = fwrite (buffer.data (), 1, bytes, file.get ());
a6b151f1
DJ
12497 if (bytes == 0)
12498 perror_with_name (local_file);
12499 }
12500
6b8edb51 12501 if (remote_hostio_close (fd.release (), &remote_errno))
a6b151f1
DJ
12502 remote_hostio_error (remote_errno);
12503
12504 if (from_tty)
12505 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file);
a6b151f1
DJ
12506}
12507
12508void
12509remote_file_delete (const char *remote_file, int from_tty)
12510{
6b8edb51 12511 remote_target *remote = get_current_remote_target ();
a6b151f1 12512
6b8edb51 12513 if (remote == nullptr)
a6b151f1
DJ
12514 error (_("command can only be used with remote target"));
12515
6b8edb51
PA
12516 remote->remote_file_delete (remote_file, from_tty);
12517}
12518
12519void
12520remote_target::remote_file_delete (const char *remote_file, int from_tty)
12521{
12522 int retcode, remote_errno;
12523
12524 retcode = remote_hostio_unlink (NULL, remote_file, &remote_errno);
a6b151f1
DJ
12525 if (retcode == -1)
12526 remote_hostio_error (remote_errno);
12527
12528 if (from_tty)
12529 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file);
12530}
12531
12532static void
ac88e2de 12533remote_put_command (const char *args, int from_tty)
a6b151f1 12534{
d1a41061
PP
12535 if (args == NULL)
12536 error_no_arg (_("file to put"));
12537
773a1edc 12538 gdb_argv argv (args);
a6b151f1
DJ
12539 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12540 error (_("Invalid parameters to remote put"));
12541
12542 remote_file_put (argv[0], argv[1], from_tty);
a6b151f1
DJ
12543}
12544
12545static void
ac88e2de 12546remote_get_command (const char *args, int from_tty)
a6b151f1 12547{
d1a41061
PP
12548 if (args == NULL)
12549 error_no_arg (_("file to get"));
12550
773a1edc 12551 gdb_argv argv (args);
a6b151f1
DJ
12552 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12553 error (_("Invalid parameters to remote get"));
12554
12555 remote_file_get (argv[0], argv[1], from_tty);
a6b151f1
DJ
12556}
12557
12558static void
ac88e2de 12559remote_delete_command (const char *args, int from_tty)
a6b151f1 12560{
d1a41061
PP
12561 if (args == NULL)
12562 error_no_arg (_("file to delete"));
12563
773a1edc 12564 gdb_argv argv (args);
a6b151f1
DJ
12565 if (argv[0] == NULL || argv[1] != NULL)
12566 error (_("Invalid parameters to remote delete"));
12567
12568 remote_file_delete (argv[0], from_tty);
a6b151f1
DJ
12569}
12570
12571static void
981a3fb3 12572remote_command (const char *args, int from_tty)
a6b151f1 12573{
635c7e8a 12574 help_list (remote_cmdlist, "remote ", all_commands, gdb_stdout);
a6b151f1
DJ
12575}
12576
57810aa7 12577bool
f6ac5f3d 12578remote_target::can_execute_reverse ()
b2175913 12579{
4082afcc
PA
12580 if (packet_support (PACKET_bs) == PACKET_ENABLE
12581 || packet_support (PACKET_bc) == PACKET_ENABLE)
57810aa7 12582 return true;
40ab02ce 12583 else
57810aa7 12584 return false;
b2175913
MS
12585}
12586
57810aa7 12587bool
f6ac5f3d 12588remote_target::supports_non_stop ()
74531fed 12589{
57810aa7 12590 return true;
74531fed
PA
12591}
12592
57810aa7 12593bool
f6ac5f3d 12594remote_target::supports_disable_randomization ()
03583c20
UW
12595{
12596 /* Only supported in extended mode. */
57810aa7 12597 return false;
03583c20
UW
12598}
12599
57810aa7 12600bool
f6ac5f3d 12601remote_target::supports_multi_process ()
8a305172
PA
12602{
12603 struct remote_state *rs = get_remote_state ();
a744cf53 12604
8020350c 12605 return remote_multi_process_p (rs);
8a305172
PA
12606}
12607
70221824 12608static int
f6ac5f3d 12609remote_supports_cond_tracepoints ()
782b2b07 12610{
4082afcc 12611 return packet_support (PACKET_ConditionalTracepoints) == PACKET_ENABLE;
782b2b07
SS
12612}
12613
57810aa7 12614bool
f6ac5f3d 12615remote_target::supports_evaluation_of_breakpoint_conditions ()
3788aec7 12616{
4082afcc 12617 return packet_support (PACKET_ConditionalBreakpoints) == PACKET_ENABLE;
3788aec7
LM
12618}
12619
70221824 12620static int
f6ac5f3d 12621remote_supports_fast_tracepoints ()
7a697b8d 12622{
4082afcc 12623 return packet_support (PACKET_FastTracepoints) == PACKET_ENABLE;
7a697b8d
SS
12624}
12625
0fb4aa4b 12626static int
f6ac5f3d 12627remote_supports_static_tracepoints ()
0fb4aa4b 12628{
4082afcc 12629 return packet_support (PACKET_StaticTracepoints) == PACKET_ENABLE;
0fb4aa4b
PA
12630}
12631
1e4d1764 12632static int
f6ac5f3d 12633remote_supports_install_in_trace ()
1e4d1764 12634{
4082afcc 12635 return packet_support (PACKET_InstallInTrace) == PACKET_ENABLE;
1e4d1764
YQ
12636}
12637
57810aa7 12638bool
f6ac5f3d 12639remote_target::supports_enable_disable_tracepoint ()
d248b706 12640{
4082afcc
PA
12641 return (packet_support (PACKET_EnableDisableTracepoints_feature)
12642 == PACKET_ENABLE);
d248b706
KY
12643}
12644
57810aa7 12645bool
f6ac5f3d 12646remote_target::supports_string_tracing ()
3065dfb6 12647{
4082afcc 12648 return packet_support (PACKET_tracenz_feature) == PACKET_ENABLE;
3065dfb6
SS
12649}
12650
57810aa7 12651bool
f6ac5f3d 12652remote_target::can_run_breakpoint_commands ()
d3ce09f5 12653{
4082afcc 12654 return packet_support (PACKET_BreakpointCommands) == PACKET_ENABLE;
d3ce09f5
SS
12655}
12656
f6ac5f3d
PA
12657void
12658remote_target::trace_init ()
35b1e5cc 12659{
b6bb3468
PA
12660 struct remote_state *rs = get_remote_state ();
12661
35b1e5cc 12662 putpkt ("QTinit");
b6bb3468 12663 remote_get_noisy_reply ();
8d64371b 12664 if (strcmp (rs->buf.data (), "OK") != 0)
35b1e5cc
SS
12665 error (_("Target does not support this command."));
12666}
12667
409873ef
SS
12668/* Recursive routine to walk through command list including loops, and
12669 download packets for each command. */
12670
6b8edb51
PA
12671void
12672remote_target::remote_download_command_source (int num, ULONGEST addr,
12673 struct command_line *cmds)
409873ef
SS
12674{
12675 struct remote_state *rs = get_remote_state ();
12676 struct command_line *cmd;
12677
12678 for (cmd = cmds; cmd; cmd = cmd->next)
12679 {
0df8b418 12680 QUIT; /* Allow user to bail out with ^C. */
8d64371b 12681 strcpy (rs->buf.data (), "QTDPsrc:");
409873ef 12682 encode_source_string (num, addr, "cmd", cmd->line,
8d64371b
TT
12683 rs->buf.data () + strlen (rs->buf.data ()),
12684 rs->buf.size () - strlen (rs->buf.data ()));
409873ef 12685 putpkt (rs->buf);
b6bb3468 12686 remote_get_noisy_reply ();
8d64371b 12687 if (strcmp (rs->buf.data (), "OK"))
409873ef
SS
12688 warning (_("Target does not support source download."));
12689
12690 if (cmd->control_type == while_control
12691 || cmd->control_type == while_stepping_control)
12692 {
12973681 12693 remote_download_command_source (num, addr, cmd->body_list_0.get ());
409873ef 12694
0df8b418 12695 QUIT; /* Allow user to bail out with ^C. */
8d64371b 12696 strcpy (rs->buf.data (), "QTDPsrc:");
409873ef 12697 encode_source_string (num, addr, "cmd", "end",
8d64371b
TT
12698 rs->buf.data () + strlen (rs->buf.data ()),
12699 rs->buf.size () - strlen (rs->buf.data ()));
409873ef 12700 putpkt (rs->buf);
b6bb3468 12701 remote_get_noisy_reply ();
8d64371b 12702 if (strcmp (rs->buf.data (), "OK"))
409873ef
SS
12703 warning (_("Target does not support source download."));
12704 }
12705 }
12706}
12707
f6ac5f3d
PA
12708void
12709remote_target::download_tracepoint (struct bp_location *loc)
35b1e5cc
SS
12710{
12711 CORE_ADDR tpaddr;
409873ef 12712 char addrbuf[40];
b44ec619
SM
12713 std::vector<std::string> tdp_actions;
12714 std::vector<std::string> stepping_actions;
35b1e5cc 12715 char *pkt;
e8ba3115 12716 struct breakpoint *b = loc->owner;
d9b3f62e 12717 struct tracepoint *t = (struct tracepoint *) b;
b6bb3468 12718 struct remote_state *rs = get_remote_state ();
3df3a985 12719 int ret;
ff36536c 12720 const char *err_msg = _("Tracepoint packet too large for target.");
3df3a985
PFC
12721 size_t size_left;
12722
12723 /* We use a buffer other than rs->buf because we'll build strings
12724 across multiple statements, and other statements in between could
12725 modify rs->buf. */
12726 gdb::char_vector buf (get_remote_packet_size ());
35b1e5cc 12727
dc673c81 12728 encode_actions_rsp (loc, &tdp_actions, &stepping_actions);
e8ba3115
YQ
12729
12730 tpaddr = loc->address;
12731 sprintf_vma (addrbuf, tpaddr);
3df3a985
PFC
12732 ret = snprintf (buf.data (), buf.size (), "QTDP:%x:%s:%c:%lx:%x",
12733 b->number, addrbuf, /* address */
12734 (b->enable_state == bp_enabled ? 'E' : 'D'),
12735 t->step_count, t->pass_count);
12736
12737 if (ret < 0 || ret >= buf.size ())
a7f25a84 12738 error ("%s", err_msg);
3df3a985 12739
e8ba3115
YQ
12740 /* Fast tracepoints are mostly handled by the target, but we can
12741 tell the target how big of an instruction block should be moved
12742 around. */
12743 if (b->type == bp_fast_tracepoint)
12744 {
12745 /* Only test for support at download time; we may not know
12746 target capabilities at definition time. */
12747 if (remote_supports_fast_tracepoints ())
35b1e5cc 12748 {
6b940e6a
PL
12749 if (gdbarch_fast_tracepoint_valid_at (loc->gdbarch, tpaddr,
12750 NULL))
3df3a985
PFC
12751 {
12752 size_left = buf.size () - strlen (buf.data ());
12753 ret = snprintf (buf.data () + strlen (buf.data ()),
12754 size_left, ":F%x",
12755 gdb_insn_length (loc->gdbarch, tpaddr));
12756
12757 if (ret < 0 || ret >= size_left)
a7f25a84 12758 error ("%s", err_msg);
3df3a985 12759 }
35b1e5cc 12760 else
e8ba3115
YQ
12761 /* If it passed validation at definition but fails now,
12762 something is very wrong. */
12763 internal_error (__FILE__, __LINE__,
12764 _("Fast tracepoint not "
12765 "valid during download"));
35b1e5cc 12766 }
e8ba3115
YQ
12767 else
12768 /* Fast tracepoints are functionally identical to regular
12769 tracepoints, so don't take lack of support as a reason to
12770 give up on the trace run. */
12771 warning (_("Target does not support fast tracepoints, "
12772 "downloading %d as regular tracepoint"), b->number);
12773 }
12774 else if (b->type == bp_static_tracepoint)
12775 {
12776 /* Only test for support at download time; we may not know
12777 target capabilities at definition time. */
12778 if (remote_supports_static_tracepoints ())
0fb4aa4b 12779 {
e8ba3115 12780 struct static_tracepoint_marker marker;
0fb4aa4b 12781
e8ba3115 12782 if (target_static_tracepoint_marker_at (tpaddr, &marker))
3df3a985
PFC
12783 {
12784 size_left = buf.size () - strlen (buf.data ());
12785 ret = snprintf (buf.data () + strlen (buf.data ()),
12786 size_left, ":S");
12787
12788 if (ret < 0 || ret >= size_left)
a7f25a84 12789 error ("%s", err_msg);
3df3a985 12790 }
0fb4aa4b 12791 else
e8ba3115 12792 error (_("Static tracepoint not valid during download"));
0fb4aa4b 12793 }
e8ba3115
YQ
12794 else
12795 /* Fast tracepoints are functionally identical to regular
12796 tracepoints, so don't take lack of support as a reason
12797 to give up on the trace run. */
12798 error (_("Target does not support static tracepoints"));
12799 }
12800 /* If the tracepoint has a conditional, make it into an agent
12801 expression and append to the definition. */
12802 if (loc->cond)
12803 {
12804 /* Only test support at download time, we may not know target
12805 capabilities at definition time. */
12806 if (remote_supports_cond_tracepoints ())
35b1e5cc 12807 {
3df3a985
PFC
12808 agent_expr_up aexpr = gen_eval_for_expr (tpaddr,
12809 loc->cond.get ());
12810
12811 size_left = buf.size () - strlen (buf.data ());
12812
12813 ret = snprintf (buf.data () + strlen (buf.data ()),
12814 size_left, ":X%x,", aexpr->len);
12815
12816 if (ret < 0 || ret >= size_left)
a7f25a84 12817 error ("%s", err_msg);
3df3a985
PFC
12818
12819 size_left = buf.size () - strlen (buf.data ());
12820
12821 /* Two bytes to encode each aexpr byte, plus the terminating
12822 null byte. */
12823 if (aexpr->len * 2 + 1 > size_left)
a7f25a84 12824 error ("%s", err_msg);
3df3a985
PFC
12825
12826 pkt = buf.data () + strlen (buf.data ());
12827
b44ec619 12828 for (int ndx = 0; ndx < aexpr->len; ++ndx)
e8ba3115
YQ
12829 pkt = pack_hex_byte (pkt, aexpr->buf[ndx]);
12830 *pkt = '\0';
35b1e5cc 12831 }
e8ba3115
YQ
12832 else
12833 warning (_("Target does not support conditional tracepoints, "
12834 "ignoring tp %d cond"), b->number);
12835 }
35b1e5cc 12836
d9b3f62e 12837 if (b->commands || *default_collect)
3df3a985
PFC
12838 {
12839 size_left = buf.size () - strlen (buf.data ());
12840
12841 ret = snprintf (buf.data () + strlen (buf.data ()),
12842 size_left, "-");
12843
12844 if (ret < 0 || ret >= size_left)
a7f25a84 12845 error ("%s", err_msg);
3df3a985
PFC
12846 }
12847
12848 putpkt (buf.data ());
b6bb3468 12849 remote_get_noisy_reply ();
8d64371b 12850 if (strcmp (rs->buf.data (), "OK"))
e8ba3115 12851 error (_("Target does not support tracepoints."));
35b1e5cc 12852
e8ba3115 12853 /* do_single_steps (t); */
b44ec619
SM
12854 for (auto action_it = tdp_actions.begin ();
12855 action_it != tdp_actions.end (); action_it++)
e8ba3115 12856 {
b44ec619
SM
12857 QUIT; /* Allow user to bail out with ^C. */
12858
aa6f3694 12859 bool has_more = ((action_it + 1) != tdp_actions.end ()
b44ec619
SM
12860 || !stepping_actions.empty ());
12861
3df3a985
PFC
12862 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%c",
12863 b->number, addrbuf, /* address */
12864 action_it->c_str (),
12865 has_more ? '-' : 0);
12866
12867 if (ret < 0 || ret >= buf.size ())
a7f25a84 12868 error ("%s", err_msg);
3df3a985
PFC
12869
12870 putpkt (buf.data ());
b44ec619 12871 remote_get_noisy_reply ();
8d64371b 12872 if (strcmp (rs->buf.data (), "OK"))
b44ec619 12873 error (_("Error on target while setting tracepoints."));
e8ba3115 12874 }
409873ef 12875
05abfc39
PFC
12876 for (auto action_it = stepping_actions.begin ();
12877 action_it != stepping_actions.end (); action_it++)
12878 {
12879 QUIT; /* Allow user to bail out with ^C. */
12880
12881 bool is_first = action_it == stepping_actions.begin ();
aa6f3694 12882 bool has_more = (action_it + 1) != stepping_actions.end ();
05abfc39 12883
3df3a985
PFC
12884 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%s%s",
12885 b->number, addrbuf, /* address */
12886 is_first ? "S" : "",
12887 action_it->c_str (),
12888 has_more ? "-" : "");
12889
12890 if (ret < 0 || ret >= buf.size ())
a7f25a84 12891 error ("%s", err_msg);
3df3a985
PFC
12892
12893 putpkt (buf.data ());
05abfc39 12894 remote_get_noisy_reply ();
8d64371b 12895 if (strcmp (rs->buf.data (), "OK"))
05abfc39
PFC
12896 error (_("Error on target while setting tracepoints."));
12897 }
b44ec619 12898
4082afcc 12899 if (packet_support (PACKET_TracepointSource) == PACKET_ENABLE)
e8ba3115 12900 {
f00aae0f 12901 if (b->location != NULL)
409873ef 12902 {
3df3a985
PFC
12903 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
12904
12905 if (ret < 0 || ret >= buf.size ())
a7f25a84 12906 error ("%s", err_msg);
3df3a985 12907
f00aae0f 12908 encode_source_string (b->number, loc->address, "at",
d28cd78a 12909 event_location_to_string (b->location.get ()),
3df3a985
PFC
12910 buf.data () + strlen (buf.data ()),
12911 buf.size () - strlen (buf.data ()));
12912 putpkt (buf.data ());
b6bb3468 12913 remote_get_noisy_reply ();
8d64371b 12914 if (strcmp (rs->buf.data (), "OK"))
e8ba3115 12915 warning (_("Target does not support source download."));
409873ef 12916 }
e8ba3115
YQ
12917 if (b->cond_string)
12918 {
3df3a985
PFC
12919 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
12920
12921 if (ret < 0 || ret >= buf.size ())
a7f25a84 12922 error ("%s", err_msg);
3df3a985 12923
e8ba3115 12924 encode_source_string (b->number, loc->address,
3df3a985
PFC
12925 "cond", b->cond_string,
12926 buf.data () + strlen (buf.data ()),
12927 buf.size () - strlen (buf.data ()));
12928 putpkt (buf.data ());
b6bb3468 12929 remote_get_noisy_reply ();
8d64371b 12930 if (strcmp (rs->buf.data (), "OK"))
e8ba3115
YQ
12931 warning (_("Target does not support source download."));
12932 }
12933 remote_download_command_source (b->number, loc->address,
12934 breakpoint_commands (b));
35b1e5cc 12935 }
35b1e5cc
SS
12936}
12937
57810aa7 12938bool
f6ac5f3d 12939remote_target::can_download_tracepoint ()
1e4d1764 12940{
1e51243a
PA
12941 struct remote_state *rs = get_remote_state ();
12942 struct trace_status *ts;
12943 int status;
12944
12945 /* Don't try to install tracepoints until we've relocated our
12946 symbols, and fetched and merged the target's tracepoint list with
12947 ours. */
12948 if (rs->starting_up)
57810aa7 12949 return false;
1e51243a
PA
12950
12951 ts = current_trace_status ();
f6ac5f3d 12952 status = get_trace_status (ts);
1e4d1764
YQ
12953
12954 if (status == -1 || !ts->running_known || !ts->running)
57810aa7 12955 return false;
1e4d1764
YQ
12956
12957 /* If we are in a tracing experiment, but remote stub doesn't support
12958 installing tracepoint in trace, we have to return. */
12959 if (!remote_supports_install_in_trace ())
57810aa7 12960 return false;
1e4d1764 12961
57810aa7 12962 return true;
1e4d1764
YQ
12963}
12964
12965
f6ac5f3d
PA
12966void
12967remote_target::download_trace_state_variable (const trace_state_variable &tsv)
35b1e5cc
SS
12968{
12969 struct remote_state *rs = get_remote_state ();
00bf0b85 12970 char *p;
35b1e5cc 12971
8d64371b 12972 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDV:%x:%s:%x:",
c252925c
SM
12973 tsv.number, phex ((ULONGEST) tsv.initial_value, 8),
12974 tsv.builtin);
8d64371b
TT
12975 p = rs->buf.data () + strlen (rs->buf.data ());
12976 if ((p - rs->buf.data ()) + tsv.name.length () * 2
12977 >= get_remote_packet_size ())
00bf0b85 12978 error (_("Trace state variable name too long for tsv definition packet"));
c252925c 12979 p += 2 * bin2hex ((gdb_byte *) (tsv.name.data ()), p, tsv.name.length ());
00bf0b85 12980 *p++ = '\0';
35b1e5cc 12981 putpkt (rs->buf);
b6bb3468 12982 remote_get_noisy_reply ();
8d64371b 12983 if (rs->buf[0] == '\0')
ad91cd99 12984 error (_("Target does not support this command."));
8d64371b 12985 if (strcmp (rs->buf.data (), "OK") != 0)
ad91cd99 12986 error (_("Error on target while downloading trace state variable."));
35b1e5cc
SS
12987}
12988
f6ac5f3d
PA
12989void
12990remote_target::enable_tracepoint (struct bp_location *location)
d248b706
KY
12991{
12992 struct remote_state *rs = get_remote_state ();
12993 char addr_buf[40];
12994
12995 sprintf_vma (addr_buf, location->address);
8d64371b 12996 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTEnable:%x:%s",
bba74b36 12997 location->owner->number, addr_buf);
d248b706 12998 putpkt (rs->buf);
b6bb3468 12999 remote_get_noisy_reply ();
8d64371b 13000 if (rs->buf[0] == '\0')
d248b706 13001 error (_("Target does not support enabling tracepoints while a trace run is ongoing."));
8d64371b 13002 if (strcmp (rs->buf.data (), "OK") != 0)
d248b706
KY
13003 error (_("Error on target while enabling tracepoint."));
13004}
13005
f6ac5f3d
PA
13006void
13007remote_target::disable_tracepoint (struct bp_location *location)
d248b706
KY
13008{
13009 struct remote_state *rs = get_remote_state ();
13010 char addr_buf[40];
13011
13012 sprintf_vma (addr_buf, location->address);
8d64371b 13013 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDisable:%x:%s",
bba74b36 13014 location->owner->number, addr_buf);
d248b706 13015 putpkt (rs->buf);
b6bb3468 13016 remote_get_noisy_reply ();
8d64371b 13017 if (rs->buf[0] == '\0')
d248b706 13018 error (_("Target does not support disabling tracepoints while a trace run is ongoing."));
8d64371b 13019 if (strcmp (rs->buf.data (), "OK") != 0)
d248b706
KY
13020 error (_("Error on target while disabling tracepoint."));
13021}
13022
f6ac5f3d
PA
13023void
13024remote_target::trace_set_readonly_regions ()
35b1e5cc
SS
13025{
13026 asection *s;
13027 bfd_size_type size;
608bcef2 13028 bfd_vma vma;
35b1e5cc 13029 int anysecs = 0;
c2fa21f1 13030 int offset = 0;
35b1e5cc
SS
13031
13032 if (!exec_bfd)
13033 return; /* No information to give. */
13034
b6bb3468
PA
13035 struct remote_state *rs = get_remote_state ();
13036
8d64371b
TT
13037 strcpy (rs->buf.data (), "QTro");
13038 offset = strlen (rs->buf.data ());
35b1e5cc
SS
13039 for (s = exec_bfd->sections; s; s = s->next)
13040 {
13041 char tmp1[40], tmp2[40];
c2fa21f1 13042 int sec_length;
35b1e5cc
SS
13043
13044 if ((s->flags & SEC_LOAD) == 0 ||
0df8b418 13045 /* (s->flags & SEC_CODE) == 0 || */
35b1e5cc
SS
13046 (s->flags & SEC_READONLY) == 0)
13047 continue;
13048
13049 anysecs = 1;
fd361982
AM
13050 vma = bfd_section_vma (s);
13051 size = bfd_section_size (s);
608bcef2
HZ
13052 sprintf_vma (tmp1, vma);
13053 sprintf_vma (tmp2, vma + size);
c2fa21f1 13054 sec_length = 1 + strlen (tmp1) + 1 + strlen (tmp2);
8d64371b 13055 if (offset + sec_length + 1 > rs->buf.size ())
c2fa21f1 13056 {
4082afcc 13057 if (packet_support (PACKET_qXfer_traceframe_info) != PACKET_ENABLE)
864ac8a7 13058 warning (_("\
c2fa21f1
HZ
13059Too many sections for read-only sections definition packet."));
13060 break;
13061 }
8d64371b 13062 xsnprintf (rs->buf.data () + offset, rs->buf.size () - offset, ":%s,%s",
bba74b36 13063 tmp1, tmp2);
c2fa21f1 13064 offset += sec_length;
35b1e5cc
SS
13065 }
13066 if (anysecs)
13067 {
b6bb3468 13068 putpkt (rs->buf);
8d64371b 13069 getpkt (&rs->buf, 0);
35b1e5cc
SS
13070 }
13071}
13072
f6ac5f3d
PA
13073void
13074remote_target::trace_start ()
35b1e5cc 13075{
b6bb3468
PA
13076 struct remote_state *rs = get_remote_state ();
13077
35b1e5cc 13078 putpkt ("QTStart");
b6bb3468 13079 remote_get_noisy_reply ();
8d64371b 13080 if (rs->buf[0] == '\0')
ad91cd99 13081 error (_("Target does not support this command."));
8d64371b
TT
13082 if (strcmp (rs->buf.data (), "OK") != 0)
13083 error (_("Bogus reply from target: %s"), rs->buf.data ());
35b1e5cc
SS
13084}
13085
f6ac5f3d
PA
13086int
13087remote_target::get_trace_status (struct trace_status *ts)
35b1e5cc 13088{
953b98d1 13089 /* Initialize it just to avoid a GCC false warning. */
f652de6f 13090 char *p = NULL;
bd3eecc3 13091 enum packet_result result;
b6bb3468 13092 struct remote_state *rs = get_remote_state ();
bd3eecc3 13093
4082afcc 13094 if (packet_support (PACKET_qTStatus) == PACKET_DISABLE)
bd3eecc3 13095 return -1;
a744cf53 13096
7b9a15e1 13097 /* FIXME we need to get register block size some other way. */
5cd63fda 13098 trace_regblock_size
9d6eea31 13099 = rs->get_remote_arch_state (target_gdbarch ())->sizeof_g_packet;
00bf0b85 13100
049dc89b
JK
13101 putpkt ("qTStatus");
13102
a70b8144 13103 try
67f41397 13104 {
b6bb3468 13105 p = remote_get_noisy_reply ();
67f41397 13106 }
230d2906 13107 catch (const gdb_exception_error &ex)
67f41397 13108 {
598d3636
JK
13109 if (ex.error != TARGET_CLOSE_ERROR)
13110 {
13111 exception_fprintf (gdb_stderr, ex, "qTStatus: ");
13112 return -1;
13113 }
eedc3f4f 13114 throw;
67f41397 13115 }
00bf0b85 13116
bd3eecc3
PA
13117 result = packet_ok (p, &remote_protocol_packets[PACKET_qTStatus]);
13118
00bf0b85 13119 /* If the remote target doesn't do tracing, flag it. */
bd3eecc3 13120 if (result == PACKET_UNKNOWN)
00bf0b85 13121 return -1;
35b1e5cc 13122
00bf0b85 13123 /* We're working with a live target. */
f5911ea1 13124 ts->filename = NULL;
00bf0b85 13125
00bf0b85 13126 if (*p++ != 'T')
8d64371b 13127 error (_("Bogus trace status reply from target: %s"), rs->buf.data ());
35b1e5cc 13128
84cebc4a
YQ
13129 /* Function 'parse_trace_status' sets default value of each field of
13130 'ts' at first, so we don't have to do it here. */
00bf0b85
SS
13131 parse_trace_status (p, ts);
13132
13133 return ts->running;
35b1e5cc
SS
13134}
13135
f6ac5f3d
PA
13136void
13137remote_target::get_tracepoint_status (struct breakpoint *bp,
13138 struct uploaded_tp *utp)
f196051f
SS
13139{
13140 struct remote_state *rs = get_remote_state ();
f196051f
SS
13141 char *reply;
13142 struct bp_location *loc;
13143 struct tracepoint *tp = (struct tracepoint *) bp;
bba74b36 13144 size_t size = get_remote_packet_size ();
f196051f
SS
13145
13146 if (tp)
13147 {
c1fc2657 13148 tp->hit_count = 0;
f196051f 13149 tp->traceframe_usage = 0;
c1fc2657 13150 for (loc = tp->loc; loc; loc = loc->next)
f196051f
SS
13151 {
13152 /* If the tracepoint was never downloaded, don't go asking for
13153 any status. */
13154 if (tp->number_on_target == 0)
13155 continue;
8d64371b 13156 xsnprintf (rs->buf.data (), size, "qTP:%x:%s", tp->number_on_target,
bba74b36 13157 phex_nz (loc->address, 0));
f196051f 13158 putpkt (rs->buf);
b6bb3468 13159 reply = remote_get_noisy_reply ();
f196051f
SS
13160 if (reply && *reply)
13161 {
13162 if (*reply == 'V')
13163 parse_tracepoint_status (reply + 1, bp, utp);
13164 }
13165 }
13166 }
13167 else if (utp)
13168 {
13169 utp->hit_count = 0;
13170 utp->traceframe_usage = 0;
8d64371b 13171 xsnprintf (rs->buf.data (), size, "qTP:%x:%s", utp->number,
bba74b36 13172 phex_nz (utp->addr, 0));
f196051f 13173 putpkt (rs->buf);
b6bb3468 13174 reply = remote_get_noisy_reply ();
f196051f
SS
13175 if (reply && *reply)
13176 {
13177 if (*reply == 'V')
13178 parse_tracepoint_status (reply + 1, bp, utp);
13179 }
13180 }
13181}
13182
f6ac5f3d
PA
13183void
13184remote_target::trace_stop ()
35b1e5cc 13185{
b6bb3468
PA
13186 struct remote_state *rs = get_remote_state ();
13187
35b1e5cc 13188 putpkt ("QTStop");
b6bb3468 13189 remote_get_noisy_reply ();
8d64371b 13190 if (rs->buf[0] == '\0')
ad91cd99 13191 error (_("Target does not support this command."));
8d64371b
TT
13192 if (strcmp (rs->buf.data (), "OK") != 0)
13193 error (_("Bogus reply from target: %s"), rs->buf.data ());
35b1e5cc
SS
13194}
13195
f6ac5f3d
PA
13196int
13197remote_target::trace_find (enum trace_find_type type, int num,
13198 CORE_ADDR addr1, CORE_ADDR addr2,
13199 int *tpp)
35b1e5cc
SS
13200{
13201 struct remote_state *rs = get_remote_state ();
8d64371b 13202 char *endbuf = rs->buf.data () + get_remote_packet_size ();
35b1e5cc
SS
13203 char *p, *reply;
13204 int target_frameno = -1, target_tracept = -1;
13205
e6e4e701
PA
13206 /* Lookups other than by absolute frame number depend on the current
13207 trace selected, so make sure it is correct on the remote end
13208 first. */
13209 if (type != tfind_number)
13210 set_remote_traceframe ();
13211
8d64371b 13212 p = rs->buf.data ();
35b1e5cc
SS
13213 strcpy (p, "QTFrame:");
13214 p = strchr (p, '\0');
13215 switch (type)
13216 {
13217 case tfind_number:
bba74b36 13218 xsnprintf (p, endbuf - p, "%x", num);
35b1e5cc
SS
13219 break;
13220 case tfind_pc:
bba74b36 13221 xsnprintf (p, endbuf - p, "pc:%s", phex_nz (addr1, 0));
35b1e5cc
SS
13222 break;
13223 case tfind_tp:
bba74b36 13224 xsnprintf (p, endbuf - p, "tdp:%x", num);
35b1e5cc
SS
13225 break;
13226 case tfind_range:
bba74b36
YQ
13227 xsnprintf (p, endbuf - p, "range:%s:%s", phex_nz (addr1, 0),
13228 phex_nz (addr2, 0));
35b1e5cc
SS
13229 break;
13230 case tfind_outside:
bba74b36
YQ
13231 xsnprintf (p, endbuf - p, "outside:%s:%s", phex_nz (addr1, 0),
13232 phex_nz (addr2, 0));
35b1e5cc
SS
13233 break;
13234 default:
9b20d036 13235 error (_("Unknown trace find type %d"), type);
35b1e5cc
SS
13236 }
13237
13238 putpkt (rs->buf);
b6bb3468 13239 reply = remote_get_noisy_reply ();
ad91cd99
PA
13240 if (*reply == '\0')
13241 error (_("Target does not support this command."));
35b1e5cc
SS
13242
13243 while (reply && *reply)
13244 switch (*reply)
13245 {
13246 case 'F':
f197e0f1
VP
13247 p = ++reply;
13248 target_frameno = (int) strtol (p, &reply, 16);
13249 if (reply == p)
13250 error (_("Unable to parse trace frame number"));
e6e4e701
PA
13251 /* Don't update our remote traceframe number cache on failure
13252 to select a remote traceframe. */
f197e0f1
VP
13253 if (target_frameno == -1)
13254 return -1;
35b1e5cc
SS
13255 break;
13256 case 'T':
f197e0f1
VP
13257 p = ++reply;
13258 target_tracept = (int) strtol (p, &reply, 16);
13259 if (reply == p)
13260 error (_("Unable to parse tracepoint number"));
35b1e5cc
SS
13261 break;
13262 case 'O': /* "OK"? */
13263 if (reply[1] == 'K' && reply[2] == '\0')
13264 reply += 2;
13265 else
13266 error (_("Bogus reply from target: %s"), reply);
13267 break;
13268 default:
13269 error (_("Bogus reply from target: %s"), reply);
13270 }
13271 if (tpp)
13272 *tpp = target_tracept;
e6e4e701 13273
262e1174 13274 rs->remote_traceframe_number = target_frameno;
35b1e5cc
SS
13275 return target_frameno;
13276}
13277
57810aa7 13278bool
f6ac5f3d 13279remote_target::get_trace_state_variable_value (int tsvnum, LONGEST *val)
35b1e5cc
SS
13280{
13281 struct remote_state *rs = get_remote_state ();
13282 char *reply;
13283 ULONGEST uval;
13284
e6e4e701
PA
13285 set_remote_traceframe ();
13286
8d64371b 13287 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTV:%x", tsvnum);
35b1e5cc 13288 putpkt (rs->buf);
b6bb3468 13289 reply = remote_get_noisy_reply ();
35b1e5cc
SS
13290 if (reply && *reply)
13291 {
13292 if (*reply == 'V')
13293 {
13294 unpack_varlen_hex (reply + 1, &uval);
13295 *val = (LONGEST) uval;
57810aa7 13296 return true;
35b1e5cc
SS
13297 }
13298 }
57810aa7 13299 return false;
35b1e5cc
SS
13300}
13301
f6ac5f3d
PA
13302int
13303remote_target::save_trace_data (const char *filename)
00bf0b85
SS
13304{
13305 struct remote_state *rs = get_remote_state ();
13306 char *p, *reply;
13307
8d64371b 13308 p = rs->buf.data ();
00bf0b85
SS
13309 strcpy (p, "QTSave:");
13310 p += strlen (p);
8d64371b
TT
13311 if ((p - rs->buf.data ()) + strlen (filename) * 2
13312 >= get_remote_packet_size ())
00bf0b85 13313 error (_("Remote file name too long for trace save packet"));
9f1b45b0 13314 p += 2 * bin2hex ((gdb_byte *) filename, p, strlen (filename));
00bf0b85
SS
13315 *p++ = '\0';
13316 putpkt (rs->buf);
b6bb3468 13317 reply = remote_get_noisy_reply ();
d6c5869f 13318 if (*reply == '\0')
ad91cd99
PA
13319 error (_("Target does not support this command."));
13320 if (strcmp (reply, "OK") != 0)
13321 error (_("Bogus reply from target: %s"), reply);
00bf0b85
SS
13322 return 0;
13323}
13324
13325/* This is basically a memory transfer, but needs to be its own packet
13326 because we don't know how the target actually organizes its trace
13327 memory, plus we want to be able to ask for as much as possible, but
13328 not be unhappy if we don't get as much as we ask for. */
13329
f6ac5f3d
PA
13330LONGEST
13331remote_target::get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len)
00bf0b85
SS
13332{
13333 struct remote_state *rs = get_remote_state ();
13334 char *reply;
13335 char *p;
13336 int rslt;
13337
8d64371b 13338 p = rs->buf.data ();
00bf0b85
SS
13339 strcpy (p, "qTBuffer:");
13340 p += strlen (p);
13341 p += hexnumstr (p, offset);
13342 *p++ = ',';
13343 p += hexnumstr (p, len);
13344 *p++ = '\0';
13345
13346 putpkt (rs->buf);
b6bb3468 13347 reply = remote_get_noisy_reply ();
00bf0b85
SS
13348 if (reply && *reply)
13349 {
13350 /* 'l' by itself means we're at the end of the buffer and
13351 there is nothing more to get. */
13352 if (*reply == 'l')
13353 return 0;
13354
13355 /* Convert the reply into binary. Limit the number of bytes to
13356 convert according to our passed-in buffer size, rather than
13357 what was returned in the packet; if the target is
13358 unexpectedly generous and gives us a bigger reply than we
13359 asked for, we don't want to crash. */
b6bb3468 13360 rslt = hex2bin (reply, buf, len);
00bf0b85
SS
13361 return rslt;
13362 }
13363
13364 /* Something went wrong, flag as an error. */
13365 return -1;
13366}
13367
f6ac5f3d
PA
13368void
13369remote_target::set_disconnected_tracing (int val)
35b1e5cc
SS
13370{
13371 struct remote_state *rs = get_remote_state ();
13372
4082afcc 13373 if (packet_support (PACKET_DisconnectedTracing_feature) == PACKET_ENABLE)
33da3f1c 13374 {
ad91cd99
PA
13375 char *reply;
13376
8d64371b
TT
13377 xsnprintf (rs->buf.data (), get_remote_packet_size (),
13378 "QTDisconnected:%x", val);
33da3f1c 13379 putpkt (rs->buf);
b6bb3468 13380 reply = remote_get_noisy_reply ();
ad91cd99 13381 if (*reply == '\0')
33da3f1c 13382 error (_("Target does not support this command."));
ad91cd99
PA
13383 if (strcmp (reply, "OK") != 0)
13384 error (_("Bogus reply from target: %s"), reply);
33da3f1c
SS
13385 }
13386 else if (val)
13387 warning (_("Target does not support disconnected tracing."));
35b1e5cc
SS
13388}
13389
f6ac5f3d
PA
13390int
13391remote_target::core_of_thread (ptid_t ptid)
dc146f7c
VP
13392{
13393 struct thread_info *info = find_thread_ptid (ptid);
a744cf53 13394
7aabaf9d
SM
13395 if (info != NULL && info->priv != NULL)
13396 return get_remote_thread_info (info)->core;
13397
dc146f7c
VP
13398 return -1;
13399}
13400
f6ac5f3d
PA
13401void
13402remote_target::set_circular_trace_buffer (int val)
4daf5ac0
SS
13403{
13404 struct remote_state *rs = get_remote_state ();
ad91cd99 13405 char *reply;
4daf5ac0 13406
8d64371b
TT
13407 xsnprintf (rs->buf.data (), get_remote_packet_size (),
13408 "QTBuffer:circular:%x", val);
4daf5ac0 13409 putpkt (rs->buf);
b6bb3468 13410 reply = remote_get_noisy_reply ();
ad91cd99 13411 if (*reply == '\0')
4daf5ac0 13412 error (_("Target does not support this command."));
ad91cd99
PA
13413 if (strcmp (reply, "OK") != 0)
13414 error (_("Bogus reply from target: %s"), reply);
4daf5ac0
SS
13415}
13416
f6ac5f3d
PA
13417traceframe_info_up
13418remote_target::traceframe_info ()
b3b9301e 13419{
9018be22 13420 gdb::optional<gdb::char_vector> text
8b88a78e 13421 = target_read_stralloc (current_top_target (), TARGET_OBJECT_TRACEFRAME_INFO,
b7b030ad 13422 NULL);
9018be22
SM
13423 if (text)
13424 return parse_traceframe_info (text->data ());
b3b9301e
PA
13425
13426 return NULL;
13427}
13428
405f8e94
SS
13429/* Handle the qTMinFTPILen packet. Returns the minimum length of
13430 instruction on which a fast tracepoint may be placed. Returns -1
13431 if the packet is not supported, and 0 if the minimum instruction
13432 length is unknown. */
13433
f6ac5f3d
PA
13434int
13435remote_target::get_min_fast_tracepoint_insn_len ()
405f8e94
SS
13436{
13437 struct remote_state *rs = get_remote_state ();
13438 char *reply;
13439
e886a173
PA
13440 /* If we're not debugging a process yet, the IPA can't be
13441 loaded. */
13442 if (!target_has_execution)
13443 return 0;
13444
13445 /* Make sure the remote is pointing at the right process. */
13446 set_general_process ();
13447
8d64371b 13448 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTMinFTPILen");
405f8e94 13449 putpkt (rs->buf);
b6bb3468 13450 reply = remote_get_noisy_reply ();
405f8e94
SS
13451 if (*reply == '\0')
13452 return -1;
13453 else
13454 {
13455 ULONGEST min_insn_len;
13456
13457 unpack_varlen_hex (reply, &min_insn_len);
13458
13459 return (int) min_insn_len;
13460 }
13461}
13462
f6ac5f3d
PA
13463void
13464remote_target::set_trace_buffer_size (LONGEST val)
f6f899bf 13465{
4082afcc 13466 if (packet_support (PACKET_QTBuffer_size) != PACKET_DISABLE)
f6f899bf
HAQ
13467 {
13468 struct remote_state *rs = get_remote_state ();
8d64371b
TT
13469 char *buf = rs->buf.data ();
13470 char *endbuf = buf + get_remote_packet_size ();
f6f899bf
HAQ
13471 enum packet_result result;
13472
13473 gdb_assert (val >= 0 || val == -1);
13474 buf += xsnprintf (buf, endbuf - buf, "QTBuffer:size:");
13475 /* Send -1 as literal "-1" to avoid host size dependency. */
13476 if (val < 0)
13477 {
13478 *buf++ = '-';
13479 buf += hexnumstr (buf, (ULONGEST) -val);
13480 }
13481 else
13482 buf += hexnumstr (buf, (ULONGEST) val);
13483
13484 putpkt (rs->buf);
b6bb3468 13485 remote_get_noisy_reply ();
f6f899bf
HAQ
13486 result = packet_ok (rs->buf,
13487 &remote_protocol_packets[PACKET_QTBuffer_size]);
13488
13489 if (result != PACKET_OK)
8d64371b 13490 warning (_("Bogus reply from target: %s"), rs->buf.data ());
f6f899bf
HAQ
13491 }
13492}
13493
57810aa7 13494bool
f6ac5f3d
PA
13495remote_target::set_trace_notes (const char *user, const char *notes,
13496 const char *stop_notes)
f196051f
SS
13497{
13498 struct remote_state *rs = get_remote_state ();
13499 char *reply;
8d64371b
TT
13500 char *buf = rs->buf.data ();
13501 char *endbuf = buf + get_remote_packet_size ();
f196051f
SS
13502 int nbytes;
13503
13504 buf += xsnprintf (buf, endbuf - buf, "QTNotes:");
13505 if (user)
13506 {
13507 buf += xsnprintf (buf, endbuf - buf, "user:");
9f1b45b0 13508 nbytes = bin2hex ((gdb_byte *) user, buf, strlen (user));
f196051f
SS
13509 buf += 2 * nbytes;
13510 *buf++ = ';';
13511 }
13512 if (notes)
13513 {
13514 buf += xsnprintf (buf, endbuf - buf, "notes:");
9f1b45b0 13515 nbytes = bin2hex ((gdb_byte *) notes, buf, strlen (notes));
f196051f
SS
13516 buf += 2 * nbytes;
13517 *buf++ = ';';
13518 }
13519 if (stop_notes)
13520 {
13521 buf += xsnprintf (buf, endbuf - buf, "tstop:");
9f1b45b0 13522 nbytes = bin2hex ((gdb_byte *) stop_notes, buf, strlen (stop_notes));
f196051f
SS
13523 buf += 2 * nbytes;
13524 *buf++ = ';';
13525 }
13526 /* Ensure the buffer is terminated. */
13527 *buf = '\0';
13528
13529 putpkt (rs->buf);
b6bb3468 13530 reply = remote_get_noisy_reply ();
f196051f 13531 if (*reply == '\0')
57810aa7 13532 return false;
f196051f
SS
13533
13534 if (strcmp (reply, "OK") != 0)
13535 error (_("Bogus reply from target: %s"), reply);
13536
57810aa7 13537 return true;
f196051f
SS
13538}
13539
57810aa7
PA
13540bool
13541remote_target::use_agent (bool use)
d1feda86 13542{
4082afcc 13543 if (packet_support (PACKET_QAgent) != PACKET_DISABLE)
d1feda86
YQ
13544 {
13545 struct remote_state *rs = get_remote_state ();
13546
13547 /* If the stub supports QAgent. */
8d64371b 13548 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QAgent:%d", use);
d1feda86 13549 putpkt (rs->buf);
8d64371b 13550 getpkt (&rs->buf, 0);
d1feda86 13551
8d64371b 13552 if (strcmp (rs->buf.data (), "OK") == 0)
d1feda86 13553 {
f6ac5f3d 13554 ::use_agent = use;
57810aa7 13555 return true;
d1feda86
YQ
13556 }
13557 }
13558
57810aa7 13559 return false;
d1feda86
YQ
13560}
13561
57810aa7 13562bool
f6ac5f3d 13563remote_target::can_use_agent ()
d1feda86 13564{
4082afcc 13565 return (packet_support (PACKET_QAgent) != PACKET_DISABLE);
d1feda86
YQ
13566}
13567
9accd112
MM
13568struct btrace_target_info
13569{
13570 /* The ptid of the traced thread. */
13571 ptid_t ptid;
f4abbc16
MM
13572
13573 /* The obtained branch trace configuration. */
13574 struct btrace_config conf;
9accd112
MM
13575};
13576
f4abbc16
MM
13577/* Reset our idea of our target's btrace configuration. */
13578
13579static void
6b8edb51 13580remote_btrace_reset (remote_state *rs)
f4abbc16 13581{
f4abbc16
MM
13582 memset (&rs->btrace_config, 0, sizeof (rs->btrace_config));
13583}
13584
f4abbc16
MM
13585/* Synchronize the configuration with the target. */
13586
6b8edb51
PA
13587void
13588remote_target::btrace_sync_conf (const btrace_config *conf)
f4abbc16 13589{
d33501a5
MM
13590 struct packet_config *packet;
13591 struct remote_state *rs;
13592 char *buf, *pos, *endbuf;
13593
13594 rs = get_remote_state ();
8d64371b 13595 buf = rs->buf.data ();
d33501a5
MM
13596 endbuf = buf + get_remote_packet_size ();
13597
13598 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_bts_size];
13599 if (packet_config_support (packet) == PACKET_ENABLE
13600 && conf->bts.size != rs->btrace_config.bts.size)
13601 {
13602 pos = buf;
13603 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13604 conf->bts.size);
13605
13606 putpkt (buf);
8d64371b 13607 getpkt (&rs->buf, 0);
d33501a5
MM
13608
13609 if (packet_ok (buf, packet) == PACKET_ERROR)
13610 {
13611 if (buf[0] == 'E' && buf[1] == '.')
13612 error (_("Failed to configure the BTS buffer size: %s"), buf + 2);
13613 else
13614 error (_("Failed to configure the BTS buffer size."));
13615 }
13616
13617 rs->btrace_config.bts.size = conf->bts.size;
13618 }
b20a6524
MM
13619
13620 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_pt_size];
13621 if (packet_config_support (packet) == PACKET_ENABLE
13622 && conf->pt.size != rs->btrace_config.pt.size)
13623 {
13624 pos = buf;
13625 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13626 conf->pt.size);
13627
13628 putpkt (buf);
8d64371b 13629 getpkt (&rs->buf, 0);
b20a6524
MM
13630
13631 if (packet_ok (buf, packet) == PACKET_ERROR)
13632 {
13633 if (buf[0] == 'E' && buf[1] == '.')
13634 error (_("Failed to configure the trace buffer size: %s"), buf + 2);
13635 else
13636 error (_("Failed to configure the trace buffer size."));
13637 }
13638
13639 rs->btrace_config.pt.size = conf->pt.size;
13640 }
f4abbc16
MM
13641}
13642
13643/* Read the current thread's btrace configuration from the target and
13644 store it into CONF. */
13645
13646static void
13647btrace_read_config (struct btrace_config *conf)
13648{
9018be22 13649 gdb::optional<gdb::char_vector> xml
8b88a78e 13650 = target_read_stralloc (current_top_target (), TARGET_OBJECT_BTRACE_CONF, "");
9018be22
SM
13651 if (xml)
13652 parse_xml_btrace_conf (conf, xml->data ());
f4abbc16
MM
13653}
13654
c0272db5
TW
13655/* Maybe reopen target btrace. */
13656
6b8edb51
PA
13657void
13658remote_target::remote_btrace_maybe_reopen ()
c0272db5
TW
13659{
13660 struct remote_state *rs = get_remote_state ();
c0272db5 13661 int btrace_target_pushed = 0;
15766370 13662#if !defined (HAVE_LIBIPT)
c0272db5 13663 int warned = 0;
15766370 13664#endif
c0272db5 13665
aedbe3bb
CM
13666 /* Don't bother walking the entirety of the remote thread list when
13667 we know the feature isn't supported by the remote. */
13668 if (packet_support (PACKET_qXfer_btrace_conf) != PACKET_ENABLE)
13669 return;
13670
5ed8105e
PA
13671 scoped_restore_current_thread restore_thread;
13672
08036331 13673 for (thread_info *tp : all_non_exited_threads ())
c0272db5
TW
13674 {
13675 set_general_thread (tp->ptid);
13676
13677 memset (&rs->btrace_config, 0x00, sizeof (struct btrace_config));
13678 btrace_read_config (&rs->btrace_config);
13679
13680 if (rs->btrace_config.format == BTRACE_FORMAT_NONE)
13681 continue;
13682
13683#if !defined (HAVE_LIBIPT)
13684 if (rs->btrace_config.format == BTRACE_FORMAT_PT)
13685 {
13686 if (!warned)
13687 {
13688 warned = 1;
c4e12631
MM
13689 warning (_("Target is recording using Intel Processor Trace "
13690 "but support was disabled at compile time."));
c0272db5
TW
13691 }
13692
13693 continue;
13694 }
13695#endif /* !defined (HAVE_LIBIPT) */
13696
13697 /* Push target, once, but before anything else happens. This way our
13698 changes to the threads will be cleaned up by unpushing the target
13699 in case btrace_read_config () throws. */
13700 if (!btrace_target_pushed)
13701 {
13702 btrace_target_pushed = 1;
13703 record_btrace_push_target ();
13704 printf_filtered (_("Target is recording using %s.\n"),
13705 btrace_format_string (rs->btrace_config.format));
13706 }
13707
13708 tp->btrace.target = XCNEW (struct btrace_target_info);
13709 tp->btrace.target->ptid = tp->ptid;
13710 tp->btrace.target->conf = rs->btrace_config;
13711 }
c0272db5
TW
13712}
13713
9accd112
MM
13714/* Enable branch tracing. */
13715
f6ac5f3d
PA
13716struct btrace_target_info *
13717remote_target::enable_btrace (ptid_t ptid, const struct btrace_config *conf)
9accd112
MM
13718{
13719 struct btrace_target_info *tinfo = NULL;
b20a6524 13720 struct packet_config *packet = NULL;
9accd112 13721 struct remote_state *rs = get_remote_state ();
8d64371b
TT
13722 char *buf = rs->buf.data ();
13723 char *endbuf = buf + get_remote_packet_size ();
9accd112 13724
b20a6524
MM
13725 switch (conf->format)
13726 {
13727 case BTRACE_FORMAT_BTS:
13728 packet = &remote_protocol_packets[PACKET_Qbtrace_bts];
13729 break;
13730
13731 case BTRACE_FORMAT_PT:
13732 packet = &remote_protocol_packets[PACKET_Qbtrace_pt];
13733 break;
13734 }
13735
13736 if (packet == NULL || packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13737 error (_("Target does not support branch tracing."));
13738
f4abbc16
MM
13739 btrace_sync_conf (conf);
13740
9accd112
MM
13741 set_general_thread (ptid);
13742
13743 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
13744 putpkt (rs->buf);
8d64371b 13745 getpkt (&rs->buf, 0);
9accd112
MM
13746
13747 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
13748 {
13749 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
13750 error (_("Could not enable branch tracing for %s: %s"),
a068643d 13751 target_pid_to_str (ptid).c_str (), &rs->buf[2]);
9accd112
MM
13752 else
13753 error (_("Could not enable branch tracing for %s."),
a068643d 13754 target_pid_to_str (ptid).c_str ());
9accd112
MM
13755 }
13756
8d749320 13757 tinfo = XCNEW (struct btrace_target_info);
9accd112
MM
13758 tinfo->ptid = ptid;
13759
f4abbc16
MM
13760 /* If we fail to read the configuration, we lose some information, but the
13761 tracing itself is not impacted. */
a70b8144 13762 try
492d29ea
PA
13763 {
13764 btrace_read_config (&tinfo->conf);
13765 }
230d2906 13766 catch (const gdb_exception_error &err)
492d29ea
PA
13767 {
13768 if (err.message != NULL)
3d6e9d23 13769 warning ("%s", err.what ());
492d29ea 13770 }
f4abbc16 13771
9accd112
MM
13772 return tinfo;
13773}
13774
13775/* Disable branch tracing. */
13776
f6ac5f3d
PA
13777void
13778remote_target::disable_btrace (struct btrace_target_info *tinfo)
9accd112
MM
13779{
13780 struct packet_config *packet = &remote_protocol_packets[PACKET_Qbtrace_off];
13781 struct remote_state *rs = get_remote_state ();
8d64371b
TT
13782 char *buf = rs->buf.data ();
13783 char *endbuf = buf + get_remote_packet_size ();
9accd112 13784
4082afcc 13785 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13786 error (_("Target does not support branch tracing."));
13787
13788 set_general_thread (tinfo->ptid);
13789
13790 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
13791 putpkt (rs->buf);
8d64371b 13792 getpkt (&rs->buf, 0);
9accd112
MM
13793
13794 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
13795 {
13796 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
13797 error (_("Could not disable branch tracing for %s: %s"),
a068643d 13798 target_pid_to_str (tinfo->ptid).c_str (), &rs->buf[2]);
9accd112
MM
13799 else
13800 error (_("Could not disable branch tracing for %s."),
a068643d 13801 target_pid_to_str (tinfo->ptid).c_str ());
9accd112
MM
13802 }
13803
13804 xfree (tinfo);
13805}
13806
13807/* Teardown branch tracing. */
13808
f6ac5f3d
PA
13809void
13810remote_target::teardown_btrace (struct btrace_target_info *tinfo)
9accd112
MM
13811{
13812 /* We must not talk to the target during teardown. */
13813 xfree (tinfo);
13814}
13815
13816/* Read the branch trace. */
13817
f6ac5f3d
PA
13818enum btrace_error
13819remote_target::read_btrace (struct btrace_data *btrace,
13820 struct btrace_target_info *tinfo,
13821 enum btrace_read_type type)
9accd112
MM
13822{
13823 struct packet_config *packet = &remote_protocol_packets[PACKET_qXfer_btrace];
9accd112 13824 const char *annex;
9accd112 13825
4082afcc 13826 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13827 error (_("Target does not support branch tracing."));
13828
13829#if !defined(HAVE_LIBEXPAT)
13830 error (_("Cannot process branch tracing result. XML parsing not supported."));
13831#endif
13832
13833 switch (type)
13834 {
864089d2 13835 case BTRACE_READ_ALL:
9accd112
MM
13836 annex = "all";
13837 break;
864089d2 13838 case BTRACE_READ_NEW:
9accd112
MM
13839 annex = "new";
13840 break;
969c39fb
MM
13841 case BTRACE_READ_DELTA:
13842 annex = "delta";
13843 break;
9accd112
MM
13844 default:
13845 internal_error (__FILE__, __LINE__,
13846 _("Bad branch tracing read type: %u."),
13847 (unsigned int) type);
13848 }
13849
9018be22 13850 gdb::optional<gdb::char_vector> xml
8b88a78e 13851 = target_read_stralloc (current_top_target (), TARGET_OBJECT_BTRACE, annex);
9018be22 13852 if (!xml)
969c39fb 13853 return BTRACE_ERR_UNKNOWN;
9accd112 13854
9018be22 13855 parse_xml_btrace (btrace, xml->data ());
9accd112 13856
969c39fb 13857 return BTRACE_ERR_NONE;
9accd112
MM
13858}
13859
f6ac5f3d
PA
13860const struct btrace_config *
13861remote_target::btrace_conf (const struct btrace_target_info *tinfo)
f4abbc16
MM
13862{
13863 return &tinfo->conf;
13864}
13865
57810aa7 13866bool
f6ac5f3d 13867remote_target::augmented_libraries_svr4_read ()
ced63ec0 13868{
4082afcc
PA
13869 return (packet_support (PACKET_augmented_libraries_svr4_read_feature)
13870 == PACKET_ENABLE);
ced63ec0
GB
13871}
13872
9dd130a0
TT
13873/* Implementation of to_load. */
13874
f6ac5f3d
PA
13875void
13876remote_target::load (const char *name, int from_tty)
9dd130a0
TT
13877{
13878 generic_load (name, from_tty);
13879}
13880
c78fa86a
GB
13881/* Accepts an integer PID; returns a string representing a file that
13882 can be opened on the remote side to get the symbols for the child
13883 process. Returns NULL if the operation is not supported. */
13884
f6ac5f3d
PA
13885char *
13886remote_target::pid_to_exec_file (int pid)
c78fa86a 13887{
9018be22 13888 static gdb::optional<gdb::char_vector> filename;
835205d0
GB
13889 struct inferior *inf;
13890 char *annex = NULL;
c78fa86a
GB
13891
13892 if (packet_support (PACKET_qXfer_exec_file) != PACKET_ENABLE)
13893 return NULL;
13894
835205d0
GB
13895 inf = find_inferior_pid (pid);
13896 if (inf == NULL)
13897 internal_error (__FILE__, __LINE__,
13898 _("not currently attached to process %d"), pid);
13899
13900 if (!inf->fake_pid_p)
13901 {
13902 const int annex_size = 9;
13903
224c3ddb 13904 annex = (char *) alloca (annex_size);
835205d0
GB
13905 xsnprintf (annex, annex_size, "%x", pid);
13906 }
13907
8b88a78e 13908 filename = target_read_stralloc (current_top_target (),
c78fa86a
GB
13909 TARGET_OBJECT_EXEC_FILE, annex);
13910
9018be22 13911 return filename ? filename->data () : nullptr;
c78fa86a
GB
13912}
13913
750ce8d1
YQ
13914/* Implement the to_can_do_single_step target_ops method. */
13915
f6ac5f3d
PA
13916int
13917remote_target::can_do_single_step ()
750ce8d1
YQ
13918{
13919 /* We can only tell whether target supports single step or not by
13920 supported s and S vCont actions if the stub supports vContSupported
13921 feature. If the stub doesn't support vContSupported feature,
13922 we have conservatively to think target doesn't supports single
13923 step. */
13924 if (packet_support (PACKET_vContSupported) == PACKET_ENABLE)
13925 {
13926 struct remote_state *rs = get_remote_state ();
13927
13928 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6b8edb51 13929 remote_vcont_probe ();
750ce8d1
YQ
13930
13931 return rs->supports_vCont.s && rs->supports_vCont.S;
13932 }
13933 else
13934 return 0;
13935}
13936
3a00c802
PA
13937/* Implementation of the to_execution_direction method for the remote
13938 target. */
13939
f6ac5f3d
PA
13940enum exec_direction_kind
13941remote_target::execution_direction ()
3a00c802
PA
13942{
13943 struct remote_state *rs = get_remote_state ();
13944
13945 return rs->last_resume_exec_dir;
13946}
13947
f6327dcb
KB
13948/* Return pointer to the thread_info struct which corresponds to
13949 THREAD_HANDLE (having length HANDLE_LEN). */
13950
f6ac5f3d
PA
13951thread_info *
13952remote_target::thread_handle_to_thread_info (const gdb_byte *thread_handle,
13953 int handle_len,
13954 inferior *inf)
f6327dcb 13955{
08036331 13956 for (thread_info *tp : all_non_exited_threads ())
f6327dcb 13957 {
7aabaf9d 13958 remote_thread_info *priv = get_remote_thread_info (tp);
f6327dcb
KB
13959
13960 if (tp->inf == inf && priv != NULL)
13961 {
7aabaf9d 13962 if (handle_len != priv->thread_handle.size ())
f6327dcb 13963 error (_("Thread handle size mismatch: %d vs %zu (from remote)"),
7aabaf9d
SM
13964 handle_len, priv->thread_handle.size ());
13965 if (memcmp (thread_handle, priv->thread_handle.data (),
f6327dcb
KB
13966 handle_len) == 0)
13967 return tp;
13968 }
13969 }
13970
13971 return NULL;
13972}
13973
3d6c6204
KB
13974gdb::byte_vector
13975remote_target::thread_info_to_thread_handle (struct thread_info *tp)
13976{
13977 remote_thread_info *priv = get_remote_thread_info (tp);
13978 return priv->thread_handle;
13979}
13980
57810aa7 13981bool
f6ac5f3d 13982remote_target::can_async_p ()
6426a772 13983{
5d93a237
TT
13984 struct remote_state *rs = get_remote_state ();
13985
3015c064
SM
13986 /* We don't go async if the user has explicitly prevented it with the
13987 "maint set target-async" command. */
c6ebd6cf 13988 if (!target_async_permitted)
57810aa7 13989 return false;
75c99385 13990
23860348 13991 /* We're async whenever the serial device is. */
5d93a237 13992 return serial_can_async_p (rs->remote_desc);
6426a772
JM
13993}
13994
57810aa7 13995bool
f6ac5f3d 13996remote_target::is_async_p ()
6426a772 13997{
5d93a237
TT
13998 struct remote_state *rs = get_remote_state ();
13999
c6ebd6cf 14000 if (!target_async_permitted)
75c99385 14001 /* We only enable async when the user specifically asks for it. */
57810aa7 14002 return false;
75c99385 14003
23860348 14004 /* We're async whenever the serial device is. */
5d93a237 14005 return serial_is_async_p (rs->remote_desc);
6426a772
JM
14006}
14007
2acceee2
JM
14008/* Pass the SERIAL event on and up to the client. One day this code
14009 will be able to delay notifying the client of an event until the
23860348 14010 point where an entire packet has been received. */
2acceee2 14011
2acceee2
JM
14012static serial_event_ftype remote_async_serial_handler;
14013
6426a772 14014static void
819cc324 14015remote_async_serial_handler (struct serial *scb, void *context)
6426a772 14016{
2acceee2
JM
14017 /* Don't propogate error information up to the client. Instead let
14018 the client find out about the error by querying the target. */
6a3753b3 14019 inferior_event_handler (INF_REG_EVENT, NULL);
2acceee2
JM
14020}
14021
74531fed
PA
14022static void
14023remote_async_inferior_event_handler (gdb_client_data data)
14024{
6b8edb51 14025 inferior_event_handler (INF_REG_EVENT, data);
74531fed
PA
14026}
14027
f6ac5f3d
PA
14028void
14029remote_target::async (int enable)
2acceee2 14030{
5d93a237
TT
14031 struct remote_state *rs = get_remote_state ();
14032
6a3753b3 14033 if (enable)
2acceee2 14034 {
88b496c3 14035 serial_async (rs->remote_desc, remote_async_serial_handler, rs);
b7d2e916
PA
14036
14037 /* If there are pending events in the stop reply queue tell the
14038 event loop to process them. */
953edf2b 14039 if (!rs->stop_reply_queue.empty ())
6b8edb51 14040 mark_async_event_handler (rs->remote_async_inferior_event_token);
6efcd9a8
PA
14041 /* For simplicity, below we clear the pending events token
14042 without remembering whether it is marked, so here we always
14043 mark it. If there's actually no pending notification to
14044 process, this ends up being a no-op (other than a spurious
14045 event-loop wakeup). */
14046 if (target_is_non_stop_p ())
14047 mark_async_event_handler (rs->notif_state->get_pending_events_token);
2acceee2
JM
14048 }
14049 else
b7d2e916
PA
14050 {
14051 serial_async (rs->remote_desc, NULL, NULL);
6efcd9a8
PA
14052 /* If the core is disabling async, it doesn't want to be
14053 disturbed with target events. Clear all async event sources
14054 too. */
6b8edb51 14055 clear_async_event_handler (rs->remote_async_inferior_event_token);
6efcd9a8
PA
14056 if (target_is_non_stop_p ())
14057 clear_async_event_handler (rs->notif_state->get_pending_events_token);
b7d2e916 14058 }
6426a772
JM
14059}
14060
65706a29
PA
14061/* Implementation of the to_thread_events method. */
14062
f6ac5f3d
PA
14063void
14064remote_target::thread_events (int enable)
65706a29
PA
14065{
14066 struct remote_state *rs = get_remote_state ();
14067 size_t size = get_remote_packet_size ();
65706a29
PA
14068
14069 if (packet_support (PACKET_QThreadEvents) == PACKET_DISABLE)
14070 return;
14071
8d64371b 14072 xsnprintf (rs->buf.data (), size, "QThreadEvents:%x", enable ? 1 : 0);
65706a29 14073 putpkt (rs->buf);
8d64371b 14074 getpkt (&rs->buf, 0);
65706a29
PA
14075
14076 switch (packet_ok (rs->buf,
14077 &remote_protocol_packets[PACKET_QThreadEvents]))
14078 {
14079 case PACKET_OK:
8d64371b
TT
14080 if (strcmp (rs->buf.data (), "OK") != 0)
14081 error (_("Remote refused setting thread events: %s"), rs->buf.data ());
65706a29
PA
14082 break;
14083 case PACKET_ERROR:
8d64371b 14084 warning (_("Remote failure reply: %s"), rs->buf.data ());
65706a29
PA
14085 break;
14086 case PACKET_UNKNOWN:
14087 break;
14088 }
14089}
14090
5a2468f5 14091static void
981a3fb3 14092set_remote_cmd (const char *args, int from_tty)
5a2468f5 14093{
635c7e8a 14094 help_list (remote_set_cmdlist, "set remote ", all_commands, gdb_stdout);
5a2468f5
JM
14095}
14096
d471ea57 14097static void
981a3fb3 14098show_remote_cmd (const char *args, int from_tty)
d471ea57 14099{
37a105a1 14100 /* We can't just use cmd_show_list here, because we want to skip
427c3a89 14101 the redundant "show remote Z-packet" and the legacy aliases. */
37a105a1 14102 struct cmd_list_element *list = remote_show_cmdlist;
79a45e25 14103 struct ui_out *uiout = current_uiout;
37a105a1 14104
2e783024 14105 ui_out_emit_tuple tuple_emitter (uiout, "showlist");
37a105a1
DJ
14106 for (; list != NULL; list = list->next)
14107 if (strcmp (list->name, "Z-packet") == 0)
14108 continue;
427c3a89
DJ
14109 else if (list->type == not_set_cmd)
14110 /* Alias commands are exactly like the original, except they
14111 don't have the normal type. */
14112 continue;
14113 else
37a105a1 14114 {
2e783024 14115 ui_out_emit_tuple option_emitter (uiout, "option");
a744cf53 14116
112e8700
SM
14117 uiout->field_string ("name", list->name);
14118 uiout->text (": ");
427c3a89 14119 if (list->type == show_cmd)
f5c4fcd9 14120 do_show_command (NULL, from_tty, list);
427c3a89
DJ
14121 else
14122 cmd_func (list, NULL, from_tty);
37a105a1 14123 }
d471ea57 14124}
5a2468f5 14125
0f71a2f6 14126
23860348 14127/* Function to be called whenever a new objfile (shlib) is detected. */
dc8acb97
MS
14128static void
14129remote_new_objfile (struct objfile *objfile)
14130{
6b8edb51 14131 remote_target *remote = get_current_remote_target ();
5d93a237 14132
6b8edb51
PA
14133 if (remote != NULL) /* Have a remote connection. */
14134 remote->remote_check_symbols ();
dc8acb97
MS
14135}
14136
00bf0b85
SS
14137/* Pull all the tracepoints defined on the target and create local
14138 data structures representing them. We don't want to create real
14139 tracepoints yet, we don't want to mess up the user's existing
14140 collection. */
14141
f6ac5f3d
PA
14142int
14143remote_target::upload_tracepoints (struct uploaded_tp **utpp)
d5551862 14144{
00bf0b85
SS
14145 struct remote_state *rs = get_remote_state ();
14146 char *p;
d5551862 14147
00bf0b85
SS
14148 /* Ask for a first packet of tracepoint definition. */
14149 putpkt ("qTfP");
8d64371b
TT
14150 getpkt (&rs->buf, 0);
14151 p = rs->buf.data ();
00bf0b85 14152 while (*p && *p != 'l')
d5551862 14153 {
00bf0b85
SS
14154 parse_tracepoint_definition (p, utpp);
14155 /* Ask for another packet of tracepoint definition. */
14156 putpkt ("qTsP");
8d64371b
TT
14157 getpkt (&rs->buf, 0);
14158 p = rs->buf.data ();
d5551862 14159 }
00bf0b85 14160 return 0;
d5551862
SS
14161}
14162
f6ac5f3d
PA
14163int
14164remote_target::upload_trace_state_variables (struct uploaded_tsv **utsvp)
d5551862 14165{
00bf0b85 14166 struct remote_state *rs = get_remote_state ();
d5551862 14167 char *p;
d5551862 14168
00bf0b85
SS
14169 /* Ask for a first packet of variable definition. */
14170 putpkt ("qTfV");
8d64371b
TT
14171 getpkt (&rs->buf, 0);
14172 p = rs->buf.data ();
00bf0b85 14173 while (*p && *p != 'l')
d5551862 14174 {
00bf0b85
SS
14175 parse_tsv_definition (p, utsvp);
14176 /* Ask for another packet of variable definition. */
14177 putpkt ("qTsV");
8d64371b
TT
14178 getpkt (&rs->buf, 0);
14179 p = rs->buf.data ();
d5551862 14180 }
00bf0b85 14181 return 0;
d5551862
SS
14182}
14183
c1e36e3e
PA
14184/* The "set/show range-stepping" show hook. */
14185
14186static void
14187show_range_stepping (struct ui_file *file, int from_tty,
14188 struct cmd_list_element *c,
14189 const char *value)
14190{
14191 fprintf_filtered (file,
14192 _("Debugger's willingness to use range stepping "
14193 "is %s.\n"), value);
14194}
14195
6b8edb51
PA
14196/* Return true if the vCont;r action is supported by the remote
14197 stub. */
14198
14199bool
14200remote_target::vcont_r_supported ()
14201{
14202 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
14203 remote_vcont_probe ();
14204
14205 return (packet_support (PACKET_vCont) == PACKET_ENABLE
14206 && get_remote_state ()->supports_vCont.r);
14207}
14208
c1e36e3e
PA
14209/* The "set/show range-stepping" set hook. */
14210
14211static void
eb4c3f4a 14212set_range_stepping (const char *ignore_args, int from_tty,
c1e36e3e
PA
14213 struct cmd_list_element *c)
14214{
6b8edb51
PA
14215 /* When enabling, check whether range stepping is actually supported
14216 by the target, and warn if not. */
c1e36e3e
PA
14217 if (use_range_stepping)
14218 {
6b8edb51
PA
14219 remote_target *remote = get_current_remote_target ();
14220 if (remote == NULL
14221 || !remote->vcont_r_supported ())
14222 warning (_("Range stepping is not supported by the current target"));
c1e36e3e
PA
14223 }
14224}
14225
c906108c 14226void
fba45db2 14227_initialize_remote (void)
c906108c 14228{
9a7071a8 14229 struct cmd_list_element *cmd;
6f937416 14230 const char *cmd_name;
ea9c271d 14231
0f71a2f6 14232 /* architecture specific data */
29709017
DJ
14233 remote_g_packet_data_handle =
14234 gdbarch_data_register_pre_init (remote_g_packet_data_init);
d01949b6 14235
d9f719f1
PA
14236 add_target (remote_target_info, remote_target::open);
14237 add_target (extended_remote_target_info, extended_remote_target::open);
cce74817 14238
dc8acb97 14239 /* Hook into new objfile notification. */
76727919 14240 gdb::observers::new_objfile.attach (remote_new_objfile);
dc8acb97 14241
c906108c
SS
14242#if 0
14243 init_remote_threadtests ();
14244#endif
14245
23860348 14246 /* set/show remote ... */
d471ea57 14247
1bedd215 14248 add_prefix_cmd ("remote", class_maintenance, set_remote_cmd, _("\
590042fc 14249Remote protocol specific variables.\n\
5a2468f5 14250Configure various remote-protocol specific variables such as\n\
590042fc 14251the packets being used."),
cff3e48b 14252 &remote_set_cmdlist, "set remote ",
23860348 14253 0 /* allow-unknown */, &setlist);
1bedd215 14254 add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
590042fc 14255Remote protocol specific variables.\n\
5a2468f5 14256Configure various remote-protocol specific variables such as\n\
590042fc 14257the packets being used."),
cff3e48b 14258 &remote_show_cmdlist, "show remote ",
23860348 14259 0 /* allow-unknown */, &showlist);
5a2468f5 14260
1a966eab
AC
14261 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
14262Compare section data on target to the exec file.\n\
95cf3b38
DT
14263Argument is a single section name (default: all loaded sections).\n\
14264To compare only read-only loaded sections, specify the -r option."),
c906108c
SS
14265 &cmdlist);
14266
1a966eab
AC
14267 add_cmd ("packet", class_maintenance, packet_command, _("\
14268Send an arbitrary packet to a remote target.\n\
c906108c
SS
14269 maintenance packet TEXT\n\
14270If GDB is talking to an inferior via the GDB serial protocol, then\n\
14271this command sends the string TEXT to the inferior, and displays the\n\
14272response packet. GDB supplies the initial `$' character, and the\n\
1a966eab 14273terminating `#' character and checksum."),
c906108c
SS
14274 &maintenancelist);
14275
7915a72c
AC
14276 add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
14277Set whether to send break if interrupted."), _("\
14278Show whether to send break if interrupted."), _("\
14279If set, a break, instead of a cntrl-c, is sent to the remote target."),
9a7071a8 14280 set_remotebreak, show_remotebreak,
e707bbc2 14281 &setlist, &showlist);
9a7071a8
JB
14282 cmd_name = "remotebreak";
14283 cmd = lookup_cmd (&cmd_name, setlist, "", -1, 1);
14284 deprecate_cmd (cmd, "set remote interrupt-sequence");
14285 cmd_name = "remotebreak"; /* needed because lookup_cmd updates the pointer */
14286 cmd = lookup_cmd (&cmd_name, showlist, "", -1, 1);
14287 deprecate_cmd (cmd, "show remote interrupt-sequence");
14288
14289 add_setshow_enum_cmd ("interrupt-sequence", class_support,
3e43a32a
MS
14290 interrupt_sequence_modes, &interrupt_sequence_mode,
14291 _("\
9a7071a8
JB
14292Set interrupt sequence to remote target."), _("\
14293Show interrupt sequence to remote target."), _("\
14294Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."),
14295 NULL, show_interrupt_sequence,
14296 &remote_set_cmdlist,
14297 &remote_show_cmdlist);
14298
14299 add_setshow_boolean_cmd ("interrupt-on-connect", class_support,
14300 &interrupt_on_connect, _("\
590042fc
PW
14301Set whether interrupt-sequence is sent to remote target when gdb connects to."), _("\
14302Show whether interrupt-sequence is sent to remote target when gdb connects to."), _("\
9a7071a8
JB
14303If set, interrupt sequence is sent to remote target."),
14304 NULL, NULL,
14305 &remote_set_cmdlist, &remote_show_cmdlist);
c906108c 14306
23860348 14307 /* Install commands for configuring memory read/write packets. */
11cf8741 14308
1a966eab
AC
14309 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
14310Set the maximum number of bytes per memory write packet (deprecated)."),
11cf8741 14311 &setlist);
1a966eab
AC
14312 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
14313Show the maximum number of bytes per memory write packet (deprecated)."),
11cf8741
JM
14314 &showlist);
14315 add_cmd ("memory-write-packet-size", no_class,
1a966eab
AC
14316 set_memory_write_packet_size, _("\
14317Set the maximum number of bytes per memory-write packet.\n\
14318Specify the number of bytes in a packet or 0 (zero) for the\n\
14319default packet size. The actual limit is further reduced\n\
14320dependent on the target. Specify ``fixed'' to disable the\n\
14321further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
14322 &remote_set_cmdlist);
14323 add_cmd ("memory-read-packet-size", no_class,
1a966eab
AC
14324 set_memory_read_packet_size, _("\
14325Set the maximum number of bytes per memory-read packet.\n\
14326Specify the number of bytes in a packet or 0 (zero) for the\n\
14327default packet size. The actual limit is further reduced\n\
14328dependent on the target. Specify ``fixed'' to disable the\n\
14329further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
14330 &remote_set_cmdlist);
14331 add_cmd ("memory-write-packet-size", no_class,
14332 show_memory_write_packet_size,
1a966eab 14333 _("Show the maximum number of bytes per memory-write packet."),
11cf8741
JM
14334 &remote_show_cmdlist);
14335 add_cmd ("memory-read-packet-size", no_class,
14336 show_memory_read_packet_size,
1a966eab 14337 _("Show the maximum number of bytes per memory-read packet."),
11cf8741 14338 &remote_show_cmdlist);
c906108c 14339
055303e2 14340 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-limit", no_class,
7915a72c
AC
14341 &remote_hw_watchpoint_limit, _("\
14342Set the maximum number of target hardware watchpoints."), _("\
14343Show the maximum number of target hardware watchpoints."), _("\
055303e2
AB
14344Specify \"unlimited\" for unlimited hardware watchpoints."),
14345 NULL, show_hardware_watchpoint_limit,
14346 &remote_set_cmdlist,
14347 &remote_show_cmdlist);
14348 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-length-limit",
14349 no_class,
480a3f21
PW
14350 &remote_hw_watchpoint_length_limit, _("\
14351Set the maximum length (in bytes) of a target hardware watchpoint."), _("\
14352Show the maximum length (in bytes) of a target hardware watchpoint."), _("\
055303e2
AB
14353Specify \"unlimited\" to allow watchpoints of unlimited size."),
14354 NULL, show_hardware_watchpoint_length_limit,
480a3f21 14355 &remote_set_cmdlist, &remote_show_cmdlist);
055303e2 14356 add_setshow_zuinteger_unlimited_cmd ("hardware-breakpoint-limit", no_class,
7915a72c
AC
14357 &remote_hw_breakpoint_limit, _("\
14358Set the maximum number of target hardware breakpoints."), _("\
14359Show the maximum number of target hardware breakpoints."), _("\
055303e2
AB
14360Specify \"unlimited\" for unlimited hardware breakpoints."),
14361 NULL, show_hardware_breakpoint_limit,
b3f42336 14362 &remote_set_cmdlist, &remote_show_cmdlist);
501eef12 14363
1b493192
PA
14364 add_setshow_zuinteger_cmd ("remoteaddresssize", class_obscure,
14365 &remote_address_size, _("\
4d28ad1e
AC
14366Set the maximum size of the address (in bits) in a memory packet."), _("\
14367Show the maximum size of the address (in bits) in a memory packet."), NULL,
1b493192
PA
14368 NULL,
14369 NULL, /* FIXME: i18n: */
14370 &setlist, &showlist);
c906108c 14371
ca4f7f8b
PA
14372 init_all_packet_configs ();
14373
444abaca 14374 add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
bb572ddd 14375 "X", "binary-download", 1);
0f71a2f6 14376
444abaca 14377 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
bb572ddd 14378 "vCont", "verbose-resume", 0);
506fb367 14379
89be2091
DJ
14380 add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals],
14381 "QPassSignals", "pass-signals", 0);
14382
82075af2
JS
14383 add_packet_config_cmd (&remote_protocol_packets[PACKET_QCatchSyscalls],
14384 "QCatchSyscalls", "catch-syscalls", 0);
14385
9b224c5e
PA
14386 add_packet_config_cmd (&remote_protocol_packets[PACKET_QProgramSignals],
14387 "QProgramSignals", "program-signals", 0);
14388
bc3b087d
SDJ
14389 add_packet_config_cmd (&remote_protocol_packets[PACKET_QSetWorkingDir],
14390 "QSetWorkingDir", "set-working-dir", 0);
14391
aefd8b33
SDJ
14392 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartupWithShell],
14393 "QStartupWithShell", "startup-with-shell", 0);
14394
0a2dde4a
SDJ
14395 add_packet_config_cmd (&remote_protocol_packets
14396 [PACKET_QEnvironmentHexEncoded],
14397 "QEnvironmentHexEncoded", "environment-hex-encoded",
14398 0);
14399
14400 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentReset],
14401 "QEnvironmentReset", "environment-reset",
14402 0);
14403
14404 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentUnset],
14405 "QEnvironmentUnset", "environment-unset",
14406 0);
14407
444abaca 14408 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
bb572ddd 14409 "qSymbol", "symbol-lookup", 0);
dc8acb97 14410
444abaca 14411 add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
bb572ddd 14412 "P", "set-register", 1);
d471ea57 14413
444abaca 14414 add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
bb572ddd 14415 "p", "fetch-register", 1);
b96ec7ac 14416
444abaca 14417 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
bb572ddd 14418 "Z0", "software-breakpoint", 0);
d471ea57 14419
444abaca 14420 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
bb572ddd 14421 "Z1", "hardware-breakpoint", 0);
d471ea57 14422
444abaca 14423 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
bb572ddd 14424 "Z2", "write-watchpoint", 0);
d471ea57 14425
444abaca 14426 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
bb572ddd 14427 "Z3", "read-watchpoint", 0);
d471ea57 14428
444abaca 14429 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
bb572ddd 14430 "Z4", "access-watchpoint", 0);
d471ea57 14431
0876f84a
DJ
14432 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
14433 "qXfer:auxv:read", "read-aux-vector", 0);
802188a7 14434
c78fa86a
GB
14435 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_exec_file],
14436 "qXfer:exec-file:read", "pid-to-exec-file", 0);
14437
23181151
DJ
14438 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features],
14439 "qXfer:features:read", "target-features", 0);
14440
cfa9d6d9
DJ
14441 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries],
14442 "qXfer:libraries:read", "library-info", 0);
14443
2268b414
JK
14444 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries_svr4],
14445 "qXfer:libraries-svr4:read", "library-info-svr4", 0);
14446
fd79ecee
DJ
14447 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
14448 "qXfer:memory-map:read", "memory-map", 0);
14449
07e059b5
VP
14450 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata],
14451 "qXfer:osdata:read", "osdata", 0);
14452
dc146f7c
VP
14453 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_threads],
14454 "qXfer:threads:read", "threads", 0);
14455
4aa995e1
PA
14456 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read],
14457 "qXfer:siginfo:read", "read-siginfo-object", 0);
14458
14459 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write],
14460 "qXfer:siginfo:write", "write-siginfo-object", 0);
14461
b3b9301e
PA
14462 add_packet_config_cmd
14463 (&remote_protocol_packets[PACKET_qXfer_traceframe_info],
eb9fe518 14464 "qXfer:traceframe-info:read", "traceframe-info", 0);
b3b9301e 14465
169081d0
TG
14466 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_uib],
14467 "qXfer:uib:read", "unwind-info-block", 0);
14468
444abaca 14469 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
38691318 14470 "qGetTLSAddr", "get-thread-local-storage-address",
38691318
KB
14471 0);
14472
711e434b
PM
14473 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTIBAddr],
14474 "qGetTIBAddr", "get-thread-information-block-address",
14475 0);
14476
40ab02ce
MS
14477 add_packet_config_cmd (&remote_protocol_packets[PACKET_bc],
14478 "bc", "reverse-continue", 0);
14479
14480 add_packet_config_cmd (&remote_protocol_packets[PACKET_bs],
14481 "bs", "reverse-step", 0);
14482
be2a5f71
DJ
14483 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
14484 "qSupported", "supported-packets", 0);
14485
08388c79
DE
14486 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory],
14487 "qSearch:memory", "search-memory", 0);
14488
bd3eecc3
PA
14489 add_packet_config_cmd (&remote_protocol_packets[PACKET_qTStatus],
14490 "qTStatus", "trace-status", 0);
14491
15a201c8
GB
14492 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_setfs],
14493 "vFile:setfs", "hostio-setfs", 0);
14494
a6b151f1
DJ
14495 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open],
14496 "vFile:open", "hostio-open", 0);
14497
14498 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread],
14499 "vFile:pread", "hostio-pread", 0);
14500
14501 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite],
14502 "vFile:pwrite", "hostio-pwrite", 0);
14503
14504 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close],
14505 "vFile:close", "hostio-close", 0);
14506
14507 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink],
14508 "vFile:unlink", "hostio-unlink", 0);
14509
b9e7b9c3
UW
14510 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_readlink],
14511 "vFile:readlink", "hostio-readlink", 0);
14512
0a93529c
GB
14513 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_fstat],
14514 "vFile:fstat", "hostio-fstat", 0);
14515
2d717e4f
DJ
14516 add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach],
14517 "vAttach", "attach", 0);
14518
14519 add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun],
14520 "vRun", "run", 0);
14521
a6f3e723
SL
14522 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode],
14523 "QStartNoAckMode", "noack", 0);
14524
82f73884
PA
14525 add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill],
14526 "vKill", "kill", 0);
14527
0b16c5cf
PA
14528 add_packet_config_cmd (&remote_protocol_packets[PACKET_qAttached],
14529 "qAttached", "query-attached", 0);
14530
782b2b07 14531 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalTracepoints],
3e43a32a
MS
14532 "ConditionalTracepoints",
14533 "conditional-tracepoints", 0);
3788aec7
LM
14534
14535 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalBreakpoints],
14536 "ConditionalBreakpoints",
14537 "conditional-breakpoints", 0);
14538
d3ce09f5
SS
14539 add_packet_config_cmd (&remote_protocol_packets[PACKET_BreakpointCommands],
14540 "BreakpointCommands",
14541 "breakpoint-commands", 0);
14542
7a697b8d
SS
14543 add_packet_config_cmd (&remote_protocol_packets[PACKET_FastTracepoints],
14544 "FastTracepoints", "fast-tracepoints", 0);
782b2b07 14545
409873ef
SS
14546 add_packet_config_cmd (&remote_protocol_packets[PACKET_TracepointSource],
14547 "TracepointSource", "TracepointSource", 0);
14548
d914c394
SS
14549 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAllow],
14550 "QAllow", "allow", 0);
14551
0fb4aa4b
PA
14552 add_packet_config_cmd (&remote_protocol_packets[PACKET_StaticTracepoints],
14553 "StaticTracepoints", "static-tracepoints", 0);
14554
1e4d1764
YQ
14555 add_packet_config_cmd (&remote_protocol_packets[PACKET_InstallInTrace],
14556 "InstallInTrace", "install-in-trace", 0);
14557
0fb4aa4b
PA
14558 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_statictrace_read],
14559 "qXfer:statictrace:read", "read-sdata-object", 0);
14560
78d85199
YQ
14561 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_fdpic],
14562 "qXfer:fdpic:read", "read-fdpic-loadmap", 0);
14563
03583c20
UW
14564 add_packet_config_cmd (&remote_protocol_packets[PACKET_QDisableRandomization],
14565 "QDisableRandomization", "disable-randomization", 0);
14566
d1feda86
YQ
14567 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAgent],
14568 "QAgent", "agent", 0);
14569
f6f899bf
HAQ
14570 add_packet_config_cmd (&remote_protocol_packets[PACKET_QTBuffer_size],
14571 "QTBuffer:size", "trace-buffer-size", 0);
14572
9accd112
MM
14573 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_off],
14574 "Qbtrace:off", "disable-btrace", 0);
14575
14576 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_bts],
b20a6524
MM
14577 "Qbtrace:bts", "enable-btrace-bts", 0);
14578
14579 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_pt],
14580 "Qbtrace:pt", "enable-btrace-pt", 0);
9accd112
MM
14581
14582 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace],
14583 "qXfer:btrace", "read-btrace", 0);
14584
f4abbc16
MM
14585 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace_conf],
14586 "qXfer:btrace-conf", "read-btrace-conf", 0);
14587
d33501a5
MM
14588 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_bts_size],
14589 "Qbtrace-conf:bts:size", "btrace-conf-bts-size", 0);
14590
73b8c1fd
PA
14591 add_packet_config_cmd (&remote_protocol_packets[PACKET_multiprocess_feature],
14592 "multiprocess-feature", "multiprocess-feature", 0);
14593
f7e6eed5
PA
14594 add_packet_config_cmd (&remote_protocol_packets[PACKET_swbreak_feature],
14595 "swbreak-feature", "swbreak-feature", 0);
14596
14597 add_packet_config_cmd (&remote_protocol_packets[PACKET_hwbreak_feature],
14598 "hwbreak-feature", "hwbreak-feature", 0);
14599
89245bc0
DB
14600 add_packet_config_cmd (&remote_protocol_packets[PACKET_fork_event_feature],
14601 "fork-event-feature", "fork-event-feature", 0);
14602
14603 add_packet_config_cmd (&remote_protocol_packets[PACKET_vfork_event_feature],
14604 "vfork-event-feature", "vfork-event-feature", 0);
14605
b20a6524
MM
14606 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_pt_size],
14607 "Qbtrace-conf:pt:size", "btrace-conf-pt-size", 0);
14608
750ce8d1
YQ
14609 add_packet_config_cmd (&remote_protocol_packets[PACKET_vContSupported],
14610 "vContSupported", "verbose-resume-supported", 0);
14611
94585166
DB
14612 add_packet_config_cmd (&remote_protocol_packets[PACKET_exec_event_feature],
14613 "exec-event-feature", "exec-event-feature", 0);
14614
de979965
PA
14615 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCtrlC],
14616 "vCtrlC", "ctrl-c", 0);
14617
65706a29
PA
14618 add_packet_config_cmd (&remote_protocol_packets[PACKET_QThreadEvents],
14619 "QThreadEvents", "thread-events", 0);
14620
f2faf941
PA
14621 add_packet_config_cmd (&remote_protocol_packets[PACKET_no_resumed],
14622 "N stop reply", "no-resumed-stop-reply", 0);
14623
0b736949
DB
14624 /* Assert that we've registered "set remote foo-packet" commands
14625 for all packet configs. */
ca4f7f8b
PA
14626 {
14627 int i;
14628
14629 for (i = 0; i < PACKET_MAX; i++)
14630 {
14631 /* Ideally all configs would have a command associated. Some
14632 still don't though. */
14633 int excepted;
14634
14635 switch (i)
14636 {
14637 case PACKET_QNonStop:
ca4f7f8b
PA
14638 case PACKET_EnableDisableTracepoints_feature:
14639 case PACKET_tracenz_feature:
14640 case PACKET_DisconnectedTracing_feature:
14641 case PACKET_augmented_libraries_svr4_read_feature:
936d2992
PA
14642 case PACKET_qCRC:
14643 /* Additions to this list need to be well justified:
14644 pre-existing packets are OK; new packets are not. */
ca4f7f8b
PA
14645 excepted = 1;
14646 break;
14647 default:
14648 excepted = 0;
14649 break;
14650 }
14651
14652 /* This catches both forgetting to add a config command, and
14653 forgetting to remove a packet from the exception list. */
14654 gdb_assert (excepted == (remote_protocol_packets[i].name == NULL));
14655 }
14656 }
14657
37a105a1
DJ
14658 /* Keep the old ``set remote Z-packet ...'' working. Each individual
14659 Z sub-packet has its own set and show commands, but users may
14660 have sets to this variable in their .gdbinit files (or in their
14661 documentation). */
e9e68a56 14662 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
7915a72c 14663 &remote_Z_packet_detect, _("\
590042fc
PW
14664Set use of remote protocol `Z' packets."), _("\
14665Show use of remote protocol `Z' packets."), _("\
3b64bf98 14666When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
7915a72c 14667packets."),
e9e68a56 14668 set_remote_protocol_Z_packet_cmd,
3e43a32a
MS
14669 show_remote_protocol_Z_packet_cmd,
14670 /* FIXME: i18n: Use of remote protocol
14671 `Z' packets is %s. */
e9e68a56 14672 &remote_set_cmdlist, &remote_show_cmdlist);
449092f6 14673
a6b151f1 14674 add_prefix_cmd ("remote", class_files, remote_command, _("\
590042fc 14675Manipulate files on the remote system.\n\
a6b151f1
DJ
14676Transfer files to and from the remote target system."),
14677 &remote_cmdlist, "remote ",
14678 0 /* allow-unknown */, &cmdlist);
14679
14680 add_cmd ("put", class_files, remote_put_command,
14681 _("Copy a local file to the remote system."),
14682 &remote_cmdlist);
14683
14684 add_cmd ("get", class_files, remote_get_command,
14685 _("Copy a remote file to the local system."),
14686 &remote_cmdlist);
14687
14688 add_cmd ("delete", class_files, remote_delete_command,
14689 _("Delete a remote file."),
14690 &remote_cmdlist);
14691
2d717e4f 14692 add_setshow_string_noescape_cmd ("exec-file", class_files,
94585166 14693 &remote_exec_file_var, _("\
590042fc
PW
14694Set the remote pathname for \"run\"."), _("\
14695Show the remote pathname for \"run\"."), NULL,
94585166
DB
14696 set_remote_exec_file,
14697 show_remote_exec_file,
14698 &remote_set_cmdlist,
14699 &remote_show_cmdlist);
2d717e4f 14700
c1e36e3e
PA
14701 add_setshow_boolean_cmd ("range-stepping", class_run,
14702 &use_range_stepping, _("\
14703Enable or disable range stepping."), _("\
14704Show whether target-assisted range stepping is enabled."), _("\
14705If on, and the target supports it, when stepping a source line, GDB\n\
14706tells the target to step the corresponding range of addresses itself instead\n\
14707of issuing multiple single-steps. This speeds up source level\n\
14708stepping. If off, GDB always issues single-steps, even if range\n\
14709stepping is supported by the target. The default is on."),
14710 set_range_stepping,
14711 show_range_stepping,
14712 &setlist,
14713 &showlist);
14714
ed2b7c17
TT
14715 add_setshow_zinteger_cmd ("watchdog", class_maintenance, &watchdog, _("\
14716Set watchdog timer."), _("\
14717Show watchdog timer."), _("\
14718When non-zero, this timeout is used instead of waiting forever for a target\n\
14719to finish a low-level step or continue operation. If the specified amount\n\
14720of time passes without a response from the target, an error occurs."),
14721 NULL,
14722 show_watchdog,
14723 &setlist, &showlist);
14724
449092f6
CV
14725 /* Eventually initialize fileio. See fileio.c */
14726 initialize_remote_fileio (remote_set_cmdlist, remote_show_cmdlist);
c906108c 14727}
This page took 4.56288 seconds and 4 git commands to generate.