Fix reconnecting to a gdbserver already debugging multiple processes, II
[deliverable/binutils-gdb.git] / gdb / remote.c
CommitLineData
c906108c 1/* Remote target communications for serial-line targets in custom GDB protocol
8926118c 2
b811d2c2 3 Copyright (C) 1988-2020 Free Software Foundation, Inc.
c906108c 4
c5aa993b
JM
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
c5aa993b
JM
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c5aa993b 19
23860348 20/* See the GDB User Guide for details of the GDB remote protocol. */
c5aa993b 21
c906108c 22#include "defs.h"
c906108c
SS
23#include <ctype.h>
24#include <fcntl.h>
c906108c 25#include "inferior.h"
45741a9c 26#include "infrun.h"
c906108c
SS
27#include "bfd.h"
28#include "symfile.h"
29#include "target.h"
3b3dac9b 30#include "process-stratum-target.h"
c906108c
SS
31#include "gdbcmd.h"
32#include "objfiles.h"
33#include "gdb-stabs.h"
34#include "gdbthread.h"
c2c6d25f 35#include "remote.h"
722247f1 36#include "remote-notif.h"
4e052eda 37#include "regcache.h"
fd0407d6 38#include "value.h"
76727919 39#include "observable.h"
a77053c2 40#include "solib.h"
37a105a1
DJ
41#include "cli/cli-decode.h"
42#include "cli/cli-setshow.h"
424163ea 43#include "target-descriptions.h"
a4453b7e 44#include "gdb_bfd.h"
268a13a5
TT
45#include "gdbsupport/filestuff.h"
46#include "gdbsupport/rsp-low.h"
6b940e6a 47#include "disasm.h"
f00aae0f 48#include "location.h"
c906108c 49
268a13a5 50#include "gdbsupport/gdb_sys_time.h"
c906108c 51
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 1043
7aabaf9d
SM
1044/* Private data that we'll store in (struct thread_info)->priv. */
1045struct remote_thread_info : public private_thread_info
dc146f7c 1046{
7aabaf9d
SM
1047 std::string extra;
1048 std::string name;
1049 int core = -1;
799a2abe 1050
f6327dcb
KB
1051 /* Thread handle, perhaps a pthread_t or thread_t value, stored as a
1052 sequence of bytes. */
7aabaf9d 1053 gdb::byte_vector thread_handle;
f6327dcb 1054
799a2abe 1055 /* Whether the target stopped for a breakpoint/watchpoint. */
7aabaf9d 1056 enum target_stop_reason stop_reason = TARGET_STOPPED_BY_NO_REASON;
799a2abe
PA
1057
1058 /* This is set to the data address of the access causing the target
1059 to stop for a watchpoint. */
7aabaf9d 1060 CORE_ADDR watch_data_address = 0;
85ad3aaf
PA
1061
1062 /* Fields used by the vCont action coalescing implemented in
1063 remote_resume / remote_commit_resume. remote_resume stores each
1064 thread's last resume request in these fields, so that a later
1065 remote_commit_resume knows which is the proper action for this
1066 thread to include in the vCont packet. */
1067
1068 /* True if the last target_resume call for this thread was a step
1069 request, false if a continue request. */
7aabaf9d 1070 int last_resume_step = 0;
85ad3aaf
PA
1071
1072 /* The signal specified in the last target_resume call for this
1073 thread. */
7aabaf9d 1074 gdb_signal last_resume_sig = GDB_SIGNAL_0;
85ad3aaf
PA
1075
1076 /* Whether this thread was already vCont-resumed on the remote
1077 side. */
7aabaf9d 1078 int vcont_resumed = 0;
dc146f7c
VP
1079};
1080
de44f5a7 1081remote_state::remote_state ()
8d64371b 1082 : buf (400)
de44f5a7 1083{
de44f5a7
PA
1084}
1085
1086remote_state::~remote_state ()
1087{
1088 xfree (this->last_pass_packet);
1089 xfree (this->last_program_signals_packet);
de44f5a7
PA
1090 xfree (this->finished_object);
1091 xfree (this->finished_annex);
cf792862
TT
1092}
1093
35b1e5cc
SS
1094/* Utility: generate error from an incoming stub packet. */
1095static void
1096trace_error (char *buf)
1097{
1098 if (*buf++ != 'E')
1099 return; /* not an error msg */
1100 switch (*buf)
1101 {
1102 case '1': /* malformed packet error */
1103 if (*++buf == '0') /* general case: */
1104 error (_("remote.c: error in outgoing packet."));
1105 else
1106 error (_("remote.c: error in outgoing packet at field #%ld."),
1107 strtol (buf, NULL, 16));
35b1e5cc
SS
1108 default:
1109 error (_("Target returns error code '%s'."), buf);
1110 }
1111}
1112
1113/* Utility: wait for reply from stub, while accepting "O" packets. */
b6bb3468 1114
6b8edb51
PA
1115char *
1116remote_target::remote_get_noisy_reply ()
35b1e5cc 1117{
b6bb3468
PA
1118 struct remote_state *rs = get_remote_state ();
1119
35b1e5cc
SS
1120 do /* Loop on reply from remote stub. */
1121 {
1122 char *buf;
a744cf53 1123
0df8b418 1124 QUIT; /* Allow user to bail out with ^C. */
8d64371b
TT
1125 getpkt (&rs->buf, 0);
1126 buf = rs->buf.data ();
ad91cd99 1127 if (buf[0] == 'E')
35b1e5cc 1128 trace_error (buf);
61012eef 1129 else if (startswith (buf, "qRelocInsn:"))
dde08ee1
PA
1130 {
1131 ULONGEST ul;
1132 CORE_ADDR from, to, org_to;
256642e8 1133 const char *p, *pp;
dde08ee1 1134 int adjusted_size = 0;
7556d4a4 1135 int relocated = 0;
dde08ee1
PA
1136
1137 p = buf + strlen ("qRelocInsn:");
1138 pp = unpack_varlen_hex (p, &ul);
1139 if (*pp != ';')
cb91c06a 1140 error (_("invalid qRelocInsn packet: %s"), buf);
dde08ee1
PA
1141 from = ul;
1142
1143 p = pp + 1;
a9cbf802 1144 unpack_varlen_hex (p, &ul);
dde08ee1
PA
1145 to = ul;
1146
1147 org_to = to;
1148
a70b8144 1149 try
dde08ee1 1150 {
f5656ead 1151 gdbarch_relocate_instruction (target_gdbarch (), &to, from);
7556d4a4 1152 relocated = 1;
dde08ee1 1153 }
230d2906 1154 catch (const gdb_exception &ex)
7556d4a4
PA
1155 {
1156 if (ex.error == MEMORY_ERROR)
1157 {
1158 /* Propagate memory errors silently back to the
1159 target. The stub may have limited the range of
1160 addresses we can write to, for example. */
1161 }
1162 else
1163 {
1164 /* Something unexpectedly bad happened. Be verbose
1165 so we can tell what, and propagate the error back
1166 to the stub, so it doesn't get stuck waiting for
1167 a response. */
1168 exception_fprintf (gdb_stderr, ex,
1169 _("warning: relocating instruction: "));
1170 }
1171 putpkt ("E01");
1172 }
1173
1174 if (relocated)
dde08ee1
PA
1175 {
1176 adjusted_size = to - org_to;
1177
8d64371b 1178 xsnprintf (buf, rs->buf.size (), "qRelocInsn:%x", adjusted_size);
dde08ee1
PA
1179 putpkt (buf);
1180 }
dde08ee1 1181 }
ad91cd99 1182 else if (buf[0] == 'O' && buf[1] != 'K')
35b1e5cc
SS
1183 remote_console_output (buf + 1); /* 'O' message from stub */
1184 else
0df8b418 1185 return buf; /* Here's the actual reply. */
35b1e5cc
SS
1186 }
1187 while (1);
1188}
3c3bea1c 1189
9d6eea31
PA
1190struct remote_arch_state *
1191remote_state::get_remote_arch_state (struct gdbarch *gdbarch)
d01949b6 1192{
43c3a0e4
PA
1193 remote_arch_state *rsa;
1194
1195 auto it = this->m_arch_states.find (gdbarch);
1196 if (it == this->m_arch_states.end ())
9d6eea31 1197 {
43c3a0e4
PA
1198 auto p = this->m_arch_states.emplace (std::piecewise_construct,
1199 std::forward_as_tuple (gdbarch),
1200 std::forward_as_tuple (gdbarch));
1201 rsa = &p.first->second;
9d6eea31
PA
1202
1203 /* Make sure that the packet buffer is plenty big enough for
1204 this architecture. */
8d64371b
TT
1205 if (this->buf.size () < rsa->remote_packet_size)
1206 this->buf.resize (2 * rsa->remote_packet_size);
9d6eea31 1207 }
43c3a0e4
PA
1208 else
1209 rsa = &it->second;
1210
1211 return rsa;
d01949b6
AC
1212}
1213
0b83947e
DJ
1214/* Fetch the global remote target state. */
1215
6b8edb51
PA
1216remote_state *
1217remote_target::get_remote_state ()
0b83947e
DJ
1218{
1219 /* Make sure that the remote architecture state has been
1220 initialized, because doing so might reallocate rs->buf. Any
1221 function which calls getpkt also needs to be mindful of changes
1222 to rs->buf, but this call limits the number of places which run
1223 into trouble. */
3c69da40 1224 m_remote_state.get_remote_arch_state (target_gdbarch ());
0b83947e 1225
3c69da40 1226 return &m_remote_state;
0b83947e
DJ
1227}
1228
94585166
DB
1229/* Fetch the remote exec-file from the current program space. */
1230
1231static const char *
1232get_remote_exec_file (void)
1233{
1234 char *remote_exec_file;
1235
7b4a314f 1236 remote_exec_file = remote_pspace_data.get (current_program_space);
94585166
DB
1237 if (remote_exec_file == NULL)
1238 return "";
1239
1240 return remote_exec_file;
1241}
1242
1243/* Set the remote exec file for PSPACE. */
1244
1245static void
1246set_pspace_remote_exec_file (struct program_space *pspace,
7b4a314f 1247 const char *remote_exec_file)
94585166 1248{
7b4a314f 1249 char *old_file = remote_pspace_data.get (pspace);
94585166
DB
1250
1251 xfree (old_file);
7b4a314f 1252 remote_pspace_data.set (pspace, xstrdup (remote_exec_file));
94585166
DB
1253}
1254
1255/* The "set/show remote exec-file" set command hook. */
1256
1257static void
eb4c3f4a 1258set_remote_exec_file (const char *ignored, int from_tty,
94585166
DB
1259 struct cmd_list_element *c)
1260{
1261 gdb_assert (remote_exec_file_var != NULL);
1262 set_pspace_remote_exec_file (current_program_space, remote_exec_file_var);
1263}
1264
1265/* The "set/show remote exec-file" show command hook. */
1266
1267static void
1268show_remote_exec_file (struct ui_file *file, int from_tty,
1269 struct cmd_list_element *cmd, const char *value)
1270{
acdf84a6 1271 fprintf_filtered (file, "%s\n", get_remote_exec_file ());
94585166
DB
1272}
1273
c21236dc
PA
1274static int
1275map_regcache_remote_table (struct gdbarch *gdbarch, struct packet_reg *regs)
d01949b6 1276{
74ca34ce 1277 int regnum, num_remote_regs, offset;
74ca34ce 1278 struct packet_reg **remote_regs;
ea9c271d 1279
4a22f64d 1280 for (regnum = 0; regnum < gdbarch_num_regs (gdbarch); regnum++)
ad10f812 1281 {
c21236dc 1282 struct packet_reg *r = &regs[regnum];
baef701f 1283
4a22f64d 1284 if (register_size (gdbarch, regnum) == 0)
baef701f
DJ
1285 /* Do not try to fetch zero-sized (placeholder) registers. */
1286 r->pnum = -1;
1287 else
1288 r->pnum = gdbarch_remote_register_number (gdbarch, regnum);
1289
b323314b 1290 r->regnum = regnum;
74ca34ce
DJ
1291 }
1292
1293 /* Define the g/G packet format as the contents of each register
1294 with a remote protocol number, in order of ascending protocol
1295 number. */
1296
224c3ddb 1297 remote_regs = XALLOCAVEC (struct packet_reg *, gdbarch_num_regs (gdbarch));
f57d151a 1298 for (num_remote_regs = 0, regnum = 0;
4a22f64d 1299 regnum < gdbarch_num_regs (gdbarch);
f57d151a 1300 regnum++)
c21236dc
PA
1301 if (regs[regnum].pnum != -1)
1302 remote_regs[num_remote_regs++] = &regs[regnum];
7d58c67d 1303
39ef2f62
CB
1304 std::sort (remote_regs, remote_regs + num_remote_regs,
1305 [] (const packet_reg *a, const packet_reg *b)
1306 { return a->pnum < b->pnum; });
74ca34ce
DJ
1307
1308 for (regnum = 0, offset = 0; regnum < num_remote_regs; regnum++)
1309 {
1310 remote_regs[regnum]->in_g_packet = 1;
1311 remote_regs[regnum]->offset = offset;
4a22f64d 1312 offset += register_size (gdbarch, remote_regs[regnum]->regnum);
ad10f812
AC
1313 }
1314
c21236dc
PA
1315 return offset;
1316}
1317
1318/* Given the architecture described by GDBARCH, return the remote
1319 protocol register's number and the register's offset in the g/G
1320 packets of GDB register REGNUM, in PNUM and POFFSET respectively.
1321 If the target does not have a mapping for REGNUM, return false,
1322 otherwise, return true. */
1323
1324int
1325remote_register_number_and_offset (struct gdbarch *gdbarch, int regnum,
1326 int *pnum, int *poffset)
1327{
c21236dc
PA
1328 gdb_assert (regnum < gdbarch_num_regs (gdbarch));
1329
b80406ac 1330 std::vector<packet_reg> regs (gdbarch_num_regs (gdbarch));
c21236dc 1331
b80406ac 1332 map_regcache_remote_table (gdbarch, regs.data ());
c21236dc
PA
1333
1334 *pnum = regs[regnum].pnum;
1335 *poffset = regs[regnum].offset;
1336
c21236dc
PA
1337 return *pnum != -1;
1338}
1339
9d6eea31 1340remote_arch_state::remote_arch_state (struct gdbarch *gdbarch)
c21236dc 1341{
c21236dc
PA
1342 /* Use the architecture to build a regnum<->pnum table, which will be
1343 1:1 unless a feature set specifies otherwise. */
9d6eea31 1344 this->regs.reset (new packet_reg [gdbarch_num_regs (gdbarch)] ());
c21236dc 1345
74ca34ce
DJ
1346 /* Record the maximum possible size of the g packet - it may turn out
1347 to be smaller. */
9d6eea31
PA
1348 this->sizeof_g_packet
1349 = map_regcache_remote_table (gdbarch, this->regs.get ());
74ca34ce 1350
0df8b418 1351 /* Default maximum number of characters in a packet body. Many
d01949b6
AC
1352 remote stubs have a hardwired buffer size of 400 bytes
1353 (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
1354 as the maximum packet-size to ensure that the packet and an extra
1355 NUL character can always fit in the buffer. This stops GDB
1356 trashing stubs that try to squeeze an extra NUL into what is
ea9c271d 1357 already a full buffer (As of 1999-12-04 that was most stubs). */
9d6eea31 1358 this->remote_packet_size = 400 - 1;
d01949b6 1359
ea9c271d 1360 /* This one is filled in when a ``g'' packet is received. */
9d6eea31 1361 this->actual_register_packet_size = 0;
ea9c271d
DJ
1362
1363 /* Should rsa->sizeof_g_packet needs more space than the
0df8b418
MS
1364 default, adjust the size accordingly. Remember that each byte is
1365 encoded as two characters. 32 is the overhead for the packet
1366 header / footer. NOTE: cagney/1999-10-26: I suspect that 8
d01949b6 1367 (``$NN:G...#NN'') is a better guess, the below has been padded a
23860348 1368 little. */
9d6eea31
PA
1369 if (this->sizeof_g_packet > ((this->remote_packet_size - 32) / 2))
1370 this->remote_packet_size = (this->sizeof_g_packet * 2 + 32);
ea9c271d
DJ
1371}
1372
6b8edb51
PA
1373/* Get a pointer to the current remote target. If not connected to a
1374 remote target, return NULL. */
1375
1376static remote_target *
1377get_current_remote_target ()
1378{
1379 target_ops *proc_target = find_target_at (process_stratum);
1380 return dynamic_cast<remote_target *> (proc_target);
1381}
1382
ea9c271d
DJ
1383/* Return the current allowed size of a remote packet. This is
1384 inferred from the current architecture, and should be used to
1385 limit the length of outgoing packets. */
6b8edb51
PA
1386long
1387remote_target::get_remote_packet_size ()
ea9c271d 1388{
be2a5f71 1389 struct remote_state *rs = get_remote_state ();
9d6eea31 1390 remote_arch_state *rsa = rs->get_remote_arch_state (target_gdbarch ());
ea9c271d 1391
be2a5f71
DJ
1392 if (rs->explicit_packet_size)
1393 return rs->explicit_packet_size;
1394
ea9c271d 1395 return rsa->remote_packet_size;
d01949b6
AC
1396}
1397
ad10f812 1398static struct packet_reg *
5cd63fda
PA
1399packet_reg_from_regnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
1400 long regnum)
ad10f812 1401{
5cd63fda 1402 if (regnum < 0 && regnum >= gdbarch_num_regs (gdbarch))
b323314b
AC
1403 return NULL;
1404 else
ad10f812 1405 {
ea9c271d 1406 struct packet_reg *r = &rsa->regs[regnum];
a744cf53 1407
b323314b
AC
1408 gdb_assert (r->regnum == regnum);
1409 return r;
ad10f812 1410 }
ad10f812
AC
1411}
1412
1413static struct packet_reg *
5cd63fda
PA
1414packet_reg_from_pnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
1415 LONGEST pnum)
ad10f812 1416{
b323314b 1417 int i;
a744cf53 1418
5cd63fda 1419 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
ad10f812 1420 {
ea9c271d 1421 struct packet_reg *r = &rsa->regs[i];
a744cf53 1422
b323314b
AC
1423 if (r->pnum == pnum)
1424 return r;
ad10f812
AC
1425 }
1426 return NULL;
d01949b6
AC
1427}
1428
9a7071a8
JB
1429/* Allow the user to specify what sequence to send to the remote
1430 when he requests a program interruption: Although ^C is usually
1431 what remote systems expect (this is the default, here), it is
1432 sometimes preferable to send a break. On other systems such
1433 as the Linux kernel, a break followed by g, which is Magic SysRq g
1434 is required in order to interrupt the execution. */
1435const char interrupt_sequence_control_c[] = "Ctrl-C";
1436const char interrupt_sequence_break[] = "BREAK";
1437const char interrupt_sequence_break_g[] = "BREAK-g";
40478521 1438static const char *const interrupt_sequence_modes[] =
9a7071a8
JB
1439 {
1440 interrupt_sequence_control_c,
1441 interrupt_sequence_break,
1442 interrupt_sequence_break_g,
1443 NULL
1444 };
1445static const char *interrupt_sequence_mode = interrupt_sequence_control_c;
1446
1447static void
1448show_interrupt_sequence (struct ui_file *file, int from_tty,
1449 struct cmd_list_element *c,
1450 const char *value)
1451{
1452 if (interrupt_sequence_mode == interrupt_sequence_control_c)
1453 fprintf_filtered (file,
1454 _("Send the ASCII ETX character (Ctrl-c) "
1455 "to the remote target to interrupt the "
1456 "execution of the program.\n"));
1457 else if (interrupt_sequence_mode == interrupt_sequence_break)
1458 fprintf_filtered (file,
1459 _("send a break signal to the remote target "
1460 "to interrupt the execution of the program.\n"));
1461 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
1462 fprintf_filtered (file,
1463 _("Send a break signal and 'g' a.k.a. Magic SysRq g to "
1464 "the remote target to interrupt the execution "
1465 "of Linux kernel.\n"));
1466 else
1467 internal_error (__FILE__, __LINE__,
1468 _("Invalid value for interrupt_sequence_mode: %s."),
1469 interrupt_sequence_mode);
1470}
6426a772 1471
9a7071a8
JB
1472/* This boolean variable specifies whether interrupt_sequence is sent
1473 to the remote target when gdb connects to it.
1474 This is mostly needed when you debug the Linux kernel: The Linux kernel
1475 expects BREAK g which is Magic SysRq g for connecting gdb. */
491144b5 1476static bool interrupt_on_connect = false;
c906108c 1477
9a7071a8
JB
1478/* This variable is used to implement the "set/show remotebreak" commands.
1479 Since these commands are now deprecated in favor of "set/show remote
1480 interrupt-sequence", it no longer has any effect on the code. */
491144b5 1481static bool remote_break;
c906108c 1482
9a7071a8 1483static void
eb4c3f4a 1484set_remotebreak (const char *args, int from_tty, struct cmd_list_element *c)
9a7071a8
JB
1485{
1486 if (remote_break)
1487 interrupt_sequence_mode = interrupt_sequence_break;
1488 else
1489 interrupt_sequence_mode = interrupt_sequence_control_c;
1490}
1491
1492static void
1493show_remotebreak (struct ui_file *file, int from_tty,
1494 struct cmd_list_element *c,
1495 const char *value)
1496{
1497}
1498
c906108c
SS
1499/* This variable sets the number of bits in an address that are to be
1500 sent in a memory ("M" or "m") packet. Normally, after stripping
0df8b418 1501 leading zeros, the entire address would be sent. This variable
c906108c
SS
1502 restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
1503 initial implementation of remote.c restricted the address sent in
1504 memory packets to ``host::sizeof long'' bytes - (typically 32
1505 bits). Consequently, for 64 bit targets, the upper 32 bits of an
1506 address was never sent. Since fixing this bug may cause a break in
85102364 1507 some remote targets this variable is principally provided to
23860348 1508 facilitate backward compatibility. */
c906108c 1509
883b9c6c 1510static unsigned int remote_address_size;
c906108c 1511
11cf8741 1512\f
11cf8741 1513/* User configurable variables for the number of characters in a
ea9c271d
DJ
1514 memory read/write packet. MIN (rsa->remote_packet_size,
1515 rsa->sizeof_g_packet) is the default. Some targets need smaller
24b06219 1516 values (fifo overruns, et.al.) and some users need larger values
ad10f812
AC
1517 (speed up transfers). The variables ``preferred_*'' (the user
1518 request), ``current_*'' (what was actually set) and ``forced_*''
23860348 1519 (Positive - a soft limit, negative - a hard limit). */
11cf8741
JM
1520
1521struct memory_packet_config
1522{
a121b7c1 1523 const char *name;
11cf8741
JM
1524 long size;
1525 int fixed_p;
1526};
1527
cc0be08f
PA
1528/* The default max memory-write-packet-size, when the setting is
1529 "fixed". The 16k is historical. (It came from older GDB's using
1530 alloca for buffers and the knowledge (folklore?) that some hosts
1531 don't cope very well with large alloca calls.) */
1532#define DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED 16384
a5c0808e
PA
1533
1534/* The minimum remote packet size for memory transfers. Ensures we
1535 can write at least one byte. */
1536#define MIN_MEMORY_PACKET_SIZE 20
1537
cc0be08f
PA
1538/* Get the memory packet size, assuming it is fixed. */
1539
1540static long
1541get_fixed_memory_packet_size (struct memory_packet_config *config)
1542{
1543 gdb_assert (config->fixed_p);
1544
1545 if (config->size <= 0)
1546 return DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED;
1547 else
1548 return config->size;
1549}
1550
11cf8741
JM
1551/* Compute the current size of a read/write packet. Since this makes
1552 use of ``actual_register_packet_size'' the computation is dynamic. */
1553
6b8edb51
PA
1554long
1555remote_target::get_memory_packet_size (struct memory_packet_config *config)
11cf8741 1556{
d01949b6 1557 struct remote_state *rs = get_remote_state ();
9d6eea31 1558 remote_arch_state *rsa = rs->get_remote_arch_state (target_gdbarch ());
ea9c271d 1559
11cf8741
JM
1560 long what_they_get;
1561 if (config->fixed_p)
cc0be08f 1562 what_they_get = get_fixed_memory_packet_size (config);
11cf8741
JM
1563 else
1564 {
ea9c271d 1565 what_they_get = get_remote_packet_size ();
23860348 1566 /* Limit the packet to the size specified by the user. */
11cf8741
JM
1567 if (config->size > 0
1568 && what_they_get > config->size)
1569 what_they_get = config->size;
be2a5f71
DJ
1570
1571 /* Limit it to the size of the targets ``g'' response unless we have
1572 permission from the stub to use a larger packet size. */
1573 if (rs->explicit_packet_size == 0
1574 && rsa->actual_register_packet_size > 0
1575 && what_they_get > rsa->actual_register_packet_size)
1576 what_they_get = rsa->actual_register_packet_size;
11cf8741 1577 }
a5c0808e
PA
1578 if (what_they_get < MIN_MEMORY_PACKET_SIZE)
1579 what_they_get = MIN_MEMORY_PACKET_SIZE;
6d820c5c
DJ
1580
1581 /* Make sure there is room in the global buffer for this packet
1582 (including its trailing NUL byte). */
8d64371b
TT
1583 if (rs->buf.size () < what_they_get + 1)
1584 rs->buf.resize (2 * what_they_get);
6d820c5c 1585
11cf8741
JM
1586 return what_they_get;
1587}
1588
0df8b418 1589/* Update the size of a read/write packet. If they user wants
23860348 1590 something really big then do a sanity check. */
11cf8741
JM
1591
1592static void
ac88e2de 1593set_memory_packet_size (const char *args, struct memory_packet_config *config)
11cf8741
JM
1594{
1595 int fixed_p = config->fixed_p;
1596 long size = config->size;
a744cf53 1597
11cf8741 1598 if (args == NULL)
8a3fe4f8 1599 error (_("Argument required (integer, `fixed' or `limited')."));
11cf8741
JM
1600 else if (strcmp (args, "hard") == 0
1601 || strcmp (args, "fixed") == 0)
1602 fixed_p = 1;
1603 else if (strcmp (args, "soft") == 0
1604 || strcmp (args, "limit") == 0)
1605 fixed_p = 0;
1606 else
1607 {
1608 char *end;
a744cf53 1609
11cf8741
JM
1610 size = strtoul (args, &end, 0);
1611 if (args == end)
8a3fe4f8 1612 error (_("Invalid %s (bad syntax)."), config->name);
a5c0808e
PA
1613
1614 /* Instead of explicitly capping the size of a packet to or
1615 disallowing it, the user is allowed to set the size to
1616 something arbitrarily large. */
11cf8741 1617 }
a5c0808e 1618
23860348 1619 /* Extra checks? */
11cf8741
JM
1620 if (fixed_p && !config->fixed_p)
1621 {
cc0be08f
PA
1622 /* So that the query shows the correct value. */
1623 long query_size = (size <= 0
1624 ? DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED
1625 : size);
1626
e2e0b3e5
AC
1627 if (! query (_("The target may not be able to correctly handle a %s\n"
1628 "of %ld bytes. Change the packet size? "),
cc0be08f 1629 config->name, query_size))
8a3fe4f8 1630 error (_("Packet size not changed."));
11cf8741 1631 }
23860348 1632 /* Update the config. */
11cf8741
JM
1633 config->fixed_p = fixed_p;
1634 config->size = size;
1635}
1636
1637static void
1638show_memory_packet_size (struct memory_packet_config *config)
1639{
cc0be08f
PA
1640 if (config->size == 0)
1641 printf_filtered (_("The %s is 0 (default). "), config->name);
1642 else
1643 printf_filtered (_("The %s is %ld. "), config->name, config->size);
11cf8741 1644 if (config->fixed_p)
a3f17187 1645 printf_filtered (_("Packets are fixed at %ld bytes.\n"),
cc0be08f 1646 get_fixed_memory_packet_size (config));
11cf8741 1647 else
cc0be08f 1648 {
6b8edb51 1649 remote_target *remote = get_current_remote_target ();
cc0be08f 1650
6b8edb51 1651 if (remote != NULL)
cc0be08f 1652 printf_filtered (_("Packets are limited to %ld bytes.\n"),
6b8edb51 1653 remote->get_memory_packet_size (config));
cc0be08f
PA
1654 else
1655 puts_filtered ("The actual limit will be further reduced "
1656 "dependent on the target.\n");
1657 }
11cf8741
JM
1658}
1659
1660static struct memory_packet_config memory_write_packet_config =
1661{
1662 "memory-write-packet-size",
1663};
1664
1665static void
ac88e2de 1666set_memory_write_packet_size (const char *args, int from_tty)
11cf8741
JM
1667{
1668 set_memory_packet_size (args, &memory_write_packet_config);
1669}
1670
1671static void
ac88e2de 1672show_memory_write_packet_size (const char *args, int from_tty)
11cf8741
JM
1673{
1674 show_memory_packet_size (&memory_write_packet_config);
1675}
1676
055303e2
AB
1677/* Show the number of hardware watchpoints that can be used. */
1678
1679static void
1680show_hardware_watchpoint_limit (struct ui_file *file, int from_tty,
1681 struct cmd_list_element *c,
1682 const char *value)
1683{
1684 fprintf_filtered (file, _("The maximum number of target hardware "
1685 "watchpoints is %s.\n"), value);
1686}
1687
1688/* Show the length limit (in bytes) for hardware watchpoints. */
1689
1690static void
1691show_hardware_watchpoint_length_limit (struct ui_file *file, int from_tty,
1692 struct cmd_list_element *c,
1693 const char *value)
1694{
1695 fprintf_filtered (file, _("The maximum length (in bytes) of a target "
1696 "hardware watchpoint is %s.\n"), value);
1697}
1698
1699/* Show the number of hardware breakpoints that can be used. */
1700
1701static void
1702show_hardware_breakpoint_limit (struct ui_file *file, int from_tty,
1703 struct cmd_list_element *c,
1704 const char *value)
1705{
1706 fprintf_filtered (file, _("The maximum number of target hardware "
1707 "breakpoints is %s.\n"), value);
1708}
1709
6cc8564b
LM
1710/* Controls the maximum number of characters to display in the debug output
1711 for each remote packet. The remaining characters are omitted. */
1712
1713static int remote_packet_max_chars = 512;
1714
1715/* Show the maximum number of characters to display for each remote packet
1716 when remote debugging is enabled. */
1717
1718static void
1719show_remote_packet_max_chars (struct ui_file *file, int from_tty,
1720 struct cmd_list_element *c,
1721 const char *value)
1722{
1723 fprintf_filtered (file, _("Number of remote packet characters to "
1724 "display is %s.\n"), value);
1725}
1726
6b8edb51
PA
1727long
1728remote_target::get_memory_write_packet_size ()
11cf8741
JM
1729{
1730 return get_memory_packet_size (&memory_write_packet_config);
1731}
1732
1733static struct memory_packet_config memory_read_packet_config =
1734{
1735 "memory-read-packet-size",
1736};
1737
1738static void
ac88e2de 1739set_memory_read_packet_size (const char *args, int from_tty)
11cf8741
JM
1740{
1741 set_memory_packet_size (args, &memory_read_packet_config);
1742}
1743
1744static void
ac88e2de 1745show_memory_read_packet_size (const char *args, int from_tty)
11cf8741
JM
1746{
1747 show_memory_packet_size (&memory_read_packet_config);
1748}
1749
6b8edb51
PA
1750long
1751remote_target::get_memory_read_packet_size ()
11cf8741
JM
1752{
1753 long size = get_memory_packet_size (&memory_read_packet_config);
a744cf53 1754
11cf8741
JM
1755 /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
1756 extra buffer size argument before the memory read size can be
ea9c271d
DJ
1757 increased beyond this. */
1758 if (size > get_remote_packet_size ())
1759 size = get_remote_packet_size ();
11cf8741
JM
1760 return size;
1761}
1762
11cf8741 1763\f
5a2468f5 1764
5a2468f5
JM
1765struct packet_config
1766 {
bb572ddd
DJ
1767 const char *name;
1768 const char *title;
4082afcc
PA
1769
1770 /* If auto, GDB auto-detects support for this packet or feature,
1771 either through qSupported, or by trying the packet and looking
1772 at the response. If true, GDB assumes the target supports this
ca4f7f8b
PA
1773 packet. If false, the packet is disabled. Configs that don't
1774 have an associated command always have this set to auto. */
7f19b9a2 1775 enum auto_boolean detect;
4082afcc
PA
1776
1777 /* Does the target support this packet? */
5a2468f5
JM
1778 enum packet_support support;
1779 };
1780
4082afcc
PA
1781static enum packet_support packet_config_support (struct packet_config *config);
1782static enum packet_support packet_support (int packet);
5a2468f5
JM
1783
1784static void
fba45db2 1785show_packet_config_cmd (struct packet_config *config)
5a2468f5 1786{
a121b7c1 1787 const char *support = "internal-error";
a744cf53 1788
4082afcc 1789 switch (packet_config_support (config))
5a2468f5
JM
1790 {
1791 case PACKET_ENABLE:
1792 support = "enabled";
1793 break;
1794 case PACKET_DISABLE:
1795 support = "disabled";
1796 break;
1797 case PACKET_SUPPORT_UNKNOWN:
1798 support = "unknown";
1799 break;
1800 }
1801 switch (config->detect)
1802 {
7f19b9a2 1803 case AUTO_BOOLEAN_AUTO:
3e43a32a
MS
1804 printf_filtered (_("Support for the `%s' packet "
1805 "is auto-detected, currently %s.\n"),
37a105a1 1806 config->name, support);
5a2468f5 1807 break;
7f19b9a2
AC
1808 case AUTO_BOOLEAN_TRUE:
1809 case AUTO_BOOLEAN_FALSE:
37a105a1
DJ
1810 printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
1811 config->name, support);
8e248173 1812 break;
5a2468f5
JM
1813 }
1814}
1815
1816static void
bb572ddd
DJ
1817add_packet_config_cmd (struct packet_config *config, const char *name,
1818 const char *title, int legacy)
d471ea57 1819{
5a2468f5
JM
1820 char *set_doc;
1821 char *show_doc;
d471ea57 1822 char *cmd_name;
3ed07be4 1823
5a2468f5
JM
1824 config->name = name;
1825 config->title = title;
590042fc 1826 set_doc = xstrprintf ("Set use of remote protocol `%s' (%s) packet.",
b435e160 1827 name, title);
3e43a32a 1828 show_doc = xstrprintf ("Show current use of remote "
590042fc 1829 "protocol `%s' (%s) packet.",
b435e160 1830 name, title);
d471ea57 1831 /* set/show TITLE-packet {auto,on,off} */
b435e160 1832 cmd_name = xstrprintf ("%s-packet", title);
e9e68a56 1833 add_setshow_auto_boolean_cmd (cmd_name, class_obscure,
3e43a32a
MS
1834 &config->detect, set_doc,
1835 show_doc, NULL, /* help_doc */
4082afcc 1836 NULL,
bb572ddd
DJ
1837 show_remote_protocol_packet_cmd,
1838 &remote_set_cmdlist, &remote_show_cmdlist);
1eefb858
TT
1839 /* The command code copies the documentation strings. */
1840 xfree (set_doc);
1841 xfree (show_doc);
23860348 1842 /* set/show remote NAME-packet {auto,on,off} -- legacy. */
d471ea57
AC
1843 if (legacy)
1844 {
1845 char *legacy_name;
a744cf53 1846
b435e160 1847 legacy_name = xstrprintf ("%s-packet", name);
d471ea57 1848 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
bb572ddd 1849 &remote_set_cmdlist);
d471ea57 1850 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
bb572ddd 1851 &remote_show_cmdlist);
d471ea57 1852 }
5a2468f5
JM
1853}
1854
d471ea57 1855static enum packet_result
a76d924d 1856packet_check_result (const char *buf)
5a2468f5 1857{
d471ea57 1858 if (buf[0] != '\0')
5a2468f5 1859 {
d471ea57 1860 /* The stub recognized the packet request. Check that the
23860348 1861 operation succeeded. */
a76d924d
DJ
1862 if (buf[0] == 'E'
1863 && isxdigit (buf[1]) && isxdigit (buf[2])
1864 && buf[3] == '\0')
85102364 1865 /* "Enn" - definitely an error. */
a76d924d
DJ
1866 return PACKET_ERROR;
1867
1868 /* Always treat "E." as an error. This will be used for
1869 more verbose error messages, such as E.memtypes. */
1870 if (buf[0] == 'E' && buf[1] == '.')
1871 return PACKET_ERROR;
1872
1873 /* The packet may or may not be OK. Just assume it is. */
1874 return PACKET_OK;
1875 }
1876 else
1877 /* The stub does not support the packet. */
1878 return PACKET_UNKNOWN;
1879}
1880
8d64371b
TT
1881static enum packet_result
1882packet_check_result (const gdb::char_vector &buf)
1883{
1884 return packet_check_result (buf.data ());
1885}
1886
a76d924d
DJ
1887static enum packet_result
1888packet_ok (const char *buf, struct packet_config *config)
1889{
1890 enum packet_result result;
1891
4082afcc
PA
1892 if (config->detect != AUTO_BOOLEAN_TRUE
1893 && config->support == PACKET_DISABLE)
1894 internal_error (__FILE__, __LINE__,
1895 _("packet_ok: attempt to use a disabled packet"));
1896
a76d924d
DJ
1897 result = packet_check_result (buf);
1898 switch (result)
1899 {
1900 case PACKET_OK:
1901 case PACKET_ERROR:
1902 /* The stub recognized the packet request. */
4082afcc 1903 if (config->support == PACKET_SUPPORT_UNKNOWN)
d471ea57 1904 {
d471ea57
AC
1905 if (remote_debug)
1906 fprintf_unfiltered (gdb_stdlog,
4082afcc
PA
1907 "Packet %s (%s) is supported\n",
1908 config->name, config->title);
d471ea57 1909 config->support = PACKET_ENABLE;
d471ea57 1910 }
a76d924d
DJ
1911 break;
1912 case PACKET_UNKNOWN:
23860348 1913 /* The stub does not support the packet. */
4082afcc
PA
1914 if (config->detect == AUTO_BOOLEAN_AUTO
1915 && config->support == PACKET_ENABLE)
d471ea57 1916 {
4082afcc
PA
1917 /* If the stub previously indicated that the packet was
1918 supported then there is a protocol error. */
1919 error (_("Protocol error: %s (%s) conflicting enabled responses."),
1920 config->name, config->title);
1921 }
1922 else if (config->detect == AUTO_BOOLEAN_TRUE)
1923 {
1924 /* The user set it wrong. */
1925 error (_("Enabled packet %s (%s) not recognized by stub"),
1926 config->name, config->title);
d471ea57 1927 }
4082afcc
PA
1928
1929 if (remote_debug)
1930 fprintf_unfiltered (gdb_stdlog,
1931 "Packet %s (%s) is NOT supported\n",
1932 config->name, config->title);
1933 config->support = PACKET_DISABLE;
a76d924d 1934 break;
5a2468f5 1935 }
a76d924d
DJ
1936
1937 return result;
5a2468f5
JM
1938}
1939
8d64371b
TT
1940static enum packet_result
1941packet_ok (const gdb::char_vector &buf, struct packet_config *config)
1942{
1943 return packet_ok (buf.data (), config);
1944}
1945
444abaca
DJ
1946enum {
1947 PACKET_vCont = 0,
1948 PACKET_X,
1949 PACKET_qSymbol,
1950 PACKET_P,
1951 PACKET_p,
1952 PACKET_Z0,
1953 PACKET_Z1,
1954 PACKET_Z2,
1955 PACKET_Z3,
1956 PACKET_Z4,
15a201c8 1957 PACKET_vFile_setfs,
a6b151f1
DJ
1958 PACKET_vFile_open,
1959 PACKET_vFile_pread,
1960 PACKET_vFile_pwrite,
1961 PACKET_vFile_close,
1962 PACKET_vFile_unlink,
b9e7b9c3 1963 PACKET_vFile_readlink,
0a93529c 1964 PACKET_vFile_fstat,
0876f84a 1965 PACKET_qXfer_auxv,
23181151 1966 PACKET_qXfer_features,
c78fa86a 1967 PACKET_qXfer_exec_file,
cfa9d6d9 1968 PACKET_qXfer_libraries,
2268b414 1969 PACKET_qXfer_libraries_svr4,
fd79ecee 1970 PACKET_qXfer_memory_map,
07e059b5 1971 PACKET_qXfer_osdata,
dc146f7c 1972 PACKET_qXfer_threads,
0fb4aa4b 1973 PACKET_qXfer_statictrace_read,
b3b9301e 1974 PACKET_qXfer_traceframe_info,
169081d0 1975 PACKET_qXfer_uib,
711e434b 1976 PACKET_qGetTIBAddr,
444abaca 1977 PACKET_qGetTLSAddr,
be2a5f71 1978 PACKET_qSupported,
bd3eecc3 1979 PACKET_qTStatus,
89be2091 1980 PACKET_QPassSignals,
82075af2 1981 PACKET_QCatchSyscalls,
9b224c5e 1982 PACKET_QProgramSignals,
bc3b087d 1983 PACKET_QSetWorkingDir,
aefd8b33 1984 PACKET_QStartupWithShell,
0a2dde4a
SDJ
1985 PACKET_QEnvironmentHexEncoded,
1986 PACKET_QEnvironmentReset,
1987 PACKET_QEnvironmentUnset,
936d2992 1988 PACKET_qCRC,
08388c79 1989 PACKET_qSearch_memory,
2d717e4f
DJ
1990 PACKET_vAttach,
1991 PACKET_vRun,
a6f3e723 1992 PACKET_QStartNoAckMode,
82f73884 1993 PACKET_vKill,
4aa995e1
PA
1994 PACKET_qXfer_siginfo_read,
1995 PACKET_qXfer_siginfo_write,
0b16c5cf 1996 PACKET_qAttached,
4082afcc
PA
1997
1998 /* Support for conditional tracepoints. */
782b2b07 1999 PACKET_ConditionalTracepoints,
4082afcc
PA
2000
2001 /* Support for target-side breakpoint conditions. */
3788aec7 2002 PACKET_ConditionalBreakpoints,
4082afcc
PA
2003
2004 /* Support for target-side breakpoint commands. */
d3ce09f5 2005 PACKET_BreakpointCommands,
4082afcc
PA
2006
2007 /* Support for fast tracepoints. */
7a697b8d 2008 PACKET_FastTracepoints,
4082afcc
PA
2009
2010 /* Support for static tracepoints. */
0fb4aa4b 2011 PACKET_StaticTracepoints,
4082afcc
PA
2012
2013 /* Support for installing tracepoints while a trace experiment is
2014 running. */
1e4d1764 2015 PACKET_InstallInTrace,
4082afcc 2016
40ab02ce
MS
2017 PACKET_bc,
2018 PACKET_bs,
409873ef 2019 PACKET_TracepointSource,
d914c394 2020 PACKET_QAllow,
78d85199 2021 PACKET_qXfer_fdpic,
03583c20 2022 PACKET_QDisableRandomization,
d1feda86 2023 PACKET_QAgent,
f6f899bf 2024 PACKET_QTBuffer_size,
9accd112
MM
2025 PACKET_Qbtrace_off,
2026 PACKET_Qbtrace_bts,
b20a6524 2027 PACKET_Qbtrace_pt,
9accd112 2028 PACKET_qXfer_btrace,
4082afcc
PA
2029
2030 /* Support for the QNonStop packet. */
2031 PACKET_QNonStop,
2032
65706a29
PA
2033 /* Support for the QThreadEvents packet. */
2034 PACKET_QThreadEvents,
2035
4082afcc
PA
2036 /* Support for multi-process extensions. */
2037 PACKET_multiprocess_feature,
2038
2039 /* Support for enabling and disabling tracepoints while a trace
2040 experiment is running. */
2041 PACKET_EnableDisableTracepoints_feature,
2042
2043 /* Support for collecting strings using the tracenz bytecode. */
2044 PACKET_tracenz_feature,
2045
2046 /* Support for continuing to run a trace experiment while GDB is
2047 disconnected. */
2048 PACKET_DisconnectedTracing_feature,
2049
2050 /* Support for qXfer:libraries-svr4:read with a non-empty annex. */
2051 PACKET_augmented_libraries_svr4_read_feature,
2052
f4abbc16
MM
2053 /* Support for the qXfer:btrace-conf:read packet. */
2054 PACKET_qXfer_btrace_conf,
2055
d33501a5
MM
2056 /* Support for the Qbtrace-conf:bts:size packet. */
2057 PACKET_Qbtrace_conf_bts_size,
2058
f7e6eed5
PA
2059 /* Support for swbreak+ feature. */
2060 PACKET_swbreak_feature,
2061
2062 /* Support for hwbreak+ feature. */
2063 PACKET_hwbreak_feature,
2064
89245bc0
DB
2065 /* Support for fork events. */
2066 PACKET_fork_event_feature,
2067
2068 /* Support for vfork events. */
2069 PACKET_vfork_event_feature,
2070
b20a6524
MM
2071 /* Support for the Qbtrace-conf:pt:size packet. */
2072 PACKET_Qbtrace_conf_pt_size,
2073
94585166
DB
2074 /* Support for exec events. */
2075 PACKET_exec_event_feature,
2076
750ce8d1
YQ
2077 /* Support for query supported vCont actions. */
2078 PACKET_vContSupported,
2079
de979965
PA
2080 /* Support remote CTRL-C. */
2081 PACKET_vCtrlC,
2082
f2faf941
PA
2083 /* Support TARGET_WAITKIND_NO_RESUMED. */
2084 PACKET_no_resumed,
2085
444abaca
DJ
2086 PACKET_MAX
2087};
506fb367 2088
444abaca 2089static struct packet_config remote_protocol_packets[PACKET_MAX];
dc8acb97 2090
f7e6eed5
PA
2091/* Returns the packet's corresponding "set remote foo-packet" command
2092 state. See struct packet_config for more details. */
2093
2094static enum auto_boolean
2095packet_set_cmd_state (int packet)
2096{
2097 return remote_protocol_packets[packet].detect;
2098}
2099
4082afcc
PA
2100/* Returns whether a given packet or feature is supported. This takes
2101 into account the state of the corresponding "set remote foo-packet"
2102 command, which may be used to bypass auto-detection. */
dc8acb97 2103
4082afcc
PA
2104static enum packet_support
2105packet_config_support (struct packet_config *config)
2106{
2107 switch (config->detect)
444abaca 2108 {
4082afcc
PA
2109 case AUTO_BOOLEAN_TRUE:
2110 return PACKET_ENABLE;
2111 case AUTO_BOOLEAN_FALSE:
2112 return PACKET_DISABLE;
2113 case AUTO_BOOLEAN_AUTO:
2114 return config->support;
2115 default:
2116 gdb_assert_not_reached (_("bad switch"));
444abaca 2117 }
4082afcc
PA
2118}
2119
2120/* Same as packet_config_support, but takes the packet's enum value as
2121 argument. */
2122
2123static enum packet_support
2124packet_support (int packet)
2125{
2126 struct packet_config *config = &remote_protocol_packets[packet];
2127
2128 return packet_config_support (config);
dc8acb97
MS
2129}
2130
5a2468f5 2131static void
444abaca
DJ
2132show_remote_protocol_packet_cmd (struct ui_file *file, int from_tty,
2133 struct cmd_list_element *c,
2134 const char *value)
5a2468f5 2135{
444abaca 2136 struct packet_config *packet;
5a2468f5 2137
444abaca
DJ
2138 for (packet = remote_protocol_packets;
2139 packet < &remote_protocol_packets[PACKET_MAX];
2140 packet++)
2141 {
2142 if (&packet->detect == c->var)
2143 {
2144 show_packet_config_cmd (packet);
2145 return;
2146 }
2147 }
9b20d036 2148 internal_error (__FILE__, __LINE__, _("Could not find config for %s"),
444abaca 2149 c->name);
5a2468f5
JM
2150}
2151
d471ea57
AC
2152/* Should we try one of the 'Z' requests? */
2153
2154enum Z_packet_type
2155{
2156 Z_PACKET_SOFTWARE_BP,
2157 Z_PACKET_HARDWARE_BP,
2158 Z_PACKET_WRITE_WP,
2159 Z_PACKET_READ_WP,
2160 Z_PACKET_ACCESS_WP,
2161 NR_Z_PACKET_TYPES
2162};
96baa820 2163
d471ea57 2164/* For compatibility with older distributions. Provide a ``set remote
23860348 2165 Z-packet ...'' command that updates all the Z packet types. */
d471ea57 2166
7f19b9a2 2167static enum auto_boolean remote_Z_packet_detect;
96baa820
JM
2168
2169static void
eb4c3f4a 2170set_remote_protocol_Z_packet_cmd (const char *args, int from_tty,
fba45db2 2171 struct cmd_list_element *c)
96baa820 2172{
d471ea57 2173 int i;
a744cf53 2174
d471ea57 2175 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
4082afcc 2176 remote_protocol_packets[PACKET_Z0 + i].detect = remote_Z_packet_detect;
96baa820
JM
2177}
2178
2179static void
08546159
AC
2180show_remote_protocol_Z_packet_cmd (struct ui_file *file, int from_tty,
2181 struct cmd_list_element *c,
2182 const char *value)
96baa820 2183{
d471ea57 2184 int i;
a744cf53 2185
d471ea57
AC
2186 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
2187 {
444abaca 2188 show_packet_config_cmd (&remote_protocol_packets[PACKET_Z0 + i]);
d471ea57 2189 }
96baa820
JM
2190}
2191
4082afcc
PA
2192/* Returns true if the multi-process extensions are in effect. */
2193
2194static int
2195remote_multi_process_p (struct remote_state *rs)
2196{
2197 return packet_support (PACKET_multiprocess_feature) == PACKET_ENABLE;
2198}
2199
de0d863e
DB
2200/* Returns true if fork events are supported. */
2201
2202static int
2203remote_fork_event_p (struct remote_state *rs)
2204{
2205 return packet_support (PACKET_fork_event_feature) == PACKET_ENABLE;
2206}
2207
c269dbdb
DB
2208/* Returns true if vfork events are supported. */
2209
2210static int
2211remote_vfork_event_p (struct remote_state *rs)
2212{
2213 return packet_support (PACKET_vfork_event_feature) == PACKET_ENABLE;
2214}
2215
d46addbb
DB
2216/* Returns true if exec events are supported. */
2217
2218static int
2219remote_exec_event_p (struct remote_state *rs)
2220{
2221 return packet_support (PACKET_exec_event_feature) == PACKET_ENABLE;
2222}
2223
cbb8991c
DB
2224/* Insert fork catchpoint target routine. If fork events are enabled
2225 then return success, nothing more to do. */
2226
f6ac5f3d
PA
2227int
2228remote_target::insert_fork_catchpoint (int pid)
cbb8991c
DB
2229{
2230 struct remote_state *rs = get_remote_state ();
2231
2232 return !remote_fork_event_p (rs);
2233}
2234
2235/* Remove fork catchpoint target routine. Nothing to do, just
2236 return success. */
2237
f6ac5f3d
PA
2238int
2239remote_target::remove_fork_catchpoint (int pid)
cbb8991c
DB
2240{
2241 return 0;
2242}
2243
2244/* Insert vfork catchpoint target routine. If vfork events are enabled
2245 then return success, nothing more to do. */
2246
f6ac5f3d
PA
2247int
2248remote_target::insert_vfork_catchpoint (int pid)
cbb8991c
DB
2249{
2250 struct remote_state *rs = get_remote_state ();
2251
2252 return !remote_vfork_event_p (rs);
2253}
2254
2255/* Remove vfork catchpoint target routine. Nothing to do, just
2256 return success. */
2257
f6ac5f3d
PA
2258int
2259remote_target::remove_vfork_catchpoint (int pid)
cbb8991c
DB
2260{
2261 return 0;
2262}
2263
d46addbb
DB
2264/* Insert exec catchpoint target routine. If exec events are
2265 enabled, just return success. */
2266
f6ac5f3d
PA
2267int
2268remote_target::insert_exec_catchpoint (int pid)
d46addbb
DB
2269{
2270 struct remote_state *rs = get_remote_state ();
2271
2272 return !remote_exec_event_p (rs);
2273}
2274
2275/* Remove exec catchpoint target routine. Nothing to do, just
2276 return success. */
2277
f6ac5f3d
PA
2278int
2279remote_target::remove_exec_catchpoint (int pid)
d46addbb
DB
2280{
2281 return 0;
2282}
2283
c906108c
SS
2284\f
2285
ffdd69cf
TT
2286/* Take advantage of the fact that the TID field is not used, to tag
2287 special ptids with it set to != 0. */
2288static const ptid_t magic_null_ptid (42000, -1, 1);
2289static const ptid_t not_sent_ptid (42000, -2, 1);
2290static const ptid_t any_thread_ptid (42000, 0, 1);
79d7f229 2291
0b16c5cf
PA
2292/* Find out if the stub attached to PID (and hence GDB should offer to
2293 detach instead of killing it when bailing out). */
2294
6b8edb51
PA
2295int
2296remote_target::remote_query_attached (int pid)
0b16c5cf
PA
2297{
2298 struct remote_state *rs = get_remote_state ();
bba74b36 2299 size_t size = get_remote_packet_size ();
0b16c5cf 2300
4082afcc 2301 if (packet_support (PACKET_qAttached) == PACKET_DISABLE)
0b16c5cf
PA
2302 return 0;
2303
2304 if (remote_multi_process_p (rs))
8d64371b 2305 xsnprintf (rs->buf.data (), size, "qAttached:%x", pid);
0b16c5cf 2306 else
8d64371b 2307 xsnprintf (rs->buf.data (), size, "qAttached");
0b16c5cf
PA
2308
2309 putpkt (rs->buf);
8d64371b 2310 getpkt (&rs->buf, 0);
0b16c5cf
PA
2311
2312 switch (packet_ok (rs->buf,
1554e9be 2313 &remote_protocol_packets[PACKET_qAttached]))
0b16c5cf
PA
2314 {
2315 case PACKET_OK:
8d64371b 2316 if (strcmp (rs->buf.data (), "1") == 0)
0b16c5cf
PA
2317 return 1;
2318 break;
2319 case PACKET_ERROR:
8d64371b 2320 warning (_("Remote failure reply: %s"), rs->buf.data ());
0b16c5cf
PA
2321 break;
2322 case PACKET_UNKNOWN:
2323 break;
2324 }
2325
2326 return 0;
2327}
2328
49c62f2e
PA
2329/* Add PID to GDB's inferior table. If FAKE_PID_P is true, then PID
2330 has been invented by GDB, instead of reported by the target. Since
2331 we can be connected to a remote system before before knowing about
2332 any inferior, mark the target with execution when we find the first
2333 inferior. If ATTACHED is 1, then we had just attached to this
2334 inferior. If it is 0, then we just created this inferior. If it
2335 is -1, then try querying the remote stub to find out if it had
1b6e6f5c
GB
2336 attached to the inferior or not. If TRY_OPEN_EXEC is true then
2337 attempt to open this inferior's executable as the main executable
2338 if no main executable is open already. */
1941c569 2339
6b8edb51 2340inferior *
9ab8741a 2341remote_target::remote_add_inferior (bool fake_pid_p, int pid, int attached,
6b8edb51 2342 int try_open_exec)
1941c569 2343{
1941c569
PA
2344 struct inferior *inf;
2345
0b16c5cf
PA
2346 /* Check whether this process we're learning about is to be
2347 considered attached, or if is to be considered to have been
2348 spawned by the stub. */
2349 if (attached == -1)
2350 attached = remote_query_attached (pid);
2351
f5656ead 2352 if (gdbarch_has_global_solist (target_gdbarch ()))
6c95b8df
PA
2353 {
2354 /* If the target shares code across all inferiors, then every
2355 attach adds a new inferior. */
2356 inf = add_inferior (pid);
2357
2358 /* ... and every inferior is bound to the same program space.
2359 However, each inferior may still have its own address
2360 space. */
2361 inf->aspace = maybe_new_address_space ();
2362 inf->pspace = current_program_space;
2363 }
2364 else
2365 {
2366 /* In the traditional debugging scenario, there's a 1-1 match
2367 between program/address spaces. We simply bind the inferior
2368 to the program space's address space. */
2369 inf = current_inferior ();
78f2c40a
PA
2370
2371 /* However, if the current inferior is already bound to a
2372 process, find some other empty inferior. */
2373 if (inf->pid != 0)
2374 {
2375 inf = nullptr;
2376 for (inferior *it : all_inferiors ())
2377 if (it->pid == 0)
2378 {
2379 inf = it;
2380 break;
2381 }
2382 }
2383 if (inf == nullptr)
2384 {
2385 /* Since all inferiors were already bound to a process, add
2386 a new inferior. */
2387 inf = add_inferior_with_spaces ();
2388 }
2389 switch_to_inferior_no_thread (inf);
6c95b8df
PA
2390 inferior_appeared (inf, pid);
2391 }
1941c569 2392
0b16c5cf 2393 inf->attach_flag = attached;
49c62f2e 2394 inf->fake_pid_p = fake_pid_p;
0b16c5cf 2395
1b6e6f5c
GB
2396 /* If no main executable is currently open then attempt to
2397 open the file that was executed to create this inferior. */
835205d0 2398 if (try_open_exec && get_exec_file (0) == NULL)
bb805577 2399 exec_file_locate_attach (pid, 0, 1);
1b6e6f5c 2400
1941c569
PA
2401 return inf;
2402}
2403
7aabaf9d 2404static remote_thread_info *get_remote_thread_info (thread_info *thread);
00431a78 2405static remote_thread_info *get_remote_thread_info (ptid_t ptid);
85ad3aaf 2406
1941c569
PA
2407/* Add thread PTID to GDB's thread list. Tag it as executing/running
2408 according to RUNNING. */
2409
00431a78 2410thread_info *
6b8edb51 2411remote_target::remote_add_thread (ptid_t ptid, bool running, bool executing)
c906108c 2412{
b7ea362b 2413 struct remote_state *rs = get_remote_state ();
85ad3aaf 2414 struct thread_info *thread;
b7ea362b
PA
2415
2416 /* GDB historically didn't pull threads in the initial connection
2417 setup. If the remote target doesn't even have a concept of
2418 threads (e.g., a bare-metal target), even if internally we
2419 consider that a single-threaded target, mentioning a new thread
2420 might be confusing to the user. Be silent then, preserving the
2421 age old behavior. */
2422 if (rs->starting_up)
85ad3aaf 2423 thread = add_thread_silent (ptid);
b7ea362b 2424 else
85ad3aaf 2425 thread = add_thread (ptid);
1941c569 2426
7aabaf9d 2427 get_remote_thread_info (thread)->vcont_resumed = executing;
0d5b594f 2428 set_executing (ptid, executing);
1941c569 2429 set_running (ptid, running);
00431a78
PA
2430
2431 return thread;
1941c569
PA
2432}
2433
2434/* Come here when we learn about a thread id from the remote target.
2435 It may be the first time we hear about such thread, so take the
2436 opportunity to add it to GDB's thread list. In case this is the
2437 first time we're noticing its corresponding inferior, add it to
0d5b594f
PA
2438 GDB's inferior list as well. EXECUTING indicates whether the
2439 thread is (internally) executing or stopped. */
1941c569 2440
6b8edb51
PA
2441void
2442remote_target::remote_notice_new_inferior (ptid_t currthread, int executing)
1941c569 2443{
0d5b594f
PA
2444 /* In non-stop mode, we assume new found threads are (externally)
2445 running until proven otherwise with a stop reply. In all-stop,
2446 we can only get here if all threads are stopped. */
2447 int running = target_is_non_stop_p () ? 1 : 0;
2448
c906108c
SS
2449 /* If this is a new thread, add it to GDB's thread list.
2450 If we leave it up to WFI to do this, bad things will happen. */
82f73884 2451
00431a78
PA
2452 thread_info *tp = find_thread_ptid (currthread);
2453 if (tp != NULL && tp->state == THREAD_EXITED)
82f73884
PA
2454 {
2455 /* We're seeing an event on a thread id we knew had exited.
2456 This has to be a new thread reusing the old id. Add it. */
0d5b594f 2457 remote_add_thread (currthread, running, executing);
82f73884
PA
2458 return;
2459 }
2460
79d7f229 2461 if (!in_thread_list (currthread))
c0a2216e 2462 {
1941c569 2463 struct inferior *inf = NULL;
e99b03dc 2464 int pid = currthread.pid ();
1941c569 2465
0e998d96 2466 if (inferior_ptid.is_pid ()
e99b03dc 2467 && pid == inferior_ptid.pid ())
c0a2216e
PA
2468 {
2469 /* inferior_ptid has no thread member yet. This can happen
2470 with the vAttach -> remote_wait,"TAAthread:" path if the
2471 stub doesn't support qC. This is the first stop reported
2472 after an attach, so this is the main thread. Update the
2473 ptid in the thread list. */
f2907e49 2474 if (in_thread_list (ptid_t (pid)))
bad34192
PA
2475 thread_change_ptid (inferior_ptid, currthread);
2476 else
2477 {
0d5b594f 2478 remote_add_thread (currthread, running, executing);
bad34192
PA
2479 inferior_ptid = currthread;
2480 }
dc146f7c 2481 return;
c0a2216e 2482 }
82f73884 2483
d7e15655 2484 if (magic_null_ptid == inferior_ptid)
c0a2216e
PA
2485 {
2486 /* inferior_ptid is not set yet. This can happen with the
2487 vRun -> remote_wait,"TAAthread:" path if the stub
2488 doesn't support qC. This is the first stop reported
2489 after an attach, so this is the main thread. Update the
2490 ptid in the thread list. */
dc146f7c 2491 thread_change_ptid (inferior_ptid, currthread);
82f73884 2492 return;
c0a2216e 2493 }
82f73884 2494
29c87f7f
PA
2495 /* When connecting to a target remote, or to a target
2496 extended-remote which already was debugging an inferior, we
2497 may not know about it yet. Add it before adding its child
2498 thread, so notifications are emitted in a sensible order. */
e99b03dc 2499 if (find_inferior_pid (currthread.pid ()) == NULL)
49c62f2e
PA
2500 {
2501 struct remote_state *rs = get_remote_state ();
9ab8741a 2502 bool fake_pid_p = !remote_multi_process_p (rs);
49c62f2e
PA
2503
2504 inf = remote_add_inferior (fake_pid_p,
e99b03dc 2505 currthread.pid (), -1, 1);
49c62f2e 2506 }
29c87f7f 2507
82f73884 2508 /* This is really a new thread. Add it. */
00431a78
PA
2509 thread_info *new_thr
2510 = remote_add_thread (currthread, running, executing);
1941c569
PA
2511
2512 /* If we found a new inferior, let the common code do whatever
2513 it needs to with it (e.g., read shared libraries, insert
b7ea362b
PA
2514 breakpoints), unless we're just setting up an all-stop
2515 connection. */
1941c569 2516 if (inf != NULL)
b7ea362b
PA
2517 {
2518 struct remote_state *rs = get_remote_state ();
2519
6efcd9a8 2520 if (!rs->starting_up)
00431a78 2521 notice_new_inferior (new_thr, executing, 0);
b7ea362b 2522 }
c0a2216e 2523 }
c906108c
SS
2524}
2525
85ad3aaf 2526/* Return THREAD's private thread data, creating it if necessary. */
dc146f7c 2527
7aabaf9d
SM
2528static remote_thread_info *
2529get_remote_thread_info (thread_info *thread)
dc146f7c 2530{
85ad3aaf 2531 gdb_assert (thread != NULL);
dc146f7c 2532
85ad3aaf 2533 if (thread->priv == NULL)
7aabaf9d 2534 thread->priv.reset (new remote_thread_info);
dc146f7c 2535
7aabaf9d 2536 return static_cast<remote_thread_info *> (thread->priv.get ());
85ad3aaf
PA
2537}
2538
7aabaf9d
SM
2539static remote_thread_info *
2540get_remote_thread_info (ptid_t ptid)
85ad3aaf 2541{
00431a78
PA
2542 thread_info *thr = find_thread_ptid (ptid);
2543 return get_remote_thread_info (thr);
dc146f7c
VP
2544}
2545
74531fed
PA
2546/* Call this function as a result of
2547 1) A halt indication (T packet) containing a thread id
2548 2) A direct query of currthread
0df8b418 2549 3) Successful execution of set thread */
74531fed
PA
2550
2551static void
47f8a51d 2552record_currthread (struct remote_state *rs, ptid_t currthread)
74531fed 2553{
47f8a51d 2554 rs->general_thread = currthread;
74531fed
PA
2555}
2556
89be2091
DJ
2557/* If 'QPassSignals' is supported, tell the remote stub what signals
2558 it can simply pass through to the inferior without reporting. */
2559
f6ac5f3d 2560void
adc6a863 2561remote_target::pass_signals (gdb::array_view<const unsigned char> pass_signals)
89be2091 2562{
4082afcc 2563 if (packet_support (PACKET_QPassSignals) != PACKET_DISABLE)
89be2091
DJ
2564 {
2565 char *pass_packet, *p;
adc6a863 2566 int count = 0;
747dc59d 2567 struct remote_state *rs = get_remote_state ();
89be2091 2568
adc6a863
PA
2569 gdb_assert (pass_signals.size () < 256);
2570 for (size_t i = 0; i < pass_signals.size (); i++)
89be2091 2571 {
2455069d 2572 if (pass_signals[i])
89be2091
DJ
2573 count++;
2574 }
224c3ddb 2575 pass_packet = (char *) xmalloc (count * 3 + strlen ("QPassSignals:") + 1);
89be2091
DJ
2576 strcpy (pass_packet, "QPassSignals:");
2577 p = pass_packet + strlen (pass_packet);
adc6a863 2578 for (size_t i = 0; i < pass_signals.size (); i++)
89be2091 2579 {
2455069d 2580 if (pass_signals[i])
89be2091
DJ
2581 {
2582 if (i >= 16)
2583 *p++ = tohex (i >> 4);
2584 *p++ = tohex (i & 15);
2585 if (count)
2586 *p++ = ';';
2587 else
2588 break;
2589 count--;
2590 }
2591 }
2592 *p = 0;
747dc59d 2593 if (!rs->last_pass_packet || strcmp (rs->last_pass_packet, pass_packet))
89be2091 2594 {
89be2091 2595 putpkt (pass_packet);
8d64371b 2596 getpkt (&rs->buf, 0);
8dc5b319 2597 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QPassSignals]);
747dc59d
TT
2598 if (rs->last_pass_packet)
2599 xfree (rs->last_pass_packet);
2600 rs->last_pass_packet = pass_packet;
89be2091
DJ
2601 }
2602 else
2603 xfree (pass_packet);
2604 }
2605}
2606
82075af2
JS
2607/* If 'QCatchSyscalls' is supported, tell the remote stub
2608 to report syscalls to GDB. */
2609
f6ac5f3d
PA
2610int
2611remote_target::set_syscall_catchpoint (int pid, bool needed, int any_count,
2612 gdb::array_view<const int> syscall_counts)
82075af2 2613{
b80406ac 2614 const char *catch_packet;
82075af2
JS
2615 enum packet_result result;
2616 int n_sysno = 0;
2617
2618 if (packet_support (PACKET_QCatchSyscalls) == PACKET_DISABLE)
2619 {
2620 /* Not supported. */
2621 return 1;
2622 }
2623
649a140c 2624 if (needed && any_count == 0)
82075af2 2625 {
649a140c
PA
2626 /* Count how many syscalls are to be caught. */
2627 for (size_t i = 0; i < syscall_counts.size (); i++)
82075af2 2628 {
649a140c 2629 if (syscall_counts[i] != 0)
82075af2
JS
2630 n_sysno++;
2631 }
2632 }
2633
2634 if (remote_debug)
2635 {
2636 fprintf_unfiltered (gdb_stdlog,
2637 "remote_set_syscall_catchpoint "
2638 "pid %d needed %d any_count %d n_sysno %d\n",
2639 pid, needed, any_count, n_sysno);
2640 }
2641
1b81856f 2642 std::string built_packet;
82075af2
JS
2643 if (needed)
2644 {
2645 /* Prepare a packet with the sysno list, assuming max 8+1
2646 characters for a sysno. If the resulting packet size is too
2647 big, fallback on the non-selective packet. */
2648 const int maxpktsz = strlen ("QCatchSyscalls:1") + n_sysno * 9 + 1;
1b81856f
PA
2649 built_packet.reserve (maxpktsz);
2650 built_packet = "QCatchSyscalls:1";
649a140c 2651 if (any_count == 0)
82075af2 2652 {
649a140c
PA
2653 /* Add in each syscall to be caught. */
2654 for (size_t i = 0; i < syscall_counts.size (); i++)
82075af2 2655 {
649a140c
PA
2656 if (syscall_counts[i] != 0)
2657 string_appendf (built_packet, ";%zx", i);
82075af2
JS
2658 }
2659 }
1b81856f 2660 if (built_packet.size () > get_remote_packet_size ())
82075af2
JS
2661 {
2662 /* catch_packet too big. Fallback to less efficient
2663 non selective mode, with GDB doing the filtering. */
b80406ac 2664 catch_packet = "QCatchSyscalls:1";
82075af2 2665 }
b80406ac 2666 else
1b81856f 2667 catch_packet = built_packet.c_str ();
82075af2
JS
2668 }
2669 else
b80406ac 2670 catch_packet = "QCatchSyscalls:0";
82075af2 2671
b80406ac 2672 struct remote_state *rs = get_remote_state ();
82075af2 2673
b80406ac 2674 putpkt (catch_packet);
8d64371b 2675 getpkt (&rs->buf, 0);
b80406ac
TT
2676 result = packet_ok (rs->buf, &remote_protocol_packets[PACKET_QCatchSyscalls]);
2677 if (result == PACKET_OK)
2678 return 0;
2679 else
2680 return -1;
82075af2
JS
2681}
2682
9b224c5e
PA
2683/* If 'QProgramSignals' is supported, tell the remote stub what
2684 signals it should pass through to the inferior when detaching. */
2685
f6ac5f3d 2686void
adc6a863 2687remote_target::program_signals (gdb::array_view<const unsigned char> signals)
9b224c5e 2688{
4082afcc 2689 if (packet_support (PACKET_QProgramSignals) != PACKET_DISABLE)
9b224c5e
PA
2690 {
2691 char *packet, *p;
adc6a863 2692 int count = 0;
5e4a05c4 2693 struct remote_state *rs = get_remote_state ();
9b224c5e 2694
adc6a863
PA
2695 gdb_assert (signals.size () < 256);
2696 for (size_t i = 0; i < signals.size (); i++)
9b224c5e
PA
2697 {
2698 if (signals[i])
2699 count++;
2700 }
224c3ddb 2701 packet = (char *) xmalloc (count * 3 + strlen ("QProgramSignals:") + 1);
9b224c5e
PA
2702 strcpy (packet, "QProgramSignals:");
2703 p = packet + strlen (packet);
adc6a863 2704 for (size_t i = 0; i < signals.size (); i++)
9b224c5e
PA
2705 {
2706 if (signal_pass_state (i))
2707 {
2708 if (i >= 16)
2709 *p++ = tohex (i >> 4);
2710 *p++ = tohex (i & 15);
2711 if (count)
2712 *p++ = ';';
2713 else
2714 break;
2715 count--;
2716 }
2717 }
2718 *p = 0;
5e4a05c4
TT
2719 if (!rs->last_program_signals_packet
2720 || strcmp (rs->last_program_signals_packet, packet) != 0)
9b224c5e 2721 {
9b224c5e 2722 putpkt (packet);
8d64371b 2723 getpkt (&rs->buf, 0);
8dc5b319 2724 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QProgramSignals]);
5e4a05c4
TT
2725 xfree (rs->last_program_signals_packet);
2726 rs->last_program_signals_packet = packet;
9b224c5e
PA
2727 }
2728 else
2729 xfree (packet);
2730 }
2731}
2732
79d7f229
PA
2733/* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
2734 MINUS_ONE_PTID, set the thread to -1, so the stub returns the
2735 thread. If GEN is set, set the general thread, if not, then set
2736 the step/continue thread. */
6b8edb51
PA
2737void
2738remote_target::set_thread (ptid_t ptid, int gen)
c906108c 2739{
d01949b6 2740 struct remote_state *rs = get_remote_state ();
47f8a51d 2741 ptid_t state = gen ? rs->general_thread : rs->continue_thread;
8d64371b
TT
2742 char *buf = rs->buf.data ();
2743 char *endbuf = buf + get_remote_packet_size ();
c906108c 2744
d7e15655 2745 if (state == ptid)
c906108c
SS
2746 return;
2747
79d7f229
PA
2748 *buf++ = 'H';
2749 *buf++ = gen ? 'g' : 'c';
d7e15655 2750 if (ptid == magic_null_ptid)
79d7f229 2751 xsnprintf (buf, endbuf - buf, "0");
d7e15655 2752 else if (ptid == any_thread_ptid)
79d7f229 2753 xsnprintf (buf, endbuf - buf, "0");
d7e15655 2754 else if (ptid == minus_one_ptid)
79d7f229
PA
2755 xsnprintf (buf, endbuf - buf, "-1");
2756 else
82f73884 2757 write_ptid (buf, endbuf, ptid);
79d7f229 2758 putpkt (rs->buf);
8d64371b 2759 getpkt (&rs->buf, 0);
c906108c 2760 if (gen)
47f8a51d 2761 rs->general_thread = ptid;
c906108c 2762 else
47f8a51d 2763 rs->continue_thread = ptid;
c906108c 2764}
79d7f229 2765
6b8edb51
PA
2766void
2767remote_target::set_general_thread (ptid_t ptid)
79d7f229
PA
2768{
2769 set_thread (ptid, 1);
2770}
2771
6b8edb51
PA
2772void
2773remote_target::set_continue_thread (ptid_t ptid)
79d7f229
PA
2774{
2775 set_thread (ptid, 0);
2776}
2777
3c9c4b83
PA
2778/* Change the remote current process. Which thread within the process
2779 ends up selected isn't important, as long as it is the same process
2780 as what INFERIOR_PTID points to.
2781
2782 This comes from that fact that there is no explicit notion of
2783 "selected process" in the protocol. The selected process for
2784 general operations is the process the selected general thread
2785 belongs to. */
2786
6b8edb51
PA
2787void
2788remote_target::set_general_process ()
3c9c4b83
PA
2789{
2790 struct remote_state *rs = get_remote_state ();
2791
2792 /* If the remote can't handle multiple processes, don't bother. */
8020350c 2793 if (!remote_multi_process_p (rs))
3c9c4b83
PA
2794 return;
2795
2796 /* We only need to change the remote current thread if it's pointing
2797 at some other process. */
e99b03dc 2798 if (rs->general_thread.pid () != inferior_ptid.pid ())
3c9c4b83
PA
2799 set_general_thread (inferior_ptid);
2800}
2801
c906108c 2802\f
7d1a114c
PA
2803/* Return nonzero if this is the main thread that we made up ourselves
2804 to model non-threaded targets as single-threaded. */
c906108c
SS
2805
2806static int
f6ac5f3d 2807remote_thread_always_alive (ptid_t ptid)
c906108c 2808{
d7e15655 2809 if (ptid == magic_null_ptid)
c0a2216e
PA
2810 /* The main thread is always alive. */
2811 return 1;
2812
e38504b3 2813 if (ptid.pid () != 0 && ptid.lwp () == 0)
c0a2216e
PA
2814 /* The main thread is always alive. This can happen after a
2815 vAttach, if the remote side doesn't support
2816 multi-threading. */
2817 return 1;
2818
7d1a114c
PA
2819 return 0;
2820}
2821
2822/* Return nonzero if the thread PTID is still alive on the remote
2823 system. */
2824
57810aa7 2825bool
f6ac5f3d 2826remote_target::thread_alive (ptid_t ptid)
7d1a114c
PA
2827{
2828 struct remote_state *rs = get_remote_state ();
2829 char *p, *endp;
2830
2831 /* Check if this is a thread that we made up ourselves to model
2832 non-threaded targets as single-threaded. */
f6ac5f3d 2833 if (remote_thread_always_alive (ptid))
7d1a114c
PA
2834 return 1;
2835
8d64371b
TT
2836 p = rs->buf.data ();
2837 endp = p + get_remote_packet_size ();
82f73884
PA
2838
2839 *p++ = 'T';
2840 write_ptid (p, endp, ptid);
2841
2e9f7625 2842 putpkt (rs->buf);
8d64371b 2843 getpkt (&rs->buf, 0);
2e9f7625 2844 return (rs->buf[0] == 'O' && rs->buf[1] == 'K');
c906108c
SS
2845}
2846
79efa585
SM
2847/* Return a pointer to a thread name if we know it and NULL otherwise.
2848 The thread_info object owns the memory for the name. */
2849
f6ac5f3d
PA
2850const char *
2851remote_target::thread_name (struct thread_info *info)
79efa585
SM
2852{
2853 if (info->priv != NULL)
a9334058
SM
2854 {
2855 const std::string &name = get_remote_thread_info (info)->name;
2856 return !name.empty () ? name.c_str () : NULL;
2857 }
79efa585
SM
2858
2859 return NULL;
2860}
2861
c906108c
SS
2862/* About these extended threadlist and threadinfo packets. They are
2863 variable length packets but, the fields within them are often fixed
30baf67b 2864 length. They are redundant enough to send over UDP as is the
c906108c
SS
2865 remote protocol in general. There is a matching unit test module
2866 in libstub. */
2867
23860348 2868/* WARNING: This threadref data structure comes from the remote O.S.,
0df8b418 2869 libstub protocol encoding, and remote.c. It is not particularly
23860348 2870 changable. */
cce74817
JM
2871
2872/* Right now, the internal structure is int. We want it to be bigger.
0df8b418 2873 Plan to fix this. */
cce74817 2874
23860348 2875typedef int gdb_threadref; /* Internal GDB thread reference. */
cce74817 2876
9d1f7ab2 2877/* gdb_ext_thread_info is an internal GDB data structure which is
cfde0993 2878 equivalent to the reply of the remote threadinfo packet. */
cce74817
JM
2879
2880struct gdb_ext_thread_info
c5aa993b 2881 {
23860348 2882 threadref threadid; /* External form of thread reference. */
2bc416ba 2883 int active; /* Has state interesting to GDB?
23860348 2884 regs, stack. */
2bc416ba 2885 char display[256]; /* Brief state display, name,
cedea757 2886 blocked/suspended. */
23860348 2887 char shortname[32]; /* To be used to name threads. */
2bc416ba 2888 char more_display[256]; /* Long info, statistics, queue depth,
23860348 2889 whatever. */
c5aa993b 2890 };
cce74817
JM
2891
2892/* The volume of remote transfers can be limited by submitting
2893 a mask containing bits specifying the desired information.
2894 Use a union of these values as the 'selection' parameter to
0df8b418 2895 get_thread_info. FIXME: Make these TAG names more thread specific. */
cce74817
JM
2896
2897#define TAG_THREADID 1
2898#define TAG_EXISTS 2
2899#define TAG_DISPLAY 4
2900#define TAG_THREADNAME 8
c5aa993b 2901#define TAG_MOREDISPLAY 16
cce74817 2902
23860348 2903#define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
c906108c 2904
a14ed312 2905static char *unpack_nibble (char *buf, int *val);
cce74817 2906
a14ed312 2907static char *unpack_byte (char *buf, int *value);
cce74817 2908
a14ed312 2909static char *pack_int (char *buf, int value);
cce74817 2910
a14ed312 2911static char *unpack_int (char *buf, int *value);
cce74817 2912
a14ed312 2913static char *unpack_string (char *src, char *dest, int length);
cce74817 2914
23860348 2915static char *pack_threadid (char *pkt, threadref *id);
cce74817 2916
23860348 2917static char *unpack_threadid (char *inbuf, threadref *id);
cce74817 2918
23860348 2919void int_to_threadref (threadref *id, int value);
cce74817 2920
23860348 2921static int threadref_to_int (threadref *ref);
cce74817 2922
23860348 2923static void copy_threadref (threadref *dest, threadref *src);
cce74817 2924
23860348 2925static int threadmatch (threadref *dest, threadref *src);
cce74817 2926
2bc416ba 2927static char *pack_threadinfo_request (char *pkt, int mode,
23860348 2928 threadref *id);
cce74817 2929
a14ed312
KB
2930static char *pack_threadlist_request (char *pkt, int startflag,
2931 int threadcount,
23860348 2932 threadref *nextthread);
cce74817 2933
23860348 2934static int remote_newthread_step (threadref *ref, void *context);
cce74817 2935
82f73884
PA
2936
2937/* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the
2938 buffer we're allowed to write to. Returns
2939 BUF+CHARACTERS_WRITTEN. */
2940
6b8edb51
PA
2941char *
2942remote_target::write_ptid (char *buf, const char *endbuf, ptid_t ptid)
82f73884
PA
2943{
2944 int pid, tid;
2945 struct remote_state *rs = get_remote_state ();
2946
2947 if (remote_multi_process_p (rs))
2948 {
e99b03dc 2949 pid = ptid.pid ();
82f73884
PA
2950 if (pid < 0)
2951 buf += xsnprintf (buf, endbuf - buf, "p-%x.", -pid);
2952 else
2953 buf += xsnprintf (buf, endbuf - buf, "p%x.", pid);
2954 }
e38504b3 2955 tid = ptid.lwp ();
82f73884
PA
2956 if (tid < 0)
2957 buf += xsnprintf (buf, endbuf - buf, "-%x", -tid);
2958 else
2959 buf += xsnprintf (buf, endbuf - buf, "%x", tid);
2960
2961 return buf;
2962}
2963
256642e8
PA
2964/* Extract a PTID from BUF. If non-null, OBUF is set to one past the
2965 last parsed char. Returns null_ptid if no thread id is found, and
2966 throws an error if the thread id has an invalid format. */
82f73884
PA
2967
2968static ptid_t
256642e8 2969read_ptid (const char *buf, const char **obuf)
82f73884 2970{
256642e8
PA
2971 const char *p = buf;
2972 const char *pp;
82f73884 2973 ULONGEST pid = 0, tid = 0;
82f73884
PA
2974
2975 if (*p == 'p')
2976 {
2977 /* Multi-process ptid. */
2978 pp = unpack_varlen_hex (p + 1, &pid);
2979 if (*pp != '.')
b37520b6 2980 error (_("invalid remote ptid: %s"), p);
82f73884
PA
2981
2982 p = pp;
2983 pp = unpack_varlen_hex (p + 1, &tid);
2984 if (obuf)
2985 *obuf = pp;
fd79271b 2986 return ptid_t (pid, tid, 0);
82f73884
PA
2987 }
2988
2989 /* No multi-process. Just a tid. */
2990 pp = unpack_varlen_hex (p, &tid);
2991
c9f35b34
KB
2992 /* Return null_ptid when no thread id is found. */
2993 if (p == pp)
2994 {
2995 if (obuf)
2996 *obuf = pp;
2997 return null_ptid;
2998 }
2999
82f73884 3000 /* Since the stub is not sending a process id, then default to
ca19bf23
PA
3001 what's in inferior_ptid, unless it's null at this point. If so,
3002 then since there's no way to know the pid of the reported
3003 threads, use the magic number. */
d7e15655 3004 if (inferior_ptid == null_ptid)
e99b03dc 3005 pid = magic_null_ptid.pid ();
ca19bf23 3006 else
e99b03dc 3007 pid = inferior_ptid.pid ();
82f73884
PA
3008
3009 if (obuf)
3010 *obuf = pp;
fd79271b 3011 return ptid_t (pid, tid, 0);
82f73884
PA
3012}
3013
c906108c 3014static int
fba45db2 3015stubhex (int ch)
c906108c
SS
3016{
3017 if (ch >= 'a' && ch <= 'f')
3018 return ch - 'a' + 10;
3019 if (ch >= '0' && ch <= '9')
3020 return ch - '0';
3021 if (ch >= 'A' && ch <= 'F')
3022 return ch - 'A' + 10;
3023 return -1;
3024}
3025
3026static int
fba45db2 3027stub_unpack_int (char *buff, int fieldlength)
c906108c
SS
3028{
3029 int nibble;
3030 int retval = 0;
3031
3032 while (fieldlength)
3033 {
3034 nibble = stubhex (*buff++);
3035 retval |= nibble;
3036 fieldlength--;
3037 if (fieldlength)
3038 retval = retval << 4;
3039 }
3040 return retval;
3041}
3042
c906108c 3043static char *
fba45db2 3044unpack_nibble (char *buf, int *val)
c906108c 3045{
b7589f7d 3046 *val = fromhex (*buf++);
c906108c
SS
3047 return buf;
3048}
3049
c906108c 3050static char *
fba45db2 3051unpack_byte (char *buf, int *value)
c906108c
SS
3052{
3053 *value = stub_unpack_int (buf, 2);
3054 return buf + 2;
3055}
3056
3057static char *
fba45db2 3058pack_int (char *buf, int value)
c906108c
SS
3059{
3060 buf = pack_hex_byte (buf, (value >> 24) & 0xff);
3061 buf = pack_hex_byte (buf, (value >> 16) & 0xff);
3062 buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
3063 buf = pack_hex_byte (buf, (value & 0xff));
3064 return buf;
3065}
3066
3067static char *
fba45db2 3068unpack_int (char *buf, int *value)
c906108c
SS
3069{
3070 *value = stub_unpack_int (buf, 8);
3071 return buf + 8;
3072}
3073
23860348 3074#if 0 /* Currently unused, uncomment when needed. */
a14ed312 3075static char *pack_string (char *pkt, char *string);
c906108c
SS
3076
3077static char *
fba45db2 3078pack_string (char *pkt, char *string)
c906108c
SS
3079{
3080 char ch;
3081 int len;
3082
3083 len = strlen (string);
3084 if (len > 200)
23860348 3085 len = 200; /* Bigger than most GDB packets, junk??? */
c906108c
SS
3086 pkt = pack_hex_byte (pkt, len);
3087 while (len-- > 0)
3088 {
3089 ch = *string++;
3090 if ((ch == '\0') || (ch == '#'))
23860348 3091 ch = '*'; /* Protect encapsulation. */
c906108c
SS
3092 *pkt++ = ch;
3093 }
3094 return pkt;
3095}
3096#endif /* 0 (unused) */
3097
3098static char *
fba45db2 3099unpack_string (char *src, char *dest, int length)
c906108c
SS
3100{
3101 while (length--)
3102 *dest++ = *src++;
3103 *dest = '\0';
3104 return src;
3105}
3106
3107static char *
fba45db2 3108pack_threadid (char *pkt, threadref *id)
c906108c
SS
3109{
3110 char *limit;
3111 unsigned char *altid;
3112
3113 altid = (unsigned char *) id;
3114 limit = pkt + BUF_THREAD_ID_SIZE;
3115 while (pkt < limit)
3116 pkt = pack_hex_byte (pkt, *altid++);
3117 return pkt;
3118}
3119
3120
3121static char *
fba45db2 3122unpack_threadid (char *inbuf, threadref *id)
c906108c
SS
3123{
3124 char *altref;
3125 char *limit = inbuf + BUF_THREAD_ID_SIZE;
3126 int x, y;
3127
3128 altref = (char *) id;
3129
3130 while (inbuf < limit)
3131 {
3132 x = stubhex (*inbuf++);
3133 y = stubhex (*inbuf++);
3134 *altref++ = (x << 4) | y;
3135 }
3136 return inbuf;
3137}
3138
3139/* Externally, threadrefs are 64 bits but internally, they are still
0df8b418 3140 ints. This is due to a mismatch of specifications. We would like
c906108c
SS
3141 to use 64bit thread references internally. This is an adapter
3142 function. */
3143
3144void
fba45db2 3145int_to_threadref (threadref *id, int value)
c906108c
SS
3146{
3147 unsigned char *scan;
3148
3149 scan = (unsigned char *) id;
3150 {
3151 int i = 4;
3152 while (i--)
3153 *scan++ = 0;
3154 }
3155 *scan++ = (value >> 24) & 0xff;
3156 *scan++ = (value >> 16) & 0xff;
3157 *scan++ = (value >> 8) & 0xff;
3158 *scan++ = (value & 0xff);
3159}
3160
3161static int
fba45db2 3162threadref_to_int (threadref *ref)
c906108c
SS
3163{
3164 int i, value = 0;
3165 unsigned char *scan;
3166
cfd77fa1 3167 scan = *ref;
c906108c
SS
3168 scan += 4;
3169 i = 4;
3170 while (i-- > 0)
3171 value = (value << 8) | ((*scan++) & 0xff);
3172 return value;
3173}
3174
3175static void
fba45db2 3176copy_threadref (threadref *dest, threadref *src)
c906108c
SS
3177{
3178 int i;
3179 unsigned char *csrc, *cdest;
3180
3181 csrc = (unsigned char *) src;
3182 cdest = (unsigned char *) dest;
3183 i = 8;
3184 while (i--)
3185 *cdest++ = *csrc++;
3186}
3187
3188static int
fba45db2 3189threadmatch (threadref *dest, threadref *src)
c906108c 3190{
23860348 3191 /* Things are broken right now, so just assume we got a match. */
c906108c
SS
3192#if 0
3193 unsigned char *srcp, *destp;
3194 int i, result;
3195 srcp = (char *) src;
3196 destp = (char *) dest;
3197
3198 result = 1;
3199 while (i-- > 0)
3200 result &= (*srcp++ == *destp++) ? 1 : 0;
3201 return result;
3202#endif
3203 return 1;
3204}
3205
3206/*
c5aa993b
JM
3207 threadid:1, # always request threadid
3208 context_exists:2,
3209 display:4,
3210 unique_name:8,
3211 more_display:16
3212 */
c906108c
SS
3213
3214/* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
3215
3216static char *
fba45db2 3217pack_threadinfo_request (char *pkt, int mode, threadref *id)
c906108c 3218{
23860348
MS
3219 *pkt++ = 'q'; /* Info Query */
3220 *pkt++ = 'P'; /* process or thread info */
3221 pkt = pack_int (pkt, mode); /* mode */
c906108c 3222 pkt = pack_threadid (pkt, id); /* threadid */
23860348 3223 *pkt = '\0'; /* terminate */
c906108c
SS
3224 return pkt;
3225}
3226
23860348 3227/* These values tag the fields in a thread info response packet. */
c906108c 3228/* Tagging the fields allows us to request specific fields and to
23860348 3229 add more fields as time goes by. */
c906108c 3230
23860348 3231#define TAG_THREADID 1 /* Echo the thread identifier. */
c5aa993b 3232#define TAG_EXISTS 2 /* Is this process defined enough to
23860348 3233 fetch registers and its stack? */
c5aa993b 3234#define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
23860348 3235#define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
802188a7 3236#define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
23860348 3237 the process. */
c906108c 3238
6b8edb51
PA
3239int
3240remote_target::remote_unpack_thread_info_response (char *pkt,
3241 threadref *expectedref,
3242 gdb_ext_thread_info *info)
c906108c 3243{
d01949b6 3244 struct remote_state *rs = get_remote_state ();
c906108c 3245 int mask, length;
cfd77fa1 3246 int tag;
c906108c 3247 threadref ref;
8d64371b 3248 char *limit = pkt + rs->buf.size (); /* Plausible parsing limit. */
c906108c
SS
3249 int retval = 1;
3250
23860348 3251 /* info->threadid = 0; FIXME: implement zero_threadref. */
c906108c
SS
3252 info->active = 0;
3253 info->display[0] = '\0';
3254 info->shortname[0] = '\0';
3255 info->more_display[0] = '\0';
3256
23860348
MS
3257 /* Assume the characters indicating the packet type have been
3258 stripped. */
c906108c
SS
3259 pkt = unpack_int (pkt, &mask); /* arg mask */
3260 pkt = unpack_threadid (pkt, &ref);
3261
3262 if (mask == 0)
8a3fe4f8 3263 warning (_("Incomplete response to threadinfo request."));
c906108c 3264 if (!threadmatch (&ref, expectedref))
23860348 3265 { /* This is an answer to a different request. */
8a3fe4f8 3266 warning (_("ERROR RMT Thread info mismatch."));
c906108c
SS
3267 return 0;
3268 }
3269 copy_threadref (&info->threadid, &ref);
3270
405feb71 3271 /* Loop on tagged fields , try to bail if something goes wrong. */
c906108c 3272
23860348
MS
3273 /* Packets are terminated with nulls. */
3274 while ((pkt < limit) && mask && *pkt)
c906108c
SS
3275 {
3276 pkt = unpack_int (pkt, &tag); /* tag */
23860348
MS
3277 pkt = unpack_byte (pkt, &length); /* length */
3278 if (!(tag & mask)) /* Tags out of synch with mask. */
c906108c 3279 {
8a3fe4f8 3280 warning (_("ERROR RMT: threadinfo tag mismatch."));
c906108c
SS
3281 retval = 0;
3282 break;
3283 }
3284 if (tag == TAG_THREADID)
3285 {
3286 if (length != 16)
3287 {
8a3fe4f8 3288 warning (_("ERROR RMT: length of threadid is not 16."));
c906108c
SS
3289 retval = 0;
3290 break;
3291 }
3292 pkt = unpack_threadid (pkt, &ref);
3293 mask = mask & ~TAG_THREADID;
3294 continue;
3295 }
3296 if (tag == TAG_EXISTS)
3297 {
3298 info->active = stub_unpack_int (pkt, length);
3299 pkt += length;
3300 mask = mask & ~(TAG_EXISTS);
3301 if (length > 8)
3302 {
8a3fe4f8 3303 warning (_("ERROR RMT: 'exists' length too long."));
c906108c
SS
3304 retval = 0;
3305 break;
3306 }
3307 continue;
3308 }
3309 if (tag == TAG_THREADNAME)
3310 {
3311 pkt = unpack_string (pkt, &info->shortname[0], length);
3312 mask = mask & ~TAG_THREADNAME;
3313 continue;
3314 }
3315 if (tag == TAG_DISPLAY)
3316 {
3317 pkt = unpack_string (pkt, &info->display[0], length);
3318 mask = mask & ~TAG_DISPLAY;
3319 continue;
3320 }
3321 if (tag == TAG_MOREDISPLAY)
3322 {
3323 pkt = unpack_string (pkt, &info->more_display[0], length);
3324 mask = mask & ~TAG_MOREDISPLAY;
3325 continue;
3326 }
8a3fe4f8 3327 warning (_("ERROR RMT: unknown thread info tag."));
23860348 3328 break; /* Not a tag we know about. */
c906108c
SS
3329 }
3330 return retval;
3331}
3332
6b8edb51
PA
3333int
3334remote_target::remote_get_threadinfo (threadref *threadid,
3335 int fieldset,
3336 gdb_ext_thread_info *info)
c906108c 3337{
d01949b6 3338 struct remote_state *rs = get_remote_state ();
c906108c 3339 int result;
c906108c 3340
8d64371b 3341 pack_threadinfo_request (rs->buf.data (), fieldset, threadid);
2e9f7625 3342 putpkt (rs->buf);
8d64371b 3343 getpkt (&rs->buf, 0);
3084dd77
PA
3344
3345 if (rs->buf[0] == '\0')
3346 return 0;
3347
8d64371b 3348 result = remote_unpack_thread_info_response (&rs->buf[2],
23860348 3349 threadid, info);
c906108c
SS
3350 return result;
3351}
3352
c906108c
SS
3353/* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
3354
3355static char *
fba45db2
KB
3356pack_threadlist_request (char *pkt, int startflag, int threadcount,
3357 threadref *nextthread)
c906108c
SS
3358{
3359 *pkt++ = 'q'; /* info query packet */
3360 *pkt++ = 'L'; /* Process LIST or threadLIST request */
23860348 3361 pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */
c906108c
SS
3362 pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */
3363 pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */
3364 *pkt = '\0';
3365 return pkt;
3366}
3367
3368/* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
3369
6b8edb51
PA
3370int
3371remote_target::parse_threadlist_response (char *pkt, int result_limit,
3372 threadref *original_echo,
3373 threadref *resultlist,
3374 int *doneflag)
c906108c 3375{
d01949b6 3376 struct remote_state *rs = get_remote_state ();
c906108c
SS
3377 char *limit;
3378 int count, resultcount, done;
3379
3380 resultcount = 0;
3381 /* Assume the 'q' and 'M chars have been stripped. */
8d64371b 3382 limit = pkt + (rs->buf.size () - BUF_THREAD_ID_SIZE);
23860348 3383 /* done parse past here */
c906108c
SS
3384 pkt = unpack_byte (pkt, &count); /* count field */
3385 pkt = unpack_nibble (pkt, &done);
3386 /* The first threadid is the argument threadid. */
3387 pkt = unpack_threadid (pkt, original_echo); /* should match query packet */
3388 while ((count-- > 0) && (pkt < limit))
3389 {
3390 pkt = unpack_threadid (pkt, resultlist++);
3391 if (resultcount++ >= result_limit)
3392 break;
3393 }
3394 if (doneflag)
3395 *doneflag = done;
3396 return resultcount;
3397}
3398
6dc54d91
PA
3399/* Fetch the next batch of threads from the remote. Returns -1 if the
3400 qL packet is not supported, 0 on error and 1 on success. */
3401
6b8edb51
PA
3402int
3403remote_target::remote_get_threadlist (int startflag, threadref *nextthread,
3404 int result_limit, int *done, int *result_count,
3405 threadref *threadlist)
c906108c 3406{
d01949b6 3407 struct remote_state *rs = get_remote_state ();
c906108c
SS
3408 int result = 1;
3409
405feb71 3410 /* Truncate result limit to be smaller than the packet size. */
3e43a32a
MS
3411 if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10)
3412 >= get_remote_packet_size ())
ea9c271d 3413 result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2;
c906108c 3414
8d64371b
TT
3415 pack_threadlist_request (rs->buf.data (), startflag, result_limit,
3416 nextthread);
6d820c5c 3417 putpkt (rs->buf);
8d64371b
TT
3418 getpkt (&rs->buf, 0);
3419 if (rs->buf[0] == '\0')
6dc54d91
PA
3420 {
3421 /* Packet not supported. */
3422 return -1;
3423 }
3424
3425 *result_count =
8d64371b 3426 parse_threadlist_response (&rs->buf[2], result_limit,
6dc54d91 3427 &rs->echo_nextthread, threadlist, done);
c906108c 3428
0d031856 3429 if (!threadmatch (&rs->echo_nextthread, nextthread))
c906108c 3430 {
23860348 3431 /* FIXME: This is a good reason to drop the packet. */
405feb71
TV
3432 /* Possibly, there is a duplicate response. */
3433 /* Possibilities :
c906108c
SS
3434 retransmit immediatly - race conditions
3435 retransmit after timeout - yes
3436 exit
3437 wait for packet, then exit
3438 */
8a3fe4f8 3439 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
23860348 3440 return 0; /* I choose simply exiting. */
c906108c
SS
3441 }
3442 if (*result_count <= 0)
3443 {
3444 if (*done != 1)
3445 {
8a3fe4f8 3446 warning (_("RMT ERROR : failed to get remote thread list."));
c906108c
SS
3447 result = 0;
3448 }
3449 return result; /* break; */
3450 }
3451 if (*result_count > result_limit)
3452 {
3453 *result_count = 0;
8a3fe4f8 3454 warning (_("RMT ERROR: threadlist response longer than requested."));
c906108c
SS
3455 return 0;
3456 }
3457 return result;
3458}
3459
6dc54d91
PA
3460/* Fetch the list of remote threads, with the qL packet, and call
3461 STEPFUNCTION for each thread found. Stops iterating and returns 1
3462 if STEPFUNCTION returns true. Stops iterating and returns 0 if the
3463 STEPFUNCTION returns false. If the packet is not supported,
3464 returns -1. */
c906108c 3465
6b8edb51
PA
3466int
3467remote_target::remote_threadlist_iterator (rmt_thread_action stepfunction,
3468 void *context, int looplimit)
c906108c 3469{
0d031856 3470 struct remote_state *rs = get_remote_state ();
c906108c
SS
3471 int done, i, result_count;
3472 int startflag = 1;
3473 int result = 1;
3474 int loopcount = 0;
c906108c
SS
3475
3476 done = 0;
3477 while (!done)
3478 {
3479 if (loopcount++ > looplimit)
3480 {
3481 result = 0;
8a3fe4f8 3482 warning (_("Remote fetch threadlist -infinite loop-."));
c906108c
SS
3483 break;
3484 }
6dc54d91
PA
3485 result = remote_get_threadlist (startflag, &rs->nextthread,
3486 MAXTHREADLISTRESULTS,
3487 &done, &result_count,
3488 rs->resultthreadlist);
3489 if (result <= 0)
3490 break;
23860348 3491 /* Clear for later iterations. */
c906108c
SS
3492 startflag = 0;
3493 /* Setup to resume next batch of thread references, set nextthread. */
3494 if (result_count >= 1)
0d031856
TT
3495 copy_threadref (&rs->nextthread,
3496 &rs->resultthreadlist[result_count - 1]);
c906108c
SS
3497 i = 0;
3498 while (result_count--)
6dc54d91
PA
3499 {
3500 if (!(*stepfunction) (&rs->resultthreadlist[i++], context))
3501 {
3502 result = 0;
3503 break;
3504 }
3505 }
c906108c
SS
3506 }
3507 return result;
3508}
3509
6dc54d91
PA
3510/* A thread found on the remote target. */
3511
21fe1c75 3512struct thread_item
6dc54d91 3513{
21fe1c75
SM
3514 explicit thread_item (ptid_t ptid_)
3515 : ptid (ptid_)
3516 {}
3517
3518 thread_item (thread_item &&other) = default;
3519 thread_item &operator= (thread_item &&other) = default;
3520
3521 DISABLE_COPY_AND_ASSIGN (thread_item);
3522
6dc54d91
PA
3523 /* The thread's PTID. */
3524 ptid_t ptid;
3525
21fe1c75
SM
3526 /* The thread's extra info. */
3527 std::string extra;
6dc54d91 3528
21fe1c75
SM
3529 /* The thread's name. */
3530 std::string name;
79efa585 3531
6dc54d91 3532 /* The core the thread was running on. -1 if not known. */
21fe1c75 3533 int core = -1;
f6327dcb
KB
3534
3535 /* The thread handle associated with the thread. */
21fe1c75 3536 gdb::byte_vector thread_handle;
21fe1c75 3537};
6dc54d91
PA
3538
3539/* Context passed around to the various methods listing remote
3540 threads. As new threads are found, they're added to the ITEMS
3541 vector. */
3542
3543struct threads_listing_context
3544{
21fe1c75
SM
3545 /* Return true if this object contains an entry for a thread with ptid
3546 PTID. */
6dc54d91 3547
21fe1c75
SM
3548 bool contains_thread (ptid_t ptid) const
3549 {
3550 auto match_ptid = [&] (const thread_item &item)
3551 {
3552 return item.ptid == ptid;
3553 };
80134cf5 3554
21fe1c75
SM
3555 auto it = std::find_if (this->items.begin (),
3556 this->items.end (),
3557 match_ptid);
80134cf5 3558
21fe1c75
SM
3559 return it != this->items.end ();
3560 }
80134cf5 3561
21fe1c75 3562 /* Remove the thread with ptid PTID. */
80134cf5 3563
21fe1c75
SM
3564 void remove_thread (ptid_t ptid)
3565 {
3566 auto match_ptid = [&] (const thread_item &item)
3567 {
3568 return item.ptid == ptid;
3569 };
cbb8991c 3570
21fe1c75
SM
3571 auto it = std::remove_if (this->items.begin (),
3572 this->items.end (),
3573 match_ptid);
cbb8991c 3574
21fe1c75
SM
3575 if (it != this->items.end ())
3576 this->items.erase (it);
3577 }
3578
3579 /* The threads found on the remote target. */
3580 std::vector<thread_item> items;
3581};
cbb8991c 3582
c906108c 3583static int
6dc54d91 3584remote_newthread_step (threadref *ref, void *data)
c906108c 3585{
19ba03f4
SM
3586 struct threads_listing_context *context
3587 = (struct threads_listing_context *) data;
21fe1c75
SM
3588 int pid = inferior_ptid.pid ();
3589 int lwp = threadref_to_int (ref);
3590 ptid_t ptid (pid, lwp);
6dc54d91 3591
21fe1c75 3592 context->items.emplace_back (ptid);
6dc54d91 3593
c906108c
SS
3594 return 1; /* continue iterator */
3595}
3596
3597#define CRAZY_MAX_THREADS 1000
3598
6b8edb51
PA
3599ptid_t
3600remote_target::remote_current_thread (ptid_t oldpid)
c906108c 3601{
d01949b6 3602 struct remote_state *rs = get_remote_state ();
c906108c
SS
3603
3604 putpkt ("qC");
8d64371b 3605 getpkt (&rs->buf, 0);
2e9f7625 3606 if (rs->buf[0] == 'Q' && rs->buf[1] == 'C')
c9f35b34 3607 {
256642e8 3608 const char *obuf;
c9f35b34
KB
3609 ptid_t result;
3610
3611 result = read_ptid (&rs->buf[2], &obuf);
3612 if (*obuf != '\0' && remote_debug)
3613 fprintf_unfiltered (gdb_stdlog,
3614 "warning: garbage in qC reply\n");
3615
3616 return result;
3617 }
c906108c
SS
3618 else
3619 return oldpid;
3620}
3621
6dc54d91 3622/* List remote threads using the deprecated qL packet. */
cce74817 3623
6b8edb51
PA
3624int
3625remote_target::remote_get_threads_with_ql (threads_listing_context *context)
c906108c 3626{
6dc54d91
PA
3627 if (remote_threadlist_iterator (remote_newthread_step, context,
3628 CRAZY_MAX_THREADS) >= 0)
3629 return 1;
3630
3631 return 0;
c906108c
SS
3632}
3633
dc146f7c
VP
3634#if defined(HAVE_LIBEXPAT)
3635
dc146f7c
VP
3636static void
3637start_thread (struct gdb_xml_parser *parser,
3638 const struct gdb_xml_element *element,
4d0fdd9b
SM
3639 void *user_data,
3640 std::vector<gdb_xml_value> &attributes)
dc146f7c 3641{
19ba03f4
SM
3642 struct threads_listing_context *data
3643 = (struct threads_listing_context *) user_data;
3d2c1d41 3644 struct gdb_xml_value *attr;
dc146f7c 3645
4d0fdd9b 3646 char *id = (char *) xml_find_attribute (attributes, "id")->value.get ();
21fe1c75
SM
3647 ptid_t ptid = read_ptid (id, NULL);
3648
3649 data->items.emplace_back (ptid);
3650 thread_item &item = data->items.back ();
dc146f7c 3651
3d2c1d41
PA
3652 attr = xml_find_attribute (attributes, "core");
3653 if (attr != NULL)
4d0fdd9b 3654 item.core = *(ULONGEST *) attr->value.get ();
dc146f7c 3655
79efa585 3656 attr = xml_find_attribute (attributes, "name");
21fe1c75 3657 if (attr != NULL)
4d0fdd9b 3658 item.name = (const char *) attr->value.get ();
79efa585 3659
f6327dcb
KB
3660 attr = xml_find_attribute (attributes, "handle");
3661 if (attr != NULL)
4d0fdd9b 3662 item.thread_handle = hex2bin ((const char *) attr->value.get ());
dc146f7c
VP
3663}
3664
3665static void
3666end_thread (struct gdb_xml_parser *parser,
3667 const struct gdb_xml_element *element,
3668 void *user_data, const char *body_text)
3669{
19ba03f4
SM
3670 struct threads_listing_context *data
3671 = (struct threads_listing_context *) user_data;
dc146f7c 3672
21fe1c75
SM
3673 if (body_text != NULL && *body_text != '\0')
3674 data->items.back ().extra = body_text;
dc146f7c
VP
3675}
3676
3677const struct gdb_xml_attribute thread_attributes[] = {
3678 { "id", GDB_XML_AF_NONE, NULL, NULL },
3679 { "core", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
79efa585 3680 { "name", GDB_XML_AF_OPTIONAL, NULL, NULL },
f6327dcb 3681 { "handle", GDB_XML_AF_OPTIONAL, NULL, NULL },
dc146f7c
VP
3682 { NULL, GDB_XML_AF_NONE, NULL, NULL }
3683};
3684
3685const struct gdb_xml_element thread_children[] = {
3686 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3687};
3688
3689const struct gdb_xml_element threads_children[] = {
3690 { "thread", thread_attributes, thread_children,
3691 GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL,
3692 start_thread, end_thread },
3693 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3694};
3695
3696const struct gdb_xml_element threads_elements[] = {
3697 { "threads", NULL, threads_children,
3698 GDB_XML_EF_NONE, NULL, NULL },
3699 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3700};
3701
3702#endif
3703
6dc54d91 3704/* List remote threads using qXfer:threads:read. */
9d1f7ab2 3705
6b8edb51
PA
3706int
3707remote_target::remote_get_threads_with_qxfer (threads_listing_context *context)
0f71a2f6 3708{
dc146f7c 3709#if defined(HAVE_LIBEXPAT)
4082afcc 3710 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
dc146f7c 3711 {
9018be22 3712 gdb::optional<gdb::char_vector> xml
6b8edb51 3713 = target_read_stralloc (this, TARGET_OBJECT_THREADS, NULL);
efc0eabd 3714
9018be22 3715 if (xml && (*xml)[0] != '\0')
dc146f7c 3716 {
6dc54d91 3717 gdb_xml_parse_quick (_("threads"), "threads.dtd",
9018be22 3718 threads_elements, xml->data (), context);
dc146f7c
VP
3719 }
3720
6dc54d91 3721 return 1;
dc146f7c
VP
3722 }
3723#endif
3724
6dc54d91
PA
3725 return 0;
3726}
3727
3728/* List remote threads using qfThreadInfo/qsThreadInfo. */
3729
6b8edb51
PA
3730int
3731remote_target::remote_get_threads_with_qthreadinfo (threads_listing_context *context)
6dc54d91
PA
3732{
3733 struct remote_state *rs = get_remote_state ();
3734
b80fafe3 3735 if (rs->use_threadinfo_query)
9d1f7ab2 3736 {
256642e8 3737 const char *bufp;
6dc54d91 3738
9d1f7ab2 3739 putpkt ("qfThreadInfo");
8d64371b
TT
3740 getpkt (&rs->buf, 0);
3741 bufp = rs->buf.data ();
9d1f7ab2 3742 if (bufp[0] != '\0') /* q packet recognized */
802188a7 3743 {
9d1f7ab2
MS
3744 while (*bufp++ == 'm') /* reply contains one or more TID */
3745 {
3746 do
3747 {
21fe1c75
SM
3748 ptid_t ptid = read_ptid (bufp, &bufp);
3749 context->items.emplace_back (ptid);
9d1f7ab2
MS
3750 }
3751 while (*bufp++ == ','); /* comma-separated list */
3752 putpkt ("qsThreadInfo");
8d64371b
TT
3753 getpkt (&rs->buf, 0);
3754 bufp = rs->buf.data ();
9d1f7ab2 3755 }
6dc54d91
PA
3756 return 1;
3757 }
3758 else
3759 {
3760 /* Packet not recognized. */
3761 rs->use_threadinfo_query = 0;
9d1f7ab2
MS
3762 }
3763 }
3764
6dc54d91
PA
3765 return 0;
3766}
3767
e8032dde 3768/* Implement the to_update_thread_list function for the remote
6dc54d91
PA
3769 targets. */
3770
f6ac5f3d
PA
3771void
3772remote_target::update_thread_list ()
6dc54d91 3773{
6dc54d91 3774 struct threads_listing_context context;
ab970af1 3775 int got_list = 0;
e8032dde 3776
6dc54d91
PA
3777 /* We have a few different mechanisms to fetch the thread list. Try
3778 them all, starting with the most preferred one first, falling
3779 back to older methods. */
6b8edb51
PA
3780 if (remote_get_threads_with_qxfer (&context)
3781 || remote_get_threads_with_qthreadinfo (&context)
3782 || remote_get_threads_with_ql (&context))
6dc54d91 3783 {
ab970af1
PA
3784 got_list = 1;
3785
21fe1c75 3786 if (context.items.empty ()
f6ac5f3d 3787 && remote_thread_always_alive (inferior_ptid))
7d1a114c
PA
3788 {
3789 /* Some targets don't really support threads, but still
3790 reply an (empty) thread list in response to the thread
3791 listing packets, instead of replying "packet not
3792 supported". Exit early so we don't delete the main
3793 thread. */
7d1a114c
PA
3794 return;
3795 }
3796
ab970af1
PA
3797 /* CONTEXT now holds the current thread list on the remote
3798 target end. Delete GDB-side threads no longer found on the
3799 target. */
08036331 3800 for (thread_info *tp : all_threads_safe ())
cbb8991c 3801 {
21fe1c75 3802 if (!context.contains_thread (tp->ptid))
ab970af1
PA
3803 {
3804 /* Not found. */
00431a78 3805 delete_thread (tp);
ab970af1 3806 }
cbb8991c
DB
3807 }
3808
3809 /* Remove any unreported fork child threads from CONTEXT so
3810 that we don't interfere with follow fork, which is where
3811 creation of such threads is handled. */
3812 remove_new_fork_children (&context);
74531fed 3813
ab970af1 3814 /* And now add threads we don't know about yet to our list. */
21fe1c75 3815 for (thread_item &item : context.items)
6dc54d91 3816 {
21fe1c75 3817 if (item.ptid != null_ptid)
6dc54d91 3818 {
6dc54d91 3819 /* In non-stop mode, we assume new found threads are
0d5b594f
PA
3820 executing until proven otherwise with a stop reply.
3821 In all-stop, we can only get here if all threads are
6dc54d91 3822 stopped. */
0d5b594f 3823 int executing = target_is_non_stop_p () ? 1 : 0;
6dc54d91 3824
21fe1c75 3825 remote_notice_new_inferior (item.ptid, executing);
6dc54d91 3826
08036331 3827 thread_info *tp = find_thread_ptid (item.ptid);
00431a78 3828 remote_thread_info *info = get_remote_thread_info (tp);
21fe1c75 3829 info->core = item.core;
7aabaf9d
SM
3830 info->extra = std::move (item.extra);
3831 info->name = std::move (item.name);
3832 info->thread_handle = std::move (item.thread_handle);
6dc54d91
PA
3833 }
3834 }
3835 }
3836
ab970af1
PA
3837 if (!got_list)
3838 {
3839 /* If no thread listing method is supported, then query whether
3840 each known thread is alive, one by one, with the T packet.
3841 If the target doesn't support threads at all, then this is a
3842 no-op. See remote_thread_alive. */
3843 prune_threads ();
3844 }
9d1f7ab2
MS
3845}
3846
802188a7 3847/*
9d1f7ab2
MS
3848 * Collect a descriptive string about the given thread.
3849 * The target may say anything it wants to about the thread
3850 * (typically info about its blocked / runnable state, name, etc.).
3851 * This string will appear in the info threads display.
802188a7 3852 *
9d1f7ab2
MS
3853 * Optional: targets are not required to implement this function.
3854 */
3855
f6ac5f3d
PA
3856const char *
3857remote_target::extra_thread_info (thread_info *tp)
9d1f7ab2 3858{
d01949b6 3859 struct remote_state *rs = get_remote_state ();
9d1f7ab2
MS
3860 int set;
3861 threadref id;
3862 struct gdb_ext_thread_info threadinfo;
9d1f7ab2 3863
5d93a237 3864 if (rs->remote_desc == 0) /* paranoia */
8e65ff28 3865 internal_error (__FILE__, __LINE__,
e2e0b3e5 3866 _("remote_threads_extra_info"));
9d1f7ab2 3867
d7e15655 3868 if (tp->ptid == magic_null_ptid
e38504b3 3869 || (tp->ptid.pid () != 0 && tp->ptid.lwp () == 0))
60e569b9
PA
3870 /* This is the main thread which was added by GDB. The remote
3871 server doesn't know about it. */
3872 return NULL;
3873
c76a8ea3
PA
3874 std::string &extra = get_remote_thread_info (tp)->extra;
3875
3876 /* If already have cached info, use it. */
3877 if (!extra.empty ())
3878 return extra.c_str ();
3879
4082afcc 3880 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
dc146f7c 3881 {
c76a8ea3
PA
3882 /* If we're using qXfer:threads:read, then the extra info is
3883 included in the XML. So if we didn't have anything cached,
3884 it's because there's really no extra info. */
3885 return NULL;
dc146f7c
VP
3886 }
3887
b80fafe3 3888 if (rs->use_threadextra_query)
9d1f7ab2 3889 {
8d64371b
TT
3890 char *b = rs->buf.data ();
3891 char *endb = b + get_remote_packet_size ();
82f73884
PA
3892
3893 xsnprintf (b, endb - b, "qThreadExtraInfo,");
3894 b += strlen (b);
3895 write_ptid (b, endb, tp->ptid);
3896
2e9f7625 3897 putpkt (rs->buf);
8d64371b 3898 getpkt (&rs->buf, 0);
2e9f7625 3899 if (rs->buf[0] != 0)
9d1f7ab2 3900 {
8d64371b
TT
3901 extra.resize (strlen (rs->buf.data ()) / 2);
3902 hex2bin (rs->buf.data (), (gdb_byte *) &extra[0], extra.size ());
c76a8ea3 3903 return extra.c_str ();
9d1f7ab2 3904 }
0f71a2f6 3905 }
9d1f7ab2
MS
3906
3907 /* If the above query fails, fall back to the old method. */
b80fafe3 3908 rs->use_threadextra_query = 0;
9d1f7ab2
MS
3909 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
3910 | TAG_MOREDISPLAY | TAG_DISPLAY;
e38504b3 3911 int_to_threadref (&id, tp->ptid.lwp ());
9d1f7ab2
MS
3912 if (remote_get_threadinfo (&id, set, &threadinfo))
3913 if (threadinfo.active)
0f71a2f6 3914 {
9d1f7ab2 3915 if (*threadinfo.shortname)
c76a8ea3 3916 string_appendf (extra, " Name: %s", threadinfo.shortname);
9d1f7ab2 3917 if (*threadinfo.display)
c76a8ea3
PA
3918 {
3919 if (!extra.empty ())
3920 extra += ',';
3921 string_appendf (extra, " State: %s", threadinfo.display);
3922 }
9d1f7ab2 3923 if (*threadinfo.more_display)
c5aa993b 3924 {
c76a8ea3
PA
3925 if (!extra.empty ())
3926 extra += ',';
3927 string_appendf (extra, " Priority: %s", threadinfo.more_display);
c5aa993b 3928 }
c76a8ea3 3929 return extra.c_str ();
0f71a2f6 3930 }
9d1f7ab2 3931 return NULL;
0f71a2f6 3932}
c906108c 3933\f
c5aa993b 3934
f6ac5f3d
PA
3935bool
3936remote_target::static_tracepoint_marker_at (CORE_ADDR addr,
3937 struct static_tracepoint_marker *marker)
0fb4aa4b
PA
3938{
3939 struct remote_state *rs = get_remote_state ();
8d64371b 3940 char *p = rs->buf.data ();
0fb4aa4b 3941
bba74b36 3942 xsnprintf (p, get_remote_packet_size (), "qTSTMat:");
0fb4aa4b
PA
3943 p += strlen (p);
3944 p += hexnumstr (p, addr);
3945 putpkt (rs->buf);
8d64371b
TT
3946 getpkt (&rs->buf, 0);
3947 p = rs->buf.data ();
0fb4aa4b
PA
3948
3949 if (*p == 'E')
3950 error (_("Remote failure reply: %s"), p);
3951
3952 if (*p++ == 'm')
3953 {
256642e8 3954 parse_static_tracepoint_marker_definition (p, NULL, marker);
5d9310c4 3955 return true;
0fb4aa4b
PA
3956 }
3957
5d9310c4 3958 return false;
0fb4aa4b
PA
3959}
3960
f6ac5f3d
PA
3961std::vector<static_tracepoint_marker>
3962remote_target::static_tracepoint_markers_by_strid (const char *strid)
0fb4aa4b
PA
3963{
3964 struct remote_state *rs = get_remote_state ();
5d9310c4 3965 std::vector<static_tracepoint_marker> markers;
256642e8 3966 const char *p;
5d9310c4 3967 static_tracepoint_marker marker;
0fb4aa4b
PA
3968
3969 /* Ask for a first packet of static tracepoint marker
3970 definition. */
3971 putpkt ("qTfSTM");
8d64371b
TT
3972 getpkt (&rs->buf, 0);
3973 p = rs->buf.data ();
0fb4aa4b
PA
3974 if (*p == 'E')
3975 error (_("Remote failure reply: %s"), p);
3976
0fb4aa4b
PA
3977 while (*p++ == 'm')
3978 {
0fb4aa4b
PA
3979 do
3980 {
5d9310c4 3981 parse_static_tracepoint_marker_definition (p, &p, &marker);
0fb4aa4b 3982
5d9310c4
SM
3983 if (strid == NULL || marker.str_id == strid)
3984 markers.push_back (std::move (marker));
0fb4aa4b
PA
3985 }
3986 while (*p++ == ','); /* comma-separated list */
3987 /* Ask for another packet of static tracepoint definition. */
3988 putpkt ("qTsSTM");
8d64371b
TT
3989 getpkt (&rs->buf, 0);
3990 p = rs->buf.data ();
0fb4aa4b
PA
3991 }
3992
0fb4aa4b
PA
3993 return markers;
3994}
3995
3996\f
10760264
JB
3997/* Implement the to_get_ada_task_ptid function for the remote targets. */
3998
f6ac5f3d
PA
3999ptid_t
4000remote_target::get_ada_task_ptid (long lwp, long thread)
10760264 4001{
e99b03dc 4002 return ptid_t (inferior_ptid.pid (), lwp, 0);
10760264
JB
4003}
4004\f
4005
24b06219 4006/* Restart the remote side; this is an extended protocol operation. */
c906108c 4007
6b8edb51
PA
4008void
4009remote_target::extended_remote_restart ()
c906108c 4010{
d01949b6 4011 struct remote_state *rs = get_remote_state ();
c906108c
SS
4012
4013 /* Send the restart command; for reasons I don't understand the
4014 remote side really expects a number after the "R". */
8d64371b 4015 xsnprintf (rs->buf.data (), get_remote_packet_size (), "R%x", 0);
6d820c5c 4016 putpkt (rs->buf);
c906108c 4017
ad9a8f3f 4018 remote_fileio_reset ();
c906108c
SS
4019}
4020\f
4021/* Clean up connection to a remote debugger. */
4022
f6ac5f3d
PA
4023void
4024remote_target::close ()
c906108c 4025{
048094ac 4026 /* Make sure we leave stdin registered in the event loop. */
f6ac5f3d 4027 terminal_ours ();
ce5ce7ed 4028
ce5ce7ed 4029 /* We don't have a connection to the remote stub anymore. Get rid
f67fd822
PM
4030 of all the inferiors and their threads we were controlling.
4031 Reset inferior_ptid to null_ptid first, as otherwise has_stack_frame
4032 will be unable to find the thread corresponding to (pid, 0, 0). */
0f2caa1b 4033 inferior_ptid = null_ptid;
f67fd822 4034 discard_all_inferiors ();
ce5ce7ed 4035
6b8edb51
PA
4036 trace_reset_local_state ();
4037
4038 delete this;
4039}
4040
4041remote_target::~remote_target ()
4042{
4043 struct remote_state *rs = get_remote_state ();
4044
4045 /* Check for NULL because we may get here with a partially
4046 constructed target/connection. */
4047 if (rs->remote_desc == nullptr)
4048 return;
4049
4050 serial_close (rs->remote_desc);
4051
4052 /* We are destroying the remote target, so we should discard
f48ff2a7 4053 everything of this target. */
6b8edb51 4054 discard_pending_stop_replies_in_queue ();
74531fed 4055
6b8edb51
PA
4056 if (rs->remote_async_inferior_event_token)
4057 delete_async_event_handler (&rs->remote_async_inferior_event_token);
722247f1 4058
97dfbadd 4059 delete rs->notif_state;
c906108c
SS
4060}
4061
23860348 4062/* Query the remote side for the text, data and bss offsets. */
c906108c 4063
6b8edb51
PA
4064void
4065remote_target::get_offsets ()
c906108c 4066{
d01949b6 4067 struct remote_state *rs = get_remote_state ();
2e9f7625 4068 char *buf;
085dd6e6 4069 char *ptr;
31d99776
DJ
4070 int lose, num_segments = 0, do_sections, do_segments;
4071 CORE_ADDR text_addr, data_addr, bss_addr, segments[2];
31d99776
DJ
4072 struct symfile_segment_data *data;
4073
4074 if (symfile_objfile == NULL)
4075 return;
c906108c
SS
4076
4077 putpkt ("qOffsets");
8d64371b
TT
4078 getpkt (&rs->buf, 0);
4079 buf = rs->buf.data ();
c906108c
SS
4080
4081 if (buf[0] == '\000')
4082 return; /* Return silently. Stub doesn't support
23860348 4083 this command. */
c906108c
SS
4084 if (buf[0] == 'E')
4085 {
8a3fe4f8 4086 warning (_("Remote failure reply: %s"), buf);
c906108c
SS
4087 return;
4088 }
4089
4090 /* Pick up each field in turn. This used to be done with scanf, but
4091 scanf will make trouble if CORE_ADDR size doesn't match
4092 conversion directives correctly. The following code will work
4093 with any size of CORE_ADDR. */
4094 text_addr = data_addr = bss_addr = 0;
4095 ptr = buf;
4096 lose = 0;
4097
61012eef 4098 if (startswith (ptr, "Text="))
c906108c
SS
4099 {
4100 ptr += 5;
4101 /* Don't use strtol, could lose on big values. */
4102 while (*ptr && *ptr != ';')
4103 text_addr = (text_addr << 4) + fromhex (*ptr++);
c906108c 4104
61012eef 4105 if (startswith (ptr, ";Data="))
31d99776
DJ
4106 {
4107 ptr += 6;
4108 while (*ptr && *ptr != ';')
4109 data_addr = (data_addr << 4) + fromhex (*ptr++);
4110 }
4111 else
4112 lose = 1;
4113
61012eef 4114 if (!lose && startswith (ptr, ";Bss="))
31d99776
DJ
4115 {
4116 ptr += 5;
4117 while (*ptr && *ptr != ';')
4118 bss_addr = (bss_addr << 4) + fromhex (*ptr++);
c906108c 4119
31d99776
DJ
4120 if (bss_addr != data_addr)
4121 warning (_("Target reported unsupported offsets: %s"), buf);
4122 }
4123 else
4124 lose = 1;
4125 }
61012eef 4126 else if (startswith (ptr, "TextSeg="))
c906108c 4127 {
31d99776
DJ
4128 ptr += 8;
4129 /* Don't use strtol, could lose on big values. */
c906108c 4130 while (*ptr && *ptr != ';')
31d99776
DJ
4131 text_addr = (text_addr << 4) + fromhex (*ptr++);
4132 num_segments = 1;
4133
61012eef 4134 if (startswith (ptr, ";DataSeg="))
31d99776
DJ
4135 {
4136 ptr += 9;
4137 while (*ptr && *ptr != ';')
4138 data_addr = (data_addr << 4) + fromhex (*ptr++);
4139 num_segments++;
4140 }
c906108c
SS
4141 }
4142 else
4143 lose = 1;
4144
4145 if (lose)
8a3fe4f8 4146 error (_("Malformed response to offset query, %s"), buf);
31d99776
DJ
4147 else if (*ptr != '\0')
4148 warning (_("Target reported unsupported offsets: %s"), buf);
c906108c 4149
6a053cb1 4150 section_offsets offs = symfile_objfile->section_offsets;
c906108c 4151
31d99776
DJ
4152 data = get_symfile_segment_data (symfile_objfile->obfd);
4153 do_segments = (data != NULL);
4154 do_sections = num_segments == 0;
c906108c 4155
28c32713 4156 if (num_segments > 0)
31d99776 4157 {
31d99776
DJ
4158 segments[0] = text_addr;
4159 segments[1] = data_addr;
4160 }
28c32713
JB
4161 /* If we have two segments, we can still try to relocate everything
4162 by assuming that the .text and .data offsets apply to the whole
4163 text and data segments. Convert the offsets given in the packet
4164 to base addresses for symfile_map_offsets_to_segments. */
4165 else if (data && data->num_segments == 2)
4166 {
4167 segments[0] = data->segment_bases[0] + text_addr;
4168 segments[1] = data->segment_bases[1] + data_addr;
4169 num_segments = 2;
4170 }
8d385431
DJ
4171 /* If the object file has only one segment, assume that it is text
4172 rather than data; main programs with no writable data are rare,
4173 but programs with no code are useless. Of course the code might
4174 have ended up in the data segment... to detect that we would need
4175 the permissions here. */
4176 else if (data && data->num_segments == 1)
4177 {
4178 segments[0] = data->segment_bases[0] + text_addr;
4179 num_segments = 1;
4180 }
28c32713
JB
4181 /* There's no way to relocate by segment. */
4182 else
4183 do_segments = 0;
31d99776
DJ
4184
4185 if (do_segments)
4186 {
4187 int ret = symfile_map_offsets_to_segments (symfile_objfile->obfd, data,
4188 offs, num_segments, segments);
4189
4190 if (ret == 0 && !do_sections)
3e43a32a
MS
4191 error (_("Can not handle qOffsets TextSeg "
4192 "response with this symbol file"));
31d99776
DJ
4193
4194 if (ret > 0)
4195 do_sections = 0;
4196 }
c906108c 4197
9ef895d6
DJ
4198 if (data)
4199 free_symfile_segment_data (data);
31d99776
DJ
4200
4201 if (do_sections)
4202 {
6a053cb1 4203 offs[SECT_OFF_TEXT (symfile_objfile)] = text_addr;
31d99776 4204
3e43a32a
MS
4205 /* This is a temporary kludge to force data and bss to use the
4206 same offsets because that's what nlmconv does now. The real
4207 solution requires changes to the stub and remote.c that I
4208 don't have time to do right now. */
31d99776 4209
6a053cb1
TT
4210 offs[SECT_OFF_DATA (symfile_objfile)] = data_addr;
4211 offs[SECT_OFF_BSS (symfile_objfile)] = data_addr;
31d99776 4212 }
c906108c
SS
4213
4214 objfile_relocate (symfile_objfile, offs);
4215}
4216
9a7071a8 4217/* Send interrupt_sequence to remote target. */
6b8edb51
PA
4218
4219void
4220remote_target::send_interrupt_sequence ()
9a7071a8 4221{
5d93a237
TT
4222 struct remote_state *rs = get_remote_state ();
4223
9a7071a8 4224 if (interrupt_sequence_mode == interrupt_sequence_control_c)
c33e31fd 4225 remote_serial_write ("\x03", 1);
9a7071a8 4226 else if (interrupt_sequence_mode == interrupt_sequence_break)
5d93a237 4227 serial_send_break (rs->remote_desc);
9a7071a8
JB
4228 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
4229 {
5d93a237 4230 serial_send_break (rs->remote_desc);
c33e31fd 4231 remote_serial_write ("g", 1);
9a7071a8
JB
4232 }
4233 else
4234 internal_error (__FILE__, __LINE__,
4235 _("Invalid value for interrupt_sequence_mode: %s."),
4236 interrupt_sequence_mode);
4237}
4238
3405876a
PA
4239
4240/* If STOP_REPLY is a T stop reply, look for the "thread" register,
4241 and extract the PTID. Returns NULL_PTID if not found. */
4242
4243static ptid_t
4244stop_reply_extract_thread (char *stop_reply)
4245{
4246 if (stop_reply[0] == 'T' && strlen (stop_reply) > 3)
4247 {
256642e8 4248 const char *p;
3405876a
PA
4249
4250 /* Txx r:val ; r:val (...) */
4251 p = &stop_reply[3];
4252
4253 /* Look for "register" named "thread". */
4254 while (*p != '\0')
4255 {
256642e8 4256 const char *p1;
3405876a
PA
4257
4258 p1 = strchr (p, ':');
4259 if (p1 == NULL)
4260 return null_ptid;
4261
4262 if (strncmp (p, "thread", p1 - p) == 0)
4263 return read_ptid (++p1, &p);
4264
4265 p1 = strchr (p, ';');
4266 if (p1 == NULL)
4267 return null_ptid;
4268 p1++;
4269
4270 p = p1;
4271 }
4272 }
4273
4274 return null_ptid;
4275}
4276
b7ea362b
PA
4277/* Determine the remote side's current thread. If we have a stop
4278 reply handy (in WAIT_STATUS), maybe it's a T stop reply with a
4279 "thread" register we can extract the current thread from. If not,
4280 ask the remote which is the current thread with qC. The former
4281 method avoids a roundtrip. */
4282
6b8edb51
PA
4283ptid_t
4284remote_target::get_current_thread (char *wait_status)
b7ea362b 4285{
6a49a997 4286 ptid_t ptid = null_ptid;
b7ea362b
PA
4287
4288 /* Note we don't use remote_parse_stop_reply as that makes use of
4289 the target architecture, which we haven't yet fully determined at
4290 this point. */
4291 if (wait_status != NULL)
4292 ptid = stop_reply_extract_thread (wait_status);
d7e15655 4293 if (ptid == null_ptid)
b7ea362b
PA
4294 ptid = remote_current_thread (inferior_ptid);
4295
4296 return ptid;
4297}
4298
49c62f2e
PA
4299/* Query the remote target for which is the current thread/process,
4300 add it to our tables, and update INFERIOR_PTID. The caller is
4301 responsible for setting the state such that the remote end is ready
3405876a
PA
4302 to return the current thread.
4303
4304 This function is called after handling the '?' or 'vRun' packets,
4305 whose response is a stop reply from which we can also try
4306 extracting the thread. If the target doesn't support the explicit
4307 qC query, we infer the current thread from that stop reply, passed
4308 in in WAIT_STATUS, which may be NULL. */
49c62f2e 4309
6b8edb51
PA
4310void
4311remote_target::add_current_inferior_and_thread (char *wait_status)
49c62f2e
PA
4312{
4313 struct remote_state *rs = get_remote_state ();
9ab8741a 4314 bool fake_pid_p = false;
49c62f2e
PA
4315
4316 inferior_ptid = null_ptid;
4317
b7ea362b 4318 /* Now, if we have thread information, update inferior_ptid. */
87215ad1 4319 ptid_t curr_ptid = get_current_thread (wait_status);
3405876a 4320
87215ad1 4321 if (curr_ptid != null_ptid)
49c62f2e
PA
4322 {
4323 if (!remote_multi_process_p (rs))
9ab8741a 4324 fake_pid_p = true;
49c62f2e
PA
4325 }
4326 else
4327 {
4328 /* Without this, some commands which require an active target
4329 (such as kill) won't work. This variable serves (at least)
4330 double duty as both the pid of the target process (if it has
4331 such), and as a flag indicating that a target is active. */
87215ad1 4332 curr_ptid = magic_null_ptid;
9ab8741a 4333 fake_pid_p = true;
49c62f2e
PA
4334 }
4335
e99b03dc 4336 remote_add_inferior (fake_pid_p, curr_ptid.pid (), -1, 1);
49c62f2e 4337
87215ad1
SDJ
4338 /* Add the main thread and switch to it. Don't try reading
4339 registers yet, since we haven't fetched the target description
4340 yet. */
4341 thread_info *tp = add_thread_silent (curr_ptid);
4342 switch_to_thread_no_regs (tp);
49c62f2e
PA
4343}
4344
6efcd9a8
PA
4345/* Print info about a thread that was found already stopped on
4346 connection. */
4347
4348static void
4349print_one_stopped_thread (struct thread_info *thread)
4350{
4351 struct target_waitstatus *ws = &thread->suspend.waitstatus;
4352
00431a78 4353 switch_to_thread (thread);
f2ffa92b 4354 thread->suspend.stop_pc = get_frame_pc (get_current_frame ());
6efcd9a8
PA
4355 set_current_sal_from_frame (get_current_frame ());
4356
4357 thread->suspend.waitstatus_pending_p = 0;
4358
4359 if (ws->kind == TARGET_WAITKIND_STOPPED)
4360 {
4361 enum gdb_signal sig = ws->value.sig;
4362
4363 if (signal_print_state (sig))
76727919 4364 gdb::observers::signal_received.notify (sig);
6efcd9a8 4365 }
76727919 4366 gdb::observers::normal_stop.notify (NULL, 1);
6efcd9a8
PA
4367}
4368
221e1a37
PA
4369/* Process all initial stop replies the remote side sent in response
4370 to the ? packet. These indicate threads that were already stopped
4371 on initial connection. We mark these threads as stopped and print
4372 their current frame before giving the user the prompt. */
4373
6b8edb51
PA
4374void
4375remote_target::process_initial_stop_replies (int from_tty)
221e1a37
PA
4376{
4377 int pending_stop_replies = stop_reply_queue_length ();
6efcd9a8
PA
4378 struct thread_info *selected = NULL;
4379 struct thread_info *lowest_stopped = NULL;
4380 struct thread_info *first = NULL;
221e1a37
PA
4381
4382 /* Consume the initial pending events. */
4383 while (pending_stop_replies-- > 0)
4384 {
4385 ptid_t waiton_ptid = minus_one_ptid;
4386 ptid_t event_ptid;
4387 struct target_waitstatus ws;
4388 int ignore_event = 0;
4389
4390 memset (&ws, 0, sizeof (ws));
4391 event_ptid = target_wait (waiton_ptid, &ws, TARGET_WNOHANG);
4392 if (remote_debug)
4393 print_target_wait_results (waiton_ptid, event_ptid, &ws);
4394
4395 switch (ws.kind)
4396 {
4397 case TARGET_WAITKIND_IGNORE:
4398 case TARGET_WAITKIND_NO_RESUMED:
4399 case TARGET_WAITKIND_SIGNALLED:
4400 case TARGET_WAITKIND_EXITED:
4401 /* We shouldn't see these, but if we do, just ignore. */
4402 if (remote_debug)
4403 fprintf_unfiltered (gdb_stdlog, "remote: event ignored\n");
4404 ignore_event = 1;
4405 break;
4406
4407 case TARGET_WAITKIND_EXECD:
4408 xfree (ws.value.execd_pathname);
4409 break;
4410 default:
4411 break;
4412 }
4413
4414 if (ignore_event)
4415 continue;
4416
b926417a 4417 struct thread_info *evthread = find_thread_ptid (event_ptid);
221e1a37
PA
4418
4419 if (ws.kind == TARGET_WAITKIND_STOPPED)
4420 {
4421 enum gdb_signal sig = ws.value.sig;
4422
4423 /* Stubs traditionally report SIGTRAP as initial signal,
4424 instead of signal 0. Suppress it. */
4425 if (sig == GDB_SIGNAL_TRAP)
4426 sig = GDB_SIGNAL_0;
b926417a 4427 evthread->suspend.stop_signal = sig;
6efcd9a8
PA
4428 ws.value.sig = sig;
4429 }
221e1a37 4430
b926417a 4431 evthread->suspend.waitstatus = ws;
6efcd9a8
PA
4432
4433 if (ws.kind != TARGET_WAITKIND_STOPPED
4434 || ws.value.sig != GDB_SIGNAL_0)
b926417a 4435 evthread->suspend.waitstatus_pending_p = 1;
6efcd9a8
PA
4436
4437 set_executing (event_ptid, 0);
4438 set_running (event_ptid, 0);
b926417a 4439 get_remote_thread_info (evthread)->vcont_resumed = 0;
6efcd9a8
PA
4440 }
4441
4442 /* "Notice" the new inferiors before anything related to
4443 registers/memory. */
08036331 4444 for (inferior *inf : all_non_exited_inferiors ())
6efcd9a8 4445 {
6efcd9a8
PA
4446 inf->needs_setup = 1;
4447
4448 if (non_stop)
4449 {
08036331 4450 thread_info *thread = any_live_thread_of_inferior (inf);
00431a78 4451 notice_new_inferior (thread, thread->state == THREAD_RUNNING,
6efcd9a8
PA
4452 from_tty);
4453 }
4454 }
4455
4456 /* If all-stop on top of non-stop, pause all threads. Note this
4457 records the threads' stop pc, so must be done after "noticing"
4458 the inferiors. */
4459 if (!non_stop)
4460 {
4461 stop_all_threads ();
4462
4463 /* If all threads of an inferior were already stopped, we
4464 haven't setup the inferior yet. */
08036331 4465 for (inferior *inf : all_non_exited_inferiors ())
6efcd9a8 4466 {
6efcd9a8
PA
4467 if (inf->needs_setup)
4468 {
08036331 4469 thread_info *thread = any_live_thread_of_inferior (inf);
6efcd9a8
PA
4470 switch_to_thread_no_regs (thread);
4471 setup_inferior (0);
4472 }
4473 }
221e1a37 4474 }
6efcd9a8
PA
4475
4476 /* Now go over all threads that are stopped, and print their current
4477 frame. If all-stop, then if there's a signalled thread, pick
4478 that as current. */
08036331 4479 for (thread_info *thread : all_non_exited_threads ())
6efcd9a8 4480 {
6efcd9a8
PA
4481 if (first == NULL)
4482 first = thread;
4483
4484 if (!non_stop)
00431a78 4485 thread->set_running (false);
6efcd9a8
PA
4486 else if (thread->state != THREAD_STOPPED)
4487 continue;
4488
6efcd9a8
PA
4489 if (selected == NULL
4490 && thread->suspend.waitstatus_pending_p)
4491 selected = thread;
4492
5d5658a1
PA
4493 if (lowest_stopped == NULL
4494 || thread->inf->num < lowest_stopped->inf->num
4495 || thread->per_inf_num < lowest_stopped->per_inf_num)
6efcd9a8
PA
4496 lowest_stopped = thread;
4497
4498 if (non_stop)
4499 print_one_stopped_thread (thread);
4500 }
4501
4502 /* In all-stop, we only print the status of one thread, and leave
4503 others with their status pending. */
4504 if (!non_stop)
4505 {
08036331 4506 thread_info *thread = selected;
6efcd9a8
PA
4507 if (thread == NULL)
4508 thread = lowest_stopped;
4509 if (thread == NULL)
4510 thread = first;
4511
4512 print_one_stopped_thread (thread);
4513 }
4514
4515 /* For "info program". */
08036331 4516 thread_info *thread = inferior_thread ();
6efcd9a8
PA
4517 if (thread->state == THREAD_STOPPED)
4518 set_last_target_status (inferior_ptid, thread->suspend.waitstatus);
221e1a37
PA
4519}
4520
048094ac
PA
4521/* Start the remote connection and sync state. */
4522
f6ac5f3d
PA
4523void
4524remote_target::start_remote (int from_tty, int extended_p)
c906108c 4525{
c8d104ad
PA
4526 struct remote_state *rs = get_remote_state ();
4527 struct packet_config *noack_config;
2d717e4f 4528 char *wait_status = NULL;
8621d6a9 4529
048094ac
PA
4530 /* Signal other parts that we're going through the initial setup,
4531 and so things may not be stable yet. E.g., we don't try to
4532 install tracepoints until we've relocated symbols. Also, a
4533 Ctrl-C before we're connected and synced up can't interrupt the
4534 target. Instead, it offers to drop the (potentially wedged)
4535 connection. */
4536 rs->starting_up = 1;
4537
522002f9 4538 QUIT;
c906108c 4539
9a7071a8
JB
4540 if (interrupt_on_connect)
4541 send_interrupt_sequence ();
4542
57e12211 4543 /* Ack any packet which the remote side has already sent. */
048094ac 4544 remote_serial_write ("+", 1);
1e51243a 4545
c8d104ad
PA
4546 /* The first packet we send to the target is the optional "supported
4547 packets" request. If the target can answer this, it will tell us
4548 which later probes to skip. */
4549 remote_query_supported ();
4550
d914c394 4551 /* If the stub wants to get a QAllow, compose one and send it. */
4082afcc 4552 if (packet_support (PACKET_QAllow) != PACKET_DISABLE)
f6ac5f3d 4553 set_permissions ();
d914c394 4554
57809e5e
JK
4555 /* gdbserver < 7.7 (before its fix from 2013-12-11) did reply to any
4556 unknown 'v' packet with string "OK". "OK" gets interpreted by GDB
4557 as a reply to known packet. For packet "vFile:setfs:" it is an
4558 invalid reply and GDB would return error in
4559 remote_hostio_set_filesystem, making remote files access impossible.
4560 Disable "vFile:setfs:" in such case. Do not disable other 'v' packets as
4561 other "vFile" packets get correctly detected even on gdbserver < 7.7. */
4562 {
4563 const char v_mustreplyempty[] = "vMustReplyEmpty";
4564
4565 putpkt (v_mustreplyempty);
8d64371b
TT
4566 getpkt (&rs->buf, 0);
4567 if (strcmp (rs->buf.data (), "OK") == 0)
57809e5e 4568 remote_protocol_packets[PACKET_vFile_setfs].support = PACKET_DISABLE;
8d64371b 4569 else if (strcmp (rs->buf.data (), "") != 0)
57809e5e 4570 error (_("Remote replied unexpectedly to '%s': %s"), v_mustreplyempty,
8d64371b 4571 rs->buf.data ());
57809e5e
JK
4572 }
4573
c8d104ad
PA
4574 /* Next, we possibly activate noack mode.
4575
4576 If the QStartNoAckMode packet configuration is set to AUTO,
4577 enable noack mode if the stub reported a wish for it with
4578 qSupported.
4579
4580 If set to TRUE, then enable noack mode even if the stub didn't
4581 report it in qSupported. If the stub doesn't reply OK, the
4582 session ends with an error.
4583
4584 If FALSE, then don't activate noack mode, regardless of what the
4585 stub claimed should be the default with qSupported. */
4586
4587 noack_config = &remote_protocol_packets[PACKET_QStartNoAckMode];
4082afcc 4588 if (packet_config_support (noack_config) != PACKET_DISABLE)
c8d104ad
PA
4589 {
4590 putpkt ("QStartNoAckMode");
8d64371b 4591 getpkt (&rs->buf, 0);
c8d104ad
PA
4592 if (packet_ok (rs->buf, noack_config) == PACKET_OK)
4593 rs->noack_mode = 1;
4594 }
4595
04bd08de 4596 if (extended_p)
5fe04517
PA
4597 {
4598 /* Tell the remote that we are using the extended protocol. */
4599 putpkt ("!");
8d64371b 4600 getpkt (&rs->buf, 0);
5fe04517
PA
4601 }
4602
9b224c5e
PA
4603 /* Let the target know which signals it is allowed to pass down to
4604 the program. */
4605 update_signals_program_target ();
4606
d962ef82
DJ
4607 /* Next, if the target can specify a description, read it. We do
4608 this before anything involving memory or registers. */
4609 target_find_description ();
4610
6c95b8df
PA
4611 /* Next, now that we know something about the target, update the
4612 address spaces in the program spaces. */
4613 update_address_spaces ();
4614
50c71eaf
PA
4615 /* On OSs where the list of libraries is global to all
4616 processes, we fetch them early. */
f5656ead 4617 if (gdbarch_has_global_solist (target_gdbarch ()))
e696b3ad 4618 solib_add (NULL, from_tty, auto_solib_add);
50c71eaf 4619
6efcd9a8 4620 if (target_is_non_stop_p ())
74531fed 4621 {
4082afcc 4622 if (packet_support (PACKET_QNonStop) != PACKET_ENABLE)
3e43a32a
MS
4623 error (_("Non-stop mode requested, but remote "
4624 "does not support non-stop"));
74531fed
PA
4625
4626 putpkt ("QNonStop:1");
8d64371b 4627 getpkt (&rs->buf, 0);
74531fed 4628
8d64371b
TT
4629 if (strcmp (rs->buf.data (), "OK") != 0)
4630 error (_("Remote refused setting non-stop mode with: %s"),
4631 rs->buf.data ());
74531fed
PA
4632
4633 /* Find about threads and processes the stub is already
4634 controlling. We default to adding them in the running state.
4635 The '?' query below will then tell us about which threads are
4636 stopped. */
f6ac5f3d 4637 this->update_thread_list ();
74531fed 4638 }
4082afcc 4639 else if (packet_support (PACKET_QNonStop) == PACKET_ENABLE)
74531fed
PA
4640 {
4641 /* Don't assume that the stub can operate in all-stop mode.
e6f3fa52 4642 Request it explicitly. */
74531fed 4643 putpkt ("QNonStop:0");
8d64371b 4644 getpkt (&rs->buf, 0);
74531fed 4645
8d64371b
TT
4646 if (strcmp (rs->buf.data (), "OK") != 0)
4647 error (_("Remote refused setting all-stop mode with: %s"),
4648 rs->buf.data ());
74531fed
PA
4649 }
4650
a0743c90
YQ
4651 /* Upload TSVs regardless of whether the target is running or not. The
4652 remote stub, such as GDBserver, may have some predefined or builtin
4653 TSVs, even if the target is not running. */
f6ac5f3d 4654 if (get_trace_status (current_trace_status ()) != -1)
a0743c90
YQ
4655 {
4656 struct uploaded_tsv *uploaded_tsvs = NULL;
4657
f6ac5f3d 4658 upload_trace_state_variables (&uploaded_tsvs);
a0743c90
YQ
4659 merge_uploaded_trace_state_variables (&uploaded_tsvs);
4660 }
4661
2d717e4f
DJ
4662 /* Check whether the target is running now. */
4663 putpkt ("?");
8d64371b 4664 getpkt (&rs->buf, 0);
2d717e4f 4665
6efcd9a8 4666 if (!target_is_non_stop_p ())
2d717e4f 4667 {
74531fed 4668 if (rs->buf[0] == 'W' || rs->buf[0] == 'X')
2d717e4f 4669 {
04bd08de 4670 if (!extended_p)
74531fed 4671 error (_("The target is not running (try extended-remote?)"));
c35b1492
PA
4672
4673 /* We're connected, but not running. Drop out before we
4674 call start_remote. */
e278ad5b 4675 rs->starting_up = 0;
c35b1492 4676 return;
2d717e4f
DJ
4677 }
4678 else
74531fed 4679 {
74531fed 4680 /* Save the reply for later. */
8d64371b
TT
4681 wait_status = (char *) alloca (strlen (rs->buf.data ()) + 1);
4682 strcpy (wait_status, rs->buf.data ());
74531fed
PA
4683 }
4684
b7ea362b 4685 /* Fetch thread list. */
e8032dde 4686 target_update_thread_list ();
b7ea362b 4687
74531fed
PA
4688 /* Let the stub know that we want it to return the thread. */
4689 set_continue_thread (minus_one_ptid);
4690
b7ea362b
PA
4691 if (thread_count () == 0)
4692 {
4693 /* Target has no concept of threads at all. GDB treats
4694 non-threaded target as single-threaded; add a main
4695 thread. */
4696 add_current_inferior_and_thread (wait_status);
4697 }
4698 else
4699 {
4700 /* We have thread information; select the thread the target
4701 says should be current. If we're reconnecting to a
4702 multi-threaded program, this will ideally be the thread
4703 that last reported an event before GDB disconnected. */
75c6c844
PA
4704 ptid_t curr_thread = get_current_thread (wait_status);
4705 if (curr_thread == null_ptid)
b7ea362b
PA
4706 {
4707 /* Odd... The target was able to list threads, but not
4708 tell us which thread was current (no "thread"
4709 register in T stop reply?). Just pick the first
4710 thread in the thread list then. */
c9f35b34
KB
4711
4712 if (remote_debug)
4713 fprintf_unfiltered (gdb_stdlog,
4714 "warning: couldn't determine remote "
4715 "current thread; picking first in list.\n");
4716
75c6c844
PA
4717 for (thread_info *tp : all_non_exited_threads ())
4718 {
4719 switch_to_thread (tp);
4720 break;
4721 }
b7ea362b 4722 }
75c6c844
PA
4723 else
4724 switch_to_thread (find_thread_ptid (curr_thread));
b7ea362b 4725 }
74531fed 4726
6e586cc5
YQ
4727 /* init_wait_for_inferior should be called before get_offsets in order
4728 to manage `inserted' flag in bp loc in a correct state.
4729 breakpoint_init_inferior, called from init_wait_for_inferior, set
4730 `inserted' flag to 0, while before breakpoint_re_set, called from
4731 start_remote, set `inserted' flag to 1. In the initialization of
4732 inferior, breakpoint_init_inferior should be called first, and then
4733 breakpoint_re_set can be called. If this order is broken, state of
4734 `inserted' flag is wrong, and cause some problems on breakpoint
4735 manipulation. */
4736 init_wait_for_inferior ();
4737
74531fed
PA
4738 get_offsets (); /* Get text, data & bss offsets. */
4739
d962ef82
DJ
4740 /* If we could not find a description using qXfer, and we know
4741 how to do it some other way, try again. This is not
4742 supported for non-stop; it could be, but it is tricky if
4743 there are no stopped threads when we connect. */
f6ac5f3d 4744 if (remote_read_description_p (this)
f5656ead 4745 && gdbarch_target_desc (target_gdbarch ()) == NULL)
d962ef82
DJ
4746 {
4747 target_clear_description ();
4748 target_find_description ();
4749 }
4750
74531fed
PA
4751 /* Use the previously fetched status. */
4752 gdb_assert (wait_status != NULL);
8d64371b 4753 strcpy (rs->buf.data (), wait_status);
74531fed
PA
4754 rs->cached_wait_status = 1;
4755
f6ac5f3d 4756 ::start_remote (from_tty); /* Initialize gdb process mechanisms. */
2d717e4f
DJ
4757 }
4758 else
4759 {
68c97600
PA
4760 /* Clear WFI global state. Do this before finding about new
4761 threads and inferiors, and setting the current inferior.
4762 Otherwise we would clear the proceed status of the current
4763 inferior when we want its stop_soon state to be preserved
4764 (see notice_new_inferior). */
4765 init_wait_for_inferior ();
4766
74531fed
PA
4767 /* In non-stop, we will either get an "OK", meaning that there
4768 are no stopped threads at this time; or, a regular stop
4769 reply. In the latter case, there may be more than one thread
4770 stopped --- we pull them all out using the vStopped
4771 mechanism. */
8d64371b 4772 if (strcmp (rs->buf.data (), "OK") != 0)
74531fed 4773 {
722247f1 4774 struct notif_client *notif = &notif_client_stop;
2d717e4f 4775
722247f1
YQ
4776 /* remote_notif_get_pending_replies acks this one, and gets
4777 the rest out. */
f48ff2a7 4778 rs->notif_state->pending_event[notif_client_stop.id]
8d64371b 4779 = remote_notif_parse (this, notif, rs->buf.data ());
722247f1 4780 remote_notif_get_pending_events (notif);
74531fed 4781 }
2d717e4f 4782
74531fed
PA
4783 if (thread_count () == 0)
4784 {
04bd08de 4785 if (!extended_p)
74531fed 4786 error (_("The target is not running (try extended-remote?)"));
82f73884 4787
c35b1492
PA
4788 /* We're connected, but not running. Drop out before we
4789 call start_remote. */
e278ad5b 4790 rs->starting_up = 0;
c35b1492
PA
4791 return;
4792 }
74531fed 4793
74531fed
PA
4794 /* In non-stop mode, any cached wait status will be stored in
4795 the stop reply queue. */
4796 gdb_assert (wait_status == NULL);
f0223081 4797
2455069d 4798 /* Report all signals during attach/startup. */
adc6a863 4799 pass_signals ({});
221e1a37
PA
4800
4801 /* If there are already stopped threads, mark them stopped and
4802 report their stops before giving the prompt to the user. */
6efcd9a8 4803 process_initial_stop_replies (from_tty);
221e1a37
PA
4804
4805 if (target_can_async_p ())
4806 target_async (1);
74531fed 4807 }
c8d104ad 4808
c8d104ad
PA
4809 /* If we connected to a live target, do some additional setup. */
4810 if (target_has_execution)
4811 {
f4ccffad 4812 if (symfile_objfile) /* No use without a symbol-file. */
36d25514 4813 remote_check_symbols ();
c8d104ad 4814 }
50c71eaf 4815
d5551862
SS
4816 /* Possibly the target has been engaged in a trace run started
4817 previously; find out where things are at. */
f6ac5f3d 4818 if (get_trace_status (current_trace_status ()) != -1)
d5551862 4819 {
00bf0b85 4820 struct uploaded_tp *uploaded_tps = NULL;
00bf0b85 4821
00bf0b85
SS
4822 if (current_trace_status ()->running)
4823 printf_filtered (_("Trace is already running on the target.\n"));
4824
f6ac5f3d 4825 upload_tracepoints (&uploaded_tps);
00bf0b85
SS
4826
4827 merge_uploaded_tracepoints (&uploaded_tps);
d5551862
SS
4828 }
4829
c0272db5
TW
4830 /* Possibly the target has been engaged in a btrace record started
4831 previously; find out where things are at. */
4832 remote_btrace_maybe_reopen ();
4833
1e51243a
PA
4834 /* The thread and inferior lists are now synchronized with the
4835 target, our symbols have been relocated, and we're merged the
4836 target's tracepoints with ours. We're done with basic start
4837 up. */
4838 rs->starting_up = 0;
4839
a25a5a45
PA
4840 /* Maybe breakpoints are global and need to be inserted now. */
4841 if (breakpoints_should_be_inserted_now ())
50c71eaf 4842 insert_breakpoints ();
c906108c
SS
4843}
4844
4845/* Open a connection to a remote debugger.
4846 NAME is the filename used for communication. */
4847
f6ac5f3d
PA
4848void
4849remote_target::open (const char *name, int from_tty)
c906108c 4850{
f6ac5f3d 4851 open_1 (name, from_tty, 0);
43ff13b4
JM
4852}
4853
c906108c
SS
4854/* Open a connection to a remote debugger using the extended
4855 remote gdb protocol. NAME is the filename used for communication. */
4856
f6ac5f3d
PA
4857void
4858extended_remote_target::open (const char *name, int from_tty)
c906108c 4859{
f6ac5f3d 4860 open_1 (name, from_tty, 1 /*extended_p */);
43ff13b4
JM
4861}
4862
ca4f7f8b
PA
4863/* Reset all packets back to "unknown support". Called when opening a
4864 new connection to a remote target. */
c906108c 4865
d471ea57 4866static void
ca4f7f8b 4867reset_all_packet_configs_support (void)
d471ea57
AC
4868{
4869 int i;
a744cf53 4870
444abaca 4871 for (i = 0; i < PACKET_MAX; i++)
4082afcc 4872 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
d471ea57
AC
4873}
4874
ca4f7f8b
PA
4875/* Initialize all packet configs. */
4876
4877static void
4878init_all_packet_configs (void)
4879{
4880 int i;
4881
4882 for (i = 0; i < PACKET_MAX; i++)
4883 {
4884 remote_protocol_packets[i].detect = AUTO_BOOLEAN_AUTO;
4885 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
4886 }
4887}
4888
23860348 4889/* Symbol look-up. */
dc8acb97 4890
6b8edb51
PA
4891void
4892remote_target::remote_check_symbols ()
dc8acb97 4893{
8d64371b 4894 char *tmp;
dc8acb97
MS
4895 int end;
4896
63154eca
PA
4897 /* The remote side has no concept of inferiors that aren't running
4898 yet, it only knows about running processes. If we're connected
4899 but our current inferior is not running, we should not invite the
4900 remote target to request symbol lookups related to its
4901 (unrelated) current process. */
4902 if (!target_has_execution)
4903 return;
4904
4082afcc 4905 if (packet_support (PACKET_qSymbol) == PACKET_DISABLE)
dc8acb97
MS
4906 return;
4907
63154eca
PA
4908 /* Make sure the remote is pointing at the right process. Note
4909 there's no way to select "no process". */
3c9c4b83
PA
4910 set_general_process ();
4911
6d820c5c
DJ
4912 /* Allocate a message buffer. We can't reuse the input buffer in RS,
4913 because we need both at the same time. */
66644cd3 4914 gdb::char_vector msg (get_remote_packet_size ());
8d64371b 4915 gdb::char_vector reply (get_remote_packet_size ());
6d820c5c 4916
23860348 4917 /* Invite target to request symbol lookups. */
dc8acb97
MS
4918
4919 putpkt ("qSymbol::");
8d64371b 4920 getpkt (&reply, 0);
28170b88 4921 packet_ok (reply, &remote_protocol_packets[PACKET_qSymbol]);
dc8acb97 4922
8d64371b 4923 while (startswith (reply.data (), "qSymbol:"))
dc8acb97 4924 {
77e371c0
TT
4925 struct bound_minimal_symbol sym;
4926
dc8acb97 4927 tmp = &reply[8];
66644cd3
AB
4928 end = hex2bin (tmp, reinterpret_cast <gdb_byte *> (msg.data ()),
4929 strlen (tmp) / 2);
dc8acb97 4930 msg[end] = '\0';
66644cd3 4931 sym = lookup_minimal_symbol (msg.data (), NULL, NULL);
3b7344d5 4932 if (sym.minsym == NULL)
66644cd3
AB
4933 xsnprintf (msg.data (), get_remote_packet_size (), "qSymbol::%s",
4934 &reply[8]);
dc8acb97 4935 else
2bbe3cc1 4936 {
f5656ead 4937 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
77e371c0 4938 CORE_ADDR sym_addr = BMSYMBOL_VALUE_ADDRESS (sym);
2bbe3cc1
DJ
4939
4940 /* If this is a function address, return the start of code
4941 instead of any data function descriptor. */
f5656ead 4942 sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
2bbe3cc1 4943 sym_addr,
8b88a78e 4944 current_top_target ());
2bbe3cc1 4945
66644cd3 4946 xsnprintf (msg.data (), get_remote_packet_size (), "qSymbol:%s:%s",
5af949e3 4947 phex_nz (sym_addr, addr_size), &reply[8]);
2bbe3cc1 4948 }
66644cd3
AB
4949
4950 putpkt (msg.data ());
8d64371b 4951 getpkt (&reply, 0);
dc8acb97
MS
4952 }
4953}
4954
9db8d71f 4955static struct serial *
baa336ce 4956remote_serial_open (const char *name)
9db8d71f
DJ
4957{
4958 static int udp_warning = 0;
4959
4960 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
4961 of in ser-tcp.c, because it is the remote protocol assuming that the
4962 serial connection is reliable and not the serial connection promising
4963 to be. */
61012eef 4964 if (!udp_warning && startswith (name, "udp:"))
9db8d71f 4965 {
3e43a32a
MS
4966 warning (_("The remote protocol may be unreliable over UDP.\n"
4967 "Some events may be lost, rendering further debugging "
4968 "impossible."));
9db8d71f
DJ
4969 udp_warning = 1;
4970 }
4971
4972 return serial_open (name);
4973}
4974
d914c394
SS
4975/* Inform the target of our permission settings. The permission flags
4976 work without this, but if the target knows the settings, it can do
4977 a couple things. First, it can add its own check, to catch cases
4978 that somehow manage to get by the permissions checks in target
4979 methods. Second, if the target is wired to disallow particular
4980 settings (for instance, a system in the field that is not set up to
4981 be able to stop at a breakpoint), it can object to any unavailable
4982 permissions. */
4983
4984void
f6ac5f3d 4985remote_target::set_permissions ()
d914c394
SS
4986{
4987 struct remote_state *rs = get_remote_state ();
4988
8d64371b 4989 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QAllow:"
bba74b36
YQ
4990 "WriteReg:%x;WriteMem:%x;"
4991 "InsertBreak:%x;InsertTrace:%x;"
4992 "InsertFastTrace:%x;Stop:%x",
4993 may_write_registers, may_write_memory,
4994 may_insert_breakpoints, may_insert_tracepoints,
4995 may_insert_fast_tracepoints, may_stop);
d914c394 4996 putpkt (rs->buf);
8d64371b 4997 getpkt (&rs->buf, 0);
d914c394
SS
4998
4999 /* If the target didn't like the packet, warn the user. Do not try
5000 to undo the user's settings, that would just be maddening. */
8d64371b
TT
5001 if (strcmp (rs->buf.data (), "OK") != 0)
5002 warning (_("Remote refused setting permissions with: %s"),
5003 rs->buf.data ());
d914c394
SS
5004}
5005
be2a5f71
DJ
5006/* This type describes each known response to the qSupported
5007 packet. */
5008struct protocol_feature
5009{
5010 /* The name of this protocol feature. */
5011 const char *name;
5012
5013 /* The default for this protocol feature. */
5014 enum packet_support default_support;
5015
5016 /* The function to call when this feature is reported, or after
5017 qSupported processing if the feature is not supported.
5018 The first argument points to this structure. The second
5019 argument indicates whether the packet requested support be
5020 enabled, disabled, or probed (or the default, if this function
5021 is being called at the end of processing and this feature was
5022 not reported). The third argument may be NULL; if not NULL, it
5023 is a NUL-terminated string taken from the packet following
5024 this feature's name and an equals sign. */
6b8edb51
PA
5025 void (*func) (remote_target *remote, const struct protocol_feature *,
5026 enum packet_support, const char *);
be2a5f71
DJ
5027
5028 /* The corresponding packet for this feature. Only used if
5029 FUNC is remote_supported_packet. */
5030 int packet;
5031};
5032
be2a5f71 5033static void
6b8edb51
PA
5034remote_supported_packet (remote_target *remote,
5035 const struct protocol_feature *feature,
be2a5f71
DJ
5036 enum packet_support support,
5037 const char *argument)
5038{
5039 if (argument)
5040 {
5041 warning (_("Remote qSupported response supplied an unexpected value for"
5042 " \"%s\"."), feature->name);
5043 return;
5044 }
5045
4082afcc 5046 remote_protocol_packets[feature->packet].support = support;
be2a5f71 5047}
be2a5f71 5048
6b8edb51
PA
5049void
5050remote_target::remote_packet_size (const protocol_feature *feature,
5051 enum packet_support support, const char *value)
be2a5f71
DJ
5052{
5053 struct remote_state *rs = get_remote_state ();
5054
5055 int packet_size;
5056 char *value_end;
5057
5058 if (support != PACKET_ENABLE)
5059 return;
5060
5061 if (value == NULL || *value == '\0')
5062 {
5063 warning (_("Remote target reported \"%s\" without a size."),
5064 feature->name);
5065 return;
5066 }
5067
5068 errno = 0;
5069 packet_size = strtol (value, &value_end, 16);
5070 if (errno != 0 || *value_end != '\0' || packet_size < 0)
5071 {
5072 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
5073 feature->name, value);
5074 return;
5075 }
5076
be2a5f71
DJ
5077 /* Record the new maximum packet size. */
5078 rs->explicit_packet_size = packet_size;
5079}
5080
cb8c24b6 5081static void
6b8edb51
PA
5082remote_packet_size (remote_target *remote, const protocol_feature *feature,
5083 enum packet_support support, const char *value)
5084{
5085 remote->remote_packet_size (feature, support, value);
5086}
5087
dc473cfb 5088static const struct protocol_feature remote_protocol_features[] = {
0876f84a 5089 { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 },
40e57cf2 5090 { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet,
fd79ecee 5091 PACKET_qXfer_auxv },
c78fa86a
GB
5092 { "qXfer:exec-file:read", PACKET_DISABLE, remote_supported_packet,
5093 PACKET_qXfer_exec_file },
23181151
DJ
5094 { "qXfer:features:read", PACKET_DISABLE, remote_supported_packet,
5095 PACKET_qXfer_features },
cfa9d6d9
DJ
5096 { "qXfer:libraries:read", PACKET_DISABLE, remote_supported_packet,
5097 PACKET_qXfer_libraries },
2268b414
JK
5098 { "qXfer:libraries-svr4:read", PACKET_DISABLE, remote_supported_packet,
5099 PACKET_qXfer_libraries_svr4 },
ced63ec0 5100 { "augmented-libraries-svr4-read", PACKET_DISABLE,
4082afcc 5101 remote_supported_packet, PACKET_augmented_libraries_svr4_read_feature },
fd79ecee 5102 { "qXfer:memory-map:read", PACKET_DISABLE, remote_supported_packet,
89be2091 5103 PACKET_qXfer_memory_map },
07e059b5
VP
5104 { "qXfer:osdata:read", PACKET_DISABLE, remote_supported_packet,
5105 PACKET_qXfer_osdata },
dc146f7c
VP
5106 { "qXfer:threads:read", PACKET_DISABLE, remote_supported_packet,
5107 PACKET_qXfer_threads },
b3b9301e
PA
5108 { "qXfer:traceframe-info:read", PACKET_DISABLE, remote_supported_packet,
5109 PACKET_qXfer_traceframe_info },
89be2091
DJ
5110 { "QPassSignals", PACKET_DISABLE, remote_supported_packet,
5111 PACKET_QPassSignals },
82075af2
JS
5112 { "QCatchSyscalls", PACKET_DISABLE, remote_supported_packet,
5113 PACKET_QCatchSyscalls },
9b224c5e
PA
5114 { "QProgramSignals", PACKET_DISABLE, remote_supported_packet,
5115 PACKET_QProgramSignals },
bc3b087d
SDJ
5116 { "QSetWorkingDir", PACKET_DISABLE, remote_supported_packet,
5117 PACKET_QSetWorkingDir },
aefd8b33
SDJ
5118 { "QStartupWithShell", PACKET_DISABLE, remote_supported_packet,
5119 PACKET_QStartupWithShell },
0a2dde4a
SDJ
5120 { "QEnvironmentHexEncoded", PACKET_DISABLE, remote_supported_packet,
5121 PACKET_QEnvironmentHexEncoded },
5122 { "QEnvironmentReset", PACKET_DISABLE, remote_supported_packet,
5123 PACKET_QEnvironmentReset },
5124 { "QEnvironmentUnset", PACKET_DISABLE, remote_supported_packet,
5125 PACKET_QEnvironmentUnset },
a6f3e723
SL
5126 { "QStartNoAckMode", PACKET_DISABLE, remote_supported_packet,
5127 PACKET_QStartNoAckMode },
4082afcc
PA
5128 { "multiprocess", PACKET_DISABLE, remote_supported_packet,
5129 PACKET_multiprocess_feature },
5130 { "QNonStop", PACKET_DISABLE, remote_supported_packet, PACKET_QNonStop },
4aa995e1
PA
5131 { "qXfer:siginfo:read", PACKET_DISABLE, remote_supported_packet,
5132 PACKET_qXfer_siginfo_read },
5133 { "qXfer:siginfo:write", PACKET_DISABLE, remote_supported_packet,
5134 PACKET_qXfer_siginfo_write },
4082afcc 5135 { "ConditionalTracepoints", PACKET_DISABLE, remote_supported_packet,
782b2b07 5136 PACKET_ConditionalTracepoints },
4082afcc 5137 { "ConditionalBreakpoints", PACKET_DISABLE, remote_supported_packet,
3788aec7 5138 PACKET_ConditionalBreakpoints },
4082afcc 5139 { "BreakpointCommands", PACKET_DISABLE, remote_supported_packet,
d3ce09f5 5140 PACKET_BreakpointCommands },
4082afcc 5141 { "FastTracepoints", PACKET_DISABLE, remote_supported_packet,
7a697b8d 5142 PACKET_FastTracepoints },
4082afcc 5143 { "StaticTracepoints", PACKET_DISABLE, remote_supported_packet,
0fb4aa4b 5144 PACKET_StaticTracepoints },
4082afcc 5145 {"InstallInTrace", PACKET_DISABLE, remote_supported_packet,
1e4d1764 5146 PACKET_InstallInTrace},
4082afcc
PA
5147 { "DisconnectedTracing", PACKET_DISABLE, remote_supported_packet,
5148 PACKET_DisconnectedTracing_feature },
40ab02ce
MS
5149 { "ReverseContinue", PACKET_DISABLE, remote_supported_packet,
5150 PACKET_bc },
5151 { "ReverseStep", PACKET_DISABLE, remote_supported_packet,
5152 PACKET_bs },
409873ef
SS
5153 { "TracepointSource", PACKET_DISABLE, remote_supported_packet,
5154 PACKET_TracepointSource },
d914c394
SS
5155 { "QAllow", PACKET_DISABLE, remote_supported_packet,
5156 PACKET_QAllow },
4082afcc
PA
5157 { "EnableDisableTracepoints", PACKET_DISABLE, remote_supported_packet,
5158 PACKET_EnableDisableTracepoints_feature },
78d85199
YQ
5159 { "qXfer:fdpic:read", PACKET_DISABLE, remote_supported_packet,
5160 PACKET_qXfer_fdpic },
169081d0
TG
5161 { "qXfer:uib:read", PACKET_DISABLE, remote_supported_packet,
5162 PACKET_qXfer_uib },
03583c20
UW
5163 { "QDisableRandomization", PACKET_DISABLE, remote_supported_packet,
5164 PACKET_QDisableRandomization },
d1feda86 5165 { "QAgent", PACKET_DISABLE, remote_supported_packet, PACKET_QAgent},
f6f899bf
HAQ
5166 { "QTBuffer:size", PACKET_DISABLE,
5167 remote_supported_packet, PACKET_QTBuffer_size},
4082afcc 5168 { "tracenz", PACKET_DISABLE, remote_supported_packet, PACKET_tracenz_feature },
9accd112
MM
5169 { "Qbtrace:off", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_off },
5170 { "Qbtrace:bts", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_bts },
b20a6524 5171 { "Qbtrace:pt", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_pt },
9accd112 5172 { "qXfer:btrace:read", PACKET_DISABLE, remote_supported_packet,
f4abbc16
MM
5173 PACKET_qXfer_btrace },
5174 { "qXfer:btrace-conf:read", PACKET_DISABLE, remote_supported_packet,
d33501a5
MM
5175 PACKET_qXfer_btrace_conf },
5176 { "Qbtrace-conf:bts:size", PACKET_DISABLE, remote_supported_packet,
f7e6eed5
PA
5177 PACKET_Qbtrace_conf_bts_size },
5178 { "swbreak", PACKET_DISABLE, remote_supported_packet, PACKET_swbreak_feature },
0a93529c 5179 { "hwbreak", PACKET_DISABLE, remote_supported_packet, PACKET_hwbreak_feature },
89245bc0
DB
5180 { "fork-events", PACKET_DISABLE, remote_supported_packet,
5181 PACKET_fork_event_feature },
5182 { "vfork-events", PACKET_DISABLE, remote_supported_packet,
5183 PACKET_vfork_event_feature },
94585166
DB
5184 { "exec-events", PACKET_DISABLE, remote_supported_packet,
5185 PACKET_exec_event_feature },
b20a6524 5186 { "Qbtrace-conf:pt:size", PACKET_DISABLE, remote_supported_packet,
750ce8d1 5187 PACKET_Qbtrace_conf_pt_size },
65706a29
PA
5188 { "vContSupported", PACKET_DISABLE, remote_supported_packet, PACKET_vContSupported },
5189 { "QThreadEvents", PACKET_DISABLE, remote_supported_packet, PACKET_QThreadEvents },
f2faf941 5190 { "no-resumed", PACKET_DISABLE, remote_supported_packet, PACKET_no_resumed },
be2a5f71
DJ
5191};
5192
c8d5aac9
L
5193static char *remote_support_xml;
5194
5195/* Register string appended to "xmlRegisters=" in qSupported query. */
5196
5197void
6e39997a 5198register_remote_support_xml (const char *xml)
c8d5aac9
L
5199{
5200#if defined(HAVE_LIBEXPAT)
5201 if (remote_support_xml == NULL)
c4f7c687 5202 remote_support_xml = concat ("xmlRegisters=", xml, (char *) NULL);
c8d5aac9
L
5203 else
5204 {
5205 char *copy = xstrdup (remote_support_xml + 13);
ca3a04f6
CB
5206 char *saveptr;
5207 char *p = strtok_r (copy, ",", &saveptr);
c8d5aac9
L
5208
5209 do
5210 {
5211 if (strcmp (p, xml) == 0)
5212 {
5213 /* already there */
5214 xfree (copy);
5215 return;
5216 }
5217 }
ca3a04f6 5218 while ((p = strtok_r (NULL, ",", &saveptr)) != NULL);
c8d5aac9
L
5219 xfree (copy);
5220
94b0dee1
PA
5221 remote_support_xml = reconcat (remote_support_xml,
5222 remote_support_xml, ",", xml,
5223 (char *) NULL);
c8d5aac9
L
5224 }
5225#endif
5226}
5227
69b6ecb0
TT
5228static void
5229remote_query_supported_append (std::string *msg, const char *append)
c8d5aac9 5230{
69b6ecb0
TT
5231 if (!msg->empty ())
5232 msg->append (";");
5233 msg->append (append);
c8d5aac9
L
5234}
5235
6b8edb51
PA
5236void
5237remote_target::remote_query_supported ()
be2a5f71
DJ
5238{
5239 struct remote_state *rs = get_remote_state ();
5240 char *next;
5241 int i;
5242 unsigned char seen [ARRAY_SIZE (remote_protocol_features)];
5243
5244 /* The packet support flags are handled differently for this packet
5245 than for most others. We treat an error, a disabled packet, and
5246 an empty response identically: any features which must be reported
5247 to be used will be automatically disabled. An empty buffer
5248 accomplishes this, since that is also the representation for a list
5249 containing no features. */
5250
5251 rs->buf[0] = 0;
4082afcc 5252 if (packet_support (PACKET_qSupported) != PACKET_DISABLE)
be2a5f71 5253 {
69b6ecb0 5254 std::string q;
c8d5aac9 5255
73b8c1fd 5256 if (packet_set_cmd_state (PACKET_multiprocess_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5257 remote_query_supported_append (&q, "multiprocess+");
c8d5aac9 5258
f7e6eed5 5259 if (packet_set_cmd_state (PACKET_swbreak_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5260 remote_query_supported_append (&q, "swbreak+");
f7e6eed5 5261 if (packet_set_cmd_state (PACKET_hwbreak_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5262 remote_query_supported_append (&q, "hwbreak+");
f7e6eed5 5263
69b6ecb0 5264 remote_query_supported_append (&q, "qRelocInsn+");
dde08ee1 5265
8020350c
DB
5266 if (packet_set_cmd_state (PACKET_fork_event_feature)
5267 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5268 remote_query_supported_append (&q, "fork-events+");
8020350c
DB
5269 if (packet_set_cmd_state (PACKET_vfork_event_feature)
5270 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5271 remote_query_supported_append (&q, "vfork-events+");
8020350c
DB
5272 if (packet_set_cmd_state (PACKET_exec_event_feature)
5273 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5274 remote_query_supported_append (&q, "exec-events+");
89245bc0 5275
750ce8d1 5276 if (packet_set_cmd_state (PACKET_vContSupported) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5277 remote_query_supported_append (&q, "vContSupported+");
750ce8d1 5278
65706a29 5279 if (packet_set_cmd_state (PACKET_QThreadEvents) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5280 remote_query_supported_append (&q, "QThreadEvents+");
65706a29 5281
f2faf941 5282 if (packet_set_cmd_state (PACKET_no_resumed) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5283 remote_query_supported_append (&q, "no-resumed+");
f2faf941 5284
b35d5edb
PA
5285 /* Keep this one last to work around a gdbserver <= 7.10 bug in
5286 the qSupported:xmlRegisters=i386 handling. */
7cc244de
PA
5287 if (remote_support_xml != NULL
5288 && packet_support (PACKET_qXfer_features) != PACKET_DISABLE)
69b6ecb0 5289 remote_query_supported_append (&q, remote_support_xml);
82f73884 5290
69b6ecb0
TT
5291 q = "qSupported:" + q;
5292 putpkt (q.c_str ());
94b0dee1 5293
8d64371b 5294 getpkt (&rs->buf, 0);
be2a5f71
DJ
5295
5296 /* If an error occured, warn, but do not return - just reset the
5297 buffer to empty and go on to disable features. */
5298 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported])
5299 == PACKET_ERROR)
5300 {
8d64371b 5301 warning (_("Remote failure reply: %s"), rs->buf.data ());
be2a5f71
DJ
5302 rs->buf[0] = 0;
5303 }
5304 }
5305
5306 memset (seen, 0, sizeof (seen));
5307
8d64371b 5308 next = rs->buf.data ();
be2a5f71
DJ
5309 while (*next)
5310 {
5311 enum packet_support is_supported;
5312 char *p, *end, *name_end, *value;
5313
5314 /* First separate out this item from the rest of the packet. If
5315 there's another item after this, we overwrite the separator
5316 (terminated strings are much easier to work with). */
5317 p = next;
5318 end = strchr (p, ';');
5319 if (end == NULL)
5320 {
5321 end = p + strlen (p);
5322 next = end;
5323 }
5324 else
5325 {
89be2091
DJ
5326 *end = '\0';
5327 next = end + 1;
5328
be2a5f71
DJ
5329 if (end == p)
5330 {
5331 warning (_("empty item in \"qSupported\" response"));
5332 continue;
5333 }
be2a5f71
DJ
5334 }
5335
5336 name_end = strchr (p, '=');
5337 if (name_end)
5338 {
5339 /* This is a name=value entry. */
5340 is_supported = PACKET_ENABLE;
5341 value = name_end + 1;
5342 *name_end = '\0';
5343 }
5344 else
5345 {
5346 value = NULL;
5347 switch (end[-1])
5348 {
5349 case '+':
5350 is_supported = PACKET_ENABLE;
5351 break;
5352
5353 case '-':
5354 is_supported = PACKET_DISABLE;
5355 break;
5356
5357 case '?':
5358 is_supported = PACKET_SUPPORT_UNKNOWN;
5359 break;
5360
5361 default:
3e43a32a
MS
5362 warning (_("unrecognized item \"%s\" "
5363 "in \"qSupported\" response"), p);
be2a5f71
DJ
5364 continue;
5365 }
5366 end[-1] = '\0';
5367 }
5368
5369 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
5370 if (strcmp (remote_protocol_features[i].name, p) == 0)
5371 {
5372 const struct protocol_feature *feature;
5373
5374 seen[i] = 1;
5375 feature = &remote_protocol_features[i];
6b8edb51 5376 feature->func (this, feature, is_supported, value);
be2a5f71
DJ
5377 break;
5378 }
5379 }
5380
5381 /* If we increased the packet size, make sure to increase the global
5382 buffer size also. We delay this until after parsing the entire
5383 qSupported packet, because this is the same buffer we were
5384 parsing. */
8d64371b
TT
5385 if (rs->buf.size () < rs->explicit_packet_size)
5386 rs->buf.resize (rs->explicit_packet_size);
be2a5f71
DJ
5387
5388 /* Handle the defaults for unmentioned features. */
5389 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
5390 if (!seen[i])
5391 {
5392 const struct protocol_feature *feature;
5393
5394 feature = &remote_protocol_features[i];
6b8edb51 5395 feature->func (this, feature, feature->default_support, NULL);
be2a5f71
DJ
5396 }
5397}
5398
048094ac
PA
5399/* Serial QUIT handler for the remote serial descriptor.
5400
5401 Defers handling a Ctrl-C until we're done with the current
5402 command/response packet sequence, unless:
5403
5404 - We're setting up the connection. Don't send a remote interrupt
5405 request, as we're not fully synced yet. Quit immediately
5406 instead.
5407
5408 - The target has been resumed in the foreground
223ffa71 5409 (target_terminal::is_ours is false) with a synchronous resume
048094ac
PA
5410 packet, and we're blocked waiting for the stop reply, thus a
5411 Ctrl-C should be immediately sent to the target.
5412
5413 - We get a second Ctrl-C while still within the same serial read or
5414 write. In that case the serial is seemingly wedged --- offer to
5415 quit/disconnect.
5416
5417 - We see a second Ctrl-C without target response, after having
5418 previously interrupted the target. In that case the target/stub
5419 is probably wedged --- offer to quit/disconnect.
5420*/
5421
6b8edb51
PA
5422void
5423remote_target::remote_serial_quit_handler ()
048094ac
PA
5424{
5425 struct remote_state *rs = get_remote_state ();
5426
5427 if (check_quit_flag ())
5428 {
5429 /* If we're starting up, we're not fully synced yet. Quit
5430 immediately. */
5431 if (rs->starting_up)
5432 quit ();
5433 else if (rs->got_ctrlc_during_io)
5434 {
5435 if (query (_("The target is not responding to GDB commands.\n"
5436 "Stop debugging it? ")))
5437 remote_unpush_and_throw ();
5438 }
5439 /* If ^C has already been sent once, offer to disconnect. */
223ffa71 5440 else if (!target_terminal::is_ours () && rs->ctrlc_pending_p)
048094ac
PA
5441 interrupt_query ();
5442 /* All-stop protocol, and blocked waiting for stop reply. Send
5443 an interrupt request. */
223ffa71 5444 else if (!target_terminal::is_ours () && rs->waiting_for_stop_reply)
e671cd59 5445 target_interrupt ();
048094ac
PA
5446 else
5447 rs->got_ctrlc_during_io = 1;
5448 }
5449}
5450
6b8edb51
PA
5451/* The remote_target that is current while the quit handler is
5452 overridden with remote_serial_quit_handler. */
5453static remote_target *curr_quit_handler_target;
5454
5455static void
5456remote_serial_quit_handler ()
5457{
5458 curr_quit_handler_target->remote_serial_quit_handler ();
5459}
5460
78a095c3
JK
5461/* Remove any of the remote.c targets from target stack. Upper targets depend
5462 on it so remove them first. */
5463
5464static void
5465remote_unpush_target (void)
5466{
915ef8b1 5467 pop_all_targets_at_and_above (process_stratum);
78a095c3 5468}
be2a5f71 5469
048094ac
PA
5470static void
5471remote_unpush_and_throw (void)
5472{
5473 remote_unpush_target ();
5474 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
5475}
5476
f6ac5f3d
PA
5477void
5478remote_target::open_1 (const char *name, int from_tty, int extended_p)
c906108c 5479{
6b8edb51 5480 remote_target *curr_remote = get_current_remote_target ();
a6f3e723 5481
c906108c 5482 if (name == 0)
8a3fe4f8 5483 error (_("To open a remote debug connection, you need to specify what\n"
22e04375 5484 "serial device is attached to the remote system\n"
8a3fe4f8 5485 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
c906108c 5486
2d717e4f 5487 /* If we're connected to a running target, target_preopen will kill it.
78a095c3
JK
5488 Ask this question first, before target_preopen has a chance to kill
5489 anything. */
6b8edb51 5490 if (curr_remote != NULL && !have_inferiors ())
2d717e4f 5491 {
78a095c3
JK
5492 if (from_tty
5493 && !query (_("Already connected to a remote target. Disconnect? ")))
2d717e4f
DJ
5494 error (_("Still connected."));
5495 }
5496
78a095c3 5497 /* Here the possibly existing remote target gets unpushed. */
c906108c
SS
5498 target_preopen (from_tty);
5499
ad9a8f3f 5500 remote_fileio_reset ();
1dd41f16
NS
5501 reopen_exec_file ();
5502 reread_symbols ();
5503
6b8edb51
PA
5504 remote_target *remote
5505 = (extended_p ? new extended_remote_target () : new remote_target ());
5506 target_ops_up target_holder (remote);
5507
5508 remote_state *rs = remote->get_remote_state ();
5509
5510 /* See FIXME above. */
5511 if (!target_async_permitted)
5512 rs->wait_forever_enabled_p = 1;
5513
5d93a237
TT
5514 rs->remote_desc = remote_serial_open (name);
5515 if (!rs->remote_desc)
c906108c
SS
5516 perror_with_name (name);
5517
5518 if (baud_rate != -1)
5519 {
5d93a237 5520 if (serial_setbaudrate (rs->remote_desc, baud_rate))
c906108c 5521 {
9b74d5d3
KB
5522 /* The requested speed could not be set. Error out to
5523 top level after closing remote_desc. Take care to
5524 set remote_desc to NULL to avoid closing remote_desc
5525 more than once. */
5d93a237
TT
5526 serial_close (rs->remote_desc);
5527 rs->remote_desc = NULL;
c906108c
SS
5528 perror_with_name (name);
5529 }
5530 }
5531
236af5e3 5532 serial_setparity (rs->remote_desc, serial_parity);
5d93a237 5533 serial_raw (rs->remote_desc);
c906108c
SS
5534
5535 /* If there is something sitting in the buffer we might take it as a
5536 response to a command, which would be bad. */
5d93a237 5537 serial_flush_input (rs->remote_desc);
c906108c
SS
5538
5539 if (from_tty)
5540 {
5541 puts_filtered ("Remote debugging using ");
5542 puts_filtered (name);
5543 puts_filtered ("\n");
5544 }
d9f719f1 5545
6b8edb51 5546 /* Switch to using the remote target now. */
dea57a62 5547 push_target (std::move (target_holder));
c906108c 5548
74531fed 5549 /* Register extra event sources in the event loop. */
6b8edb51 5550 rs->remote_async_inferior_event_token
74531fed 5551 = create_async_event_handler (remote_async_inferior_event_handler,
6b8edb51
PA
5552 remote);
5553 rs->notif_state = remote_notif_state_allocate (remote);
74531fed 5554
be2a5f71
DJ
5555 /* Reset the target state; these things will be queried either by
5556 remote_query_supported or as they are needed. */
ca4f7f8b 5557 reset_all_packet_configs_support ();
74531fed 5558 rs->cached_wait_status = 0;
be2a5f71 5559 rs->explicit_packet_size = 0;
a6f3e723 5560 rs->noack_mode = 0;
82f73884 5561 rs->extended = extended_p;
e24a49d8 5562 rs->waiting_for_stop_reply = 0;
3a29589a 5563 rs->ctrlc_pending_p = 0;
048094ac 5564 rs->got_ctrlc_during_io = 0;
802188a7 5565
47f8a51d
TT
5566 rs->general_thread = not_sent_ptid;
5567 rs->continue_thread = not_sent_ptid;
262e1174 5568 rs->remote_traceframe_number = -1;
c906108c 5569
3a00c802
PA
5570 rs->last_resume_exec_dir = EXEC_FORWARD;
5571
9d1f7ab2 5572 /* Probe for ability to use "ThreadInfo" query, as required. */
b80fafe3
TT
5573 rs->use_threadinfo_query = 1;
5574 rs->use_threadextra_query = 1;
9d1f7ab2 5575
dd194f6b 5576 rs->readahead_cache.invalidate ();
80152258 5577
c6ebd6cf 5578 if (target_async_permitted)
92d1e331 5579 {
92d1e331
DJ
5580 /* FIXME: cagney/1999-09-23: During the initial connection it is
5581 assumed that the target is already ready and able to respond to
0df8b418 5582 requests. Unfortunately remote_start_remote() eventually calls
92d1e331 5583 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
0df8b418 5584 around this. Eventually a mechanism that allows
92d1e331 5585 wait_for_inferior() to expect/get timeouts will be
23860348 5586 implemented. */
6b8edb51 5587 rs->wait_forever_enabled_p = 0;
92d1e331
DJ
5588 }
5589
23860348 5590 /* First delete any symbols previously loaded from shared libraries. */
f78f6cf1 5591 no_shared_libraries (NULL, 0);
f78f6cf1 5592
36918e70 5593 /* Start the remote connection. If error() or QUIT, discard this
165b8e33
AC
5594 target (we'd otherwise be in an inconsistent state) and then
5595 propogate the error on up the exception chain. This ensures that
5596 the caller doesn't stumble along blindly assuming that the
5597 function succeeded. The CLI doesn't have this problem but other
5598 UI's, such as MI do.
36918e70
AC
5599
5600 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
5601 this function should return an error indication letting the
ce2826aa 5602 caller restore the previous state. Unfortunately the command
36918e70
AC
5603 ``target remote'' is directly wired to this function making that
5604 impossible. On a positive note, the CLI side of this problem has
5605 been fixed - the function set_cmd_context() makes it possible for
5606 all the ``target ....'' commands to share a common callback
5607 function. See cli-dump.c. */
109c3e39 5608 {
2d717e4f 5609
a70b8144 5610 try
04bd08de 5611 {
6b8edb51 5612 remote->start_remote (from_tty, extended_p);
04bd08de 5613 }
230d2906 5614 catch (const gdb_exception &ex)
109c3e39 5615 {
c8d104ad
PA
5616 /* Pop the partially set up target - unless something else did
5617 already before throwing the exception. */
6b8edb51 5618 if (ex.error != TARGET_CLOSE_ERROR)
78a095c3 5619 remote_unpush_target ();
eedc3f4f 5620 throw;
109c3e39
AC
5621 }
5622 }
c906108c 5623
6b8edb51 5624 remote_btrace_reset (rs);
f4abbc16 5625
c6ebd6cf 5626 if (target_async_permitted)
6b8edb51 5627 rs->wait_forever_enabled_p = 1;
43ff13b4
JM
5628}
5629
de0d863e
DB
5630/* Detach the specified process. */
5631
6b8edb51
PA
5632void
5633remote_target::remote_detach_pid (int pid)
de0d863e
DB
5634{
5635 struct remote_state *rs = get_remote_state ();
5636
4c7333b3
PA
5637 /* This should not be necessary, but the handling for D;PID in
5638 GDBserver versions prior to 8.2 incorrectly assumes that the
5639 selected process points to the same process we're detaching,
5640 leading to misbehavior (and possibly GDBserver crashing) when it
5641 does not. Since it's easy and cheap, work around it by forcing
5642 GDBserver to select GDB's current process. */
5643 set_general_process ();
5644
de0d863e 5645 if (remote_multi_process_p (rs))
8d64371b 5646 xsnprintf (rs->buf.data (), get_remote_packet_size (), "D;%x", pid);
de0d863e 5647 else
8d64371b 5648 strcpy (rs->buf.data (), "D");
de0d863e
DB
5649
5650 putpkt (rs->buf);
8d64371b 5651 getpkt (&rs->buf, 0);
de0d863e
DB
5652
5653 if (rs->buf[0] == 'O' && rs->buf[1] == 'K')
5654 ;
5655 else if (rs->buf[0] == '\0')
5656 error (_("Remote doesn't know how to detach"));
5657 else
5658 error (_("Can't detach process."));
5659}
5660
5661/* This detaches a program to which we previously attached, using
5662 inferior_ptid to identify the process. After this is done, GDB
5663 can be used to debug some other program. We better not have left
5664 any breakpoints in the target program or it'll die when it hits
5665 one. */
c906108c 5666
6b8edb51 5667void
00431a78 5668remote_target::remote_detach_1 (inferior *inf, int from_tty)
c906108c 5669{
e99b03dc 5670 int pid = inferior_ptid.pid ();
d01949b6 5671 struct remote_state *rs = get_remote_state ();
de0d863e 5672 int is_fork_parent;
c906108c 5673
2d717e4f
DJ
5674 if (!target_has_execution)
5675 error (_("No process to detach from."));
5676
0f48b757 5677 target_announce_detach (from_tty);
7cee1e54 5678
c906108c 5679 /* Tell the remote target to detach. */
de0d863e 5680 remote_detach_pid (pid);
82f73884 5681
8020350c
DB
5682 /* Exit only if this is the only active inferior. */
5683 if (from_tty && !rs->extended && number_of_live_inferiors () == 1)
7cee1e54 5684 puts_filtered (_("Ending remote debugging.\n"));
82f73884 5685
00431a78
PA
5686 struct thread_info *tp = find_thread_ptid (inferior_ptid);
5687
de0d863e
DB
5688 /* Check to see if we are detaching a fork parent. Note that if we
5689 are detaching a fork child, tp == NULL. */
5690 is_fork_parent = (tp != NULL
5691 && tp->pending_follow.kind == TARGET_WAITKIND_FORKED);
5692
5693 /* If doing detach-on-fork, we don't mourn, because that will delete
5694 breakpoints that should be available for the followed inferior. */
5695 if (!is_fork_parent)
f67c0c91 5696 {
249b5733
PA
5697 /* Save the pid as a string before mourning, since that will
5698 unpush the remote target, and we need the string after. */
f2907e49 5699 std::string infpid = target_pid_to_str (ptid_t (pid));
f67c0c91
SDJ
5700
5701 target_mourn_inferior (inferior_ptid);
5702 if (print_inferior_events)
5703 printf_unfiltered (_("[Inferior %d (%s) detached]\n"),
5704 inf->num, infpid.c_str ());
5705 }
de0d863e
DB
5706 else
5707 {
5708 inferior_ptid = null_ptid;
00431a78 5709 detach_inferior (current_inferior ());
de0d863e 5710 }
2d717e4f
DJ
5711}
5712
f6ac5f3d
PA
5713void
5714remote_target::detach (inferior *inf, int from_tty)
2d717e4f 5715{
00431a78 5716 remote_detach_1 (inf, from_tty);
2d717e4f
DJ
5717}
5718
f6ac5f3d
PA
5719void
5720extended_remote_target::detach (inferior *inf, int from_tty)
2d717e4f 5721{
00431a78 5722 remote_detach_1 (inf, from_tty);
de0d863e
DB
5723}
5724
5725/* Target follow-fork function for remote targets. On entry, and
5726 at return, the current inferior is the fork parent.
5727
5728 Note that although this is currently only used for extended-remote,
5729 it is named remote_follow_fork in anticipation of using it for the
5730 remote target as well. */
5731
f6ac5f3d
PA
5732int
5733remote_target::follow_fork (int follow_child, int detach_fork)
de0d863e
DB
5734{
5735 struct remote_state *rs = get_remote_state ();
c269dbdb 5736 enum target_waitkind kind = inferior_thread ()->pending_follow.kind;
de0d863e 5737
c269dbdb
DB
5738 if ((kind == TARGET_WAITKIND_FORKED && remote_fork_event_p (rs))
5739 || (kind == TARGET_WAITKIND_VFORKED && remote_vfork_event_p (rs)))
de0d863e
DB
5740 {
5741 /* When following the parent and detaching the child, we detach
5742 the child here. For the case of following the child and
5743 detaching the parent, the detach is done in the target-
5744 independent follow fork code in infrun.c. We can't use
5745 target_detach when detaching an unfollowed child because
5746 the client side doesn't know anything about the child. */
5747 if (detach_fork && !follow_child)
5748 {
5749 /* Detach the fork child. */
5750 ptid_t child_ptid;
5751 pid_t child_pid;
5752
5753 child_ptid = inferior_thread ()->pending_follow.value.related_pid;
e99b03dc 5754 child_pid = child_ptid.pid ();
de0d863e
DB
5755
5756 remote_detach_pid (child_pid);
de0d863e
DB
5757 }
5758 }
5759 return 0;
c906108c
SS
5760}
5761
94585166
DB
5762/* Target follow-exec function for remote targets. Save EXECD_PATHNAME
5763 in the program space of the new inferior. On entry and at return the
5764 current inferior is the exec'ing inferior. INF is the new exec'd
5765 inferior, which may be the same as the exec'ing inferior unless
5766 follow-exec-mode is "new". */
5767
f6ac5f3d 5768void
4ca51187 5769remote_target::follow_exec (struct inferior *inf, const char *execd_pathname)
94585166
DB
5770{
5771 /* We know that this is a target file name, so if it has the "target:"
5772 prefix we strip it off before saving it in the program space. */
5773 if (is_target_filename (execd_pathname))
5774 execd_pathname += strlen (TARGET_SYSROOT_PREFIX);
5775
5776 set_pspace_remote_exec_file (inf->pspace, execd_pathname);
5777}
5778
6ad8ae5c
DJ
5779/* Same as remote_detach, but don't send the "D" packet; just disconnect. */
5780
f6ac5f3d
PA
5781void
5782remote_target::disconnect (const char *args, int from_tty)
43ff13b4 5783{
43ff13b4 5784 if (args)
2d717e4f 5785 error (_("Argument given to \"disconnect\" when remotely debugging."));
43ff13b4 5786
8020350c
DB
5787 /* Make sure we unpush even the extended remote targets. Calling
5788 target_mourn_inferior won't unpush, and remote_mourn won't
5789 unpush if there is more than one inferior left. */
f6ac5f3d 5790 unpush_target (this);
8020350c 5791 generic_mourn_inferior ();
2d717e4f 5792
43ff13b4
JM
5793 if (from_tty)
5794 puts_filtered ("Ending remote debugging.\n");
5795}
5796
2d717e4f
DJ
5797/* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
5798 be chatty about it. */
5799
f6ac5f3d
PA
5800void
5801extended_remote_target::attach (const char *args, int from_tty)
2d717e4f
DJ
5802{
5803 struct remote_state *rs = get_remote_state ();
be86555c 5804 int pid;
96ef3384 5805 char *wait_status = NULL;
2d717e4f 5806
74164c56 5807 pid = parse_pid_to_attach (args);
2d717e4f 5808
74164c56
JK
5809 /* Remote PID can be freely equal to getpid, do not check it here the same
5810 way as in other targets. */
2d717e4f 5811
4082afcc 5812 if (packet_support (PACKET_vAttach) == PACKET_DISABLE)
2d717e4f
DJ
5813 error (_("This target does not support attaching to a process"));
5814
7cee1e54
PA
5815 if (from_tty)
5816 {
d9fa87f4 5817 const char *exec_file = get_exec_file (0);
7cee1e54
PA
5818
5819 if (exec_file)
5820 printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file,
a068643d 5821 target_pid_to_str (ptid_t (pid)).c_str ());
7cee1e54
PA
5822 else
5823 printf_unfiltered (_("Attaching to %s\n"),
a068643d 5824 target_pid_to_str (ptid_t (pid)).c_str ());
7cee1e54
PA
5825 }
5826
8d64371b 5827 xsnprintf (rs->buf.data (), get_remote_packet_size (), "vAttach;%x", pid);
2d717e4f 5828 putpkt (rs->buf);
8d64371b 5829 getpkt (&rs->buf, 0);
2d717e4f 5830
4082afcc
PA
5831 switch (packet_ok (rs->buf,
5832 &remote_protocol_packets[PACKET_vAttach]))
2d717e4f 5833 {
4082afcc 5834 case PACKET_OK:
6efcd9a8 5835 if (!target_is_non_stop_p ())
74531fed
PA
5836 {
5837 /* Save the reply for later. */
8d64371b
TT
5838 wait_status = (char *) alloca (strlen (rs->buf.data ()) + 1);
5839 strcpy (wait_status, rs->buf.data ());
74531fed 5840 }
8d64371b 5841 else if (strcmp (rs->buf.data (), "OK") != 0)
74531fed 5842 error (_("Attaching to %s failed with: %s"),
a068643d 5843 target_pid_to_str (ptid_t (pid)).c_str (),
8d64371b 5844 rs->buf.data ());
4082afcc
PA
5845 break;
5846 case PACKET_UNKNOWN:
5847 error (_("This target does not support attaching to a process"));
5848 default:
50fa3001
SDJ
5849 error (_("Attaching to %s failed"),
5850 target_pid_to_str (ptid_t (pid)).c_str ());
2d717e4f 5851 }
2d717e4f 5852
9ab8741a 5853 set_current_inferior (remote_add_inferior (false, pid, 1, 0));
bad34192 5854
f2907e49 5855 inferior_ptid = ptid_t (pid);
79d7f229 5856
6efcd9a8 5857 if (target_is_non_stop_p ())
bad34192
PA
5858 {
5859 struct thread_info *thread;
79d7f229 5860
bad34192 5861 /* Get list of threads. */
f6ac5f3d 5862 update_thread_list ();
82f73884 5863
00431a78 5864 thread = first_thread_of_inferior (current_inferior ());
bad34192
PA
5865 if (thread)
5866 inferior_ptid = thread->ptid;
5867 else
f2907e49 5868 inferior_ptid = ptid_t (pid);
bad34192
PA
5869
5870 /* Invalidate our notion of the remote current thread. */
47f8a51d 5871 record_currthread (rs, minus_one_ptid);
bad34192 5872 }
74531fed 5873 else
bad34192
PA
5874 {
5875 /* Now, if we have thread information, update inferior_ptid. */
5876 inferior_ptid = remote_current_thread (inferior_ptid);
5877
5878 /* Add the main thread to the thread list. */
00aecdcf
PA
5879 thread_info *thr = add_thread_silent (inferior_ptid);
5880 /* Don't consider the thread stopped until we've processed the
5881 saved stop reply. */
5882 set_executing (thr->ptid, true);
bad34192 5883 }
c0a2216e 5884
96ef3384
UW
5885 /* Next, if the target can specify a description, read it. We do
5886 this before anything involving memory or registers. */
5887 target_find_description ();
5888
6efcd9a8 5889 if (!target_is_non_stop_p ())
74531fed
PA
5890 {
5891 /* Use the previously fetched status. */
5892 gdb_assert (wait_status != NULL);
5893
5894 if (target_can_async_p ())
5895 {
722247f1 5896 struct notif_event *reply
6b8edb51 5897 = remote_notif_parse (this, &notif_client_stop, wait_status);
74531fed 5898
722247f1 5899 push_stop_reply ((struct stop_reply *) reply);
74531fed 5900
6a3753b3 5901 target_async (1);
74531fed
PA
5902 }
5903 else
5904 {
5905 gdb_assert (wait_status != NULL);
8d64371b 5906 strcpy (rs->buf.data (), wait_status);
74531fed
PA
5907 rs->cached_wait_status = 1;
5908 }
5909 }
5910 else
5911 gdb_assert (wait_status == NULL);
2d717e4f
DJ
5912}
5913
b9c1d481
AS
5914/* Implementation of the to_post_attach method. */
5915
f6ac5f3d
PA
5916void
5917extended_remote_target::post_attach (int pid)
b9c1d481 5918{
6efcd9a8
PA
5919 /* Get text, data & bss offsets. */
5920 get_offsets ();
5921
b9c1d481
AS
5922 /* In certain cases GDB might not have had the chance to start
5923 symbol lookup up until now. This could happen if the debugged
5924 binary is not using shared libraries, the vsyscall page is not
5925 present (on Linux) and the binary itself hadn't changed since the
5926 debugging process was started. */
5927 if (symfile_objfile != NULL)
5928 remote_check_symbols();
5929}
5930
c906108c 5931\f
506fb367
DJ
5932/* Check for the availability of vCont. This function should also check
5933 the response. */
c906108c 5934
6b8edb51
PA
5935void
5936remote_target::remote_vcont_probe ()
c906108c 5937{
6b8edb51 5938 remote_state *rs = get_remote_state ();
2e9f7625 5939 char *buf;
6d820c5c 5940
8d64371b 5941 strcpy (rs->buf.data (), "vCont?");
2e9f7625 5942 putpkt (rs->buf);
8d64371b
TT
5943 getpkt (&rs->buf, 0);
5944 buf = rs->buf.data ();
c906108c 5945
506fb367 5946 /* Make sure that the features we assume are supported. */
61012eef 5947 if (startswith (buf, "vCont"))
506fb367
DJ
5948 {
5949 char *p = &buf[5];
750ce8d1 5950 int support_c, support_C;
506fb367 5951
750ce8d1
YQ
5952 rs->supports_vCont.s = 0;
5953 rs->supports_vCont.S = 0;
506fb367
DJ
5954 support_c = 0;
5955 support_C = 0;
d458bd84 5956 rs->supports_vCont.t = 0;
c1e36e3e 5957 rs->supports_vCont.r = 0;
506fb367
DJ
5958 while (p && *p == ';')
5959 {
5960 p++;
5961 if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 5962 rs->supports_vCont.s = 1;
506fb367 5963 else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 5964 rs->supports_vCont.S = 1;
506fb367
DJ
5965 else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
5966 support_c = 1;
5967 else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
5968 support_C = 1;
74531fed 5969 else if (*p == 't' && (*(p + 1) == ';' || *(p + 1) == 0))
d458bd84 5970 rs->supports_vCont.t = 1;
c1e36e3e
PA
5971 else if (*p == 'r' && (*(p + 1) == ';' || *(p + 1) == 0))
5972 rs->supports_vCont.r = 1;
506fb367
DJ
5973
5974 p = strchr (p, ';');
5975 }
c906108c 5976
750ce8d1
YQ
5977 /* If c, and C are not all supported, we can't use vCont. Clearing
5978 BUF will make packet_ok disable the packet. */
5979 if (!support_c || !support_C)
506fb367
DJ
5980 buf[0] = 0;
5981 }
c906108c 5982
8d64371b 5983 packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCont]);
506fb367 5984}
c906108c 5985
0d8f58ca
PA
5986/* Helper function for building "vCont" resumptions. Write a
5987 resumption to P. ENDP points to one-passed-the-end of the buffer
5988 we're allowed to write to. Returns BUF+CHARACTERS_WRITTEN. The
5989 thread to be resumed is PTID; STEP and SIGGNAL indicate whether the
5990 resumed thread should be single-stepped and/or signalled. If PTID
5991 equals minus_one_ptid, then all threads are resumed; if PTID
5992 represents a process, then all threads of the process are resumed;
5993 the thread to be stepped and/or signalled is given in the global
5994 INFERIOR_PTID. */
5995
6b8edb51
PA
5996char *
5997remote_target::append_resumption (char *p, char *endp,
5998 ptid_t ptid, int step, gdb_signal siggnal)
0d8f58ca
PA
5999{
6000 struct remote_state *rs = get_remote_state ();
6001
a493e3e2 6002 if (step && siggnal != GDB_SIGNAL_0)
0d8f58ca 6003 p += xsnprintf (p, endp - p, ";S%02x", siggnal);
c1e36e3e
PA
6004 else if (step
6005 /* GDB is willing to range step. */
6006 && use_range_stepping
6007 /* Target supports range stepping. */
6008 && rs->supports_vCont.r
6009 /* We don't currently support range stepping multiple
6010 threads with a wildcard (though the protocol allows it,
6011 so stubs shouldn't make an active effort to forbid
6012 it). */
0e998d96 6013 && !(remote_multi_process_p (rs) && ptid.is_pid ()))
c1e36e3e
PA
6014 {
6015 struct thread_info *tp;
6016
d7e15655 6017 if (ptid == minus_one_ptid)
c1e36e3e
PA
6018 {
6019 /* If we don't know about the target thread's tid, then
6020 we're resuming magic_null_ptid (see caller). */
6021 tp = find_thread_ptid (magic_null_ptid);
6022 }
6023 else
6024 tp = find_thread_ptid (ptid);
6025 gdb_assert (tp != NULL);
6026
6027 if (tp->control.may_range_step)
6028 {
6029 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
6030
6031 p += xsnprintf (p, endp - p, ";r%s,%s",
6032 phex_nz (tp->control.step_range_start,
6033 addr_size),
6034 phex_nz (tp->control.step_range_end,
6035 addr_size));
6036 }
6037 else
6038 p += xsnprintf (p, endp - p, ";s");
6039 }
0d8f58ca
PA
6040 else if (step)
6041 p += xsnprintf (p, endp - p, ";s");
a493e3e2 6042 else if (siggnal != GDB_SIGNAL_0)
0d8f58ca
PA
6043 p += xsnprintf (p, endp - p, ";C%02x", siggnal);
6044 else
6045 p += xsnprintf (p, endp - p, ";c");
6046
0e998d96 6047 if (remote_multi_process_p (rs) && ptid.is_pid ())
0d8f58ca
PA
6048 {
6049 ptid_t nptid;
6050
6051 /* All (-1) threads of process. */
e99b03dc 6052 nptid = ptid_t (ptid.pid (), -1, 0);
0d8f58ca
PA
6053
6054 p += xsnprintf (p, endp - p, ":");
6055 p = write_ptid (p, endp, nptid);
6056 }
d7e15655 6057 else if (ptid != minus_one_ptid)
0d8f58ca
PA
6058 {
6059 p += xsnprintf (p, endp - p, ":");
6060 p = write_ptid (p, endp, ptid);
6061 }
6062
6063 return p;
6064}
6065
799a2abe
PA
6066/* Clear the thread's private info on resume. */
6067
6068static void
6069resume_clear_thread_private_info (struct thread_info *thread)
6070{
6071 if (thread->priv != NULL)
6072 {
7aabaf9d
SM
6073 remote_thread_info *priv = get_remote_thread_info (thread);
6074
6075 priv->stop_reason = TARGET_STOPPED_BY_NO_REASON;
6076 priv->watch_data_address = 0;
799a2abe
PA
6077 }
6078}
6079
e5ef252a
PA
6080/* Append a vCont continue-with-signal action for threads that have a
6081 non-zero stop signal. */
6082
6b8edb51
PA
6083char *
6084remote_target::append_pending_thread_resumptions (char *p, char *endp,
6085 ptid_t ptid)
e5ef252a 6086{
08036331
PA
6087 for (thread_info *thread : all_non_exited_threads (ptid))
6088 if (inferior_ptid != thread->ptid
70509625 6089 && thread->suspend.stop_signal != GDB_SIGNAL_0)
e5ef252a
PA
6090 {
6091 p = append_resumption (p, endp, thread->ptid,
6092 0, thread->suspend.stop_signal);
6093 thread->suspend.stop_signal = GDB_SIGNAL_0;
799a2abe 6094 resume_clear_thread_private_info (thread);
e5ef252a
PA
6095 }
6096
6097 return p;
6098}
6099
7b68ffbb
PA
6100/* Set the target running, using the packets that use Hc
6101 (c/s/C/S). */
6102
6b8edb51
PA
6103void
6104remote_target::remote_resume_with_hc (ptid_t ptid, int step,
6105 gdb_signal siggnal)
7b68ffbb
PA
6106{
6107 struct remote_state *rs = get_remote_state ();
7b68ffbb
PA
6108 char *buf;
6109
6110 rs->last_sent_signal = siggnal;
6111 rs->last_sent_step = step;
6112
6113 /* The c/s/C/S resume packets use Hc, so set the continue
6114 thread. */
d7e15655 6115 if (ptid == minus_one_ptid)
7b68ffbb
PA
6116 set_continue_thread (any_thread_ptid);
6117 else
6118 set_continue_thread (ptid);
6119
08036331 6120 for (thread_info *thread : all_non_exited_threads ())
7b68ffbb
PA
6121 resume_clear_thread_private_info (thread);
6122
8d64371b 6123 buf = rs->buf.data ();
6b8edb51 6124 if (::execution_direction == EXEC_REVERSE)
7b68ffbb
PA
6125 {
6126 /* We don't pass signals to the target in reverse exec mode. */
6127 if (info_verbose && siggnal != GDB_SIGNAL_0)
6128 warning (_(" - Can't pass signal %d to target in reverse: ignored."),
6129 siggnal);
6130
6131 if (step && packet_support (PACKET_bs) == PACKET_DISABLE)
6132 error (_("Remote reverse-step not supported."));
6133 if (!step && packet_support (PACKET_bc) == PACKET_DISABLE)
6134 error (_("Remote reverse-continue not supported."));
6135
6136 strcpy (buf, step ? "bs" : "bc");
6137 }
6138 else if (siggnal != GDB_SIGNAL_0)
6139 {
6140 buf[0] = step ? 'S' : 'C';
6141 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
6142 buf[2] = tohex (((int) siggnal) & 0xf);
6143 buf[3] = '\0';
6144 }
6145 else
6146 strcpy (buf, step ? "s" : "c");
6147
6148 putpkt (buf);
6149}
6150
506fb367
DJ
6151/* Resume the remote inferior by using a "vCont" packet. The thread
6152 to be resumed is PTID; STEP and SIGGNAL indicate whether the
79d7f229
PA
6153 resumed thread should be single-stepped and/or signalled. If PTID
6154 equals minus_one_ptid, then all threads are resumed; the thread to
6155 be stepped and/or signalled is given in the global INFERIOR_PTID.
6156 This function returns non-zero iff it resumes the inferior.
44eaed12 6157
7b68ffbb
PA
6158 This function issues a strict subset of all possible vCont commands
6159 at the moment. */
44eaed12 6160
6b8edb51
PA
6161int
6162remote_target::remote_resume_with_vcont (ptid_t ptid, int step,
6163 enum gdb_signal siggnal)
506fb367
DJ
6164{
6165 struct remote_state *rs = get_remote_state ();
82f73884
PA
6166 char *p;
6167 char *endp;
44eaed12 6168
7b68ffbb 6169 /* No reverse execution actions defined for vCont. */
6b8edb51 6170 if (::execution_direction == EXEC_REVERSE)
7b68ffbb
PA
6171 return 0;
6172
4082afcc 6173 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6b8edb51 6174 remote_vcont_probe ();
44eaed12 6175
4082afcc 6176 if (packet_support (PACKET_vCont) == PACKET_DISABLE)
6d820c5c 6177 return 0;
44eaed12 6178
8d64371b
TT
6179 p = rs->buf.data ();
6180 endp = p + get_remote_packet_size ();
82f73884 6181
506fb367
DJ
6182 /* If we could generate a wider range of packets, we'd have to worry
6183 about overflowing BUF. Should there be a generic
6184 "multi-part-packet" packet? */
6185
0d8f58ca
PA
6186 p += xsnprintf (p, endp - p, "vCont");
6187
d7e15655 6188 if (ptid == magic_null_ptid)
c906108c 6189 {
79d7f229
PA
6190 /* MAGIC_NULL_PTID means that we don't have any active threads,
6191 so we don't have any TID numbers the inferior will
6192 understand. Make sure to only send forms that do not specify
6193 a TID. */
a9cbf802 6194 append_resumption (p, endp, minus_one_ptid, step, siggnal);
506fb367 6195 }
d7e15655 6196 else if (ptid == minus_one_ptid || ptid.is_pid ())
506fb367 6197 {
0d8f58ca
PA
6198 /* Resume all threads (of all processes, or of a single
6199 process), with preference for INFERIOR_PTID. This assumes
6200 inferior_ptid belongs to the set of all threads we are about
6201 to resume. */
a493e3e2 6202 if (step || siggnal != GDB_SIGNAL_0)
82f73884 6203 {
0d8f58ca
PA
6204 /* Step inferior_ptid, with or without signal. */
6205 p = append_resumption (p, endp, inferior_ptid, step, siggnal);
82f73884 6206 }
0d8f58ca 6207
e5ef252a
PA
6208 /* Also pass down any pending signaled resumption for other
6209 threads not the current. */
6210 p = append_pending_thread_resumptions (p, endp, ptid);
6211
0d8f58ca 6212 /* And continue others without a signal. */
a493e3e2 6213 append_resumption (p, endp, ptid, /*step=*/ 0, GDB_SIGNAL_0);
c906108c
SS
6214 }
6215 else
506fb367
DJ
6216 {
6217 /* Scheduler locking; resume only PTID. */
a9cbf802 6218 append_resumption (p, endp, ptid, step, siggnal);
506fb367 6219 }
c906108c 6220
8d64371b 6221 gdb_assert (strlen (rs->buf.data ()) < get_remote_packet_size ());
82f73884 6222 putpkt (rs->buf);
506fb367 6223
6efcd9a8 6224 if (target_is_non_stop_p ())
74531fed
PA
6225 {
6226 /* In non-stop, the stub replies to vCont with "OK". The stop
6227 reply will be reported asynchronously by means of a `%Stop'
6228 notification. */
8d64371b
TT
6229 getpkt (&rs->buf, 0);
6230 if (strcmp (rs->buf.data (), "OK") != 0)
6231 error (_("Unexpected vCont reply in non-stop mode: %s"),
6232 rs->buf.data ());
74531fed
PA
6233 }
6234
506fb367 6235 return 1;
c906108c 6236}
43ff13b4 6237
506fb367
DJ
6238/* Tell the remote machine to resume. */
6239
f6ac5f3d
PA
6240void
6241remote_target::resume (ptid_t ptid, int step, enum gdb_signal siggnal)
43ff13b4 6242{
d01949b6 6243 struct remote_state *rs = get_remote_state ();
43ff13b4 6244
85ad3aaf
PA
6245 /* When connected in non-stop mode, the core resumes threads
6246 individually. Resuming remote threads directly in target_resume
6247 would thus result in sending one packet per thread. Instead, to
6248 minimize roundtrip latency, here we just store the resume
6249 request; the actual remote resumption will be done in
6250 target_commit_resume / remote_commit_resume, where we'll be able
6251 to do vCont action coalescing. */
f6ac5f3d 6252 if (target_is_non_stop_p () && ::execution_direction != EXEC_REVERSE)
85ad3aaf 6253 {
7aabaf9d 6254 remote_thread_info *remote_thr;
85ad3aaf 6255
d7e15655 6256 if (minus_one_ptid == ptid || ptid.is_pid ())
7aabaf9d 6257 remote_thr = get_remote_thread_info (inferior_ptid);
85ad3aaf 6258 else
7aabaf9d
SM
6259 remote_thr = get_remote_thread_info (ptid);
6260
85ad3aaf
PA
6261 remote_thr->last_resume_step = step;
6262 remote_thr->last_resume_sig = siggnal;
6263 return;
6264 }
6265
722247f1
YQ
6266 /* In all-stop, we can't mark REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN
6267 (explained in remote-notif.c:handle_notification) so
6268 remote_notif_process is not called. We need find a place where
6269 it is safe to start a 'vNotif' sequence. It is good to do it
6270 before resuming inferior, because inferior was stopped and no RSP
6271 traffic at that moment. */
6efcd9a8 6272 if (!target_is_non_stop_p ())
5965e028 6273 remote_notif_process (rs->notif_state, &notif_client_stop);
722247f1 6274
f6ac5f3d 6275 rs->last_resume_exec_dir = ::execution_direction;
3a00c802 6276
7b68ffbb
PA
6277 /* Prefer vCont, and fallback to s/c/S/C, which use Hc. */
6278 if (!remote_resume_with_vcont (ptid, step, siggnal))
6b8edb51 6279 remote_resume_with_hc (ptid, step, siggnal);
43ff13b4 6280
2acceee2 6281 /* We are about to start executing the inferior, let's register it
0df8b418
MS
6282 with the event loop. NOTE: this is the one place where all the
6283 execution commands end up. We could alternatively do this in each
23860348 6284 of the execution commands in infcmd.c. */
2acceee2
JM
6285 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
6286 into infcmd.c in order to allow inferior function calls to work
23860348 6287 NOT asynchronously. */
362646f5 6288 if (target_can_async_p ())
6a3753b3 6289 target_async (1);
e24a49d8
PA
6290
6291 /* We've just told the target to resume. The remote server will
6292 wait for the inferior to stop, and then send a stop reply. In
6293 the mean time, we can't start another command/query ourselves
74531fed
PA
6294 because the stub wouldn't be ready to process it. This applies
6295 only to the base all-stop protocol, however. In non-stop (which
6296 only supports vCont), the stub replies with an "OK", and is
6297 immediate able to process further serial input. */
6efcd9a8 6298 if (!target_is_non_stop_p ())
74531fed 6299 rs->waiting_for_stop_reply = 1;
43ff13b4 6300}
85ad3aaf 6301
85ad3aaf
PA
6302static int is_pending_fork_parent_thread (struct thread_info *thread);
6303
6304/* Private per-inferior info for target remote processes. */
6305
089354bb 6306struct remote_inferior : public private_inferior
85ad3aaf
PA
6307{
6308 /* Whether we can send a wildcard vCont for this process. */
089354bb 6309 bool may_wildcard_vcont = true;
85ad3aaf
PA
6310};
6311
089354bb
SM
6312/* Get the remote private inferior data associated to INF. */
6313
6314static remote_inferior *
6315get_remote_inferior (inferior *inf)
6316{
6317 if (inf->priv == NULL)
6318 inf->priv.reset (new remote_inferior);
6319
6320 return static_cast<remote_inferior *> (inf->priv.get ());
6321}
6322
f5db4863 6323/* Class used to track the construction of a vCont packet in the
85ad3aaf
PA
6324 outgoing packet buffer. This is used to send multiple vCont
6325 packets if we have more actions than would fit a single packet. */
6326
f5db4863 6327class vcont_builder
85ad3aaf 6328{
f5db4863 6329public:
6b8edb51
PA
6330 explicit vcont_builder (remote_target *remote)
6331 : m_remote (remote)
f5db4863
PA
6332 {
6333 restart ();
6334 }
6335
6336 void flush ();
6337 void push_action (ptid_t ptid, bool step, gdb_signal siggnal);
6338
6339private:
6340 void restart ();
6341
6b8edb51
PA
6342 /* The remote target. */
6343 remote_target *m_remote;
6344
85ad3aaf
PA
6345 /* Pointer to the first action. P points here if no action has been
6346 appended yet. */
f5db4863 6347 char *m_first_action;
85ad3aaf
PA
6348
6349 /* Where the next action will be appended. */
f5db4863 6350 char *m_p;
85ad3aaf
PA
6351
6352 /* The end of the buffer. Must never write past this. */
f5db4863 6353 char *m_endp;
85ad3aaf
PA
6354};
6355
6356/* Prepare the outgoing buffer for a new vCont packet. */
6357
f5db4863
PA
6358void
6359vcont_builder::restart ()
85ad3aaf 6360{
6b8edb51 6361 struct remote_state *rs = m_remote->get_remote_state ();
85ad3aaf 6362
8d64371b
TT
6363 m_p = rs->buf.data ();
6364 m_endp = m_p + m_remote->get_remote_packet_size ();
f5db4863
PA
6365 m_p += xsnprintf (m_p, m_endp - m_p, "vCont");
6366 m_first_action = m_p;
85ad3aaf
PA
6367}
6368
6369/* If the vCont packet being built has any action, send it to the
6370 remote end. */
6371
f5db4863
PA
6372void
6373vcont_builder::flush ()
85ad3aaf
PA
6374{
6375 struct remote_state *rs;
6376
f5db4863 6377 if (m_p == m_first_action)
85ad3aaf
PA
6378 return;
6379
6b8edb51
PA
6380 rs = m_remote->get_remote_state ();
6381 m_remote->putpkt (rs->buf);
8d64371b
TT
6382 m_remote->getpkt (&rs->buf, 0);
6383 if (strcmp (rs->buf.data (), "OK") != 0)
6384 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf.data ());
85ad3aaf
PA
6385}
6386
6387/* The largest action is range-stepping, with its two addresses. This
6388 is more than sufficient. If a new, bigger action is created, it'll
6389 quickly trigger a failed assertion in append_resumption (and we'll
6390 just bump this). */
6391#define MAX_ACTION_SIZE 200
6392
6393/* Append a new vCont action in the outgoing packet being built. If
6394 the action doesn't fit the packet along with previous actions, push
6395 what we've got so far to the remote end and start over a new vCont
6396 packet (with the new action). */
6397
f5db4863
PA
6398void
6399vcont_builder::push_action (ptid_t ptid, bool step, gdb_signal siggnal)
85ad3aaf
PA
6400{
6401 char buf[MAX_ACTION_SIZE + 1];
85ad3aaf 6402
6b8edb51
PA
6403 char *endp = m_remote->append_resumption (buf, buf + sizeof (buf),
6404 ptid, step, siggnal);
85ad3aaf
PA
6405
6406 /* Check whether this new action would fit in the vCont packet along
6407 with previous actions. If not, send what we've got so far and
6408 start a new vCont packet. */
f5db4863
PA
6409 size_t rsize = endp - buf;
6410 if (rsize > m_endp - m_p)
85ad3aaf 6411 {
f5db4863
PA
6412 flush ();
6413 restart ();
85ad3aaf
PA
6414
6415 /* Should now fit. */
f5db4863 6416 gdb_assert (rsize <= m_endp - m_p);
85ad3aaf
PA
6417 }
6418
f5db4863
PA
6419 memcpy (m_p, buf, rsize);
6420 m_p += rsize;
6421 *m_p = '\0';
85ad3aaf
PA
6422}
6423
6424/* to_commit_resume implementation. */
6425
f6ac5f3d
PA
6426void
6427remote_target::commit_resume ()
85ad3aaf 6428{
85ad3aaf
PA
6429 int any_process_wildcard;
6430 int may_global_wildcard_vcont;
85ad3aaf
PA
6431
6432 /* If connected in all-stop mode, we'd send the remote resume
6433 request directly from remote_resume. Likewise if
6434 reverse-debugging, as there are no defined vCont actions for
6435 reverse execution. */
f6ac5f3d 6436 if (!target_is_non_stop_p () || ::execution_direction == EXEC_REVERSE)
85ad3aaf
PA
6437 return;
6438
6439 /* Try to send wildcard actions ("vCont;c" or "vCont;c:pPID.-1")
6440 instead of resuming all threads of each process individually.
6441 However, if any thread of a process must remain halted, we can't
6442 send wildcard resumes and must send one action per thread.
6443
6444 Care must be taken to not resume threads/processes the server
6445 side already told us are stopped, but the core doesn't know about
6446 yet, because the events are still in the vStopped notification
6447 queue. For example:
6448
6449 #1 => vCont s:p1.1;c
6450 #2 <= OK
6451 #3 <= %Stopped T05 p1.1
6452 #4 => vStopped
6453 #5 <= T05 p1.2
6454 #6 => vStopped
6455 #7 <= OK
6456 #8 (infrun handles the stop for p1.1 and continues stepping)
6457 #9 => vCont s:p1.1;c
6458
6459 The last vCont above would resume thread p1.2 by mistake, because
6460 the server has no idea that the event for p1.2 had not been
6461 handled yet.
6462
6463 The server side must similarly ignore resume actions for the
6464 thread that has a pending %Stopped notification (and any other
6465 threads with events pending), until GDB acks the notification
6466 with vStopped. Otherwise, e.g., the following case is
6467 mishandled:
6468
6469 #1 => g (or any other packet)
6470 #2 <= [registers]
6471 #3 <= %Stopped T05 p1.2
6472 #4 => vCont s:p1.1;c
6473 #5 <= OK
6474
6475 Above, the server must not resume thread p1.2. GDB can't know
6476 that p1.2 stopped until it acks the %Stopped notification, and
6477 since from GDB's perspective all threads should be running, it
6478 sends a "c" action.
6479
6480 Finally, special care must also be given to handling fork/vfork
6481 events. A (v)fork event actually tells us that two processes
6482 stopped -- the parent and the child. Until we follow the fork,
6483 we must not resume the child. Therefore, if we have a pending
6484 fork follow, we must not send a global wildcard resume action
6485 (vCont;c). We can still send process-wide wildcards though. */
6486
6487 /* Start by assuming a global wildcard (vCont;c) is possible. */
6488 may_global_wildcard_vcont = 1;
6489
6490 /* And assume every process is individually wildcard-able too. */
08036331 6491 for (inferior *inf : all_non_exited_inferiors ())
85ad3aaf 6492 {
089354bb
SM
6493 remote_inferior *priv = get_remote_inferior (inf);
6494
6495 priv->may_wildcard_vcont = true;
85ad3aaf
PA
6496 }
6497
6498 /* Check for any pending events (not reported or processed yet) and
6499 disable process and global wildcard resumes appropriately. */
6500 check_pending_events_prevent_wildcard_vcont (&may_global_wildcard_vcont);
6501
08036331 6502 for (thread_info *tp : all_non_exited_threads ())
85ad3aaf
PA
6503 {
6504 /* If a thread of a process is not meant to be resumed, then we
6505 can't wildcard that process. */
6506 if (!tp->executing)
6507 {
089354bb 6508 get_remote_inferior (tp->inf)->may_wildcard_vcont = false;
85ad3aaf
PA
6509
6510 /* And if we can't wildcard a process, we can't wildcard
6511 everything either. */
6512 may_global_wildcard_vcont = 0;
6513 continue;
6514 }
6515
6516 /* If a thread is the parent of an unfollowed fork, then we
6517 can't do a global wildcard, as that would resume the fork
6518 child. */
6519 if (is_pending_fork_parent_thread (tp))
6520 may_global_wildcard_vcont = 0;
6521 }
6522
6523 /* Now let's build the vCont packet(s). Actions must be appended
6524 from narrower to wider scopes (thread -> process -> global). If
6525 we end up with too many actions for a single packet vcont_builder
6526 flushes the current vCont packet to the remote side and starts a
6527 new one. */
6b8edb51 6528 struct vcont_builder vcont_builder (this);
85ad3aaf
PA
6529
6530 /* Threads first. */
08036331 6531 for (thread_info *tp : all_non_exited_threads ())
85ad3aaf 6532 {
7aabaf9d 6533 remote_thread_info *remote_thr = get_remote_thread_info (tp);
85ad3aaf
PA
6534
6535 if (!tp->executing || remote_thr->vcont_resumed)
6536 continue;
6537
6538 gdb_assert (!thread_is_in_step_over_chain (tp));
6539
6540 if (!remote_thr->last_resume_step
6541 && remote_thr->last_resume_sig == GDB_SIGNAL_0
089354bb 6542 && get_remote_inferior (tp->inf)->may_wildcard_vcont)
85ad3aaf
PA
6543 {
6544 /* We'll send a wildcard resume instead. */
6545 remote_thr->vcont_resumed = 1;
6546 continue;
6547 }
6548
f5db4863 6549 vcont_builder.push_action (tp->ptid,
85ad3aaf
PA
6550 remote_thr->last_resume_step,
6551 remote_thr->last_resume_sig);
6552 remote_thr->vcont_resumed = 1;
6553 }
6554
6555 /* Now check whether we can send any process-wide wildcard. This is
6556 to avoid sending a global wildcard in the case nothing is
6557 supposed to be resumed. */
6558 any_process_wildcard = 0;
6559
08036331 6560 for (inferior *inf : all_non_exited_inferiors ())
85ad3aaf 6561 {
089354bb 6562 if (get_remote_inferior (inf)->may_wildcard_vcont)
85ad3aaf
PA
6563 {
6564 any_process_wildcard = 1;
6565 break;
6566 }
6567 }
6568
6569 if (any_process_wildcard)
6570 {
6571 /* If all processes are wildcard-able, then send a single "c"
6572 action, otherwise, send an "all (-1) threads of process"
6573 continue action for each running process, if any. */
6574 if (may_global_wildcard_vcont)
6575 {
f5db4863
PA
6576 vcont_builder.push_action (minus_one_ptid,
6577 false, GDB_SIGNAL_0);
85ad3aaf
PA
6578 }
6579 else
6580 {
08036331 6581 for (inferior *inf : all_non_exited_inferiors ())
85ad3aaf 6582 {
089354bb 6583 if (get_remote_inferior (inf)->may_wildcard_vcont)
85ad3aaf 6584 {
f2907e49 6585 vcont_builder.push_action (ptid_t (inf->pid),
f5db4863 6586 false, GDB_SIGNAL_0);
85ad3aaf
PA
6587 }
6588 }
6589 }
6590 }
6591
f5db4863 6592 vcont_builder.flush ();
85ad3aaf
PA
6593}
6594
c906108c 6595\f
43ff13b4 6596
74531fed
PA
6597/* Non-stop version of target_stop. Uses `vCont;t' to stop a remote
6598 thread, all threads of a remote process, or all threads of all
6599 processes. */
6600
6b8edb51
PA
6601void
6602remote_target::remote_stop_ns (ptid_t ptid)
74531fed
PA
6603{
6604 struct remote_state *rs = get_remote_state ();
8d64371b
TT
6605 char *p = rs->buf.data ();
6606 char *endp = p + get_remote_packet_size ();
74531fed 6607
4082afcc 6608 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6b8edb51 6609 remote_vcont_probe ();
74531fed 6610
d458bd84 6611 if (!rs->supports_vCont.t)
74531fed
PA
6612 error (_("Remote server does not support stopping threads"));
6613
d7e15655 6614 if (ptid == minus_one_ptid
0e998d96 6615 || (!remote_multi_process_p (rs) && ptid.is_pid ()))
74531fed
PA
6616 p += xsnprintf (p, endp - p, "vCont;t");
6617 else
6618 {
6619 ptid_t nptid;
6620
74531fed
PA
6621 p += xsnprintf (p, endp - p, "vCont;t:");
6622
0e998d96 6623 if (ptid.is_pid ())
74531fed 6624 /* All (-1) threads of process. */
e99b03dc 6625 nptid = ptid_t (ptid.pid (), -1, 0);
74531fed
PA
6626 else
6627 {
6628 /* Small optimization: if we already have a stop reply for
6629 this thread, no use in telling the stub we want this
6630 stopped. */
6631 if (peek_stop_reply (ptid))
6632 return;
6633
6634 nptid = ptid;
6635 }
6636
a9cbf802 6637 write_ptid (p, endp, nptid);
74531fed
PA
6638 }
6639
6640 /* In non-stop, we get an immediate OK reply. The stop reply will
6641 come in asynchronously by notification. */
6642 putpkt (rs->buf);
8d64371b
TT
6643 getpkt (&rs->buf, 0);
6644 if (strcmp (rs->buf.data (), "OK") != 0)
a068643d 6645 error (_("Stopping %s failed: %s"), target_pid_to_str (ptid).c_str (),
8d64371b 6646 rs->buf.data ());
74531fed
PA
6647}
6648
bfedc46a
PA
6649/* All-stop version of target_interrupt. Sends a break or a ^C to
6650 interrupt the remote target. It is undefined which thread of which
6651 process reports the interrupt. */
74531fed 6652
6b8edb51
PA
6653void
6654remote_target::remote_interrupt_as ()
74531fed
PA
6655{
6656 struct remote_state *rs = get_remote_state ();
6657
3a29589a
DJ
6658 rs->ctrlc_pending_p = 1;
6659
74531fed
PA
6660 /* If the inferior is stopped already, but the core didn't know
6661 about it yet, just ignore the request. The cached wait status
6662 will be collected in remote_wait. */
6663 if (rs->cached_wait_status)
6664 return;
6665
9a7071a8
JB
6666 /* Send interrupt_sequence to remote target. */
6667 send_interrupt_sequence ();
74531fed
PA
6668}
6669
de979965
PA
6670/* Non-stop version of target_interrupt. Uses `vCtrlC' to interrupt
6671 the remote target. It is undefined which thread of which process
e42de8c7
PA
6672 reports the interrupt. Throws an error if the packet is not
6673 supported by the server. */
de979965 6674
6b8edb51
PA
6675void
6676remote_target::remote_interrupt_ns ()
de979965
PA
6677{
6678 struct remote_state *rs = get_remote_state ();
8d64371b
TT
6679 char *p = rs->buf.data ();
6680 char *endp = p + get_remote_packet_size ();
de979965
PA
6681
6682 xsnprintf (p, endp - p, "vCtrlC");
6683
6684 /* In non-stop, we get an immediate OK reply. The stop reply will
6685 come in asynchronously by notification. */
6686 putpkt (rs->buf);
8d64371b 6687 getpkt (&rs->buf, 0);
de979965
PA
6688
6689 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCtrlC]))
6690 {
6691 case PACKET_OK:
6692 break;
6693 case PACKET_UNKNOWN:
e42de8c7 6694 error (_("No support for interrupting the remote target."));
de979965 6695 case PACKET_ERROR:
8d64371b 6696 error (_("Interrupting target failed: %s"), rs->buf.data ());
de979965 6697 }
de979965
PA
6698}
6699
bfedc46a 6700/* Implement the to_stop function for the remote targets. */
74531fed 6701
f6ac5f3d
PA
6702void
6703remote_target::stop (ptid_t ptid)
c906108c 6704{
7a292a7a 6705 if (remote_debug)
0f71a2f6 6706 fprintf_unfiltered (gdb_stdlog, "remote_stop called\n");
c906108c 6707
6efcd9a8 6708 if (target_is_non_stop_p ())
74531fed 6709 remote_stop_ns (ptid);
c906108c 6710 else
bfedc46a
PA
6711 {
6712 /* We don't currently have a way to transparently pause the
6713 remote target in all-stop mode. Interrupt it instead. */
de979965 6714 remote_interrupt_as ();
bfedc46a
PA
6715 }
6716}
6717
6718/* Implement the to_interrupt function for the remote targets. */
6719
f6ac5f3d
PA
6720void
6721remote_target::interrupt ()
bfedc46a
PA
6722{
6723 if (remote_debug)
6724 fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n");
6725
e42de8c7
PA
6726 if (target_is_non_stop_p ())
6727 remote_interrupt_ns ();
bfedc46a 6728 else
e42de8c7 6729 remote_interrupt_as ();
c906108c
SS
6730}
6731
93692b58
PA
6732/* Implement the to_pass_ctrlc function for the remote targets. */
6733
f6ac5f3d
PA
6734void
6735remote_target::pass_ctrlc ()
93692b58
PA
6736{
6737 struct remote_state *rs = get_remote_state ();
6738
6739 if (remote_debug)
6740 fprintf_unfiltered (gdb_stdlog, "remote_pass_ctrlc called\n");
6741
6742 /* If we're starting up, we're not fully synced yet. Quit
6743 immediately. */
6744 if (rs->starting_up)
6745 quit ();
6746 /* If ^C has already been sent once, offer to disconnect. */
6747 else if (rs->ctrlc_pending_p)
6748 interrupt_query ();
6749 else
e671cd59 6750 target_interrupt ();
93692b58
PA
6751}
6752
c906108c
SS
6753/* Ask the user what to do when an interrupt is received. */
6754
6b8edb51
PA
6755void
6756remote_target::interrupt_query ()
c906108c 6757{
abc56d60 6758 struct remote_state *rs = get_remote_state ();
c906108c 6759
abc56d60 6760 if (rs->waiting_for_stop_reply && rs->ctrlc_pending_p)
74531fed 6761 {
abc56d60
PA
6762 if (query (_("The target is not responding to interrupt requests.\n"
6763 "Stop debugging it? ")))
74531fed 6764 {
78a095c3 6765 remote_unpush_target ();
abc56d60 6766 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
74531fed
PA
6767 }
6768 }
abc56d60
PA
6769 else
6770 {
6771 if (query (_("Interrupted while waiting for the program.\n"
6772 "Give up waiting? ")))
6773 quit ();
6774 }
c906108c
SS
6775}
6776
6426a772
JM
6777/* Enable/disable target terminal ownership. Most targets can use
6778 terminal groups to control terminal ownership. Remote targets are
6779 different in that explicit transfer of ownership to/from GDB/target
23860348 6780 is required. */
6426a772 6781
f6ac5f3d
PA
6782void
6783remote_target::terminal_inferior ()
6426a772 6784{
6426a772
JM
6785 /* NOTE: At this point we could also register our selves as the
6786 recipient of all input. Any characters typed could then be
23860348 6787 passed on down to the target. */
6426a772
JM
6788}
6789
f6ac5f3d
PA
6790void
6791remote_target::terminal_ours ()
6426a772 6792{
6426a772
JM
6793}
6794
176a6961 6795static void
05be00a8 6796remote_console_output (const char *msg)
c906108c 6797{
05be00a8 6798 const char *p;
c906108c 6799
c5aa993b 6800 for (p = msg; p[0] && p[1]; p += 2)
c906108c
SS
6801 {
6802 char tb[2];
6803 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
a744cf53 6804
c906108c
SS
6805 tb[0] = c;
6806 tb[1] = 0;
43ff13b4 6807 fputs_unfiltered (tb, gdb_stdtarg);
c906108c 6808 }
00db5b94
PA
6809 gdb_flush (gdb_stdtarg);
6810}
74531fed 6811
32603266 6812struct stop_reply : public notif_event
74531fed 6813{
32603266 6814 ~stop_reply ();
74531fed 6815
722247f1 6816 /* The identifier of the thread about this event */
74531fed
PA
6817 ptid_t ptid;
6818
340e3c99 6819 /* The remote state this event is associated with. When the remote
bcc75809
YQ
6820 connection, represented by a remote_state object, is closed,
6821 all the associated stop_reply events should be released. */
6822 struct remote_state *rs;
6823
74531fed
PA
6824 struct target_waitstatus ws;
6825
5cd63fda
PA
6826 /* The architecture associated with the expedited registers. */
6827 gdbarch *arch;
6828
15148d6a
PA
6829 /* Expedited registers. This makes remote debugging a bit more
6830 efficient for those targets that provide critical registers as
6831 part of their normal status mechanism (as another roundtrip to
6832 fetch them is avoided). */
32603266 6833 std::vector<cached_reg_t> regcache;
74531fed 6834
f7e6eed5
PA
6835 enum target_stop_reason stop_reason;
6836
74531fed
PA
6837 CORE_ADDR watch_data_address;
6838
dc146f7c 6839 int core;
32603266 6840};
c906108c 6841
221e1a37
PA
6842/* Return the length of the stop reply queue. */
6843
6b8edb51
PA
6844int
6845remote_target::stop_reply_queue_length ()
221e1a37 6846{
6b8edb51 6847 remote_state *rs = get_remote_state ();
953edf2b 6848 return rs->stop_reply_queue.size ();
221e1a37
PA
6849}
6850
cb8c24b6 6851static void
6b8edb51 6852remote_notif_stop_parse (remote_target *remote,
bb277751 6853 struct notif_client *self, const char *buf,
722247f1
YQ
6854 struct notif_event *event)
6855{
6b8edb51 6856 remote->remote_parse_stop_reply (buf, (struct stop_reply *) event);
722247f1
YQ
6857}
6858
6859static void
6b8edb51 6860remote_notif_stop_ack (remote_target *remote,
bb277751 6861 struct notif_client *self, const char *buf,
722247f1
YQ
6862 struct notif_event *event)
6863{
6864 struct stop_reply *stop_reply = (struct stop_reply *) event;
6865
6866 /* acknowledge */
6b8edb51 6867 putpkt (remote, self->ack_command);
722247f1
YQ
6868
6869 if (stop_reply->ws.kind == TARGET_WAITKIND_IGNORE)
6b8edb51 6870 {
722247f1
YQ
6871 /* We got an unknown stop reply. */
6872 error (_("Unknown stop reply"));
6b8edb51 6873 }
722247f1 6874
6b8edb51 6875 remote->push_stop_reply (stop_reply);
722247f1
YQ
6876}
6877
6878static int
6b8edb51
PA
6879remote_notif_stop_can_get_pending_events (remote_target *remote,
6880 struct notif_client *self)
722247f1
YQ
6881{
6882 /* We can't get pending events in remote_notif_process for
6883 notification stop, and we have to do this in remote_wait_ns
6884 instead. If we fetch all queued events from stub, remote stub
6885 may exit and we have no chance to process them back in
6886 remote_wait_ns. */
6b8edb51
PA
6887 remote_state *rs = remote->get_remote_state ();
6888 mark_async_event_handler (rs->remote_async_inferior_event_token);
722247f1
YQ
6889 return 0;
6890}
6891
32603266 6892stop_reply::~stop_reply ()
722247f1 6893{
32603266
TT
6894 for (cached_reg_t &reg : regcache)
6895 xfree (reg.data);
722247f1
YQ
6896}
6897
32603266
TT
6898static notif_event_up
6899remote_notif_stop_alloc_reply ()
722247f1 6900{
32603266 6901 return notif_event_up (new struct stop_reply ());
722247f1
YQ
6902}
6903
6904/* A client of notification Stop. */
6905
6906struct notif_client notif_client_stop =
6907{
6908 "Stop",
6909 "vStopped",
6910 remote_notif_stop_parse,
6911 remote_notif_stop_ack,
6912 remote_notif_stop_can_get_pending_events,
6913 remote_notif_stop_alloc_reply,
f48ff2a7 6914 REMOTE_NOTIF_STOP,
722247f1
YQ
6915};
6916
85ad3aaf 6917/* Determine if THREAD_PTID is a pending fork parent thread. ARG contains
cbb8991c
DB
6918 the pid of the process that owns the threads we want to check, or
6919 -1 if we want to check all threads. */
6920
6921static int
6922is_pending_fork_parent (struct target_waitstatus *ws, int event_pid,
6923 ptid_t thread_ptid)
6924{
6925 if (ws->kind == TARGET_WAITKIND_FORKED
6926 || ws->kind == TARGET_WAITKIND_VFORKED)
6927 {
e99b03dc 6928 if (event_pid == -1 || event_pid == thread_ptid.pid ())
cbb8991c
DB
6929 return 1;
6930 }
6931
6932 return 0;
6933}
6934
85ad3aaf
PA
6935/* Return the thread's pending status used to determine whether the
6936 thread is a fork parent stopped at a fork event. */
6937
6938static struct target_waitstatus *
6939thread_pending_fork_status (struct thread_info *thread)
6940{
6941 if (thread->suspend.waitstatus_pending_p)
6942 return &thread->suspend.waitstatus;
6943 else
6944 return &thread->pending_follow;
6945}
6946
6947/* Determine if THREAD is a pending fork parent thread. */
6948
6949static int
6950is_pending_fork_parent_thread (struct thread_info *thread)
6951{
6952 struct target_waitstatus *ws = thread_pending_fork_status (thread);
6953 int pid = -1;
6954
6955 return is_pending_fork_parent (ws, pid, thread->ptid);
6956}
6957
cbb8991c
DB
6958/* If CONTEXT contains any fork child threads that have not been
6959 reported yet, remove them from the CONTEXT list. If such a
6960 thread exists it is because we are stopped at a fork catchpoint
6961 and have not yet called follow_fork, which will set up the
6962 host-side data structures for the new process. */
6963
6b8edb51
PA
6964void
6965remote_target::remove_new_fork_children (threads_listing_context *context)
cbb8991c 6966{
cbb8991c
DB
6967 int pid = -1;
6968 struct notif_client *notif = &notif_client_stop;
cbb8991c
DB
6969
6970 /* For any threads stopped at a fork event, remove the corresponding
6971 fork child threads from the CONTEXT list. */
08036331 6972 for (thread_info *thread : all_non_exited_threads ())
cbb8991c 6973 {
85ad3aaf 6974 struct target_waitstatus *ws = thread_pending_fork_status (thread);
cbb8991c
DB
6975
6976 if (is_pending_fork_parent (ws, pid, thread->ptid))
21fe1c75 6977 context->remove_thread (ws->value.related_pid);
cbb8991c
DB
6978 }
6979
6980 /* Check for any pending fork events (not reported or processed yet)
6981 in process PID and remove those fork child threads from the
6982 CONTEXT list as well. */
6983 remote_notif_get_pending_events (notif);
953edf2b
TT
6984 for (auto &event : get_remote_state ()->stop_reply_queue)
6985 if (event->ws.kind == TARGET_WAITKIND_FORKED
6986 || event->ws.kind == TARGET_WAITKIND_VFORKED
6987 || event->ws.kind == TARGET_WAITKIND_THREAD_EXITED)
6988 context->remove_thread (event->ws.value.related_pid);
85ad3aaf
PA
6989}
6990
6991/* Check whether any event pending in the vStopped queue would prevent
6992 a global or process wildcard vCont action. Clear
6993 *may_global_wildcard if we can't do a global wildcard (vCont;c),
6994 and clear the event inferior's may_wildcard_vcont flag if we can't
6995 do a process-wide wildcard resume (vCont;c:pPID.-1). */
6996
6b8edb51
PA
6997void
6998remote_target::check_pending_events_prevent_wildcard_vcont
6999 (int *may_global_wildcard)
85ad3aaf
PA
7000{
7001 struct notif_client *notif = &notif_client_stop;
7002
7003 remote_notif_get_pending_events (notif);
953edf2b
TT
7004 for (auto &event : get_remote_state ()->stop_reply_queue)
7005 {
7006 if (event->ws.kind == TARGET_WAITKIND_NO_RESUMED
7007 || event->ws.kind == TARGET_WAITKIND_NO_HISTORY)
7008 continue;
85ad3aaf 7009
953edf2b
TT
7010 if (event->ws.kind == TARGET_WAITKIND_FORKED
7011 || event->ws.kind == TARGET_WAITKIND_VFORKED)
7012 *may_global_wildcard = 0;
722247f1 7013
953edf2b 7014 struct inferior *inf = find_inferior_ptid (event->ptid);
722247f1 7015
953edf2b
TT
7016 /* This may be the first time we heard about this process.
7017 Regardless, we must not do a global wildcard resume, otherwise
7018 we'd resume this process too. */
7019 *may_global_wildcard = 0;
7020 if (inf != NULL)
7021 get_remote_inferior (inf)->may_wildcard_vcont = false;
722247f1 7022 }
722247f1
YQ
7023}
7024
f48ff2a7 7025/* Discard all pending stop replies of inferior INF. */
c906108c 7026
6b8edb51
PA
7027void
7028remote_target::discard_pending_stop_replies (struct inferior *inf)
c906108c 7029{
f48ff2a7
YQ
7030 struct stop_reply *reply;
7031 struct remote_state *rs = get_remote_state ();
7032 struct remote_notif_state *rns = rs->notif_state;
7033
7034 /* This function can be notified when an inferior exists. When the
7035 target is not remote, the notification state is NULL. */
7036 if (rs->remote_desc == NULL)
7037 return;
7038
7039 reply = (struct stop_reply *) rns->pending_event[notif_client_stop.id];
c906108c 7040
74531fed 7041 /* Discard the in-flight notification. */
e99b03dc 7042 if (reply != NULL && reply->ptid.pid () == inf->pid)
74531fed 7043 {
32603266 7044 delete reply;
f48ff2a7 7045 rns->pending_event[notif_client_stop.id] = NULL;
74531fed 7046 }
c906108c 7047
74531fed
PA
7048 /* Discard the stop replies we have already pulled with
7049 vStopped. */
953edf2b
TT
7050 auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7051 rs->stop_reply_queue.end (),
7052 [=] (const stop_reply_up &event)
7053 {
7054 return event->ptid.pid () == inf->pid;
7055 });
7056 rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
bcc75809
YQ
7057}
7058
7059/* Discard the stop replies for RS in stop_reply_queue. */
f48ff2a7 7060
6b8edb51
PA
7061void
7062remote_target::discard_pending_stop_replies_in_queue ()
f48ff2a7 7063{
6b8edb51 7064 remote_state *rs = get_remote_state ();
f48ff2a7 7065
f48ff2a7
YQ
7066 /* Discard the stop replies we have already pulled with
7067 vStopped. */
953edf2b
TT
7068 auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7069 rs->stop_reply_queue.end (),
7070 [=] (const stop_reply_up &event)
7071 {
7072 return event->rs == rs;
7073 });
7074 rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
74531fed 7075}
43ff13b4 7076
722247f1
YQ
7077/* Remove the first reply in 'stop_reply_queue' which matches
7078 PTID. */
2e9f7625 7079
6b8edb51
PA
7080struct stop_reply *
7081remote_target::remote_notif_remove_queued_reply (ptid_t ptid)
74531fed 7082{
953edf2b 7083 remote_state *rs = get_remote_state ();
722247f1 7084
953edf2b
TT
7085 auto iter = std::find_if (rs->stop_reply_queue.begin (),
7086 rs->stop_reply_queue.end (),
7087 [=] (const stop_reply_up &event)
7088 {
7089 return event->ptid.matches (ptid);
7090 });
7091 struct stop_reply *result;
7092 if (iter == rs->stop_reply_queue.end ())
7093 result = nullptr;
7094 else
7095 {
7096 result = iter->release ();
7097 rs->stop_reply_queue.erase (iter);
7098 }
722247f1 7099
722247f1
YQ
7100 if (notif_debug)
7101 fprintf_unfiltered (gdb_stdlog,
7102 "notif: discard queued event: 'Stop' in %s\n",
a068643d 7103 target_pid_to_str (ptid).c_str ());
a744cf53 7104
953edf2b 7105 return result;
74531fed 7106}
75c99385 7107
74531fed
PA
7108/* Look for a queued stop reply belonging to PTID. If one is found,
7109 remove it from the queue, and return it. Returns NULL if none is
7110 found. If there are still queued events left to process, tell the
7111 event loop to get back to target_wait soon. */
e24a49d8 7112
6b8edb51
PA
7113struct stop_reply *
7114remote_target::queued_stop_reply (ptid_t ptid)
74531fed 7115{
953edf2b 7116 remote_state *rs = get_remote_state ();
722247f1 7117 struct stop_reply *r = remote_notif_remove_queued_reply (ptid);
74531fed 7118
953edf2b 7119 if (!rs->stop_reply_queue.empty ())
6b8edb51 7120 {
6b8edb51
PA
7121 /* There's still at least an event left. */
7122 mark_async_event_handler (rs->remote_async_inferior_event_token);
7123 }
74531fed 7124
722247f1 7125 return r;
74531fed
PA
7126}
7127
7128/* Push a fully parsed stop reply in the stop reply queue. Since we
7129 know that we now have at least one queued event left to pass to the
7130 core side, tell the event loop to get back to target_wait soon. */
7131
6b8edb51
PA
7132void
7133remote_target::push_stop_reply (struct stop_reply *new_event)
74531fed 7134{
6b8edb51 7135 remote_state *rs = get_remote_state ();
953edf2b 7136 rs->stop_reply_queue.push_back (stop_reply_up (new_event));
74531fed 7137
722247f1
YQ
7138 if (notif_debug)
7139 fprintf_unfiltered (gdb_stdlog,
7140 "notif: push 'Stop' %s to queue %d\n",
a068643d 7141 target_pid_to_str (new_event->ptid).c_str (),
953edf2b 7142 int (rs->stop_reply_queue.size ()));
74531fed 7143
6b8edb51 7144 mark_async_event_handler (rs->remote_async_inferior_event_token);
74531fed
PA
7145}
7146
7147/* Returns true if we have a stop reply for PTID. */
7148
6b8edb51
PA
7149int
7150remote_target::peek_stop_reply (ptid_t ptid)
74531fed 7151{
6b8edb51 7152 remote_state *rs = get_remote_state ();
953edf2b
TT
7153 for (auto &event : rs->stop_reply_queue)
7154 if (ptid == event->ptid
7155 && event->ws.kind == TARGET_WAITKIND_STOPPED)
7156 return 1;
7157 return 0;
74531fed
PA
7158}
7159
26d56a93
SL
7160/* Helper for remote_parse_stop_reply. Return nonzero if the substring
7161 starting with P and ending with PEND matches PREFIX. */
7162
7163static int
7164strprefix (const char *p, const char *pend, const char *prefix)
7165{
7166 for ( ; p < pend; p++, prefix++)
7167 if (*p != *prefix)
7168 return 0;
7169 return *prefix == '\0';
7170}
7171
74531fed
PA
7172/* Parse the stop reply in BUF. Either the function succeeds, and the
7173 result is stored in EVENT, or throws an error. */
7174
6b8edb51 7175void
bb277751 7176remote_target::remote_parse_stop_reply (const char *buf, stop_reply *event)
74531fed 7177{
5cd63fda 7178 remote_arch_state *rsa = NULL;
74531fed 7179 ULONGEST addr;
256642e8 7180 const char *p;
94585166 7181 int skipregs = 0;
74531fed
PA
7182
7183 event->ptid = null_ptid;
bcc75809 7184 event->rs = get_remote_state ();
74531fed
PA
7185 event->ws.kind = TARGET_WAITKIND_IGNORE;
7186 event->ws.value.integer = 0;
f7e6eed5 7187 event->stop_reason = TARGET_STOPPED_BY_NO_REASON;
32603266 7188 event->regcache.clear ();
dc146f7c 7189 event->core = -1;
74531fed
PA
7190
7191 switch (buf[0])
7192 {
7193 case 'T': /* Status with PC, SP, FP, ... */
cea39f65
MS
7194 /* Expedited reply, containing Signal, {regno, reg} repeat. */
7195 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
7196 ss = signal number
7197 n... = register number
7198 r... = register contents
7199 */
7200
7201 p = &buf[3]; /* after Txx */
7202 while (*p)
7203 {
256642e8 7204 const char *p1;
cea39f65 7205 int fieldsize;
43ff13b4 7206
1f10ba14
PA
7207 p1 = strchr (p, ':');
7208 if (p1 == NULL)
7209 error (_("Malformed packet(a) (missing colon): %s\n\
7210Packet: '%s'\n"),
7211 p, buf);
7212 if (p == p1)
7213 error (_("Malformed packet(a) (missing register number): %s\n\
7214Packet: '%s'\n"),
7215 p, buf);
3c3bea1c 7216
1f10ba14
PA
7217 /* Some "registers" are actually extended stop information.
7218 Note if you're adding a new entry here: GDB 7.9 and
7219 earlier assume that all register "numbers" that start
7220 with an hex digit are real register numbers. Make sure
7221 the server only sends such a packet if it knows the
7222 client understands it. */
c8e38a49 7223
26d56a93 7224 if (strprefix (p, p1, "thread"))
1f10ba14 7225 event->ptid = read_ptid (++p1, &p);
82075af2
JS
7226 else if (strprefix (p, p1, "syscall_entry"))
7227 {
7228 ULONGEST sysno;
7229
7230 event->ws.kind = TARGET_WAITKIND_SYSCALL_ENTRY;
7231 p = unpack_varlen_hex (++p1, &sysno);
7232 event->ws.value.syscall_number = (int) sysno;
7233 }
7234 else if (strprefix (p, p1, "syscall_return"))
7235 {
7236 ULONGEST sysno;
7237
7238 event->ws.kind = TARGET_WAITKIND_SYSCALL_RETURN;
7239 p = unpack_varlen_hex (++p1, &sysno);
7240 event->ws.value.syscall_number = (int) sysno;
7241 }
26d56a93
SL
7242 else if (strprefix (p, p1, "watch")
7243 || strprefix (p, p1, "rwatch")
7244 || strprefix (p, p1, "awatch"))
cea39f65 7245 {
f7e6eed5 7246 event->stop_reason = TARGET_STOPPED_BY_WATCHPOINT;
1f10ba14
PA
7247 p = unpack_varlen_hex (++p1, &addr);
7248 event->watch_data_address = (CORE_ADDR) addr;
cea39f65 7249 }
26d56a93 7250 else if (strprefix (p, p1, "swbreak"))
f7e6eed5
PA
7251 {
7252 event->stop_reason = TARGET_STOPPED_BY_SW_BREAKPOINT;
7253
7254 /* Make sure the stub doesn't forget to indicate support
7255 with qSupported. */
7256 if (packet_support (PACKET_swbreak_feature) != PACKET_ENABLE)
7257 error (_("Unexpected swbreak stop reason"));
7258
7259 /* The value part is documented as "must be empty",
7260 though we ignore it, in case we ever decide to make
7261 use of it in a backward compatible way. */
8424cc97 7262 p = strchrnul (p1 + 1, ';');
f7e6eed5 7263 }
26d56a93 7264 else if (strprefix (p, p1, "hwbreak"))
f7e6eed5
PA
7265 {
7266 event->stop_reason = TARGET_STOPPED_BY_HW_BREAKPOINT;
7267
7268 /* Make sure the stub doesn't forget to indicate support
7269 with qSupported. */
7270 if (packet_support (PACKET_hwbreak_feature) != PACKET_ENABLE)
7271 error (_("Unexpected hwbreak stop reason"));
7272
7273 /* See above. */
8424cc97 7274 p = strchrnul (p1 + 1, ';');
f7e6eed5 7275 }
26d56a93 7276 else if (strprefix (p, p1, "library"))
cea39f65 7277 {
1f10ba14 7278 event->ws.kind = TARGET_WAITKIND_LOADED;
8424cc97 7279 p = strchrnul (p1 + 1, ';');
1f10ba14 7280 }
26d56a93 7281 else if (strprefix (p, p1, "replaylog"))
1f10ba14
PA
7282 {
7283 event->ws.kind = TARGET_WAITKIND_NO_HISTORY;
7284 /* p1 will indicate "begin" or "end", but it makes
7285 no difference for now, so ignore it. */
8424cc97 7286 p = strchrnul (p1 + 1, ';');
1f10ba14 7287 }
26d56a93 7288 else if (strprefix (p, p1, "core"))
1f10ba14
PA
7289 {
7290 ULONGEST c;
a744cf53 7291
1f10ba14
PA
7292 p = unpack_varlen_hex (++p1, &c);
7293 event->core = c;
cea39f65 7294 }
26d56a93 7295 else if (strprefix (p, p1, "fork"))
de0d863e
DB
7296 {
7297 event->ws.value.related_pid = read_ptid (++p1, &p);
7298 event->ws.kind = TARGET_WAITKIND_FORKED;
7299 }
26d56a93 7300 else if (strprefix (p, p1, "vfork"))
c269dbdb
DB
7301 {
7302 event->ws.value.related_pid = read_ptid (++p1, &p);
7303 event->ws.kind = TARGET_WAITKIND_VFORKED;
7304 }
26d56a93 7305 else if (strprefix (p, p1, "vforkdone"))
c269dbdb
DB
7306 {
7307 event->ws.kind = TARGET_WAITKIND_VFORK_DONE;
8424cc97 7308 p = strchrnul (p1 + 1, ';');
c269dbdb 7309 }
6ab24463 7310 else if (strprefix (p, p1, "exec"))
94585166
DB
7311 {
7312 ULONGEST ignored;
94585166
DB
7313 int pathlen;
7314
7315 /* Determine the length of the execd pathname. */
7316 p = unpack_varlen_hex (++p1, &ignored);
7317 pathlen = (p - p1) / 2;
7318
7319 /* Save the pathname for event reporting and for
7320 the next run command. */
c6321f19
TT
7321 gdb::unique_xmalloc_ptr<char[]> pathname
7322 ((char *) xmalloc (pathlen + 1));
7323 hex2bin (p1, (gdb_byte *) pathname.get (), pathlen);
94585166
DB
7324 pathname[pathlen] = '\0';
7325
7326 /* This is freed during event handling. */
c6321f19 7327 event->ws.value.execd_pathname = pathname.release ();
94585166
DB
7328 event->ws.kind = TARGET_WAITKIND_EXECD;
7329
7330 /* Skip the registers included in this packet, since
7331 they may be for an architecture different from the
7332 one used by the original program. */
7333 skipregs = 1;
7334 }
65706a29
PA
7335 else if (strprefix (p, p1, "create"))
7336 {
7337 event->ws.kind = TARGET_WAITKIND_THREAD_CREATED;
8424cc97 7338 p = strchrnul (p1 + 1, ';');
65706a29 7339 }
cea39f65
MS
7340 else
7341 {
1f10ba14 7342 ULONGEST pnum;
256642e8 7343 const char *p_temp;
1f10ba14 7344
94585166
DB
7345 if (skipregs)
7346 {
8424cc97 7347 p = strchrnul (p1 + 1, ';');
94585166
DB
7348 p++;
7349 continue;
7350 }
7351
1f10ba14
PA
7352 /* Maybe a real ``P'' register number. */
7353 p_temp = unpack_varlen_hex (p, &pnum);
7354 /* If the first invalid character is the colon, we got a
7355 register number. Otherwise, it's an unknown stop
7356 reason. */
7357 if (p_temp == p1)
7358 {
5cd63fda
PA
7359 /* If we haven't parsed the event's thread yet, find
7360 it now, in order to find the architecture of the
7361 reported expedited registers. */
7362 if (event->ptid == null_ptid)
7363 {
7364 const char *thr = strstr (p1 + 1, ";thread:");
7365 if (thr != NULL)
7366 event->ptid = read_ptid (thr + strlen (";thread:"),
7367 NULL);
7368 else
3cada740
PA
7369 {
7370 /* Either the current thread hasn't changed,
7371 or the inferior is not multi-threaded.
7372 The event must be for the thread we last
7373 set as (or learned as being) current. */
7374 event->ptid = event->rs->general_thread;
7375 }
5cd63fda
PA
7376 }
7377
7378 if (rsa == NULL)
7379 {
7380 inferior *inf = (event->ptid == null_ptid
7381 ? NULL
7382 : find_inferior_ptid (event->ptid));
7383 /* If this is the first time we learn anything
7384 about this process, skip the registers
7385 included in this packet, since we don't yet
7386 know which architecture to use to parse them.
7387 We'll determine the architecture later when
7388 we process the stop reply and retrieve the
7389 target description, via
7390 remote_notice_new_inferior ->
7391 post_create_inferior. */
7392 if (inf == NULL)
7393 {
7394 p = strchrnul (p1 + 1, ';');
7395 p++;
7396 continue;
7397 }
7398
7399 event->arch = inf->gdbarch;
9d6eea31 7400 rsa = event->rs->get_remote_arch_state (event->arch);
5cd63fda
PA
7401 }
7402
7403 packet_reg *reg
7404 = packet_reg_from_pnum (event->arch, rsa, pnum);
1f10ba14 7405 cached_reg_t cached_reg;
43ff13b4 7406
1f10ba14
PA
7407 if (reg == NULL)
7408 error (_("Remote sent bad register number %s: %s\n\
8a3fe4f8 7409Packet: '%s'\n"),
1f10ba14 7410 hex_string (pnum), p, buf);
c8e38a49 7411
1f10ba14 7412 cached_reg.num = reg->regnum;
d1dff226 7413 cached_reg.data = (gdb_byte *)
5cd63fda 7414 xmalloc (register_size (event->arch, reg->regnum));
4100683b 7415
1f10ba14
PA
7416 p = p1 + 1;
7417 fieldsize = hex2bin (p, cached_reg.data,
5cd63fda 7418 register_size (event->arch, reg->regnum));
1f10ba14 7419 p += 2 * fieldsize;
5cd63fda 7420 if (fieldsize < register_size (event->arch, reg->regnum))
1f10ba14 7421 warning (_("Remote reply is too short: %s"), buf);
74531fed 7422
32603266 7423 event->regcache.push_back (cached_reg);
1f10ba14
PA
7424 }
7425 else
7426 {
7427 /* Not a number. Silently skip unknown optional
7428 info. */
8424cc97 7429 p = strchrnul (p1 + 1, ';');
1f10ba14 7430 }
cea39f65 7431 }
c8e38a49 7432
cea39f65
MS
7433 if (*p != ';')
7434 error (_("Remote register badly formatted: %s\nhere: %s"),
7435 buf, p);
7436 ++p;
7437 }
5b5596ff
PA
7438
7439 if (event->ws.kind != TARGET_WAITKIND_IGNORE)
7440 break;
7441
c8e38a49
PA
7442 /* fall through */
7443 case 'S': /* Old style status, just signal only. */
3a09da41
PA
7444 {
7445 int sig;
7446
7447 event->ws.kind = TARGET_WAITKIND_STOPPED;
7448 sig = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
7449 if (GDB_SIGNAL_FIRST <= sig && sig < GDB_SIGNAL_LAST)
7450 event->ws.value.sig = (enum gdb_signal) sig;
7451 else
7452 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
7453 }
c8e38a49 7454 break;
65706a29
PA
7455 case 'w': /* Thread exited. */
7456 {
65706a29
PA
7457 ULONGEST value;
7458
7459 event->ws.kind = TARGET_WAITKIND_THREAD_EXITED;
7460 p = unpack_varlen_hex (&buf[1], &value);
7461 event->ws.value.integer = value;
7462 if (*p != ';')
7463 error (_("stop reply packet badly formatted: %s"), buf);
974eac9d 7464 event->ptid = read_ptid (++p, NULL);
65706a29
PA
7465 break;
7466 }
c8e38a49
PA
7467 case 'W': /* Target exited. */
7468 case 'X':
7469 {
c8e38a49 7470 ULONGEST value;
82f73884 7471
c8e38a49
PA
7472 /* GDB used to accept only 2 hex chars here. Stubs should
7473 only send more if they detect GDB supports multi-process
7474 support. */
7475 p = unpack_varlen_hex (&buf[1], &value);
82f73884 7476
c8e38a49
PA
7477 if (buf[0] == 'W')
7478 {
7479 /* The remote process exited. */
74531fed
PA
7480 event->ws.kind = TARGET_WAITKIND_EXITED;
7481 event->ws.value.integer = value;
c8e38a49
PA
7482 }
7483 else
7484 {
7485 /* The remote process exited with a signal. */
74531fed 7486 event->ws.kind = TARGET_WAITKIND_SIGNALLED;
3a09da41
PA
7487 if (GDB_SIGNAL_FIRST <= value && value < GDB_SIGNAL_LAST)
7488 event->ws.value.sig = (enum gdb_signal) value;
7489 else
7490 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
c8e38a49 7491 }
82f73884 7492
e7af6c70
TBA
7493 /* If no process is specified, return null_ptid, and let the
7494 caller figure out the right process to use. */
7495 int pid = 0;
c8e38a49
PA
7496 if (*p == '\0')
7497 ;
7498 else if (*p == ';')
7499 {
7500 p++;
7501
0b24eb2d 7502 if (*p == '\0')
82f73884 7503 ;
61012eef 7504 else if (startswith (p, "process:"))
82f73884 7505 {
c8e38a49 7506 ULONGEST upid;
a744cf53 7507
c8e38a49
PA
7508 p += sizeof ("process:") - 1;
7509 unpack_varlen_hex (p, &upid);
7510 pid = upid;
82f73884
PA
7511 }
7512 else
7513 error (_("unknown stop reply packet: %s"), buf);
43ff13b4 7514 }
c8e38a49
PA
7515 else
7516 error (_("unknown stop reply packet: %s"), buf);
f2907e49 7517 event->ptid = ptid_t (pid);
74531fed
PA
7518 }
7519 break;
f2faf941
PA
7520 case 'N':
7521 event->ws.kind = TARGET_WAITKIND_NO_RESUMED;
7522 event->ptid = minus_one_ptid;
7523 break;
74531fed
PA
7524 }
7525
d7e15655 7526 if (target_is_non_stop_p () && event->ptid == null_ptid)
74531fed
PA
7527 error (_("No process or thread specified in stop reply: %s"), buf);
7528}
7529
722247f1
YQ
7530/* When the stub wants to tell GDB about a new notification reply, it
7531 sends a notification (%Stop, for example). Those can come it at
7532 any time, hence, we have to make sure that any pending
7533 putpkt/getpkt sequence we're making is finished, before querying
7534 the stub for more events with the corresponding ack command
7535 (vStopped, for example). E.g., if we started a vStopped sequence
7536 immediately upon receiving the notification, something like this
7537 could happen:
74531fed
PA
7538
7539 1.1) --> Hg 1
7540 1.2) <-- OK
7541 1.3) --> g
7542 1.4) <-- %Stop
7543 1.5) --> vStopped
7544 1.6) <-- (registers reply to step #1.3)
7545
7546 Obviously, the reply in step #1.6 would be unexpected to a vStopped
7547 query.
7548
796cb314 7549 To solve this, whenever we parse a %Stop notification successfully,
74531fed
PA
7550 we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
7551 doing whatever we were doing:
7552
7553 2.1) --> Hg 1
7554 2.2) <-- OK
7555 2.3) --> g
7556 2.4) <-- %Stop
7557 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
7558 2.5) <-- (registers reply to step #2.3)
7559
85102364 7560 Eventually after step #2.5, we return to the event loop, which
74531fed
PA
7561 notices there's an event on the
7562 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
7563 associated callback --- the function below. At this point, we're
7564 always safe to start a vStopped sequence. :
7565
7566 2.6) --> vStopped
7567 2.7) <-- T05 thread:2
7568 2.8) --> vStopped
7569 2.9) --> OK
7570*/
7571
722247f1 7572void
6b8edb51 7573remote_target::remote_notif_get_pending_events (notif_client *nc)
74531fed
PA
7574{
7575 struct remote_state *rs = get_remote_state ();
74531fed 7576
f48ff2a7 7577 if (rs->notif_state->pending_event[nc->id] != NULL)
74531fed 7578 {
722247f1
YQ
7579 if (notif_debug)
7580 fprintf_unfiltered (gdb_stdlog,
7581 "notif: process: '%s' ack pending event\n",
7582 nc->name);
74531fed 7583
722247f1 7584 /* acknowledge */
8d64371b
TT
7585 nc->ack (this, nc, rs->buf.data (),
7586 rs->notif_state->pending_event[nc->id]);
f48ff2a7 7587 rs->notif_state->pending_event[nc->id] = NULL;
74531fed
PA
7588
7589 while (1)
7590 {
8d64371b
TT
7591 getpkt (&rs->buf, 0);
7592 if (strcmp (rs->buf.data (), "OK") == 0)
74531fed
PA
7593 break;
7594 else
8d64371b 7595 remote_notif_ack (this, nc, rs->buf.data ());
74531fed
PA
7596 }
7597 }
722247f1
YQ
7598 else
7599 {
7600 if (notif_debug)
7601 fprintf_unfiltered (gdb_stdlog,
7602 "notif: process: '%s' no pending reply\n",
7603 nc->name);
7604 }
74531fed
PA
7605}
7606
6b8edb51
PA
7607/* Wrapper around remote_target::remote_notif_get_pending_events to
7608 avoid having to export the whole remote_target class. */
7609
7610void
7611remote_notif_get_pending_events (remote_target *remote, notif_client *nc)
7612{
7613 remote->remote_notif_get_pending_events (nc);
7614}
7615
74531fed
PA
7616/* Called when it is decided that STOP_REPLY holds the info of the
7617 event that is to be returned to the core. This function always
7618 destroys STOP_REPLY. */
7619
6b8edb51
PA
7620ptid_t
7621remote_target::process_stop_reply (struct stop_reply *stop_reply,
7622 struct target_waitstatus *status)
74531fed
PA
7623{
7624 ptid_t ptid;
7625
7626 *status = stop_reply->ws;
7627 ptid = stop_reply->ptid;
7628
7629 /* If no thread/process was reported by the stub, assume the current
7630 inferior. */
d7e15655 7631 if (ptid == null_ptid)
74531fed
PA
7632 ptid = inferior_ptid;
7633
5f3563ea 7634 if (status->kind != TARGET_WAITKIND_EXITED
f2faf941
PA
7635 && status->kind != TARGET_WAITKIND_SIGNALLED
7636 && status->kind != TARGET_WAITKIND_NO_RESUMED)
74531fed 7637 {
5f3563ea 7638 /* Expedited registers. */
32603266 7639 if (!stop_reply->regcache.empty ())
5f3563ea 7640 {
217f1f79 7641 struct regcache *regcache
5cd63fda 7642 = get_thread_arch_regcache (ptid, stop_reply->arch);
5f3563ea 7643
32603266
TT
7644 for (cached_reg_t &reg : stop_reply->regcache)
7645 {
7646 regcache->raw_supply (reg.num, reg.data);
7647 xfree (reg.data);
7648 }
d1dff226 7649
32603266 7650 stop_reply->regcache.clear ();
5f3563ea 7651 }
74531fed 7652
1941c569 7653 remote_notice_new_inferior (ptid, 0);
7aabaf9d 7654 remote_thread_info *remote_thr = get_remote_thread_info (ptid);
799a2abe
PA
7655 remote_thr->core = stop_reply->core;
7656 remote_thr->stop_reason = stop_reply->stop_reason;
7657 remote_thr->watch_data_address = stop_reply->watch_data_address;
85ad3aaf 7658 remote_thr->vcont_resumed = 0;
74531fed
PA
7659 }
7660
32603266 7661 delete stop_reply;
74531fed
PA
7662 return ptid;
7663}
7664
7665/* The non-stop mode version of target_wait. */
7666
6b8edb51
PA
7667ptid_t
7668remote_target::wait_ns (ptid_t ptid, struct target_waitstatus *status, int options)
74531fed
PA
7669{
7670 struct remote_state *rs = get_remote_state ();
74531fed
PA
7671 struct stop_reply *stop_reply;
7672 int ret;
fee9eda9 7673 int is_notif = 0;
74531fed
PA
7674
7675 /* If in non-stop mode, get out of getpkt even if a
7676 notification is received. */
7677
8d64371b 7678 ret = getpkt_or_notif_sane (&rs->buf, 0 /* forever */, &is_notif);
74531fed
PA
7679 while (1)
7680 {
fee9eda9 7681 if (ret != -1 && !is_notif)
74531fed
PA
7682 switch (rs->buf[0])
7683 {
7684 case 'E': /* Error of some sort. */
7685 /* We're out of sync with the target now. Did it continue
7686 or not? We can't tell which thread it was in non-stop,
7687 so just ignore this. */
8d64371b 7688 warning (_("Remote failure reply: %s"), rs->buf.data ());
74531fed
PA
7689 break;
7690 case 'O': /* Console output. */
8d64371b 7691 remote_console_output (&rs->buf[1]);
74531fed
PA
7692 break;
7693 default:
8d64371b 7694 warning (_("Invalid remote reply: %s"), rs->buf.data ());
74531fed
PA
7695 break;
7696 }
7697
7698 /* Acknowledge a pending stop reply that may have arrived in the
7699 mean time. */
f48ff2a7 7700 if (rs->notif_state->pending_event[notif_client_stop.id] != NULL)
722247f1 7701 remote_notif_get_pending_events (&notif_client_stop);
74531fed
PA
7702
7703 /* If indeed we noticed a stop reply, we're done. */
7704 stop_reply = queued_stop_reply (ptid);
7705 if (stop_reply != NULL)
7706 return process_stop_reply (stop_reply, status);
7707
47608cb1 7708 /* Still no event. If we're just polling for an event, then
74531fed 7709 return to the event loop. */
47608cb1 7710 if (options & TARGET_WNOHANG)
74531fed
PA
7711 {
7712 status->kind = TARGET_WAITKIND_IGNORE;
7713 return minus_one_ptid;
7714 }
7715
47608cb1 7716 /* Otherwise do a blocking wait. */
8d64371b 7717 ret = getpkt_or_notif_sane (&rs->buf, 1 /* forever */, &is_notif);
74531fed
PA
7718 }
7719}
7720
31ba933e
PA
7721/* Return the first resumed thread. */
7722
7723static ptid_t
7724first_remote_resumed_thread ()
7725{
7726 for (thread_info *tp : all_non_exited_threads (minus_one_ptid))
7727 if (tp->resumed)
7728 return tp->ptid;
7729 return null_ptid;
7730}
7731
74531fed
PA
7732/* Wait until the remote machine stops, then return, storing status in
7733 STATUS just as `wait' would. */
7734
6b8edb51
PA
7735ptid_t
7736remote_target::wait_as (ptid_t ptid, target_waitstatus *status, int options)
74531fed
PA
7737{
7738 struct remote_state *rs = get_remote_state ();
74531fed 7739 ptid_t event_ptid = null_ptid;
cea39f65 7740 char *buf;
74531fed
PA
7741 struct stop_reply *stop_reply;
7742
47608cb1
PA
7743 again:
7744
74531fed
PA
7745 status->kind = TARGET_WAITKIND_IGNORE;
7746 status->value.integer = 0;
7747
7748 stop_reply = queued_stop_reply (ptid);
7749 if (stop_reply != NULL)
7750 return process_stop_reply (stop_reply, status);
7751
7752 if (rs->cached_wait_status)
7753 /* Use the cached wait status, but only once. */
7754 rs->cached_wait_status = 0;
7755 else
7756 {
7757 int ret;
722247f1 7758 int is_notif;
567420d1 7759 int forever = ((options & TARGET_WNOHANG) == 0
6b8edb51 7760 && rs->wait_forever_enabled_p);
567420d1
PA
7761
7762 if (!rs->waiting_for_stop_reply)
7763 {
7764 status->kind = TARGET_WAITKIND_NO_RESUMED;
7765 return minus_one_ptid;
7766 }
74531fed 7767
74531fed
PA
7768 /* FIXME: cagney/1999-09-27: If we're in async mode we should
7769 _never_ wait for ever -> test on target_is_async_p().
7770 However, before we do that we need to ensure that the caller
7771 knows how to take the target into/out of async mode. */
8d64371b 7772 ret = getpkt_or_notif_sane (&rs->buf, forever, &is_notif);
722247f1
YQ
7773
7774 /* GDB gets a notification. Return to core as this event is
7775 not interesting. */
7776 if (ret != -1 && is_notif)
7777 return minus_one_ptid;
567420d1
PA
7778
7779 if (ret == -1 && (options & TARGET_WNOHANG) != 0)
7780 return minus_one_ptid;
74531fed
PA
7781 }
7782
8d64371b 7783 buf = rs->buf.data ();
74531fed 7784
3a29589a
DJ
7785 /* Assume that the target has acknowledged Ctrl-C unless we receive
7786 an 'F' or 'O' packet. */
7787 if (buf[0] != 'F' && buf[0] != 'O')
7788 rs->ctrlc_pending_p = 0;
7789
74531fed
PA
7790 switch (buf[0])
7791 {
7792 case 'E': /* Error of some sort. */
7793 /* We're out of sync with the target now. Did it continue or
7794 not? Not is more likely, so report a stop. */
29090fb6
LM
7795 rs->waiting_for_stop_reply = 0;
7796
74531fed
PA
7797 warning (_("Remote failure reply: %s"), buf);
7798 status->kind = TARGET_WAITKIND_STOPPED;
a493e3e2 7799 status->value.sig = GDB_SIGNAL_0;
74531fed
PA
7800 break;
7801 case 'F': /* File-I/O request. */
e42e5352
YQ
7802 /* GDB may access the inferior memory while handling the File-I/O
7803 request, but we don't want GDB accessing memory while waiting
7804 for a stop reply. See the comments in putpkt_binary. Set
7805 waiting_for_stop_reply to 0 temporarily. */
7806 rs->waiting_for_stop_reply = 0;
6b8edb51 7807 remote_fileio_request (this, buf, rs->ctrlc_pending_p);
3a29589a 7808 rs->ctrlc_pending_p = 0;
e42e5352
YQ
7809 /* GDB handled the File-I/O request, and the target is running
7810 again. Keep waiting for events. */
7811 rs->waiting_for_stop_reply = 1;
74531fed 7812 break;
f2faf941 7813 case 'N': case 'T': case 'S': case 'X': case 'W':
74531fed 7814 {
29090fb6
LM
7815 /* There is a stop reply to handle. */
7816 rs->waiting_for_stop_reply = 0;
7817
7818 stop_reply
6b8edb51
PA
7819 = (struct stop_reply *) remote_notif_parse (this,
7820 &notif_client_stop,
8d64371b 7821 rs->buf.data ());
74531fed 7822
74531fed 7823 event_ptid = process_stop_reply (stop_reply, status);
c8e38a49
PA
7824 break;
7825 }
7826 case 'O': /* Console output. */
7827 remote_console_output (buf + 1);
c8e38a49
PA
7828 break;
7829 case '\0':
b73be471 7830 if (rs->last_sent_signal != GDB_SIGNAL_0)
c8e38a49
PA
7831 {
7832 /* Zero length reply means that we tried 'S' or 'C' and the
7833 remote system doesn't support it. */
223ffa71 7834 target_terminal::ours_for_output ();
c8e38a49
PA
7835 printf_filtered
7836 ("Can't send signals to this remote system. %s not sent.\n",
b73be471
TT
7837 gdb_signal_to_name (rs->last_sent_signal));
7838 rs->last_sent_signal = GDB_SIGNAL_0;
223ffa71 7839 target_terminal::inferior ();
c8e38a49 7840
f5c4fcd9
TT
7841 strcpy (buf, rs->last_sent_step ? "s" : "c");
7842 putpkt (buf);
c8e38a49 7843 break;
43ff13b4 7844 }
86a73007 7845 /* fallthrough */
c8e38a49
PA
7846 default:
7847 warning (_("Invalid remote reply: %s"), buf);
c8e38a49 7848 break;
43ff13b4 7849 }
c8e38a49 7850
f2faf941
PA
7851 if (status->kind == TARGET_WAITKIND_NO_RESUMED)
7852 return minus_one_ptid;
7853 else if (status->kind == TARGET_WAITKIND_IGNORE)
47608cb1
PA
7854 {
7855 /* Nothing interesting happened. If we're doing a non-blocking
7856 poll, we're done. Otherwise, go back to waiting. */
7857 if (options & TARGET_WNOHANG)
7858 return minus_one_ptid;
7859 else
7860 goto again;
7861 }
74531fed
PA
7862 else if (status->kind != TARGET_WAITKIND_EXITED
7863 && status->kind != TARGET_WAITKIND_SIGNALLED)
82f73884 7864 {
d7e15655 7865 if (event_ptid != null_ptid)
47f8a51d 7866 record_currthread (rs, event_ptid);
82f73884 7867 else
31ba933e 7868 event_ptid = first_remote_resumed_thread ();
43ff13b4 7869 }
74531fed 7870 else
e7af6c70
TBA
7871 {
7872 /* A process exit. Invalidate our notion of current thread. */
7873 record_currthread (rs, minus_one_ptid);
7874 /* It's possible that the packet did not include a pid. */
7875 if (event_ptid == null_ptid)
7876 event_ptid = first_remote_resumed_thread ();
7877 /* EVENT_PTID could still be NULL_PTID. Double-check. */
7878 if (event_ptid == null_ptid)
7879 event_ptid = magic_null_ptid;
7880 }
79d7f229 7881
82f73884 7882 return event_ptid;
43ff13b4
JM
7883}
7884
74531fed
PA
7885/* Wait until the remote machine stops, then return, storing status in
7886 STATUS just as `wait' would. */
7887
f6ac5f3d
PA
7888ptid_t
7889remote_target::wait (ptid_t ptid, struct target_waitstatus *status, int options)
c8e38a49
PA
7890{
7891 ptid_t event_ptid;
7892
6efcd9a8 7893 if (target_is_non_stop_p ())
6b8edb51 7894 event_ptid = wait_ns (ptid, status, options);
74531fed 7895 else
6b8edb51 7896 event_ptid = wait_as (ptid, status, options);
c8e38a49 7897
d9d41e78 7898 if (target_is_async_p ())
c8e38a49 7899 {
6b8edb51
PA
7900 remote_state *rs = get_remote_state ();
7901
74531fed
PA
7902 /* If there are are events left in the queue tell the event loop
7903 to return here. */
953edf2b 7904 if (!rs->stop_reply_queue.empty ())
6b8edb51 7905 mark_async_event_handler (rs->remote_async_inferior_event_token);
c8e38a49 7906 }
c8e38a49
PA
7907
7908 return event_ptid;
7909}
7910
74ca34ce 7911/* Fetch a single register using a 'p' packet. */
c906108c 7912
6b8edb51
PA
7913int
7914remote_target::fetch_register_using_p (struct regcache *regcache,
7915 packet_reg *reg)
b96ec7ac 7916{
ac7936df 7917 struct gdbarch *gdbarch = regcache->arch ();
b96ec7ac 7918 struct remote_state *rs = get_remote_state ();
2e9f7625 7919 char *buf, *p;
9890e433 7920 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
b96ec7ac
AC
7921 int i;
7922
4082afcc 7923 if (packet_support (PACKET_p) == PACKET_DISABLE)
74ca34ce
DJ
7924 return 0;
7925
7926 if (reg->pnum == -1)
7927 return 0;
7928
8d64371b 7929 p = rs->buf.data ();
fcad0fa4 7930 *p++ = 'p';
74ca34ce 7931 p += hexnumstr (p, reg->pnum);
fcad0fa4 7932 *p++ = '\0';
1f4437a4 7933 putpkt (rs->buf);
8d64371b 7934 getpkt (&rs->buf, 0);
3f9a994c 7935
8d64371b 7936 buf = rs->buf.data ();
2e9f7625 7937
8d64371b 7938 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_p]))
74ca34ce
DJ
7939 {
7940 case PACKET_OK:
7941 break;
7942 case PACKET_UNKNOWN:
7943 return 0;
7944 case PACKET_ERROR:
27a9c0bf 7945 error (_("Could not fetch register \"%s\"; remote failure reply '%s'"),
ac7936df 7946 gdbarch_register_name (regcache->arch (),
27a9c0bf
MS
7947 reg->regnum),
7948 buf);
74ca34ce 7949 }
3f9a994c
JB
7950
7951 /* If this register is unfetchable, tell the regcache. */
7952 if (buf[0] == 'x')
8480adf2 7953 {
73e1c03f 7954 regcache->raw_supply (reg->regnum, NULL);
8480adf2 7955 return 1;
b96ec7ac 7956 }
b96ec7ac 7957
3f9a994c
JB
7958 /* Otherwise, parse and supply the value. */
7959 p = buf;
7960 i = 0;
7961 while (p[0] != 0)
7962 {
7963 if (p[1] == 0)
74ca34ce 7964 error (_("fetch_register_using_p: early buf termination"));
3f9a994c
JB
7965
7966 regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
7967 p += 2;
7968 }
73e1c03f 7969 regcache->raw_supply (reg->regnum, regp);
3f9a994c 7970 return 1;
b96ec7ac
AC
7971}
7972
74ca34ce
DJ
7973/* Fetch the registers included in the target's 'g' packet. */
7974
6b8edb51
PA
7975int
7976remote_target::send_g_packet ()
c906108c 7977{
d01949b6 7978 struct remote_state *rs = get_remote_state ();
cea39f65 7979 int buf_len;
c906108c 7980
8d64371b 7981 xsnprintf (rs->buf.data (), get_remote_packet_size (), "g");
b75abf5b 7982 putpkt (rs->buf);
8d64371b 7983 getpkt (&rs->buf, 0);
b75abf5b
AK
7984 if (packet_check_result (rs->buf) == PACKET_ERROR)
7985 error (_("Could not read registers; remote failure reply '%s'"),
8d64371b 7986 rs->buf.data ());
c906108c 7987
29709017
DJ
7988 /* We can get out of synch in various cases. If the first character
7989 in the buffer is not a hex character, assume that has happened
7990 and try to fetch another packet to read. */
7991 while ((rs->buf[0] < '0' || rs->buf[0] > '9')
7992 && (rs->buf[0] < 'A' || rs->buf[0] > 'F')
7993 && (rs->buf[0] < 'a' || rs->buf[0] > 'f')
7994 && rs->buf[0] != 'x') /* New: unavailable register value. */
7995 {
7996 if (remote_debug)
7997 fprintf_unfiltered (gdb_stdlog,
7998 "Bad register packet; fetching a new packet\n");
8d64371b 7999 getpkt (&rs->buf, 0);
29709017
DJ
8000 }
8001
8d64371b 8002 buf_len = strlen (rs->buf.data ());
74ca34ce
DJ
8003
8004 /* Sanity check the received packet. */
8005 if (buf_len % 2 != 0)
8d64371b 8006 error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf.data ());
29709017
DJ
8007
8008 return buf_len / 2;
8009}
8010
6b8edb51
PA
8011void
8012remote_target::process_g_packet (struct regcache *regcache)
29709017 8013{
ac7936df 8014 struct gdbarch *gdbarch = regcache->arch ();
29709017 8015 struct remote_state *rs = get_remote_state ();
9d6eea31 8016 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
29709017
DJ
8017 int i, buf_len;
8018 char *p;
8019 char *regs;
8020
8d64371b 8021 buf_len = strlen (rs->buf.data ());
29709017
DJ
8022
8023 /* Further sanity checks, with knowledge of the architecture. */
74ca34ce 8024 if (buf_len > 2 * rsa->sizeof_g_packet)
fc809827 8025 error (_("Remote 'g' packet reply is too long (expected %ld bytes, got %d "
8d64371b
TT
8026 "bytes): %s"),
8027 rsa->sizeof_g_packet, buf_len / 2,
8028 rs->buf.data ());
74ca34ce
DJ
8029
8030 /* Save the size of the packet sent to us by the target. It is used
8031 as a heuristic when determining the max size of packets that the
8032 target can safely receive. */
8033 if (rsa->actual_register_packet_size == 0)
8034 rsa->actual_register_packet_size = buf_len;
8035
8036 /* If this is smaller than we guessed the 'g' packet would be,
8037 update our records. A 'g' reply that doesn't include a register's
8038 value implies either that the register is not available, or that
8039 the 'p' packet must be used. */
8040 if (buf_len < 2 * rsa->sizeof_g_packet)
b323314b 8041 {
9dc193c3 8042 long sizeof_g_packet = buf_len / 2;
74ca34ce 8043
4a22f64d 8044 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
b96ec7ac 8045 {
9dc193c3
LF
8046 long offset = rsa->regs[i].offset;
8047 long reg_size = register_size (gdbarch, i);
8048
74ca34ce
DJ
8049 if (rsa->regs[i].pnum == -1)
8050 continue;
8051
9dc193c3 8052 if (offset >= sizeof_g_packet)
74ca34ce 8053 rsa->regs[i].in_g_packet = 0;
9dc193c3
LF
8054 else if (offset + reg_size > sizeof_g_packet)
8055 error (_("Truncated register %d in remote 'g' packet"), i);
b96ec7ac 8056 else
74ca34ce 8057 rsa->regs[i].in_g_packet = 1;
b96ec7ac 8058 }
9dc193c3
LF
8059
8060 /* Looks valid enough, we can assume this is the correct length
8061 for a 'g' packet. It's important not to adjust
8062 rsa->sizeof_g_packet if we have truncated registers otherwise
8063 this "if" won't be run the next time the method is called
8064 with a packet of the same size and one of the internal errors
8065 below will trigger instead. */
8066 rsa->sizeof_g_packet = sizeof_g_packet;
74ca34ce 8067 }
b323314b 8068
224c3ddb 8069 regs = (char *) alloca (rsa->sizeof_g_packet);
c906108c
SS
8070
8071 /* Unimplemented registers read as all bits zero. */
ea9c271d 8072 memset (regs, 0, rsa->sizeof_g_packet);
c906108c 8073
c906108c
SS
8074 /* Reply describes registers byte by byte, each byte encoded as two
8075 hex characters. Suck them all up, then supply them to the
8076 register cacheing/storage mechanism. */
8077
8d64371b 8078 p = rs->buf.data ();
ea9c271d 8079 for (i = 0; i < rsa->sizeof_g_packet; i++)
c906108c 8080 {
74ca34ce
DJ
8081 if (p[0] == 0 || p[1] == 0)
8082 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
8083 internal_error (__FILE__, __LINE__,
9b20d036 8084 _("unexpected end of 'g' packet reply"));
74ca34ce 8085
c906108c 8086 if (p[0] == 'x' && p[1] == 'x')
c5aa993b 8087 regs[i] = 0; /* 'x' */
c906108c
SS
8088 else
8089 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
8090 p += 2;
8091 }
8092
a744cf53
MS
8093 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
8094 {
8095 struct packet_reg *r = &rsa->regs[i];
9dc193c3 8096 long reg_size = register_size (gdbarch, i);
a744cf53
MS
8097
8098 if (r->in_g_packet)
8099 {
8d64371b 8100 if ((r->offset + reg_size) * 2 > strlen (rs->buf.data ()))
a744cf53
MS
8101 /* This shouldn't happen - we adjusted in_g_packet above. */
8102 internal_error (__FILE__, __LINE__,
9b20d036 8103 _("unexpected end of 'g' packet reply"));
a744cf53
MS
8104 else if (rs->buf[r->offset * 2] == 'x')
8105 {
8d64371b 8106 gdb_assert (r->offset * 2 < strlen (rs->buf.data ()));
a744cf53
MS
8107 /* The register isn't available, mark it as such (at
8108 the same time setting the value to zero). */
73e1c03f 8109 regcache->raw_supply (r->regnum, NULL);
a744cf53
MS
8110 }
8111 else
73e1c03f 8112 regcache->raw_supply (r->regnum, regs + r->offset);
a744cf53
MS
8113 }
8114 }
c906108c
SS
8115}
8116
6b8edb51
PA
8117void
8118remote_target::fetch_registers_using_g (struct regcache *regcache)
29709017
DJ
8119{
8120 send_g_packet ();
56be3814 8121 process_g_packet (regcache);
29709017
DJ
8122}
8123
e6e4e701
PA
8124/* Make the remote selected traceframe match GDB's selected
8125 traceframe. */
8126
6b8edb51
PA
8127void
8128remote_target::set_remote_traceframe ()
e6e4e701
PA
8129{
8130 int newnum;
262e1174 8131 struct remote_state *rs = get_remote_state ();
e6e4e701 8132
262e1174 8133 if (rs->remote_traceframe_number == get_traceframe_number ())
e6e4e701
PA
8134 return;
8135
8136 /* Avoid recursion, remote_trace_find calls us again. */
262e1174 8137 rs->remote_traceframe_number = get_traceframe_number ();
e6e4e701
PA
8138
8139 newnum = target_trace_find (tfind_number,
8140 get_traceframe_number (), 0, 0, NULL);
8141
8142 /* Should not happen. If it does, all bets are off. */
8143 if (newnum != get_traceframe_number ())
8144 warning (_("could not set remote traceframe"));
8145}
8146
f6ac5f3d
PA
8147void
8148remote_target::fetch_registers (struct regcache *regcache, int regnum)
74ca34ce 8149{
ac7936df 8150 struct gdbarch *gdbarch = regcache->arch ();
9d6eea31
PA
8151 struct remote_state *rs = get_remote_state ();
8152 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
74ca34ce
DJ
8153 int i;
8154
e6e4e701 8155 set_remote_traceframe ();
222312d3 8156 set_general_thread (regcache->ptid ());
74ca34ce
DJ
8157
8158 if (regnum >= 0)
8159 {
5cd63fda 8160 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
a744cf53 8161
74ca34ce
DJ
8162 gdb_assert (reg != NULL);
8163
8164 /* If this register might be in the 'g' packet, try that first -
8165 we are likely to read more than one register. If this is the
8166 first 'g' packet, we might be overly optimistic about its
8167 contents, so fall back to 'p'. */
8168 if (reg->in_g_packet)
8169 {
56be3814 8170 fetch_registers_using_g (regcache);
74ca34ce
DJ
8171 if (reg->in_g_packet)
8172 return;
8173 }
8174
56be3814 8175 if (fetch_register_using_p (regcache, reg))
74ca34ce
DJ
8176 return;
8177
8178 /* This register is not available. */
73e1c03f 8179 regcache->raw_supply (reg->regnum, NULL);
74ca34ce
DJ
8180
8181 return;
8182 }
8183
56be3814 8184 fetch_registers_using_g (regcache);
74ca34ce 8185
5cd63fda 8186 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
74ca34ce 8187 if (!rsa->regs[i].in_g_packet)
56be3814 8188 if (!fetch_register_using_p (regcache, &rsa->regs[i]))
74ca34ce
DJ
8189 {
8190 /* This register is not available. */
73e1c03f 8191 regcache->raw_supply (i, NULL);
74ca34ce
DJ
8192 }
8193}
8194
c906108c
SS
8195/* Prepare to store registers. Since we may send them all (using a
8196 'G' request), we have to read out the ones we don't want to change
8197 first. */
8198
f6ac5f3d
PA
8199void
8200remote_target::prepare_to_store (struct regcache *regcache)
c906108c 8201{
9d6eea31
PA
8202 struct remote_state *rs = get_remote_state ();
8203 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
cf0e1e0d 8204 int i;
cf0e1e0d 8205
c906108c 8206 /* Make sure the entire registers array is valid. */
4082afcc 8207 switch (packet_support (PACKET_P))
5a2468f5
JM
8208 {
8209 case PACKET_DISABLE:
8210 case PACKET_SUPPORT_UNKNOWN:
cf0e1e0d 8211 /* Make sure all the necessary registers are cached. */
ac7936df 8212 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
ea9c271d 8213 if (rsa->regs[i].in_g_packet)
0b47d985 8214 regcache->raw_update (rsa->regs[i].regnum);
5a2468f5
JM
8215 break;
8216 case PACKET_ENABLE:
8217 break;
8218 }
8219}
8220
ad10f812 8221/* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
23860348 8222 packet was not recognized. */
5a2468f5 8223
6b8edb51
PA
8224int
8225remote_target::store_register_using_P (const struct regcache *regcache,
8226 packet_reg *reg)
5a2468f5 8227{
ac7936df 8228 struct gdbarch *gdbarch = regcache->arch ();
d01949b6 8229 struct remote_state *rs = get_remote_state ();
5a2468f5 8230 /* Try storing a single register. */
8d64371b 8231 char *buf = rs->buf.data ();
9890e433 8232 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
5a2468f5 8233 char *p;
5a2468f5 8234
4082afcc 8235 if (packet_support (PACKET_P) == PACKET_DISABLE)
74ca34ce
DJ
8236 return 0;
8237
8238 if (reg->pnum == -1)
8239 return 0;
8240
ea9c271d 8241 xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
5a2468f5 8242 p = buf + strlen (buf);
34a79281 8243 regcache->raw_collect (reg->regnum, regp);
4a22f64d 8244 bin2hex (regp, p, register_size (gdbarch, reg->regnum));
1f4437a4 8245 putpkt (rs->buf);
8d64371b 8246 getpkt (&rs->buf, 0);
5a2468f5 8247
74ca34ce
DJ
8248 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P]))
8249 {
8250 case PACKET_OK:
8251 return 1;
8252 case PACKET_ERROR:
27a9c0bf 8253 error (_("Could not write register \"%s\"; remote failure reply '%s'"),
8d64371b 8254 gdbarch_register_name (gdbarch, reg->regnum), rs->buf.data ());
74ca34ce
DJ
8255 case PACKET_UNKNOWN:
8256 return 0;
8257 default:
8258 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
8259 }
c906108c
SS
8260}
8261
23860348
MS
8262/* Store register REGNUM, or all registers if REGNUM == -1, from the
8263 contents of the register cache buffer. FIXME: ignores errors. */
c906108c 8264
6b8edb51
PA
8265void
8266remote_target::store_registers_using_G (const struct regcache *regcache)
c906108c 8267{
d01949b6 8268 struct remote_state *rs = get_remote_state ();
9d6eea31 8269 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
cfd77fa1 8270 gdb_byte *regs;
c906108c
SS
8271 char *p;
8272
193cb69f
AC
8273 /* Extract all the registers in the regcache copying them into a
8274 local buffer. */
8275 {
b323314b 8276 int i;
a744cf53 8277
224c3ddb 8278 regs = (gdb_byte *) alloca (rsa->sizeof_g_packet);
ea9c271d 8279 memset (regs, 0, rsa->sizeof_g_packet);
ac7936df 8280 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
193cb69f 8281 {
ea9c271d 8282 struct packet_reg *r = &rsa->regs[i];
a744cf53 8283
b323314b 8284 if (r->in_g_packet)
34a79281 8285 regcache->raw_collect (r->regnum, regs + r->offset);
193cb69f
AC
8286 }
8287 }
c906108c
SS
8288
8289 /* Command describes registers byte by byte,
8290 each byte encoded as two hex characters. */
8d64371b 8291 p = rs->buf.data ();
193cb69f 8292 *p++ = 'G';
74ca34ce 8293 bin2hex (regs, p, rsa->sizeof_g_packet);
1f4437a4 8294 putpkt (rs->buf);
8d64371b 8295 getpkt (&rs->buf, 0);
1f4437a4 8296 if (packet_check_result (rs->buf) == PACKET_ERROR)
27a9c0bf 8297 error (_("Could not write registers; remote failure reply '%s'"),
8d64371b 8298 rs->buf.data ());
c906108c 8299}
74ca34ce
DJ
8300
8301/* Store register REGNUM, or all registers if REGNUM == -1, from the contents
8302 of the register cache buffer. FIXME: ignores errors. */
8303
f6ac5f3d
PA
8304void
8305remote_target::store_registers (struct regcache *regcache, int regnum)
74ca34ce 8306{
5cd63fda 8307 struct gdbarch *gdbarch = regcache->arch ();
9d6eea31
PA
8308 struct remote_state *rs = get_remote_state ();
8309 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
74ca34ce
DJ
8310 int i;
8311
e6e4e701 8312 set_remote_traceframe ();
222312d3 8313 set_general_thread (regcache->ptid ());
74ca34ce
DJ
8314
8315 if (regnum >= 0)
8316 {
5cd63fda 8317 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
a744cf53 8318
74ca34ce
DJ
8319 gdb_assert (reg != NULL);
8320
8321 /* Always prefer to store registers using the 'P' packet if
8322 possible; we often change only a small number of registers.
8323 Sometimes we change a larger number; we'd need help from a
8324 higher layer to know to use 'G'. */
56be3814 8325 if (store_register_using_P (regcache, reg))
74ca34ce
DJ
8326 return;
8327
8328 /* For now, don't complain if we have no way to write the
8329 register. GDB loses track of unavailable registers too
8330 easily. Some day, this may be an error. We don't have
0df8b418 8331 any way to read the register, either... */
74ca34ce
DJ
8332 if (!reg->in_g_packet)
8333 return;
8334
56be3814 8335 store_registers_using_G (regcache);
74ca34ce
DJ
8336 return;
8337 }
8338
56be3814 8339 store_registers_using_G (regcache);
74ca34ce 8340
5cd63fda 8341 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
74ca34ce 8342 if (!rsa->regs[i].in_g_packet)
56be3814 8343 if (!store_register_using_P (regcache, &rsa->regs[i]))
74ca34ce
DJ
8344 /* See above for why we do not issue an error here. */
8345 continue;
8346}
c906108c
SS
8347\f
8348
8349/* Return the number of hex digits in num. */
8350
8351static int
fba45db2 8352hexnumlen (ULONGEST num)
c906108c
SS
8353{
8354 int i;
8355
8356 for (i = 0; num != 0; i++)
8357 num >>= 4;
8358
325fac50 8359 return std::max (i, 1);
c906108c
SS
8360}
8361
2df3850c 8362/* Set BUF to the minimum number of hex digits representing NUM. */
c906108c
SS
8363
8364static int
fba45db2 8365hexnumstr (char *buf, ULONGEST num)
c906108c 8366{
c906108c 8367 int len = hexnumlen (num);
a744cf53 8368
2df3850c
JM
8369 return hexnumnstr (buf, num, len);
8370}
8371
c906108c 8372
2df3850c 8373/* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
c906108c 8374
2df3850c 8375static int
fba45db2 8376hexnumnstr (char *buf, ULONGEST num, int width)
2df3850c
JM
8377{
8378 int i;
8379
8380 buf[width] = '\0';
8381
8382 for (i = width - 1; i >= 0; i--)
c906108c 8383 {
c5aa993b 8384 buf[i] = "0123456789abcdef"[(num & 0xf)];
c906108c
SS
8385 num >>= 4;
8386 }
8387
2df3850c 8388 return width;
c906108c
SS
8389}
8390
23860348 8391/* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
c906108c
SS
8392
8393static CORE_ADDR
fba45db2 8394remote_address_masked (CORE_ADDR addr)
c906108c 8395{
883b9c6c 8396 unsigned int address_size = remote_address_size;
a744cf53 8397
911c95a5
UW
8398 /* If "remoteaddresssize" was not set, default to target address size. */
8399 if (!address_size)
f5656ead 8400 address_size = gdbarch_addr_bit (target_gdbarch ());
911c95a5
UW
8401
8402 if (address_size > 0
8403 && address_size < (sizeof (ULONGEST) * 8))
c906108c
SS
8404 {
8405 /* Only create a mask when that mask can safely be constructed
23860348 8406 in a ULONGEST variable. */
c906108c 8407 ULONGEST mask = 1;
a744cf53 8408
911c95a5 8409 mask = (mask << address_size) - 1;
c906108c
SS
8410 addr &= mask;
8411 }
8412 return addr;
8413}
8414
8415/* Determine whether the remote target supports binary downloading.
8416 This is accomplished by sending a no-op memory write of zero length
8417 to the target at the specified address. It does not suffice to send
23860348
MS
8418 the whole packet, since many stubs strip the eighth bit and
8419 subsequently compute a wrong checksum, which causes real havoc with
8420 remote_write_bytes.
7a292a7a 8421
96baa820 8422 NOTE: This can still lose if the serial line is not eight-bit
0df8b418 8423 clean. In cases like this, the user should clear "remote
23860348 8424 X-packet". */
96baa820 8425
6b8edb51
PA
8426void
8427remote_target::check_binary_download (CORE_ADDR addr)
c906108c 8428{
d01949b6 8429 struct remote_state *rs = get_remote_state ();
24b06219 8430
4082afcc 8431 switch (packet_support (PACKET_X))
c906108c 8432 {
96baa820
JM
8433 case PACKET_DISABLE:
8434 break;
8435 case PACKET_ENABLE:
8436 break;
8437 case PACKET_SUPPORT_UNKNOWN:
8438 {
96baa820 8439 char *p;
802188a7 8440
8d64371b 8441 p = rs->buf.data ();
96baa820
JM
8442 *p++ = 'X';
8443 p += hexnumstr (p, (ULONGEST) addr);
8444 *p++ = ',';
8445 p += hexnumstr (p, (ULONGEST) 0);
8446 *p++ = ':';
8447 *p = '\0';
802188a7 8448
8d64371b
TT
8449 putpkt_binary (rs->buf.data (), (int) (p - rs->buf.data ()));
8450 getpkt (&rs->buf, 0);
c906108c 8451
2e9f7625 8452 if (rs->buf[0] == '\0')
96baa820
JM
8453 {
8454 if (remote_debug)
8455 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
8456 "binary downloading NOT "
8457 "supported by target\n");
444abaca 8458 remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
96baa820
JM
8459 }
8460 else
8461 {
8462 if (remote_debug)
8463 fprintf_unfiltered (gdb_stdlog,
64b9b334 8464 "binary downloading supported by target\n");
444abaca 8465 remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
96baa820
JM
8466 }
8467 break;
8468 }
c906108c
SS
8469 }
8470}
8471
124e13d9
SM
8472/* Helper function to resize the payload in order to try to get a good
8473 alignment. We try to write an amount of data such that the next write will
8474 start on an address aligned on REMOTE_ALIGN_WRITES. */
8475
8476static int
8477align_for_efficient_write (int todo, CORE_ADDR memaddr)
8478{
8479 return ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr;
8480}
8481
c906108c
SS
8482/* Write memory data directly to the remote machine.
8483 This does not inform the data cache; the data cache uses this.
a76d924d 8484 HEADER is the starting part of the packet.
c906108c
SS
8485 MEMADDR is the address in the remote memory space.
8486 MYADDR is the address of the buffer in our space.
124e13d9
SM
8487 LEN_UNITS is the number of addressable units to write.
8488 UNIT_SIZE is the length in bytes of an addressable unit.
a76d924d
DJ
8489 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
8490 should send data as binary ('X'), or hex-encoded ('M').
8491
8492 The function creates packet of the form
8493 <HEADER><ADDRESS>,<LENGTH>:<DATA>
8494
124e13d9 8495 where encoding of <DATA> is terminated by PACKET_FORMAT.
a76d924d
DJ
8496
8497 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
8498 are omitted.
8499
9b409511 8500 Return the transferred status, error or OK (an
124e13d9
SM
8501 'enum target_xfer_status' value). Save the number of addressable units
8502 transferred in *XFERED_LEN_UNITS. Only transfer a single packet.
8503
8504 On a platform with an addressable memory size of 2 bytes (UNIT_SIZE == 2), an
8505 exchange between gdb and the stub could look like (?? in place of the
8506 checksum):
8507
8508 -> $m1000,4#??
8509 <- aaaabbbbccccdddd
8510
8511 -> $M1000,3:eeeeffffeeee#??
8512 <- OK
8513
8514 -> $m1000,4#??
8515 <- eeeeffffeeeedddd */
c906108c 8516
6b8edb51
PA
8517target_xfer_status
8518remote_target::remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
8519 const gdb_byte *myaddr,
8520 ULONGEST len_units,
8521 int unit_size,
8522 ULONGEST *xfered_len_units,
8523 char packet_format, int use_length)
c906108c 8524{
6d820c5c 8525 struct remote_state *rs = get_remote_state ();
cfd77fa1 8526 char *p;
a76d924d
DJ
8527 char *plen = NULL;
8528 int plenlen = 0;
124e13d9
SM
8529 int todo_units;
8530 int units_written;
8531 int payload_capacity_bytes;
8532 int payload_length_bytes;
a76d924d
DJ
8533
8534 if (packet_format != 'X' && packet_format != 'M')
8535 internal_error (__FILE__, __LINE__,
9b20d036 8536 _("remote_write_bytes_aux: bad packet format"));
c906108c 8537
124e13d9 8538 if (len_units == 0)
9b409511 8539 return TARGET_XFER_EOF;
b2182ed2 8540
124e13d9 8541 payload_capacity_bytes = get_memory_write_packet_size ();
2bc416ba 8542
6d820c5c
DJ
8543 /* The packet buffer will be large enough for the payload;
8544 get_memory_packet_size ensures this. */
a76d924d 8545 rs->buf[0] = '\0';
c906108c 8546
a257b5bb 8547 /* Compute the size of the actual payload by subtracting out the
0df8b418
MS
8548 packet header and footer overhead: "$M<memaddr>,<len>:...#nn". */
8549
124e13d9 8550 payload_capacity_bytes -= strlen ("$,:#NN");
a76d924d 8551 if (!use_length)
0df8b418 8552 /* The comma won't be used. */
124e13d9
SM
8553 payload_capacity_bytes += 1;
8554 payload_capacity_bytes -= strlen (header);
8555 payload_capacity_bytes -= hexnumlen (memaddr);
c906108c 8556
a76d924d 8557 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
917317f4 8558
8d64371b
TT
8559 strcat (rs->buf.data (), header);
8560 p = rs->buf.data () + strlen (header);
a76d924d
DJ
8561
8562 /* Compute a best guess of the number of bytes actually transfered. */
8563 if (packet_format == 'X')
c906108c 8564 {
23860348 8565 /* Best guess at number of bytes that will fit. */
325fac50
PA
8566 todo_units = std::min (len_units,
8567 (ULONGEST) payload_capacity_bytes / unit_size);
a76d924d 8568 if (use_length)
124e13d9 8569 payload_capacity_bytes -= hexnumlen (todo_units);
325fac50 8570 todo_units = std::min (todo_units, payload_capacity_bytes / unit_size);
a76d924d
DJ
8571 }
8572 else
8573 {
124e13d9 8574 /* Number of bytes that will fit. */
325fac50
PA
8575 todo_units
8576 = std::min (len_units,
8577 (ULONGEST) (payload_capacity_bytes / unit_size) / 2);
a76d924d 8578 if (use_length)
124e13d9 8579 payload_capacity_bytes -= hexnumlen (todo_units);
325fac50
PA
8580 todo_units = std::min (todo_units,
8581 (payload_capacity_bytes / unit_size) / 2);
917317f4 8582 }
a76d924d 8583
124e13d9 8584 if (todo_units <= 0)
3de11b2e 8585 internal_error (__FILE__, __LINE__,
405f8e94 8586 _("minimum packet size too small to write data"));
802188a7 8587
6765f3e5
DJ
8588 /* If we already need another packet, then try to align the end
8589 of this packet to a useful boundary. */
124e13d9
SM
8590 if (todo_units > 2 * REMOTE_ALIGN_WRITES && todo_units < len_units)
8591 todo_units = align_for_efficient_write (todo_units, memaddr);
6765f3e5 8592
a257b5bb 8593 /* Append "<memaddr>". */
917317f4
JM
8594 memaddr = remote_address_masked (memaddr);
8595 p += hexnumstr (p, (ULONGEST) memaddr);
a257b5bb 8596
a76d924d
DJ
8597 if (use_length)
8598 {
8599 /* Append ",". */
8600 *p++ = ',';
802188a7 8601
124e13d9
SM
8602 /* Append the length and retain its location and size. It may need to be
8603 adjusted once the packet body has been created. */
a76d924d 8604 plen = p;
124e13d9 8605 plenlen = hexnumstr (p, (ULONGEST) todo_units);
a76d924d
DJ
8606 p += plenlen;
8607 }
a257b5bb
AC
8608
8609 /* Append ":". */
917317f4
JM
8610 *p++ = ':';
8611 *p = '\0';
802188a7 8612
a257b5bb 8613 /* Append the packet body. */
a76d924d 8614 if (packet_format == 'X')
917317f4 8615 {
917317f4
JM
8616 /* Binary mode. Send target system values byte by byte, in
8617 increasing byte addresses. Only escape certain critical
8618 characters. */
124e13d9
SM
8619 payload_length_bytes =
8620 remote_escape_output (myaddr, todo_units, unit_size, (gdb_byte *) p,
8621 &units_written, payload_capacity_bytes);
6765f3e5 8622
124e13d9 8623 /* If not all TODO units fit, then we'll need another packet. Make
9b7194bc
DJ
8624 a second try to keep the end of the packet aligned. Don't do
8625 this if the packet is tiny. */
124e13d9 8626 if (units_written < todo_units && units_written > 2 * REMOTE_ALIGN_WRITES)
6765f3e5 8627 {
124e13d9
SM
8628 int new_todo_units;
8629
8630 new_todo_units = align_for_efficient_write (units_written, memaddr);
8631
8632 if (new_todo_units != units_written)
8633 payload_length_bytes =
8634 remote_escape_output (myaddr, new_todo_units, unit_size,
8635 (gdb_byte *) p, &units_written,
8636 payload_capacity_bytes);
6765f3e5
DJ
8637 }
8638
124e13d9
SM
8639 p += payload_length_bytes;
8640 if (use_length && units_written < todo_units)
c906108c 8641 {
802188a7 8642 /* Escape chars have filled up the buffer prematurely,
124e13d9 8643 and we have actually sent fewer units than planned.
917317f4
JM
8644 Fix-up the length field of the packet. Use the same
8645 number of characters as before. */
124e13d9
SM
8646 plen += hexnumnstr (plen, (ULONGEST) units_written,
8647 plenlen);
917317f4 8648 *plen = ':'; /* overwrite \0 from hexnumnstr() */
c906108c 8649 }
a76d924d
DJ
8650 }
8651 else
8652 {
917317f4
JM
8653 /* Normal mode: Send target system values byte by byte, in
8654 increasing byte addresses. Each byte is encoded as a two hex
8655 value. */
124e13d9
SM
8656 p += 2 * bin2hex (myaddr, p, todo_units * unit_size);
8657 units_written = todo_units;
c906108c 8658 }
802188a7 8659
8d64371b
TT
8660 putpkt_binary (rs->buf.data (), (int) (p - rs->buf.data ()));
8661 getpkt (&rs->buf, 0);
802188a7 8662
2e9f7625 8663 if (rs->buf[0] == 'E')
00d84524 8664 return TARGET_XFER_E_IO;
802188a7 8665
124e13d9
SM
8666 /* Return UNITS_WRITTEN, not TODO_UNITS, in case escape chars caused us to
8667 send fewer units than we'd planned. */
8668 *xfered_len_units = (ULONGEST) units_written;
92ffd475 8669 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
c906108c
SS
8670}
8671
a76d924d
DJ
8672/* Write memory data directly to the remote machine.
8673 This does not inform the data cache; the data cache uses this.
8674 MEMADDR is the address in the remote memory space.
8675 MYADDR is the address of the buffer in our space.
8676 LEN is the number of bytes.
8677
9b409511
YQ
8678 Return the transferred status, error or OK (an
8679 'enum target_xfer_status' value). Save the number of bytes
8680 transferred in *XFERED_LEN. Only transfer a single packet. */
a76d924d 8681
6b8edb51
PA
8682target_xfer_status
8683remote_target::remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr,
8684 ULONGEST len, int unit_size,
8685 ULONGEST *xfered_len)
a76d924d 8686{
a121b7c1 8687 const char *packet_format = NULL;
a76d924d
DJ
8688
8689 /* Check whether the target supports binary download. */
8690 check_binary_download (memaddr);
8691
4082afcc 8692 switch (packet_support (PACKET_X))
a76d924d
DJ
8693 {
8694 case PACKET_ENABLE:
8695 packet_format = "X";
8696 break;
8697 case PACKET_DISABLE:
8698 packet_format = "M";
8699 break;
8700 case PACKET_SUPPORT_UNKNOWN:
8701 internal_error (__FILE__, __LINE__,
8702 _("remote_write_bytes: bad internal state"));
8703 default:
8704 internal_error (__FILE__, __LINE__, _("bad switch"));
8705 }
8706
8707 return remote_write_bytes_aux (packet_format,
124e13d9 8708 memaddr, myaddr, len, unit_size, xfered_len,
9b409511 8709 packet_format[0], 1);
a76d924d
DJ
8710}
8711
9217e74e
YQ
8712/* Read memory data directly from the remote machine.
8713 This does not use the data cache; the data cache uses this.
8714 MEMADDR is the address in the remote memory space.
8715 MYADDR is the address of the buffer in our space.
124e13d9
SM
8716 LEN_UNITS is the number of addressable memory units to read..
8717 UNIT_SIZE is the length in bytes of an addressable unit.
9217e74e
YQ
8718
8719 Return the transferred status, error or OK (an
8720 'enum target_xfer_status' value). Save the number of bytes
124e13d9
SM
8721 transferred in *XFERED_LEN_UNITS.
8722
8723 See the comment of remote_write_bytes_aux for an example of
8724 memory read/write exchange between gdb and the stub. */
9217e74e 8725
6b8edb51
PA
8726target_xfer_status
8727remote_target::remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr,
8728 ULONGEST len_units,
8729 int unit_size, ULONGEST *xfered_len_units)
9217e74e
YQ
8730{
8731 struct remote_state *rs = get_remote_state ();
124e13d9 8732 int buf_size_bytes; /* Max size of packet output buffer. */
9217e74e 8733 char *p;
124e13d9
SM
8734 int todo_units;
8735 int decoded_bytes;
9217e74e 8736
124e13d9 8737 buf_size_bytes = get_memory_read_packet_size ();
9217e74e
YQ
8738 /* The packet buffer will be large enough for the payload;
8739 get_memory_packet_size ensures this. */
8740
124e13d9 8741 /* Number of units that will fit. */
325fac50
PA
8742 todo_units = std::min (len_units,
8743 (ULONGEST) (buf_size_bytes / unit_size) / 2);
9217e74e
YQ
8744
8745 /* Construct "m"<memaddr>","<len>". */
8746 memaddr = remote_address_masked (memaddr);
8d64371b 8747 p = rs->buf.data ();
9217e74e
YQ
8748 *p++ = 'm';
8749 p += hexnumstr (p, (ULONGEST) memaddr);
8750 *p++ = ',';
124e13d9 8751 p += hexnumstr (p, (ULONGEST) todo_units);
9217e74e
YQ
8752 *p = '\0';
8753 putpkt (rs->buf);
8d64371b 8754 getpkt (&rs->buf, 0);
9217e74e
YQ
8755 if (rs->buf[0] == 'E'
8756 && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2])
8757 && rs->buf[3] == '\0')
8758 return TARGET_XFER_E_IO;
8759 /* Reply describes memory byte by byte, each byte encoded as two hex
8760 characters. */
8d64371b 8761 p = rs->buf.data ();
124e13d9 8762 decoded_bytes = hex2bin (p, myaddr, todo_units * unit_size);
9217e74e 8763 /* Return what we have. Let higher layers handle partial reads. */
124e13d9 8764 *xfered_len_units = (ULONGEST) (decoded_bytes / unit_size);
92ffd475 8765 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
9217e74e
YQ
8766}
8767
b55fbac4
YQ
8768/* Using the set of read-only target sections of remote, read live
8769 read-only memory.
8acf9577
YQ
8770
8771 For interface/parameters/return description see target.h,
8772 to_xfer_partial. */
8773
6b8edb51
PA
8774target_xfer_status
8775remote_target::remote_xfer_live_readonly_partial (gdb_byte *readbuf,
8776 ULONGEST memaddr,
8777 ULONGEST len,
8778 int unit_size,
8779 ULONGEST *xfered_len)
8acf9577
YQ
8780{
8781 struct target_section *secp;
8782 struct target_section_table *table;
8783
6b8edb51 8784 secp = target_section_by_addr (this, memaddr);
8acf9577 8785 if (secp != NULL
fd361982 8786 && (bfd_section_flags (secp->the_bfd_section) & SEC_READONLY))
8acf9577
YQ
8787 {
8788 struct target_section *p;
8789 ULONGEST memend = memaddr + len;
8790
6b8edb51 8791 table = target_get_section_table (this);
8acf9577
YQ
8792
8793 for (p = table->sections; p < table->sections_end; p++)
8794 {
8795 if (memaddr >= p->addr)
8796 {
8797 if (memend <= p->endaddr)
8798 {
8799 /* Entire transfer is within this section. */
124e13d9 8800 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 8801 xfered_len);
8acf9577
YQ
8802 }
8803 else if (memaddr >= p->endaddr)
8804 {
8805 /* This section ends before the transfer starts. */
8806 continue;
8807 }
8808 else
8809 {
8810 /* This section overlaps the transfer. Just do half. */
8811 len = p->endaddr - memaddr;
124e13d9 8812 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 8813 xfered_len);
8acf9577
YQ
8814 }
8815 }
8816 }
8817 }
8818
8819 return TARGET_XFER_EOF;
8820}
8821
9217e74e
YQ
8822/* Similar to remote_read_bytes_1, but it reads from the remote stub
8823 first if the requested memory is unavailable in traceframe.
8824 Otherwise, fall back to remote_read_bytes_1. */
c906108c 8825
6b8edb51
PA
8826target_xfer_status
8827remote_target::remote_read_bytes (CORE_ADDR memaddr,
8828 gdb_byte *myaddr, ULONGEST len, int unit_size,
8829 ULONGEST *xfered_len)
c906108c 8830{
6b6aa828 8831 if (len == 0)
96c4f946 8832 return TARGET_XFER_EOF;
b2182ed2 8833
8acf9577
YQ
8834 if (get_traceframe_number () != -1)
8835 {
a79b1bc6 8836 std::vector<mem_range> available;
8acf9577
YQ
8837
8838 /* If we fail to get the set of available memory, then the
8839 target does not support querying traceframe info, and so we
8840 attempt reading from the traceframe anyway (assuming the
8841 target implements the old QTro packet then). */
8842 if (traceframe_available_memory (&available, memaddr, len))
8843 {
a79b1bc6 8844 if (available.empty () || available[0].start != memaddr)
8acf9577
YQ
8845 {
8846 enum target_xfer_status res;
8847
8848 /* Don't read into the traceframe's available
8849 memory. */
a79b1bc6 8850 if (!available.empty ())
8acf9577
YQ
8851 {
8852 LONGEST oldlen = len;
8853
a79b1bc6 8854 len = available[0].start - memaddr;
8acf9577
YQ
8855 gdb_assert (len <= oldlen);
8856 }
8857
8acf9577 8858 /* This goes through the topmost target again. */
6b8edb51 8859 res = remote_xfer_live_readonly_partial (myaddr, memaddr,
124e13d9 8860 len, unit_size, xfered_len);
8acf9577
YQ
8861 if (res == TARGET_XFER_OK)
8862 return TARGET_XFER_OK;
8863 else
8864 {
8865 /* No use trying further, we know some memory starting
8866 at MEMADDR isn't available. */
8867 *xfered_len = len;
92ffd475
PC
8868 return (*xfered_len != 0) ?
8869 TARGET_XFER_UNAVAILABLE : TARGET_XFER_EOF;
8acf9577
YQ
8870 }
8871 }
8872
8873 /* Don't try to read more than how much is available, in
8874 case the target implements the deprecated QTro packet to
8875 cater for older GDBs (the target's knowledge of read-only
8876 sections may be outdated by now). */
a79b1bc6 8877 len = available[0].length;
8acf9577
YQ
8878 }
8879 }
8880
124e13d9 8881 return remote_read_bytes_1 (memaddr, myaddr, len, unit_size, xfered_len);
c906108c 8882}
74531fed 8883
c906108c 8884\f
c906108c 8885
a76d924d
DJ
8886/* Sends a packet with content determined by the printf format string
8887 FORMAT and the remaining arguments, then gets the reply. Returns
8888 whether the packet was a success, a failure, or unknown. */
8889
6b8edb51
PA
8890packet_result
8891remote_target::remote_send_printf (const char *format, ...)
a76d924d
DJ
8892{
8893 struct remote_state *rs = get_remote_state ();
8894 int max_size = get_remote_packet_size ();
a76d924d 8895 va_list ap;
a744cf53 8896
a76d924d
DJ
8897 va_start (ap, format);
8898
8899 rs->buf[0] = '\0';
8d64371b 8900 int size = vsnprintf (rs->buf.data (), max_size, format, ap);
33b031ce
GB
8901
8902 va_end (ap);
8903
8904 if (size >= max_size)
9b20d036 8905 internal_error (__FILE__, __LINE__, _("Too long remote packet."));
a76d924d
DJ
8906
8907 if (putpkt (rs->buf) < 0)
8908 error (_("Communication problem with target."));
8909
8910 rs->buf[0] = '\0';
8d64371b 8911 getpkt (&rs->buf, 0);
a76d924d
DJ
8912
8913 return packet_check_result (rs->buf);
8914}
8915
a76d924d
DJ
8916/* Flash writing can take quite some time. We'll set
8917 effectively infinite timeout for flash operations.
8918 In future, we'll need to decide on a better approach. */
8919static const int remote_flash_timeout = 1000;
8920
f6ac5f3d
PA
8921void
8922remote_target::flash_erase (ULONGEST address, LONGEST length)
a76d924d 8923{
f5656ead 8924 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
a76d924d 8925 enum packet_result ret;
2ec845e7
TT
8926 scoped_restore restore_timeout
8927 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
a76d924d
DJ
8928
8929 ret = remote_send_printf ("vFlashErase:%s,%s",
5af949e3 8930 phex (address, addr_size),
a76d924d
DJ
8931 phex (length, 4));
8932 switch (ret)
8933 {
8934 case PACKET_UNKNOWN:
8935 error (_("Remote target does not support flash erase"));
8936 case PACKET_ERROR:
8937 error (_("Error erasing flash with vFlashErase packet"));
8938 default:
8939 break;
8940 }
a76d924d
DJ
8941}
8942
6b8edb51
PA
8943target_xfer_status
8944remote_target::remote_flash_write (ULONGEST address,
8945 ULONGEST length, ULONGEST *xfered_len,
8946 const gdb_byte *data)
a76d924d 8947{
2ec845e7
TT
8948 scoped_restore restore_timeout
8949 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
8950 return remote_write_bytes_aux ("vFlashWrite:", address, data, length, 1,
8951 xfered_len,'X', 0);
a76d924d
DJ
8952}
8953
f6ac5f3d
PA
8954void
8955remote_target::flash_done ()
a76d924d 8956{
a76d924d 8957 int ret;
a76d924d 8958
2ec845e7
TT
8959 scoped_restore restore_timeout
8960 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
8961
a76d924d 8962 ret = remote_send_printf ("vFlashDone");
a76d924d
DJ
8963
8964 switch (ret)
8965 {
8966 case PACKET_UNKNOWN:
8967 error (_("Remote target does not support vFlashDone"));
8968 case PACKET_ERROR:
8969 error (_("Error finishing flash operation"));
8970 default:
8971 break;
8972 }
8973}
8974
f6ac5f3d
PA
8975void
8976remote_target::files_info ()
c906108c
SS
8977{
8978 puts_filtered ("Debugging a target over a serial line.\n");
8979}
8980\f
8981/* Stuff for dealing with the packets which are part of this protocol.
8982 See comment at top of file for details. */
8983
1927e618
PA
8984/* Close/unpush the remote target, and throw a TARGET_CLOSE_ERROR
8985 error to higher layers. Called when a serial error is detected.
8986 The exception message is STRING, followed by a colon and a blank,
d6cb50a2
JK
8987 the system error message for errno at function entry and final dot
8988 for output compatibility with throw_perror_with_name. */
1927e618
PA
8989
8990static void
8991unpush_and_perror (const char *string)
8992{
d6cb50a2 8993 int saved_errno = errno;
1927e618
PA
8994
8995 remote_unpush_target ();
d6cb50a2
JK
8996 throw_error (TARGET_CLOSE_ERROR, "%s: %s.", string,
8997 safe_strerror (saved_errno));
1927e618
PA
8998}
8999
048094ac
PA
9000/* Read a single character from the remote end. The current quit
9001 handler is overridden to avoid quitting in the middle of packet
9002 sequence, as that would break communication with the remote server.
9003 See remote_serial_quit_handler for more detail. */
c906108c 9004
6b8edb51
PA
9005int
9006remote_target::readchar (int timeout)
c906108c
SS
9007{
9008 int ch;
5d93a237 9009 struct remote_state *rs = get_remote_state ();
048094ac 9010
2ec845e7 9011 {
6b8edb51
PA
9012 scoped_restore restore_quit_target
9013 = make_scoped_restore (&curr_quit_handler_target, this);
2ec845e7 9014 scoped_restore restore_quit
6b8edb51 9015 = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
c906108c 9016
2ec845e7 9017 rs->got_ctrlc_during_io = 0;
c906108c 9018
2ec845e7 9019 ch = serial_readchar (rs->remote_desc, timeout);
048094ac 9020
2ec845e7
TT
9021 if (rs->got_ctrlc_during_io)
9022 set_quit_flag ();
9023 }
048094ac 9024
2acceee2 9025 if (ch >= 0)
0876f84a 9026 return ch;
2acceee2
JM
9027
9028 switch ((enum serial_rc) ch)
c906108c
SS
9029 {
9030 case SERIAL_EOF:
78a095c3 9031 remote_unpush_target ();
598d3636 9032 throw_error (TARGET_CLOSE_ERROR, _("Remote connection closed"));
2acceee2 9033 /* no return */
c906108c 9034 case SERIAL_ERROR:
1927e618
PA
9035 unpush_and_perror (_("Remote communication error. "
9036 "Target disconnected."));
2acceee2 9037 /* no return */
c906108c 9038 case SERIAL_TIMEOUT:
2acceee2 9039 break;
c906108c 9040 }
2acceee2 9041 return ch;
c906108c
SS
9042}
9043
c33e31fd 9044/* Wrapper for serial_write that closes the target and throws if
048094ac
PA
9045 writing fails. The current quit handler is overridden to avoid
9046 quitting in the middle of packet sequence, as that would break
9047 communication with the remote server. See
9048 remote_serial_quit_handler for more detail. */
c33e31fd 9049
6b8edb51
PA
9050void
9051remote_target::remote_serial_write (const char *str, int len)
c33e31fd 9052{
5d93a237 9053 struct remote_state *rs = get_remote_state ();
048094ac 9054
6b8edb51
PA
9055 scoped_restore restore_quit_target
9056 = make_scoped_restore (&curr_quit_handler_target, this);
2ec845e7 9057 scoped_restore restore_quit
6b8edb51 9058 = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
048094ac
PA
9059
9060 rs->got_ctrlc_during_io = 0;
5d93a237
TT
9061
9062 if (serial_write (rs->remote_desc, str, len))
c33e31fd 9063 {
1927e618
PA
9064 unpush_and_perror (_("Remote communication error. "
9065 "Target disconnected."));
c33e31fd 9066 }
048094ac
PA
9067
9068 if (rs->got_ctrlc_during_io)
9069 set_quit_flag ();
c33e31fd
PA
9070}
9071
b3ced9ba
PA
9072/* Return a string representing an escaped version of BUF, of len N.
9073 E.g. \n is converted to \\n, \t to \\t, etc. */
6e5abd65 9074
b3ced9ba 9075static std::string
6e5abd65
PA
9076escape_buffer (const char *buf, int n)
9077{
d7e74731 9078 string_file stb;
6e5abd65 9079
d7e74731
PA
9080 stb.putstrn (buf, n, '\\');
9081 return std::move (stb.string ());
6e5abd65
PA
9082}
9083
c906108c
SS
9084/* Display a null-terminated packet on stdout, for debugging, using C
9085 string notation. */
9086
9087static void
baa336ce 9088print_packet (const char *buf)
c906108c
SS
9089{
9090 puts_filtered ("\"");
43e526b9 9091 fputstr_filtered (buf, '"', gdb_stdout);
c906108c
SS
9092 puts_filtered ("\"");
9093}
9094
9095int
6b8edb51 9096remote_target::putpkt (const char *buf)
c906108c
SS
9097{
9098 return putpkt_binary (buf, strlen (buf));
9099}
9100
6b8edb51
PA
9101/* Wrapper around remote_target::putpkt to avoid exporting
9102 remote_target. */
9103
9104int
9105putpkt (remote_target *remote, const char *buf)
9106{
9107 return remote->putpkt (buf);
9108}
9109
c906108c 9110/* Send a packet to the remote machine, with error checking. The data
23860348 9111 of the packet is in BUF. The string in BUF can be at most
ea9c271d 9112 get_remote_packet_size () - 5 to account for the $, # and checksum,
23860348
MS
9113 and for a possible /0 if we are debugging (remote_debug) and want
9114 to print the sent packet as a string. */
c906108c 9115
6b8edb51
PA
9116int
9117remote_target::putpkt_binary (const char *buf, int cnt)
c906108c 9118{
2d717e4f 9119 struct remote_state *rs = get_remote_state ();
c906108c
SS
9120 int i;
9121 unsigned char csum = 0;
b80406ac
TT
9122 gdb::def_vector<char> data (cnt + 6);
9123 char *buf2 = data.data ();
085dd6e6 9124
c906108c
SS
9125 int ch;
9126 int tcount = 0;
9127 char *p;
9128
e24a49d8
PA
9129 /* Catch cases like trying to read memory or listing threads while
9130 we're waiting for a stop reply. The remote server wouldn't be
9131 ready to handle this request, so we'd hang and timeout. We don't
9132 have to worry about this in synchronous mode, because in that
9133 case it's not possible to issue a command while the target is
74531fed
PA
9134 running. This is not a problem in non-stop mode, because in that
9135 case, the stub is always ready to process serial input. */
6efcd9a8
PA
9136 if (!target_is_non_stop_p ()
9137 && target_is_async_p ()
9138 && rs->waiting_for_stop_reply)
9597b22a
DE
9139 {
9140 error (_("Cannot execute this command while the target is running.\n"
9141 "Use the \"interrupt\" command to stop the target\n"
9142 "and then try again."));
9143 }
e24a49d8 9144
2d717e4f
DJ
9145 /* We're sending out a new packet. Make sure we don't look at a
9146 stale cached response. */
9147 rs->cached_wait_status = 0;
9148
c906108c
SS
9149 /* Copy the packet into buffer BUF2, encapsulating it
9150 and giving it a checksum. */
9151
c906108c
SS
9152 p = buf2;
9153 *p++ = '$';
9154
9155 for (i = 0; i < cnt; i++)
9156 {
9157 csum += buf[i];
9158 *p++ = buf[i];
9159 }
9160 *p++ = '#';
9161 *p++ = tohex ((csum >> 4) & 0xf);
9162 *p++ = tohex (csum & 0xf);
9163
9164 /* Send it over and over until we get a positive ack. */
9165
9166 while (1)
9167 {
9168 int started_error_output = 0;
9169
9170 if (remote_debug)
9171 {
9172 *p = '\0';
b3ced9ba 9173
6f8976bf 9174 int len = (int) (p - buf2);
6cc8564b
LM
9175 int max_chars;
9176
9177 if (remote_packet_max_chars < 0)
9178 max_chars = len;
9179 else
9180 max_chars = remote_packet_max_chars;
6f8976bf
YQ
9181
9182 std::string str
6cc8564b 9183 = escape_buffer (buf2, std::min (len, max_chars));
6f8976bf
YQ
9184
9185 fprintf_unfiltered (gdb_stdlog, "Sending packet: %s", str.c_str ());
9186
6cc8564b 9187 if (len > max_chars)
567a3e54 9188 fprintf_unfiltered (gdb_stdlog, "[%d bytes omitted]",
6cc8564b 9189 len - max_chars);
6f8976bf
YQ
9190
9191 fprintf_unfiltered (gdb_stdlog, "...");
b3ced9ba 9192
0f71a2f6 9193 gdb_flush (gdb_stdlog);
c906108c 9194 }
c33e31fd 9195 remote_serial_write (buf2, p - buf2);
c906108c 9196
a6f3e723
SL
9197 /* If this is a no acks version of the remote protocol, send the
9198 packet and move on. */
9199 if (rs->noack_mode)
9200 break;
9201
74531fed
PA
9202 /* Read until either a timeout occurs (-2) or '+' is read.
9203 Handle any notification that arrives in the mean time. */
c906108c
SS
9204 while (1)
9205 {
9206 ch = readchar (remote_timeout);
9207
c5aa993b 9208 if (remote_debug)
c906108c
SS
9209 {
9210 switch (ch)
9211 {
9212 case '+':
1216fa2c 9213 case '-':
c906108c
SS
9214 case SERIAL_TIMEOUT:
9215 case '$':
74531fed 9216 case '%':
c906108c
SS
9217 if (started_error_output)
9218 {
9219 putchar_unfiltered ('\n');
9220 started_error_output = 0;
9221 }
9222 }
9223 }
9224
9225 switch (ch)
9226 {
9227 case '+':
9228 if (remote_debug)
0f71a2f6 9229 fprintf_unfiltered (gdb_stdlog, "Ack\n");
c906108c 9230 return 1;
1216fa2c
AC
9231 case '-':
9232 if (remote_debug)
9233 fprintf_unfiltered (gdb_stdlog, "Nak\n");
a17d146e 9234 /* FALLTHROUGH */
c906108c 9235 case SERIAL_TIMEOUT:
c5aa993b 9236 tcount++;
c906108c 9237 if (tcount > 3)
b80406ac 9238 return 0;
23860348 9239 break; /* Retransmit buffer. */
c906108c
SS
9240 case '$':
9241 {
40e3f985 9242 if (remote_debug)
2bc416ba 9243 fprintf_unfiltered (gdb_stdlog,
23860348 9244 "Packet instead of Ack, ignoring it\n");
d6f7abdf
AC
9245 /* It's probably an old response sent because an ACK
9246 was lost. Gobble up the packet and ack it so it
9247 doesn't get retransmitted when we resend this
9248 packet. */
6d820c5c 9249 skip_frame ();
c33e31fd 9250 remote_serial_write ("+", 1);
23860348 9251 continue; /* Now, go look for +. */
c906108c 9252 }
74531fed
PA
9253
9254 case '%':
9255 {
9256 int val;
9257
9258 /* If we got a notification, handle it, and go back to looking
9259 for an ack. */
9260 /* We've found the start of a notification. Now
9261 collect the data. */
8d64371b 9262 val = read_frame (&rs->buf);
74531fed
PA
9263 if (val >= 0)
9264 {
9265 if (remote_debug)
9266 {
8d64371b 9267 std::string str = escape_buffer (rs->buf.data (), val);
6e5abd65 9268
6e5abd65
PA
9269 fprintf_unfiltered (gdb_stdlog,
9270 " Notification received: %s\n",
b3ced9ba 9271 str.c_str ());
74531fed 9272 }
8d64371b 9273 handle_notification (rs->notif_state, rs->buf.data ());
74531fed
PA
9274 /* We're in sync now, rewait for the ack. */
9275 tcount = 0;
9276 }
9277 else
9278 {
9279 if (remote_debug)
9280 {
9281 if (!started_error_output)
9282 {
9283 started_error_output = 1;
9284 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
9285 }
9286 fputc_unfiltered (ch & 0177, gdb_stdlog);
8d64371b 9287 fprintf_unfiltered (gdb_stdlog, "%s", rs->buf.data ());
74531fed
PA
9288 }
9289 }
9290 continue;
9291 }
9292 /* fall-through */
c906108c
SS
9293 default:
9294 if (remote_debug)
9295 {
9296 if (!started_error_output)
9297 {
9298 started_error_output = 1;
0f71a2f6 9299 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
c906108c 9300 }
0f71a2f6 9301 fputc_unfiltered (ch & 0177, gdb_stdlog);
c906108c
SS
9302 }
9303 continue;
9304 }
23860348 9305 break; /* Here to retransmit. */
c906108c
SS
9306 }
9307
9308#if 0
9309 /* This is wrong. If doing a long backtrace, the user should be
c5aa993b
JM
9310 able to get out next time we call QUIT, without anything as
9311 violent as interrupt_query. If we want to provide a way out of
9312 here without getting to the next QUIT, it should be based on
9313 hitting ^C twice as in remote_wait. */
c906108c
SS
9314 if (quit_flag)
9315 {
9316 quit_flag = 0;
9317 interrupt_query ();
9318 }
9319#endif
9320 }
a5c0808e 9321
a6f3e723 9322 return 0;
c906108c
SS
9323}
9324
6d820c5c
DJ
9325/* Come here after finding the start of a frame when we expected an
9326 ack. Do our best to discard the rest of this packet. */
9327
6b8edb51
PA
9328void
9329remote_target::skip_frame ()
6d820c5c
DJ
9330{
9331 int c;
9332
9333 while (1)
9334 {
9335 c = readchar (remote_timeout);
9336 switch (c)
9337 {
9338 case SERIAL_TIMEOUT:
9339 /* Nothing we can do. */
9340 return;
9341 case '#':
9342 /* Discard the two bytes of checksum and stop. */
9343 c = readchar (remote_timeout);
9344 if (c >= 0)
9345 c = readchar (remote_timeout);
9346
9347 return;
9348 case '*': /* Run length encoding. */
9349 /* Discard the repeat count. */
9350 c = readchar (remote_timeout);
9351 if (c < 0)
9352 return;
9353 break;
9354 default:
9355 /* A regular character. */
9356 break;
9357 }
9358 }
9359}
9360
c906108c 9361/* Come here after finding the start of the frame. Collect the rest
6d820c5c
DJ
9362 into *BUF, verifying the checksum, length, and handling run-length
9363 compression. NUL terminate the buffer. If there is not enough room,
8d64371b 9364 expand *BUF.
c906108c 9365
c2d11a7d
JM
9366 Returns -1 on error, number of characters in buffer (ignoring the
9367 trailing NULL) on success. (could be extended to return one of the
23860348 9368 SERIAL status indications). */
c2d11a7d 9369
6b8edb51 9370long
8d64371b 9371remote_target::read_frame (gdb::char_vector *buf_p)
c906108c
SS
9372{
9373 unsigned char csum;
c2d11a7d 9374 long bc;
c906108c 9375 int c;
8d64371b 9376 char *buf = buf_p->data ();
a6f3e723 9377 struct remote_state *rs = get_remote_state ();
c906108c
SS
9378
9379 csum = 0;
c2d11a7d 9380 bc = 0;
c906108c
SS
9381
9382 while (1)
9383 {
9384 c = readchar (remote_timeout);
c906108c
SS
9385 switch (c)
9386 {
9387 case SERIAL_TIMEOUT:
9388 if (remote_debug)
0f71a2f6 9389 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog);
c2d11a7d 9390 return -1;
c906108c
SS
9391 case '$':
9392 if (remote_debug)
0f71a2f6
JM
9393 fputs_filtered ("Saw new packet start in middle of old one\n",
9394 gdb_stdlog);
23860348 9395 return -1; /* Start a new packet, count retries. */
c906108c
SS
9396 case '#':
9397 {
9398 unsigned char pktcsum;
e1b09194
AC
9399 int check_0 = 0;
9400 int check_1 = 0;
c906108c 9401
c2d11a7d 9402 buf[bc] = '\0';
c906108c 9403
e1b09194
AC
9404 check_0 = readchar (remote_timeout);
9405 if (check_0 >= 0)
9406 check_1 = readchar (remote_timeout);
802188a7 9407
e1b09194
AC
9408 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
9409 {
9410 if (remote_debug)
2bc416ba 9411 fputs_filtered ("Timeout in checksum, retrying\n",
23860348 9412 gdb_stdlog);
e1b09194
AC
9413 return -1;
9414 }
9415 else if (check_0 < 0 || check_1 < 0)
40e3f985
FN
9416 {
9417 if (remote_debug)
2bc416ba 9418 fputs_filtered ("Communication error in checksum\n",
23860348 9419 gdb_stdlog);
40e3f985
FN
9420 return -1;
9421 }
c906108c 9422
a6f3e723
SL
9423 /* Don't recompute the checksum; with no ack packets we
9424 don't have any way to indicate a packet retransmission
9425 is necessary. */
9426 if (rs->noack_mode)
9427 return bc;
9428
e1b09194 9429 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
c906108c 9430 if (csum == pktcsum)
c2d11a7d 9431 return bc;
c906108c 9432
c5aa993b 9433 if (remote_debug)
c906108c 9434 {
b3ced9ba 9435 std::string str = escape_buffer (buf, bc);
6e5abd65 9436
6e5abd65 9437 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
9438 "Bad checksum, sentsum=0x%x, "
9439 "csum=0x%x, buf=%s\n",
b3ced9ba 9440 pktcsum, csum, str.c_str ());
c906108c 9441 }
c2d11a7d 9442 /* Number of characters in buffer ignoring trailing
23860348 9443 NULL. */
c2d11a7d 9444 return -1;
c906108c 9445 }
23860348 9446 case '*': /* Run length encoding. */
c2c6d25f
JM
9447 {
9448 int repeat;
c906108c 9449
a744cf53 9450 csum += c;
b4501125
AC
9451 c = readchar (remote_timeout);
9452 csum += c;
23860348 9453 repeat = c - ' ' + 3; /* Compute repeat count. */
c906108c 9454
23860348 9455 /* The character before ``*'' is repeated. */
c2d11a7d 9456
6d820c5c 9457 if (repeat > 0 && repeat <= 255 && bc > 0)
c2c6d25f 9458 {
8d64371b 9459 if (bc + repeat - 1 >= buf_p->size () - 1)
6d820c5c
DJ
9460 {
9461 /* Make some more room in the buffer. */
8d64371b
TT
9462 buf_p->resize (buf_p->size () + repeat);
9463 buf = buf_p->data ();
6d820c5c
DJ
9464 }
9465
c2d11a7d
JM
9466 memset (&buf[bc], buf[bc - 1], repeat);
9467 bc += repeat;
c2c6d25f
JM
9468 continue;
9469 }
9470
c2d11a7d 9471 buf[bc] = '\0';
6d820c5c 9472 printf_filtered (_("Invalid run length encoding: %s\n"), buf);
c2d11a7d 9473 return -1;
c2c6d25f 9474 }
c906108c 9475 default:
8d64371b 9476 if (bc >= buf_p->size () - 1)
c906108c 9477 {
6d820c5c 9478 /* Make some more room in the buffer. */
8d64371b
TT
9479 buf_p->resize (buf_p->size () * 2);
9480 buf = buf_p->data ();
c906108c
SS
9481 }
9482
6d820c5c
DJ
9483 buf[bc++] = c;
9484 csum += c;
9485 continue;
c906108c
SS
9486 }
9487 }
9488}
9489
ed2b7c17
TT
9490/* Set this to the maximum number of seconds to wait instead of waiting forever
9491 in target_wait(). If this timer times out, then it generates an error and
9492 the command is aborted. This replaces most of the need for timeouts in the
9493 GDB test suite, and makes it possible to distinguish between a hung target
9494 and one with slow communications. */
9495
9496static int watchdog = 0;
9497static void
9498show_watchdog (struct ui_file *file, int from_tty,
9499 struct cmd_list_element *c, const char *value)
9500{
9501 fprintf_filtered (file, _("Watchdog timer is %s.\n"), value);
9502}
9503
c906108c 9504/* Read a packet from the remote machine, with error checking, and
8d64371b
TT
9505 store it in *BUF. Resize *BUF if necessary to hold the result. If
9506 FOREVER, wait forever rather than timing out; this is used (in
9507 synchronous mode) to wait for a target that is is executing user
9508 code to stop. */
d9fcf2fb
JM
9509/* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
9510 don't have to change all the calls to getpkt to deal with the
9511 return value, because at the moment I don't know what the right
23860348 9512 thing to do it for those. */
6b8edb51 9513
c906108c 9514void
8d64371b 9515remote_target::getpkt (gdb::char_vector *buf, int forever)
d9fcf2fb 9516{
8d64371b 9517 getpkt_sane (buf, forever);
d9fcf2fb
JM
9518}
9519
9520
9521/* Read a packet from the remote machine, with error checking, and
8d64371b
TT
9522 store it in *BUF. Resize *BUF if necessary to hold the result. If
9523 FOREVER, wait forever rather than timing out; this is used (in
9524 synchronous mode) to wait for a target that is is executing user
9525 code to stop. If FOREVER == 0, this function is allowed to time
9526 out gracefully and return an indication of this to the caller.
9527 Otherwise return the number of bytes read. If EXPECTING_NOTIF,
9528 consider receiving a notification enough reason to return to the
9529 caller. *IS_NOTIF is an output boolean that indicates whether *BUF
9530 holds a notification or not (a regular packet). */
74531fed 9531
6b8edb51 9532int
8d64371b 9533remote_target::getpkt_or_notif_sane_1 (gdb::char_vector *buf,
6b8edb51
PA
9534 int forever, int expecting_notif,
9535 int *is_notif)
c906108c 9536{
2d717e4f 9537 struct remote_state *rs = get_remote_state ();
c906108c
SS
9538 int c;
9539 int tries;
9540 int timeout;
df4b58fe 9541 int val = -1;
c906108c 9542
2d717e4f
DJ
9543 /* We're reading a new response. Make sure we don't look at a
9544 previously cached response. */
9545 rs->cached_wait_status = 0;
9546
8d64371b 9547 strcpy (buf->data (), "timeout");
c906108c
SS
9548
9549 if (forever)
74531fed
PA
9550 timeout = watchdog > 0 ? watchdog : -1;
9551 else if (expecting_notif)
9552 timeout = 0; /* There should already be a char in the buffer. If
9553 not, bail out. */
c906108c
SS
9554 else
9555 timeout = remote_timeout;
9556
9557#define MAX_TRIES 3
9558
74531fed
PA
9559 /* Process any number of notifications, and then return when
9560 we get a packet. */
9561 for (;;)
c906108c 9562 {
d9c43928 9563 /* If we get a timeout or bad checksum, retry up to MAX_TRIES
74531fed
PA
9564 times. */
9565 for (tries = 1; tries <= MAX_TRIES; tries++)
c906108c 9566 {
74531fed
PA
9567 /* This can loop forever if the remote side sends us
9568 characters continuously, but if it pauses, we'll get
9569 SERIAL_TIMEOUT from readchar because of timeout. Then
9570 we'll count that as a retry.
9571
9572 Note that even when forever is set, we will only wait
9573 forever prior to the start of a packet. After that, we
9574 expect characters to arrive at a brisk pace. They should
9575 show up within remote_timeout intervals. */
9576 do
9577 c = readchar (timeout);
9578 while (c != SERIAL_TIMEOUT && c != '$' && c != '%');
c906108c
SS
9579
9580 if (c == SERIAL_TIMEOUT)
9581 {
74531fed
PA
9582 if (expecting_notif)
9583 return -1; /* Don't complain, it's normal to not get
9584 anything in this case. */
9585
23860348 9586 if (forever) /* Watchdog went off? Kill the target. */
c906108c 9587 {
78a095c3 9588 remote_unpush_target ();
598d3636
JK
9589 throw_error (TARGET_CLOSE_ERROR,
9590 _("Watchdog timeout has expired. "
9591 "Target detached."));
c906108c 9592 }
c906108c 9593 if (remote_debug)
0f71a2f6 9594 fputs_filtered ("Timed out.\n", gdb_stdlog);
c906108c 9595 }
74531fed
PA
9596 else
9597 {
9598 /* We've found the start of a packet or notification.
9599 Now collect the data. */
8d64371b 9600 val = read_frame (buf);
74531fed
PA
9601 if (val >= 0)
9602 break;
9603 }
9604
c33e31fd 9605 remote_serial_write ("-", 1);
c906108c 9606 }
c906108c 9607
74531fed
PA
9608 if (tries > MAX_TRIES)
9609 {
9610 /* We have tried hard enough, and just can't receive the
9611 packet/notification. Give up. */
9612 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
c906108c 9613
74531fed
PA
9614 /* Skip the ack char if we're in no-ack mode. */
9615 if (!rs->noack_mode)
c33e31fd 9616 remote_serial_write ("+", 1);
74531fed
PA
9617 return -1;
9618 }
c906108c 9619
74531fed
PA
9620 /* If we got an ordinary packet, return that to our caller. */
9621 if (c == '$')
c906108c
SS
9622 {
9623 if (remote_debug)
43e526b9 9624 {
6cc8564b
LM
9625 int max_chars;
9626
9627 if (remote_packet_max_chars < 0)
9628 max_chars = val;
9629 else
9630 max_chars = remote_packet_max_chars;
9631
6f8976bf 9632 std::string str
8d64371b 9633 = escape_buffer (buf->data (),
6cc8564b 9634 std::min (val, max_chars));
6f8976bf
YQ
9635
9636 fprintf_unfiltered (gdb_stdlog, "Packet received: %s",
9637 str.c_str ());
9638
6cc8564b 9639 if (val > max_chars)
567a3e54 9640 fprintf_unfiltered (gdb_stdlog, "[%d bytes omitted]",
6cc8564b 9641 val - max_chars);
6e5abd65 9642
6f8976bf 9643 fprintf_unfiltered (gdb_stdlog, "\n");
43e526b9 9644 }
a6f3e723
SL
9645
9646 /* Skip the ack char if we're in no-ack mode. */
9647 if (!rs->noack_mode)
c33e31fd 9648 remote_serial_write ("+", 1);
fee9eda9
YQ
9649 if (is_notif != NULL)
9650 *is_notif = 0;
0876f84a 9651 return val;
c906108c
SS
9652 }
9653
74531fed
PA
9654 /* If we got a notification, handle it, and go back to looking
9655 for a packet. */
9656 else
9657 {
9658 gdb_assert (c == '%');
9659
9660 if (remote_debug)
9661 {
8d64371b 9662 std::string str = escape_buffer (buf->data (), val);
6e5abd65 9663
6e5abd65
PA
9664 fprintf_unfiltered (gdb_stdlog,
9665 " Notification received: %s\n",
b3ced9ba 9666 str.c_str ());
74531fed 9667 }
fee9eda9
YQ
9668 if (is_notif != NULL)
9669 *is_notif = 1;
c906108c 9670
8d64371b 9671 handle_notification (rs->notif_state, buf->data ());
c906108c 9672
74531fed 9673 /* Notifications require no acknowledgement. */
a6f3e723 9674
74531fed 9675 if (expecting_notif)
fee9eda9 9676 return val;
74531fed
PA
9677 }
9678 }
9679}
9680
6b8edb51 9681int
8d64371b 9682remote_target::getpkt_sane (gdb::char_vector *buf, int forever)
74531fed 9683{
8d64371b 9684 return getpkt_or_notif_sane_1 (buf, forever, 0, NULL);
74531fed
PA
9685}
9686
6b8edb51 9687int
8d64371b 9688remote_target::getpkt_or_notif_sane (gdb::char_vector *buf, int forever,
6b8edb51 9689 int *is_notif)
74531fed 9690{
8d64371b 9691 return getpkt_or_notif_sane_1 (buf, forever, 1, is_notif);
c906108c 9692}
74531fed 9693
cbb8991c
DB
9694/* Kill any new fork children of process PID that haven't been
9695 processed by follow_fork. */
9696
6b8edb51
PA
9697void
9698remote_target::kill_new_fork_children (int pid)
cbb8991c 9699{
6b8edb51 9700 remote_state *rs = get_remote_state ();
cbb8991c 9701 struct notif_client *notif = &notif_client_stop;
cbb8991c
DB
9702
9703 /* Kill the fork child threads of any threads in process PID
9704 that are stopped at a fork event. */
08036331 9705 for (thread_info *thread : all_non_exited_threads ())
cbb8991c
DB
9706 {
9707 struct target_waitstatus *ws = &thread->pending_follow;
9708
9709 if (is_pending_fork_parent (ws, pid, thread->ptid))
9710 {
953edf2b 9711 int child_pid = ws->value.related_pid.pid ();
cbb8991c
DB
9712 int res;
9713
6b8edb51 9714 res = remote_vkill (child_pid);
cbb8991c
DB
9715 if (res != 0)
9716 error (_("Can't kill fork child process %d"), child_pid);
9717 }
9718 }
9719
9720 /* Check for any pending fork events (not reported or processed yet)
9721 in process PID and kill those fork child threads as well. */
9722 remote_notif_get_pending_events (notif);
953edf2b
TT
9723 for (auto &event : rs->stop_reply_queue)
9724 if (is_pending_fork_parent (&event->ws, pid, event->ptid))
9725 {
9726 int child_pid = event->ws.value.related_pid.pid ();
9727 int res;
9728
9729 res = remote_vkill (child_pid);
9730 if (res != 0)
9731 error (_("Can't kill fork child process %d"), child_pid);
9732 }
cbb8991c
DB
9733}
9734
c906108c 9735\f
8020350c
DB
9736/* Target hook to kill the current inferior. */
9737
f6ac5f3d
PA
9738void
9739remote_target::kill ()
43ff13b4 9740{
8020350c 9741 int res = -1;
e99b03dc 9742 int pid = inferior_ptid.pid ();
8020350c 9743 struct remote_state *rs = get_remote_state ();
0fdf84ca 9744
8020350c 9745 if (packet_support (PACKET_vKill) != PACKET_DISABLE)
0fdf84ca 9746 {
8020350c
DB
9747 /* If we're stopped while forking and we haven't followed yet,
9748 kill the child task. We need to do this before killing the
9749 parent task because if this is a vfork then the parent will
9750 be sleeping. */
6b8edb51 9751 kill_new_fork_children (pid);
8020350c 9752
6b8edb51 9753 res = remote_vkill (pid);
8020350c 9754 if (res == 0)
0fdf84ca 9755 {
bc1e6c81 9756 target_mourn_inferior (inferior_ptid);
0fdf84ca
PA
9757 return;
9758 }
8020350c 9759 }
0fdf84ca 9760
8020350c
DB
9761 /* If we are in 'target remote' mode and we are killing the only
9762 inferior, then we will tell gdbserver to exit and unpush the
9763 target. */
9764 if (res == -1 && !remote_multi_process_p (rs)
9765 && number_of_live_inferiors () == 1)
9766 {
9767 remote_kill_k ();
9768
9769 /* We've killed the remote end, we get to mourn it. If we are
9770 not in extended mode, mourning the inferior also unpushes
9771 remote_ops from the target stack, which closes the remote
9772 connection. */
bc1e6c81 9773 target_mourn_inferior (inferior_ptid);
8020350c
DB
9774
9775 return;
0fdf84ca 9776 }
43ff13b4 9777
8020350c 9778 error (_("Can't kill process"));
43ff13b4
JM
9779}
9780
8020350c
DB
9781/* Send a kill request to the target using the 'vKill' packet. */
9782
6b8edb51
PA
9783int
9784remote_target::remote_vkill (int pid)
82f73884 9785{
4082afcc 9786 if (packet_support (PACKET_vKill) == PACKET_DISABLE)
82f73884
PA
9787 return -1;
9788
6b8edb51
PA
9789 remote_state *rs = get_remote_state ();
9790
82f73884 9791 /* Tell the remote target to detach. */
8d64371b 9792 xsnprintf (rs->buf.data (), get_remote_packet_size (), "vKill;%x", pid);
82f73884 9793 putpkt (rs->buf);
8d64371b 9794 getpkt (&rs->buf, 0);
82f73884 9795
4082afcc
PA
9796 switch (packet_ok (rs->buf,
9797 &remote_protocol_packets[PACKET_vKill]))
9798 {
9799 case PACKET_OK:
9800 return 0;
9801 case PACKET_ERROR:
9802 return 1;
9803 case PACKET_UNKNOWN:
9804 return -1;
9805 default:
9806 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
9807 }
82f73884
PA
9808}
9809
8020350c
DB
9810/* Send a kill request to the target using the 'k' packet. */
9811
6b8edb51
PA
9812void
9813remote_target::remote_kill_k ()
82f73884 9814{
8020350c
DB
9815 /* Catch errors so the user can quit from gdb even when we
9816 aren't on speaking terms with the remote system. */
a70b8144 9817 try
82f73884 9818 {
82f73884 9819 putpkt ("k");
82f73884 9820 }
230d2906 9821 catch (const gdb_exception_error &ex)
8020350c
DB
9822 {
9823 if (ex.error == TARGET_CLOSE_ERROR)
9824 {
9825 /* If we got an (EOF) error that caused the target
9826 to go away, then we're done, that's what we wanted.
9827 "k" is susceptible to cause a premature EOF, given
9828 that the remote server isn't actually required to
9829 reply to "k", and it can happen that it doesn't
9830 even get to reply ACK to the "k". */
9831 return;
9832 }
82f73884 9833
8020350c
DB
9834 /* Otherwise, something went wrong. We didn't actually kill
9835 the target. Just propagate the exception, and let the
9836 user or higher layers decide what to do. */
eedc3f4f 9837 throw;
8020350c 9838 }
82f73884
PA
9839}
9840
f6ac5f3d
PA
9841void
9842remote_target::mourn_inferior ()
c906108c 9843{
8020350c 9844 struct remote_state *rs = get_remote_state ();
ce5ce7ed 9845
9607784a
PA
9846 /* We're no longer interested in notification events of an inferior
9847 that exited or was killed/detached. */
9848 discard_pending_stop_replies (current_inferior ());
9849
8020350c
DB
9850 /* In 'target remote' mode with one inferior, we close the connection. */
9851 if (!rs->extended && number_of_live_inferiors () <= 1)
9852 {
f6ac5f3d 9853 unpush_target (this);
c906108c 9854
8020350c
DB
9855 /* remote_close takes care of doing most of the clean up. */
9856 generic_mourn_inferior ();
9857 return;
9858 }
c906108c 9859
e24a49d8
PA
9860 /* In case we got here due to an error, but we're going to stay
9861 connected. */
9862 rs->waiting_for_stop_reply = 0;
9863
dc1981d7
PA
9864 /* If the current general thread belonged to the process we just
9865 detached from or has exited, the remote side current general
9866 thread becomes undefined. Considering a case like this:
9867
9868 - We just got here due to a detach.
9869 - The process that we're detaching from happens to immediately
9870 report a global breakpoint being hit in non-stop mode, in the
9871 same thread we had selected before.
9872 - GDB attaches to this process again.
9873 - This event happens to be the next event we handle.
9874
9875 GDB would consider that the current general thread didn't need to
9876 be set on the stub side (with Hg), since for all it knew,
9877 GENERAL_THREAD hadn't changed.
9878
9879 Notice that although in all-stop mode, the remote server always
9880 sets the current thread to the thread reporting the stop event,
9881 that doesn't happen in non-stop mode; in non-stop, the stub *must
9882 not* change the current thread when reporting a breakpoint hit,
9883 due to the decoupling of event reporting and event handling.
9884
9885 To keep things simple, we always invalidate our notion of the
9886 current thread. */
47f8a51d 9887 record_currthread (rs, minus_one_ptid);
dc1981d7 9888
8020350c 9889 /* Call common code to mark the inferior as not running. */
48aa3c27 9890 generic_mourn_inferior ();
2d717e4f 9891}
c906108c 9892
57810aa7 9893bool
f6ac5f3d 9894extended_remote_target::supports_disable_randomization ()
03583c20 9895{
4082afcc 9896 return packet_support (PACKET_QDisableRandomization) == PACKET_ENABLE;
03583c20
UW
9897}
9898
6b8edb51
PA
9899void
9900remote_target::extended_remote_disable_randomization (int val)
03583c20
UW
9901{
9902 struct remote_state *rs = get_remote_state ();
9903 char *reply;
9904
8d64371b
TT
9905 xsnprintf (rs->buf.data (), get_remote_packet_size (),
9906 "QDisableRandomization:%x", val);
03583c20 9907 putpkt (rs->buf);
b6bb3468 9908 reply = remote_get_noisy_reply ();
03583c20
UW
9909 if (*reply == '\0')
9910 error (_("Target does not support QDisableRandomization."));
9911 if (strcmp (reply, "OK") != 0)
9912 error (_("Bogus QDisableRandomization reply from target: %s"), reply);
9913}
9914
6b8edb51
PA
9915int
9916remote_target::extended_remote_run (const std::string &args)
2d717e4f
DJ
9917{
9918 struct remote_state *rs = get_remote_state ();
2d717e4f 9919 int len;
94585166 9920 const char *remote_exec_file = get_remote_exec_file ();
c906108c 9921
2d717e4f
DJ
9922 /* If the user has disabled vRun support, or we have detected that
9923 support is not available, do not try it. */
4082afcc 9924 if (packet_support (PACKET_vRun) == PACKET_DISABLE)
2d717e4f 9925 return -1;
424163ea 9926
8d64371b
TT
9927 strcpy (rs->buf.data (), "vRun;");
9928 len = strlen (rs->buf.data ());
c906108c 9929
2d717e4f
DJ
9930 if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ())
9931 error (_("Remote file name too long for run packet"));
8d64371b 9932 len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf.data () + len,
9f1b45b0 9933 strlen (remote_exec_file));
2d717e4f 9934
7c5ded6a 9935 if (!args.empty ())
2d717e4f 9936 {
2d717e4f 9937 int i;
2d717e4f 9938
773a1edc 9939 gdb_argv argv (args.c_str ());
2d717e4f
DJ
9940 for (i = 0; argv[i] != NULL; i++)
9941 {
9942 if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ())
9943 error (_("Argument list too long for run packet"));
9944 rs->buf[len++] = ';';
8d64371b 9945 len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf.data () + len,
9f1b45b0 9946 strlen (argv[i]));
2d717e4f 9947 }
2d717e4f
DJ
9948 }
9949
9950 rs->buf[len++] = '\0';
9951
9952 putpkt (rs->buf);
8d64371b 9953 getpkt (&rs->buf, 0);
2d717e4f 9954
4082afcc 9955 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun]))
2d717e4f 9956 {
4082afcc 9957 case PACKET_OK:
3405876a 9958 /* We have a wait response. All is well. */
2d717e4f 9959 return 0;
4082afcc
PA
9960 case PACKET_UNKNOWN:
9961 return -1;
9962 case PACKET_ERROR:
2d717e4f
DJ
9963 if (remote_exec_file[0] == '\0')
9964 error (_("Running the default executable on the remote target failed; "
9965 "try \"set remote exec-file\"?"));
9966 else
9967 error (_("Running \"%s\" on the remote target failed"),
9968 remote_exec_file);
4082afcc
PA
9969 default:
9970 gdb_assert_not_reached (_("bad switch"));
2d717e4f 9971 }
c906108c
SS
9972}
9973
0a2dde4a
SDJ
9974/* Helper function to send set/unset environment packets. ACTION is
9975 either "set" or "unset". PACKET is either "QEnvironmentHexEncoded"
9976 or "QEnvironmentUnsetVariable". VALUE is the variable to be
9977 sent. */
9978
6b8edb51
PA
9979void
9980remote_target::send_environment_packet (const char *action,
9981 const char *packet,
9982 const char *value)
0a2dde4a 9983{
6b8edb51
PA
9984 remote_state *rs = get_remote_state ();
9985
0a2dde4a
SDJ
9986 /* Convert the environment variable to an hex string, which
9987 is the best format to be transmitted over the wire. */
9988 std::string encoded_value = bin2hex ((const gdb_byte *) value,
9989 strlen (value));
9990
8d64371b 9991 xsnprintf (rs->buf.data (), get_remote_packet_size (),
0a2dde4a
SDJ
9992 "%s:%s", packet, encoded_value.c_str ());
9993
9994 putpkt (rs->buf);
8d64371b
TT
9995 getpkt (&rs->buf, 0);
9996 if (strcmp (rs->buf.data (), "OK") != 0)
0a2dde4a
SDJ
9997 warning (_("Unable to %s environment variable '%s' on remote."),
9998 action, value);
9999}
10000
10001/* Helper function to handle the QEnvironment* packets. */
10002
6b8edb51
PA
10003void
10004remote_target::extended_remote_environment_support ()
0a2dde4a 10005{
6b8edb51
PA
10006 remote_state *rs = get_remote_state ();
10007
0a2dde4a
SDJ
10008 if (packet_support (PACKET_QEnvironmentReset) != PACKET_DISABLE)
10009 {
10010 putpkt ("QEnvironmentReset");
8d64371b
TT
10011 getpkt (&rs->buf, 0);
10012 if (strcmp (rs->buf.data (), "OK") != 0)
0a2dde4a
SDJ
10013 warning (_("Unable to reset environment on remote."));
10014 }
10015
10016 gdb_environ *e = &current_inferior ()->environment;
10017
10018 if (packet_support (PACKET_QEnvironmentHexEncoded) != PACKET_DISABLE)
10019 for (const std::string &el : e->user_set_env ())
6b8edb51 10020 send_environment_packet ("set", "QEnvironmentHexEncoded",
0a2dde4a
SDJ
10021 el.c_str ());
10022
10023 if (packet_support (PACKET_QEnvironmentUnset) != PACKET_DISABLE)
10024 for (const std::string &el : e->user_unset_env ())
6b8edb51 10025 send_environment_packet ("unset", "QEnvironmentUnset", el.c_str ());
0a2dde4a
SDJ
10026}
10027
bc3b087d
SDJ
10028/* Helper function to set the current working directory for the
10029 inferior in the remote target. */
10030
6b8edb51
PA
10031void
10032remote_target::extended_remote_set_inferior_cwd ()
bc3b087d
SDJ
10033{
10034 if (packet_support (PACKET_QSetWorkingDir) != PACKET_DISABLE)
10035 {
10036 const char *inferior_cwd = get_inferior_cwd ();
6b8edb51 10037 remote_state *rs = get_remote_state ();
bc3b087d
SDJ
10038
10039 if (inferior_cwd != NULL)
10040 {
10041 std::string hexpath = bin2hex ((const gdb_byte *) inferior_cwd,
10042 strlen (inferior_cwd));
10043
8d64371b 10044 xsnprintf (rs->buf.data (), get_remote_packet_size (),
bc3b087d
SDJ
10045 "QSetWorkingDir:%s", hexpath.c_str ());
10046 }
10047 else
10048 {
10049 /* An empty inferior_cwd means that the user wants us to
10050 reset the remote server's inferior's cwd. */
8d64371b 10051 xsnprintf (rs->buf.data (), get_remote_packet_size (),
bc3b087d
SDJ
10052 "QSetWorkingDir:");
10053 }
10054
10055 putpkt (rs->buf);
8d64371b 10056 getpkt (&rs->buf, 0);
bc3b087d
SDJ
10057 if (packet_ok (rs->buf,
10058 &remote_protocol_packets[PACKET_QSetWorkingDir])
10059 != PACKET_OK)
10060 error (_("\
10061Remote replied unexpectedly while setting the inferior's working\n\
10062directory: %s"),
8d64371b 10063 rs->buf.data ());
bc3b087d
SDJ
10064
10065 }
10066}
10067
2d717e4f
DJ
10068/* In the extended protocol we want to be able to do things like
10069 "run" and have them basically work as expected. So we need
10070 a special create_inferior function. We support changing the
10071 executable file and the command line arguments, but not the
10072 environment. */
10073
f6ac5f3d
PA
10074void
10075extended_remote_target::create_inferior (const char *exec_file,
10076 const std::string &args,
10077 char **env, int from_tty)
43ff13b4 10078{
3405876a
PA
10079 int run_worked;
10080 char *stop_reply;
10081 struct remote_state *rs = get_remote_state ();
94585166 10082 const char *remote_exec_file = get_remote_exec_file ();
3405876a 10083
43ff13b4 10084 /* If running asynchronously, register the target file descriptor
23860348 10085 with the event loop. */
75c99385 10086 if (target_can_async_p ())
6a3753b3 10087 target_async (1);
43ff13b4 10088
03583c20 10089 /* Disable address space randomization if requested (and supported). */
f6ac5f3d 10090 if (supports_disable_randomization ())
03583c20
UW
10091 extended_remote_disable_randomization (disable_randomization);
10092
aefd8b33
SDJ
10093 /* If startup-with-shell is on, we inform gdbserver to start the
10094 remote inferior using a shell. */
10095 if (packet_support (PACKET_QStartupWithShell) != PACKET_DISABLE)
10096 {
8d64371b 10097 xsnprintf (rs->buf.data (), get_remote_packet_size (),
aefd8b33
SDJ
10098 "QStartupWithShell:%d", startup_with_shell ? 1 : 0);
10099 putpkt (rs->buf);
8d64371b
TT
10100 getpkt (&rs->buf, 0);
10101 if (strcmp (rs->buf.data (), "OK") != 0)
aefd8b33
SDJ
10102 error (_("\
10103Remote replied unexpectedly while setting startup-with-shell: %s"),
8d64371b 10104 rs->buf.data ());
aefd8b33
SDJ
10105 }
10106
6b8edb51 10107 extended_remote_environment_support ();
0a2dde4a 10108
6b8edb51 10109 extended_remote_set_inferior_cwd ();
bc3b087d 10110
43ff13b4 10111 /* Now restart the remote server. */
3405876a
PA
10112 run_worked = extended_remote_run (args) != -1;
10113 if (!run_worked)
2d717e4f
DJ
10114 {
10115 /* vRun was not supported. Fail if we need it to do what the
10116 user requested. */
10117 if (remote_exec_file[0])
10118 error (_("Remote target does not support \"set remote exec-file\""));
7c5ded6a 10119 if (!args.empty ())
65e65158 10120 error (_("Remote target does not support \"set args\" or run ARGS"));
43ff13b4 10121
2d717e4f
DJ
10122 /* Fall back to "R". */
10123 extended_remote_restart ();
10124 }
424163ea 10125
3405876a 10126 /* vRun's success return is a stop reply. */
8d64371b 10127 stop_reply = run_worked ? rs->buf.data () : NULL;
3405876a 10128 add_current_inferior_and_thread (stop_reply);
c0a2216e 10129
2d717e4f
DJ
10130 /* Get updated offsets, if the stub uses qOffsets. */
10131 get_offsets ();
2d717e4f 10132}
c906108c 10133\f
c5aa993b 10134
b775012e
LM
10135/* Given a location's target info BP_TGT and the packet buffer BUF, output
10136 the list of conditions (in agent expression bytecode format), if any, the
10137 target needs to evaluate. The output is placed into the packet buffer
bba74b36 10138 started from BUF and ended at BUF_END. */
b775012e
LM
10139
10140static int
10141remote_add_target_side_condition (struct gdbarch *gdbarch,
bba74b36
YQ
10142 struct bp_target_info *bp_tgt, char *buf,
10143 char *buf_end)
b775012e 10144{
3cde5c42 10145 if (bp_tgt->conditions.empty ())
b775012e
LM
10146 return 0;
10147
10148 buf += strlen (buf);
bba74b36 10149 xsnprintf (buf, buf_end - buf, "%s", ";");
b775012e
LM
10150 buf++;
10151
83621223 10152 /* Send conditions to the target. */
d538e36d 10153 for (agent_expr *aexpr : bp_tgt->conditions)
b775012e 10154 {
bba74b36 10155 xsnprintf (buf, buf_end - buf, "X%x,", aexpr->len);
b775012e 10156 buf += strlen (buf);
3cde5c42 10157 for (int i = 0; i < aexpr->len; ++i)
b775012e
LM
10158 buf = pack_hex_byte (buf, aexpr->buf[i]);
10159 *buf = '\0';
10160 }
b775012e
LM
10161 return 0;
10162}
10163
d3ce09f5
SS
10164static void
10165remote_add_target_side_commands (struct gdbarch *gdbarch,
10166 struct bp_target_info *bp_tgt, char *buf)
10167{
3cde5c42 10168 if (bp_tgt->tcommands.empty ())
d3ce09f5
SS
10169 return;
10170
10171 buf += strlen (buf);
10172
10173 sprintf (buf, ";cmds:%x,", bp_tgt->persist);
10174 buf += strlen (buf);
10175
10176 /* Concatenate all the agent expressions that are commands into the
10177 cmds parameter. */
df97be55 10178 for (agent_expr *aexpr : bp_tgt->tcommands)
d3ce09f5
SS
10179 {
10180 sprintf (buf, "X%x,", aexpr->len);
10181 buf += strlen (buf);
3cde5c42 10182 for (int i = 0; i < aexpr->len; ++i)
d3ce09f5
SS
10183 buf = pack_hex_byte (buf, aexpr->buf[i]);
10184 *buf = '\0';
10185 }
d3ce09f5
SS
10186}
10187
8181d85f
DJ
10188/* Insert a breakpoint. On targets that have software breakpoint
10189 support, we ask the remote target to do the work; on targets
10190 which don't, we insert a traditional memory breakpoint. */
c906108c 10191
f6ac5f3d
PA
10192int
10193remote_target::insert_breakpoint (struct gdbarch *gdbarch,
10194 struct bp_target_info *bp_tgt)
c906108c 10195{
d471ea57
AC
10196 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
10197 If it succeeds, then set the support to PACKET_ENABLE. If it
10198 fails, and the user has explicitly requested the Z support then
23860348 10199 report an error, otherwise, mark it disabled and go on. */
802188a7 10200
4082afcc 10201 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 10202 {
0d5ed153 10203 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 10204 struct remote_state *rs;
bba74b36 10205 char *p, *endbuf;
4fff2411 10206
28439a30
PA
10207 /* Make sure the remote is pointing at the right process, if
10208 necessary. */
10209 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10210 set_general_process ();
10211
4fff2411 10212 rs = get_remote_state ();
8d64371b
TT
10213 p = rs->buf.data ();
10214 endbuf = p + get_remote_packet_size ();
802188a7 10215
96baa820
JM
10216 *(p++) = 'Z';
10217 *(p++) = '0';
10218 *(p++) = ',';
7c0f6dcc 10219 addr = (ULONGEST) remote_address_masked (addr);
8181d85f 10220 p += hexnumstr (p, addr);
579c6ad9 10221 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
802188a7 10222
f6ac5f3d 10223 if (supports_evaluation_of_breakpoint_conditions ())
bba74b36 10224 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 10225
f6ac5f3d 10226 if (can_run_breakpoint_commands ())
d3ce09f5
SS
10227 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10228
6d820c5c 10229 putpkt (rs->buf);
8d64371b 10230 getpkt (&rs->buf, 0);
96baa820 10231
6d820c5c 10232 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
96baa820 10233 {
d471ea57
AC
10234 case PACKET_ERROR:
10235 return -1;
10236 case PACKET_OK:
10237 return 0;
10238 case PACKET_UNKNOWN:
10239 break;
96baa820
JM
10240 }
10241 }
c906108c 10242
0000e5cc
PA
10243 /* If this breakpoint has target-side commands but this stub doesn't
10244 support Z0 packets, throw error. */
3cde5c42 10245 if (!bp_tgt->tcommands.empty ())
0000e5cc
PA
10246 throw_error (NOT_SUPPORTED_ERROR, _("\
10247Target doesn't support breakpoints that have target side commands."));
10248
f6ac5f3d 10249 return memory_insert_breakpoint (this, gdbarch, bp_tgt);
c906108c
SS
10250}
10251
f6ac5f3d
PA
10252int
10253remote_target::remove_breakpoint (struct gdbarch *gdbarch,
10254 struct bp_target_info *bp_tgt,
10255 enum remove_bp_reason reason)
c906108c 10256{
8181d85f 10257 CORE_ADDR addr = bp_tgt->placed_address;
d01949b6 10258 struct remote_state *rs = get_remote_state ();
96baa820 10259
4082afcc 10260 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 10261 {
8d64371b
TT
10262 char *p = rs->buf.data ();
10263 char *endbuf = p + get_remote_packet_size ();
802188a7 10264
28439a30
PA
10265 /* Make sure the remote is pointing at the right process, if
10266 necessary. */
10267 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10268 set_general_process ();
10269
96baa820
JM
10270 *(p++) = 'z';
10271 *(p++) = '0';
10272 *(p++) = ',';
10273
8181d85f
DJ
10274 addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
10275 p += hexnumstr (p, addr);
579c6ad9 10276 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
802188a7 10277
6d820c5c 10278 putpkt (rs->buf);
8d64371b 10279 getpkt (&rs->buf, 0);
96baa820 10280
6d820c5c 10281 return (rs->buf[0] == 'E');
96baa820
JM
10282 }
10283
f6ac5f3d 10284 return memory_remove_breakpoint (this, gdbarch, bp_tgt, reason);
c906108c
SS
10285}
10286
f486487f 10287static enum Z_packet_type
d471ea57
AC
10288watchpoint_to_Z_packet (int type)
10289{
10290 switch (type)
10291 {
10292 case hw_write:
bb858e6a 10293 return Z_PACKET_WRITE_WP;
d471ea57
AC
10294 break;
10295 case hw_read:
bb858e6a 10296 return Z_PACKET_READ_WP;
d471ea57
AC
10297 break;
10298 case hw_access:
bb858e6a 10299 return Z_PACKET_ACCESS_WP;
d471ea57
AC
10300 break;
10301 default:
8e65ff28 10302 internal_error (__FILE__, __LINE__,
e2e0b3e5 10303 _("hw_bp_to_z: bad watchpoint type %d"), type);
d471ea57
AC
10304 }
10305}
10306
f6ac5f3d
PA
10307int
10308remote_target::insert_watchpoint (CORE_ADDR addr, int len,
10309 enum target_hw_bp_type type, struct expression *cond)
96baa820 10310{
d01949b6 10311 struct remote_state *rs = get_remote_state ();
8d64371b 10312 char *endbuf = rs->buf.data () + get_remote_packet_size ();
e514a9d6 10313 char *p;
d471ea57 10314 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
96baa820 10315
4082afcc 10316 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
85d721b8 10317 return 1;
802188a7 10318
28439a30
PA
10319 /* Make sure the remote is pointing at the right process, if
10320 necessary. */
10321 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10322 set_general_process ();
10323
8d64371b
TT
10324 xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "Z%x,", packet);
10325 p = strchr (rs->buf.data (), '\0');
96baa820
JM
10326 addr = remote_address_masked (addr);
10327 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 10328 xsnprintf (p, endbuf - p, ",%x", len);
802188a7 10329
6d820c5c 10330 putpkt (rs->buf);
8d64371b 10331 getpkt (&rs->buf, 0);
96baa820 10332
6d820c5c 10333 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
10334 {
10335 case PACKET_ERROR:
d471ea57 10336 return -1;
85d721b8
PA
10337 case PACKET_UNKNOWN:
10338 return 1;
d471ea57
AC
10339 case PACKET_OK:
10340 return 0;
10341 }
8e65ff28 10342 internal_error (__FILE__, __LINE__,
e2e0b3e5 10343 _("remote_insert_watchpoint: reached end of function"));
96baa820
JM
10344}
10345
57810aa7 10346bool
f6ac5f3d
PA
10347remote_target::watchpoint_addr_within_range (CORE_ADDR addr,
10348 CORE_ADDR start, int length)
283002cf
MR
10349{
10350 CORE_ADDR diff = remote_address_masked (addr - start);
10351
10352 return diff < length;
10353}
10354
d471ea57 10355
f6ac5f3d
PA
10356int
10357remote_target::remove_watchpoint (CORE_ADDR addr, int len,
10358 enum target_hw_bp_type type, struct expression *cond)
96baa820 10359{
d01949b6 10360 struct remote_state *rs = get_remote_state ();
8d64371b 10361 char *endbuf = rs->buf.data () + get_remote_packet_size ();
e514a9d6 10362 char *p;
d471ea57
AC
10363 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
10364
4082afcc 10365 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
5cffb350 10366 return -1;
802188a7 10367
28439a30
PA
10368 /* Make sure the remote is pointing at the right process, if
10369 necessary. */
10370 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10371 set_general_process ();
10372
8d64371b
TT
10373 xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "z%x,", packet);
10374 p = strchr (rs->buf.data (), '\0');
96baa820
JM
10375 addr = remote_address_masked (addr);
10376 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 10377 xsnprintf (p, endbuf - p, ",%x", len);
6d820c5c 10378 putpkt (rs->buf);
8d64371b 10379 getpkt (&rs->buf, 0);
96baa820 10380
6d820c5c 10381 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
10382 {
10383 case PACKET_ERROR:
10384 case PACKET_UNKNOWN:
10385 return -1;
10386 case PACKET_OK:
10387 return 0;
10388 }
8e65ff28 10389 internal_error (__FILE__, __LINE__,
e2e0b3e5 10390 _("remote_remove_watchpoint: reached end of function"));
96baa820
JM
10391}
10392
3c3bea1c 10393
60fcc1c3
TT
10394static int remote_hw_watchpoint_limit = -1;
10395static int remote_hw_watchpoint_length_limit = -1;
10396static int remote_hw_breakpoint_limit = -1;
d471ea57 10397
f6ac5f3d
PA
10398int
10399remote_target::region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
480a3f21
PW
10400{
10401 if (remote_hw_watchpoint_length_limit == 0)
10402 return 0;
10403 else if (remote_hw_watchpoint_length_limit < 0)
10404 return 1;
10405 else if (len <= remote_hw_watchpoint_length_limit)
10406 return 1;
10407 else
10408 return 0;
10409}
10410
f6ac5f3d
PA
10411int
10412remote_target::can_use_hw_breakpoint (enum bptype type, int cnt, int ot)
96baa820 10413{
3c3bea1c
GS
10414 if (type == bp_hardware_breakpoint)
10415 {
10416 if (remote_hw_breakpoint_limit == 0)
10417 return 0;
501eef12
AC
10418 else if (remote_hw_breakpoint_limit < 0)
10419 return 1;
3c3bea1c
GS
10420 else if (cnt <= remote_hw_breakpoint_limit)
10421 return 1;
10422 }
10423 else
10424 {
10425 if (remote_hw_watchpoint_limit == 0)
10426 return 0;
501eef12
AC
10427 else if (remote_hw_watchpoint_limit < 0)
10428 return 1;
3c3bea1c
GS
10429 else if (ot)
10430 return -1;
10431 else if (cnt <= remote_hw_watchpoint_limit)
10432 return 1;
10433 }
10434 return -1;
10435}
10436
f7e6eed5
PA
10437/* The to_stopped_by_sw_breakpoint method of target remote. */
10438
57810aa7 10439bool
f6ac5f3d 10440remote_target::stopped_by_sw_breakpoint ()
f7e6eed5 10441{
799a2abe 10442 struct thread_info *thread = inferior_thread ();
f7e6eed5 10443
799a2abe 10444 return (thread->priv != NULL
7aabaf9d
SM
10445 && (get_remote_thread_info (thread)->stop_reason
10446 == TARGET_STOPPED_BY_SW_BREAKPOINT));
f7e6eed5
PA
10447}
10448
10449/* The to_supports_stopped_by_sw_breakpoint method of target
10450 remote. */
10451
57810aa7 10452bool
f6ac5f3d 10453remote_target::supports_stopped_by_sw_breakpoint ()
f7e6eed5 10454{
f7e6eed5
PA
10455 return (packet_support (PACKET_swbreak_feature) == PACKET_ENABLE);
10456}
10457
10458/* The to_stopped_by_hw_breakpoint method of target remote. */
10459
57810aa7 10460bool
f6ac5f3d 10461remote_target::stopped_by_hw_breakpoint ()
f7e6eed5 10462{
799a2abe 10463 struct thread_info *thread = inferior_thread ();
f7e6eed5 10464
799a2abe 10465 return (thread->priv != NULL
7aabaf9d
SM
10466 && (get_remote_thread_info (thread)->stop_reason
10467 == TARGET_STOPPED_BY_HW_BREAKPOINT));
f7e6eed5
PA
10468}
10469
10470/* The to_supports_stopped_by_hw_breakpoint method of target
10471 remote. */
10472
57810aa7 10473bool
f6ac5f3d 10474remote_target::supports_stopped_by_hw_breakpoint ()
f7e6eed5 10475{
f7e6eed5
PA
10476 return (packet_support (PACKET_hwbreak_feature) == PACKET_ENABLE);
10477}
10478
57810aa7 10479bool
f6ac5f3d 10480remote_target::stopped_by_watchpoint ()
3c3bea1c 10481{
799a2abe 10482 struct thread_info *thread = inferior_thread ();
ee154bee 10483
799a2abe 10484 return (thread->priv != NULL
7aabaf9d
SM
10485 && (get_remote_thread_info (thread)->stop_reason
10486 == TARGET_STOPPED_BY_WATCHPOINT));
3c3bea1c
GS
10487}
10488
57810aa7 10489bool
f6ac5f3d 10490remote_target::stopped_data_address (CORE_ADDR *addr_p)
3c3bea1c 10491{
799a2abe 10492 struct thread_info *thread = inferior_thread ();
a744cf53 10493
799a2abe 10494 if (thread->priv != NULL
7aabaf9d
SM
10495 && (get_remote_thread_info (thread)->stop_reason
10496 == TARGET_STOPPED_BY_WATCHPOINT))
4aa7a7f5 10497 {
7aabaf9d 10498 *addr_p = get_remote_thread_info (thread)->watch_data_address;
57810aa7 10499 return true;
4aa7a7f5
JJ
10500 }
10501
57810aa7 10502 return false;
3c3bea1c
GS
10503}
10504
10505
f6ac5f3d
PA
10506int
10507remote_target::insert_hw_breakpoint (struct gdbarch *gdbarch,
10508 struct bp_target_info *bp_tgt)
3c3bea1c 10509{
0d5ed153 10510 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 10511 struct remote_state *rs;
bba74b36 10512 char *p, *endbuf;
dd61ec5c 10513 char *message;
3c3bea1c 10514
4082afcc 10515 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 10516 return -1;
2bc416ba 10517
28439a30
PA
10518 /* Make sure the remote is pointing at the right process, if
10519 necessary. */
10520 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10521 set_general_process ();
10522
4fff2411 10523 rs = get_remote_state ();
8d64371b
TT
10524 p = rs->buf.data ();
10525 endbuf = p + get_remote_packet_size ();
4fff2411 10526
96baa820
JM
10527 *(p++) = 'Z';
10528 *(p++) = '1';
10529 *(p++) = ',';
802188a7 10530
0d5ed153 10531 addr = remote_address_masked (addr);
96baa820 10532 p += hexnumstr (p, (ULONGEST) addr);
579c6ad9 10533 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
96baa820 10534
f6ac5f3d 10535 if (supports_evaluation_of_breakpoint_conditions ())
bba74b36 10536 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 10537
f6ac5f3d 10538 if (can_run_breakpoint_commands ())
d3ce09f5
SS
10539 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10540
6d820c5c 10541 putpkt (rs->buf);
8d64371b 10542 getpkt (&rs->buf, 0);
96baa820 10543
6d820c5c 10544 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
10545 {
10546 case PACKET_ERROR:
dd61ec5c
MW
10547 if (rs->buf[1] == '.')
10548 {
8d64371b 10549 message = strchr (&rs->buf[2], '.');
dd61ec5c 10550 if (message)
0316657e 10551 error (_("Remote failure reply: %s"), message + 1);
dd61ec5c
MW
10552 }
10553 return -1;
d471ea57
AC
10554 case PACKET_UNKNOWN:
10555 return -1;
10556 case PACKET_OK:
10557 return 0;
10558 }
8e65ff28 10559 internal_error (__FILE__, __LINE__,
e2e0b3e5 10560 _("remote_insert_hw_breakpoint: reached end of function"));
96baa820
JM
10561}
10562
d471ea57 10563
f6ac5f3d
PA
10564int
10565remote_target::remove_hw_breakpoint (struct gdbarch *gdbarch,
10566 struct bp_target_info *bp_tgt)
96baa820 10567{
8181d85f 10568 CORE_ADDR addr;
d01949b6 10569 struct remote_state *rs = get_remote_state ();
8d64371b
TT
10570 char *p = rs->buf.data ();
10571 char *endbuf = p + get_remote_packet_size ();
c8189ed1 10572
4082afcc 10573 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 10574 return -1;
802188a7 10575
28439a30
PA
10576 /* Make sure the remote is pointing at the right process, if
10577 necessary. */
10578 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10579 set_general_process ();
10580
96baa820
JM
10581 *(p++) = 'z';
10582 *(p++) = '1';
10583 *(p++) = ',';
802188a7 10584
8181d85f 10585 addr = remote_address_masked (bp_tgt->placed_address);
96baa820 10586 p += hexnumstr (p, (ULONGEST) addr);
579c6ad9 10587 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
96baa820 10588
6d820c5c 10589 putpkt (rs->buf);
8d64371b 10590 getpkt (&rs->buf, 0);
802188a7 10591
6d820c5c 10592 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
10593 {
10594 case PACKET_ERROR:
10595 case PACKET_UNKNOWN:
10596 return -1;
10597 case PACKET_OK:
10598 return 0;
10599 }
8e65ff28 10600 internal_error (__FILE__, __LINE__,
e2e0b3e5 10601 _("remote_remove_hw_breakpoint: reached end of function"));
96baa820 10602}
96baa820 10603
4a5e7a5b
PA
10604/* Verify memory using the "qCRC:" request. */
10605
f6ac5f3d
PA
10606int
10607remote_target::verify_memory (const gdb_byte *data, CORE_ADDR lma, ULONGEST size)
4a5e7a5b
PA
10608{
10609 struct remote_state *rs = get_remote_state ();
10610 unsigned long host_crc, target_crc;
10611 char *tmp;
10612
936d2992
PA
10613 /* It doesn't make sense to use qCRC if the remote target is
10614 connected but not running. */
10615 if (target_has_execution && packet_support (PACKET_qCRC) != PACKET_DISABLE)
10616 {
10617 enum packet_result result;
28439a30 10618
936d2992
PA
10619 /* Make sure the remote is pointing at the right process. */
10620 set_general_process ();
4a5e7a5b 10621
936d2992 10622 /* FIXME: assumes lma can fit into long. */
8d64371b 10623 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qCRC:%lx,%lx",
936d2992
PA
10624 (long) lma, (long) size);
10625 putpkt (rs->buf);
4a5e7a5b 10626
936d2992
PA
10627 /* Be clever; compute the host_crc before waiting for target
10628 reply. */
10629 host_crc = xcrc32 (data, size, 0xffffffff);
10630
8d64371b 10631 getpkt (&rs->buf, 0);
4a5e7a5b 10632
936d2992
PA
10633 result = packet_ok (rs->buf,
10634 &remote_protocol_packets[PACKET_qCRC]);
10635 if (result == PACKET_ERROR)
10636 return -1;
10637 else if (result == PACKET_OK)
10638 {
10639 for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
10640 target_crc = target_crc * 16 + fromhex (*tmp);
4a5e7a5b 10641
936d2992
PA
10642 return (host_crc == target_crc);
10643 }
10644 }
4a5e7a5b 10645
f6ac5f3d 10646 return simple_verify_memory (this, data, lma, size);
4a5e7a5b
PA
10647}
10648
c906108c
SS
10649/* compare-sections command
10650
10651 With no arguments, compares each loadable section in the exec bfd
10652 with the same memory range on the target, and reports mismatches.
4a5e7a5b 10653 Useful for verifying the image on the target against the exec file. */
e514a9d6 10654
c906108c 10655static void
ac88e2de 10656compare_sections_command (const char *args, int from_tty)
c906108c
SS
10657{
10658 asection *s;
ce359b09 10659 const char *sectname;
c906108c
SS
10660 bfd_size_type size;
10661 bfd_vma lma;
10662 int matched = 0;
10663 int mismatched = 0;
4a5e7a5b 10664 int res;
95cf3b38 10665 int read_only = 0;
c906108c
SS
10666
10667 if (!exec_bfd)
8a3fe4f8 10668 error (_("command cannot be used without an exec file"));
c906108c 10669
95cf3b38
DT
10670 if (args != NULL && strcmp (args, "-r") == 0)
10671 {
10672 read_only = 1;
10673 args = NULL;
10674 }
10675
c5aa993b 10676 for (s = exec_bfd->sections; s; s = s->next)
c906108c
SS
10677 {
10678 if (!(s->flags & SEC_LOAD))
0df8b418 10679 continue; /* Skip non-loadable section. */
c906108c 10680
95cf3b38
DT
10681 if (read_only && (s->flags & SEC_READONLY) == 0)
10682 continue; /* Skip writeable sections */
10683
fd361982 10684 size = bfd_section_size (s);
c906108c 10685 if (size == 0)
0df8b418 10686 continue; /* Skip zero-length section. */
c906108c 10687
fd361982 10688 sectname = bfd_section_name (s);
c906108c 10689 if (args && strcmp (args, sectname) != 0)
0df8b418 10690 continue; /* Not the section selected by user. */
c906108c 10691
0df8b418 10692 matched = 1; /* Do this section. */
c906108c 10693 lma = s->lma;
c906108c 10694
b80406ac
TT
10695 gdb::byte_vector sectdata (size);
10696 bfd_get_section_contents (exec_bfd, s, sectdata.data (), 0, size);
c906108c 10697
b80406ac 10698 res = target_verify_memory (sectdata.data (), lma, size);
4a5e7a5b
PA
10699
10700 if (res == -1)
5af949e3 10701 error (_("target memory fault, section %s, range %s -- %s"), sectname,
f5656ead
TT
10702 paddress (target_gdbarch (), lma),
10703 paddress (target_gdbarch (), lma + size));
c906108c 10704
5af949e3 10705 printf_filtered ("Section %s, range %s -- %s: ", sectname,
f5656ead
TT
10706 paddress (target_gdbarch (), lma),
10707 paddress (target_gdbarch (), lma + size));
4a5e7a5b 10708 if (res)
c906108c
SS
10709 printf_filtered ("matched.\n");
10710 else
c5aa993b
JM
10711 {
10712 printf_filtered ("MIS-MATCHED!\n");
10713 mismatched++;
10714 }
c906108c
SS
10715 }
10716 if (mismatched > 0)
936d2992 10717 warning (_("One or more sections of the target image does not match\n\
8a3fe4f8 10718the loaded file\n"));
c906108c 10719 if (args && !matched)
a3f17187 10720 printf_filtered (_("No loaded section named '%s'.\n"), args);
c906108c
SS
10721}
10722
0e7f50da
UW
10723/* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
10724 into remote target. The number of bytes written to the remote
10725 target is returned, or -1 for error. */
10726
6b8edb51
PA
10727target_xfer_status
10728remote_target::remote_write_qxfer (const char *object_name,
10729 const char *annex, const gdb_byte *writebuf,
10730 ULONGEST offset, LONGEST len,
10731 ULONGEST *xfered_len,
10732 struct packet_config *packet)
0e7f50da
UW
10733{
10734 int i, buf_len;
10735 ULONGEST n;
0e7f50da
UW
10736 struct remote_state *rs = get_remote_state ();
10737 int max_size = get_memory_write_packet_size ();
10738
7cc244de 10739 if (packet_config_support (packet) == PACKET_DISABLE)
2ed4b548 10740 return TARGET_XFER_E_IO;
0e7f50da
UW
10741
10742 /* Insert header. */
8d64371b 10743 i = snprintf (rs->buf.data (), max_size,
0e7f50da
UW
10744 "qXfer:%s:write:%s:%s:",
10745 object_name, annex ? annex : "",
10746 phex_nz (offset, sizeof offset));
10747 max_size -= (i + 1);
10748
10749 /* Escape as much data as fits into rs->buf. */
10750 buf_len = remote_escape_output
8d64371b 10751 (writebuf, len, 1, (gdb_byte *) rs->buf.data () + i, &max_size, max_size);
0e7f50da 10752
8d64371b
TT
10753 if (putpkt_binary (rs->buf.data (), i + buf_len) < 0
10754 || getpkt_sane (&rs->buf, 0) < 0
0e7f50da 10755 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 10756 return TARGET_XFER_E_IO;
0e7f50da 10757
8d64371b 10758 unpack_varlen_hex (rs->buf.data (), &n);
9b409511
YQ
10759
10760 *xfered_len = n;
92ffd475 10761 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
0e7f50da
UW
10762}
10763
0876f84a
DJ
10764/* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
10765 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
10766 number of bytes read is returned, or 0 for EOF, or -1 for error.
10767 The number of bytes read may be less than LEN without indicating an
10768 EOF. PACKET is checked and updated to indicate whether the remote
10769 target supports this object. */
10770
6b8edb51
PA
10771target_xfer_status
10772remote_target::remote_read_qxfer (const char *object_name,
10773 const char *annex,
10774 gdb_byte *readbuf, ULONGEST offset,
10775 LONGEST len,
10776 ULONGEST *xfered_len,
10777 struct packet_config *packet)
0876f84a 10778{
0876f84a 10779 struct remote_state *rs = get_remote_state ();
0876f84a
DJ
10780 LONGEST i, n, packet_len;
10781
7cc244de 10782 if (packet_config_support (packet) == PACKET_DISABLE)
2ed4b548 10783 return TARGET_XFER_E_IO;
0876f84a
DJ
10784
10785 /* Check whether we've cached an end-of-object packet that matches
10786 this request. */
8e88304f 10787 if (rs->finished_object)
0876f84a 10788 {
8e88304f
TT
10789 if (strcmp (object_name, rs->finished_object) == 0
10790 && strcmp (annex ? annex : "", rs->finished_annex) == 0
10791 && offset == rs->finished_offset)
9b409511
YQ
10792 return TARGET_XFER_EOF;
10793
0876f84a
DJ
10794
10795 /* Otherwise, we're now reading something different. Discard
10796 the cache. */
8e88304f
TT
10797 xfree (rs->finished_object);
10798 xfree (rs->finished_annex);
10799 rs->finished_object = NULL;
10800 rs->finished_annex = NULL;
0876f84a
DJ
10801 }
10802
10803 /* Request only enough to fit in a single packet. The actual data
10804 may not, since we don't know how much of it will need to be escaped;
10805 the target is free to respond with slightly less data. We subtract
10806 five to account for the response type and the protocol frame. */
768adc05 10807 n = std::min<LONGEST> (get_remote_packet_size () - 5, len);
8d64371b
TT
10808 snprintf (rs->buf.data (), get_remote_packet_size () - 4,
10809 "qXfer:%s:read:%s:%s,%s",
0876f84a
DJ
10810 object_name, annex ? annex : "",
10811 phex_nz (offset, sizeof offset),
10812 phex_nz (n, sizeof n));
10813 i = putpkt (rs->buf);
10814 if (i < 0)
2ed4b548 10815 return TARGET_XFER_E_IO;
0876f84a
DJ
10816
10817 rs->buf[0] = '\0';
8d64371b 10818 packet_len = getpkt_sane (&rs->buf, 0);
0876f84a 10819 if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 10820 return TARGET_XFER_E_IO;
0876f84a
DJ
10821
10822 if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
8d64371b 10823 error (_("Unknown remote qXfer reply: %s"), rs->buf.data ());
0876f84a
DJ
10824
10825 /* 'm' means there is (or at least might be) more data after this
10826 batch. That does not make sense unless there's at least one byte
10827 of data in this reply. */
10828 if (rs->buf[0] == 'm' && packet_len == 1)
10829 error (_("Remote qXfer reply contained no data."));
10830
10831 /* Got some data. */
8d64371b 10832 i = remote_unescape_input ((gdb_byte *) rs->buf.data () + 1,
bc20a4af 10833 packet_len - 1, readbuf, n);
0876f84a
DJ
10834
10835 /* 'l' is an EOF marker, possibly including a final block of data,
0e7f50da
UW
10836 or possibly empty. If we have the final block of a non-empty
10837 object, record this fact to bypass a subsequent partial read. */
10838 if (rs->buf[0] == 'l' && offset + i > 0)
0876f84a 10839 {
8e88304f
TT
10840 rs->finished_object = xstrdup (object_name);
10841 rs->finished_annex = xstrdup (annex ? annex : "");
10842 rs->finished_offset = offset + i;
0876f84a
DJ
10843 }
10844
9b409511
YQ
10845 if (i == 0)
10846 return TARGET_XFER_EOF;
10847 else
10848 {
10849 *xfered_len = i;
10850 return TARGET_XFER_OK;
10851 }
0876f84a
DJ
10852}
10853
f6ac5f3d
PA
10854enum target_xfer_status
10855remote_target::xfer_partial (enum target_object object,
10856 const char *annex, gdb_byte *readbuf,
10857 const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
10858 ULONGEST *xfered_len)
c906108c 10859{
82f73884 10860 struct remote_state *rs;
c906108c 10861 int i;
6d820c5c 10862 char *p2;
1e3ff5ad 10863 char query_type;
124e13d9 10864 int unit_size = gdbarch_addressable_memory_unit_size (target_gdbarch ());
c906108c 10865
e6e4e701 10866 set_remote_traceframe ();
82f73884
PA
10867 set_general_thread (inferior_ptid);
10868
10869 rs = get_remote_state ();
10870
b2182ed2 10871 /* Handle memory using the standard memory routines. */
21e3b9b9
DJ
10872 if (object == TARGET_OBJECT_MEMORY)
10873 {
2d717e4f
DJ
10874 /* If the remote target is connected but not running, we should
10875 pass this request down to a lower stratum (e.g. the executable
10876 file). */
10877 if (!target_has_execution)
9b409511 10878 return TARGET_XFER_EOF;
2d717e4f 10879
21e3b9b9 10880 if (writebuf != NULL)
124e13d9
SM
10881 return remote_write_bytes (offset, writebuf, len, unit_size,
10882 xfered_len);
21e3b9b9 10883 else
6b8edb51 10884 return remote_read_bytes (offset, readbuf, len, unit_size,
124e13d9 10885 xfered_len);
21e3b9b9
DJ
10886 }
10887
4aa995e1
PA
10888 /* Handle extra signal info using qxfer packets. */
10889 if (object == TARGET_OBJECT_SIGNAL_INFO)
10890 {
10891 if (readbuf)
f6ac5f3d 10892 return remote_read_qxfer ("siginfo", annex, readbuf, offset, len,
9b409511 10893 xfered_len, &remote_protocol_packets
4aa995e1
PA
10894 [PACKET_qXfer_siginfo_read]);
10895 else
f6ac5f3d 10896 return remote_write_qxfer ("siginfo", annex,
9b409511 10897 writebuf, offset, len, xfered_len,
4aa995e1
PA
10898 &remote_protocol_packets
10899 [PACKET_qXfer_siginfo_write]);
10900 }
10901
0fb4aa4b
PA
10902 if (object == TARGET_OBJECT_STATIC_TRACE_DATA)
10903 {
10904 if (readbuf)
f6ac5f3d 10905 return remote_read_qxfer ("statictrace", annex,
9b409511 10906 readbuf, offset, len, xfered_len,
0fb4aa4b
PA
10907 &remote_protocol_packets
10908 [PACKET_qXfer_statictrace_read]);
10909 else
2ed4b548 10910 return TARGET_XFER_E_IO;
0fb4aa4b
PA
10911 }
10912
a76d924d
DJ
10913 /* Only handle flash writes. */
10914 if (writebuf != NULL)
10915 {
a76d924d
DJ
10916 switch (object)
10917 {
10918 case TARGET_OBJECT_FLASH:
6b8edb51 10919 return remote_flash_write (offset, len, xfered_len,
9b409511 10920 writebuf);
a76d924d
DJ
10921
10922 default:
2ed4b548 10923 return TARGET_XFER_E_IO;
a76d924d
DJ
10924 }
10925 }
4b8a223f 10926
1e3ff5ad
AC
10927 /* Map pre-existing objects onto letters. DO NOT do this for new
10928 objects!!! Instead specify new query packets. */
10929 switch (object)
c906108c 10930 {
1e3ff5ad
AC
10931 case TARGET_OBJECT_AVR:
10932 query_type = 'R';
10933 break;
802188a7
RM
10934
10935 case TARGET_OBJECT_AUXV:
0876f84a 10936 gdb_assert (annex == NULL);
f6ac5f3d 10937 return remote_read_qxfer ("auxv", annex, readbuf, offset, len,
9b409511 10938 xfered_len,
0876f84a 10939 &remote_protocol_packets[PACKET_qXfer_auxv]);
802188a7 10940
23181151
DJ
10941 case TARGET_OBJECT_AVAILABLE_FEATURES:
10942 return remote_read_qxfer
f6ac5f3d 10943 ("features", annex, readbuf, offset, len, xfered_len,
23181151
DJ
10944 &remote_protocol_packets[PACKET_qXfer_features]);
10945
cfa9d6d9
DJ
10946 case TARGET_OBJECT_LIBRARIES:
10947 return remote_read_qxfer
f6ac5f3d 10948 ("libraries", annex, readbuf, offset, len, xfered_len,
cfa9d6d9
DJ
10949 &remote_protocol_packets[PACKET_qXfer_libraries]);
10950
2268b414
JK
10951 case TARGET_OBJECT_LIBRARIES_SVR4:
10952 return remote_read_qxfer
f6ac5f3d 10953 ("libraries-svr4", annex, readbuf, offset, len, xfered_len,
2268b414
JK
10954 &remote_protocol_packets[PACKET_qXfer_libraries_svr4]);
10955
fd79ecee
DJ
10956 case TARGET_OBJECT_MEMORY_MAP:
10957 gdb_assert (annex == NULL);
f6ac5f3d 10958 return remote_read_qxfer ("memory-map", annex, readbuf, offset, len,
9b409511 10959 xfered_len,
fd79ecee
DJ
10960 &remote_protocol_packets[PACKET_qXfer_memory_map]);
10961
07e059b5
VP
10962 case TARGET_OBJECT_OSDATA:
10963 /* Should only get here if we're connected. */
5d93a237 10964 gdb_assert (rs->remote_desc);
07e059b5 10965 return remote_read_qxfer
f6ac5f3d 10966 ("osdata", annex, readbuf, offset, len, xfered_len,
07e059b5
VP
10967 &remote_protocol_packets[PACKET_qXfer_osdata]);
10968
dc146f7c
VP
10969 case TARGET_OBJECT_THREADS:
10970 gdb_assert (annex == NULL);
f6ac5f3d 10971 return remote_read_qxfer ("threads", annex, readbuf, offset, len,
9b409511 10972 xfered_len,
dc146f7c
VP
10973 &remote_protocol_packets[PACKET_qXfer_threads]);
10974
b3b9301e
PA
10975 case TARGET_OBJECT_TRACEFRAME_INFO:
10976 gdb_assert (annex == NULL);
10977 return remote_read_qxfer
f6ac5f3d 10978 ("traceframe-info", annex, readbuf, offset, len, xfered_len,
b3b9301e 10979 &remote_protocol_packets[PACKET_qXfer_traceframe_info]);
78d85199
YQ
10980
10981 case TARGET_OBJECT_FDPIC:
f6ac5f3d 10982 return remote_read_qxfer ("fdpic", annex, readbuf, offset, len,
9b409511 10983 xfered_len,
78d85199 10984 &remote_protocol_packets[PACKET_qXfer_fdpic]);
169081d0
TG
10985
10986 case TARGET_OBJECT_OPENVMS_UIB:
f6ac5f3d 10987 return remote_read_qxfer ("uib", annex, readbuf, offset, len,
9b409511 10988 xfered_len,
169081d0
TG
10989 &remote_protocol_packets[PACKET_qXfer_uib]);
10990
9accd112 10991 case TARGET_OBJECT_BTRACE:
f6ac5f3d 10992 return remote_read_qxfer ("btrace", annex, readbuf, offset, len,
9b409511 10993 xfered_len,
9accd112
MM
10994 &remote_protocol_packets[PACKET_qXfer_btrace]);
10995
f4abbc16 10996 case TARGET_OBJECT_BTRACE_CONF:
f6ac5f3d 10997 return remote_read_qxfer ("btrace-conf", annex, readbuf, offset,
f4abbc16
MM
10998 len, xfered_len,
10999 &remote_protocol_packets[PACKET_qXfer_btrace_conf]);
11000
c78fa86a 11001 case TARGET_OBJECT_EXEC_FILE:
f6ac5f3d 11002 return remote_read_qxfer ("exec-file", annex, readbuf, offset,
c78fa86a
GB
11003 len, xfered_len,
11004 &remote_protocol_packets[PACKET_qXfer_exec_file]);
11005
1e3ff5ad 11006 default:
2ed4b548 11007 return TARGET_XFER_E_IO;
c906108c
SS
11008 }
11009
0df8b418 11010 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
24b06219 11011 large enough let the caller deal with it. */
ea9c271d 11012 if (len < get_remote_packet_size ())
2ed4b548 11013 return TARGET_XFER_E_IO;
ea9c271d 11014 len = get_remote_packet_size ();
1e3ff5ad 11015
23860348 11016 /* Except for querying the minimum buffer size, target must be open. */
5d93a237 11017 if (!rs->remote_desc)
8a3fe4f8 11018 error (_("remote query is only available after target open"));
c906108c 11019
1e3ff5ad 11020 gdb_assert (annex != NULL);
4b8a223f 11021 gdb_assert (readbuf != NULL);
c906108c 11022
8d64371b 11023 p2 = rs->buf.data ();
c906108c
SS
11024 *p2++ = 'q';
11025 *p2++ = query_type;
11026
23860348
MS
11027 /* We used one buffer char for the remote protocol q command and
11028 another for the query type. As the remote protocol encapsulation
11029 uses 4 chars plus one extra in case we are debugging
11030 (remote_debug), we have PBUFZIZ - 7 left to pack the query
11031 string. */
c906108c 11032 i = 0;
ea9c271d 11033 while (annex[i] && (i < (get_remote_packet_size () - 8)))
c906108c 11034 {
1e3ff5ad
AC
11035 /* Bad caller may have sent forbidden characters. */
11036 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
11037 *p2++ = annex[i];
c906108c
SS
11038 i++;
11039 }
1e3ff5ad
AC
11040 *p2 = '\0';
11041 gdb_assert (annex[i] == '\0');
c906108c 11042
6d820c5c 11043 i = putpkt (rs->buf);
c5aa993b 11044 if (i < 0)
2ed4b548 11045 return TARGET_XFER_E_IO;
c906108c 11046
8d64371b
TT
11047 getpkt (&rs->buf, 0);
11048 strcpy ((char *) readbuf, rs->buf.data ());
c906108c 11049
9b409511 11050 *xfered_len = strlen ((char *) readbuf);
92ffd475 11051 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
c906108c
SS
11052}
11053
09c98b44
DB
11054/* Implementation of to_get_memory_xfer_limit. */
11055
f6ac5f3d
PA
11056ULONGEST
11057remote_target::get_memory_xfer_limit ()
09c98b44
DB
11058{
11059 return get_memory_write_packet_size ();
11060}
11061
f6ac5f3d
PA
11062int
11063remote_target::search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
11064 const gdb_byte *pattern, ULONGEST pattern_len,
11065 CORE_ADDR *found_addrp)
08388c79 11066{
f5656ead 11067 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
08388c79
DE
11068 struct remote_state *rs = get_remote_state ();
11069 int max_size = get_memory_write_packet_size ();
11070 struct packet_config *packet =
11071 &remote_protocol_packets[PACKET_qSearch_memory];
0df8b418
MS
11072 /* Number of packet bytes used to encode the pattern;
11073 this could be more than PATTERN_LEN due to escape characters. */
08388c79 11074 int escaped_pattern_len;
0df8b418 11075 /* Amount of pattern that was encodable in the packet. */
08388c79
DE
11076 int used_pattern_len;
11077 int i;
11078 int found;
11079 ULONGEST found_addr;
11080
7cc244de
PA
11081 /* Don't go to the target if we don't have to. This is done before
11082 checking packet_config_support to avoid the possibility that a
11083 success for this edge case means the facility works in
11084 general. */
08388c79
DE
11085 if (pattern_len > search_space_len)
11086 return 0;
11087 if (pattern_len == 0)
11088 {
11089 *found_addrp = start_addr;
11090 return 1;
11091 }
11092
11093 /* If we already know the packet isn't supported, fall back to the simple
11094 way of searching memory. */
11095
4082afcc 11096 if (packet_config_support (packet) == PACKET_DISABLE)
08388c79
DE
11097 {
11098 /* Target doesn't provided special support, fall back and use the
11099 standard support (copy memory and do the search here). */
f6ac5f3d 11100 return simple_search_memory (this, start_addr, search_space_len,
08388c79
DE
11101 pattern, pattern_len, found_addrp);
11102 }
11103
28439a30
PA
11104 /* Make sure the remote is pointing at the right process. */
11105 set_general_process ();
11106
08388c79 11107 /* Insert header. */
8d64371b 11108 i = snprintf (rs->buf.data (), max_size,
08388c79 11109 "qSearch:memory:%s;%s;",
5af949e3 11110 phex_nz (start_addr, addr_size),
08388c79
DE
11111 phex_nz (search_space_len, sizeof (search_space_len)));
11112 max_size -= (i + 1);
11113
11114 /* Escape as much data as fits into rs->buf. */
11115 escaped_pattern_len =
8d64371b
TT
11116 remote_escape_output (pattern, pattern_len, 1,
11117 (gdb_byte *) rs->buf.data () + i,
08388c79
DE
11118 &used_pattern_len, max_size);
11119
11120 /* Bail if the pattern is too large. */
11121 if (used_pattern_len != pattern_len)
9b20d036 11122 error (_("Pattern is too large to transmit to remote target."));
08388c79 11123
8d64371b
TT
11124 if (putpkt_binary (rs->buf.data (), i + escaped_pattern_len) < 0
11125 || getpkt_sane (&rs->buf, 0) < 0
08388c79
DE
11126 || packet_ok (rs->buf, packet) != PACKET_OK)
11127 {
11128 /* The request may not have worked because the command is not
11129 supported. If so, fall back to the simple way. */
7cc244de 11130 if (packet_config_support (packet) == PACKET_DISABLE)
08388c79 11131 {
f6ac5f3d 11132 return simple_search_memory (this, start_addr, search_space_len,
08388c79
DE
11133 pattern, pattern_len, found_addrp);
11134 }
11135 return -1;
11136 }
11137
11138 if (rs->buf[0] == '0')
11139 found = 0;
11140 else if (rs->buf[0] == '1')
11141 {
11142 found = 1;
11143 if (rs->buf[1] != ',')
8d64371b
TT
11144 error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ());
11145 unpack_varlen_hex (&rs->buf[2], &found_addr);
08388c79
DE
11146 *found_addrp = found_addr;
11147 }
11148 else
8d64371b 11149 error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ());
08388c79
DE
11150
11151 return found;
11152}
11153
f6ac5f3d
PA
11154void
11155remote_target::rcmd (const char *command, struct ui_file *outbuf)
96baa820 11156{
d01949b6 11157 struct remote_state *rs = get_remote_state ();
8d64371b 11158 char *p = rs->buf.data ();
96baa820 11159
5d93a237 11160 if (!rs->remote_desc)
8a3fe4f8 11161 error (_("remote rcmd is only available after target open"));
96baa820 11162
23860348 11163 /* Send a NULL command across as an empty command. */
7be570e7
JM
11164 if (command == NULL)
11165 command = "";
11166
23860348 11167 /* The query prefix. */
8d64371b
TT
11168 strcpy (rs->buf.data (), "qRcmd,");
11169 p = strchr (rs->buf.data (), '\0');
96baa820 11170
8d64371b 11171 if ((strlen (rs->buf.data ()) + strlen (command) * 2 + 8/*misc*/)
3e43a32a 11172 > get_remote_packet_size ())
8a3fe4f8 11173 error (_("\"monitor\" command ``%s'' is too long."), command);
96baa820 11174
23860348 11175 /* Encode the actual command. */
a30bf1f1 11176 bin2hex ((const gdb_byte *) command, p, strlen (command));
96baa820 11177
6d820c5c 11178 if (putpkt (rs->buf) < 0)
8a3fe4f8 11179 error (_("Communication problem with target."));
96baa820
JM
11180
11181 /* get/display the response */
11182 while (1)
11183 {
2e9f7625
DJ
11184 char *buf;
11185
00bf0b85 11186 /* XXX - see also remote_get_noisy_reply(). */
5b37825d 11187 QUIT; /* Allow user to bail out with ^C. */
2e9f7625 11188 rs->buf[0] = '\0';
8d64371b 11189 if (getpkt_sane (&rs->buf, 0) == -1)
5b37825d
PW
11190 {
11191 /* Timeout. Continue to (try to) read responses.
11192 This is better than stopping with an error, assuming the stub
11193 is still executing the (long) monitor command.
11194 If needed, the user can interrupt gdb using C-c, obtaining
11195 an effect similar to stop on timeout. */
11196 continue;
11197 }
8d64371b 11198 buf = rs->buf.data ();
96baa820 11199 if (buf[0] == '\0')
8a3fe4f8 11200 error (_("Target does not support this command."));
96baa820
JM
11201 if (buf[0] == 'O' && buf[1] != 'K')
11202 {
23860348 11203 remote_console_output (buf + 1); /* 'O' message from stub. */
96baa820
JM
11204 continue;
11205 }
11206 if (strcmp (buf, "OK") == 0)
11207 break;
7be570e7
JM
11208 if (strlen (buf) == 3 && buf[0] == 'E'
11209 && isdigit (buf[1]) && isdigit (buf[2]))
11210 {
8a3fe4f8 11211 error (_("Protocol error with Rcmd"));
7be570e7 11212 }
96baa820
JM
11213 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
11214 {
11215 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
a744cf53 11216
96baa820
JM
11217 fputc_unfiltered (c, outbuf);
11218 }
11219 break;
11220 }
11221}
11222
f6ac5f3d
PA
11223std::vector<mem_region>
11224remote_target::memory_map ()
fd79ecee 11225{
a664f67e 11226 std::vector<mem_region> result;
9018be22 11227 gdb::optional<gdb::char_vector> text
8b88a78e 11228 = target_read_stralloc (current_top_target (), TARGET_OBJECT_MEMORY_MAP, NULL);
fd79ecee
DJ
11229
11230 if (text)
9018be22 11231 result = parse_memory_map (text->data ());
fd79ecee
DJ
11232
11233 return result;
11234}
11235
c906108c 11236static void
ac88e2de 11237packet_command (const char *args, int from_tty)
c906108c 11238{
6b8edb51 11239 remote_target *remote = get_current_remote_target ();
c906108c 11240
6b8edb51 11241 if (remote == nullptr)
8a3fe4f8 11242 error (_("command can only be used with remote target"));
c906108c 11243
6b8edb51
PA
11244 remote->packet_command (args, from_tty);
11245}
11246
11247void
11248remote_target::packet_command (const char *args, int from_tty)
11249{
c5aa993b 11250 if (!args)
8a3fe4f8 11251 error (_("remote-packet command requires packet text as argument"));
c906108c
SS
11252
11253 puts_filtered ("sending: ");
11254 print_packet (args);
11255 puts_filtered ("\n");
11256 putpkt (args);
11257
6b8edb51
PA
11258 remote_state *rs = get_remote_state ();
11259
8d64371b 11260 getpkt (&rs->buf, 0);
c906108c 11261 puts_filtered ("received: ");
8d64371b 11262 print_packet (rs->buf.data ());
c906108c
SS
11263 puts_filtered ("\n");
11264}
11265
11266#if 0
23860348 11267/* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
c906108c 11268
a14ed312 11269static void display_thread_info (struct gdb_ext_thread_info *info);
c906108c 11270
a14ed312 11271static void threadset_test_cmd (char *cmd, int tty);
c906108c 11272
a14ed312 11273static void threadalive_test (char *cmd, int tty);
c906108c 11274
a14ed312 11275static void threadlist_test_cmd (char *cmd, int tty);
c906108c 11276
23860348 11277int get_and_display_threadinfo (threadref *ref);
c906108c 11278
a14ed312 11279static void threadinfo_test_cmd (char *cmd, int tty);
c906108c 11280
23860348 11281static int thread_display_step (threadref *ref, void *context);
c906108c 11282
a14ed312 11283static void threadlist_update_test_cmd (char *cmd, int tty);
c906108c 11284
a14ed312 11285static void init_remote_threadtests (void);
c906108c 11286
23860348 11287#define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
c906108c
SS
11288
11289static void
0b39b52e 11290threadset_test_cmd (const char *cmd, int tty)
c906108c
SS
11291{
11292 int sample_thread = SAMPLE_THREAD;
11293
a3f17187 11294 printf_filtered (_("Remote threadset test\n"));
79d7f229 11295 set_general_thread (sample_thread);
c906108c
SS
11296}
11297
11298
11299static void
0b39b52e 11300threadalive_test (const char *cmd, int tty)
c906108c
SS
11301{
11302 int sample_thread = SAMPLE_THREAD;
e99b03dc 11303 int pid = inferior_ptid.pid ();
fd79271b 11304 ptid_t ptid = ptid_t (pid, sample_thread, 0);
c906108c 11305
79d7f229 11306 if (remote_thread_alive (ptid))
c906108c
SS
11307 printf_filtered ("PASS: Thread alive test\n");
11308 else
11309 printf_filtered ("FAIL: Thread alive test\n");
11310}
11311
23860348 11312void output_threadid (char *title, threadref *ref);
c906108c
SS
11313
11314void
fba45db2 11315output_threadid (char *title, threadref *ref)
c906108c
SS
11316{
11317 char hexid[20];
11318
405feb71 11319 pack_threadid (&hexid[0], ref); /* Convert thread id into hex. */
c906108c
SS
11320 hexid[16] = 0;
11321 printf_filtered ("%s %s\n", title, (&hexid[0]));
11322}
11323
11324static void
0b39b52e 11325threadlist_test_cmd (const char *cmd, int tty)
c906108c
SS
11326{
11327 int startflag = 1;
11328 threadref nextthread;
11329 int done, result_count;
11330 threadref threadlist[3];
11331
11332 printf_filtered ("Remote Threadlist test\n");
11333 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
11334 &result_count, &threadlist[0]))
11335 printf_filtered ("FAIL: threadlist test\n");
11336 else
11337 {
11338 threadref *scan = threadlist;
11339 threadref *limit = scan + result_count;
11340
11341 while (scan < limit)
11342 output_threadid (" thread ", scan++);
11343 }
11344}
11345
11346void
fba45db2 11347display_thread_info (struct gdb_ext_thread_info *info)
c906108c
SS
11348{
11349 output_threadid ("Threadid: ", &info->threadid);
11350 printf_filtered ("Name: %s\n ", info->shortname);
11351 printf_filtered ("State: %s\n", info->display);
11352 printf_filtered ("other: %s\n\n", info->more_display);
11353}
11354
11355int
fba45db2 11356get_and_display_threadinfo (threadref *ref)
c906108c
SS
11357{
11358 int result;
11359 int set;
11360 struct gdb_ext_thread_info threadinfo;
11361
11362 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
11363 | TAG_MOREDISPLAY | TAG_DISPLAY;
11364 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
11365 display_thread_info (&threadinfo);
11366 return result;
11367}
11368
11369static void
0b39b52e 11370threadinfo_test_cmd (const char *cmd, int tty)
c906108c
SS
11371{
11372 int athread = SAMPLE_THREAD;
11373 threadref thread;
11374 int set;
11375
11376 int_to_threadref (&thread, athread);
11377 printf_filtered ("Remote Threadinfo test\n");
11378 if (!get_and_display_threadinfo (&thread))
11379 printf_filtered ("FAIL cannot get thread info\n");
11380}
11381
11382static int
fba45db2 11383thread_display_step (threadref *ref, void *context)
c906108c
SS
11384{
11385 /* output_threadid(" threadstep ",ref); *//* simple test */
11386 return get_and_display_threadinfo (ref);
11387}
11388
11389static void
0b39b52e 11390threadlist_update_test_cmd (const char *cmd, int tty)
c906108c
SS
11391{
11392 printf_filtered ("Remote Threadlist update test\n");
11393 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
11394}
11395
11396static void
11397init_remote_threadtests (void)
11398{
3e43a32a
MS
11399 add_com ("tlist", class_obscure, threadlist_test_cmd,
11400 _("Fetch and print the remote list of "
590042fc 11401 "thread identifiers, one pkt only."));
c906108c 11402 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
590042fc 11403 _("Fetch and display info about one thread."));
c906108c 11404 add_com ("tset", class_obscure, threadset_test_cmd,
590042fc 11405 _("Test setting to a different thread."));
c906108c 11406 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
590042fc 11407 _("Iterate through updating all remote thread info."));
c906108c 11408 add_com ("talive", class_obscure, threadalive_test,
590042fc 11409 _("Remote thread alive test."));
c906108c
SS
11410}
11411
11412#endif /* 0 */
11413
a068643d 11414/* Convert a thread ID to a string. */
f3fb8c85 11415
a068643d 11416std::string
f6ac5f3d 11417remote_target::pid_to_str (ptid_t ptid)
f3fb8c85 11418{
82f73884 11419 struct remote_state *rs = get_remote_state ();
f3fb8c85 11420
d7e15655 11421 if (ptid == null_ptid)
7cee1e54 11422 return normal_pid_to_str (ptid);
0e998d96 11423 else if (ptid.is_pid ())
ecd0ada5
PA
11424 {
11425 /* Printing an inferior target id. */
11426
11427 /* When multi-process extensions are off, there's no way in the
11428 remote protocol to know the remote process id, if there's any
11429 at all. There's one exception --- when we're connected with
11430 target extended-remote, and we manually attached to a process
11431 with "attach PID". We don't record anywhere a flag that
11432 allows us to distinguish that case from the case of
11433 connecting with extended-remote and the stub already being
11434 attached to a process, and reporting yes to qAttached, hence
11435 no smart special casing here. */
11436 if (!remote_multi_process_p (rs))
a068643d 11437 return "Remote target";
ecd0ada5
PA
11438
11439 return normal_pid_to_str (ptid);
82f73884 11440 }
ecd0ada5 11441 else
79d7f229 11442 {
d7e15655 11443 if (magic_null_ptid == ptid)
a068643d 11444 return "Thread <main>";
8020350c 11445 else if (remote_multi_process_p (rs))
e38504b3 11446 if (ptid.lwp () == 0)
de0d863e
DB
11447 return normal_pid_to_str (ptid);
11448 else
a068643d
TT
11449 return string_printf ("Thread %d.%ld",
11450 ptid.pid (), ptid.lwp ());
ecd0ada5 11451 else
a068643d 11452 return string_printf ("Thread %ld", ptid.lwp ());
79d7f229 11453 }
f3fb8c85
MS
11454}
11455
38691318
KB
11456/* Get the address of the thread local variable in OBJFILE which is
11457 stored at OFFSET within the thread local storage for thread PTID. */
11458
f6ac5f3d
PA
11459CORE_ADDR
11460remote_target::get_thread_local_address (ptid_t ptid, CORE_ADDR lm,
11461 CORE_ADDR offset)
38691318 11462{
4082afcc 11463 if (packet_support (PACKET_qGetTLSAddr) != PACKET_DISABLE)
38691318
KB
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 ();
571dd617 11468 enum packet_result result;
38691318
KB
11469
11470 strcpy (p, "qGetTLSAddr:");
11471 p += strlen (p);
82f73884 11472 p = write_ptid (p, endp, ptid);
38691318
KB
11473 *p++ = ',';
11474 p += hexnumstr (p, offset);
11475 *p++ = ',';
11476 p += hexnumstr (p, lm);
11477 *p++ = '\0';
11478
6d820c5c 11479 putpkt (rs->buf);
8d64371b 11480 getpkt (&rs->buf, 0);
3e43a32a
MS
11481 result = packet_ok (rs->buf,
11482 &remote_protocol_packets[PACKET_qGetTLSAddr]);
571dd617 11483 if (result == PACKET_OK)
38691318 11484 {
b926417a 11485 ULONGEST addr;
38691318 11486
8d64371b 11487 unpack_varlen_hex (rs->buf.data (), &addr);
b926417a 11488 return addr;
38691318 11489 }
571dd617 11490 else if (result == PACKET_UNKNOWN)
109c3e39
AC
11491 throw_error (TLS_GENERIC_ERROR,
11492 _("Remote target doesn't support qGetTLSAddr packet"));
38691318 11493 else
109c3e39
AC
11494 throw_error (TLS_GENERIC_ERROR,
11495 _("Remote target failed to process qGetTLSAddr request"));
38691318
KB
11496 }
11497 else
109c3e39
AC
11498 throw_error (TLS_GENERIC_ERROR,
11499 _("TLS not supported or disabled on this target"));
38691318
KB
11500 /* Not reached. */
11501 return 0;
11502}
11503
711e434b
PM
11504/* Provide thread local base, i.e. Thread Information Block address.
11505 Returns 1 if ptid is found and thread_local_base is non zero. */
11506
57810aa7 11507bool
f6ac5f3d 11508remote_target::get_tib_address (ptid_t ptid, CORE_ADDR *addr)
711e434b 11509{
4082afcc 11510 if (packet_support (PACKET_qGetTIBAddr) != PACKET_DISABLE)
711e434b
PM
11511 {
11512 struct remote_state *rs = get_remote_state ();
8d64371b
TT
11513 char *p = rs->buf.data ();
11514 char *endp = p + get_remote_packet_size ();
711e434b
PM
11515 enum packet_result result;
11516
11517 strcpy (p, "qGetTIBAddr:");
11518 p += strlen (p);
11519 p = write_ptid (p, endp, ptid);
11520 *p++ = '\0';
11521
11522 putpkt (rs->buf);
8d64371b 11523 getpkt (&rs->buf, 0);
711e434b
PM
11524 result = packet_ok (rs->buf,
11525 &remote_protocol_packets[PACKET_qGetTIBAddr]);
11526 if (result == PACKET_OK)
11527 {
b926417a 11528 ULONGEST val;
8d64371b 11529 unpack_varlen_hex (rs->buf.data (), &val);
711e434b 11530 if (addr)
b926417a 11531 *addr = (CORE_ADDR) val;
57810aa7 11532 return true;
711e434b
PM
11533 }
11534 else if (result == PACKET_UNKNOWN)
11535 error (_("Remote target doesn't support qGetTIBAddr packet"));
11536 else
11537 error (_("Remote target failed to process qGetTIBAddr request"));
11538 }
11539 else
11540 error (_("qGetTIBAddr not supported or disabled on this target"));
11541 /* Not reached. */
57810aa7 11542 return false;
711e434b
PM
11543}
11544
29709017
DJ
11545/* Support for inferring a target description based on the current
11546 architecture and the size of a 'g' packet. While the 'g' packet
11547 can have any size (since optional registers can be left off the
11548 end), some sizes are easily recognizable given knowledge of the
11549 approximate architecture. */
11550
11551struct remote_g_packet_guess
11552{
eefce37f
TT
11553 remote_g_packet_guess (int bytes_, const struct target_desc *tdesc_)
11554 : bytes (bytes_),
11555 tdesc (tdesc_)
11556 {
11557 }
11558
29709017
DJ
11559 int bytes;
11560 const struct target_desc *tdesc;
11561};
29709017 11562
eefce37f 11563struct remote_g_packet_data : public allocate_on_obstack
29709017 11564{
eefce37f 11565 std::vector<remote_g_packet_guess> guesses;
29709017
DJ
11566};
11567
11568static struct gdbarch_data *remote_g_packet_data_handle;
11569
11570static void *
11571remote_g_packet_data_init (struct obstack *obstack)
11572{
eefce37f 11573 return new (obstack) remote_g_packet_data;
29709017
DJ
11574}
11575
11576void
11577register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes,
11578 const struct target_desc *tdesc)
11579{
11580 struct remote_g_packet_data *data
19ba03f4
SM
11581 = ((struct remote_g_packet_data *)
11582 gdbarch_data (gdbarch, remote_g_packet_data_handle));
29709017
DJ
11583
11584 gdb_assert (tdesc != NULL);
11585
eefce37f
TT
11586 for (const remote_g_packet_guess &guess : data->guesses)
11587 if (guess.bytes == bytes)
29709017 11588 internal_error (__FILE__, __LINE__,
9b20d036 11589 _("Duplicate g packet description added for size %d"),
29709017
DJ
11590 bytes);
11591
eefce37f 11592 data->guesses.emplace_back (bytes, tdesc);
29709017
DJ
11593}
11594
eefce37f
TT
11595/* Return true if remote_read_description would do anything on this target
11596 and architecture, false otherwise. */
d962ef82 11597
eefce37f 11598static bool
d962ef82
DJ
11599remote_read_description_p (struct target_ops *target)
11600{
11601 struct remote_g_packet_data *data
19ba03f4
SM
11602 = ((struct remote_g_packet_data *)
11603 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
d962ef82 11604
eefce37f 11605 return !data->guesses.empty ();
d962ef82
DJ
11606}
11607
f6ac5f3d
PA
11608const struct target_desc *
11609remote_target::read_description ()
29709017
DJ
11610{
11611 struct remote_g_packet_data *data
19ba03f4
SM
11612 = ((struct remote_g_packet_data *)
11613 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
29709017 11614
d962ef82
DJ
11615 /* Do not try this during initial connection, when we do not know
11616 whether there is a running but stopped thread. */
d7e15655 11617 if (!target_has_execution || inferior_ptid == null_ptid)
b6a8c27b 11618 return beneath ()->read_description ();
d962ef82 11619
eefce37f 11620 if (!data->guesses.empty ())
29709017 11621 {
29709017
DJ
11622 int bytes = send_g_packet ();
11623
eefce37f
TT
11624 for (const remote_g_packet_guess &guess : data->guesses)
11625 if (guess.bytes == bytes)
11626 return guess.tdesc;
29709017
DJ
11627
11628 /* We discard the g packet. A minor optimization would be to
11629 hold on to it, and fill the register cache once we have selected
11630 an architecture, but it's too tricky to do safely. */
11631 }
11632
b6a8c27b 11633 return beneath ()->read_description ();
29709017
DJ
11634}
11635
a6b151f1
DJ
11636/* Remote file transfer support. This is host-initiated I/O, not
11637 target-initiated; for target-initiated, see remote-fileio.c. */
11638
11639/* If *LEFT is at least the length of STRING, copy STRING to
11640 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11641 decrease *LEFT. Otherwise raise an error. */
11642
11643static void
a121b7c1 11644remote_buffer_add_string (char **buffer, int *left, const char *string)
a6b151f1
DJ
11645{
11646 int len = strlen (string);
11647
11648 if (len > *left)
11649 error (_("Packet too long for target."));
11650
11651 memcpy (*buffer, string, len);
11652 *buffer += len;
11653 *left -= len;
11654
11655 /* NUL-terminate the buffer as a convenience, if there is
11656 room. */
11657 if (*left)
11658 **buffer = '\0';
11659}
11660
11661/* If *LEFT is large enough, hex encode LEN bytes from BYTES into
11662 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11663 decrease *LEFT. Otherwise raise an error. */
11664
11665static void
11666remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes,
11667 int len)
11668{
11669 if (2 * len > *left)
11670 error (_("Packet too long for target."));
11671
11672 bin2hex (bytes, *buffer, len);
11673 *buffer += 2 * len;
11674 *left -= 2 * len;
11675
11676 /* NUL-terminate the buffer as a convenience, if there is
11677 room. */
11678 if (*left)
11679 **buffer = '\0';
11680}
11681
11682/* If *LEFT is large enough, convert VALUE to hex and add it to
11683 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11684 decrease *LEFT. Otherwise raise an error. */
11685
11686static void
11687remote_buffer_add_int (char **buffer, int *left, ULONGEST value)
11688{
11689 int len = hexnumlen (value);
11690
11691 if (len > *left)
11692 error (_("Packet too long for target."));
11693
11694 hexnumstr (*buffer, value);
11695 *buffer += len;
11696 *left -= len;
11697
11698 /* NUL-terminate the buffer as a convenience, if there is
11699 room. */
11700 if (*left)
11701 **buffer = '\0';
11702}
11703
11704/* Parse an I/O result packet from BUFFER. Set RETCODE to the return
11705 value, *REMOTE_ERRNO to the remote error number or zero if none
11706 was included, and *ATTACHMENT to point to the start of the annex
11707 if any. The length of the packet isn't needed here; there may
11708 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
11709
11710 Return 0 if the packet could be parsed, -1 if it could not. If
11711 -1 is returned, the other variables may not be initialized. */
11712
11713static int
11714remote_hostio_parse_result (char *buffer, int *retcode,
11715 int *remote_errno, char **attachment)
11716{
11717 char *p, *p2;
11718
11719 *remote_errno = 0;
11720 *attachment = NULL;
11721
11722 if (buffer[0] != 'F')
11723 return -1;
11724
11725 errno = 0;
11726 *retcode = strtol (&buffer[1], &p, 16);
11727 if (errno != 0 || p == &buffer[1])
11728 return -1;
11729
11730 /* Check for ",errno". */
11731 if (*p == ',')
11732 {
11733 errno = 0;
11734 *remote_errno = strtol (p + 1, &p2, 16);
11735 if (errno != 0 || p + 1 == p2)
11736 return -1;
11737 p = p2;
11738 }
11739
11740 /* Check for ";attachment". If there is no attachment, the
11741 packet should end here. */
11742 if (*p == ';')
11743 {
11744 *attachment = p + 1;
11745 return 0;
11746 }
11747 else if (*p == '\0')
11748 return 0;
11749 else
11750 return -1;
11751}
11752
11753/* Send a prepared I/O packet to the target and read its response.
11754 The prepared packet is in the global RS->BUF before this function
11755 is called, and the answer is there when we return.
11756
11757 COMMAND_BYTES is the length of the request to send, which may include
11758 binary data. WHICH_PACKET is the packet configuration to check
11759 before attempting a packet. If an error occurs, *REMOTE_ERRNO
11760 is set to the error number and -1 is returned. Otherwise the value
11761 returned by the function is returned.
11762
11763 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
11764 attachment is expected; an error will be reported if there's a
11765 mismatch. If one is found, *ATTACHMENT will be set to point into
11766 the packet buffer and *ATTACHMENT_LEN will be set to the
11767 attachment's length. */
11768
6b8edb51
PA
11769int
11770remote_target::remote_hostio_send_command (int command_bytes, int which_packet,
11771 int *remote_errno, char **attachment,
11772 int *attachment_len)
a6b151f1
DJ
11773{
11774 struct remote_state *rs = get_remote_state ();
11775 int ret, bytes_read;
11776 char *attachment_tmp;
11777
20db9c52 11778 if (packet_support (which_packet) == PACKET_DISABLE)
a6b151f1
DJ
11779 {
11780 *remote_errno = FILEIO_ENOSYS;
11781 return -1;
11782 }
11783
8d64371b
TT
11784 putpkt_binary (rs->buf.data (), command_bytes);
11785 bytes_read = getpkt_sane (&rs->buf, 0);
a6b151f1
DJ
11786
11787 /* If it timed out, something is wrong. Don't try to parse the
11788 buffer. */
11789 if (bytes_read < 0)
11790 {
11791 *remote_errno = FILEIO_EINVAL;
11792 return -1;
11793 }
11794
11795 switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet]))
11796 {
11797 case PACKET_ERROR:
11798 *remote_errno = FILEIO_EINVAL;
11799 return -1;
11800 case PACKET_UNKNOWN:
11801 *remote_errno = FILEIO_ENOSYS;
11802 return -1;
11803 case PACKET_OK:
11804 break;
11805 }
11806
8d64371b 11807 if (remote_hostio_parse_result (rs->buf.data (), &ret, remote_errno,
a6b151f1
DJ
11808 &attachment_tmp))
11809 {
11810 *remote_errno = FILEIO_EINVAL;
11811 return -1;
11812 }
11813
11814 /* Make sure we saw an attachment if and only if we expected one. */
11815 if ((attachment_tmp == NULL && attachment != NULL)
11816 || (attachment_tmp != NULL && attachment == NULL))
11817 {
11818 *remote_errno = FILEIO_EINVAL;
11819 return -1;
11820 }
11821
11822 /* If an attachment was found, it must point into the packet buffer;
11823 work out how many bytes there were. */
11824 if (attachment_tmp != NULL)
11825 {
11826 *attachment = attachment_tmp;
8d64371b 11827 *attachment_len = bytes_read - (*attachment - rs->buf.data ());
a6b151f1
DJ
11828 }
11829
11830 return ret;
11831}
11832
dd194f6b 11833/* See declaration.h. */
80152258 11834
dd194f6b
PA
11835void
11836readahead_cache::invalidate ()
80152258 11837{
dd194f6b 11838 this->fd = -1;
80152258
PA
11839}
11840
dd194f6b 11841/* See declaration.h. */
80152258 11842
dd194f6b
PA
11843void
11844readahead_cache::invalidate_fd (int fd)
80152258 11845{
dd194f6b
PA
11846 if (this->fd == fd)
11847 this->fd = -1;
80152258
PA
11848}
11849
15a201c8
GB
11850/* Set the filesystem remote_hostio functions that take FILENAME
11851 arguments will use. Return 0 on success, or -1 if an error
11852 occurs (and set *REMOTE_ERRNO). */
11853
6b8edb51
PA
11854int
11855remote_target::remote_hostio_set_filesystem (struct inferior *inf,
11856 int *remote_errno)
15a201c8
GB
11857{
11858 struct remote_state *rs = get_remote_state ();
11859 int required_pid = (inf == NULL || inf->fake_pid_p) ? 0 : inf->pid;
8d64371b 11860 char *p = rs->buf.data ();
15a201c8
GB
11861 int left = get_remote_packet_size () - 1;
11862 char arg[9];
11863 int ret;
11864
11865 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11866 return 0;
11867
11868 if (rs->fs_pid != -1 && required_pid == rs->fs_pid)
11869 return 0;
11870
11871 remote_buffer_add_string (&p, &left, "vFile:setfs:");
11872
11873 xsnprintf (arg, sizeof (arg), "%x", required_pid);
11874 remote_buffer_add_string (&p, &left, arg);
11875
8d64371b 11876 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_setfs,
15a201c8
GB
11877 remote_errno, NULL, NULL);
11878
11879 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11880 return 0;
11881
11882 if (ret == 0)
11883 rs->fs_pid = required_pid;
11884
11885 return ret;
11886}
11887
12e2a5fd 11888/* Implementation of to_fileio_open. */
a6b151f1 11889
6b8edb51
PA
11890int
11891remote_target::remote_hostio_open (inferior *inf, const char *filename,
11892 int flags, int mode, int warn_if_slow,
11893 int *remote_errno)
a6b151f1
DJ
11894{
11895 struct remote_state *rs = get_remote_state ();
8d64371b 11896 char *p = rs->buf.data ();
a6b151f1
DJ
11897 int left = get_remote_packet_size () - 1;
11898
4313b8c0
GB
11899 if (warn_if_slow)
11900 {
11901 static int warning_issued = 0;
11902
11903 printf_unfiltered (_("Reading %s from remote target...\n"),
11904 filename);
11905
11906 if (!warning_issued)
11907 {
11908 warning (_("File transfers from remote targets can be slow."
11909 " Use \"set sysroot\" to access files locally"
11910 " instead."));
11911 warning_issued = 1;
11912 }
11913 }
11914
15a201c8
GB
11915 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
11916 return -1;
11917
a6b151f1
DJ
11918 remote_buffer_add_string (&p, &left, "vFile:open:");
11919
11920 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
11921 strlen (filename));
11922 remote_buffer_add_string (&p, &left, ",");
11923
11924 remote_buffer_add_int (&p, &left, flags);
11925 remote_buffer_add_string (&p, &left, ",");
11926
11927 remote_buffer_add_int (&p, &left, mode);
11928
8d64371b 11929 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_open,
a6b151f1
DJ
11930 remote_errno, NULL, NULL);
11931}
11932
f6ac5f3d
PA
11933int
11934remote_target::fileio_open (struct inferior *inf, const char *filename,
11935 int flags, int mode, int warn_if_slow,
11936 int *remote_errno)
11937{
6b8edb51 11938 return remote_hostio_open (inf, filename, flags, mode, warn_if_slow,
f6ac5f3d
PA
11939 remote_errno);
11940}
11941
12e2a5fd 11942/* Implementation of to_fileio_pwrite. */
a6b151f1 11943
6b8edb51
PA
11944int
11945remote_target::remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
11946 ULONGEST offset, int *remote_errno)
a6b151f1
DJ
11947{
11948 struct remote_state *rs = get_remote_state ();
8d64371b 11949 char *p = rs->buf.data ();
a6b151f1
DJ
11950 int left = get_remote_packet_size ();
11951 int out_len;
11952
dd194f6b 11953 rs->readahead_cache.invalidate_fd (fd);
80152258 11954
a6b151f1
DJ
11955 remote_buffer_add_string (&p, &left, "vFile:pwrite:");
11956
11957 remote_buffer_add_int (&p, &left, fd);
11958 remote_buffer_add_string (&p, &left, ",");
11959
11960 remote_buffer_add_int (&p, &left, offset);
11961 remote_buffer_add_string (&p, &left, ",");
11962
124e13d9 11963 p += remote_escape_output (write_buf, len, 1, (gdb_byte *) p, &out_len,
8d64371b
TT
11964 (get_remote_packet_size ()
11965 - (p - rs->buf.data ())));
a6b151f1 11966
8d64371b 11967 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pwrite,
a6b151f1
DJ
11968 remote_errno, NULL, NULL);
11969}
11970
f6ac5f3d
PA
11971int
11972remote_target::fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
11973 ULONGEST offset, int *remote_errno)
11974{
6b8edb51 11975 return remote_hostio_pwrite (fd, write_buf, len, offset, remote_errno);
f6ac5f3d
PA
11976}
11977
80152258
PA
11978/* Helper for the implementation of to_fileio_pread. Read the file
11979 from the remote side with vFile:pread. */
a6b151f1 11980
6b8edb51
PA
11981int
11982remote_target::remote_hostio_pread_vFile (int fd, gdb_byte *read_buf, int len,
11983 ULONGEST offset, int *remote_errno)
a6b151f1
DJ
11984{
11985 struct remote_state *rs = get_remote_state ();
8d64371b 11986 char *p = rs->buf.data ();
a6b151f1
DJ
11987 char *attachment;
11988 int left = get_remote_packet_size ();
11989 int ret, attachment_len;
11990 int read_len;
11991
11992 remote_buffer_add_string (&p, &left, "vFile:pread:");
11993
11994 remote_buffer_add_int (&p, &left, fd);
11995 remote_buffer_add_string (&p, &left, ",");
11996
11997 remote_buffer_add_int (&p, &left, len);
11998 remote_buffer_add_string (&p, &left, ",");
11999
12000 remote_buffer_add_int (&p, &left, offset);
12001
8d64371b 12002 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pread,
a6b151f1
DJ
12003 remote_errno, &attachment,
12004 &attachment_len);
12005
12006 if (ret < 0)
12007 return ret;
12008
bc20a4af 12009 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
a6b151f1
DJ
12010 read_buf, len);
12011 if (read_len != ret)
12012 error (_("Read returned %d, but %d bytes."), ret, (int) read_len);
12013
12014 return ret;
12015}
12016
dd194f6b 12017/* See declaration.h. */
80152258 12018
dd194f6b
PA
12019int
12020readahead_cache::pread (int fd, gdb_byte *read_buf, size_t len,
12021 ULONGEST offset)
80152258 12022{
dd194f6b
PA
12023 if (this->fd == fd
12024 && this->offset <= offset
12025 && offset < this->offset + this->bufsize)
80152258 12026 {
dd194f6b 12027 ULONGEST max = this->offset + this->bufsize;
80152258
PA
12028
12029 if (offset + len > max)
12030 len = max - offset;
12031
dd194f6b 12032 memcpy (read_buf, this->buf + offset - this->offset, len);
80152258
PA
12033 return len;
12034 }
12035
12036 return 0;
12037}
12038
12039/* Implementation of to_fileio_pread. */
12040
6b8edb51
PA
12041int
12042remote_target::remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
12043 ULONGEST offset, int *remote_errno)
80152258
PA
12044{
12045 int ret;
12046 struct remote_state *rs = get_remote_state ();
dd194f6b 12047 readahead_cache *cache = &rs->readahead_cache;
80152258 12048
dd194f6b 12049 ret = cache->pread (fd, read_buf, len, offset);
80152258
PA
12050 if (ret > 0)
12051 {
12052 cache->hit_count++;
12053
12054 if (remote_debug)
12055 fprintf_unfiltered (gdb_stdlog, "readahead cache hit %s\n",
12056 pulongest (cache->hit_count));
12057 return ret;
12058 }
12059
12060 cache->miss_count++;
12061 if (remote_debug)
12062 fprintf_unfiltered (gdb_stdlog, "readahead cache miss %s\n",
12063 pulongest (cache->miss_count));
12064
12065 cache->fd = fd;
12066 cache->offset = offset;
12067 cache->bufsize = get_remote_packet_size ();
224c3ddb 12068 cache->buf = (gdb_byte *) xrealloc (cache->buf, cache->bufsize);
80152258 12069
6b8edb51 12070 ret = remote_hostio_pread_vFile (cache->fd, cache->buf, cache->bufsize,
80152258
PA
12071 cache->offset, remote_errno);
12072 if (ret <= 0)
12073 {
dd194f6b 12074 cache->invalidate_fd (fd);
80152258
PA
12075 return ret;
12076 }
12077
12078 cache->bufsize = ret;
dd194f6b 12079 return cache->pread (fd, read_buf, len, offset);
80152258
PA
12080}
12081
f6ac5f3d
PA
12082int
12083remote_target::fileio_pread (int fd, gdb_byte *read_buf, int len,
12084 ULONGEST offset, int *remote_errno)
12085{
6b8edb51 12086 return remote_hostio_pread (fd, read_buf, len, offset, remote_errno);
f6ac5f3d
PA
12087}
12088
12e2a5fd 12089/* Implementation of to_fileio_close. */
a6b151f1 12090
6b8edb51
PA
12091int
12092remote_target::remote_hostio_close (int fd, int *remote_errno)
a6b151f1
DJ
12093{
12094 struct remote_state *rs = get_remote_state ();
8d64371b 12095 char *p = rs->buf.data ();
a6b151f1
DJ
12096 int left = get_remote_packet_size () - 1;
12097
dd194f6b 12098 rs->readahead_cache.invalidate_fd (fd);
80152258 12099
a6b151f1
DJ
12100 remote_buffer_add_string (&p, &left, "vFile:close:");
12101
12102 remote_buffer_add_int (&p, &left, fd);
12103
8d64371b 12104 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_close,
a6b151f1
DJ
12105 remote_errno, NULL, NULL);
12106}
12107
f6ac5f3d
PA
12108int
12109remote_target::fileio_close (int fd, int *remote_errno)
12110{
6b8edb51 12111 return remote_hostio_close (fd, remote_errno);
f6ac5f3d
PA
12112}
12113
12e2a5fd 12114/* Implementation of to_fileio_unlink. */
a6b151f1 12115
6b8edb51
PA
12116int
12117remote_target::remote_hostio_unlink (inferior *inf, const char *filename,
12118 int *remote_errno)
a6b151f1
DJ
12119{
12120 struct remote_state *rs = get_remote_state ();
8d64371b 12121 char *p = rs->buf.data ();
a6b151f1
DJ
12122 int left = get_remote_packet_size () - 1;
12123
15a201c8
GB
12124 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
12125 return -1;
12126
a6b151f1
DJ
12127 remote_buffer_add_string (&p, &left, "vFile:unlink:");
12128
12129 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12130 strlen (filename));
12131
8d64371b 12132 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_unlink,
a6b151f1
DJ
12133 remote_errno, NULL, NULL);
12134}
12135
f6ac5f3d
PA
12136int
12137remote_target::fileio_unlink (struct inferior *inf, const char *filename,
12138 int *remote_errno)
12139{
6b8edb51 12140 return remote_hostio_unlink (inf, filename, remote_errno);
f6ac5f3d
PA
12141}
12142
12e2a5fd 12143/* Implementation of to_fileio_readlink. */
b9e7b9c3 12144
f6ac5f3d
PA
12145gdb::optional<std::string>
12146remote_target::fileio_readlink (struct inferior *inf, const char *filename,
12147 int *remote_errno)
b9e7b9c3
UW
12148{
12149 struct remote_state *rs = get_remote_state ();
8d64371b 12150 char *p = rs->buf.data ();
b9e7b9c3
UW
12151 char *attachment;
12152 int left = get_remote_packet_size ();
12153 int len, attachment_len;
12154 int read_len;
b9e7b9c3 12155
15a201c8 12156 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
e0d3522b 12157 return {};
15a201c8 12158
b9e7b9c3
UW
12159 remote_buffer_add_string (&p, &left, "vFile:readlink:");
12160
12161 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12162 strlen (filename));
12163
8d64371b 12164 len = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_readlink,
b9e7b9c3
UW
12165 remote_errno, &attachment,
12166 &attachment_len);
12167
12168 if (len < 0)
e0d3522b 12169 return {};
b9e7b9c3 12170
e0d3522b 12171 std::string ret (len, '\0');
b9e7b9c3 12172
bc20a4af 12173 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
e0d3522b 12174 (gdb_byte *) &ret[0], len);
b9e7b9c3
UW
12175 if (read_len != len)
12176 error (_("Readlink returned %d, but %d bytes."), len, read_len);
12177
b9e7b9c3
UW
12178 return ret;
12179}
12180
12e2a5fd 12181/* Implementation of to_fileio_fstat. */
0a93529c 12182
f6ac5f3d
PA
12183int
12184remote_target::fileio_fstat (int fd, struct stat *st, int *remote_errno)
0a93529c
GB
12185{
12186 struct remote_state *rs = get_remote_state ();
8d64371b 12187 char *p = rs->buf.data ();
0a93529c
GB
12188 int left = get_remote_packet_size ();
12189 int attachment_len, ret;
12190 char *attachment;
12191 struct fio_stat fst;
12192 int read_len;
12193
464b0089
GB
12194 remote_buffer_add_string (&p, &left, "vFile:fstat:");
12195
12196 remote_buffer_add_int (&p, &left, fd);
12197
8d64371b 12198 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_fstat,
464b0089
GB
12199 remote_errno, &attachment,
12200 &attachment_len);
12201 if (ret < 0)
0a93529c 12202 {
464b0089
GB
12203 if (*remote_errno != FILEIO_ENOSYS)
12204 return ret;
12205
0a93529c
GB
12206 /* Strictly we should return -1, ENOSYS here, but when
12207 "set sysroot remote:" was implemented in August 2008
12208 BFD's need for a stat function was sidestepped with
12209 this hack. This was not remedied until March 2015
12210 so we retain the previous behavior to avoid breaking
12211 compatibility.
12212
12213 Note that the memset is a March 2015 addition; older
12214 GDBs set st_size *and nothing else* so the structure
12215 would have garbage in all other fields. This might
12216 break something but retaining the previous behavior
12217 here would be just too wrong. */
12218
12219 memset (st, 0, sizeof (struct stat));
12220 st->st_size = INT_MAX;
12221 return 0;
12222 }
12223
0a93529c
GB
12224 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
12225 (gdb_byte *) &fst, sizeof (fst));
12226
12227 if (read_len != ret)
12228 error (_("vFile:fstat returned %d, but %d bytes."), ret, read_len);
12229
12230 if (read_len != sizeof (fst))
12231 error (_("vFile:fstat returned %d bytes, but expecting %d."),
12232 read_len, (int) sizeof (fst));
12233
12234 remote_fileio_to_host_stat (&fst, st);
12235
12236 return 0;
12237}
12238
12e2a5fd 12239/* Implementation of to_filesystem_is_local. */
e3dd7556 12240
57810aa7 12241bool
f6ac5f3d 12242remote_target::filesystem_is_local ()
e3dd7556
GB
12243{
12244 /* Valgrind GDB presents itself as a remote target but works
12245 on the local filesystem: it does not implement remote get
12246 and users are not expected to set a sysroot. To handle
12247 this case we treat the remote filesystem as local if the
12248 sysroot is exactly TARGET_SYSROOT_PREFIX and if the stub
12249 does not support vFile:open. */
a3be80c3 12250 if (strcmp (gdb_sysroot, TARGET_SYSROOT_PREFIX) == 0)
e3dd7556
GB
12251 {
12252 enum packet_support ps = packet_support (PACKET_vFile_open);
12253
12254 if (ps == PACKET_SUPPORT_UNKNOWN)
12255 {
12256 int fd, remote_errno;
12257
12258 /* Try opening a file to probe support. The supplied
12259 filename is irrelevant, we only care about whether
12260 the stub recognizes the packet or not. */
6b8edb51 12261 fd = remote_hostio_open (NULL, "just probing",
4313b8c0 12262 FILEIO_O_RDONLY, 0700, 0,
e3dd7556
GB
12263 &remote_errno);
12264
12265 if (fd >= 0)
6b8edb51 12266 remote_hostio_close (fd, &remote_errno);
e3dd7556
GB
12267
12268 ps = packet_support (PACKET_vFile_open);
12269 }
12270
12271 if (ps == PACKET_DISABLE)
12272 {
12273 static int warning_issued = 0;
12274
12275 if (!warning_issued)
12276 {
12277 warning (_("remote target does not support file"
12278 " transfer, attempting to access files"
12279 " from local filesystem."));
12280 warning_issued = 1;
12281 }
12282
57810aa7 12283 return true;
e3dd7556
GB
12284 }
12285 }
12286
57810aa7 12287 return false;
e3dd7556
GB
12288}
12289
a6b151f1
DJ
12290static int
12291remote_fileio_errno_to_host (int errnum)
12292{
12293 switch (errnum)
12294 {
12295 case FILEIO_EPERM:
12296 return EPERM;
12297 case FILEIO_ENOENT:
12298 return ENOENT;
12299 case FILEIO_EINTR:
12300 return EINTR;
12301 case FILEIO_EIO:
12302 return EIO;
12303 case FILEIO_EBADF:
12304 return EBADF;
12305 case FILEIO_EACCES:
12306 return EACCES;
12307 case FILEIO_EFAULT:
12308 return EFAULT;
12309 case FILEIO_EBUSY:
12310 return EBUSY;
12311 case FILEIO_EEXIST:
12312 return EEXIST;
12313 case FILEIO_ENODEV:
12314 return ENODEV;
12315 case FILEIO_ENOTDIR:
12316 return ENOTDIR;
12317 case FILEIO_EISDIR:
12318 return EISDIR;
12319 case FILEIO_EINVAL:
12320 return EINVAL;
12321 case FILEIO_ENFILE:
12322 return ENFILE;
12323 case FILEIO_EMFILE:
12324 return EMFILE;
12325 case FILEIO_EFBIG:
12326 return EFBIG;
12327 case FILEIO_ENOSPC:
12328 return ENOSPC;
12329 case FILEIO_ESPIPE:
12330 return ESPIPE;
12331 case FILEIO_EROFS:
12332 return EROFS;
12333 case FILEIO_ENOSYS:
12334 return ENOSYS;
12335 case FILEIO_ENAMETOOLONG:
12336 return ENAMETOOLONG;
12337 }
12338 return -1;
12339}
12340
12341static char *
12342remote_hostio_error (int errnum)
12343{
12344 int host_error = remote_fileio_errno_to_host (errnum);
12345
12346 if (host_error == -1)
12347 error (_("Unknown remote I/O error %d"), errnum);
12348 else
12349 error (_("Remote I/O error: %s"), safe_strerror (host_error));
12350}
12351
440b7aec
PA
12352/* A RAII wrapper around a remote file descriptor. */
12353
12354class scoped_remote_fd
a6b151f1 12355{
440b7aec 12356public:
6b8edb51
PA
12357 scoped_remote_fd (remote_target *remote, int fd)
12358 : m_remote (remote), m_fd (fd)
440b7aec
PA
12359 {
12360 }
a6b151f1 12361
440b7aec
PA
12362 ~scoped_remote_fd ()
12363 {
12364 if (m_fd != -1)
12365 {
12366 try
12367 {
12368 int remote_errno;
6b8edb51 12369 m_remote->remote_hostio_close (m_fd, &remote_errno);
440b7aec
PA
12370 }
12371 catch (...)
12372 {
12373 /* Swallow exception before it escapes the dtor. If
12374 something goes wrong, likely the connection is gone,
12375 and there's nothing else that can be done. */
12376 }
12377 }
12378 }
12379
12380 DISABLE_COPY_AND_ASSIGN (scoped_remote_fd);
12381
12382 /* Release ownership of the file descriptor, and return it. */
88a774b9 12383 ATTRIBUTE_UNUSED_RESULT int release () noexcept
440b7aec
PA
12384 {
12385 int fd = m_fd;
12386 m_fd = -1;
12387 return fd;
12388 }
12389
12390 /* Return the owned file descriptor. */
12391 int get () const noexcept
12392 {
12393 return m_fd;
12394 }
12395
12396private:
6b8edb51
PA
12397 /* The remote target. */
12398 remote_target *m_remote;
12399
440b7aec
PA
12400 /* The owned remote I/O file descriptor. */
12401 int m_fd;
12402};
a6b151f1
DJ
12403
12404void
12405remote_file_put (const char *local_file, const char *remote_file, int from_tty)
6b8edb51
PA
12406{
12407 remote_target *remote = get_current_remote_target ();
12408
12409 if (remote == nullptr)
12410 error (_("command can only be used with remote target"));
12411
12412 remote->remote_file_put (local_file, remote_file, from_tty);
12413}
12414
12415void
12416remote_target::remote_file_put (const char *local_file, const char *remote_file,
12417 int from_tty)
a6b151f1 12418{
440b7aec 12419 int retcode, remote_errno, bytes, io_size;
a6b151f1
DJ
12420 int bytes_in_buffer;
12421 int saw_eof;
12422 ULONGEST offset;
a6b151f1 12423
d419f42d 12424 gdb_file_up file = gdb_fopen_cloexec (local_file, "rb");
a6b151f1
DJ
12425 if (file == NULL)
12426 perror_with_name (local_file);
a6b151f1 12427
440b7aec 12428 scoped_remote_fd fd
6b8edb51
PA
12429 (this, remote_hostio_open (NULL,
12430 remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT
12431 | FILEIO_O_TRUNC),
12432 0700, 0, &remote_errno));
440b7aec 12433 if (fd.get () == -1)
a6b151f1
DJ
12434 remote_hostio_error (remote_errno);
12435
12436 /* Send up to this many bytes at once. They won't all fit in the
12437 remote packet limit, so we'll transfer slightly fewer. */
12438 io_size = get_remote_packet_size ();
5ca3b260 12439 gdb::byte_vector buffer (io_size);
a6b151f1 12440
a6b151f1
DJ
12441 bytes_in_buffer = 0;
12442 saw_eof = 0;
12443 offset = 0;
12444 while (bytes_in_buffer || !saw_eof)
12445 {
12446 if (!saw_eof)
12447 {
5ca3b260 12448 bytes = fread (buffer.data () + bytes_in_buffer, 1,
3e43a32a 12449 io_size - bytes_in_buffer,
d419f42d 12450 file.get ());
a6b151f1
DJ
12451 if (bytes == 0)
12452 {
d419f42d 12453 if (ferror (file.get ()))
a6b151f1
DJ
12454 error (_("Error reading %s."), local_file);
12455 else
12456 {
12457 /* EOF. Unless there is something still in the
12458 buffer from the last iteration, we are done. */
12459 saw_eof = 1;
12460 if (bytes_in_buffer == 0)
12461 break;
12462 }
12463 }
12464 }
12465 else
12466 bytes = 0;
12467
12468 bytes += bytes_in_buffer;
12469 bytes_in_buffer = 0;
12470
5ca3b260 12471 retcode = remote_hostio_pwrite (fd.get (), buffer.data (), bytes,
3e43a32a 12472 offset, &remote_errno);
a6b151f1
DJ
12473
12474 if (retcode < 0)
12475 remote_hostio_error (remote_errno);
12476 else if (retcode == 0)
12477 error (_("Remote write of %d bytes returned 0!"), bytes);
12478 else if (retcode < bytes)
12479 {
12480 /* Short write. Save the rest of the read data for the next
12481 write. */
12482 bytes_in_buffer = bytes - retcode;
5ca3b260 12483 memmove (buffer.data (), buffer.data () + retcode, bytes_in_buffer);
a6b151f1
DJ
12484 }
12485
12486 offset += retcode;
12487 }
12488
6b8edb51 12489 if (remote_hostio_close (fd.release (), &remote_errno))
a6b151f1
DJ
12490 remote_hostio_error (remote_errno);
12491
12492 if (from_tty)
12493 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file);
a6b151f1
DJ
12494}
12495
12496void
12497remote_file_get (const char *remote_file, const char *local_file, int from_tty)
6b8edb51
PA
12498{
12499 remote_target *remote = get_current_remote_target ();
12500
12501 if (remote == nullptr)
12502 error (_("command can only be used with remote target"));
12503
12504 remote->remote_file_get (remote_file, local_file, from_tty);
12505}
12506
12507void
12508remote_target::remote_file_get (const char *remote_file, const char *local_file,
12509 int from_tty)
a6b151f1 12510{
440b7aec 12511 int remote_errno, bytes, io_size;
a6b151f1 12512 ULONGEST offset;
a6b151f1 12513
440b7aec 12514 scoped_remote_fd fd
6b8edb51
PA
12515 (this, remote_hostio_open (NULL,
12516 remote_file, FILEIO_O_RDONLY, 0, 0,
12517 &remote_errno));
440b7aec 12518 if (fd.get () == -1)
a6b151f1
DJ
12519 remote_hostio_error (remote_errno);
12520
d419f42d 12521 gdb_file_up file = gdb_fopen_cloexec (local_file, "wb");
a6b151f1
DJ
12522 if (file == NULL)
12523 perror_with_name (local_file);
a6b151f1
DJ
12524
12525 /* Send up to this many bytes at once. They won't all fit in the
12526 remote packet limit, so we'll transfer slightly fewer. */
12527 io_size = get_remote_packet_size ();
5ca3b260 12528 gdb::byte_vector buffer (io_size);
a6b151f1 12529
a6b151f1
DJ
12530 offset = 0;
12531 while (1)
12532 {
5ca3b260 12533 bytes = remote_hostio_pread (fd.get (), buffer.data (), io_size, offset,
440b7aec 12534 &remote_errno);
a6b151f1
DJ
12535 if (bytes == 0)
12536 /* Success, but no bytes, means end-of-file. */
12537 break;
12538 if (bytes == -1)
12539 remote_hostio_error (remote_errno);
12540
12541 offset += bytes;
12542
5ca3b260 12543 bytes = fwrite (buffer.data (), 1, bytes, file.get ());
a6b151f1
DJ
12544 if (bytes == 0)
12545 perror_with_name (local_file);
12546 }
12547
6b8edb51 12548 if (remote_hostio_close (fd.release (), &remote_errno))
a6b151f1
DJ
12549 remote_hostio_error (remote_errno);
12550
12551 if (from_tty)
12552 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file);
a6b151f1
DJ
12553}
12554
12555void
12556remote_file_delete (const char *remote_file, int from_tty)
12557{
6b8edb51 12558 remote_target *remote = get_current_remote_target ();
a6b151f1 12559
6b8edb51 12560 if (remote == nullptr)
a6b151f1
DJ
12561 error (_("command can only be used with remote target"));
12562
6b8edb51
PA
12563 remote->remote_file_delete (remote_file, from_tty);
12564}
12565
12566void
12567remote_target::remote_file_delete (const char *remote_file, int from_tty)
12568{
12569 int retcode, remote_errno;
12570
12571 retcode = remote_hostio_unlink (NULL, remote_file, &remote_errno);
a6b151f1
DJ
12572 if (retcode == -1)
12573 remote_hostio_error (remote_errno);
12574
12575 if (from_tty)
12576 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file);
12577}
12578
12579static void
ac88e2de 12580remote_put_command (const char *args, int from_tty)
a6b151f1 12581{
d1a41061
PP
12582 if (args == NULL)
12583 error_no_arg (_("file to put"));
12584
773a1edc 12585 gdb_argv argv (args);
a6b151f1
DJ
12586 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12587 error (_("Invalid parameters to remote put"));
12588
12589 remote_file_put (argv[0], argv[1], from_tty);
a6b151f1
DJ
12590}
12591
12592static void
ac88e2de 12593remote_get_command (const char *args, int from_tty)
a6b151f1 12594{
d1a41061
PP
12595 if (args == NULL)
12596 error_no_arg (_("file to get"));
12597
773a1edc 12598 gdb_argv argv (args);
a6b151f1
DJ
12599 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12600 error (_("Invalid parameters to remote get"));
12601
12602 remote_file_get (argv[0], argv[1], from_tty);
a6b151f1
DJ
12603}
12604
12605static void
ac88e2de 12606remote_delete_command (const char *args, int from_tty)
a6b151f1 12607{
d1a41061
PP
12608 if (args == NULL)
12609 error_no_arg (_("file to delete"));
12610
773a1edc 12611 gdb_argv argv (args);
a6b151f1
DJ
12612 if (argv[0] == NULL || argv[1] != NULL)
12613 error (_("Invalid parameters to remote delete"));
12614
12615 remote_file_delete (argv[0], from_tty);
a6b151f1
DJ
12616}
12617
12618static void
981a3fb3 12619remote_command (const char *args, int from_tty)
a6b151f1 12620{
635c7e8a 12621 help_list (remote_cmdlist, "remote ", all_commands, gdb_stdout);
a6b151f1
DJ
12622}
12623
57810aa7 12624bool
f6ac5f3d 12625remote_target::can_execute_reverse ()
b2175913 12626{
4082afcc
PA
12627 if (packet_support (PACKET_bs) == PACKET_ENABLE
12628 || packet_support (PACKET_bc) == PACKET_ENABLE)
57810aa7 12629 return true;
40ab02ce 12630 else
57810aa7 12631 return false;
b2175913
MS
12632}
12633
57810aa7 12634bool
f6ac5f3d 12635remote_target::supports_non_stop ()
74531fed 12636{
57810aa7 12637 return true;
74531fed
PA
12638}
12639
57810aa7 12640bool
f6ac5f3d 12641remote_target::supports_disable_randomization ()
03583c20
UW
12642{
12643 /* Only supported in extended mode. */
57810aa7 12644 return false;
03583c20
UW
12645}
12646
57810aa7 12647bool
f6ac5f3d 12648remote_target::supports_multi_process ()
8a305172
PA
12649{
12650 struct remote_state *rs = get_remote_state ();
a744cf53 12651
8020350c 12652 return remote_multi_process_p (rs);
8a305172
PA
12653}
12654
70221824 12655static int
f6ac5f3d 12656remote_supports_cond_tracepoints ()
782b2b07 12657{
4082afcc 12658 return packet_support (PACKET_ConditionalTracepoints) == PACKET_ENABLE;
782b2b07
SS
12659}
12660
57810aa7 12661bool
f6ac5f3d 12662remote_target::supports_evaluation_of_breakpoint_conditions ()
3788aec7 12663{
4082afcc 12664 return packet_support (PACKET_ConditionalBreakpoints) == PACKET_ENABLE;
3788aec7
LM
12665}
12666
70221824 12667static int
f6ac5f3d 12668remote_supports_fast_tracepoints ()
7a697b8d 12669{
4082afcc 12670 return packet_support (PACKET_FastTracepoints) == PACKET_ENABLE;
7a697b8d
SS
12671}
12672
0fb4aa4b 12673static int
f6ac5f3d 12674remote_supports_static_tracepoints ()
0fb4aa4b 12675{
4082afcc 12676 return packet_support (PACKET_StaticTracepoints) == PACKET_ENABLE;
0fb4aa4b
PA
12677}
12678
1e4d1764 12679static int
f6ac5f3d 12680remote_supports_install_in_trace ()
1e4d1764 12681{
4082afcc 12682 return packet_support (PACKET_InstallInTrace) == PACKET_ENABLE;
1e4d1764
YQ
12683}
12684
57810aa7 12685bool
f6ac5f3d 12686remote_target::supports_enable_disable_tracepoint ()
d248b706 12687{
4082afcc
PA
12688 return (packet_support (PACKET_EnableDisableTracepoints_feature)
12689 == PACKET_ENABLE);
d248b706
KY
12690}
12691
57810aa7 12692bool
f6ac5f3d 12693remote_target::supports_string_tracing ()
3065dfb6 12694{
4082afcc 12695 return packet_support (PACKET_tracenz_feature) == PACKET_ENABLE;
3065dfb6
SS
12696}
12697
57810aa7 12698bool
f6ac5f3d 12699remote_target::can_run_breakpoint_commands ()
d3ce09f5 12700{
4082afcc 12701 return packet_support (PACKET_BreakpointCommands) == PACKET_ENABLE;
d3ce09f5
SS
12702}
12703
f6ac5f3d
PA
12704void
12705remote_target::trace_init ()
35b1e5cc 12706{
b6bb3468
PA
12707 struct remote_state *rs = get_remote_state ();
12708
35b1e5cc 12709 putpkt ("QTinit");
b6bb3468 12710 remote_get_noisy_reply ();
8d64371b 12711 if (strcmp (rs->buf.data (), "OK") != 0)
35b1e5cc
SS
12712 error (_("Target does not support this command."));
12713}
12714
409873ef
SS
12715/* Recursive routine to walk through command list including loops, and
12716 download packets for each command. */
12717
6b8edb51
PA
12718void
12719remote_target::remote_download_command_source (int num, ULONGEST addr,
12720 struct command_line *cmds)
409873ef
SS
12721{
12722 struct remote_state *rs = get_remote_state ();
12723 struct command_line *cmd;
12724
12725 for (cmd = cmds; cmd; cmd = cmd->next)
12726 {
0df8b418 12727 QUIT; /* Allow user to bail out with ^C. */
8d64371b 12728 strcpy (rs->buf.data (), "QTDPsrc:");
409873ef 12729 encode_source_string (num, addr, "cmd", cmd->line,
8d64371b
TT
12730 rs->buf.data () + strlen (rs->buf.data ()),
12731 rs->buf.size () - strlen (rs->buf.data ()));
409873ef 12732 putpkt (rs->buf);
b6bb3468 12733 remote_get_noisy_reply ();
8d64371b 12734 if (strcmp (rs->buf.data (), "OK"))
409873ef
SS
12735 warning (_("Target does not support source download."));
12736
12737 if (cmd->control_type == while_control
12738 || cmd->control_type == while_stepping_control)
12739 {
12973681 12740 remote_download_command_source (num, addr, cmd->body_list_0.get ());
409873ef 12741
0df8b418 12742 QUIT; /* Allow user to bail out with ^C. */
8d64371b 12743 strcpy (rs->buf.data (), "QTDPsrc:");
409873ef 12744 encode_source_string (num, addr, "cmd", "end",
8d64371b
TT
12745 rs->buf.data () + strlen (rs->buf.data ()),
12746 rs->buf.size () - strlen (rs->buf.data ()));
409873ef 12747 putpkt (rs->buf);
b6bb3468 12748 remote_get_noisy_reply ();
8d64371b 12749 if (strcmp (rs->buf.data (), "OK"))
409873ef
SS
12750 warning (_("Target does not support source download."));
12751 }
12752 }
12753}
12754
f6ac5f3d
PA
12755void
12756remote_target::download_tracepoint (struct bp_location *loc)
35b1e5cc
SS
12757{
12758 CORE_ADDR tpaddr;
409873ef 12759 char addrbuf[40];
b44ec619
SM
12760 std::vector<std::string> tdp_actions;
12761 std::vector<std::string> stepping_actions;
35b1e5cc 12762 char *pkt;
e8ba3115 12763 struct breakpoint *b = loc->owner;
d9b3f62e 12764 struct tracepoint *t = (struct tracepoint *) b;
b6bb3468 12765 struct remote_state *rs = get_remote_state ();
3df3a985 12766 int ret;
ff36536c 12767 const char *err_msg = _("Tracepoint packet too large for target.");
3df3a985
PFC
12768 size_t size_left;
12769
12770 /* We use a buffer other than rs->buf because we'll build strings
12771 across multiple statements, and other statements in between could
12772 modify rs->buf. */
12773 gdb::char_vector buf (get_remote_packet_size ());
35b1e5cc 12774
dc673c81 12775 encode_actions_rsp (loc, &tdp_actions, &stepping_actions);
e8ba3115
YQ
12776
12777 tpaddr = loc->address;
12778 sprintf_vma (addrbuf, tpaddr);
3df3a985
PFC
12779 ret = snprintf (buf.data (), buf.size (), "QTDP:%x:%s:%c:%lx:%x",
12780 b->number, addrbuf, /* address */
12781 (b->enable_state == bp_enabled ? 'E' : 'D'),
12782 t->step_count, t->pass_count);
12783
12784 if (ret < 0 || ret >= buf.size ())
a7f25a84 12785 error ("%s", err_msg);
3df3a985 12786
e8ba3115
YQ
12787 /* Fast tracepoints are mostly handled by the target, but we can
12788 tell the target how big of an instruction block should be moved
12789 around. */
12790 if (b->type == bp_fast_tracepoint)
12791 {
12792 /* Only test for support at download time; we may not know
12793 target capabilities at definition time. */
12794 if (remote_supports_fast_tracepoints ())
35b1e5cc 12795 {
6b940e6a
PL
12796 if (gdbarch_fast_tracepoint_valid_at (loc->gdbarch, tpaddr,
12797 NULL))
3df3a985
PFC
12798 {
12799 size_left = buf.size () - strlen (buf.data ());
12800 ret = snprintf (buf.data () + strlen (buf.data ()),
12801 size_left, ":F%x",
12802 gdb_insn_length (loc->gdbarch, tpaddr));
12803
12804 if (ret < 0 || ret >= size_left)
a7f25a84 12805 error ("%s", err_msg);
3df3a985 12806 }
35b1e5cc 12807 else
e8ba3115
YQ
12808 /* If it passed validation at definition but fails now,
12809 something is very wrong. */
12810 internal_error (__FILE__, __LINE__,
12811 _("Fast tracepoint not "
12812 "valid during download"));
35b1e5cc 12813 }
e8ba3115
YQ
12814 else
12815 /* Fast tracepoints are functionally identical to regular
12816 tracepoints, so don't take lack of support as a reason to
12817 give up on the trace run. */
12818 warning (_("Target does not support fast tracepoints, "
12819 "downloading %d as regular tracepoint"), b->number);
12820 }
12821 else if (b->type == bp_static_tracepoint)
12822 {
12823 /* Only test for support at download time; we may not know
12824 target capabilities at definition time. */
12825 if (remote_supports_static_tracepoints ())
0fb4aa4b 12826 {
e8ba3115 12827 struct static_tracepoint_marker marker;
0fb4aa4b 12828
e8ba3115 12829 if (target_static_tracepoint_marker_at (tpaddr, &marker))
3df3a985
PFC
12830 {
12831 size_left = buf.size () - strlen (buf.data ());
12832 ret = snprintf (buf.data () + strlen (buf.data ()),
12833 size_left, ":S");
12834
12835 if (ret < 0 || ret >= size_left)
a7f25a84 12836 error ("%s", err_msg);
3df3a985 12837 }
0fb4aa4b 12838 else
e8ba3115 12839 error (_("Static tracepoint not valid during download"));
0fb4aa4b 12840 }
e8ba3115
YQ
12841 else
12842 /* Fast tracepoints are functionally identical to regular
12843 tracepoints, so don't take lack of support as a reason
12844 to give up on the trace run. */
12845 error (_("Target does not support static tracepoints"));
12846 }
12847 /* If the tracepoint has a conditional, make it into an agent
12848 expression and append to the definition. */
12849 if (loc->cond)
12850 {
12851 /* Only test support at download time, we may not know target
12852 capabilities at definition time. */
12853 if (remote_supports_cond_tracepoints ())
35b1e5cc 12854 {
3df3a985
PFC
12855 agent_expr_up aexpr = gen_eval_for_expr (tpaddr,
12856 loc->cond.get ());
12857
12858 size_left = buf.size () - strlen (buf.data ());
12859
12860 ret = snprintf (buf.data () + strlen (buf.data ()),
12861 size_left, ":X%x,", aexpr->len);
12862
12863 if (ret < 0 || ret >= size_left)
a7f25a84 12864 error ("%s", err_msg);
3df3a985
PFC
12865
12866 size_left = buf.size () - strlen (buf.data ());
12867
12868 /* Two bytes to encode each aexpr byte, plus the terminating
12869 null byte. */
12870 if (aexpr->len * 2 + 1 > size_left)
a7f25a84 12871 error ("%s", err_msg);
3df3a985
PFC
12872
12873 pkt = buf.data () + strlen (buf.data ());
12874
b44ec619 12875 for (int ndx = 0; ndx < aexpr->len; ++ndx)
e8ba3115
YQ
12876 pkt = pack_hex_byte (pkt, aexpr->buf[ndx]);
12877 *pkt = '\0';
35b1e5cc 12878 }
e8ba3115
YQ
12879 else
12880 warning (_("Target does not support conditional tracepoints, "
12881 "ignoring tp %d cond"), b->number);
12882 }
35b1e5cc 12883
d9b3f62e 12884 if (b->commands || *default_collect)
3df3a985
PFC
12885 {
12886 size_left = buf.size () - strlen (buf.data ());
12887
12888 ret = snprintf (buf.data () + strlen (buf.data ()),
12889 size_left, "-");
12890
12891 if (ret < 0 || ret >= size_left)
a7f25a84 12892 error ("%s", err_msg);
3df3a985
PFC
12893 }
12894
12895 putpkt (buf.data ());
b6bb3468 12896 remote_get_noisy_reply ();
8d64371b 12897 if (strcmp (rs->buf.data (), "OK"))
e8ba3115 12898 error (_("Target does not support tracepoints."));
35b1e5cc 12899
e8ba3115 12900 /* do_single_steps (t); */
b44ec619
SM
12901 for (auto action_it = tdp_actions.begin ();
12902 action_it != tdp_actions.end (); action_it++)
e8ba3115 12903 {
b44ec619
SM
12904 QUIT; /* Allow user to bail out with ^C. */
12905
aa6f3694 12906 bool has_more = ((action_it + 1) != tdp_actions.end ()
b44ec619
SM
12907 || !stepping_actions.empty ());
12908
3df3a985
PFC
12909 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%c",
12910 b->number, addrbuf, /* address */
12911 action_it->c_str (),
12912 has_more ? '-' : 0);
12913
12914 if (ret < 0 || ret >= buf.size ())
a7f25a84 12915 error ("%s", err_msg);
3df3a985
PFC
12916
12917 putpkt (buf.data ());
b44ec619 12918 remote_get_noisy_reply ();
8d64371b 12919 if (strcmp (rs->buf.data (), "OK"))
b44ec619 12920 error (_("Error on target while setting tracepoints."));
e8ba3115 12921 }
409873ef 12922
05abfc39
PFC
12923 for (auto action_it = stepping_actions.begin ();
12924 action_it != stepping_actions.end (); action_it++)
12925 {
12926 QUIT; /* Allow user to bail out with ^C. */
12927
12928 bool is_first = action_it == stepping_actions.begin ();
aa6f3694 12929 bool has_more = (action_it + 1) != stepping_actions.end ();
05abfc39 12930
3df3a985
PFC
12931 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%s%s",
12932 b->number, addrbuf, /* address */
12933 is_first ? "S" : "",
12934 action_it->c_str (),
12935 has_more ? "-" : "");
12936
12937 if (ret < 0 || ret >= buf.size ())
a7f25a84 12938 error ("%s", err_msg);
3df3a985
PFC
12939
12940 putpkt (buf.data ());
05abfc39 12941 remote_get_noisy_reply ();
8d64371b 12942 if (strcmp (rs->buf.data (), "OK"))
05abfc39
PFC
12943 error (_("Error on target while setting tracepoints."));
12944 }
b44ec619 12945
4082afcc 12946 if (packet_support (PACKET_TracepointSource) == PACKET_ENABLE)
e8ba3115 12947 {
f00aae0f 12948 if (b->location != NULL)
409873ef 12949 {
3df3a985
PFC
12950 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
12951
12952 if (ret < 0 || ret >= buf.size ())
a7f25a84 12953 error ("%s", err_msg);
3df3a985 12954
f00aae0f 12955 encode_source_string (b->number, loc->address, "at",
d28cd78a 12956 event_location_to_string (b->location.get ()),
3df3a985
PFC
12957 buf.data () + strlen (buf.data ()),
12958 buf.size () - strlen (buf.data ()));
12959 putpkt (buf.data ());
b6bb3468 12960 remote_get_noisy_reply ();
8d64371b 12961 if (strcmp (rs->buf.data (), "OK"))
e8ba3115 12962 warning (_("Target does not support source download."));
409873ef 12963 }
e8ba3115
YQ
12964 if (b->cond_string)
12965 {
3df3a985
PFC
12966 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
12967
12968 if (ret < 0 || ret >= buf.size ())
a7f25a84 12969 error ("%s", err_msg);
3df3a985 12970
e8ba3115 12971 encode_source_string (b->number, loc->address,
3df3a985
PFC
12972 "cond", b->cond_string,
12973 buf.data () + strlen (buf.data ()),
12974 buf.size () - strlen (buf.data ()));
12975 putpkt (buf.data ());
b6bb3468 12976 remote_get_noisy_reply ();
8d64371b 12977 if (strcmp (rs->buf.data (), "OK"))
e8ba3115
YQ
12978 warning (_("Target does not support source download."));
12979 }
12980 remote_download_command_source (b->number, loc->address,
12981 breakpoint_commands (b));
35b1e5cc 12982 }
35b1e5cc
SS
12983}
12984
57810aa7 12985bool
f6ac5f3d 12986remote_target::can_download_tracepoint ()
1e4d1764 12987{
1e51243a
PA
12988 struct remote_state *rs = get_remote_state ();
12989 struct trace_status *ts;
12990 int status;
12991
12992 /* Don't try to install tracepoints until we've relocated our
12993 symbols, and fetched and merged the target's tracepoint list with
12994 ours. */
12995 if (rs->starting_up)
57810aa7 12996 return false;
1e51243a
PA
12997
12998 ts = current_trace_status ();
f6ac5f3d 12999 status = get_trace_status (ts);
1e4d1764
YQ
13000
13001 if (status == -1 || !ts->running_known || !ts->running)
57810aa7 13002 return false;
1e4d1764
YQ
13003
13004 /* If we are in a tracing experiment, but remote stub doesn't support
13005 installing tracepoint in trace, we have to return. */
13006 if (!remote_supports_install_in_trace ())
57810aa7 13007 return false;
1e4d1764 13008
57810aa7 13009 return true;
1e4d1764
YQ
13010}
13011
13012
f6ac5f3d
PA
13013void
13014remote_target::download_trace_state_variable (const trace_state_variable &tsv)
35b1e5cc
SS
13015{
13016 struct remote_state *rs = get_remote_state ();
00bf0b85 13017 char *p;
35b1e5cc 13018
8d64371b 13019 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDV:%x:%s:%x:",
c252925c
SM
13020 tsv.number, phex ((ULONGEST) tsv.initial_value, 8),
13021 tsv.builtin);
8d64371b
TT
13022 p = rs->buf.data () + strlen (rs->buf.data ());
13023 if ((p - rs->buf.data ()) + tsv.name.length () * 2
13024 >= get_remote_packet_size ())
00bf0b85 13025 error (_("Trace state variable name too long for tsv definition packet"));
c252925c 13026 p += 2 * bin2hex ((gdb_byte *) (tsv.name.data ()), p, tsv.name.length ());
00bf0b85 13027 *p++ = '\0';
35b1e5cc 13028 putpkt (rs->buf);
b6bb3468 13029 remote_get_noisy_reply ();
8d64371b 13030 if (rs->buf[0] == '\0')
ad91cd99 13031 error (_("Target does not support this command."));
8d64371b 13032 if (strcmp (rs->buf.data (), "OK") != 0)
ad91cd99 13033 error (_("Error on target while downloading trace state variable."));
35b1e5cc
SS
13034}
13035
f6ac5f3d
PA
13036void
13037remote_target::enable_tracepoint (struct bp_location *location)
d248b706
KY
13038{
13039 struct remote_state *rs = get_remote_state ();
13040 char addr_buf[40];
13041
13042 sprintf_vma (addr_buf, location->address);
8d64371b 13043 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTEnable:%x:%s",
bba74b36 13044 location->owner->number, addr_buf);
d248b706 13045 putpkt (rs->buf);
b6bb3468 13046 remote_get_noisy_reply ();
8d64371b 13047 if (rs->buf[0] == '\0')
d248b706 13048 error (_("Target does not support enabling tracepoints while a trace run is ongoing."));
8d64371b 13049 if (strcmp (rs->buf.data (), "OK") != 0)
d248b706
KY
13050 error (_("Error on target while enabling tracepoint."));
13051}
13052
f6ac5f3d
PA
13053void
13054remote_target::disable_tracepoint (struct bp_location *location)
d248b706
KY
13055{
13056 struct remote_state *rs = get_remote_state ();
13057 char addr_buf[40];
13058
13059 sprintf_vma (addr_buf, location->address);
8d64371b 13060 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDisable:%x:%s",
bba74b36 13061 location->owner->number, addr_buf);
d248b706 13062 putpkt (rs->buf);
b6bb3468 13063 remote_get_noisy_reply ();
8d64371b 13064 if (rs->buf[0] == '\0')
d248b706 13065 error (_("Target does not support disabling tracepoints while a trace run is ongoing."));
8d64371b 13066 if (strcmp (rs->buf.data (), "OK") != 0)
d248b706
KY
13067 error (_("Error on target while disabling tracepoint."));
13068}
13069
f6ac5f3d
PA
13070void
13071remote_target::trace_set_readonly_regions ()
35b1e5cc
SS
13072{
13073 asection *s;
13074 bfd_size_type size;
608bcef2 13075 bfd_vma vma;
35b1e5cc 13076 int anysecs = 0;
c2fa21f1 13077 int offset = 0;
35b1e5cc
SS
13078
13079 if (!exec_bfd)
13080 return; /* No information to give. */
13081
b6bb3468
PA
13082 struct remote_state *rs = get_remote_state ();
13083
8d64371b
TT
13084 strcpy (rs->buf.data (), "QTro");
13085 offset = strlen (rs->buf.data ());
35b1e5cc
SS
13086 for (s = exec_bfd->sections; s; s = s->next)
13087 {
13088 char tmp1[40], tmp2[40];
c2fa21f1 13089 int sec_length;
35b1e5cc
SS
13090
13091 if ((s->flags & SEC_LOAD) == 0 ||
0df8b418 13092 /* (s->flags & SEC_CODE) == 0 || */
35b1e5cc
SS
13093 (s->flags & SEC_READONLY) == 0)
13094 continue;
13095
13096 anysecs = 1;
fd361982
AM
13097 vma = bfd_section_vma (s);
13098 size = bfd_section_size (s);
608bcef2
HZ
13099 sprintf_vma (tmp1, vma);
13100 sprintf_vma (tmp2, vma + size);
c2fa21f1 13101 sec_length = 1 + strlen (tmp1) + 1 + strlen (tmp2);
8d64371b 13102 if (offset + sec_length + 1 > rs->buf.size ())
c2fa21f1 13103 {
4082afcc 13104 if (packet_support (PACKET_qXfer_traceframe_info) != PACKET_ENABLE)
864ac8a7 13105 warning (_("\
c2fa21f1
HZ
13106Too many sections for read-only sections definition packet."));
13107 break;
13108 }
8d64371b 13109 xsnprintf (rs->buf.data () + offset, rs->buf.size () - offset, ":%s,%s",
bba74b36 13110 tmp1, tmp2);
c2fa21f1 13111 offset += sec_length;
35b1e5cc
SS
13112 }
13113 if (anysecs)
13114 {
b6bb3468 13115 putpkt (rs->buf);
8d64371b 13116 getpkt (&rs->buf, 0);
35b1e5cc
SS
13117 }
13118}
13119
f6ac5f3d
PA
13120void
13121remote_target::trace_start ()
35b1e5cc 13122{
b6bb3468
PA
13123 struct remote_state *rs = get_remote_state ();
13124
35b1e5cc 13125 putpkt ("QTStart");
b6bb3468 13126 remote_get_noisy_reply ();
8d64371b 13127 if (rs->buf[0] == '\0')
ad91cd99 13128 error (_("Target does not support this command."));
8d64371b
TT
13129 if (strcmp (rs->buf.data (), "OK") != 0)
13130 error (_("Bogus reply from target: %s"), rs->buf.data ());
35b1e5cc
SS
13131}
13132
f6ac5f3d
PA
13133int
13134remote_target::get_trace_status (struct trace_status *ts)
35b1e5cc 13135{
953b98d1 13136 /* Initialize it just to avoid a GCC false warning. */
f652de6f 13137 char *p = NULL;
bd3eecc3 13138 enum packet_result result;
b6bb3468 13139 struct remote_state *rs = get_remote_state ();
bd3eecc3 13140
4082afcc 13141 if (packet_support (PACKET_qTStatus) == PACKET_DISABLE)
bd3eecc3 13142 return -1;
a744cf53 13143
7b9a15e1 13144 /* FIXME we need to get register block size some other way. */
5cd63fda 13145 trace_regblock_size
9d6eea31 13146 = rs->get_remote_arch_state (target_gdbarch ())->sizeof_g_packet;
00bf0b85 13147
049dc89b
JK
13148 putpkt ("qTStatus");
13149
a70b8144 13150 try
67f41397 13151 {
b6bb3468 13152 p = remote_get_noisy_reply ();
67f41397 13153 }
230d2906 13154 catch (const gdb_exception_error &ex)
67f41397 13155 {
598d3636
JK
13156 if (ex.error != TARGET_CLOSE_ERROR)
13157 {
13158 exception_fprintf (gdb_stderr, ex, "qTStatus: ");
13159 return -1;
13160 }
eedc3f4f 13161 throw;
67f41397 13162 }
00bf0b85 13163
bd3eecc3
PA
13164 result = packet_ok (p, &remote_protocol_packets[PACKET_qTStatus]);
13165
00bf0b85 13166 /* If the remote target doesn't do tracing, flag it. */
bd3eecc3 13167 if (result == PACKET_UNKNOWN)
00bf0b85 13168 return -1;
35b1e5cc 13169
00bf0b85 13170 /* We're working with a live target. */
f5911ea1 13171 ts->filename = NULL;
00bf0b85 13172
00bf0b85 13173 if (*p++ != 'T')
8d64371b 13174 error (_("Bogus trace status reply from target: %s"), rs->buf.data ());
35b1e5cc 13175
84cebc4a
YQ
13176 /* Function 'parse_trace_status' sets default value of each field of
13177 'ts' at first, so we don't have to do it here. */
00bf0b85
SS
13178 parse_trace_status (p, ts);
13179
13180 return ts->running;
35b1e5cc
SS
13181}
13182
f6ac5f3d
PA
13183void
13184remote_target::get_tracepoint_status (struct breakpoint *bp,
13185 struct uploaded_tp *utp)
f196051f
SS
13186{
13187 struct remote_state *rs = get_remote_state ();
f196051f
SS
13188 char *reply;
13189 struct bp_location *loc;
13190 struct tracepoint *tp = (struct tracepoint *) bp;
bba74b36 13191 size_t size = get_remote_packet_size ();
f196051f
SS
13192
13193 if (tp)
13194 {
c1fc2657 13195 tp->hit_count = 0;
f196051f 13196 tp->traceframe_usage = 0;
c1fc2657 13197 for (loc = tp->loc; loc; loc = loc->next)
f196051f
SS
13198 {
13199 /* If the tracepoint was never downloaded, don't go asking for
13200 any status. */
13201 if (tp->number_on_target == 0)
13202 continue;
8d64371b 13203 xsnprintf (rs->buf.data (), size, "qTP:%x:%s", tp->number_on_target,
bba74b36 13204 phex_nz (loc->address, 0));
f196051f 13205 putpkt (rs->buf);
b6bb3468 13206 reply = remote_get_noisy_reply ();
f196051f
SS
13207 if (reply && *reply)
13208 {
13209 if (*reply == 'V')
13210 parse_tracepoint_status (reply + 1, bp, utp);
13211 }
13212 }
13213 }
13214 else if (utp)
13215 {
13216 utp->hit_count = 0;
13217 utp->traceframe_usage = 0;
8d64371b 13218 xsnprintf (rs->buf.data (), size, "qTP:%x:%s", utp->number,
bba74b36 13219 phex_nz (utp->addr, 0));
f196051f 13220 putpkt (rs->buf);
b6bb3468 13221 reply = remote_get_noisy_reply ();
f196051f
SS
13222 if (reply && *reply)
13223 {
13224 if (*reply == 'V')
13225 parse_tracepoint_status (reply + 1, bp, utp);
13226 }
13227 }
13228}
13229
f6ac5f3d
PA
13230void
13231remote_target::trace_stop ()
35b1e5cc 13232{
b6bb3468
PA
13233 struct remote_state *rs = get_remote_state ();
13234
35b1e5cc 13235 putpkt ("QTStop");
b6bb3468 13236 remote_get_noisy_reply ();
8d64371b 13237 if (rs->buf[0] == '\0')
ad91cd99 13238 error (_("Target does not support this command."));
8d64371b
TT
13239 if (strcmp (rs->buf.data (), "OK") != 0)
13240 error (_("Bogus reply from target: %s"), rs->buf.data ());
35b1e5cc
SS
13241}
13242
f6ac5f3d
PA
13243int
13244remote_target::trace_find (enum trace_find_type type, int num,
13245 CORE_ADDR addr1, CORE_ADDR addr2,
13246 int *tpp)
35b1e5cc
SS
13247{
13248 struct remote_state *rs = get_remote_state ();
8d64371b 13249 char *endbuf = rs->buf.data () + get_remote_packet_size ();
35b1e5cc
SS
13250 char *p, *reply;
13251 int target_frameno = -1, target_tracept = -1;
13252
e6e4e701
PA
13253 /* Lookups other than by absolute frame number depend on the current
13254 trace selected, so make sure it is correct on the remote end
13255 first. */
13256 if (type != tfind_number)
13257 set_remote_traceframe ();
13258
8d64371b 13259 p = rs->buf.data ();
35b1e5cc
SS
13260 strcpy (p, "QTFrame:");
13261 p = strchr (p, '\0');
13262 switch (type)
13263 {
13264 case tfind_number:
bba74b36 13265 xsnprintf (p, endbuf - p, "%x", num);
35b1e5cc
SS
13266 break;
13267 case tfind_pc:
bba74b36 13268 xsnprintf (p, endbuf - p, "pc:%s", phex_nz (addr1, 0));
35b1e5cc
SS
13269 break;
13270 case tfind_tp:
bba74b36 13271 xsnprintf (p, endbuf - p, "tdp:%x", num);
35b1e5cc
SS
13272 break;
13273 case tfind_range:
bba74b36
YQ
13274 xsnprintf (p, endbuf - p, "range:%s:%s", phex_nz (addr1, 0),
13275 phex_nz (addr2, 0));
35b1e5cc
SS
13276 break;
13277 case tfind_outside:
bba74b36
YQ
13278 xsnprintf (p, endbuf - p, "outside:%s:%s", phex_nz (addr1, 0),
13279 phex_nz (addr2, 0));
35b1e5cc
SS
13280 break;
13281 default:
9b20d036 13282 error (_("Unknown trace find type %d"), type);
35b1e5cc
SS
13283 }
13284
13285 putpkt (rs->buf);
b6bb3468 13286 reply = remote_get_noisy_reply ();
ad91cd99
PA
13287 if (*reply == '\0')
13288 error (_("Target does not support this command."));
35b1e5cc
SS
13289
13290 while (reply && *reply)
13291 switch (*reply)
13292 {
13293 case 'F':
f197e0f1
VP
13294 p = ++reply;
13295 target_frameno = (int) strtol (p, &reply, 16);
13296 if (reply == p)
13297 error (_("Unable to parse trace frame number"));
e6e4e701
PA
13298 /* Don't update our remote traceframe number cache on failure
13299 to select a remote traceframe. */
f197e0f1
VP
13300 if (target_frameno == -1)
13301 return -1;
35b1e5cc
SS
13302 break;
13303 case 'T':
f197e0f1
VP
13304 p = ++reply;
13305 target_tracept = (int) strtol (p, &reply, 16);
13306 if (reply == p)
13307 error (_("Unable to parse tracepoint number"));
35b1e5cc
SS
13308 break;
13309 case 'O': /* "OK"? */
13310 if (reply[1] == 'K' && reply[2] == '\0')
13311 reply += 2;
13312 else
13313 error (_("Bogus reply from target: %s"), reply);
13314 break;
13315 default:
13316 error (_("Bogus reply from target: %s"), reply);
13317 }
13318 if (tpp)
13319 *tpp = target_tracept;
e6e4e701 13320
262e1174 13321 rs->remote_traceframe_number = target_frameno;
35b1e5cc
SS
13322 return target_frameno;
13323}
13324
57810aa7 13325bool
f6ac5f3d 13326remote_target::get_trace_state_variable_value (int tsvnum, LONGEST *val)
35b1e5cc
SS
13327{
13328 struct remote_state *rs = get_remote_state ();
13329 char *reply;
13330 ULONGEST uval;
13331
e6e4e701
PA
13332 set_remote_traceframe ();
13333
8d64371b 13334 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTV:%x", tsvnum);
35b1e5cc 13335 putpkt (rs->buf);
b6bb3468 13336 reply = remote_get_noisy_reply ();
35b1e5cc
SS
13337 if (reply && *reply)
13338 {
13339 if (*reply == 'V')
13340 {
13341 unpack_varlen_hex (reply + 1, &uval);
13342 *val = (LONGEST) uval;
57810aa7 13343 return true;
35b1e5cc
SS
13344 }
13345 }
57810aa7 13346 return false;
35b1e5cc
SS
13347}
13348
f6ac5f3d
PA
13349int
13350remote_target::save_trace_data (const char *filename)
00bf0b85
SS
13351{
13352 struct remote_state *rs = get_remote_state ();
13353 char *p, *reply;
13354
8d64371b 13355 p = rs->buf.data ();
00bf0b85
SS
13356 strcpy (p, "QTSave:");
13357 p += strlen (p);
8d64371b
TT
13358 if ((p - rs->buf.data ()) + strlen (filename) * 2
13359 >= get_remote_packet_size ())
00bf0b85 13360 error (_("Remote file name too long for trace save packet"));
9f1b45b0 13361 p += 2 * bin2hex ((gdb_byte *) filename, p, strlen (filename));
00bf0b85
SS
13362 *p++ = '\0';
13363 putpkt (rs->buf);
b6bb3468 13364 reply = remote_get_noisy_reply ();
d6c5869f 13365 if (*reply == '\0')
ad91cd99
PA
13366 error (_("Target does not support this command."));
13367 if (strcmp (reply, "OK") != 0)
13368 error (_("Bogus reply from target: %s"), reply);
00bf0b85
SS
13369 return 0;
13370}
13371
13372/* This is basically a memory transfer, but needs to be its own packet
13373 because we don't know how the target actually organizes its trace
13374 memory, plus we want to be able to ask for as much as possible, but
13375 not be unhappy if we don't get as much as we ask for. */
13376
f6ac5f3d
PA
13377LONGEST
13378remote_target::get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len)
00bf0b85
SS
13379{
13380 struct remote_state *rs = get_remote_state ();
13381 char *reply;
13382 char *p;
13383 int rslt;
13384
8d64371b 13385 p = rs->buf.data ();
00bf0b85
SS
13386 strcpy (p, "qTBuffer:");
13387 p += strlen (p);
13388 p += hexnumstr (p, offset);
13389 *p++ = ',';
13390 p += hexnumstr (p, len);
13391 *p++ = '\0';
13392
13393 putpkt (rs->buf);
b6bb3468 13394 reply = remote_get_noisy_reply ();
00bf0b85
SS
13395 if (reply && *reply)
13396 {
13397 /* 'l' by itself means we're at the end of the buffer and
13398 there is nothing more to get. */
13399 if (*reply == 'l')
13400 return 0;
13401
13402 /* Convert the reply into binary. Limit the number of bytes to
13403 convert according to our passed-in buffer size, rather than
13404 what was returned in the packet; if the target is
13405 unexpectedly generous and gives us a bigger reply than we
13406 asked for, we don't want to crash. */
b6bb3468 13407 rslt = hex2bin (reply, buf, len);
00bf0b85
SS
13408 return rslt;
13409 }
13410
13411 /* Something went wrong, flag as an error. */
13412 return -1;
13413}
13414
f6ac5f3d
PA
13415void
13416remote_target::set_disconnected_tracing (int val)
35b1e5cc
SS
13417{
13418 struct remote_state *rs = get_remote_state ();
13419
4082afcc 13420 if (packet_support (PACKET_DisconnectedTracing_feature) == PACKET_ENABLE)
33da3f1c 13421 {
ad91cd99
PA
13422 char *reply;
13423
8d64371b
TT
13424 xsnprintf (rs->buf.data (), get_remote_packet_size (),
13425 "QTDisconnected:%x", val);
33da3f1c 13426 putpkt (rs->buf);
b6bb3468 13427 reply = remote_get_noisy_reply ();
ad91cd99 13428 if (*reply == '\0')
33da3f1c 13429 error (_("Target does not support this command."));
ad91cd99
PA
13430 if (strcmp (reply, "OK") != 0)
13431 error (_("Bogus reply from target: %s"), reply);
33da3f1c
SS
13432 }
13433 else if (val)
13434 warning (_("Target does not support disconnected tracing."));
35b1e5cc
SS
13435}
13436
f6ac5f3d
PA
13437int
13438remote_target::core_of_thread (ptid_t ptid)
dc146f7c
VP
13439{
13440 struct thread_info *info = find_thread_ptid (ptid);
a744cf53 13441
7aabaf9d
SM
13442 if (info != NULL && info->priv != NULL)
13443 return get_remote_thread_info (info)->core;
13444
dc146f7c
VP
13445 return -1;
13446}
13447
f6ac5f3d
PA
13448void
13449remote_target::set_circular_trace_buffer (int val)
4daf5ac0
SS
13450{
13451 struct remote_state *rs = get_remote_state ();
ad91cd99 13452 char *reply;
4daf5ac0 13453
8d64371b
TT
13454 xsnprintf (rs->buf.data (), get_remote_packet_size (),
13455 "QTBuffer:circular:%x", val);
4daf5ac0 13456 putpkt (rs->buf);
b6bb3468 13457 reply = remote_get_noisy_reply ();
ad91cd99 13458 if (*reply == '\0')
4daf5ac0 13459 error (_("Target does not support this command."));
ad91cd99
PA
13460 if (strcmp (reply, "OK") != 0)
13461 error (_("Bogus reply from target: %s"), reply);
4daf5ac0
SS
13462}
13463
f6ac5f3d
PA
13464traceframe_info_up
13465remote_target::traceframe_info ()
b3b9301e 13466{
9018be22 13467 gdb::optional<gdb::char_vector> text
8b88a78e 13468 = target_read_stralloc (current_top_target (), TARGET_OBJECT_TRACEFRAME_INFO,
b7b030ad 13469 NULL);
9018be22
SM
13470 if (text)
13471 return parse_traceframe_info (text->data ());
b3b9301e
PA
13472
13473 return NULL;
13474}
13475
405f8e94
SS
13476/* Handle the qTMinFTPILen packet. Returns the minimum length of
13477 instruction on which a fast tracepoint may be placed. Returns -1
13478 if the packet is not supported, and 0 if the minimum instruction
13479 length is unknown. */
13480
f6ac5f3d
PA
13481int
13482remote_target::get_min_fast_tracepoint_insn_len ()
405f8e94
SS
13483{
13484 struct remote_state *rs = get_remote_state ();
13485 char *reply;
13486
e886a173
PA
13487 /* If we're not debugging a process yet, the IPA can't be
13488 loaded. */
13489 if (!target_has_execution)
13490 return 0;
13491
13492 /* Make sure the remote is pointing at the right process. */
13493 set_general_process ();
13494
8d64371b 13495 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTMinFTPILen");
405f8e94 13496 putpkt (rs->buf);
b6bb3468 13497 reply = remote_get_noisy_reply ();
405f8e94
SS
13498 if (*reply == '\0')
13499 return -1;
13500 else
13501 {
13502 ULONGEST min_insn_len;
13503
13504 unpack_varlen_hex (reply, &min_insn_len);
13505
13506 return (int) min_insn_len;
13507 }
13508}
13509
f6ac5f3d
PA
13510void
13511remote_target::set_trace_buffer_size (LONGEST val)
f6f899bf 13512{
4082afcc 13513 if (packet_support (PACKET_QTBuffer_size) != PACKET_DISABLE)
f6f899bf
HAQ
13514 {
13515 struct remote_state *rs = get_remote_state ();
8d64371b
TT
13516 char *buf = rs->buf.data ();
13517 char *endbuf = buf + get_remote_packet_size ();
f6f899bf
HAQ
13518 enum packet_result result;
13519
13520 gdb_assert (val >= 0 || val == -1);
13521 buf += xsnprintf (buf, endbuf - buf, "QTBuffer:size:");
13522 /* Send -1 as literal "-1" to avoid host size dependency. */
13523 if (val < 0)
13524 {
13525 *buf++ = '-';
13526 buf += hexnumstr (buf, (ULONGEST) -val);
13527 }
13528 else
13529 buf += hexnumstr (buf, (ULONGEST) val);
13530
13531 putpkt (rs->buf);
b6bb3468 13532 remote_get_noisy_reply ();
f6f899bf
HAQ
13533 result = packet_ok (rs->buf,
13534 &remote_protocol_packets[PACKET_QTBuffer_size]);
13535
13536 if (result != PACKET_OK)
8d64371b 13537 warning (_("Bogus reply from target: %s"), rs->buf.data ());
f6f899bf
HAQ
13538 }
13539}
13540
57810aa7 13541bool
f6ac5f3d
PA
13542remote_target::set_trace_notes (const char *user, const char *notes,
13543 const char *stop_notes)
f196051f
SS
13544{
13545 struct remote_state *rs = get_remote_state ();
13546 char *reply;
8d64371b
TT
13547 char *buf = rs->buf.data ();
13548 char *endbuf = buf + get_remote_packet_size ();
f196051f
SS
13549 int nbytes;
13550
13551 buf += xsnprintf (buf, endbuf - buf, "QTNotes:");
13552 if (user)
13553 {
13554 buf += xsnprintf (buf, endbuf - buf, "user:");
9f1b45b0 13555 nbytes = bin2hex ((gdb_byte *) user, buf, strlen (user));
f196051f
SS
13556 buf += 2 * nbytes;
13557 *buf++ = ';';
13558 }
13559 if (notes)
13560 {
13561 buf += xsnprintf (buf, endbuf - buf, "notes:");
9f1b45b0 13562 nbytes = bin2hex ((gdb_byte *) notes, buf, strlen (notes));
f196051f
SS
13563 buf += 2 * nbytes;
13564 *buf++ = ';';
13565 }
13566 if (stop_notes)
13567 {
13568 buf += xsnprintf (buf, endbuf - buf, "tstop:");
9f1b45b0 13569 nbytes = bin2hex ((gdb_byte *) stop_notes, buf, strlen (stop_notes));
f196051f
SS
13570 buf += 2 * nbytes;
13571 *buf++ = ';';
13572 }
13573 /* Ensure the buffer is terminated. */
13574 *buf = '\0';
13575
13576 putpkt (rs->buf);
b6bb3468 13577 reply = remote_get_noisy_reply ();
f196051f 13578 if (*reply == '\0')
57810aa7 13579 return false;
f196051f
SS
13580
13581 if (strcmp (reply, "OK") != 0)
13582 error (_("Bogus reply from target: %s"), reply);
13583
57810aa7 13584 return true;
f196051f
SS
13585}
13586
57810aa7
PA
13587bool
13588remote_target::use_agent (bool use)
d1feda86 13589{
4082afcc 13590 if (packet_support (PACKET_QAgent) != PACKET_DISABLE)
d1feda86
YQ
13591 {
13592 struct remote_state *rs = get_remote_state ();
13593
13594 /* If the stub supports QAgent. */
8d64371b 13595 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QAgent:%d", use);
d1feda86 13596 putpkt (rs->buf);
8d64371b 13597 getpkt (&rs->buf, 0);
d1feda86 13598
8d64371b 13599 if (strcmp (rs->buf.data (), "OK") == 0)
d1feda86 13600 {
f6ac5f3d 13601 ::use_agent = use;
57810aa7 13602 return true;
d1feda86
YQ
13603 }
13604 }
13605
57810aa7 13606 return false;
d1feda86
YQ
13607}
13608
57810aa7 13609bool
f6ac5f3d 13610remote_target::can_use_agent ()
d1feda86 13611{
4082afcc 13612 return (packet_support (PACKET_QAgent) != PACKET_DISABLE);
d1feda86
YQ
13613}
13614
9accd112
MM
13615struct btrace_target_info
13616{
13617 /* The ptid of the traced thread. */
13618 ptid_t ptid;
f4abbc16
MM
13619
13620 /* The obtained branch trace configuration. */
13621 struct btrace_config conf;
9accd112
MM
13622};
13623
f4abbc16
MM
13624/* Reset our idea of our target's btrace configuration. */
13625
13626static void
6b8edb51 13627remote_btrace_reset (remote_state *rs)
f4abbc16 13628{
f4abbc16
MM
13629 memset (&rs->btrace_config, 0, sizeof (rs->btrace_config));
13630}
13631
f4abbc16
MM
13632/* Synchronize the configuration with the target. */
13633
6b8edb51
PA
13634void
13635remote_target::btrace_sync_conf (const btrace_config *conf)
f4abbc16 13636{
d33501a5
MM
13637 struct packet_config *packet;
13638 struct remote_state *rs;
13639 char *buf, *pos, *endbuf;
13640
13641 rs = get_remote_state ();
8d64371b 13642 buf = rs->buf.data ();
d33501a5
MM
13643 endbuf = buf + get_remote_packet_size ();
13644
13645 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_bts_size];
13646 if (packet_config_support (packet) == PACKET_ENABLE
13647 && conf->bts.size != rs->btrace_config.bts.size)
13648 {
13649 pos = buf;
13650 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13651 conf->bts.size);
13652
13653 putpkt (buf);
8d64371b 13654 getpkt (&rs->buf, 0);
d33501a5
MM
13655
13656 if (packet_ok (buf, packet) == PACKET_ERROR)
13657 {
13658 if (buf[0] == 'E' && buf[1] == '.')
13659 error (_("Failed to configure the BTS buffer size: %s"), buf + 2);
13660 else
13661 error (_("Failed to configure the BTS buffer size."));
13662 }
13663
13664 rs->btrace_config.bts.size = conf->bts.size;
13665 }
b20a6524
MM
13666
13667 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_pt_size];
13668 if (packet_config_support (packet) == PACKET_ENABLE
13669 && conf->pt.size != rs->btrace_config.pt.size)
13670 {
13671 pos = buf;
13672 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13673 conf->pt.size);
13674
13675 putpkt (buf);
8d64371b 13676 getpkt (&rs->buf, 0);
b20a6524
MM
13677
13678 if (packet_ok (buf, packet) == PACKET_ERROR)
13679 {
13680 if (buf[0] == 'E' && buf[1] == '.')
13681 error (_("Failed to configure the trace buffer size: %s"), buf + 2);
13682 else
13683 error (_("Failed to configure the trace buffer size."));
13684 }
13685
13686 rs->btrace_config.pt.size = conf->pt.size;
13687 }
f4abbc16
MM
13688}
13689
13690/* Read the current thread's btrace configuration from the target and
13691 store it into CONF. */
13692
13693static void
13694btrace_read_config (struct btrace_config *conf)
13695{
9018be22 13696 gdb::optional<gdb::char_vector> xml
8b88a78e 13697 = target_read_stralloc (current_top_target (), TARGET_OBJECT_BTRACE_CONF, "");
9018be22
SM
13698 if (xml)
13699 parse_xml_btrace_conf (conf, xml->data ());
f4abbc16
MM
13700}
13701
c0272db5
TW
13702/* Maybe reopen target btrace. */
13703
6b8edb51
PA
13704void
13705remote_target::remote_btrace_maybe_reopen ()
c0272db5
TW
13706{
13707 struct remote_state *rs = get_remote_state ();
c0272db5 13708 int btrace_target_pushed = 0;
15766370 13709#if !defined (HAVE_LIBIPT)
c0272db5 13710 int warned = 0;
15766370 13711#endif
c0272db5 13712
aedbe3bb
CM
13713 /* Don't bother walking the entirety of the remote thread list when
13714 we know the feature isn't supported by the remote. */
13715 if (packet_support (PACKET_qXfer_btrace_conf) != PACKET_ENABLE)
13716 return;
13717
5ed8105e
PA
13718 scoped_restore_current_thread restore_thread;
13719
08036331 13720 for (thread_info *tp : all_non_exited_threads ())
c0272db5
TW
13721 {
13722 set_general_thread (tp->ptid);
13723
13724 memset (&rs->btrace_config, 0x00, sizeof (struct btrace_config));
13725 btrace_read_config (&rs->btrace_config);
13726
13727 if (rs->btrace_config.format == BTRACE_FORMAT_NONE)
13728 continue;
13729
13730#if !defined (HAVE_LIBIPT)
13731 if (rs->btrace_config.format == BTRACE_FORMAT_PT)
13732 {
13733 if (!warned)
13734 {
13735 warned = 1;
c4e12631
MM
13736 warning (_("Target is recording using Intel Processor Trace "
13737 "but support was disabled at compile time."));
c0272db5
TW
13738 }
13739
13740 continue;
13741 }
13742#endif /* !defined (HAVE_LIBIPT) */
13743
13744 /* Push target, once, but before anything else happens. This way our
13745 changes to the threads will be cleaned up by unpushing the target
13746 in case btrace_read_config () throws. */
13747 if (!btrace_target_pushed)
13748 {
13749 btrace_target_pushed = 1;
13750 record_btrace_push_target ();
13751 printf_filtered (_("Target is recording using %s.\n"),
13752 btrace_format_string (rs->btrace_config.format));
13753 }
13754
13755 tp->btrace.target = XCNEW (struct btrace_target_info);
13756 tp->btrace.target->ptid = tp->ptid;
13757 tp->btrace.target->conf = rs->btrace_config;
13758 }
c0272db5
TW
13759}
13760
9accd112
MM
13761/* Enable branch tracing. */
13762
f6ac5f3d
PA
13763struct btrace_target_info *
13764remote_target::enable_btrace (ptid_t ptid, const struct btrace_config *conf)
9accd112
MM
13765{
13766 struct btrace_target_info *tinfo = NULL;
b20a6524 13767 struct packet_config *packet = NULL;
9accd112 13768 struct remote_state *rs = get_remote_state ();
8d64371b
TT
13769 char *buf = rs->buf.data ();
13770 char *endbuf = buf + get_remote_packet_size ();
9accd112 13771
b20a6524
MM
13772 switch (conf->format)
13773 {
13774 case BTRACE_FORMAT_BTS:
13775 packet = &remote_protocol_packets[PACKET_Qbtrace_bts];
13776 break;
13777
13778 case BTRACE_FORMAT_PT:
13779 packet = &remote_protocol_packets[PACKET_Qbtrace_pt];
13780 break;
13781 }
13782
13783 if (packet == NULL || packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13784 error (_("Target does not support branch tracing."));
13785
f4abbc16
MM
13786 btrace_sync_conf (conf);
13787
9accd112
MM
13788 set_general_thread (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 enable branch tracing for %s: %s"),
a068643d 13798 target_pid_to_str (ptid).c_str (), &rs->buf[2]);
9accd112
MM
13799 else
13800 error (_("Could not enable branch tracing for %s."),
a068643d 13801 target_pid_to_str (ptid).c_str ());
9accd112
MM
13802 }
13803
8d749320 13804 tinfo = XCNEW (struct btrace_target_info);
9accd112
MM
13805 tinfo->ptid = ptid;
13806
f4abbc16
MM
13807 /* If we fail to read the configuration, we lose some information, but the
13808 tracing itself is not impacted. */
a70b8144 13809 try
492d29ea
PA
13810 {
13811 btrace_read_config (&tinfo->conf);
13812 }
230d2906 13813 catch (const gdb_exception_error &err)
492d29ea
PA
13814 {
13815 if (err.message != NULL)
3d6e9d23 13816 warning ("%s", err.what ());
492d29ea 13817 }
f4abbc16 13818
9accd112
MM
13819 return tinfo;
13820}
13821
13822/* Disable branch tracing. */
13823
f6ac5f3d
PA
13824void
13825remote_target::disable_btrace (struct btrace_target_info *tinfo)
9accd112
MM
13826{
13827 struct packet_config *packet = &remote_protocol_packets[PACKET_Qbtrace_off];
13828 struct remote_state *rs = get_remote_state ();
8d64371b
TT
13829 char *buf = rs->buf.data ();
13830 char *endbuf = buf + get_remote_packet_size ();
9accd112 13831
4082afcc 13832 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13833 error (_("Target does not support branch tracing."));
13834
13835 set_general_thread (tinfo->ptid);
13836
13837 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
13838 putpkt (rs->buf);
8d64371b 13839 getpkt (&rs->buf, 0);
9accd112
MM
13840
13841 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
13842 {
13843 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
13844 error (_("Could not disable branch tracing for %s: %s"),
a068643d 13845 target_pid_to_str (tinfo->ptid).c_str (), &rs->buf[2]);
9accd112
MM
13846 else
13847 error (_("Could not disable branch tracing for %s."),
a068643d 13848 target_pid_to_str (tinfo->ptid).c_str ());
9accd112
MM
13849 }
13850
13851 xfree (tinfo);
13852}
13853
13854/* Teardown branch tracing. */
13855
f6ac5f3d
PA
13856void
13857remote_target::teardown_btrace (struct btrace_target_info *tinfo)
9accd112
MM
13858{
13859 /* We must not talk to the target during teardown. */
13860 xfree (tinfo);
13861}
13862
13863/* Read the branch trace. */
13864
f6ac5f3d
PA
13865enum btrace_error
13866remote_target::read_btrace (struct btrace_data *btrace,
13867 struct btrace_target_info *tinfo,
13868 enum btrace_read_type type)
9accd112
MM
13869{
13870 struct packet_config *packet = &remote_protocol_packets[PACKET_qXfer_btrace];
9accd112 13871 const char *annex;
9accd112 13872
4082afcc 13873 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13874 error (_("Target does not support branch tracing."));
13875
13876#if !defined(HAVE_LIBEXPAT)
13877 error (_("Cannot process branch tracing result. XML parsing not supported."));
13878#endif
13879
13880 switch (type)
13881 {
864089d2 13882 case BTRACE_READ_ALL:
9accd112
MM
13883 annex = "all";
13884 break;
864089d2 13885 case BTRACE_READ_NEW:
9accd112
MM
13886 annex = "new";
13887 break;
969c39fb
MM
13888 case BTRACE_READ_DELTA:
13889 annex = "delta";
13890 break;
9accd112
MM
13891 default:
13892 internal_error (__FILE__, __LINE__,
13893 _("Bad branch tracing read type: %u."),
13894 (unsigned int) type);
13895 }
13896
9018be22 13897 gdb::optional<gdb::char_vector> xml
8b88a78e 13898 = target_read_stralloc (current_top_target (), TARGET_OBJECT_BTRACE, annex);
9018be22 13899 if (!xml)
969c39fb 13900 return BTRACE_ERR_UNKNOWN;
9accd112 13901
9018be22 13902 parse_xml_btrace (btrace, xml->data ());
9accd112 13903
969c39fb 13904 return BTRACE_ERR_NONE;
9accd112
MM
13905}
13906
f6ac5f3d
PA
13907const struct btrace_config *
13908remote_target::btrace_conf (const struct btrace_target_info *tinfo)
f4abbc16
MM
13909{
13910 return &tinfo->conf;
13911}
13912
57810aa7 13913bool
f6ac5f3d 13914remote_target::augmented_libraries_svr4_read ()
ced63ec0 13915{
4082afcc
PA
13916 return (packet_support (PACKET_augmented_libraries_svr4_read_feature)
13917 == PACKET_ENABLE);
ced63ec0
GB
13918}
13919
9dd130a0
TT
13920/* Implementation of to_load. */
13921
f6ac5f3d
PA
13922void
13923remote_target::load (const char *name, int from_tty)
9dd130a0
TT
13924{
13925 generic_load (name, from_tty);
13926}
13927
c78fa86a
GB
13928/* Accepts an integer PID; returns a string representing a file that
13929 can be opened on the remote side to get the symbols for the child
13930 process. Returns NULL if the operation is not supported. */
13931
f6ac5f3d
PA
13932char *
13933remote_target::pid_to_exec_file (int pid)
c78fa86a 13934{
9018be22 13935 static gdb::optional<gdb::char_vector> filename;
835205d0
GB
13936 struct inferior *inf;
13937 char *annex = NULL;
c78fa86a
GB
13938
13939 if (packet_support (PACKET_qXfer_exec_file) != PACKET_ENABLE)
13940 return NULL;
13941
835205d0
GB
13942 inf = find_inferior_pid (pid);
13943 if (inf == NULL)
13944 internal_error (__FILE__, __LINE__,
13945 _("not currently attached to process %d"), pid);
13946
13947 if (!inf->fake_pid_p)
13948 {
13949 const int annex_size = 9;
13950
224c3ddb 13951 annex = (char *) alloca (annex_size);
835205d0
GB
13952 xsnprintf (annex, annex_size, "%x", pid);
13953 }
13954
8b88a78e 13955 filename = target_read_stralloc (current_top_target (),
c78fa86a
GB
13956 TARGET_OBJECT_EXEC_FILE, annex);
13957
9018be22 13958 return filename ? filename->data () : nullptr;
c78fa86a
GB
13959}
13960
750ce8d1
YQ
13961/* Implement the to_can_do_single_step target_ops method. */
13962
f6ac5f3d
PA
13963int
13964remote_target::can_do_single_step ()
750ce8d1
YQ
13965{
13966 /* We can only tell whether target supports single step or not by
13967 supported s and S vCont actions if the stub supports vContSupported
13968 feature. If the stub doesn't support vContSupported feature,
13969 we have conservatively to think target doesn't supports single
13970 step. */
13971 if (packet_support (PACKET_vContSupported) == PACKET_ENABLE)
13972 {
13973 struct remote_state *rs = get_remote_state ();
13974
13975 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6b8edb51 13976 remote_vcont_probe ();
750ce8d1
YQ
13977
13978 return rs->supports_vCont.s && rs->supports_vCont.S;
13979 }
13980 else
13981 return 0;
13982}
13983
3a00c802
PA
13984/* Implementation of the to_execution_direction method for the remote
13985 target. */
13986
f6ac5f3d
PA
13987enum exec_direction_kind
13988remote_target::execution_direction ()
3a00c802
PA
13989{
13990 struct remote_state *rs = get_remote_state ();
13991
13992 return rs->last_resume_exec_dir;
13993}
13994
f6327dcb
KB
13995/* Return pointer to the thread_info struct which corresponds to
13996 THREAD_HANDLE (having length HANDLE_LEN). */
13997
f6ac5f3d
PA
13998thread_info *
13999remote_target::thread_handle_to_thread_info (const gdb_byte *thread_handle,
14000 int handle_len,
14001 inferior *inf)
f6327dcb 14002{
08036331 14003 for (thread_info *tp : all_non_exited_threads ())
f6327dcb 14004 {
7aabaf9d 14005 remote_thread_info *priv = get_remote_thread_info (tp);
f6327dcb
KB
14006
14007 if (tp->inf == inf && priv != NULL)
14008 {
7aabaf9d 14009 if (handle_len != priv->thread_handle.size ())
f6327dcb 14010 error (_("Thread handle size mismatch: %d vs %zu (from remote)"),
7aabaf9d
SM
14011 handle_len, priv->thread_handle.size ());
14012 if (memcmp (thread_handle, priv->thread_handle.data (),
f6327dcb
KB
14013 handle_len) == 0)
14014 return tp;
14015 }
14016 }
14017
14018 return NULL;
14019}
14020
3d6c6204
KB
14021gdb::byte_vector
14022remote_target::thread_info_to_thread_handle (struct thread_info *tp)
14023{
14024 remote_thread_info *priv = get_remote_thread_info (tp);
14025 return priv->thread_handle;
14026}
14027
57810aa7 14028bool
f6ac5f3d 14029remote_target::can_async_p ()
6426a772 14030{
5d93a237
TT
14031 struct remote_state *rs = get_remote_state ();
14032
3015c064
SM
14033 /* We don't go async if the user has explicitly prevented it with the
14034 "maint set target-async" command. */
c6ebd6cf 14035 if (!target_async_permitted)
57810aa7 14036 return false;
75c99385 14037
23860348 14038 /* We're async whenever the serial device is. */
5d93a237 14039 return serial_can_async_p (rs->remote_desc);
6426a772
JM
14040}
14041
57810aa7 14042bool
f6ac5f3d 14043remote_target::is_async_p ()
6426a772 14044{
5d93a237
TT
14045 struct remote_state *rs = get_remote_state ();
14046
c6ebd6cf 14047 if (!target_async_permitted)
75c99385 14048 /* We only enable async when the user specifically asks for it. */
57810aa7 14049 return false;
75c99385 14050
23860348 14051 /* We're async whenever the serial device is. */
5d93a237 14052 return serial_is_async_p (rs->remote_desc);
6426a772
JM
14053}
14054
2acceee2
JM
14055/* Pass the SERIAL event on and up to the client. One day this code
14056 will be able to delay notifying the client of an event until the
23860348 14057 point where an entire packet has been received. */
2acceee2 14058
2acceee2
JM
14059static serial_event_ftype remote_async_serial_handler;
14060
6426a772 14061static void
819cc324 14062remote_async_serial_handler (struct serial *scb, void *context)
6426a772 14063{
2acceee2
JM
14064 /* Don't propogate error information up to the client. Instead let
14065 the client find out about the error by querying the target. */
6a3753b3 14066 inferior_event_handler (INF_REG_EVENT, NULL);
2acceee2
JM
14067}
14068
74531fed
PA
14069static void
14070remote_async_inferior_event_handler (gdb_client_data data)
14071{
6b8edb51 14072 inferior_event_handler (INF_REG_EVENT, data);
74531fed
PA
14073}
14074
f6ac5f3d
PA
14075void
14076remote_target::async (int enable)
2acceee2 14077{
5d93a237
TT
14078 struct remote_state *rs = get_remote_state ();
14079
6a3753b3 14080 if (enable)
2acceee2 14081 {
88b496c3 14082 serial_async (rs->remote_desc, remote_async_serial_handler, rs);
b7d2e916
PA
14083
14084 /* If there are pending events in the stop reply queue tell the
14085 event loop to process them. */
953edf2b 14086 if (!rs->stop_reply_queue.empty ())
6b8edb51 14087 mark_async_event_handler (rs->remote_async_inferior_event_token);
6efcd9a8
PA
14088 /* For simplicity, below we clear the pending events token
14089 without remembering whether it is marked, so here we always
14090 mark it. If there's actually no pending notification to
14091 process, this ends up being a no-op (other than a spurious
14092 event-loop wakeup). */
14093 if (target_is_non_stop_p ())
14094 mark_async_event_handler (rs->notif_state->get_pending_events_token);
2acceee2
JM
14095 }
14096 else
b7d2e916
PA
14097 {
14098 serial_async (rs->remote_desc, NULL, NULL);
6efcd9a8
PA
14099 /* If the core is disabling async, it doesn't want to be
14100 disturbed with target events. Clear all async event sources
14101 too. */
6b8edb51 14102 clear_async_event_handler (rs->remote_async_inferior_event_token);
6efcd9a8
PA
14103 if (target_is_non_stop_p ())
14104 clear_async_event_handler (rs->notif_state->get_pending_events_token);
b7d2e916 14105 }
6426a772
JM
14106}
14107
65706a29
PA
14108/* Implementation of the to_thread_events method. */
14109
f6ac5f3d
PA
14110void
14111remote_target::thread_events (int enable)
65706a29
PA
14112{
14113 struct remote_state *rs = get_remote_state ();
14114 size_t size = get_remote_packet_size ();
65706a29
PA
14115
14116 if (packet_support (PACKET_QThreadEvents) == PACKET_DISABLE)
14117 return;
14118
8d64371b 14119 xsnprintf (rs->buf.data (), size, "QThreadEvents:%x", enable ? 1 : 0);
65706a29 14120 putpkt (rs->buf);
8d64371b 14121 getpkt (&rs->buf, 0);
65706a29
PA
14122
14123 switch (packet_ok (rs->buf,
14124 &remote_protocol_packets[PACKET_QThreadEvents]))
14125 {
14126 case PACKET_OK:
8d64371b
TT
14127 if (strcmp (rs->buf.data (), "OK") != 0)
14128 error (_("Remote refused setting thread events: %s"), rs->buf.data ());
65706a29
PA
14129 break;
14130 case PACKET_ERROR:
8d64371b 14131 warning (_("Remote failure reply: %s"), rs->buf.data ());
65706a29
PA
14132 break;
14133 case PACKET_UNKNOWN:
14134 break;
14135 }
14136}
14137
5a2468f5 14138static void
981a3fb3 14139set_remote_cmd (const char *args, int from_tty)
5a2468f5 14140{
635c7e8a 14141 help_list (remote_set_cmdlist, "set remote ", all_commands, gdb_stdout);
5a2468f5
JM
14142}
14143
d471ea57 14144static void
981a3fb3 14145show_remote_cmd (const char *args, int from_tty)
d471ea57 14146{
37a105a1 14147 /* We can't just use cmd_show_list here, because we want to skip
427c3a89 14148 the redundant "show remote Z-packet" and the legacy aliases. */
37a105a1 14149 struct cmd_list_element *list = remote_show_cmdlist;
79a45e25 14150 struct ui_out *uiout = current_uiout;
37a105a1 14151
2e783024 14152 ui_out_emit_tuple tuple_emitter (uiout, "showlist");
37a105a1
DJ
14153 for (; list != NULL; list = list->next)
14154 if (strcmp (list->name, "Z-packet") == 0)
14155 continue;
427c3a89
DJ
14156 else if (list->type == not_set_cmd)
14157 /* Alias commands are exactly like the original, except they
14158 don't have the normal type. */
14159 continue;
14160 else
37a105a1 14161 {
2e783024 14162 ui_out_emit_tuple option_emitter (uiout, "option");
a744cf53 14163
112e8700
SM
14164 uiout->field_string ("name", list->name);
14165 uiout->text (": ");
427c3a89 14166 if (list->type == show_cmd)
f5c4fcd9 14167 do_show_command (NULL, from_tty, list);
427c3a89
DJ
14168 else
14169 cmd_func (list, NULL, from_tty);
37a105a1 14170 }
d471ea57 14171}
5a2468f5 14172
0f71a2f6 14173
23860348 14174/* Function to be called whenever a new objfile (shlib) is detected. */
dc8acb97
MS
14175static void
14176remote_new_objfile (struct objfile *objfile)
14177{
6b8edb51 14178 remote_target *remote = get_current_remote_target ();
5d93a237 14179
6b8edb51
PA
14180 if (remote != NULL) /* Have a remote connection. */
14181 remote->remote_check_symbols ();
dc8acb97
MS
14182}
14183
00bf0b85
SS
14184/* Pull all the tracepoints defined on the target and create local
14185 data structures representing them. We don't want to create real
14186 tracepoints yet, we don't want to mess up the user's existing
14187 collection. */
14188
f6ac5f3d
PA
14189int
14190remote_target::upload_tracepoints (struct uploaded_tp **utpp)
d5551862 14191{
00bf0b85
SS
14192 struct remote_state *rs = get_remote_state ();
14193 char *p;
d5551862 14194
00bf0b85
SS
14195 /* Ask for a first packet of tracepoint definition. */
14196 putpkt ("qTfP");
8d64371b
TT
14197 getpkt (&rs->buf, 0);
14198 p = rs->buf.data ();
00bf0b85 14199 while (*p && *p != 'l')
d5551862 14200 {
00bf0b85
SS
14201 parse_tracepoint_definition (p, utpp);
14202 /* Ask for another packet of tracepoint definition. */
14203 putpkt ("qTsP");
8d64371b
TT
14204 getpkt (&rs->buf, 0);
14205 p = rs->buf.data ();
d5551862 14206 }
00bf0b85 14207 return 0;
d5551862
SS
14208}
14209
f6ac5f3d
PA
14210int
14211remote_target::upload_trace_state_variables (struct uploaded_tsv **utsvp)
d5551862 14212{
00bf0b85 14213 struct remote_state *rs = get_remote_state ();
d5551862 14214 char *p;
d5551862 14215
00bf0b85
SS
14216 /* Ask for a first packet of variable definition. */
14217 putpkt ("qTfV");
8d64371b
TT
14218 getpkt (&rs->buf, 0);
14219 p = rs->buf.data ();
00bf0b85 14220 while (*p && *p != 'l')
d5551862 14221 {
00bf0b85
SS
14222 parse_tsv_definition (p, utsvp);
14223 /* Ask for another packet of variable definition. */
14224 putpkt ("qTsV");
8d64371b
TT
14225 getpkt (&rs->buf, 0);
14226 p = rs->buf.data ();
d5551862 14227 }
00bf0b85 14228 return 0;
d5551862
SS
14229}
14230
c1e36e3e
PA
14231/* The "set/show range-stepping" show hook. */
14232
14233static void
14234show_range_stepping (struct ui_file *file, int from_tty,
14235 struct cmd_list_element *c,
14236 const char *value)
14237{
14238 fprintf_filtered (file,
14239 _("Debugger's willingness to use range stepping "
14240 "is %s.\n"), value);
14241}
14242
6b8edb51
PA
14243/* Return true if the vCont;r action is supported by the remote
14244 stub. */
14245
14246bool
14247remote_target::vcont_r_supported ()
14248{
14249 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
14250 remote_vcont_probe ();
14251
14252 return (packet_support (PACKET_vCont) == PACKET_ENABLE
14253 && get_remote_state ()->supports_vCont.r);
14254}
14255
c1e36e3e
PA
14256/* The "set/show range-stepping" set hook. */
14257
14258static void
eb4c3f4a 14259set_range_stepping (const char *ignore_args, int from_tty,
c1e36e3e
PA
14260 struct cmd_list_element *c)
14261{
6b8edb51
PA
14262 /* When enabling, check whether range stepping is actually supported
14263 by the target, and warn if not. */
c1e36e3e
PA
14264 if (use_range_stepping)
14265 {
6b8edb51
PA
14266 remote_target *remote = get_current_remote_target ();
14267 if (remote == NULL
14268 || !remote->vcont_r_supported ())
14269 warning (_("Range stepping is not supported by the current target"));
c1e36e3e
PA
14270 }
14271}
14272
c906108c 14273void
fba45db2 14274_initialize_remote (void)
c906108c 14275{
9a7071a8 14276 struct cmd_list_element *cmd;
6f937416 14277 const char *cmd_name;
ea9c271d 14278
0f71a2f6 14279 /* architecture specific data */
29709017
DJ
14280 remote_g_packet_data_handle =
14281 gdbarch_data_register_pre_init (remote_g_packet_data_init);
d01949b6 14282
d9f719f1
PA
14283 add_target (remote_target_info, remote_target::open);
14284 add_target (extended_remote_target_info, extended_remote_target::open);
cce74817 14285
dc8acb97 14286 /* Hook into new objfile notification. */
76727919 14287 gdb::observers::new_objfile.attach (remote_new_objfile);
dc8acb97 14288
c906108c
SS
14289#if 0
14290 init_remote_threadtests ();
14291#endif
14292
23860348 14293 /* set/show remote ... */
d471ea57 14294
1bedd215 14295 add_prefix_cmd ("remote", class_maintenance, set_remote_cmd, _("\
590042fc 14296Remote protocol specific variables.\n\
5a2468f5 14297Configure various remote-protocol specific variables such as\n\
590042fc 14298the packets being used."),
cff3e48b 14299 &remote_set_cmdlist, "set remote ",
23860348 14300 0 /* allow-unknown */, &setlist);
1bedd215 14301 add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
590042fc 14302Remote protocol specific variables.\n\
5a2468f5 14303Configure various remote-protocol specific variables such as\n\
590042fc 14304the packets being used."),
cff3e48b 14305 &remote_show_cmdlist, "show remote ",
23860348 14306 0 /* allow-unknown */, &showlist);
5a2468f5 14307
1a966eab
AC
14308 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
14309Compare section data on target to the exec file.\n\
95cf3b38
DT
14310Argument is a single section name (default: all loaded sections).\n\
14311To compare only read-only loaded sections, specify the -r option."),
c906108c
SS
14312 &cmdlist);
14313
1a966eab
AC
14314 add_cmd ("packet", class_maintenance, packet_command, _("\
14315Send an arbitrary packet to a remote target.\n\
c906108c
SS
14316 maintenance packet TEXT\n\
14317If GDB is talking to an inferior via the GDB serial protocol, then\n\
14318this command sends the string TEXT to the inferior, and displays the\n\
14319response packet. GDB supplies the initial `$' character, and the\n\
1a966eab 14320terminating `#' character and checksum."),
c906108c
SS
14321 &maintenancelist);
14322
7915a72c
AC
14323 add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
14324Set whether to send break if interrupted."), _("\
14325Show whether to send break if interrupted."), _("\
14326If set, a break, instead of a cntrl-c, is sent to the remote target."),
9a7071a8 14327 set_remotebreak, show_remotebreak,
e707bbc2 14328 &setlist, &showlist);
9a7071a8
JB
14329 cmd_name = "remotebreak";
14330 cmd = lookup_cmd (&cmd_name, setlist, "", -1, 1);
14331 deprecate_cmd (cmd, "set remote interrupt-sequence");
14332 cmd_name = "remotebreak"; /* needed because lookup_cmd updates the pointer */
14333 cmd = lookup_cmd (&cmd_name, showlist, "", -1, 1);
14334 deprecate_cmd (cmd, "show remote interrupt-sequence");
14335
14336 add_setshow_enum_cmd ("interrupt-sequence", class_support,
3e43a32a
MS
14337 interrupt_sequence_modes, &interrupt_sequence_mode,
14338 _("\
9a7071a8
JB
14339Set interrupt sequence to remote target."), _("\
14340Show interrupt sequence to remote target."), _("\
14341Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."),
14342 NULL, show_interrupt_sequence,
14343 &remote_set_cmdlist,
14344 &remote_show_cmdlist);
14345
14346 add_setshow_boolean_cmd ("interrupt-on-connect", class_support,
14347 &interrupt_on_connect, _("\
590042fc
PW
14348Set whether interrupt-sequence is sent to remote target when gdb connects to."), _("\
14349Show whether interrupt-sequence is sent to remote target when gdb connects to."), _("\
9a7071a8
JB
14350If set, interrupt sequence is sent to remote target."),
14351 NULL, NULL,
14352 &remote_set_cmdlist, &remote_show_cmdlist);
c906108c 14353
23860348 14354 /* Install commands for configuring memory read/write packets. */
11cf8741 14355
1a966eab
AC
14356 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
14357Set the maximum number of bytes per memory write packet (deprecated)."),
11cf8741 14358 &setlist);
1a966eab
AC
14359 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
14360Show the maximum number of bytes per memory write packet (deprecated)."),
11cf8741
JM
14361 &showlist);
14362 add_cmd ("memory-write-packet-size", no_class,
1a966eab
AC
14363 set_memory_write_packet_size, _("\
14364Set the maximum number of bytes per memory-write packet.\n\
14365Specify the number of bytes in a packet or 0 (zero) for the\n\
14366default packet size. The actual limit is further reduced\n\
14367dependent on the target. Specify ``fixed'' to disable the\n\
14368further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
14369 &remote_set_cmdlist);
14370 add_cmd ("memory-read-packet-size", no_class,
1a966eab
AC
14371 set_memory_read_packet_size, _("\
14372Set the maximum number of bytes per memory-read packet.\n\
14373Specify the number of bytes in a packet or 0 (zero) for the\n\
14374default packet size. The actual limit is further reduced\n\
14375dependent on the target. Specify ``fixed'' to disable the\n\
14376further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
14377 &remote_set_cmdlist);
14378 add_cmd ("memory-write-packet-size", no_class,
14379 show_memory_write_packet_size,
1a966eab 14380 _("Show the maximum number of bytes per memory-write packet."),
11cf8741
JM
14381 &remote_show_cmdlist);
14382 add_cmd ("memory-read-packet-size", no_class,
14383 show_memory_read_packet_size,
1a966eab 14384 _("Show the maximum number of bytes per memory-read packet."),
11cf8741 14385 &remote_show_cmdlist);
c906108c 14386
055303e2 14387 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-limit", no_class,
7915a72c
AC
14388 &remote_hw_watchpoint_limit, _("\
14389Set the maximum number of target hardware watchpoints."), _("\
14390Show the maximum number of target hardware watchpoints."), _("\
055303e2
AB
14391Specify \"unlimited\" for unlimited hardware watchpoints."),
14392 NULL, show_hardware_watchpoint_limit,
14393 &remote_set_cmdlist,
14394 &remote_show_cmdlist);
14395 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-length-limit",
14396 no_class,
480a3f21
PW
14397 &remote_hw_watchpoint_length_limit, _("\
14398Set the maximum length (in bytes) of a target hardware watchpoint."), _("\
14399Show the maximum length (in bytes) of a target hardware watchpoint."), _("\
055303e2
AB
14400Specify \"unlimited\" to allow watchpoints of unlimited size."),
14401 NULL, show_hardware_watchpoint_length_limit,
480a3f21 14402 &remote_set_cmdlist, &remote_show_cmdlist);
055303e2 14403 add_setshow_zuinteger_unlimited_cmd ("hardware-breakpoint-limit", no_class,
7915a72c
AC
14404 &remote_hw_breakpoint_limit, _("\
14405Set the maximum number of target hardware breakpoints."), _("\
14406Show the maximum number of target hardware breakpoints."), _("\
055303e2
AB
14407Specify \"unlimited\" for unlimited hardware breakpoints."),
14408 NULL, show_hardware_breakpoint_limit,
b3f42336 14409 &remote_set_cmdlist, &remote_show_cmdlist);
501eef12 14410
1b493192
PA
14411 add_setshow_zuinteger_cmd ("remoteaddresssize", class_obscure,
14412 &remote_address_size, _("\
4d28ad1e
AC
14413Set the maximum size of the address (in bits) in a memory packet."), _("\
14414Show the maximum size of the address (in bits) in a memory packet."), NULL,
1b493192
PA
14415 NULL,
14416 NULL, /* FIXME: i18n: */
14417 &setlist, &showlist);
c906108c 14418
ca4f7f8b
PA
14419 init_all_packet_configs ();
14420
444abaca 14421 add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
bb572ddd 14422 "X", "binary-download", 1);
0f71a2f6 14423
444abaca 14424 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
bb572ddd 14425 "vCont", "verbose-resume", 0);
506fb367 14426
89be2091
DJ
14427 add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals],
14428 "QPassSignals", "pass-signals", 0);
14429
82075af2
JS
14430 add_packet_config_cmd (&remote_protocol_packets[PACKET_QCatchSyscalls],
14431 "QCatchSyscalls", "catch-syscalls", 0);
14432
9b224c5e
PA
14433 add_packet_config_cmd (&remote_protocol_packets[PACKET_QProgramSignals],
14434 "QProgramSignals", "program-signals", 0);
14435
bc3b087d
SDJ
14436 add_packet_config_cmd (&remote_protocol_packets[PACKET_QSetWorkingDir],
14437 "QSetWorkingDir", "set-working-dir", 0);
14438
aefd8b33
SDJ
14439 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartupWithShell],
14440 "QStartupWithShell", "startup-with-shell", 0);
14441
0a2dde4a
SDJ
14442 add_packet_config_cmd (&remote_protocol_packets
14443 [PACKET_QEnvironmentHexEncoded],
14444 "QEnvironmentHexEncoded", "environment-hex-encoded",
14445 0);
14446
14447 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentReset],
14448 "QEnvironmentReset", "environment-reset",
14449 0);
14450
14451 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentUnset],
14452 "QEnvironmentUnset", "environment-unset",
14453 0);
14454
444abaca 14455 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
bb572ddd 14456 "qSymbol", "symbol-lookup", 0);
dc8acb97 14457
444abaca 14458 add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
bb572ddd 14459 "P", "set-register", 1);
d471ea57 14460
444abaca 14461 add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
bb572ddd 14462 "p", "fetch-register", 1);
b96ec7ac 14463
444abaca 14464 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
bb572ddd 14465 "Z0", "software-breakpoint", 0);
d471ea57 14466
444abaca 14467 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
bb572ddd 14468 "Z1", "hardware-breakpoint", 0);
d471ea57 14469
444abaca 14470 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
bb572ddd 14471 "Z2", "write-watchpoint", 0);
d471ea57 14472
444abaca 14473 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
bb572ddd 14474 "Z3", "read-watchpoint", 0);
d471ea57 14475
444abaca 14476 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
bb572ddd 14477 "Z4", "access-watchpoint", 0);
d471ea57 14478
0876f84a
DJ
14479 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
14480 "qXfer:auxv:read", "read-aux-vector", 0);
802188a7 14481
c78fa86a
GB
14482 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_exec_file],
14483 "qXfer:exec-file:read", "pid-to-exec-file", 0);
14484
23181151
DJ
14485 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features],
14486 "qXfer:features:read", "target-features", 0);
14487
cfa9d6d9
DJ
14488 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries],
14489 "qXfer:libraries:read", "library-info", 0);
14490
2268b414
JK
14491 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries_svr4],
14492 "qXfer:libraries-svr4:read", "library-info-svr4", 0);
14493
fd79ecee
DJ
14494 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
14495 "qXfer:memory-map:read", "memory-map", 0);
14496
07e059b5
VP
14497 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata],
14498 "qXfer:osdata:read", "osdata", 0);
14499
dc146f7c
VP
14500 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_threads],
14501 "qXfer:threads:read", "threads", 0);
14502
4aa995e1
PA
14503 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read],
14504 "qXfer:siginfo:read", "read-siginfo-object", 0);
14505
14506 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write],
14507 "qXfer:siginfo:write", "write-siginfo-object", 0);
14508
b3b9301e
PA
14509 add_packet_config_cmd
14510 (&remote_protocol_packets[PACKET_qXfer_traceframe_info],
eb9fe518 14511 "qXfer:traceframe-info:read", "traceframe-info", 0);
b3b9301e 14512
169081d0
TG
14513 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_uib],
14514 "qXfer:uib:read", "unwind-info-block", 0);
14515
444abaca 14516 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
38691318 14517 "qGetTLSAddr", "get-thread-local-storage-address",
38691318
KB
14518 0);
14519
711e434b
PM
14520 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTIBAddr],
14521 "qGetTIBAddr", "get-thread-information-block-address",
14522 0);
14523
40ab02ce
MS
14524 add_packet_config_cmd (&remote_protocol_packets[PACKET_bc],
14525 "bc", "reverse-continue", 0);
14526
14527 add_packet_config_cmd (&remote_protocol_packets[PACKET_bs],
14528 "bs", "reverse-step", 0);
14529
be2a5f71
DJ
14530 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
14531 "qSupported", "supported-packets", 0);
14532
08388c79
DE
14533 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory],
14534 "qSearch:memory", "search-memory", 0);
14535
bd3eecc3
PA
14536 add_packet_config_cmd (&remote_protocol_packets[PACKET_qTStatus],
14537 "qTStatus", "trace-status", 0);
14538
15a201c8
GB
14539 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_setfs],
14540 "vFile:setfs", "hostio-setfs", 0);
14541
a6b151f1
DJ
14542 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open],
14543 "vFile:open", "hostio-open", 0);
14544
14545 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread],
14546 "vFile:pread", "hostio-pread", 0);
14547
14548 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite],
14549 "vFile:pwrite", "hostio-pwrite", 0);
14550
14551 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close],
14552 "vFile:close", "hostio-close", 0);
14553
14554 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink],
14555 "vFile:unlink", "hostio-unlink", 0);
14556
b9e7b9c3
UW
14557 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_readlink],
14558 "vFile:readlink", "hostio-readlink", 0);
14559
0a93529c
GB
14560 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_fstat],
14561 "vFile:fstat", "hostio-fstat", 0);
14562
2d717e4f
DJ
14563 add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach],
14564 "vAttach", "attach", 0);
14565
14566 add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun],
14567 "vRun", "run", 0);
14568
a6f3e723
SL
14569 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode],
14570 "QStartNoAckMode", "noack", 0);
14571
82f73884
PA
14572 add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill],
14573 "vKill", "kill", 0);
14574
0b16c5cf
PA
14575 add_packet_config_cmd (&remote_protocol_packets[PACKET_qAttached],
14576 "qAttached", "query-attached", 0);
14577
782b2b07 14578 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalTracepoints],
3e43a32a
MS
14579 "ConditionalTracepoints",
14580 "conditional-tracepoints", 0);
3788aec7
LM
14581
14582 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalBreakpoints],
14583 "ConditionalBreakpoints",
14584 "conditional-breakpoints", 0);
14585
d3ce09f5
SS
14586 add_packet_config_cmd (&remote_protocol_packets[PACKET_BreakpointCommands],
14587 "BreakpointCommands",
14588 "breakpoint-commands", 0);
14589
7a697b8d
SS
14590 add_packet_config_cmd (&remote_protocol_packets[PACKET_FastTracepoints],
14591 "FastTracepoints", "fast-tracepoints", 0);
782b2b07 14592
409873ef
SS
14593 add_packet_config_cmd (&remote_protocol_packets[PACKET_TracepointSource],
14594 "TracepointSource", "TracepointSource", 0);
14595
d914c394
SS
14596 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAllow],
14597 "QAllow", "allow", 0);
14598
0fb4aa4b
PA
14599 add_packet_config_cmd (&remote_protocol_packets[PACKET_StaticTracepoints],
14600 "StaticTracepoints", "static-tracepoints", 0);
14601
1e4d1764
YQ
14602 add_packet_config_cmd (&remote_protocol_packets[PACKET_InstallInTrace],
14603 "InstallInTrace", "install-in-trace", 0);
14604
0fb4aa4b
PA
14605 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_statictrace_read],
14606 "qXfer:statictrace:read", "read-sdata-object", 0);
14607
78d85199
YQ
14608 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_fdpic],
14609 "qXfer:fdpic:read", "read-fdpic-loadmap", 0);
14610
03583c20
UW
14611 add_packet_config_cmd (&remote_protocol_packets[PACKET_QDisableRandomization],
14612 "QDisableRandomization", "disable-randomization", 0);
14613
d1feda86
YQ
14614 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAgent],
14615 "QAgent", "agent", 0);
14616
f6f899bf
HAQ
14617 add_packet_config_cmd (&remote_protocol_packets[PACKET_QTBuffer_size],
14618 "QTBuffer:size", "trace-buffer-size", 0);
14619
9accd112
MM
14620 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_off],
14621 "Qbtrace:off", "disable-btrace", 0);
14622
14623 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_bts],
b20a6524
MM
14624 "Qbtrace:bts", "enable-btrace-bts", 0);
14625
14626 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_pt],
14627 "Qbtrace:pt", "enable-btrace-pt", 0);
9accd112
MM
14628
14629 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace],
14630 "qXfer:btrace", "read-btrace", 0);
14631
f4abbc16
MM
14632 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace_conf],
14633 "qXfer:btrace-conf", "read-btrace-conf", 0);
14634
d33501a5
MM
14635 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_bts_size],
14636 "Qbtrace-conf:bts:size", "btrace-conf-bts-size", 0);
14637
73b8c1fd
PA
14638 add_packet_config_cmd (&remote_protocol_packets[PACKET_multiprocess_feature],
14639 "multiprocess-feature", "multiprocess-feature", 0);
14640
f7e6eed5
PA
14641 add_packet_config_cmd (&remote_protocol_packets[PACKET_swbreak_feature],
14642 "swbreak-feature", "swbreak-feature", 0);
14643
14644 add_packet_config_cmd (&remote_protocol_packets[PACKET_hwbreak_feature],
14645 "hwbreak-feature", "hwbreak-feature", 0);
14646
89245bc0
DB
14647 add_packet_config_cmd (&remote_protocol_packets[PACKET_fork_event_feature],
14648 "fork-event-feature", "fork-event-feature", 0);
14649
14650 add_packet_config_cmd (&remote_protocol_packets[PACKET_vfork_event_feature],
14651 "vfork-event-feature", "vfork-event-feature", 0);
14652
b20a6524
MM
14653 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_pt_size],
14654 "Qbtrace-conf:pt:size", "btrace-conf-pt-size", 0);
14655
750ce8d1
YQ
14656 add_packet_config_cmd (&remote_protocol_packets[PACKET_vContSupported],
14657 "vContSupported", "verbose-resume-supported", 0);
14658
94585166
DB
14659 add_packet_config_cmd (&remote_protocol_packets[PACKET_exec_event_feature],
14660 "exec-event-feature", "exec-event-feature", 0);
14661
de979965
PA
14662 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCtrlC],
14663 "vCtrlC", "ctrl-c", 0);
14664
65706a29
PA
14665 add_packet_config_cmd (&remote_protocol_packets[PACKET_QThreadEvents],
14666 "QThreadEvents", "thread-events", 0);
14667
f2faf941
PA
14668 add_packet_config_cmd (&remote_protocol_packets[PACKET_no_resumed],
14669 "N stop reply", "no-resumed-stop-reply", 0);
14670
0b736949
DB
14671 /* Assert that we've registered "set remote foo-packet" commands
14672 for all packet configs. */
ca4f7f8b
PA
14673 {
14674 int i;
14675
14676 for (i = 0; i < PACKET_MAX; i++)
14677 {
14678 /* Ideally all configs would have a command associated. Some
14679 still don't though. */
14680 int excepted;
14681
14682 switch (i)
14683 {
14684 case PACKET_QNonStop:
ca4f7f8b
PA
14685 case PACKET_EnableDisableTracepoints_feature:
14686 case PACKET_tracenz_feature:
14687 case PACKET_DisconnectedTracing_feature:
14688 case PACKET_augmented_libraries_svr4_read_feature:
936d2992
PA
14689 case PACKET_qCRC:
14690 /* Additions to this list need to be well justified:
14691 pre-existing packets are OK; new packets are not. */
ca4f7f8b
PA
14692 excepted = 1;
14693 break;
14694 default:
14695 excepted = 0;
14696 break;
14697 }
14698
14699 /* This catches both forgetting to add a config command, and
14700 forgetting to remove a packet from the exception list. */
14701 gdb_assert (excepted == (remote_protocol_packets[i].name == NULL));
14702 }
14703 }
14704
37a105a1
DJ
14705 /* Keep the old ``set remote Z-packet ...'' working. Each individual
14706 Z sub-packet has its own set and show commands, but users may
14707 have sets to this variable in their .gdbinit files (or in their
14708 documentation). */
e9e68a56 14709 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
7915a72c 14710 &remote_Z_packet_detect, _("\
590042fc
PW
14711Set use of remote protocol `Z' packets."), _("\
14712Show use of remote protocol `Z' packets."), _("\
3b64bf98 14713When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
7915a72c 14714packets."),
e9e68a56 14715 set_remote_protocol_Z_packet_cmd,
3e43a32a
MS
14716 show_remote_protocol_Z_packet_cmd,
14717 /* FIXME: i18n: Use of remote protocol
14718 `Z' packets is %s. */
e9e68a56 14719 &remote_set_cmdlist, &remote_show_cmdlist);
449092f6 14720
a6b151f1 14721 add_prefix_cmd ("remote", class_files, remote_command, _("\
590042fc 14722Manipulate files on the remote system.\n\
a6b151f1
DJ
14723Transfer files to and from the remote target system."),
14724 &remote_cmdlist, "remote ",
14725 0 /* allow-unknown */, &cmdlist);
14726
14727 add_cmd ("put", class_files, remote_put_command,
14728 _("Copy a local file to the remote system."),
14729 &remote_cmdlist);
14730
14731 add_cmd ("get", class_files, remote_get_command,
14732 _("Copy a remote file to the local system."),
14733 &remote_cmdlist);
14734
14735 add_cmd ("delete", class_files, remote_delete_command,
14736 _("Delete a remote file."),
14737 &remote_cmdlist);
14738
2d717e4f 14739 add_setshow_string_noescape_cmd ("exec-file", class_files,
94585166 14740 &remote_exec_file_var, _("\
590042fc
PW
14741Set the remote pathname for \"run\"."), _("\
14742Show the remote pathname for \"run\"."), NULL,
94585166
DB
14743 set_remote_exec_file,
14744 show_remote_exec_file,
14745 &remote_set_cmdlist,
14746 &remote_show_cmdlist);
2d717e4f 14747
c1e36e3e
PA
14748 add_setshow_boolean_cmd ("range-stepping", class_run,
14749 &use_range_stepping, _("\
14750Enable or disable range stepping."), _("\
14751Show whether target-assisted range stepping is enabled."), _("\
14752If on, and the target supports it, when stepping a source line, GDB\n\
14753tells the target to step the corresponding range of addresses itself instead\n\
14754of issuing multiple single-steps. This speeds up source level\n\
14755stepping. If off, GDB always issues single-steps, even if range\n\
14756stepping is supported by the target. The default is on."),
14757 set_range_stepping,
14758 show_range_stepping,
14759 &setlist,
14760 &showlist);
14761
ed2b7c17
TT
14762 add_setshow_zinteger_cmd ("watchdog", class_maintenance, &watchdog, _("\
14763Set watchdog timer."), _("\
14764Show watchdog timer."), _("\
14765When non-zero, this timeout is used instead of waiting forever for a target\n\
14766to finish a low-level step or continue operation. If the specified amount\n\
14767of time passes without a response from the target, an error occurs."),
14768 NULL,
14769 show_watchdog,
14770 &setlist, &showlist);
14771
6cc8564b
LM
14772 add_setshow_zuinteger_unlimited_cmd ("remote-packet-max-chars", no_class,
14773 &remote_packet_max_chars, _("\
14774Set the maximum number of characters to display for each remote packet."), _("\
14775Show the maximum number of characters to display for each remote packet."), _("\
14776Specify \"unlimited\" to display all the characters."),
14777 NULL, show_remote_packet_max_chars,
14778 &setdebuglist, &showdebuglist);
14779
449092f6
CV
14780 /* Eventually initialize fileio. See fileio.c */
14781 initialize_remote_fileio (remote_set_cmdlist, remote_show_cmdlist);
c906108c 14782}
This page took 3.98133 seconds and 4 git commands to generate.