Change section_offsets to a std::vector
[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{
1271 fprintf_filtered (file, "%s\n", remote_exec_file_var);
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 ();
2370 inferior_appeared (inf, pid);
2371 }
1941c569 2372
0b16c5cf 2373 inf->attach_flag = attached;
49c62f2e 2374 inf->fake_pid_p = fake_pid_p;
0b16c5cf 2375
1b6e6f5c
GB
2376 /* If no main executable is currently open then attempt to
2377 open the file that was executed to create this inferior. */
835205d0 2378 if (try_open_exec && get_exec_file (0) == NULL)
bb805577 2379 exec_file_locate_attach (pid, 0, 1);
1b6e6f5c 2380
1941c569
PA
2381 return inf;
2382}
2383
7aabaf9d 2384static remote_thread_info *get_remote_thread_info (thread_info *thread);
00431a78 2385static remote_thread_info *get_remote_thread_info (ptid_t ptid);
85ad3aaf 2386
1941c569
PA
2387/* Add thread PTID to GDB's thread list. Tag it as executing/running
2388 according to RUNNING. */
2389
00431a78 2390thread_info *
6b8edb51 2391remote_target::remote_add_thread (ptid_t ptid, bool running, bool executing)
c906108c 2392{
b7ea362b 2393 struct remote_state *rs = get_remote_state ();
85ad3aaf 2394 struct thread_info *thread;
b7ea362b
PA
2395
2396 /* GDB historically didn't pull threads in the initial connection
2397 setup. If the remote target doesn't even have a concept of
2398 threads (e.g., a bare-metal target), even if internally we
2399 consider that a single-threaded target, mentioning a new thread
2400 might be confusing to the user. Be silent then, preserving the
2401 age old behavior. */
2402 if (rs->starting_up)
85ad3aaf 2403 thread = add_thread_silent (ptid);
b7ea362b 2404 else
85ad3aaf 2405 thread = add_thread (ptid);
1941c569 2406
7aabaf9d 2407 get_remote_thread_info (thread)->vcont_resumed = executing;
0d5b594f 2408 set_executing (ptid, executing);
1941c569 2409 set_running (ptid, running);
00431a78
PA
2410
2411 return thread;
1941c569
PA
2412}
2413
2414/* Come here when we learn about a thread id from the remote target.
2415 It may be the first time we hear about such thread, so take the
2416 opportunity to add it to GDB's thread list. In case this is the
2417 first time we're noticing its corresponding inferior, add it to
0d5b594f
PA
2418 GDB's inferior list as well. EXECUTING indicates whether the
2419 thread is (internally) executing or stopped. */
1941c569 2420
6b8edb51
PA
2421void
2422remote_target::remote_notice_new_inferior (ptid_t currthread, int executing)
1941c569 2423{
0d5b594f
PA
2424 /* In non-stop mode, we assume new found threads are (externally)
2425 running until proven otherwise with a stop reply. In all-stop,
2426 we can only get here if all threads are stopped. */
2427 int running = target_is_non_stop_p () ? 1 : 0;
2428
c906108c
SS
2429 /* If this is a new thread, add it to GDB's thread list.
2430 If we leave it up to WFI to do this, bad things will happen. */
82f73884 2431
00431a78
PA
2432 thread_info *tp = find_thread_ptid (currthread);
2433 if (tp != NULL && tp->state == THREAD_EXITED)
82f73884
PA
2434 {
2435 /* We're seeing an event on a thread id we knew had exited.
2436 This has to be a new thread reusing the old id. Add it. */
0d5b594f 2437 remote_add_thread (currthread, running, executing);
82f73884
PA
2438 return;
2439 }
2440
79d7f229 2441 if (!in_thread_list (currthread))
c0a2216e 2442 {
1941c569 2443 struct inferior *inf = NULL;
e99b03dc 2444 int pid = currthread.pid ();
1941c569 2445
0e998d96 2446 if (inferior_ptid.is_pid ()
e99b03dc 2447 && pid == inferior_ptid.pid ())
c0a2216e
PA
2448 {
2449 /* inferior_ptid has no thread member yet. This can happen
2450 with the vAttach -> remote_wait,"TAAthread:" path if the
2451 stub doesn't support qC. This is the first stop reported
2452 after an attach, so this is the main thread. Update the
2453 ptid in the thread list. */
f2907e49 2454 if (in_thread_list (ptid_t (pid)))
bad34192
PA
2455 thread_change_ptid (inferior_ptid, currthread);
2456 else
2457 {
0d5b594f 2458 remote_add_thread (currthread, running, executing);
bad34192
PA
2459 inferior_ptid = currthread;
2460 }
dc146f7c 2461 return;
c0a2216e 2462 }
82f73884 2463
d7e15655 2464 if (magic_null_ptid == inferior_ptid)
c0a2216e
PA
2465 {
2466 /* inferior_ptid is not set yet. This can happen with the
2467 vRun -> remote_wait,"TAAthread:" path if the stub
2468 doesn't support qC. This is the first stop reported
2469 after an attach, so this is the main thread. Update the
2470 ptid in the thread list. */
dc146f7c 2471 thread_change_ptid (inferior_ptid, currthread);
82f73884 2472 return;
c0a2216e 2473 }
82f73884 2474
29c87f7f
PA
2475 /* When connecting to a target remote, or to a target
2476 extended-remote which already was debugging an inferior, we
2477 may not know about it yet. Add it before adding its child
2478 thread, so notifications are emitted in a sensible order. */
e99b03dc 2479 if (find_inferior_pid (currthread.pid ()) == NULL)
49c62f2e
PA
2480 {
2481 struct remote_state *rs = get_remote_state ();
9ab8741a 2482 bool fake_pid_p = !remote_multi_process_p (rs);
49c62f2e
PA
2483
2484 inf = remote_add_inferior (fake_pid_p,
e99b03dc 2485 currthread.pid (), -1, 1);
49c62f2e 2486 }
29c87f7f 2487
82f73884 2488 /* This is really a new thread. Add it. */
00431a78
PA
2489 thread_info *new_thr
2490 = remote_add_thread (currthread, running, executing);
1941c569
PA
2491
2492 /* If we found a new inferior, let the common code do whatever
2493 it needs to with it (e.g., read shared libraries, insert
b7ea362b
PA
2494 breakpoints), unless we're just setting up an all-stop
2495 connection. */
1941c569 2496 if (inf != NULL)
b7ea362b
PA
2497 {
2498 struct remote_state *rs = get_remote_state ();
2499
6efcd9a8 2500 if (!rs->starting_up)
00431a78 2501 notice_new_inferior (new_thr, executing, 0);
b7ea362b 2502 }
c0a2216e 2503 }
c906108c
SS
2504}
2505
85ad3aaf 2506/* Return THREAD's private thread data, creating it if necessary. */
dc146f7c 2507
7aabaf9d
SM
2508static remote_thread_info *
2509get_remote_thread_info (thread_info *thread)
dc146f7c 2510{
85ad3aaf 2511 gdb_assert (thread != NULL);
dc146f7c 2512
85ad3aaf 2513 if (thread->priv == NULL)
7aabaf9d 2514 thread->priv.reset (new remote_thread_info);
dc146f7c 2515
7aabaf9d 2516 return static_cast<remote_thread_info *> (thread->priv.get ());
85ad3aaf
PA
2517}
2518
7aabaf9d
SM
2519static remote_thread_info *
2520get_remote_thread_info (ptid_t ptid)
85ad3aaf 2521{
00431a78
PA
2522 thread_info *thr = find_thread_ptid (ptid);
2523 return get_remote_thread_info (thr);
dc146f7c
VP
2524}
2525
74531fed
PA
2526/* Call this function as a result of
2527 1) A halt indication (T packet) containing a thread id
2528 2) A direct query of currthread
0df8b418 2529 3) Successful execution of set thread */
74531fed
PA
2530
2531static void
47f8a51d 2532record_currthread (struct remote_state *rs, ptid_t currthread)
74531fed 2533{
47f8a51d 2534 rs->general_thread = currthread;
74531fed
PA
2535}
2536
89be2091
DJ
2537/* If 'QPassSignals' is supported, tell the remote stub what signals
2538 it can simply pass through to the inferior without reporting. */
2539
f6ac5f3d 2540void
adc6a863 2541remote_target::pass_signals (gdb::array_view<const unsigned char> pass_signals)
89be2091 2542{
4082afcc 2543 if (packet_support (PACKET_QPassSignals) != PACKET_DISABLE)
89be2091
DJ
2544 {
2545 char *pass_packet, *p;
adc6a863 2546 int count = 0;
747dc59d 2547 struct remote_state *rs = get_remote_state ();
89be2091 2548
adc6a863
PA
2549 gdb_assert (pass_signals.size () < 256);
2550 for (size_t i = 0; i < pass_signals.size (); i++)
89be2091 2551 {
2455069d 2552 if (pass_signals[i])
89be2091
DJ
2553 count++;
2554 }
224c3ddb 2555 pass_packet = (char *) xmalloc (count * 3 + strlen ("QPassSignals:") + 1);
89be2091
DJ
2556 strcpy (pass_packet, "QPassSignals:");
2557 p = pass_packet + strlen (pass_packet);
adc6a863 2558 for (size_t i = 0; i < pass_signals.size (); i++)
89be2091 2559 {
2455069d 2560 if (pass_signals[i])
89be2091
DJ
2561 {
2562 if (i >= 16)
2563 *p++ = tohex (i >> 4);
2564 *p++ = tohex (i & 15);
2565 if (count)
2566 *p++ = ';';
2567 else
2568 break;
2569 count--;
2570 }
2571 }
2572 *p = 0;
747dc59d 2573 if (!rs->last_pass_packet || strcmp (rs->last_pass_packet, pass_packet))
89be2091 2574 {
89be2091 2575 putpkt (pass_packet);
8d64371b 2576 getpkt (&rs->buf, 0);
8dc5b319 2577 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QPassSignals]);
747dc59d
TT
2578 if (rs->last_pass_packet)
2579 xfree (rs->last_pass_packet);
2580 rs->last_pass_packet = pass_packet;
89be2091
DJ
2581 }
2582 else
2583 xfree (pass_packet);
2584 }
2585}
2586
82075af2
JS
2587/* If 'QCatchSyscalls' is supported, tell the remote stub
2588 to report syscalls to GDB. */
2589
f6ac5f3d
PA
2590int
2591remote_target::set_syscall_catchpoint (int pid, bool needed, int any_count,
2592 gdb::array_view<const int> syscall_counts)
82075af2 2593{
b80406ac 2594 const char *catch_packet;
82075af2
JS
2595 enum packet_result result;
2596 int n_sysno = 0;
2597
2598 if (packet_support (PACKET_QCatchSyscalls) == PACKET_DISABLE)
2599 {
2600 /* Not supported. */
2601 return 1;
2602 }
2603
649a140c 2604 if (needed && any_count == 0)
82075af2 2605 {
649a140c
PA
2606 /* Count how many syscalls are to be caught. */
2607 for (size_t i = 0; i < syscall_counts.size (); i++)
82075af2 2608 {
649a140c 2609 if (syscall_counts[i] != 0)
82075af2
JS
2610 n_sysno++;
2611 }
2612 }
2613
2614 if (remote_debug)
2615 {
2616 fprintf_unfiltered (gdb_stdlog,
2617 "remote_set_syscall_catchpoint "
2618 "pid %d needed %d any_count %d n_sysno %d\n",
2619 pid, needed, any_count, n_sysno);
2620 }
2621
1b81856f 2622 std::string built_packet;
82075af2
JS
2623 if (needed)
2624 {
2625 /* Prepare a packet with the sysno list, assuming max 8+1
2626 characters for a sysno. If the resulting packet size is too
2627 big, fallback on the non-selective packet. */
2628 const int maxpktsz = strlen ("QCatchSyscalls:1") + n_sysno * 9 + 1;
1b81856f
PA
2629 built_packet.reserve (maxpktsz);
2630 built_packet = "QCatchSyscalls:1";
649a140c 2631 if (any_count == 0)
82075af2 2632 {
649a140c
PA
2633 /* Add in each syscall to be caught. */
2634 for (size_t i = 0; i < syscall_counts.size (); i++)
82075af2 2635 {
649a140c
PA
2636 if (syscall_counts[i] != 0)
2637 string_appendf (built_packet, ";%zx", i);
82075af2
JS
2638 }
2639 }
1b81856f 2640 if (built_packet.size () > get_remote_packet_size ())
82075af2
JS
2641 {
2642 /* catch_packet too big. Fallback to less efficient
2643 non selective mode, with GDB doing the filtering. */
b80406ac 2644 catch_packet = "QCatchSyscalls:1";
82075af2 2645 }
b80406ac 2646 else
1b81856f 2647 catch_packet = built_packet.c_str ();
82075af2
JS
2648 }
2649 else
b80406ac 2650 catch_packet = "QCatchSyscalls:0";
82075af2 2651
b80406ac 2652 struct remote_state *rs = get_remote_state ();
82075af2 2653
b80406ac 2654 putpkt (catch_packet);
8d64371b 2655 getpkt (&rs->buf, 0);
b80406ac
TT
2656 result = packet_ok (rs->buf, &remote_protocol_packets[PACKET_QCatchSyscalls]);
2657 if (result == PACKET_OK)
2658 return 0;
2659 else
2660 return -1;
82075af2
JS
2661}
2662
9b224c5e
PA
2663/* If 'QProgramSignals' is supported, tell the remote stub what
2664 signals it should pass through to the inferior when detaching. */
2665
f6ac5f3d 2666void
adc6a863 2667remote_target::program_signals (gdb::array_view<const unsigned char> signals)
9b224c5e 2668{
4082afcc 2669 if (packet_support (PACKET_QProgramSignals) != PACKET_DISABLE)
9b224c5e
PA
2670 {
2671 char *packet, *p;
adc6a863 2672 int count = 0;
5e4a05c4 2673 struct remote_state *rs = get_remote_state ();
9b224c5e 2674
adc6a863
PA
2675 gdb_assert (signals.size () < 256);
2676 for (size_t i = 0; i < signals.size (); i++)
9b224c5e
PA
2677 {
2678 if (signals[i])
2679 count++;
2680 }
224c3ddb 2681 packet = (char *) xmalloc (count * 3 + strlen ("QProgramSignals:") + 1);
9b224c5e
PA
2682 strcpy (packet, "QProgramSignals:");
2683 p = packet + strlen (packet);
adc6a863 2684 for (size_t i = 0; i < signals.size (); i++)
9b224c5e
PA
2685 {
2686 if (signal_pass_state (i))
2687 {
2688 if (i >= 16)
2689 *p++ = tohex (i >> 4);
2690 *p++ = tohex (i & 15);
2691 if (count)
2692 *p++ = ';';
2693 else
2694 break;
2695 count--;
2696 }
2697 }
2698 *p = 0;
5e4a05c4
TT
2699 if (!rs->last_program_signals_packet
2700 || strcmp (rs->last_program_signals_packet, packet) != 0)
9b224c5e 2701 {
9b224c5e 2702 putpkt (packet);
8d64371b 2703 getpkt (&rs->buf, 0);
8dc5b319 2704 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QProgramSignals]);
5e4a05c4
TT
2705 xfree (rs->last_program_signals_packet);
2706 rs->last_program_signals_packet = packet;
9b224c5e
PA
2707 }
2708 else
2709 xfree (packet);
2710 }
2711}
2712
79d7f229
PA
2713/* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
2714 MINUS_ONE_PTID, set the thread to -1, so the stub returns the
2715 thread. If GEN is set, set the general thread, if not, then set
2716 the step/continue thread. */
6b8edb51
PA
2717void
2718remote_target::set_thread (ptid_t ptid, int gen)
c906108c 2719{
d01949b6 2720 struct remote_state *rs = get_remote_state ();
47f8a51d 2721 ptid_t state = gen ? rs->general_thread : rs->continue_thread;
8d64371b
TT
2722 char *buf = rs->buf.data ();
2723 char *endbuf = buf + get_remote_packet_size ();
c906108c 2724
d7e15655 2725 if (state == ptid)
c906108c
SS
2726 return;
2727
79d7f229
PA
2728 *buf++ = 'H';
2729 *buf++ = gen ? 'g' : 'c';
d7e15655 2730 if (ptid == magic_null_ptid)
79d7f229 2731 xsnprintf (buf, endbuf - buf, "0");
d7e15655 2732 else if (ptid == any_thread_ptid)
79d7f229 2733 xsnprintf (buf, endbuf - buf, "0");
d7e15655 2734 else if (ptid == minus_one_ptid)
79d7f229
PA
2735 xsnprintf (buf, endbuf - buf, "-1");
2736 else
82f73884 2737 write_ptid (buf, endbuf, ptid);
79d7f229 2738 putpkt (rs->buf);
8d64371b 2739 getpkt (&rs->buf, 0);
c906108c 2740 if (gen)
47f8a51d 2741 rs->general_thread = ptid;
c906108c 2742 else
47f8a51d 2743 rs->continue_thread = ptid;
c906108c 2744}
79d7f229 2745
6b8edb51
PA
2746void
2747remote_target::set_general_thread (ptid_t ptid)
79d7f229
PA
2748{
2749 set_thread (ptid, 1);
2750}
2751
6b8edb51
PA
2752void
2753remote_target::set_continue_thread (ptid_t ptid)
79d7f229
PA
2754{
2755 set_thread (ptid, 0);
2756}
2757
3c9c4b83
PA
2758/* Change the remote current process. Which thread within the process
2759 ends up selected isn't important, as long as it is the same process
2760 as what INFERIOR_PTID points to.
2761
2762 This comes from that fact that there is no explicit notion of
2763 "selected process" in the protocol. The selected process for
2764 general operations is the process the selected general thread
2765 belongs to. */
2766
6b8edb51
PA
2767void
2768remote_target::set_general_process ()
3c9c4b83
PA
2769{
2770 struct remote_state *rs = get_remote_state ();
2771
2772 /* If the remote can't handle multiple processes, don't bother. */
8020350c 2773 if (!remote_multi_process_p (rs))
3c9c4b83
PA
2774 return;
2775
2776 /* We only need to change the remote current thread if it's pointing
2777 at some other process. */
e99b03dc 2778 if (rs->general_thread.pid () != inferior_ptid.pid ())
3c9c4b83
PA
2779 set_general_thread (inferior_ptid);
2780}
2781
c906108c 2782\f
7d1a114c
PA
2783/* Return nonzero if this is the main thread that we made up ourselves
2784 to model non-threaded targets as single-threaded. */
c906108c
SS
2785
2786static int
f6ac5f3d 2787remote_thread_always_alive (ptid_t ptid)
c906108c 2788{
d7e15655 2789 if (ptid == magic_null_ptid)
c0a2216e
PA
2790 /* The main thread is always alive. */
2791 return 1;
2792
e38504b3 2793 if (ptid.pid () != 0 && ptid.lwp () == 0)
c0a2216e
PA
2794 /* The main thread is always alive. This can happen after a
2795 vAttach, if the remote side doesn't support
2796 multi-threading. */
2797 return 1;
2798
7d1a114c
PA
2799 return 0;
2800}
2801
2802/* Return nonzero if the thread PTID is still alive on the remote
2803 system. */
2804
57810aa7 2805bool
f6ac5f3d 2806remote_target::thread_alive (ptid_t ptid)
7d1a114c
PA
2807{
2808 struct remote_state *rs = get_remote_state ();
2809 char *p, *endp;
2810
2811 /* Check if this is a thread that we made up ourselves to model
2812 non-threaded targets as single-threaded. */
f6ac5f3d 2813 if (remote_thread_always_alive (ptid))
7d1a114c
PA
2814 return 1;
2815
8d64371b
TT
2816 p = rs->buf.data ();
2817 endp = p + get_remote_packet_size ();
82f73884
PA
2818
2819 *p++ = 'T';
2820 write_ptid (p, endp, ptid);
2821
2e9f7625 2822 putpkt (rs->buf);
8d64371b 2823 getpkt (&rs->buf, 0);
2e9f7625 2824 return (rs->buf[0] == 'O' && rs->buf[1] == 'K');
c906108c
SS
2825}
2826
79efa585
SM
2827/* Return a pointer to a thread name if we know it and NULL otherwise.
2828 The thread_info object owns the memory for the name. */
2829
f6ac5f3d
PA
2830const char *
2831remote_target::thread_name (struct thread_info *info)
79efa585
SM
2832{
2833 if (info->priv != NULL)
a9334058
SM
2834 {
2835 const std::string &name = get_remote_thread_info (info)->name;
2836 return !name.empty () ? name.c_str () : NULL;
2837 }
79efa585
SM
2838
2839 return NULL;
2840}
2841
c906108c
SS
2842/* About these extended threadlist and threadinfo packets. They are
2843 variable length packets but, the fields within them are often fixed
30baf67b 2844 length. They are redundant enough to send over UDP as is the
c906108c
SS
2845 remote protocol in general. There is a matching unit test module
2846 in libstub. */
2847
23860348 2848/* WARNING: This threadref data structure comes from the remote O.S.,
0df8b418 2849 libstub protocol encoding, and remote.c. It is not particularly
23860348 2850 changable. */
cce74817
JM
2851
2852/* Right now, the internal structure is int. We want it to be bigger.
0df8b418 2853 Plan to fix this. */
cce74817 2854
23860348 2855typedef int gdb_threadref; /* Internal GDB thread reference. */
cce74817 2856
9d1f7ab2 2857/* gdb_ext_thread_info is an internal GDB data structure which is
cfde0993 2858 equivalent to the reply of the remote threadinfo packet. */
cce74817
JM
2859
2860struct gdb_ext_thread_info
c5aa993b 2861 {
23860348 2862 threadref threadid; /* External form of thread reference. */
2bc416ba 2863 int active; /* Has state interesting to GDB?
23860348 2864 regs, stack. */
2bc416ba 2865 char display[256]; /* Brief state display, name,
cedea757 2866 blocked/suspended. */
23860348 2867 char shortname[32]; /* To be used to name threads. */
2bc416ba 2868 char more_display[256]; /* Long info, statistics, queue depth,
23860348 2869 whatever. */
c5aa993b 2870 };
cce74817
JM
2871
2872/* The volume of remote transfers can be limited by submitting
2873 a mask containing bits specifying the desired information.
2874 Use a union of these values as the 'selection' parameter to
0df8b418 2875 get_thread_info. FIXME: Make these TAG names more thread specific. */
cce74817
JM
2876
2877#define TAG_THREADID 1
2878#define TAG_EXISTS 2
2879#define TAG_DISPLAY 4
2880#define TAG_THREADNAME 8
c5aa993b 2881#define TAG_MOREDISPLAY 16
cce74817 2882
23860348 2883#define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
c906108c 2884
a14ed312 2885static char *unpack_nibble (char *buf, int *val);
cce74817 2886
a14ed312 2887static char *unpack_byte (char *buf, int *value);
cce74817 2888
a14ed312 2889static char *pack_int (char *buf, int value);
cce74817 2890
a14ed312 2891static char *unpack_int (char *buf, int *value);
cce74817 2892
a14ed312 2893static char *unpack_string (char *src, char *dest, int length);
cce74817 2894
23860348 2895static char *pack_threadid (char *pkt, threadref *id);
cce74817 2896
23860348 2897static char *unpack_threadid (char *inbuf, threadref *id);
cce74817 2898
23860348 2899void int_to_threadref (threadref *id, int value);
cce74817 2900
23860348 2901static int threadref_to_int (threadref *ref);
cce74817 2902
23860348 2903static void copy_threadref (threadref *dest, threadref *src);
cce74817 2904
23860348 2905static int threadmatch (threadref *dest, threadref *src);
cce74817 2906
2bc416ba 2907static char *pack_threadinfo_request (char *pkt, int mode,
23860348 2908 threadref *id);
cce74817 2909
a14ed312
KB
2910static char *pack_threadlist_request (char *pkt, int startflag,
2911 int threadcount,
23860348 2912 threadref *nextthread);
cce74817 2913
23860348 2914static int remote_newthread_step (threadref *ref, void *context);
cce74817 2915
82f73884
PA
2916
2917/* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the
2918 buffer we're allowed to write to. Returns
2919 BUF+CHARACTERS_WRITTEN. */
2920
6b8edb51
PA
2921char *
2922remote_target::write_ptid (char *buf, const char *endbuf, ptid_t ptid)
82f73884
PA
2923{
2924 int pid, tid;
2925 struct remote_state *rs = get_remote_state ();
2926
2927 if (remote_multi_process_p (rs))
2928 {
e99b03dc 2929 pid = ptid.pid ();
82f73884
PA
2930 if (pid < 0)
2931 buf += xsnprintf (buf, endbuf - buf, "p-%x.", -pid);
2932 else
2933 buf += xsnprintf (buf, endbuf - buf, "p%x.", pid);
2934 }
e38504b3 2935 tid = ptid.lwp ();
82f73884
PA
2936 if (tid < 0)
2937 buf += xsnprintf (buf, endbuf - buf, "-%x", -tid);
2938 else
2939 buf += xsnprintf (buf, endbuf - buf, "%x", tid);
2940
2941 return buf;
2942}
2943
256642e8
PA
2944/* Extract a PTID from BUF. If non-null, OBUF is set to one past the
2945 last parsed char. Returns null_ptid if no thread id is found, and
2946 throws an error if the thread id has an invalid format. */
82f73884
PA
2947
2948static ptid_t
256642e8 2949read_ptid (const char *buf, const char **obuf)
82f73884 2950{
256642e8
PA
2951 const char *p = buf;
2952 const char *pp;
82f73884 2953 ULONGEST pid = 0, tid = 0;
82f73884
PA
2954
2955 if (*p == 'p')
2956 {
2957 /* Multi-process ptid. */
2958 pp = unpack_varlen_hex (p + 1, &pid);
2959 if (*pp != '.')
b37520b6 2960 error (_("invalid remote ptid: %s"), p);
82f73884
PA
2961
2962 p = pp;
2963 pp = unpack_varlen_hex (p + 1, &tid);
2964 if (obuf)
2965 *obuf = pp;
fd79271b 2966 return ptid_t (pid, tid, 0);
82f73884
PA
2967 }
2968
2969 /* No multi-process. Just a tid. */
2970 pp = unpack_varlen_hex (p, &tid);
2971
c9f35b34
KB
2972 /* Return null_ptid when no thread id is found. */
2973 if (p == pp)
2974 {
2975 if (obuf)
2976 *obuf = pp;
2977 return null_ptid;
2978 }
2979
82f73884 2980 /* Since the stub is not sending a process id, then default to
ca19bf23
PA
2981 what's in inferior_ptid, unless it's null at this point. If so,
2982 then since there's no way to know the pid of the reported
2983 threads, use the magic number. */
d7e15655 2984 if (inferior_ptid == null_ptid)
e99b03dc 2985 pid = magic_null_ptid.pid ();
ca19bf23 2986 else
e99b03dc 2987 pid = inferior_ptid.pid ();
82f73884
PA
2988
2989 if (obuf)
2990 *obuf = pp;
fd79271b 2991 return ptid_t (pid, tid, 0);
82f73884
PA
2992}
2993
c906108c 2994static int
fba45db2 2995stubhex (int ch)
c906108c
SS
2996{
2997 if (ch >= 'a' && ch <= 'f')
2998 return ch - 'a' + 10;
2999 if (ch >= '0' && ch <= '9')
3000 return ch - '0';
3001 if (ch >= 'A' && ch <= 'F')
3002 return ch - 'A' + 10;
3003 return -1;
3004}
3005
3006static int
fba45db2 3007stub_unpack_int (char *buff, int fieldlength)
c906108c
SS
3008{
3009 int nibble;
3010 int retval = 0;
3011
3012 while (fieldlength)
3013 {
3014 nibble = stubhex (*buff++);
3015 retval |= nibble;
3016 fieldlength--;
3017 if (fieldlength)
3018 retval = retval << 4;
3019 }
3020 return retval;
3021}
3022
c906108c 3023static char *
fba45db2 3024unpack_nibble (char *buf, int *val)
c906108c 3025{
b7589f7d 3026 *val = fromhex (*buf++);
c906108c
SS
3027 return buf;
3028}
3029
c906108c 3030static char *
fba45db2 3031unpack_byte (char *buf, int *value)
c906108c
SS
3032{
3033 *value = stub_unpack_int (buf, 2);
3034 return buf + 2;
3035}
3036
3037static char *
fba45db2 3038pack_int (char *buf, int value)
c906108c
SS
3039{
3040 buf = pack_hex_byte (buf, (value >> 24) & 0xff);
3041 buf = pack_hex_byte (buf, (value >> 16) & 0xff);
3042 buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
3043 buf = pack_hex_byte (buf, (value & 0xff));
3044 return buf;
3045}
3046
3047static char *
fba45db2 3048unpack_int (char *buf, int *value)
c906108c
SS
3049{
3050 *value = stub_unpack_int (buf, 8);
3051 return buf + 8;
3052}
3053
23860348 3054#if 0 /* Currently unused, uncomment when needed. */
a14ed312 3055static char *pack_string (char *pkt, char *string);
c906108c
SS
3056
3057static char *
fba45db2 3058pack_string (char *pkt, char *string)
c906108c
SS
3059{
3060 char ch;
3061 int len;
3062
3063 len = strlen (string);
3064 if (len > 200)
23860348 3065 len = 200; /* Bigger than most GDB packets, junk??? */
c906108c
SS
3066 pkt = pack_hex_byte (pkt, len);
3067 while (len-- > 0)
3068 {
3069 ch = *string++;
3070 if ((ch == '\0') || (ch == '#'))
23860348 3071 ch = '*'; /* Protect encapsulation. */
c906108c
SS
3072 *pkt++ = ch;
3073 }
3074 return pkt;
3075}
3076#endif /* 0 (unused) */
3077
3078static char *
fba45db2 3079unpack_string (char *src, char *dest, int length)
c906108c
SS
3080{
3081 while (length--)
3082 *dest++ = *src++;
3083 *dest = '\0';
3084 return src;
3085}
3086
3087static char *
fba45db2 3088pack_threadid (char *pkt, threadref *id)
c906108c
SS
3089{
3090 char *limit;
3091 unsigned char *altid;
3092
3093 altid = (unsigned char *) id;
3094 limit = pkt + BUF_THREAD_ID_SIZE;
3095 while (pkt < limit)
3096 pkt = pack_hex_byte (pkt, *altid++);
3097 return pkt;
3098}
3099
3100
3101static char *
fba45db2 3102unpack_threadid (char *inbuf, threadref *id)
c906108c
SS
3103{
3104 char *altref;
3105 char *limit = inbuf + BUF_THREAD_ID_SIZE;
3106 int x, y;
3107
3108 altref = (char *) id;
3109
3110 while (inbuf < limit)
3111 {
3112 x = stubhex (*inbuf++);
3113 y = stubhex (*inbuf++);
3114 *altref++ = (x << 4) | y;
3115 }
3116 return inbuf;
3117}
3118
3119/* Externally, threadrefs are 64 bits but internally, they are still
0df8b418 3120 ints. This is due to a mismatch of specifications. We would like
c906108c
SS
3121 to use 64bit thread references internally. This is an adapter
3122 function. */
3123
3124void
fba45db2 3125int_to_threadref (threadref *id, int value)
c906108c
SS
3126{
3127 unsigned char *scan;
3128
3129 scan = (unsigned char *) id;
3130 {
3131 int i = 4;
3132 while (i--)
3133 *scan++ = 0;
3134 }
3135 *scan++ = (value >> 24) & 0xff;
3136 *scan++ = (value >> 16) & 0xff;
3137 *scan++ = (value >> 8) & 0xff;
3138 *scan++ = (value & 0xff);
3139}
3140
3141static int
fba45db2 3142threadref_to_int (threadref *ref)
c906108c
SS
3143{
3144 int i, value = 0;
3145 unsigned char *scan;
3146
cfd77fa1 3147 scan = *ref;
c906108c
SS
3148 scan += 4;
3149 i = 4;
3150 while (i-- > 0)
3151 value = (value << 8) | ((*scan++) & 0xff);
3152 return value;
3153}
3154
3155static void
fba45db2 3156copy_threadref (threadref *dest, threadref *src)
c906108c
SS
3157{
3158 int i;
3159 unsigned char *csrc, *cdest;
3160
3161 csrc = (unsigned char *) src;
3162 cdest = (unsigned char *) dest;
3163 i = 8;
3164 while (i--)
3165 *cdest++ = *csrc++;
3166}
3167
3168static int
fba45db2 3169threadmatch (threadref *dest, threadref *src)
c906108c 3170{
23860348 3171 /* Things are broken right now, so just assume we got a match. */
c906108c
SS
3172#if 0
3173 unsigned char *srcp, *destp;
3174 int i, result;
3175 srcp = (char *) src;
3176 destp = (char *) dest;
3177
3178 result = 1;
3179 while (i-- > 0)
3180 result &= (*srcp++ == *destp++) ? 1 : 0;
3181 return result;
3182#endif
3183 return 1;
3184}
3185
3186/*
c5aa993b
JM
3187 threadid:1, # always request threadid
3188 context_exists:2,
3189 display:4,
3190 unique_name:8,
3191 more_display:16
3192 */
c906108c
SS
3193
3194/* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
3195
3196static char *
fba45db2 3197pack_threadinfo_request (char *pkt, int mode, threadref *id)
c906108c 3198{
23860348
MS
3199 *pkt++ = 'q'; /* Info Query */
3200 *pkt++ = 'P'; /* process or thread info */
3201 pkt = pack_int (pkt, mode); /* mode */
c906108c 3202 pkt = pack_threadid (pkt, id); /* threadid */
23860348 3203 *pkt = '\0'; /* terminate */
c906108c
SS
3204 return pkt;
3205}
3206
23860348 3207/* These values tag the fields in a thread info response packet. */
c906108c 3208/* Tagging the fields allows us to request specific fields and to
23860348 3209 add more fields as time goes by. */
c906108c 3210
23860348 3211#define TAG_THREADID 1 /* Echo the thread identifier. */
c5aa993b 3212#define TAG_EXISTS 2 /* Is this process defined enough to
23860348 3213 fetch registers and its stack? */
c5aa993b 3214#define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
23860348 3215#define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
802188a7 3216#define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
23860348 3217 the process. */
c906108c 3218
6b8edb51
PA
3219int
3220remote_target::remote_unpack_thread_info_response (char *pkt,
3221 threadref *expectedref,
3222 gdb_ext_thread_info *info)
c906108c 3223{
d01949b6 3224 struct remote_state *rs = get_remote_state ();
c906108c 3225 int mask, length;
cfd77fa1 3226 int tag;
c906108c 3227 threadref ref;
8d64371b 3228 char *limit = pkt + rs->buf.size (); /* Plausible parsing limit. */
c906108c
SS
3229 int retval = 1;
3230
23860348 3231 /* info->threadid = 0; FIXME: implement zero_threadref. */
c906108c
SS
3232 info->active = 0;
3233 info->display[0] = '\0';
3234 info->shortname[0] = '\0';
3235 info->more_display[0] = '\0';
3236
23860348
MS
3237 /* Assume the characters indicating the packet type have been
3238 stripped. */
c906108c
SS
3239 pkt = unpack_int (pkt, &mask); /* arg mask */
3240 pkt = unpack_threadid (pkt, &ref);
3241
3242 if (mask == 0)
8a3fe4f8 3243 warning (_("Incomplete response to threadinfo request."));
c906108c 3244 if (!threadmatch (&ref, expectedref))
23860348 3245 { /* This is an answer to a different request. */
8a3fe4f8 3246 warning (_("ERROR RMT Thread info mismatch."));
c906108c
SS
3247 return 0;
3248 }
3249 copy_threadref (&info->threadid, &ref);
3250
405feb71 3251 /* Loop on tagged fields , try to bail if something goes wrong. */
c906108c 3252
23860348
MS
3253 /* Packets are terminated with nulls. */
3254 while ((pkt < limit) && mask && *pkt)
c906108c
SS
3255 {
3256 pkt = unpack_int (pkt, &tag); /* tag */
23860348
MS
3257 pkt = unpack_byte (pkt, &length); /* length */
3258 if (!(tag & mask)) /* Tags out of synch with mask. */
c906108c 3259 {
8a3fe4f8 3260 warning (_("ERROR RMT: threadinfo tag mismatch."));
c906108c
SS
3261 retval = 0;
3262 break;
3263 }
3264 if (tag == TAG_THREADID)
3265 {
3266 if (length != 16)
3267 {
8a3fe4f8 3268 warning (_("ERROR RMT: length of threadid is not 16."));
c906108c
SS
3269 retval = 0;
3270 break;
3271 }
3272 pkt = unpack_threadid (pkt, &ref);
3273 mask = mask & ~TAG_THREADID;
3274 continue;
3275 }
3276 if (tag == TAG_EXISTS)
3277 {
3278 info->active = stub_unpack_int (pkt, length);
3279 pkt += length;
3280 mask = mask & ~(TAG_EXISTS);
3281 if (length > 8)
3282 {
8a3fe4f8 3283 warning (_("ERROR RMT: 'exists' length too long."));
c906108c
SS
3284 retval = 0;
3285 break;
3286 }
3287 continue;
3288 }
3289 if (tag == TAG_THREADNAME)
3290 {
3291 pkt = unpack_string (pkt, &info->shortname[0], length);
3292 mask = mask & ~TAG_THREADNAME;
3293 continue;
3294 }
3295 if (tag == TAG_DISPLAY)
3296 {
3297 pkt = unpack_string (pkt, &info->display[0], length);
3298 mask = mask & ~TAG_DISPLAY;
3299 continue;
3300 }
3301 if (tag == TAG_MOREDISPLAY)
3302 {
3303 pkt = unpack_string (pkt, &info->more_display[0], length);
3304 mask = mask & ~TAG_MOREDISPLAY;
3305 continue;
3306 }
8a3fe4f8 3307 warning (_("ERROR RMT: unknown thread info tag."));
23860348 3308 break; /* Not a tag we know about. */
c906108c
SS
3309 }
3310 return retval;
3311}
3312
6b8edb51
PA
3313int
3314remote_target::remote_get_threadinfo (threadref *threadid,
3315 int fieldset,
3316 gdb_ext_thread_info *info)
c906108c 3317{
d01949b6 3318 struct remote_state *rs = get_remote_state ();
c906108c 3319 int result;
c906108c 3320
8d64371b 3321 pack_threadinfo_request (rs->buf.data (), fieldset, threadid);
2e9f7625 3322 putpkt (rs->buf);
8d64371b 3323 getpkt (&rs->buf, 0);
3084dd77
PA
3324
3325 if (rs->buf[0] == '\0')
3326 return 0;
3327
8d64371b 3328 result = remote_unpack_thread_info_response (&rs->buf[2],
23860348 3329 threadid, info);
c906108c
SS
3330 return result;
3331}
3332
c906108c
SS
3333/* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
3334
3335static char *
fba45db2
KB
3336pack_threadlist_request (char *pkt, int startflag, int threadcount,
3337 threadref *nextthread)
c906108c
SS
3338{
3339 *pkt++ = 'q'; /* info query packet */
3340 *pkt++ = 'L'; /* Process LIST or threadLIST request */
23860348 3341 pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */
c906108c
SS
3342 pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */
3343 pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */
3344 *pkt = '\0';
3345 return pkt;
3346}
3347
3348/* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
3349
6b8edb51
PA
3350int
3351remote_target::parse_threadlist_response (char *pkt, int result_limit,
3352 threadref *original_echo,
3353 threadref *resultlist,
3354 int *doneflag)
c906108c 3355{
d01949b6 3356 struct remote_state *rs = get_remote_state ();
c906108c
SS
3357 char *limit;
3358 int count, resultcount, done;
3359
3360 resultcount = 0;
3361 /* Assume the 'q' and 'M chars have been stripped. */
8d64371b 3362 limit = pkt + (rs->buf.size () - BUF_THREAD_ID_SIZE);
23860348 3363 /* done parse past here */
c906108c
SS
3364 pkt = unpack_byte (pkt, &count); /* count field */
3365 pkt = unpack_nibble (pkt, &done);
3366 /* The first threadid is the argument threadid. */
3367 pkt = unpack_threadid (pkt, original_echo); /* should match query packet */
3368 while ((count-- > 0) && (pkt < limit))
3369 {
3370 pkt = unpack_threadid (pkt, resultlist++);
3371 if (resultcount++ >= result_limit)
3372 break;
3373 }
3374 if (doneflag)
3375 *doneflag = done;
3376 return resultcount;
3377}
3378
6dc54d91
PA
3379/* Fetch the next batch of threads from the remote. Returns -1 if the
3380 qL packet is not supported, 0 on error and 1 on success. */
3381
6b8edb51
PA
3382int
3383remote_target::remote_get_threadlist (int startflag, threadref *nextthread,
3384 int result_limit, int *done, int *result_count,
3385 threadref *threadlist)
c906108c 3386{
d01949b6 3387 struct remote_state *rs = get_remote_state ();
c906108c
SS
3388 int result = 1;
3389
405feb71 3390 /* Truncate result limit to be smaller than the packet size. */
3e43a32a
MS
3391 if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10)
3392 >= get_remote_packet_size ())
ea9c271d 3393 result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2;
c906108c 3394
8d64371b
TT
3395 pack_threadlist_request (rs->buf.data (), startflag, result_limit,
3396 nextthread);
6d820c5c 3397 putpkt (rs->buf);
8d64371b
TT
3398 getpkt (&rs->buf, 0);
3399 if (rs->buf[0] == '\0')
6dc54d91
PA
3400 {
3401 /* Packet not supported. */
3402 return -1;
3403 }
3404
3405 *result_count =
8d64371b 3406 parse_threadlist_response (&rs->buf[2], result_limit,
6dc54d91 3407 &rs->echo_nextthread, threadlist, done);
c906108c 3408
0d031856 3409 if (!threadmatch (&rs->echo_nextthread, nextthread))
c906108c 3410 {
23860348 3411 /* FIXME: This is a good reason to drop the packet. */
405feb71
TV
3412 /* Possibly, there is a duplicate response. */
3413 /* Possibilities :
c906108c
SS
3414 retransmit immediatly - race conditions
3415 retransmit after timeout - yes
3416 exit
3417 wait for packet, then exit
3418 */
8a3fe4f8 3419 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
23860348 3420 return 0; /* I choose simply exiting. */
c906108c
SS
3421 }
3422 if (*result_count <= 0)
3423 {
3424 if (*done != 1)
3425 {
8a3fe4f8 3426 warning (_("RMT ERROR : failed to get remote thread list."));
c906108c
SS
3427 result = 0;
3428 }
3429 return result; /* break; */
3430 }
3431 if (*result_count > result_limit)
3432 {
3433 *result_count = 0;
8a3fe4f8 3434 warning (_("RMT ERROR: threadlist response longer than requested."));
c906108c
SS
3435 return 0;
3436 }
3437 return result;
3438}
3439
6dc54d91
PA
3440/* Fetch the list of remote threads, with the qL packet, and call
3441 STEPFUNCTION for each thread found. Stops iterating and returns 1
3442 if STEPFUNCTION returns true. Stops iterating and returns 0 if the
3443 STEPFUNCTION returns false. If the packet is not supported,
3444 returns -1. */
c906108c 3445
6b8edb51
PA
3446int
3447remote_target::remote_threadlist_iterator (rmt_thread_action stepfunction,
3448 void *context, int looplimit)
c906108c 3449{
0d031856 3450 struct remote_state *rs = get_remote_state ();
c906108c
SS
3451 int done, i, result_count;
3452 int startflag = 1;
3453 int result = 1;
3454 int loopcount = 0;
c906108c
SS
3455
3456 done = 0;
3457 while (!done)
3458 {
3459 if (loopcount++ > looplimit)
3460 {
3461 result = 0;
8a3fe4f8 3462 warning (_("Remote fetch threadlist -infinite loop-."));
c906108c
SS
3463 break;
3464 }
6dc54d91
PA
3465 result = remote_get_threadlist (startflag, &rs->nextthread,
3466 MAXTHREADLISTRESULTS,
3467 &done, &result_count,
3468 rs->resultthreadlist);
3469 if (result <= 0)
3470 break;
23860348 3471 /* Clear for later iterations. */
c906108c
SS
3472 startflag = 0;
3473 /* Setup to resume next batch of thread references, set nextthread. */
3474 if (result_count >= 1)
0d031856
TT
3475 copy_threadref (&rs->nextthread,
3476 &rs->resultthreadlist[result_count - 1]);
c906108c
SS
3477 i = 0;
3478 while (result_count--)
6dc54d91
PA
3479 {
3480 if (!(*stepfunction) (&rs->resultthreadlist[i++], context))
3481 {
3482 result = 0;
3483 break;
3484 }
3485 }
c906108c
SS
3486 }
3487 return result;
3488}
3489
6dc54d91
PA
3490/* A thread found on the remote target. */
3491
21fe1c75 3492struct thread_item
6dc54d91 3493{
21fe1c75
SM
3494 explicit thread_item (ptid_t ptid_)
3495 : ptid (ptid_)
3496 {}
3497
3498 thread_item (thread_item &&other) = default;
3499 thread_item &operator= (thread_item &&other) = default;
3500
3501 DISABLE_COPY_AND_ASSIGN (thread_item);
3502
6dc54d91
PA
3503 /* The thread's PTID. */
3504 ptid_t ptid;
3505
21fe1c75
SM
3506 /* The thread's extra info. */
3507 std::string extra;
6dc54d91 3508
21fe1c75
SM
3509 /* The thread's name. */
3510 std::string name;
79efa585 3511
6dc54d91 3512 /* The core the thread was running on. -1 if not known. */
21fe1c75 3513 int core = -1;
f6327dcb
KB
3514
3515 /* The thread handle associated with the thread. */
21fe1c75 3516 gdb::byte_vector thread_handle;
21fe1c75 3517};
6dc54d91
PA
3518
3519/* Context passed around to the various methods listing remote
3520 threads. As new threads are found, they're added to the ITEMS
3521 vector. */
3522
3523struct threads_listing_context
3524{
21fe1c75
SM
3525 /* Return true if this object contains an entry for a thread with ptid
3526 PTID. */
6dc54d91 3527
21fe1c75
SM
3528 bool contains_thread (ptid_t ptid) const
3529 {
3530 auto match_ptid = [&] (const thread_item &item)
3531 {
3532 return item.ptid == ptid;
3533 };
80134cf5 3534
21fe1c75
SM
3535 auto it = std::find_if (this->items.begin (),
3536 this->items.end (),
3537 match_ptid);
80134cf5 3538
21fe1c75
SM
3539 return it != this->items.end ();
3540 }
80134cf5 3541
21fe1c75 3542 /* Remove the thread with ptid PTID. */
80134cf5 3543
21fe1c75
SM
3544 void remove_thread (ptid_t ptid)
3545 {
3546 auto match_ptid = [&] (const thread_item &item)
3547 {
3548 return item.ptid == ptid;
3549 };
cbb8991c 3550
21fe1c75
SM
3551 auto it = std::remove_if (this->items.begin (),
3552 this->items.end (),
3553 match_ptid);
cbb8991c 3554
21fe1c75
SM
3555 if (it != this->items.end ())
3556 this->items.erase (it);
3557 }
3558
3559 /* The threads found on the remote target. */
3560 std::vector<thread_item> items;
3561};
cbb8991c 3562
c906108c 3563static int
6dc54d91 3564remote_newthread_step (threadref *ref, void *data)
c906108c 3565{
19ba03f4
SM
3566 struct threads_listing_context *context
3567 = (struct threads_listing_context *) data;
21fe1c75
SM
3568 int pid = inferior_ptid.pid ();
3569 int lwp = threadref_to_int (ref);
3570 ptid_t ptid (pid, lwp);
6dc54d91 3571
21fe1c75 3572 context->items.emplace_back (ptid);
6dc54d91 3573
c906108c
SS
3574 return 1; /* continue iterator */
3575}
3576
3577#define CRAZY_MAX_THREADS 1000
3578
6b8edb51
PA
3579ptid_t
3580remote_target::remote_current_thread (ptid_t oldpid)
c906108c 3581{
d01949b6 3582 struct remote_state *rs = get_remote_state ();
c906108c
SS
3583
3584 putpkt ("qC");
8d64371b 3585 getpkt (&rs->buf, 0);
2e9f7625 3586 if (rs->buf[0] == 'Q' && rs->buf[1] == 'C')
c9f35b34 3587 {
256642e8 3588 const char *obuf;
c9f35b34
KB
3589 ptid_t result;
3590
3591 result = read_ptid (&rs->buf[2], &obuf);
3592 if (*obuf != '\0' && remote_debug)
3593 fprintf_unfiltered (gdb_stdlog,
3594 "warning: garbage in qC reply\n");
3595
3596 return result;
3597 }
c906108c
SS
3598 else
3599 return oldpid;
3600}
3601
6dc54d91 3602/* List remote threads using the deprecated qL packet. */
cce74817 3603
6b8edb51
PA
3604int
3605remote_target::remote_get_threads_with_ql (threads_listing_context *context)
c906108c 3606{
6dc54d91
PA
3607 if (remote_threadlist_iterator (remote_newthread_step, context,
3608 CRAZY_MAX_THREADS) >= 0)
3609 return 1;
3610
3611 return 0;
c906108c
SS
3612}
3613
dc146f7c
VP
3614#if defined(HAVE_LIBEXPAT)
3615
dc146f7c
VP
3616static void
3617start_thread (struct gdb_xml_parser *parser,
3618 const struct gdb_xml_element *element,
4d0fdd9b
SM
3619 void *user_data,
3620 std::vector<gdb_xml_value> &attributes)
dc146f7c 3621{
19ba03f4
SM
3622 struct threads_listing_context *data
3623 = (struct threads_listing_context *) user_data;
3d2c1d41 3624 struct gdb_xml_value *attr;
dc146f7c 3625
4d0fdd9b 3626 char *id = (char *) xml_find_attribute (attributes, "id")->value.get ();
21fe1c75
SM
3627 ptid_t ptid = read_ptid (id, NULL);
3628
3629 data->items.emplace_back (ptid);
3630 thread_item &item = data->items.back ();
dc146f7c 3631
3d2c1d41
PA
3632 attr = xml_find_attribute (attributes, "core");
3633 if (attr != NULL)
4d0fdd9b 3634 item.core = *(ULONGEST *) attr->value.get ();
dc146f7c 3635
79efa585 3636 attr = xml_find_attribute (attributes, "name");
21fe1c75 3637 if (attr != NULL)
4d0fdd9b 3638 item.name = (const char *) attr->value.get ();
79efa585 3639
f6327dcb
KB
3640 attr = xml_find_attribute (attributes, "handle");
3641 if (attr != NULL)
4d0fdd9b 3642 item.thread_handle = hex2bin ((const char *) attr->value.get ());
dc146f7c
VP
3643}
3644
3645static void
3646end_thread (struct gdb_xml_parser *parser,
3647 const struct gdb_xml_element *element,
3648 void *user_data, const char *body_text)
3649{
19ba03f4
SM
3650 struct threads_listing_context *data
3651 = (struct threads_listing_context *) user_data;
dc146f7c 3652
21fe1c75
SM
3653 if (body_text != NULL && *body_text != '\0')
3654 data->items.back ().extra = body_text;
dc146f7c
VP
3655}
3656
3657const struct gdb_xml_attribute thread_attributes[] = {
3658 { "id", GDB_XML_AF_NONE, NULL, NULL },
3659 { "core", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
79efa585 3660 { "name", GDB_XML_AF_OPTIONAL, NULL, NULL },
f6327dcb 3661 { "handle", GDB_XML_AF_OPTIONAL, NULL, NULL },
dc146f7c
VP
3662 { NULL, GDB_XML_AF_NONE, NULL, NULL }
3663};
3664
3665const struct gdb_xml_element thread_children[] = {
3666 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3667};
3668
3669const struct gdb_xml_element threads_children[] = {
3670 { "thread", thread_attributes, thread_children,
3671 GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL,
3672 start_thread, end_thread },
3673 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3674};
3675
3676const struct gdb_xml_element threads_elements[] = {
3677 { "threads", NULL, threads_children,
3678 GDB_XML_EF_NONE, NULL, NULL },
3679 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3680};
3681
3682#endif
3683
6dc54d91 3684/* List remote threads using qXfer:threads:read. */
9d1f7ab2 3685
6b8edb51
PA
3686int
3687remote_target::remote_get_threads_with_qxfer (threads_listing_context *context)
0f71a2f6 3688{
dc146f7c 3689#if defined(HAVE_LIBEXPAT)
4082afcc 3690 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
dc146f7c 3691 {
9018be22 3692 gdb::optional<gdb::char_vector> xml
6b8edb51 3693 = target_read_stralloc (this, TARGET_OBJECT_THREADS, NULL);
efc0eabd 3694
9018be22 3695 if (xml && (*xml)[0] != '\0')
dc146f7c 3696 {
6dc54d91 3697 gdb_xml_parse_quick (_("threads"), "threads.dtd",
9018be22 3698 threads_elements, xml->data (), context);
dc146f7c
VP
3699 }
3700
6dc54d91 3701 return 1;
dc146f7c
VP
3702 }
3703#endif
3704
6dc54d91
PA
3705 return 0;
3706}
3707
3708/* List remote threads using qfThreadInfo/qsThreadInfo. */
3709
6b8edb51
PA
3710int
3711remote_target::remote_get_threads_with_qthreadinfo (threads_listing_context *context)
6dc54d91
PA
3712{
3713 struct remote_state *rs = get_remote_state ();
3714
b80fafe3 3715 if (rs->use_threadinfo_query)
9d1f7ab2 3716 {
256642e8 3717 const char *bufp;
6dc54d91 3718
9d1f7ab2 3719 putpkt ("qfThreadInfo");
8d64371b
TT
3720 getpkt (&rs->buf, 0);
3721 bufp = rs->buf.data ();
9d1f7ab2 3722 if (bufp[0] != '\0') /* q packet recognized */
802188a7 3723 {
9d1f7ab2
MS
3724 while (*bufp++ == 'm') /* reply contains one or more TID */
3725 {
3726 do
3727 {
21fe1c75
SM
3728 ptid_t ptid = read_ptid (bufp, &bufp);
3729 context->items.emplace_back (ptid);
9d1f7ab2
MS
3730 }
3731 while (*bufp++ == ','); /* comma-separated list */
3732 putpkt ("qsThreadInfo");
8d64371b
TT
3733 getpkt (&rs->buf, 0);
3734 bufp = rs->buf.data ();
9d1f7ab2 3735 }
6dc54d91
PA
3736 return 1;
3737 }
3738 else
3739 {
3740 /* Packet not recognized. */
3741 rs->use_threadinfo_query = 0;
9d1f7ab2
MS
3742 }
3743 }
3744
6dc54d91
PA
3745 return 0;
3746}
3747
e8032dde 3748/* Implement the to_update_thread_list function for the remote
6dc54d91
PA
3749 targets. */
3750
f6ac5f3d
PA
3751void
3752remote_target::update_thread_list ()
6dc54d91 3753{
6dc54d91 3754 struct threads_listing_context context;
ab970af1 3755 int got_list = 0;
e8032dde 3756
6dc54d91
PA
3757 /* We have a few different mechanisms to fetch the thread list. Try
3758 them all, starting with the most preferred one first, falling
3759 back to older methods. */
6b8edb51
PA
3760 if (remote_get_threads_with_qxfer (&context)
3761 || remote_get_threads_with_qthreadinfo (&context)
3762 || remote_get_threads_with_ql (&context))
6dc54d91 3763 {
ab970af1
PA
3764 got_list = 1;
3765
21fe1c75 3766 if (context.items.empty ()
f6ac5f3d 3767 && remote_thread_always_alive (inferior_ptid))
7d1a114c
PA
3768 {
3769 /* Some targets don't really support threads, but still
3770 reply an (empty) thread list in response to the thread
3771 listing packets, instead of replying "packet not
3772 supported". Exit early so we don't delete the main
3773 thread. */
7d1a114c
PA
3774 return;
3775 }
3776
ab970af1
PA
3777 /* CONTEXT now holds the current thread list on the remote
3778 target end. Delete GDB-side threads no longer found on the
3779 target. */
08036331 3780 for (thread_info *tp : all_threads_safe ())
cbb8991c 3781 {
21fe1c75 3782 if (!context.contains_thread (tp->ptid))
ab970af1
PA
3783 {
3784 /* Not found. */
00431a78 3785 delete_thread (tp);
ab970af1 3786 }
cbb8991c
DB
3787 }
3788
3789 /* Remove any unreported fork child threads from CONTEXT so
3790 that we don't interfere with follow fork, which is where
3791 creation of such threads is handled. */
3792 remove_new_fork_children (&context);
74531fed 3793
ab970af1 3794 /* And now add threads we don't know about yet to our list. */
21fe1c75 3795 for (thread_item &item : context.items)
6dc54d91 3796 {
21fe1c75 3797 if (item.ptid != null_ptid)
6dc54d91 3798 {
6dc54d91 3799 /* In non-stop mode, we assume new found threads are
0d5b594f
PA
3800 executing until proven otherwise with a stop reply.
3801 In all-stop, we can only get here if all threads are
6dc54d91 3802 stopped. */
0d5b594f 3803 int executing = target_is_non_stop_p () ? 1 : 0;
6dc54d91 3804
21fe1c75 3805 remote_notice_new_inferior (item.ptid, executing);
6dc54d91 3806
08036331 3807 thread_info *tp = find_thread_ptid (item.ptid);
00431a78 3808 remote_thread_info *info = get_remote_thread_info (tp);
21fe1c75 3809 info->core = item.core;
7aabaf9d
SM
3810 info->extra = std::move (item.extra);
3811 info->name = std::move (item.name);
3812 info->thread_handle = std::move (item.thread_handle);
6dc54d91
PA
3813 }
3814 }
3815 }
3816
ab970af1
PA
3817 if (!got_list)
3818 {
3819 /* If no thread listing method is supported, then query whether
3820 each known thread is alive, one by one, with the T packet.
3821 If the target doesn't support threads at all, then this is a
3822 no-op. See remote_thread_alive. */
3823 prune_threads ();
3824 }
9d1f7ab2
MS
3825}
3826
802188a7 3827/*
9d1f7ab2
MS
3828 * Collect a descriptive string about the given thread.
3829 * The target may say anything it wants to about the thread
3830 * (typically info about its blocked / runnable state, name, etc.).
3831 * This string will appear in the info threads display.
802188a7 3832 *
9d1f7ab2
MS
3833 * Optional: targets are not required to implement this function.
3834 */
3835
f6ac5f3d
PA
3836const char *
3837remote_target::extra_thread_info (thread_info *tp)
9d1f7ab2 3838{
d01949b6 3839 struct remote_state *rs = get_remote_state ();
9d1f7ab2
MS
3840 int set;
3841 threadref id;
3842 struct gdb_ext_thread_info threadinfo;
9d1f7ab2 3843
5d93a237 3844 if (rs->remote_desc == 0) /* paranoia */
8e65ff28 3845 internal_error (__FILE__, __LINE__,
e2e0b3e5 3846 _("remote_threads_extra_info"));
9d1f7ab2 3847
d7e15655 3848 if (tp->ptid == magic_null_ptid
e38504b3 3849 || (tp->ptid.pid () != 0 && tp->ptid.lwp () == 0))
60e569b9
PA
3850 /* This is the main thread which was added by GDB. The remote
3851 server doesn't know about it. */
3852 return NULL;
3853
c76a8ea3
PA
3854 std::string &extra = get_remote_thread_info (tp)->extra;
3855
3856 /* If already have cached info, use it. */
3857 if (!extra.empty ())
3858 return extra.c_str ();
3859
4082afcc 3860 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
dc146f7c 3861 {
c76a8ea3
PA
3862 /* If we're using qXfer:threads:read, then the extra info is
3863 included in the XML. So if we didn't have anything cached,
3864 it's because there's really no extra info. */
3865 return NULL;
dc146f7c
VP
3866 }
3867
b80fafe3 3868 if (rs->use_threadextra_query)
9d1f7ab2 3869 {
8d64371b
TT
3870 char *b = rs->buf.data ();
3871 char *endb = b + get_remote_packet_size ();
82f73884
PA
3872
3873 xsnprintf (b, endb - b, "qThreadExtraInfo,");
3874 b += strlen (b);
3875 write_ptid (b, endb, tp->ptid);
3876
2e9f7625 3877 putpkt (rs->buf);
8d64371b 3878 getpkt (&rs->buf, 0);
2e9f7625 3879 if (rs->buf[0] != 0)
9d1f7ab2 3880 {
8d64371b
TT
3881 extra.resize (strlen (rs->buf.data ()) / 2);
3882 hex2bin (rs->buf.data (), (gdb_byte *) &extra[0], extra.size ());
c76a8ea3 3883 return extra.c_str ();
9d1f7ab2 3884 }
0f71a2f6 3885 }
9d1f7ab2
MS
3886
3887 /* If the above query fails, fall back to the old method. */
b80fafe3 3888 rs->use_threadextra_query = 0;
9d1f7ab2
MS
3889 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
3890 | TAG_MOREDISPLAY | TAG_DISPLAY;
e38504b3 3891 int_to_threadref (&id, tp->ptid.lwp ());
9d1f7ab2
MS
3892 if (remote_get_threadinfo (&id, set, &threadinfo))
3893 if (threadinfo.active)
0f71a2f6 3894 {
9d1f7ab2 3895 if (*threadinfo.shortname)
c76a8ea3 3896 string_appendf (extra, " Name: %s", threadinfo.shortname);
9d1f7ab2 3897 if (*threadinfo.display)
c76a8ea3
PA
3898 {
3899 if (!extra.empty ())
3900 extra += ',';
3901 string_appendf (extra, " State: %s", threadinfo.display);
3902 }
9d1f7ab2 3903 if (*threadinfo.more_display)
c5aa993b 3904 {
c76a8ea3
PA
3905 if (!extra.empty ())
3906 extra += ',';
3907 string_appendf (extra, " Priority: %s", threadinfo.more_display);
c5aa993b 3908 }
c76a8ea3 3909 return extra.c_str ();
0f71a2f6 3910 }
9d1f7ab2 3911 return NULL;
0f71a2f6 3912}
c906108c 3913\f
c5aa993b 3914
f6ac5f3d
PA
3915bool
3916remote_target::static_tracepoint_marker_at (CORE_ADDR addr,
3917 struct static_tracepoint_marker *marker)
0fb4aa4b
PA
3918{
3919 struct remote_state *rs = get_remote_state ();
8d64371b 3920 char *p = rs->buf.data ();
0fb4aa4b 3921
bba74b36 3922 xsnprintf (p, get_remote_packet_size (), "qTSTMat:");
0fb4aa4b
PA
3923 p += strlen (p);
3924 p += hexnumstr (p, addr);
3925 putpkt (rs->buf);
8d64371b
TT
3926 getpkt (&rs->buf, 0);
3927 p = rs->buf.data ();
0fb4aa4b
PA
3928
3929 if (*p == 'E')
3930 error (_("Remote failure reply: %s"), p);
3931
3932 if (*p++ == 'm')
3933 {
256642e8 3934 parse_static_tracepoint_marker_definition (p, NULL, marker);
5d9310c4 3935 return true;
0fb4aa4b
PA
3936 }
3937
5d9310c4 3938 return false;
0fb4aa4b
PA
3939}
3940
f6ac5f3d
PA
3941std::vector<static_tracepoint_marker>
3942remote_target::static_tracepoint_markers_by_strid (const char *strid)
0fb4aa4b
PA
3943{
3944 struct remote_state *rs = get_remote_state ();
5d9310c4 3945 std::vector<static_tracepoint_marker> markers;
256642e8 3946 const char *p;
5d9310c4 3947 static_tracepoint_marker marker;
0fb4aa4b
PA
3948
3949 /* Ask for a first packet of static tracepoint marker
3950 definition. */
3951 putpkt ("qTfSTM");
8d64371b
TT
3952 getpkt (&rs->buf, 0);
3953 p = rs->buf.data ();
0fb4aa4b
PA
3954 if (*p == 'E')
3955 error (_("Remote failure reply: %s"), p);
3956
0fb4aa4b
PA
3957 while (*p++ == 'm')
3958 {
0fb4aa4b
PA
3959 do
3960 {
5d9310c4 3961 parse_static_tracepoint_marker_definition (p, &p, &marker);
0fb4aa4b 3962
5d9310c4
SM
3963 if (strid == NULL || marker.str_id == strid)
3964 markers.push_back (std::move (marker));
0fb4aa4b
PA
3965 }
3966 while (*p++ == ','); /* comma-separated list */
3967 /* Ask for another packet of static tracepoint definition. */
3968 putpkt ("qTsSTM");
8d64371b
TT
3969 getpkt (&rs->buf, 0);
3970 p = rs->buf.data ();
0fb4aa4b
PA
3971 }
3972
0fb4aa4b
PA
3973 return markers;
3974}
3975
3976\f
10760264
JB
3977/* Implement the to_get_ada_task_ptid function for the remote targets. */
3978
f6ac5f3d
PA
3979ptid_t
3980remote_target::get_ada_task_ptid (long lwp, long thread)
10760264 3981{
e99b03dc 3982 return ptid_t (inferior_ptid.pid (), lwp, 0);
10760264
JB
3983}
3984\f
3985
24b06219 3986/* Restart the remote side; this is an extended protocol operation. */
c906108c 3987
6b8edb51
PA
3988void
3989remote_target::extended_remote_restart ()
c906108c 3990{
d01949b6 3991 struct remote_state *rs = get_remote_state ();
c906108c
SS
3992
3993 /* Send the restart command; for reasons I don't understand the
3994 remote side really expects a number after the "R". */
8d64371b 3995 xsnprintf (rs->buf.data (), get_remote_packet_size (), "R%x", 0);
6d820c5c 3996 putpkt (rs->buf);
c906108c 3997
ad9a8f3f 3998 remote_fileio_reset ();
c906108c
SS
3999}
4000\f
4001/* Clean up connection to a remote debugger. */
4002
f6ac5f3d
PA
4003void
4004remote_target::close ()
c906108c 4005{
048094ac 4006 /* Make sure we leave stdin registered in the event loop. */
f6ac5f3d 4007 terminal_ours ();
ce5ce7ed 4008
ce5ce7ed 4009 /* We don't have a connection to the remote stub anymore. Get rid
f67fd822
PM
4010 of all the inferiors and their threads we were controlling.
4011 Reset inferior_ptid to null_ptid first, as otherwise has_stack_frame
4012 will be unable to find the thread corresponding to (pid, 0, 0). */
0f2caa1b 4013 inferior_ptid = null_ptid;
f67fd822 4014 discard_all_inferiors ();
ce5ce7ed 4015
6b8edb51
PA
4016 trace_reset_local_state ();
4017
4018 delete this;
4019}
4020
4021remote_target::~remote_target ()
4022{
4023 struct remote_state *rs = get_remote_state ();
4024
4025 /* Check for NULL because we may get here with a partially
4026 constructed target/connection. */
4027 if (rs->remote_desc == nullptr)
4028 return;
4029
4030 serial_close (rs->remote_desc);
4031
4032 /* We are destroying the remote target, so we should discard
f48ff2a7 4033 everything of this target. */
6b8edb51 4034 discard_pending_stop_replies_in_queue ();
74531fed 4035
6b8edb51
PA
4036 if (rs->remote_async_inferior_event_token)
4037 delete_async_event_handler (&rs->remote_async_inferior_event_token);
722247f1 4038
97dfbadd 4039 delete rs->notif_state;
c906108c
SS
4040}
4041
23860348 4042/* Query the remote side for the text, data and bss offsets. */
c906108c 4043
6b8edb51
PA
4044void
4045remote_target::get_offsets ()
c906108c 4046{
d01949b6 4047 struct remote_state *rs = get_remote_state ();
2e9f7625 4048 char *buf;
085dd6e6 4049 char *ptr;
31d99776
DJ
4050 int lose, num_segments = 0, do_sections, do_segments;
4051 CORE_ADDR text_addr, data_addr, bss_addr, segments[2];
31d99776
DJ
4052 struct symfile_segment_data *data;
4053
4054 if (symfile_objfile == NULL)
4055 return;
c906108c
SS
4056
4057 putpkt ("qOffsets");
8d64371b
TT
4058 getpkt (&rs->buf, 0);
4059 buf = rs->buf.data ();
c906108c
SS
4060
4061 if (buf[0] == '\000')
4062 return; /* Return silently. Stub doesn't support
23860348 4063 this command. */
c906108c
SS
4064 if (buf[0] == 'E')
4065 {
8a3fe4f8 4066 warning (_("Remote failure reply: %s"), buf);
c906108c
SS
4067 return;
4068 }
4069
4070 /* Pick up each field in turn. This used to be done with scanf, but
4071 scanf will make trouble if CORE_ADDR size doesn't match
4072 conversion directives correctly. The following code will work
4073 with any size of CORE_ADDR. */
4074 text_addr = data_addr = bss_addr = 0;
4075 ptr = buf;
4076 lose = 0;
4077
61012eef 4078 if (startswith (ptr, "Text="))
c906108c
SS
4079 {
4080 ptr += 5;
4081 /* Don't use strtol, could lose on big values. */
4082 while (*ptr && *ptr != ';')
4083 text_addr = (text_addr << 4) + fromhex (*ptr++);
c906108c 4084
61012eef 4085 if (startswith (ptr, ";Data="))
31d99776
DJ
4086 {
4087 ptr += 6;
4088 while (*ptr && *ptr != ';')
4089 data_addr = (data_addr << 4) + fromhex (*ptr++);
4090 }
4091 else
4092 lose = 1;
4093
61012eef 4094 if (!lose && startswith (ptr, ";Bss="))
31d99776
DJ
4095 {
4096 ptr += 5;
4097 while (*ptr && *ptr != ';')
4098 bss_addr = (bss_addr << 4) + fromhex (*ptr++);
c906108c 4099
31d99776
DJ
4100 if (bss_addr != data_addr)
4101 warning (_("Target reported unsupported offsets: %s"), buf);
4102 }
4103 else
4104 lose = 1;
4105 }
61012eef 4106 else if (startswith (ptr, "TextSeg="))
c906108c 4107 {
31d99776
DJ
4108 ptr += 8;
4109 /* Don't use strtol, could lose on big values. */
c906108c 4110 while (*ptr && *ptr != ';')
31d99776
DJ
4111 text_addr = (text_addr << 4) + fromhex (*ptr++);
4112 num_segments = 1;
4113
61012eef 4114 if (startswith (ptr, ";DataSeg="))
31d99776
DJ
4115 {
4116 ptr += 9;
4117 while (*ptr && *ptr != ';')
4118 data_addr = (data_addr << 4) + fromhex (*ptr++);
4119 num_segments++;
4120 }
c906108c
SS
4121 }
4122 else
4123 lose = 1;
4124
4125 if (lose)
8a3fe4f8 4126 error (_("Malformed response to offset query, %s"), buf);
31d99776
DJ
4127 else if (*ptr != '\0')
4128 warning (_("Target reported unsupported offsets: %s"), buf);
c906108c 4129
6a053cb1 4130 section_offsets offs = symfile_objfile->section_offsets;
c906108c 4131
31d99776
DJ
4132 data = get_symfile_segment_data (symfile_objfile->obfd);
4133 do_segments = (data != NULL);
4134 do_sections = num_segments == 0;
c906108c 4135
28c32713 4136 if (num_segments > 0)
31d99776 4137 {
31d99776
DJ
4138 segments[0] = text_addr;
4139 segments[1] = data_addr;
4140 }
28c32713
JB
4141 /* If we have two segments, we can still try to relocate everything
4142 by assuming that the .text and .data offsets apply to the whole
4143 text and data segments. Convert the offsets given in the packet
4144 to base addresses for symfile_map_offsets_to_segments. */
4145 else if (data && data->num_segments == 2)
4146 {
4147 segments[0] = data->segment_bases[0] + text_addr;
4148 segments[1] = data->segment_bases[1] + data_addr;
4149 num_segments = 2;
4150 }
8d385431
DJ
4151 /* If the object file has only one segment, assume that it is text
4152 rather than data; main programs with no writable data are rare,
4153 but programs with no code are useless. Of course the code might
4154 have ended up in the data segment... to detect that we would need
4155 the permissions here. */
4156 else if (data && data->num_segments == 1)
4157 {
4158 segments[0] = data->segment_bases[0] + text_addr;
4159 num_segments = 1;
4160 }
28c32713
JB
4161 /* There's no way to relocate by segment. */
4162 else
4163 do_segments = 0;
31d99776
DJ
4164
4165 if (do_segments)
4166 {
4167 int ret = symfile_map_offsets_to_segments (symfile_objfile->obfd, data,
4168 offs, num_segments, segments);
4169
4170 if (ret == 0 && !do_sections)
3e43a32a
MS
4171 error (_("Can not handle qOffsets TextSeg "
4172 "response with this symbol file"));
31d99776
DJ
4173
4174 if (ret > 0)
4175 do_sections = 0;
4176 }
c906108c 4177
9ef895d6
DJ
4178 if (data)
4179 free_symfile_segment_data (data);
31d99776
DJ
4180
4181 if (do_sections)
4182 {
6a053cb1 4183 offs[SECT_OFF_TEXT (symfile_objfile)] = text_addr;
31d99776 4184
3e43a32a
MS
4185 /* This is a temporary kludge to force data and bss to use the
4186 same offsets because that's what nlmconv does now. The real
4187 solution requires changes to the stub and remote.c that I
4188 don't have time to do right now. */
31d99776 4189
6a053cb1
TT
4190 offs[SECT_OFF_DATA (symfile_objfile)] = data_addr;
4191 offs[SECT_OFF_BSS (symfile_objfile)] = data_addr;
31d99776 4192 }
c906108c
SS
4193
4194 objfile_relocate (symfile_objfile, offs);
4195}
4196
9a7071a8 4197/* Send interrupt_sequence to remote target. */
6b8edb51
PA
4198
4199void
4200remote_target::send_interrupt_sequence ()
9a7071a8 4201{
5d93a237
TT
4202 struct remote_state *rs = get_remote_state ();
4203
9a7071a8 4204 if (interrupt_sequence_mode == interrupt_sequence_control_c)
c33e31fd 4205 remote_serial_write ("\x03", 1);
9a7071a8 4206 else if (interrupt_sequence_mode == interrupt_sequence_break)
5d93a237 4207 serial_send_break (rs->remote_desc);
9a7071a8
JB
4208 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
4209 {
5d93a237 4210 serial_send_break (rs->remote_desc);
c33e31fd 4211 remote_serial_write ("g", 1);
9a7071a8
JB
4212 }
4213 else
4214 internal_error (__FILE__, __LINE__,
4215 _("Invalid value for interrupt_sequence_mode: %s."),
4216 interrupt_sequence_mode);
4217}
4218
3405876a
PA
4219
4220/* If STOP_REPLY is a T stop reply, look for the "thread" register,
4221 and extract the PTID. Returns NULL_PTID if not found. */
4222
4223static ptid_t
4224stop_reply_extract_thread (char *stop_reply)
4225{
4226 if (stop_reply[0] == 'T' && strlen (stop_reply) > 3)
4227 {
256642e8 4228 const char *p;
3405876a
PA
4229
4230 /* Txx r:val ; r:val (...) */
4231 p = &stop_reply[3];
4232
4233 /* Look for "register" named "thread". */
4234 while (*p != '\0')
4235 {
256642e8 4236 const char *p1;
3405876a
PA
4237
4238 p1 = strchr (p, ':');
4239 if (p1 == NULL)
4240 return null_ptid;
4241
4242 if (strncmp (p, "thread", p1 - p) == 0)
4243 return read_ptid (++p1, &p);
4244
4245 p1 = strchr (p, ';');
4246 if (p1 == NULL)
4247 return null_ptid;
4248 p1++;
4249
4250 p = p1;
4251 }
4252 }
4253
4254 return null_ptid;
4255}
4256
b7ea362b
PA
4257/* Determine the remote side's current thread. If we have a stop
4258 reply handy (in WAIT_STATUS), maybe it's a T stop reply with a
4259 "thread" register we can extract the current thread from. If not,
4260 ask the remote which is the current thread with qC. The former
4261 method avoids a roundtrip. */
4262
6b8edb51
PA
4263ptid_t
4264remote_target::get_current_thread (char *wait_status)
b7ea362b 4265{
6a49a997 4266 ptid_t ptid = null_ptid;
b7ea362b
PA
4267
4268 /* Note we don't use remote_parse_stop_reply as that makes use of
4269 the target architecture, which we haven't yet fully determined at
4270 this point. */
4271 if (wait_status != NULL)
4272 ptid = stop_reply_extract_thread (wait_status);
d7e15655 4273 if (ptid == null_ptid)
b7ea362b
PA
4274 ptid = remote_current_thread (inferior_ptid);
4275
4276 return ptid;
4277}
4278
49c62f2e
PA
4279/* Query the remote target for which is the current thread/process,
4280 add it to our tables, and update INFERIOR_PTID. The caller is
4281 responsible for setting the state such that the remote end is ready
3405876a
PA
4282 to return the current thread.
4283
4284 This function is called after handling the '?' or 'vRun' packets,
4285 whose response is a stop reply from which we can also try
4286 extracting the thread. If the target doesn't support the explicit
4287 qC query, we infer the current thread from that stop reply, passed
4288 in in WAIT_STATUS, which may be NULL. */
49c62f2e 4289
6b8edb51
PA
4290void
4291remote_target::add_current_inferior_and_thread (char *wait_status)
49c62f2e
PA
4292{
4293 struct remote_state *rs = get_remote_state ();
9ab8741a 4294 bool fake_pid_p = false;
49c62f2e
PA
4295
4296 inferior_ptid = null_ptid;
4297
b7ea362b 4298 /* Now, if we have thread information, update inferior_ptid. */
87215ad1 4299 ptid_t curr_ptid = get_current_thread (wait_status);
3405876a 4300
87215ad1 4301 if (curr_ptid != null_ptid)
49c62f2e
PA
4302 {
4303 if (!remote_multi_process_p (rs))
9ab8741a 4304 fake_pid_p = true;
49c62f2e
PA
4305 }
4306 else
4307 {
4308 /* Without this, some commands which require an active target
4309 (such as kill) won't work. This variable serves (at least)
4310 double duty as both the pid of the target process (if it has
4311 such), and as a flag indicating that a target is active. */
87215ad1 4312 curr_ptid = magic_null_ptid;
9ab8741a 4313 fake_pid_p = true;
49c62f2e
PA
4314 }
4315
e99b03dc 4316 remote_add_inferior (fake_pid_p, curr_ptid.pid (), -1, 1);
49c62f2e 4317
87215ad1
SDJ
4318 /* Add the main thread and switch to it. Don't try reading
4319 registers yet, since we haven't fetched the target description
4320 yet. */
4321 thread_info *tp = add_thread_silent (curr_ptid);
4322 switch_to_thread_no_regs (tp);
49c62f2e
PA
4323}
4324
6efcd9a8
PA
4325/* Print info about a thread that was found already stopped on
4326 connection. */
4327
4328static void
4329print_one_stopped_thread (struct thread_info *thread)
4330{
4331 struct target_waitstatus *ws = &thread->suspend.waitstatus;
4332
00431a78 4333 switch_to_thread (thread);
f2ffa92b 4334 thread->suspend.stop_pc = get_frame_pc (get_current_frame ());
6efcd9a8
PA
4335 set_current_sal_from_frame (get_current_frame ());
4336
4337 thread->suspend.waitstatus_pending_p = 0;
4338
4339 if (ws->kind == TARGET_WAITKIND_STOPPED)
4340 {
4341 enum gdb_signal sig = ws->value.sig;
4342
4343 if (signal_print_state (sig))
76727919 4344 gdb::observers::signal_received.notify (sig);
6efcd9a8 4345 }
76727919 4346 gdb::observers::normal_stop.notify (NULL, 1);
6efcd9a8
PA
4347}
4348
221e1a37
PA
4349/* Process all initial stop replies the remote side sent in response
4350 to the ? packet. These indicate threads that were already stopped
4351 on initial connection. We mark these threads as stopped and print
4352 their current frame before giving the user the prompt. */
4353
6b8edb51
PA
4354void
4355remote_target::process_initial_stop_replies (int from_tty)
221e1a37
PA
4356{
4357 int pending_stop_replies = stop_reply_queue_length ();
6efcd9a8
PA
4358 struct thread_info *selected = NULL;
4359 struct thread_info *lowest_stopped = NULL;
4360 struct thread_info *first = NULL;
221e1a37
PA
4361
4362 /* Consume the initial pending events. */
4363 while (pending_stop_replies-- > 0)
4364 {
4365 ptid_t waiton_ptid = minus_one_ptid;
4366 ptid_t event_ptid;
4367 struct target_waitstatus ws;
4368 int ignore_event = 0;
4369
4370 memset (&ws, 0, sizeof (ws));
4371 event_ptid = target_wait (waiton_ptid, &ws, TARGET_WNOHANG);
4372 if (remote_debug)
4373 print_target_wait_results (waiton_ptid, event_ptid, &ws);
4374
4375 switch (ws.kind)
4376 {
4377 case TARGET_WAITKIND_IGNORE:
4378 case TARGET_WAITKIND_NO_RESUMED:
4379 case TARGET_WAITKIND_SIGNALLED:
4380 case TARGET_WAITKIND_EXITED:
4381 /* We shouldn't see these, but if we do, just ignore. */
4382 if (remote_debug)
4383 fprintf_unfiltered (gdb_stdlog, "remote: event ignored\n");
4384 ignore_event = 1;
4385 break;
4386
4387 case TARGET_WAITKIND_EXECD:
4388 xfree (ws.value.execd_pathname);
4389 break;
4390 default:
4391 break;
4392 }
4393
4394 if (ignore_event)
4395 continue;
4396
b926417a 4397 struct thread_info *evthread = find_thread_ptid (event_ptid);
221e1a37
PA
4398
4399 if (ws.kind == TARGET_WAITKIND_STOPPED)
4400 {
4401 enum gdb_signal sig = ws.value.sig;
4402
4403 /* Stubs traditionally report SIGTRAP as initial signal,
4404 instead of signal 0. Suppress it. */
4405 if (sig == GDB_SIGNAL_TRAP)
4406 sig = GDB_SIGNAL_0;
b926417a 4407 evthread->suspend.stop_signal = sig;
6efcd9a8
PA
4408 ws.value.sig = sig;
4409 }
221e1a37 4410
b926417a 4411 evthread->suspend.waitstatus = ws;
6efcd9a8
PA
4412
4413 if (ws.kind != TARGET_WAITKIND_STOPPED
4414 || ws.value.sig != GDB_SIGNAL_0)
b926417a 4415 evthread->suspend.waitstatus_pending_p = 1;
6efcd9a8
PA
4416
4417 set_executing (event_ptid, 0);
4418 set_running (event_ptid, 0);
b926417a 4419 get_remote_thread_info (evthread)->vcont_resumed = 0;
6efcd9a8
PA
4420 }
4421
4422 /* "Notice" the new inferiors before anything related to
4423 registers/memory. */
08036331 4424 for (inferior *inf : all_non_exited_inferiors ())
6efcd9a8 4425 {
6efcd9a8
PA
4426 inf->needs_setup = 1;
4427
4428 if (non_stop)
4429 {
08036331 4430 thread_info *thread = any_live_thread_of_inferior (inf);
00431a78 4431 notice_new_inferior (thread, thread->state == THREAD_RUNNING,
6efcd9a8
PA
4432 from_tty);
4433 }
4434 }
4435
4436 /* If all-stop on top of non-stop, pause all threads. Note this
4437 records the threads' stop pc, so must be done after "noticing"
4438 the inferiors. */
4439 if (!non_stop)
4440 {
4441 stop_all_threads ();
4442
4443 /* If all threads of an inferior were already stopped, we
4444 haven't setup the inferior yet. */
08036331 4445 for (inferior *inf : all_non_exited_inferiors ())
6efcd9a8 4446 {
6efcd9a8
PA
4447 if (inf->needs_setup)
4448 {
08036331 4449 thread_info *thread = any_live_thread_of_inferior (inf);
6efcd9a8
PA
4450 switch_to_thread_no_regs (thread);
4451 setup_inferior (0);
4452 }
4453 }
221e1a37 4454 }
6efcd9a8
PA
4455
4456 /* Now go over all threads that are stopped, and print their current
4457 frame. If all-stop, then if there's a signalled thread, pick
4458 that as current. */
08036331 4459 for (thread_info *thread : all_non_exited_threads ())
6efcd9a8 4460 {
6efcd9a8
PA
4461 if (first == NULL)
4462 first = thread;
4463
4464 if (!non_stop)
00431a78 4465 thread->set_running (false);
6efcd9a8
PA
4466 else if (thread->state != THREAD_STOPPED)
4467 continue;
4468
6efcd9a8
PA
4469 if (selected == NULL
4470 && thread->suspend.waitstatus_pending_p)
4471 selected = thread;
4472
5d5658a1
PA
4473 if (lowest_stopped == NULL
4474 || thread->inf->num < lowest_stopped->inf->num
4475 || thread->per_inf_num < lowest_stopped->per_inf_num)
6efcd9a8
PA
4476 lowest_stopped = thread;
4477
4478 if (non_stop)
4479 print_one_stopped_thread (thread);
4480 }
4481
4482 /* In all-stop, we only print the status of one thread, and leave
4483 others with their status pending. */
4484 if (!non_stop)
4485 {
08036331 4486 thread_info *thread = selected;
6efcd9a8
PA
4487 if (thread == NULL)
4488 thread = lowest_stopped;
4489 if (thread == NULL)
4490 thread = first;
4491
4492 print_one_stopped_thread (thread);
4493 }
4494
4495 /* For "info program". */
08036331 4496 thread_info *thread = inferior_thread ();
6efcd9a8
PA
4497 if (thread->state == THREAD_STOPPED)
4498 set_last_target_status (inferior_ptid, thread->suspend.waitstatus);
221e1a37
PA
4499}
4500
048094ac
PA
4501/* Start the remote connection and sync state. */
4502
f6ac5f3d
PA
4503void
4504remote_target::start_remote (int from_tty, int extended_p)
c906108c 4505{
c8d104ad
PA
4506 struct remote_state *rs = get_remote_state ();
4507 struct packet_config *noack_config;
2d717e4f 4508 char *wait_status = NULL;
8621d6a9 4509
048094ac
PA
4510 /* Signal other parts that we're going through the initial setup,
4511 and so things may not be stable yet. E.g., we don't try to
4512 install tracepoints until we've relocated symbols. Also, a
4513 Ctrl-C before we're connected and synced up can't interrupt the
4514 target. Instead, it offers to drop the (potentially wedged)
4515 connection. */
4516 rs->starting_up = 1;
4517
522002f9 4518 QUIT;
c906108c 4519
9a7071a8
JB
4520 if (interrupt_on_connect)
4521 send_interrupt_sequence ();
4522
57e12211 4523 /* Ack any packet which the remote side has already sent. */
048094ac 4524 remote_serial_write ("+", 1);
1e51243a 4525
c8d104ad
PA
4526 /* The first packet we send to the target is the optional "supported
4527 packets" request. If the target can answer this, it will tell us
4528 which later probes to skip. */
4529 remote_query_supported ();
4530
d914c394 4531 /* If the stub wants to get a QAllow, compose one and send it. */
4082afcc 4532 if (packet_support (PACKET_QAllow) != PACKET_DISABLE)
f6ac5f3d 4533 set_permissions ();
d914c394 4534
57809e5e
JK
4535 /* gdbserver < 7.7 (before its fix from 2013-12-11) did reply to any
4536 unknown 'v' packet with string "OK". "OK" gets interpreted by GDB
4537 as a reply to known packet. For packet "vFile:setfs:" it is an
4538 invalid reply and GDB would return error in
4539 remote_hostio_set_filesystem, making remote files access impossible.
4540 Disable "vFile:setfs:" in such case. Do not disable other 'v' packets as
4541 other "vFile" packets get correctly detected even on gdbserver < 7.7. */
4542 {
4543 const char v_mustreplyempty[] = "vMustReplyEmpty";
4544
4545 putpkt (v_mustreplyempty);
8d64371b
TT
4546 getpkt (&rs->buf, 0);
4547 if (strcmp (rs->buf.data (), "OK") == 0)
57809e5e 4548 remote_protocol_packets[PACKET_vFile_setfs].support = PACKET_DISABLE;
8d64371b 4549 else if (strcmp (rs->buf.data (), "") != 0)
57809e5e 4550 error (_("Remote replied unexpectedly to '%s': %s"), v_mustreplyempty,
8d64371b 4551 rs->buf.data ());
57809e5e
JK
4552 }
4553
c8d104ad
PA
4554 /* Next, we possibly activate noack mode.
4555
4556 If the QStartNoAckMode packet configuration is set to AUTO,
4557 enable noack mode if the stub reported a wish for it with
4558 qSupported.
4559
4560 If set to TRUE, then enable noack mode even if the stub didn't
4561 report it in qSupported. If the stub doesn't reply OK, the
4562 session ends with an error.
4563
4564 If FALSE, then don't activate noack mode, regardless of what the
4565 stub claimed should be the default with qSupported. */
4566
4567 noack_config = &remote_protocol_packets[PACKET_QStartNoAckMode];
4082afcc 4568 if (packet_config_support (noack_config) != PACKET_DISABLE)
c8d104ad
PA
4569 {
4570 putpkt ("QStartNoAckMode");
8d64371b 4571 getpkt (&rs->buf, 0);
c8d104ad
PA
4572 if (packet_ok (rs->buf, noack_config) == PACKET_OK)
4573 rs->noack_mode = 1;
4574 }
4575
04bd08de 4576 if (extended_p)
5fe04517
PA
4577 {
4578 /* Tell the remote that we are using the extended protocol. */
4579 putpkt ("!");
8d64371b 4580 getpkt (&rs->buf, 0);
5fe04517
PA
4581 }
4582
9b224c5e
PA
4583 /* Let the target know which signals it is allowed to pass down to
4584 the program. */
4585 update_signals_program_target ();
4586
d962ef82
DJ
4587 /* Next, if the target can specify a description, read it. We do
4588 this before anything involving memory or registers. */
4589 target_find_description ();
4590
6c95b8df
PA
4591 /* Next, now that we know something about the target, update the
4592 address spaces in the program spaces. */
4593 update_address_spaces ();
4594
50c71eaf
PA
4595 /* On OSs where the list of libraries is global to all
4596 processes, we fetch them early. */
f5656ead 4597 if (gdbarch_has_global_solist (target_gdbarch ()))
e696b3ad 4598 solib_add (NULL, from_tty, auto_solib_add);
50c71eaf 4599
6efcd9a8 4600 if (target_is_non_stop_p ())
74531fed 4601 {
4082afcc 4602 if (packet_support (PACKET_QNonStop) != PACKET_ENABLE)
3e43a32a
MS
4603 error (_("Non-stop mode requested, but remote "
4604 "does not support non-stop"));
74531fed
PA
4605
4606 putpkt ("QNonStop:1");
8d64371b 4607 getpkt (&rs->buf, 0);
74531fed 4608
8d64371b
TT
4609 if (strcmp (rs->buf.data (), "OK") != 0)
4610 error (_("Remote refused setting non-stop mode with: %s"),
4611 rs->buf.data ());
74531fed
PA
4612
4613 /* Find about threads and processes the stub is already
4614 controlling. We default to adding them in the running state.
4615 The '?' query below will then tell us about which threads are
4616 stopped. */
f6ac5f3d 4617 this->update_thread_list ();
74531fed 4618 }
4082afcc 4619 else if (packet_support (PACKET_QNonStop) == PACKET_ENABLE)
74531fed
PA
4620 {
4621 /* Don't assume that the stub can operate in all-stop mode.
e6f3fa52 4622 Request it explicitly. */
74531fed 4623 putpkt ("QNonStop:0");
8d64371b 4624 getpkt (&rs->buf, 0);
74531fed 4625
8d64371b
TT
4626 if (strcmp (rs->buf.data (), "OK") != 0)
4627 error (_("Remote refused setting all-stop mode with: %s"),
4628 rs->buf.data ());
74531fed
PA
4629 }
4630
a0743c90
YQ
4631 /* Upload TSVs regardless of whether the target is running or not. The
4632 remote stub, such as GDBserver, may have some predefined or builtin
4633 TSVs, even if the target is not running. */
f6ac5f3d 4634 if (get_trace_status (current_trace_status ()) != -1)
a0743c90
YQ
4635 {
4636 struct uploaded_tsv *uploaded_tsvs = NULL;
4637
f6ac5f3d 4638 upload_trace_state_variables (&uploaded_tsvs);
a0743c90
YQ
4639 merge_uploaded_trace_state_variables (&uploaded_tsvs);
4640 }
4641
2d717e4f
DJ
4642 /* Check whether the target is running now. */
4643 putpkt ("?");
8d64371b 4644 getpkt (&rs->buf, 0);
2d717e4f 4645
6efcd9a8 4646 if (!target_is_non_stop_p ())
2d717e4f 4647 {
74531fed 4648 if (rs->buf[0] == 'W' || rs->buf[0] == 'X')
2d717e4f 4649 {
04bd08de 4650 if (!extended_p)
74531fed 4651 error (_("The target is not running (try extended-remote?)"));
c35b1492
PA
4652
4653 /* We're connected, but not running. Drop out before we
4654 call start_remote. */
e278ad5b 4655 rs->starting_up = 0;
c35b1492 4656 return;
2d717e4f
DJ
4657 }
4658 else
74531fed 4659 {
74531fed 4660 /* Save the reply for later. */
8d64371b
TT
4661 wait_status = (char *) alloca (strlen (rs->buf.data ()) + 1);
4662 strcpy (wait_status, rs->buf.data ());
74531fed
PA
4663 }
4664
b7ea362b 4665 /* Fetch thread list. */
e8032dde 4666 target_update_thread_list ();
b7ea362b 4667
74531fed
PA
4668 /* Let the stub know that we want it to return the thread. */
4669 set_continue_thread (minus_one_ptid);
4670
b7ea362b
PA
4671 if (thread_count () == 0)
4672 {
4673 /* Target has no concept of threads at all. GDB treats
4674 non-threaded target as single-threaded; add a main
4675 thread. */
4676 add_current_inferior_and_thread (wait_status);
4677 }
4678 else
4679 {
4680 /* We have thread information; select the thread the target
4681 says should be current. If we're reconnecting to a
4682 multi-threaded program, this will ideally be the thread
4683 that last reported an event before GDB disconnected. */
4684 inferior_ptid = get_current_thread (wait_status);
d7e15655 4685 if (inferior_ptid == null_ptid)
b7ea362b
PA
4686 {
4687 /* Odd... The target was able to list threads, but not
4688 tell us which thread was current (no "thread"
4689 register in T stop reply?). Just pick the first
4690 thread in the thread list then. */
c9f35b34
KB
4691
4692 if (remote_debug)
4693 fprintf_unfiltered (gdb_stdlog,
4694 "warning: couldn't determine remote "
4695 "current thread; picking first in list.\n");
4696
08036331 4697 inferior_ptid = inferior_list->thread_list->ptid;
b7ea362b
PA
4698 }
4699 }
74531fed 4700
6e586cc5
YQ
4701 /* init_wait_for_inferior should be called before get_offsets in order
4702 to manage `inserted' flag in bp loc in a correct state.
4703 breakpoint_init_inferior, called from init_wait_for_inferior, set
4704 `inserted' flag to 0, while before breakpoint_re_set, called from
4705 start_remote, set `inserted' flag to 1. In the initialization of
4706 inferior, breakpoint_init_inferior should be called first, and then
4707 breakpoint_re_set can be called. If this order is broken, state of
4708 `inserted' flag is wrong, and cause some problems on breakpoint
4709 manipulation. */
4710 init_wait_for_inferior ();
4711
74531fed
PA
4712 get_offsets (); /* Get text, data & bss offsets. */
4713
d962ef82
DJ
4714 /* If we could not find a description using qXfer, and we know
4715 how to do it some other way, try again. This is not
4716 supported for non-stop; it could be, but it is tricky if
4717 there are no stopped threads when we connect. */
f6ac5f3d 4718 if (remote_read_description_p (this)
f5656ead 4719 && gdbarch_target_desc (target_gdbarch ()) == NULL)
d962ef82
DJ
4720 {
4721 target_clear_description ();
4722 target_find_description ();
4723 }
4724
74531fed
PA
4725 /* Use the previously fetched status. */
4726 gdb_assert (wait_status != NULL);
8d64371b 4727 strcpy (rs->buf.data (), wait_status);
74531fed
PA
4728 rs->cached_wait_status = 1;
4729
f6ac5f3d 4730 ::start_remote (from_tty); /* Initialize gdb process mechanisms. */
2d717e4f
DJ
4731 }
4732 else
4733 {
68c97600
PA
4734 /* Clear WFI global state. Do this before finding about new
4735 threads and inferiors, and setting the current inferior.
4736 Otherwise we would clear the proceed status of the current
4737 inferior when we want its stop_soon state to be preserved
4738 (see notice_new_inferior). */
4739 init_wait_for_inferior ();
4740
74531fed
PA
4741 /* In non-stop, we will either get an "OK", meaning that there
4742 are no stopped threads at this time; or, a regular stop
4743 reply. In the latter case, there may be more than one thread
4744 stopped --- we pull them all out using the vStopped
4745 mechanism. */
8d64371b 4746 if (strcmp (rs->buf.data (), "OK") != 0)
74531fed 4747 {
722247f1 4748 struct notif_client *notif = &notif_client_stop;
2d717e4f 4749
722247f1
YQ
4750 /* remote_notif_get_pending_replies acks this one, and gets
4751 the rest out. */
f48ff2a7 4752 rs->notif_state->pending_event[notif_client_stop.id]
8d64371b 4753 = remote_notif_parse (this, notif, rs->buf.data ());
722247f1 4754 remote_notif_get_pending_events (notif);
74531fed 4755 }
2d717e4f 4756
74531fed
PA
4757 if (thread_count () == 0)
4758 {
04bd08de 4759 if (!extended_p)
74531fed 4760 error (_("The target is not running (try extended-remote?)"));
82f73884 4761
c35b1492
PA
4762 /* We're connected, but not running. Drop out before we
4763 call start_remote. */
e278ad5b 4764 rs->starting_up = 0;
c35b1492
PA
4765 return;
4766 }
74531fed 4767
74531fed
PA
4768 /* In non-stop mode, any cached wait status will be stored in
4769 the stop reply queue. */
4770 gdb_assert (wait_status == NULL);
f0223081 4771
2455069d 4772 /* Report all signals during attach/startup. */
adc6a863 4773 pass_signals ({});
221e1a37
PA
4774
4775 /* If there are already stopped threads, mark them stopped and
4776 report their stops before giving the prompt to the user. */
6efcd9a8 4777 process_initial_stop_replies (from_tty);
221e1a37
PA
4778
4779 if (target_can_async_p ())
4780 target_async (1);
74531fed 4781 }
c8d104ad 4782
c8d104ad
PA
4783 /* If we connected to a live target, do some additional setup. */
4784 if (target_has_execution)
4785 {
f4ccffad 4786 if (symfile_objfile) /* No use without a symbol-file. */
36d25514 4787 remote_check_symbols ();
c8d104ad 4788 }
50c71eaf 4789
d5551862
SS
4790 /* Possibly the target has been engaged in a trace run started
4791 previously; find out where things are at. */
f6ac5f3d 4792 if (get_trace_status (current_trace_status ()) != -1)
d5551862 4793 {
00bf0b85 4794 struct uploaded_tp *uploaded_tps = NULL;
00bf0b85 4795
00bf0b85
SS
4796 if (current_trace_status ()->running)
4797 printf_filtered (_("Trace is already running on the target.\n"));
4798
f6ac5f3d 4799 upload_tracepoints (&uploaded_tps);
00bf0b85
SS
4800
4801 merge_uploaded_tracepoints (&uploaded_tps);
d5551862
SS
4802 }
4803
c0272db5
TW
4804 /* Possibly the target has been engaged in a btrace record started
4805 previously; find out where things are at. */
4806 remote_btrace_maybe_reopen ();
4807
1e51243a
PA
4808 /* The thread and inferior lists are now synchronized with the
4809 target, our symbols have been relocated, and we're merged the
4810 target's tracepoints with ours. We're done with basic start
4811 up. */
4812 rs->starting_up = 0;
4813
a25a5a45
PA
4814 /* Maybe breakpoints are global and need to be inserted now. */
4815 if (breakpoints_should_be_inserted_now ())
50c71eaf 4816 insert_breakpoints ();
c906108c
SS
4817}
4818
4819/* Open a connection to a remote debugger.
4820 NAME is the filename used for communication. */
4821
f6ac5f3d
PA
4822void
4823remote_target::open (const char *name, int from_tty)
c906108c 4824{
f6ac5f3d 4825 open_1 (name, from_tty, 0);
43ff13b4
JM
4826}
4827
c906108c
SS
4828/* Open a connection to a remote debugger using the extended
4829 remote gdb protocol. NAME is the filename used for communication. */
4830
f6ac5f3d
PA
4831void
4832extended_remote_target::open (const char *name, int from_tty)
c906108c 4833{
f6ac5f3d 4834 open_1 (name, from_tty, 1 /*extended_p */);
43ff13b4
JM
4835}
4836
ca4f7f8b
PA
4837/* Reset all packets back to "unknown support". Called when opening a
4838 new connection to a remote target. */
c906108c 4839
d471ea57 4840static void
ca4f7f8b 4841reset_all_packet_configs_support (void)
d471ea57
AC
4842{
4843 int i;
a744cf53 4844
444abaca 4845 for (i = 0; i < PACKET_MAX; i++)
4082afcc 4846 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
d471ea57
AC
4847}
4848
ca4f7f8b
PA
4849/* Initialize all packet configs. */
4850
4851static void
4852init_all_packet_configs (void)
4853{
4854 int i;
4855
4856 for (i = 0; i < PACKET_MAX; i++)
4857 {
4858 remote_protocol_packets[i].detect = AUTO_BOOLEAN_AUTO;
4859 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
4860 }
4861}
4862
23860348 4863/* Symbol look-up. */
dc8acb97 4864
6b8edb51
PA
4865void
4866remote_target::remote_check_symbols ()
dc8acb97 4867{
8d64371b 4868 char *tmp;
dc8acb97
MS
4869 int end;
4870
63154eca
PA
4871 /* The remote side has no concept of inferiors that aren't running
4872 yet, it only knows about running processes. If we're connected
4873 but our current inferior is not running, we should not invite the
4874 remote target to request symbol lookups related to its
4875 (unrelated) current process. */
4876 if (!target_has_execution)
4877 return;
4878
4082afcc 4879 if (packet_support (PACKET_qSymbol) == PACKET_DISABLE)
dc8acb97
MS
4880 return;
4881
63154eca
PA
4882 /* Make sure the remote is pointing at the right process. Note
4883 there's no way to select "no process". */
3c9c4b83
PA
4884 set_general_process ();
4885
6d820c5c
DJ
4886 /* Allocate a message buffer. We can't reuse the input buffer in RS,
4887 because we need both at the same time. */
66644cd3 4888 gdb::char_vector msg (get_remote_packet_size ());
8d64371b 4889 gdb::char_vector reply (get_remote_packet_size ());
6d820c5c 4890
23860348 4891 /* Invite target to request symbol lookups. */
dc8acb97
MS
4892
4893 putpkt ("qSymbol::");
8d64371b 4894 getpkt (&reply, 0);
28170b88 4895 packet_ok (reply, &remote_protocol_packets[PACKET_qSymbol]);
dc8acb97 4896
8d64371b 4897 while (startswith (reply.data (), "qSymbol:"))
dc8acb97 4898 {
77e371c0
TT
4899 struct bound_minimal_symbol sym;
4900
dc8acb97 4901 tmp = &reply[8];
66644cd3
AB
4902 end = hex2bin (tmp, reinterpret_cast <gdb_byte *> (msg.data ()),
4903 strlen (tmp) / 2);
dc8acb97 4904 msg[end] = '\0';
66644cd3 4905 sym = lookup_minimal_symbol (msg.data (), NULL, NULL);
3b7344d5 4906 if (sym.minsym == NULL)
66644cd3
AB
4907 xsnprintf (msg.data (), get_remote_packet_size (), "qSymbol::%s",
4908 &reply[8]);
dc8acb97 4909 else
2bbe3cc1 4910 {
f5656ead 4911 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
77e371c0 4912 CORE_ADDR sym_addr = BMSYMBOL_VALUE_ADDRESS (sym);
2bbe3cc1
DJ
4913
4914 /* If this is a function address, return the start of code
4915 instead of any data function descriptor. */
f5656ead 4916 sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
2bbe3cc1 4917 sym_addr,
8b88a78e 4918 current_top_target ());
2bbe3cc1 4919
66644cd3 4920 xsnprintf (msg.data (), get_remote_packet_size (), "qSymbol:%s:%s",
5af949e3 4921 phex_nz (sym_addr, addr_size), &reply[8]);
2bbe3cc1 4922 }
66644cd3
AB
4923
4924 putpkt (msg.data ());
8d64371b 4925 getpkt (&reply, 0);
dc8acb97
MS
4926 }
4927}
4928
9db8d71f 4929static struct serial *
baa336ce 4930remote_serial_open (const char *name)
9db8d71f
DJ
4931{
4932 static int udp_warning = 0;
4933
4934 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
4935 of in ser-tcp.c, because it is the remote protocol assuming that the
4936 serial connection is reliable and not the serial connection promising
4937 to be. */
61012eef 4938 if (!udp_warning && startswith (name, "udp:"))
9db8d71f 4939 {
3e43a32a
MS
4940 warning (_("The remote protocol may be unreliable over UDP.\n"
4941 "Some events may be lost, rendering further debugging "
4942 "impossible."));
9db8d71f
DJ
4943 udp_warning = 1;
4944 }
4945
4946 return serial_open (name);
4947}
4948
d914c394
SS
4949/* Inform the target of our permission settings. The permission flags
4950 work without this, but if the target knows the settings, it can do
4951 a couple things. First, it can add its own check, to catch cases
4952 that somehow manage to get by the permissions checks in target
4953 methods. Second, if the target is wired to disallow particular
4954 settings (for instance, a system in the field that is not set up to
4955 be able to stop at a breakpoint), it can object to any unavailable
4956 permissions. */
4957
4958void
f6ac5f3d 4959remote_target::set_permissions ()
d914c394
SS
4960{
4961 struct remote_state *rs = get_remote_state ();
4962
8d64371b 4963 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QAllow:"
bba74b36
YQ
4964 "WriteReg:%x;WriteMem:%x;"
4965 "InsertBreak:%x;InsertTrace:%x;"
4966 "InsertFastTrace:%x;Stop:%x",
4967 may_write_registers, may_write_memory,
4968 may_insert_breakpoints, may_insert_tracepoints,
4969 may_insert_fast_tracepoints, may_stop);
d914c394 4970 putpkt (rs->buf);
8d64371b 4971 getpkt (&rs->buf, 0);
d914c394
SS
4972
4973 /* If the target didn't like the packet, warn the user. Do not try
4974 to undo the user's settings, that would just be maddening. */
8d64371b
TT
4975 if (strcmp (rs->buf.data (), "OK") != 0)
4976 warning (_("Remote refused setting permissions with: %s"),
4977 rs->buf.data ());
d914c394
SS
4978}
4979
be2a5f71
DJ
4980/* This type describes each known response to the qSupported
4981 packet. */
4982struct protocol_feature
4983{
4984 /* The name of this protocol feature. */
4985 const char *name;
4986
4987 /* The default for this protocol feature. */
4988 enum packet_support default_support;
4989
4990 /* The function to call when this feature is reported, or after
4991 qSupported processing if the feature is not supported.
4992 The first argument points to this structure. The second
4993 argument indicates whether the packet requested support be
4994 enabled, disabled, or probed (or the default, if this function
4995 is being called at the end of processing and this feature was
4996 not reported). The third argument may be NULL; if not NULL, it
4997 is a NUL-terminated string taken from the packet following
4998 this feature's name and an equals sign. */
6b8edb51
PA
4999 void (*func) (remote_target *remote, const struct protocol_feature *,
5000 enum packet_support, const char *);
be2a5f71
DJ
5001
5002 /* The corresponding packet for this feature. Only used if
5003 FUNC is remote_supported_packet. */
5004 int packet;
5005};
5006
be2a5f71 5007static void
6b8edb51
PA
5008remote_supported_packet (remote_target *remote,
5009 const struct protocol_feature *feature,
be2a5f71
DJ
5010 enum packet_support support,
5011 const char *argument)
5012{
5013 if (argument)
5014 {
5015 warning (_("Remote qSupported response supplied an unexpected value for"
5016 " \"%s\"."), feature->name);
5017 return;
5018 }
5019
4082afcc 5020 remote_protocol_packets[feature->packet].support = support;
be2a5f71 5021}
be2a5f71 5022
6b8edb51
PA
5023void
5024remote_target::remote_packet_size (const protocol_feature *feature,
5025 enum packet_support support, const char *value)
be2a5f71
DJ
5026{
5027 struct remote_state *rs = get_remote_state ();
5028
5029 int packet_size;
5030 char *value_end;
5031
5032 if (support != PACKET_ENABLE)
5033 return;
5034
5035 if (value == NULL || *value == '\0')
5036 {
5037 warning (_("Remote target reported \"%s\" without a size."),
5038 feature->name);
5039 return;
5040 }
5041
5042 errno = 0;
5043 packet_size = strtol (value, &value_end, 16);
5044 if (errno != 0 || *value_end != '\0' || packet_size < 0)
5045 {
5046 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
5047 feature->name, value);
5048 return;
5049 }
5050
be2a5f71
DJ
5051 /* Record the new maximum packet size. */
5052 rs->explicit_packet_size = packet_size;
5053}
5054
cb8c24b6 5055static void
6b8edb51
PA
5056remote_packet_size (remote_target *remote, const protocol_feature *feature,
5057 enum packet_support support, const char *value)
5058{
5059 remote->remote_packet_size (feature, support, value);
5060}
5061
dc473cfb 5062static const struct protocol_feature remote_protocol_features[] = {
0876f84a 5063 { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 },
40e57cf2 5064 { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet,
fd79ecee 5065 PACKET_qXfer_auxv },
c78fa86a
GB
5066 { "qXfer:exec-file:read", PACKET_DISABLE, remote_supported_packet,
5067 PACKET_qXfer_exec_file },
23181151
DJ
5068 { "qXfer:features:read", PACKET_DISABLE, remote_supported_packet,
5069 PACKET_qXfer_features },
cfa9d6d9
DJ
5070 { "qXfer:libraries:read", PACKET_DISABLE, remote_supported_packet,
5071 PACKET_qXfer_libraries },
2268b414
JK
5072 { "qXfer:libraries-svr4:read", PACKET_DISABLE, remote_supported_packet,
5073 PACKET_qXfer_libraries_svr4 },
ced63ec0 5074 { "augmented-libraries-svr4-read", PACKET_DISABLE,
4082afcc 5075 remote_supported_packet, PACKET_augmented_libraries_svr4_read_feature },
fd79ecee 5076 { "qXfer:memory-map:read", PACKET_DISABLE, remote_supported_packet,
89be2091 5077 PACKET_qXfer_memory_map },
07e059b5
VP
5078 { "qXfer:osdata:read", PACKET_DISABLE, remote_supported_packet,
5079 PACKET_qXfer_osdata },
dc146f7c
VP
5080 { "qXfer:threads:read", PACKET_DISABLE, remote_supported_packet,
5081 PACKET_qXfer_threads },
b3b9301e
PA
5082 { "qXfer:traceframe-info:read", PACKET_DISABLE, remote_supported_packet,
5083 PACKET_qXfer_traceframe_info },
89be2091
DJ
5084 { "QPassSignals", PACKET_DISABLE, remote_supported_packet,
5085 PACKET_QPassSignals },
82075af2
JS
5086 { "QCatchSyscalls", PACKET_DISABLE, remote_supported_packet,
5087 PACKET_QCatchSyscalls },
9b224c5e
PA
5088 { "QProgramSignals", PACKET_DISABLE, remote_supported_packet,
5089 PACKET_QProgramSignals },
bc3b087d
SDJ
5090 { "QSetWorkingDir", PACKET_DISABLE, remote_supported_packet,
5091 PACKET_QSetWorkingDir },
aefd8b33
SDJ
5092 { "QStartupWithShell", PACKET_DISABLE, remote_supported_packet,
5093 PACKET_QStartupWithShell },
0a2dde4a
SDJ
5094 { "QEnvironmentHexEncoded", PACKET_DISABLE, remote_supported_packet,
5095 PACKET_QEnvironmentHexEncoded },
5096 { "QEnvironmentReset", PACKET_DISABLE, remote_supported_packet,
5097 PACKET_QEnvironmentReset },
5098 { "QEnvironmentUnset", PACKET_DISABLE, remote_supported_packet,
5099 PACKET_QEnvironmentUnset },
a6f3e723
SL
5100 { "QStartNoAckMode", PACKET_DISABLE, remote_supported_packet,
5101 PACKET_QStartNoAckMode },
4082afcc
PA
5102 { "multiprocess", PACKET_DISABLE, remote_supported_packet,
5103 PACKET_multiprocess_feature },
5104 { "QNonStop", PACKET_DISABLE, remote_supported_packet, PACKET_QNonStop },
4aa995e1
PA
5105 { "qXfer:siginfo:read", PACKET_DISABLE, remote_supported_packet,
5106 PACKET_qXfer_siginfo_read },
5107 { "qXfer:siginfo:write", PACKET_DISABLE, remote_supported_packet,
5108 PACKET_qXfer_siginfo_write },
4082afcc 5109 { "ConditionalTracepoints", PACKET_DISABLE, remote_supported_packet,
782b2b07 5110 PACKET_ConditionalTracepoints },
4082afcc 5111 { "ConditionalBreakpoints", PACKET_DISABLE, remote_supported_packet,
3788aec7 5112 PACKET_ConditionalBreakpoints },
4082afcc 5113 { "BreakpointCommands", PACKET_DISABLE, remote_supported_packet,
d3ce09f5 5114 PACKET_BreakpointCommands },
4082afcc 5115 { "FastTracepoints", PACKET_DISABLE, remote_supported_packet,
7a697b8d 5116 PACKET_FastTracepoints },
4082afcc 5117 { "StaticTracepoints", PACKET_DISABLE, remote_supported_packet,
0fb4aa4b 5118 PACKET_StaticTracepoints },
4082afcc 5119 {"InstallInTrace", PACKET_DISABLE, remote_supported_packet,
1e4d1764 5120 PACKET_InstallInTrace},
4082afcc
PA
5121 { "DisconnectedTracing", PACKET_DISABLE, remote_supported_packet,
5122 PACKET_DisconnectedTracing_feature },
40ab02ce
MS
5123 { "ReverseContinue", PACKET_DISABLE, remote_supported_packet,
5124 PACKET_bc },
5125 { "ReverseStep", PACKET_DISABLE, remote_supported_packet,
5126 PACKET_bs },
409873ef
SS
5127 { "TracepointSource", PACKET_DISABLE, remote_supported_packet,
5128 PACKET_TracepointSource },
d914c394
SS
5129 { "QAllow", PACKET_DISABLE, remote_supported_packet,
5130 PACKET_QAllow },
4082afcc
PA
5131 { "EnableDisableTracepoints", PACKET_DISABLE, remote_supported_packet,
5132 PACKET_EnableDisableTracepoints_feature },
78d85199
YQ
5133 { "qXfer:fdpic:read", PACKET_DISABLE, remote_supported_packet,
5134 PACKET_qXfer_fdpic },
169081d0
TG
5135 { "qXfer:uib:read", PACKET_DISABLE, remote_supported_packet,
5136 PACKET_qXfer_uib },
03583c20
UW
5137 { "QDisableRandomization", PACKET_DISABLE, remote_supported_packet,
5138 PACKET_QDisableRandomization },
d1feda86 5139 { "QAgent", PACKET_DISABLE, remote_supported_packet, PACKET_QAgent},
f6f899bf
HAQ
5140 { "QTBuffer:size", PACKET_DISABLE,
5141 remote_supported_packet, PACKET_QTBuffer_size},
4082afcc 5142 { "tracenz", PACKET_DISABLE, remote_supported_packet, PACKET_tracenz_feature },
9accd112
MM
5143 { "Qbtrace:off", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_off },
5144 { "Qbtrace:bts", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_bts },
b20a6524 5145 { "Qbtrace:pt", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_pt },
9accd112 5146 { "qXfer:btrace:read", PACKET_DISABLE, remote_supported_packet,
f4abbc16
MM
5147 PACKET_qXfer_btrace },
5148 { "qXfer:btrace-conf:read", PACKET_DISABLE, remote_supported_packet,
d33501a5
MM
5149 PACKET_qXfer_btrace_conf },
5150 { "Qbtrace-conf:bts:size", PACKET_DISABLE, remote_supported_packet,
f7e6eed5
PA
5151 PACKET_Qbtrace_conf_bts_size },
5152 { "swbreak", PACKET_DISABLE, remote_supported_packet, PACKET_swbreak_feature },
0a93529c 5153 { "hwbreak", PACKET_DISABLE, remote_supported_packet, PACKET_hwbreak_feature },
89245bc0
DB
5154 { "fork-events", PACKET_DISABLE, remote_supported_packet,
5155 PACKET_fork_event_feature },
5156 { "vfork-events", PACKET_DISABLE, remote_supported_packet,
5157 PACKET_vfork_event_feature },
94585166
DB
5158 { "exec-events", PACKET_DISABLE, remote_supported_packet,
5159 PACKET_exec_event_feature },
b20a6524 5160 { "Qbtrace-conf:pt:size", PACKET_DISABLE, remote_supported_packet,
750ce8d1 5161 PACKET_Qbtrace_conf_pt_size },
65706a29
PA
5162 { "vContSupported", PACKET_DISABLE, remote_supported_packet, PACKET_vContSupported },
5163 { "QThreadEvents", PACKET_DISABLE, remote_supported_packet, PACKET_QThreadEvents },
f2faf941 5164 { "no-resumed", PACKET_DISABLE, remote_supported_packet, PACKET_no_resumed },
be2a5f71
DJ
5165};
5166
c8d5aac9
L
5167static char *remote_support_xml;
5168
5169/* Register string appended to "xmlRegisters=" in qSupported query. */
5170
5171void
6e39997a 5172register_remote_support_xml (const char *xml)
c8d5aac9
L
5173{
5174#if defined(HAVE_LIBEXPAT)
5175 if (remote_support_xml == NULL)
c4f7c687 5176 remote_support_xml = concat ("xmlRegisters=", xml, (char *) NULL);
c8d5aac9
L
5177 else
5178 {
5179 char *copy = xstrdup (remote_support_xml + 13);
ca3a04f6
CB
5180 char *saveptr;
5181 char *p = strtok_r (copy, ",", &saveptr);
c8d5aac9
L
5182
5183 do
5184 {
5185 if (strcmp (p, xml) == 0)
5186 {
5187 /* already there */
5188 xfree (copy);
5189 return;
5190 }
5191 }
ca3a04f6 5192 while ((p = strtok_r (NULL, ",", &saveptr)) != NULL);
c8d5aac9
L
5193 xfree (copy);
5194
94b0dee1
PA
5195 remote_support_xml = reconcat (remote_support_xml,
5196 remote_support_xml, ",", xml,
5197 (char *) NULL);
c8d5aac9
L
5198 }
5199#endif
5200}
5201
69b6ecb0
TT
5202static void
5203remote_query_supported_append (std::string *msg, const char *append)
c8d5aac9 5204{
69b6ecb0
TT
5205 if (!msg->empty ())
5206 msg->append (";");
5207 msg->append (append);
c8d5aac9
L
5208}
5209
6b8edb51
PA
5210void
5211remote_target::remote_query_supported ()
be2a5f71
DJ
5212{
5213 struct remote_state *rs = get_remote_state ();
5214 char *next;
5215 int i;
5216 unsigned char seen [ARRAY_SIZE (remote_protocol_features)];
5217
5218 /* The packet support flags are handled differently for this packet
5219 than for most others. We treat an error, a disabled packet, and
5220 an empty response identically: any features which must be reported
5221 to be used will be automatically disabled. An empty buffer
5222 accomplishes this, since that is also the representation for a list
5223 containing no features. */
5224
5225 rs->buf[0] = 0;
4082afcc 5226 if (packet_support (PACKET_qSupported) != PACKET_DISABLE)
be2a5f71 5227 {
69b6ecb0 5228 std::string q;
c8d5aac9 5229
73b8c1fd 5230 if (packet_set_cmd_state (PACKET_multiprocess_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5231 remote_query_supported_append (&q, "multiprocess+");
c8d5aac9 5232
f7e6eed5 5233 if (packet_set_cmd_state (PACKET_swbreak_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5234 remote_query_supported_append (&q, "swbreak+");
f7e6eed5 5235 if (packet_set_cmd_state (PACKET_hwbreak_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5236 remote_query_supported_append (&q, "hwbreak+");
f7e6eed5 5237
69b6ecb0 5238 remote_query_supported_append (&q, "qRelocInsn+");
dde08ee1 5239
8020350c
DB
5240 if (packet_set_cmd_state (PACKET_fork_event_feature)
5241 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5242 remote_query_supported_append (&q, "fork-events+");
8020350c
DB
5243 if (packet_set_cmd_state (PACKET_vfork_event_feature)
5244 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5245 remote_query_supported_append (&q, "vfork-events+");
8020350c
DB
5246 if (packet_set_cmd_state (PACKET_exec_event_feature)
5247 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5248 remote_query_supported_append (&q, "exec-events+");
89245bc0 5249
750ce8d1 5250 if (packet_set_cmd_state (PACKET_vContSupported) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5251 remote_query_supported_append (&q, "vContSupported+");
750ce8d1 5252
65706a29 5253 if (packet_set_cmd_state (PACKET_QThreadEvents) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5254 remote_query_supported_append (&q, "QThreadEvents+");
65706a29 5255
f2faf941 5256 if (packet_set_cmd_state (PACKET_no_resumed) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5257 remote_query_supported_append (&q, "no-resumed+");
f2faf941 5258
b35d5edb
PA
5259 /* Keep this one last to work around a gdbserver <= 7.10 bug in
5260 the qSupported:xmlRegisters=i386 handling. */
7cc244de
PA
5261 if (remote_support_xml != NULL
5262 && packet_support (PACKET_qXfer_features) != PACKET_DISABLE)
69b6ecb0 5263 remote_query_supported_append (&q, remote_support_xml);
82f73884 5264
69b6ecb0
TT
5265 q = "qSupported:" + q;
5266 putpkt (q.c_str ());
94b0dee1 5267
8d64371b 5268 getpkt (&rs->buf, 0);
be2a5f71
DJ
5269
5270 /* If an error occured, warn, but do not return - just reset the
5271 buffer to empty and go on to disable features. */
5272 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported])
5273 == PACKET_ERROR)
5274 {
8d64371b 5275 warning (_("Remote failure reply: %s"), rs->buf.data ());
be2a5f71
DJ
5276 rs->buf[0] = 0;
5277 }
5278 }
5279
5280 memset (seen, 0, sizeof (seen));
5281
8d64371b 5282 next = rs->buf.data ();
be2a5f71
DJ
5283 while (*next)
5284 {
5285 enum packet_support is_supported;
5286 char *p, *end, *name_end, *value;
5287
5288 /* First separate out this item from the rest of the packet. If
5289 there's another item after this, we overwrite the separator
5290 (terminated strings are much easier to work with). */
5291 p = next;
5292 end = strchr (p, ';');
5293 if (end == NULL)
5294 {
5295 end = p + strlen (p);
5296 next = end;
5297 }
5298 else
5299 {
89be2091
DJ
5300 *end = '\0';
5301 next = end + 1;
5302
be2a5f71
DJ
5303 if (end == p)
5304 {
5305 warning (_("empty item in \"qSupported\" response"));
5306 continue;
5307 }
be2a5f71
DJ
5308 }
5309
5310 name_end = strchr (p, '=');
5311 if (name_end)
5312 {
5313 /* This is a name=value entry. */
5314 is_supported = PACKET_ENABLE;
5315 value = name_end + 1;
5316 *name_end = '\0';
5317 }
5318 else
5319 {
5320 value = NULL;
5321 switch (end[-1])
5322 {
5323 case '+':
5324 is_supported = PACKET_ENABLE;
5325 break;
5326
5327 case '-':
5328 is_supported = PACKET_DISABLE;
5329 break;
5330
5331 case '?':
5332 is_supported = PACKET_SUPPORT_UNKNOWN;
5333 break;
5334
5335 default:
3e43a32a
MS
5336 warning (_("unrecognized item \"%s\" "
5337 "in \"qSupported\" response"), p);
be2a5f71
DJ
5338 continue;
5339 }
5340 end[-1] = '\0';
5341 }
5342
5343 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
5344 if (strcmp (remote_protocol_features[i].name, p) == 0)
5345 {
5346 const struct protocol_feature *feature;
5347
5348 seen[i] = 1;
5349 feature = &remote_protocol_features[i];
6b8edb51 5350 feature->func (this, feature, is_supported, value);
be2a5f71
DJ
5351 break;
5352 }
5353 }
5354
5355 /* If we increased the packet size, make sure to increase the global
5356 buffer size also. We delay this until after parsing the entire
5357 qSupported packet, because this is the same buffer we were
5358 parsing. */
8d64371b
TT
5359 if (rs->buf.size () < rs->explicit_packet_size)
5360 rs->buf.resize (rs->explicit_packet_size);
be2a5f71
DJ
5361
5362 /* Handle the defaults for unmentioned features. */
5363 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
5364 if (!seen[i])
5365 {
5366 const struct protocol_feature *feature;
5367
5368 feature = &remote_protocol_features[i];
6b8edb51 5369 feature->func (this, feature, feature->default_support, NULL);
be2a5f71
DJ
5370 }
5371}
5372
048094ac
PA
5373/* Serial QUIT handler for the remote serial descriptor.
5374
5375 Defers handling a Ctrl-C until we're done with the current
5376 command/response packet sequence, unless:
5377
5378 - We're setting up the connection. Don't send a remote interrupt
5379 request, as we're not fully synced yet. Quit immediately
5380 instead.
5381
5382 - The target has been resumed in the foreground
223ffa71 5383 (target_terminal::is_ours is false) with a synchronous resume
048094ac
PA
5384 packet, and we're blocked waiting for the stop reply, thus a
5385 Ctrl-C should be immediately sent to the target.
5386
5387 - We get a second Ctrl-C while still within the same serial read or
5388 write. In that case the serial is seemingly wedged --- offer to
5389 quit/disconnect.
5390
5391 - We see a second Ctrl-C without target response, after having
5392 previously interrupted the target. In that case the target/stub
5393 is probably wedged --- offer to quit/disconnect.
5394*/
5395
6b8edb51
PA
5396void
5397remote_target::remote_serial_quit_handler ()
048094ac
PA
5398{
5399 struct remote_state *rs = get_remote_state ();
5400
5401 if (check_quit_flag ())
5402 {
5403 /* If we're starting up, we're not fully synced yet. Quit
5404 immediately. */
5405 if (rs->starting_up)
5406 quit ();
5407 else if (rs->got_ctrlc_during_io)
5408 {
5409 if (query (_("The target is not responding to GDB commands.\n"
5410 "Stop debugging it? ")))
5411 remote_unpush_and_throw ();
5412 }
5413 /* If ^C has already been sent once, offer to disconnect. */
223ffa71 5414 else if (!target_terminal::is_ours () && rs->ctrlc_pending_p)
048094ac
PA
5415 interrupt_query ();
5416 /* All-stop protocol, and blocked waiting for stop reply. Send
5417 an interrupt request. */
223ffa71 5418 else if (!target_terminal::is_ours () && rs->waiting_for_stop_reply)
e671cd59 5419 target_interrupt ();
048094ac
PA
5420 else
5421 rs->got_ctrlc_during_io = 1;
5422 }
5423}
5424
6b8edb51
PA
5425/* The remote_target that is current while the quit handler is
5426 overridden with remote_serial_quit_handler. */
5427static remote_target *curr_quit_handler_target;
5428
5429static void
5430remote_serial_quit_handler ()
5431{
5432 curr_quit_handler_target->remote_serial_quit_handler ();
5433}
5434
78a095c3
JK
5435/* Remove any of the remote.c targets from target stack. Upper targets depend
5436 on it so remove them first. */
5437
5438static void
5439remote_unpush_target (void)
5440{
915ef8b1 5441 pop_all_targets_at_and_above (process_stratum);
78a095c3 5442}
be2a5f71 5443
048094ac
PA
5444static void
5445remote_unpush_and_throw (void)
5446{
5447 remote_unpush_target ();
5448 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
5449}
5450
f6ac5f3d
PA
5451void
5452remote_target::open_1 (const char *name, int from_tty, int extended_p)
c906108c 5453{
6b8edb51 5454 remote_target *curr_remote = get_current_remote_target ();
a6f3e723 5455
c906108c 5456 if (name == 0)
8a3fe4f8 5457 error (_("To open a remote debug connection, you need to specify what\n"
22e04375 5458 "serial device is attached to the remote system\n"
8a3fe4f8 5459 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
c906108c 5460
2d717e4f 5461 /* If we're connected to a running target, target_preopen will kill it.
78a095c3
JK
5462 Ask this question first, before target_preopen has a chance to kill
5463 anything. */
6b8edb51 5464 if (curr_remote != NULL && !have_inferiors ())
2d717e4f 5465 {
78a095c3
JK
5466 if (from_tty
5467 && !query (_("Already connected to a remote target. Disconnect? ")))
2d717e4f
DJ
5468 error (_("Still connected."));
5469 }
5470
78a095c3 5471 /* Here the possibly existing remote target gets unpushed. */
c906108c
SS
5472 target_preopen (from_tty);
5473
ad9a8f3f 5474 remote_fileio_reset ();
1dd41f16
NS
5475 reopen_exec_file ();
5476 reread_symbols ();
5477
6b8edb51
PA
5478 remote_target *remote
5479 = (extended_p ? new extended_remote_target () : new remote_target ());
5480 target_ops_up target_holder (remote);
5481
5482 remote_state *rs = remote->get_remote_state ();
5483
5484 /* See FIXME above. */
5485 if (!target_async_permitted)
5486 rs->wait_forever_enabled_p = 1;
5487
5d93a237
TT
5488 rs->remote_desc = remote_serial_open (name);
5489 if (!rs->remote_desc)
c906108c
SS
5490 perror_with_name (name);
5491
5492 if (baud_rate != -1)
5493 {
5d93a237 5494 if (serial_setbaudrate (rs->remote_desc, baud_rate))
c906108c 5495 {
9b74d5d3
KB
5496 /* The requested speed could not be set. Error out to
5497 top level after closing remote_desc. Take care to
5498 set remote_desc to NULL to avoid closing remote_desc
5499 more than once. */
5d93a237
TT
5500 serial_close (rs->remote_desc);
5501 rs->remote_desc = NULL;
c906108c
SS
5502 perror_with_name (name);
5503 }
5504 }
5505
236af5e3 5506 serial_setparity (rs->remote_desc, serial_parity);
5d93a237 5507 serial_raw (rs->remote_desc);
c906108c
SS
5508
5509 /* If there is something sitting in the buffer we might take it as a
5510 response to a command, which would be bad. */
5d93a237 5511 serial_flush_input (rs->remote_desc);
c906108c
SS
5512
5513 if (from_tty)
5514 {
5515 puts_filtered ("Remote debugging using ");
5516 puts_filtered (name);
5517 puts_filtered ("\n");
5518 }
d9f719f1 5519
6b8edb51 5520 /* Switch to using the remote target now. */
dea57a62 5521 push_target (std::move (target_holder));
c906108c 5522
74531fed 5523 /* Register extra event sources in the event loop. */
6b8edb51 5524 rs->remote_async_inferior_event_token
74531fed 5525 = create_async_event_handler (remote_async_inferior_event_handler,
6b8edb51
PA
5526 remote);
5527 rs->notif_state = remote_notif_state_allocate (remote);
74531fed 5528
be2a5f71
DJ
5529 /* Reset the target state; these things will be queried either by
5530 remote_query_supported or as they are needed. */
ca4f7f8b 5531 reset_all_packet_configs_support ();
74531fed 5532 rs->cached_wait_status = 0;
be2a5f71 5533 rs->explicit_packet_size = 0;
a6f3e723 5534 rs->noack_mode = 0;
82f73884 5535 rs->extended = extended_p;
e24a49d8 5536 rs->waiting_for_stop_reply = 0;
3a29589a 5537 rs->ctrlc_pending_p = 0;
048094ac 5538 rs->got_ctrlc_during_io = 0;
802188a7 5539
47f8a51d
TT
5540 rs->general_thread = not_sent_ptid;
5541 rs->continue_thread = not_sent_ptid;
262e1174 5542 rs->remote_traceframe_number = -1;
c906108c 5543
3a00c802
PA
5544 rs->last_resume_exec_dir = EXEC_FORWARD;
5545
9d1f7ab2 5546 /* Probe for ability to use "ThreadInfo" query, as required. */
b80fafe3
TT
5547 rs->use_threadinfo_query = 1;
5548 rs->use_threadextra_query = 1;
9d1f7ab2 5549
dd194f6b 5550 rs->readahead_cache.invalidate ();
80152258 5551
c6ebd6cf 5552 if (target_async_permitted)
92d1e331 5553 {
92d1e331
DJ
5554 /* FIXME: cagney/1999-09-23: During the initial connection it is
5555 assumed that the target is already ready and able to respond to
0df8b418 5556 requests. Unfortunately remote_start_remote() eventually calls
92d1e331 5557 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
0df8b418 5558 around this. Eventually a mechanism that allows
92d1e331 5559 wait_for_inferior() to expect/get timeouts will be
23860348 5560 implemented. */
6b8edb51 5561 rs->wait_forever_enabled_p = 0;
92d1e331
DJ
5562 }
5563
23860348 5564 /* First delete any symbols previously loaded from shared libraries. */
f78f6cf1 5565 no_shared_libraries (NULL, 0);
f78f6cf1 5566
36918e70 5567 /* Start the remote connection. If error() or QUIT, discard this
165b8e33
AC
5568 target (we'd otherwise be in an inconsistent state) and then
5569 propogate the error on up the exception chain. This ensures that
5570 the caller doesn't stumble along blindly assuming that the
5571 function succeeded. The CLI doesn't have this problem but other
5572 UI's, such as MI do.
36918e70
AC
5573
5574 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
5575 this function should return an error indication letting the
ce2826aa 5576 caller restore the previous state. Unfortunately the command
36918e70
AC
5577 ``target remote'' is directly wired to this function making that
5578 impossible. On a positive note, the CLI side of this problem has
5579 been fixed - the function set_cmd_context() makes it possible for
5580 all the ``target ....'' commands to share a common callback
5581 function. See cli-dump.c. */
109c3e39 5582 {
2d717e4f 5583
a70b8144 5584 try
04bd08de 5585 {
6b8edb51 5586 remote->start_remote (from_tty, extended_p);
04bd08de 5587 }
230d2906 5588 catch (const gdb_exception &ex)
109c3e39 5589 {
c8d104ad
PA
5590 /* Pop the partially set up target - unless something else did
5591 already before throwing the exception. */
6b8edb51 5592 if (ex.error != TARGET_CLOSE_ERROR)
78a095c3 5593 remote_unpush_target ();
eedc3f4f 5594 throw;
109c3e39
AC
5595 }
5596 }
c906108c 5597
6b8edb51 5598 remote_btrace_reset (rs);
f4abbc16 5599
c6ebd6cf 5600 if (target_async_permitted)
6b8edb51 5601 rs->wait_forever_enabled_p = 1;
43ff13b4
JM
5602}
5603
de0d863e
DB
5604/* Detach the specified process. */
5605
6b8edb51
PA
5606void
5607remote_target::remote_detach_pid (int pid)
de0d863e
DB
5608{
5609 struct remote_state *rs = get_remote_state ();
5610
4c7333b3
PA
5611 /* This should not be necessary, but the handling for D;PID in
5612 GDBserver versions prior to 8.2 incorrectly assumes that the
5613 selected process points to the same process we're detaching,
5614 leading to misbehavior (and possibly GDBserver crashing) when it
5615 does not. Since it's easy and cheap, work around it by forcing
5616 GDBserver to select GDB's current process. */
5617 set_general_process ();
5618
de0d863e 5619 if (remote_multi_process_p (rs))
8d64371b 5620 xsnprintf (rs->buf.data (), get_remote_packet_size (), "D;%x", pid);
de0d863e 5621 else
8d64371b 5622 strcpy (rs->buf.data (), "D");
de0d863e
DB
5623
5624 putpkt (rs->buf);
8d64371b 5625 getpkt (&rs->buf, 0);
de0d863e
DB
5626
5627 if (rs->buf[0] == 'O' && rs->buf[1] == 'K')
5628 ;
5629 else if (rs->buf[0] == '\0')
5630 error (_("Remote doesn't know how to detach"));
5631 else
5632 error (_("Can't detach process."));
5633}
5634
5635/* This detaches a program to which we previously attached, using
5636 inferior_ptid to identify the process. After this is done, GDB
5637 can be used to debug some other program. We better not have left
5638 any breakpoints in the target program or it'll die when it hits
5639 one. */
c906108c 5640
6b8edb51 5641void
00431a78 5642remote_target::remote_detach_1 (inferior *inf, int from_tty)
c906108c 5643{
e99b03dc 5644 int pid = inferior_ptid.pid ();
d01949b6 5645 struct remote_state *rs = get_remote_state ();
de0d863e 5646 int is_fork_parent;
c906108c 5647
2d717e4f
DJ
5648 if (!target_has_execution)
5649 error (_("No process to detach from."));
5650
0f48b757 5651 target_announce_detach (from_tty);
7cee1e54 5652
c906108c 5653 /* Tell the remote target to detach. */
de0d863e 5654 remote_detach_pid (pid);
82f73884 5655
8020350c
DB
5656 /* Exit only if this is the only active inferior. */
5657 if (from_tty && !rs->extended && number_of_live_inferiors () == 1)
7cee1e54 5658 puts_filtered (_("Ending remote debugging.\n"));
82f73884 5659
00431a78
PA
5660 struct thread_info *tp = find_thread_ptid (inferior_ptid);
5661
de0d863e
DB
5662 /* Check to see if we are detaching a fork parent. Note that if we
5663 are detaching a fork child, tp == NULL. */
5664 is_fork_parent = (tp != NULL
5665 && tp->pending_follow.kind == TARGET_WAITKIND_FORKED);
5666
5667 /* If doing detach-on-fork, we don't mourn, because that will delete
5668 breakpoints that should be available for the followed inferior. */
5669 if (!is_fork_parent)
f67c0c91 5670 {
249b5733
PA
5671 /* Save the pid as a string before mourning, since that will
5672 unpush the remote target, and we need the string after. */
f2907e49 5673 std::string infpid = target_pid_to_str (ptid_t (pid));
f67c0c91
SDJ
5674
5675 target_mourn_inferior (inferior_ptid);
5676 if (print_inferior_events)
5677 printf_unfiltered (_("[Inferior %d (%s) detached]\n"),
5678 inf->num, infpid.c_str ());
5679 }
de0d863e
DB
5680 else
5681 {
5682 inferior_ptid = null_ptid;
00431a78 5683 detach_inferior (current_inferior ());
de0d863e 5684 }
2d717e4f
DJ
5685}
5686
f6ac5f3d
PA
5687void
5688remote_target::detach (inferior *inf, int from_tty)
2d717e4f 5689{
00431a78 5690 remote_detach_1 (inf, from_tty);
2d717e4f
DJ
5691}
5692
f6ac5f3d
PA
5693void
5694extended_remote_target::detach (inferior *inf, int from_tty)
2d717e4f 5695{
00431a78 5696 remote_detach_1 (inf, from_tty);
de0d863e
DB
5697}
5698
5699/* Target follow-fork function for remote targets. On entry, and
5700 at return, the current inferior is the fork parent.
5701
5702 Note that although this is currently only used for extended-remote,
5703 it is named remote_follow_fork in anticipation of using it for the
5704 remote target as well. */
5705
f6ac5f3d
PA
5706int
5707remote_target::follow_fork (int follow_child, int detach_fork)
de0d863e
DB
5708{
5709 struct remote_state *rs = get_remote_state ();
c269dbdb 5710 enum target_waitkind kind = inferior_thread ()->pending_follow.kind;
de0d863e 5711
c269dbdb
DB
5712 if ((kind == TARGET_WAITKIND_FORKED && remote_fork_event_p (rs))
5713 || (kind == TARGET_WAITKIND_VFORKED && remote_vfork_event_p (rs)))
de0d863e
DB
5714 {
5715 /* When following the parent and detaching the child, we detach
5716 the child here. For the case of following the child and
5717 detaching the parent, the detach is done in the target-
5718 independent follow fork code in infrun.c. We can't use
5719 target_detach when detaching an unfollowed child because
5720 the client side doesn't know anything about the child. */
5721 if (detach_fork && !follow_child)
5722 {
5723 /* Detach the fork child. */
5724 ptid_t child_ptid;
5725 pid_t child_pid;
5726
5727 child_ptid = inferior_thread ()->pending_follow.value.related_pid;
e99b03dc 5728 child_pid = child_ptid.pid ();
de0d863e
DB
5729
5730 remote_detach_pid (child_pid);
de0d863e
DB
5731 }
5732 }
5733 return 0;
c906108c
SS
5734}
5735
94585166
DB
5736/* Target follow-exec function for remote targets. Save EXECD_PATHNAME
5737 in the program space of the new inferior. On entry and at return the
5738 current inferior is the exec'ing inferior. INF is the new exec'd
5739 inferior, which may be the same as the exec'ing inferior unless
5740 follow-exec-mode is "new". */
5741
f6ac5f3d 5742void
4ca51187 5743remote_target::follow_exec (struct inferior *inf, const char *execd_pathname)
94585166
DB
5744{
5745 /* We know that this is a target file name, so if it has the "target:"
5746 prefix we strip it off before saving it in the program space. */
5747 if (is_target_filename (execd_pathname))
5748 execd_pathname += strlen (TARGET_SYSROOT_PREFIX);
5749
5750 set_pspace_remote_exec_file (inf->pspace, execd_pathname);
5751}
5752
6ad8ae5c
DJ
5753/* Same as remote_detach, but don't send the "D" packet; just disconnect. */
5754
f6ac5f3d
PA
5755void
5756remote_target::disconnect (const char *args, int from_tty)
43ff13b4 5757{
43ff13b4 5758 if (args)
2d717e4f 5759 error (_("Argument given to \"disconnect\" when remotely debugging."));
43ff13b4 5760
8020350c
DB
5761 /* Make sure we unpush even the extended remote targets. Calling
5762 target_mourn_inferior won't unpush, and remote_mourn won't
5763 unpush if there is more than one inferior left. */
f6ac5f3d 5764 unpush_target (this);
8020350c 5765 generic_mourn_inferior ();
2d717e4f 5766
43ff13b4
JM
5767 if (from_tty)
5768 puts_filtered ("Ending remote debugging.\n");
5769}
5770
2d717e4f
DJ
5771/* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
5772 be chatty about it. */
5773
f6ac5f3d
PA
5774void
5775extended_remote_target::attach (const char *args, int from_tty)
2d717e4f
DJ
5776{
5777 struct remote_state *rs = get_remote_state ();
be86555c 5778 int pid;
96ef3384 5779 char *wait_status = NULL;
2d717e4f 5780
74164c56 5781 pid = parse_pid_to_attach (args);
2d717e4f 5782
74164c56
JK
5783 /* Remote PID can be freely equal to getpid, do not check it here the same
5784 way as in other targets. */
2d717e4f 5785
4082afcc 5786 if (packet_support (PACKET_vAttach) == PACKET_DISABLE)
2d717e4f
DJ
5787 error (_("This target does not support attaching to a process"));
5788
7cee1e54
PA
5789 if (from_tty)
5790 {
d9fa87f4 5791 const char *exec_file = get_exec_file (0);
7cee1e54
PA
5792
5793 if (exec_file)
5794 printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file,
a068643d 5795 target_pid_to_str (ptid_t (pid)).c_str ());
7cee1e54
PA
5796 else
5797 printf_unfiltered (_("Attaching to %s\n"),
a068643d 5798 target_pid_to_str (ptid_t (pid)).c_str ());
7cee1e54
PA
5799 }
5800
8d64371b 5801 xsnprintf (rs->buf.data (), get_remote_packet_size (), "vAttach;%x", pid);
2d717e4f 5802 putpkt (rs->buf);
8d64371b 5803 getpkt (&rs->buf, 0);
2d717e4f 5804
4082afcc
PA
5805 switch (packet_ok (rs->buf,
5806 &remote_protocol_packets[PACKET_vAttach]))
2d717e4f 5807 {
4082afcc 5808 case PACKET_OK:
6efcd9a8 5809 if (!target_is_non_stop_p ())
74531fed
PA
5810 {
5811 /* Save the reply for later. */
8d64371b
TT
5812 wait_status = (char *) alloca (strlen (rs->buf.data ()) + 1);
5813 strcpy (wait_status, rs->buf.data ());
74531fed 5814 }
8d64371b 5815 else if (strcmp (rs->buf.data (), "OK") != 0)
74531fed 5816 error (_("Attaching to %s failed with: %s"),
a068643d 5817 target_pid_to_str (ptid_t (pid)).c_str (),
8d64371b 5818 rs->buf.data ());
4082afcc
PA
5819 break;
5820 case PACKET_UNKNOWN:
5821 error (_("This target does not support attaching to a process"));
5822 default:
50fa3001
SDJ
5823 error (_("Attaching to %s failed"),
5824 target_pid_to_str (ptid_t (pid)).c_str ());
2d717e4f 5825 }
2d717e4f 5826
9ab8741a 5827 set_current_inferior (remote_add_inferior (false, pid, 1, 0));
bad34192 5828
f2907e49 5829 inferior_ptid = ptid_t (pid);
79d7f229 5830
6efcd9a8 5831 if (target_is_non_stop_p ())
bad34192
PA
5832 {
5833 struct thread_info *thread;
79d7f229 5834
bad34192 5835 /* Get list of threads. */
f6ac5f3d 5836 update_thread_list ();
82f73884 5837
00431a78 5838 thread = first_thread_of_inferior (current_inferior ());
bad34192
PA
5839 if (thread)
5840 inferior_ptid = thread->ptid;
5841 else
f2907e49 5842 inferior_ptid = ptid_t (pid);
bad34192
PA
5843
5844 /* Invalidate our notion of the remote current thread. */
47f8a51d 5845 record_currthread (rs, minus_one_ptid);
bad34192 5846 }
74531fed 5847 else
bad34192
PA
5848 {
5849 /* Now, if we have thread information, update inferior_ptid. */
5850 inferior_ptid = remote_current_thread (inferior_ptid);
5851
5852 /* Add the main thread to the thread list. */
00aecdcf
PA
5853 thread_info *thr = add_thread_silent (inferior_ptid);
5854 /* Don't consider the thread stopped until we've processed the
5855 saved stop reply. */
5856 set_executing (thr->ptid, true);
bad34192 5857 }
c0a2216e 5858
96ef3384
UW
5859 /* Next, if the target can specify a description, read it. We do
5860 this before anything involving memory or registers. */
5861 target_find_description ();
5862
6efcd9a8 5863 if (!target_is_non_stop_p ())
74531fed
PA
5864 {
5865 /* Use the previously fetched status. */
5866 gdb_assert (wait_status != NULL);
5867
5868 if (target_can_async_p ())
5869 {
722247f1 5870 struct notif_event *reply
6b8edb51 5871 = remote_notif_parse (this, &notif_client_stop, wait_status);
74531fed 5872
722247f1 5873 push_stop_reply ((struct stop_reply *) reply);
74531fed 5874
6a3753b3 5875 target_async (1);
74531fed
PA
5876 }
5877 else
5878 {
5879 gdb_assert (wait_status != NULL);
8d64371b 5880 strcpy (rs->buf.data (), wait_status);
74531fed
PA
5881 rs->cached_wait_status = 1;
5882 }
5883 }
5884 else
5885 gdb_assert (wait_status == NULL);
2d717e4f
DJ
5886}
5887
b9c1d481
AS
5888/* Implementation of the to_post_attach method. */
5889
f6ac5f3d
PA
5890void
5891extended_remote_target::post_attach (int pid)
b9c1d481 5892{
6efcd9a8
PA
5893 /* Get text, data & bss offsets. */
5894 get_offsets ();
5895
b9c1d481
AS
5896 /* In certain cases GDB might not have had the chance to start
5897 symbol lookup up until now. This could happen if the debugged
5898 binary is not using shared libraries, the vsyscall page is not
5899 present (on Linux) and the binary itself hadn't changed since the
5900 debugging process was started. */
5901 if (symfile_objfile != NULL)
5902 remote_check_symbols();
5903}
5904
c906108c 5905\f
506fb367
DJ
5906/* Check for the availability of vCont. This function should also check
5907 the response. */
c906108c 5908
6b8edb51
PA
5909void
5910remote_target::remote_vcont_probe ()
c906108c 5911{
6b8edb51 5912 remote_state *rs = get_remote_state ();
2e9f7625 5913 char *buf;
6d820c5c 5914
8d64371b 5915 strcpy (rs->buf.data (), "vCont?");
2e9f7625 5916 putpkt (rs->buf);
8d64371b
TT
5917 getpkt (&rs->buf, 0);
5918 buf = rs->buf.data ();
c906108c 5919
506fb367 5920 /* Make sure that the features we assume are supported. */
61012eef 5921 if (startswith (buf, "vCont"))
506fb367
DJ
5922 {
5923 char *p = &buf[5];
750ce8d1 5924 int support_c, support_C;
506fb367 5925
750ce8d1
YQ
5926 rs->supports_vCont.s = 0;
5927 rs->supports_vCont.S = 0;
506fb367
DJ
5928 support_c = 0;
5929 support_C = 0;
d458bd84 5930 rs->supports_vCont.t = 0;
c1e36e3e 5931 rs->supports_vCont.r = 0;
506fb367
DJ
5932 while (p && *p == ';')
5933 {
5934 p++;
5935 if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 5936 rs->supports_vCont.s = 1;
506fb367 5937 else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 5938 rs->supports_vCont.S = 1;
506fb367
DJ
5939 else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
5940 support_c = 1;
5941 else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
5942 support_C = 1;
74531fed 5943 else if (*p == 't' && (*(p + 1) == ';' || *(p + 1) == 0))
d458bd84 5944 rs->supports_vCont.t = 1;
c1e36e3e
PA
5945 else if (*p == 'r' && (*(p + 1) == ';' || *(p + 1) == 0))
5946 rs->supports_vCont.r = 1;
506fb367
DJ
5947
5948 p = strchr (p, ';');
5949 }
c906108c 5950
750ce8d1
YQ
5951 /* If c, and C are not all supported, we can't use vCont. Clearing
5952 BUF will make packet_ok disable the packet. */
5953 if (!support_c || !support_C)
506fb367
DJ
5954 buf[0] = 0;
5955 }
c906108c 5956
8d64371b 5957 packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCont]);
506fb367 5958}
c906108c 5959
0d8f58ca
PA
5960/* Helper function for building "vCont" resumptions. Write a
5961 resumption to P. ENDP points to one-passed-the-end of the buffer
5962 we're allowed to write to. Returns BUF+CHARACTERS_WRITTEN. The
5963 thread to be resumed is PTID; STEP and SIGGNAL indicate whether the
5964 resumed thread should be single-stepped and/or signalled. If PTID
5965 equals minus_one_ptid, then all threads are resumed; if PTID
5966 represents a process, then all threads of the process are resumed;
5967 the thread to be stepped and/or signalled is given in the global
5968 INFERIOR_PTID. */
5969
6b8edb51
PA
5970char *
5971remote_target::append_resumption (char *p, char *endp,
5972 ptid_t ptid, int step, gdb_signal siggnal)
0d8f58ca
PA
5973{
5974 struct remote_state *rs = get_remote_state ();
5975
a493e3e2 5976 if (step && siggnal != GDB_SIGNAL_0)
0d8f58ca 5977 p += xsnprintf (p, endp - p, ";S%02x", siggnal);
c1e36e3e
PA
5978 else if (step
5979 /* GDB is willing to range step. */
5980 && use_range_stepping
5981 /* Target supports range stepping. */
5982 && rs->supports_vCont.r
5983 /* We don't currently support range stepping multiple
5984 threads with a wildcard (though the protocol allows it,
5985 so stubs shouldn't make an active effort to forbid
5986 it). */
0e998d96 5987 && !(remote_multi_process_p (rs) && ptid.is_pid ()))
c1e36e3e
PA
5988 {
5989 struct thread_info *tp;
5990
d7e15655 5991 if (ptid == minus_one_ptid)
c1e36e3e
PA
5992 {
5993 /* If we don't know about the target thread's tid, then
5994 we're resuming magic_null_ptid (see caller). */
5995 tp = find_thread_ptid (magic_null_ptid);
5996 }
5997 else
5998 tp = find_thread_ptid (ptid);
5999 gdb_assert (tp != NULL);
6000
6001 if (tp->control.may_range_step)
6002 {
6003 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
6004
6005 p += xsnprintf (p, endp - p, ";r%s,%s",
6006 phex_nz (tp->control.step_range_start,
6007 addr_size),
6008 phex_nz (tp->control.step_range_end,
6009 addr_size));
6010 }
6011 else
6012 p += xsnprintf (p, endp - p, ";s");
6013 }
0d8f58ca
PA
6014 else if (step)
6015 p += xsnprintf (p, endp - p, ";s");
a493e3e2 6016 else if (siggnal != GDB_SIGNAL_0)
0d8f58ca
PA
6017 p += xsnprintf (p, endp - p, ";C%02x", siggnal);
6018 else
6019 p += xsnprintf (p, endp - p, ";c");
6020
0e998d96 6021 if (remote_multi_process_p (rs) && ptid.is_pid ())
0d8f58ca
PA
6022 {
6023 ptid_t nptid;
6024
6025 /* All (-1) threads of process. */
e99b03dc 6026 nptid = ptid_t (ptid.pid (), -1, 0);
0d8f58ca
PA
6027
6028 p += xsnprintf (p, endp - p, ":");
6029 p = write_ptid (p, endp, nptid);
6030 }
d7e15655 6031 else if (ptid != minus_one_ptid)
0d8f58ca
PA
6032 {
6033 p += xsnprintf (p, endp - p, ":");
6034 p = write_ptid (p, endp, ptid);
6035 }
6036
6037 return p;
6038}
6039
799a2abe
PA
6040/* Clear the thread's private info on resume. */
6041
6042static void
6043resume_clear_thread_private_info (struct thread_info *thread)
6044{
6045 if (thread->priv != NULL)
6046 {
7aabaf9d
SM
6047 remote_thread_info *priv = get_remote_thread_info (thread);
6048
6049 priv->stop_reason = TARGET_STOPPED_BY_NO_REASON;
6050 priv->watch_data_address = 0;
799a2abe
PA
6051 }
6052}
6053
e5ef252a
PA
6054/* Append a vCont continue-with-signal action for threads that have a
6055 non-zero stop signal. */
6056
6b8edb51
PA
6057char *
6058remote_target::append_pending_thread_resumptions (char *p, char *endp,
6059 ptid_t ptid)
e5ef252a 6060{
08036331
PA
6061 for (thread_info *thread : all_non_exited_threads (ptid))
6062 if (inferior_ptid != thread->ptid
70509625 6063 && thread->suspend.stop_signal != GDB_SIGNAL_0)
e5ef252a
PA
6064 {
6065 p = append_resumption (p, endp, thread->ptid,
6066 0, thread->suspend.stop_signal);
6067 thread->suspend.stop_signal = GDB_SIGNAL_0;
799a2abe 6068 resume_clear_thread_private_info (thread);
e5ef252a
PA
6069 }
6070
6071 return p;
6072}
6073
7b68ffbb
PA
6074/* Set the target running, using the packets that use Hc
6075 (c/s/C/S). */
6076
6b8edb51
PA
6077void
6078remote_target::remote_resume_with_hc (ptid_t ptid, int step,
6079 gdb_signal siggnal)
7b68ffbb
PA
6080{
6081 struct remote_state *rs = get_remote_state ();
7b68ffbb
PA
6082 char *buf;
6083
6084 rs->last_sent_signal = siggnal;
6085 rs->last_sent_step = step;
6086
6087 /* The c/s/C/S resume packets use Hc, so set the continue
6088 thread. */
d7e15655 6089 if (ptid == minus_one_ptid)
7b68ffbb
PA
6090 set_continue_thread (any_thread_ptid);
6091 else
6092 set_continue_thread (ptid);
6093
08036331 6094 for (thread_info *thread : all_non_exited_threads ())
7b68ffbb
PA
6095 resume_clear_thread_private_info (thread);
6096
8d64371b 6097 buf = rs->buf.data ();
6b8edb51 6098 if (::execution_direction == EXEC_REVERSE)
7b68ffbb
PA
6099 {
6100 /* We don't pass signals to the target in reverse exec mode. */
6101 if (info_verbose && siggnal != GDB_SIGNAL_0)
6102 warning (_(" - Can't pass signal %d to target in reverse: ignored."),
6103 siggnal);
6104
6105 if (step && packet_support (PACKET_bs) == PACKET_DISABLE)
6106 error (_("Remote reverse-step not supported."));
6107 if (!step && packet_support (PACKET_bc) == PACKET_DISABLE)
6108 error (_("Remote reverse-continue not supported."));
6109
6110 strcpy (buf, step ? "bs" : "bc");
6111 }
6112 else if (siggnal != GDB_SIGNAL_0)
6113 {
6114 buf[0] = step ? 'S' : 'C';
6115 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
6116 buf[2] = tohex (((int) siggnal) & 0xf);
6117 buf[3] = '\0';
6118 }
6119 else
6120 strcpy (buf, step ? "s" : "c");
6121
6122 putpkt (buf);
6123}
6124
506fb367
DJ
6125/* Resume the remote inferior by using a "vCont" packet. The thread
6126 to be resumed is PTID; STEP and SIGGNAL indicate whether the
79d7f229
PA
6127 resumed thread should be single-stepped and/or signalled. If PTID
6128 equals minus_one_ptid, then all threads are resumed; the thread to
6129 be stepped and/or signalled is given in the global INFERIOR_PTID.
6130 This function returns non-zero iff it resumes the inferior.
44eaed12 6131
7b68ffbb
PA
6132 This function issues a strict subset of all possible vCont commands
6133 at the moment. */
44eaed12 6134
6b8edb51
PA
6135int
6136remote_target::remote_resume_with_vcont (ptid_t ptid, int step,
6137 enum gdb_signal siggnal)
506fb367
DJ
6138{
6139 struct remote_state *rs = get_remote_state ();
82f73884
PA
6140 char *p;
6141 char *endp;
44eaed12 6142
7b68ffbb 6143 /* No reverse execution actions defined for vCont. */
6b8edb51 6144 if (::execution_direction == EXEC_REVERSE)
7b68ffbb
PA
6145 return 0;
6146
4082afcc 6147 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6b8edb51 6148 remote_vcont_probe ();
44eaed12 6149
4082afcc 6150 if (packet_support (PACKET_vCont) == PACKET_DISABLE)
6d820c5c 6151 return 0;
44eaed12 6152
8d64371b
TT
6153 p = rs->buf.data ();
6154 endp = p + get_remote_packet_size ();
82f73884 6155
506fb367
DJ
6156 /* If we could generate a wider range of packets, we'd have to worry
6157 about overflowing BUF. Should there be a generic
6158 "multi-part-packet" packet? */
6159
0d8f58ca
PA
6160 p += xsnprintf (p, endp - p, "vCont");
6161
d7e15655 6162 if (ptid == magic_null_ptid)
c906108c 6163 {
79d7f229
PA
6164 /* MAGIC_NULL_PTID means that we don't have any active threads,
6165 so we don't have any TID numbers the inferior will
6166 understand. Make sure to only send forms that do not specify
6167 a TID. */
a9cbf802 6168 append_resumption (p, endp, minus_one_ptid, step, siggnal);
506fb367 6169 }
d7e15655 6170 else if (ptid == minus_one_ptid || ptid.is_pid ())
506fb367 6171 {
0d8f58ca
PA
6172 /* Resume all threads (of all processes, or of a single
6173 process), with preference for INFERIOR_PTID. This assumes
6174 inferior_ptid belongs to the set of all threads we are about
6175 to resume. */
a493e3e2 6176 if (step || siggnal != GDB_SIGNAL_0)
82f73884 6177 {
0d8f58ca
PA
6178 /* Step inferior_ptid, with or without signal. */
6179 p = append_resumption (p, endp, inferior_ptid, step, siggnal);
82f73884 6180 }
0d8f58ca 6181
e5ef252a
PA
6182 /* Also pass down any pending signaled resumption for other
6183 threads not the current. */
6184 p = append_pending_thread_resumptions (p, endp, ptid);
6185
0d8f58ca 6186 /* And continue others without a signal. */
a493e3e2 6187 append_resumption (p, endp, ptid, /*step=*/ 0, GDB_SIGNAL_0);
c906108c
SS
6188 }
6189 else
506fb367
DJ
6190 {
6191 /* Scheduler locking; resume only PTID. */
a9cbf802 6192 append_resumption (p, endp, ptid, step, siggnal);
506fb367 6193 }
c906108c 6194
8d64371b 6195 gdb_assert (strlen (rs->buf.data ()) < get_remote_packet_size ());
82f73884 6196 putpkt (rs->buf);
506fb367 6197
6efcd9a8 6198 if (target_is_non_stop_p ())
74531fed
PA
6199 {
6200 /* In non-stop, the stub replies to vCont with "OK". The stop
6201 reply will be reported asynchronously by means of a `%Stop'
6202 notification. */
8d64371b
TT
6203 getpkt (&rs->buf, 0);
6204 if (strcmp (rs->buf.data (), "OK") != 0)
6205 error (_("Unexpected vCont reply in non-stop mode: %s"),
6206 rs->buf.data ());
74531fed
PA
6207 }
6208
506fb367 6209 return 1;
c906108c 6210}
43ff13b4 6211
506fb367
DJ
6212/* Tell the remote machine to resume. */
6213
f6ac5f3d
PA
6214void
6215remote_target::resume (ptid_t ptid, int step, enum gdb_signal siggnal)
43ff13b4 6216{
d01949b6 6217 struct remote_state *rs = get_remote_state ();
43ff13b4 6218
85ad3aaf
PA
6219 /* When connected in non-stop mode, the core resumes threads
6220 individually. Resuming remote threads directly in target_resume
6221 would thus result in sending one packet per thread. Instead, to
6222 minimize roundtrip latency, here we just store the resume
6223 request; the actual remote resumption will be done in
6224 target_commit_resume / remote_commit_resume, where we'll be able
6225 to do vCont action coalescing. */
f6ac5f3d 6226 if (target_is_non_stop_p () && ::execution_direction != EXEC_REVERSE)
85ad3aaf 6227 {
7aabaf9d 6228 remote_thread_info *remote_thr;
85ad3aaf 6229
d7e15655 6230 if (minus_one_ptid == ptid || ptid.is_pid ())
7aabaf9d 6231 remote_thr = get_remote_thread_info (inferior_ptid);
85ad3aaf 6232 else
7aabaf9d
SM
6233 remote_thr = get_remote_thread_info (ptid);
6234
85ad3aaf
PA
6235 remote_thr->last_resume_step = step;
6236 remote_thr->last_resume_sig = siggnal;
6237 return;
6238 }
6239
722247f1
YQ
6240 /* In all-stop, we can't mark REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN
6241 (explained in remote-notif.c:handle_notification) so
6242 remote_notif_process is not called. We need find a place where
6243 it is safe to start a 'vNotif' sequence. It is good to do it
6244 before resuming inferior, because inferior was stopped and no RSP
6245 traffic at that moment. */
6efcd9a8 6246 if (!target_is_non_stop_p ())
5965e028 6247 remote_notif_process (rs->notif_state, &notif_client_stop);
722247f1 6248
f6ac5f3d 6249 rs->last_resume_exec_dir = ::execution_direction;
3a00c802 6250
7b68ffbb
PA
6251 /* Prefer vCont, and fallback to s/c/S/C, which use Hc. */
6252 if (!remote_resume_with_vcont (ptid, step, siggnal))
6b8edb51 6253 remote_resume_with_hc (ptid, step, siggnal);
43ff13b4 6254
2acceee2 6255 /* We are about to start executing the inferior, let's register it
0df8b418
MS
6256 with the event loop. NOTE: this is the one place where all the
6257 execution commands end up. We could alternatively do this in each
23860348 6258 of the execution commands in infcmd.c. */
2acceee2
JM
6259 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
6260 into infcmd.c in order to allow inferior function calls to work
23860348 6261 NOT asynchronously. */
362646f5 6262 if (target_can_async_p ())
6a3753b3 6263 target_async (1);
e24a49d8
PA
6264
6265 /* We've just told the target to resume. The remote server will
6266 wait for the inferior to stop, and then send a stop reply. In
6267 the mean time, we can't start another command/query ourselves
74531fed
PA
6268 because the stub wouldn't be ready to process it. This applies
6269 only to the base all-stop protocol, however. In non-stop (which
6270 only supports vCont), the stub replies with an "OK", and is
6271 immediate able to process further serial input. */
6efcd9a8 6272 if (!target_is_non_stop_p ())
74531fed 6273 rs->waiting_for_stop_reply = 1;
43ff13b4 6274}
85ad3aaf 6275
85ad3aaf
PA
6276static int is_pending_fork_parent_thread (struct thread_info *thread);
6277
6278/* Private per-inferior info for target remote processes. */
6279
089354bb 6280struct remote_inferior : public private_inferior
85ad3aaf
PA
6281{
6282 /* Whether we can send a wildcard vCont for this process. */
089354bb 6283 bool may_wildcard_vcont = true;
85ad3aaf
PA
6284};
6285
089354bb
SM
6286/* Get the remote private inferior data associated to INF. */
6287
6288static remote_inferior *
6289get_remote_inferior (inferior *inf)
6290{
6291 if (inf->priv == NULL)
6292 inf->priv.reset (new remote_inferior);
6293
6294 return static_cast<remote_inferior *> (inf->priv.get ());
6295}
6296
f5db4863 6297/* Class used to track the construction of a vCont packet in the
85ad3aaf
PA
6298 outgoing packet buffer. This is used to send multiple vCont
6299 packets if we have more actions than would fit a single packet. */
6300
f5db4863 6301class vcont_builder
85ad3aaf 6302{
f5db4863 6303public:
6b8edb51
PA
6304 explicit vcont_builder (remote_target *remote)
6305 : m_remote (remote)
f5db4863
PA
6306 {
6307 restart ();
6308 }
6309
6310 void flush ();
6311 void push_action (ptid_t ptid, bool step, gdb_signal siggnal);
6312
6313private:
6314 void restart ();
6315
6b8edb51
PA
6316 /* The remote target. */
6317 remote_target *m_remote;
6318
85ad3aaf
PA
6319 /* Pointer to the first action. P points here if no action has been
6320 appended yet. */
f5db4863 6321 char *m_first_action;
85ad3aaf
PA
6322
6323 /* Where the next action will be appended. */
f5db4863 6324 char *m_p;
85ad3aaf
PA
6325
6326 /* The end of the buffer. Must never write past this. */
f5db4863 6327 char *m_endp;
85ad3aaf
PA
6328};
6329
6330/* Prepare the outgoing buffer for a new vCont packet. */
6331
f5db4863
PA
6332void
6333vcont_builder::restart ()
85ad3aaf 6334{
6b8edb51 6335 struct remote_state *rs = m_remote->get_remote_state ();
85ad3aaf 6336
8d64371b
TT
6337 m_p = rs->buf.data ();
6338 m_endp = m_p + m_remote->get_remote_packet_size ();
f5db4863
PA
6339 m_p += xsnprintf (m_p, m_endp - m_p, "vCont");
6340 m_first_action = m_p;
85ad3aaf
PA
6341}
6342
6343/* If the vCont packet being built has any action, send it to the
6344 remote end. */
6345
f5db4863
PA
6346void
6347vcont_builder::flush ()
85ad3aaf
PA
6348{
6349 struct remote_state *rs;
6350
f5db4863 6351 if (m_p == m_first_action)
85ad3aaf
PA
6352 return;
6353
6b8edb51
PA
6354 rs = m_remote->get_remote_state ();
6355 m_remote->putpkt (rs->buf);
8d64371b
TT
6356 m_remote->getpkt (&rs->buf, 0);
6357 if (strcmp (rs->buf.data (), "OK") != 0)
6358 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf.data ());
85ad3aaf
PA
6359}
6360
6361/* The largest action is range-stepping, with its two addresses. This
6362 is more than sufficient. If a new, bigger action is created, it'll
6363 quickly trigger a failed assertion in append_resumption (and we'll
6364 just bump this). */
6365#define MAX_ACTION_SIZE 200
6366
6367/* Append a new vCont action in the outgoing packet being built. If
6368 the action doesn't fit the packet along with previous actions, push
6369 what we've got so far to the remote end and start over a new vCont
6370 packet (with the new action). */
6371
f5db4863
PA
6372void
6373vcont_builder::push_action (ptid_t ptid, bool step, gdb_signal siggnal)
85ad3aaf
PA
6374{
6375 char buf[MAX_ACTION_SIZE + 1];
85ad3aaf 6376
6b8edb51
PA
6377 char *endp = m_remote->append_resumption (buf, buf + sizeof (buf),
6378 ptid, step, siggnal);
85ad3aaf
PA
6379
6380 /* Check whether this new action would fit in the vCont packet along
6381 with previous actions. If not, send what we've got so far and
6382 start a new vCont packet. */
f5db4863
PA
6383 size_t rsize = endp - buf;
6384 if (rsize > m_endp - m_p)
85ad3aaf 6385 {
f5db4863
PA
6386 flush ();
6387 restart ();
85ad3aaf
PA
6388
6389 /* Should now fit. */
f5db4863 6390 gdb_assert (rsize <= m_endp - m_p);
85ad3aaf
PA
6391 }
6392
f5db4863
PA
6393 memcpy (m_p, buf, rsize);
6394 m_p += rsize;
6395 *m_p = '\0';
85ad3aaf
PA
6396}
6397
6398/* to_commit_resume implementation. */
6399
f6ac5f3d
PA
6400void
6401remote_target::commit_resume ()
85ad3aaf 6402{
85ad3aaf
PA
6403 int any_process_wildcard;
6404 int may_global_wildcard_vcont;
85ad3aaf
PA
6405
6406 /* If connected in all-stop mode, we'd send the remote resume
6407 request directly from remote_resume. Likewise if
6408 reverse-debugging, as there are no defined vCont actions for
6409 reverse execution. */
f6ac5f3d 6410 if (!target_is_non_stop_p () || ::execution_direction == EXEC_REVERSE)
85ad3aaf
PA
6411 return;
6412
6413 /* Try to send wildcard actions ("vCont;c" or "vCont;c:pPID.-1")
6414 instead of resuming all threads of each process individually.
6415 However, if any thread of a process must remain halted, we can't
6416 send wildcard resumes and must send one action per thread.
6417
6418 Care must be taken to not resume threads/processes the server
6419 side already told us are stopped, but the core doesn't know about
6420 yet, because the events are still in the vStopped notification
6421 queue. For example:
6422
6423 #1 => vCont s:p1.1;c
6424 #2 <= OK
6425 #3 <= %Stopped T05 p1.1
6426 #4 => vStopped
6427 #5 <= T05 p1.2
6428 #6 => vStopped
6429 #7 <= OK
6430 #8 (infrun handles the stop for p1.1 and continues stepping)
6431 #9 => vCont s:p1.1;c
6432
6433 The last vCont above would resume thread p1.2 by mistake, because
6434 the server has no idea that the event for p1.2 had not been
6435 handled yet.
6436
6437 The server side must similarly ignore resume actions for the
6438 thread that has a pending %Stopped notification (and any other
6439 threads with events pending), until GDB acks the notification
6440 with vStopped. Otherwise, e.g., the following case is
6441 mishandled:
6442
6443 #1 => g (or any other packet)
6444 #2 <= [registers]
6445 #3 <= %Stopped T05 p1.2
6446 #4 => vCont s:p1.1;c
6447 #5 <= OK
6448
6449 Above, the server must not resume thread p1.2. GDB can't know
6450 that p1.2 stopped until it acks the %Stopped notification, and
6451 since from GDB's perspective all threads should be running, it
6452 sends a "c" action.
6453
6454 Finally, special care must also be given to handling fork/vfork
6455 events. A (v)fork event actually tells us that two processes
6456 stopped -- the parent and the child. Until we follow the fork,
6457 we must not resume the child. Therefore, if we have a pending
6458 fork follow, we must not send a global wildcard resume action
6459 (vCont;c). We can still send process-wide wildcards though. */
6460
6461 /* Start by assuming a global wildcard (vCont;c) is possible. */
6462 may_global_wildcard_vcont = 1;
6463
6464 /* And assume every process is individually wildcard-able too. */
08036331 6465 for (inferior *inf : all_non_exited_inferiors ())
85ad3aaf 6466 {
089354bb
SM
6467 remote_inferior *priv = get_remote_inferior (inf);
6468
6469 priv->may_wildcard_vcont = true;
85ad3aaf
PA
6470 }
6471
6472 /* Check for any pending events (not reported or processed yet) and
6473 disable process and global wildcard resumes appropriately. */
6474 check_pending_events_prevent_wildcard_vcont (&may_global_wildcard_vcont);
6475
08036331 6476 for (thread_info *tp : all_non_exited_threads ())
85ad3aaf
PA
6477 {
6478 /* If a thread of a process is not meant to be resumed, then we
6479 can't wildcard that process. */
6480 if (!tp->executing)
6481 {
089354bb 6482 get_remote_inferior (tp->inf)->may_wildcard_vcont = false;
85ad3aaf
PA
6483
6484 /* And if we can't wildcard a process, we can't wildcard
6485 everything either. */
6486 may_global_wildcard_vcont = 0;
6487 continue;
6488 }
6489
6490 /* If a thread is the parent of an unfollowed fork, then we
6491 can't do a global wildcard, as that would resume the fork
6492 child. */
6493 if (is_pending_fork_parent_thread (tp))
6494 may_global_wildcard_vcont = 0;
6495 }
6496
6497 /* Now let's build the vCont packet(s). Actions must be appended
6498 from narrower to wider scopes (thread -> process -> global). If
6499 we end up with too many actions for a single packet vcont_builder
6500 flushes the current vCont packet to the remote side and starts a
6501 new one. */
6b8edb51 6502 struct vcont_builder vcont_builder (this);
85ad3aaf
PA
6503
6504 /* Threads first. */
08036331 6505 for (thread_info *tp : all_non_exited_threads ())
85ad3aaf 6506 {
7aabaf9d 6507 remote_thread_info *remote_thr = get_remote_thread_info (tp);
85ad3aaf
PA
6508
6509 if (!tp->executing || remote_thr->vcont_resumed)
6510 continue;
6511
6512 gdb_assert (!thread_is_in_step_over_chain (tp));
6513
6514 if (!remote_thr->last_resume_step
6515 && remote_thr->last_resume_sig == GDB_SIGNAL_0
089354bb 6516 && get_remote_inferior (tp->inf)->may_wildcard_vcont)
85ad3aaf
PA
6517 {
6518 /* We'll send a wildcard resume instead. */
6519 remote_thr->vcont_resumed = 1;
6520 continue;
6521 }
6522
f5db4863 6523 vcont_builder.push_action (tp->ptid,
85ad3aaf
PA
6524 remote_thr->last_resume_step,
6525 remote_thr->last_resume_sig);
6526 remote_thr->vcont_resumed = 1;
6527 }
6528
6529 /* Now check whether we can send any process-wide wildcard. This is
6530 to avoid sending a global wildcard in the case nothing is
6531 supposed to be resumed. */
6532 any_process_wildcard = 0;
6533
08036331 6534 for (inferior *inf : all_non_exited_inferiors ())
85ad3aaf 6535 {
089354bb 6536 if (get_remote_inferior (inf)->may_wildcard_vcont)
85ad3aaf
PA
6537 {
6538 any_process_wildcard = 1;
6539 break;
6540 }
6541 }
6542
6543 if (any_process_wildcard)
6544 {
6545 /* If all processes are wildcard-able, then send a single "c"
6546 action, otherwise, send an "all (-1) threads of process"
6547 continue action for each running process, if any. */
6548 if (may_global_wildcard_vcont)
6549 {
f5db4863
PA
6550 vcont_builder.push_action (minus_one_ptid,
6551 false, GDB_SIGNAL_0);
85ad3aaf
PA
6552 }
6553 else
6554 {
08036331 6555 for (inferior *inf : all_non_exited_inferiors ())
85ad3aaf 6556 {
089354bb 6557 if (get_remote_inferior (inf)->may_wildcard_vcont)
85ad3aaf 6558 {
f2907e49 6559 vcont_builder.push_action (ptid_t (inf->pid),
f5db4863 6560 false, GDB_SIGNAL_0);
85ad3aaf
PA
6561 }
6562 }
6563 }
6564 }
6565
f5db4863 6566 vcont_builder.flush ();
85ad3aaf
PA
6567}
6568
c906108c 6569\f
43ff13b4 6570
74531fed
PA
6571/* Non-stop version of target_stop. Uses `vCont;t' to stop a remote
6572 thread, all threads of a remote process, or all threads of all
6573 processes. */
6574
6b8edb51
PA
6575void
6576remote_target::remote_stop_ns (ptid_t ptid)
74531fed
PA
6577{
6578 struct remote_state *rs = get_remote_state ();
8d64371b
TT
6579 char *p = rs->buf.data ();
6580 char *endp = p + get_remote_packet_size ();
74531fed 6581
4082afcc 6582 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6b8edb51 6583 remote_vcont_probe ();
74531fed 6584
d458bd84 6585 if (!rs->supports_vCont.t)
74531fed
PA
6586 error (_("Remote server does not support stopping threads"));
6587
d7e15655 6588 if (ptid == minus_one_ptid
0e998d96 6589 || (!remote_multi_process_p (rs) && ptid.is_pid ()))
74531fed
PA
6590 p += xsnprintf (p, endp - p, "vCont;t");
6591 else
6592 {
6593 ptid_t nptid;
6594
74531fed
PA
6595 p += xsnprintf (p, endp - p, "vCont;t:");
6596
0e998d96 6597 if (ptid.is_pid ())
74531fed 6598 /* All (-1) threads of process. */
e99b03dc 6599 nptid = ptid_t (ptid.pid (), -1, 0);
74531fed
PA
6600 else
6601 {
6602 /* Small optimization: if we already have a stop reply for
6603 this thread, no use in telling the stub we want this
6604 stopped. */
6605 if (peek_stop_reply (ptid))
6606 return;
6607
6608 nptid = ptid;
6609 }
6610
a9cbf802 6611 write_ptid (p, endp, nptid);
74531fed
PA
6612 }
6613
6614 /* In non-stop, we get an immediate OK reply. The stop reply will
6615 come in asynchronously by notification. */
6616 putpkt (rs->buf);
8d64371b
TT
6617 getpkt (&rs->buf, 0);
6618 if (strcmp (rs->buf.data (), "OK") != 0)
a068643d 6619 error (_("Stopping %s failed: %s"), target_pid_to_str (ptid).c_str (),
8d64371b 6620 rs->buf.data ());
74531fed
PA
6621}
6622
bfedc46a
PA
6623/* All-stop version of target_interrupt. Sends a break or a ^C to
6624 interrupt the remote target. It is undefined which thread of which
6625 process reports the interrupt. */
74531fed 6626
6b8edb51
PA
6627void
6628remote_target::remote_interrupt_as ()
74531fed
PA
6629{
6630 struct remote_state *rs = get_remote_state ();
6631
3a29589a
DJ
6632 rs->ctrlc_pending_p = 1;
6633
74531fed
PA
6634 /* If the inferior is stopped already, but the core didn't know
6635 about it yet, just ignore the request. The cached wait status
6636 will be collected in remote_wait. */
6637 if (rs->cached_wait_status)
6638 return;
6639
9a7071a8
JB
6640 /* Send interrupt_sequence to remote target. */
6641 send_interrupt_sequence ();
74531fed
PA
6642}
6643
de979965
PA
6644/* Non-stop version of target_interrupt. Uses `vCtrlC' to interrupt
6645 the remote target. It is undefined which thread of which process
e42de8c7
PA
6646 reports the interrupt. Throws an error if the packet is not
6647 supported by the server. */
de979965 6648
6b8edb51
PA
6649void
6650remote_target::remote_interrupt_ns ()
de979965
PA
6651{
6652 struct remote_state *rs = get_remote_state ();
8d64371b
TT
6653 char *p = rs->buf.data ();
6654 char *endp = p + get_remote_packet_size ();
de979965
PA
6655
6656 xsnprintf (p, endp - p, "vCtrlC");
6657
6658 /* In non-stop, we get an immediate OK reply. The stop reply will
6659 come in asynchronously by notification. */
6660 putpkt (rs->buf);
8d64371b 6661 getpkt (&rs->buf, 0);
de979965
PA
6662
6663 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCtrlC]))
6664 {
6665 case PACKET_OK:
6666 break;
6667 case PACKET_UNKNOWN:
e42de8c7 6668 error (_("No support for interrupting the remote target."));
de979965 6669 case PACKET_ERROR:
8d64371b 6670 error (_("Interrupting target failed: %s"), rs->buf.data ());
de979965 6671 }
de979965
PA
6672}
6673
bfedc46a 6674/* Implement the to_stop function for the remote targets. */
74531fed 6675
f6ac5f3d
PA
6676void
6677remote_target::stop (ptid_t ptid)
c906108c 6678{
7a292a7a 6679 if (remote_debug)
0f71a2f6 6680 fprintf_unfiltered (gdb_stdlog, "remote_stop called\n");
c906108c 6681
6efcd9a8 6682 if (target_is_non_stop_p ())
74531fed 6683 remote_stop_ns (ptid);
c906108c 6684 else
bfedc46a
PA
6685 {
6686 /* We don't currently have a way to transparently pause the
6687 remote target in all-stop mode. Interrupt it instead. */
de979965 6688 remote_interrupt_as ();
bfedc46a
PA
6689 }
6690}
6691
6692/* Implement the to_interrupt function for the remote targets. */
6693
f6ac5f3d
PA
6694void
6695remote_target::interrupt ()
bfedc46a
PA
6696{
6697 if (remote_debug)
6698 fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n");
6699
e42de8c7
PA
6700 if (target_is_non_stop_p ())
6701 remote_interrupt_ns ();
bfedc46a 6702 else
e42de8c7 6703 remote_interrupt_as ();
c906108c
SS
6704}
6705
93692b58
PA
6706/* Implement the to_pass_ctrlc function for the remote targets. */
6707
f6ac5f3d
PA
6708void
6709remote_target::pass_ctrlc ()
93692b58
PA
6710{
6711 struct remote_state *rs = get_remote_state ();
6712
6713 if (remote_debug)
6714 fprintf_unfiltered (gdb_stdlog, "remote_pass_ctrlc called\n");
6715
6716 /* If we're starting up, we're not fully synced yet. Quit
6717 immediately. */
6718 if (rs->starting_up)
6719 quit ();
6720 /* If ^C has already been sent once, offer to disconnect. */
6721 else if (rs->ctrlc_pending_p)
6722 interrupt_query ();
6723 else
e671cd59 6724 target_interrupt ();
93692b58
PA
6725}
6726
c906108c
SS
6727/* Ask the user what to do when an interrupt is received. */
6728
6b8edb51
PA
6729void
6730remote_target::interrupt_query ()
c906108c 6731{
abc56d60 6732 struct remote_state *rs = get_remote_state ();
c906108c 6733
abc56d60 6734 if (rs->waiting_for_stop_reply && rs->ctrlc_pending_p)
74531fed 6735 {
abc56d60
PA
6736 if (query (_("The target is not responding to interrupt requests.\n"
6737 "Stop debugging it? ")))
74531fed 6738 {
78a095c3 6739 remote_unpush_target ();
abc56d60 6740 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
74531fed
PA
6741 }
6742 }
abc56d60
PA
6743 else
6744 {
6745 if (query (_("Interrupted while waiting for the program.\n"
6746 "Give up waiting? ")))
6747 quit ();
6748 }
c906108c
SS
6749}
6750
6426a772
JM
6751/* Enable/disable target terminal ownership. Most targets can use
6752 terminal groups to control terminal ownership. Remote targets are
6753 different in that explicit transfer of ownership to/from GDB/target
23860348 6754 is required. */
6426a772 6755
f6ac5f3d
PA
6756void
6757remote_target::terminal_inferior ()
6426a772 6758{
6426a772
JM
6759 /* NOTE: At this point we could also register our selves as the
6760 recipient of all input. Any characters typed could then be
23860348 6761 passed on down to the target. */
6426a772
JM
6762}
6763
f6ac5f3d
PA
6764void
6765remote_target::terminal_ours ()
6426a772 6766{
6426a772
JM
6767}
6768
176a6961 6769static void
05be00a8 6770remote_console_output (const char *msg)
c906108c 6771{
05be00a8 6772 const char *p;
c906108c 6773
c5aa993b 6774 for (p = msg; p[0] && p[1]; p += 2)
c906108c
SS
6775 {
6776 char tb[2];
6777 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
a744cf53 6778
c906108c
SS
6779 tb[0] = c;
6780 tb[1] = 0;
43ff13b4 6781 fputs_unfiltered (tb, gdb_stdtarg);
c906108c 6782 }
00db5b94
PA
6783 gdb_flush (gdb_stdtarg);
6784}
74531fed 6785
32603266 6786struct stop_reply : public notif_event
74531fed 6787{
32603266 6788 ~stop_reply ();
74531fed 6789
722247f1 6790 /* The identifier of the thread about this event */
74531fed
PA
6791 ptid_t ptid;
6792
340e3c99 6793 /* The remote state this event is associated with. When the remote
bcc75809
YQ
6794 connection, represented by a remote_state object, is closed,
6795 all the associated stop_reply events should be released. */
6796 struct remote_state *rs;
6797
74531fed
PA
6798 struct target_waitstatus ws;
6799
5cd63fda
PA
6800 /* The architecture associated with the expedited registers. */
6801 gdbarch *arch;
6802
15148d6a
PA
6803 /* Expedited registers. This makes remote debugging a bit more
6804 efficient for those targets that provide critical registers as
6805 part of their normal status mechanism (as another roundtrip to
6806 fetch them is avoided). */
32603266 6807 std::vector<cached_reg_t> regcache;
74531fed 6808
f7e6eed5
PA
6809 enum target_stop_reason stop_reason;
6810
74531fed
PA
6811 CORE_ADDR watch_data_address;
6812
dc146f7c 6813 int core;
32603266 6814};
c906108c 6815
221e1a37
PA
6816/* Return the length of the stop reply queue. */
6817
6b8edb51
PA
6818int
6819remote_target::stop_reply_queue_length ()
221e1a37 6820{
6b8edb51 6821 remote_state *rs = get_remote_state ();
953edf2b 6822 return rs->stop_reply_queue.size ();
221e1a37
PA
6823}
6824
cb8c24b6 6825static void
6b8edb51 6826remote_notif_stop_parse (remote_target *remote,
bb277751 6827 struct notif_client *self, const char *buf,
722247f1
YQ
6828 struct notif_event *event)
6829{
6b8edb51 6830 remote->remote_parse_stop_reply (buf, (struct stop_reply *) event);
722247f1
YQ
6831}
6832
6833static void
6b8edb51 6834remote_notif_stop_ack (remote_target *remote,
bb277751 6835 struct notif_client *self, const char *buf,
722247f1
YQ
6836 struct notif_event *event)
6837{
6838 struct stop_reply *stop_reply = (struct stop_reply *) event;
6839
6840 /* acknowledge */
6b8edb51 6841 putpkt (remote, self->ack_command);
722247f1
YQ
6842
6843 if (stop_reply->ws.kind == TARGET_WAITKIND_IGNORE)
6b8edb51 6844 {
722247f1
YQ
6845 /* We got an unknown stop reply. */
6846 error (_("Unknown stop reply"));
6b8edb51 6847 }
722247f1 6848
6b8edb51 6849 remote->push_stop_reply (stop_reply);
722247f1
YQ
6850}
6851
6852static int
6b8edb51
PA
6853remote_notif_stop_can_get_pending_events (remote_target *remote,
6854 struct notif_client *self)
722247f1
YQ
6855{
6856 /* We can't get pending events in remote_notif_process for
6857 notification stop, and we have to do this in remote_wait_ns
6858 instead. If we fetch all queued events from stub, remote stub
6859 may exit and we have no chance to process them back in
6860 remote_wait_ns. */
6b8edb51
PA
6861 remote_state *rs = remote->get_remote_state ();
6862 mark_async_event_handler (rs->remote_async_inferior_event_token);
722247f1
YQ
6863 return 0;
6864}
6865
32603266 6866stop_reply::~stop_reply ()
722247f1 6867{
32603266
TT
6868 for (cached_reg_t &reg : regcache)
6869 xfree (reg.data);
722247f1
YQ
6870}
6871
32603266
TT
6872static notif_event_up
6873remote_notif_stop_alloc_reply ()
722247f1 6874{
32603266 6875 return notif_event_up (new struct stop_reply ());
722247f1
YQ
6876}
6877
6878/* A client of notification Stop. */
6879
6880struct notif_client notif_client_stop =
6881{
6882 "Stop",
6883 "vStopped",
6884 remote_notif_stop_parse,
6885 remote_notif_stop_ack,
6886 remote_notif_stop_can_get_pending_events,
6887 remote_notif_stop_alloc_reply,
f48ff2a7 6888 REMOTE_NOTIF_STOP,
722247f1
YQ
6889};
6890
85ad3aaf 6891/* Determine if THREAD_PTID is a pending fork parent thread. ARG contains
cbb8991c
DB
6892 the pid of the process that owns the threads we want to check, or
6893 -1 if we want to check all threads. */
6894
6895static int
6896is_pending_fork_parent (struct target_waitstatus *ws, int event_pid,
6897 ptid_t thread_ptid)
6898{
6899 if (ws->kind == TARGET_WAITKIND_FORKED
6900 || ws->kind == TARGET_WAITKIND_VFORKED)
6901 {
e99b03dc 6902 if (event_pid == -1 || event_pid == thread_ptid.pid ())
cbb8991c
DB
6903 return 1;
6904 }
6905
6906 return 0;
6907}
6908
85ad3aaf
PA
6909/* Return the thread's pending status used to determine whether the
6910 thread is a fork parent stopped at a fork event. */
6911
6912static struct target_waitstatus *
6913thread_pending_fork_status (struct thread_info *thread)
6914{
6915 if (thread->suspend.waitstatus_pending_p)
6916 return &thread->suspend.waitstatus;
6917 else
6918 return &thread->pending_follow;
6919}
6920
6921/* Determine if THREAD is a pending fork parent thread. */
6922
6923static int
6924is_pending_fork_parent_thread (struct thread_info *thread)
6925{
6926 struct target_waitstatus *ws = thread_pending_fork_status (thread);
6927 int pid = -1;
6928
6929 return is_pending_fork_parent (ws, pid, thread->ptid);
6930}
6931
cbb8991c
DB
6932/* If CONTEXT contains any fork child threads that have not been
6933 reported yet, remove them from the CONTEXT list. If such a
6934 thread exists it is because we are stopped at a fork catchpoint
6935 and have not yet called follow_fork, which will set up the
6936 host-side data structures for the new process. */
6937
6b8edb51
PA
6938void
6939remote_target::remove_new_fork_children (threads_listing_context *context)
cbb8991c 6940{
cbb8991c
DB
6941 int pid = -1;
6942 struct notif_client *notif = &notif_client_stop;
cbb8991c
DB
6943
6944 /* For any threads stopped at a fork event, remove the corresponding
6945 fork child threads from the CONTEXT list. */
08036331 6946 for (thread_info *thread : all_non_exited_threads ())
cbb8991c 6947 {
85ad3aaf 6948 struct target_waitstatus *ws = thread_pending_fork_status (thread);
cbb8991c
DB
6949
6950 if (is_pending_fork_parent (ws, pid, thread->ptid))
21fe1c75 6951 context->remove_thread (ws->value.related_pid);
cbb8991c
DB
6952 }
6953
6954 /* Check for any pending fork events (not reported or processed yet)
6955 in process PID and remove those fork child threads from the
6956 CONTEXT list as well. */
6957 remote_notif_get_pending_events (notif);
953edf2b
TT
6958 for (auto &event : get_remote_state ()->stop_reply_queue)
6959 if (event->ws.kind == TARGET_WAITKIND_FORKED
6960 || event->ws.kind == TARGET_WAITKIND_VFORKED
6961 || event->ws.kind == TARGET_WAITKIND_THREAD_EXITED)
6962 context->remove_thread (event->ws.value.related_pid);
85ad3aaf
PA
6963}
6964
6965/* Check whether any event pending in the vStopped queue would prevent
6966 a global or process wildcard vCont action. Clear
6967 *may_global_wildcard if we can't do a global wildcard (vCont;c),
6968 and clear the event inferior's may_wildcard_vcont flag if we can't
6969 do a process-wide wildcard resume (vCont;c:pPID.-1). */
6970
6b8edb51
PA
6971void
6972remote_target::check_pending_events_prevent_wildcard_vcont
6973 (int *may_global_wildcard)
85ad3aaf
PA
6974{
6975 struct notif_client *notif = &notif_client_stop;
6976
6977 remote_notif_get_pending_events (notif);
953edf2b
TT
6978 for (auto &event : get_remote_state ()->stop_reply_queue)
6979 {
6980 if (event->ws.kind == TARGET_WAITKIND_NO_RESUMED
6981 || event->ws.kind == TARGET_WAITKIND_NO_HISTORY)
6982 continue;
85ad3aaf 6983
953edf2b
TT
6984 if (event->ws.kind == TARGET_WAITKIND_FORKED
6985 || event->ws.kind == TARGET_WAITKIND_VFORKED)
6986 *may_global_wildcard = 0;
722247f1 6987
953edf2b 6988 struct inferior *inf = find_inferior_ptid (event->ptid);
722247f1 6989
953edf2b
TT
6990 /* This may be the first time we heard about this process.
6991 Regardless, we must not do a global wildcard resume, otherwise
6992 we'd resume this process too. */
6993 *may_global_wildcard = 0;
6994 if (inf != NULL)
6995 get_remote_inferior (inf)->may_wildcard_vcont = false;
722247f1 6996 }
722247f1
YQ
6997}
6998
f48ff2a7 6999/* Discard all pending stop replies of inferior INF. */
c906108c 7000
6b8edb51
PA
7001void
7002remote_target::discard_pending_stop_replies (struct inferior *inf)
c906108c 7003{
f48ff2a7
YQ
7004 struct stop_reply *reply;
7005 struct remote_state *rs = get_remote_state ();
7006 struct remote_notif_state *rns = rs->notif_state;
7007
7008 /* This function can be notified when an inferior exists. When the
7009 target is not remote, the notification state is NULL. */
7010 if (rs->remote_desc == NULL)
7011 return;
7012
7013 reply = (struct stop_reply *) rns->pending_event[notif_client_stop.id];
c906108c 7014
74531fed 7015 /* Discard the in-flight notification. */
e99b03dc 7016 if (reply != NULL && reply->ptid.pid () == inf->pid)
74531fed 7017 {
32603266 7018 delete reply;
f48ff2a7 7019 rns->pending_event[notif_client_stop.id] = NULL;
74531fed 7020 }
c906108c 7021
74531fed
PA
7022 /* Discard the stop replies we have already pulled with
7023 vStopped. */
953edf2b
TT
7024 auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7025 rs->stop_reply_queue.end (),
7026 [=] (const stop_reply_up &event)
7027 {
7028 return event->ptid.pid () == inf->pid;
7029 });
7030 rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
bcc75809
YQ
7031}
7032
7033/* Discard the stop replies for RS in stop_reply_queue. */
f48ff2a7 7034
6b8edb51
PA
7035void
7036remote_target::discard_pending_stop_replies_in_queue ()
f48ff2a7 7037{
6b8edb51 7038 remote_state *rs = get_remote_state ();
f48ff2a7 7039
f48ff2a7
YQ
7040 /* Discard the stop replies we have already pulled with
7041 vStopped. */
953edf2b
TT
7042 auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7043 rs->stop_reply_queue.end (),
7044 [=] (const stop_reply_up &event)
7045 {
7046 return event->rs == rs;
7047 });
7048 rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
74531fed 7049}
43ff13b4 7050
722247f1
YQ
7051/* Remove the first reply in 'stop_reply_queue' which matches
7052 PTID. */
2e9f7625 7053
6b8edb51
PA
7054struct stop_reply *
7055remote_target::remote_notif_remove_queued_reply (ptid_t ptid)
74531fed 7056{
953edf2b 7057 remote_state *rs = get_remote_state ();
722247f1 7058
953edf2b
TT
7059 auto iter = std::find_if (rs->stop_reply_queue.begin (),
7060 rs->stop_reply_queue.end (),
7061 [=] (const stop_reply_up &event)
7062 {
7063 return event->ptid.matches (ptid);
7064 });
7065 struct stop_reply *result;
7066 if (iter == rs->stop_reply_queue.end ())
7067 result = nullptr;
7068 else
7069 {
7070 result = iter->release ();
7071 rs->stop_reply_queue.erase (iter);
7072 }
722247f1 7073
722247f1
YQ
7074 if (notif_debug)
7075 fprintf_unfiltered (gdb_stdlog,
7076 "notif: discard queued event: 'Stop' in %s\n",
a068643d 7077 target_pid_to_str (ptid).c_str ());
a744cf53 7078
953edf2b 7079 return result;
74531fed 7080}
75c99385 7081
74531fed
PA
7082/* Look for a queued stop reply belonging to PTID. If one is found,
7083 remove it from the queue, and return it. Returns NULL if none is
7084 found. If there are still queued events left to process, tell the
7085 event loop to get back to target_wait soon. */
e24a49d8 7086
6b8edb51
PA
7087struct stop_reply *
7088remote_target::queued_stop_reply (ptid_t ptid)
74531fed 7089{
953edf2b 7090 remote_state *rs = get_remote_state ();
722247f1 7091 struct stop_reply *r = remote_notif_remove_queued_reply (ptid);
74531fed 7092
953edf2b 7093 if (!rs->stop_reply_queue.empty ())
6b8edb51 7094 {
6b8edb51
PA
7095 /* There's still at least an event left. */
7096 mark_async_event_handler (rs->remote_async_inferior_event_token);
7097 }
74531fed 7098
722247f1 7099 return r;
74531fed
PA
7100}
7101
7102/* Push a fully parsed stop reply in the stop reply queue. Since we
7103 know that we now have at least one queued event left to pass to the
7104 core side, tell the event loop to get back to target_wait soon. */
7105
6b8edb51
PA
7106void
7107remote_target::push_stop_reply (struct stop_reply *new_event)
74531fed 7108{
6b8edb51 7109 remote_state *rs = get_remote_state ();
953edf2b 7110 rs->stop_reply_queue.push_back (stop_reply_up (new_event));
74531fed 7111
722247f1
YQ
7112 if (notif_debug)
7113 fprintf_unfiltered (gdb_stdlog,
7114 "notif: push 'Stop' %s to queue %d\n",
a068643d 7115 target_pid_to_str (new_event->ptid).c_str (),
953edf2b 7116 int (rs->stop_reply_queue.size ()));
74531fed 7117
6b8edb51 7118 mark_async_event_handler (rs->remote_async_inferior_event_token);
74531fed
PA
7119}
7120
7121/* Returns true if we have a stop reply for PTID. */
7122
6b8edb51
PA
7123int
7124remote_target::peek_stop_reply (ptid_t ptid)
74531fed 7125{
6b8edb51 7126 remote_state *rs = get_remote_state ();
953edf2b
TT
7127 for (auto &event : rs->stop_reply_queue)
7128 if (ptid == event->ptid
7129 && event->ws.kind == TARGET_WAITKIND_STOPPED)
7130 return 1;
7131 return 0;
74531fed
PA
7132}
7133
26d56a93
SL
7134/* Helper for remote_parse_stop_reply. Return nonzero if the substring
7135 starting with P and ending with PEND matches PREFIX. */
7136
7137static int
7138strprefix (const char *p, const char *pend, const char *prefix)
7139{
7140 for ( ; p < pend; p++, prefix++)
7141 if (*p != *prefix)
7142 return 0;
7143 return *prefix == '\0';
7144}
7145
74531fed
PA
7146/* Parse the stop reply in BUF. Either the function succeeds, and the
7147 result is stored in EVENT, or throws an error. */
7148
6b8edb51 7149void
bb277751 7150remote_target::remote_parse_stop_reply (const char *buf, stop_reply *event)
74531fed 7151{
5cd63fda 7152 remote_arch_state *rsa = NULL;
74531fed 7153 ULONGEST addr;
256642e8 7154 const char *p;
94585166 7155 int skipregs = 0;
74531fed
PA
7156
7157 event->ptid = null_ptid;
bcc75809 7158 event->rs = get_remote_state ();
74531fed
PA
7159 event->ws.kind = TARGET_WAITKIND_IGNORE;
7160 event->ws.value.integer = 0;
f7e6eed5 7161 event->stop_reason = TARGET_STOPPED_BY_NO_REASON;
32603266 7162 event->regcache.clear ();
dc146f7c 7163 event->core = -1;
74531fed
PA
7164
7165 switch (buf[0])
7166 {
7167 case 'T': /* Status with PC, SP, FP, ... */
cea39f65
MS
7168 /* Expedited reply, containing Signal, {regno, reg} repeat. */
7169 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
7170 ss = signal number
7171 n... = register number
7172 r... = register contents
7173 */
7174
7175 p = &buf[3]; /* after Txx */
7176 while (*p)
7177 {
256642e8 7178 const char *p1;
cea39f65 7179 int fieldsize;
43ff13b4 7180
1f10ba14
PA
7181 p1 = strchr (p, ':');
7182 if (p1 == NULL)
7183 error (_("Malformed packet(a) (missing colon): %s\n\
7184Packet: '%s'\n"),
7185 p, buf);
7186 if (p == p1)
7187 error (_("Malformed packet(a) (missing register number): %s\n\
7188Packet: '%s'\n"),
7189 p, buf);
3c3bea1c 7190
1f10ba14
PA
7191 /* Some "registers" are actually extended stop information.
7192 Note if you're adding a new entry here: GDB 7.9 and
7193 earlier assume that all register "numbers" that start
7194 with an hex digit are real register numbers. Make sure
7195 the server only sends such a packet if it knows the
7196 client understands it. */
c8e38a49 7197
26d56a93 7198 if (strprefix (p, p1, "thread"))
1f10ba14 7199 event->ptid = read_ptid (++p1, &p);
82075af2
JS
7200 else if (strprefix (p, p1, "syscall_entry"))
7201 {
7202 ULONGEST sysno;
7203
7204 event->ws.kind = TARGET_WAITKIND_SYSCALL_ENTRY;
7205 p = unpack_varlen_hex (++p1, &sysno);
7206 event->ws.value.syscall_number = (int) sysno;
7207 }
7208 else if (strprefix (p, p1, "syscall_return"))
7209 {
7210 ULONGEST sysno;
7211
7212 event->ws.kind = TARGET_WAITKIND_SYSCALL_RETURN;
7213 p = unpack_varlen_hex (++p1, &sysno);
7214 event->ws.value.syscall_number = (int) sysno;
7215 }
26d56a93
SL
7216 else if (strprefix (p, p1, "watch")
7217 || strprefix (p, p1, "rwatch")
7218 || strprefix (p, p1, "awatch"))
cea39f65 7219 {
f7e6eed5 7220 event->stop_reason = TARGET_STOPPED_BY_WATCHPOINT;
1f10ba14
PA
7221 p = unpack_varlen_hex (++p1, &addr);
7222 event->watch_data_address = (CORE_ADDR) addr;
cea39f65 7223 }
26d56a93 7224 else if (strprefix (p, p1, "swbreak"))
f7e6eed5
PA
7225 {
7226 event->stop_reason = TARGET_STOPPED_BY_SW_BREAKPOINT;
7227
7228 /* Make sure the stub doesn't forget to indicate support
7229 with qSupported. */
7230 if (packet_support (PACKET_swbreak_feature) != PACKET_ENABLE)
7231 error (_("Unexpected swbreak stop reason"));
7232
7233 /* The value part is documented as "must be empty",
7234 though we ignore it, in case we ever decide to make
7235 use of it in a backward compatible way. */
8424cc97 7236 p = strchrnul (p1 + 1, ';');
f7e6eed5 7237 }
26d56a93 7238 else if (strprefix (p, p1, "hwbreak"))
f7e6eed5
PA
7239 {
7240 event->stop_reason = TARGET_STOPPED_BY_HW_BREAKPOINT;
7241
7242 /* Make sure the stub doesn't forget to indicate support
7243 with qSupported. */
7244 if (packet_support (PACKET_hwbreak_feature) != PACKET_ENABLE)
7245 error (_("Unexpected hwbreak stop reason"));
7246
7247 /* See above. */
8424cc97 7248 p = strchrnul (p1 + 1, ';');
f7e6eed5 7249 }
26d56a93 7250 else if (strprefix (p, p1, "library"))
cea39f65 7251 {
1f10ba14 7252 event->ws.kind = TARGET_WAITKIND_LOADED;
8424cc97 7253 p = strchrnul (p1 + 1, ';');
1f10ba14 7254 }
26d56a93 7255 else if (strprefix (p, p1, "replaylog"))
1f10ba14
PA
7256 {
7257 event->ws.kind = TARGET_WAITKIND_NO_HISTORY;
7258 /* p1 will indicate "begin" or "end", but it makes
7259 no difference for now, so ignore it. */
8424cc97 7260 p = strchrnul (p1 + 1, ';');
1f10ba14 7261 }
26d56a93 7262 else if (strprefix (p, p1, "core"))
1f10ba14
PA
7263 {
7264 ULONGEST c;
a744cf53 7265
1f10ba14
PA
7266 p = unpack_varlen_hex (++p1, &c);
7267 event->core = c;
cea39f65 7268 }
26d56a93 7269 else if (strprefix (p, p1, "fork"))
de0d863e
DB
7270 {
7271 event->ws.value.related_pid = read_ptid (++p1, &p);
7272 event->ws.kind = TARGET_WAITKIND_FORKED;
7273 }
26d56a93 7274 else if (strprefix (p, p1, "vfork"))
c269dbdb
DB
7275 {
7276 event->ws.value.related_pid = read_ptid (++p1, &p);
7277 event->ws.kind = TARGET_WAITKIND_VFORKED;
7278 }
26d56a93 7279 else if (strprefix (p, p1, "vforkdone"))
c269dbdb
DB
7280 {
7281 event->ws.kind = TARGET_WAITKIND_VFORK_DONE;
8424cc97 7282 p = strchrnul (p1 + 1, ';');
c269dbdb 7283 }
6ab24463 7284 else if (strprefix (p, p1, "exec"))
94585166
DB
7285 {
7286 ULONGEST ignored;
94585166
DB
7287 int pathlen;
7288
7289 /* Determine the length of the execd pathname. */
7290 p = unpack_varlen_hex (++p1, &ignored);
7291 pathlen = (p - p1) / 2;
7292
7293 /* Save the pathname for event reporting and for
7294 the next run command. */
c6321f19
TT
7295 gdb::unique_xmalloc_ptr<char[]> pathname
7296 ((char *) xmalloc (pathlen + 1));
7297 hex2bin (p1, (gdb_byte *) pathname.get (), pathlen);
94585166
DB
7298 pathname[pathlen] = '\0';
7299
7300 /* This is freed during event handling. */
c6321f19 7301 event->ws.value.execd_pathname = pathname.release ();
94585166
DB
7302 event->ws.kind = TARGET_WAITKIND_EXECD;
7303
7304 /* Skip the registers included in this packet, since
7305 they may be for an architecture different from the
7306 one used by the original program. */
7307 skipregs = 1;
7308 }
65706a29
PA
7309 else if (strprefix (p, p1, "create"))
7310 {
7311 event->ws.kind = TARGET_WAITKIND_THREAD_CREATED;
8424cc97 7312 p = strchrnul (p1 + 1, ';');
65706a29 7313 }
cea39f65
MS
7314 else
7315 {
1f10ba14 7316 ULONGEST pnum;
256642e8 7317 const char *p_temp;
1f10ba14 7318
94585166
DB
7319 if (skipregs)
7320 {
8424cc97 7321 p = strchrnul (p1 + 1, ';');
94585166
DB
7322 p++;
7323 continue;
7324 }
7325
1f10ba14
PA
7326 /* Maybe a real ``P'' register number. */
7327 p_temp = unpack_varlen_hex (p, &pnum);
7328 /* If the first invalid character is the colon, we got a
7329 register number. Otherwise, it's an unknown stop
7330 reason. */
7331 if (p_temp == p1)
7332 {
5cd63fda
PA
7333 /* If we haven't parsed the event's thread yet, find
7334 it now, in order to find the architecture of the
7335 reported expedited registers. */
7336 if (event->ptid == null_ptid)
7337 {
7338 const char *thr = strstr (p1 + 1, ";thread:");
7339 if (thr != NULL)
7340 event->ptid = read_ptid (thr + strlen (";thread:"),
7341 NULL);
7342 else
3cada740
PA
7343 {
7344 /* Either the current thread hasn't changed,
7345 or the inferior is not multi-threaded.
7346 The event must be for the thread we last
7347 set as (or learned as being) current. */
7348 event->ptid = event->rs->general_thread;
7349 }
5cd63fda
PA
7350 }
7351
7352 if (rsa == NULL)
7353 {
7354 inferior *inf = (event->ptid == null_ptid
7355 ? NULL
7356 : find_inferior_ptid (event->ptid));
7357 /* If this is the first time we learn anything
7358 about this process, skip the registers
7359 included in this packet, since we don't yet
7360 know which architecture to use to parse them.
7361 We'll determine the architecture later when
7362 we process the stop reply and retrieve the
7363 target description, via
7364 remote_notice_new_inferior ->
7365 post_create_inferior. */
7366 if (inf == NULL)
7367 {
7368 p = strchrnul (p1 + 1, ';');
7369 p++;
7370 continue;
7371 }
7372
7373 event->arch = inf->gdbarch;
9d6eea31 7374 rsa = event->rs->get_remote_arch_state (event->arch);
5cd63fda
PA
7375 }
7376
7377 packet_reg *reg
7378 = packet_reg_from_pnum (event->arch, rsa, pnum);
1f10ba14 7379 cached_reg_t cached_reg;
43ff13b4 7380
1f10ba14
PA
7381 if (reg == NULL)
7382 error (_("Remote sent bad register number %s: %s\n\
8a3fe4f8 7383Packet: '%s'\n"),
1f10ba14 7384 hex_string (pnum), p, buf);
c8e38a49 7385
1f10ba14 7386 cached_reg.num = reg->regnum;
d1dff226 7387 cached_reg.data = (gdb_byte *)
5cd63fda 7388 xmalloc (register_size (event->arch, reg->regnum));
4100683b 7389
1f10ba14
PA
7390 p = p1 + 1;
7391 fieldsize = hex2bin (p, cached_reg.data,
5cd63fda 7392 register_size (event->arch, reg->regnum));
1f10ba14 7393 p += 2 * fieldsize;
5cd63fda 7394 if (fieldsize < register_size (event->arch, reg->regnum))
1f10ba14 7395 warning (_("Remote reply is too short: %s"), buf);
74531fed 7396
32603266 7397 event->regcache.push_back (cached_reg);
1f10ba14
PA
7398 }
7399 else
7400 {
7401 /* Not a number. Silently skip unknown optional
7402 info. */
8424cc97 7403 p = strchrnul (p1 + 1, ';');
1f10ba14 7404 }
cea39f65 7405 }
c8e38a49 7406
cea39f65
MS
7407 if (*p != ';')
7408 error (_("Remote register badly formatted: %s\nhere: %s"),
7409 buf, p);
7410 ++p;
7411 }
5b5596ff
PA
7412
7413 if (event->ws.kind != TARGET_WAITKIND_IGNORE)
7414 break;
7415
c8e38a49
PA
7416 /* fall through */
7417 case 'S': /* Old style status, just signal only. */
3a09da41
PA
7418 {
7419 int sig;
7420
7421 event->ws.kind = TARGET_WAITKIND_STOPPED;
7422 sig = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
7423 if (GDB_SIGNAL_FIRST <= sig && sig < GDB_SIGNAL_LAST)
7424 event->ws.value.sig = (enum gdb_signal) sig;
7425 else
7426 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
7427 }
c8e38a49 7428 break;
65706a29
PA
7429 case 'w': /* Thread exited. */
7430 {
65706a29
PA
7431 ULONGEST value;
7432
7433 event->ws.kind = TARGET_WAITKIND_THREAD_EXITED;
7434 p = unpack_varlen_hex (&buf[1], &value);
7435 event->ws.value.integer = value;
7436 if (*p != ';')
7437 error (_("stop reply packet badly formatted: %s"), buf);
974eac9d 7438 event->ptid = read_ptid (++p, NULL);
65706a29
PA
7439 break;
7440 }
c8e38a49
PA
7441 case 'W': /* Target exited. */
7442 case 'X':
7443 {
c8e38a49
PA
7444 int pid;
7445 ULONGEST value;
82f73884 7446
c8e38a49
PA
7447 /* GDB used to accept only 2 hex chars here. Stubs should
7448 only send more if they detect GDB supports multi-process
7449 support. */
7450 p = unpack_varlen_hex (&buf[1], &value);
82f73884 7451
c8e38a49
PA
7452 if (buf[0] == 'W')
7453 {
7454 /* The remote process exited. */
74531fed
PA
7455 event->ws.kind = TARGET_WAITKIND_EXITED;
7456 event->ws.value.integer = value;
c8e38a49
PA
7457 }
7458 else
7459 {
7460 /* The remote process exited with a signal. */
74531fed 7461 event->ws.kind = TARGET_WAITKIND_SIGNALLED;
3a09da41
PA
7462 if (GDB_SIGNAL_FIRST <= value && value < GDB_SIGNAL_LAST)
7463 event->ws.value.sig = (enum gdb_signal) value;
7464 else
7465 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
c8e38a49 7466 }
82f73884 7467
c8e38a49 7468 /* If no process is specified, assume inferior_ptid. */
e99b03dc 7469 pid = inferior_ptid.pid ();
c8e38a49
PA
7470 if (*p == '\0')
7471 ;
7472 else if (*p == ';')
7473 {
7474 p++;
7475
0b24eb2d 7476 if (*p == '\0')
82f73884 7477 ;
61012eef 7478 else if (startswith (p, "process:"))
82f73884 7479 {
c8e38a49 7480 ULONGEST upid;
a744cf53 7481
c8e38a49
PA
7482 p += sizeof ("process:") - 1;
7483 unpack_varlen_hex (p, &upid);
7484 pid = upid;
82f73884
PA
7485 }
7486 else
7487 error (_("unknown stop reply packet: %s"), buf);
43ff13b4 7488 }
c8e38a49
PA
7489 else
7490 error (_("unknown stop reply packet: %s"), buf);
f2907e49 7491 event->ptid = ptid_t (pid);
74531fed
PA
7492 }
7493 break;
f2faf941
PA
7494 case 'N':
7495 event->ws.kind = TARGET_WAITKIND_NO_RESUMED;
7496 event->ptid = minus_one_ptid;
7497 break;
74531fed
PA
7498 }
7499
d7e15655 7500 if (target_is_non_stop_p () && event->ptid == null_ptid)
74531fed
PA
7501 error (_("No process or thread specified in stop reply: %s"), buf);
7502}
7503
722247f1
YQ
7504/* When the stub wants to tell GDB about a new notification reply, it
7505 sends a notification (%Stop, for example). Those can come it at
7506 any time, hence, we have to make sure that any pending
7507 putpkt/getpkt sequence we're making is finished, before querying
7508 the stub for more events with the corresponding ack command
7509 (vStopped, for example). E.g., if we started a vStopped sequence
7510 immediately upon receiving the notification, something like this
7511 could happen:
74531fed
PA
7512
7513 1.1) --> Hg 1
7514 1.2) <-- OK
7515 1.3) --> g
7516 1.4) <-- %Stop
7517 1.5) --> vStopped
7518 1.6) <-- (registers reply to step #1.3)
7519
7520 Obviously, the reply in step #1.6 would be unexpected to a vStopped
7521 query.
7522
796cb314 7523 To solve this, whenever we parse a %Stop notification successfully,
74531fed
PA
7524 we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
7525 doing whatever we were doing:
7526
7527 2.1) --> Hg 1
7528 2.2) <-- OK
7529 2.3) --> g
7530 2.4) <-- %Stop
7531 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
7532 2.5) <-- (registers reply to step #2.3)
7533
85102364 7534 Eventually after step #2.5, we return to the event loop, which
74531fed
PA
7535 notices there's an event on the
7536 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
7537 associated callback --- the function below. At this point, we're
7538 always safe to start a vStopped sequence. :
7539
7540 2.6) --> vStopped
7541 2.7) <-- T05 thread:2
7542 2.8) --> vStopped
7543 2.9) --> OK
7544*/
7545
722247f1 7546void
6b8edb51 7547remote_target::remote_notif_get_pending_events (notif_client *nc)
74531fed
PA
7548{
7549 struct remote_state *rs = get_remote_state ();
74531fed 7550
f48ff2a7 7551 if (rs->notif_state->pending_event[nc->id] != NULL)
74531fed 7552 {
722247f1
YQ
7553 if (notif_debug)
7554 fprintf_unfiltered (gdb_stdlog,
7555 "notif: process: '%s' ack pending event\n",
7556 nc->name);
74531fed 7557
722247f1 7558 /* acknowledge */
8d64371b
TT
7559 nc->ack (this, nc, rs->buf.data (),
7560 rs->notif_state->pending_event[nc->id]);
f48ff2a7 7561 rs->notif_state->pending_event[nc->id] = NULL;
74531fed
PA
7562
7563 while (1)
7564 {
8d64371b
TT
7565 getpkt (&rs->buf, 0);
7566 if (strcmp (rs->buf.data (), "OK") == 0)
74531fed
PA
7567 break;
7568 else
8d64371b 7569 remote_notif_ack (this, nc, rs->buf.data ());
74531fed
PA
7570 }
7571 }
722247f1
YQ
7572 else
7573 {
7574 if (notif_debug)
7575 fprintf_unfiltered (gdb_stdlog,
7576 "notif: process: '%s' no pending reply\n",
7577 nc->name);
7578 }
74531fed
PA
7579}
7580
6b8edb51
PA
7581/* Wrapper around remote_target::remote_notif_get_pending_events to
7582 avoid having to export the whole remote_target class. */
7583
7584void
7585remote_notif_get_pending_events (remote_target *remote, notif_client *nc)
7586{
7587 remote->remote_notif_get_pending_events (nc);
7588}
7589
74531fed
PA
7590/* Called when it is decided that STOP_REPLY holds the info of the
7591 event that is to be returned to the core. This function always
7592 destroys STOP_REPLY. */
7593
6b8edb51
PA
7594ptid_t
7595remote_target::process_stop_reply (struct stop_reply *stop_reply,
7596 struct target_waitstatus *status)
74531fed
PA
7597{
7598 ptid_t ptid;
7599
7600 *status = stop_reply->ws;
7601 ptid = stop_reply->ptid;
7602
7603 /* If no thread/process was reported by the stub, assume the current
7604 inferior. */
d7e15655 7605 if (ptid == null_ptid)
74531fed
PA
7606 ptid = inferior_ptid;
7607
5f3563ea 7608 if (status->kind != TARGET_WAITKIND_EXITED
f2faf941
PA
7609 && status->kind != TARGET_WAITKIND_SIGNALLED
7610 && status->kind != TARGET_WAITKIND_NO_RESUMED)
74531fed 7611 {
5f3563ea 7612 /* Expedited registers. */
32603266 7613 if (!stop_reply->regcache.empty ())
5f3563ea 7614 {
217f1f79 7615 struct regcache *regcache
5cd63fda 7616 = get_thread_arch_regcache (ptid, stop_reply->arch);
5f3563ea 7617
32603266
TT
7618 for (cached_reg_t &reg : stop_reply->regcache)
7619 {
7620 regcache->raw_supply (reg.num, reg.data);
7621 xfree (reg.data);
7622 }
d1dff226 7623
32603266 7624 stop_reply->regcache.clear ();
5f3563ea 7625 }
74531fed 7626
1941c569 7627 remote_notice_new_inferior (ptid, 0);
7aabaf9d 7628 remote_thread_info *remote_thr = get_remote_thread_info (ptid);
799a2abe
PA
7629 remote_thr->core = stop_reply->core;
7630 remote_thr->stop_reason = stop_reply->stop_reason;
7631 remote_thr->watch_data_address = stop_reply->watch_data_address;
85ad3aaf 7632 remote_thr->vcont_resumed = 0;
74531fed
PA
7633 }
7634
32603266 7635 delete stop_reply;
74531fed
PA
7636 return ptid;
7637}
7638
7639/* The non-stop mode version of target_wait. */
7640
6b8edb51
PA
7641ptid_t
7642remote_target::wait_ns (ptid_t ptid, struct target_waitstatus *status, int options)
74531fed
PA
7643{
7644 struct remote_state *rs = get_remote_state ();
74531fed
PA
7645 struct stop_reply *stop_reply;
7646 int ret;
fee9eda9 7647 int is_notif = 0;
74531fed
PA
7648
7649 /* If in non-stop mode, get out of getpkt even if a
7650 notification is received. */
7651
8d64371b 7652 ret = getpkt_or_notif_sane (&rs->buf, 0 /* forever */, &is_notif);
74531fed
PA
7653 while (1)
7654 {
fee9eda9 7655 if (ret != -1 && !is_notif)
74531fed
PA
7656 switch (rs->buf[0])
7657 {
7658 case 'E': /* Error of some sort. */
7659 /* We're out of sync with the target now. Did it continue
7660 or not? We can't tell which thread it was in non-stop,
7661 so just ignore this. */
8d64371b 7662 warning (_("Remote failure reply: %s"), rs->buf.data ());
74531fed
PA
7663 break;
7664 case 'O': /* Console output. */
8d64371b 7665 remote_console_output (&rs->buf[1]);
74531fed
PA
7666 break;
7667 default:
8d64371b 7668 warning (_("Invalid remote reply: %s"), rs->buf.data ());
74531fed
PA
7669 break;
7670 }
7671
7672 /* Acknowledge a pending stop reply that may have arrived in the
7673 mean time. */
f48ff2a7 7674 if (rs->notif_state->pending_event[notif_client_stop.id] != NULL)
722247f1 7675 remote_notif_get_pending_events (&notif_client_stop);
74531fed
PA
7676
7677 /* If indeed we noticed a stop reply, we're done. */
7678 stop_reply = queued_stop_reply (ptid);
7679 if (stop_reply != NULL)
7680 return process_stop_reply (stop_reply, status);
7681
47608cb1 7682 /* Still no event. If we're just polling for an event, then
74531fed 7683 return to the event loop. */
47608cb1 7684 if (options & TARGET_WNOHANG)
74531fed
PA
7685 {
7686 status->kind = TARGET_WAITKIND_IGNORE;
7687 return minus_one_ptid;
7688 }
7689
47608cb1 7690 /* Otherwise do a blocking wait. */
8d64371b 7691 ret = getpkt_or_notif_sane (&rs->buf, 1 /* forever */, &is_notif);
74531fed
PA
7692 }
7693}
7694
7695/* Wait until the remote machine stops, then return, storing status in
7696 STATUS just as `wait' would. */
7697
6b8edb51
PA
7698ptid_t
7699remote_target::wait_as (ptid_t ptid, target_waitstatus *status, int options)
74531fed
PA
7700{
7701 struct remote_state *rs = get_remote_state ();
74531fed 7702 ptid_t event_ptid = null_ptid;
cea39f65 7703 char *buf;
74531fed
PA
7704 struct stop_reply *stop_reply;
7705
47608cb1
PA
7706 again:
7707
74531fed
PA
7708 status->kind = TARGET_WAITKIND_IGNORE;
7709 status->value.integer = 0;
7710
7711 stop_reply = queued_stop_reply (ptid);
7712 if (stop_reply != NULL)
7713 return process_stop_reply (stop_reply, status);
7714
7715 if (rs->cached_wait_status)
7716 /* Use the cached wait status, but only once. */
7717 rs->cached_wait_status = 0;
7718 else
7719 {
7720 int ret;
722247f1 7721 int is_notif;
567420d1 7722 int forever = ((options & TARGET_WNOHANG) == 0
6b8edb51 7723 && rs->wait_forever_enabled_p);
567420d1
PA
7724
7725 if (!rs->waiting_for_stop_reply)
7726 {
7727 status->kind = TARGET_WAITKIND_NO_RESUMED;
7728 return minus_one_ptid;
7729 }
74531fed 7730
74531fed
PA
7731 /* FIXME: cagney/1999-09-27: If we're in async mode we should
7732 _never_ wait for ever -> test on target_is_async_p().
7733 However, before we do that we need to ensure that the caller
7734 knows how to take the target into/out of async mode. */
8d64371b 7735 ret = getpkt_or_notif_sane (&rs->buf, forever, &is_notif);
722247f1
YQ
7736
7737 /* GDB gets a notification. Return to core as this event is
7738 not interesting. */
7739 if (ret != -1 && is_notif)
7740 return minus_one_ptid;
567420d1
PA
7741
7742 if (ret == -1 && (options & TARGET_WNOHANG) != 0)
7743 return minus_one_ptid;
74531fed
PA
7744 }
7745
8d64371b 7746 buf = rs->buf.data ();
74531fed 7747
3a29589a
DJ
7748 /* Assume that the target has acknowledged Ctrl-C unless we receive
7749 an 'F' or 'O' packet. */
7750 if (buf[0] != 'F' && buf[0] != 'O')
7751 rs->ctrlc_pending_p = 0;
7752
74531fed
PA
7753 switch (buf[0])
7754 {
7755 case 'E': /* Error of some sort. */
7756 /* We're out of sync with the target now. Did it continue or
7757 not? Not is more likely, so report a stop. */
29090fb6
LM
7758 rs->waiting_for_stop_reply = 0;
7759
74531fed
PA
7760 warning (_("Remote failure reply: %s"), buf);
7761 status->kind = TARGET_WAITKIND_STOPPED;
a493e3e2 7762 status->value.sig = GDB_SIGNAL_0;
74531fed
PA
7763 break;
7764 case 'F': /* File-I/O request. */
e42e5352
YQ
7765 /* GDB may access the inferior memory while handling the File-I/O
7766 request, but we don't want GDB accessing memory while waiting
7767 for a stop reply. See the comments in putpkt_binary. Set
7768 waiting_for_stop_reply to 0 temporarily. */
7769 rs->waiting_for_stop_reply = 0;
6b8edb51 7770 remote_fileio_request (this, buf, rs->ctrlc_pending_p);
3a29589a 7771 rs->ctrlc_pending_p = 0;
e42e5352
YQ
7772 /* GDB handled the File-I/O request, and the target is running
7773 again. Keep waiting for events. */
7774 rs->waiting_for_stop_reply = 1;
74531fed 7775 break;
f2faf941 7776 case 'N': case 'T': case 'S': case 'X': case 'W':
74531fed 7777 {
29090fb6
LM
7778 /* There is a stop reply to handle. */
7779 rs->waiting_for_stop_reply = 0;
7780
7781 stop_reply
6b8edb51
PA
7782 = (struct stop_reply *) remote_notif_parse (this,
7783 &notif_client_stop,
8d64371b 7784 rs->buf.data ());
74531fed 7785
74531fed 7786 event_ptid = process_stop_reply (stop_reply, status);
c8e38a49
PA
7787 break;
7788 }
7789 case 'O': /* Console output. */
7790 remote_console_output (buf + 1);
c8e38a49
PA
7791 break;
7792 case '\0':
b73be471 7793 if (rs->last_sent_signal != GDB_SIGNAL_0)
c8e38a49
PA
7794 {
7795 /* Zero length reply means that we tried 'S' or 'C' and the
7796 remote system doesn't support it. */
223ffa71 7797 target_terminal::ours_for_output ();
c8e38a49
PA
7798 printf_filtered
7799 ("Can't send signals to this remote system. %s not sent.\n",
b73be471
TT
7800 gdb_signal_to_name (rs->last_sent_signal));
7801 rs->last_sent_signal = GDB_SIGNAL_0;
223ffa71 7802 target_terminal::inferior ();
c8e38a49 7803
f5c4fcd9
TT
7804 strcpy (buf, rs->last_sent_step ? "s" : "c");
7805 putpkt (buf);
c8e38a49 7806 break;
43ff13b4 7807 }
86a73007 7808 /* fallthrough */
c8e38a49
PA
7809 default:
7810 warning (_("Invalid remote reply: %s"), buf);
c8e38a49 7811 break;
43ff13b4 7812 }
c8e38a49 7813
f2faf941
PA
7814 if (status->kind == TARGET_WAITKIND_NO_RESUMED)
7815 return minus_one_ptid;
7816 else if (status->kind == TARGET_WAITKIND_IGNORE)
47608cb1
PA
7817 {
7818 /* Nothing interesting happened. If we're doing a non-blocking
7819 poll, we're done. Otherwise, go back to waiting. */
7820 if (options & TARGET_WNOHANG)
7821 return minus_one_ptid;
7822 else
7823 goto again;
7824 }
74531fed
PA
7825 else if (status->kind != TARGET_WAITKIND_EXITED
7826 && status->kind != TARGET_WAITKIND_SIGNALLED)
82f73884 7827 {
d7e15655 7828 if (event_ptid != null_ptid)
47f8a51d 7829 record_currthread (rs, event_ptid);
82f73884
PA
7830 else
7831 event_ptid = inferior_ptid;
43ff13b4 7832 }
74531fed
PA
7833 else
7834 /* A process exit. Invalidate our notion of current thread. */
47f8a51d 7835 record_currthread (rs, minus_one_ptid);
79d7f229 7836
82f73884 7837 return event_ptid;
43ff13b4
JM
7838}
7839
74531fed
PA
7840/* Wait until the remote machine stops, then return, storing status in
7841 STATUS just as `wait' would. */
7842
f6ac5f3d
PA
7843ptid_t
7844remote_target::wait (ptid_t ptid, struct target_waitstatus *status, int options)
c8e38a49
PA
7845{
7846 ptid_t event_ptid;
7847
6efcd9a8 7848 if (target_is_non_stop_p ())
6b8edb51 7849 event_ptid = wait_ns (ptid, status, options);
74531fed 7850 else
6b8edb51 7851 event_ptid = wait_as (ptid, status, options);
c8e38a49 7852
d9d41e78 7853 if (target_is_async_p ())
c8e38a49 7854 {
6b8edb51
PA
7855 remote_state *rs = get_remote_state ();
7856
74531fed
PA
7857 /* If there are are events left in the queue tell the event loop
7858 to return here. */
953edf2b 7859 if (!rs->stop_reply_queue.empty ())
6b8edb51 7860 mark_async_event_handler (rs->remote_async_inferior_event_token);
c8e38a49 7861 }
c8e38a49
PA
7862
7863 return event_ptid;
7864}
7865
74ca34ce 7866/* Fetch a single register using a 'p' packet. */
c906108c 7867
6b8edb51
PA
7868int
7869remote_target::fetch_register_using_p (struct regcache *regcache,
7870 packet_reg *reg)
b96ec7ac 7871{
ac7936df 7872 struct gdbarch *gdbarch = regcache->arch ();
b96ec7ac 7873 struct remote_state *rs = get_remote_state ();
2e9f7625 7874 char *buf, *p;
9890e433 7875 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
b96ec7ac
AC
7876 int i;
7877
4082afcc 7878 if (packet_support (PACKET_p) == PACKET_DISABLE)
74ca34ce
DJ
7879 return 0;
7880
7881 if (reg->pnum == -1)
7882 return 0;
7883
8d64371b 7884 p = rs->buf.data ();
fcad0fa4 7885 *p++ = 'p';
74ca34ce 7886 p += hexnumstr (p, reg->pnum);
fcad0fa4 7887 *p++ = '\0';
1f4437a4 7888 putpkt (rs->buf);
8d64371b 7889 getpkt (&rs->buf, 0);
3f9a994c 7890
8d64371b 7891 buf = rs->buf.data ();
2e9f7625 7892
8d64371b 7893 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_p]))
74ca34ce
DJ
7894 {
7895 case PACKET_OK:
7896 break;
7897 case PACKET_UNKNOWN:
7898 return 0;
7899 case PACKET_ERROR:
27a9c0bf 7900 error (_("Could not fetch register \"%s\"; remote failure reply '%s'"),
ac7936df 7901 gdbarch_register_name (regcache->arch (),
27a9c0bf
MS
7902 reg->regnum),
7903 buf);
74ca34ce 7904 }
3f9a994c
JB
7905
7906 /* If this register is unfetchable, tell the regcache. */
7907 if (buf[0] == 'x')
8480adf2 7908 {
73e1c03f 7909 regcache->raw_supply (reg->regnum, NULL);
8480adf2 7910 return 1;
b96ec7ac 7911 }
b96ec7ac 7912
3f9a994c
JB
7913 /* Otherwise, parse and supply the value. */
7914 p = buf;
7915 i = 0;
7916 while (p[0] != 0)
7917 {
7918 if (p[1] == 0)
74ca34ce 7919 error (_("fetch_register_using_p: early buf termination"));
3f9a994c
JB
7920
7921 regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
7922 p += 2;
7923 }
73e1c03f 7924 regcache->raw_supply (reg->regnum, regp);
3f9a994c 7925 return 1;
b96ec7ac
AC
7926}
7927
74ca34ce
DJ
7928/* Fetch the registers included in the target's 'g' packet. */
7929
6b8edb51
PA
7930int
7931remote_target::send_g_packet ()
c906108c 7932{
d01949b6 7933 struct remote_state *rs = get_remote_state ();
cea39f65 7934 int buf_len;
c906108c 7935
8d64371b 7936 xsnprintf (rs->buf.data (), get_remote_packet_size (), "g");
b75abf5b 7937 putpkt (rs->buf);
8d64371b 7938 getpkt (&rs->buf, 0);
b75abf5b
AK
7939 if (packet_check_result (rs->buf) == PACKET_ERROR)
7940 error (_("Could not read registers; remote failure reply '%s'"),
8d64371b 7941 rs->buf.data ());
c906108c 7942
29709017
DJ
7943 /* We can get out of synch in various cases. If the first character
7944 in the buffer is not a hex character, assume that has happened
7945 and try to fetch another packet to read. */
7946 while ((rs->buf[0] < '0' || rs->buf[0] > '9')
7947 && (rs->buf[0] < 'A' || rs->buf[0] > 'F')
7948 && (rs->buf[0] < 'a' || rs->buf[0] > 'f')
7949 && rs->buf[0] != 'x') /* New: unavailable register value. */
7950 {
7951 if (remote_debug)
7952 fprintf_unfiltered (gdb_stdlog,
7953 "Bad register packet; fetching a new packet\n");
8d64371b 7954 getpkt (&rs->buf, 0);
29709017
DJ
7955 }
7956
8d64371b 7957 buf_len = strlen (rs->buf.data ());
74ca34ce
DJ
7958
7959 /* Sanity check the received packet. */
7960 if (buf_len % 2 != 0)
8d64371b 7961 error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf.data ());
29709017
DJ
7962
7963 return buf_len / 2;
7964}
7965
6b8edb51
PA
7966void
7967remote_target::process_g_packet (struct regcache *regcache)
29709017 7968{
ac7936df 7969 struct gdbarch *gdbarch = regcache->arch ();
29709017 7970 struct remote_state *rs = get_remote_state ();
9d6eea31 7971 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
29709017
DJ
7972 int i, buf_len;
7973 char *p;
7974 char *regs;
7975
8d64371b 7976 buf_len = strlen (rs->buf.data ());
29709017
DJ
7977
7978 /* Further sanity checks, with knowledge of the architecture. */
74ca34ce 7979 if (buf_len > 2 * rsa->sizeof_g_packet)
fc809827 7980 error (_("Remote 'g' packet reply is too long (expected %ld bytes, got %d "
8d64371b
TT
7981 "bytes): %s"),
7982 rsa->sizeof_g_packet, buf_len / 2,
7983 rs->buf.data ());
74ca34ce
DJ
7984
7985 /* Save the size of the packet sent to us by the target. It is used
7986 as a heuristic when determining the max size of packets that the
7987 target can safely receive. */
7988 if (rsa->actual_register_packet_size == 0)
7989 rsa->actual_register_packet_size = buf_len;
7990
7991 /* If this is smaller than we guessed the 'g' packet would be,
7992 update our records. A 'g' reply that doesn't include a register's
7993 value implies either that the register is not available, or that
7994 the 'p' packet must be used. */
7995 if (buf_len < 2 * rsa->sizeof_g_packet)
b323314b 7996 {
9dc193c3 7997 long sizeof_g_packet = buf_len / 2;
74ca34ce 7998
4a22f64d 7999 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
b96ec7ac 8000 {
9dc193c3
LF
8001 long offset = rsa->regs[i].offset;
8002 long reg_size = register_size (gdbarch, i);
8003
74ca34ce
DJ
8004 if (rsa->regs[i].pnum == -1)
8005 continue;
8006
9dc193c3 8007 if (offset >= sizeof_g_packet)
74ca34ce 8008 rsa->regs[i].in_g_packet = 0;
9dc193c3
LF
8009 else if (offset + reg_size > sizeof_g_packet)
8010 error (_("Truncated register %d in remote 'g' packet"), i);
b96ec7ac 8011 else
74ca34ce 8012 rsa->regs[i].in_g_packet = 1;
b96ec7ac 8013 }
9dc193c3
LF
8014
8015 /* Looks valid enough, we can assume this is the correct length
8016 for a 'g' packet. It's important not to adjust
8017 rsa->sizeof_g_packet if we have truncated registers otherwise
8018 this "if" won't be run the next time the method is called
8019 with a packet of the same size and one of the internal errors
8020 below will trigger instead. */
8021 rsa->sizeof_g_packet = sizeof_g_packet;
74ca34ce 8022 }
b323314b 8023
224c3ddb 8024 regs = (char *) alloca (rsa->sizeof_g_packet);
c906108c
SS
8025
8026 /* Unimplemented registers read as all bits zero. */
ea9c271d 8027 memset (regs, 0, rsa->sizeof_g_packet);
c906108c 8028
c906108c
SS
8029 /* Reply describes registers byte by byte, each byte encoded as two
8030 hex characters. Suck them all up, then supply them to the
8031 register cacheing/storage mechanism. */
8032
8d64371b 8033 p = rs->buf.data ();
ea9c271d 8034 for (i = 0; i < rsa->sizeof_g_packet; i++)
c906108c 8035 {
74ca34ce
DJ
8036 if (p[0] == 0 || p[1] == 0)
8037 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
8038 internal_error (__FILE__, __LINE__,
9b20d036 8039 _("unexpected end of 'g' packet reply"));
74ca34ce 8040
c906108c 8041 if (p[0] == 'x' && p[1] == 'x')
c5aa993b 8042 regs[i] = 0; /* 'x' */
c906108c
SS
8043 else
8044 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
8045 p += 2;
8046 }
8047
a744cf53
MS
8048 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
8049 {
8050 struct packet_reg *r = &rsa->regs[i];
9dc193c3 8051 long reg_size = register_size (gdbarch, i);
a744cf53
MS
8052
8053 if (r->in_g_packet)
8054 {
8d64371b 8055 if ((r->offset + reg_size) * 2 > strlen (rs->buf.data ()))
a744cf53
MS
8056 /* This shouldn't happen - we adjusted in_g_packet above. */
8057 internal_error (__FILE__, __LINE__,
9b20d036 8058 _("unexpected end of 'g' packet reply"));
a744cf53
MS
8059 else if (rs->buf[r->offset * 2] == 'x')
8060 {
8d64371b 8061 gdb_assert (r->offset * 2 < strlen (rs->buf.data ()));
a744cf53
MS
8062 /* The register isn't available, mark it as such (at
8063 the same time setting the value to zero). */
73e1c03f 8064 regcache->raw_supply (r->regnum, NULL);
a744cf53
MS
8065 }
8066 else
73e1c03f 8067 regcache->raw_supply (r->regnum, regs + r->offset);
a744cf53
MS
8068 }
8069 }
c906108c
SS
8070}
8071
6b8edb51
PA
8072void
8073remote_target::fetch_registers_using_g (struct regcache *regcache)
29709017
DJ
8074{
8075 send_g_packet ();
56be3814 8076 process_g_packet (regcache);
29709017
DJ
8077}
8078
e6e4e701
PA
8079/* Make the remote selected traceframe match GDB's selected
8080 traceframe. */
8081
6b8edb51
PA
8082void
8083remote_target::set_remote_traceframe ()
e6e4e701
PA
8084{
8085 int newnum;
262e1174 8086 struct remote_state *rs = get_remote_state ();
e6e4e701 8087
262e1174 8088 if (rs->remote_traceframe_number == get_traceframe_number ())
e6e4e701
PA
8089 return;
8090
8091 /* Avoid recursion, remote_trace_find calls us again. */
262e1174 8092 rs->remote_traceframe_number = get_traceframe_number ();
e6e4e701
PA
8093
8094 newnum = target_trace_find (tfind_number,
8095 get_traceframe_number (), 0, 0, NULL);
8096
8097 /* Should not happen. If it does, all bets are off. */
8098 if (newnum != get_traceframe_number ())
8099 warning (_("could not set remote traceframe"));
8100}
8101
f6ac5f3d
PA
8102void
8103remote_target::fetch_registers (struct regcache *regcache, int regnum)
74ca34ce 8104{
ac7936df 8105 struct gdbarch *gdbarch = regcache->arch ();
9d6eea31
PA
8106 struct remote_state *rs = get_remote_state ();
8107 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
74ca34ce
DJ
8108 int i;
8109
e6e4e701 8110 set_remote_traceframe ();
222312d3 8111 set_general_thread (regcache->ptid ());
74ca34ce
DJ
8112
8113 if (regnum >= 0)
8114 {
5cd63fda 8115 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
a744cf53 8116
74ca34ce
DJ
8117 gdb_assert (reg != NULL);
8118
8119 /* If this register might be in the 'g' packet, try that first -
8120 we are likely to read more than one register. If this is the
8121 first 'g' packet, we might be overly optimistic about its
8122 contents, so fall back to 'p'. */
8123 if (reg->in_g_packet)
8124 {
56be3814 8125 fetch_registers_using_g (regcache);
74ca34ce
DJ
8126 if (reg->in_g_packet)
8127 return;
8128 }
8129
56be3814 8130 if (fetch_register_using_p (regcache, reg))
74ca34ce
DJ
8131 return;
8132
8133 /* This register is not available. */
73e1c03f 8134 regcache->raw_supply (reg->regnum, NULL);
74ca34ce
DJ
8135
8136 return;
8137 }
8138
56be3814 8139 fetch_registers_using_g (regcache);
74ca34ce 8140
5cd63fda 8141 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
74ca34ce 8142 if (!rsa->regs[i].in_g_packet)
56be3814 8143 if (!fetch_register_using_p (regcache, &rsa->regs[i]))
74ca34ce
DJ
8144 {
8145 /* This register is not available. */
73e1c03f 8146 regcache->raw_supply (i, NULL);
74ca34ce
DJ
8147 }
8148}
8149
c906108c
SS
8150/* Prepare to store registers. Since we may send them all (using a
8151 'G' request), we have to read out the ones we don't want to change
8152 first. */
8153
f6ac5f3d
PA
8154void
8155remote_target::prepare_to_store (struct regcache *regcache)
c906108c 8156{
9d6eea31
PA
8157 struct remote_state *rs = get_remote_state ();
8158 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
cf0e1e0d 8159 int i;
cf0e1e0d 8160
c906108c 8161 /* Make sure the entire registers array is valid. */
4082afcc 8162 switch (packet_support (PACKET_P))
5a2468f5
JM
8163 {
8164 case PACKET_DISABLE:
8165 case PACKET_SUPPORT_UNKNOWN:
cf0e1e0d 8166 /* Make sure all the necessary registers are cached. */
ac7936df 8167 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
ea9c271d 8168 if (rsa->regs[i].in_g_packet)
0b47d985 8169 regcache->raw_update (rsa->regs[i].regnum);
5a2468f5
JM
8170 break;
8171 case PACKET_ENABLE:
8172 break;
8173 }
8174}
8175
ad10f812 8176/* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
23860348 8177 packet was not recognized. */
5a2468f5 8178
6b8edb51
PA
8179int
8180remote_target::store_register_using_P (const struct regcache *regcache,
8181 packet_reg *reg)
5a2468f5 8182{
ac7936df 8183 struct gdbarch *gdbarch = regcache->arch ();
d01949b6 8184 struct remote_state *rs = get_remote_state ();
5a2468f5 8185 /* Try storing a single register. */
8d64371b 8186 char *buf = rs->buf.data ();
9890e433 8187 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
5a2468f5 8188 char *p;
5a2468f5 8189
4082afcc 8190 if (packet_support (PACKET_P) == PACKET_DISABLE)
74ca34ce
DJ
8191 return 0;
8192
8193 if (reg->pnum == -1)
8194 return 0;
8195
ea9c271d 8196 xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
5a2468f5 8197 p = buf + strlen (buf);
34a79281 8198 regcache->raw_collect (reg->regnum, regp);
4a22f64d 8199 bin2hex (regp, p, register_size (gdbarch, reg->regnum));
1f4437a4 8200 putpkt (rs->buf);
8d64371b 8201 getpkt (&rs->buf, 0);
5a2468f5 8202
74ca34ce
DJ
8203 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P]))
8204 {
8205 case PACKET_OK:
8206 return 1;
8207 case PACKET_ERROR:
27a9c0bf 8208 error (_("Could not write register \"%s\"; remote failure reply '%s'"),
8d64371b 8209 gdbarch_register_name (gdbarch, reg->regnum), rs->buf.data ());
74ca34ce
DJ
8210 case PACKET_UNKNOWN:
8211 return 0;
8212 default:
8213 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
8214 }
c906108c
SS
8215}
8216
23860348
MS
8217/* Store register REGNUM, or all registers if REGNUM == -1, from the
8218 contents of the register cache buffer. FIXME: ignores errors. */
c906108c 8219
6b8edb51
PA
8220void
8221remote_target::store_registers_using_G (const struct regcache *regcache)
c906108c 8222{
d01949b6 8223 struct remote_state *rs = get_remote_state ();
9d6eea31 8224 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
cfd77fa1 8225 gdb_byte *regs;
c906108c
SS
8226 char *p;
8227
193cb69f
AC
8228 /* Extract all the registers in the regcache copying them into a
8229 local buffer. */
8230 {
b323314b 8231 int i;
a744cf53 8232
224c3ddb 8233 regs = (gdb_byte *) alloca (rsa->sizeof_g_packet);
ea9c271d 8234 memset (regs, 0, rsa->sizeof_g_packet);
ac7936df 8235 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
193cb69f 8236 {
ea9c271d 8237 struct packet_reg *r = &rsa->regs[i];
a744cf53 8238
b323314b 8239 if (r->in_g_packet)
34a79281 8240 regcache->raw_collect (r->regnum, regs + r->offset);
193cb69f
AC
8241 }
8242 }
c906108c
SS
8243
8244 /* Command describes registers byte by byte,
8245 each byte encoded as two hex characters. */
8d64371b 8246 p = rs->buf.data ();
193cb69f 8247 *p++ = 'G';
74ca34ce 8248 bin2hex (regs, p, rsa->sizeof_g_packet);
1f4437a4 8249 putpkt (rs->buf);
8d64371b 8250 getpkt (&rs->buf, 0);
1f4437a4 8251 if (packet_check_result (rs->buf) == PACKET_ERROR)
27a9c0bf 8252 error (_("Could not write registers; remote failure reply '%s'"),
8d64371b 8253 rs->buf.data ());
c906108c 8254}
74ca34ce
DJ
8255
8256/* Store register REGNUM, or all registers if REGNUM == -1, from the contents
8257 of the register cache buffer. FIXME: ignores errors. */
8258
f6ac5f3d
PA
8259void
8260remote_target::store_registers (struct regcache *regcache, int regnum)
74ca34ce 8261{
5cd63fda 8262 struct gdbarch *gdbarch = regcache->arch ();
9d6eea31
PA
8263 struct remote_state *rs = get_remote_state ();
8264 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
74ca34ce
DJ
8265 int i;
8266
e6e4e701 8267 set_remote_traceframe ();
222312d3 8268 set_general_thread (regcache->ptid ());
74ca34ce
DJ
8269
8270 if (regnum >= 0)
8271 {
5cd63fda 8272 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
a744cf53 8273
74ca34ce
DJ
8274 gdb_assert (reg != NULL);
8275
8276 /* Always prefer to store registers using the 'P' packet if
8277 possible; we often change only a small number of registers.
8278 Sometimes we change a larger number; we'd need help from a
8279 higher layer to know to use 'G'. */
56be3814 8280 if (store_register_using_P (regcache, reg))
74ca34ce
DJ
8281 return;
8282
8283 /* For now, don't complain if we have no way to write the
8284 register. GDB loses track of unavailable registers too
8285 easily. Some day, this may be an error. We don't have
0df8b418 8286 any way to read the register, either... */
74ca34ce
DJ
8287 if (!reg->in_g_packet)
8288 return;
8289
56be3814 8290 store_registers_using_G (regcache);
74ca34ce
DJ
8291 return;
8292 }
8293
56be3814 8294 store_registers_using_G (regcache);
74ca34ce 8295
5cd63fda 8296 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
74ca34ce 8297 if (!rsa->regs[i].in_g_packet)
56be3814 8298 if (!store_register_using_P (regcache, &rsa->regs[i]))
74ca34ce
DJ
8299 /* See above for why we do not issue an error here. */
8300 continue;
8301}
c906108c
SS
8302\f
8303
8304/* Return the number of hex digits in num. */
8305
8306static int
fba45db2 8307hexnumlen (ULONGEST num)
c906108c
SS
8308{
8309 int i;
8310
8311 for (i = 0; num != 0; i++)
8312 num >>= 4;
8313
325fac50 8314 return std::max (i, 1);
c906108c
SS
8315}
8316
2df3850c 8317/* Set BUF to the minimum number of hex digits representing NUM. */
c906108c
SS
8318
8319static int
fba45db2 8320hexnumstr (char *buf, ULONGEST num)
c906108c 8321{
c906108c 8322 int len = hexnumlen (num);
a744cf53 8323
2df3850c
JM
8324 return hexnumnstr (buf, num, len);
8325}
8326
c906108c 8327
2df3850c 8328/* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
c906108c 8329
2df3850c 8330static int
fba45db2 8331hexnumnstr (char *buf, ULONGEST num, int width)
2df3850c
JM
8332{
8333 int i;
8334
8335 buf[width] = '\0';
8336
8337 for (i = width - 1; i >= 0; i--)
c906108c 8338 {
c5aa993b 8339 buf[i] = "0123456789abcdef"[(num & 0xf)];
c906108c
SS
8340 num >>= 4;
8341 }
8342
2df3850c 8343 return width;
c906108c
SS
8344}
8345
23860348 8346/* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
c906108c
SS
8347
8348static CORE_ADDR
fba45db2 8349remote_address_masked (CORE_ADDR addr)
c906108c 8350{
883b9c6c 8351 unsigned int address_size = remote_address_size;
a744cf53 8352
911c95a5
UW
8353 /* If "remoteaddresssize" was not set, default to target address size. */
8354 if (!address_size)
f5656ead 8355 address_size = gdbarch_addr_bit (target_gdbarch ());
911c95a5
UW
8356
8357 if (address_size > 0
8358 && address_size < (sizeof (ULONGEST) * 8))
c906108c
SS
8359 {
8360 /* Only create a mask when that mask can safely be constructed
23860348 8361 in a ULONGEST variable. */
c906108c 8362 ULONGEST mask = 1;
a744cf53 8363
911c95a5 8364 mask = (mask << address_size) - 1;
c906108c
SS
8365 addr &= mask;
8366 }
8367 return addr;
8368}
8369
8370/* Determine whether the remote target supports binary downloading.
8371 This is accomplished by sending a no-op memory write of zero length
8372 to the target at the specified address. It does not suffice to send
23860348
MS
8373 the whole packet, since many stubs strip the eighth bit and
8374 subsequently compute a wrong checksum, which causes real havoc with
8375 remote_write_bytes.
7a292a7a 8376
96baa820 8377 NOTE: This can still lose if the serial line is not eight-bit
0df8b418 8378 clean. In cases like this, the user should clear "remote
23860348 8379 X-packet". */
96baa820 8380
6b8edb51
PA
8381void
8382remote_target::check_binary_download (CORE_ADDR addr)
c906108c 8383{
d01949b6 8384 struct remote_state *rs = get_remote_state ();
24b06219 8385
4082afcc 8386 switch (packet_support (PACKET_X))
c906108c 8387 {
96baa820
JM
8388 case PACKET_DISABLE:
8389 break;
8390 case PACKET_ENABLE:
8391 break;
8392 case PACKET_SUPPORT_UNKNOWN:
8393 {
96baa820 8394 char *p;
802188a7 8395
8d64371b 8396 p = rs->buf.data ();
96baa820
JM
8397 *p++ = 'X';
8398 p += hexnumstr (p, (ULONGEST) addr);
8399 *p++ = ',';
8400 p += hexnumstr (p, (ULONGEST) 0);
8401 *p++ = ':';
8402 *p = '\0';
802188a7 8403
8d64371b
TT
8404 putpkt_binary (rs->buf.data (), (int) (p - rs->buf.data ()));
8405 getpkt (&rs->buf, 0);
c906108c 8406
2e9f7625 8407 if (rs->buf[0] == '\0')
96baa820
JM
8408 {
8409 if (remote_debug)
8410 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
8411 "binary downloading NOT "
8412 "supported by target\n");
444abaca 8413 remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
96baa820
JM
8414 }
8415 else
8416 {
8417 if (remote_debug)
8418 fprintf_unfiltered (gdb_stdlog,
64b9b334 8419 "binary downloading supported by target\n");
444abaca 8420 remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
96baa820
JM
8421 }
8422 break;
8423 }
c906108c
SS
8424 }
8425}
8426
124e13d9
SM
8427/* Helper function to resize the payload in order to try to get a good
8428 alignment. We try to write an amount of data such that the next write will
8429 start on an address aligned on REMOTE_ALIGN_WRITES. */
8430
8431static int
8432align_for_efficient_write (int todo, CORE_ADDR memaddr)
8433{
8434 return ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr;
8435}
8436
c906108c
SS
8437/* Write memory data directly to the remote machine.
8438 This does not inform the data cache; the data cache uses this.
a76d924d 8439 HEADER is the starting part of the packet.
c906108c
SS
8440 MEMADDR is the address in the remote memory space.
8441 MYADDR is the address of the buffer in our space.
124e13d9
SM
8442 LEN_UNITS is the number of addressable units to write.
8443 UNIT_SIZE is the length in bytes of an addressable unit.
a76d924d
DJ
8444 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
8445 should send data as binary ('X'), or hex-encoded ('M').
8446
8447 The function creates packet of the form
8448 <HEADER><ADDRESS>,<LENGTH>:<DATA>
8449
124e13d9 8450 where encoding of <DATA> is terminated by PACKET_FORMAT.
a76d924d
DJ
8451
8452 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
8453 are omitted.
8454
9b409511 8455 Return the transferred status, error or OK (an
124e13d9
SM
8456 'enum target_xfer_status' value). Save the number of addressable units
8457 transferred in *XFERED_LEN_UNITS. Only transfer a single packet.
8458
8459 On a platform with an addressable memory size of 2 bytes (UNIT_SIZE == 2), an
8460 exchange between gdb and the stub could look like (?? in place of the
8461 checksum):
8462
8463 -> $m1000,4#??
8464 <- aaaabbbbccccdddd
8465
8466 -> $M1000,3:eeeeffffeeee#??
8467 <- OK
8468
8469 -> $m1000,4#??
8470 <- eeeeffffeeeedddd */
c906108c 8471
6b8edb51
PA
8472target_xfer_status
8473remote_target::remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
8474 const gdb_byte *myaddr,
8475 ULONGEST len_units,
8476 int unit_size,
8477 ULONGEST *xfered_len_units,
8478 char packet_format, int use_length)
c906108c 8479{
6d820c5c 8480 struct remote_state *rs = get_remote_state ();
cfd77fa1 8481 char *p;
a76d924d
DJ
8482 char *plen = NULL;
8483 int plenlen = 0;
124e13d9
SM
8484 int todo_units;
8485 int units_written;
8486 int payload_capacity_bytes;
8487 int payload_length_bytes;
a76d924d
DJ
8488
8489 if (packet_format != 'X' && packet_format != 'M')
8490 internal_error (__FILE__, __LINE__,
9b20d036 8491 _("remote_write_bytes_aux: bad packet format"));
c906108c 8492
124e13d9 8493 if (len_units == 0)
9b409511 8494 return TARGET_XFER_EOF;
b2182ed2 8495
124e13d9 8496 payload_capacity_bytes = get_memory_write_packet_size ();
2bc416ba 8497
6d820c5c
DJ
8498 /* The packet buffer will be large enough for the payload;
8499 get_memory_packet_size ensures this. */
a76d924d 8500 rs->buf[0] = '\0';
c906108c 8501
a257b5bb 8502 /* Compute the size of the actual payload by subtracting out the
0df8b418
MS
8503 packet header and footer overhead: "$M<memaddr>,<len>:...#nn". */
8504
124e13d9 8505 payload_capacity_bytes -= strlen ("$,:#NN");
a76d924d 8506 if (!use_length)
0df8b418 8507 /* The comma won't be used. */
124e13d9
SM
8508 payload_capacity_bytes += 1;
8509 payload_capacity_bytes -= strlen (header);
8510 payload_capacity_bytes -= hexnumlen (memaddr);
c906108c 8511
a76d924d 8512 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
917317f4 8513
8d64371b
TT
8514 strcat (rs->buf.data (), header);
8515 p = rs->buf.data () + strlen (header);
a76d924d
DJ
8516
8517 /* Compute a best guess of the number of bytes actually transfered. */
8518 if (packet_format == 'X')
c906108c 8519 {
23860348 8520 /* Best guess at number of bytes that will fit. */
325fac50
PA
8521 todo_units = std::min (len_units,
8522 (ULONGEST) payload_capacity_bytes / unit_size);
a76d924d 8523 if (use_length)
124e13d9 8524 payload_capacity_bytes -= hexnumlen (todo_units);
325fac50 8525 todo_units = std::min (todo_units, payload_capacity_bytes / unit_size);
a76d924d
DJ
8526 }
8527 else
8528 {
124e13d9 8529 /* Number of bytes that will fit. */
325fac50
PA
8530 todo_units
8531 = std::min (len_units,
8532 (ULONGEST) (payload_capacity_bytes / unit_size) / 2);
a76d924d 8533 if (use_length)
124e13d9 8534 payload_capacity_bytes -= hexnumlen (todo_units);
325fac50
PA
8535 todo_units = std::min (todo_units,
8536 (payload_capacity_bytes / unit_size) / 2);
917317f4 8537 }
a76d924d 8538
124e13d9 8539 if (todo_units <= 0)
3de11b2e 8540 internal_error (__FILE__, __LINE__,
405f8e94 8541 _("minimum packet size too small to write data"));
802188a7 8542
6765f3e5
DJ
8543 /* If we already need another packet, then try to align the end
8544 of this packet to a useful boundary. */
124e13d9
SM
8545 if (todo_units > 2 * REMOTE_ALIGN_WRITES && todo_units < len_units)
8546 todo_units = align_for_efficient_write (todo_units, memaddr);
6765f3e5 8547
a257b5bb 8548 /* Append "<memaddr>". */
917317f4
JM
8549 memaddr = remote_address_masked (memaddr);
8550 p += hexnumstr (p, (ULONGEST) memaddr);
a257b5bb 8551
a76d924d
DJ
8552 if (use_length)
8553 {
8554 /* Append ",". */
8555 *p++ = ',';
802188a7 8556
124e13d9
SM
8557 /* Append the length and retain its location and size. It may need to be
8558 adjusted once the packet body has been created. */
a76d924d 8559 plen = p;
124e13d9 8560 plenlen = hexnumstr (p, (ULONGEST) todo_units);
a76d924d
DJ
8561 p += plenlen;
8562 }
a257b5bb
AC
8563
8564 /* Append ":". */
917317f4
JM
8565 *p++ = ':';
8566 *p = '\0';
802188a7 8567
a257b5bb 8568 /* Append the packet body. */
a76d924d 8569 if (packet_format == 'X')
917317f4 8570 {
917317f4
JM
8571 /* Binary mode. Send target system values byte by byte, in
8572 increasing byte addresses. Only escape certain critical
8573 characters. */
124e13d9
SM
8574 payload_length_bytes =
8575 remote_escape_output (myaddr, todo_units, unit_size, (gdb_byte *) p,
8576 &units_written, payload_capacity_bytes);
6765f3e5 8577
124e13d9 8578 /* If not all TODO units fit, then we'll need another packet. Make
9b7194bc
DJ
8579 a second try to keep the end of the packet aligned. Don't do
8580 this if the packet is tiny. */
124e13d9 8581 if (units_written < todo_units && units_written > 2 * REMOTE_ALIGN_WRITES)
6765f3e5 8582 {
124e13d9
SM
8583 int new_todo_units;
8584
8585 new_todo_units = align_for_efficient_write (units_written, memaddr);
8586
8587 if (new_todo_units != units_written)
8588 payload_length_bytes =
8589 remote_escape_output (myaddr, new_todo_units, unit_size,
8590 (gdb_byte *) p, &units_written,
8591 payload_capacity_bytes);
6765f3e5
DJ
8592 }
8593
124e13d9
SM
8594 p += payload_length_bytes;
8595 if (use_length && units_written < todo_units)
c906108c 8596 {
802188a7 8597 /* Escape chars have filled up the buffer prematurely,
124e13d9 8598 and we have actually sent fewer units than planned.
917317f4
JM
8599 Fix-up the length field of the packet. Use the same
8600 number of characters as before. */
124e13d9
SM
8601 plen += hexnumnstr (plen, (ULONGEST) units_written,
8602 plenlen);
917317f4 8603 *plen = ':'; /* overwrite \0 from hexnumnstr() */
c906108c 8604 }
a76d924d
DJ
8605 }
8606 else
8607 {
917317f4
JM
8608 /* Normal mode: Send target system values byte by byte, in
8609 increasing byte addresses. Each byte is encoded as a two hex
8610 value. */
124e13d9
SM
8611 p += 2 * bin2hex (myaddr, p, todo_units * unit_size);
8612 units_written = todo_units;
c906108c 8613 }
802188a7 8614
8d64371b
TT
8615 putpkt_binary (rs->buf.data (), (int) (p - rs->buf.data ()));
8616 getpkt (&rs->buf, 0);
802188a7 8617
2e9f7625 8618 if (rs->buf[0] == 'E')
00d84524 8619 return TARGET_XFER_E_IO;
802188a7 8620
124e13d9
SM
8621 /* Return UNITS_WRITTEN, not TODO_UNITS, in case escape chars caused us to
8622 send fewer units than we'd planned. */
8623 *xfered_len_units = (ULONGEST) units_written;
92ffd475 8624 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
c906108c
SS
8625}
8626
a76d924d
DJ
8627/* Write memory data directly to the remote machine.
8628 This does not inform the data cache; the data cache uses this.
8629 MEMADDR is the address in the remote memory space.
8630 MYADDR is the address of the buffer in our space.
8631 LEN is the number of bytes.
8632
9b409511
YQ
8633 Return the transferred status, error or OK (an
8634 'enum target_xfer_status' value). Save the number of bytes
8635 transferred in *XFERED_LEN. Only transfer a single packet. */
a76d924d 8636
6b8edb51
PA
8637target_xfer_status
8638remote_target::remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr,
8639 ULONGEST len, int unit_size,
8640 ULONGEST *xfered_len)
a76d924d 8641{
a121b7c1 8642 const char *packet_format = NULL;
a76d924d
DJ
8643
8644 /* Check whether the target supports binary download. */
8645 check_binary_download (memaddr);
8646
4082afcc 8647 switch (packet_support (PACKET_X))
a76d924d
DJ
8648 {
8649 case PACKET_ENABLE:
8650 packet_format = "X";
8651 break;
8652 case PACKET_DISABLE:
8653 packet_format = "M";
8654 break;
8655 case PACKET_SUPPORT_UNKNOWN:
8656 internal_error (__FILE__, __LINE__,
8657 _("remote_write_bytes: bad internal state"));
8658 default:
8659 internal_error (__FILE__, __LINE__, _("bad switch"));
8660 }
8661
8662 return remote_write_bytes_aux (packet_format,
124e13d9 8663 memaddr, myaddr, len, unit_size, xfered_len,
9b409511 8664 packet_format[0], 1);
a76d924d
DJ
8665}
8666
9217e74e
YQ
8667/* Read memory data directly from the remote machine.
8668 This does not use the data cache; the data cache uses this.
8669 MEMADDR is the address in the remote memory space.
8670 MYADDR is the address of the buffer in our space.
124e13d9
SM
8671 LEN_UNITS is the number of addressable memory units to read..
8672 UNIT_SIZE is the length in bytes of an addressable unit.
9217e74e
YQ
8673
8674 Return the transferred status, error or OK (an
8675 'enum target_xfer_status' value). Save the number of bytes
124e13d9
SM
8676 transferred in *XFERED_LEN_UNITS.
8677
8678 See the comment of remote_write_bytes_aux for an example of
8679 memory read/write exchange between gdb and the stub. */
9217e74e 8680
6b8edb51
PA
8681target_xfer_status
8682remote_target::remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr,
8683 ULONGEST len_units,
8684 int unit_size, ULONGEST *xfered_len_units)
9217e74e
YQ
8685{
8686 struct remote_state *rs = get_remote_state ();
124e13d9 8687 int buf_size_bytes; /* Max size of packet output buffer. */
9217e74e 8688 char *p;
124e13d9
SM
8689 int todo_units;
8690 int decoded_bytes;
9217e74e 8691
124e13d9 8692 buf_size_bytes = get_memory_read_packet_size ();
9217e74e
YQ
8693 /* The packet buffer will be large enough for the payload;
8694 get_memory_packet_size ensures this. */
8695
124e13d9 8696 /* Number of units that will fit. */
325fac50
PA
8697 todo_units = std::min (len_units,
8698 (ULONGEST) (buf_size_bytes / unit_size) / 2);
9217e74e
YQ
8699
8700 /* Construct "m"<memaddr>","<len>". */
8701 memaddr = remote_address_masked (memaddr);
8d64371b 8702 p = rs->buf.data ();
9217e74e
YQ
8703 *p++ = 'm';
8704 p += hexnumstr (p, (ULONGEST) memaddr);
8705 *p++ = ',';
124e13d9 8706 p += hexnumstr (p, (ULONGEST) todo_units);
9217e74e
YQ
8707 *p = '\0';
8708 putpkt (rs->buf);
8d64371b 8709 getpkt (&rs->buf, 0);
9217e74e
YQ
8710 if (rs->buf[0] == 'E'
8711 && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2])
8712 && rs->buf[3] == '\0')
8713 return TARGET_XFER_E_IO;
8714 /* Reply describes memory byte by byte, each byte encoded as two hex
8715 characters. */
8d64371b 8716 p = rs->buf.data ();
124e13d9 8717 decoded_bytes = hex2bin (p, myaddr, todo_units * unit_size);
9217e74e 8718 /* Return what we have. Let higher layers handle partial reads. */
124e13d9 8719 *xfered_len_units = (ULONGEST) (decoded_bytes / unit_size);
92ffd475 8720 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
9217e74e
YQ
8721}
8722
b55fbac4
YQ
8723/* Using the set of read-only target sections of remote, read live
8724 read-only memory.
8acf9577
YQ
8725
8726 For interface/parameters/return description see target.h,
8727 to_xfer_partial. */
8728
6b8edb51
PA
8729target_xfer_status
8730remote_target::remote_xfer_live_readonly_partial (gdb_byte *readbuf,
8731 ULONGEST memaddr,
8732 ULONGEST len,
8733 int unit_size,
8734 ULONGEST *xfered_len)
8acf9577
YQ
8735{
8736 struct target_section *secp;
8737 struct target_section_table *table;
8738
6b8edb51 8739 secp = target_section_by_addr (this, memaddr);
8acf9577 8740 if (secp != NULL
fd361982 8741 && (bfd_section_flags (secp->the_bfd_section) & SEC_READONLY))
8acf9577
YQ
8742 {
8743 struct target_section *p;
8744 ULONGEST memend = memaddr + len;
8745
6b8edb51 8746 table = target_get_section_table (this);
8acf9577
YQ
8747
8748 for (p = table->sections; p < table->sections_end; p++)
8749 {
8750 if (memaddr >= p->addr)
8751 {
8752 if (memend <= p->endaddr)
8753 {
8754 /* Entire transfer is within this section. */
124e13d9 8755 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 8756 xfered_len);
8acf9577
YQ
8757 }
8758 else if (memaddr >= p->endaddr)
8759 {
8760 /* This section ends before the transfer starts. */
8761 continue;
8762 }
8763 else
8764 {
8765 /* This section overlaps the transfer. Just do half. */
8766 len = p->endaddr - memaddr;
124e13d9 8767 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 8768 xfered_len);
8acf9577
YQ
8769 }
8770 }
8771 }
8772 }
8773
8774 return TARGET_XFER_EOF;
8775}
8776
9217e74e
YQ
8777/* Similar to remote_read_bytes_1, but it reads from the remote stub
8778 first if the requested memory is unavailable in traceframe.
8779 Otherwise, fall back to remote_read_bytes_1. */
c906108c 8780
6b8edb51
PA
8781target_xfer_status
8782remote_target::remote_read_bytes (CORE_ADDR memaddr,
8783 gdb_byte *myaddr, ULONGEST len, int unit_size,
8784 ULONGEST *xfered_len)
c906108c 8785{
6b6aa828 8786 if (len == 0)
96c4f946 8787 return TARGET_XFER_EOF;
b2182ed2 8788
8acf9577
YQ
8789 if (get_traceframe_number () != -1)
8790 {
a79b1bc6 8791 std::vector<mem_range> available;
8acf9577
YQ
8792
8793 /* If we fail to get the set of available memory, then the
8794 target does not support querying traceframe info, and so we
8795 attempt reading from the traceframe anyway (assuming the
8796 target implements the old QTro packet then). */
8797 if (traceframe_available_memory (&available, memaddr, len))
8798 {
a79b1bc6 8799 if (available.empty () || available[0].start != memaddr)
8acf9577
YQ
8800 {
8801 enum target_xfer_status res;
8802
8803 /* Don't read into the traceframe's available
8804 memory. */
a79b1bc6 8805 if (!available.empty ())
8acf9577
YQ
8806 {
8807 LONGEST oldlen = len;
8808
a79b1bc6 8809 len = available[0].start - memaddr;
8acf9577
YQ
8810 gdb_assert (len <= oldlen);
8811 }
8812
8acf9577 8813 /* This goes through the topmost target again. */
6b8edb51 8814 res = remote_xfer_live_readonly_partial (myaddr, memaddr,
124e13d9 8815 len, unit_size, xfered_len);
8acf9577
YQ
8816 if (res == TARGET_XFER_OK)
8817 return TARGET_XFER_OK;
8818 else
8819 {
8820 /* No use trying further, we know some memory starting
8821 at MEMADDR isn't available. */
8822 *xfered_len = len;
92ffd475
PC
8823 return (*xfered_len != 0) ?
8824 TARGET_XFER_UNAVAILABLE : TARGET_XFER_EOF;
8acf9577
YQ
8825 }
8826 }
8827
8828 /* Don't try to read more than how much is available, in
8829 case the target implements the deprecated QTro packet to
8830 cater for older GDBs (the target's knowledge of read-only
8831 sections may be outdated by now). */
a79b1bc6 8832 len = available[0].length;
8acf9577
YQ
8833 }
8834 }
8835
124e13d9 8836 return remote_read_bytes_1 (memaddr, myaddr, len, unit_size, xfered_len);
c906108c 8837}
74531fed 8838
c906108c 8839\f
c906108c 8840
a76d924d
DJ
8841/* Sends a packet with content determined by the printf format string
8842 FORMAT and the remaining arguments, then gets the reply. Returns
8843 whether the packet was a success, a failure, or unknown. */
8844
6b8edb51
PA
8845packet_result
8846remote_target::remote_send_printf (const char *format, ...)
a76d924d
DJ
8847{
8848 struct remote_state *rs = get_remote_state ();
8849 int max_size = get_remote_packet_size ();
a76d924d 8850 va_list ap;
a744cf53 8851
a76d924d
DJ
8852 va_start (ap, format);
8853
8854 rs->buf[0] = '\0';
8d64371b 8855 int size = vsnprintf (rs->buf.data (), max_size, format, ap);
33b031ce
GB
8856
8857 va_end (ap);
8858
8859 if (size >= max_size)
9b20d036 8860 internal_error (__FILE__, __LINE__, _("Too long remote packet."));
a76d924d
DJ
8861
8862 if (putpkt (rs->buf) < 0)
8863 error (_("Communication problem with target."));
8864
8865 rs->buf[0] = '\0';
8d64371b 8866 getpkt (&rs->buf, 0);
a76d924d
DJ
8867
8868 return packet_check_result (rs->buf);
8869}
8870
a76d924d
DJ
8871/* Flash writing can take quite some time. We'll set
8872 effectively infinite timeout for flash operations.
8873 In future, we'll need to decide on a better approach. */
8874static const int remote_flash_timeout = 1000;
8875
f6ac5f3d
PA
8876void
8877remote_target::flash_erase (ULONGEST address, LONGEST length)
a76d924d 8878{
f5656ead 8879 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
a76d924d 8880 enum packet_result ret;
2ec845e7
TT
8881 scoped_restore restore_timeout
8882 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
a76d924d
DJ
8883
8884 ret = remote_send_printf ("vFlashErase:%s,%s",
5af949e3 8885 phex (address, addr_size),
a76d924d
DJ
8886 phex (length, 4));
8887 switch (ret)
8888 {
8889 case PACKET_UNKNOWN:
8890 error (_("Remote target does not support flash erase"));
8891 case PACKET_ERROR:
8892 error (_("Error erasing flash with vFlashErase packet"));
8893 default:
8894 break;
8895 }
a76d924d
DJ
8896}
8897
6b8edb51
PA
8898target_xfer_status
8899remote_target::remote_flash_write (ULONGEST address,
8900 ULONGEST length, ULONGEST *xfered_len,
8901 const gdb_byte *data)
a76d924d 8902{
2ec845e7
TT
8903 scoped_restore restore_timeout
8904 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
8905 return remote_write_bytes_aux ("vFlashWrite:", address, data, length, 1,
8906 xfered_len,'X', 0);
a76d924d
DJ
8907}
8908
f6ac5f3d
PA
8909void
8910remote_target::flash_done ()
a76d924d 8911{
a76d924d 8912 int ret;
a76d924d 8913
2ec845e7
TT
8914 scoped_restore restore_timeout
8915 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
8916
a76d924d 8917 ret = remote_send_printf ("vFlashDone");
a76d924d
DJ
8918
8919 switch (ret)
8920 {
8921 case PACKET_UNKNOWN:
8922 error (_("Remote target does not support vFlashDone"));
8923 case PACKET_ERROR:
8924 error (_("Error finishing flash operation"));
8925 default:
8926 break;
8927 }
8928}
8929
f6ac5f3d
PA
8930void
8931remote_target::files_info ()
c906108c
SS
8932{
8933 puts_filtered ("Debugging a target over a serial line.\n");
8934}
8935\f
8936/* Stuff for dealing with the packets which are part of this protocol.
8937 See comment at top of file for details. */
8938
1927e618
PA
8939/* Close/unpush the remote target, and throw a TARGET_CLOSE_ERROR
8940 error to higher layers. Called when a serial error is detected.
8941 The exception message is STRING, followed by a colon and a blank,
d6cb50a2
JK
8942 the system error message for errno at function entry and final dot
8943 for output compatibility with throw_perror_with_name. */
1927e618
PA
8944
8945static void
8946unpush_and_perror (const char *string)
8947{
d6cb50a2 8948 int saved_errno = errno;
1927e618
PA
8949
8950 remote_unpush_target ();
d6cb50a2
JK
8951 throw_error (TARGET_CLOSE_ERROR, "%s: %s.", string,
8952 safe_strerror (saved_errno));
1927e618
PA
8953}
8954
048094ac
PA
8955/* Read a single character from the remote end. The current quit
8956 handler is overridden to avoid quitting in the middle of packet
8957 sequence, as that would break communication with the remote server.
8958 See remote_serial_quit_handler for more detail. */
c906108c 8959
6b8edb51
PA
8960int
8961remote_target::readchar (int timeout)
c906108c
SS
8962{
8963 int ch;
5d93a237 8964 struct remote_state *rs = get_remote_state ();
048094ac 8965
2ec845e7 8966 {
6b8edb51
PA
8967 scoped_restore restore_quit_target
8968 = make_scoped_restore (&curr_quit_handler_target, this);
2ec845e7 8969 scoped_restore restore_quit
6b8edb51 8970 = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
c906108c 8971
2ec845e7 8972 rs->got_ctrlc_during_io = 0;
c906108c 8973
2ec845e7 8974 ch = serial_readchar (rs->remote_desc, timeout);
048094ac 8975
2ec845e7
TT
8976 if (rs->got_ctrlc_during_io)
8977 set_quit_flag ();
8978 }
048094ac 8979
2acceee2 8980 if (ch >= 0)
0876f84a 8981 return ch;
2acceee2
JM
8982
8983 switch ((enum serial_rc) ch)
c906108c
SS
8984 {
8985 case SERIAL_EOF:
78a095c3 8986 remote_unpush_target ();
598d3636 8987 throw_error (TARGET_CLOSE_ERROR, _("Remote connection closed"));
2acceee2 8988 /* no return */
c906108c 8989 case SERIAL_ERROR:
1927e618
PA
8990 unpush_and_perror (_("Remote communication error. "
8991 "Target disconnected."));
2acceee2 8992 /* no return */
c906108c 8993 case SERIAL_TIMEOUT:
2acceee2 8994 break;
c906108c 8995 }
2acceee2 8996 return ch;
c906108c
SS
8997}
8998
c33e31fd 8999/* Wrapper for serial_write that closes the target and throws if
048094ac
PA
9000 writing fails. The current quit handler is overridden to avoid
9001 quitting in the middle of packet sequence, as that would break
9002 communication with the remote server. See
9003 remote_serial_quit_handler for more detail. */
c33e31fd 9004
6b8edb51
PA
9005void
9006remote_target::remote_serial_write (const char *str, int len)
c33e31fd 9007{
5d93a237 9008 struct remote_state *rs = get_remote_state ();
048094ac 9009
6b8edb51
PA
9010 scoped_restore restore_quit_target
9011 = make_scoped_restore (&curr_quit_handler_target, this);
2ec845e7 9012 scoped_restore restore_quit
6b8edb51 9013 = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
048094ac
PA
9014
9015 rs->got_ctrlc_during_io = 0;
5d93a237
TT
9016
9017 if (serial_write (rs->remote_desc, str, len))
c33e31fd 9018 {
1927e618
PA
9019 unpush_and_perror (_("Remote communication error. "
9020 "Target disconnected."));
c33e31fd 9021 }
048094ac
PA
9022
9023 if (rs->got_ctrlc_during_io)
9024 set_quit_flag ();
c33e31fd
PA
9025}
9026
b3ced9ba
PA
9027/* Return a string representing an escaped version of BUF, of len N.
9028 E.g. \n is converted to \\n, \t to \\t, etc. */
6e5abd65 9029
b3ced9ba 9030static std::string
6e5abd65
PA
9031escape_buffer (const char *buf, int n)
9032{
d7e74731 9033 string_file stb;
6e5abd65 9034
d7e74731
PA
9035 stb.putstrn (buf, n, '\\');
9036 return std::move (stb.string ());
6e5abd65
PA
9037}
9038
c906108c
SS
9039/* Display a null-terminated packet on stdout, for debugging, using C
9040 string notation. */
9041
9042static void
baa336ce 9043print_packet (const char *buf)
c906108c
SS
9044{
9045 puts_filtered ("\"");
43e526b9 9046 fputstr_filtered (buf, '"', gdb_stdout);
c906108c
SS
9047 puts_filtered ("\"");
9048}
9049
9050int
6b8edb51 9051remote_target::putpkt (const char *buf)
c906108c
SS
9052{
9053 return putpkt_binary (buf, strlen (buf));
9054}
9055
6b8edb51
PA
9056/* Wrapper around remote_target::putpkt to avoid exporting
9057 remote_target. */
9058
9059int
9060putpkt (remote_target *remote, const char *buf)
9061{
9062 return remote->putpkt (buf);
9063}
9064
c906108c 9065/* Send a packet to the remote machine, with error checking. The data
23860348 9066 of the packet is in BUF. The string in BUF can be at most
ea9c271d 9067 get_remote_packet_size () - 5 to account for the $, # and checksum,
23860348
MS
9068 and for a possible /0 if we are debugging (remote_debug) and want
9069 to print the sent packet as a string. */
c906108c 9070
6b8edb51
PA
9071int
9072remote_target::putpkt_binary (const char *buf, int cnt)
c906108c 9073{
2d717e4f 9074 struct remote_state *rs = get_remote_state ();
c906108c
SS
9075 int i;
9076 unsigned char csum = 0;
b80406ac
TT
9077 gdb::def_vector<char> data (cnt + 6);
9078 char *buf2 = data.data ();
085dd6e6 9079
c906108c
SS
9080 int ch;
9081 int tcount = 0;
9082 char *p;
9083
e24a49d8
PA
9084 /* Catch cases like trying to read memory or listing threads while
9085 we're waiting for a stop reply. The remote server wouldn't be
9086 ready to handle this request, so we'd hang and timeout. We don't
9087 have to worry about this in synchronous mode, because in that
9088 case it's not possible to issue a command while the target is
74531fed
PA
9089 running. This is not a problem in non-stop mode, because in that
9090 case, the stub is always ready to process serial input. */
6efcd9a8
PA
9091 if (!target_is_non_stop_p ()
9092 && target_is_async_p ()
9093 && rs->waiting_for_stop_reply)
9597b22a
DE
9094 {
9095 error (_("Cannot execute this command while the target is running.\n"
9096 "Use the \"interrupt\" command to stop the target\n"
9097 "and then try again."));
9098 }
e24a49d8 9099
2d717e4f
DJ
9100 /* We're sending out a new packet. Make sure we don't look at a
9101 stale cached response. */
9102 rs->cached_wait_status = 0;
9103
c906108c
SS
9104 /* Copy the packet into buffer BUF2, encapsulating it
9105 and giving it a checksum. */
9106
c906108c
SS
9107 p = buf2;
9108 *p++ = '$';
9109
9110 for (i = 0; i < cnt; i++)
9111 {
9112 csum += buf[i];
9113 *p++ = buf[i];
9114 }
9115 *p++ = '#';
9116 *p++ = tohex ((csum >> 4) & 0xf);
9117 *p++ = tohex (csum & 0xf);
9118
9119 /* Send it over and over until we get a positive ack. */
9120
9121 while (1)
9122 {
9123 int started_error_output = 0;
9124
9125 if (remote_debug)
9126 {
9127 *p = '\0';
b3ced9ba 9128
6f8976bf 9129 int len = (int) (p - buf2);
6cc8564b
LM
9130 int max_chars;
9131
9132 if (remote_packet_max_chars < 0)
9133 max_chars = len;
9134 else
9135 max_chars = remote_packet_max_chars;
6f8976bf
YQ
9136
9137 std::string str
6cc8564b 9138 = escape_buffer (buf2, std::min (len, max_chars));
6f8976bf
YQ
9139
9140 fprintf_unfiltered (gdb_stdlog, "Sending packet: %s", str.c_str ());
9141
6cc8564b 9142 if (len > max_chars)
567a3e54 9143 fprintf_unfiltered (gdb_stdlog, "[%d bytes omitted]",
6cc8564b 9144 len - max_chars);
6f8976bf
YQ
9145
9146 fprintf_unfiltered (gdb_stdlog, "...");
b3ced9ba 9147
0f71a2f6 9148 gdb_flush (gdb_stdlog);
c906108c 9149 }
c33e31fd 9150 remote_serial_write (buf2, p - buf2);
c906108c 9151
a6f3e723
SL
9152 /* If this is a no acks version of the remote protocol, send the
9153 packet and move on. */
9154 if (rs->noack_mode)
9155 break;
9156
74531fed
PA
9157 /* Read until either a timeout occurs (-2) or '+' is read.
9158 Handle any notification that arrives in the mean time. */
c906108c
SS
9159 while (1)
9160 {
9161 ch = readchar (remote_timeout);
9162
c5aa993b 9163 if (remote_debug)
c906108c
SS
9164 {
9165 switch (ch)
9166 {
9167 case '+':
1216fa2c 9168 case '-':
c906108c
SS
9169 case SERIAL_TIMEOUT:
9170 case '$':
74531fed 9171 case '%':
c906108c
SS
9172 if (started_error_output)
9173 {
9174 putchar_unfiltered ('\n');
9175 started_error_output = 0;
9176 }
9177 }
9178 }
9179
9180 switch (ch)
9181 {
9182 case '+':
9183 if (remote_debug)
0f71a2f6 9184 fprintf_unfiltered (gdb_stdlog, "Ack\n");
c906108c 9185 return 1;
1216fa2c
AC
9186 case '-':
9187 if (remote_debug)
9188 fprintf_unfiltered (gdb_stdlog, "Nak\n");
a17d146e 9189 /* FALLTHROUGH */
c906108c 9190 case SERIAL_TIMEOUT:
c5aa993b 9191 tcount++;
c906108c 9192 if (tcount > 3)
b80406ac 9193 return 0;
23860348 9194 break; /* Retransmit buffer. */
c906108c
SS
9195 case '$':
9196 {
40e3f985 9197 if (remote_debug)
2bc416ba 9198 fprintf_unfiltered (gdb_stdlog,
23860348 9199 "Packet instead of Ack, ignoring it\n");
d6f7abdf
AC
9200 /* It's probably an old response sent because an ACK
9201 was lost. Gobble up the packet and ack it so it
9202 doesn't get retransmitted when we resend this
9203 packet. */
6d820c5c 9204 skip_frame ();
c33e31fd 9205 remote_serial_write ("+", 1);
23860348 9206 continue; /* Now, go look for +. */
c906108c 9207 }
74531fed
PA
9208
9209 case '%':
9210 {
9211 int val;
9212
9213 /* If we got a notification, handle it, and go back to looking
9214 for an ack. */
9215 /* We've found the start of a notification. Now
9216 collect the data. */
8d64371b 9217 val = read_frame (&rs->buf);
74531fed
PA
9218 if (val >= 0)
9219 {
9220 if (remote_debug)
9221 {
8d64371b 9222 std::string str = escape_buffer (rs->buf.data (), val);
6e5abd65 9223
6e5abd65
PA
9224 fprintf_unfiltered (gdb_stdlog,
9225 " Notification received: %s\n",
b3ced9ba 9226 str.c_str ());
74531fed 9227 }
8d64371b 9228 handle_notification (rs->notif_state, rs->buf.data ());
74531fed
PA
9229 /* We're in sync now, rewait for the ack. */
9230 tcount = 0;
9231 }
9232 else
9233 {
9234 if (remote_debug)
9235 {
9236 if (!started_error_output)
9237 {
9238 started_error_output = 1;
9239 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
9240 }
9241 fputc_unfiltered (ch & 0177, gdb_stdlog);
8d64371b 9242 fprintf_unfiltered (gdb_stdlog, "%s", rs->buf.data ());
74531fed
PA
9243 }
9244 }
9245 continue;
9246 }
9247 /* fall-through */
c906108c
SS
9248 default:
9249 if (remote_debug)
9250 {
9251 if (!started_error_output)
9252 {
9253 started_error_output = 1;
0f71a2f6 9254 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
c906108c 9255 }
0f71a2f6 9256 fputc_unfiltered (ch & 0177, gdb_stdlog);
c906108c
SS
9257 }
9258 continue;
9259 }
23860348 9260 break; /* Here to retransmit. */
c906108c
SS
9261 }
9262
9263#if 0
9264 /* This is wrong. If doing a long backtrace, the user should be
c5aa993b
JM
9265 able to get out next time we call QUIT, without anything as
9266 violent as interrupt_query. If we want to provide a way out of
9267 here without getting to the next QUIT, it should be based on
9268 hitting ^C twice as in remote_wait. */
c906108c
SS
9269 if (quit_flag)
9270 {
9271 quit_flag = 0;
9272 interrupt_query ();
9273 }
9274#endif
9275 }
a5c0808e 9276
a6f3e723 9277 return 0;
c906108c
SS
9278}
9279
6d820c5c
DJ
9280/* Come here after finding the start of a frame when we expected an
9281 ack. Do our best to discard the rest of this packet. */
9282
6b8edb51
PA
9283void
9284remote_target::skip_frame ()
6d820c5c
DJ
9285{
9286 int c;
9287
9288 while (1)
9289 {
9290 c = readchar (remote_timeout);
9291 switch (c)
9292 {
9293 case SERIAL_TIMEOUT:
9294 /* Nothing we can do. */
9295 return;
9296 case '#':
9297 /* Discard the two bytes of checksum and stop. */
9298 c = readchar (remote_timeout);
9299 if (c >= 0)
9300 c = readchar (remote_timeout);
9301
9302 return;
9303 case '*': /* Run length encoding. */
9304 /* Discard the repeat count. */
9305 c = readchar (remote_timeout);
9306 if (c < 0)
9307 return;
9308 break;
9309 default:
9310 /* A regular character. */
9311 break;
9312 }
9313 }
9314}
9315
c906108c 9316/* Come here after finding the start of the frame. Collect the rest
6d820c5c
DJ
9317 into *BUF, verifying the checksum, length, and handling run-length
9318 compression. NUL terminate the buffer. If there is not enough room,
8d64371b 9319 expand *BUF.
c906108c 9320
c2d11a7d
JM
9321 Returns -1 on error, number of characters in buffer (ignoring the
9322 trailing NULL) on success. (could be extended to return one of the
23860348 9323 SERIAL status indications). */
c2d11a7d 9324
6b8edb51 9325long
8d64371b 9326remote_target::read_frame (gdb::char_vector *buf_p)
c906108c
SS
9327{
9328 unsigned char csum;
c2d11a7d 9329 long bc;
c906108c 9330 int c;
8d64371b 9331 char *buf = buf_p->data ();
a6f3e723 9332 struct remote_state *rs = get_remote_state ();
c906108c
SS
9333
9334 csum = 0;
c2d11a7d 9335 bc = 0;
c906108c
SS
9336
9337 while (1)
9338 {
9339 c = readchar (remote_timeout);
c906108c
SS
9340 switch (c)
9341 {
9342 case SERIAL_TIMEOUT:
9343 if (remote_debug)
0f71a2f6 9344 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog);
c2d11a7d 9345 return -1;
c906108c
SS
9346 case '$':
9347 if (remote_debug)
0f71a2f6
JM
9348 fputs_filtered ("Saw new packet start in middle of old one\n",
9349 gdb_stdlog);
23860348 9350 return -1; /* Start a new packet, count retries. */
c906108c
SS
9351 case '#':
9352 {
9353 unsigned char pktcsum;
e1b09194
AC
9354 int check_0 = 0;
9355 int check_1 = 0;
c906108c 9356
c2d11a7d 9357 buf[bc] = '\0';
c906108c 9358
e1b09194
AC
9359 check_0 = readchar (remote_timeout);
9360 if (check_0 >= 0)
9361 check_1 = readchar (remote_timeout);
802188a7 9362
e1b09194
AC
9363 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
9364 {
9365 if (remote_debug)
2bc416ba 9366 fputs_filtered ("Timeout in checksum, retrying\n",
23860348 9367 gdb_stdlog);
e1b09194
AC
9368 return -1;
9369 }
9370 else if (check_0 < 0 || check_1 < 0)
40e3f985
FN
9371 {
9372 if (remote_debug)
2bc416ba 9373 fputs_filtered ("Communication error in checksum\n",
23860348 9374 gdb_stdlog);
40e3f985
FN
9375 return -1;
9376 }
c906108c 9377
a6f3e723
SL
9378 /* Don't recompute the checksum; with no ack packets we
9379 don't have any way to indicate a packet retransmission
9380 is necessary. */
9381 if (rs->noack_mode)
9382 return bc;
9383
e1b09194 9384 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
c906108c 9385 if (csum == pktcsum)
c2d11a7d 9386 return bc;
c906108c 9387
c5aa993b 9388 if (remote_debug)
c906108c 9389 {
b3ced9ba 9390 std::string str = escape_buffer (buf, bc);
6e5abd65 9391
6e5abd65 9392 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
9393 "Bad checksum, sentsum=0x%x, "
9394 "csum=0x%x, buf=%s\n",
b3ced9ba 9395 pktcsum, csum, str.c_str ());
c906108c 9396 }
c2d11a7d 9397 /* Number of characters in buffer ignoring trailing
23860348 9398 NULL. */
c2d11a7d 9399 return -1;
c906108c 9400 }
23860348 9401 case '*': /* Run length encoding. */
c2c6d25f
JM
9402 {
9403 int repeat;
c906108c 9404
a744cf53 9405 csum += c;
b4501125
AC
9406 c = readchar (remote_timeout);
9407 csum += c;
23860348 9408 repeat = c - ' ' + 3; /* Compute repeat count. */
c906108c 9409
23860348 9410 /* The character before ``*'' is repeated. */
c2d11a7d 9411
6d820c5c 9412 if (repeat > 0 && repeat <= 255 && bc > 0)
c2c6d25f 9413 {
8d64371b 9414 if (bc + repeat - 1 >= buf_p->size () - 1)
6d820c5c
DJ
9415 {
9416 /* Make some more room in the buffer. */
8d64371b
TT
9417 buf_p->resize (buf_p->size () + repeat);
9418 buf = buf_p->data ();
6d820c5c
DJ
9419 }
9420
c2d11a7d
JM
9421 memset (&buf[bc], buf[bc - 1], repeat);
9422 bc += repeat;
c2c6d25f
JM
9423 continue;
9424 }
9425
c2d11a7d 9426 buf[bc] = '\0';
6d820c5c 9427 printf_filtered (_("Invalid run length encoding: %s\n"), buf);
c2d11a7d 9428 return -1;
c2c6d25f 9429 }
c906108c 9430 default:
8d64371b 9431 if (bc >= buf_p->size () - 1)
c906108c 9432 {
6d820c5c 9433 /* Make some more room in the buffer. */
8d64371b
TT
9434 buf_p->resize (buf_p->size () * 2);
9435 buf = buf_p->data ();
c906108c
SS
9436 }
9437
6d820c5c
DJ
9438 buf[bc++] = c;
9439 csum += c;
9440 continue;
c906108c
SS
9441 }
9442 }
9443}
9444
ed2b7c17
TT
9445/* Set this to the maximum number of seconds to wait instead of waiting forever
9446 in target_wait(). If this timer times out, then it generates an error and
9447 the command is aborted. This replaces most of the need for timeouts in the
9448 GDB test suite, and makes it possible to distinguish between a hung target
9449 and one with slow communications. */
9450
9451static int watchdog = 0;
9452static void
9453show_watchdog (struct ui_file *file, int from_tty,
9454 struct cmd_list_element *c, const char *value)
9455{
9456 fprintf_filtered (file, _("Watchdog timer is %s.\n"), value);
9457}
9458
c906108c 9459/* Read a packet from the remote machine, with error checking, and
8d64371b
TT
9460 store it in *BUF. Resize *BUF if necessary to hold the result. If
9461 FOREVER, wait forever rather than timing out; this is used (in
9462 synchronous mode) to wait for a target that is is executing user
9463 code to stop. */
d9fcf2fb
JM
9464/* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
9465 don't have to change all the calls to getpkt to deal with the
9466 return value, because at the moment I don't know what the right
23860348 9467 thing to do it for those. */
6b8edb51 9468
c906108c 9469void
8d64371b 9470remote_target::getpkt (gdb::char_vector *buf, int forever)
d9fcf2fb 9471{
8d64371b 9472 getpkt_sane (buf, forever);
d9fcf2fb
JM
9473}
9474
9475
9476/* Read a packet from the remote machine, with error checking, and
8d64371b
TT
9477 store it in *BUF. Resize *BUF if necessary to hold the result. If
9478 FOREVER, wait forever rather than timing out; this is used (in
9479 synchronous mode) to wait for a target that is is executing user
9480 code to stop. If FOREVER == 0, this function is allowed to time
9481 out gracefully and return an indication of this to the caller.
9482 Otherwise return the number of bytes read. If EXPECTING_NOTIF,
9483 consider receiving a notification enough reason to return to the
9484 caller. *IS_NOTIF is an output boolean that indicates whether *BUF
9485 holds a notification or not (a regular packet). */
74531fed 9486
6b8edb51 9487int
8d64371b 9488remote_target::getpkt_or_notif_sane_1 (gdb::char_vector *buf,
6b8edb51
PA
9489 int forever, int expecting_notif,
9490 int *is_notif)
c906108c 9491{
2d717e4f 9492 struct remote_state *rs = get_remote_state ();
c906108c
SS
9493 int c;
9494 int tries;
9495 int timeout;
df4b58fe 9496 int val = -1;
c906108c 9497
2d717e4f
DJ
9498 /* We're reading a new response. Make sure we don't look at a
9499 previously cached response. */
9500 rs->cached_wait_status = 0;
9501
8d64371b 9502 strcpy (buf->data (), "timeout");
c906108c
SS
9503
9504 if (forever)
74531fed
PA
9505 timeout = watchdog > 0 ? watchdog : -1;
9506 else if (expecting_notif)
9507 timeout = 0; /* There should already be a char in the buffer. If
9508 not, bail out. */
c906108c
SS
9509 else
9510 timeout = remote_timeout;
9511
9512#define MAX_TRIES 3
9513
74531fed
PA
9514 /* Process any number of notifications, and then return when
9515 we get a packet. */
9516 for (;;)
c906108c 9517 {
d9c43928 9518 /* If we get a timeout or bad checksum, retry up to MAX_TRIES
74531fed
PA
9519 times. */
9520 for (tries = 1; tries <= MAX_TRIES; tries++)
c906108c 9521 {
74531fed
PA
9522 /* This can loop forever if the remote side sends us
9523 characters continuously, but if it pauses, we'll get
9524 SERIAL_TIMEOUT from readchar because of timeout. Then
9525 we'll count that as a retry.
9526
9527 Note that even when forever is set, we will only wait
9528 forever prior to the start of a packet. After that, we
9529 expect characters to arrive at a brisk pace. They should
9530 show up within remote_timeout intervals. */
9531 do
9532 c = readchar (timeout);
9533 while (c != SERIAL_TIMEOUT && c != '$' && c != '%');
c906108c
SS
9534
9535 if (c == SERIAL_TIMEOUT)
9536 {
74531fed
PA
9537 if (expecting_notif)
9538 return -1; /* Don't complain, it's normal to not get
9539 anything in this case. */
9540
23860348 9541 if (forever) /* Watchdog went off? Kill the target. */
c906108c 9542 {
78a095c3 9543 remote_unpush_target ();
598d3636
JK
9544 throw_error (TARGET_CLOSE_ERROR,
9545 _("Watchdog timeout has expired. "
9546 "Target detached."));
c906108c 9547 }
c906108c 9548 if (remote_debug)
0f71a2f6 9549 fputs_filtered ("Timed out.\n", gdb_stdlog);
c906108c 9550 }
74531fed
PA
9551 else
9552 {
9553 /* We've found the start of a packet or notification.
9554 Now collect the data. */
8d64371b 9555 val = read_frame (buf);
74531fed
PA
9556 if (val >= 0)
9557 break;
9558 }
9559
c33e31fd 9560 remote_serial_write ("-", 1);
c906108c 9561 }
c906108c 9562
74531fed
PA
9563 if (tries > MAX_TRIES)
9564 {
9565 /* We have tried hard enough, and just can't receive the
9566 packet/notification. Give up. */
9567 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
c906108c 9568
74531fed
PA
9569 /* Skip the ack char if we're in no-ack mode. */
9570 if (!rs->noack_mode)
c33e31fd 9571 remote_serial_write ("+", 1);
74531fed
PA
9572 return -1;
9573 }
c906108c 9574
74531fed
PA
9575 /* If we got an ordinary packet, return that to our caller. */
9576 if (c == '$')
c906108c
SS
9577 {
9578 if (remote_debug)
43e526b9 9579 {
6cc8564b
LM
9580 int max_chars;
9581
9582 if (remote_packet_max_chars < 0)
9583 max_chars = val;
9584 else
9585 max_chars = remote_packet_max_chars;
9586
6f8976bf 9587 std::string str
8d64371b 9588 = escape_buffer (buf->data (),
6cc8564b 9589 std::min (val, max_chars));
6f8976bf
YQ
9590
9591 fprintf_unfiltered (gdb_stdlog, "Packet received: %s",
9592 str.c_str ());
9593
6cc8564b 9594 if (val > max_chars)
567a3e54 9595 fprintf_unfiltered (gdb_stdlog, "[%d bytes omitted]",
6cc8564b 9596 val - max_chars);
6e5abd65 9597
6f8976bf 9598 fprintf_unfiltered (gdb_stdlog, "\n");
43e526b9 9599 }
a6f3e723
SL
9600
9601 /* Skip the ack char if we're in no-ack mode. */
9602 if (!rs->noack_mode)
c33e31fd 9603 remote_serial_write ("+", 1);
fee9eda9
YQ
9604 if (is_notif != NULL)
9605 *is_notif = 0;
0876f84a 9606 return val;
c906108c
SS
9607 }
9608
74531fed
PA
9609 /* If we got a notification, handle it, and go back to looking
9610 for a packet. */
9611 else
9612 {
9613 gdb_assert (c == '%');
9614
9615 if (remote_debug)
9616 {
8d64371b 9617 std::string str = escape_buffer (buf->data (), val);
6e5abd65 9618
6e5abd65
PA
9619 fprintf_unfiltered (gdb_stdlog,
9620 " Notification received: %s\n",
b3ced9ba 9621 str.c_str ());
74531fed 9622 }
fee9eda9
YQ
9623 if (is_notif != NULL)
9624 *is_notif = 1;
c906108c 9625
8d64371b 9626 handle_notification (rs->notif_state, buf->data ());
c906108c 9627
74531fed 9628 /* Notifications require no acknowledgement. */
a6f3e723 9629
74531fed 9630 if (expecting_notif)
fee9eda9 9631 return val;
74531fed
PA
9632 }
9633 }
9634}
9635
6b8edb51 9636int
8d64371b 9637remote_target::getpkt_sane (gdb::char_vector *buf, int forever)
74531fed 9638{
8d64371b 9639 return getpkt_or_notif_sane_1 (buf, forever, 0, NULL);
74531fed
PA
9640}
9641
6b8edb51 9642int
8d64371b 9643remote_target::getpkt_or_notif_sane (gdb::char_vector *buf, int forever,
6b8edb51 9644 int *is_notif)
74531fed 9645{
8d64371b 9646 return getpkt_or_notif_sane_1 (buf, forever, 1, is_notif);
c906108c 9647}
74531fed 9648
cbb8991c
DB
9649/* Kill any new fork children of process PID that haven't been
9650 processed by follow_fork. */
9651
6b8edb51
PA
9652void
9653remote_target::kill_new_fork_children (int pid)
cbb8991c 9654{
6b8edb51 9655 remote_state *rs = get_remote_state ();
cbb8991c 9656 struct notif_client *notif = &notif_client_stop;
cbb8991c
DB
9657
9658 /* Kill the fork child threads of any threads in process PID
9659 that are stopped at a fork event. */
08036331 9660 for (thread_info *thread : all_non_exited_threads ())
cbb8991c
DB
9661 {
9662 struct target_waitstatus *ws = &thread->pending_follow;
9663
9664 if (is_pending_fork_parent (ws, pid, thread->ptid))
9665 {
953edf2b 9666 int child_pid = ws->value.related_pid.pid ();
cbb8991c
DB
9667 int res;
9668
6b8edb51 9669 res = remote_vkill (child_pid);
cbb8991c
DB
9670 if (res != 0)
9671 error (_("Can't kill fork child process %d"), child_pid);
9672 }
9673 }
9674
9675 /* Check for any pending fork events (not reported or processed yet)
9676 in process PID and kill those fork child threads as well. */
9677 remote_notif_get_pending_events (notif);
953edf2b
TT
9678 for (auto &event : rs->stop_reply_queue)
9679 if (is_pending_fork_parent (&event->ws, pid, event->ptid))
9680 {
9681 int child_pid = event->ws.value.related_pid.pid ();
9682 int res;
9683
9684 res = remote_vkill (child_pid);
9685 if (res != 0)
9686 error (_("Can't kill fork child process %d"), child_pid);
9687 }
cbb8991c
DB
9688}
9689
c906108c 9690\f
8020350c
DB
9691/* Target hook to kill the current inferior. */
9692
f6ac5f3d
PA
9693void
9694remote_target::kill ()
43ff13b4 9695{
8020350c 9696 int res = -1;
e99b03dc 9697 int pid = inferior_ptid.pid ();
8020350c 9698 struct remote_state *rs = get_remote_state ();
0fdf84ca 9699
8020350c 9700 if (packet_support (PACKET_vKill) != PACKET_DISABLE)
0fdf84ca 9701 {
8020350c
DB
9702 /* If we're stopped while forking and we haven't followed yet,
9703 kill the child task. We need to do this before killing the
9704 parent task because if this is a vfork then the parent will
9705 be sleeping. */
6b8edb51 9706 kill_new_fork_children (pid);
8020350c 9707
6b8edb51 9708 res = remote_vkill (pid);
8020350c 9709 if (res == 0)
0fdf84ca 9710 {
bc1e6c81 9711 target_mourn_inferior (inferior_ptid);
0fdf84ca
PA
9712 return;
9713 }
8020350c 9714 }
0fdf84ca 9715
8020350c
DB
9716 /* If we are in 'target remote' mode and we are killing the only
9717 inferior, then we will tell gdbserver to exit and unpush the
9718 target. */
9719 if (res == -1 && !remote_multi_process_p (rs)
9720 && number_of_live_inferiors () == 1)
9721 {
9722 remote_kill_k ();
9723
9724 /* We've killed the remote end, we get to mourn it. If we are
9725 not in extended mode, mourning the inferior also unpushes
9726 remote_ops from the target stack, which closes the remote
9727 connection. */
bc1e6c81 9728 target_mourn_inferior (inferior_ptid);
8020350c
DB
9729
9730 return;
0fdf84ca 9731 }
43ff13b4 9732
8020350c 9733 error (_("Can't kill process"));
43ff13b4
JM
9734}
9735
8020350c
DB
9736/* Send a kill request to the target using the 'vKill' packet. */
9737
6b8edb51
PA
9738int
9739remote_target::remote_vkill (int pid)
82f73884 9740{
4082afcc 9741 if (packet_support (PACKET_vKill) == PACKET_DISABLE)
82f73884
PA
9742 return -1;
9743
6b8edb51
PA
9744 remote_state *rs = get_remote_state ();
9745
82f73884 9746 /* Tell the remote target to detach. */
8d64371b 9747 xsnprintf (rs->buf.data (), get_remote_packet_size (), "vKill;%x", pid);
82f73884 9748 putpkt (rs->buf);
8d64371b 9749 getpkt (&rs->buf, 0);
82f73884 9750
4082afcc
PA
9751 switch (packet_ok (rs->buf,
9752 &remote_protocol_packets[PACKET_vKill]))
9753 {
9754 case PACKET_OK:
9755 return 0;
9756 case PACKET_ERROR:
9757 return 1;
9758 case PACKET_UNKNOWN:
9759 return -1;
9760 default:
9761 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
9762 }
82f73884
PA
9763}
9764
8020350c
DB
9765/* Send a kill request to the target using the 'k' packet. */
9766
6b8edb51
PA
9767void
9768remote_target::remote_kill_k ()
82f73884 9769{
8020350c
DB
9770 /* Catch errors so the user can quit from gdb even when we
9771 aren't on speaking terms with the remote system. */
a70b8144 9772 try
82f73884 9773 {
82f73884 9774 putpkt ("k");
82f73884 9775 }
230d2906 9776 catch (const gdb_exception_error &ex)
8020350c
DB
9777 {
9778 if (ex.error == TARGET_CLOSE_ERROR)
9779 {
9780 /* If we got an (EOF) error that caused the target
9781 to go away, then we're done, that's what we wanted.
9782 "k" is susceptible to cause a premature EOF, given
9783 that the remote server isn't actually required to
9784 reply to "k", and it can happen that it doesn't
9785 even get to reply ACK to the "k". */
9786 return;
9787 }
82f73884 9788
8020350c
DB
9789 /* Otherwise, something went wrong. We didn't actually kill
9790 the target. Just propagate the exception, and let the
9791 user or higher layers decide what to do. */
eedc3f4f 9792 throw;
8020350c 9793 }
82f73884
PA
9794}
9795
f6ac5f3d
PA
9796void
9797remote_target::mourn_inferior ()
c906108c 9798{
8020350c 9799 struct remote_state *rs = get_remote_state ();
ce5ce7ed 9800
9607784a
PA
9801 /* We're no longer interested in notification events of an inferior
9802 that exited or was killed/detached. */
9803 discard_pending_stop_replies (current_inferior ());
9804
8020350c
DB
9805 /* In 'target remote' mode with one inferior, we close the connection. */
9806 if (!rs->extended && number_of_live_inferiors () <= 1)
9807 {
f6ac5f3d 9808 unpush_target (this);
c906108c 9809
8020350c
DB
9810 /* remote_close takes care of doing most of the clean up. */
9811 generic_mourn_inferior ();
9812 return;
9813 }
c906108c 9814
e24a49d8
PA
9815 /* In case we got here due to an error, but we're going to stay
9816 connected. */
9817 rs->waiting_for_stop_reply = 0;
9818
dc1981d7
PA
9819 /* If the current general thread belonged to the process we just
9820 detached from or has exited, the remote side current general
9821 thread becomes undefined. Considering a case like this:
9822
9823 - We just got here due to a detach.
9824 - The process that we're detaching from happens to immediately
9825 report a global breakpoint being hit in non-stop mode, in the
9826 same thread we had selected before.
9827 - GDB attaches to this process again.
9828 - This event happens to be the next event we handle.
9829
9830 GDB would consider that the current general thread didn't need to
9831 be set on the stub side (with Hg), since for all it knew,
9832 GENERAL_THREAD hadn't changed.
9833
9834 Notice that although in all-stop mode, the remote server always
9835 sets the current thread to the thread reporting the stop event,
9836 that doesn't happen in non-stop mode; in non-stop, the stub *must
9837 not* change the current thread when reporting a breakpoint hit,
9838 due to the decoupling of event reporting and event handling.
9839
9840 To keep things simple, we always invalidate our notion of the
9841 current thread. */
47f8a51d 9842 record_currthread (rs, minus_one_ptid);
dc1981d7 9843
8020350c 9844 /* Call common code to mark the inferior as not running. */
48aa3c27
PA
9845 generic_mourn_inferior ();
9846
d729566a 9847 if (!have_inferiors ())
2d717e4f 9848 {
82f73884
PA
9849 if (!remote_multi_process_p (rs))
9850 {
9851 /* Check whether the target is running now - some remote stubs
9852 automatically restart after kill. */
9853 putpkt ("?");
8d64371b 9854 getpkt (&rs->buf, 0);
82f73884
PA
9855
9856 if (rs->buf[0] == 'S' || rs->buf[0] == 'T')
9857 {
3e43a32a
MS
9858 /* Assume that the target has been restarted. Set
9859 inferior_ptid so that bits of core GDB realizes
9860 there's something here, e.g., so that the user can
9861 say "kill" again. */
82f73884
PA
9862 inferior_ptid = magic_null_ptid;
9863 }
82f73884 9864 }
2d717e4f
DJ
9865 }
9866}
c906108c 9867
57810aa7 9868bool
f6ac5f3d 9869extended_remote_target::supports_disable_randomization ()
03583c20 9870{
4082afcc 9871 return packet_support (PACKET_QDisableRandomization) == PACKET_ENABLE;
03583c20
UW
9872}
9873
6b8edb51
PA
9874void
9875remote_target::extended_remote_disable_randomization (int val)
03583c20
UW
9876{
9877 struct remote_state *rs = get_remote_state ();
9878 char *reply;
9879
8d64371b
TT
9880 xsnprintf (rs->buf.data (), get_remote_packet_size (),
9881 "QDisableRandomization:%x", val);
03583c20 9882 putpkt (rs->buf);
b6bb3468 9883 reply = remote_get_noisy_reply ();
03583c20
UW
9884 if (*reply == '\0')
9885 error (_("Target does not support QDisableRandomization."));
9886 if (strcmp (reply, "OK") != 0)
9887 error (_("Bogus QDisableRandomization reply from target: %s"), reply);
9888}
9889
6b8edb51
PA
9890int
9891remote_target::extended_remote_run (const std::string &args)
2d717e4f
DJ
9892{
9893 struct remote_state *rs = get_remote_state ();
2d717e4f 9894 int len;
94585166 9895 const char *remote_exec_file = get_remote_exec_file ();
c906108c 9896
2d717e4f
DJ
9897 /* If the user has disabled vRun support, or we have detected that
9898 support is not available, do not try it. */
4082afcc 9899 if (packet_support (PACKET_vRun) == PACKET_DISABLE)
2d717e4f 9900 return -1;
424163ea 9901
8d64371b
TT
9902 strcpy (rs->buf.data (), "vRun;");
9903 len = strlen (rs->buf.data ());
c906108c 9904
2d717e4f
DJ
9905 if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ())
9906 error (_("Remote file name too long for run packet"));
8d64371b 9907 len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf.data () + len,
9f1b45b0 9908 strlen (remote_exec_file));
2d717e4f 9909
7c5ded6a 9910 if (!args.empty ())
2d717e4f 9911 {
2d717e4f 9912 int i;
2d717e4f 9913
773a1edc 9914 gdb_argv argv (args.c_str ());
2d717e4f
DJ
9915 for (i = 0; argv[i] != NULL; i++)
9916 {
9917 if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ())
9918 error (_("Argument list too long for run packet"));
9919 rs->buf[len++] = ';';
8d64371b 9920 len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf.data () + len,
9f1b45b0 9921 strlen (argv[i]));
2d717e4f 9922 }
2d717e4f
DJ
9923 }
9924
9925 rs->buf[len++] = '\0';
9926
9927 putpkt (rs->buf);
8d64371b 9928 getpkt (&rs->buf, 0);
2d717e4f 9929
4082afcc 9930 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun]))
2d717e4f 9931 {
4082afcc 9932 case PACKET_OK:
3405876a 9933 /* We have a wait response. All is well. */
2d717e4f 9934 return 0;
4082afcc
PA
9935 case PACKET_UNKNOWN:
9936 return -1;
9937 case PACKET_ERROR:
2d717e4f
DJ
9938 if (remote_exec_file[0] == '\0')
9939 error (_("Running the default executable on the remote target failed; "
9940 "try \"set remote exec-file\"?"));
9941 else
9942 error (_("Running \"%s\" on the remote target failed"),
9943 remote_exec_file);
4082afcc
PA
9944 default:
9945 gdb_assert_not_reached (_("bad switch"));
2d717e4f 9946 }
c906108c
SS
9947}
9948
0a2dde4a
SDJ
9949/* Helper function to send set/unset environment packets. ACTION is
9950 either "set" or "unset". PACKET is either "QEnvironmentHexEncoded"
9951 or "QEnvironmentUnsetVariable". VALUE is the variable to be
9952 sent. */
9953
6b8edb51
PA
9954void
9955remote_target::send_environment_packet (const char *action,
9956 const char *packet,
9957 const char *value)
0a2dde4a 9958{
6b8edb51
PA
9959 remote_state *rs = get_remote_state ();
9960
0a2dde4a
SDJ
9961 /* Convert the environment variable to an hex string, which
9962 is the best format to be transmitted over the wire. */
9963 std::string encoded_value = bin2hex ((const gdb_byte *) value,
9964 strlen (value));
9965
8d64371b 9966 xsnprintf (rs->buf.data (), get_remote_packet_size (),
0a2dde4a
SDJ
9967 "%s:%s", packet, encoded_value.c_str ());
9968
9969 putpkt (rs->buf);
8d64371b
TT
9970 getpkt (&rs->buf, 0);
9971 if (strcmp (rs->buf.data (), "OK") != 0)
0a2dde4a
SDJ
9972 warning (_("Unable to %s environment variable '%s' on remote."),
9973 action, value);
9974}
9975
9976/* Helper function to handle the QEnvironment* packets. */
9977
6b8edb51
PA
9978void
9979remote_target::extended_remote_environment_support ()
0a2dde4a 9980{
6b8edb51
PA
9981 remote_state *rs = get_remote_state ();
9982
0a2dde4a
SDJ
9983 if (packet_support (PACKET_QEnvironmentReset) != PACKET_DISABLE)
9984 {
9985 putpkt ("QEnvironmentReset");
8d64371b
TT
9986 getpkt (&rs->buf, 0);
9987 if (strcmp (rs->buf.data (), "OK") != 0)
0a2dde4a
SDJ
9988 warning (_("Unable to reset environment on remote."));
9989 }
9990
9991 gdb_environ *e = &current_inferior ()->environment;
9992
9993 if (packet_support (PACKET_QEnvironmentHexEncoded) != PACKET_DISABLE)
9994 for (const std::string &el : e->user_set_env ())
6b8edb51 9995 send_environment_packet ("set", "QEnvironmentHexEncoded",
0a2dde4a
SDJ
9996 el.c_str ());
9997
9998 if (packet_support (PACKET_QEnvironmentUnset) != PACKET_DISABLE)
9999 for (const std::string &el : e->user_unset_env ())
6b8edb51 10000 send_environment_packet ("unset", "QEnvironmentUnset", el.c_str ());
0a2dde4a
SDJ
10001}
10002
bc3b087d
SDJ
10003/* Helper function to set the current working directory for the
10004 inferior in the remote target. */
10005
6b8edb51
PA
10006void
10007remote_target::extended_remote_set_inferior_cwd ()
bc3b087d
SDJ
10008{
10009 if (packet_support (PACKET_QSetWorkingDir) != PACKET_DISABLE)
10010 {
10011 const char *inferior_cwd = get_inferior_cwd ();
6b8edb51 10012 remote_state *rs = get_remote_state ();
bc3b087d
SDJ
10013
10014 if (inferior_cwd != NULL)
10015 {
10016 std::string hexpath = bin2hex ((const gdb_byte *) inferior_cwd,
10017 strlen (inferior_cwd));
10018
8d64371b 10019 xsnprintf (rs->buf.data (), get_remote_packet_size (),
bc3b087d
SDJ
10020 "QSetWorkingDir:%s", hexpath.c_str ());
10021 }
10022 else
10023 {
10024 /* An empty inferior_cwd means that the user wants us to
10025 reset the remote server's inferior's cwd. */
8d64371b 10026 xsnprintf (rs->buf.data (), get_remote_packet_size (),
bc3b087d
SDJ
10027 "QSetWorkingDir:");
10028 }
10029
10030 putpkt (rs->buf);
8d64371b 10031 getpkt (&rs->buf, 0);
bc3b087d
SDJ
10032 if (packet_ok (rs->buf,
10033 &remote_protocol_packets[PACKET_QSetWorkingDir])
10034 != PACKET_OK)
10035 error (_("\
10036Remote replied unexpectedly while setting the inferior's working\n\
10037directory: %s"),
8d64371b 10038 rs->buf.data ());
bc3b087d
SDJ
10039
10040 }
10041}
10042
2d717e4f
DJ
10043/* In the extended protocol we want to be able to do things like
10044 "run" and have them basically work as expected. So we need
10045 a special create_inferior function. We support changing the
10046 executable file and the command line arguments, but not the
10047 environment. */
10048
f6ac5f3d
PA
10049void
10050extended_remote_target::create_inferior (const char *exec_file,
10051 const std::string &args,
10052 char **env, int from_tty)
43ff13b4 10053{
3405876a
PA
10054 int run_worked;
10055 char *stop_reply;
10056 struct remote_state *rs = get_remote_state ();
94585166 10057 const char *remote_exec_file = get_remote_exec_file ();
3405876a 10058
43ff13b4 10059 /* If running asynchronously, register the target file descriptor
23860348 10060 with the event loop. */
75c99385 10061 if (target_can_async_p ())
6a3753b3 10062 target_async (1);
43ff13b4 10063
03583c20 10064 /* Disable address space randomization if requested (and supported). */
f6ac5f3d 10065 if (supports_disable_randomization ())
03583c20
UW
10066 extended_remote_disable_randomization (disable_randomization);
10067
aefd8b33
SDJ
10068 /* If startup-with-shell is on, we inform gdbserver to start the
10069 remote inferior using a shell. */
10070 if (packet_support (PACKET_QStartupWithShell) != PACKET_DISABLE)
10071 {
8d64371b 10072 xsnprintf (rs->buf.data (), get_remote_packet_size (),
aefd8b33
SDJ
10073 "QStartupWithShell:%d", startup_with_shell ? 1 : 0);
10074 putpkt (rs->buf);
8d64371b
TT
10075 getpkt (&rs->buf, 0);
10076 if (strcmp (rs->buf.data (), "OK") != 0)
aefd8b33
SDJ
10077 error (_("\
10078Remote replied unexpectedly while setting startup-with-shell: %s"),
8d64371b 10079 rs->buf.data ());
aefd8b33
SDJ
10080 }
10081
6b8edb51 10082 extended_remote_environment_support ();
0a2dde4a 10083
6b8edb51 10084 extended_remote_set_inferior_cwd ();
bc3b087d 10085
43ff13b4 10086 /* Now restart the remote server. */
3405876a
PA
10087 run_worked = extended_remote_run (args) != -1;
10088 if (!run_worked)
2d717e4f
DJ
10089 {
10090 /* vRun was not supported. Fail if we need it to do what the
10091 user requested. */
10092 if (remote_exec_file[0])
10093 error (_("Remote target does not support \"set remote exec-file\""));
7c5ded6a 10094 if (!args.empty ())
65e65158 10095 error (_("Remote target does not support \"set args\" or run ARGS"));
43ff13b4 10096
2d717e4f
DJ
10097 /* Fall back to "R". */
10098 extended_remote_restart ();
10099 }
424163ea 10100
3405876a 10101 /* vRun's success return is a stop reply. */
8d64371b 10102 stop_reply = run_worked ? rs->buf.data () : NULL;
3405876a 10103 add_current_inferior_and_thread (stop_reply);
c0a2216e 10104
2d717e4f
DJ
10105 /* Get updated offsets, if the stub uses qOffsets. */
10106 get_offsets ();
2d717e4f 10107}
c906108c 10108\f
c5aa993b 10109
b775012e
LM
10110/* Given a location's target info BP_TGT and the packet buffer BUF, output
10111 the list of conditions (in agent expression bytecode format), if any, the
10112 target needs to evaluate. The output is placed into the packet buffer
bba74b36 10113 started from BUF and ended at BUF_END. */
b775012e
LM
10114
10115static int
10116remote_add_target_side_condition (struct gdbarch *gdbarch,
bba74b36
YQ
10117 struct bp_target_info *bp_tgt, char *buf,
10118 char *buf_end)
b775012e 10119{
3cde5c42 10120 if (bp_tgt->conditions.empty ())
b775012e
LM
10121 return 0;
10122
10123 buf += strlen (buf);
bba74b36 10124 xsnprintf (buf, buf_end - buf, "%s", ";");
b775012e
LM
10125 buf++;
10126
83621223 10127 /* Send conditions to the target. */
d538e36d 10128 for (agent_expr *aexpr : bp_tgt->conditions)
b775012e 10129 {
bba74b36 10130 xsnprintf (buf, buf_end - buf, "X%x,", aexpr->len);
b775012e 10131 buf += strlen (buf);
3cde5c42 10132 for (int i = 0; i < aexpr->len; ++i)
b775012e
LM
10133 buf = pack_hex_byte (buf, aexpr->buf[i]);
10134 *buf = '\0';
10135 }
b775012e
LM
10136 return 0;
10137}
10138
d3ce09f5
SS
10139static void
10140remote_add_target_side_commands (struct gdbarch *gdbarch,
10141 struct bp_target_info *bp_tgt, char *buf)
10142{
3cde5c42 10143 if (bp_tgt->tcommands.empty ())
d3ce09f5
SS
10144 return;
10145
10146 buf += strlen (buf);
10147
10148 sprintf (buf, ";cmds:%x,", bp_tgt->persist);
10149 buf += strlen (buf);
10150
10151 /* Concatenate all the agent expressions that are commands into the
10152 cmds parameter. */
df97be55 10153 for (agent_expr *aexpr : bp_tgt->tcommands)
d3ce09f5
SS
10154 {
10155 sprintf (buf, "X%x,", aexpr->len);
10156 buf += strlen (buf);
3cde5c42 10157 for (int i = 0; i < aexpr->len; ++i)
d3ce09f5
SS
10158 buf = pack_hex_byte (buf, aexpr->buf[i]);
10159 *buf = '\0';
10160 }
d3ce09f5
SS
10161}
10162
8181d85f
DJ
10163/* Insert a breakpoint. On targets that have software breakpoint
10164 support, we ask the remote target to do the work; on targets
10165 which don't, we insert a traditional memory breakpoint. */
c906108c 10166
f6ac5f3d
PA
10167int
10168remote_target::insert_breakpoint (struct gdbarch *gdbarch,
10169 struct bp_target_info *bp_tgt)
c906108c 10170{
d471ea57
AC
10171 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
10172 If it succeeds, then set the support to PACKET_ENABLE. If it
10173 fails, and the user has explicitly requested the Z support then
23860348 10174 report an error, otherwise, mark it disabled and go on. */
802188a7 10175
4082afcc 10176 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 10177 {
0d5ed153 10178 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 10179 struct remote_state *rs;
bba74b36 10180 char *p, *endbuf;
4fff2411 10181
28439a30
PA
10182 /* Make sure the remote is pointing at the right process, if
10183 necessary. */
10184 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10185 set_general_process ();
10186
4fff2411 10187 rs = get_remote_state ();
8d64371b
TT
10188 p = rs->buf.data ();
10189 endbuf = p + get_remote_packet_size ();
802188a7 10190
96baa820
JM
10191 *(p++) = 'Z';
10192 *(p++) = '0';
10193 *(p++) = ',';
7c0f6dcc 10194 addr = (ULONGEST) remote_address_masked (addr);
8181d85f 10195 p += hexnumstr (p, addr);
579c6ad9 10196 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
802188a7 10197
f6ac5f3d 10198 if (supports_evaluation_of_breakpoint_conditions ())
bba74b36 10199 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 10200
f6ac5f3d 10201 if (can_run_breakpoint_commands ())
d3ce09f5
SS
10202 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10203
6d820c5c 10204 putpkt (rs->buf);
8d64371b 10205 getpkt (&rs->buf, 0);
96baa820 10206
6d820c5c 10207 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
96baa820 10208 {
d471ea57
AC
10209 case PACKET_ERROR:
10210 return -1;
10211 case PACKET_OK:
10212 return 0;
10213 case PACKET_UNKNOWN:
10214 break;
96baa820
JM
10215 }
10216 }
c906108c 10217
0000e5cc
PA
10218 /* If this breakpoint has target-side commands but this stub doesn't
10219 support Z0 packets, throw error. */
3cde5c42 10220 if (!bp_tgt->tcommands.empty ())
0000e5cc
PA
10221 throw_error (NOT_SUPPORTED_ERROR, _("\
10222Target doesn't support breakpoints that have target side commands."));
10223
f6ac5f3d 10224 return memory_insert_breakpoint (this, gdbarch, bp_tgt);
c906108c
SS
10225}
10226
f6ac5f3d
PA
10227int
10228remote_target::remove_breakpoint (struct gdbarch *gdbarch,
10229 struct bp_target_info *bp_tgt,
10230 enum remove_bp_reason reason)
c906108c 10231{
8181d85f 10232 CORE_ADDR addr = bp_tgt->placed_address;
d01949b6 10233 struct remote_state *rs = get_remote_state ();
96baa820 10234
4082afcc 10235 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 10236 {
8d64371b
TT
10237 char *p = rs->buf.data ();
10238 char *endbuf = p + get_remote_packet_size ();
802188a7 10239
28439a30
PA
10240 /* Make sure the remote is pointing at the right process, if
10241 necessary. */
10242 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10243 set_general_process ();
10244
96baa820
JM
10245 *(p++) = 'z';
10246 *(p++) = '0';
10247 *(p++) = ',';
10248
8181d85f
DJ
10249 addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
10250 p += hexnumstr (p, addr);
579c6ad9 10251 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
802188a7 10252
6d820c5c 10253 putpkt (rs->buf);
8d64371b 10254 getpkt (&rs->buf, 0);
96baa820 10255
6d820c5c 10256 return (rs->buf[0] == 'E');
96baa820
JM
10257 }
10258
f6ac5f3d 10259 return memory_remove_breakpoint (this, gdbarch, bp_tgt, reason);
c906108c
SS
10260}
10261
f486487f 10262static enum Z_packet_type
d471ea57
AC
10263watchpoint_to_Z_packet (int type)
10264{
10265 switch (type)
10266 {
10267 case hw_write:
bb858e6a 10268 return Z_PACKET_WRITE_WP;
d471ea57
AC
10269 break;
10270 case hw_read:
bb858e6a 10271 return Z_PACKET_READ_WP;
d471ea57
AC
10272 break;
10273 case hw_access:
bb858e6a 10274 return Z_PACKET_ACCESS_WP;
d471ea57
AC
10275 break;
10276 default:
8e65ff28 10277 internal_error (__FILE__, __LINE__,
e2e0b3e5 10278 _("hw_bp_to_z: bad watchpoint type %d"), type);
d471ea57
AC
10279 }
10280}
10281
f6ac5f3d
PA
10282int
10283remote_target::insert_watchpoint (CORE_ADDR addr, int len,
10284 enum target_hw_bp_type type, struct expression *cond)
96baa820 10285{
d01949b6 10286 struct remote_state *rs = get_remote_state ();
8d64371b 10287 char *endbuf = rs->buf.data () + get_remote_packet_size ();
e514a9d6 10288 char *p;
d471ea57 10289 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
96baa820 10290
4082afcc 10291 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
85d721b8 10292 return 1;
802188a7 10293
28439a30
PA
10294 /* Make sure the remote is pointing at the right process, if
10295 necessary. */
10296 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10297 set_general_process ();
10298
8d64371b
TT
10299 xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "Z%x,", packet);
10300 p = strchr (rs->buf.data (), '\0');
96baa820
JM
10301 addr = remote_address_masked (addr);
10302 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 10303 xsnprintf (p, endbuf - p, ",%x", len);
802188a7 10304
6d820c5c 10305 putpkt (rs->buf);
8d64371b 10306 getpkt (&rs->buf, 0);
96baa820 10307
6d820c5c 10308 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
10309 {
10310 case PACKET_ERROR:
d471ea57 10311 return -1;
85d721b8
PA
10312 case PACKET_UNKNOWN:
10313 return 1;
d471ea57
AC
10314 case PACKET_OK:
10315 return 0;
10316 }
8e65ff28 10317 internal_error (__FILE__, __LINE__,
e2e0b3e5 10318 _("remote_insert_watchpoint: reached end of function"));
96baa820
JM
10319}
10320
57810aa7 10321bool
f6ac5f3d
PA
10322remote_target::watchpoint_addr_within_range (CORE_ADDR addr,
10323 CORE_ADDR start, int length)
283002cf
MR
10324{
10325 CORE_ADDR diff = remote_address_masked (addr - start);
10326
10327 return diff < length;
10328}
10329
d471ea57 10330
f6ac5f3d
PA
10331int
10332remote_target::remove_watchpoint (CORE_ADDR addr, int len,
10333 enum target_hw_bp_type type, struct expression *cond)
96baa820 10334{
d01949b6 10335 struct remote_state *rs = get_remote_state ();
8d64371b 10336 char *endbuf = rs->buf.data () + get_remote_packet_size ();
e514a9d6 10337 char *p;
d471ea57
AC
10338 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
10339
4082afcc 10340 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
5cffb350 10341 return -1;
802188a7 10342
28439a30
PA
10343 /* Make sure the remote is pointing at the right process, if
10344 necessary. */
10345 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10346 set_general_process ();
10347
8d64371b
TT
10348 xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "z%x,", packet);
10349 p = strchr (rs->buf.data (), '\0');
96baa820
JM
10350 addr = remote_address_masked (addr);
10351 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 10352 xsnprintf (p, endbuf - p, ",%x", len);
6d820c5c 10353 putpkt (rs->buf);
8d64371b 10354 getpkt (&rs->buf, 0);
96baa820 10355
6d820c5c 10356 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
10357 {
10358 case PACKET_ERROR:
10359 case PACKET_UNKNOWN:
10360 return -1;
10361 case PACKET_OK:
10362 return 0;
10363 }
8e65ff28 10364 internal_error (__FILE__, __LINE__,
e2e0b3e5 10365 _("remote_remove_watchpoint: reached end of function"));
96baa820
JM
10366}
10367
3c3bea1c 10368
60fcc1c3
TT
10369static int remote_hw_watchpoint_limit = -1;
10370static int remote_hw_watchpoint_length_limit = -1;
10371static int remote_hw_breakpoint_limit = -1;
d471ea57 10372
f6ac5f3d
PA
10373int
10374remote_target::region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
480a3f21
PW
10375{
10376 if (remote_hw_watchpoint_length_limit == 0)
10377 return 0;
10378 else if (remote_hw_watchpoint_length_limit < 0)
10379 return 1;
10380 else if (len <= remote_hw_watchpoint_length_limit)
10381 return 1;
10382 else
10383 return 0;
10384}
10385
f6ac5f3d
PA
10386int
10387remote_target::can_use_hw_breakpoint (enum bptype type, int cnt, int ot)
96baa820 10388{
3c3bea1c
GS
10389 if (type == bp_hardware_breakpoint)
10390 {
10391 if (remote_hw_breakpoint_limit == 0)
10392 return 0;
501eef12
AC
10393 else if (remote_hw_breakpoint_limit < 0)
10394 return 1;
3c3bea1c
GS
10395 else if (cnt <= remote_hw_breakpoint_limit)
10396 return 1;
10397 }
10398 else
10399 {
10400 if (remote_hw_watchpoint_limit == 0)
10401 return 0;
501eef12
AC
10402 else if (remote_hw_watchpoint_limit < 0)
10403 return 1;
3c3bea1c
GS
10404 else if (ot)
10405 return -1;
10406 else if (cnt <= remote_hw_watchpoint_limit)
10407 return 1;
10408 }
10409 return -1;
10410}
10411
f7e6eed5
PA
10412/* The to_stopped_by_sw_breakpoint method of target remote. */
10413
57810aa7 10414bool
f6ac5f3d 10415remote_target::stopped_by_sw_breakpoint ()
f7e6eed5 10416{
799a2abe 10417 struct thread_info *thread = inferior_thread ();
f7e6eed5 10418
799a2abe 10419 return (thread->priv != NULL
7aabaf9d
SM
10420 && (get_remote_thread_info (thread)->stop_reason
10421 == TARGET_STOPPED_BY_SW_BREAKPOINT));
f7e6eed5
PA
10422}
10423
10424/* The to_supports_stopped_by_sw_breakpoint method of target
10425 remote. */
10426
57810aa7 10427bool
f6ac5f3d 10428remote_target::supports_stopped_by_sw_breakpoint ()
f7e6eed5 10429{
f7e6eed5
PA
10430 return (packet_support (PACKET_swbreak_feature) == PACKET_ENABLE);
10431}
10432
10433/* The to_stopped_by_hw_breakpoint method of target remote. */
10434
57810aa7 10435bool
f6ac5f3d 10436remote_target::stopped_by_hw_breakpoint ()
f7e6eed5 10437{
799a2abe 10438 struct thread_info *thread = inferior_thread ();
f7e6eed5 10439
799a2abe 10440 return (thread->priv != NULL
7aabaf9d
SM
10441 && (get_remote_thread_info (thread)->stop_reason
10442 == TARGET_STOPPED_BY_HW_BREAKPOINT));
f7e6eed5
PA
10443}
10444
10445/* The to_supports_stopped_by_hw_breakpoint method of target
10446 remote. */
10447
57810aa7 10448bool
f6ac5f3d 10449remote_target::supports_stopped_by_hw_breakpoint ()
f7e6eed5 10450{
f7e6eed5
PA
10451 return (packet_support (PACKET_hwbreak_feature) == PACKET_ENABLE);
10452}
10453
57810aa7 10454bool
f6ac5f3d 10455remote_target::stopped_by_watchpoint ()
3c3bea1c 10456{
799a2abe 10457 struct thread_info *thread = inferior_thread ();
ee154bee 10458
799a2abe 10459 return (thread->priv != NULL
7aabaf9d
SM
10460 && (get_remote_thread_info (thread)->stop_reason
10461 == TARGET_STOPPED_BY_WATCHPOINT));
3c3bea1c
GS
10462}
10463
57810aa7 10464bool
f6ac5f3d 10465remote_target::stopped_data_address (CORE_ADDR *addr_p)
3c3bea1c 10466{
799a2abe 10467 struct thread_info *thread = inferior_thread ();
a744cf53 10468
799a2abe 10469 if (thread->priv != NULL
7aabaf9d
SM
10470 && (get_remote_thread_info (thread)->stop_reason
10471 == TARGET_STOPPED_BY_WATCHPOINT))
4aa7a7f5 10472 {
7aabaf9d 10473 *addr_p = get_remote_thread_info (thread)->watch_data_address;
57810aa7 10474 return true;
4aa7a7f5
JJ
10475 }
10476
57810aa7 10477 return false;
3c3bea1c
GS
10478}
10479
10480
f6ac5f3d
PA
10481int
10482remote_target::insert_hw_breakpoint (struct gdbarch *gdbarch,
10483 struct bp_target_info *bp_tgt)
3c3bea1c 10484{
0d5ed153 10485 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 10486 struct remote_state *rs;
bba74b36 10487 char *p, *endbuf;
dd61ec5c 10488 char *message;
3c3bea1c 10489
4082afcc 10490 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 10491 return -1;
2bc416ba 10492
28439a30
PA
10493 /* Make sure the remote is pointing at the right process, if
10494 necessary. */
10495 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10496 set_general_process ();
10497
4fff2411 10498 rs = get_remote_state ();
8d64371b
TT
10499 p = rs->buf.data ();
10500 endbuf = p + get_remote_packet_size ();
4fff2411 10501
96baa820
JM
10502 *(p++) = 'Z';
10503 *(p++) = '1';
10504 *(p++) = ',';
802188a7 10505
0d5ed153 10506 addr = remote_address_masked (addr);
96baa820 10507 p += hexnumstr (p, (ULONGEST) addr);
579c6ad9 10508 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
96baa820 10509
f6ac5f3d 10510 if (supports_evaluation_of_breakpoint_conditions ())
bba74b36 10511 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 10512
f6ac5f3d 10513 if (can_run_breakpoint_commands ())
d3ce09f5
SS
10514 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10515
6d820c5c 10516 putpkt (rs->buf);
8d64371b 10517 getpkt (&rs->buf, 0);
96baa820 10518
6d820c5c 10519 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
10520 {
10521 case PACKET_ERROR:
dd61ec5c
MW
10522 if (rs->buf[1] == '.')
10523 {
8d64371b 10524 message = strchr (&rs->buf[2], '.');
dd61ec5c 10525 if (message)
0316657e 10526 error (_("Remote failure reply: %s"), message + 1);
dd61ec5c
MW
10527 }
10528 return -1;
d471ea57
AC
10529 case PACKET_UNKNOWN:
10530 return -1;
10531 case PACKET_OK:
10532 return 0;
10533 }
8e65ff28 10534 internal_error (__FILE__, __LINE__,
e2e0b3e5 10535 _("remote_insert_hw_breakpoint: reached end of function"));
96baa820
JM
10536}
10537
d471ea57 10538
f6ac5f3d
PA
10539int
10540remote_target::remove_hw_breakpoint (struct gdbarch *gdbarch,
10541 struct bp_target_info *bp_tgt)
96baa820 10542{
8181d85f 10543 CORE_ADDR addr;
d01949b6 10544 struct remote_state *rs = get_remote_state ();
8d64371b
TT
10545 char *p = rs->buf.data ();
10546 char *endbuf = p + get_remote_packet_size ();
c8189ed1 10547
4082afcc 10548 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 10549 return -1;
802188a7 10550
28439a30
PA
10551 /* Make sure the remote is pointing at the right process, if
10552 necessary. */
10553 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10554 set_general_process ();
10555
96baa820
JM
10556 *(p++) = 'z';
10557 *(p++) = '1';
10558 *(p++) = ',';
802188a7 10559
8181d85f 10560 addr = remote_address_masked (bp_tgt->placed_address);
96baa820 10561 p += hexnumstr (p, (ULONGEST) addr);
579c6ad9 10562 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
96baa820 10563
6d820c5c 10564 putpkt (rs->buf);
8d64371b 10565 getpkt (&rs->buf, 0);
802188a7 10566
6d820c5c 10567 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
10568 {
10569 case PACKET_ERROR:
10570 case PACKET_UNKNOWN:
10571 return -1;
10572 case PACKET_OK:
10573 return 0;
10574 }
8e65ff28 10575 internal_error (__FILE__, __LINE__,
e2e0b3e5 10576 _("remote_remove_hw_breakpoint: reached end of function"));
96baa820 10577}
96baa820 10578
4a5e7a5b
PA
10579/* Verify memory using the "qCRC:" request. */
10580
f6ac5f3d
PA
10581int
10582remote_target::verify_memory (const gdb_byte *data, CORE_ADDR lma, ULONGEST size)
4a5e7a5b
PA
10583{
10584 struct remote_state *rs = get_remote_state ();
10585 unsigned long host_crc, target_crc;
10586 char *tmp;
10587
936d2992
PA
10588 /* It doesn't make sense to use qCRC if the remote target is
10589 connected but not running. */
10590 if (target_has_execution && packet_support (PACKET_qCRC) != PACKET_DISABLE)
10591 {
10592 enum packet_result result;
28439a30 10593
936d2992
PA
10594 /* Make sure the remote is pointing at the right process. */
10595 set_general_process ();
4a5e7a5b 10596
936d2992 10597 /* FIXME: assumes lma can fit into long. */
8d64371b 10598 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qCRC:%lx,%lx",
936d2992
PA
10599 (long) lma, (long) size);
10600 putpkt (rs->buf);
4a5e7a5b 10601
936d2992
PA
10602 /* Be clever; compute the host_crc before waiting for target
10603 reply. */
10604 host_crc = xcrc32 (data, size, 0xffffffff);
10605
8d64371b 10606 getpkt (&rs->buf, 0);
4a5e7a5b 10607
936d2992
PA
10608 result = packet_ok (rs->buf,
10609 &remote_protocol_packets[PACKET_qCRC]);
10610 if (result == PACKET_ERROR)
10611 return -1;
10612 else if (result == PACKET_OK)
10613 {
10614 for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
10615 target_crc = target_crc * 16 + fromhex (*tmp);
4a5e7a5b 10616
936d2992
PA
10617 return (host_crc == target_crc);
10618 }
10619 }
4a5e7a5b 10620
f6ac5f3d 10621 return simple_verify_memory (this, data, lma, size);
4a5e7a5b
PA
10622}
10623
c906108c
SS
10624/* compare-sections command
10625
10626 With no arguments, compares each loadable section in the exec bfd
10627 with the same memory range on the target, and reports mismatches.
4a5e7a5b 10628 Useful for verifying the image on the target against the exec file. */
e514a9d6 10629
c906108c 10630static void
ac88e2de 10631compare_sections_command (const char *args, int from_tty)
c906108c
SS
10632{
10633 asection *s;
ce359b09 10634 const char *sectname;
c906108c
SS
10635 bfd_size_type size;
10636 bfd_vma lma;
10637 int matched = 0;
10638 int mismatched = 0;
4a5e7a5b 10639 int res;
95cf3b38 10640 int read_only = 0;
c906108c
SS
10641
10642 if (!exec_bfd)
8a3fe4f8 10643 error (_("command cannot be used without an exec file"));
c906108c 10644
95cf3b38
DT
10645 if (args != NULL && strcmp (args, "-r") == 0)
10646 {
10647 read_only = 1;
10648 args = NULL;
10649 }
10650
c5aa993b 10651 for (s = exec_bfd->sections; s; s = s->next)
c906108c
SS
10652 {
10653 if (!(s->flags & SEC_LOAD))
0df8b418 10654 continue; /* Skip non-loadable section. */
c906108c 10655
95cf3b38
DT
10656 if (read_only && (s->flags & SEC_READONLY) == 0)
10657 continue; /* Skip writeable sections */
10658
fd361982 10659 size = bfd_section_size (s);
c906108c 10660 if (size == 0)
0df8b418 10661 continue; /* Skip zero-length section. */
c906108c 10662
fd361982 10663 sectname = bfd_section_name (s);
c906108c 10664 if (args && strcmp (args, sectname) != 0)
0df8b418 10665 continue; /* Not the section selected by user. */
c906108c 10666
0df8b418 10667 matched = 1; /* Do this section. */
c906108c 10668 lma = s->lma;
c906108c 10669
b80406ac
TT
10670 gdb::byte_vector sectdata (size);
10671 bfd_get_section_contents (exec_bfd, s, sectdata.data (), 0, size);
c906108c 10672
b80406ac 10673 res = target_verify_memory (sectdata.data (), lma, size);
4a5e7a5b
PA
10674
10675 if (res == -1)
5af949e3 10676 error (_("target memory fault, section %s, range %s -- %s"), sectname,
f5656ead
TT
10677 paddress (target_gdbarch (), lma),
10678 paddress (target_gdbarch (), lma + size));
c906108c 10679
5af949e3 10680 printf_filtered ("Section %s, range %s -- %s: ", sectname,
f5656ead
TT
10681 paddress (target_gdbarch (), lma),
10682 paddress (target_gdbarch (), lma + size));
4a5e7a5b 10683 if (res)
c906108c
SS
10684 printf_filtered ("matched.\n");
10685 else
c5aa993b
JM
10686 {
10687 printf_filtered ("MIS-MATCHED!\n");
10688 mismatched++;
10689 }
c906108c
SS
10690 }
10691 if (mismatched > 0)
936d2992 10692 warning (_("One or more sections of the target image does not match\n\
8a3fe4f8 10693the loaded file\n"));
c906108c 10694 if (args && !matched)
a3f17187 10695 printf_filtered (_("No loaded section named '%s'.\n"), args);
c906108c
SS
10696}
10697
0e7f50da
UW
10698/* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
10699 into remote target. The number of bytes written to the remote
10700 target is returned, or -1 for error. */
10701
6b8edb51
PA
10702target_xfer_status
10703remote_target::remote_write_qxfer (const char *object_name,
10704 const char *annex, const gdb_byte *writebuf,
10705 ULONGEST offset, LONGEST len,
10706 ULONGEST *xfered_len,
10707 struct packet_config *packet)
0e7f50da
UW
10708{
10709 int i, buf_len;
10710 ULONGEST n;
0e7f50da
UW
10711 struct remote_state *rs = get_remote_state ();
10712 int max_size = get_memory_write_packet_size ();
10713
7cc244de 10714 if (packet_config_support (packet) == PACKET_DISABLE)
2ed4b548 10715 return TARGET_XFER_E_IO;
0e7f50da
UW
10716
10717 /* Insert header. */
8d64371b 10718 i = snprintf (rs->buf.data (), max_size,
0e7f50da
UW
10719 "qXfer:%s:write:%s:%s:",
10720 object_name, annex ? annex : "",
10721 phex_nz (offset, sizeof offset));
10722 max_size -= (i + 1);
10723
10724 /* Escape as much data as fits into rs->buf. */
10725 buf_len = remote_escape_output
8d64371b 10726 (writebuf, len, 1, (gdb_byte *) rs->buf.data () + i, &max_size, max_size);
0e7f50da 10727
8d64371b
TT
10728 if (putpkt_binary (rs->buf.data (), i + buf_len) < 0
10729 || getpkt_sane (&rs->buf, 0) < 0
0e7f50da 10730 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 10731 return TARGET_XFER_E_IO;
0e7f50da 10732
8d64371b 10733 unpack_varlen_hex (rs->buf.data (), &n);
9b409511
YQ
10734
10735 *xfered_len = n;
92ffd475 10736 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
0e7f50da
UW
10737}
10738
0876f84a
DJ
10739/* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
10740 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
10741 number of bytes read is returned, or 0 for EOF, or -1 for error.
10742 The number of bytes read may be less than LEN without indicating an
10743 EOF. PACKET is checked and updated to indicate whether the remote
10744 target supports this object. */
10745
6b8edb51
PA
10746target_xfer_status
10747remote_target::remote_read_qxfer (const char *object_name,
10748 const char *annex,
10749 gdb_byte *readbuf, ULONGEST offset,
10750 LONGEST len,
10751 ULONGEST *xfered_len,
10752 struct packet_config *packet)
0876f84a 10753{
0876f84a 10754 struct remote_state *rs = get_remote_state ();
0876f84a
DJ
10755 LONGEST i, n, packet_len;
10756
7cc244de 10757 if (packet_config_support (packet) == PACKET_DISABLE)
2ed4b548 10758 return TARGET_XFER_E_IO;
0876f84a
DJ
10759
10760 /* Check whether we've cached an end-of-object packet that matches
10761 this request. */
8e88304f 10762 if (rs->finished_object)
0876f84a 10763 {
8e88304f
TT
10764 if (strcmp (object_name, rs->finished_object) == 0
10765 && strcmp (annex ? annex : "", rs->finished_annex) == 0
10766 && offset == rs->finished_offset)
9b409511
YQ
10767 return TARGET_XFER_EOF;
10768
0876f84a
DJ
10769
10770 /* Otherwise, we're now reading something different. Discard
10771 the cache. */
8e88304f
TT
10772 xfree (rs->finished_object);
10773 xfree (rs->finished_annex);
10774 rs->finished_object = NULL;
10775 rs->finished_annex = NULL;
0876f84a
DJ
10776 }
10777
10778 /* Request only enough to fit in a single packet. The actual data
10779 may not, since we don't know how much of it will need to be escaped;
10780 the target is free to respond with slightly less data. We subtract
10781 five to account for the response type and the protocol frame. */
768adc05 10782 n = std::min<LONGEST> (get_remote_packet_size () - 5, len);
8d64371b
TT
10783 snprintf (rs->buf.data (), get_remote_packet_size () - 4,
10784 "qXfer:%s:read:%s:%s,%s",
0876f84a
DJ
10785 object_name, annex ? annex : "",
10786 phex_nz (offset, sizeof offset),
10787 phex_nz (n, sizeof n));
10788 i = putpkt (rs->buf);
10789 if (i < 0)
2ed4b548 10790 return TARGET_XFER_E_IO;
0876f84a
DJ
10791
10792 rs->buf[0] = '\0';
8d64371b 10793 packet_len = getpkt_sane (&rs->buf, 0);
0876f84a 10794 if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 10795 return TARGET_XFER_E_IO;
0876f84a
DJ
10796
10797 if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
8d64371b 10798 error (_("Unknown remote qXfer reply: %s"), rs->buf.data ());
0876f84a
DJ
10799
10800 /* 'm' means there is (or at least might be) more data after this
10801 batch. That does not make sense unless there's at least one byte
10802 of data in this reply. */
10803 if (rs->buf[0] == 'm' && packet_len == 1)
10804 error (_("Remote qXfer reply contained no data."));
10805
10806 /* Got some data. */
8d64371b 10807 i = remote_unescape_input ((gdb_byte *) rs->buf.data () + 1,
bc20a4af 10808 packet_len - 1, readbuf, n);
0876f84a
DJ
10809
10810 /* 'l' is an EOF marker, possibly including a final block of data,
0e7f50da
UW
10811 or possibly empty. If we have the final block of a non-empty
10812 object, record this fact to bypass a subsequent partial read. */
10813 if (rs->buf[0] == 'l' && offset + i > 0)
0876f84a 10814 {
8e88304f
TT
10815 rs->finished_object = xstrdup (object_name);
10816 rs->finished_annex = xstrdup (annex ? annex : "");
10817 rs->finished_offset = offset + i;
0876f84a
DJ
10818 }
10819
9b409511
YQ
10820 if (i == 0)
10821 return TARGET_XFER_EOF;
10822 else
10823 {
10824 *xfered_len = i;
10825 return TARGET_XFER_OK;
10826 }
0876f84a
DJ
10827}
10828
f6ac5f3d
PA
10829enum target_xfer_status
10830remote_target::xfer_partial (enum target_object object,
10831 const char *annex, gdb_byte *readbuf,
10832 const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
10833 ULONGEST *xfered_len)
c906108c 10834{
82f73884 10835 struct remote_state *rs;
c906108c 10836 int i;
6d820c5c 10837 char *p2;
1e3ff5ad 10838 char query_type;
124e13d9 10839 int unit_size = gdbarch_addressable_memory_unit_size (target_gdbarch ());
c906108c 10840
e6e4e701 10841 set_remote_traceframe ();
82f73884
PA
10842 set_general_thread (inferior_ptid);
10843
10844 rs = get_remote_state ();
10845
b2182ed2 10846 /* Handle memory using the standard memory routines. */
21e3b9b9
DJ
10847 if (object == TARGET_OBJECT_MEMORY)
10848 {
2d717e4f
DJ
10849 /* If the remote target is connected but not running, we should
10850 pass this request down to a lower stratum (e.g. the executable
10851 file). */
10852 if (!target_has_execution)
9b409511 10853 return TARGET_XFER_EOF;
2d717e4f 10854
21e3b9b9 10855 if (writebuf != NULL)
124e13d9
SM
10856 return remote_write_bytes (offset, writebuf, len, unit_size,
10857 xfered_len);
21e3b9b9 10858 else
6b8edb51 10859 return remote_read_bytes (offset, readbuf, len, unit_size,
124e13d9 10860 xfered_len);
21e3b9b9
DJ
10861 }
10862
4aa995e1
PA
10863 /* Handle extra signal info using qxfer packets. */
10864 if (object == TARGET_OBJECT_SIGNAL_INFO)
10865 {
10866 if (readbuf)
f6ac5f3d 10867 return remote_read_qxfer ("siginfo", annex, readbuf, offset, len,
9b409511 10868 xfered_len, &remote_protocol_packets
4aa995e1
PA
10869 [PACKET_qXfer_siginfo_read]);
10870 else
f6ac5f3d 10871 return remote_write_qxfer ("siginfo", annex,
9b409511 10872 writebuf, offset, len, xfered_len,
4aa995e1
PA
10873 &remote_protocol_packets
10874 [PACKET_qXfer_siginfo_write]);
10875 }
10876
0fb4aa4b
PA
10877 if (object == TARGET_OBJECT_STATIC_TRACE_DATA)
10878 {
10879 if (readbuf)
f6ac5f3d 10880 return remote_read_qxfer ("statictrace", annex,
9b409511 10881 readbuf, offset, len, xfered_len,
0fb4aa4b
PA
10882 &remote_protocol_packets
10883 [PACKET_qXfer_statictrace_read]);
10884 else
2ed4b548 10885 return TARGET_XFER_E_IO;
0fb4aa4b
PA
10886 }
10887
a76d924d
DJ
10888 /* Only handle flash writes. */
10889 if (writebuf != NULL)
10890 {
a76d924d
DJ
10891 switch (object)
10892 {
10893 case TARGET_OBJECT_FLASH:
6b8edb51 10894 return remote_flash_write (offset, len, xfered_len,
9b409511 10895 writebuf);
a76d924d
DJ
10896
10897 default:
2ed4b548 10898 return TARGET_XFER_E_IO;
a76d924d
DJ
10899 }
10900 }
4b8a223f 10901
1e3ff5ad
AC
10902 /* Map pre-existing objects onto letters. DO NOT do this for new
10903 objects!!! Instead specify new query packets. */
10904 switch (object)
c906108c 10905 {
1e3ff5ad
AC
10906 case TARGET_OBJECT_AVR:
10907 query_type = 'R';
10908 break;
802188a7
RM
10909
10910 case TARGET_OBJECT_AUXV:
0876f84a 10911 gdb_assert (annex == NULL);
f6ac5f3d 10912 return remote_read_qxfer ("auxv", annex, readbuf, offset, len,
9b409511 10913 xfered_len,
0876f84a 10914 &remote_protocol_packets[PACKET_qXfer_auxv]);
802188a7 10915
23181151
DJ
10916 case TARGET_OBJECT_AVAILABLE_FEATURES:
10917 return remote_read_qxfer
f6ac5f3d 10918 ("features", annex, readbuf, offset, len, xfered_len,
23181151
DJ
10919 &remote_protocol_packets[PACKET_qXfer_features]);
10920
cfa9d6d9
DJ
10921 case TARGET_OBJECT_LIBRARIES:
10922 return remote_read_qxfer
f6ac5f3d 10923 ("libraries", annex, readbuf, offset, len, xfered_len,
cfa9d6d9
DJ
10924 &remote_protocol_packets[PACKET_qXfer_libraries]);
10925
2268b414
JK
10926 case TARGET_OBJECT_LIBRARIES_SVR4:
10927 return remote_read_qxfer
f6ac5f3d 10928 ("libraries-svr4", annex, readbuf, offset, len, xfered_len,
2268b414
JK
10929 &remote_protocol_packets[PACKET_qXfer_libraries_svr4]);
10930
fd79ecee
DJ
10931 case TARGET_OBJECT_MEMORY_MAP:
10932 gdb_assert (annex == NULL);
f6ac5f3d 10933 return remote_read_qxfer ("memory-map", annex, readbuf, offset, len,
9b409511 10934 xfered_len,
fd79ecee
DJ
10935 &remote_protocol_packets[PACKET_qXfer_memory_map]);
10936
07e059b5
VP
10937 case TARGET_OBJECT_OSDATA:
10938 /* Should only get here if we're connected. */
5d93a237 10939 gdb_assert (rs->remote_desc);
07e059b5 10940 return remote_read_qxfer
f6ac5f3d 10941 ("osdata", annex, readbuf, offset, len, xfered_len,
07e059b5
VP
10942 &remote_protocol_packets[PACKET_qXfer_osdata]);
10943
dc146f7c
VP
10944 case TARGET_OBJECT_THREADS:
10945 gdb_assert (annex == NULL);
f6ac5f3d 10946 return remote_read_qxfer ("threads", annex, readbuf, offset, len,
9b409511 10947 xfered_len,
dc146f7c
VP
10948 &remote_protocol_packets[PACKET_qXfer_threads]);
10949
b3b9301e
PA
10950 case TARGET_OBJECT_TRACEFRAME_INFO:
10951 gdb_assert (annex == NULL);
10952 return remote_read_qxfer
f6ac5f3d 10953 ("traceframe-info", annex, readbuf, offset, len, xfered_len,
b3b9301e 10954 &remote_protocol_packets[PACKET_qXfer_traceframe_info]);
78d85199
YQ
10955
10956 case TARGET_OBJECT_FDPIC:
f6ac5f3d 10957 return remote_read_qxfer ("fdpic", annex, readbuf, offset, len,
9b409511 10958 xfered_len,
78d85199 10959 &remote_protocol_packets[PACKET_qXfer_fdpic]);
169081d0
TG
10960
10961 case TARGET_OBJECT_OPENVMS_UIB:
f6ac5f3d 10962 return remote_read_qxfer ("uib", annex, readbuf, offset, len,
9b409511 10963 xfered_len,
169081d0
TG
10964 &remote_protocol_packets[PACKET_qXfer_uib]);
10965
9accd112 10966 case TARGET_OBJECT_BTRACE:
f6ac5f3d 10967 return remote_read_qxfer ("btrace", annex, readbuf, offset, len,
9b409511 10968 xfered_len,
9accd112
MM
10969 &remote_protocol_packets[PACKET_qXfer_btrace]);
10970
f4abbc16 10971 case TARGET_OBJECT_BTRACE_CONF:
f6ac5f3d 10972 return remote_read_qxfer ("btrace-conf", annex, readbuf, offset,
f4abbc16
MM
10973 len, xfered_len,
10974 &remote_protocol_packets[PACKET_qXfer_btrace_conf]);
10975
c78fa86a 10976 case TARGET_OBJECT_EXEC_FILE:
f6ac5f3d 10977 return remote_read_qxfer ("exec-file", annex, readbuf, offset,
c78fa86a
GB
10978 len, xfered_len,
10979 &remote_protocol_packets[PACKET_qXfer_exec_file]);
10980
1e3ff5ad 10981 default:
2ed4b548 10982 return TARGET_XFER_E_IO;
c906108c
SS
10983 }
10984
0df8b418 10985 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
24b06219 10986 large enough let the caller deal with it. */
ea9c271d 10987 if (len < get_remote_packet_size ())
2ed4b548 10988 return TARGET_XFER_E_IO;
ea9c271d 10989 len = get_remote_packet_size ();
1e3ff5ad 10990
23860348 10991 /* Except for querying the minimum buffer size, target must be open. */
5d93a237 10992 if (!rs->remote_desc)
8a3fe4f8 10993 error (_("remote query is only available after target open"));
c906108c 10994
1e3ff5ad 10995 gdb_assert (annex != NULL);
4b8a223f 10996 gdb_assert (readbuf != NULL);
c906108c 10997
8d64371b 10998 p2 = rs->buf.data ();
c906108c
SS
10999 *p2++ = 'q';
11000 *p2++ = query_type;
11001
23860348
MS
11002 /* We used one buffer char for the remote protocol q command and
11003 another for the query type. As the remote protocol encapsulation
11004 uses 4 chars plus one extra in case we are debugging
11005 (remote_debug), we have PBUFZIZ - 7 left to pack the query
11006 string. */
c906108c 11007 i = 0;
ea9c271d 11008 while (annex[i] && (i < (get_remote_packet_size () - 8)))
c906108c 11009 {
1e3ff5ad
AC
11010 /* Bad caller may have sent forbidden characters. */
11011 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
11012 *p2++ = annex[i];
c906108c
SS
11013 i++;
11014 }
1e3ff5ad
AC
11015 *p2 = '\0';
11016 gdb_assert (annex[i] == '\0');
c906108c 11017
6d820c5c 11018 i = putpkt (rs->buf);
c5aa993b 11019 if (i < 0)
2ed4b548 11020 return TARGET_XFER_E_IO;
c906108c 11021
8d64371b
TT
11022 getpkt (&rs->buf, 0);
11023 strcpy ((char *) readbuf, rs->buf.data ());
c906108c 11024
9b409511 11025 *xfered_len = strlen ((char *) readbuf);
92ffd475 11026 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
c906108c
SS
11027}
11028
09c98b44
DB
11029/* Implementation of to_get_memory_xfer_limit. */
11030
f6ac5f3d
PA
11031ULONGEST
11032remote_target::get_memory_xfer_limit ()
09c98b44
DB
11033{
11034 return get_memory_write_packet_size ();
11035}
11036
f6ac5f3d
PA
11037int
11038remote_target::search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
11039 const gdb_byte *pattern, ULONGEST pattern_len,
11040 CORE_ADDR *found_addrp)
08388c79 11041{
f5656ead 11042 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
08388c79
DE
11043 struct remote_state *rs = get_remote_state ();
11044 int max_size = get_memory_write_packet_size ();
11045 struct packet_config *packet =
11046 &remote_protocol_packets[PACKET_qSearch_memory];
0df8b418
MS
11047 /* Number of packet bytes used to encode the pattern;
11048 this could be more than PATTERN_LEN due to escape characters. */
08388c79 11049 int escaped_pattern_len;
0df8b418 11050 /* Amount of pattern that was encodable in the packet. */
08388c79
DE
11051 int used_pattern_len;
11052 int i;
11053 int found;
11054 ULONGEST found_addr;
11055
7cc244de
PA
11056 /* Don't go to the target if we don't have to. This is done before
11057 checking packet_config_support to avoid the possibility that a
11058 success for this edge case means the facility works in
11059 general. */
08388c79
DE
11060 if (pattern_len > search_space_len)
11061 return 0;
11062 if (pattern_len == 0)
11063 {
11064 *found_addrp = start_addr;
11065 return 1;
11066 }
11067
11068 /* If we already know the packet isn't supported, fall back to the simple
11069 way of searching memory. */
11070
4082afcc 11071 if (packet_config_support (packet) == PACKET_DISABLE)
08388c79
DE
11072 {
11073 /* Target doesn't provided special support, fall back and use the
11074 standard support (copy memory and do the search here). */
f6ac5f3d 11075 return simple_search_memory (this, start_addr, search_space_len,
08388c79
DE
11076 pattern, pattern_len, found_addrp);
11077 }
11078
28439a30
PA
11079 /* Make sure the remote is pointing at the right process. */
11080 set_general_process ();
11081
08388c79 11082 /* Insert header. */
8d64371b 11083 i = snprintf (rs->buf.data (), max_size,
08388c79 11084 "qSearch:memory:%s;%s;",
5af949e3 11085 phex_nz (start_addr, addr_size),
08388c79
DE
11086 phex_nz (search_space_len, sizeof (search_space_len)));
11087 max_size -= (i + 1);
11088
11089 /* Escape as much data as fits into rs->buf. */
11090 escaped_pattern_len =
8d64371b
TT
11091 remote_escape_output (pattern, pattern_len, 1,
11092 (gdb_byte *) rs->buf.data () + i,
08388c79
DE
11093 &used_pattern_len, max_size);
11094
11095 /* Bail if the pattern is too large. */
11096 if (used_pattern_len != pattern_len)
9b20d036 11097 error (_("Pattern is too large to transmit to remote target."));
08388c79 11098
8d64371b
TT
11099 if (putpkt_binary (rs->buf.data (), i + escaped_pattern_len) < 0
11100 || getpkt_sane (&rs->buf, 0) < 0
08388c79
DE
11101 || packet_ok (rs->buf, packet) != PACKET_OK)
11102 {
11103 /* The request may not have worked because the command is not
11104 supported. If so, fall back to the simple way. */
7cc244de 11105 if (packet_config_support (packet) == PACKET_DISABLE)
08388c79 11106 {
f6ac5f3d 11107 return simple_search_memory (this, start_addr, search_space_len,
08388c79
DE
11108 pattern, pattern_len, found_addrp);
11109 }
11110 return -1;
11111 }
11112
11113 if (rs->buf[0] == '0')
11114 found = 0;
11115 else if (rs->buf[0] == '1')
11116 {
11117 found = 1;
11118 if (rs->buf[1] != ',')
8d64371b
TT
11119 error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ());
11120 unpack_varlen_hex (&rs->buf[2], &found_addr);
08388c79
DE
11121 *found_addrp = found_addr;
11122 }
11123 else
8d64371b 11124 error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ());
08388c79
DE
11125
11126 return found;
11127}
11128
f6ac5f3d
PA
11129void
11130remote_target::rcmd (const char *command, struct ui_file *outbuf)
96baa820 11131{
d01949b6 11132 struct remote_state *rs = get_remote_state ();
8d64371b 11133 char *p = rs->buf.data ();
96baa820 11134
5d93a237 11135 if (!rs->remote_desc)
8a3fe4f8 11136 error (_("remote rcmd is only available after target open"));
96baa820 11137
23860348 11138 /* Send a NULL command across as an empty command. */
7be570e7
JM
11139 if (command == NULL)
11140 command = "";
11141
23860348 11142 /* The query prefix. */
8d64371b
TT
11143 strcpy (rs->buf.data (), "qRcmd,");
11144 p = strchr (rs->buf.data (), '\0');
96baa820 11145
8d64371b 11146 if ((strlen (rs->buf.data ()) + strlen (command) * 2 + 8/*misc*/)
3e43a32a 11147 > get_remote_packet_size ())
8a3fe4f8 11148 error (_("\"monitor\" command ``%s'' is too long."), command);
96baa820 11149
23860348 11150 /* Encode the actual command. */
a30bf1f1 11151 bin2hex ((const gdb_byte *) command, p, strlen (command));
96baa820 11152
6d820c5c 11153 if (putpkt (rs->buf) < 0)
8a3fe4f8 11154 error (_("Communication problem with target."));
96baa820
JM
11155
11156 /* get/display the response */
11157 while (1)
11158 {
2e9f7625
DJ
11159 char *buf;
11160
00bf0b85 11161 /* XXX - see also remote_get_noisy_reply(). */
5b37825d 11162 QUIT; /* Allow user to bail out with ^C. */
2e9f7625 11163 rs->buf[0] = '\0';
8d64371b 11164 if (getpkt_sane (&rs->buf, 0) == -1)
5b37825d
PW
11165 {
11166 /* Timeout. Continue to (try to) read responses.
11167 This is better than stopping with an error, assuming the stub
11168 is still executing the (long) monitor command.
11169 If needed, the user can interrupt gdb using C-c, obtaining
11170 an effect similar to stop on timeout. */
11171 continue;
11172 }
8d64371b 11173 buf = rs->buf.data ();
96baa820 11174 if (buf[0] == '\0')
8a3fe4f8 11175 error (_("Target does not support this command."));
96baa820
JM
11176 if (buf[0] == 'O' && buf[1] != 'K')
11177 {
23860348 11178 remote_console_output (buf + 1); /* 'O' message from stub. */
96baa820
JM
11179 continue;
11180 }
11181 if (strcmp (buf, "OK") == 0)
11182 break;
7be570e7
JM
11183 if (strlen (buf) == 3 && buf[0] == 'E'
11184 && isdigit (buf[1]) && isdigit (buf[2]))
11185 {
8a3fe4f8 11186 error (_("Protocol error with Rcmd"));
7be570e7 11187 }
96baa820
JM
11188 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
11189 {
11190 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
a744cf53 11191
96baa820
JM
11192 fputc_unfiltered (c, outbuf);
11193 }
11194 break;
11195 }
11196}
11197
f6ac5f3d
PA
11198std::vector<mem_region>
11199remote_target::memory_map ()
fd79ecee 11200{
a664f67e 11201 std::vector<mem_region> result;
9018be22 11202 gdb::optional<gdb::char_vector> text
8b88a78e 11203 = target_read_stralloc (current_top_target (), TARGET_OBJECT_MEMORY_MAP, NULL);
fd79ecee
DJ
11204
11205 if (text)
9018be22 11206 result = parse_memory_map (text->data ());
fd79ecee
DJ
11207
11208 return result;
11209}
11210
c906108c 11211static void
ac88e2de 11212packet_command (const char *args, int from_tty)
c906108c 11213{
6b8edb51 11214 remote_target *remote = get_current_remote_target ();
c906108c 11215
6b8edb51 11216 if (remote == nullptr)
8a3fe4f8 11217 error (_("command can only be used with remote target"));
c906108c 11218
6b8edb51
PA
11219 remote->packet_command (args, from_tty);
11220}
11221
11222void
11223remote_target::packet_command (const char *args, int from_tty)
11224{
c5aa993b 11225 if (!args)
8a3fe4f8 11226 error (_("remote-packet command requires packet text as argument"));
c906108c
SS
11227
11228 puts_filtered ("sending: ");
11229 print_packet (args);
11230 puts_filtered ("\n");
11231 putpkt (args);
11232
6b8edb51
PA
11233 remote_state *rs = get_remote_state ();
11234
8d64371b 11235 getpkt (&rs->buf, 0);
c906108c 11236 puts_filtered ("received: ");
8d64371b 11237 print_packet (rs->buf.data ());
c906108c
SS
11238 puts_filtered ("\n");
11239}
11240
11241#if 0
23860348 11242/* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
c906108c 11243
a14ed312 11244static void display_thread_info (struct gdb_ext_thread_info *info);
c906108c 11245
a14ed312 11246static void threadset_test_cmd (char *cmd, int tty);
c906108c 11247
a14ed312 11248static void threadalive_test (char *cmd, int tty);
c906108c 11249
a14ed312 11250static void threadlist_test_cmd (char *cmd, int tty);
c906108c 11251
23860348 11252int get_and_display_threadinfo (threadref *ref);
c906108c 11253
a14ed312 11254static void threadinfo_test_cmd (char *cmd, int tty);
c906108c 11255
23860348 11256static int thread_display_step (threadref *ref, void *context);
c906108c 11257
a14ed312 11258static void threadlist_update_test_cmd (char *cmd, int tty);
c906108c 11259
a14ed312 11260static void init_remote_threadtests (void);
c906108c 11261
23860348 11262#define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
c906108c
SS
11263
11264static void
0b39b52e 11265threadset_test_cmd (const char *cmd, int tty)
c906108c
SS
11266{
11267 int sample_thread = SAMPLE_THREAD;
11268
a3f17187 11269 printf_filtered (_("Remote threadset test\n"));
79d7f229 11270 set_general_thread (sample_thread);
c906108c
SS
11271}
11272
11273
11274static void
0b39b52e 11275threadalive_test (const char *cmd, int tty)
c906108c
SS
11276{
11277 int sample_thread = SAMPLE_THREAD;
e99b03dc 11278 int pid = inferior_ptid.pid ();
fd79271b 11279 ptid_t ptid = ptid_t (pid, sample_thread, 0);
c906108c 11280
79d7f229 11281 if (remote_thread_alive (ptid))
c906108c
SS
11282 printf_filtered ("PASS: Thread alive test\n");
11283 else
11284 printf_filtered ("FAIL: Thread alive test\n");
11285}
11286
23860348 11287void output_threadid (char *title, threadref *ref);
c906108c
SS
11288
11289void
fba45db2 11290output_threadid (char *title, threadref *ref)
c906108c
SS
11291{
11292 char hexid[20];
11293
405feb71 11294 pack_threadid (&hexid[0], ref); /* Convert thread id into hex. */
c906108c
SS
11295 hexid[16] = 0;
11296 printf_filtered ("%s %s\n", title, (&hexid[0]));
11297}
11298
11299static void
0b39b52e 11300threadlist_test_cmd (const char *cmd, int tty)
c906108c
SS
11301{
11302 int startflag = 1;
11303 threadref nextthread;
11304 int done, result_count;
11305 threadref threadlist[3];
11306
11307 printf_filtered ("Remote Threadlist test\n");
11308 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
11309 &result_count, &threadlist[0]))
11310 printf_filtered ("FAIL: threadlist test\n");
11311 else
11312 {
11313 threadref *scan = threadlist;
11314 threadref *limit = scan + result_count;
11315
11316 while (scan < limit)
11317 output_threadid (" thread ", scan++);
11318 }
11319}
11320
11321void
fba45db2 11322display_thread_info (struct gdb_ext_thread_info *info)
c906108c
SS
11323{
11324 output_threadid ("Threadid: ", &info->threadid);
11325 printf_filtered ("Name: %s\n ", info->shortname);
11326 printf_filtered ("State: %s\n", info->display);
11327 printf_filtered ("other: %s\n\n", info->more_display);
11328}
11329
11330int
fba45db2 11331get_and_display_threadinfo (threadref *ref)
c906108c
SS
11332{
11333 int result;
11334 int set;
11335 struct gdb_ext_thread_info threadinfo;
11336
11337 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
11338 | TAG_MOREDISPLAY | TAG_DISPLAY;
11339 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
11340 display_thread_info (&threadinfo);
11341 return result;
11342}
11343
11344static void
0b39b52e 11345threadinfo_test_cmd (const char *cmd, int tty)
c906108c
SS
11346{
11347 int athread = SAMPLE_THREAD;
11348 threadref thread;
11349 int set;
11350
11351 int_to_threadref (&thread, athread);
11352 printf_filtered ("Remote Threadinfo test\n");
11353 if (!get_and_display_threadinfo (&thread))
11354 printf_filtered ("FAIL cannot get thread info\n");
11355}
11356
11357static int
fba45db2 11358thread_display_step (threadref *ref, void *context)
c906108c
SS
11359{
11360 /* output_threadid(" threadstep ",ref); *//* simple test */
11361 return get_and_display_threadinfo (ref);
11362}
11363
11364static void
0b39b52e 11365threadlist_update_test_cmd (const char *cmd, int tty)
c906108c
SS
11366{
11367 printf_filtered ("Remote Threadlist update test\n");
11368 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
11369}
11370
11371static void
11372init_remote_threadtests (void)
11373{
3e43a32a
MS
11374 add_com ("tlist", class_obscure, threadlist_test_cmd,
11375 _("Fetch and print the remote list of "
590042fc 11376 "thread identifiers, one pkt only."));
c906108c 11377 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
590042fc 11378 _("Fetch and display info about one thread."));
c906108c 11379 add_com ("tset", class_obscure, threadset_test_cmd,
590042fc 11380 _("Test setting to a different thread."));
c906108c 11381 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
590042fc 11382 _("Iterate through updating all remote thread info."));
c906108c 11383 add_com ("talive", class_obscure, threadalive_test,
590042fc 11384 _("Remote thread alive test."));
c906108c
SS
11385}
11386
11387#endif /* 0 */
11388
a068643d 11389/* Convert a thread ID to a string. */
f3fb8c85 11390
a068643d 11391std::string
f6ac5f3d 11392remote_target::pid_to_str (ptid_t ptid)
f3fb8c85 11393{
82f73884 11394 struct remote_state *rs = get_remote_state ();
f3fb8c85 11395
d7e15655 11396 if (ptid == null_ptid)
7cee1e54 11397 return normal_pid_to_str (ptid);
0e998d96 11398 else if (ptid.is_pid ())
ecd0ada5
PA
11399 {
11400 /* Printing an inferior target id. */
11401
11402 /* When multi-process extensions are off, there's no way in the
11403 remote protocol to know the remote process id, if there's any
11404 at all. There's one exception --- when we're connected with
11405 target extended-remote, and we manually attached to a process
11406 with "attach PID". We don't record anywhere a flag that
11407 allows us to distinguish that case from the case of
11408 connecting with extended-remote and the stub already being
11409 attached to a process, and reporting yes to qAttached, hence
11410 no smart special casing here. */
11411 if (!remote_multi_process_p (rs))
a068643d 11412 return "Remote target";
ecd0ada5
PA
11413
11414 return normal_pid_to_str (ptid);
82f73884 11415 }
ecd0ada5 11416 else
79d7f229 11417 {
d7e15655 11418 if (magic_null_ptid == ptid)
a068643d 11419 return "Thread <main>";
8020350c 11420 else if (remote_multi_process_p (rs))
e38504b3 11421 if (ptid.lwp () == 0)
de0d863e
DB
11422 return normal_pid_to_str (ptid);
11423 else
a068643d
TT
11424 return string_printf ("Thread %d.%ld",
11425 ptid.pid (), ptid.lwp ());
ecd0ada5 11426 else
a068643d 11427 return string_printf ("Thread %ld", ptid.lwp ());
79d7f229 11428 }
f3fb8c85
MS
11429}
11430
38691318
KB
11431/* Get the address of the thread local variable in OBJFILE which is
11432 stored at OFFSET within the thread local storage for thread PTID. */
11433
f6ac5f3d
PA
11434CORE_ADDR
11435remote_target::get_thread_local_address (ptid_t ptid, CORE_ADDR lm,
11436 CORE_ADDR offset)
38691318 11437{
4082afcc 11438 if (packet_support (PACKET_qGetTLSAddr) != PACKET_DISABLE)
38691318
KB
11439 {
11440 struct remote_state *rs = get_remote_state ();
8d64371b
TT
11441 char *p = rs->buf.data ();
11442 char *endp = p + get_remote_packet_size ();
571dd617 11443 enum packet_result result;
38691318
KB
11444
11445 strcpy (p, "qGetTLSAddr:");
11446 p += strlen (p);
82f73884 11447 p = write_ptid (p, endp, ptid);
38691318
KB
11448 *p++ = ',';
11449 p += hexnumstr (p, offset);
11450 *p++ = ',';
11451 p += hexnumstr (p, lm);
11452 *p++ = '\0';
11453
6d820c5c 11454 putpkt (rs->buf);
8d64371b 11455 getpkt (&rs->buf, 0);
3e43a32a
MS
11456 result = packet_ok (rs->buf,
11457 &remote_protocol_packets[PACKET_qGetTLSAddr]);
571dd617 11458 if (result == PACKET_OK)
38691318 11459 {
b926417a 11460 ULONGEST addr;
38691318 11461
8d64371b 11462 unpack_varlen_hex (rs->buf.data (), &addr);
b926417a 11463 return addr;
38691318 11464 }
571dd617 11465 else if (result == PACKET_UNKNOWN)
109c3e39
AC
11466 throw_error (TLS_GENERIC_ERROR,
11467 _("Remote target doesn't support qGetTLSAddr packet"));
38691318 11468 else
109c3e39
AC
11469 throw_error (TLS_GENERIC_ERROR,
11470 _("Remote target failed to process qGetTLSAddr request"));
38691318
KB
11471 }
11472 else
109c3e39
AC
11473 throw_error (TLS_GENERIC_ERROR,
11474 _("TLS not supported or disabled on this target"));
38691318
KB
11475 /* Not reached. */
11476 return 0;
11477}
11478
711e434b
PM
11479/* Provide thread local base, i.e. Thread Information Block address.
11480 Returns 1 if ptid is found and thread_local_base is non zero. */
11481
57810aa7 11482bool
f6ac5f3d 11483remote_target::get_tib_address (ptid_t ptid, CORE_ADDR *addr)
711e434b 11484{
4082afcc 11485 if (packet_support (PACKET_qGetTIBAddr) != PACKET_DISABLE)
711e434b
PM
11486 {
11487 struct remote_state *rs = get_remote_state ();
8d64371b
TT
11488 char *p = rs->buf.data ();
11489 char *endp = p + get_remote_packet_size ();
711e434b
PM
11490 enum packet_result result;
11491
11492 strcpy (p, "qGetTIBAddr:");
11493 p += strlen (p);
11494 p = write_ptid (p, endp, ptid);
11495 *p++ = '\0';
11496
11497 putpkt (rs->buf);
8d64371b 11498 getpkt (&rs->buf, 0);
711e434b
PM
11499 result = packet_ok (rs->buf,
11500 &remote_protocol_packets[PACKET_qGetTIBAddr]);
11501 if (result == PACKET_OK)
11502 {
b926417a 11503 ULONGEST val;
8d64371b 11504 unpack_varlen_hex (rs->buf.data (), &val);
711e434b 11505 if (addr)
b926417a 11506 *addr = (CORE_ADDR) val;
57810aa7 11507 return true;
711e434b
PM
11508 }
11509 else if (result == PACKET_UNKNOWN)
11510 error (_("Remote target doesn't support qGetTIBAddr packet"));
11511 else
11512 error (_("Remote target failed to process qGetTIBAddr request"));
11513 }
11514 else
11515 error (_("qGetTIBAddr not supported or disabled on this target"));
11516 /* Not reached. */
57810aa7 11517 return false;
711e434b
PM
11518}
11519
29709017
DJ
11520/* Support for inferring a target description based on the current
11521 architecture and the size of a 'g' packet. While the 'g' packet
11522 can have any size (since optional registers can be left off the
11523 end), some sizes are easily recognizable given knowledge of the
11524 approximate architecture. */
11525
11526struct remote_g_packet_guess
11527{
eefce37f
TT
11528 remote_g_packet_guess (int bytes_, const struct target_desc *tdesc_)
11529 : bytes (bytes_),
11530 tdesc (tdesc_)
11531 {
11532 }
11533
29709017
DJ
11534 int bytes;
11535 const struct target_desc *tdesc;
11536};
29709017 11537
eefce37f 11538struct remote_g_packet_data : public allocate_on_obstack
29709017 11539{
eefce37f 11540 std::vector<remote_g_packet_guess> guesses;
29709017
DJ
11541};
11542
11543static struct gdbarch_data *remote_g_packet_data_handle;
11544
11545static void *
11546remote_g_packet_data_init (struct obstack *obstack)
11547{
eefce37f 11548 return new (obstack) remote_g_packet_data;
29709017
DJ
11549}
11550
11551void
11552register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes,
11553 const struct target_desc *tdesc)
11554{
11555 struct remote_g_packet_data *data
19ba03f4
SM
11556 = ((struct remote_g_packet_data *)
11557 gdbarch_data (gdbarch, remote_g_packet_data_handle));
29709017
DJ
11558
11559 gdb_assert (tdesc != NULL);
11560
eefce37f
TT
11561 for (const remote_g_packet_guess &guess : data->guesses)
11562 if (guess.bytes == bytes)
29709017 11563 internal_error (__FILE__, __LINE__,
9b20d036 11564 _("Duplicate g packet description added for size %d"),
29709017
DJ
11565 bytes);
11566
eefce37f 11567 data->guesses.emplace_back (bytes, tdesc);
29709017
DJ
11568}
11569
eefce37f
TT
11570/* Return true if remote_read_description would do anything on this target
11571 and architecture, false otherwise. */
d962ef82 11572
eefce37f 11573static bool
d962ef82
DJ
11574remote_read_description_p (struct target_ops *target)
11575{
11576 struct remote_g_packet_data *data
19ba03f4
SM
11577 = ((struct remote_g_packet_data *)
11578 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
d962ef82 11579
eefce37f 11580 return !data->guesses.empty ();
d962ef82
DJ
11581}
11582
f6ac5f3d
PA
11583const struct target_desc *
11584remote_target::read_description ()
29709017
DJ
11585{
11586 struct remote_g_packet_data *data
19ba03f4
SM
11587 = ((struct remote_g_packet_data *)
11588 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
29709017 11589
d962ef82
DJ
11590 /* Do not try this during initial connection, when we do not know
11591 whether there is a running but stopped thread. */
d7e15655 11592 if (!target_has_execution || inferior_ptid == null_ptid)
b6a8c27b 11593 return beneath ()->read_description ();
d962ef82 11594
eefce37f 11595 if (!data->guesses.empty ())
29709017 11596 {
29709017
DJ
11597 int bytes = send_g_packet ();
11598
eefce37f
TT
11599 for (const remote_g_packet_guess &guess : data->guesses)
11600 if (guess.bytes == bytes)
11601 return guess.tdesc;
29709017
DJ
11602
11603 /* We discard the g packet. A minor optimization would be to
11604 hold on to it, and fill the register cache once we have selected
11605 an architecture, but it's too tricky to do safely. */
11606 }
11607
b6a8c27b 11608 return beneath ()->read_description ();
29709017
DJ
11609}
11610
a6b151f1
DJ
11611/* Remote file transfer support. This is host-initiated I/O, not
11612 target-initiated; for target-initiated, see remote-fileio.c. */
11613
11614/* If *LEFT is at least the length of STRING, copy STRING to
11615 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11616 decrease *LEFT. Otherwise raise an error. */
11617
11618static void
a121b7c1 11619remote_buffer_add_string (char **buffer, int *left, const char *string)
a6b151f1
DJ
11620{
11621 int len = strlen (string);
11622
11623 if (len > *left)
11624 error (_("Packet too long for target."));
11625
11626 memcpy (*buffer, string, len);
11627 *buffer += len;
11628 *left -= len;
11629
11630 /* NUL-terminate the buffer as a convenience, if there is
11631 room. */
11632 if (*left)
11633 **buffer = '\0';
11634}
11635
11636/* If *LEFT is large enough, hex encode LEN bytes from BYTES into
11637 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11638 decrease *LEFT. Otherwise raise an error. */
11639
11640static void
11641remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes,
11642 int len)
11643{
11644 if (2 * len > *left)
11645 error (_("Packet too long for target."));
11646
11647 bin2hex (bytes, *buffer, len);
11648 *buffer += 2 * len;
11649 *left -= 2 * len;
11650
11651 /* NUL-terminate the buffer as a convenience, if there is
11652 room. */
11653 if (*left)
11654 **buffer = '\0';
11655}
11656
11657/* If *LEFT is large enough, convert VALUE to hex and add it to
11658 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11659 decrease *LEFT. Otherwise raise an error. */
11660
11661static void
11662remote_buffer_add_int (char **buffer, int *left, ULONGEST value)
11663{
11664 int len = hexnumlen (value);
11665
11666 if (len > *left)
11667 error (_("Packet too long for target."));
11668
11669 hexnumstr (*buffer, value);
11670 *buffer += len;
11671 *left -= len;
11672
11673 /* NUL-terminate the buffer as a convenience, if there is
11674 room. */
11675 if (*left)
11676 **buffer = '\0';
11677}
11678
11679/* Parse an I/O result packet from BUFFER. Set RETCODE to the return
11680 value, *REMOTE_ERRNO to the remote error number or zero if none
11681 was included, and *ATTACHMENT to point to the start of the annex
11682 if any. The length of the packet isn't needed here; there may
11683 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
11684
11685 Return 0 if the packet could be parsed, -1 if it could not. If
11686 -1 is returned, the other variables may not be initialized. */
11687
11688static int
11689remote_hostio_parse_result (char *buffer, int *retcode,
11690 int *remote_errno, char **attachment)
11691{
11692 char *p, *p2;
11693
11694 *remote_errno = 0;
11695 *attachment = NULL;
11696
11697 if (buffer[0] != 'F')
11698 return -1;
11699
11700 errno = 0;
11701 *retcode = strtol (&buffer[1], &p, 16);
11702 if (errno != 0 || p == &buffer[1])
11703 return -1;
11704
11705 /* Check for ",errno". */
11706 if (*p == ',')
11707 {
11708 errno = 0;
11709 *remote_errno = strtol (p + 1, &p2, 16);
11710 if (errno != 0 || p + 1 == p2)
11711 return -1;
11712 p = p2;
11713 }
11714
11715 /* Check for ";attachment". If there is no attachment, the
11716 packet should end here. */
11717 if (*p == ';')
11718 {
11719 *attachment = p + 1;
11720 return 0;
11721 }
11722 else if (*p == '\0')
11723 return 0;
11724 else
11725 return -1;
11726}
11727
11728/* Send a prepared I/O packet to the target and read its response.
11729 The prepared packet is in the global RS->BUF before this function
11730 is called, and the answer is there when we return.
11731
11732 COMMAND_BYTES is the length of the request to send, which may include
11733 binary data. WHICH_PACKET is the packet configuration to check
11734 before attempting a packet. If an error occurs, *REMOTE_ERRNO
11735 is set to the error number and -1 is returned. Otherwise the value
11736 returned by the function is returned.
11737
11738 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
11739 attachment is expected; an error will be reported if there's a
11740 mismatch. If one is found, *ATTACHMENT will be set to point into
11741 the packet buffer and *ATTACHMENT_LEN will be set to the
11742 attachment's length. */
11743
6b8edb51
PA
11744int
11745remote_target::remote_hostio_send_command (int command_bytes, int which_packet,
11746 int *remote_errno, char **attachment,
11747 int *attachment_len)
a6b151f1
DJ
11748{
11749 struct remote_state *rs = get_remote_state ();
11750 int ret, bytes_read;
11751 char *attachment_tmp;
11752
20db9c52 11753 if (packet_support (which_packet) == PACKET_DISABLE)
a6b151f1
DJ
11754 {
11755 *remote_errno = FILEIO_ENOSYS;
11756 return -1;
11757 }
11758
8d64371b
TT
11759 putpkt_binary (rs->buf.data (), command_bytes);
11760 bytes_read = getpkt_sane (&rs->buf, 0);
a6b151f1
DJ
11761
11762 /* If it timed out, something is wrong. Don't try to parse the
11763 buffer. */
11764 if (bytes_read < 0)
11765 {
11766 *remote_errno = FILEIO_EINVAL;
11767 return -1;
11768 }
11769
11770 switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet]))
11771 {
11772 case PACKET_ERROR:
11773 *remote_errno = FILEIO_EINVAL;
11774 return -1;
11775 case PACKET_UNKNOWN:
11776 *remote_errno = FILEIO_ENOSYS;
11777 return -1;
11778 case PACKET_OK:
11779 break;
11780 }
11781
8d64371b 11782 if (remote_hostio_parse_result (rs->buf.data (), &ret, remote_errno,
a6b151f1
DJ
11783 &attachment_tmp))
11784 {
11785 *remote_errno = FILEIO_EINVAL;
11786 return -1;
11787 }
11788
11789 /* Make sure we saw an attachment if and only if we expected one. */
11790 if ((attachment_tmp == NULL && attachment != NULL)
11791 || (attachment_tmp != NULL && attachment == NULL))
11792 {
11793 *remote_errno = FILEIO_EINVAL;
11794 return -1;
11795 }
11796
11797 /* If an attachment was found, it must point into the packet buffer;
11798 work out how many bytes there were. */
11799 if (attachment_tmp != NULL)
11800 {
11801 *attachment = attachment_tmp;
8d64371b 11802 *attachment_len = bytes_read - (*attachment - rs->buf.data ());
a6b151f1
DJ
11803 }
11804
11805 return ret;
11806}
11807
dd194f6b 11808/* See declaration.h. */
80152258 11809
dd194f6b
PA
11810void
11811readahead_cache::invalidate ()
80152258 11812{
dd194f6b 11813 this->fd = -1;
80152258
PA
11814}
11815
dd194f6b 11816/* See declaration.h. */
80152258 11817
dd194f6b
PA
11818void
11819readahead_cache::invalidate_fd (int fd)
80152258 11820{
dd194f6b
PA
11821 if (this->fd == fd)
11822 this->fd = -1;
80152258
PA
11823}
11824
15a201c8
GB
11825/* Set the filesystem remote_hostio functions that take FILENAME
11826 arguments will use. Return 0 on success, or -1 if an error
11827 occurs (and set *REMOTE_ERRNO). */
11828
6b8edb51
PA
11829int
11830remote_target::remote_hostio_set_filesystem (struct inferior *inf,
11831 int *remote_errno)
15a201c8
GB
11832{
11833 struct remote_state *rs = get_remote_state ();
11834 int required_pid = (inf == NULL || inf->fake_pid_p) ? 0 : inf->pid;
8d64371b 11835 char *p = rs->buf.data ();
15a201c8
GB
11836 int left = get_remote_packet_size () - 1;
11837 char arg[9];
11838 int ret;
11839
11840 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11841 return 0;
11842
11843 if (rs->fs_pid != -1 && required_pid == rs->fs_pid)
11844 return 0;
11845
11846 remote_buffer_add_string (&p, &left, "vFile:setfs:");
11847
11848 xsnprintf (arg, sizeof (arg), "%x", required_pid);
11849 remote_buffer_add_string (&p, &left, arg);
11850
8d64371b 11851 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_setfs,
15a201c8
GB
11852 remote_errno, NULL, NULL);
11853
11854 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11855 return 0;
11856
11857 if (ret == 0)
11858 rs->fs_pid = required_pid;
11859
11860 return ret;
11861}
11862
12e2a5fd 11863/* Implementation of to_fileio_open. */
a6b151f1 11864
6b8edb51
PA
11865int
11866remote_target::remote_hostio_open (inferior *inf, const char *filename,
11867 int flags, int mode, int warn_if_slow,
11868 int *remote_errno)
a6b151f1
DJ
11869{
11870 struct remote_state *rs = get_remote_state ();
8d64371b 11871 char *p = rs->buf.data ();
a6b151f1
DJ
11872 int left = get_remote_packet_size () - 1;
11873
4313b8c0
GB
11874 if (warn_if_slow)
11875 {
11876 static int warning_issued = 0;
11877
11878 printf_unfiltered (_("Reading %s from remote target...\n"),
11879 filename);
11880
11881 if (!warning_issued)
11882 {
11883 warning (_("File transfers from remote targets can be slow."
11884 " Use \"set sysroot\" to access files locally"
11885 " instead."));
11886 warning_issued = 1;
11887 }
11888 }
11889
15a201c8
GB
11890 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
11891 return -1;
11892
a6b151f1
DJ
11893 remote_buffer_add_string (&p, &left, "vFile:open:");
11894
11895 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
11896 strlen (filename));
11897 remote_buffer_add_string (&p, &left, ",");
11898
11899 remote_buffer_add_int (&p, &left, flags);
11900 remote_buffer_add_string (&p, &left, ",");
11901
11902 remote_buffer_add_int (&p, &left, mode);
11903
8d64371b 11904 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_open,
a6b151f1
DJ
11905 remote_errno, NULL, NULL);
11906}
11907
f6ac5f3d
PA
11908int
11909remote_target::fileio_open (struct inferior *inf, const char *filename,
11910 int flags, int mode, int warn_if_slow,
11911 int *remote_errno)
11912{
6b8edb51 11913 return remote_hostio_open (inf, filename, flags, mode, warn_if_slow,
f6ac5f3d
PA
11914 remote_errno);
11915}
11916
12e2a5fd 11917/* Implementation of to_fileio_pwrite. */
a6b151f1 11918
6b8edb51
PA
11919int
11920remote_target::remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
11921 ULONGEST offset, int *remote_errno)
a6b151f1
DJ
11922{
11923 struct remote_state *rs = get_remote_state ();
8d64371b 11924 char *p = rs->buf.data ();
a6b151f1
DJ
11925 int left = get_remote_packet_size ();
11926 int out_len;
11927
dd194f6b 11928 rs->readahead_cache.invalidate_fd (fd);
80152258 11929
a6b151f1
DJ
11930 remote_buffer_add_string (&p, &left, "vFile:pwrite:");
11931
11932 remote_buffer_add_int (&p, &left, fd);
11933 remote_buffer_add_string (&p, &left, ",");
11934
11935 remote_buffer_add_int (&p, &left, offset);
11936 remote_buffer_add_string (&p, &left, ",");
11937
124e13d9 11938 p += remote_escape_output (write_buf, len, 1, (gdb_byte *) p, &out_len,
8d64371b
TT
11939 (get_remote_packet_size ()
11940 - (p - rs->buf.data ())));
a6b151f1 11941
8d64371b 11942 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pwrite,
a6b151f1
DJ
11943 remote_errno, NULL, NULL);
11944}
11945
f6ac5f3d
PA
11946int
11947remote_target::fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
11948 ULONGEST offset, int *remote_errno)
11949{
6b8edb51 11950 return remote_hostio_pwrite (fd, write_buf, len, offset, remote_errno);
f6ac5f3d
PA
11951}
11952
80152258
PA
11953/* Helper for the implementation of to_fileio_pread. Read the file
11954 from the remote side with vFile:pread. */
a6b151f1 11955
6b8edb51
PA
11956int
11957remote_target::remote_hostio_pread_vFile (int fd, gdb_byte *read_buf, int len,
11958 ULONGEST offset, int *remote_errno)
a6b151f1
DJ
11959{
11960 struct remote_state *rs = get_remote_state ();
8d64371b 11961 char *p = rs->buf.data ();
a6b151f1
DJ
11962 char *attachment;
11963 int left = get_remote_packet_size ();
11964 int ret, attachment_len;
11965 int read_len;
11966
11967 remote_buffer_add_string (&p, &left, "vFile:pread:");
11968
11969 remote_buffer_add_int (&p, &left, fd);
11970 remote_buffer_add_string (&p, &left, ",");
11971
11972 remote_buffer_add_int (&p, &left, len);
11973 remote_buffer_add_string (&p, &left, ",");
11974
11975 remote_buffer_add_int (&p, &left, offset);
11976
8d64371b 11977 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pread,
a6b151f1
DJ
11978 remote_errno, &attachment,
11979 &attachment_len);
11980
11981 if (ret < 0)
11982 return ret;
11983
bc20a4af 11984 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
a6b151f1
DJ
11985 read_buf, len);
11986 if (read_len != ret)
11987 error (_("Read returned %d, but %d bytes."), ret, (int) read_len);
11988
11989 return ret;
11990}
11991
dd194f6b 11992/* See declaration.h. */
80152258 11993
dd194f6b
PA
11994int
11995readahead_cache::pread (int fd, gdb_byte *read_buf, size_t len,
11996 ULONGEST offset)
80152258 11997{
dd194f6b
PA
11998 if (this->fd == fd
11999 && this->offset <= offset
12000 && offset < this->offset + this->bufsize)
80152258 12001 {
dd194f6b 12002 ULONGEST max = this->offset + this->bufsize;
80152258
PA
12003
12004 if (offset + len > max)
12005 len = max - offset;
12006
dd194f6b 12007 memcpy (read_buf, this->buf + offset - this->offset, len);
80152258
PA
12008 return len;
12009 }
12010
12011 return 0;
12012}
12013
12014/* Implementation of to_fileio_pread. */
12015
6b8edb51
PA
12016int
12017remote_target::remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
12018 ULONGEST offset, int *remote_errno)
80152258
PA
12019{
12020 int ret;
12021 struct remote_state *rs = get_remote_state ();
dd194f6b 12022 readahead_cache *cache = &rs->readahead_cache;
80152258 12023
dd194f6b 12024 ret = cache->pread (fd, read_buf, len, offset);
80152258
PA
12025 if (ret > 0)
12026 {
12027 cache->hit_count++;
12028
12029 if (remote_debug)
12030 fprintf_unfiltered (gdb_stdlog, "readahead cache hit %s\n",
12031 pulongest (cache->hit_count));
12032 return ret;
12033 }
12034
12035 cache->miss_count++;
12036 if (remote_debug)
12037 fprintf_unfiltered (gdb_stdlog, "readahead cache miss %s\n",
12038 pulongest (cache->miss_count));
12039
12040 cache->fd = fd;
12041 cache->offset = offset;
12042 cache->bufsize = get_remote_packet_size ();
224c3ddb 12043 cache->buf = (gdb_byte *) xrealloc (cache->buf, cache->bufsize);
80152258 12044
6b8edb51 12045 ret = remote_hostio_pread_vFile (cache->fd, cache->buf, cache->bufsize,
80152258
PA
12046 cache->offset, remote_errno);
12047 if (ret <= 0)
12048 {
dd194f6b 12049 cache->invalidate_fd (fd);
80152258
PA
12050 return ret;
12051 }
12052
12053 cache->bufsize = ret;
dd194f6b 12054 return cache->pread (fd, read_buf, len, offset);
80152258
PA
12055}
12056
f6ac5f3d
PA
12057int
12058remote_target::fileio_pread (int fd, gdb_byte *read_buf, int len,
12059 ULONGEST offset, int *remote_errno)
12060{
6b8edb51 12061 return remote_hostio_pread (fd, read_buf, len, offset, remote_errno);
f6ac5f3d
PA
12062}
12063
12e2a5fd 12064/* Implementation of to_fileio_close. */
a6b151f1 12065
6b8edb51
PA
12066int
12067remote_target::remote_hostio_close (int fd, int *remote_errno)
a6b151f1
DJ
12068{
12069 struct remote_state *rs = get_remote_state ();
8d64371b 12070 char *p = rs->buf.data ();
a6b151f1
DJ
12071 int left = get_remote_packet_size () - 1;
12072
dd194f6b 12073 rs->readahead_cache.invalidate_fd (fd);
80152258 12074
a6b151f1
DJ
12075 remote_buffer_add_string (&p, &left, "vFile:close:");
12076
12077 remote_buffer_add_int (&p, &left, fd);
12078
8d64371b 12079 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_close,
a6b151f1
DJ
12080 remote_errno, NULL, NULL);
12081}
12082
f6ac5f3d
PA
12083int
12084remote_target::fileio_close (int fd, int *remote_errno)
12085{
6b8edb51 12086 return remote_hostio_close (fd, remote_errno);
f6ac5f3d
PA
12087}
12088
12e2a5fd 12089/* Implementation of to_fileio_unlink. */
a6b151f1 12090
6b8edb51
PA
12091int
12092remote_target::remote_hostio_unlink (inferior *inf, const char *filename,
12093 int *remote_errno)
a6b151f1
DJ
12094{
12095 struct remote_state *rs = get_remote_state ();
8d64371b 12096 char *p = rs->buf.data ();
a6b151f1
DJ
12097 int left = get_remote_packet_size () - 1;
12098
15a201c8
GB
12099 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
12100 return -1;
12101
a6b151f1
DJ
12102 remote_buffer_add_string (&p, &left, "vFile:unlink:");
12103
12104 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12105 strlen (filename));
12106
8d64371b 12107 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_unlink,
a6b151f1
DJ
12108 remote_errno, NULL, NULL);
12109}
12110
f6ac5f3d
PA
12111int
12112remote_target::fileio_unlink (struct inferior *inf, const char *filename,
12113 int *remote_errno)
12114{
6b8edb51 12115 return remote_hostio_unlink (inf, filename, remote_errno);
f6ac5f3d
PA
12116}
12117
12e2a5fd 12118/* Implementation of to_fileio_readlink. */
b9e7b9c3 12119
f6ac5f3d
PA
12120gdb::optional<std::string>
12121remote_target::fileio_readlink (struct inferior *inf, const char *filename,
12122 int *remote_errno)
b9e7b9c3
UW
12123{
12124 struct remote_state *rs = get_remote_state ();
8d64371b 12125 char *p = rs->buf.data ();
b9e7b9c3
UW
12126 char *attachment;
12127 int left = get_remote_packet_size ();
12128 int len, attachment_len;
12129 int read_len;
b9e7b9c3 12130
15a201c8 12131 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
e0d3522b 12132 return {};
15a201c8 12133
b9e7b9c3
UW
12134 remote_buffer_add_string (&p, &left, "vFile:readlink:");
12135
12136 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12137 strlen (filename));
12138
8d64371b 12139 len = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_readlink,
b9e7b9c3
UW
12140 remote_errno, &attachment,
12141 &attachment_len);
12142
12143 if (len < 0)
e0d3522b 12144 return {};
b9e7b9c3 12145
e0d3522b 12146 std::string ret (len, '\0');
b9e7b9c3 12147
bc20a4af 12148 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
e0d3522b 12149 (gdb_byte *) &ret[0], len);
b9e7b9c3
UW
12150 if (read_len != len)
12151 error (_("Readlink returned %d, but %d bytes."), len, read_len);
12152
b9e7b9c3
UW
12153 return ret;
12154}
12155
12e2a5fd 12156/* Implementation of to_fileio_fstat. */
0a93529c 12157
f6ac5f3d
PA
12158int
12159remote_target::fileio_fstat (int fd, struct stat *st, int *remote_errno)
0a93529c
GB
12160{
12161 struct remote_state *rs = get_remote_state ();
8d64371b 12162 char *p = rs->buf.data ();
0a93529c
GB
12163 int left = get_remote_packet_size ();
12164 int attachment_len, ret;
12165 char *attachment;
12166 struct fio_stat fst;
12167 int read_len;
12168
464b0089
GB
12169 remote_buffer_add_string (&p, &left, "vFile:fstat:");
12170
12171 remote_buffer_add_int (&p, &left, fd);
12172
8d64371b 12173 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_fstat,
464b0089
GB
12174 remote_errno, &attachment,
12175 &attachment_len);
12176 if (ret < 0)
0a93529c 12177 {
464b0089
GB
12178 if (*remote_errno != FILEIO_ENOSYS)
12179 return ret;
12180
0a93529c
GB
12181 /* Strictly we should return -1, ENOSYS here, but when
12182 "set sysroot remote:" was implemented in August 2008
12183 BFD's need for a stat function was sidestepped with
12184 this hack. This was not remedied until March 2015
12185 so we retain the previous behavior to avoid breaking
12186 compatibility.
12187
12188 Note that the memset is a March 2015 addition; older
12189 GDBs set st_size *and nothing else* so the structure
12190 would have garbage in all other fields. This might
12191 break something but retaining the previous behavior
12192 here would be just too wrong. */
12193
12194 memset (st, 0, sizeof (struct stat));
12195 st->st_size = INT_MAX;
12196 return 0;
12197 }
12198
0a93529c
GB
12199 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
12200 (gdb_byte *) &fst, sizeof (fst));
12201
12202 if (read_len != ret)
12203 error (_("vFile:fstat returned %d, but %d bytes."), ret, read_len);
12204
12205 if (read_len != sizeof (fst))
12206 error (_("vFile:fstat returned %d bytes, but expecting %d."),
12207 read_len, (int) sizeof (fst));
12208
12209 remote_fileio_to_host_stat (&fst, st);
12210
12211 return 0;
12212}
12213
12e2a5fd 12214/* Implementation of to_filesystem_is_local. */
e3dd7556 12215
57810aa7 12216bool
f6ac5f3d 12217remote_target::filesystem_is_local ()
e3dd7556
GB
12218{
12219 /* Valgrind GDB presents itself as a remote target but works
12220 on the local filesystem: it does not implement remote get
12221 and users are not expected to set a sysroot. To handle
12222 this case we treat the remote filesystem as local if the
12223 sysroot is exactly TARGET_SYSROOT_PREFIX and if the stub
12224 does not support vFile:open. */
a3be80c3 12225 if (strcmp (gdb_sysroot, TARGET_SYSROOT_PREFIX) == 0)
e3dd7556
GB
12226 {
12227 enum packet_support ps = packet_support (PACKET_vFile_open);
12228
12229 if (ps == PACKET_SUPPORT_UNKNOWN)
12230 {
12231 int fd, remote_errno;
12232
12233 /* Try opening a file to probe support. The supplied
12234 filename is irrelevant, we only care about whether
12235 the stub recognizes the packet or not. */
6b8edb51 12236 fd = remote_hostio_open (NULL, "just probing",
4313b8c0 12237 FILEIO_O_RDONLY, 0700, 0,
e3dd7556
GB
12238 &remote_errno);
12239
12240 if (fd >= 0)
6b8edb51 12241 remote_hostio_close (fd, &remote_errno);
e3dd7556
GB
12242
12243 ps = packet_support (PACKET_vFile_open);
12244 }
12245
12246 if (ps == PACKET_DISABLE)
12247 {
12248 static int warning_issued = 0;
12249
12250 if (!warning_issued)
12251 {
12252 warning (_("remote target does not support file"
12253 " transfer, attempting to access files"
12254 " from local filesystem."));
12255 warning_issued = 1;
12256 }
12257
57810aa7 12258 return true;
e3dd7556
GB
12259 }
12260 }
12261
57810aa7 12262 return false;
e3dd7556
GB
12263}
12264
a6b151f1
DJ
12265static int
12266remote_fileio_errno_to_host (int errnum)
12267{
12268 switch (errnum)
12269 {
12270 case FILEIO_EPERM:
12271 return EPERM;
12272 case FILEIO_ENOENT:
12273 return ENOENT;
12274 case FILEIO_EINTR:
12275 return EINTR;
12276 case FILEIO_EIO:
12277 return EIO;
12278 case FILEIO_EBADF:
12279 return EBADF;
12280 case FILEIO_EACCES:
12281 return EACCES;
12282 case FILEIO_EFAULT:
12283 return EFAULT;
12284 case FILEIO_EBUSY:
12285 return EBUSY;
12286 case FILEIO_EEXIST:
12287 return EEXIST;
12288 case FILEIO_ENODEV:
12289 return ENODEV;
12290 case FILEIO_ENOTDIR:
12291 return ENOTDIR;
12292 case FILEIO_EISDIR:
12293 return EISDIR;
12294 case FILEIO_EINVAL:
12295 return EINVAL;
12296 case FILEIO_ENFILE:
12297 return ENFILE;
12298 case FILEIO_EMFILE:
12299 return EMFILE;
12300 case FILEIO_EFBIG:
12301 return EFBIG;
12302 case FILEIO_ENOSPC:
12303 return ENOSPC;
12304 case FILEIO_ESPIPE:
12305 return ESPIPE;
12306 case FILEIO_EROFS:
12307 return EROFS;
12308 case FILEIO_ENOSYS:
12309 return ENOSYS;
12310 case FILEIO_ENAMETOOLONG:
12311 return ENAMETOOLONG;
12312 }
12313 return -1;
12314}
12315
12316static char *
12317remote_hostio_error (int errnum)
12318{
12319 int host_error = remote_fileio_errno_to_host (errnum);
12320
12321 if (host_error == -1)
12322 error (_("Unknown remote I/O error %d"), errnum);
12323 else
12324 error (_("Remote I/O error: %s"), safe_strerror (host_error));
12325}
12326
440b7aec
PA
12327/* A RAII wrapper around a remote file descriptor. */
12328
12329class scoped_remote_fd
a6b151f1 12330{
440b7aec 12331public:
6b8edb51
PA
12332 scoped_remote_fd (remote_target *remote, int fd)
12333 : m_remote (remote), m_fd (fd)
440b7aec
PA
12334 {
12335 }
a6b151f1 12336
440b7aec
PA
12337 ~scoped_remote_fd ()
12338 {
12339 if (m_fd != -1)
12340 {
12341 try
12342 {
12343 int remote_errno;
6b8edb51 12344 m_remote->remote_hostio_close (m_fd, &remote_errno);
440b7aec
PA
12345 }
12346 catch (...)
12347 {
12348 /* Swallow exception before it escapes the dtor. If
12349 something goes wrong, likely the connection is gone,
12350 and there's nothing else that can be done. */
12351 }
12352 }
12353 }
12354
12355 DISABLE_COPY_AND_ASSIGN (scoped_remote_fd);
12356
12357 /* Release ownership of the file descriptor, and return it. */
88a774b9 12358 ATTRIBUTE_UNUSED_RESULT int release () noexcept
440b7aec
PA
12359 {
12360 int fd = m_fd;
12361 m_fd = -1;
12362 return fd;
12363 }
12364
12365 /* Return the owned file descriptor. */
12366 int get () const noexcept
12367 {
12368 return m_fd;
12369 }
12370
12371private:
6b8edb51
PA
12372 /* The remote target. */
12373 remote_target *m_remote;
12374
440b7aec
PA
12375 /* The owned remote I/O file descriptor. */
12376 int m_fd;
12377};
a6b151f1
DJ
12378
12379void
12380remote_file_put (const char *local_file, const char *remote_file, int from_tty)
6b8edb51
PA
12381{
12382 remote_target *remote = get_current_remote_target ();
12383
12384 if (remote == nullptr)
12385 error (_("command can only be used with remote target"));
12386
12387 remote->remote_file_put (local_file, remote_file, from_tty);
12388}
12389
12390void
12391remote_target::remote_file_put (const char *local_file, const char *remote_file,
12392 int from_tty)
a6b151f1 12393{
440b7aec 12394 int retcode, remote_errno, bytes, io_size;
a6b151f1
DJ
12395 int bytes_in_buffer;
12396 int saw_eof;
12397 ULONGEST offset;
a6b151f1 12398
d419f42d 12399 gdb_file_up file = gdb_fopen_cloexec (local_file, "rb");
a6b151f1
DJ
12400 if (file == NULL)
12401 perror_with_name (local_file);
a6b151f1 12402
440b7aec 12403 scoped_remote_fd fd
6b8edb51
PA
12404 (this, remote_hostio_open (NULL,
12405 remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT
12406 | FILEIO_O_TRUNC),
12407 0700, 0, &remote_errno));
440b7aec 12408 if (fd.get () == -1)
a6b151f1
DJ
12409 remote_hostio_error (remote_errno);
12410
12411 /* Send up to this many bytes at once. They won't all fit in the
12412 remote packet limit, so we'll transfer slightly fewer. */
12413 io_size = get_remote_packet_size ();
5ca3b260 12414 gdb::byte_vector buffer (io_size);
a6b151f1 12415
a6b151f1
DJ
12416 bytes_in_buffer = 0;
12417 saw_eof = 0;
12418 offset = 0;
12419 while (bytes_in_buffer || !saw_eof)
12420 {
12421 if (!saw_eof)
12422 {
5ca3b260 12423 bytes = fread (buffer.data () + bytes_in_buffer, 1,
3e43a32a 12424 io_size - bytes_in_buffer,
d419f42d 12425 file.get ());
a6b151f1
DJ
12426 if (bytes == 0)
12427 {
d419f42d 12428 if (ferror (file.get ()))
a6b151f1
DJ
12429 error (_("Error reading %s."), local_file);
12430 else
12431 {
12432 /* EOF. Unless there is something still in the
12433 buffer from the last iteration, we are done. */
12434 saw_eof = 1;
12435 if (bytes_in_buffer == 0)
12436 break;
12437 }
12438 }
12439 }
12440 else
12441 bytes = 0;
12442
12443 bytes += bytes_in_buffer;
12444 bytes_in_buffer = 0;
12445
5ca3b260 12446 retcode = remote_hostio_pwrite (fd.get (), buffer.data (), bytes,
3e43a32a 12447 offset, &remote_errno);
a6b151f1
DJ
12448
12449 if (retcode < 0)
12450 remote_hostio_error (remote_errno);
12451 else if (retcode == 0)
12452 error (_("Remote write of %d bytes returned 0!"), bytes);
12453 else if (retcode < bytes)
12454 {
12455 /* Short write. Save the rest of the read data for the next
12456 write. */
12457 bytes_in_buffer = bytes - retcode;
5ca3b260 12458 memmove (buffer.data (), buffer.data () + retcode, bytes_in_buffer);
a6b151f1
DJ
12459 }
12460
12461 offset += retcode;
12462 }
12463
6b8edb51 12464 if (remote_hostio_close (fd.release (), &remote_errno))
a6b151f1
DJ
12465 remote_hostio_error (remote_errno);
12466
12467 if (from_tty)
12468 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file);
a6b151f1
DJ
12469}
12470
12471void
12472remote_file_get (const char *remote_file, const char *local_file, int from_tty)
6b8edb51
PA
12473{
12474 remote_target *remote = get_current_remote_target ();
12475
12476 if (remote == nullptr)
12477 error (_("command can only be used with remote target"));
12478
12479 remote->remote_file_get (remote_file, local_file, from_tty);
12480}
12481
12482void
12483remote_target::remote_file_get (const char *remote_file, const char *local_file,
12484 int from_tty)
a6b151f1 12485{
440b7aec 12486 int remote_errno, bytes, io_size;
a6b151f1 12487 ULONGEST offset;
a6b151f1 12488
440b7aec 12489 scoped_remote_fd fd
6b8edb51
PA
12490 (this, remote_hostio_open (NULL,
12491 remote_file, FILEIO_O_RDONLY, 0, 0,
12492 &remote_errno));
440b7aec 12493 if (fd.get () == -1)
a6b151f1
DJ
12494 remote_hostio_error (remote_errno);
12495
d419f42d 12496 gdb_file_up file = gdb_fopen_cloexec (local_file, "wb");
a6b151f1
DJ
12497 if (file == NULL)
12498 perror_with_name (local_file);
a6b151f1
DJ
12499
12500 /* Send up to this many bytes at once. They won't all fit in the
12501 remote packet limit, so we'll transfer slightly fewer. */
12502 io_size = get_remote_packet_size ();
5ca3b260 12503 gdb::byte_vector buffer (io_size);
a6b151f1 12504
a6b151f1
DJ
12505 offset = 0;
12506 while (1)
12507 {
5ca3b260 12508 bytes = remote_hostio_pread (fd.get (), buffer.data (), io_size, offset,
440b7aec 12509 &remote_errno);
a6b151f1
DJ
12510 if (bytes == 0)
12511 /* Success, but no bytes, means end-of-file. */
12512 break;
12513 if (bytes == -1)
12514 remote_hostio_error (remote_errno);
12515
12516 offset += bytes;
12517
5ca3b260 12518 bytes = fwrite (buffer.data (), 1, bytes, file.get ());
a6b151f1
DJ
12519 if (bytes == 0)
12520 perror_with_name (local_file);
12521 }
12522
6b8edb51 12523 if (remote_hostio_close (fd.release (), &remote_errno))
a6b151f1
DJ
12524 remote_hostio_error (remote_errno);
12525
12526 if (from_tty)
12527 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file);
a6b151f1
DJ
12528}
12529
12530void
12531remote_file_delete (const char *remote_file, int from_tty)
12532{
6b8edb51 12533 remote_target *remote = get_current_remote_target ();
a6b151f1 12534
6b8edb51 12535 if (remote == nullptr)
a6b151f1
DJ
12536 error (_("command can only be used with remote target"));
12537
6b8edb51
PA
12538 remote->remote_file_delete (remote_file, from_tty);
12539}
12540
12541void
12542remote_target::remote_file_delete (const char *remote_file, int from_tty)
12543{
12544 int retcode, remote_errno;
12545
12546 retcode = remote_hostio_unlink (NULL, remote_file, &remote_errno);
a6b151f1
DJ
12547 if (retcode == -1)
12548 remote_hostio_error (remote_errno);
12549
12550 if (from_tty)
12551 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file);
12552}
12553
12554static void
ac88e2de 12555remote_put_command (const char *args, int from_tty)
a6b151f1 12556{
d1a41061
PP
12557 if (args == NULL)
12558 error_no_arg (_("file to put"));
12559
773a1edc 12560 gdb_argv argv (args);
a6b151f1
DJ
12561 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12562 error (_("Invalid parameters to remote put"));
12563
12564 remote_file_put (argv[0], argv[1], from_tty);
a6b151f1
DJ
12565}
12566
12567static void
ac88e2de 12568remote_get_command (const char *args, int from_tty)
a6b151f1 12569{
d1a41061
PP
12570 if (args == NULL)
12571 error_no_arg (_("file to get"));
12572
773a1edc 12573 gdb_argv argv (args);
a6b151f1
DJ
12574 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12575 error (_("Invalid parameters to remote get"));
12576
12577 remote_file_get (argv[0], argv[1], from_tty);
a6b151f1
DJ
12578}
12579
12580static void
ac88e2de 12581remote_delete_command (const char *args, int from_tty)
a6b151f1 12582{
d1a41061
PP
12583 if (args == NULL)
12584 error_no_arg (_("file to delete"));
12585
773a1edc 12586 gdb_argv argv (args);
a6b151f1
DJ
12587 if (argv[0] == NULL || argv[1] != NULL)
12588 error (_("Invalid parameters to remote delete"));
12589
12590 remote_file_delete (argv[0], from_tty);
a6b151f1
DJ
12591}
12592
12593static void
981a3fb3 12594remote_command (const char *args, int from_tty)
a6b151f1 12595{
635c7e8a 12596 help_list (remote_cmdlist, "remote ", all_commands, gdb_stdout);
a6b151f1
DJ
12597}
12598
57810aa7 12599bool
f6ac5f3d 12600remote_target::can_execute_reverse ()
b2175913 12601{
4082afcc
PA
12602 if (packet_support (PACKET_bs) == PACKET_ENABLE
12603 || packet_support (PACKET_bc) == PACKET_ENABLE)
57810aa7 12604 return true;
40ab02ce 12605 else
57810aa7 12606 return false;
b2175913
MS
12607}
12608
57810aa7 12609bool
f6ac5f3d 12610remote_target::supports_non_stop ()
74531fed 12611{
57810aa7 12612 return true;
74531fed
PA
12613}
12614
57810aa7 12615bool
f6ac5f3d 12616remote_target::supports_disable_randomization ()
03583c20
UW
12617{
12618 /* Only supported in extended mode. */
57810aa7 12619 return false;
03583c20
UW
12620}
12621
57810aa7 12622bool
f6ac5f3d 12623remote_target::supports_multi_process ()
8a305172
PA
12624{
12625 struct remote_state *rs = get_remote_state ();
a744cf53 12626
8020350c 12627 return remote_multi_process_p (rs);
8a305172
PA
12628}
12629
70221824 12630static int
f6ac5f3d 12631remote_supports_cond_tracepoints ()
782b2b07 12632{
4082afcc 12633 return packet_support (PACKET_ConditionalTracepoints) == PACKET_ENABLE;
782b2b07
SS
12634}
12635
57810aa7 12636bool
f6ac5f3d 12637remote_target::supports_evaluation_of_breakpoint_conditions ()
3788aec7 12638{
4082afcc 12639 return packet_support (PACKET_ConditionalBreakpoints) == PACKET_ENABLE;
3788aec7
LM
12640}
12641
70221824 12642static int
f6ac5f3d 12643remote_supports_fast_tracepoints ()
7a697b8d 12644{
4082afcc 12645 return packet_support (PACKET_FastTracepoints) == PACKET_ENABLE;
7a697b8d
SS
12646}
12647
0fb4aa4b 12648static int
f6ac5f3d 12649remote_supports_static_tracepoints ()
0fb4aa4b 12650{
4082afcc 12651 return packet_support (PACKET_StaticTracepoints) == PACKET_ENABLE;
0fb4aa4b
PA
12652}
12653
1e4d1764 12654static int
f6ac5f3d 12655remote_supports_install_in_trace ()
1e4d1764 12656{
4082afcc 12657 return packet_support (PACKET_InstallInTrace) == PACKET_ENABLE;
1e4d1764
YQ
12658}
12659
57810aa7 12660bool
f6ac5f3d 12661remote_target::supports_enable_disable_tracepoint ()
d248b706 12662{
4082afcc
PA
12663 return (packet_support (PACKET_EnableDisableTracepoints_feature)
12664 == PACKET_ENABLE);
d248b706
KY
12665}
12666
57810aa7 12667bool
f6ac5f3d 12668remote_target::supports_string_tracing ()
3065dfb6 12669{
4082afcc 12670 return packet_support (PACKET_tracenz_feature) == PACKET_ENABLE;
3065dfb6
SS
12671}
12672
57810aa7 12673bool
f6ac5f3d 12674remote_target::can_run_breakpoint_commands ()
d3ce09f5 12675{
4082afcc 12676 return packet_support (PACKET_BreakpointCommands) == PACKET_ENABLE;
d3ce09f5
SS
12677}
12678
f6ac5f3d
PA
12679void
12680remote_target::trace_init ()
35b1e5cc 12681{
b6bb3468
PA
12682 struct remote_state *rs = get_remote_state ();
12683
35b1e5cc 12684 putpkt ("QTinit");
b6bb3468 12685 remote_get_noisy_reply ();
8d64371b 12686 if (strcmp (rs->buf.data (), "OK") != 0)
35b1e5cc
SS
12687 error (_("Target does not support this command."));
12688}
12689
409873ef
SS
12690/* Recursive routine to walk through command list including loops, and
12691 download packets for each command. */
12692
6b8edb51
PA
12693void
12694remote_target::remote_download_command_source (int num, ULONGEST addr,
12695 struct command_line *cmds)
409873ef
SS
12696{
12697 struct remote_state *rs = get_remote_state ();
12698 struct command_line *cmd;
12699
12700 for (cmd = cmds; cmd; cmd = cmd->next)
12701 {
0df8b418 12702 QUIT; /* Allow user to bail out with ^C. */
8d64371b 12703 strcpy (rs->buf.data (), "QTDPsrc:");
409873ef 12704 encode_source_string (num, addr, "cmd", cmd->line,
8d64371b
TT
12705 rs->buf.data () + strlen (rs->buf.data ()),
12706 rs->buf.size () - strlen (rs->buf.data ()));
409873ef 12707 putpkt (rs->buf);
b6bb3468 12708 remote_get_noisy_reply ();
8d64371b 12709 if (strcmp (rs->buf.data (), "OK"))
409873ef
SS
12710 warning (_("Target does not support source download."));
12711
12712 if (cmd->control_type == while_control
12713 || cmd->control_type == while_stepping_control)
12714 {
12973681 12715 remote_download_command_source (num, addr, cmd->body_list_0.get ());
409873ef 12716
0df8b418 12717 QUIT; /* Allow user to bail out with ^C. */
8d64371b 12718 strcpy (rs->buf.data (), "QTDPsrc:");
409873ef 12719 encode_source_string (num, addr, "cmd", "end",
8d64371b
TT
12720 rs->buf.data () + strlen (rs->buf.data ()),
12721 rs->buf.size () - strlen (rs->buf.data ()));
409873ef 12722 putpkt (rs->buf);
b6bb3468 12723 remote_get_noisy_reply ();
8d64371b 12724 if (strcmp (rs->buf.data (), "OK"))
409873ef
SS
12725 warning (_("Target does not support source download."));
12726 }
12727 }
12728}
12729
f6ac5f3d
PA
12730void
12731remote_target::download_tracepoint (struct bp_location *loc)
35b1e5cc
SS
12732{
12733 CORE_ADDR tpaddr;
409873ef 12734 char addrbuf[40];
b44ec619
SM
12735 std::vector<std::string> tdp_actions;
12736 std::vector<std::string> stepping_actions;
35b1e5cc 12737 char *pkt;
e8ba3115 12738 struct breakpoint *b = loc->owner;
d9b3f62e 12739 struct tracepoint *t = (struct tracepoint *) b;
b6bb3468 12740 struct remote_state *rs = get_remote_state ();
3df3a985 12741 int ret;
ff36536c 12742 const char *err_msg = _("Tracepoint packet too large for target.");
3df3a985
PFC
12743 size_t size_left;
12744
12745 /* We use a buffer other than rs->buf because we'll build strings
12746 across multiple statements, and other statements in between could
12747 modify rs->buf. */
12748 gdb::char_vector buf (get_remote_packet_size ());
35b1e5cc 12749
dc673c81 12750 encode_actions_rsp (loc, &tdp_actions, &stepping_actions);
e8ba3115
YQ
12751
12752 tpaddr = loc->address;
12753 sprintf_vma (addrbuf, tpaddr);
3df3a985
PFC
12754 ret = snprintf (buf.data (), buf.size (), "QTDP:%x:%s:%c:%lx:%x",
12755 b->number, addrbuf, /* address */
12756 (b->enable_state == bp_enabled ? 'E' : 'D'),
12757 t->step_count, t->pass_count);
12758
12759 if (ret < 0 || ret >= buf.size ())
a7f25a84 12760 error ("%s", err_msg);
3df3a985 12761
e8ba3115
YQ
12762 /* Fast tracepoints are mostly handled by the target, but we can
12763 tell the target how big of an instruction block should be moved
12764 around. */
12765 if (b->type == bp_fast_tracepoint)
12766 {
12767 /* Only test for support at download time; we may not know
12768 target capabilities at definition time. */
12769 if (remote_supports_fast_tracepoints ())
35b1e5cc 12770 {
6b940e6a
PL
12771 if (gdbarch_fast_tracepoint_valid_at (loc->gdbarch, tpaddr,
12772 NULL))
3df3a985
PFC
12773 {
12774 size_left = buf.size () - strlen (buf.data ());
12775 ret = snprintf (buf.data () + strlen (buf.data ()),
12776 size_left, ":F%x",
12777 gdb_insn_length (loc->gdbarch, tpaddr));
12778
12779 if (ret < 0 || ret >= size_left)
a7f25a84 12780 error ("%s", err_msg);
3df3a985 12781 }
35b1e5cc 12782 else
e8ba3115
YQ
12783 /* If it passed validation at definition but fails now,
12784 something is very wrong. */
12785 internal_error (__FILE__, __LINE__,
12786 _("Fast tracepoint not "
12787 "valid during download"));
35b1e5cc 12788 }
e8ba3115
YQ
12789 else
12790 /* Fast tracepoints are functionally identical to regular
12791 tracepoints, so don't take lack of support as a reason to
12792 give up on the trace run. */
12793 warning (_("Target does not support fast tracepoints, "
12794 "downloading %d as regular tracepoint"), b->number);
12795 }
12796 else if (b->type == bp_static_tracepoint)
12797 {
12798 /* Only test for support at download time; we may not know
12799 target capabilities at definition time. */
12800 if (remote_supports_static_tracepoints ())
0fb4aa4b 12801 {
e8ba3115 12802 struct static_tracepoint_marker marker;
0fb4aa4b 12803
e8ba3115 12804 if (target_static_tracepoint_marker_at (tpaddr, &marker))
3df3a985
PFC
12805 {
12806 size_left = buf.size () - strlen (buf.data ());
12807 ret = snprintf (buf.data () + strlen (buf.data ()),
12808 size_left, ":S");
12809
12810 if (ret < 0 || ret >= size_left)
a7f25a84 12811 error ("%s", err_msg);
3df3a985 12812 }
0fb4aa4b 12813 else
e8ba3115 12814 error (_("Static tracepoint not valid during download"));
0fb4aa4b 12815 }
e8ba3115
YQ
12816 else
12817 /* Fast tracepoints are functionally identical to regular
12818 tracepoints, so don't take lack of support as a reason
12819 to give up on the trace run. */
12820 error (_("Target does not support static tracepoints"));
12821 }
12822 /* If the tracepoint has a conditional, make it into an agent
12823 expression and append to the definition. */
12824 if (loc->cond)
12825 {
12826 /* Only test support at download time, we may not know target
12827 capabilities at definition time. */
12828 if (remote_supports_cond_tracepoints ())
35b1e5cc 12829 {
3df3a985
PFC
12830 agent_expr_up aexpr = gen_eval_for_expr (tpaddr,
12831 loc->cond.get ());
12832
12833 size_left = buf.size () - strlen (buf.data ());
12834
12835 ret = snprintf (buf.data () + strlen (buf.data ()),
12836 size_left, ":X%x,", aexpr->len);
12837
12838 if (ret < 0 || ret >= size_left)
a7f25a84 12839 error ("%s", err_msg);
3df3a985
PFC
12840
12841 size_left = buf.size () - strlen (buf.data ());
12842
12843 /* Two bytes to encode each aexpr byte, plus the terminating
12844 null byte. */
12845 if (aexpr->len * 2 + 1 > size_left)
a7f25a84 12846 error ("%s", err_msg);
3df3a985
PFC
12847
12848 pkt = buf.data () + strlen (buf.data ());
12849
b44ec619 12850 for (int ndx = 0; ndx < aexpr->len; ++ndx)
e8ba3115
YQ
12851 pkt = pack_hex_byte (pkt, aexpr->buf[ndx]);
12852 *pkt = '\0';
35b1e5cc 12853 }
e8ba3115
YQ
12854 else
12855 warning (_("Target does not support conditional tracepoints, "
12856 "ignoring tp %d cond"), b->number);
12857 }
35b1e5cc 12858
d9b3f62e 12859 if (b->commands || *default_collect)
3df3a985
PFC
12860 {
12861 size_left = buf.size () - strlen (buf.data ());
12862
12863 ret = snprintf (buf.data () + strlen (buf.data ()),
12864 size_left, "-");
12865
12866 if (ret < 0 || ret >= size_left)
a7f25a84 12867 error ("%s", err_msg);
3df3a985
PFC
12868 }
12869
12870 putpkt (buf.data ());
b6bb3468 12871 remote_get_noisy_reply ();
8d64371b 12872 if (strcmp (rs->buf.data (), "OK"))
e8ba3115 12873 error (_("Target does not support tracepoints."));
35b1e5cc 12874
e8ba3115 12875 /* do_single_steps (t); */
b44ec619
SM
12876 for (auto action_it = tdp_actions.begin ();
12877 action_it != tdp_actions.end (); action_it++)
e8ba3115 12878 {
b44ec619
SM
12879 QUIT; /* Allow user to bail out with ^C. */
12880
aa6f3694 12881 bool has_more = ((action_it + 1) != tdp_actions.end ()
b44ec619
SM
12882 || !stepping_actions.empty ());
12883
3df3a985
PFC
12884 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%c",
12885 b->number, addrbuf, /* address */
12886 action_it->c_str (),
12887 has_more ? '-' : 0);
12888
12889 if (ret < 0 || ret >= buf.size ())
a7f25a84 12890 error ("%s", err_msg);
3df3a985
PFC
12891
12892 putpkt (buf.data ());
b44ec619 12893 remote_get_noisy_reply ();
8d64371b 12894 if (strcmp (rs->buf.data (), "OK"))
b44ec619 12895 error (_("Error on target while setting tracepoints."));
e8ba3115 12896 }
409873ef 12897
05abfc39
PFC
12898 for (auto action_it = stepping_actions.begin ();
12899 action_it != stepping_actions.end (); action_it++)
12900 {
12901 QUIT; /* Allow user to bail out with ^C. */
12902
12903 bool is_first = action_it == stepping_actions.begin ();
aa6f3694 12904 bool has_more = (action_it + 1) != stepping_actions.end ();
05abfc39 12905
3df3a985
PFC
12906 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%s%s",
12907 b->number, addrbuf, /* address */
12908 is_first ? "S" : "",
12909 action_it->c_str (),
12910 has_more ? "-" : "");
12911
12912 if (ret < 0 || ret >= buf.size ())
a7f25a84 12913 error ("%s", err_msg);
3df3a985
PFC
12914
12915 putpkt (buf.data ());
05abfc39 12916 remote_get_noisy_reply ();
8d64371b 12917 if (strcmp (rs->buf.data (), "OK"))
05abfc39
PFC
12918 error (_("Error on target while setting tracepoints."));
12919 }
b44ec619 12920
4082afcc 12921 if (packet_support (PACKET_TracepointSource) == PACKET_ENABLE)
e8ba3115 12922 {
f00aae0f 12923 if (b->location != NULL)
409873ef 12924 {
3df3a985
PFC
12925 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
12926
12927 if (ret < 0 || ret >= buf.size ())
a7f25a84 12928 error ("%s", err_msg);
3df3a985 12929
f00aae0f 12930 encode_source_string (b->number, loc->address, "at",
d28cd78a 12931 event_location_to_string (b->location.get ()),
3df3a985
PFC
12932 buf.data () + strlen (buf.data ()),
12933 buf.size () - strlen (buf.data ()));
12934 putpkt (buf.data ());
b6bb3468 12935 remote_get_noisy_reply ();
8d64371b 12936 if (strcmp (rs->buf.data (), "OK"))
e8ba3115 12937 warning (_("Target does not support source download."));
409873ef 12938 }
e8ba3115
YQ
12939 if (b->cond_string)
12940 {
3df3a985
PFC
12941 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
12942
12943 if (ret < 0 || ret >= buf.size ())
a7f25a84 12944 error ("%s", err_msg);
3df3a985 12945
e8ba3115 12946 encode_source_string (b->number, loc->address,
3df3a985
PFC
12947 "cond", b->cond_string,
12948 buf.data () + strlen (buf.data ()),
12949 buf.size () - strlen (buf.data ()));
12950 putpkt (buf.data ());
b6bb3468 12951 remote_get_noisy_reply ();
8d64371b 12952 if (strcmp (rs->buf.data (), "OK"))
e8ba3115
YQ
12953 warning (_("Target does not support source download."));
12954 }
12955 remote_download_command_source (b->number, loc->address,
12956 breakpoint_commands (b));
35b1e5cc 12957 }
35b1e5cc
SS
12958}
12959
57810aa7 12960bool
f6ac5f3d 12961remote_target::can_download_tracepoint ()
1e4d1764 12962{
1e51243a
PA
12963 struct remote_state *rs = get_remote_state ();
12964 struct trace_status *ts;
12965 int status;
12966
12967 /* Don't try to install tracepoints until we've relocated our
12968 symbols, and fetched and merged the target's tracepoint list with
12969 ours. */
12970 if (rs->starting_up)
57810aa7 12971 return false;
1e51243a
PA
12972
12973 ts = current_trace_status ();
f6ac5f3d 12974 status = get_trace_status (ts);
1e4d1764
YQ
12975
12976 if (status == -1 || !ts->running_known || !ts->running)
57810aa7 12977 return false;
1e4d1764
YQ
12978
12979 /* If we are in a tracing experiment, but remote stub doesn't support
12980 installing tracepoint in trace, we have to return. */
12981 if (!remote_supports_install_in_trace ())
57810aa7 12982 return false;
1e4d1764 12983
57810aa7 12984 return true;
1e4d1764
YQ
12985}
12986
12987
f6ac5f3d
PA
12988void
12989remote_target::download_trace_state_variable (const trace_state_variable &tsv)
35b1e5cc
SS
12990{
12991 struct remote_state *rs = get_remote_state ();
00bf0b85 12992 char *p;
35b1e5cc 12993
8d64371b 12994 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDV:%x:%s:%x:",
c252925c
SM
12995 tsv.number, phex ((ULONGEST) tsv.initial_value, 8),
12996 tsv.builtin);
8d64371b
TT
12997 p = rs->buf.data () + strlen (rs->buf.data ());
12998 if ((p - rs->buf.data ()) + tsv.name.length () * 2
12999 >= get_remote_packet_size ())
00bf0b85 13000 error (_("Trace state variable name too long for tsv definition packet"));
c252925c 13001 p += 2 * bin2hex ((gdb_byte *) (tsv.name.data ()), p, tsv.name.length ());
00bf0b85 13002 *p++ = '\0';
35b1e5cc 13003 putpkt (rs->buf);
b6bb3468 13004 remote_get_noisy_reply ();
8d64371b 13005 if (rs->buf[0] == '\0')
ad91cd99 13006 error (_("Target does not support this command."));
8d64371b 13007 if (strcmp (rs->buf.data (), "OK") != 0)
ad91cd99 13008 error (_("Error on target while downloading trace state variable."));
35b1e5cc
SS
13009}
13010
f6ac5f3d
PA
13011void
13012remote_target::enable_tracepoint (struct bp_location *location)
d248b706
KY
13013{
13014 struct remote_state *rs = get_remote_state ();
13015 char addr_buf[40];
13016
13017 sprintf_vma (addr_buf, location->address);
8d64371b 13018 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTEnable:%x:%s",
bba74b36 13019 location->owner->number, addr_buf);
d248b706 13020 putpkt (rs->buf);
b6bb3468 13021 remote_get_noisy_reply ();
8d64371b 13022 if (rs->buf[0] == '\0')
d248b706 13023 error (_("Target does not support enabling tracepoints while a trace run is ongoing."));
8d64371b 13024 if (strcmp (rs->buf.data (), "OK") != 0)
d248b706
KY
13025 error (_("Error on target while enabling tracepoint."));
13026}
13027
f6ac5f3d
PA
13028void
13029remote_target::disable_tracepoint (struct bp_location *location)
d248b706
KY
13030{
13031 struct remote_state *rs = get_remote_state ();
13032 char addr_buf[40];
13033
13034 sprintf_vma (addr_buf, location->address);
8d64371b 13035 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDisable:%x:%s",
bba74b36 13036 location->owner->number, addr_buf);
d248b706 13037 putpkt (rs->buf);
b6bb3468 13038 remote_get_noisy_reply ();
8d64371b 13039 if (rs->buf[0] == '\0')
d248b706 13040 error (_("Target does not support disabling tracepoints while a trace run is ongoing."));
8d64371b 13041 if (strcmp (rs->buf.data (), "OK") != 0)
d248b706
KY
13042 error (_("Error on target while disabling tracepoint."));
13043}
13044
f6ac5f3d
PA
13045void
13046remote_target::trace_set_readonly_regions ()
35b1e5cc
SS
13047{
13048 asection *s;
13049 bfd_size_type size;
608bcef2 13050 bfd_vma vma;
35b1e5cc 13051 int anysecs = 0;
c2fa21f1 13052 int offset = 0;
35b1e5cc
SS
13053
13054 if (!exec_bfd)
13055 return; /* No information to give. */
13056
b6bb3468
PA
13057 struct remote_state *rs = get_remote_state ();
13058
8d64371b
TT
13059 strcpy (rs->buf.data (), "QTro");
13060 offset = strlen (rs->buf.data ());
35b1e5cc
SS
13061 for (s = exec_bfd->sections; s; s = s->next)
13062 {
13063 char tmp1[40], tmp2[40];
c2fa21f1 13064 int sec_length;
35b1e5cc
SS
13065
13066 if ((s->flags & SEC_LOAD) == 0 ||
0df8b418 13067 /* (s->flags & SEC_CODE) == 0 || */
35b1e5cc
SS
13068 (s->flags & SEC_READONLY) == 0)
13069 continue;
13070
13071 anysecs = 1;
fd361982
AM
13072 vma = bfd_section_vma (s);
13073 size = bfd_section_size (s);
608bcef2
HZ
13074 sprintf_vma (tmp1, vma);
13075 sprintf_vma (tmp2, vma + size);
c2fa21f1 13076 sec_length = 1 + strlen (tmp1) + 1 + strlen (tmp2);
8d64371b 13077 if (offset + sec_length + 1 > rs->buf.size ())
c2fa21f1 13078 {
4082afcc 13079 if (packet_support (PACKET_qXfer_traceframe_info) != PACKET_ENABLE)
864ac8a7 13080 warning (_("\
c2fa21f1
HZ
13081Too many sections for read-only sections definition packet."));
13082 break;
13083 }
8d64371b 13084 xsnprintf (rs->buf.data () + offset, rs->buf.size () - offset, ":%s,%s",
bba74b36 13085 tmp1, tmp2);
c2fa21f1 13086 offset += sec_length;
35b1e5cc
SS
13087 }
13088 if (anysecs)
13089 {
b6bb3468 13090 putpkt (rs->buf);
8d64371b 13091 getpkt (&rs->buf, 0);
35b1e5cc
SS
13092 }
13093}
13094
f6ac5f3d
PA
13095void
13096remote_target::trace_start ()
35b1e5cc 13097{
b6bb3468
PA
13098 struct remote_state *rs = get_remote_state ();
13099
35b1e5cc 13100 putpkt ("QTStart");
b6bb3468 13101 remote_get_noisy_reply ();
8d64371b 13102 if (rs->buf[0] == '\0')
ad91cd99 13103 error (_("Target does not support this command."));
8d64371b
TT
13104 if (strcmp (rs->buf.data (), "OK") != 0)
13105 error (_("Bogus reply from target: %s"), rs->buf.data ());
35b1e5cc
SS
13106}
13107
f6ac5f3d
PA
13108int
13109remote_target::get_trace_status (struct trace_status *ts)
35b1e5cc 13110{
953b98d1 13111 /* Initialize it just to avoid a GCC false warning. */
f652de6f 13112 char *p = NULL;
bd3eecc3 13113 enum packet_result result;
b6bb3468 13114 struct remote_state *rs = get_remote_state ();
bd3eecc3 13115
4082afcc 13116 if (packet_support (PACKET_qTStatus) == PACKET_DISABLE)
bd3eecc3 13117 return -1;
a744cf53 13118
7b9a15e1 13119 /* FIXME we need to get register block size some other way. */
5cd63fda 13120 trace_regblock_size
9d6eea31 13121 = rs->get_remote_arch_state (target_gdbarch ())->sizeof_g_packet;
00bf0b85 13122
049dc89b
JK
13123 putpkt ("qTStatus");
13124
a70b8144 13125 try
67f41397 13126 {
b6bb3468 13127 p = remote_get_noisy_reply ();
67f41397 13128 }
230d2906 13129 catch (const gdb_exception_error &ex)
67f41397 13130 {
598d3636
JK
13131 if (ex.error != TARGET_CLOSE_ERROR)
13132 {
13133 exception_fprintf (gdb_stderr, ex, "qTStatus: ");
13134 return -1;
13135 }
eedc3f4f 13136 throw;
67f41397 13137 }
00bf0b85 13138
bd3eecc3
PA
13139 result = packet_ok (p, &remote_protocol_packets[PACKET_qTStatus]);
13140
00bf0b85 13141 /* If the remote target doesn't do tracing, flag it. */
bd3eecc3 13142 if (result == PACKET_UNKNOWN)
00bf0b85 13143 return -1;
35b1e5cc 13144
00bf0b85 13145 /* We're working with a live target. */
f5911ea1 13146 ts->filename = NULL;
00bf0b85 13147
00bf0b85 13148 if (*p++ != 'T')
8d64371b 13149 error (_("Bogus trace status reply from target: %s"), rs->buf.data ());
35b1e5cc 13150
84cebc4a
YQ
13151 /* Function 'parse_trace_status' sets default value of each field of
13152 'ts' at first, so we don't have to do it here. */
00bf0b85
SS
13153 parse_trace_status (p, ts);
13154
13155 return ts->running;
35b1e5cc
SS
13156}
13157
f6ac5f3d
PA
13158void
13159remote_target::get_tracepoint_status (struct breakpoint *bp,
13160 struct uploaded_tp *utp)
f196051f
SS
13161{
13162 struct remote_state *rs = get_remote_state ();
f196051f
SS
13163 char *reply;
13164 struct bp_location *loc;
13165 struct tracepoint *tp = (struct tracepoint *) bp;
bba74b36 13166 size_t size = get_remote_packet_size ();
f196051f
SS
13167
13168 if (tp)
13169 {
c1fc2657 13170 tp->hit_count = 0;
f196051f 13171 tp->traceframe_usage = 0;
c1fc2657 13172 for (loc = tp->loc; loc; loc = loc->next)
f196051f
SS
13173 {
13174 /* If the tracepoint was never downloaded, don't go asking for
13175 any status. */
13176 if (tp->number_on_target == 0)
13177 continue;
8d64371b 13178 xsnprintf (rs->buf.data (), size, "qTP:%x:%s", tp->number_on_target,
bba74b36 13179 phex_nz (loc->address, 0));
f196051f 13180 putpkt (rs->buf);
b6bb3468 13181 reply = remote_get_noisy_reply ();
f196051f
SS
13182 if (reply && *reply)
13183 {
13184 if (*reply == 'V')
13185 parse_tracepoint_status (reply + 1, bp, utp);
13186 }
13187 }
13188 }
13189 else if (utp)
13190 {
13191 utp->hit_count = 0;
13192 utp->traceframe_usage = 0;
8d64371b 13193 xsnprintf (rs->buf.data (), size, "qTP:%x:%s", utp->number,
bba74b36 13194 phex_nz (utp->addr, 0));
f196051f 13195 putpkt (rs->buf);
b6bb3468 13196 reply = remote_get_noisy_reply ();
f196051f
SS
13197 if (reply && *reply)
13198 {
13199 if (*reply == 'V')
13200 parse_tracepoint_status (reply + 1, bp, utp);
13201 }
13202 }
13203}
13204
f6ac5f3d
PA
13205void
13206remote_target::trace_stop ()
35b1e5cc 13207{
b6bb3468
PA
13208 struct remote_state *rs = get_remote_state ();
13209
35b1e5cc 13210 putpkt ("QTStop");
b6bb3468 13211 remote_get_noisy_reply ();
8d64371b 13212 if (rs->buf[0] == '\0')
ad91cd99 13213 error (_("Target does not support this command."));
8d64371b
TT
13214 if (strcmp (rs->buf.data (), "OK") != 0)
13215 error (_("Bogus reply from target: %s"), rs->buf.data ());
35b1e5cc
SS
13216}
13217
f6ac5f3d
PA
13218int
13219remote_target::trace_find (enum trace_find_type type, int num,
13220 CORE_ADDR addr1, CORE_ADDR addr2,
13221 int *tpp)
35b1e5cc
SS
13222{
13223 struct remote_state *rs = get_remote_state ();
8d64371b 13224 char *endbuf = rs->buf.data () + get_remote_packet_size ();
35b1e5cc
SS
13225 char *p, *reply;
13226 int target_frameno = -1, target_tracept = -1;
13227
e6e4e701
PA
13228 /* Lookups other than by absolute frame number depend on the current
13229 trace selected, so make sure it is correct on the remote end
13230 first. */
13231 if (type != tfind_number)
13232 set_remote_traceframe ();
13233
8d64371b 13234 p = rs->buf.data ();
35b1e5cc
SS
13235 strcpy (p, "QTFrame:");
13236 p = strchr (p, '\0');
13237 switch (type)
13238 {
13239 case tfind_number:
bba74b36 13240 xsnprintf (p, endbuf - p, "%x", num);
35b1e5cc
SS
13241 break;
13242 case tfind_pc:
bba74b36 13243 xsnprintf (p, endbuf - p, "pc:%s", phex_nz (addr1, 0));
35b1e5cc
SS
13244 break;
13245 case tfind_tp:
bba74b36 13246 xsnprintf (p, endbuf - p, "tdp:%x", num);
35b1e5cc
SS
13247 break;
13248 case tfind_range:
bba74b36
YQ
13249 xsnprintf (p, endbuf - p, "range:%s:%s", phex_nz (addr1, 0),
13250 phex_nz (addr2, 0));
35b1e5cc
SS
13251 break;
13252 case tfind_outside:
bba74b36
YQ
13253 xsnprintf (p, endbuf - p, "outside:%s:%s", phex_nz (addr1, 0),
13254 phex_nz (addr2, 0));
35b1e5cc
SS
13255 break;
13256 default:
9b20d036 13257 error (_("Unknown trace find type %d"), type);
35b1e5cc
SS
13258 }
13259
13260 putpkt (rs->buf);
b6bb3468 13261 reply = remote_get_noisy_reply ();
ad91cd99
PA
13262 if (*reply == '\0')
13263 error (_("Target does not support this command."));
35b1e5cc
SS
13264
13265 while (reply && *reply)
13266 switch (*reply)
13267 {
13268 case 'F':
f197e0f1
VP
13269 p = ++reply;
13270 target_frameno = (int) strtol (p, &reply, 16);
13271 if (reply == p)
13272 error (_("Unable to parse trace frame number"));
e6e4e701
PA
13273 /* Don't update our remote traceframe number cache on failure
13274 to select a remote traceframe. */
f197e0f1
VP
13275 if (target_frameno == -1)
13276 return -1;
35b1e5cc
SS
13277 break;
13278 case 'T':
f197e0f1
VP
13279 p = ++reply;
13280 target_tracept = (int) strtol (p, &reply, 16);
13281 if (reply == p)
13282 error (_("Unable to parse tracepoint number"));
35b1e5cc
SS
13283 break;
13284 case 'O': /* "OK"? */
13285 if (reply[1] == 'K' && reply[2] == '\0')
13286 reply += 2;
13287 else
13288 error (_("Bogus reply from target: %s"), reply);
13289 break;
13290 default:
13291 error (_("Bogus reply from target: %s"), reply);
13292 }
13293 if (tpp)
13294 *tpp = target_tracept;
e6e4e701 13295
262e1174 13296 rs->remote_traceframe_number = target_frameno;
35b1e5cc
SS
13297 return target_frameno;
13298}
13299
57810aa7 13300bool
f6ac5f3d 13301remote_target::get_trace_state_variable_value (int tsvnum, LONGEST *val)
35b1e5cc
SS
13302{
13303 struct remote_state *rs = get_remote_state ();
13304 char *reply;
13305 ULONGEST uval;
13306
e6e4e701
PA
13307 set_remote_traceframe ();
13308
8d64371b 13309 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTV:%x", tsvnum);
35b1e5cc 13310 putpkt (rs->buf);
b6bb3468 13311 reply = remote_get_noisy_reply ();
35b1e5cc
SS
13312 if (reply && *reply)
13313 {
13314 if (*reply == 'V')
13315 {
13316 unpack_varlen_hex (reply + 1, &uval);
13317 *val = (LONGEST) uval;
57810aa7 13318 return true;
35b1e5cc
SS
13319 }
13320 }
57810aa7 13321 return false;
35b1e5cc
SS
13322}
13323
f6ac5f3d
PA
13324int
13325remote_target::save_trace_data (const char *filename)
00bf0b85
SS
13326{
13327 struct remote_state *rs = get_remote_state ();
13328 char *p, *reply;
13329
8d64371b 13330 p = rs->buf.data ();
00bf0b85
SS
13331 strcpy (p, "QTSave:");
13332 p += strlen (p);
8d64371b
TT
13333 if ((p - rs->buf.data ()) + strlen (filename) * 2
13334 >= get_remote_packet_size ())
00bf0b85 13335 error (_("Remote file name too long for trace save packet"));
9f1b45b0 13336 p += 2 * bin2hex ((gdb_byte *) filename, p, strlen (filename));
00bf0b85
SS
13337 *p++ = '\0';
13338 putpkt (rs->buf);
b6bb3468 13339 reply = remote_get_noisy_reply ();
d6c5869f 13340 if (*reply == '\0')
ad91cd99
PA
13341 error (_("Target does not support this command."));
13342 if (strcmp (reply, "OK") != 0)
13343 error (_("Bogus reply from target: %s"), reply);
00bf0b85
SS
13344 return 0;
13345}
13346
13347/* This is basically a memory transfer, but needs to be its own packet
13348 because we don't know how the target actually organizes its trace
13349 memory, plus we want to be able to ask for as much as possible, but
13350 not be unhappy if we don't get as much as we ask for. */
13351
f6ac5f3d
PA
13352LONGEST
13353remote_target::get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len)
00bf0b85
SS
13354{
13355 struct remote_state *rs = get_remote_state ();
13356 char *reply;
13357 char *p;
13358 int rslt;
13359
8d64371b 13360 p = rs->buf.data ();
00bf0b85
SS
13361 strcpy (p, "qTBuffer:");
13362 p += strlen (p);
13363 p += hexnumstr (p, offset);
13364 *p++ = ',';
13365 p += hexnumstr (p, len);
13366 *p++ = '\0';
13367
13368 putpkt (rs->buf);
b6bb3468 13369 reply = remote_get_noisy_reply ();
00bf0b85
SS
13370 if (reply && *reply)
13371 {
13372 /* 'l' by itself means we're at the end of the buffer and
13373 there is nothing more to get. */
13374 if (*reply == 'l')
13375 return 0;
13376
13377 /* Convert the reply into binary. Limit the number of bytes to
13378 convert according to our passed-in buffer size, rather than
13379 what was returned in the packet; if the target is
13380 unexpectedly generous and gives us a bigger reply than we
13381 asked for, we don't want to crash. */
b6bb3468 13382 rslt = hex2bin (reply, buf, len);
00bf0b85
SS
13383 return rslt;
13384 }
13385
13386 /* Something went wrong, flag as an error. */
13387 return -1;
13388}
13389
f6ac5f3d
PA
13390void
13391remote_target::set_disconnected_tracing (int val)
35b1e5cc
SS
13392{
13393 struct remote_state *rs = get_remote_state ();
13394
4082afcc 13395 if (packet_support (PACKET_DisconnectedTracing_feature) == PACKET_ENABLE)
33da3f1c 13396 {
ad91cd99
PA
13397 char *reply;
13398
8d64371b
TT
13399 xsnprintf (rs->buf.data (), get_remote_packet_size (),
13400 "QTDisconnected:%x", val);
33da3f1c 13401 putpkt (rs->buf);
b6bb3468 13402 reply = remote_get_noisy_reply ();
ad91cd99 13403 if (*reply == '\0')
33da3f1c 13404 error (_("Target does not support this command."));
ad91cd99
PA
13405 if (strcmp (reply, "OK") != 0)
13406 error (_("Bogus reply from target: %s"), reply);
33da3f1c
SS
13407 }
13408 else if (val)
13409 warning (_("Target does not support disconnected tracing."));
35b1e5cc
SS
13410}
13411
f6ac5f3d
PA
13412int
13413remote_target::core_of_thread (ptid_t ptid)
dc146f7c
VP
13414{
13415 struct thread_info *info = find_thread_ptid (ptid);
a744cf53 13416
7aabaf9d
SM
13417 if (info != NULL && info->priv != NULL)
13418 return get_remote_thread_info (info)->core;
13419
dc146f7c
VP
13420 return -1;
13421}
13422
f6ac5f3d
PA
13423void
13424remote_target::set_circular_trace_buffer (int val)
4daf5ac0
SS
13425{
13426 struct remote_state *rs = get_remote_state ();
ad91cd99 13427 char *reply;
4daf5ac0 13428
8d64371b
TT
13429 xsnprintf (rs->buf.data (), get_remote_packet_size (),
13430 "QTBuffer:circular:%x", val);
4daf5ac0 13431 putpkt (rs->buf);
b6bb3468 13432 reply = remote_get_noisy_reply ();
ad91cd99 13433 if (*reply == '\0')
4daf5ac0 13434 error (_("Target does not support this command."));
ad91cd99
PA
13435 if (strcmp (reply, "OK") != 0)
13436 error (_("Bogus reply from target: %s"), reply);
4daf5ac0
SS
13437}
13438
f6ac5f3d
PA
13439traceframe_info_up
13440remote_target::traceframe_info ()
b3b9301e 13441{
9018be22 13442 gdb::optional<gdb::char_vector> text
8b88a78e 13443 = target_read_stralloc (current_top_target (), TARGET_OBJECT_TRACEFRAME_INFO,
b7b030ad 13444 NULL);
9018be22
SM
13445 if (text)
13446 return parse_traceframe_info (text->data ());
b3b9301e
PA
13447
13448 return NULL;
13449}
13450
405f8e94
SS
13451/* Handle the qTMinFTPILen packet. Returns the minimum length of
13452 instruction on which a fast tracepoint may be placed. Returns -1
13453 if the packet is not supported, and 0 if the minimum instruction
13454 length is unknown. */
13455
f6ac5f3d
PA
13456int
13457remote_target::get_min_fast_tracepoint_insn_len ()
405f8e94
SS
13458{
13459 struct remote_state *rs = get_remote_state ();
13460 char *reply;
13461
e886a173
PA
13462 /* If we're not debugging a process yet, the IPA can't be
13463 loaded. */
13464 if (!target_has_execution)
13465 return 0;
13466
13467 /* Make sure the remote is pointing at the right process. */
13468 set_general_process ();
13469
8d64371b 13470 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTMinFTPILen");
405f8e94 13471 putpkt (rs->buf);
b6bb3468 13472 reply = remote_get_noisy_reply ();
405f8e94
SS
13473 if (*reply == '\0')
13474 return -1;
13475 else
13476 {
13477 ULONGEST min_insn_len;
13478
13479 unpack_varlen_hex (reply, &min_insn_len);
13480
13481 return (int) min_insn_len;
13482 }
13483}
13484
f6ac5f3d
PA
13485void
13486remote_target::set_trace_buffer_size (LONGEST val)
f6f899bf 13487{
4082afcc 13488 if (packet_support (PACKET_QTBuffer_size) != PACKET_DISABLE)
f6f899bf
HAQ
13489 {
13490 struct remote_state *rs = get_remote_state ();
8d64371b
TT
13491 char *buf = rs->buf.data ();
13492 char *endbuf = buf + get_remote_packet_size ();
f6f899bf
HAQ
13493 enum packet_result result;
13494
13495 gdb_assert (val >= 0 || val == -1);
13496 buf += xsnprintf (buf, endbuf - buf, "QTBuffer:size:");
13497 /* Send -1 as literal "-1" to avoid host size dependency. */
13498 if (val < 0)
13499 {
13500 *buf++ = '-';
13501 buf += hexnumstr (buf, (ULONGEST) -val);
13502 }
13503 else
13504 buf += hexnumstr (buf, (ULONGEST) val);
13505
13506 putpkt (rs->buf);
b6bb3468 13507 remote_get_noisy_reply ();
f6f899bf
HAQ
13508 result = packet_ok (rs->buf,
13509 &remote_protocol_packets[PACKET_QTBuffer_size]);
13510
13511 if (result != PACKET_OK)
8d64371b 13512 warning (_("Bogus reply from target: %s"), rs->buf.data ());
f6f899bf
HAQ
13513 }
13514}
13515
57810aa7 13516bool
f6ac5f3d
PA
13517remote_target::set_trace_notes (const char *user, const char *notes,
13518 const char *stop_notes)
f196051f
SS
13519{
13520 struct remote_state *rs = get_remote_state ();
13521 char *reply;
8d64371b
TT
13522 char *buf = rs->buf.data ();
13523 char *endbuf = buf + get_remote_packet_size ();
f196051f
SS
13524 int nbytes;
13525
13526 buf += xsnprintf (buf, endbuf - buf, "QTNotes:");
13527 if (user)
13528 {
13529 buf += xsnprintf (buf, endbuf - buf, "user:");
9f1b45b0 13530 nbytes = bin2hex ((gdb_byte *) user, buf, strlen (user));
f196051f
SS
13531 buf += 2 * nbytes;
13532 *buf++ = ';';
13533 }
13534 if (notes)
13535 {
13536 buf += xsnprintf (buf, endbuf - buf, "notes:");
9f1b45b0 13537 nbytes = bin2hex ((gdb_byte *) notes, buf, strlen (notes));
f196051f
SS
13538 buf += 2 * nbytes;
13539 *buf++ = ';';
13540 }
13541 if (stop_notes)
13542 {
13543 buf += xsnprintf (buf, endbuf - buf, "tstop:");
9f1b45b0 13544 nbytes = bin2hex ((gdb_byte *) stop_notes, buf, strlen (stop_notes));
f196051f
SS
13545 buf += 2 * nbytes;
13546 *buf++ = ';';
13547 }
13548 /* Ensure the buffer is terminated. */
13549 *buf = '\0';
13550
13551 putpkt (rs->buf);
b6bb3468 13552 reply = remote_get_noisy_reply ();
f196051f 13553 if (*reply == '\0')
57810aa7 13554 return false;
f196051f
SS
13555
13556 if (strcmp (reply, "OK") != 0)
13557 error (_("Bogus reply from target: %s"), reply);
13558
57810aa7 13559 return true;
f196051f
SS
13560}
13561
57810aa7
PA
13562bool
13563remote_target::use_agent (bool use)
d1feda86 13564{
4082afcc 13565 if (packet_support (PACKET_QAgent) != PACKET_DISABLE)
d1feda86
YQ
13566 {
13567 struct remote_state *rs = get_remote_state ();
13568
13569 /* If the stub supports QAgent. */
8d64371b 13570 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QAgent:%d", use);
d1feda86 13571 putpkt (rs->buf);
8d64371b 13572 getpkt (&rs->buf, 0);
d1feda86 13573
8d64371b 13574 if (strcmp (rs->buf.data (), "OK") == 0)
d1feda86 13575 {
f6ac5f3d 13576 ::use_agent = use;
57810aa7 13577 return true;
d1feda86
YQ
13578 }
13579 }
13580
57810aa7 13581 return false;
d1feda86
YQ
13582}
13583
57810aa7 13584bool
f6ac5f3d 13585remote_target::can_use_agent ()
d1feda86 13586{
4082afcc 13587 return (packet_support (PACKET_QAgent) != PACKET_DISABLE);
d1feda86
YQ
13588}
13589
9accd112
MM
13590struct btrace_target_info
13591{
13592 /* The ptid of the traced thread. */
13593 ptid_t ptid;
f4abbc16
MM
13594
13595 /* The obtained branch trace configuration. */
13596 struct btrace_config conf;
9accd112
MM
13597};
13598
f4abbc16
MM
13599/* Reset our idea of our target's btrace configuration. */
13600
13601static void
6b8edb51 13602remote_btrace_reset (remote_state *rs)
f4abbc16 13603{
f4abbc16
MM
13604 memset (&rs->btrace_config, 0, sizeof (rs->btrace_config));
13605}
13606
f4abbc16
MM
13607/* Synchronize the configuration with the target. */
13608
6b8edb51
PA
13609void
13610remote_target::btrace_sync_conf (const btrace_config *conf)
f4abbc16 13611{
d33501a5
MM
13612 struct packet_config *packet;
13613 struct remote_state *rs;
13614 char *buf, *pos, *endbuf;
13615
13616 rs = get_remote_state ();
8d64371b 13617 buf = rs->buf.data ();
d33501a5
MM
13618 endbuf = buf + get_remote_packet_size ();
13619
13620 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_bts_size];
13621 if (packet_config_support (packet) == PACKET_ENABLE
13622 && conf->bts.size != rs->btrace_config.bts.size)
13623 {
13624 pos = buf;
13625 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13626 conf->bts.size);
13627
13628 putpkt (buf);
8d64371b 13629 getpkt (&rs->buf, 0);
d33501a5
MM
13630
13631 if (packet_ok (buf, packet) == PACKET_ERROR)
13632 {
13633 if (buf[0] == 'E' && buf[1] == '.')
13634 error (_("Failed to configure the BTS buffer size: %s"), buf + 2);
13635 else
13636 error (_("Failed to configure the BTS buffer size."));
13637 }
13638
13639 rs->btrace_config.bts.size = conf->bts.size;
13640 }
b20a6524
MM
13641
13642 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_pt_size];
13643 if (packet_config_support (packet) == PACKET_ENABLE
13644 && conf->pt.size != rs->btrace_config.pt.size)
13645 {
13646 pos = buf;
13647 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13648 conf->pt.size);
13649
13650 putpkt (buf);
8d64371b 13651 getpkt (&rs->buf, 0);
b20a6524
MM
13652
13653 if (packet_ok (buf, packet) == PACKET_ERROR)
13654 {
13655 if (buf[0] == 'E' && buf[1] == '.')
13656 error (_("Failed to configure the trace buffer size: %s"), buf + 2);
13657 else
13658 error (_("Failed to configure the trace buffer size."));
13659 }
13660
13661 rs->btrace_config.pt.size = conf->pt.size;
13662 }
f4abbc16
MM
13663}
13664
13665/* Read the current thread's btrace configuration from the target and
13666 store it into CONF. */
13667
13668static void
13669btrace_read_config (struct btrace_config *conf)
13670{
9018be22 13671 gdb::optional<gdb::char_vector> xml
8b88a78e 13672 = target_read_stralloc (current_top_target (), TARGET_OBJECT_BTRACE_CONF, "");
9018be22
SM
13673 if (xml)
13674 parse_xml_btrace_conf (conf, xml->data ());
f4abbc16
MM
13675}
13676
c0272db5
TW
13677/* Maybe reopen target btrace. */
13678
6b8edb51
PA
13679void
13680remote_target::remote_btrace_maybe_reopen ()
c0272db5
TW
13681{
13682 struct remote_state *rs = get_remote_state ();
c0272db5 13683 int btrace_target_pushed = 0;
15766370 13684#if !defined (HAVE_LIBIPT)
c0272db5 13685 int warned = 0;
15766370 13686#endif
c0272db5 13687
aedbe3bb
CM
13688 /* Don't bother walking the entirety of the remote thread list when
13689 we know the feature isn't supported by the remote. */
13690 if (packet_support (PACKET_qXfer_btrace_conf) != PACKET_ENABLE)
13691 return;
13692
5ed8105e
PA
13693 scoped_restore_current_thread restore_thread;
13694
08036331 13695 for (thread_info *tp : all_non_exited_threads ())
c0272db5
TW
13696 {
13697 set_general_thread (tp->ptid);
13698
13699 memset (&rs->btrace_config, 0x00, sizeof (struct btrace_config));
13700 btrace_read_config (&rs->btrace_config);
13701
13702 if (rs->btrace_config.format == BTRACE_FORMAT_NONE)
13703 continue;
13704
13705#if !defined (HAVE_LIBIPT)
13706 if (rs->btrace_config.format == BTRACE_FORMAT_PT)
13707 {
13708 if (!warned)
13709 {
13710 warned = 1;
c4e12631
MM
13711 warning (_("Target is recording using Intel Processor Trace "
13712 "but support was disabled at compile time."));
c0272db5
TW
13713 }
13714
13715 continue;
13716 }
13717#endif /* !defined (HAVE_LIBIPT) */
13718
13719 /* Push target, once, but before anything else happens. This way our
13720 changes to the threads will be cleaned up by unpushing the target
13721 in case btrace_read_config () throws. */
13722 if (!btrace_target_pushed)
13723 {
13724 btrace_target_pushed = 1;
13725 record_btrace_push_target ();
13726 printf_filtered (_("Target is recording using %s.\n"),
13727 btrace_format_string (rs->btrace_config.format));
13728 }
13729
13730 tp->btrace.target = XCNEW (struct btrace_target_info);
13731 tp->btrace.target->ptid = tp->ptid;
13732 tp->btrace.target->conf = rs->btrace_config;
13733 }
c0272db5
TW
13734}
13735
9accd112
MM
13736/* Enable branch tracing. */
13737
f6ac5f3d
PA
13738struct btrace_target_info *
13739remote_target::enable_btrace (ptid_t ptid, const struct btrace_config *conf)
9accd112
MM
13740{
13741 struct btrace_target_info *tinfo = NULL;
b20a6524 13742 struct packet_config *packet = NULL;
9accd112 13743 struct remote_state *rs = get_remote_state ();
8d64371b
TT
13744 char *buf = rs->buf.data ();
13745 char *endbuf = buf + get_remote_packet_size ();
9accd112 13746
b20a6524
MM
13747 switch (conf->format)
13748 {
13749 case BTRACE_FORMAT_BTS:
13750 packet = &remote_protocol_packets[PACKET_Qbtrace_bts];
13751 break;
13752
13753 case BTRACE_FORMAT_PT:
13754 packet = &remote_protocol_packets[PACKET_Qbtrace_pt];
13755 break;
13756 }
13757
13758 if (packet == NULL || packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13759 error (_("Target does not support branch tracing."));
13760
f4abbc16
MM
13761 btrace_sync_conf (conf);
13762
9accd112
MM
13763 set_general_thread (ptid);
13764
13765 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
13766 putpkt (rs->buf);
8d64371b 13767 getpkt (&rs->buf, 0);
9accd112
MM
13768
13769 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
13770 {
13771 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
13772 error (_("Could not enable branch tracing for %s: %s"),
a068643d 13773 target_pid_to_str (ptid).c_str (), &rs->buf[2]);
9accd112
MM
13774 else
13775 error (_("Could not enable branch tracing for %s."),
a068643d 13776 target_pid_to_str (ptid).c_str ());
9accd112
MM
13777 }
13778
8d749320 13779 tinfo = XCNEW (struct btrace_target_info);
9accd112
MM
13780 tinfo->ptid = ptid;
13781
f4abbc16
MM
13782 /* If we fail to read the configuration, we lose some information, but the
13783 tracing itself is not impacted. */
a70b8144 13784 try
492d29ea
PA
13785 {
13786 btrace_read_config (&tinfo->conf);
13787 }
230d2906 13788 catch (const gdb_exception_error &err)
492d29ea
PA
13789 {
13790 if (err.message != NULL)
3d6e9d23 13791 warning ("%s", err.what ());
492d29ea 13792 }
f4abbc16 13793
9accd112
MM
13794 return tinfo;
13795}
13796
13797/* Disable branch tracing. */
13798
f6ac5f3d
PA
13799void
13800remote_target::disable_btrace (struct btrace_target_info *tinfo)
9accd112
MM
13801{
13802 struct packet_config *packet = &remote_protocol_packets[PACKET_Qbtrace_off];
13803 struct remote_state *rs = get_remote_state ();
8d64371b
TT
13804 char *buf = rs->buf.data ();
13805 char *endbuf = buf + get_remote_packet_size ();
9accd112 13806
4082afcc 13807 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13808 error (_("Target does not support branch tracing."));
13809
13810 set_general_thread (tinfo->ptid);
13811
13812 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
13813 putpkt (rs->buf);
8d64371b 13814 getpkt (&rs->buf, 0);
9accd112
MM
13815
13816 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
13817 {
13818 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
13819 error (_("Could not disable branch tracing for %s: %s"),
a068643d 13820 target_pid_to_str (tinfo->ptid).c_str (), &rs->buf[2]);
9accd112
MM
13821 else
13822 error (_("Could not disable branch tracing for %s."),
a068643d 13823 target_pid_to_str (tinfo->ptid).c_str ());
9accd112
MM
13824 }
13825
13826 xfree (tinfo);
13827}
13828
13829/* Teardown branch tracing. */
13830
f6ac5f3d
PA
13831void
13832remote_target::teardown_btrace (struct btrace_target_info *tinfo)
9accd112
MM
13833{
13834 /* We must not talk to the target during teardown. */
13835 xfree (tinfo);
13836}
13837
13838/* Read the branch trace. */
13839
f6ac5f3d
PA
13840enum btrace_error
13841remote_target::read_btrace (struct btrace_data *btrace,
13842 struct btrace_target_info *tinfo,
13843 enum btrace_read_type type)
9accd112
MM
13844{
13845 struct packet_config *packet = &remote_protocol_packets[PACKET_qXfer_btrace];
9accd112 13846 const char *annex;
9accd112 13847
4082afcc 13848 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13849 error (_("Target does not support branch tracing."));
13850
13851#if !defined(HAVE_LIBEXPAT)
13852 error (_("Cannot process branch tracing result. XML parsing not supported."));
13853#endif
13854
13855 switch (type)
13856 {
864089d2 13857 case BTRACE_READ_ALL:
9accd112
MM
13858 annex = "all";
13859 break;
864089d2 13860 case BTRACE_READ_NEW:
9accd112
MM
13861 annex = "new";
13862 break;
969c39fb
MM
13863 case BTRACE_READ_DELTA:
13864 annex = "delta";
13865 break;
9accd112
MM
13866 default:
13867 internal_error (__FILE__, __LINE__,
13868 _("Bad branch tracing read type: %u."),
13869 (unsigned int) type);
13870 }
13871
9018be22 13872 gdb::optional<gdb::char_vector> xml
8b88a78e 13873 = target_read_stralloc (current_top_target (), TARGET_OBJECT_BTRACE, annex);
9018be22 13874 if (!xml)
969c39fb 13875 return BTRACE_ERR_UNKNOWN;
9accd112 13876
9018be22 13877 parse_xml_btrace (btrace, xml->data ());
9accd112 13878
969c39fb 13879 return BTRACE_ERR_NONE;
9accd112
MM
13880}
13881
f6ac5f3d
PA
13882const struct btrace_config *
13883remote_target::btrace_conf (const struct btrace_target_info *tinfo)
f4abbc16
MM
13884{
13885 return &tinfo->conf;
13886}
13887
57810aa7 13888bool
f6ac5f3d 13889remote_target::augmented_libraries_svr4_read ()
ced63ec0 13890{
4082afcc
PA
13891 return (packet_support (PACKET_augmented_libraries_svr4_read_feature)
13892 == PACKET_ENABLE);
ced63ec0
GB
13893}
13894
9dd130a0
TT
13895/* Implementation of to_load. */
13896
f6ac5f3d
PA
13897void
13898remote_target::load (const char *name, int from_tty)
9dd130a0
TT
13899{
13900 generic_load (name, from_tty);
13901}
13902
c78fa86a
GB
13903/* Accepts an integer PID; returns a string representing a file that
13904 can be opened on the remote side to get the symbols for the child
13905 process. Returns NULL if the operation is not supported. */
13906
f6ac5f3d
PA
13907char *
13908remote_target::pid_to_exec_file (int pid)
c78fa86a 13909{
9018be22 13910 static gdb::optional<gdb::char_vector> filename;
835205d0
GB
13911 struct inferior *inf;
13912 char *annex = NULL;
c78fa86a
GB
13913
13914 if (packet_support (PACKET_qXfer_exec_file) != PACKET_ENABLE)
13915 return NULL;
13916
835205d0
GB
13917 inf = find_inferior_pid (pid);
13918 if (inf == NULL)
13919 internal_error (__FILE__, __LINE__,
13920 _("not currently attached to process %d"), pid);
13921
13922 if (!inf->fake_pid_p)
13923 {
13924 const int annex_size = 9;
13925
224c3ddb 13926 annex = (char *) alloca (annex_size);
835205d0
GB
13927 xsnprintf (annex, annex_size, "%x", pid);
13928 }
13929
8b88a78e 13930 filename = target_read_stralloc (current_top_target (),
c78fa86a
GB
13931 TARGET_OBJECT_EXEC_FILE, annex);
13932
9018be22 13933 return filename ? filename->data () : nullptr;
c78fa86a
GB
13934}
13935
750ce8d1
YQ
13936/* Implement the to_can_do_single_step target_ops method. */
13937
f6ac5f3d
PA
13938int
13939remote_target::can_do_single_step ()
750ce8d1
YQ
13940{
13941 /* We can only tell whether target supports single step or not by
13942 supported s and S vCont actions if the stub supports vContSupported
13943 feature. If the stub doesn't support vContSupported feature,
13944 we have conservatively to think target doesn't supports single
13945 step. */
13946 if (packet_support (PACKET_vContSupported) == PACKET_ENABLE)
13947 {
13948 struct remote_state *rs = get_remote_state ();
13949
13950 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6b8edb51 13951 remote_vcont_probe ();
750ce8d1
YQ
13952
13953 return rs->supports_vCont.s && rs->supports_vCont.S;
13954 }
13955 else
13956 return 0;
13957}
13958
3a00c802
PA
13959/* Implementation of the to_execution_direction method for the remote
13960 target. */
13961
f6ac5f3d
PA
13962enum exec_direction_kind
13963remote_target::execution_direction ()
3a00c802
PA
13964{
13965 struct remote_state *rs = get_remote_state ();
13966
13967 return rs->last_resume_exec_dir;
13968}
13969
f6327dcb
KB
13970/* Return pointer to the thread_info struct which corresponds to
13971 THREAD_HANDLE (having length HANDLE_LEN). */
13972
f6ac5f3d
PA
13973thread_info *
13974remote_target::thread_handle_to_thread_info (const gdb_byte *thread_handle,
13975 int handle_len,
13976 inferior *inf)
f6327dcb 13977{
08036331 13978 for (thread_info *tp : all_non_exited_threads ())
f6327dcb 13979 {
7aabaf9d 13980 remote_thread_info *priv = get_remote_thread_info (tp);
f6327dcb
KB
13981
13982 if (tp->inf == inf && priv != NULL)
13983 {
7aabaf9d 13984 if (handle_len != priv->thread_handle.size ())
f6327dcb 13985 error (_("Thread handle size mismatch: %d vs %zu (from remote)"),
7aabaf9d
SM
13986 handle_len, priv->thread_handle.size ());
13987 if (memcmp (thread_handle, priv->thread_handle.data (),
f6327dcb
KB
13988 handle_len) == 0)
13989 return tp;
13990 }
13991 }
13992
13993 return NULL;
13994}
13995
3d6c6204
KB
13996gdb::byte_vector
13997remote_target::thread_info_to_thread_handle (struct thread_info *tp)
13998{
13999 remote_thread_info *priv = get_remote_thread_info (tp);
14000 return priv->thread_handle;
14001}
14002
57810aa7 14003bool
f6ac5f3d 14004remote_target::can_async_p ()
6426a772 14005{
5d93a237
TT
14006 struct remote_state *rs = get_remote_state ();
14007
3015c064
SM
14008 /* We don't go async if the user has explicitly prevented it with the
14009 "maint set target-async" command. */
c6ebd6cf 14010 if (!target_async_permitted)
57810aa7 14011 return false;
75c99385 14012
23860348 14013 /* We're async whenever the serial device is. */
5d93a237 14014 return serial_can_async_p (rs->remote_desc);
6426a772
JM
14015}
14016
57810aa7 14017bool
f6ac5f3d 14018remote_target::is_async_p ()
6426a772 14019{
5d93a237
TT
14020 struct remote_state *rs = get_remote_state ();
14021
c6ebd6cf 14022 if (!target_async_permitted)
75c99385 14023 /* We only enable async when the user specifically asks for it. */
57810aa7 14024 return false;
75c99385 14025
23860348 14026 /* We're async whenever the serial device is. */
5d93a237 14027 return serial_is_async_p (rs->remote_desc);
6426a772
JM
14028}
14029
2acceee2
JM
14030/* Pass the SERIAL event on and up to the client. One day this code
14031 will be able to delay notifying the client of an event until the
23860348 14032 point where an entire packet has been received. */
2acceee2 14033
2acceee2
JM
14034static serial_event_ftype remote_async_serial_handler;
14035
6426a772 14036static void
819cc324 14037remote_async_serial_handler (struct serial *scb, void *context)
6426a772 14038{
2acceee2
JM
14039 /* Don't propogate error information up to the client. Instead let
14040 the client find out about the error by querying the target. */
6a3753b3 14041 inferior_event_handler (INF_REG_EVENT, NULL);
2acceee2
JM
14042}
14043
74531fed
PA
14044static void
14045remote_async_inferior_event_handler (gdb_client_data data)
14046{
6b8edb51 14047 inferior_event_handler (INF_REG_EVENT, data);
74531fed
PA
14048}
14049
f6ac5f3d
PA
14050void
14051remote_target::async (int enable)
2acceee2 14052{
5d93a237
TT
14053 struct remote_state *rs = get_remote_state ();
14054
6a3753b3 14055 if (enable)
2acceee2 14056 {
88b496c3 14057 serial_async (rs->remote_desc, remote_async_serial_handler, rs);
b7d2e916
PA
14058
14059 /* If there are pending events in the stop reply queue tell the
14060 event loop to process them. */
953edf2b 14061 if (!rs->stop_reply_queue.empty ())
6b8edb51 14062 mark_async_event_handler (rs->remote_async_inferior_event_token);
6efcd9a8
PA
14063 /* For simplicity, below we clear the pending events token
14064 without remembering whether it is marked, so here we always
14065 mark it. If there's actually no pending notification to
14066 process, this ends up being a no-op (other than a spurious
14067 event-loop wakeup). */
14068 if (target_is_non_stop_p ())
14069 mark_async_event_handler (rs->notif_state->get_pending_events_token);
2acceee2
JM
14070 }
14071 else
b7d2e916
PA
14072 {
14073 serial_async (rs->remote_desc, NULL, NULL);
6efcd9a8
PA
14074 /* If the core is disabling async, it doesn't want to be
14075 disturbed with target events. Clear all async event sources
14076 too. */
6b8edb51 14077 clear_async_event_handler (rs->remote_async_inferior_event_token);
6efcd9a8
PA
14078 if (target_is_non_stop_p ())
14079 clear_async_event_handler (rs->notif_state->get_pending_events_token);
b7d2e916 14080 }
6426a772
JM
14081}
14082
65706a29
PA
14083/* Implementation of the to_thread_events method. */
14084
f6ac5f3d
PA
14085void
14086remote_target::thread_events (int enable)
65706a29
PA
14087{
14088 struct remote_state *rs = get_remote_state ();
14089 size_t size = get_remote_packet_size ();
65706a29
PA
14090
14091 if (packet_support (PACKET_QThreadEvents) == PACKET_DISABLE)
14092 return;
14093
8d64371b 14094 xsnprintf (rs->buf.data (), size, "QThreadEvents:%x", enable ? 1 : 0);
65706a29 14095 putpkt (rs->buf);
8d64371b 14096 getpkt (&rs->buf, 0);
65706a29
PA
14097
14098 switch (packet_ok (rs->buf,
14099 &remote_protocol_packets[PACKET_QThreadEvents]))
14100 {
14101 case PACKET_OK:
8d64371b
TT
14102 if (strcmp (rs->buf.data (), "OK") != 0)
14103 error (_("Remote refused setting thread events: %s"), rs->buf.data ());
65706a29
PA
14104 break;
14105 case PACKET_ERROR:
8d64371b 14106 warning (_("Remote failure reply: %s"), rs->buf.data ());
65706a29
PA
14107 break;
14108 case PACKET_UNKNOWN:
14109 break;
14110 }
14111}
14112
5a2468f5 14113static void
981a3fb3 14114set_remote_cmd (const char *args, int from_tty)
5a2468f5 14115{
635c7e8a 14116 help_list (remote_set_cmdlist, "set remote ", all_commands, gdb_stdout);
5a2468f5
JM
14117}
14118
d471ea57 14119static void
981a3fb3 14120show_remote_cmd (const char *args, int from_tty)
d471ea57 14121{
37a105a1 14122 /* We can't just use cmd_show_list here, because we want to skip
427c3a89 14123 the redundant "show remote Z-packet" and the legacy aliases. */
37a105a1 14124 struct cmd_list_element *list = remote_show_cmdlist;
79a45e25 14125 struct ui_out *uiout = current_uiout;
37a105a1 14126
2e783024 14127 ui_out_emit_tuple tuple_emitter (uiout, "showlist");
37a105a1
DJ
14128 for (; list != NULL; list = list->next)
14129 if (strcmp (list->name, "Z-packet") == 0)
14130 continue;
427c3a89
DJ
14131 else if (list->type == not_set_cmd)
14132 /* Alias commands are exactly like the original, except they
14133 don't have the normal type. */
14134 continue;
14135 else
37a105a1 14136 {
2e783024 14137 ui_out_emit_tuple option_emitter (uiout, "option");
a744cf53 14138
112e8700
SM
14139 uiout->field_string ("name", list->name);
14140 uiout->text (": ");
427c3a89 14141 if (list->type == show_cmd)
f5c4fcd9 14142 do_show_command (NULL, from_tty, list);
427c3a89
DJ
14143 else
14144 cmd_func (list, NULL, from_tty);
37a105a1 14145 }
d471ea57 14146}
5a2468f5 14147
0f71a2f6 14148
23860348 14149/* Function to be called whenever a new objfile (shlib) is detected. */
dc8acb97
MS
14150static void
14151remote_new_objfile (struct objfile *objfile)
14152{
6b8edb51 14153 remote_target *remote = get_current_remote_target ();
5d93a237 14154
6b8edb51
PA
14155 if (remote != NULL) /* Have a remote connection. */
14156 remote->remote_check_symbols ();
dc8acb97
MS
14157}
14158
00bf0b85
SS
14159/* Pull all the tracepoints defined on the target and create local
14160 data structures representing them. We don't want to create real
14161 tracepoints yet, we don't want to mess up the user's existing
14162 collection. */
14163
f6ac5f3d
PA
14164int
14165remote_target::upload_tracepoints (struct uploaded_tp **utpp)
d5551862 14166{
00bf0b85
SS
14167 struct remote_state *rs = get_remote_state ();
14168 char *p;
d5551862 14169
00bf0b85
SS
14170 /* Ask for a first packet of tracepoint definition. */
14171 putpkt ("qTfP");
8d64371b
TT
14172 getpkt (&rs->buf, 0);
14173 p = rs->buf.data ();
00bf0b85 14174 while (*p && *p != 'l')
d5551862 14175 {
00bf0b85
SS
14176 parse_tracepoint_definition (p, utpp);
14177 /* Ask for another packet of tracepoint definition. */
14178 putpkt ("qTsP");
8d64371b
TT
14179 getpkt (&rs->buf, 0);
14180 p = rs->buf.data ();
d5551862 14181 }
00bf0b85 14182 return 0;
d5551862
SS
14183}
14184
f6ac5f3d
PA
14185int
14186remote_target::upload_trace_state_variables (struct uploaded_tsv **utsvp)
d5551862 14187{
00bf0b85 14188 struct remote_state *rs = get_remote_state ();
d5551862 14189 char *p;
d5551862 14190
00bf0b85
SS
14191 /* Ask for a first packet of variable definition. */
14192 putpkt ("qTfV");
8d64371b
TT
14193 getpkt (&rs->buf, 0);
14194 p = rs->buf.data ();
00bf0b85 14195 while (*p && *p != 'l')
d5551862 14196 {
00bf0b85
SS
14197 parse_tsv_definition (p, utsvp);
14198 /* Ask for another packet of variable definition. */
14199 putpkt ("qTsV");
8d64371b
TT
14200 getpkt (&rs->buf, 0);
14201 p = rs->buf.data ();
d5551862 14202 }
00bf0b85 14203 return 0;
d5551862
SS
14204}
14205
c1e36e3e
PA
14206/* The "set/show range-stepping" show hook. */
14207
14208static void
14209show_range_stepping (struct ui_file *file, int from_tty,
14210 struct cmd_list_element *c,
14211 const char *value)
14212{
14213 fprintf_filtered (file,
14214 _("Debugger's willingness to use range stepping "
14215 "is %s.\n"), value);
14216}
14217
6b8edb51
PA
14218/* Return true if the vCont;r action is supported by the remote
14219 stub. */
14220
14221bool
14222remote_target::vcont_r_supported ()
14223{
14224 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
14225 remote_vcont_probe ();
14226
14227 return (packet_support (PACKET_vCont) == PACKET_ENABLE
14228 && get_remote_state ()->supports_vCont.r);
14229}
14230
c1e36e3e
PA
14231/* The "set/show range-stepping" set hook. */
14232
14233static void
eb4c3f4a 14234set_range_stepping (const char *ignore_args, int from_tty,
c1e36e3e
PA
14235 struct cmd_list_element *c)
14236{
6b8edb51
PA
14237 /* When enabling, check whether range stepping is actually supported
14238 by the target, and warn if not. */
c1e36e3e
PA
14239 if (use_range_stepping)
14240 {
6b8edb51
PA
14241 remote_target *remote = get_current_remote_target ();
14242 if (remote == NULL
14243 || !remote->vcont_r_supported ())
14244 warning (_("Range stepping is not supported by the current target"));
c1e36e3e
PA
14245 }
14246}
14247
c906108c 14248void
fba45db2 14249_initialize_remote (void)
c906108c 14250{
9a7071a8 14251 struct cmd_list_element *cmd;
6f937416 14252 const char *cmd_name;
ea9c271d 14253
0f71a2f6 14254 /* architecture specific data */
29709017
DJ
14255 remote_g_packet_data_handle =
14256 gdbarch_data_register_pre_init (remote_g_packet_data_init);
d01949b6 14257
d9f719f1
PA
14258 add_target (remote_target_info, remote_target::open);
14259 add_target (extended_remote_target_info, extended_remote_target::open);
cce74817 14260
dc8acb97 14261 /* Hook into new objfile notification. */
76727919 14262 gdb::observers::new_objfile.attach (remote_new_objfile);
dc8acb97 14263
c906108c
SS
14264#if 0
14265 init_remote_threadtests ();
14266#endif
14267
23860348 14268 /* set/show remote ... */
d471ea57 14269
1bedd215 14270 add_prefix_cmd ("remote", class_maintenance, set_remote_cmd, _("\
590042fc 14271Remote protocol specific variables.\n\
5a2468f5 14272Configure various remote-protocol specific variables such as\n\
590042fc 14273the packets being used."),
cff3e48b 14274 &remote_set_cmdlist, "set remote ",
23860348 14275 0 /* allow-unknown */, &setlist);
1bedd215 14276 add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
590042fc 14277Remote protocol specific variables.\n\
5a2468f5 14278Configure various remote-protocol specific variables such as\n\
590042fc 14279the packets being used."),
cff3e48b 14280 &remote_show_cmdlist, "show remote ",
23860348 14281 0 /* allow-unknown */, &showlist);
5a2468f5 14282
1a966eab
AC
14283 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
14284Compare section data on target to the exec file.\n\
95cf3b38
DT
14285Argument is a single section name (default: all loaded sections).\n\
14286To compare only read-only loaded sections, specify the -r option."),
c906108c
SS
14287 &cmdlist);
14288
1a966eab
AC
14289 add_cmd ("packet", class_maintenance, packet_command, _("\
14290Send an arbitrary packet to a remote target.\n\
c906108c
SS
14291 maintenance packet TEXT\n\
14292If GDB is talking to an inferior via the GDB serial protocol, then\n\
14293this command sends the string TEXT to the inferior, and displays the\n\
14294response packet. GDB supplies the initial `$' character, and the\n\
1a966eab 14295terminating `#' character and checksum."),
c906108c
SS
14296 &maintenancelist);
14297
7915a72c
AC
14298 add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
14299Set whether to send break if interrupted."), _("\
14300Show whether to send break if interrupted."), _("\
14301If set, a break, instead of a cntrl-c, is sent to the remote target."),
9a7071a8 14302 set_remotebreak, show_remotebreak,
e707bbc2 14303 &setlist, &showlist);
9a7071a8
JB
14304 cmd_name = "remotebreak";
14305 cmd = lookup_cmd (&cmd_name, setlist, "", -1, 1);
14306 deprecate_cmd (cmd, "set remote interrupt-sequence");
14307 cmd_name = "remotebreak"; /* needed because lookup_cmd updates the pointer */
14308 cmd = lookup_cmd (&cmd_name, showlist, "", -1, 1);
14309 deprecate_cmd (cmd, "show remote interrupt-sequence");
14310
14311 add_setshow_enum_cmd ("interrupt-sequence", class_support,
3e43a32a
MS
14312 interrupt_sequence_modes, &interrupt_sequence_mode,
14313 _("\
9a7071a8
JB
14314Set interrupt sequence to remote target."), _("\
14315Show interrupt sequence to remote target."), _("\
14316Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."),
14317 NULL, show_interrupt_sequence,
14318 &remote_set_cmdlist,
14319 &remote_show_cmdlist);
14320
14321 add_setshow_boolean_cmd ("interrupt-on-connect", class_support,
14322 &interrupt_on_connect, _("\
590042fc
PW
14323Set whether interrupt-sequence is sent to remote target when gdb connects to."), _("\
14324Show whether interrupt-sequence is sent to remote target when gdb connects to."), _("\
9a7071a8
JB
14325If set, interrupt sequence is sent to remote target."),
14326 NULL, NULL,
14327 &remote_set_cmdlist, &remote_show_cmdlist);
c906108c 14328
23860348 14329 /* Install commands for configuring memory read/write packets. */
11cf8741 14330
1a966eab
AC
14331 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
14332Set the maximum number of bytes per memory write packet (deprecated)."),
11cf8741 14333 &setlist);
1a966eab
AC
14334 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
14335Show the maximum number of bytes per memory write packet (deprecated)."),
11cf8741
JM
14336 &showlist);
14337 add_cmd ("memory-write-packet-size", no_class,
1a966eab
AC
14338 set_memory_write_packet_size, _("\
14339Set the maximum number of bytes per memory-write packet.\n\
14340Specify the number of bytes in a packet or 0 (zero) for the\n\
14341default packet size. The actual limit is further reduced\n\
14342dependent on the target. Specify ``fixed'' to disable the\n\
14343further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
14344 &remote_set_cmdlist);
14345 add_cmd ("memory-read-packet-size", no_class,
1a966eab
AC
14346 set_memory_read_packet_size, _("\
14347Set the maximum number of bytes per memory-read packet.\n\
14348Specify the number of bytes in a packet or 0 (zero) for the\n\
14349default packet size. The actual limit is further reduced\n\
14350dependent on the target. Specify ``fixed'' to disable the\n\
14351further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
14352 &remote_set_cmdlist);
14353 add_cmd ("memory-write-packet-size", no_class,
14354 show_memory_write_packet_size,
1a966eab 14355 _("Show the maximum number of bytes per memory-write packet."),
11cf8741
JM
14356 &remote_show_cmdlist);
14357 add_cmd ("memory-read-packet-size", no_class,
14358 show_memory_read_packet_size,
1a966eab 14359 _("Show the maximum number of bytes per memory-read packet."),
11cf8741 14360 &remote_show_cmdlist);
c906108c 14361
055303e2 14362 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-limit", no_class,
7915a72c
AC
14363 &remote_hw_watchpoint_limit, _("\
14364Set the maximum number of target hardware watchpoints."), _("\
14365Show the maximum number of target hardware watchpoints."), _("\
055303e2
AB
14366Specify \"unlimited\" for unlimited hardware watchpoints."),
14367 NULL, show_hardware_watchpoint_limit,
14368 &remote_set_cmdlist,
14369 &remote_show_cmdlist);
14370 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-length-limit",
14371 no_class,
480a3f21
PW
14372 &remote_hw_watchpoint_length_limit, _("\
14373Set the maximum length (in bytes) of a target hardware watchpoint."), _("\
14374Show the maximum length (in bytes) of a target hardware watchpoint."), _("\
055303e2
AB
14375Specify \"unlimited\" to allow watchpoints of unlimited size."),
14376 NULL, show_hardware_watchpoint_length_limit,
480a3f21 14377 &remote_set_cmdlist, &remote_show_cmdlist);
055303e2 14378 add_setshow_zuinteger_unlimited_cmd ("hardware-breakpoint-limit", no_class,
7915a72c
AC
14379 &remote_hw_breakpoint_limit, _("\
14380Set the maximum number of target hardware breakpoints."), _("\
14381Show the maximum number of target hardware breakpoints."), _("\
055303e2
AB
14382Specify \"unlimited\" for unlimited hardware breakpoints."),
14383 NULL, show_hardware_breakpoint_limit,
b3f42336 14384 &remote_set_cmdlist, &remote_show_cmdlist);
501eef12 14385
1b493192
PA
14386 add_setshow_zuinteger_cmd ("remoteaddresssize", class_obscure,
14387 &remote_address_size, _("\
4d28ad1e
AC
14388Set the maximum size of the address (in bits) in a memory packet."), _("\
14389Show the maximum size of the address (in bits) in a memory packet."), NULL,
1b493192
PA
14390 NULL,
14391 NULL, /* FIXME: i18n: */
14392 &setlist, &showlist);
c906108c 14393
ca4f7f8b
PA
14394 init_all_packet_configs ();
14395
444abaca 14396 add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
bb572ddd 14397 "X", "binary-download", 1);
0f71a2f6 14398
444abaca 14399 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
bb572ddd 14400 "vCont", "verbose-resume", 0);
506fb367 14401
89be2091
DJ
14402 add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals],
14403 "QPassSignals", "pass-signals", 0);
14404
82075af2
JS
14405 add_packet_config_cmd (&remote_protocol_packets[PACKET_QCatchSyscalls],
14406 "QCatchSyscalls", "catch-syscalls", 0);
14407
9b224c5e
PA
14408 add_packet_config_cmd (&remote_protocol_packets[PACKET_QProgramSignals],
14409 "QProgramSignals", "program-signals", 0);
14410
bc3b087d
SDJ
14411 add_packet_config_cmd (&remote_protocol_packets[PACKET_QSetWorkingDir],
14412 "QSetWorkingDir", "set-working-dir", 0);
14413
aefd8b33
SDJ
14414 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartupWithShell],
14415 "QStartupWithShell", "startup-with-shell", 0);
14416
0a2dde4a
SDJ
14417 add_packet_config_cmd (&remote_protocol_packets
14418 [PACKET_QEnvironmentHexEncoded],
14419 "QEnvironmentHexEncoded", "environment-hex-encoded",
14420 0);
14421
14422 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentReset],
14423 "QEnvironmentReset", "environment-reset",
14424 0);
14425
14426 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentUnset],
14427 "QEnvironmentUnset", "environment-unset",
14428 0);
14429
444abaca 14430 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
bb572ddd 14431 "qSymbol", "symbol-lookup", 0);
dc8acb97 14432
444abaca 14433 add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
bb572ddd 14434 "P", "set-register", 1);
d471ea57 14435
444abaca 14436 add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
bb572ddd 14437 "p", "fetch-register", 1);
b96ec7ac 14438
444abaca 14439 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
bb572ddd 14440 "Z0", "software-breakpoint", 0);
d471ea57 14441
444abaca 14442 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
bb572ddd 14443 "Z1", "hardware-breakpoint", 0);
d471ea57 14444
444abaca 14445 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
bb572ddd 14446 "Z2", "write-watchpoint", 0);
d471ea57 14447
444abaca 14448 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
bb572ddd 14449 "Z3", "read-watchpoint", 0);
d471ea57 14450
444abaca 14451 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
bb572ddd 14452 "Z4", "access-watchpoint", 0);
d471ea57 14453
0876f84a
DJ
14454 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
14455 "qXfer:auxv:read", "read-aux-vector", 0);
802188a7 14456
c78fa86a
GB
14457 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_exec_file],
14458 "qXfer:exec-file:read", "pid-to-exec-file", 0);
14459
23181151
DJ
14460 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features],
14461 "qXfer:features:read", "target-features", 0);
14462
cfa9d6d9
DJ
14463 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries],
14464 "qXfer:libraries:read", "library-info", 0);
14465
2268b414
JK
14466 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries_svr4],
14467 "qXfer:libraries-svr4:read", "library-info-svr4", 0);
14468
fd79ecee
DJ
14469 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
14470 "qXfer:memory-map:read", "memory-map", 0);
14471
07e059b5
VP
14472 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata],
14473 "qXfer:osdata:read", "osdata", 0);
14474
dc146f7c
VP
14475 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_threads],
14476 "qXfer:threads:read", "threads", 0);
14477
4aa995e1
PA
14478 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read],
14479 "qXfer:siginfo:read", "read-siginfo-object", 0);
14480
14481 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write],
14482 "qXfer:siginfo:write", "write-siginfo-object", 0);
14483
b3b9301e
PA
14484 add_packet_config_cmd
14485 (&remote_protocol_packets[PACKET_qXfer_traceframe_info],
eb9fe518 14486 "qXfer:traceframe-info:read", "traceframe-info", 0);
b3b9301e 14487
169081d0
TG
14488 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_uib],
14489 "qXfer:uib:read", "unwind-info-block", 0);
14490
444abaca 14491 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
38691318 14492 "qGetTLSAddr", "get-thread-local-storage-address",
38691318
KB
14493 0);
14494
711e434b
PM
14495 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTIBAddr],
14496 "qGetTIBAddr", "get-thread-information-block-address",
14497 0);
14498
40ab02ce
MS
14499 add_packet_config_cmd (&remote_protocol_packets[PACKET_bc],
14500 "bc", "reverse-continue", 0);
14501
14502 add_packet_config_cmd (&remote_protocol_packets[PACKET_bs],
14503 "bs", "reverse-step", 0);
14504
be2a5f71
DJ
14505 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
14506 "qSupported", "supported-packets", 0);
14507
08388c79
DE
14508 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory],
14509 "qSearch:memory", "search-memory", 0);
14510
bd3eecc3
PA
14511 add_packet_config_cmd (&remote_protocol_packets[PACKET_qTStatus],
14512 "qTStatus", "trace-status", 0);
14513
15a201c8
GB
14514 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_setfs],
14515 "vFile:setfs", "hostio-setfs", 0);
14516
a6b151f1
DJ
14517 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open],
14518 "vFile:open", "hostio-open", 0);
14519
14520 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread],
14521 "vFile:pread", "hostio-pread", 0);
14522
14523 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite],
14524 "vFile:pwrite", "hostio-pwrite", 0);
14525
14526 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close],
14527 "vFile:close", "hostio-close", 0);
14528
14529 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink],
14530 "vFile:unlink", "hostio-unlink", 0);
14531
b9e7b9c3
UW
14532 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_readlink],
14533 "vFile:readlink", "hostio-readlink", 0);
14534
0a93529c
GB
14535 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_fstat],
14536 "vFile:fstat", "hostio-fstat", 0);
14537
2d717e4f
DJ
14538 add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach],
14539 "vAttach", "attach", 0);
14540
14541 add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun],
14542 "vRun", "run", 0);
14543
a6f3e723
SL
14544 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode],
14545 "QStartNoAckMode", "noack", 0);
14546
82f73884
PA
14547 add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill],
14548 "vKill", "kill", 0);
14549
0b16c5cf
PA
14550 add_packet_config_cmd (&remote_protocol_packets[PACKET_qAttached],
14551 "qAttached", "query-attached", 0);
14552
782b2b07 14553 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalTracepoints],
3e43a32a
MS
14554 "ConditionalTracepoints",
14555 "conditional-tracepoints", 0);
3788aec7
LM
14556
14557 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalBreakpoints],
14558 "ConditionalBreakpoints",
14559 "conditional-breakpoints", 0);
14560
d3ce09f5
SS
14561 add_packet_config_cmd (&remote_protocol_packets[PACKET_BreakpointCommands],
14562 "BreakpointCommands",
14563 "breakpoint-commands", 0);
14564
7a697b8d
SS
14565 add_packet_config_cmd (&remote_protocol_packets[PACKET_FastTracepoints],
14566 "FastTracepoints", "fast-tracepoints", 0);
782b2b07 14567
409873ef
SS
14568 add_packet_config_cmd (&remote_protocol_packets[PACKET_TracepointSource],
14569 "TracepointSource", "TracepointSource", 0);
14570
d914c394
SS
14571 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAllow],
14572 "QAllow", "allow", 0);
14573
0fb4aa4b
PA
14574 add_packet_config_cmd (&remote_protocol_packets[PACKET_StaticTracepoints],
14575 "StaticTracepoints", "static-tracepoints", 0);
14576
1e4d1764
YQ
14577 add_packet_config_cmd (&remote_protocol_packets[PACKET_InstallInTrace],
14578 "InstallInTrace", "install-in-trace", 0);
14579
0fb4aa4b
PA
14580 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_statictrace_read],
14581 "qXfer:statictrace:read", "read-sdata-object", 0);
14582
78d85199
YQ
14583 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_fdpic],
14584 "qXfer:fdpic:read", "read-fdpic-loadmap", 0);
14585
03583c20
UW
14586 add_packet_config_cmd (&remote_protocol_packets[PACKET_QDisableRandomization],
14587 "QDisableRandomization", "disable-randomization", 0);
14588
d1feda86
YQ
14589 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAgent],
14590 "QAgent", "agent", 0);
14591
f6f899bf
HAQ
14592 add_packet_config_cmd (&remote_protocol_packets[PACKET_QTBuffer_size],
14593 "QTBuffer:size", "trace-buffer-size", 0);
14594
9accd112
MM
14595 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_off],
14596 "Qbtrace:off", "disable-btrace", 0);
14597
14598 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_bts],
b20a6524
MM
14599 "Qbtrace:bts", "enable-btrace-bts", 0);
14600
14601 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_pt],
14602 "Qbtrace:pt", "enable-btrace-pt", 0);
9accd112
MM
14603
14604 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace],
14605 "qXfer:btrace", "read-btrace", 0);
14606
f4abbc16
MM
14607 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace_conf],
14608 "qXfer:btrace-conf", "read-btrace-conf", 0);
14609
d33501a5
MM
14610 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_bts_size],
14611 "Qbtrace-conf:bts:size", "btrace-conf-bts-size", 0);
14612
73b8c1fd
PA
14613 add_packet_config_cmd (&remote_protocol_packets[PACKET_multiprocess_feature],
14614 "multiprocess-feature", "multiprocess-feature", 0);
14615
f7e6eed5
PA
14616 add_packet_config_cmd (&remote_protocol_packets[PACKET_swbreak_feature],
14617 "swbreak-feature", "swbreak-feature", 0);
14618
14619 add_packet_config_cmd (&remote_protocol_packets[PACKET_hwbreak_feature],
14620 "hwbreak-feature", "hwbreak-feature", 0);
14621
89245bc0
DB
14622 add_packet_config_cmd (&remote_protocol_packets[PACKET_fork_event_feature],
14623 "fork-event-feature", "fork-event-feature", 0);
14624
14625 add_packet_config_cmd (&remote_protocol_packets[PACKET_vfork_event_feature],
14626 "vfork-event-feature", "vfork-event-feature", 0);
14627
b20a6524
MM
14628 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_pt_size],
14629 "Qbtrace-conf:pt:size", "btrace-conf-pt-size", 0);
14630
750ce8d1
YQ
14631 add_packet_config_cmd (&remote_protocol_packets[PACKET_vContSupported],
14632 "vContSupported", "verbose-resume-supported", 0);
14633
94585166
DB
14634 add_packet_config_cmd (&remote_protocol_packets[PACKET_exec_event_feature],
14635 "exec-event-feature", "exec-event-feature", 0);
14636
de979965
PA
14637 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCtrlC],
14638 "vCtrlC", "ctrl-c", 0);
14639
65706a29
PA
14640 add_packet_config_cmd (&remote_protocol_packets[PACKET_QThreadEvents],
14641 "QThreadEvents", "thread-events", 0);
14642
f2faf941
PA
14643 add_packet_config_cmd (&remote_protocol_packets[PACKET_no_resumed],
14644 "N stop reply", "no-resumed-stop-reply", 0);
14645
0b736949
DB
14646 /* Assert that we've registered "set remote foo-packet" commands
14647 for all packet configs. */
ca4f7f8b
PA
14648 {
14649 int i;
14650
14651 for (i = 0; i < PACKET_MAX; i++)
14652 {
14653 /* Ideally all configs would have a command associated. Some
14654 still don't though. */
14655 int excepted;
14656
14657 switch (i)
14658 {
14659 case PACKET_QNonStop:
ca4f7f8b
PA
14660 case PACKET_EnableDisableTracepoints_feature:
14661 case PACKET_tracenz_feature:
14662 case PACKET_DisconnectedTracing_feature:
14663 case PACKET_augmented_libraries_svr4_read_feature:
936d2992
PA
14664 case PACKET_qCRC:
14665 /* Additions to this list need to be well justified:
14666 pre-existing packets are OK; new packets are not. */
ca4f7f8b
PA
14667 excepted = 1;
14668 break;
14669 default:
14670 excepted = 0;
14671 break;
14672 }
14673
14674 /* This catches both forgetting to add a config command, and
14675 forgetting to remove a packet from the exception list. */
14676 gdb_assert (excepted == (remote_protocol_packets[i].name == NULL));
14677 }
14678 }
14679
37a105a1
DJ
14680 /* Keep the old ``set remote Z-packet ...'' working. Each individual
14681 Z sub-packet has its own set and show commands, but users may
14682 have sets to this variable in their .gdbinit files (or in their
14683 documentation). */
e9e68a56 14684 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
7915a72c 14685 &remote_Z_packet_detect, _("\
590042fc
PW
14686Set use of remote protocol `Z' packets."), _("\
14687Show use of remote protocol `Z' packets."), _("\
3b64bf98 14688When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
7915a72c 14689packets."),
e9e68a56 14690 set_remote_protocol_Z_packet_cmd,
3e43a32a
MS
14691 show_remote_protocol_Z_packet_cmd,
14692 /* FIXME: i18n: Use of remote protocol
14693 `Z' packets is %s. */
e9e68a56 14694 &remote_set_cmdlist, &remote_show_cmdlist);
449092f6 14695
a6b151f1 14696 add_prefix_cmd ("remote", class_files, remote_command, _("\
590042fc 14697Manipulate files on the remote system.\n\
a6b151f1
DJ
14698Transfer files to and from the remote target system."),
14699 &remote_cmdlist, "remote ",
14700 0 /* allow-unknown */, &cmdlist);
14701
14702 add_cmd ("put", class_files, remote_put_command,
14703 _("Copy a local file to the remote system."),
14704 &remote_cmdlist);
14705
14706 add_cmd ("get", class_files, remote_get_command,
14707 _("Copy a remote file to the local system."),
14708 &remote_cmdlist);
14709
14710 add_cmd ("delete", class_files, remote_delete_command,
14711 _("Delete a remote file."),
14712 &remote_cmdlist);
14713
2d717e4f 14714 add_setshow_string_noescape_cmd ("exec-file", class_files,
94585166 14715 &remote_exec_file_var, _("\
590042fc
PW
14716Set the remote pathname for \"run\"."), _("\
14717Show the remote pathname for \"run\"."), NULL,
94585166
DB
14718 set_remote_exec_file,
14719 show_remote_exec_file,
14720 &remote_set_cmdlist,
14721 &remote_show_cmdlist);
2d717e4f 14722
c1e36e3e
PA
14723 add_setshow_boolean_cmd ("range-stepping", class_run,
14724 &use_range_stepping, _("\
14725Enable or disable range stepping."), _("\
14726Show whether target-assisted range stepping is enabled."), _("\
14727If on, and the target supports it, when stepping a source line, GDB\n\
14728tells the target to step the corresponding range of addresses itself instead\n\
14729of issuing multiple single-steps. This speeds up source level\n\
14730stepping. If off, GDB always issues single-steps, even if range\n\
14731stepping is supported by the target. The default is on."),
14732 set_range_stepping,
14733 show_range_stepping,
14734 &setlist,
14735 &showlist);
14736
ed2b7c17
TT
14737 add_setshow_zinteger_cmd ("watchdog", class_maintenance, &watchdog, _("\
14738Set watchdog timer."), _("\
14739Show watchdog timer."), _("\
14740When non-zero, this timeout is used instead of waiting forever for a target\n\
14741to finish a low-level step or continue operation. If the specified amount\n\
14742of time passes without a response from the target, an error occurs."),
14743 NULL,
14744 show_watchdog,
14745 &setlist, &showlist);
14746
6cc8564b
LM
14747 add_setshow_zuinteger_unlimited_cmd ("remote-packet-max-chars", no_class,
14748 &remote_packet_max_chars, _("\
14749Set the maximum number of characters to display for each remote packet."), _("\
14750Show the maximum number of characters to display for each remote packet."), _("\
14751Specify \"unlimited\" to display all the characters."),
14752 NULL, show_remote_packet_max_chars,
14753 &setdebuglist, &showdebuglist);
14754
449092f6
CV
14755 /* Eventually initialize fileio. See fileio.c */
14756 initialize_remote_fileio (remote_set_cmdlist, remote_show_cmdlist);
c906108c 14757}
This page took 4.032862 seconds and 4 git commands to generate.