gdb: change remote_debug to bool
[deliverable/binutils-gdb.git] / gdb / remote.c
CommitLineData
c906108c 1/* Remote target communications for serial-line targets in custom GDB protocol
8926118c 2
3666a048 3 Copyright (C) 1988-2021 Free Software Foundation, Inc.
c906108c 4
c5aa993b
JM
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
c5aa993b
JM
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c5aa993b 19
23860348 20/* See the GDB User Guide for details of the GDB remote protocol. */
c5aa993b 21
c906108c 22#include "defs.h"
c906108c
SS
23#include <ctype.h>
24#include <fcntl.h>
c906108c 25#include "inferior.h"
45741a9c 26#include "infrun.h"
c906108c
SS
27#include "bfd.h"
28#include "symfile.h"
29#include "target.h"
3b3dac9b 30#include "process-stratum-target.h"
c906108c
SS
31#include "gdbcmd.h"
32#include "objfiles.h"
33#include "gdb-stabs.h"
34#include "gdbthread.h"
c2c6d25f 35#include "remote.h"
722247f1 36#include "remote-notif.h"
4e052eda 37#include "regcache.h"
fd0407d6 38#include "value.h"
76727919 39#include "observable.h"
a77053c2 40#include "solib.h"
37a105a1
DJ
41#include "cli/cli-decode.h"
42#include "cli/cli-setshow.h"
424163ea 43#include "target-descriptions.h"
a4453b7e 44#include "gdb_bfd.h"
268a13a5
TT
45#include "gdbsupport/filestuff.h"
46#include "gdbsupport/rsp-low.h"
6b940e6a 47#include "disasm.h"
f00aae0f 48#include "location.h"
c906108c 49
268a13a5 50#include "gdbsupport/gdb_sys_time.h"
c906108c 51
400b5eca 52#include "gdbsupport/event-loop.h"
c2c6d25f 53#include "event-top.h"
2acceee2 54#include "inf-loop.h"
43ff13b4 55
c906108c
SS
56#include <signal.h>
57#include "serial.h"
58
7e10abd1 59#include "gdbcore.h"
6240bebf 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"
4a72de73 78#include "gdbsupport/search.h"
39ef2f62 79#include <algorithm>
9d6eea31 80#include <unordered_map>
93b54c8e 81#include "async-event.h"
35b1e5cc 82
f6ac5f3d
PA
83/* The remote target. */
84
d9f719f1
PA
85static const char remote_doc[] = N_("\
86Use a remote computer via a serial line, using a gdb-specific protocol.\n\
87Specify the serial device it is connected to\n\
88(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).");
89
cda09ec9
SM
90/* See remote.h */
91
02349803 92bool remote_debug = false;
cda09ec9 93
6b8edb51
PA
94#define OPAQUETHREADBYTES 8
95
96/* a 64 bit opaque identifier */
97typedef unsigned char threadref[OPAQUETHREADBYTES];
98
99struct gdb_ext_thread_info;
100struct threads_listing_context;
101typedef int (*rmt_thread_action) (threadref *ref, void *context);
102struct protocol_feature;
103struct packet_reg;
104
105struct stop_reply;
32603266 106typedef std::unique_ptr<stop_reply> stop_reply_up;
6b8edb51
PA
107
108/* Generic configuration support for packets the stub optionally
109 supports. Allows the user to specify the use of the packet as well
110 as allowing GDB to auto-detect support in the remote stub. */
111
112enum packet_support
113 {
114 PACKET_SUPPORT_UNKNOWN = 0,
115 PACKET_ENABLE,
116 PACKET_DISABLE
117 };
118
119/* Analyze a packet's return value and update the packet config
120 accordingly. */
121
122enum packet_result
123{
124 PACKET_ERROR,
125 PACKET_OK,
126 PACKET_UNKNOWN
127};
128
129struct threads_listing_context;
3c69da40
PA
130
131/* Stub vCont actions support.
132
133 Each field is a boolean flag indicating whether the stub reports
134 support for the corresponding action. */
135
136struct vCont_action_support
137{
138 /* vCont;t */
139 bool t = false;
140
141 /* vCont;r */
142 bool r = false;
143
144 /* vCont;s */
145 bool s = false;
146
147 /* vCont;S */
148 bool S = false;
149};
150
405feb71 151/* About this many threadids fit in a packet. */
3c69da40
PA
152
153#define MAXTHREADLISTRESULTS 32
154
155/* Data for the vFile:pread readahead cache. */
156
157struct readahead_cache
158{
159 /* Invalidate the readahead cache. */
160 void invalidate ();
161
162 /* Invalidate the readahead cache if it is holding data for FD. */
163 void invalidate_fd (int fd);
164
165 /* Serve pread from the readahead cache. Returns number of bytes
166 read, or 0 if the request can't be served from the cache. */
167 int pread (int fd, gdb_byte *read_buf, size_t len, ULONGEST offset);
168
169 /* The file descriptor for the file that is being cached. -1 if the
170 cache is invalid. */
171 int fd = -1;
172
173 /* The offset into the file that the cache buffer corresponds
174 to. */
175 ULONGEST offset = 0;
176
177 /* The buffer holding the cache contents. */
178 gdb_byte *buf = nullptr;
179 /* The buffer's size. We try to read as much as fits into a packet
180 at a time. */
181 size_t bufsize = 0;
182
183 /* Cache hit and miss counters. */
184 ULONGEST hit_count = 0;
185 ULONGEST miss_count = 0;
186};
187
188/* Description of the remote protocol for a given architecture. */
189
190struct packet_reg
191{
192 long offset; /* Offset into G packet. */
193 long regnum; /* GDB's internal register number. */
194 LONGEST pnum; /* Remote protocol register number. */
195 int in_g_packet; /* Always part of G packet. */
196 /* long size in bytes; == register_size (target_gdbarch (), regnum);
197 at present. */
198 /* char *name; == gdbarch_register_name (target_gdbarch (), regnum);
199 at present. */
200};
201
202struct remote_arch_state
203{
204 explicit remote_arch_state (struct gdbarch *gdbarch);
205
206 /* Description of the remote protocol registers. */
207 long sizeof_g_packet;
208
209 /* Description of the remote protocol registers indexed by REGNUM
210 (making an array gdbarch_num_regs in size). */
211 std::unique_ptr<packet_reg[]> regs;
212
213 /* This is the size (in chars) of the first response to the ``g''
214 packet. It is used as a heuristic when determining the maximum
215 size of memory-read and memory-write packets. A target will
216 typically only reserve a buffer large enough to hold the ``g''
217 packet. The size does not include packet overhead (headers and
218 trailers). */
219 long actual_register_packet_size;
220
221 /* This is the maximum size (in chars) of a non read/write packet.
222 It is also used as a cap on the size of read/write packets. */
223 long remote_packet_size;
224};
225
226/* Description of the remote protocol state for the currently
227 connected target. This is per-target state, and independent of the
228 selected architecture. */
229
230class remote_state
231{
232public:
233
234 remote_state ();
235 ~remote_state ();
236
237 /* Get the remote arch state for GDBARCH. */
238 struct remote_arch_state *get_remote_arch_state (struct gdbarch *gdbarch);
239
240public: /* data */
241
242 /* A buffer to use for incoming packets, and its current size. The
243 buffer is grown dynamically for larger incoming packets.
244 Outgoing packets may also be constructed in this buffer.
8d64371b 245 The size of the buffer is always at least REMOTE_PACKET_SIZE;
3c69da40
PA
246 REMOTE_PACKET_SIZE should be used to limit the length of outgoing
247 packets. */
8d64371b 248 gdb::char_vector buf;
3c69da40
PA
249
250 /* True if we're going through initial connection setup (finding out
251 about the remote side's threads, relocating symbols, etc.). */
252 bool starting_up = false;
253
254 /* If we negotiated packet size explicitly (and thus can bypass
255 heuristics for the largest packet size that will not overflow
256 a buffer in the stub), this will be set to that packet size.
257 Otherwise zero, meaning to use the guessed size. */
258 long explicit_packet_size = 0;
259
260 /* remote_wait is normally called when the target is running and
261 waits for a stop reply packet. But sometimes we need to call it
262 when the target is already stopped. We can send a "?" packet
263 and have remote_wait read the response. Or, if we already have
264 the response, we can stash it in BUF and tell remote_wait to
265 skip calling getpkt. This flag is set when BUF contains a
266 stop reply packet and the target is not waiting. */
267 int cached_wait_status = 0;
268
269 /* True, if in no ack mode. That is, neither GDB nor the stub will
270 expect acks from each other. The connection is assumed to be
271 reliable. */
272 bool noack_mode = false;
273
274 /* True if we're connected in extended remote mode. */
275 bool extended = false;
276
277 /* True if we resumed the target and we're waiting for the target to
278 stop. In the mean time, we can't start another command/query.
279 The remote server wouldn't be ready to process it, so we'd
280 timeout waiting for a reply that would never come and eventually
281 we'd close the connection. This can happen in asynchronous mode
282 because we allow GDB commands while the target is running. */
283 bool waiting_for_stop_reply = false;
284
285 /* The status of the stub support for the various vCont actions. */
286 vCont_action_support supports_vCont;
5b6d1e4f
PA
287 /* Whether vCont support was probed already. This is a workaround
288 until packet_support is per-connection. */
289 bool supports_vCont_probed;
3c69da40
PA
290
291 /* True if the user has pressed Ctrl-C, but the target hasn't
292 responded to that. */
293 bool ctrlc_pending_p = false;
294
295 /* True if we saw a Ctrl-C while reading or writing from/to the
296 remote descriptor. At that point it is not safe to send a remote
297 interrupt packet, so we instead remember we saw the Ctrl-C and
298 process it once we're done with sending/receiving the current
299 packet, which should be shortly. If however that takes too long,
300 and the user presses Ctrl-C again, we offer to disconnect. */
301 bool got_ctrlc_during_io = false;
302
303 /* Descriptor for I/O to remote machine. Initialize it to NULL so that
304 remote_open knows that we don't have a file open when the program
305 starts. */
306 struct serial *remote_desc = nullptr;
307
308 /* These are the threads which we last sent to the remote system. The
309 TID member will be -1 for all or -2 for not sent yet. */
310 ptid_t general_thread = null_ptid;
311 ptid_t continue_thread = null_ptid;
312
313 /* This is the traceframe which we last selected on the remote system.
314 It will be -1 if no traceframe is selected. */
315 int remote_traceframe_number = -1;
316
317 char *last_pass_packet = nullptr;
318
319 /* The last QProgramSignals packet sent to the target. We bypass
320 sending a new program signals list down to the target if the new
321 packet is exactly the same as the last we sent. IOW, we only let
322 the target know about program signals list changes. */
323 char *last_program_signals_packet = nullptr;
324
325 gdb_signal last_sent_signal = GDB_SIGNAL_0;
326
327 bool last_sent_step = false;
328
329 /* The execution direction of the last resume we got. */
330 exec_direction_kind last_resume_exec_dir = EXEC_FORWARD;
331
332 char *finished_object = nullptr;
333 char *finished_annex = nullptr;
334 ULONGEST finished_offset = 0;
335
336 /* Should we try the 'ThreadInfo' query packet?
337
338 This variable (NOT available to the user: auto-detect only!)
339 determines whether GDB will use the new, simpler "ThreadInfo"
340 query or the older, more complex syntax for thread queries.
341 This is an auto-detect variable (set to true at each connect,
342 and set to false when the target fails to recognize it). */
343 bool use_threadinfo_query = false;
344 bool use_threadextra_query = false;
345
346 threadref echo_nextthread {};
347 threadref nextthread {};
348 threadref resultthreadlist[MAXTHREADLISTRESULTS] {};
349
350 /* The state of remote notification. */
351 struct remote_notif_state *notif_state = nullptr;
352
353 /* The branch trace configuration. */
354 struct btrace_config btrace_config {};
355
356 /* The argument to the last "vFile:setfs:" packet we sent, used
357 to avoid sending repeated unnecessary "vFile:setfs:" packets.
358 Initialized to -1 to indicate that no "vFile:setfs:" packet
359 has yet been sent. */
360 int fs_pid = -1;
361
362 /* A readahead cache for vFile:pread. Often, reading a binary
363 involves a sequence of small reads. E.g., when parsing an ELF
364 file. A readahead cache helps mostly the case of remote
365 debugging on a connection with higher latency, due to the
366 request/reply nature of the RSP. We only cache data for a single
367 file descriptor at a time. */
368 struct readahead_cache readahead_cache;
369
370 /* The list of already fetched and acknowledged stop events. This
371 queue is used for notification Stop, and other notifications
372 don't need queue for their events, because the notification
373 events of Stop can't be consumed immediately, so that events
374 should be queued first, and be consumed by remote_wait_{ns,as}
375 one per time. Other notifications can consume their events
376 immediately, so queue is not needed for them. */
953edf2b 377 std::vector<stop_reply_up> stop_reply_queue;
3c69da40
PA
378
379 /* Asynchronous signal handle registered as event loop source for
380 when we have pending events ready to be passed to the core. */
381 struct async_event_handler *remote_async_inferior_event_token = nullptr;
382
383 /* FIXME: cagney/1999-09-23: Even though getpkt was called with
384 ``forever'' still use the normal timeout mechanism. This is
385 currently used by the ASYNC code to guarentee that target reads
386 during the initial connect always time-out. Once getpkt has been
387 modified to return a timeout indication and, in turn
388 remote_wait()/wait_for_inferior() have gained a timeout parameter
389 this can go away. */
390 int wait_forever_enabled_p = 1;
391
392private:
393 /* Mapping of remote protocol data for each gdbarch. Usually there
394 is only one entry here, though we may see more with stubs that
395 support multi-process. */
396 std::unordered_map<struct gdbarch *, remote_arch_state>
397 m_arch_states;
398};
6b8edb51 399
d9f719f1
PA
400static const target_info remote_target_info = {
401 "remote",
402 N_("Remote serial target in gdb-specific protocol"),
403 remote_doc
404};
405
3b3dac9b 406class remote_target : public process_stratum_target
f6ac5f3d
PA
407{
408public:
3b3dac9b 409 remote_target () = default;
6b8edb51 410 ~remote_target () override;
f6ac5f3d 411
d9f719f1
PA
412 const target_info &info () const override
413 { return remote_target_info; }
f6ac5f3d 414
121b3efd
PA
415 const char *connection_string () override;
416
f6ac5f3d
PA
417 thread_control_capabilities get_thread_control_capabilities () override
418 { return tc_schedlock; }
419
d9f719f1
PA
420 /* Open a remote connection. */
421 static void open (const char *, int);
422
f6ac5f3d
PA
423 void close () override;
424
425 void detach (inferior *, int) override;
426 void disconnect (const char *, int) override;
427
428 void commit_resume () override;
429 void resume (ptid_t, int, enum gdb_signal) override;
b60cea74 430 ptid_t wait (ptid_t, struct target_waitstatus *, target_wait_flags) override;
f6ac5f3d
PA
431
432 void fetch_registers (struct regcache *, int) override;
433 void store_registers (struct regcache *, int) override;
434 void prepare_to_store (struct regcache *) override;
435
436 void files_info () override;
437
438 int insert_breakpoint (struct gdbarch *, struct bp_target_info *) override;
439
440 int remove_breakpoint (struct gdbarch *, struct bp_target_info *,
441 enum remove_bp_reason) override;
442
443
57810aa7
PA
444 bool stopped_by_sw_breakpoint () override;
445 bool supports_stopped_by_sw_breakpoint () override;
f6ac5f3d 446
57810aa7 447 bool stopped_by_hw_breakpoint () override;
f6ac5f3d 448
57810aa7 449 bool supports_stopped_by_hw_breakpoint () override;
f6ac5f3d 450
57810aa7 451 bool stopped_by_watchpoint () override;
f6ac5f3d 452
57810aa7 453 bool stopped_data_address (CORE_ADDR *) override;
f6ac5f3d 454
57810aa7 455 bool watchpoint_addr_within_range (CORE_ADDR, CORE_ADDR, int) override;
f6ac5f3d
PA
456
457 int can_use_hw_breakpoint (enum bptype, int, int) override;
458
459 int insert_hw_breakpoint (struct gdbarch *, struct bp_target_info *) override;
460
461 int remove_hw_breakpoint (struct gdbarch *, struct bp_target_info *) override;
462
463 int region_ok_for_hw_watchpoint (CORE_ADDR, int) override;
464
465 int insert_watchpoint (CORE_ADDR, int, enum target_hw_bp_type,
466 struct expression *) override;
467
468 int remove_watchpoint (CORE_ADDR, int, enum target_hw_bp_type,
469 struct expression *) override;
470
471 void kill () override;
472
473 void load (const char *, int) override;
474
475 void mourn_inferior () override;
476
adc6a863 477 void pass_signals (gdb::array_view<const unsigned char>) override;
f6ac5f3d
PA
478
479 int set_syscall_catchpoint (int, bool, int,
480 gdb::array_view<const int>) override;
481
adc6a863 482 void program_signals (gdb::array_view<const unsigned char>) override;
f6ac5f3d 483
57810aa7 484 bool thread_alive (ptid_t ptid) override;
f6ac5f3d
PA
485
486 const char *thread_name (struct thread_info *) override;
487
488 void update_thread_list () override;
489
a068643d 490 std::string pid_to_str (ptid_t) override;
f6ac5f3d
PA
491
492 const char *extra_thread_info (struct thread_info *) override;
493
494 ptid_t get_ada_task_ptid (long lwp, long thread) override;
495
496 thread_info *thread_handle_to_thread_info (const gdb_byte *thread_handle,
497 int handle_len,
498 inferior *inf) override;
499
3d6c6204
KB
500 gdb::byte_vector thread_info_to_thread_handle (struct thread_info *tp)
501 override;
502
f6ac5f3d
PA
503 void stop (ptid_t) override;
504
505 void interrupt () override;
506
507 void pass_ctrlc () override;
508
509 enum target_xfer_status xfer_partial (enum target_object object,
510 const char *annex,
511 gdb_byte *readbuf,
512 const gdb_byte *writebuf,
513 ULONGEST offset, ULONGEST len,
514 ULONGEST *xfered_len) override;
515
516 ULONGEST get_memory_xfer_limit () override;
517
518 void rcmd (const char *command, struct ui_file *output) override;
519
520 char *pid_to_exec_file (int pid) override;
521
522 void log_command (const char *cmd) override
523 {
524 serial_log_command (this, cmd);
525 }
526
527 CORE_ADDR get_thread_local_address (ptid_t ptid,
528 CORE_ADDR load_module_addr,
529 CORE_ADDR offset) override;
530
57810aa7 531 bool can_execute_reverse () override;
f6ac5f3d
PA
532
533 std::vector<mem_region> memory_map () override;
534
535 void flash_erase (ULONGEST address, LONGEST length) override;
536
537 void flash_done () override;
538
539 const struct target_desc *read_description () override;
540
541 int search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
542 const gdb_byte *pattern, ULONGEST pattern_len,
543 CORE_ADDR *found_addrp) override;
544
57810aa7 545 bool can_async_p () override;
f6ac5f3d 546
57810aa7 547 bool is_async_p () override;
f6ac5f3d
PA
548
549 void async (int) override;
550
5b6d1e4f
PA
551 int async_wait_fd () override;
552
f6ac5f3d
PA
553 void thread_events (int) override;
554
555 int can_do_single_step () override;
556
557 void terminal_inferior () override;
558
559 void terminal_ours () override;
560
57810aa7 561 bool supports_non_stop () override;
f6ac5f3d 562
57810aa7 563 bool supports_multi_process () override;
f6ac5f3d 564
57810aa7 565 bool supports_disable_randomization () override;
f6ac5f3d 566
57810aa7 567 bool filesystem_is_local () override;
f6ac5f3d
PA
568
569
570 int fileio_open (struct inferior *inf, const char *filename,
571 int flags, int mode, int warn_if_slow,
572 int *target_errno) override;
573
574 int fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
575 ULONGEST offset, int *target_errno) override;
576
577 int fileio_pread (int fd, gdb_byte *read_buf, int len,
578 ULONGEST offset, int *target_errno) override;
579
580 int fileio_fstat (int fd, struct stat *sb, int *target_errno) override;
581
582 int fileio_close (int fd, int *target_errno) override;
583
584 int fileio_unlink (struct inferior *inf,
585 const char *filename,
586 int *target_errno) override;
587
588 gdb::optional<std::string>
589 fileio_readlink (struct inferior *inf,
590 const char *filename,
591 int *target_errno) override;
592
57810aa7 593 bool supports_enable_disable_tracepoint () override;
f6ac5f3d 594
57810aa7 595 bool supports_string_tracing () override;
f6ac5f3d 596
57810aa7 597 bool supports_evaluation_of_breakpoint_conditions () override;
f6ac5f3d 598
57810aa7 599 bool can_run_breakpoint_commands () override;
f6ac5f3d
PA
600
601 void trace_init () override;
602
603 void download_tracepoint (struct bp_location *location) override;
604
57810aa7 605 bool can_download_tracepoint () override;
f6ac5f3d
PA
606
607 void download_trace_state_variable (const trace_state_variable &tsv) override;
608
609 void enable_tracepoint (struct bp_location *location) override;
610
611 void disable_tracepoint (struct bp_location *location) override;
612
613 void trace_set_readonly_regions () override;
614
615 void trace_start () override;
616
617 int get_trace_status (struct trace_status *ts) override;
618
619 void get_tracepoint_status (struct breakpoint *tp, struct uploaded_tp *utp)
620 override;
621
622 void trace_stop () override;
623
624 int trace_find (enum trace_find_type type, int num,
625 CORE_ADDR addr1, CORE_ADDR addr2, int *tpp) override;
626
57810aa7 627 bool get_trace_state_variable_value (int tsv, LONGEST *val) override;
f6ac5f3d
PA
628
629 int save_trace_data (const char *filename) override;
630
631 int upload_tracepoints (struct uploaded_tp **utpp) override;
632
633 int upload_trace_state_variables (struct uploaded_tsv **utsvp) override;
634
635 LONGEST get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len) override;
636
637 int get_min_fast_tracepoint_insn_len () override;
638
639 void set_disconnected_tracing (int val) override;
640
641 void set_circular_trace_buffer (int val) override;
642
643 void set_trace_buffer_size (LONGEST val) override;
644
57810aa7
PA
645 bool set_trace_notes (const char *user, const char *notes,
646 const char *stopnotes) override;
f6ac5f3d
PA
647
648 int core_of_thread (ptid_t ptid) override;
649
650 int verify_memory (const gdb_byte *data,
651 CORE_ADDR memaddr, ULONGEST size) override;
652
653
57810aa7 654 bool get_tib_address (ptid_t ptid, CORE_ADDR *addr) override;
f6ac5f3d
PA
655
656 void set_permissions () override;
657
658 bool static_tracepoint_marker_at (CORE_ADDR,
659 struct static_tracepoint_marker *marker)
660 override;
661
662 std::vector<static_tracepoint_marker>
663 static_tracepoint_markers_by_strid (const char *id) override;
664
665 traceframe_info_up traceframe_info () override;
666
57810aa7
PA
667 bool use_agent (bool use) override;
668 bool can_use_agent () override;
f6ac5f3d
PA
669
670 struct btrace_target_info *enable_btrace (ptid_t ptid,
671 const struct btrace_config *conf) override;
672
673 void disable_btrace (struct btrace_target_info *tinfo) override;
674
675 void teardown_btrace (struct btrace_target_info *tinfo) override;
676
677 enum btrace_error read_btrace (struct btrace_data *data,
678 struct btrace_target_info *btinfo,
679 enum btrace_read_type type) override;
680
681 const struct btrace_config *btrace_conf (const struct btrace_target_info *) override;
57810aa7 682 bool augmented_libraries_svr4_read () override;
5ab2fbf1 683 bool follow_fork (bool, bool) override;
4ca51187 684 void follow_exec (struct inferior *, const char *) override;
f6ac5f3d
PA
685 int insert_fork_catchpoint (int) override;
686 int remove_fork_catchpoint (int) override;
687 int insert_vfork_catchpoint (int) override;
688 int remove_vfork_catchpoint (int) override;
689 int insert_exec_catchpoint (int) override;
690 int remove_exec_catchpoint (int) override;
691 enum exec_direction_kind execution_direction () override;
692
6b8edb51
PA
693public: /* Remote specific methods. */
694
695 void remote_download_command_source (int num, ULONGEST addr,
696 struct command_line *cmds);
697
698 void remote_file_put (const char *local_file, const char *remote_file,
699 int from_tty);
700 void remote_file_get (const char *remote_file, const char *local_file,
701 int from_tty);
702 void remote_file_delete (const char *remote_file, int from_tty);
703
704 int remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
705 ULONGEST offset, int *remote_errno);
706 int remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
707 ULONGEST offset, int *remote_errno);
708 int remote_hostio_pread_vFile (int fd, gdb_byte *read_buf, int len,
709 ULONGEST offset, int *remote_errno);
710
711 int remote_hostio_send_command (int command_bytes, int which_packet,
aa2838cc 712 int *remote_errno, const char **attachment,
6b8edb51
PA
713 int *attachment_len);
714 int remote_hostio_set_filesystem (struct inferior *inf,
715 int *remote_errno);
716 /* We should get rid of this and use fileio_open directly. */
717 int remote_hostio_open (struct inferior *inf, const char *filename,
718 int flags, int mode, int warn_if_slow,
719 int *remote_errno);
720 int remote_hostio_close (int fd, int *remote_errno);
721
722 int remote_hostio_unlink (inferior *inf, const char *filename,
723 int *remote_errno);
724
725 struct remote_state *get_remote_state ();
726
727 long get_remote_packet_size (void);
728 long get_memory_packet_size (struct memory_packet_config *config);
729
730 long get_memory_write_packet_size ();
731 long get_memory_read_packet_size ();
732
733 char *append_pending_thread_resumptions (char *p, char *endp,
734 ptid_t ptid);
d9f719f1 735 static void open_1 (const char *name, int from_tty, int extended_p);
f6ac5f3d 736 void start_remote (int from_tty, int extended_p);
00431a78 737 void remote_detach_1 (struct inferior *inf, int from_tty);
6b8edb51
PA
738
739 char *append_resumption (char *p, char *endp,
740 ptid_t ptid, int step, gdb_signal siggnal);
741 int remote_resume_with_vcont (ptid_t ptid, int step,
742 gdb_signal siggnal);
743
e3b2741b 744 void add_current_inferior_and_thread (const char *wait_status);
6b8edb51
PA
745
746 ptid_t wait_ns (ptid_t ptid, struct target_waitstatus *status,
b60cea74 747 target_wait_flags options);
6b8edb51 748 ptid_t wait_as (ptid_t ptid, target_waitstatus *status,
b60cea74 749 target_wait_flags options);
6b8edb51
PA
750
751 ptid_t process_stop_reply (struct stop_reply *stop_reply,
752 target_waitstatus *status);
753
8f66807b
AB
754 ptid_t select_thread_for_ambiguous_stop_reply
755 (const struct target_waitstatus *status);
756
6b8edb51
PA
757 void remote_notice_new_inferior (ptid_t currthread, int executing);
758
759 void process_initial_stop_replies (int from_tty);
760
00431a78 761 thread_info *remote_add_thread (ptid_t ptid, bool running, bool executing);
6b8edb51
PA
762
763 void btrace_sync_conf (const btrace_config *conf);
764
765 void remote_btrace_maybe_reopen ();
766
767 void remove_new_fork_children (threads_listing_context *context);
768 void kill_new_fork_children (int pid);
769 void discard_pending_stop_replies (struct inferior *inf);
770 int stop_reply_queue_length ();
771
772 void check_pending_events_prevent_wildcard_vcont
773 (int *may_global_wildcard_vcont);
774
775 void discard_pending_stop_replies_in_queue ();
776 struct stop_reply *remote_notif_remove_queued_reply (ptid_t ptid);
777 struct stop_reply *queued_stop_reply (ptid_t ptid);
778 int peek_stop_reply (ptid_t ptid);
bb277751 779 void remote_parse_stop_reply (const char *buf, stop_reply *event);
6b8edb51
PA
780
781 void remote_stop_ns (ptid_t ptid);
782 void remote_interrupt_as ();
783 void remote_interrupt_ns ();
784
785 char *remote_get_noisy_reply ();
786 int remote_query_attached (int pid);
9ab8741a 787 inferior *remote_add_inferior (bool fake_pid_p, int pid, int attached,
6b8edb51
PA
788 int try_open_exec);
789
790 ptid_t remote_current_thread (ptid_t oldpid);
e3b2741b 791 ptid_t get_current_thread (const char *wait_status);
6b8edb51
PA
792
793 void set_thread (ptid_t ptid, int gen);
794 void set_general_thread (ptid_t ptid);
795 void set_continue_thread (ptid_t ptid);
796 void set_general_process ();
797
798 char *write_ptid (char *buf, const char *endbuf, ptid_t ptid);
799
cecb1912 800 int remote_unpack_thread_info_response (const char *pkt, threadref *expectedref,
6b8edb51
PA
801 gdb_ext_thread_info *info);
802 int remote_get_threadinfo (threadref *threadid, int fieldset,
803 gdb_ext_thread_info *info);
804
cecb1912 805 int parse_threadlist_response (const char *pkt, int result_limit,
6b8edb51
PA
806 threadref *original_echo,
807 threadref *resultlist,
808 int *doneflag);
809 int remote_get_threadlist (int startflag, threadref *nextthread,
810 int result_limit, int *done, int *result_count,
811 threadref *threadlist);
812
813 int remote_threadlist_iterator (rmt_thread_action stepfunction,
814 void *context, int looplimit);
815
816 int remote_get_threads_with_ql (threads_listing_context *context);
817 int remote_get_threads_with_qxfer (threads_listing_context *context);
818 int remote_get_threads_with_qthreadinfo (threads_listing_context *context);
819
820 void extended_remote_restart ();
821
822 void get_offsets ();
823
824 void remote_check_symbols ();
825
826 void remote_supported_packet (const struct protocol_feature *feature,
827 enum packet_support support,
828 const char *argument);
829
830 void remote_query_supported ();
831
832 void remote_packet_size (const protocol_feature *feature,
833 packet_support support, const char *value);
834
835 void remote_serial_quit_handler ();
836
837 void remote_detach_pid (int pid);
838
839 void remote_vcont_probe ();
840
841 void remote_resume_with_hc (ptid_t ptid, int step,
842 gdb_signal siggnal);
843
844 void send_interrupt_sequence ();
845 void interrupt_query ();
846
847 void remote_notif_get_pending_events (notif_client *nc);
848
849 int fetch_register_using_p (struct regcache *regcache,
850 packet_reg *reg);
851 int send_g_packet ();
852 void process_g_packet (struct regcache *regcache);
853 void fetch_registers_using_g (struct regcache *regcache);
854 int store_register_using_P (const struct regcache *regcache,
855 packet_reg *reg);
856 void store_registers_using_G (const struct regcache *regcache);
857
858 void set_remote_traceframe ();
859
860 void check_binary_download (CORE_ADDR addr);
861
862 target_xfer_status remote_write_bytes_aux (const char *header,
863 CORE_ADDR memaddr,
864 const gdb_byte *myaddr,
865 ULONGEST len_units,
866 int unit_size,
867 ULONGEST *xfered_len_units,
868 char packet_format,
869 int use_length);
870
871 target_xfer_status remote_write_bytes (CORE_ADDR memaddr,
872 const gdb_byte *myaddr, ULONGEST len,
873 int unit_size, ULONGEST *xfered_len);
874
875 target_xfer_status remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr,
876 ULONGEST len_units,
877 int unit_size, ULONGEST *xfered_len_units);
878
879 target_xfer_status remote_xfer_live_readonly_partial (gdb_byte *readbuf,
880 ULONGEST memaddr,
881 ULONGEST len,
882 int unit_size,
883 ULONGEST *xfered_len);
884
885 target_xfer_status remote_read_bytes (CORE_ADDR memaddr,
886 gdb_byte *myaddr, ULONGEST len,
887 int unit_size,
888 ULONGEST *xfered_len);
889
890 packet_result remote_send_printf (const char *format, ...)
891 ATTRIBUTE_PRINTF (2, 3);
892
893 target_xfer_status remote_flash_write (ULONGEST address,
894 ULONGEST length, ULONGEST *xfered_len,
895 const gdb_byte *data);
896
897 int readchar (int timeout);
898
899 void remote_serial_write (const char *str, int len);
900
901 int putpkt (const char *buf);
902 int putpkt_binary (const char *buf, int cnt);
903
8d64371b
TT
904 int putpkt (const gdb::char_vector &buf)
905 {
906 return putpkt (buf.data ());
907 }
908
6b8edb51 909 void skip_frame ();
8d64371b
TT
910 long read_frame (gdb::char_vector *buf_p);
911 void getpkt (gdb::char_vector *buf, int forever);
912 int getpkt_or_notif_sane_1 (gdb::char_vector *buf, int forever,
6b8edb51 913 int expecting_notif, int *is_notif);
8d64371b
TT
914 int getpkt_sane (gdb::char_vector *buf, int forever);
915 int getpkt_or_notif_sane (gdb::char_vector *buf, int forever,
6b8edb51
PA
916 int *is_notif);
917 int remote_vkill (int pid);
918 void remote_kill_k ();
919
920 void extended_remote_disable_randomization (int val);
921 int extended_remote_run (const std::string &args);
922
923 void send_environment_packet (const char *action,
924 const char *packet,
925 const char *value);
926
927 void extended_remote_environment_support ();
3c69da40 928 void extended_remote_set_inferior_cwd ();
80152258 929
3c69da40
PA
930 target_xfer_status remote_write_qxfer (const char *object_name,
931 const char *annex,
932 const gdb_byte *writebuf,
933 ULONGEST offset, LONGEST len,
934 ULONGEST *xfered_len,
935 struct packet_config *packet);
43c3a0e4 936
3c69da40
PA
937 target_xfer_status remote_read_qxfer (const char *object_name,
938 const char *annex,
939 gdb_byte *readbuf, ULONGEST offset,
940 LONGEST len,
941 ULONGEST *xfered_len,
942 struct packet_config *packet);
43c3a0e4 943
3c69da40 944 void push_stop_reply (struct stop_reply *new_event);
43c3a0e4 945
3c69da40 946 bool vcont_r_supported ();
43c3a0e4 947
3c69da40 948 void packet_command (const char *args, int from_tty);
43c3a0e4 949
3c69da40 950private: /* data fields */
43c3a0e4 951
3c69da40
PA
952 /* The remote state. Don't reference this directly. Use the
953 get_remote_state method instead. */
954 remote_state m_remote_state;
43c3a0e4
PA
955};
956
3c69da40
PA
957static const target_info extended_remote_target_info = {
958 "extended-remote",
959 N_("Extended remote serial target in gdb-specific protocol"),
960 remote_doc
961};
ea9c271d 962
3c69da40
PA
963/* Set up the extended remote target by extending the standard remote
964 target and adding to it. */
965
966class extended_remote_target final : public remote_target
ea9c271d 967{
9d6eea31 968public:
3c69da40
PA
969 const target_info &info () const override
970 { return extended_remote_target_info; }
9d6eea31 971
3c69da40
PA
972 /* Open an extended-remote connection. */
973 static void open (const char *, int);
de44f5a7 974
3c69da40
PA
975 bool can_create_inferior () override { return true; }
976 void create_inferior (const char *, const std::string &,
977 char **, int) override;
9d6eea31 978
3c69da40 979 void detach (inferior *, int) override;
9d6eea31 980
3c69da40
PA
981 bool can_attach () override { return true; }
982 void attach (const char *, int) override;
be2a5f71 983
3c69da40
PA
984 void post_attach (int) override;
985 bool supports_disable_randomization () override;
986};
1e51243a 987
3c69da40 988/* Per-program-space data key. */
7b4a314f
TT
989static const struct program_space_key<char, gdb::xfree_deleter<char>>
990 remote_pspace_data;
2d717e4f 991
3c69da40
PA
992/* The variable registered as the control variable used by the
993 remote exec-file commands. While the remote exec-file setting is
994 per-program-space, the set/show machinery uses this as the
995 location of the remote exec-file value. */
996static char *remote_exec_file_var;
a6f3e723 997
3c69da40
PA
998/* The size to align memory write packets, when practical. The protocol
999 does not guarantee any alignment, and gdb will generate short
1000 writes and unaligned writes, but even as a best-effort attempt this
1001 can improve bulk transfers. For instance, if a write is misaligned
1002 relative to the target's data bus, the stub may need to make an extra
1003 round trip fetching data from the target. This doesn't make a
1004 huge difference, but it's easy to do, so we try to be helpful.
82f73884 1005
3c69da40
PA
1006 The alignment chosen is arbitrary; usually data bus width is
1007 important here, not the possibly larger cache line size. */
1008enum { REMOTE_ALIGN_WRITES = 16 };
82f73884 1009
3c69da40 1010/* Prototypes for local functions. */
74531fed 1011
3c69da40 1012static int hexnumlen (ULONGEST num);
782b2b07 1013
3c69da40 1014static int stubhex (int ch);
5d93a237 1015
3c69da40 1016static int hexnumstr (char *, ULONGEST);
048094ac 1017
3c69da40 1018static int hexnumnstr (char *, ULONGEST, int);
47f8a51d 1019
3c69da40 1020static CORE_ADDR remote_address_masked (CORE_ADDR);
262e1174 1021
3c69da40 1022static void print_packet (const char *);
747dc59d 1023
cecb1912 1024static int stub_unpack_int (const char *buff, int fieldlength);
5e4a05c4 1025
3c69da40 1026struct packet_config;
b73be471 1027
3c69da40 1028static void show_packet_config_cmd (struct packet_config *config);
280ceea3 1029
3c69da40
PA
1030static void show_remote_protocol_packet_cmd (struct ui_file *file,
1031 int from_tty,
1032 struct cmd_list_element *c,
1033 const char *value);
8e88304f 1034
3c69da40 1035static ptid_t read_ptid (const char *buf, const char **obuf);
3a00c802 1036
3c69da40 1037static void remote_async_inferior_event_handler (gdb_client_data);
b80fafe3 1038
eefce37f 1039static bool remote_read_description_p (struct target_ops *target);
88b496c3 1040
05be00a8 1041static void remote_console_output (const char *msg);
5965e028 1042
3c69da40 1043static void remote_btrace_reset (remote_state *rs);
f4abbc16 1044
5b6d1e4f 1045static void remote_unpush_and_throw (remote_target *target);
15a201c8 1046
3c69da40 1047/* For "remote". */
80152258 1048
3c69da40 1049static struct cmd_list_element *remote_cmdlist;
9d6eea31 1050
3c69da40 1051/* For "set remote" and "show remote". */
6b8edb51 1052
3c69da40
PA
1053static struct cmd_list_element *remote_set_cmdlist;
1054static struct cmd_list_element *remote_show_cmdlist;
6b8edb51 1055
3c69da40 1056/* Controls whether GDB is willing to use range stepping. */
6b8edb51 1057
491144b5 1058static bool use_range_stepping = true;
3c69da40 1059
c9d22089
SM
1060/* From the remote target's point of view, each thread is in one of these three
1061 states. */
1062enum class resume_state
1063{
1064 /* Not resumed - we haven't been asked to resume this thread. */
1065 NOT_RESUMED,
1066
1067 /* We have been asked to resume this thread, but haven't sent a vCont action
1068 for it yet. We'll need to consider it next time commit_resume is
1069 called. */
1070 RESUMED_PENDING_VCONT,
1071
1072 /* We have been asked to resume this thread, and we have sent a vCont action
1073 for it. */
1074 RESUMED,
1075};
1076
1077/* Information about a thread's pending vCont-resume. Used when a thread is in
1078 the remote_resume_state::RESUMED_PENDING_VCONT state. remote_target::resume
1079 stores this information which is then picked up by
1080 remote_target::commit_resume to know which is the proper action for this
1081 thread to include in the vCont packet. */
1082struct resumed_pending_vcont_info
1083{
1084 /* True if the last resume call for this thread was a step request, false
1085 if a continue request. */
1086 bool step;
1087
1088 /* The signal specified in the last resume call for this thread. */
1089 gdb_signal sig;
1090};
1091
7aabaf9d
SM
1092/* Private data that we'll store in (struct thread_info)->priv. */
1093struct remote_thread_info : public private_thread_info
dc146f7c 1094{
7aabaf9d
SM
1095 std::string extra;
1096 std::string name;
1097 int core = -1;
799a2abe 1098
f6327dcb
KB
1099 /* Thread handle, perhaps a pthread_t or thread_t value, stored as a
1100 sequence of bytes. */
7aabaf9d 1101 gdb::byte_vector thread_handle;
f6327dcb 1102
799a2abe 1103 /* Whether the target stopped for a breakpoint/watchpoint. */
7aabaf9d 1104 enum target_stop_reason stop_reason = TARGET_STOPPED_BY_NO_REASON;
799a2abe
PA
1105
1106 /* This is set to the data address of the access causing the target
1107 to stop for a watchpoint. */
7aabaf9d 1108 CORE_ADDR watch_data_address = 0;
85ad3aaf 1109
c9d22089 1110 /* Get the thread's resume state. */
a6c11cbb 1111 enum resume_state get_resume_state () const
c9d22089
SM
1112 {
1113 return m_resume_state;
1114 }
1115
1116 /* Put the thread in the NOT_RESUMED state. */
1117 void set_not_resumed ()
1118 {
1119 m_resume_state = resume_state::NOT_RESUMED;
1120 }
85ad3aaf 1121
c9d22089
SM
1122 /* Put the thread in the RESUMED_PENDING_VCONT state. */
1123 void set_resumed_pending_vcont (bool step, gdb_signal sig)
1124 {
1125 m_resume_state = resume_state::RESUMED_PENDING_VCONT;
1126 m_resumed_pending_vcont_info.step = step;
1127 m_resumed_pending_vcont_info.sig = sig;
1128 }
85ad3aaf 1129
c9d22089 1130 /* Get the information this thread's pending vCont-resumption.
85ad3aaf 1131
c9d22089
SM
1132 Must only be called if the thread is in the RESUMED_PENDING_VCONT resume
1133 state. */
1134 const struct resumed_pending_vcont_info &resumed_pending_vcont_info () const
1135 {
1136 gdb_assert (m_resume_state == resume_state::RESUMED_PENDING_VCONT);
1137
1138 return m_resumed_pending_vcont_info;
1139 }
1140
1141 /* Put the thread in the VCONT_RESUMED state. */
1142 void set_resumed ()
1143 {
1144 m_resume_state = resume_state::RESUMED;
1145 }
1146
1147private:
1148 /* Resume state for this thread. This is used to implement vCont action
1149 coalescing (only when the target operates in non-stop mode).
1150
1151 remote_target::resume moves the thread to the RESUMED_PENDING_VCONT state,
1152 which notes that this thread must be considered in the next commit_resume
1153 call.
1154
1155 remote_target::commit_resume sends a vCont packet with actions for the
1156 threads in the RESUMED_PENDING_VCONT state and moves them to the
1157 VCONT_RESUMED state.
1158
1159 When reporting a stop to the core for a thread, that thread is moved back
1160 to the NOT_RESUMED state. */
1161 enum resume_state m_resume_state = resume_state::NOT_RESUMED;
1162
1163 /* Extra info used if the thread is in the RESUMED_PENDING_VCONT state. */
1164 struct resumed_pending_vcont_info m_resumed_pending_vcont_info;
dc146f7c
VP
1165};
1166
de44f5a7 1167remote_state::remote_state ()
8d64371b 1168 : buf (400)
de44f5a7 1169{
de44f5a7
PA
1170}
1171
1172remote_state::~remote_state ()
1173{
1174 xfree (this->last_pass_packet);
1175 xfree (this->last_program_signals_packet);
de44f5a7
PA
1176 xfree (this->finished_object);
1177 xfree (this->finished_annex);
cf792862
TT
1178}
1179
35b1e5cc
SS
1180/* Utility: generate error from an incoming stub packet. */
1181static void
1182trace_error (char *buf)
1183{
1184 if (*buf++ != 'E')
1185 return; /* not an error msg */
1186 switch (*buf)
1187 {
1188 case '1': /* malformed packet error */
1189 if (*++buf == '0') /* general case: */
1190 error (_("remote.c: error in outgoing packet."));
1191 else
1192 error (_("remote.c: error in outgoing packet at field #%ld."),
1193 strtol (buf, NULL, 16));
35b1e5cc
SS
1194 default:
1195 error (_("Target returns error code '%s'."), buf);
1196 }
1197}
1198
1199/* Utility: wait for reply from stub, while accepting "O" packets. */
b6bb3468 1200
6b8edb51
PA
1201char *
1202remote_target::remote_get_noisy_reply ()
35b1e5cc 1203{
b6bb3468
PA
1204 struct remote_state *rs = get_remote_state ();
1205
35b1e5cc
SS
1206 do /* Loop on reply from remote stub. */
1207 {
1208 char *buf;
a744cf53 1209
0df8b418 1210 QUIT; /* Allow user to bail out with ^C. */
8d64371b
TT
1211 getpkt (&rs->buf, 0);
1212 buf = rs->buf.data ();
ad91cd99 1213 if (buf[0] == 'E')
35b1e5cc 1214 trace_error (buf);
61012eef 1215 else if (startswith (buf, "qRelocInsn:"))
dde08ee1
PA
1216 {
1217 ULONGEST ul;
1218 CORE_ADDR from, to, org_to;
256642e8 1219 const char *p, *pp;
dde08ee1 1220 int adjusted_size = 0;
7556d4a4 1221 int relocated = 0;
dde08ee1
PA
1222
1223 p = buf + strlen ("qRelocInsn:");
1224 pp = unpack_varlen_hex (p, &ul);
1225 if (*pp != ';')
cb91c06a 1226 error (_("invalid qRelocInsn packet: %s"), buf);
dde08ee1
PA
1227 from = ul;
1228
1229 p = pp + 1;
a9cbf802 1230 unpack_varlen_hex (p, &ul);
dde08ee1
PA
1231 to = ul;
1232
1233 org_to = to;
1234
a70b8144 1235 try
dde08ee1 1236 {
f5656ead 1237 gdbarch_relocate_instruction (target_gdbarch (), &to, from);
7556d4a4 1238 relocated = 1;
dde08ee1 1239 }
230d2906 1240 catch (const gdb_exception &ex)
7556d4a4
PA
1241 {
1242 if (ex.error == MEMORY_ERROR)
1243 {
1244 /* Propagate memory errors silently back to the
1245 target. The stub may have limited the range of
1246 addresses we can write to, for example. */
1247 }
1248 else
1249 {
1250 /* Something unexpectedly bad happened. Be verbose
1251 so we can tell what, and propagate the error back
1252 to the stub, so it doesn't get stuck waiting for
1253 a response. */
1254 exception_fprintf (gdb_stderr, ex,
1255 _("warning: relocating instruction: "));
1256 }
1257 putpkt ("E01");
1258 }
1259
1260 if (relocated)
dde08ee1
PA
1261 {
1262 adjusted_size = to - org_to;
1263
8d64371b 1264 xsnprintf (buf, rs->buf.size (), "qRelocInsn:%x", adjusted_size);
dde08ee1
PA
1265 putpkt (buf);
1266 }
dde08ee1 1267 }
ad91cd99 1268 else if (buf[0] == 'O' && buf[1] != 'K')
35b1e5cc
SS
1269 remote_console_output (buf + 1); /* 'O' message from stub */
1270 else
0df8b418 1271 return buf; /* Here's the actual reply. */
35b1e5cc
SS
1272 }
1273 while (1);
1274}
3c3bea1c 1275
9d6eea31
PA
1276struct remote_arch_state *
1277remote_state::get_remote_arch_state (struct gdbarch *gdbarch)
d01949b6 1278{
43c3a0e4
PA
1279 remote_arch_state *rsa;
1280
1281 auto it = this->m_arch_states.find (gdbarch);
1282 if (it == this->m_arch_states.end ())
9d6eea31 1283 {
43c3a0e4
PA
1284 auto p = this->m_arch_states.emplace (std::piecewise_construct,
1285 std::forward_as_tuple (gdbarch),
1286 std::forward_as_tuple (gdbarch));
1287 rsa = &p.first->second;
9d6eea31
PA
1288
1289 /* Make sure that the packet buffer is plenty big enough for
1290 this architecture. */
8d64371b
TT
1291 if (this->buf.size () < rsa->remote_packet_size)
1292 this->buf.resize (2 * rsa->remote_packet_size);
9d6eea31 1293 }
43c3a0e4
PA
1294 else
1295 rsa = &it->second;
1296
1297 return rsa;
d01949b6
AC
1298}
1299
0b83947e
DJ
1300/* Fetch the global remote target state. */
1301
6b8edb51
PA
1302remote_state *
1303remote_target::get_remote_state ()
0b83947e
DJ
1304{
1305 /* Make sure that the remote architecture state has been
1306 initialized, because doing so might reallocate rs->buf. Any
1307 function which calls getpkt also needs to be mindful of changes
1308 to rs->buf, but this call limits the number of places which run
1309 into trouble. */
3c69da40 1310 m_remote_state.get_remote_arch_state (target_gdbarch ());
0b83947e 1311
3c69da40 1312 return &m_remote_state;
0b83947e
DJ
1313}
1314
94585166
DB
1315/* Fetch the remote exec-file from the current program space. */
1316
1317static const char *
1318get_remote_exec_file (void)
1319{
1320 char *remote_exec_file;
1321
7b4a314f 1322 remote_exec_file = remote_pspace_data.get (current_program_space);
94585166
DB
1323 if (remote_exec_file == NULL)
1324 return "";
1325
1326 return remote_exec_file;
1327}
1328
1329/* Set the remote exec file for PSPACE. */
1330
1331static void
1332set_pspace_remote_exec_file (struct program_space *pspace,
7b4a314f 1333 const char *remote_exec_file)
94585166 1334{
7b4a314f 1335 char *old_file = remote_pspace_data.get (pspace);
94585166
DB
1336
1337 xfree (old_file);
7b4a314f 1338 remote_pspace_data.set (pspace, xstrdup (remote_exec_file));
94585166
DB
1339}
1340
1341/* The "set/show remote exec-file" set command hook. */
1342
1343static void
eb4c3f4a 1344set_remote_exec_file (const char *ignored, int from_tty,
94585166
DB
1345 struct cmd_list_element *c)
1346{
1347 gdb_assert (remote_exec_file_var != NULL);
1348 set_pspace_remote_exec_file (current_program_space, remote_exec_file_var);
1349}
1350
1351/* The "set/show remote exec-file" show command hook. */
1352
1353static void
1354show_remote_exec_file (struct ui_file *file, int from_tty,
1355 struct cmd_list_element *cmd, const char *value)
1356{
acdf84a6 1357 fprintf_filtered (file, "%s\n", get_remote_exec_file ());
94585166
DB
1358}
1359
c21236dc
PA
1360static int
1361map_regcache_remote_table (struct gdbarch *gdbarch, struct packet_reg *regs)
d01949b6 1362{
74ca34ce 1363 int regnum, num_remote_regs, offset;
74ca34ce 1364 struct packet_reg **remote_regs;
ea9c271d 1365
4a22f64d 1366 for (regnum = 0; regnum < gdbarch_num_regs (gdbarch); regnum++)
ad10f812 1367 {
c21236dc 1368 struct packet_reg *r = &regs[regnum];
baef701f 1369
4a22f64d 1370 if (register_size (gdbarch, regnum) == 0)
baef701f
DJ
1371 /* Do not try to fetch zero-sized (placeholder) registers. */
1372 r->pnum = -1;
1373 else
1374 r->pnum = gdbarch_remote_register_number (gdbarch, regnum);
1375
b323314b 1376 r->regnum = regnum;
74ca34ce
DJ
1377 }
1378
1379 /* Define the g/G packet format as the contents of each register
1380 with a remote protocol number, in order of ascending protocol
1381 number. */
1382
224c3ddb 1383 remote_regs = XALLOCAVEC (struct packet_reg *, gdbarch_num_regs (gdbarch));
f57d151a 1384 for (num_remote_regs = 0, regnum = 0;
4a22f64d 1385 regnum < gdbarch_num_regs (gdbarch);
f57d151a 1386 regnum++)
c21236dc
PA
1387 if (regs[regnum].pnum != -1)
1388 remote_regs[num_remote_regs++] = &regs[regnum];
7d58c67d 1389
39ef2f62
CB
1390 std::sort (remote_regs, remote_regs + num_remote_regs,
1391 [] (const packet_reg *a, const packet_reg *b)
1392 { return a->pnum < b->pnum; });
74ca34ce
DJ
1393
1394 for (regnum = 0, offset = 0; regnum < num_remote_regs; regnum++)
1395 {
1396 remote_regs[regnum]->in_g_packet = 1;
1397 remote_regs[regnum]->offset = offset;
4a22f64d 1398 offset += register_size (gdbarch, remote_regs[regnum]->regnum);
ad10f812
AC
1399 }
1400
c21236dc
PA
1401 return offset;
1402}
1403
1404/* Given the architecture described by GDBARCH, return the remote
1405 protocol register's number and the register's offset in the g/G
1406 packets of GDB register REGNUM, in PNUM and POFFSET respectively.
1407 If the target does not have a mapping for REGNUM, return false,
1408 otherwise, return true. */
1409
1410int
1411remote_register_number_and_offset (struct gdbarch *gdbarch, int regnum,
1412 int *pnum, int *poffset)
1413{
c21236dc
PA
1414 gdb_assert (regnum < gdbarch_num_regs (gdbarch));
1415
b80406ac 1416 std::vector<packet_reg> regs (gdbarch_num_regs (gdbarch));
c21236dc 1417
b80406ac 1418 map_regcache_remote_table (gdbarch, regs.data ());
c21236dc
PA
1419
1420 *pnum = regs[regnum].pnum;
1421 *poffset = regs[regnum].offset;
1422
c21236dc
PA
1423 return *pnum != -1;
1424}
1425
9d6eea31 1426remote_arch_state::remote_arch_state (struct gdbarch *gdbarch)
c21236dc 1427{
c21236dc
PA
1428 /* Use the architecture to build a regnum<->pnum table, which will be
1429 1:1 unless a feature set specifies otherwise. */
9d6eea31 1430 this->regs.reset (new packet_reg [gdbarch_num_regs (gdbarch)] ());
c21236dc 1431
74ca34ce
DJ
1432 /* Record the maximum possible size of the g packet - it may turn out
1433 to be smaller. */
9d6eea31
PA
1434 this->sizeof_g_packet
1435 = map_regcache_remote_table (gdbarch, this->regs.get ());
74ca34ce 1436
0df8b418 1437 /* Default maximum number of characters in a packet body. Many
d01949b6
AC
1438 remote stubs have a hardwired buffer size of 400 bytes
1439 (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
1440 as the maximum packet-size to ensure that the packet and an extra
1441 NUL character can always fit in the buffer. This stops GDB
1442 trashing stubs that try to squeeze an extra NUL into what is
ea9c271d 1443 already a full buffer (As of 1999-12-04 that was most stubs). */
9d6eea31 1444 this->remote_packet_size = 400 - 1;
d01949b6 1445
ea9c271d 1446 /* This one is filled in when a ``g'' packet is received. */
9d6eea31 1447 this->actual_register_packet_size = 0;
ea9c271d
DJ
1448
1449 /* Should rsa->sizeof_g_packet needs more space than the
0df8b418
MS
1450 default, adjust the size accordingly. Remember that each byte is
1451 encoded as two characters. 32 is the overhead for the packet
1452 header / footer. NOTE: cagney/1999-10-26: I suspect that 8
d01949b6 1453 (``$NN:G...#NN'') is a better guess, the below has been padded a
23860348 1454 little. */
9d6eea31
PA
1455 if (this->sizeof_g_packet > ((this->remote_packet_size - 32) / 2))
1456 this->remote_packet_size = (this->sizeof_g_packet * 2 + 32);
ea9c271d
DJ
1457}
1458
6b8edb51
PA
1459/* Get a pointer to the current remote target. If not connected to a
1460 remote target, return NULL. */
1461
1462static remote_target *
1463get_current_remote_target ()
1464{
5b6d1e4f 1465 target_ops *proc_target = current_inferior ()->process_target ();
6b8edb51
PA
1466 return dynamic_cast<remote_target *> (proc_target);
1467}
1468
ea9c271d
DJ
1469/* Return the current allowed size of a remote packet. This is
1470 inferred from the current architecture, and should be used to
1471 limit the length of outgoing packets. */
6b8edb51
PA
1472long
1473remote_target::get_remote_packet_size ()
ea9c271d 1474{
be2a5f71 1475 struct remote_state *rs = get_remote_state ();
9d6eea31 1476 remote_arch_state *rsa = rs->get_remote_arch_state (target_gdbarch ());
ea9c271d 1477
be2a5f71
DJ
1478 if (rs->explicit_packet_size)
1479 return rs->explicit_packet_size;
1480
ea9c271d 1481 return rsa->remote_packet_size;
d01949b6
AC
1482}
1483
ad10f812 1484static struct packet_reg *
5cd63fda
PA
1485packet_reg_from_regnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
1486 long regnum)
ad10f812 1487{
5cd63fda 1488 if (regnum < 0 && regnum >= gdbarch_num_regs (gdbarch))
b323314b
AC
1489 return NULL;
1490 else
ad10f812 1491 {
ea9c271d 1492 struct packet_reg *r = &rsa->regs[regnum];
a744cf53 1493
b323314b
AC
1494 gdb_assert (r->regnum == regnum);
1495 return r;
ad10f812 1496 }
ad10f812
AC
1497}
1498
1499static struct packet_reg *
5cd63fda
PA
1500packet_reg_from_pnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
1501 LONGEST pnum)
ad10f812 1502{
b323314b 1503 int i;
a744cf53 1504
5cd63fda 1505 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
ad10f812 1506 {
ea9c271d 1507 struct packet_reg *r = &rsa->regs[i];
a744cf53 1508
b323314b
AC
1509 if (r->pnum == pnum)
1510 return r;
ad10f812
AC
1511 }
1512 return NULL;
d01949b6
AC
1513}
1514
9a7071a8
JB
1515/* Allow the user to specify what sequence to send to the remote
1516 when he requests a program interruption: Although ^C is usually
1517 what remote systems expect (this is the default, here), it is
1518 sometimes preferable to send a break. On other systems such
1519 as the Linux kernel, a break followed by g, which is Magic SysRq g
1520 is required in order to interrupt the execution. */
1521const char interrupt_sequence_control_c[] = "Ctrl-C";
1522const char interrupt_sequence_break[] = "BREAK";
1523const char interrupt_sequence_break_g[] = "BREAK-g";
40478521 1524static const char *const interrupt_sequence_modes[] =
9a7071a8
JB
1525 {
1526 interrupt_sequence_control_c,
1527 interrupt_sequence_break,
1528 interrupt_sequence_break_g,
1529 NULL
1530 };
1531static const char *interrupt_sequence_mode = interrupt_sequence_control_c;
1532
1533static void
1534show_interrupt_sequence (struct ui_file *file, int from_tty,
1535 struct cmd_list_element *c,
1536 const char *value)
1537{
1538 if (interrupt_sequence_mode == interrupt_sequence_control_c)
1539 fprintf_filtered (file,
1540 _("Send the ASCII ETX character (Ctrl-c) "
1541 "to the remote target to interrupt the "
1542 "execution of the program.\n"));
1543 else if (interrupt_sequence_mode == interrupt_sequence_break)
1544 fprintf_filtered (file,
1545 _("send a break signal to the remote target "
1546 "to interrupt the execution of the program.\n"));
1547 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
1548 fprintf_filtered (file,
1549 _("Send a break signal and 'g' a.k.a. Magic SysRq g to "
1550 "the remote target to interrupt the execution "
1551 "of Linux kernel.\n"));
1552 else
1553 internal_error (__FILE__, __LINE__,
1554 _("Invalid value for interrupt_sequence_mode: %s."),
1555 interrupt_sequence_mode);
1556}
6426a772 1557
9a7071a8
JB
1558/* This boolean variable specifies whether interrupt_sequence is sent
1559 to the remote target when gdb connects to it.
1560 This is mostly needed when you debug the Linux kernel: The Linux kernel
1561 expects BREAK g which is Magic SysRq g for connecting gdb. */
491144b5 1562static bool interrupt_on_connect = false;
c906108c 1563
9a7071a8
JB
1564/* This variable is used to implement the "set/show remotebreak" commands.
1565 Since these commands are now deprecated in favor of "set/show remote
1566 interrupt-sequence", it no longer has any effect on the code. */
491144b5 1567static bool remote_break;
c906108c 1568
9a7071a8 1569static void
eb4c3f4a 1570set_remotebreak (const char *args, int from_tty, struct cmd_list_element *c)
9a7071a8
JB
1571{
1572 if (remote_break)
1573 interrupt_sequence_mode = interrupt_sequence_break;
1574 else
1575 interrupt_sequence_mode = interrupt_sequence_control_c;
1576}
1577
1578static void
1579show_remotebreak (struct ui_file *file, int from_tty,
1580 struct cmd_list_element *c,
1581 const char *value)
1582{
1583}
1584
c906108c
SS
1585/* This variable sets the number of bits in an address that are to be
1586 sent in a memory ("M" or "m") packet. Normally, after stripping
0df8b418 1587 leading zeros, the entire address would be sent. This variable
c906108c
SS
1588 restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
1589 initial implementation of remote.c restricted the address sent in
1590 memory packets to ``host::sizeof long'' bytes - (typically 32
1591 bits). Consequently, for 64 bit targets, the upper 32 bits of an
1592 address was never sent. Since fixing this bug may cause a break in
85102364 1593 some remote targets this variable is principally provided to
23860348 1594 facilitate backward compatibility. */
c906108c 1595
883b9c6c 1596static unsigned int remote_address_size;
c906108c 1597
11cf8741 1598\f
11cf8741 1599/* User configurable variables for the number of characters in a
ea9c271d
DJ
1600 memory read/write packet. MIN (rsa->remote_packet_size,
1601 rsa->sizeof_g_packet) is the default. Some targets need smaller
24b06219 1602 values (fifo overruns, et.al.) and some users need larger values
ad10f812
AC
1603 (speed up transfers). The variables ``preferred_*'' (the user
1604 request), ``current_*'' (what was actually set) and ``forced_*''
23860348 1605 (Positive - a soft limit, negative - a hard limit). */
11cf8741
JM
1606
1607struct memory_packet_config
1608{
a121b7c1 1609 const char *name;
11cf8741
JM
1610 long size;
1611 int fixed_p;
1612};
1613
cc0be08f
PA
1614/* The default max memory-write-packet-size, when the setting is
1615 "fixed". The 16k is historical. (It came from older GDB's using
1616 alloca for buffers and the knowledge (folklore?) that some hosts
1617 don't cope very well with large alloca calls.) */
1618#define DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED 16384
a5c0808e
PA
1619
1620/* The minimum remote packet size for memory transfers. Ensures we
1621 can write at least one byte. */
1622#define MIN_MEMORY_PACKET_SIZE 20
1623
cc0be08f
PA
1624/* Get the memory packet size, assuming it is fixed. */
1625
1626static long
1627get_fixed_memory_packet_size (struct memory_packet_config *config)
1628{
1629 gdb_assert (config->fixed_p);
1630
1631 if (config->size <= 0)
1632 return DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED;
1633 else
1634 return config->size;
1635}
1636
11cf8741
JM
1637/* Compute the current size of a read/write packet. Since this makes
1638 use of ``actual_register_packet_size'' the computation is dynamic. */
1639
6b8edb51
PA
1640long
1641remote_target::get_memory_packet_size (struct memory_packet_config *config)
11cf8741 1642{
d01949b6 1643 struct remote_state *rs = get_remote_state ();
9d6eea31 1644 remote_arch_state *rsa = rs->get_remote_arch_state (target_gdbarch ());
ea9c271d 1645
11cf8741
JM
1646 long what_they_get;
1647 if (config->fixed_p)
cc0be08f 1648 what_they_get = get_fixed_memory_packet_size (config);
11cf8741
JM
1649 else
1650 {
ea9c271d 1651 what_they_get = get_remote_packet_size ();
23860348 1652 /* Limit the packet to the size specified by the user. */
11cf8741
JM
1653 if (config->size > 0
1654 && what_they_get > config->size)
1655 what_they_get = config->size;
be2a5f71
DJ
1656
1657 /* Limit it to the size of the targets ``g'' response unless we have
1658 permission from the stub to use a larger packet size. */
1659 if (rs->explicit_packet_size == 0
1660 && rsa->actual_register_packet_size > 0
1661 && what_they_get > rsa->actual_register_packet_size)
1662 what_they_get = rsa->actual_register_packet_size;
11cf8741 1663 }
a5c0808e
PA
1664 if (what_they_get < MIN_MEMORY_PACKET_SIZE)
1665 what_they_get = MIN_MEMORY_PACKET_SIZE;
6d820c5c
DJ
1666
1667 /* Make sure there is room in the global buffer for this packet
1668 (including its trailing NUL byte). */
8d64371b
TT
1669 if (rs->buf.size () < what_they_get + 1)
1670 rs->buf.resize (2 * what_they_get);
6d820c5c 1671
11cf8741
JM
1672 return what_they_get;
1673}
1674
0df8b418 1675/* Update the size of a read/write packet. If they user wants
23860348 1676 something really big then do a sanity check. */
11cf8741
JM
1677
1678static void
ac88e2de 1679set_memory_packet_size (const char *args, struct memory_packet_config *config)
11cf8741
JM
1680{
1681 int fixed_p = config->fixed_p;
1682 long size = config->size;
a744cf53 1683
11cf8741 1684 if (args == NULL)
8a3fe4f8 1685 error (_("Argument required (integer, `fixed' or `limited')."));
11cf8741
JM
1686 else if (strcmp (args, "hard") == 0
1687 || strcmp (args, "fixed") == 0)
1688 fixed_p = 1;
1689 else if (strcmp (args, "soft") == 0
1690 || strcmp (args, "limit") == 0)
1691 fixed_p = 0;
1692 else
1693 {
1694 char *end;
a744cf53 1695
11cf8741
JM
1696 size = strtoul (args, &end, 0);
1697 if (args == end)
8a3fe4f8 1698 error (_("Invalid %s (bad syntax)."), config->name);
a5c0808e
PA
1699
1700 /* Instead of explicitly capping the size of a packet to or
1701 disallowing it, the user is allowed to set the size to
1702 something arbitrarily large. */
11cf8741 1703 }
a5c0808e 1704
23860348 1705 /* Extra checks? */
11cf8741
JM
1706 if (fixed_p && !config->fixed_p)
1707 {
cc0be08f
PA
1708 /* So that the query shows the correct value. */
1709 long query_size = (size <= 0
1710 ? DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED
1711 : size);
1712
e2e0b3e5
AC
1713 if (! query (_("The target may not be able to correctly handle a %s\n"
1714 "of %ld bytes. Change the packet size? "),
cc0be08f 1715 config->name, query_size))
8a3fe4f8 1716 error (_("Packet size not changed."));
11cf8741 1717 }
23860348 1718 /* Update the config. */
11cf8741
JM
1719 config->fixed_p = fixed_p;
1720 config->size = size;
1721}
1722
1723static void
1724show_memory_packet_size (struct memory_packet_config *config)
1725{
cc0be08f
PA
1726 if (config->size == 0)
1727 printf_filtered (_("The %s is 0 (default). "), config->name);
1728 else
1729 printf_filtered (_("The %s is %ld. "), config->name, config->size);
11cf8741 1730 if (config->fixed_p)
a3f17187 1731 printf_filtered (_("Packets are fixed at %ld bytes.\n"),
cc0be08f 1732 get_fixed_memory_packet_size (config));
11cf8741 1733 else
cc0be08f 1734 {
6b8edb51 1735 remote_target *remote = get_current_remote_target ();
cc0be08f 1736
6b8edb51 1737 if (remote != NULL)
cc0be08f 1738 printf_filtered (_("Packets are limited to %ld bytes.\n"),
6b8edb51 1739 remote->get_memory_packet_size (config));
cc0be08f
PA
1740 else
1741 puts_filtered ("The actual limit will be further reduced "
1742 "dependent on the target.\n");
1743 }
11cf8741
JM
1744}
1745
5b6d1e4f 1746/* FIXME: needs to be per-remote-target. */
11cf8741
JM
1747static struct memory_packet_config memory_write_packet_config =
1748{
1749 "memory-write-packet-size",
1750};
1751
1752static void
ac88e2de 1753set_memory_write_packet_size (const char *args, int from_tty)
11cf8741
JM
1754{
1755 set_memory_packet_size (args, &memory_write_packet_config);
1756}
1757
1758static void
ac88e2de 1759show_memory_write_packet_size (const char *args, int from_tty)
11cf8741
JM
1760{
1761 show_memory_packet_size (&memory_write_packet_config);
1762}
1763
055303e2
AB
1764/* Show the number of hardware watchpoints that can be used. */
1765
1766static void
1767show_hardware_watchpoint_limit (struct ui_file *file, int from_tty,
1768 struct cmd_list_element *c,
1769 const char *value)
1770{
1771 fprintf_filtered (file, _("The maximum number of target hardware "
1772 "watchpoints is %s.\n"), value);
1773}
1774
1775/* Show the length limit (in bytes) for hardware watchpoints. */
1776
1777static void
1778show_hardware_watchpoint_length_limit (struct ui_file *file, int from_tty,
1779 struct cmd_list_element *c,
1780 const char *value)
1781{
1782 fprintf_filtered (file, _("The maximum length (in bytes) of a target "
1783 "hardware watchpoint is %s.\n"), value);
1784}
1785
1786/* Show the number of hardware breakpoints that can be used. */
1787
1788static void
1789show_hardware_breakpoint_limit (struct ui_file *file, int from_tty,
1790 struct cmd_list_element *c,
1791 const char *value)
1792{
1793 fprintf_filtered (file, _("The maximum number of target hardware "
1794 "breakpoints is %s.\n"), value);
1795}
1796
6cc8564b
LM
1797/* Controls the maximum number of characters to display in the debug output
1798 for each remote packet. The remaining characters are omitted. */
1799
1800static int remote_packet_max_chars = 512;
1801
1802/* Show the maximum number of characters to display for each remote packet
1803 when remote debugging is enabled. */
1804
1805static void
1806show_remote_packet_max_chars (struct ui_file *file, int from_tty,
1807 struct cmd_list_element *c,
1808 const char *value)
1809{
1810 fprintf_filtered (file, _("Number of remote packet characters to "
1811 "display is %s.\n"), value);
1812}
1813
6b8edb51
PA
1814long
1815remote_target::get_memory_write_packet_size ()
11cf8741
JM
1816{
1817 return get_memory_packet_size (&memory_write_packet_config);
1818}
1819
5b6d1e4f 1820/* FIXME: needs to be per-remote-target. */
11cf8741
JM
1821static struct memory_packet_config memory_read_packet_config =
1822{
1823 "memory-read-packet-size",
1824};
1825
1826static void
ac88e2de 1827set_memory_read_packet_size (const char *args, int from_tty)
11cf8741
JM
1828{
1829 set_memory_packet_size (args, &memory_read_packet_config);
1830}
1831
1832static void
ac88e2de 1833show_memory_read_packet_size (const char *args, int from_tty)
11cf8741
JM
1834{
1835 show_memory_packet_size (&memory_read_packet_config);
1836}
1837
6b8edb51
PA
1838long
1839remote_target::get_memory_read_packet_size ()
11cf8741
JM
1840{
1841 long size = get_memory_packet_size (&memory_read_packet_config);
a744cf53 1842
11cf8741
JM
1843 /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
1844 extra buffer size argument before the memory read size can be
ea9c271d
DJ
1845 increased beyond this. */
1846 if (size > get_remote_packet_size ())
1847 size = get_remote_packet_size ();
11cf8741
JM
1848 return size;
1849}
1850
11cf8741 1851\f
5a2468f5 1852
5a2468f5
JM
1853struct packet_config
1854 {
bb572ddd
DJ
1855 const char *name;
1856 const char *title;
4082afcc
PA
1857
1858 /* If auto, GDB auto-detects support for this packet or feature,
1859 either through qSupported, or by trying the packet and looking
1860 at the response. If true, GDB assumes the target supports this
ca4f7f8b
PA
1861 packet. If false, the packet is disabled. Configs that don't
1862 have an associated command always have this set to auto. */
7f19b9a2 1863 enum auto_boolean detect;
4082afcc
PA
1864
1865 /* Does the target support this packet? */
5a2468f5
JM
1866 enum packet_support support;
1867 };
1868
4082afcc
PA
1869static enum packet_support packet_config_support (struct packet_config *config);
1870static enum packet_support packet_support (int packet);
5a2468f5
JM
1871
1872static void
fba45db2 1873show_packet_config_cmd (struct packet_config *config)
5a2468f5 1874{
a121b7c1 1875 const char *support = "internal-error";
a744cf53 1876
4082afcc 1877 switch (packet_config_support (config))
5a2468f5
JM
1878 {
1879 case PACKET_ENABLE:
1880 support = "enabled";
1881 break;
1882 case PACKET_DISABLE:
1883 support = "disabled";
1884 break;
1885 case PACKET_SUPPORT_UNKNOWN:
1886 support = "unknown";
1887 break;
1888 }
1889 switch (config->detect)
1890 {
7f19b9a2 1891 case AUTO_BOOLEAN_AUTO:
3e43a32a
MS
1892 printf_filtered (_("Support for the `%s' packet "
1893 "is auto-detected, currently %s.\n"),
37a105a1 1894 config->name, support);
5a2468f5 1895 break;
7f19b9a2
AC
1896 case AUTO_BOOLEAN_TRUE:
1897 case AUTO_BOOLEAN_FALSE:
37a105a1
DJ
1898 printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
1899 config->name, support);
8e248173 1900 break;
5a2468f5
JM
1901 }
1902}
1903
1904static void
bb572ddd
DJ
1905add_packet_config_cmd (struct packet_config *config, const char *name,
1906 const char *title, int legacy)
d471ea57 1907{
5a2468f5
JM
1908 char *set_doc;
1909 char *show_doc;
d471ea57 1910 char *cmd_name;
3ed07be4 1911
5a2468f5
JM
1912 config->name = name;
1913 config->title = title;
590042fc 1914 set_doc = xstrprintf ("Set use of remote protocol `%s' (%s) packet.",
b435e160 1915 name, title);
3e43a32a 1916 show_doc = xstrprintf ("Show current use of remote "
590042fc 1917 "protocol `%s' (%s) packet.",
b435e160 1918 name, title);
d471ea57 1919 /* set/show TITLE-packet {auto,on,off} */
b435e160 1920 cmd_name = xstrprintf ("%s-packet", title);
e9e68a56 1921 add_setshow_auto_boolean_cmd (cmd_name, class_obscure,
3e43a32a
MS
1922 &config->detect, set_doc,
1923 show_doc, NULL, /* help_doc */
4082afcc 1924 NULL,
bb572ddd
DJ
1925 show_remote_protocol_packet_cmd,
1926 &remote_set_cmdlist, &remote_show_cmdlist);
1eefb858
TT
1927 /* The command code copies the documentation strings. */
1928 xfree (set_doc);
1929 xfree (show_doc);
23860348 1930 /* set/show remote NAME-packet {auto,on,off} -- legacy. */
d471ea57
AC
1931 if (legacy)
1932 {
1933 char *legacy_name;
a744cf53 1934
b435e160 1935 legacy_name = xstrprintf ("%s-packet", name);
d471ea57 1936 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
bb572ddd 1937 &remote_set_cmdlist);
d471ea57 1938 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
bb572ddd 1939 &remote_show_cmdlist);
d471ea57 1940 }
5a2468f5
JM
1941}
1942
d471ea57 1943static enum packet_result
a76d924d 1944packet_check_result (const char *buf)
5a2468f5 1945{
d471ea57 1946 if (buf[0] != '\0')
5a2468f5 1947 {
d471ea57 1948 /* The stub recognized the packet request. Check that the
23860348 1949 operation succeeded. */
a76d924d
DJ
1950 if (buf[0] == 'E'
1951 && isxdigit (buf[1]) && isxdigit (buf[2])
1952 && buf[3] == '\0')
85102364 1953 /* "Enn" - definitely an error. */
a76d924d
DJ
1954 return PACKET_ERROR;
1955
1956 /* Always treat "E." as an error. This will be used for
1957 more verbose error messages, such as E.memtypes. */
1958 if (buf[0] == 'E' && buf[1] == '.')
1959 return PACKET_ERROR;
1960
1961 /* The packet may or may not be OK. Just assume it is. */
1962 return PACKET_OK;
1963 }
1964 else
1965 /* The stub does not support the packet. */
1966 return PACKET_UNKNOWN;
1967}
1968
8d64371b
TT
1969static enum packet_result
1970packet_check_result (const gdb::char_vector &buf)
1971{
1972 return packet_check_result (buf.data ());
1973}
1974
a76d924d
DJ
1975static enum packet_result
1976packet_ok (const char *buf, struct packet_config *config)
1977{
1978 enum packet_result result;
1979
4082afcc
PA
1980 if (config->detect != AUTO_BOOLEAN_TRUE
1981 && config->support == PACKET_DISABLE)
1982 internal_error (__FILE__, __LINE__,
1983 _("packet_ok: attempt to use a disabled packet"));
1984
a76d924d
DJ
1985 result = packet_check_result (buf);
1986 switch (result)
1987 {
1988 case PACKET_OK:
1989 case PACKET_ERROR:
1990 /* The stub recognized the packet request. */
4082afcc 1991 if (config->support == PACKET_SUPPORT_UNKNOWN)
d471ea57 1992 {
d471ea57
AC
1993 if (remote_debug)
1994 fprintf_unfiltered (gdb_stdlog,
4082afcc
PA
1995 "Packet %s (%s) is supported\n",
1996 config->name, config->title);
d471ea57 1997 config->support = PACKET_ENABLE;
d471ea57 1998 }
a76d924d
DJ
1999 break;
2000 case PACKET_UNKNOWN:
23860348 2001 /* The stub does not support the packet. */
4082afcc
PA
2002 if (config->detect == AUTO_BOOLEAN_AUTO
2003 && config->support == PACKET_ENABLE)
d471ea57 2004 {
4082afcc
PA
2005 /* If the stub previously indicated that the packet was
2006 supported then there is a protocol error. */
2007 error (_("Protocol error: %s (%s) conflicting enabled responses."),
2008 config->name, config->title);
2009 }
2010 else if (config->detect == AUTO_BOOLEAN_TRUE)
2011 {
2012 /* The user set it wrong. */
2013 error (_("Enabled packet %s (%s) not recognized by stub"),
2014 config->name, config->title);
d471ea57 2015 }
4082afcc
PA
2016
2017 if (remote_debug)
2018 fprintf_unfiltered (gdb_stdlog,
2019 "Packet %s (%s) is NOT supported\n",
2020 config->name, config->title);
2021 config->support = PACKET_DISABLE;
a76d924d 2022 break;
5a2468f5 2023 }
a76d924d
DJ
2024
2025 return result;
5a2468f5
JM
2026}
2027
8d64371b
TT
2028static enum packet_result
2029packet_ok (const gdb::char_vector &buf, struct packet_config *config)
2030{
2031 return packet_ok (buf.data (), config);
2032}
2033
444abaca
DJ
2034enum {
2035 PACKET_vCont = 0,
2036 PACKET_X,
2037 PACKET_qSymbol,
2038 PACKET_P,
2039 PACKET_p,
2040 PACKET_Z0,
2041 PACKET_Z1,
2042 PACKET_Z2,
2043 PACKET_Z3,
2044 PACKET_Z4,
15a201c8 2045 PACKET_vFile_setfs,
a6b151f1
DJ
2046 PACKET_vFile_open,
2047 PACKET_vFile_pread,
2048 PACKET_vFile_pwrite,
2049 PACKET_vFile_close,
2050 PACKET_vFile_unlink,
b9e7b9c3 2051 PACKET_vFile_readlink,
0a93529c 2052 PACKET_vFile_fstat,
0876f84a 2053 PACKET_qXfer_auxv,
23181151 2054 PACKET_qXfer_features,
c78fa86a 2055 PACKET_qXfer_exec_file,
cfa9d6d9 2056 PACKET_qXfer_libraries,
2268b414 2057 PACKET_qXfer_libraries_svr4,
fd79ecee 2058 PACKET_qXfer_memory_map,
07e059b5 2059 PACKET_qXfer_osdata,
dc146f7c 2060 PACKET_qXfer_threads,
0fb4aa4b 2061 PACKET_qXfer_statictrace_read,
b3b9301e 2062 PACKET_qXfer_traceframe_info,
169081d0 2063 PACKET_qXfer_uib,
711e434b 2064 PACKET_qGetTIBAddr,
444abaca 2065 PACKET_qGetTLSAddr,
be2a5f71 2066 PACKET_qSupported,
bd3eecc3 2067 PACKET_qTStatus,
89be2091 2068 PACKET_QPassSignals,
82075af2 2069 PACKET_QCatchSyscalls,
9b224c5e 2070 PACKET_QProgramSignals,
bc3b087d 2071 PACKET_QSetWorkingDir,
aefd8b33 2072 PACKET_QStartupWithShell,
0a2dde4a
SDJ
2073 PACKET_QEnvironmentHexEncoded,
2074 PACKET_QEnvironmentReset,
2075 PACKET_QEnvironmentUnset,
936d2992 2076 PACKET_qCRC,
08388c79 2077 PACKET_qSearch_memory,
2d717e4f
DJ
2078 PACKET_vAttach,
2079 PACKET_vRun,
a6f3e723 2080 PACKET_QStartNoAckMode,
82f73884 2081 PACKET_vKill,
4aa995e1
PA
2082 PACKET_qXfer_siginfo_read,
2083 PACKET_qXfer_siginfo_write,
0b16c5cf 2084 PACKET_qAttached,
4082afcc
PA
2085
2086 /* Support for conditional tracepoints. */
782b2b07 2087 PACKET_ConditionalTracepoints,
4082afcc
PA
2088
2089 /* Support for target-side breakpoint conditions. */
3788aec7 2090 PACKET_ConditionalBreakpoints,
4082afcc
PA
2091
2092 /* Support for target-side breakpoint commands. */
d3ce09f5 2093 PACKET_BreakpointCommands,
4082afcc
PA
2094
2095 /* Support for fast tracepoints. */
7a697b8d 2096 PACKET_FastTracepoints,
4082afcc
PA
2097
2098 /* Support for static tracepoints. */
0fb4aa4b 2099 PACKET_StaticTracepoints,
4082afcc
PA
2100
2101 /* Support for installing tracepoints while a trace experiment is
2102 running. */
1e4d1764 2103 PACKET_InstallInTrace,
4082afcc 2104
40ab02ce
MS
2105 PACKET_bc,
2106 PACKET_bs,
409873ef 2107 PACKET_TracepointSource,
d914c394 2108 PACKET_QAllow,
78d85199 2109 PACKET_qXfer_fdpic,
03583c20 2110 PACKET_QDisableRandomization,
d1feda86 2111 PACKET_QAgent,
f6f899bf 2112 PACKET_QTBuffer_size,
9accd112
MM
2113 PACKET_Qbtrace_off,
2114 PACKET_Qbtrace_bts,
b20a6524 2115 PACKET_Qbtrace_pt,
9accd112 2116 PACKET_qXfer_btrace,
4082afcc
PA
2117
2118 /* Support for the QNonStop packet. */
2119 PACKET_QNonStop,
2120
65706a29
PA
2121 /* Support for the QThreadEvents packet. */
2122 PACKET_QThreadEvents,
2123
4082afcc
PA
2124 /* Support for multi-process extensions. */
2125 PACKET_multiprocess_feature,
2126
2127 /* Support for enabling and disabling tracepoints while a trace
2128 experiment is running. */
2129 PACKET_EnableDisableTracepoints_feature,
2130
2131 /* Support for collecting strings using the tracenz bytecode. */
2132 PACKET_tracenz_feature,
2133
2134 /* Support for continuing to run a trace experiment while GDB is
2135 disconnected. */
2136 PACKET_DisconnectedTracing_feature,
2137
2138 /* Support for qXfer:libraries-svr4:read with a non-empty annex. */
2139 PACKET_augmented_libraries_svr4_read_feature,
2140
f4abbc16
MM
2141 /* Support for the qXfer:btrace-conf:read packet. */
2142 PACKET_qXfer_btrace_conf,
2143
d33501a5
MM
2144 /* Support for the Qbtrace-conf:bts:size packet. */
2145 PACKET_Qbtrace_conf_bts_size,
2146
f7e6eed5
PA
2147 /* Support for swbreak+ feature. */
2148 PACKET_swbreak_feature,
2149
2150 /* Support for hwbreak+ feature. */
2151 PACKET_hwbreak_feature,
2152
89245bc0
DB
2153 /* Support for fork events. */
2154 PACKET_fork_event_feature,
2155
2156 /* Support for vfork events. */
2157 PACKET_vfork_event_feature,
2158
b20a6524
MM
2159 /* Support for the Qbtrace-conf:pt:size packet. */
2160 PACKET_Qbtrace_conf_pt_size,
2161
94585166
DB
2162 /* Support for exec events. */
2163 PACKET_exec_event_feature,
2164
750ce8d1
YQ
2165 /* Support for query supported vCont actions. */
2166 PACKET_vContSupported,
2167
de979965
PA
2168 /* Support remote CTRL-C. */
2169 PACKET_vCtrlC,
2170
f2faf941
PA
2171 /* Support TARGET_WAITKIND_NO_RESUMED. */
2172 PACKET_no_resumed,
2173
444abaca
DJ
2174 PACKET_MAX
2175};
506fb367 2176
5b6d1e4f
PA
2177/* FIXME: needs to be per-remote-target. Ignoring this for now,
2178 assuming all remote targets are the same server (thus all support
2179 the same packets). */
444abaca 2180static struct packet_config remote_protocol_packets[PACKET_MAX];
dc8acb97 2181
f7e6eed5
PA
2182/* Returns the packet's corresponding "set remote foo-packet" command
2183 state. See struct packet_config for more details. */
2184
2185static enum auto_boolean
2186packet_set_cmd_state (int packet)
2187{
2188 return remote_protocol_packets[packet].detect;
2189}
2190
4082afcc
PA
2191/* Returns whether a given packet or feature is supported. This takes
2192 into account the state of the corresponding "set remote foo-packet"
2193 command, which may be used to bypass auto-detection. */
dc8acb97 2194
4082afcc
PA
2195static enum packet_support
2196packet_config_support (struct packet_config *config)
2197{
2198 switch (config->detect)
444abaca 2199 {
4082afcc
PA
2200 case AUTO_BOOLEAN_TRUE:
2201 return PACKET_ENABLE;
2202 case AUTO_BOOLEAN_FALSE:
2203 return PACKET_DISABLE;
2204 case AUTO_BOOLEAN_AUTO:
2205 return config->support;
2206 default:
2207 gdb_assert_not_reached (_("bad switch"));
444abaca 2208 }
4082afcc
PA
2209}
2210
2211/* Same as packet_config_support, but takes the packet's enum value as
2212 argument. */
2213
2214static enum packet_support
2215packet_support (int packet)
2216{
2217 struct packet_config *config = &remote_protocol_packets[packet];
2218
2219 return packet_config_support (config);
dc8acb97
MS
2220}
2221
5a2468f5 2222static void
444abaca
DJ
2223show_remote_protocol_packet_cmd (struct ui_file *file, int from_tty,
2224 struct cmd_list_element *c,
2225 const char *value)
5a2468f5 2226{
444abaca 2227 struct packet_config *packet;
5a2468f5 2228
444abaca
DJ
2229 for (packet = remote_protocol_packets;
2230 packet < &remote_protocol_packets[PACKET_MAX];
2231 packet++)
2232 {
2233 if (&packet->detect == c->var)
2234 {
2235 show_packet_config_cmd (packet);
2236 return;
2237 }
2238 }
9b20d036 2239 internal_error (__FILE__, __LINE__, _("Could not find config for %s"),
444abaca 2240 c->name);
5a2468f5
JM
2241}
2242
d471ea57
AC
2243/* Should we try one of the 'Z' requests? */
2244
2245enum Z_packet_type
2246{
2247 Z_PACKET_SOFTWARE_BP,
2248 Z_PACKET_HARDWARE_BP,
2249 Z_PACKET_WRITE_WP,
2250 Z_PACKET_READ_WP,
2251 Z_PACKET_ACCESS_WP,
2252 NR_Z_PACKET_TYPES
2253};
96baa820 2254
d471ea57 2255/* For compatibility with older distributions. Provide a ``set remote
23860348 2256 Z-packet ...'' command that updates all the Z packet types. */
d471ea57 2257
7f19b9a2 2258static enum auto_boolean remote_Z_packet_detect;
96baa820
JM
2259
2260static void
eb4c3f4a 2261set_remote_protocol_Z_packet_cmd (const char *args, int from_tty,
fba45db2 2262 struct cmd_list_element *c)
96baa820 2263{
d471ea57 2264 int i;
a744cf53 2265
d471ea57 2266 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
4082afcc 2267 remote_protocol_packets[PACKET_Z0 + i].detect = remote_Z_packet_detect;
96baa820
JM
2268}
2269
2270static void
08546159
AC
2271show_remote_protocol_Z_packet_cmd (struct ui_file *file, int from_tty,
2272 struct cmd_list_element *c,
2273 const char *value)
96baa820 2274{
d471ea57 2275 int i;
a744cf53 2276
d471ea57
AC
2277 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
2278 {
444abaca 2279 show_packet_config_cmd (&remote_protocol_packets[PACKET_Z0 + i]);
d471ea57 2280 }
96baa820
JM
2281}
2282
4082afcc
PA
2283/* Returns true if the multi-process extensions are in effect. */
2284
2285static int
2286remote_multi_process_p (struct remote_state *rs)
2287{
2288 return packet_support (PACKET_multiprocess_feature) == PACKET_ENABLE;
2289}
2290
de0d863e
DB
2291/* Returns true if fork events are supported. */
2292
2293static int
2294remote_fork_event_p (struct remote_state *rs)
2295{
2296 return packet_support (PACKET_fork_event_feature) == PACKET_ENABLE;
2297}
2298
c269dbdb
DB
2299/* Returns true if vfork events are supported. */
2300
2301static int
2302remote_vfork_event_p (struct remote_state *rs)
2303{
2304 return packet_support (PACKET_vfork_event_feature) == PACKET_ENABLE;
2305}
2306
d46addbb
DB
2307/* Returns true if exec events are supported. */
2308
2309static int
2310remote_exec_event_p (struct remote_state *rs)
2311{
2312 return packet_support (PACKET_exec_event_feature) == PACKET_ENABLE;
2313}
2314
cbb8991c
DB
2315/* Insert fork catchpoint target routine. If fork events are enabled
2316 then return success, nothing more to do. */
2317
f6ac5f3d
PA
2318int
2319remote_target::insert_fork_catchpoint (int pid)
cbb8991c
DB
2320{
2321 struct remote_state *rs = get_remote_state ();
2322
2323 return !remote_fork_event_p (rs);
2324}
2325
2326/* Remove fork catchpoint target routine. Nothing to do, just
2327 return success. */
2328
f6ac5f3d
PA
2329int
2330remote_target::remove_fork_catchpoint (int pid)
cbb8991c
DB
2331{
2332 return 0;
2333}
2334
2335/* Insert vfork catchpoint target routine. If vfork events are enabled
2336 then return success, nothing more to do. */
2337
f6ac5f3d
PA
2338int
2339remote_target::insert_vfork_catchpoint (int pid)
cbb8991c
DB
2340{
2341 struct remote_state *rs = get_remote_state ();
2342
2343 return !remote_vfork_event_p (rs);
2344}
2345
2346/* Remove vfork catchpoint target routine. Nothing to do, just
2347 return success. */
2348
f6ac5f3d
PA
2349int
2350remote_target::remove_vfork_catchpoint (int pid)
cbb8991c
DB
2351{
2352 return 0;
2353}
2354
d46addbb
DB
2355/* Insert exec catchpoint target routine. If exec events are
2356 enabled, just return success. */
2357
f6ac5f3d
PA
2358int
2359remote_target::insert_exec_catchpoint (int pid)
d46addbb
DB
2360{
2361 struct remote_state *rs = get_remote_state ();
2362
2363 return !remote_exec_event_p (rs);
2364}
2365
2366/* Remove exec catchpoint target routine. Nothing to do, just
2367 return success. */
2368
f6ac5f3d
PA
2369int
2370remote_target::remove_exec_catchpoint (int pid)
d46addbb
DB
2371{
2372 return 0;
2373}
2374
c906108c
SS
2375\f
2376
ffdd69cf
TT
2377/* Take advantage of the fact that the TID field is not used, to tag
2378 special ptids with it set to != 0. */
2379static const ptid_t magic_null_ptid (42000, -1, 1);
2380static const ptid_t not_sent_ptid (42000, -2, 1);
2381static const ptid_t any_thread_ptid (42000, 0, 1);
79d7f229 2382
0b16c5cf
PA
2383/* Find out if the stub attached to PID (and hence GDB should offer to
2384 detach instead of killing it when bailing out). */
2385
6b8edb51
PA
2386int
2387remote_target::remote_query_attached (int pid)
0b16c5cf
PA
2388{
2389 struct remote_state *rs = get_remote_state ();
bba74b36 2390 size_t size = get_remote_packet_size ();
0b16c5cf 2391
4082afcc 2392 if (packet_support (PACKET_qAttached) == PACKET_DISABLE)
0b16c5cf
PA
2393 return 0;
2394
2395 if (remote_multi_process_p (rs))
8d64371b 2396 xsnprintf (rs->buf.data (), size, "qAttached:%x", pid);
0b16c5cf 2397 else
8d64371b 2398 xsnprintf (rs->buf.data (), size, "qAttached");
0b16c5cf
PA
2399
2400 putpkt (rs->buf);
8d64371b 2401 getpkt (&rs->buf, 0);
0b16c5cf
PA
2402
2403 switch (packet_ok (rs->buf,
1554e9be 2404 &remote_protocol_packets[PACKET_qAttached]))
0b16c5cf
PA
2405 {
2406 case PACKET_OK:
8d64371b 2407 if (strcmp (rs->buf.data (), "1") == 0)
0b16c5cf
PA
2408 return 1;
2409 break;
2410 case PACKET_ERROR:
8d64371b 2411 warning (_("Remote failure reply: %s"), rs->buf.data ());
0b16c5cf
PA
2412 break;
2413 case PACKET_UNKNOWN:
2414 break;
2415 }
2416
2417 return 0;
2418}
2419
49c62f2e
PA
2420/* Add PID to GDB's inferior table. If FAKE_PID_P is true, then PID
2421 has been invented by GDB, instead of reported by the target. Since
2422 we can be connected to a remote system before before knowing about
2423 any inferior, mark the target with execution when we find the first
2424 inferior. If ATTACHED is 1, then we had just attached to this
2425 inferior. If it is 0, then we just created this inferior. If it
2426 is -1, then try querying the remote stub to find out if it had
1b6e6f5c
GB
2427 attached to the inferior or not. If TRY_OPEN_EXEC is true then
2428 attempt to open this inferior's executable as the main executable
2429 if no main executable is open already. */
1941c569 2430
6b8edb51 2431inferior *
9ab8741a 2432remote_target::remote_add_inferior (bool fake_pid_p, int pid, int attached,
6b8edb51 2433 int try_open_exec)
1941c569 2434{
1941c569
PA
2435 struct inferior *inf;
2436
0b16c5cf
PA
2437 /* Check whether this process we're learning about is to be
2438 considered attached, or if is to be considered to have been
2439 spawned by the stub. */
2440 if (attached == -1)
2441 attached = remote_query_attached (pid);
2442
f5656ead 2443 if (gdbarch_has_global_solist (target_gdbarch ()))
6c95b8df
PA
2444 {
2445 /* If the target shares code across all inferiors, then every
2446 attach adds a new inferior. */
2447 inf = add_inferior (pid);
2448
2449 /* ... and every inferior is bound to the same program space.
2450 However, each inferior may still have its own address
2451 space. */
2452 inf->aspace = maybe_new_address_space ();
2453 inf->pspace = current_program_space;
2454 }
2455 else
2456 {
2457 /* In the traditional debugging scenario, there's a 1-1 match
2458 between program/address spaces. We simply bind the inferior
2459 to the program space's address space. */
2460 inf = current_inferior ();
78f2c40a
PA
2461
2462 /* However, if the current inferior is already bound to a
2463 process, find some other empty inferior. */
2464 if (inf->pid != 0)
2465 {
2466 inf = nullptr;
2467 for (inferior *it : all_inferiors ())
2468 if (it->pid == 0)
2469 {
2470 inf = it;
2471 break;
2472 }
2473 }
2474 if (inf == nullptr)
2475 {
2476 /* Since all inferiors were already bound to a process, add
2477 a new inferior. */
2478 inf = add_inferior_with_spaces ();
2479 }
2480 switch_to_inferior_no_thread (inf);
5b6d1e4f 2481 push_target (this);
6c95b8df
PA
2482 inferior_appeared (inf, pid);
2483 }
1941c569 2484
0b16c5cf 2485 inf->attach_flag = attached;
49c62f2e 2486 inf->fake_pid_p = fake_pid_p;
0b16c5cf 2487
1b6e6f5c
GB
2488 /* If no main executable is currently open then attempt to
2489 open the file that was executed to create this inferior. */
835205d0 2490 if (try_open_exec && get_exec_file (0) == NULL)
bb805577 2491 exec_file_locate_attach (pid, 0, 1);
1b6e6f5c 2492
a2fedca9
PW
2493 /* Check for exec file mismatch, and let the user solve it. */
2494 validate_exec_file (1);
2495
1941c569
PA
2496 return inf;
2497}
2498
7aabaf9d 2499static remote_thread_info *get_remote_thread_info (thread_info *thread);
5b6d1e4f
PA
2500static remote_thread_info *get_remote_thread_info (remote_target *target,
2501 ptid_t ptid);
85ad3aaf 2502
1941c569
PA
2503/* Add thread PTID to GDB's thread list. Tag it as executing/running
2504 according to RUNNING. */
2505
00431a78 2506thread_info *
6b8edb51 2507remote_target::remote_add_thread (ptid_t ptid, bool running, bool executing)
c906108c 2508{
b7ea362b 2509 struct remote_state *rs = get_remote_state ();
85ad3aaf 2510 struct thread_info *thread;
b7ea362b
PA
2511
2512 /* GDB historically didn't pull threads in the initial connection
2513 setup. If the remote target doesn't even have a concept of
2514 threads (e.g., a bare-metal target), even if internally we
2515 consider that a single-threaded target, mentioning a new thread
2516 might be confusing to the user. Be silent then, preserving the
2517 age old behavior. */
2518 if (rs->starting_up)
5b6d1e4f 2519 thread = add_thread_silent (this, ptid);
b7ea362b 2520 else
5b6d1e4f 2521 thread = add_thread (this, ptid);
1941c569 2522
c9d22089
SM
2523 /* We start by assuming threads are resumed. That state then gets updated
2524 when we process a matching stop reply. */
2525 get_remote_thread_info (thread)->set_resumed ();
2526
5b6d1e4f
PA
2527 set_executing (this, ptid, executing);
2528 set_running (this, ptid, running);
00431a78
PA
2529
2530 return thread;
1941c569
PA
2531}
2532
2533/* Come here when we learn about a thread id from the remote target.
2534 It may be the first time we hear about such thread, so take the
2535 opportunity to add it to GDB's thread list. In case this is the
2536 first time we're noticing its corresponding inferior, add it to
0d5b594f
PA
2537 GDB's inferior list as well. EXECUTING indicates whether the
2538 thread is (internally) executing or stopped. */
1941c569 2539
6b8edb51
PA
2540void
2541remote_target::remote_notice_new_inferior (ptid_t currthread, int executing)
1941c569 2542{
0d5b594f
PA
2543 /* In non-stop mode, we assume new found threads are (externally)
2544 running until proven otherwise with a stop reply. In all-stop,
2545 we can only get here if all threads are stopped. */
2546 int running = target_is_non_stop_p () ? 1 : 0;
2547
c906108c
SS
2548 /* If this is a new thread, add it to GDB's thread list.
2549 If we leave it up to WFI to do this, bad things will happen. */
82f73884 2550
5b6d1e4f 2551 thread_info *tp = find_thread_ptid (this, currthread);
00431a78 2552 if (tp != NULL && tp->state == THREAD_EXITED)
82f73884
PA
2553 {
2554 /* We're seeing an event on a thread id we knew had exited.
2555 This has to be a new thread reusing the old id. Add it. */
0d5b594f 2556 remote_add_thread (currthread, running, executing);
82f73884
PA
2557 return;
2558 }
2559
5b6d1e4f 2560 if (!in_thread_list (this, currthread))
c0a2216e 2561 {
1941c569 2562 struct inferior *inf = NULL;
e99b03dc 2563 int pid = currthread.pid ();
1941c569 2564
0e998d96 2565 if (inferior_ptid.is_pid ()
e99b03dc 2566 && pid == inferior_ptid.pid ())
c0a2216e
PA
2567 {
2568 /* inferior_ptid has no thread member yet. This can happen
2569 with the vAttach -> remote_wait,"TAAthread:" path if the
2570 stub doesn't support qC. This is the first stop reported
2571 after an attach, so this is the main thread. Update the
2572 ptid in the thread list. */
5b6d1e4f
PA
2573 if (in_thread_list (this, ptid_t (pid)))
2574 thread_change_ptid (this, inferior_ptid, currthread);
bad34192
PA
2575 else
2576 {
0ac55310
PA
2577 thread_info *thr
2578 = remote_add_thread (currthread, running, executing);
2579 switch_to_thread (thr);
bad34192 2580 }
dc146f7c 2581 return;
c0a2216e 2582 }
82f73884 2583
d7e15655 2584 if (magic_null_ptid == inferior_ptid)
c0a2216e
PA
2585 {
2586 /* inferior_ptid is not set yet. This can happen with the
2587 vRun -> remote_wait,"TAAthread:" path if the stub
2588 doesn't support qC. This is the first stop reported
2589 after an attach, so this is the main thread. Update the
2590 ptid in the thread list. */
5b6d1e4f 2591 thread_change_ptid (this, inferior_ptid, currthread);
82f73884 2592 return;
c0a2216e 2593 }
82f73884 2594
29c87f7f
PA
2595 /* When connecting to a target remote, or to a target
2596 extended-remote which already was debugging an inferior, we
2597 may not know about it yet. Add it before adding its child
2598 thread, so notifications are emitted in a sensible order. */
5b6d1e4f 2599 if (find_inferior_pid (this, currthread.pid ()) == NULL)
49c62f2e
PA
2600 {
2601 struct remote_state *rs = get_remote_state ();
9ab8741a 2602 bool fake_pid_p = !remote_multi_process_p (rs);
49c62f2e
PA
2603
2604 inf = remote_add_inferior (fake_pid_p,
e99b03dc 2605 currthread.pid (), -1, 1);
49c62f2e 2606 }
29c87f7f 2607
82f73884 2608 /* This is really a new thread. Add it. */
00431a78
PA
2609 thread_info *new_thr
2610 = remote_add_thread (currthread, running, executing);
1941c569
PA
2611
2612 /* If we found a new inferior, let the common code do whatever
2613 it needs to with it (e.g., read shared libraries, insert
b7ea362b
PA
2614 breakpoints), unless we're just setting up an all-stop
2615 connection. */
1941c569 2616 if (inf != NULL)
b7ea362b
PA
2617 {
2618 struct remote_state *rs = get_remote_state ();
2619
6efcd9a8 2620 if (!rs->starting_up)
00431a78 2621 notice_new_inferior (new_thr, executing, 0);
b7ea362b 2622 }
c0a2216e 2623 }
c906108c
SS
2624}
2625
85ad3aaf 2626/* Return THREAD's private thread data, creating it if necessary. */
dc146f7c 2627
7aabaf9d
SM
2628static remote_thread_info *
2629get_remote_thread_info (thread_info *thread)
dc146f7c 2630{
85ad3aaf 2631 gdb_assert (thread != NULL);
dc146f7c 2632
85ad3aaf 2633 if (thread->priv == NULL)
7aabaf9d 2634 thread->priv.reset (new remote_thread_info);
dc146f7c 2635
7aabaf9d 2636 return static_cast<remote_thread_info *> (thread->priv.get ());
85ad3aaf
PA
2637}
2638
5b6d1e4f
PA
2639/* Return PTID's private thread data, creating it if necessary. */
2640
7aabaf9d 2641static remote_thread_info *
5b6d1e4f 2642get_remote_thread_info (remote_target *target, ptid_t ptid)
85ad3aaf 2643{
5b6d1e4f 2644 thread_info *thr = find_thread_ptid (target, ptid);
00431a78 2645 return get_remote_thread_info (thr);
dc146f7c
VP
2646}
2647
74531fed
PA
2648/* Call this function as a result of
2649 1) A halt indication (T packet) containing a thread id
2650 2) A direct query of currthread
0df8b418 2651 3) Successful execution of set thread */
74531fed
PA
2652
2653static void
47f8a51d 2654record_currthread (struct remote_state *rs, ptid_t currthread)
74531fed 2655{
47f8a51d 2656 rs->general_thread = currthread;
74531fed
PA
2657}
2658
89be2091
DJ
2659/* If 'QPassSignals' is supported, tell the remote stub what signals
2660 it can simply pass through to the inferior without reporting. */
2661
f6ac5f3d 2662void
adc6a863 2663remote_target::pass_signals (gdb::array_view<const unsigned char> pass_signals)
89be2091 2664{
4082afcc 2665 if (packet_support (PACKET_QPassSignals) != PACKET_DISABLE)
89be2091
DJ
2666 {
2667 char *pass_packet, *p;
adc6a863 2668 int count = 0;
747dc59d 2669 struct remote_state *rs = get_remote_state ();
89be2091 2670
adc6a863
PA
2671 gdb_assert (pass_signals.size () < 256);
2672 for (size_t i = 0; i < pass_signals.size (); i++)
89be2091 2673 {
2455069d 2674 if (pass_signals[i])
89be2091
DJ
2675 count++;
2676 }
224c3ddb 2677 pass_packet = (char *) xmalloc (count * 3 + strlen ("QPassSignals:") + 1);
89be2091
DJ
2678 strcpy (pass_packet, "QPassSignals:");
2679 p = pass_packet + strlen (pass_packet);
adc6a863 2680 for (size_t i = 0; i < pass_signals.size (); i++)
89be2091 2681 {
2455069d 2682 if (pass_signals[i])
89be2091
DJ
2683 {
2684 if (i >= 16)
2685 *p++ = tohex (i >> 4);
2686 *p++ = tohex (i & 15);
2687 if (count)
2688 *p++ = ';';
2689 else
2690 break;
2691 count--;
2692 }
2693 }
2694 *p = 0;
747dc59d 2695 if (!rs->last_pass_packet || strcmp (rs->last_pass_packet, pass_packet))
89be2091 2696 {
89be2091 2697 putpkt (pass_packet);
8d64371b 2698 getpkt (&rs->buf, 0);
8dc5b319 2699 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QPassSignals]);
84d53fa9 2700 xfree (rs->last_pass_packet);
747dc59d 2701 rs->last_pass_packet = pass_packet;
89be2091
DJ
2702 }
2703 else
2704 xfree (pass_packet);
2705 }
2706}
2707
82075af2
JS
2708/* If 'QCatchSyscalls' is supported, tell the remote stub
2709 to report syscalls to GDB. */
2710
f6ac5f3d
PA
2711int
2712remote_target::set_syscall_catchpoint (int pid, bool needed, int any_count,
2713 gdb::array_view<const int> syscall_counts)
82075af2 2714{
b80406ac 2715 const char *catch_packet;
82075af2
JS
2716 enum packet_result result;
2717 int n_sysno = 0;
2718
2719 if (packet_support (PACKET_QCatchSyscalls) == PACKET_DISABLE)
2720 {
2721 /* Not supported. */
2722 return 1;
2723 }
2724
649a140c 2725 if (needed && any_count == 0)
82075af2 2726 {
649a140c
PA
2727 /* Count how many syscalls are to be caught. */
2728 for (size_t i = 0; i < syscall_counts.size (); i++)
82075af2 2729 {
649a140c 2730 if (syscall_counts[i] != 0)
82075af2
JS
2731 n_sysno++;
2732 }
2733 }
2734
2735 if (remote_debug)
2736 {
2737 fprintf_unfiltered (gdb_stdlog,
2738 "remote_set_syscall_catchpoint "
2739 "pid %d needed %d any_count %d n_sysno %d\n",
2740 pid, needed, any_count, n_sysno);
2741 }
2742
1b81856f 2743 std::string built_packet;
82075af2
JS
2744 if (needed)
2745 {
2746 /* Prepare a packet with the sysno list, assuming max 8+1
2747 characters for a sysno. If the resulting packet size is too
2748 big, fallback on the non-selective packet. */
2749 const int maxpktsz = strlen ("QCatchSyscalls:1") + n_sysno * 9 + 1;
1b81856f
PA
2750 built_packet.reserve (maxpktsz);
2751 built_packet = "QCatchSyscalls:1";
649a140c 2752 if (any_count == 0)
82075af2 2753 {
649a140c
PA
2754 /* Add in each syscall to be caught. */
2755 for (size_t i = 0; i < syscall_counts.size (); i++)
82075af2 2756 {
649a140c
PA
2757 if (syscall_counts[i] != 0)
2758 string_appendf (built_packet, ";%zx", i);
82075af2
JS
2759 }
2760 }
1b81856f 2761 if (built_packet.size () > get_remote_packet_size ())
82075af2
JS
2762 {
2763 /* catch_packet too big. Fallback to less efficient
2764 non selective mode, with GDB doing the filtering. */
b80406ac 2765 catch_packet = "QCatchSyscalls:1";
82075af2 2766 }
b80406ac 2767 else
1b81856f 2768 catch_packet = built_packet.c_str ();
82075af2
JS
2769 }
2770 else
b80406ac 2771 catch_packet = "QCatchSyscalls:0";
82075af2 2772
b80406ac 2773 struct remote_state *rs = get_remote_state ();
82075af2 2774
b80406ac 2775 putpkt (catch_packet);
8d64371b 2776 getpkt (&rs->buf, 0);
b80406ac
TT
2777 result = packet_ok (rs->buf, &remote_protocol_packets[PACKET_QCatchSyscalls]);
2778 if (result == PACKET_OK)
2779 return 0;
2780 else
2781 return -1;
82075af2
JS
2782}
2783
9b224c5e
PA
2784/* If 'QProgramSignals' is supported, tell the remote stub what
2785 signals it should pass through to the inferior when detaching. */
2786
f6ac5f3d 2787void
adc6a863 2788remote_target::program_signals (gdb::array_view<const unsigned char> signals)
9b224c5e 2789{
4082afcc 2790 if (packet_support (PACKET_QProgramSignals) != PACKET_DISABLE)
9b224c5e
PA
2791 {
2792 char *packet, *p;
adc6a863 2793 int count = 0;
5e4a05c4 2794 struct remote_state *rs = get_remote_state ();
9b224c5e 2795
adc6a863
PA
2796 gdb_assert (signals.size () < 256);
2797 for (size_t i = 0; i < signals.size (); i++)
9b224c5e
PA
2798 {
2799 if (signals[i])
2800 count++;
2801 }
224c3ddb 2802 packet = (char *) xmalloc (count * 3 + strlen ("QProgramSignals:") + 1);
9b224c5e
PA
2803 strcpy (packet, "QProgramSignals:");
2804 p = packet + strlen (packet);
adc6a863 2805 for (size_t i = 0; i < signals.size (); i++)
9b224c5e
PA
2806 {
2807 if (signal_pass_state (i))
2808 {
2809 if (i >= 16)
2810 *p++ = tohex (i >> 4);
2811 *p++ = tohex (i & 15);
2812 if (count)
2813 *p++ = ';';
2814 else
2815 break;
2816 count--;
2817 }
2818 }
2819 *p = 0;
5e4a05c4
TT
2820 if (!rs->last_program_signals_packet
2821 || strcmp (rs->last_program_signals_packet, packet) != 0)
9b224c5e 2822 {
9b224c5e 2823 putpkt (packet);
8d64371b 2824 getpkt (&rs->buf, 0);
8dc5b319 2825 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QProgramSignals]);
5e4a05c4
TT
2826 xfree (rs->last_program_signals_packet);
2827 rs->last_program_signals_packet = packet;
9b224c5e
PA
2828 }
2829 else
2830 xfree (packet);
2831 }
2832}
2833
79d7f229
PA
2834/* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
2835 MINUS_ONE_PTID, set the thread to -1, so the stub returns the
2836 thread. If GEN is set, set the general thread, if not, then set
2837 the step/continue thread. */
6b8edb51
PA
2838void
2839remote_target::set_thread (ptid_t ptid, int gen)
c906108c 2840{
d01949b6 2841 struct remote_state *rs = get_remote_state ();
47f8a51d 2842 ptid_t state = gen ? rs->general_thread : rs->continue_thread;
8d64371b
TT
2843 char *buf = rs->buf.data ();
2844 char *endbuf = buf + get_remote_packet_size ();
c906108c 2845
d7e15655 2846 if (state == ptid)
c906108c
SS
2847 return;
2848
79d7f229
PA
2849 *buf++ = 'H';
2850 *buf++ = gen ? 'g' : 'c';
d7e15655 2851 if (ptid == magic_null_ptid)
79d7f229 2852 xsnprintf (buf, endbuf - buf, "0");
d7e15655 2853 else if (ptid == any_thread_ptid)
79d7f229 2854 xsnprintf (buf, endbuf - buf, "0");
d7e15655 2855 else if (ptid == minus_one_ptid)
79d7f229
PA
2856 xsnprintf (buf, endbuf - buf, "-1");
2857 else
82f73884 2858 write_ptid (buf, endbuf, ptid);
79d7f229 2859 putpkt (rs->buf);
8d64371b 2860 getpkt (&rs->buf, 0);
c906108c 2861 if (gen)
47f8a51d 2862 rs->general_thread = ptid;
c906108c 2863 else
47f8a51d 2864 rs->continue_thread = ptid;
c906108c 2865}
79d7f229 2866
6b8edb51
PA
2867void
2868remote_target::set_general_thread (ptid_t ptid)
79d7f229
PA
2869{
2870 set_thread (ptid, 1);
2871}
2872
6b8edb51
PA
2873void
2874remote_target::set_continue_thread (ptid_t ptid)
79d7f229
PA
2875{
2876 set_thread (ptid, 0);
2877}
2878
3c9c4b83
PA
2879/* Change the remote current process. Which thread within the process
2880 ends up selected isn't important, as long as it is the same process
2881 as what INFERIOR_PTID points to.
2882
2883 This comes from that fact that there is no explicit notion of
2884 "selected process" in the protocol. The selected process for
2885 general operations is the process the selected general thread
2886 belongs to. */
2887
6b8edb51
PA
2888void
2889remote_target::set_general_process ()
3c9c4b83
PA
2890{
2891 struct remote_state *rs = get_remote_state ();
2892
2893 /* If the remote can't handle multiple processes, don't bother. */
8020350c 2894 if (!remote_multi_process_p (rs))
3c9c4b83
PA
2895 return;
2896
2897 /* We only need to change the remote current thread if it's pointing
2898 at some other process. */
e99b03dc 2899 if (rs->general_thread.pid () != inferior_ptid.pid ())
3c9c4b83
PA
2900 set_general_thread (inferior_ptid);
2901}
2902
c906108c 2903\f
7d1a114c
PA
2904/* Return nonzero if this is the main thread that we made up ourselves
2905 to model non-threaded targets as single-threaded. */
c906108c
SS
2906
2907static int
f6ac5f3d 2908remote_thread_always_alive (ptid_t ptid)
c906108c 2909{
d7e15655 2910 if (ptid == magic_null_ptid)
c0a2216e
PA
2911 /* The main thread is always alive. */
2912 return 1;
2913
e38504b3 2914 if (ptid.pid () != 0 && ptid.lwp () == 0)
c0a2216e
PA
2915 /* The main thread is always alive. This can happen after a
2916 vAttach, if the remote side doesn't support
2917 multi-threading. */
2918 return 1;
2919
7d1a114c
PA
2920 return 0;
2921}
2922
2923/* Return nonzero if the thread PTID is still alive on the remote
2924 system. */
2925
57810aa7 2926bool
f6ac5f3d 2927remote_target::thread_alive (ptid_t ptid)
7d1a114c
PA
2928{
2929 struct remote_state *rs = get_remote_state ();
2930 char *p, *endp;
2931
2932 /* Check if this is a thread that we made up ourselves to model
2933 non-threaded targets as single-threaded. */
f6ac5f3d 2934 if (remote_thread_always_alive (ptid))
7d1a114c
PA
2935 return 1;
2936
8d64371b
TT
2937 p = rs->buf.data ();
2938 endp = p + get_remote_packet_size ();
82f73884
PA
2939
2940 *p++ = 'T';
2941 write_ptid (p, endp, ptid);
2942
2e9f7625 2943 putpkt (rs->buf);
8d64371b 2944 getpkt (&rs->buf, 0);
2e9f7625 2945 return (rs->buf[0] == 'O' && rs->buf[1] == 'K');
c906108c
SS
2946}
2947
79efa585
SM
2948/* Return a pointer to a thread name if we know it and NULL otherwise.
2949 The thread_info object owns the memory for the name. */
2950
f6ac5f3d
PA
2951const char *
2952remote_target::thread_name (struct thread_info *info)
79efa585
SM
2953{
2954 if (info->priv != NULL)
a9334058
SM
2955 {
2956 const std::string &name = get_remote_thread_info (info)->name;
2957 return !name.empty () ? name.c_str () : NULL;
2958 }
79efa585
SM
2959
2960 return NULL;
2961}
2962
c906108c
SS
2963/* About these extended threadlist and threadinfo packets. They are
2964 variable length packets but, the fields within them are often fixed
30baf67b 2965 length. They are redundant enough to send over UDP as is the
c906108c
SS
2966 remote protocol in general. There is a matching unit test module
2967 in libstub. */
2968
23860348 2969/* WARNING: This threadref data structure comes from the remote O.S.,
0df8b418 2970 libstub protocol encoding, and remote.c. It is not particularly
23860348 2971 changable. */
cce74817
JM
2972
2973/* Right now, the internal structure is int. We want it to be bigger.
0df8b418 2974 Plan to fix this. */
cce74817 2975
23860348 2976typedef int gdb_threadref; /* Internal GDB thread reference. */
cce74817 2977
9d1f7ab2 2978/* gdb_ext_thread_info is an internal GDB data structure which is
cfde0993 2979 equivalent to the reply of the remote threadinfo packet. */
cce74817
JM
2980
2981struct gdb_ext_thread_info
c5aa993b 2982 {
23860348 2983 threadref threadid; /* External form of thread reference. */
2bc416ba 2984 int active; /* Has state interesting to GDB?
23860348 2985 regs, stack. */
2bc416ba 2986 char display[256]; /* Brief state display, name,
cedea757 2987 blocked/suspended. */
23860348 2988 char shortname[32]; /* To be used to name threads. */
2bc416ba 2989 char more_display[256]; /* Long info, statistics, queue depth,
23860348 2990 whatever. */
c5aa993b 2991 };
cce74817
JM
2992
2993/* The volume of remote transfers can be limited by submitting
2994 a mask containing bits specifying the desired information.
2995 Use a union of these values as the 'selection' parameter to
0df8b418 2996 get_thread_info. FIXME: Make these TAG names more thread specific. */
cce74817
JM
2997
2998#define TAG_THREADID 1
2999#define TAG_EXISTS 2
3000#define TAG_DISPLAY 4
3001#define TAG_THREADNAME 8
c5aa993b 3002#define TAG_MOREDISPLAY 16
cce74817 3003
23860348 3004#define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
c906108c 3005
cecb1912 3006static const char *unpack_nibble (const char *buf, int *val);
cce74817 3007
cecb1912 3008static const char *unpack_byte (const char *buf, int *value);
cce74817 3009
a14ed312 3010static char *pack_int (char *buf, int value);
cce74817 3011
cecb1912 3012static const char *unpack_int (const char *buf, int *value);
cce74817 3013
cecb1912 3014static const char *unpack_string (const char *src, char *dest, int length);
cce74817 3015
23860348 3016static char *pack_threadid (char *pkt, threadref *id);
cce74817 3017
cecb1912 3018static const char *unpack_threadid (const char *inbuf, threadref *id);
cce74817 3019
23860348 3020void int_to_threadref (threadref *id, int value);
cce74817 3021
23860348 3022static int threadref_to_int (threadref *ref);
cce74817 3023
23860348 3024static void copy_threadref (threadref *dest, threadref *src);
cce74817 3025
23860348 3026static int threadmatch (threadref *dest, threadref *src);
cce74817 3027
2bc416ba 3028static char *pack_threadinfo_request (char *pkt, int mode,
23860348 3029 threadref *id);
cce74817 3030
a14ed312
KB
3031static char *pack_threadlist_request (char *pkt, int startflag,
3032 int threadcount,
23860348 3033 threadref *nextthread);
cce74817 3034
23860348 3035static int remote_newthread_step (threadref *ref, void *context);
cce74817 3036
82f73884
PA
3037
3038/* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the
3039 buffer we're allowed to write to. Returns
3040 BUF+CHARACTERS_WRITTEN. */
3041
6b8edb51
PA
3042char *
3043remote_target::write_ptid (char *buf, const char *endbuf, ptid_t ptid)
82f73884
PA
3044{
3045 int pid, tid;
3046 struct remote_state *rs = get_remote_state ();
3047
3048 if (remote_multi_process_p (rs))
3049 {
e99b03dc 3050 pid = ptid.pid ();
82f73884
PA
3051 if (pid < 0)
3052 buf += xsnprintf (buf, endbuf - buf, "p-%x.", -pid);
3053 else
3054 buf += xsnprintf (buf, endbuf - buf, "p%x.", pid);
3055 }
e38504b3 3056 tid = ptid.lwp ();
82f73884
PA
3057 if (tid < 0)
3058 buf += xsnprintf (buf, endbuf - buf, "-%x", -tid);
3059 else
3060 buf += xsnprintf (buf, endbuf - buf, "%x", tid);
3061
3062 return buf;
3063}
3064
256642e8
PA
3065/* Extract a PTID from BUF. If non-null, OBUF is set to one past the
3066 last parsed char. Returns null_ptid if no thread id is found, and
3067 throws an error if the thread id has an invalid format. */
82f73884
PA
3068
3069static ptid_t
256642e8 3070read_ptid (const char *buf, const char **obuf)
82f73884 3071{
256642e8
PA
3072 const char *p = buf;
3073 const char *pp;
82f73884 3074 ULONGEST pid = 0, tid = 0;
82f73884
PA
3075
3076 if (*p == 'p')
3077 {
3078 /* Multi-process ptid. */
3079 pp = unpack_varlen_hex (p + 1, &pid);
3080 if (*pp != '.')
b37520b6 3081 error (_("invalid remote ptid: %s"), p);
82f73884
PA
3082
3083 p = pp;
3084 pp = unpack_varlen_hex (p + 1, &tid);
3085 if (obuf)
3086 *obuf = pp;
fd79271b 3087 return ptid_t (pid, tid, 0);
82f73884
PA
3088 }
3089
3090 /* No multi-process. Just a tid. */
3091 pp = unpack_varlen_hex (p, &tid);
3092
c9f35b34
KB
3093 /* Return null_ptid when no thread id is found. */
3094 if (p == pp)
3095 {
3096 if (obuf)
3097 *obuf = pp;
3098 return null_ptid;
3099 }
3100
82f73884 3101 /* Since the stub is not sending a process id, then default to
ca19bf23
PA
3102 what's in inferior_ptid, unless it's null at this point. If so,
3103 then since there's no way to know the pid of the reported
3104 threads, use the magic number. */
d7e15655 3105 if (inferior_ptid == null_ptid)
e99b03dc 3106 pid = magic_null_ptid.pid ();
ca19bf23 3107 else
e99b03dc 3108 pid = inferior_ptid.pid ();
82f73884
PA
3109
3110 if (obuf)
3111 *obuf = pp;
fd79271b 3112 return ptid_t (pid, tid, 0);
82f73884
PA
3113}
3114
c906108c 3115static int
fba45db2 3116stubhex (int ch)
c906108c
SS
3117{
3118 if (ch >= 'a' && ch <= 'f')
3119 return ch - 'a' + 10;
3120 if (ch >= '0' && ch <= '9')
3121 return ch - '0';
3122 if (ch >= 'A' && ch <= 'F')
3123 return ch - 'A' + 10;
3124 return -1;
3125}
3126
3127static int
cecb1912 3128stub_unpack_int (const char *buff, int fieldlength)
c906108c
SS
3129{
3130 int nibble;
3131 int retval = 0;
3132
3133 while (fieldlength)
3134 {
3135 nibble = stubhex (*buff++);
3136 retval |= nibble;
3137 fieldlength--;
3138 if (fieldlength)
3139 retval = retval << 4;
3140 }
3141 return retval;
3142}
3143
cecb1912
SM
3144static const char *
3145unpack_nibble (const char *buf, int *val)
c906108c 3146{
b7589f7d 3147 *val = fromhex (*buf++);
c906108c
SS
3148 return buf;
3149}
3150
cecb1912
SM
3151static const char *
3152unpack_byte (const char *buf, int *value)
c906108c
SS
3153{
3154 *value = stub_unpack_int (buf, 2);
3155 return buf + 2;
3156}
3157
3158static char *
fba45db2 3159pack_int (char *buf, int value)
c906108c
SS
3160{
3161 buf = pack_hex_byte (buf, (value >> 24) & 0xff);
3162 buf = pack_hex_byte (buf, (value >> 16) & 0xff);
3163 buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
3164 buf = pack_hex_byte (buf, (value & 0xff));
3165 return buf;
3166}
3167
cecb1912
SM
3168static const char *
3169unpack_int (const char *buf, int *value)
c906108c
SS
3170{
3171 *value = stub_unpack_int (buf, 8);
3172 return buf + 8;
3173}
3174
23860348 3175#if 0 /* Currently unused, uncomment when needed. */
a14ed312 3176static char *pack_string (char *pkt, char *string);
c906108c
SS
3177
3178static char *
fba45db2 3179pack_string (char *pkt, char *string)
c906108c
SS
3180{
3181 char ch;
3182 int len;
3183
3184 len = strlen (string);
3185 if (len > 200)
23860348 3186 len = 200; /* Bigger than most GDB packets, junk??? */
c906108c
SS
3187 pkt = pack_hex_byte (pkt, len);
3188 while (len-- > 0)
3189 {
3190 ch = *string++;
3191 if ((ch == '\0') || (ch == '#'))
23860348 3192 ch = '*'; /* Protect encapsulation. */
c906108c
SS
3193 *pkt++ = ch;
3194 }
3195 return pkt;
3196}
3197#endif /* 0 (unused) */
3198
cecb1912
SM
3199static const char *
3200unpack_string (const char *src, char *dest, int length)
c906108c
SS
3201{
3202 while (length--)
3203 *dest++ = *src++;
3204 *dest = '\0';
3205 return src;
3206}
3207
3208static char *
fba45db2 3209pack_threadid (char *pkt, threadref *id)
c906108c
SS
3210{
3211 char *limit;
3212 unsigned char *altid;
3213
3214 altid = (unsigned char *) id;
3215 limit = pkt + BUF_THREAD_ID_SIZE;
3216 while (pkt < limit)
3217 pkt = pack_hex_byte (pkt, *altid++);
3218 return pkt;
3219}
3220
3221
cecb1912
SM
3222static const char *
3223unpack_threadid (const char *inbuf, threadref *id)
c906108c
SS
3224{
3225 char *altref;
cecb1912 3226 const char *limit = inbuf + BUF_THREAD_ID_SIZE;
c906108c
SS
3227 int x, y;
3228
3229 altref = (char *) id;
3230
3231 while (inbuf < limit)
3232 {
3233 x = stubhex (*inbuf++);
3234 y = stubhex (*inbuf++);
3235 *altref++ = (x << 4) | y;
3236 }
3237 return inbuf;
3238}
3239
3240/* Externally, threadrefs are 64 bits but internally, they are still
0df8b418 3241 ints. This is due to a mismatch of specifications. We would like
c906108c
SS
3242 to use 64bit thread references internally. This is an adapter
3243 function. */
3244
3245void
fba45db2 3246int_to_threadref (threadref *id, int value)
c906108c
SS
3247{
3248 unsigned char *scan;
3249
3250 scan = (unsigned char *) id;
3251 {
3252 int i = 4;
3253 while (i--)
3254 *scan++ = 0;
3255 }
3256 *scan++ = (value >> 24) & 0xff;
3257 *scan++ = (value >> 16) & 0xff;
3258 *scan++ = (value >> 8) & 0xff;
3259 *scan++ = (value & 0xff);
3260}
3261
3262static int
fba45db2 3263threadref_to_int (threadref *ref)
c906108c
SS
3264{
3265 int i, value = 0;
3266 unsigned char *scan;
3267
cfd77fa1 3268 scan = *ref;
c906108c
SS
3269 scan += 4;
3270 i = 4;
3271 while (i-- > 0)
3272 value = (value << 8) | ((*scan++) & 0xff);
3273 return value;
3274}
3275
3276static void
fba45db2 3277copy_threadref (threadref *dest, threadref *src)
c906108c
SS
3278{
3279 int i;
3280 unsigned char *csrc, *cdest;
3281
3282 csrc = (unsigned char *) src;
3283 cdest = (unsigned char *) dest;
3284 i = 8;
3285 while (i--)
3286 *cdest++ = *csrc++;
3287}
3288
3289static int
fba45db2 3290threadmatch (threadref *dest, threadref *src)
c906108c 3291{
23860348 3292 /* Things are broken right now, so just assume we got a match. */
c906108c
SS
3293#if 0
3294 unsigned char *srcp, *destp;
3295 int i, result;
3296 srcp = (char *) src;
3297 destp = (char *) dest;
3298
3299 result = 1;
3300 while (i-- > 0)
3301 result &= (*srcp++ == *destp++) ? 1 : 0;
3302 return result;
3303#endif
3304 return 1;
3305}
3306
3307/*
c5aa993b
JM
3308 threadid:1, # always request threadid
3309 context_exists:2,
3310 display:4,
3311 unique_name:8,
3312 more_display:16
3313 */
c906108c
SS
3314
3315/* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
3316
3317static char *
fba45db2 3318pack_threadinfo_request (char *pkt, int mode, threadref *id)
c906108c 3319{
23860348
MS
3320 *pkt++ = 'q'; /* Info Query */
3321 *pkt++ = 'P'; /* process or thread info */
3322 pkt = pack_int (pkt, mode); /* mode */
c906108c 3323 pkt = pack_threadid (pkt, id); /* threadid */
23860348 3324 *pkt = '\0'; /* terminate */
c906108c
SS
3325 return pkt;
3326}
3327
23860348 3328/* These values tag the fields in a thread info response packet. */
c906108c 3329/* Tagging the fields allows us to request specific fields and to
23860348 3330 add more fields as time goes by. */
c906108c 3331
23860348 3332#define TAG_THREADID 1 /* Echo the thread identifier. */
c5aa993b 3333#define TAG_EXISTS 2 /* Is this process defined enough to
23860348 3334 fetch registers and its stack? */
c5aa993b 3335#define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
23860348 3336#define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
802188a7 3337#define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
23860348 3338 the process. */
c906108c 3339
6b8edb51 3340int
cecb1912 3341remote_target::remote_unpack_thread_info_response (const char *pkt,
6b8edb51
PA
3342 threadref *expectedref,
3343 gdb_ext_thread_info *info)
c906108c 3344{
d01949b6 3345 struct remote_state *rs = get_remote_state ();
c906108c 3346 int mask, length;
cfd77fa1 3347 int tag;
c906108c 3348 threadref ref;
cecb1912 3349 const char *limit = pkt + rs->buf.size (); /* Plausible parsing limit. */
c906108c
SS
3350 int retval = 1;
3351
23860348 3352 /* info->threadid = 0; FIXME: implement zero_threadref. */
c906108c
SS
3353 info->active = 0;
3354 info->display[0] = '\0';
3355 info->shortname[0] = '\0';
3356 info->more_display[0] = '\0';
3357
23860348
MS
3358 /* Assume the characters indicating the packet type have been
3359 stripped. */
c906108c
SS
3360 pkt = unpack_int (pkt, &mask); /* arg mask */
3361 pkt = unpack_threadid (pkt, &ref);
3362
3363 if (mask == 0)
8a3fe4f8 3364 warning (_("Incomplete response to threadinfo request."));
c906108c 3365 if (!threadmatch (&ref, expectedref))
23860348 3366 { /* This is an answer to a different request. */
8a3fe4f8 3367 warning (_("ERROR RMT Thread info mismatch."));
c906108c
SS
3368 return 0;
3369 }
3370 copy_threadref (&info->threadid, &ref);
3371
405feb71 3372 /* Loop on tagged fields , try to bail if something goes wrong. */
c906108c 3373
23860348
MS
3374 /* Packets are terminated with nulls. */
3375 while ((pkt < limit) && mask && *pkt)
c906108c
SS
3376 {
3377 pkt = unpack_int (pkt, &tag); /* tag */
23860348
MS
3378 pkt = unpack_byte (pkt, &length); /* length */
3379 if (!(tag & mask)) /* Tags out of synch with mask. */
c906108c 3380 {
8a3fe4f8 3381 warning (_("ERROR RMT: threadinfo tag mismatch."));
c906108c
SS
3382 retval = 0;
3383 break;
3384 }
3385 if (tag == TAG_THREADID)
3386 {
3387 if (length != 16)
3388 {
8a3fe4f8 3389 warning (_("ERROR RMT: length of threadid is not 16."));
c906108c
SS
3390 retval = 0;
3391 break;
3392 }
3393 pkt = unpack_threadid (pkt, &ref);
3394 mask = mask & ~TAG_THREADID;
3395 continue;
3396 }
3397 if (tag == TAG_EXISTS)
3398 {
3399 info->active = stub_unpack_int (pkt, length);
3400 pkt += length;
3401 mask = mask & ~(TAG_EXISTS);
3402 if (length > 8)
3403 {
8a3fe4f8 3404 warning (_("ERROR RMT: 'exists' length too long."));
c906108c
SS
3405 retval = 0;
3406 break;
3407 }
3408 continue;
3409 }
3410 if (tag == TAG_THREADNAME)
3411 {
3412 pkt = unpack_string (pkt, &info->shortname[0], length);
3413 mask = mask & ~TAG_THREADNAME;
3414 continue;
3415 }
3416 if (tag == TAG_DISPLAY)
3417 {
3418 pkt = unpack_string (pkt, &info->display[0], length);
3419 mask = mask & ~TAG_DISPLAY;
3420 continue;
3421 }
3422 if (tag == TAG_MOREDISPLAY)
3423 {
3424 pkt = unpack_string (pkt, &info->more_display[0], length);
3425 mask = mask & ~TAG_MOREDISPLAY;
3426 continue;
3427 }
8a3fe4f8 3428 warning (_("ERROR RMT: unknown thread info tag."));
23860348 3429 break; /* Not a tag we know about. */
c906108c
SS
3430 }
3431 return retval;
3432}
3433
6b8edb51
PA
3434int
3435remote_target::remote_get_threadinfo (threadref *threadid,
3436 int fieldset,
3437 gdb_ext_thread_info *info)
c906108c 3438{
d01949b6 3439 struct remote_state *rs = get_remote_state ();
c906108c 3440 int result;
c906108c 3441
8d64371b 3442 pack_threadinfo_request (rs->buf.data (), fieldset, threadid);
2e9f7625 3443 putpkt (rs->buf);
8d64371b 3444 getpkt (&rs->buf, 0);
3084dd77
PA
3445
3446 if (rs->buf[0] == '\0')
3447 return 0;
3448
8d64371b 3449 result = remote_unpack_thread_info_response (&rs->buf[2],
23860348 3450 threadid, info);
c906108c
SS
3451 return result;
3452}
3453
c906108c
SS
3454/* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
3455
3456static char *
fba45db2
KB
3457pack_threadlist_request (char *pkt, int startflag, int threadcount,
3458 threadref *nextthread)
c906108c
SS
3459{
3460 *pkt++ = 'q'; /* info query packet */
3461 *pkt++ = 'L'; /* Process LIST or threadLIST request */
23860348 3462 pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */
c906108c
SS
3463 pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */
3464 pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */
3465 *pkt = '\0';
3466 return pkt;
3467}
3468
3469/* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
3470
6b8edb51 3471int
cecb1912 3472remote_target::parse_threadlist_response (const char *pkt, int result_limit,
6b8edb51
PA
3473 threadref *original_echo,
3474 threadref *resultlist,
3475 int *doneflag)
c906108c 3476{
d01949b6 3477 struct remote_state *rs = get_remote_state ();
c906108c
SS
3478 int count, resultcount, done;
3479
3480 resultcount = 0;
3481 /* Assume the 'q' and 'M chars have been stripped. */
cecb1912 3482 const char *limit = pkt + (rs->buf.size () - BUF_THREAD_ID_SIZE);
23860348 3483 /* done parse past here */
c906108c
SS
3484 pkt = unpack_byte (pkt, &count); /* count field */
3485 pkt = unpack_nibble (pkt, &done);
3486 /* The first threadid is the argument threadid. */
3487 pkt = unpack_threadid (pkt, original_echo); /* should match query packet */
3488 while ((count-- > 0) && (pkt < limit))
3489 {
3490 pkt = unpack_threadid (pkt, resultlist++);
3491 if (resultcount++ >= result_limit)
3492 break;
3493 }
3494 if (doneflag)
3495 *doneflag = done;
3496 return resultcount;
3497}
3498
6dc54d91
PA
3499/* Fetch the next batch of threads from the remote. Returns -1 if the
3500 qL packet is not supported, 0 on error and 1 on success. */
3501
6b8edb51
PA
3502int
3503remote_target::remote_get_threadlist (int startflag, threadref *nextthread,
3504 int result_limit, int *done, int *result_count,
3505 threadref *threadlist)
c906108c 3506{
d01949b6 3507 struct remote_state *rs = get_remote_state ();
c906108c
SS
3508 int result = 1;
3509
405feb71 3510 /* Truncate result limit to be smaller than the packet size. */
3e43a32a
MS
3511 if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10)
3512 >= get_remote_packet_size ())
ea9c271d 3513 result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2;
c906108c 3514
8d64371b
TT
3515 pack_threadlist_request (rs->buf.data (), startflag, result_limit,
3516 nextthread);
6d820c5c 3517 putpkt (rs->buf);
8d64371b
TT
3518 getpkt (&rs->buf, 0);
3519 if (rs->buf[0] == '\0')
6dc54d91
PA
3520 {
3521 /* Packet not supported. */
3522 return -1;
3523 }
3524
3525 *result_count =
8d64371b 3526 parse_threadlist_response (&rs->buf[2], result_limit,
6dc54d91 3527 &rs->echo_nextthread, threadlist, done);
c906108c 3528
0d031856 3529 if (!threadmatch (&rs->echo_nextthread, nextthread))
c906108c 3530 {
23860348 3531 /* FIXME: This is a good reason to drop the packet. */
405feb71
TV
3532 /* Possibly, there is a duplicate response. */
3533 /* Possibilities :
dda83cd7
SM
3534 retransmit immediatly - race conditions
3535 retransmit after timeout - yes
3536 exit
3537 wait for packet, then exit
c906108c 3538 */
8a3fe4f8 3539 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
23860348 3540 return 0; /* I choose simply exiting. */
c906108c
SS
3541 }
3542 if (*result_count <= 0)
3543 {
3544 if (*done != 1)
3545 {
8a3fe4f8 3546 warning (_("RMT ERROR : failed to get remote thread list."));
c906108c
SS
3547 result = 0;
3548 }
3549 return result; /* break; */
3550 }
3551 if (*result_count > result_limit)
3552 {
3553 *result_count = 0;
8a3fe4f8 3554 warning (_("RMT ERROR: threadlist response longer than requested."));
c906108c
SS
3555 return 0;
3556 }
3557 return result;
3558}
3559
6dc54d91
PA
3560/* Fetch the list of remote threads, with the qL packet, and call
3561 STEPFUNCTION for each thread found. Stops iterating and returns 1
3562 if STEPFUNCTION returns true. Stops iterating and returns 0 if the
3563 STEPFUNCTION returns false. If the packet is not supported,
3564 returns -1. */
c906108c 3565
6b8edb51
PA
3566int
3567remote_target::remote_threadlist_iterator (rmt_thread_action stepfunction,
3568 void *context, int looplimit)
c906108c 3569{
0d031856 3570 struct remote_state *rs = get_remote_state ();
c906108c
SS
3571 int done, i, result_count;
3572 int startflag = 1;
3573 int result = 1;
3574 int loopcount = 0;
c906108c
SS
3575
3576 done = 0;
3577 while (!done)
3578 {
3579 if (loopcount++ > looplimit)
3580 {
3581 result = 0;
8a3fe4f8 3582 warning (_("Remote fetch threadlist -infinite loop-."));
c906108c
SS
3583 break;
3584 }
6dc54d91
PA
3585 result = remote_get_threadlist (startflag, &rs->nextthread,
3586 MAXTHREADLISTRESULTS,
3587 &done, &result_count,
3588 rs->resultthreadlist);
3589 if (result <= 0)
3590 break;
23860348 3591 /* Clear for later iterations. */
c906108c
SS
3592 startflag = 0;
3593 /* Setup to resume next batch of thread references, set nextthread. */
3594 if (result_count >= 1)
0d031856
TT
3595 copy_threadref (&rs->nextthread,
3596 &rs->resultthreadlist[result_count - 1]);
c906108c
SS
3597 i = 0;
3598 while (result_count--)
6dc54d91
PA
3599 {
3600 if (!(*stepfunction) (&rs->resultthreadlist[i++], context))
3601 {
3602 result = 0;
3603 break;
3604 }
3605 }
c906108c
SS
3606 }
3607 return result;
3608}
3609
6dc54d91
PA
3610/* A thread found on the remote target. */
3611
21fe1c75 3612struct thread_item
6dc54d91 3613{
21fe1c75
SM
3614 explicit thread_item (ptid_t ptid_)
3615 : ptid (ptid_)
3616 {}
3617
3618 thread_item (thread_item &&other) = default;
3619 thread_item &operator= (thread_item &&other) = default;
3620
3621 DISABLE_COPY_AND_ASSIGN (thread_item);
3622
6dc54d91
PA
3623 /* The thread's PTID. */
3624 ptid_t ptid;
3625
21fe1c75
SM
3626 /* The thread's extra info. */
3627 std::string extra;
6dc54d91 3628
21fe1c75
SM
3629 /* The thread's name. */
3630 std::string name;
79efa585 3631
6dc54d91 3632 /* The core the thread was running on. -1 if not known. */
21fe1c75 3633 int core = -1;
f6327dcb
KB
3634
3635 /* The thread handle associated with the thread. */
21fe1c75 3636 gdb::byte_vector thread_handle;
21fe1c75 3637};
6dc54d91
PA
3638
3639/* Context passed around to the various methods listing remote
3640 threads. As new threads are found, they're added to the ITEMS
3641 vector. */
3642
3643struct threads_listing_context
3644{
21fe1c75
SM
3645 /* Return true if this object contains an entry for a thread with ptid
3646 PTID. */
6dc54d91 3647
21fe1c75
SM
3648 bool contains_thread (ptid_t ptid) const
3649 {
3650 auto match_ptid = [&] (const thread_item &item)
3651 {
3652 return item.ptid == ptid;
3653 };
80134cf5 3654
21fe1c75
SM
3655 auto it = std::find_if (this->items.begin (),
3656 this->items.end (),
3657 match_ptid);
80134cf5 3658
21fe1c75
SM
3659 return it != this->items.end ();
3660 }
80134cf5 3661
21fe1c75 3662 /* Remove the thread with ptid PTID. */
80134cf5 3663
21fe1c75
SM
3664 void remove_thread (ptid_t ptid)
3665 {
3666 auto match_ptid = [&] (const thread_item &item)
3667 {
dda83cd7 3668 return item.ptid == ptid;
21fe1c75 3669 };
cbb8991c 3670
21fe1c75
SM
3671 auto it = std::remove_if (this->items.begin (),
3672 this->items.end (),
3673 match_ptid);
cbb8991c 3674
21fe1c75
SM
3675 if (it != this->items.end ())
3676 this->items.erase (it);
3677 }
3678
3679 /* The threads found on the remote target. */
3680 std::vector<thread_item> items;
3681};
cbb8991c 3682
c906108c 3683static int
6dc54d91 3684remote_newthread_step (threadref *ref, void *data)
c906108c 3685{
19ba03f4
SM
3686 struct threads_listing_context *context
3687 = (struct threads_listing_context *) data;
21fe1c75
SM
3688 int pid = inferior_ptid.pid ();
3689 int lwp = threadref_to_int (ref);
3690 ptid_t ptid (pid, lwp);
6dc54d91 3691
21fe1c75 3692 context->items.emplace_back (ptid);
6dc54d91 3693
c906108c
SS
3694 return 1; /* continue iterator */
3695}
3696
3697#define CRAZY_MAX_THREADS 1000
3698
6b8edb51
PA
3699ptid_t
3700remote_target::remote_current_thread (ptid_t oldpid)
c906108c 3701{
d01949b6 3702 struct remote_state *rs = get_remote_state ();
c906108c
SS
3703
3704 putpkt ("qC");
8d64371b 3705 getpkt (&rs->buf, 0);
2e9f7625 3706 if (rs->buf[0] == 'Q' && rs->buf[1] == 'C')
c9f35b34 3707 {
256642e8 3708 const char *obuf;
c9f35b34
KB
3709 ptid_t result;
3710
3711 result = read_ptid (&rs->buf[2], &obuf);
3712 if (*obuf != '\0' && remote_debug)
dda83cd7
SM
3713 fprintf_unfiltered (gdb_stdlog,
3714 "warning: garbage in qC reply\n");
c9f35b34
KB
3715
3716 return result;
3717 }
c906108c
SS
3718 else
3719 return oldpid;
3720}
3721
6dc54d91 3722/* List remote threads using the deprecated qL packet. */
cce74817 3723
6b8edb51
PA
3724int
3725remote_target::remote_get_threads_with_ql (threads_listing_context *context)
c906108c 3726{
6dc54d91
PA
3727 if (remote_threadlist_iterator (remote_newthread_step, context,
3728 CRAZY_MAX_THREADS) >= 0)
3729 return 1;
3730
3731 return 0;
c906108c
SS
3732}
3733
dc146f7c
VP
3734#if defined(HAVE_LIBEXPAT)
3735
dc146f7c
VP
3736static void
3737start_thread (struct gdb_xml_parser *parser,
3738 const struct gdb_xml_element *element,
4d0fdd9b
SM
3739 void *user_data,
3740 std::vector<gdb_xml_value> &attributes)
dc146f7c 3741{
19ba03f4
SM
3742 struct threads_listing_context *data
3743 = (struct threads_listing_context *) user_data;
3d2c1d41 3744 struct gdb_xml_value *attr;
dc146f7c 3745
4d0fdd9b 3746 char *id = (char *) xml_find_attribute (attributes, "id")->value.get ();
21fe1c75
SM
3747 ptid_t ptid = read_ptid (id, NULL);
3748
3749 data->items.emplace_back (ptid);
3750 thread_item &item = data->items.back ();
dc146f7c 3751
3d2c1d41
PA
3752 attr = xml_find_attribute (attributes, "core");
3753 if (attr != NULL)
4d0fdd9b 3754 item.core = *(ULONGEST *) attr->value.get ();
dc146f7c 3755
79efa585 3756 attr = xml_find_attribute (attributes, "name");
21fe1c75 3757 if (attr != NULL)
4d0fdd9b 3758 item.name = (const char *) attr->value.get ();
79efa585 3759
f6327dcb
KB
3760 attr = xml_find_attribute (attributes, "handle");
3761 if (attr != NULL)
4d0fdd9b 3762 item.thread_handle = hex2bin ((const char *) attr->value.get ());
dc146f7c
VP
3763}
3764
3765static void
3766end_thread (struct gdb_xml_parser *parser,
3767 const struct gdb_xml_element *element,
3768 void *user_data, const char *body_text)
3769{
19ba03f4
SM
3770 struct threads_listing_context *data
3771 = (struct threads_listing_context *) user_data;
dc146f7c 3772
21fe1c75
SM
3773 if (body_text != NULL && *body_text != '\0')
3774 data->items.back ().extra = body_text;
dc146f7c
VP
3775}
3776
3777const struct gdb_xml_attribute thread_attributes[] = {
3778 { "id", GDB_XML_AF_NONE, NULL, NULL },
3779 { "core", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
79efa585 3780 { "name", GDB_XML_AF_OPTIONAL, NULL, NULL },
f6327dcb 3781 { "handle", GDB_XML_AF_OPTIONAL, NULL, NULL },
dc146f7c
VP
3782 { NULL, GDB_XML_AF_NONE, NULL, NULL }
3783};
3784
3785const struct gdb_xml_element thread_children[] = {
3786 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3787};
3788
3789const struct gdb_xml_element threads_children[] = {
3790 { "thread", thread_attributes, thread_children,
3791 GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL,
3792 start_thread, end_thread },
3793 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3794};
3795
3796const struct gdb_xml_element threads_elements[] = {
3797 { "threads", NULL, threads_children,
3798 GDB_XML_EF_NONE, NULL, NULL },
3799 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3800};
3801
3802#endif
3803
6dc54d91 3804/* List remote threads using qXfer:threads:read. */
9d1f7ab2 3805
6b8edb51
PA
3806int
3807remote_target::remote_get_threads_with_qxfer (threads_listing_context *context)
0f71a2f6 3808{
dc146f7c 3809#if defined(HAVE_LIBEXPAT)
4082afcc 3810 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
dc146f7c 3811 {
9018be22 3812 gdb::optional<gdb::char_vector> xml
6b8edb51 3813 = target_read_stralloc (this, TARGET_OBJECT_THREADS, NULL);
efc0eabd 3814
9018be22 3815 if (xml && (*xml)[0] != '\0')
dc146f7c 3816 {
6dc54d91 3817 gdb_xml_parse_quick (_("threads"), "threads.dtd",
9018be22 3818 threads_elements, xml->data (), context);
dc146f7c
VP
3819 }
3820
6dc54d91 3821 return 1;
dc146f7c
VP
3822 }
3823#endif
3824
6dc54d91
PA
3825 return 0;
3826}
3827
3828/* List remote threads using qfThreadInfo/qsThreadInfo. */
3829
6b8edb51
PA
3830int
3831remote_target::remote_get_threads_with_qthreadinfo (threads_listing_context *context)
6dc54d91
PA
3832{
3833 struct remote_state *rs = get_remote_state ();
3834
b80fafe3 3835 if (rs->use_threadinfo_query)
9d1f7ab2 3836 {
256642e8 3837 const char *bufp;
6dc54d91 3838
9d1f7ab2 3839 putpkt ("qfThreadInfo");
8d64371b
TT
3840 getpkt (&rs->buf, 0);
3841 bufp = rs->buf.data ();
9d1f7ab2 3842 if (bufp[0] != '\0') /* q packet recognized */
802188a7 3843 {
9d1f7ab2
MS
3844 while (*bufp++ == 'm') /* reply contains one or more TID */
3845 {
3846 do
3847 {
21fe1c75
SM
3848 ptid_t ptid = read_ptid (bufp, &bufp);
3849 context->items.emplace_back (ptid);
9d1f7ab2
MS
3850 }
3851 while (*bufp++ == ','); /* comma-separated list */
3852 putpkt ("qsThreadInfo");
8d64371b
TT
3853 getpkt (&rs->buf, 0);
3854 bufp = rs->buf.data ();
9d1f7ab2 3855 }
6dc54d91
PA
3856 return 1;
3857 }
3858 else
3859 {
3860 /* Packet not recognized. */
3861 rs->use_threadinfo_query = 0;
9d1f7ab2
MS
3862 }
3863 }
3864
6dc54d91
PA
3865 return 0;
3866}
3867
a05575d3
TBA
3868/* Return true if INF only has one non-exited thread. */
3869
3870static bool
3871has_single_non_exited_thread (inferior *inf)
3872{
3873 int count = 0;
3874 for (thread_info *tp ATTRIBUTE_UNUSED : inf->non_exited_threads ())
3875 if (++count > 1)
3876 break;
3877 return count == 1;
3878}
3879
e8032dde 3880/* Implement the to_update_thread_list function for the remote
6dc54d91
PA
3881 targets. */
3882
f6ac5f3d
PA
3883void
3884remote_target::update_thread_list ()
6dc54d91 3885{
6dc54d91 3886 struct threads_listing_context context;
ab970af1 3887 int got_list = 0;
e8032dde 3888
6dc54d91
PA
3889 /* We have a few different mechanisms to fetch the thread list. Try
3890 them all, starting with the most preferred one first, falling
3891 back to older methods. */
6b8edb51
PA
3892 if (remote_get_threads_with_qxfer (&context)
3893 || remote_get_threads_with_qthreadinfo (&context)
3894 || remote_get_threads_with_ql (&context))
6dc54d91 3895 {
ab970af1
PA
3896 got_list = 1;
3897
21fe1c75 3898 if (context.items.empty ()
f6ac5f3d 3899 && remote_thread_always_alive (inferior_ptid))
7d1a114c
PA
3900 {
3901 /* Some targets don't really support threads, but still
3902 reply an (empty) thread list in response to the thread
3903 listing packets, instead of replying "packet not
3904 supported". Exit early so we don't delete the main
3905 thread. */
7d1a114c
PA
3906 return;
3907 }
3908
ab970af1
PA
3909 /* CONTEXT now holds the current thread list on the remote
3910 target end. Delete GDB-side threads no longer found on the
3911 target. */
08036331 3912 for (thread_info *tp : all_threads_safe ())
cbb8991c 3913 {
5b6d1e4f
PA
3914 if (tp->inf->process_target () != this)
3915 continue;
3916
21fe1c75 3917 if (!context.contains_thread (tp->ptid))
ab970af1 3918 {
a05575d3
TBA
3919 /* Do not remove the thread if it is the last thread in
3920 the inferior. This situation happens when we have a
3921 pending exit process status to process. Otherwise we
3922 may end up with a seemingly live inferior (i.e. pid
3923 != 0) that has no threads. */
3924 if (has_single_non_exited_thread (tp->inf))
3925 continue;
3926
ab970af1 3927 /* Not found. */
00431a78 3928 delete_thread (tp);
ab970af1 3929 }
cbb8991c
DB
3930 }
3931
3932 /* Remove any unreported fork child threads from CONTEXT so
3933 that we don't interfere with follow fork, which is where
3934 creation of such threads is handled. */
3935 remove_new_fork_children (&context);
74531fed 3936
ab970af1 3937 /* And now add threads we don't know about yet to our list. */
21fe1c75 3938 for (thread_item &item : context.items)
6dc54d91 3939 {
21fe1c75 3940 if (item.ptid != null_ptid)
6dc54d91 3941 {
6dc54d91 3942 /* In non-stop mode, we assume new found threads are
0d5b594f
PA
3943 executing until proven otherwise with a stop reply.
3944 In all-stop, we can only get here if all threads are
6dc54d91 3945 stopped. */
0d5b594f 3946 int executing = target_is_non_stop_p () ? 1 : 0;
6dc54d91 3947
21fe1c75 3948 remote_notice_new_inferior (item.ptid, executing);
6dc54d91 3949
5b6d1e4f 3950 thread_info *tp = find_thread_ptid (this, item.ptid);
00431a78 3951 remote_thread_info *info = get_remote_thread_info (tp);
21fe1c75 3952 info->core = item.core;
7aabaf9d
SM
3953 info->extra = std::move (item.extra);
3954 info->name = std::move (item.name);
3955 info->thread_handle = std::move (item.thread_handle);
6dc54d91
PA
3956 }
3957 }
3958 }
3959
ab970af1
PA
3960 if (!got_list)
3961 {
3962 /* If no thread listing method is supported, then query whether
3963 each known thread is alive, one by one, with the T packet.
3964 If the target doesn't support threads at all, then this is a
3965 no-op. See remote_thread_alive. */
3966 prune_threads ();
3967 }
9d1f7ab2
MS
3968}
3969
802188a7 3970/*
9d1f7ab2
MS
3971 * Collect a descriptive string about the given thread.
3972 * The target may say anything it wants to about the thread
3973 * (typically info about its blocked / runnable state, name, etc.).
3974 * This string will appear in the info threads display.
802188a7 3975 *
9d1f7ab2
MS
3976 * Optional: targets are not required to implement this function.
3977 */
3978
f6ac5f3d
PA
3979const char *
3980remote_target::extra_thread_info (thread_info *tp)
9d1f7ab2 3981{
d01949b6 3982 struct remote_state *rs = get_remote_state ();
9d1f7ab2
MS
3983 int set;
3984 threadref id;
3985 struct gdb_ext_thread_info threadinfo;
9d1f7ab2 3986
5d93a237 3987 if (rs->remote_desc == 0) /* paranoia */
8e65ff28 3988 internal_error (__FILE__, __LINE__,
e2e0b3e5 3989 _("remote_threads_extra_info"));
9d1f7ab2 3990
d7e15655 3991 if (tp->ptid == magic_null_ptid
e38504b3 3992 || (tp->ptid.pid () != 0 && tp->ptid.lwp () == 0))
60e569b9
PA
3993 /* This is the main thread which was added by GDB. The remote
3994 server doesn't know about it. */
3995 return NULL;
3996
c76a8ea3
PA
3997 std::string &extra = get_remote_thread_info (tp)->extra;
3998
3999 /* If already have cached info, use it. */
4000 if (!extra.empty ())
4001 return extra.c_str ();
4002
4082afcc 4003 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
dc146f7c 4004 {
c76a8ea3
PA
4005 /* If we're using qXfer:threads:read, then the extra info is
4006 included in the XML. So if we didn't have anything cached,
4007 it's because there's really no extra info. */
4008 return NULL;
dc146f7c
VP
4009 }
4010
b80fafe3 4011 if (rs->use_threadextra_query)
9d1f7ab2 4012 {
8d64371b
TT
4013 char *b = rs->buf.data ();
4014 char *endb = b + get_remote_packet_size ();
82f73884
PA
4015
4016 xsnprintf (b, endb - b, "qThreadExtraInfo,");
4017 b += strlen (b);
4018 write_ptid (b, endb, tp->ptid);
4019
2e9f7625 4020 putpkt (rs->buf);
8d64371b 4021 getpkt (&rs->buf, 0);
2e9f7625 4022 if (rs->buf[0] != 0)
9d1f7ab2 4023 {
8d64371b
TT
4024 extra.resize (strlen (rs->buf.data ()) / 2);
4025 hex2bin (rs->buf.data (), (gdb_byte *) &extra[0], extra.size ());
c76a8ea3 4026 return extra.c_str ();
9d1f7ab2 4027 }
0f71a2f6 4028 }
9d1f7ab2
MS
4029
4030 /* If the above query fails, fall back to the old method. */
b80fafe3 4031 rs->use_threadextra_query = 0;
9d1f7ab2
MS
4032 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
4033 | TAG_MOREDISPLAY | TAG_DISPLAY;
e38504b3 4034 int_to_threadref (&id, tp->ptid.lwp ());
9d1f7ab2
MS
4035 if (remote_get_threadinfo (&id, set, &threadinfo))
4036 if (threadinfo.active)
0f71a2f6 4037 {
9d1f7ab2 4038 if (*threadinfo.shortname)
c76a8ea3 4039 string_appendf (extra, " Name: %s", threadinfo.shortname);
9d1f7ab2 4040 if (*threadinfo.display)
c76a8ea3
PA
4041 {
4042 if (!extra.empty ())
4043 extra += ',';
4044 string_appendf (extra, " State: %s", threadinfo.display);
4045 }
9d1f7ab2 4046 if (*threadinfo.more_display)
c5aa993b 4047 {
c76a8ea3
PA
4048 if (!extra.empty ())
4049 extra += ',';
4050 string_appendf (extra, " Priority: %s", threadinfo.more_display);
c5aa993b 4051 }
c76a8ea3 4052 return extra.c_str ();
0f71a2f6 4053 }
9d1f7ab2 4054 return NULL;
0f71a2f6 4055}
c906108c 4056\f
c5aa993b 4057
f6ac5f3d
PA
4058bool
4059remote_target::static_tracepoint_marker_at (CORE_ADDR addr,
4060 struct static_tracepoint_marker *marker)
0fb4aa4b
PA
4061{
4062 struct remote_state *rs = get_remote_state ();
8d64371b 4063 char *p = rs->buf.data ();
0fb4aa4b 4064
bba74b36 4065 xsnprintf (p, get_remote_packet_size (), "qTSTMat:");
0fb4aa4b
PA
4066 p += strlen (p);
4067 p += hexnumstr (p, addr);
4068 putpkt (rs->buf);
8d64371b
TT
4069 getpkt (&rs->buf, 0);
4070 p = rs->buf.data ();
0fb4aa4b
PA
4071
4072 if (*p == 'E')
4073 error (_("Remote failure reply: %s"), p);
4074
4075 if (*p++ == 'm')
4076 {
256642e8 4077 parse_static_tracepoint_marker_definition (p, NULL, marker);
5d9310c4 4078 return true;
0fb4aa4b
PA
4079 }
4080
5d9310c4 4081 return false;
0fb4aa4b
PA
4082}
4083
f6ac5f3d
PA
4084std::vector<static_tracepoint_marker>
4085remote_target::static_tracepoint_markers_by_strid (const char *strid)
0fb4aa4b
PA
4086{
4087 struct remote_state *rs = get_remote_state ();
5d9310c4 4088 std::vector<static_tracepoint_marker> markers;
256642e8 4089 const char *p;
5d9310c4 4090 static_tracepoint_marker marker;
0fb4aa4b
PA
4091
4092 /* Ask for a first packet of static tracepoint marker
4093 definition. */
4094 putpkt ("qTfSTM");
8d64371b
TT
4095 getpkt (&rs->buf, 0);
4096 p = rs->buf.data ();
0fb4aa4b
PA
4097 if (*p == 'E')
4098 error (_("Remote failure reply: %s"), p);
4099
0fb4aa4b
PA
4100 while (*p++ == 'm')
4101 {
0fb4aa4b
PA
4102 do
4103 {
5d9310c4 4104 parse_static_tracepoint_marker_definition (p, &p, &marker);
0fb4aa4b 4105
5d9310c4
SM
4106 if (strid == NULL || marker.str_id == strid)
4107 markers.push_back (std::move (marker));
0fb4aa4b
PA
4108 }
4109 while (*p++ == ','); /* comma-separated list */
4110 /* Ask for another packet of static tracepoint definition. */
4111 putpkt ("qTsSTM");
8d64371b
TT
4112 getpkt (&rs->buf, 0);
4113 p = rs->buf.data ();
0fb4aa4b
PA
4114 }
4115
0fb4aa4b
PA
4116 return markers;
4117}
4118
4119\f
10760264
JB
4120/* Implement the to_get_ada_task_ptid function for the remote targets. */
4121
f6ac5f3d
PA
4122ptid_t
4123remote_target::get_ada_task_ptid (long lwp, long thread)
10760264 4124{
e99b03dc 4125 return ptid_t (inferior_ptid.pid (), lwp, 0);
10760264
JB
4126}
4127\f
4128
24b06219 4129/* Restart the remote side; this is an extended protocol operation. */
c906108c 4130
6b8edb51
PA
4131void
4132remote_target::extended_remote_restart ()
c906108c 4133{
d01949b6 4134 struct remote_state *rs = get_remote_state ();
c906108c
SS
4135
4136 /* Send the restart command; for reasons I don't understand the
4137 remote side really expects a number after the "R". */
8d64371b 4138 xsnprintf (rs->buf.data (), get_remote_packet_size (), "R%x", 0);
6d820c5c 4139 putpkt (rs->buf);
c906108c 4140
ad9a8f3f 4141 remote_fileio_reset ();
c906108c
SS
4142}
4143\f
4144/* Clean up connection to a remote debugger. */
4145
f6ac5f3d
PA
4146void
4147remote_target::close ()
c906108c 4148{
048094ac 4149 /* Make sure we leave stdin registered in the event loop. */
f6ac5f3d 4150 terminal_ours ();
ce5ce7ed 4151
6b8edb51
PA
4152 trace_reset_local_state ();
4153
4154 delete this;
4155}
4156
4157remote_target::~remote_target ()
4158{
4159 struct remote_state *rs = get_remote_state ();
4160
4161 /* Check for NULL because we may get here with a partially
4162 constructed target/connection. */
4163 if (rs->remote_desc == nullptr)
4164 return;
4165
4166 serial_close (rs->remote_desc);
4167
4168 /* We are destroying the remote target, so we should discard
f48ff2a7 4169 everything of this target. */
6b8edb51 4170 discard_pending_stop_replies_in_queue ();
74531fed 4171
6b8edb51
PA
4172 if (rs->remote_async_inferior_event_token)
4173 delete_async_event_handler (&rs->remote_async_inferior_event_token);
722247f1 4174
97dfbadd 4175 delete rs->notif_state;
c906108c
SS
4176}
4177
23860348 4178/* Query the remote side for the text, data and bss offsets. */
c906108c 4179
6b8edb51
PA
4180void
4181remote_target::get_offsets ()
c906108c 4182{
d01949b6 4183 struct remote_state *rs = get_remote_state ();
2e9f7625 4184 char *buf;
085dd6e6 4185 char *ptr;
31d99776
DJ
4186 int lose, num_segments = 0, do_sections, do_segments;
4187 CORE_ADDR text_addr, data_addr, bss_addr, segments[2];
31d99776 4188
a42d7dd8 4189 if (current_program_space->symfile_object_file == NULL)
31d99776 4190 return;
c906108c
SS
4191
4192 putpkt ("qOffsets");
8d64371b
TT
4193 getpkt (&rs->buf, 0);
4194 buf = rs->buf.data ();
c906108c
SS
4195
4196 if (buf[0] == '\000')
4197 return; /* Return silently. Stub doesn't support
23860348 4198 this command. */
c906108c
SS
4199 if (buf[0] == 'E')
4200 {
8a3fe4f8 4201 warning (_("Remote failure reply: %s"), buf);
c906108c
SS
4202 return;
4203 }
4204
4205 /* Pick up each field in turn. This used to be done with scanf, but
4206 scanf will make trouble if CORE_ADDR size doesn't match
4207 conversion directives correctly. The following code will work
4208 with any size of CORE_ADDR. */
4209 text_addr = data_addr = bss_addr = 0;
4210 ptr = buf;
4211 lose = 0;
4212
61012eef 4213 if (startswith (ptr, "Text="))
c906108c
SS
4214 {
4215 ptr += 5;
4216 /* Don't use strtol, could lose on big values. */
4217 while (*ptr && *ptr != ';')
4218 text_addr = (text_addr << 4) + fromhex (*ptr++);
c906108c 4219
61012eef 4220 if (startswith (ptr, ";Data="))
31d99776
DJ
4221 {
4222 ptr += 6;
4223 while (*ptr && *ptr != ';')
4224 data_addr = (data_addr << 4) + fromhex (*ptr++);
4225 }
4226 else
4227 lose = 1;
4228
61012eef 4229 if (!lose && startswith (ptr, ";Bss="))
31d99776
DJ
4230 {
4231 ptr += 5;
4232 while (*ptr && *ptr != ';')
4233 bss_addr = (bss_addr << 4) + fromhex (*ptr++);
c906108c 4234
31d99776
DJ
4235 if (bss_addr != data_addr)
4236 warning (_("Target reported unsupported offsets: %s"), buf);
4237 }
4238 else
4239 lose = 1;
4240 }
61012eef 4241 else if (startswith (ptr, "TextSeg="))
c906108c 4242 {
31d99776
DJ
4243 ptr += 8;
4244 /* Don't use strtol, could lose on big values. */
c906108c 4245 while (*ptr && *ptr != ';')
31d99776
DJ
4246 text_addr = (text_addr << 4) + fromhex (*ptr++);
4247 num_segments = 1;
4248
61012eef 4249 if (startswith (ptr, ";DataSeg="))
31d99776
DJ
4250 {
4251 ptr += 9;
4252 while (*ptr && *ptr != ';')
4253 data_addr = (data_addr << 4) + fromhex (*ptr++);
4254 num_segments++;
4255 }
c906108c
SS
4256 }
4257 else
4258 lose = 1;
4259
4260 if (lose)
8a3fe4f8 4261 error (_("Malformed response to offset query, %s"), buf);
31d99776
DJ
4262 else if (*ptr != '\0')
4263 warning (_("Target reported unsupported offsets: %s"), buf);
c906108c 4264
a42d7dd8
TT
4265 objfile *objf = current_program_space->symfile_object_file;
4266 section_offsets offs = objf->section_offsets;
c906108c 4267
a42d7dd8 4268 symfile_segment_data_up data = get_symfile_segment_data (objf->obfd);
31d99776
DJ
4269 do_segments = (data != NULL);
4270 do_sections = num_segments == 0;
c906108c 4271
28c32713 4272 if (num_segments > 0)
31d99776 4273 {
31d99776
DJ
4274 segments[0] = text_addr;
4275 segments[1] = data_addr;
4276 }
28c32713
JB
4277 /* If we have two segments, we can still try to relocate everything
4278 by assuming that the .text and .data offsets apply to the whole
4279 text and data segments. Convert the offsets given in the packet
4280 to base addresses for symfile_map_offsets_to_segments. */
68b888ff 4281 else if (data != nullptr && data->segments.size () == 2)
28c32713 4282 {
68b888ff
SM
4283 segments[0] = data->segments[0].base + text_addr;
4284 segments[1] = data->segments[1].base + data_addr;
28c32713
JB
4285 num_segments = 2;
4286 }
8d385431
DJ
4287 /* If the object file has only one segment, assume that it is text
4288 rather than data; main programs with no writable data are rare,
4289 but programs with no code are useless. Of course the code might
4290 have ended up in the data segment... to detect that we would need
4291 the permissions here. */
68b888ff 4292 else if (data && data->segments.size () == 1)
8d385431 4293 {
68b888ff 4294 segments[0] = data->segments[0].base + text_addr;
8d385431
DJ
4295 num_segments = 1;
4296 }
28c32713
JB
4297 /* There's no way to relocate by segment. */
4298 else
4299 do_segments = 0;
31d99776
DJ
4300
4301 if (do_segments)
4302 {
a42d7dd8 4303 int ret = symfile_map_offsets_to_segments (objf->obfd,
62982abd
SM
4304 data.get (), offs,
4305 num_segments, segments);
31d99776
DJ
4306
4307 if (ret == 0 && !do_sections)
3e43a32a
MS
4308 error (_("Can not handle qOffsets TextSeg "
4309 "response with this symbol file"));
31d99776
DJ
4310
4311 if (ret > 0)
4312 do_sections = 0;
4313 }
c906108c 4314
31d99776
DJ
4315 if (do_sections)
4316 {
a42d7dd8 4317 offs[SECT_OFF_TEXT (objf)] = text_addr;
31d99776 4318
3e43a32a
MS
4319 /* This is a temporary kludge to force data and bss to use the
4320 same offsets because that's what nlmconv does now. The real
4321 solution requires changes to the stub and remote.c that I
4322 don't have time to do right now. */
31d99776 4323
a42d7dd8
TT
4324 offs[SECT_OFF_DATA (objf)] = data_addr;
4325 offs[SECT_OFF_BSS (objf)] = data_addr;
31d99776 4326 }
c906108c 4327
a42d7dd8 4328 objfile_relocate (objf, offs);
c906108c
SS
4329}
4330
9a7071a8 4331/* Send interrupt_sequence to remote target. */
6b8edb51
PA
4332
4333void
4334remote_target::send_interrupt_sequence ()
9a7071a8 4335{
5d93a237
TT
4336 struct remote_state *rs = get_remote_state ();
4337
9a7071a8 4338 if (interrupt_sequence_mode == interrupt_sequence_control_c)
c33e31fd 4339 remote_serial_write ("\x03", 1);
9a7071a8 4340 else if (interrupt_sequence_mode == interrupt_sequence_break)
5d93a237 4341 serial_send_break (rs->remote_desc);
9a7071a8
JB
4342 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
4343 {
5d93a237 4344 serial_send_break (rs->remote_desc);
c33e31fd 4345 remote_serial_write ("g", 1);
9a7071a8
JB
4346 }
4347 else
4348 internal_error (__FILE__, __LINE__,
4349 _("Invalid value for interrupt_sequence_mode: %s."),
4350 interrupt_sequence_mode);
4351}
4352
3405876a
PA
4353
4354/* If STOP_REPLY is a T stop reply, look for the "thread" register,
4355 and extract the PTID. Returns NULL_PTID if not found. */
4356
4357static ptid_t
e3b2741b 4358stop_reply_extract_thread (const char *stop_reply)
3405876a
PA
4359{
4360 if (stop_reply[0] == 'T' && strlen (stop_reply) > 3)
4361 {
256642e8 4362 const char *p;
3405876a
PA
4363
4364 /* Txx r:val ; r:val (...) */
4365 p = &stop_reply[3];
4366
4367 /* Look for "register" named "thread". */
4368 while (*p != '\0')
4369 {
256642e8 4370 const char *p1;
3405876a
PA
4371
4372 p1 = strchr (p, ':');
4373 if (p1 == NULL)
4374 return null_ptid;
4375
4376 if (strncmp (p, "thread", p1 - p) == 0)
4377 return read_ptid (++p1, &p);
4378
4379 p1 = strchr (p, ';');
4380 if (p1 == NULL)
4381 return null_ptid;
4382 p1++;
4383
4384 p = p1;
4385 }
4386 }
4387
4388 return null_ptid;
4389}
4390
b7ea362b
PA
4391/* Determine the remote side's current thread. If we have a stop
4392 reply handy (in WAIT_STATUS), maybe it's a T stop reply with a
4393 "thread" register we can extract the current thread from. If not,
4394 ask the remote which is the current thread with qC. The former
4395 method avoids a roundtrip. */
4396
6b8edb51 4397ptid_t
e3b2741b 4398remote_target::get_current_thread (const char *wait_status)
b7ea362b 4399{
6a49a997 4400 ptid_t ptid = null_ptid;
b7ea362b
PA
4401
4402 /* Note we don't use remote_parse_stop_reply as that makes use of
4403 the target architecture, which we haven't yet fully determined at
4404 this point. */
4405 if (wait_status != NULL)
4406 ptid = stop_reply_extract_thread (wait_status);
d7e15655 4407 if (ptid == null_ptid)
b7ea362b
PA
4408 ptid = remote_current_thread (inferior_ptid);
4409
4410 return ptid;
4411}
4412
49c62f2e
PA
4413/* Query the remote target for which is the current thread/process,
4414 add it to our tables, and update INFERIOR_PTID. The caller is
4415 responsible for setting the state such that the remote end is ready
3405876a
PA
4416 to return the current thread.
4417
4418 This function is called after handling the '?' or 'vRun' packets,
4419 whose response is a stop reply from which we can also try
4420 extracting the thread. If the target doesn't support the explicit
4421 qC query, we infer the current thread from that stop reply, passed
4422 in in WAIT_STATUS, which may be NULL. */
49c62f2e 4423
6b8edb51 4424void
e3b2741b 4425remote_target::add_current_inferior_and_thread (const char *wait_status)
49c62f2e
PA
4426{
4427 struct remote_state *rs = get_remote_state ();
9ab8741a 4428 bool fake_pid_p = false;
49c62f2e 4429
0ac55310 4430 switch_to_no_thread ();
49c62f2e 4431
0ac55310
PA
4432 /* Now, if we have thread information, update the current thread's
4433 ptid. */
87215ad1 4434 ptid_t curr_ptid = get_current_thread (wait_status);
3405876a 4435
87215ad1 4436 if (curr_ptid != null_ptid)
49c62f2e
PA
4437 {
4438 if (!remote_multi_process_p (rs))
9ab8741a 4439 fake_pid_p = true;
49c62f2e
PA
4440 }
4441 else
4442 {
4443 /* Without this, some commands which require an active target
4444 (such as kill) won't work. This variable serves (at least)
4445 double duty as both the pid of the target process (if it has
4446 such), and as a flag indicating that a target is active. */
87215ad1 4447 curr_ptid = magic_null_ptid;
9ab8741a 4448 fake_pid_p = true;
49c62f2e
PA
4449 }
4450
e99b03dc 4451 remote_add_inferior (fake_pid_p, curr_ptid.pid (), -1, 1);
49c62f2e 4452
87215ad1
SDJ
4453 /* Add the main thread and switch to it. Don't try reading
4454 registers yet, since we haven't fetched the target description
4455 yet. */
5b6d1e4f 4456 thread_info *tp = add_thread_silent (this, curr_ptid);
87215ad1 4457 switch_to_thread_no_regs (tp);
49c62f2e
PA
4458}
4459
6efcd9a8
PA
4460/* Print info about a thread that was found already stopped on
4461 connection. */
4462
4463static void
4464print_one_stopped_thread (struct thread_info *thread)
4465{
4466 struct target_waitstatus *ws = &thread->suspend.waitstatus;
4467
00431a78 4468 switch_to_thread (thread);
f2ffa92b 4469 thread->suspend.stop_pc = get_frame_pc (get_current_frame ());
6efcd9a8
PA
4470 set_current_sal_from_frame (get_current_frame ());
4471
4472 thread->suspend.waitstatus_pending_p = 0;
4473
4474 if (ws->kind == TARGET_WAITKIND_STOPPED)
4475 {
4476 enum gdb_signal sig = ws->value.sig;
4477
4478 if (signal_print_state (sig))
76727919 4479 gdb::observers::signal_received.notify (sig);
6efcd9a8 4480 }
76727919 4481 gdb::observers::normal_stop.notify (NULL, 1);
6efcd9a8
PA
4482}
4483
221e1a37
PA
4484/* Process all initial stop replies the remote side sent in response
4485 to the ? packet. These indicate threads that were already stopped
4486 on initial connection. We mark these threads as stopped and print
4487 their current frame before giving the user the prompt. */
4488
6b8edb51
PA
4489void
4490remote_target::process_initial_stop_replies (int from_tty)
221e1a37
PA
4491{
4492 int pending_stop_replies = stop_reply_queue_length ();
6efcd9a8
PA
4493 struct thread_info *selected = NULL;
4494 struct thread_info *lowest_stopped = NULL;
4495 struct thread_info *first = NULL;
221e1a37
PA
4496
4497 /* Consume the initial pending events. */
4498 while (pending_stop_replies-- > 0)
4499 {
4500 ptid_t waiton_ptid = minus_one_ptid;
4501 ptid_t event_ptid;
4502 struct target_waitstatus ws;
4503 int ignore_event = 0;
4504
4505 memset (&ws, 0, sizeof (ws));
4506 event_ptid = target_wait (waiton_ptid, &ws, TARGET_WNOHANG);
4507 if (remote_debug)
4508 print_target_wait_results (waiton_ptid, event_ptid, &ws);
4509
4510 switch (ws.kind)
4511 {
4512 case TARGET_WAITKIND_IGNORE:
4513 case TARGET_WAITKIND_NO_RESUMED:
4514 case TARGET_WAITKIND_SIGNALLED:
4515 case TARGET_WAITKIND_EXITED:
4516 /* We shouldn't see these, but if we do, just ignore. */
4517 if (remote_debug)
4518 fprintf_unfiltered (gdb_stdlog, "remote: event ignored\n");
4519 ignore_event = 1;
4520 break;
4521
4522 case TARGET_WAITKIND_EXECD:
4523 xfree (ws.value.execd_pathname);
4524 break;
4525 default:
4526 break;
4527 }
4528
4529 if (ignore_event)
4530 continue;
4531
5b6d1e4f 4532 thread_info *evthread = find_thread_ptid (this, event_ptid);
221e1a37
PA
4533
4534 if (ws.kind == TARGET_WAITKIND_STOPPED)
4535 {
4536 enum gdb_signal sig = ws.value.sig;
4537
4538 /* Stubs traditionally report SIGTRAP as initial signal,
4539 instead of signal 0. Suppress it. */
4540 if (sig == GDB_SIGNAL_TRAP)
4541 sig = GDB_SIGNAL_0;
b926417a 4542 evthread->suspend.stop_signal = sig;
6efcd9a8
PA
4543 ws.value.sig = sig;
4544 }
221e1a37 4545
b926417a 4546 evthread->suspend.waitstatus = ws;
6efcd9a8
PA
4547
4548 if (ws.kind != TARGET_WAITKIND_STOPPED
4549 || ws.value.sig != GDB_SIGNAL_0)
b926417a 4550 evthread->suspend.waitstatus_pending_p = 1;
6efcd9a8 4551
719546c4
SM
4552 set_executing (this, event_ptid, false);
4553 set_running (this, event_ptid, false);
c9d22089 4554 get_remote_thread_info (evthread)->set_not_resumed ();
6efcd9a8
PA
4555 }
4556
4557 /* "Notice" the new inferiors before anything related to
4558 registers/memory. */
5b6d1e4f 4559 for (inferior *inf : all_non_exited_inferiors (this))
6efcd9a8 4560 {
6efcd9a8
PA
4561 inf->needs_setup = 1;
4562
4563 if (non_stop)
4564 {
08036331 4565 thread_info *thread = any_live_thread_of_inferior (inf);
00431a78 4566 notice_new_inferior (thread, thread->state == THREAD_RUNNING,
6efcd9a8
PA
4567 from_tty);
4568 }
4569 }
4570
4571 /* If all-stop on top of non-stop, pause all threads. Note this
4572 records the threads' stop pc, so must be done after "noticing"
4573 the inferiors. */
4574 if (!non_stop)
4575 {
4576 stop_all_threads ();
4577
4578 /* If all threads of an inferior were already stopped, we
4579 haven't setup the inferior yet. */
5b6d1e4f 4580 for (inferior *inf : all_non_exited_inferiors (this))
6efcd9a8 4581 {
6efcd9a8
PA
4582 if (inf->needs_setup)
4583 {
08036331 4584 thread_info *thread = any_live_thread_of_inferior (inf);
6efcd9a8
PA
4585 switch_to_thread_no_regs (thread);
4586 setup_inferior (0);
4587 }
4588 }
221e1a37 4589 }
6efcd9a8
PA
4590
4591 /* Now go over all threads that are stopped, and print their current
4592 frame. If all-stop, then if there's a signalled thread, pick
4593 that as current. */
5b6d1e4f 4594 for (thread_info *thread : all_non_exited_threads (this))
6efcd9a8 4595 {
6efcd9a8
PA
4596 if (first == NULL)
4597 first = thread;
4598
4599 if (!non_stop)
00431a78 4600 thread->set_running (false);
6efcd9a8
PA
4601 else if (thread->state != THREAD_STOPPED)
4602 continue;
4603
6efcd9a8
PA
4604 if (selected == NULL
4605 && thread->suspend.waitstatus_pending_p)
4606 selected = thread;
4607
5d5658a1
PA
4608 if (lowest_stopped == NULL
4609 || thread->inf->num < lowest_stopped->inf->num
4610 || thread->per_inf_num < lowest_stopped->per_inf_num)
6efcd9a8
PA
4611 lowest_stopped = thread;
4612
4613 if (non_stop)
4614 print_one_stopped_thread (thread);
4615 }
4616
4617 /* In all-stop, we only print the status of one thread, and leave
4618 others with their status pending. */
4619 if (!non_stop)
4620 {
08036331 4621 thread_info *thread = selected;
6efcd9a8
PA
4622 if (thread == NULL)
4623 thread = lowest_stopped;
4624 if (thread == NULL)
4625 thread = first;
4626
4627 print_one_stopped_thread (thread);
4628 }
4629
4630 /* For "info program". */
08036331 4631 thread_info *thread = inferior_thread ();
6efcd9a8 4632 if (thread->state == THREAD_STOPPED)
5b6d1e4f 4633 set_last_target_status (this, inferior_ptid, thread->suspend.waitstatus);
221e1a37
PA
4634}
4635
048094ac
PA
4636/* Start the remote connection and sync state. */
4637
f6ac5f3d
PA
4638void
4639remote_target::start_remote (int from_tty, int extended_p)
c906108c 4640{
c8d104ad
PA
4641 struct remote_state *rs = get_remote_state ();
4642 struct packet_config *noack_config;
8621d6a9 4643
048094ac
PA
4644 /* Signal other parts that we're going through the initial setup,
4645 and so things may not be stable yet. E.g., we don't try to
4646 install tracepoints until we've relocated symbols. Also, a
4647 Ctrl-C before we're connected and synced up can't interrupt the
4648 target. Instead, it offers to drop the (potentially wedged)
4649 connection. */
4650 rs->starting_up = 1;
4651
522002f9 4652 QUIT;
c906108c 4653
9a7071a8
JB
4654 if (interrupt_on_connect)
4655 send_interrupt_sequence ();
4656
57e12211 4657 /* Ack any packet which the remote side has already sent. */
048094ac 4658 remote_serial_write ("+", 1);
1e51243a 4659
c8d104ad
PA
4660 /* The first packet we send to the target is the optional "supported
4661 packets" request. If the target can answer this, it will tell us
4662 which later probes to skip. */
4663 remote_query_supported ();
4664
d914c394 4665 /* If the stub wants to get a QAllow, compose one and send it. */
4082afcc 4666 if (packet_support (PACKET_QAllow) != PACKET_DISABLE)
f6ac5f3d 4667 set_permissions ();
d914c394 4668
57809e5e
JK
4669 /* gdbserver < 7.7 (before its fix from 2013-12-11) did reply to any
4670 unknown 'v' packet with string "OK". "OK" gets interpreted by GDB
4671 as a reply to known packet. For packet "vFile:setfs:" it is an
4672 invalid reply and GDB would return error in
4673 remote_hostio_set_filesystem, making remote files access impossible.
4674 Disable "vFile:setfs:" in such case. Do not disable other 'v' packets as
4675 other "vFile" packets get correctly detected even on gdbserver < 7.7. */
4676 {
4677 const char v_mustreplyempty[] = "vMustReplyEmpty";
4678
4679 putpkt (v_mustreplyempty);
8d64371b
TT
4680 getpkt (&rs->buf, 0);
4681 if (strcmp (rs->buf.data (), "OK") == 0)
57809e5e 4682 remote_protocol_packets[PACKET_vFile_setfs].support = PACKET_DISABLE;
8d64371b 4683 else if (strcmp (rs->buf.data (), "") != 0)
57809e5e 4684 error (_("Remote replied unexpectedly to '%s': %s"), v_mustreplyempty,
8d64371b 4685 rs->buf.data ());
57809e5e
JK
4686 }
4687
c8d104ad
PA
4688 /* Next, we possibly activate noack mode.
4689
4690 If the QStartNoAckMode packet configuration is set to AUTO,
4691 enable noack mode if the stub reported a wish for it with
4692 qSupported.
4693
4694 If set to TRUE, then enable noack mode even if the stub didn't
4695 report it in qSupported. If the stub doesn't reply OK, the
4696 session ends with an error.
4697
4698 If FALSE, then don't activate noack mode, regardless of what the
4699 stub claimed should be the default with qSupported. */
4700
4701 noack_config = &remote_protocol_packets[PACKET_QStartNoAckMode];
4082afcc 4702 if (packet_config_support (noack_config) != PACKET_DISABLE)
c8d104ad
PA
4703 {
4704 putpkt ("QStartNoAckMode");
8d64371b 4705 getpkt (&rs->buf, 0);
c8d104ad
PA
4706 if (packet_ok (rs->buf, noack_config) == PACKET_OK)
4707 rs->noack_mode = 1;
4708 }
4709
04bd08de 4710 if (extended_p)
5fe04517
PA
4711 {
4712 /* Tell the remote that we are using the extended protocol. */
4713 putpkt ("!");
8d64371b 4714 getpkt (&rs->buf, 0);
5fe04517
PA
4715 }
4716
9b224c5e
PA
4717 /* Let the target know which signals it is allowed to pass down to
4718 the program. */
4719 update_signals_program_target ();
4720
d962ef82
DJ
4721 /* Next, if the target can specify a description, read it. We do
4722 this before anything involving memory or registers. */
4723 target_find_description ();
4724
6c95b8df
PA
4725 /* Next, now that we know something about the target, update the
4726 address spaces in the program spaces. */
4727 update_address_spaces ();
4728
50c71eaf
PA
4729 /* On OSs where the list of libraries is global to all
4730 processes, we fetch them early. */
f5656ead 4731 if (gdbarch_has_global_solist (target_gdbarch ()))
e696b3ad 4732 solib_add (NULL, from_tty, auto_solib_add);
50c71eaf 4733
6efcd9a8 4734 if (target_is_non_stop_p ())
74531fed 4735 {
4082afcc 4736 if (packet_support (PACKET_QNonStop) != PACKET_ENABLE)
3e43a32a
MS
4737 error (_("Non-stop mode requested, but remote "
4738 "does not support non-stop"));
74531fed
PA
4739
4740 putpkt ("QNonStop:1");
8d64371b 4741 getpkt (&rs->buf, 0);
74531fed 4742
8d64371b
TT
4743 if (strcmp (rs->buf.data (), "OK") != 0)
4744 error (_("Remote refused setting non-stop mode with: %s"),
4745 rs->buf.data ());
74531fed
PA
4746
4747 /* Find about threads and processes the stub is already
4748 controlling. We default to adding them in the running state.
4749 The '?' query below will then tell us about which threads are
4750 stopped. */
f6ac5f3d 4751 this->update_thread_list ();
74531fed 4752 }
4082afcc 4753 else if (packet_support (PACKET_QNonStop) == PACKET_ENABLE)
74531fed
PA
4754 {
4755 /* Don't assume that the stub can operate in all-stop mode.
e6f3fa52 4756 Request it explicitly. */
74531fed 4757 putpkt ("QNonStop:0");
8d64371b 4758 getpkt (&rs->buf, 0);
74531fed 4759
8d64371b
TT
4760 if (strcmp (rs->buf.data (), "OK") != 0)
4761 error (_("Remote refused setting all-stop mode with: %s"),
4762 rs->buf.data ());
74531fed
PA
4763 }
4764
a0743c90
YQ
4765 /* Upload TSVs regardless of whether the target is running or not. The
4766 remote stub, such as GDBserver, may have some predefined or builtin
4767 TSVs, even if the target is not running. */
f6ac5f3d 4768 if (get_trace_status (current_trace_status ()) != -1)
a0743c90
YQ
4769 {
4770 struct uploaded_tsv *uploaded_tsvs = NULL;
4771
f6ac5f3d 4772 upload_trace_state_variables (&uploaded_tsvs);
a0743c90
YQ
4773 merge_uploaded_trace_state_variables (&uploaded_tsvs);
4774 }
4775
2d717e4f
DJ
4776 /* Check whether the target is running now. */
4777 putpkt ("?");
8d64371b 4778 getpkt (&rs->buf, 0);
2d717e4f 4779
6efcd9a8 4780 if (!target_is_non_stop_p ())
2d717e4f 4781 {
b5c8f22d
SM
4782 char *wait_status = NULL;
4783
74531fed 4784 if (rs->buf[0] == 'W' || rs->buf[0] == 'X')
2d717e4f 4785 {
04bd08de 4786 if (!extended_p)
74531fed 4787 error (_("The target is not running (try extended-remote?)"));
c35b1492
PA
4788
4789 /* We're connected, but not running. Drop out before we
4790 call start_remote. */
e278ad5b 4791 rs->starting_up = 0;
c35b1492 4792 return;
2d717e4f
DJ
4793 }
4794 else
74531fed 4795 {
74531fed 4796 /* Save the reply for later. */
8d64371b
TT
4797 wait_status = (char *) alloca (strlen (rs->buf.data ()) + 1);
4798 strcpy (wait_status, rs->buf.data ());
74531fed
PA
4799 }
4800
b7ea362b 4801 /* Fetch thread list. */
e8032dde 4802 target_update_thread_list ();
b7ea362b 4803
74531fed
PA
4804 /* Let the stub know that we want it to return the thread. */
4805 set_continue_thread (minus_one_ptid);
4806
5b6d1e4f 4807 if (thread_count (this) == 0)
b7ea362b
PA
4808 {
4809 /* Target has no concept of threads at all. GDB treats
4810 non-threaded target as single-threaded; add a main
4811 thread. */
4812 add_current_inferior_and_thread (wait_status);
4813 }
4814 else
4815 {
4816 /* We have thread information; select the thread the target
4817 says should be current. If we're reconnecting to a
4818 multi-threaded program, this will ideally be the thread
4819 that last reported an event before GDB disconnected. */
75c6c844
PA
4820 ptid_t curr_thread = get_current_thread (wait_status);
4821 if (curr_thread == null_ptid)
b7ea362b
PA
4822 {
4823 /* Odd... The target was able to list threads, but not
4824 tell us which thread was current (no "thread"
4825 register in T stop reply?). Just pick the first
4826 thread in the thread list then. */
c9f35b34
KB
4827
4828 if (remote_debug)
4829 fprintf_unfiltered (gdb_stdlog,
dda83cd7 4830 "warning: couldn't determine remote "
c9f35b34
KB
4831 "current thread; picking first in list.\n");
4832
5b6d1e4f
PA
4833 for (thread_info *tp : all_non_exited_threads (this,
4834 minus_one_ptid))
75c6c844
PA
4835 {
4836 switch_to_thread (tp);
4837 break;
4838 }
b7ea362b 4839 }
75c6c844 4840 else
5b6d1e4f 4841 switch_to_thread (find_thread_ptid (this, curr_thread));
b7ea362b 4842 }
74531fed 4843
6e586cc5
YQ
4844 /* init_wait_for_inferior should be called before get_offsets in order
4845 to manage `inserted' flag in bp loc in a correct state.
4846 breakpoint_init_inferior, called from init_wait_for_inferior, set
4847 `inserted' flag to 0, while before breakpoint_re_set, called from
4848 start_remote, set `inserted' flag to 1. In the initialization of
4849 inferior, breakpoint_init_inferior should be called first, and then
4850 breakpoint_re_set can be called. If this order is broken, state of
4851 `inserted' flag is wrong, and cause some problems on breakpoint
4852 manipulation. */
4853 init_wait_for_inferior ();
4854
74531fed
PA
4855 get_offsets (); /* Get text, data & bss offsets. */
4856
d962ef82
DJ
4857 /* If we could not find a description using qXfer, and we know
4858 how to do it some other way, try again. This is not
4859 supported for non-stop; it could be, but it is tricky if
4860 there are no stopped threads when we connect. */
f6ac5f3d 4861 if (remote_read_description_p (this)
f5656ead 4862 && gdbarch_target_desc (target_gdbarch ()) == NULL)
d962ef82
DJ
4863 {
4864 target_clear_description ();
4865 target_find_description ();
4866 }
4867
74531fed
PA
4868 /* Use the previously fetched status. */
4869 gdb_assert (wait_status != NULL);
8d64371b 4870 strcpy (rs->buf.data (), wait_status);
74531fed
PA
4871 rs->cached_wait_status = 1;
4872
f6ac5f3d 4873 ::start_remote (from_tty); /* Initialize gdb process mechanisms. */
2d717e4f
DJ
4874 }
4875 else
4876 {
68c97600
PA
4877 /* Clear WFI global state. Do this before finding about new
4878 threads and inferiors, and setting the current inferior.
4879 Otherwise we would clear the proceed status of the current
4880 inferior when we want its stop_soon state to be preserved
4881 (see notice_new_inferior). */
4882 init_wait_for_inferior ();
4883
74531fed
PA
4884 /* In non-stop, we will either get an "OK", meaning that there
4885 are no stopped threads at this time; or, a regular stop
4886 reply. In the latter case, there may be more than one thread
4887 stopped --- we pull them all out using the vStopped
4888 mechanism. */
8d64371b 4889 if (strcmp (rs->buf.data (), "OK") != 0)
74531fed 4890 {
722247f1 4891 struct notif_client *notif = &notif_client_stop;
2d717e4f 4892
722247f1
YQ
4893 /* remote_notif_get_pending_replies acks this one, and gets
4894 the rest out. */
f48ff2a7 4895 rs->notif_state->pending_event[notif_client_stop.id]
8d64371b 4896 = remote_notif_parse (this, notif, rs->buf.data ());
722247f1 4897 remote_notif_get_pending_events (notif);
74531fed 4898 }
2d717e4f 4899
5b6d1e4f 4900 if (thread_count (this) == 0)
74531fed 4901 {
04bd08de 4902 if (!extended_p)
74531fed 4903 error (_("The target is not running (try extended-remote?)"));
82f73884 4904
c35b1492
PA
4905 /* We're connected, but not running. Drop out before we
4906 call start_remote. */
e278ad5b 4907 rs->starting_up = 0;
c35b1492
PA
4908 return;
4909 }
74531fed 4910
2455069d 4911 /* Report all signals during attach/startup. */
adc6a863 4912 pass_signals ({});
221e1a37
PA
4913
4914 /* If there are already stopped threads, mark them stopped and
4915 report their stops before giving the prompt to the user. */
6efcd9a8 4916 process_initial_stop_replies (from_tty);
221e1a37
PA
4917
4918 if (target_can_async_p ())
4919 target_async (1);
74531fed 4920 }
c8d104ad 4921
c8d104ad 4922 /* If we connected to a live target, do some additional setup. */
55f6301a 4923 if (target_has_execution ())
c8d104ad 4924 {
a42d7dd8
TT
4925 /* No use without a symbol-file. */
4926 if (current_program_space->symfile_object_file)
36d25514 4927 remote_check_symbols ();
c8d104ad 4928 }
50c71eaf 4929
d5551862
SS
4930 /* Possibly the target has been engaged in a trace run started
4931 previously; find out where things are at. */
f6ac5f3d 4932 if (get_trace_status (current_trace_status ()) != -1)
d5551862 4933 {
00bf0b85 4934 struct uploaded_tp *uploaded_tps = NULL;
00bf0b85 4935
00bf0b85
SS
4936 if (current_trace_status ()->running)
4937 printf_filtered (_("Trace is already running on the target.\n"));
4938
f6ac5f3d 4939 upload_tracepoints (&uploaded_tps);
00bf0b85
SS
4940
4941 merge_uploaded_tracepoints (&uploaded_tps);
d5551862
SS
4942 }
4943
c0272db5
TW
4944 /* Possibly the target has been engaged in a btrace record started
4945 previously; find out where things are at. */
4946 remote_btrace_maybe_reopen ();
4947
1e51243a
PA
4948 /* The thread and inferior lists are now synchronized with the
4949 target, our symbols have been relocated, and we're merged the
4950 target's tracepoints with ours. We're done with basic start
4951 up. */
4952 rs->starting_up = 0;
4953
a25a5a45
PA
4954 /* Maybe breakpoints are global and need to be inserted now. */
4955 if (breakpoints_should_be_inserted_now ())
50c71eaf 4956 insert_breakpoints ();
c906108c
SS
4957}
4958
121b3efd
PA
4959const char *
4960remote_target::connection_string ()
4961{
4962 remote_state *rs = get_remote_state ();
4963
4964 if (rs->remote_desc->name != NULL)
4965 return rs->remote_desc->name;
4966 else
4967 return NULL;
4968}
4969
c906108c
SS
4970/* Open a connection to a remote debugger.
4971 NAME is the filename used for communication. */
4972
f6ac5f3d
PA
4973void
4974remote_target::open (const char *name, int from_tty)
c906108c 4975{
f6ac5f3d 4976 open_1 (name, from_tty, 0);
43ff13b4
JM
4977}
4978
c906108c
SS
4979/* Open a connection to a remote debugger using the extended
4980 remote gdb protocol. NAME is the filename used for communication. */
4981
f6ac5f3d
PA
4982void
4983extended_remote_target::open (const char *name, int from_tty)
c906108c 4984{
f6ac5f3d 4985 open_1 (name, from_tty, 1 /*extended_p */);
43ff13b4
JM
4986}
4987
ca4f7f8b
PA
4988/* Reset all packets back to "unknown support". Called when opening a
4989 new connection to a remote target. */
c906108c 4990
d471ea57 4991static void
ca4f7f8b 4992reset_all_packet_configs_support (void)
d471ea57
AC
4993{
4994 int i;
a744cf53 4995
444abaca 4996 for (i = 0; i < PACKET_MAX; i++)
4082afcc 4997 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
d471ea57
AC
4998}
4999
ca4f7f8b
PA
5000/* Initialize all packet configs. */
5001
5002static void
5003init_all_packet_configs (void)
5004{
5005 int i;
5006
5007 for (i = 0; i < PACKET_MAX; i++)
5008 {
5009 remote_protocol_packets[i].detect = AUTO_BOOLEAN_AUTO;
5010 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
5011 }
5012}
5013
23860348 5014/* Symbol look-up. */
dc8acb97 5015
6b8edb51
PA
5016void
5017remote_target::remote_check_symbols ()
dc8acb97 5018{
8d64371b 5019 char *tmp;
dc8acb97
MS
5020 int end;
5021
63154eca
PA
5022 /* The remote side has no concept of inferiors that aren't running
5023 yet, it only knows about running processes. If we're connected
5024 but our current inferior is not running, we should not invite the
5025 remote target to request symbol lookups related to its
5026 (unrelated) current process. */
55f6301a 5027 if (!target_has_execution ())
63154eca
PA
5028 return;
5029
4082afcc 5030 if (packet_support (PACKET_qSymbol) == PACKET_DISABLE)
dc8acb97
MS
5031 return;
5032
63154eca
PA
5033 /* Make sure the remote is pointing at the right process. Note
5034 there's no way to select "no process". */
3c9c4b83
PA
5035 set_general_process ();
5036
6d820c5c
DJ
5037 /* Allocate a message buffer. We can't reuse the input buffer in RS,
5038 because we need both at the same time. */
66644cd3 5039 gdb::char_vector msg (get_remote_packet_size ());
8d64371b 5040 gdb::char_vector reply (get_remote_packet_size ());
6d820c5c 5041
23860348 5042 /* Invite target to request symbol lookups. */
dc8acb97
MS
5043
5044 putpkt ("qSymbol::");
8d64371b 5045 getpkt (&reply, 0);
28170b88 5046 packet_ok (reply, &remote_protocol_packets[PACKET_qSymbol]);
dc8acb97 5047
8d64371b 5048 while (startswith (reply.data (), "qSymbol:"))
dc8acb97 5049 {
77e371c0
TT
5050 struct bound_minimal_symbol sym;
5051
dc8acb97 5052 tmp = &reply[8];
66644cd3
AB
5053 end = hex2bin (tmp, reinterpret_cast <gdb_byte *> (msg.data ()),
5054 strlen (tmp) / 2);
dc8acb97 5055 msg[end] = '\0';
66644cd3 5056 sym = lookup_minimal_symbol (msg.data (), NULL, NULL);
3b7344d5 5057 if (sym.minsym == NULL)
66644cd3
AB
5058 xsnprintf (msg.data (), get_remote_packet_size (), "qSymbol::%s",
5059 &reply[8]);
dc8acb97 5060 else
2bbe3cc1 5061 {
f5656ead 5062 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
77e371c0 5063 CORE_ADDR sym_addr = BMSYMBOL_VALUE_ADDRESS (sym);
2bbe3cc1
DJ
5064
5065 /* If this is a function address, return the start of code
5066 instead of any data function descriptor. */
f5656ead 5067 sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
2bbe3cc1 5068 sym_addr,
8b88a78e 5069 current_top_target ());
2bbe3cc1 5070
66644cd3 5071 xsnprintf (msg.data (), get_remote_packet_size (), "qSymbol:%s:%s",
5af949e3 5072 phex_nz (sym_addr, addr_size), &reply[8]);
2bbe3cc1 5073 }
66644cd3
AB
5074
5075 putpkt (msg.data ());
8d64371b 5076 getpkt (&reply, 0);
dc8acb97
MS
5077 }
5078}
5079
9db8d71f 5080static struct serial *
baa336ce 5081remote_serial_open (const char *name)
9db8d71f
DJ
5082{
5083 static int udp_warning = 0;
5084
5085 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
5086 of in ser-tcp.c, because it is the remote protocol assuming that the
5087 serial connection is reliable and not the serial connection promising
5088 to be. */
61012eef 5089 if (!udp_warning && startswith (name, "udp:"))
9db8d71f 5090 {
3e43a32a
MS
5091 warning (_("The remote protocol may be unreliable over UDP.\n"
5092 "Some events may be lost, rendering further debugging "
5093 "impossible."));
9db8d71f
DJ
5094 udp_warning = 1;
5095 }
5096
5097 return serial_open (name);
5098}
5099
d914c394
SS
5100/* Inform the target of our permission settings. The permission flags
5101 work without this, but if the target knows the settings, it can do
5102 a couple things. First, it can add its own check, to catch cases
5103 that somehow manage to get by the permissions checks in target
5104 methods. Second, if the target is wired to disallow particular
5105 settings (for instance, a system in the field that is not set up to
5106 be able to stop at a breakpoint), it can object to any unavailable
5107 permissions. */
5108
5109void
f6ac5f3d 5110remote_target::set_permissions ()
d914c394
SS
5111{
5112 struct remote_state *rs = get_remote_state ();
5113
8d64371b 5114 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QAllow:"
bba74b36
YQ
5115 "WriteReg:%x;WriteMem:%x;"
5116 "InsertBreak:%x;InsertTrace:%x;"
5117 "InsertFastTrace:%x;Stop:%x",
5118 may_write_registers, may_write_memory,
5119 may_insert_breakpoints, may_insert_tracepoints,
5120 may_insert_fast_tracepoints, may_stop);
d914c394 5121 putpkt (rs->buf);
8d64371b 5122 getpkt (&rs->buf, 0);
d914c394
SS
5123
5124 /* If the target didn't like the packet, warn the user. Do not try
5125 to undo the user's settings, that would just be maddening. */
8d64371b
TT
5126 if (strcmp (rs->buf.data (), "OK") != 0)
5127 warning (_("Remote refused setting permissions with: %s"),
5128 rs->buf.data ());
d914c394
SS
5129}
5130
be2a5f71
DJ
5131/* This type describes each known response to the qSupported
5132 packet. */
5133struct protocol_feature
5134{
5135 /* The name of this protocol feature. */
5136 const char *name;
5137
5138 /* The default for this protocol feature. */
5139 enum packet_support default_support;
5140
5141 /* The function to call when this feature is reported, or after
5142 qSupported processing if the feature is not supported.
5143 The first argument points to this structure. The second
5144 argument indicates whether the packet requested support be
5145 enabled, disabled, or probed (or the default, if this function
5146 is being called at the end of processing and this feature was
5147 not reported). The third argument may be NULL; if not NULL, it
5148 is a NUL-terminated string taken from the packet following
5149 this feature's name and an equals sign. */
6b8edb51
PA
5150 void (*func) (remote_target *remote, const struct protocol_feature *,
5151 enum packet_support, const char *);
be2a5f71
DJ
5152
5153 /* The corresponding packet for this feature. Only used if
5154 FUNC is remote_supported_packet. */
5155 int packet;
5156};
5157
be2a5f71 5158static void
6b8edb51
PA
5159remote_supported_packet (remote_target *remote,
5160 const struct protocol_feature *feature,
be2a5f71
DJ
5161 enum packet_support support,
5162 const char *argument)
5163{
5164 if (argument)
5165 {
5166 warning (_("Remote qSupported response supplied an unexpected value for"
5167 " \"%s\"."), feature->name);
5168 return;
5169 }
5170
4082afcc 5171 remote_protocol_packets[feature->packet].support = support;
be2a5f71 5172}
be2a5f71 5173
6b8edb51
PA
5174void
5175remote_target::remote_packet_size (const protocol_feature *feature,
5176 enum packet_support support, const char *value)
be2a5f71
DJ
5177{
5178 struct remote_state *rs = get_remote_state ();
5179
5180 int packet_size;
5181 char *value_end;
5182
5183 if (support != PACKET_ENABLE)
5184 return;
5185
5186 if (value == NULL || *value == '\0')
5187 {
5188 warning (_("Remote target reported \"%s\" without a size."),
5189 feature->name);
5190 return;
5191 }
5192
5193 errno = 0;
5194 packet_size = strtol (value, &value_end, 16);
5195 if (errno != 0 || *value_end != '\0' || packet_size < 0)
5196 {
5197 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
5198 feature->name, value);
5199 return;
5200 }
5201
be2a5f71
DJ
5202 /* Record the new maximum packet size. */
5203 rs->explicit_packet_size = packet_size;
5204}
5205
cb8c24b6 5206static void
6b8edb51
PA
5207remote_packet_size (remote_target *remote, const protocol_feature *feature,
5208 enum packet_support support, const char *value)
5209{
5210 remote->remote_packet_size (feature, support, value);
5211}
5212
dc473cfb 5213static const struct protocol_feature remote_protocol_features[] = {
0876f84a 5214 { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 },
40e57cf2 5215 { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet,
fd79ecee 5216 PACKET_qXfer_auxv },
c78fa86a
GB
5217 { "qXfer:exec-file:read", PACKET_DISABLE, remote_supported_packet,
5218 PACKET_qXfer_exec_file },
23181151
DJ
5219 { "qXfer:features:read", PACKET_DISABLE, remote_supported_packet,
5220 PACKET_qXfer_features },
cfa9d6d9
DJ
5221 { "qXfer:libraries:read", PACKET_DISABLE, remote_supported_packet,
5222 PACKET_qXfer_libraries },
2268b414
JK
5223 { "qXfer:libraries-svr4:read", PACKET_DISABLE, remote_supported_packet,
5224 PACKET_qXfer_libraries_svr4 },
ced63ec0 5225 { "augmented-libraries-svr4-read", PACKET_DISABLE,
4082afcc 5226 remote_supported_packet, PACKET_augmented_libraries_svr4_read_feature },
fd79ecee 5227 { "qXfer:memory-map:read", PACKET_DISABLE, remote_supported_packet,
89be2091 5228 PACKET_qXfer_memory_map },
07e059b5
VP
5229 { "qXfer:osdata:read", PACKET_DISABLE, remote_supported_packet,
5230 PACKET_qXfer_osdata },
dc146f7c
VP
5231 { "qXfer:threads:read", PACKET_DISABLE, remote_supported_packet,
5232 PACKET_qXfer_threads },
b3b9301e
PA
5233 { "qXfer:traceframe-info:read", PACKET_DISABLE, remote_supported_packet,
5234 PACKET_qXfer_traceframe_info },
89be2091
DJ
5235 { "QPassSignals", PACKET_DISABLE, remote_supported_packet,
5236 PACKET_QPassSignals },
82075af2
JS
5237 { "QCatchSyscalls", PACKET_DISABLE, remote_supported_packet,
5238 PACKET_QCatchSyscalls },
9b224c5e
PA
5239 { "QProgramSignals", PACKET_DISABLE, remote_supported_packet,
5240 PACKET_QProgramSignals },
bc3b087d
SDJ
5241 { "QSetWorkingDir", PACKET_DISABLE, remote_supported_packet,
5242 PACKET_QSetWorkingDir },
aefd8b33
SDJ
5243 { "QStartupWithShell", PACKET_DISABLE, remote_supported_packet,
5244 PACKET_QStartupWithShell },
0a2dde4a
SDJ
5245 { "QEnvironmentHexEncoded", PACKET_DISABLE, remote_supported_packet,
5246 PACKET_QEnvironmentHexEncoded },
5247 { "QEnvironmentReset", PACKET_DISABLE, remote_supported_packet,
5248 PACKET_QEnvironmentReset },
5249 { "QEnvironmentUnset", PACKET_DISABLE, remote_supported_packet,
5250 PACKET_QEnvironmentUnset },
a6f3e723
SL
5251 { "QStartNoAckMode", PACKET_DISABLE, remote_supported_packet,
5252 PACKET_QStartNoAckMode },
4082afcc
PA
5253 { "multiprocess", PACKET_DISABLE, remote_supported_packet,
5254 PACKET_multiprocess_feature },
5255 { "QNonStop", PACKET_DISABLE, remote_supported_packet, PACKET_QNonStop },
4aa995e1
PA
5256 { "qXfer:siginfo:read", PACKET_DISABLE, remote_supported_packet,
5257 PACKET_qXfer_siginfo_read },
5258 { "qXfer:siginfo:write", PACKET_DISABLE, remote_supported_packet,
5259 PACKET_qXfer_siginfo_write },
4082afcc 5260 { "ConditionalTracepoints", PACKET_DISABLE, remote_supported_packet,
782b2b07 5261 PACKET_ConditionalTracepoints },
4082afcc 5262 { "ConditionalBreakpoints", PACKET_DISABLE, remote_supported_packet,
3788aec7 5263 PACKET_ConditionalBreakpoints },
4082afcc 5264 { "BreakpointCommands", PACKET_DISABLE, remote_supported_packet,
d3ce09f5 5265 PACKET_BreakpointCommands },
4082afcc 5266 { "FastTracepoints", PACKET_DISABLE, remote_supported_packet,
7a697b8d 5267 PACKET_FastTracepoints },
4082afcc 5268 { "StaticTracepoints", PACKET_DISABLE, remote_supported_packet,
0fb4aa4b 5269 PACKET_StaticTracepoints },
4082afcc 5270 {"InstallInTrace", PACKET_DISABLE, remote_supported_packet,
1e4d1764 5271 PACKET_InstallInTrace},
4082afcc
PA
5272 { "DisconnectedTracing", PACKET_DISABLE, remote_supported_packet,
5273 PACKET_DisconnectedTracing_feature },
40ab02ce
MS
5274 { "ReverseContinue", PACKET_DISABLE, remote_supported_packet,
5275 PACKET_bc },
5276 { "ReverseStep", PACKET_DISABLE, remote_supported_packet,
5277 PACKET_bs },
409873ef
SS
5278 { "TracepointSource", PACKET_DISABLE, remote_supported_packet,
5279 PACKET_TracepointSource },
d914c394
SS
5280 { "QAllow", PACKET_DISABLE, remote_supported_packet,
5281 PACKET_QAllow },
4082afcc
PA
5282 { "EnableDisableTracepoints", PACKET_DISABLE, remote_supported_packet,
5283 PACKET_EnableDisableTracepoints_feature },
78d85199
YQ
5284 { "qXfer:fdpic:read", PACKET_DISABLE, remote_supported_packet,
5285 PACKET_qXfer_fdpic },
169081d0
TG
5286 { "qXfer:uib:read", PACKET_DISABLE, remote_supported_packet,
5287 PACKET_qXfer_uib },
03583c20
UW
5288 { "QDisableRandomization", PACKET_DISABLE, remote_supported_packet,
5289 PACKET_QDisableRandomization },
d1feda86 5290 { "QAgent", PACKET_DISABLE, remote_supported_packet, PACKET_QAgent},
f6f899bf
HAQ
5291 { "QTBuffer:size", PACKET_DISABLE,
5292 remote_supported_packet, PACKET_QTBuffer_size},
4082afcc 5293 { "tracenz", PACKET_DISABLE, remote_supported_packet, PACKET_tracenz_feature },
9accd112
MM
5294 { "Qbtrace:off", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_off },
5295 { "Qbtrace:bts", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_bts },
b20a6524 5296 { "Qbtrace:pt", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_pt },
9accd112 5297 { "qXfer:btrace:read", PACKET_DISABLE, remote_supported_packet,
f4abbc16
MM
5298 PACKET_qXfer_btrace },
5299 { "qXfer:btrace-conf:read", PACKET_DISABLE, remote_supported_packet,
d33501a5
MM
5300 PACKET_qXfer_btrace_conf },
5301 { "Qbtrace-conf:bts:size", PACKET_DISABLE, remote_supported_packet,
f7e6eed5
PA
5302 PACKET_Qbtrace_conf_bts_size },
5303 { "swbreak", PACKET_DISABLE, remote_supported_packet, PACKET_swbreak_feature },
0a93529c 5304 { "hwbreak", PACKET_DISABLE, remote_supported_packet, PACKET_hwbreak_feature },
89245bc0
DB
5305 { "fork-events", PACKET_DISABLE, remote_supported_packet,
5306 PACKET_fork_event_feature },
5307 { "vfork-events", PACKET_DISABLE, remote_supported_packet,
5308 PACKET_vfork_event_feature },
94585166
DB
5309 { "exec-events", PACKET_DISABLE, remote_supported_packet,
5310 PACKET_exec_event_feature },
b20a6524 5311 { "Qbtrace-conf:pt:size", PACKET_DISABLE, remote_supported_packet,
750ce8d1 5312 PACKET_Qbtrace_conf_pt_size },
65706a29
PA
5313 { "vContSupported", PACKET_DISABLE, remote_supported_packet, PACKET_vContSupported },
5314 { "QThreadEvents", PACKET_DISABLE, remote_supported_packet, PACKET_QThreadEvents },
f2faf941 5315 { "no-resumed", PACKET_DISABLE, remote_supported_packet, PACKET_no_resumed },
be2a5f71
DJ
5316};
5317
c8d5aac9
L
5318static char *remote_support_xml;
5319
5320/* Register string appended to "xmlRegisters=" in qSupported query. */
5321
5322void
6e39997a 5323register_remote_support_xml (const char *xml)
c8d5aac9
L
5324{
5325#if defined(HAVE_LIBEXPAT)
5326 if (remote_support_xml == NULL)
c4f7c687 5327 remote_support_xml = concat ("xmlRegisters=", xml, (char *) NULL);
c8d5aac9
L
5328 else
5329 {
5330 char *copy = xstrdup (remote_support_xml + 13);
ca3a04f6
CB
5331 char *saveptr;
5332 char *p = strtok_r (copy, ",", &saveptr);
c8d5aac9
L
5333
5334 do
5335 {
5336 if (strcmp (p, xml) == 0)
5337 {
5338 /* already there */
5339 xfree (copy);
5340 return;
5341 }
5342 }
ca3a04f6 5343 while ((p = strtok_r (NULL, ",", &saveptr)) != NULL);
c8d5aac9
L
5344 xfree (copy);
5345
94b0dee1
PA
5346 remote_support_xml = reconcat (remote_support_xml,
5347 remote_support_xml, ",", xml,
5348 (char *) NULL);
c8d5aac9
L
5349 }
5350#endif
5351}
5352
69b6ecb0
TT
5353static void
5354remote_query_supported_append (std::string *msg, const char *append)
c8d5aac9 5355{
69b6ecb0
TT
5356 if (!msg->empty ())
5357 msg->append (";");
5358 msg->append (append);
c8d5aac9
L
5359}
5360
6b8edb51
PA
5361void
5362remote_target::remote_query_supported ()
be2a5f71
DJ
5363{
5364 struct remote_state *rs = get_remote_state ();
5365 char *next;
5366 int i;
5367 unsigned char seen [ARRAY_SIZE (remote_protocol_features)];
5368
5369 /* The packet support flags are handled differently for this packet
5370 than for most others. We treat an error, a disabled packet, and
5371 an empty response identically: any features which must be reported
5372 to be used will be automatically disabled. An empty buffer
5373 accomplishes this, since that is also the representation for a list
5374 containing no features. */
5375
5376 rs->buf[0] = 0;
4082afcc 5377 if (packet_support (PACKET_qSupported) != PACKET_DISABLE)
be2a5f71 5378 {
69b6ecb0 5379 std::string q;
c8d5aac9 5380
73b8c1fd 5381 if (packet_set_cmd_state (PACKET_multiprocess_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5382 remote_query_supported_append (&q, "multiprocess+");
c8d5aac9 5383
f7e6eed5 5384 if (packet_set_cmd_state (PACKET_swbreak_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5385 remote_query_supported_append (&q, "swbreak+");
f7e6eed5 5386 if (packet_set_cmd_state (PACKET_hwbreak_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5387 remote_query_supported_append (&q, "hwbreak+");
f7e6eed5 5388
69b6ecb0 5389 remote_query_supported_append (&q, "qRelocInsn+");
dde08ee1 5390
8020350c
DB
5391 if (packet_set_cmd_state (PACKET_fork_event_feature)
5392 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5393 remote_query_supported_append (&q, "fork-events+");
8020350c
DB
5394 if (packet_set_cmd_state (PACKET_vfork_event_feature)
5395 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5396 remote_query_supported_append (&q, "vfork-events+");
8020350c
DB
5397 if (packet_set_cmd_state (PACKET_exec_event_feature)
5398 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5399 remote_query_supported_append (&q, "exec-events+");
89245bc0 5400
750ce8d1 5401 if (packet_set_cmd_state (PACKET_vContSupported) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5402 remote_query_supported_append (&q, "vContSupported+");
750ce8d1 5403
65706a29 5404 if (packet_set_cmd_state (PACKET_QThreadEvents) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5405 remote_query_supported_append (&q, "QThreadEvents+");
65706a29 5406
f2faf941 5407 if (packet_set_cmd_state (PACKET_no_resumed) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5408 remote_query_supported_append (&q, "no-resumed+");
f2faf941 5409
b35d5edb
PA
5410 /* Keep this one last to work around a gdbserver <= 7.10 bug in
5411 the qSupported:xmlRegisters=i386 handling. */
7cc244de
PA
5412 if (remote_support_xml != NULL
5413 && packet_support (PACKET_qXfer_features) != PACKET_DISABLE)
69b6ecb0 5414 remote_query_supported_append (&q, remote_support_xml);
82f73884 5415
69b6ecb0
TT
5416 q = "qSupported:" + q;
5417 putpkt (q.c_str ());
94b0dee1 5418
8d64371b 5419 getpkt (&rs->buf, 0);
be2a5f71
DJ
5420
5421 /* If an error occured, warn, but do not return - just reset the
5422 buffer to empty and go on to disable features. */
5423 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported])
5424 == PACKET_ERROR)
5425 {
8d64371b 5426 warning (_("Remote failure reply: %s"), rs->buf.data ());
be2a5f71
DJ
5427 rs->buf[0] = 0;
5428 }
5429 }
5430
5431 memset (seen, 0, sizeof (seen));
5432
8d64371b 5433 next = rs->buf.data ();
be2a5f71
DJ
5434 while (*next)
5435 {
5436 enum packet_support is_supported;
5437 char *p, *end, *name_end, *value;
5438
5439 /* First separate out this item from the rest of the packet. If
5440 there's another item after this, we overwrite the separator
5441 (terminated strings are much easier to work with). */
5442 p = next;
5443 end = strchr (p, ';');
5444 if (end == NULL)
5445 {
5446 end = p + strlen (p);
5447 next = end;
5448 }
5449 else
5450 {
89be2091
DJ
5451 *end = '\0';
5452 next = end + 1;
5453
be2a5f71
DJ
5454 if (end == p)
5455 {
5456 warning (_("empty item in \"qSupported\" response"));
5457 continue;
5458 }
be2a5f71
DJ
5459 }
5460
5461 name_end = strchr (p, '=');
5462 if (name_end)
5463 {
5464 /* This is a name=value entry. */
5465 is_supported = PACKET_ENABLE;
5466 value = name_end + 1;
5467 *name_end = '\0';
5468 }
5469 else
5470 {
5471 value = NULL;
5472 switch (end[-1])
5473 {
5474 case '+':
5475 is_supported = PACKET_ENABLE;
5476 break;
5477
5478 case '-':
5479 is_supported = PACKET_DISABLE;
5480 break;
5481
5482 case '?':
5483 is_supported = PACKET_SUPPORT_UNKNOWN;
5484 break;
5485
5486 default:
3e43a32a
MS
5487 warning (_("unrecognized item \"%s\" "
5488 "in \"qSupported\" response"), p);
be2a5f71
DJ
5489 continue;
5490 }
5491 end[-1] = '\0';
5492 }
5493
5494 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
5495 if (strcmp (remote_protocol_features[i].name, p) == 0)
5496 {
5497 const struct protocol_feature *feature;
5498
5499 seen[i] = 1;
5500 feature = &remote_protocol_features[i];
6b8edb51 5501 feature->func (this, feature, is_supported, value);
be2a5f71
DJ
5502 break;
5503 }
5504 }
5505
5506 /* If we increased the packet size, make sure to increase the global
5507 buffer size also. We delay this until after parsing the entire
5508 qSupported packet, because this is the same buffer we were
5509 parsing. */
8d64371b
TT
5510 if (rs->buf.size () < rs->explicit_packet_size)
5511 rs->buf.resize (rs->explicit_packet_size);
be2a5f71
DJ
5512
5513 /* Handle the defaults for unmentioned features. */
5514 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
5515 if (!seen[i])
5516 {
5517 const struct protocol_feature *feature;
5518
5519 feature = &remote_protocol_features[i];
6b8edb51 5520 feature->func (this, feature, feature->default_support, NULL);
be2a5f71
DJ
5521 }
5522}
5523
048094ac
PA
5524/* Serial QUIT handler for the remote serial descriptor.
5525
5526 Defers handling a Ctrl-C until we're done with the current
5527 command/response packet sequence, unless:
5528
5529 - We're setting up the connection. Don't send a remote interrupt
5530 request, as we're not fully synced yet. Quit immediately
5531 instead.
5532
5533 - The target has been resumed in the foreground
223ffa71 5534 (target_terminal::is_ours is false) with a synchronous resume
048094ac
PA
5535 packet, and we're blocked waiting for the stop reply, thus a
5536 Ctrl-C should be immediately sent to the target.
5537
5538 - We get a second Ctrl-C while still within the same serial read or
5539 write. In that case the serial is seemingly wedged --- offer to
5540 quit/disconnect.
5541
5542 - We see a second Ctrl-C without target response, after having
5543 previously interrupted the target. In that case the target/stub
5544 is probably wedged --- offer to quit/disconnect.
5545*/
5546
6b8edb51
PA
5547void
5548remote_target::remote_serial_quit_handler ()
048094ac
PA
5549{
5550 struct remote_state *rs = get_remote_state ();
5551
5552 if (check_quit_flag ())
5553 {
5554 /* If we're starting up, we're not fully synced yet. Quit
5555 immediately. */
5556 if (rs->starting_up)
5557 quit ();
5558 else if (rs->got_ctrlc_during_io)
5559 {
5560 if (query (_("The target is not responding to GDB commands.\n"
5561 "Stop debugging it? ")))
5b6d1e4f 5562 remote_unpush_and_throw (this);
048094ac
PA
5563 }
5564 /* If ^C has already been sent once, offer to disconnect. */
223ffa71 5565 else if (!target_terminal::is_ours () && rs->ctrlc_pending_p)
048094ac
PA
5566 interrupt_query ();
5567 /* All-stop protocol, and blocked waiting for stop reply. Send
5568 an interrupt request. */
223ffa71 5569 else if (!target_terminal::is_ours () && rs->waiting_for_stop_reply)
e671cd59 5570 target_interrupt ();
048094ac
PA
5571 else
5572 rs->got_ctrlc_during_io = 1;
5573 }
5574}
5575
6b8edb51
PA
5576/* The remote_target that is current while the quit handler is
5577 overridden with remote_serial_quit_handler. */
5578static remote_target *curr_quit_handler_target;
5579
5580static void
5581remote_serial_quit_handler ()
5582{
5583 curr_quit_handler_target->remote_serial_quit_handler ();
5584}
5585
5b6d1e4f
PA
5586/* Remove the remote target from the target stack of each inferior
5587 that is using it. Upper targets depend on it so remove them
5588 first. */
78a095c3
JK
5589
5590static void
5b6d1e4f 5591remote_unpush_target (remote_target *target)
78a095c3 5592{
5b6d1e4f
PA
5593 /* We have to unpush the target from all inferiors, even those that
5594 aren't running. */
5595 scoped_restore_current_inferior restore_current_inferior;
5596
5597 for (inferior *inf : all_inferiors (target))
5598 {
5599 switch_to_inferior_no_thread (inf);
5600 pop_all_targets_at_and_above (process_stratum);
5601 generic_mourn_inferior ();
5602 }
78a095c3 5603}
be2a5f71 5604
048094ac 5605static void
5b6d1e4f 5606remote_unpush_and_throw (remote_target *target)
048094ac 5607{
5b6d1e4f 5608 remote_unpush_target (target);
048094ac
PA
5609 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
5610}
5611
f6ac5f3d
PA
5612void
5613remote_target::open_1 (const char *name, int from_tty, int extended_p)
c906108c 5614{
6b8edb51 5615 remote_target *curr_remote = get_current_remote_target ();
a6f3e723 5616
c906108c 5617 if (name == 0)
8a3fe4f8 5618 error (_("To open a remote debug connection, you need to specify what\n"
22e04375 5619 "serial device is attached to the remote system\n"
8a3fe4f8 5620 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
c906108c 5621
2d717e4f 5622 /* If we're connected to a running target, target_preopen will kill it.
78a095c3
JK
5623 Ask this question first, before target_preopen has a chance to kill
5624 anything. */
55f6301a 5625 if (curr_remote != NULL && !target_has_execution ())
2d717e4f 5626 {
78a095c3
JK
5627 if (from_tty
5628 && !query (_("Already connected to a remote target. Disconnect? ")))
2d717e4f
DJ
5629 error (_("Still connected."));
5630 }
5631
78a095c3 5632 /* Here the possibly existing remote target gets unpushed. */
c906108c
SS
5633 target_preopen (from_tty);
5634
ad9a8f3f 5635 remote_fileio_reset ();
1dd41f16
NS
5636 reopen_exec_file ();
5637 reread_symbols ();
5638
6b8edb51
PA
5639 remote_target *remote
5640 = (extended_p ? new extended_remote_target () : new remote_target ());
5641 target_ops_up target_holder (remote);
5642
5643 remote_state *rs = remote->get_remote_state ();
5644
5645 /* See FIXME above. */
5646 if (!target_async_permitted)
5647 rs->wait_forever_enabled_p = 1;
5648
5d93a237
TT
5649 rs->remote_desc = remote_serial_open (name);
5650 if (!rs->remote_desc)
c906108c
SS
5651 perror_with_name (name);
5652
5653 if (baud_rate != -1)
5654 {
5d93a237 5655 if (serial_setbaudrate (rs->remote_desc, baud_rate))
c906108c 5656 {
9b74d5d3
KB
5657 /* The requested speed could not be set. Error out to
5658 top level after closing remote_desc. Take care to
5659 set remote_desc to NULL to avoid closing remote_desc
5660 more than once. */
5d93a237
TT
5661 serial_close (rs->remote_desc);
5662 rs->remote_desc = NULL;
c906108c
SS
5663 perror_with_name (name);
5664 }
5665 }
5666
236af5e3 5667 serial_setparity (rs->remote_desc, serial_parity);
5d93a237 5668 serial_raw (rs->remote_desc);
c906108c
SS
5669
5670 /* If there is something sitting in the buffer we might take it as a
5671 response to a command, which would be bad. */
5d93a237 5672 serial_flush_input (rs->remote_desc);
c906108c
SS
5673
5674 if (from_tty)
5675 {
5676 puts_filtered ("Remote debugging using ");
5677 puts_filtered (name);
5678 puts_filtered ("\n");
5679 }
d9f719f1 5680
6b8edb51 5681 /* Switch to using the remote target now. */
dea57a62 5682 push_target (std::move (target_holder));
c906108c 5683
74531fed 5684 /* Register extra event sources in the event loop. */
6b8edb51 5685 rs->remote_async_inferior_event_token
db20ebdf
SM
5686 = create_async_event_handler (remote_async_inferior_event_handler, remote,
5687 "remote");
6b8edb51 5688 rs->notif_state = remote_notif_state_allocate (remote);
74531fed 5689
be2a5f71
DJ
5690 /* Reset the target state; these things will be queried either by
5691 remote_query_supported or as they are needed. */
ca4f7f8b 5692 reset_all_packet_configs_support ();
74531fed 5693 rs->cached_wait_status = 0;
be2a5f71 5694 rs->explicit_packet_size = 0;
a6f3e723 5695 rs->noack_mode = 0;
82f73884 5696 rs->extended = extended_p;
e24a49d8 5697 rs->waiting_for_stop_reply = 0;
3a29589a 5698 rs->ctrlc_pending_p = 0;
048094ac 5699 rs->got_ctrlc_during_io = 0;
802188a7 5700
47f8a51d
TT
5701 rs->general_thread = not_sent_ptid;
5702 rs->continue_thread = not_sent_ptid;
262e1174 5703 rs->remote_traceframe_number = -1;
c906108c 5704
3a00c802
PA
5705 rs->last_resume_exec_dir = EXEC_FORWARD;
5706
9d1f7ab2 5707 /* Probe for ability to use "ThreadInfo" query, as required. */
b80fafe3
TT
5708 rs->use_threadinfo_query = 1;
5709 rs->use_threadextra_query = 1;
9d1f7ab2 5710
dd194f6b 5711 rs->readahead_cache.invalidate ();
80152258 5712
c6ebd6cf 5713 if (target_async_permitted)
92d1e331 5714 {
92d1e331
DJ
5715 /* FIXME: cagney/1999-09-23: During the initial connection it is
5716 assumed that the target is already ready and able to respond to
0df8b418 5717 requests. Unfortunately remote_start_remote() eventually calls
92d1e331 5718 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
0df8b418 5719 around this. Eventually a mechanism that allows
92d1e331 5720 wait_for_inferior() to expect/get timeouts will be
23860348 5721 implemented. */
6b8edb51 5722 rs->wait_forever_enabled_p = 0;
92d1e331
DJ
5723 }
5724
23860348 5725 /* First delete any symbols previously loaded from shared libraries. */
f78f6cf1 5726 no_shared_libraries (NULL, 0);
f78f6cf1 5727
36918e70 5728 /* Start the remote connection. If error() or QUIT, discard this
165b8e33
AC
5729 target (we'd otherwise be in an inconsistent state) and then
5730 propogate the error on up the exception chain. This ensures that
5731 the caller doesn't stumble along blindly assuming that the
5732 function succeeded. The CLI doesn't have this problem but other
5733 UI's, such as MI do.
36918e70
AC
5734
5735 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
5736 this function should return an error indication letting the
ce2826aa 5737 caller restore the previous state. Unfortunately the command
36918e70
AC
5738 ``target remote'' is directly wired to this function making that
5739 impossible. On a positive note, the CLI side of this problem has
5740 been fixed - the function set_cmd_context() makes it possible for
5741 all the ``target ....'' commands to share a common callback
5742 function. See cli-dump.c. */
109c3e39 5743 {
2d717e4f 5744
a70b8144 5745 try
04bd08de 5746 {
6b8edb51 5747 remote->start_remote (from_tty, extended_p);
04bd08de 5748 }
230d2906 5749 catch (const gdb_exception &ex)
109c3e39 5750 {
c8d104ad
PA
5751 /* Pop the partially set up target - unless something else did
5752 already before throwing the exception. */
6b8edb51 5753 if (ex.error != TARGET_CLOSE_ERROR)
5b6d1e4f 5754 remote_unpush_target (remote);
eedc3f4f 5755 throw;
109c3e39
AC
5756 }
5757 }
c906108c 5758
6b8edb51 5759 remote_btrace_reset (rs);
f4abbc16 5760
c6ebd6cf 5761 if (target_async_permitted)
6b8edb51 5762 rs->wait_forever_enabled_p = 1;
43ff13b4
JM
5763}
5764
de0d863e
DB
5765/* Detach the specified process. */
5766
6b8edb51
PA
5767void
5768remote_target::remote_detach_pid (int pid)
de0d863e
DB
5769{
5770 struct remote_state *rs = get_remote_state ();
5771
4c7333b3
PA
5772 /* This should not be necessary, but the handling for D;PID in
5773 GDBserver versions prior to 8.2 incorrectly assumes that the
5774 selected process points to the same process we're detaching,
5775 leading to misbehavior (and possibly GDBserver crashing) when it
5776 does not. Since it's easy and cheap, work around it by forcing
5777 GDBserver to select GDB's current process. */
5778 set_general_process ();
5779
de0d863e 5780 if (remote_multi_process_p (rs))
8d64371b 5781 xsnprintf (rs->buf.data (), get_remote_packet_size (), "D;%x", pid);
de0d863e 5782 else
8d64371b 5783 strcpy (rs->buf.data (), "D");
de0d863e
DB
5784
5785 putpkt (rs->buf);
8d64371b 5786 getpkt (&rs->buf, 0);
de0d863e
DB
5787
5788 if (rs->buf[0] == 'O' && rs->buf[1] == 'K')
5789 ;
5790 else if (rs->buf[0] == '\0')
5791 error (_("Remote doesn't know how to detach"));
5792 else
5793 error (_("Can't detach process."));
5794}
5795
5796/* This detaches a program to which we previously attached, using
5797 inferior_ptid to identify the process. After this is done, GDB
5798 can be used to debug some other program. We better not have left
5799 any breakpoints in the target program or it'll die when it hits
5800 one. */
c906108c 5801
6b8edb51 5802void
00431a78 5803remote_target::remote_detach_1 (inferior *inf, int from_tty)
c906108c 5804{
e99b03dc 5805 int pid = inferior_ptid.pid ();
d01949b6 5806 struct remote_state *rs = get_remote_state ();
de0d863e 5807 int is_fork_parent;
c906108c 5808
55f6301a 5809 if (!target_has_execution ())
2d717e4f
DJ
5810 error (_("No process to detach from."));
5811
0f48b757 5812 target_announce_detach (from_tty);
7cee1e54 5813
c906108c 5814 /* Tell the remote target to detach. */
de0d863e 5815 remote_detach_pid (pid);
82f73884 5816
8020350c 5817 /* Exit only if this is the only active inferior. */
5b6d1e4f 5818 if (from_tty && !rs->extended && number_of_live_inferiors (this) == 1)
7cee1e54 5819 puts_filtered (_("Ending remote debugging.\n"));
82f73884 5820
5b6d1e4f 5821 thread_info *tp = find_thread_ptid (this, inferior_ptid);
00431a78 5822
de0d863e
DB
5823 /* Check to see if we are detaching a fork parent. Note that if we
5824 are detaching a fork child, tp == NULL. */
5825 is_fork_parent = (tp != NULL
5826 && tp->pending_follow.kind == TARGET_WAITKIND_FORKED);
5827
5828 /* If doing detach-on-fork, we don't mourn, because that will delete
5829 breakpoints that should be available for the followed inferior. */
5830 if (!is_fork_parent)
f67c0c91 5831 {
249b5733
PA
5832 /* Save the pid as a string before mourning, since that will
5833 unpush the remote target, and we need the string after. */
f2907e49 5834 std::string infpid = target_pid_to_str (ptid_t (pid));
f67c0c91
SDJ
5835
5836 target_mourn_inferior (inferior_ptid);
5837 if (print_inferior_events)
5838 printf_unfiltered (_("[Inferior %d (%s) detached]\n"),
5839 inf->num, infpid.c_str ());
5840 }
de0d863e
DB
5841 else
5842 {
0ac55310 5843 switch_to_no_thread ();
00431a78 5844 detach_inferior (current_inferior ());
de0d863e 5845 }
2d717e4f
DJ
5846}
5847
f6ac5f3d
PA
5848void
5849remote_target::detach (inferior *inf, int from_tty)
2d717e4f 5850{
00431a78 5851 remote_detach_1 (inf, from_tty);
2d717e4f
DJ
5852}
5853
f6ac5f3d
PA
5854void
5855extended_remote_target::detach (inferior *inf, int from_tty)
2d717e4f 5856{
00431a78 5857 remote_detach_1 (inf, from_tty);
de0d863e
DB
5858}
5859
5860/* Target follow-fork function for remote targets. On entry, and
5861 at return, the current inferior is the fork parent.
5862
5863 Note that although this is currently only used for extended-remote,
5864 it is named remote_follow_fork in anticipation of using it for the
5865 remote target as well. */
5866
5ab2fbf1
SM
5867bool
5868remote_target::follow_fork (bool follow_child, bool detach_fork)
de0d863e
DB
5869{
5870 struct remote_state *rs = get_remote_state ();
c269dbdb 5871 enum target_waitkind kind = inferior_thread ()->pending_follow.kind;
de0d863e 5872
c269dbdb
DB
5873 if ((kind == TARGET_WAITKIND_FORKED && remote_fork_event_p (rs))
5874 || (kind == TARGET_WAITKIND_VFORKED && remote_vfork_event_p (rs)))
de0d863e
DB
5875 {
5876 /* When following the parent and detaching the child, we detach
5877 the child here. For the case of following the child and
5878 detaching the parent, the detach is done in the target-
5879 independent follow fork code in infrun.c. We can't use
5880 target_detach when detaching an unfollowed child because
5881 the client side doesn't know anything about the child. */
5882 if (detach_fork && !follow_child)
5883 {
5884 /* Detach the fork child. */
5885 ptid_t child_ptid;
5886 pid_t child_pid;
5887
5888 child_ptid = inferior_thread ()->pending_follow.value.related_pid;
e99b03dc 5889 child_pid = child_ptid.pid ();
de0d863e
DB
5890
5891 remote_detach_pid (child_pid);
de0d863e
DB
5892 }
5893 }
5ab2fbf1
SM
5894
5895 return false;
c906108c
SS
5896}
5897
94585166
DB
5898/* Target follow-exec function for remote targets. Save EXECD_PATHNAME
5899 in the program space of the new inferior. On entry and at return the
5900 current inferior is the exec'ing inferior. INF is the new exec'd
5901 inferior, which may be the same as the exec'ing inferior unless
5902 follow-exec-mode is "new". */
5903
f6ac5f3d 5904void
4ca51187 5905remote_target::follow_exec (struct inferior *inf, const char *execd_pathname)
94585166
DB
5906{
5907 /* We know that this is a target file name, so if it has the "target:"
5908 prefix we strip it off before saving it in the program space. */
5909 if (is_target_filename (execd_pathname))
5910 execd_pathname += strlen (TARGET_SYSROOT_PREFIX);
5911
5912 set_pspace_remote_exec_file (inf->pspace, execd_pathname);
5913}
5914
6ad8ae5c
DJ
5915/* Same as remote_detach, but don't send the "D" packet; just disconnect. */
5916
f6ac5f3d
PA
5917void
5918remote_target::disconnect (const char *args, int from_tty)
43ff13b4 5919{
43ff13b4 5920 if (args)
2d717e4f 5921 error (_("Argument given to \"disconnect\" when remotely debugging."));
43ff13b4 5922
8020350c 5923 /* Make sure we unpush even the extended remote targets. Calling
5b6d1e4f
PA
5924 target_mourn_inferior won't unpush, and
5925 remote_target::mourn_inferior won't unpush if there is more than
5926 one inferior left. */
5927 remote_unpush_target (this);
2d717e4f 5928
43ff13b4
JM
5929 if (from_tty)
5930 puts_filtered ("Ending remote debugging.\n");
5931}
5932
2d717e4f
DJ
5933/* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
5934 be chatty about it. */
5935
f6ac5f3d
PA
5936void
5937extended_remote_target::attach (const char *args, int from_tty)
2d717e4f
DJ
5938{
5939 struct remote_state *rs = get_remote_state ();
be86555c 5940 int pid;
96ef3384 5941 char *wait_status = NULL;
2d717e4f 5942
74164c56 5943 pid = parse_pid_to_attach (args);
2d717e4f 5944
74164c56
JK
5945 /* Remote PID can be freely equal to getpid, do not check it here the same
5946 way as in other targets. */
2d717e4f 5947
4082afcc 5948 if (packet_support (PACKET_vAttach) == PACKET_DISABLE)
2d717e4f
DJ
5949 error (_("This target does not support attaching to a process"));
5950
7cee1e54
PA
5951 if (from_tty)
5952 {
d9fa87f4 5953 const char *exec_file = get_exec_file (0);
7cee1e54
PA
5954
5955 if (exec_file)
5956 printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file,
a068643d 5957 target_pid_to_str (ptid_t (pid)).c_str ());
7cee1e54
PA
5958 else
5959 printf_unfiltered (_("Attaching to %s\n"),
a068643d 5960 target_pid_to_str (ptid_t (pid)).c_str ());
7cee1e54
PA
5961 }
5962
8d64371b 5963 xsnprintf (rs->buf.data (), get_remote_packet_size (), "vAttach;%x", pid);
2d717e4f 5964 putpkt (rs->buf);
8d64371b 5965 getpkt (&rs->buf, 0);
2d717e4f 5966
4082afcc
PA
5967 switch (packet_ok (rs->buf,
5968 &remote_protocol_packets[PACKET_vAttach]))
2d717e4f 5969 {
4082afcc 5970 case PACKET_OK:
6efcd9a8 5971 if (!target_is_non_stop_p ())
74531fed
PA
5972 {
5973 /* Save the reply for later. */
8d64371b
TT
5974 wait_status = (char *) alloca (strlen (rs->buf.data ()) + 1);
5975 strcpy (wait_status, rs->buf.data ());
74531fed 5976 }
8d64371b 5977 else if (strcmp (rs->buf.data (), "OK") != 0)
74531fed 5978 error (_("Attaching to %s failed with: %s"),
a068643d 5979 target_pid_to_str (ptid_t (pid)).c_str (),
8d64371b 5980 rs->buf.data ());
4082afcc
PA
5981 break;
5982 case PACKET_UNKNOWN:
5983 error (_("This target does not support attaching to a process"));
5984 default:
50fa3001
SDJ
5985 error (_("Attaching to %s failed"),
5986 target_pid_to_str (ptid_t (pid)).c_str ());
2d717e4f 5987 }
2d717e4f 5988
0ac55310 5989 switch_to_inferior_no_thread (remote_add_inferior (false, pid, 1, 0));
bad34192 5990
f2907e49 5991 inferior_ptid = ptid_t (pid);
79d7f229 5992
6efcd9a8 5993 if (target_is_non_stop_p ())
bad34192 5994 {
bad34192 5995 /* Get list of threads. */
f6ac5f3d 5996 update_thread_list ();
82f73884 5997
0ac55310
PA
5998 thread_info *thread = first_thread_of_inferior (current_inferior ());
5999 if (thread != nullptr)
6000 switch_to_thread (thread);
bad34192
PA
6001
6002 /* Invalidate our notion of the remote current thread. */
47f8a51d 6003 record_currthread (rs, minus_one_ptid);
bad34192 6004 }
74531fed 6005 else
bad34192 6006 {
0ac55310
PA
6007 /* Now, if we have thread information, update the main thread's
6008 ptid. */
6009 ptid_t curr_ptid = remote_current_thread (ptid_t (pid));
bad34192
PA
6010
6011 /* Add the main thread to the thread list. */
0ac55310
PA
6012 thread_info *thr = add_thread_silent (this, curr_ptid);
6013
6014 switch_to_thread (thr);
6015
00aecdcf
PA
6016 /* Don't consider the thread stopped until we've processed the
6017 saved stop reply. */
5b6d1e4f 6018 set_executing (this, thr->ptid, true);
bad34192 6019 }
c0a2216e 6020
96ef3384
UW
6021 /* Next, if the target can specify a description, read it. We do
6022 this before anything involving memory or registers. */
6023 target_find_description ();
6024
6efcd9a8 6025 if (!target_is_non_stop_p ())
74531fed
PA
6026 {
6027 /* Use the previously fetched status. */
6028 gdb_assert (wait_status != NULL);
6029
6030 if (target_can_async_p ())
6031 {
722247f1 6032 struct notif_event *reply
6b8edb51 6033 = remote_notif_parse (this, &notif_client_stop, wait_status);
74531fed 6034
722247f1 6035 push_stop_reply ((struct stop_reply *) reply);
74531fed 6036
6a3753b3 6037 target_async (1);
74531fed
PA
6038 }
6039 else
6040 {
6041 gdb_assert (wait_status != NULL);
8d64371b 6042 strcpy (rs->buf.data (), wait_status);
74531fed
PA
6043 rs->cached_wait_status = 1;
6044 }
6045 }
6046 else
6047 gdb_assert (wait_status == NULL);
2d717e4f
DJ
6048}
6049
b9c1d481
AS
6050/* Implementation of the to_post_attach method. */
6051
f6ac5f3d
PA
6052void
6053extended_remote_target::post_attach (int pid)
b9c1d481 6054{
6efcd9a8
PA
6055 /* Get text, data & bss offsets. */
6056 get_offsets ();
6057
b9c1d481
AS
6058 /* In certain cases GDB might not have had the chance to start
6059 symbol lookup up until now. This could happen if the debugged
6060 binary is not using shared libraries, the vsyscall page is not
6061 present (on Linux) and the binary itself hadn't changed since the
6062 debugging process was started. */
a42d7dd8 6063 if (current_program_space->symfile_object_file != NULL)
b9c1d481
AS
6064 remote_check_symbols();
6065}
6066
c906108c 6067\f
506fb367
DJ
6068/* Check for the availability of vCont. This function should also check
6069 the response. */
c906108c 6070
6b8edb51
PA
6071void
6072remote_target::remote_vcont_probe ()
c906108c 6073{
6b8edb51 6074 remote_state *rs = get_remote_state ();
2e9f7625 6075 char *buf;
6d820c5c 6076
8d64371b 6077 strcpy (rs->buf.data (), "vCont?");
2e9f7625 6078 putpkt (rs->buf);
8d64371b
TT
6079 getpkt (&rs->buf, 0);
6080 buf = rs->buf.data ();
c906108c 6081
506fb367 6082 /* Make sure that the features we assume are supported. */
61012eef 6083 if (startswith (buf, "vCont"))
506fb367
DJ
6084 {
6085 char *p = &buf[5];
750ce8d1 6086 int support_c, support_C;
506fb367 6087
750ce8d1
YQ
6088 rs->supports_vCont.s = 0;
6089 rs->supports_vCont.S = 0;
506fb367
DJ
6090 support_c = 0;
6091 support_C = 0;
d458bd84 6092 rs->supports_vCont.t = 0;
c1e36e3e 6093 rs->supports_vCont.r = 0;
506fb367
DJ
6094 while (p && *p == ';')
6095 {
6096 p++;
6097 if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 6098 rs->supports_vCont.s = 1;
506fb367 6099 else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 6100 rs->supports_vCont.S = 1;
506fb367
DJ
6101 else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
6102 support_c = 1;
6103 else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
6104 support_C = 1;
74531fed 6105 else if (*p == 't' && (*(p + 1) == ';' || *(p + 1) == 0))
d458bd84 6106 rs->supports_vCont.t = 1;
c1e36e3e
PA
6107 else if (*p == 'r' && (*(p + 1) == ';' || *(p + 1) == 0))
6108 rs->supports_vCont.r = 1;
506fb367
DJ
6109
6110 p = strchr (p, ';');
6111 }
c906108c 6112
750ce8d1
YQ
6113 /* If c, and C are not all supported, we can't use vCont. Clearing
6114 BUF will make packet_ok disable the packet. */
6115 if (!support_c || !support_C)
506fb367
DJ
6116 buf[0] = 0;
6117 }
c906108c 6118
8d64371b 6119 packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCont]);
5b6d1e4f 6120 rs->supports_vCont_probed = true;
506fb367 6121}
c906108c 6122
0d8f58ca
PA
6123/* Helper function for building "vCont" resumptions. Write a
6124 resumption to P. ENDP points to one-passed-the-end of the buffer
6125 we're allowed to write to. Returns BUF+CHARACTERS_WRITTEN. The
6126 thread to be resumed is PTID; STEP and SIGGNAL indicate whether the
6127 resumed thread should be single-stepped and/or signalled. If PTID
6128 equals minus_one_ptid, then all threads are resumed; if PTID
6129 represents a process, then all threads of the process are resumed;
6130 the thread to be stepped and/or signalled is given in the global
6131 INFERIOR_PTID. */
6132
6b8edb51
PA
6133char *
6134remote_target::append_resumption (char *p, char *endp,
6135 ptid_t ptid, int step, gdb_signal siggnal)
0d8f58ca
PA
6136{
6137 struct remote_state *rs = get_remote_state ();
6138
a493e3e2 6139 if (step && siggnal != GDB_SIGNAL_0)
0d8f58ca 6140 p += xsnprintf (p, endp - p, ";S%02x", siggnal);
c1e36e3e
PA
6141 else if (step
6142 /* GDB is willing to range step. */
6143 && use_range_stepping
6144 /* Target supports range stepping. */
6145 && rs->supports_vCont.r
6146 /* We don't currently support range stepping multiple
6147 threads with a wildcard (though the protocol allows it,
6148 so stubs shouldn't make an active effort to forbid
6149 it). */
0e998d96 6150 && !(remote_multi_process_p (rs) && ptid.is_pid ()))
c1e36e3e
PA
6151 {
6152 struct thread_info *tp;
6153
d7e15655 6154 if (ptid == minus_one_ptid)
c1e36e3e
PA
6155 {
6156 /* If we don't know about the target thread's tid, then
6157 we're resuming magic_null_ptid (see caller). */
5b6d1e4f 6158 tp = find_thread_ptid (this, magic_null_ptid);
c1e36e3e
PA
6159 }
6160 else
5b6d1e4f 6161 tp = find_thread_ptid (this, ptid);
c1e36e3e
PA
6162 gdb_assert (tp != NULL);
6163
6164 if (tp->control.may_range_step)
6165 {
6166 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
6167
6168 p += xsnprintf (p, endp - p, ";r%s,%s",
6169 phex_nz (tp->control.step_range_start,
6170 addr_size),
6171 phex_nz (tp->control.step_range_end,
6172 addr_size));
6173 }
6174 else
6175 p += xsnprintf (p, endp - p, ";s");
6176 }
0d8f58ca
PA
6177 else if (step)
6178 p += xsnprintf (p, endp - p, ";s");
a493e3e2 6179 else if (siggnal != GDB_SIGNAL_0)
0d8f58ca
PA
6180 p += xsnprintf (p, endp - p, ";C%02x", siggnal);
6181 else
6182 p += xsnprintf (p, endp - p, ";c");
6183
0e998d96 6184 if (remote_multi_process_p (rs) && ptid.is_pid ())
0d8f58ca
PA
6185 {
6186 ptid_t nptid;
6187
6188 /* All (-1) threads of process. */
e99b03dc 6189 nptid = ptid_t (ptid.pid (), -1, 0);
0d8f58ca
PA
6190
6191 p += xsnprintf (p, endp - p, ":");
6192 p = write_ptid (p, endp, nptid);
6193 }
d7e15655 6194 else if (ptid != minus_one_ptid)
0d8f58ca
PA
6195 {
6196 p += xsnprintf (p, endp - p, ":");
6197 p = write_ptid (p, endp, ptid);
6198 }
6199
6200 return p;
6201}
6202
799a2abe
PA
6203/* Clear the thread's private info on resume. */
6204
6205static void
6206resume_clear_thread_private_info (struct thread_info *thread)
6207{
6208 if (thread->priv != NULL)
6209 {
7aabaf9d
SM
6210 remote_thread_info *priv = get_remote_thread_info (thread);
6211
6212 priv->stop_reason = TARGET_STOPPED_BY_NO_REASON;
6213 priv->watch_data_address = 0;
799a2abe
PA
6214 }
6215}
6216
e5ef252a
PA
6217/* Append a vCont continue-with-signal action for threads that have a
6218 non-zero stop signal. */
6219
6b8edb51
PA
6220char *
6221remote_target::append_pending_thread_resumptions (char *p, char *endp,
6222 ptid_t ptid)
e5ef252a 6223{
5b6d1e4f 6224 for (thread_info *thread : all_non_exited_threads (this, ptid))
08036331 6225 if (inferior_ptid != thread->ptid
70509625 6226 && thread->suspend.stop_signal != GDB_SIGNAL_0)
e5ef252a
PA
6227 {
6228 p = append_resumption (p, endp, thread->ptid,
6229 0, thread->suspend.stop_signal);
6230 thread->suspend.stop_signal = GDB_SIGNAL_0;
799a2abe 6231 resume_clear_thread_private_info (thread);
e5ef252a
PA
6232 }
6233
6234 return p;
6235}
6236
7b68ffbb
PA
6237/* Set the target running, using the packets that use Hc
6238 (c/s/C/S). */
6239
6b8edb51
PA
6240void
6241remote_target::remote_resume_with_hc (ptid_t ptid, int step,
6242 gdb_signal siggnal)
7b68ffbb
PA
6243{
6244 struct remote_state *rs = get_remote_state ();
7b68ffbb
PA
6245 char *buf;
6246
6247 rs->last_sent_signal = siggnal;
6248 rs->last_sent_step = step;
6249
6250 /* The c/s/C/S resume packets use Hc, so set the continue
6251 thread. */
d7e15655 6252 if (ptid == minus_one_ptid)
7b68ffbb
PA
6253 set_continue_thread (any_thread_ptid);
6254 else
6255 set_continue_thread (ptid);
6256
5b6d1e4f 6257 for (thread_info *thread : all_non_exited_threads (this))
7b68ffbb
PA
6258 resume_clear_thread_private_info (thread);
6259
8d64371b 6260 buf = rs->buf.data ();
6b8edb51 6261 if (::execution_direction == EXEC_REVERSE)
7b68ffbb
PA
6262 {
6263 /* We don't pass signals to the target in reverse exec mode. */
6264 if (info_verbose && siggnal != GDB_SIGNAL_0)
6265 warning (_(" - Can't pass signal %d to target in reverse: ignored."),
6266 siggnal);
6267
6268 if (step && packet_support (PACKET_bs) == PACKET_DISABLE)
6269 error (_("Remote reverse-step not supported."));
6270 if (!step && packet_support (PACKET_bc) == PACKET_DISABLE)
6271 error (_("Remote reverse-continue not supported."));
6272
6273 strcpy (buf, step ? "bs" : "bc");
6274 }
6275 else if (siggnal != GDB_SIGNAL_0)
6276 {
6277 buf[0] = step ? 'S' : 'C';
6278 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
6279 buf[2] = tohex (((int) siggnal) & 0xf);
6280 buf[3] = '\0';
6281 }
6282 else
6283 strcpy (buf, step ? "s" : "c");
6284
6285 putpkt (buf);
6286}
6287
506fb367
DJ
6288/* Resume the remote inferior by using a "vCont" packet. The thread
6289 to be resumed is PTID; STEP and SIGGNAL indicate whether the
79d7f229
PA
6290 resumed thread should be single-stepped and/or signalled. If PTID
6291 equals minus_one_ptid, then all threads are resumed; the thread to
6292 be stepped and/or signalled is given in the global INFERIOR_PTID.
6293 This function returns non-zero iff it resumes the inferior.
44eaed12 6294
7b68ffbb
PA
6295 This function issues a strict subset of all possible vCont commands
6296 at the moment. */
44eaed12 6297
6b8edb51
PA
6298int
6299remote_target::remote_resume_with_vcont (ptid_t ptid, int step,
6300 enum gdb_signal siggnal)
506fb367
DJ
6301{
6302 struct remote_state *rs = get_remote_state ();
82f73884
PA
6303 char *p;
6304 char *endp;
44eaed12 6305
7b68ffbb 6306 /* No reverse execution actions defined for vCont. */
6b8edb51 6307 if (::execution_direction == EXEC_REVERSE)
7b68ffbb
PA
6308 return 0;
6309
4082afcc 6310 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6b8edb51 6311 remote_vcont_probe ();
44eaed12 6312
4082afcc 6313 if (packet_support (PACKET_vCont) == PACKET_DISABLE)
6d820c5c 6314 return 0;
44eaed12 6315
8d64371b
TT
6316 p = rs->buf.data ();
6317 endp = p + get_remote_packet_size ();
82f73884 6318
506fb367
DJ
6319 /* If we could generate a wider range of packets, we'd have to worry
6320 about overflowing BUF. Should there be a generic
6321 "multi-part-packet" packet? */
6322
0d8f58ca
PA
6323 p += xsnprintf (p, endp - p, "vCont");
6324
d7e15655 6325 if (ptid == magic_null_ptid)
c906108c 6326 {
79d7f229
PA
6327 /* MAGIC_NULL_PTID means that we don't have any active threads,
6328 so we don't have any TID numbers the inferior will
6329 understand. Make sure to only send forms that do not specify
6330 a TID. */
a9cbf802 6331 append_resumption (p, endp, minus_one_ptid, step, siggnal);
506fb367 6332 }
d7e15655 6333 else if (ptid == minus_one_ptid || ptid.is_pid ())
506fb367 6334 {
0d8f58ca
PA
6335 /* Resume all threads (of all processes, or of a single
6336 process), with preference for INFERIOR_PTID. This assumes
6337 inferior_ptid belongs to the set of all threads we are about
6338 to resume. */
a493e3e2 6339 if (step || siggnal != GDB_SIGNAL_0)
82f73884 6340 {
0d8f58ca
PA
6341 /* Step inferior_ptid, with or without signal. */
6342 p = append_resumption (p, endp, inferior_ptid, step, siggnal);
82f73884 6343 }
0d8f58ca 6344
e5ef252a
PA
6345 /* Also pass down any pending signaled resumption for other
6346 threads not the current. */
6347 p = append_pending_thread_resumptions (p, endp, ptid);
6348
0d8f58ca 6349 /* And continue others without a signal. */
a493e3e2 6350 append_resumption (p, endp, ptid, /*step=*/ 0, GDB_SIGNAL_0);
c906108c
SS
6351 }
6352 else
506fb367
DJ
6353 {
6354 /* Scheduler locking; resume only PTID. */
a9cbf802 6355 append_resumption (p, endp, ptid, step, siggnal);
506fb367 6356 }
c906108c 6357
8d64371b 6358 gdb_assert (strlen (rs->buf.data ()) < get_remote_packet_size ());
82f73884 6359 putpkt (rs->buf);
506fb367 6360
6efcd9a8 6361 if (target_is_non_stop_p ())
74531fed
PA
6362 {
6363 /* In non-stop, the stub replies to vCont with "OK". The stop
6364 reply will be reported asynchronously by means of a `%Stop'
6365 notification. */
8d64371b
TT
6366 getpkt (&rs->buf, 0);
6367 if (strcmp (rs->buf.data (), "OK") != 0)
6368 error (_("Unexpected vCont reply in non-stop mode: %s"),
6369 rs->buf.data ());
74531fed
PA
6370 }
6371
506fb367 6372 return 1;
c906108c 6373}
43ff13b4 6374
506fb367
DJ
6375/* Tell the remote machine to resume. */
6376
f6ac5f3d
PA
6377void
6378remote_target::resume (ptid_t ptid, int step, enum gdb_signal siggnal)
43ff13b4 6379{
d01949b6 6380 struct remote_state *rs = get_remote_state ();
43ff13b4 6381
85ad3aaf
PA
6382 /* When connected in non-stop mode, the core resumes threads
6383 individually. Resuming remote threads directly in target_resume
6384 would thus result in sending one packet per thread. Instead, to
6385 minimize roundtrip latency, here we just store the resume
c9d22089
SM
6386 request (put the thread in RESUMED_PENDING_VCONT state); the actual remote
6387 resumption will be done in remote_target::commit_resume, where we'll be
6388 able to do vCont action coalescing. */
f6ac5f3d 6389 if (target_is_non_stop_p () && ::execution_direction != EXEC_REVERSE)
85ad3aaf 6390 {
7aabaf9d 6391 remote_thread_info *remote_thr;
85ad3aaf 6392
d7e15655 6393 if (minus_one_ptid == ptid || ptid.is_pid ())
5b6d1e4f 6394 remote_thr = get_remote_thread_info (this, inferior_ptid);
85ad3aaf 6395 else
5b6d1e4f 6396 remote_thr = get_remote_thread_info (this, ptid);
7aabaf9d 6397
c9d22089
SM
6398 /* We don't expect the core to ask to resume an already resumed (from
6399 its point of view) thread. */
a6c11cbb 6400 gdb_assert (remote_thr->get_resume_state () == resume_state::NOT_RESUMED);
c9d22089
SM
6401
6402 remote_thr->set_resumed_pending_vcont (step, siggnal);
85ad3aaf
PA
6403 return;
6404 }
6405
722247f1
YQ
6406 /* In all-stop, we can't mark REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN
6407 (explained in remote-notif.c:handle_notification) so
6408 remote_notif_process is not called. We need find a place where
6409 it is safe to start a 'vNotif' sequence. It is good to do it
6410 before resuming inferior, because inferior was stopped and no RSP
6411 traffic at that moment. */
6efcd9a8 6412 if (!target_is_non_stop_p ())
5965e028 6413 remote_notif_process (rs->notif_state, &notif_client_stop);
722247f1 6414
f6ac5f3d 6415 rs->last_resume_exec_dir = ::execution_direction;
3a00c802 6416
7b68ffbb
PA
6417 /* Prefer vCont, and fallback to s/c/S/C, which use Hc. */
6418 if (!remote_resume_with_vcont (ptid, step, siggnal))
6b8edb51 6419 remote_resume_with_hc (ptid, step, siggnal);
43ff13b4 6420
c9d22089
SM
6421 /* Update resumed state tracked by the remote target. */
6422 for (thread_info *tp : all_non_exited_threads (this, ptid))
6423 get_remote_thread_info (tp)->set_resumed ();
6424
2acceee2 6425 /* We are about to start executing the inferior, let's register it
0df8b418
MS
6426 with the event loop. NOTE: this is the one place where all the
6427 execution commands end up. We could alternatively do this in each
23860348 6428 of the execution commands in infcmd.c. */
2acceee2
JM
6429 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
6430 into infcmd.c in order to allow inferior function calls to work
23860348 6431 NOT asynchronously. */
362646f5 6432 if (target_can_async_p ())
6a3753b3 6433 target_async (1);
e24a49d8
PA
6434
6435 /* We've just told the target to resume. The remote server will
6436 wait for the inferior to stop, and then send a stop reply. In
6437 the mean time, we can't start another command/query ourselves
74531fed
PA
6438 because the stub wouldn't be ready to process it. This applies
6439 only to the base all-stop protocol, however. In non-stop (which
6440 only supports vCont), the stub replies with an "OK", and is
6441 immediate able to process further serial input. */
6efcd9a8 6442 if (!target_is_non_stop_p ())
74531fed 6443 rs->waiting_for_stop_reply = 1;
43ff13b4 6444}
85ad3aaf 6445
85ad3aaf
PA
6446static int is_pending_fork_parent_thread (struct thread_info *thread);
6447
6448/* Private per-inferior info for target remote processes. */
6449
089354bb 6450struct remote_inferior : public private_inferior
85ad3aaf
PA
6451{
6452 /* Whether we can send a wildcard vCont for this process. */
089354bb 6453 bool may_wildcard_vcont = true;
85ad3aaf
PA
6454};
6455
089354bb
SM
6456/* Get the remote private inferior data associated to INF. */
6457
6458static remote_inferior *
6459get_remote_inferior (inferior *inf)
6460{
6461 if (inf->priv == NULL)
6462 inf->priv.reset (new remote_inferior);
6463
6464 return static_cast<remote_inferior *> (inf->priv.get ());
6465}
6466
f5db4863 6467/* Class used to track the construction of a vCont packet in the
85ad3aaf
PA
6468 outgoing packet buffer. This is used to send multiple vCont
6469 packets if we have more actions than would fit a single packet. */
6470
f5db4863 6471class vcont_builder
85ad3aaf 6472{
f5db4863 6473public:
6b8edb51
PA
6474 explicit vcont_builder (remote_target *remote)
6475 : m_remote (remote)
f5db4863
PA
6476 {
6477 restart ();
6478 }
6479
6480 void flush ();
6481 void push_action (ptid_t ptid, bool step, gdb_signal siggnal);
6482
6483private:
6484 void restart ();
6485
6b8edb51
PA
6486 /* The remote target. */
6487 remote_target *m_remote;
6488
85ad3aaf
PA
6489 /* Pointer to the first action. P points here if no action has been
6490 appended yet. */
f5db4863 6491 char *m_first_action;
85ad3aaf
PA
6492
6493 /* Where the next action will be appended. */
f5db4863 6494 char *m_p;
85ad3aaf
PA
6495
6496 /* The end of the buffer. Must never write past this. */
f5db4863 6497 char *m_endp;
85ad3aaf
PA
6498};
6499
6500/* Prepare the outgoing buffer for a new vCont packet. */
6501
f5db4863
PA
6502void
6503vcont_builder::restart ()
85ad3aaf 6504{
6b8edb51 6505 struct remote_state *rs = m_remote->get_remote_state ();
85ad3aaf 6506
8d64371b
TT
6507 m_p = rs->buf.data ();
6508 m_endp = m_p + m_remote->get_remote_packet_size ();
f5db4863
PA
6509 m_p += xsnprintf (m_p, m_endp - m_p, "vCont");
6510 m_first_action = m_p;
85ad3aaf
PA
6511}
6512
6513/* If the vCont packet being built has any action, send it to the
6514 remote end. */
6515
f5db4863
PA
6516void
6517vcont_builder::flush ()
85ad3aaf
PA
6518{
6519 struct remote_state *rs;
6520
f5db4863 6521 if (m_p == m_first_action)
85ad3aaf
PA
6522 return;
6523
6b8edb51
PA
6524 rs = m_remote->get_remote_state ();
6525 m_remote->putpkt (rs->buf);
8d64371b
TT
6526 m_remote->getpkt (&rs->buf, 0);
6527 if (strcmp (rs->buf.data (), "OK") != 0)
6528 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf.data ());
85ad3aaf
PA
6529}
6530
6531/* The largest action is range-stepping, with its two addresses. This
6532 is more than sufficient. If a new, bigger action is created, it'll
6533 quickly trigger a failed assertion in append_resumption (and we'll
6534 just bump this). */
6535#define MAX_ACTION_SIZE 200
6536
6537/* Append a new vCont action in the outgoing packet being built. If
6538 the action doesn't fit the packet along with previous actions, push
6539 what we've got so far to the remote end and start over a new vCont
6540 packet (with the new action). */
6541
f5db4863
PA
6542void
6543vcont_builder::push_action (ptid_t ptid, bool step, gdb_signal siggnal)
85ad3aaf
PA
6544{
6545 char buf[MAX_ACTION_SIZE + 1];
85ad3aaf 6546
6b8edb51
PA
6547 char *endp = m_remote->append_resumption (buf, buf + sizeof (buf),
6548 ptid, step, siggnal);
85ad3aaf
PA
6549
6550 /* Check whether this new action would fit in the vCont packet along
6551 with previous actions. If not, send what we've got so far and
6552 start a new vCont packet. */
f5db4863
PA
6553 size_t rsize = endp - buf;
6554 if (rsize > m_endp - m_p)
85ad3aaf 6555 {
f5db4863
PA
6556 flush ();
6557 restart ();
85ad3aaf
PA
6558
6559 /* Should now fit. */
f5db4863 6560 gdb_assert (rsize <= m_endp - m_p);
85ad3aaf
PA
6561 }
6562
f5db4863
PA
6563 memcpy (m_p, buf, rsize);
6564 m_p += rsize;
6565 *m_p = '\0';
85ad3aaf
PA
6566}
6567
6568/* to_commit_resume implementation. */
6569
f6ac5f3d
PA
6570void
6571remote_target::commit_resume ()
85ad3aaf 6572{
85ad3aaf
PA
6573 int any_process_wildcard;
6574 int may_global_wildcard_vcont;
85ad3aaf
PA
6575
6576 /* If connected in all-stop mode, we'd send the remote resume
6577 request directly from remote_resume. Likewise if
6578 reverse-debugging, as there are no defined vCont actions for
6579 reverse execution. */
f6ac5f3d 6580 if (!target_is_non_stop_p () || ::execution_direction == EXEC_REVERSE)
85ad3aaf
PA
6581 return;
6582
6583 /* Try to send wildcard actions ("vCont;c" or "vCont;c:pPID.-1")
6584 instead of resuming all threads of each process individually.
6585 However, if any thread of a process must remain halted, we can't
6586 send wildcard resumes and must send one action per thread.
6587
6588 Care must be taken to not resume threads/processes the server
6589 side already told us are stopped, but the core doesn't know about
6590 yet, because the events are still in the vStopped notification
6591 queue. For example:
6592
6593 #1 => vCont s:p1.1;c
6594 #2 <= OK
6595 #3 <= %Stopped T05 p1.1
6596 #4 => vStopped
6597 #5 <= T05 p1.2
6598 #6 => vStopped
6599 #7 <= OK
6600 #8 (infrun handles the stop for p1.1 and continues stepping)
6601 #9 => vCont s:p1.1;c
6602
6603 The last vCont above would resume thread p1.2 by mistake, because
6604 the server has no idea that the event for p1.2 had not been
6605 handled yet.
6606
6607 The server side must similarly ignore resume actions for the
6608 thread that has a pending %Stopped notification (and any other
6609 threads with events pending), until GDB acks the notification
6610 with vStopped. Otherwise, e.g., the following case is
6611 mishandled:
6612
6613 #1 => g (or any other packet)
6614 #2 <= [registers]
6615 #3 <= %Stopped T05 p1.2
6616 #4 => vCont s:p1.1;c
6617 #5 <= OK
6618
6619 Above, the server must not resume thread p1.2. GDB can't know
6620 that p1.2 stopped until it acks the %Stopped notification, and
6621 since from GDB's perspective all threads should be running, it
6622 sends a "c" action.
6623
6624 Finally, special care must also be given to handling fork/vfork
6625 events. A (v)fork event actually tells us that two processes
6626 stopped -- the parent and the child. Until we follow the fork,
6627 we must not resume the child. Therefore, if we have a pending
6628 fork follow, we must not send a global wildcard resume action
6629 (vCont;c). We can still send process-wide wildcards though. */
6630
6631 /* Start by assuming a global wildcard (vCont;c) is possible. */
6632 may_global_wildcard_vcont = 1;
6633
6634 /* And assume every process is individually wildcard-able too. */
5b6d1e4f 6635 for (inferior *inf : all_non_exited_inferiors (this))
85ad3aaf 6636 {
089354bb
SM
6637 remote_inferior *priv = get_remote_inferior (inf);
6638
6639 priv->may_wildcard_vcont = true;
85ad3aaf
PA
6640 }
6641
6642 /* Check for any pending events (not reported or processed yet) and
6643 disable process and global wildcard resumes appropriately. */
6644 check_pending_events_prevent_wildcard_vcont (&may_global_wildcard_vcont);
6645
5b6d1e4f 6646 for (thread_info *tp : all_non_exited_threads (this))
85ad3aaf 6647 {
c9d22089
SM
6648 remote_thread_info *priv = get_remote_thread_info (tp);
6649
85ad3aaf
PA
6650 /* If a thread of a process is not meant to be resumed, then we
6651 can't wildcard that process. */
a6c11cbb 6652 if (priv->get_resume_state () == resume_state::NOT_RESUMED)
85ad3aaf 6653 {
089354bb 6654 get_remote_inferior (tp->inf)->may_wildcard_vcont = false;
85ad3aaf
PA
6655
6656 /* And if we can't wildcard a process, we can't wildcard
6657 everything either. */
6658 may_global_wildcard_vcont = 0;
6659 continue;
6660 }
6661
6662 /* If a thread is the parent of an unfollowed fork, then we
6663 can't do a global wildcard, as that would resume the fork
6664 child. */
6665 if (is_pending_fork_parent_thread (tp))
6666 may_global_wildcard_vcont = 0;
6667 }
6668
6669 /* Now let's build the vCont packet(s). Actions must be appended
6670 from narrower to wider scopes (thread -> process -> global). If
6671 we end up with too many actions for a single packet vcont_builder
6672 flushes the current vCont packet to the remote side and starts a
6673 new one. */
6b8edb51 6674 struct vcont_builder vcont_builder (this);
85ad3aaf
PA
6675
6676 /* Threads first. */
5b6d1e4f 6677 for (thread_info *tp : all_non_exited_threads (this))
85ad3aaf 6678 {
7aabaf9d 6679 remote_thread_info *remote_thr = get_remote_thread_info (tp);
85ad3aaf 6680
c9d22089
SM
6681 /* If the thread was previously vCont-resumed, no need to send a specific
6682 action for it. If we didn't receive a resume request for it, don't
6683 send an action for it either. */
a6c11cbb 6684 if (remote_thr->get_resume_state () != resume_state::RESUMED_PENDING_VCONT)
85ad3aaf
PA
6685 continue;
6686
6687 gdb_assert (!thread_is_in_step_over_chain (tp));
6688
c9d22089
SM
6689 const resumed_pending_vcont_info &info
6690 = remote_thr->resumed_pending_vcont_info ();
85ad3aaf 6691
c9d22089
SM
6692 /* Check if we need to send a specific action for this thread. If not,
6693 it will be included in a wildcard resume instead. */
6694 if (info.step || info.sig != GDB_SIGNAL_0
6695 || !get_remote_inferior (tp->inf)->may_wildcard_vcont)
6696 vcont_builder.push_action (tp->ptid, info.step, info.sig);
6697
6698 remote_thr->set_resumed ();
85ad3aaf
PA
6699 }
6700
6701 /* Now check whether we can send any process-wide wildcard. This is
6702 to avoid sending a global wildcard in the case nothing is
6703 supposed to be resumed. */
6704 any_process_wildcard = 0;
6705
5b6d1e4f 6706 for (inferior *inf : all_non_exited_inferiors (this))
85ad3aaf 6707 {
089354bb 6708 if (get_remote_inferior (inf)->may_wildcard_vcont)
85ad3aaf
PA
6709 {
6710 any_process_wildcard = 1;
6711 break;
6712 }
6713 }
6714
6715 if (any_process_wildcard)
6716 {
6717 /* If all processes are wildcard-able, then send a single "c"
6718 action, otherwise, send an "all (-1) threads of process"
6719 continue action for each running process, if any. */
6720 if (may_global_wildcard_vcont)
6721 {
f5db4863
PA
6722 vcont_builder.push_action (minus_one_ptid,
6723 false, GDB_SIGNAL_0);
85ad3aaf
PA
6724 }
6725 else
6726 {
5b6d1e4f 6727 for (inferior *inf : all_non_exited_inferiors (this))
85ad3aaf 6728 {
089354bb 6729 if (get_remote_inferior (inf)->may_wildcard_vcont)
85ad3aaf 6730 {
f2907e49 6731 vcont_builder.push_action (ptid_t (inf->pid),
f5db4863 6732 false, GDB_SIGNAL_0);
85ad3aaf
PA
6733 }
6734 }
6735 }
6736 }
6737
f5db4863 6738 vcont_builder.flush ();
85ad3aaf
PA
6739}
6740
c906108c 6741\f
43ff13b4 6742
74531fed
PA
6743/* Non-stop version of target_stop. Uses `vCont;t' to stop a remote
6744 thread, all threads of a remote process, or all threads of all
6745 processes. */
6746
6b8edb51
PA
6747void
6748remote_target::remote_stop_ns (ptid_t ptid)
74531fed
PA
6749{
6750 struct remote_state *rs = get_remote_state ();
8d64371b
TT
6751 char *p = rs->buf.data ();
6752 char *endp = p + get_remote_packet_size ();
74531fed 6753
5b6d1e4f
PA
6754 /* FIXME: This supports_vCont_probed check is a workaround until
6755 packet_support is per-connection. */
6756 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN
6757 || !rs->supports_vCont_probed)
6b8edb51 6758 remote_vcont_probe ();
74531fed 6759
d458bd84 6760 if (!rs->supports_vCont.t)
74531fed
PA
6761 error (_("Remote server does not support stopping threads"));
6762
d7e15655 6763 if (ptid == minus_one_ptid
0e998d96 6764 || (!remote_multi_process_p (rs) && ptid.is_pid ()))
74531fed
PA
6765 p += xsnprintf (p, endp - p, "vCont;t");
6766 else
6767 {
6768 ptid_t nptid;
6769
74531fed
PA
6770 p += xsnprintf (p, endp - p, "vCont;t:");
6771
0e998d96 6772 if (ptid.is_pid ())
74531fed 6773 /* All (-1) threads of process. */
e99b03dc 6774 nptid = ptid_t (ptid.pid (), -1, 0);
74531fed
PA
6775 else
6776 {
6777 /* Small optimization: if we already have a stop reply for
6778 this thread, no use in telling the stub we want this
6779 stopped. */
6780 if (peek_stop_reply (ptid))
6781 return;
6782
6783 nptid = ptid;
6784 }
6785
a9cbf802 6786 write_ptid (p, endp, nptid);
74531fed
PA
6787 }
6788
6789 /* In non-stop, we get an immediate OK reply. The stop reply will
6790 come in asynchronously by notification. */
6791 putpkt (rs->buf);
8d64371b
TT
6792 getpkt (&rs->buf, 0);
6793 if (strcmp (rs->buf.data (), "OK") != 0)
a068643d 6794 error (_("Stopping %s failed: %s"), target_pid_to_str (ptid).c_str (),
8d64371b 6795 rs->buf.data ());
74531fed
PA
6796}
6797
bfedc46a
PA
6798/* All-stop version of target_interrupt. Sends a break or a ^C to
6799 interrupt the remote target. It is undefined which thread of which
6800 process reports the interrupt. */
74531fed 6801
6b8edb51
PA
6802void
6803remote_target::remote_interrupt_as ()
74531fed
PA
6804{
6805 struct remote_state *rs = get_remote_state ();
6806
3a29589a
DJ
6807 rs->ctrlc_pending_p = 1;
6808
74531fed
PA
6809 /* If the inferior is stopped already, but the core didn't know
6810 about it yet, just ignore the request. The cached wait status
6811 will be collected in remote_wait. */
6812 if (rs->cached_wait_status)
6813 return;
6814
9a7071a8
JB
6815 /* Send interrupt_sequence to remote target. */
6816 send_interrupt_sequence ();
74531fed
PA
6817}
6818
de979965
PA
6819/* Non-stop version of target_interrupt. Uses `vCtrlC' to interrupt
6820 the remote target. It is undefined which thread of which process
e42de8c7
PA
6821 reports the interrupt. Throws an error if the packet is not
6822 supported by the server. */
de979965 6823
6b8edb51
PA
6824void
6825remote_target::remote_interrupt_ns ()
de979965
PA
6826{
6827 struct remote_state *rs = get_remote_state ();
8d64371b
TT
6828 char *p = rs->buf.data ();
6829 char *endp = p + get_remote_packet_size ();
de979965
PA
6830
6831 xsnprintf (p, endp - p, "vCtrlC");
6832
6833 /* In non-stop, we get an immediate OK reply. The stop reply will
6834 come in asynchronously by notification. */
6835 putpkt (rs->buf);
8d64371b 6836 getpkt (&rs->buf, 0);
de979965
PA
6837
6838 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCtrlC]))
6839 {
6840 case PACKET_OK:
6841 break;
6842 case PACKET_UNKNOWN:
e42de8c7 6843 error (_("No support for interrupting the remote target."));
de979965 6844 case PACKET_ERROR:
8d64371b 6845 error (_("Interrupting target failed: %s"), rs->buf.data ());
de979965 6846 }
de979965
PA
6847}
6848
bfedc46a 6849/* Implement the to_stop function for the remote targets. */
74531fed 6850
f6ac5f3d
PA
6851void
6852remote_target::stop (ptid_t ptid)
c906108c 6853{
7a292a7a 6854 if (remote_debug)
0f71a2f6 6855 fprintf_unfiltered (gdb_stdlog, "remote_stop called\n");
c906108c 6856
6efcd9a8 6857 if (target_is_non_stop_p ())
74531fed 6858 remote_stop_ns (ptid);
c906108c 6859 else
bfedc46a
PA
6860 {
6861 /* We don't currently have a way to transparently pause the
6862 remote target in all-stop mode. Interrupt it instead. */
de979965 6863 remote_interrupt_as ();
bfedc46a
PA
6864 }
6865}
6866
6867/* Implement the to_interrupt function for the remote targets. */
6868
f6ac5f3d
PA
6869void
6870remote_target::interrupt ()
bfedc46a
PA
6871{
6872 if (remote_debug)
6873 fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n");
6874
e42de8c7
PA
6875 if (target_is_non_stop_p ())
6876 remote_interrupt_ns ();
bfedc46a 6877 else
e42de8c7 6878 remote_interrupt_as ();
c906108c
SS
6879}
6880
93692b58
PA
6881/* Implement the to_pass_ctrlc function for the remote targets. */
6882
f6ac5f3d
PA
6883void
6884remote_target::pass_ctrlc ()
93692b58
PA
6885{
6886 struct remote_state *rs = get_remote_state ();
6887
6888 if (remote_debug)
6889 fprintf_unfiltered (gdb_stdlog, "remote_pass_ctrlc called\n");
6890
6891 /* If we're starting up, we're not fully synced yet. Quit
6892 immediately. */
6893 if (rs->starting_up)
6894 quit ();
6895 /* If ^C has already been sent once, offer to disconnect. */
6896 else if (rs->ctrlc_pending_p)
6897 interrupt_query ();
6898 else
e671cd59 6899 target_interrupt ();
93692b58
PA
6900}
6901
c906108c
SS
6902/* Ask the user what to do when an interrupt is received. */
6903
6b8edb51
PA
6904void
6905remote_target::interrupt_query ()
c906108c 6906{
abc56d60 6907 struct remote_state *rs = get_remote_state ();
c906108c 6908
abc56d60 6909 if (rs->waiting_for_stop_reply && rs->ctrlc_pending_p)
74531fed 6910 {
abc56d60
PA
6911 if (query (_("The target is not responding to interrupt requests.\n"
6912 "Stop debugging it? ")))
74531fed 6913 {
5b6d1e4f 6914 remote_unpush_target (this);
abc56d60 6915 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
74531fed
PA
6916 }
6917 }
abc56d60
PA
6918 else
6919 {
6920 if (query (_("Interrupted while waiting for the program.\n"
6921 "Give up waiting? ")))
6922 quit ();
6923 }
c906108c
SS
6924}
6925
6426a772
JM
6926/* Enable/disable target terminal ownership. Most targets can use
6927 terminal groups to control terminal ownership. Remote targets are
6928 different in that explicit transfer of ownership to/from GDB/target
23860348 6929 is required. */
6426a772 6930
f6ac5f3d
PA
6931void
6932remote_target::terminal_inferior ()
6426a772 6933{
6426a772
JM
6934 /* NOTE: At this point we could also register our selves as the
6935 recipient of all input. Any characters typed could then be
23860348 6936 passed on down to the target. */
6426a772
JM
6937}
6938
f6ac5f3d
PA
6939void
6940remote_target::terminal_ours ()
6426a772 6941{
6426a772
JM
6942}
6943
176a6961 6944static void
05be00a8 6945remote_console_output (const char *msg)
c906108c 6946{
05be00a8 6947 const char *p;
c906108c 6948
c5aa993b 6949 for (p = msg; p[0] && p[1]; p += 2)
c906108c
SS
6950 {
6951 char tb[2];
6952 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
a744cf53 6953
c906108c
SS
6954 tb[0] = c;
6955 tb[1] = 0;
da5bd37e 6956 gdb_stdtarg->puts (tb);
c906108c 6957 }
da5bd37e 6958 gdb_stdtarg->flush ();
00db5b94 6959}
74531fed 6960
32603266 6961struct stop_reply : public notif_event
74531fed 6962{
32603266 6963 ~stop_reply ();
74531fed 6964
722247f1 6965 /* The identifier of the thread about this event */
74531fed
PA
6966 ptid_t ptid;
6967
340e3c99 6968 /* The remote state this event is associated with. When the remote
bcc75809
YQ
6969 connection, represented by a remote_state object, is closed,
6970 all the associated stop_reply events should be released. */
6971 struct remote_state *rs;
6972
74531fed
PA
6973 struct target_waitstatus ws;
6974
5cd63fda
PA
6975 /* The architecture associated with the expedited registers. */
6976 gdbarch *arch;
6977
15148d6a
PA
6978 /* Expedited registers. This makes remote debugging a bit more
6979 efficient for those targets that provide critical registers as
6980 part of their normal status mechanism (as another roundtrip to
6981 fetch them is avoided). */
32603266 6982 std::vector<cached_reg_t> regcache;
74531fed 6983
f7e6eed5
PA
6984 enum target_stop_reason stop_reason;
6985
74531fed
PA
6986 CORE_ADDR watch_data_address;
6987
dc146f7c 6988 int core;
32603266 6989};
c906108c 6990
221e1a37
PA
6991/* Return the length of the stop reply queue. */
6992
6b8edb51
PA
6993int
6994remote_target::stop_reply_queue_length ()
221e1a37 6995{
6b8edb51 6996 remote_state *rs = get_remote_state ();
953edf2b 6997 return rs->stop_reply_queue.size ();
221e1a37
PA
6998}
6999
cb8c24b6 7000static void
6b8edb51 7001remote_notif_stop_parse (remote_target *remote,
bb277751 7002 struct notif_client *self, const char *buf,
722247f1
YQ
7003 struct notif_event *event)
7004{
6b8edb51 7005 remote->remote_parse_stop_reply (buf, (struct stop_reply *) event);
722247f1
YQ
7006}
7007
7008static void
6b8edb51 7009remote_notif_stop_ack (remote_target *remote,
bb277751 7010 struct notif_client *self, const char *buf,
722247f1
YQ
7011 struct notif_event *event)
7012{
7013 struct stop_reply *stop_reply = (struct stop_reply *) event;
7014
7015 /* acknowledge */
6b8edb51 7016 putpkt (remote, self->ack_command);
722247f1
YQ
7017
7018 if (stop_reply->ws.kind == TARGET_WAITKIND_IGNORE)
6b8edb51 7019 {
722247f1
YQ
7020 /* We got an unknown stop reply. */
7021 error (_("Unknown stop reply"));
6b8edb51 7022 }
722247f1 7023
6b8edb51 7024 remote->push_stop_reply (stop_reply);
722247f1
YQ
7025}
7026
7027static int
6b8edb51
PA
7028remote_notif_stop_can_get_pending_events (remote_target *remote,
7029 struct notif_client *self)
722247f1
YQ
7030{
7031 /* We can't get pending events in remote_notif_process for
7032 notification stop, and we have to do this in remote_wait_ns
7033 instead. If we fetch all queued events from stub, remote stub
7034 may exit and we have no chance to process them back in
7035 remote_wait_ns. */
6b8edb51
PA
7036 remote_state *rs = remote->get_remote_state ();
7037 mark_async_event_handler (rs->remote_async_inferior_event_token);
722247f1
YQ
7038 return 0;
7039}
7040
32603266 7041stop_reply::~stop_reply ()
722247f1 7042{
32603266
TT
7043 for (cached_reg_t &reg : regcache)
7044 xfree (reg.data);
722247f1
YQ
7045}
7046
32603266
TT
7047static notif_event_up
7048remote_notif_stop_alloc_reply ()
722247f1 7049{
32603266 7050 return notif_event_up (new struct stop_reply ());
722247f1
YQ
7051}
7052
7053/* A client of notification Stop. */
7054
7055struct notif_client notif_client_stop =
7056{
7057 "Stop",
7058 "vStopped",
7059 remote_notif_stop_parse,
7060 remote_notif_stop_ack,
7061 remote_notif_stop_can_get_pending_events,
7062 remote_notif_stop_alloc_reply,
f48ff2a7 7063 REMOTE_NOTIF_STOP,
722247f1
YQ
7064};
7065
85ad3aaf 7066/* Determine if THREAD_PTID is a pending fork parent thread. ARG contains
cbb8991c
DB
7067 the pid of the process that owns the threads we want to check, or
7068 -1 if we want to check all threads. */
7069
7070static int
7071is_pending_fork_parent (struct target_waitstatus *ws, int event_pid,
7072 ptid_t thread_ptid)
7073{
7074 if (ws->kind == TARGET_WAITKIND_FORKED
7075 || ws->kind == TARGET_WAITKIND_VFORKED)
7076 {
e99b03dc 7077 if (event_pid == -1 || event_pid == thread_ptid.pid ())
cbb8991c
DB
7078 return 1;
7079 }
7080
7081 return 0;
7082}
7083
85ad3aaf
PA
7084/* Return the thread's pending status used to determine whether the
7085 thread is a fork parent stopped at a fork event. */
7086
7087static struct target_waitstatus *
7088thread_pending_fork_status (struct thread_info *thread)
7089{
7090 if (thread->suspend.waitstatus_pending_p)
7091 return &thread->suspend.waitstatus;
7092 else
7093 return &thread->pending_follow;
7094}
7095
7096/* Determine if THREAD is a pending fork parent thread. */
7097
7098static int
7099is_pending_fork_parent_thread (struct thread_info *thread)
7100{
7101 struct target_waitstatus *ws = thread_pending_fork_status (thread);
7102 int pid = -1;
7103
7104 return is_pending_fork_parent (ws, pid, thread->ptid);
7105}
7106
cbb8991c
DB
7107/* If CONTEXT contains any fork child threads that have not been
7108 reported yet, remove them from the CONTEXT list. If such a
7109 thread exists it is because we are stopped at a fork catchpoint
7110 and have not yet called follow_fork, which will set up the
7111 host-side data structures for the new process. */
7112
6b8edb51
PA
7113void
7114remote_target::remove_new_fork_children (threads_listing_context *context)
cbb8991c 7115{
cbb8991c
DB
7116 int pid = -1;
7117 struct notif_client *notif = &notif_client_stop;
cbb8991c
DB
7118
7119 /* For any threads stopped at a fork event, remove the corresponding
7120 fork child threads from the CONTEXT list. */
5b6d1e4f 7121 for (thread_info *thread : all_non_exited_threads (this))
cbb8991c 7122 {
85ad3aaf 7123 struct target_waitstatus *ws = thread_pending_fork_status (thread);
cbb8991c
DB
7124
7125 if (is_pending_fork_parent (ws, pid, thread->ptid))
21fe1c75 7126 context->remove_thread (ws->value.related_pid);
cbb8991c
DB
7127 }
7128
7129 /* Check for any pending fork events (not reported or processed yet)
7130 in process PID and remove those fork child threads from the
7131 CONTEXT list as well. */
7132 remote_notif_get_pending_events (notif);
953edf2b
TT
7133 for (auto &event : get_remote_state ()->stop_reply_queue)
7134 if (event->ws.kind == TARGET_WAITKIND_FORKED
7135 || event->ws.kind == TARGET_WAITKIND_VFORKED
7136 || event->ws.kind == TARGET_WAITKIND_THREAD_EXITED)
7137 context->remove_thread (event->ws.value.related_pid);
85ad3aaf
PA
7138}
7139
7140/* Check whether any event pending in the vStopped queue would prevent
7141 a global or process wildcard vCont action. Clear
7142 *may_global_wildcard if we can't do a global wildcard (vCont;c),
7143 and clear the event inferior's may_wildcard_vcont flag if we can't
7144 do a process-wide wildcard resume (vCont;c:pPID.-1). */
7145
6b8edb51
PA
7146void
7147remote_target::check_pending_events_prevent_wildcard_vcont
7148 (int *may_global_wildcard)
85ad3aaf
PA
7149{
7150 struct notif_client *notif = &notif_client_stop;
7151
7152 remote_notif_get_pending_events (notif);
953edf2b
TT
7153 for (auto &event : get_remote_state ()->stop_reply_queue)
7154 {
7155 if (event->ws.kind == TARGET_WAITKIND_NO_RESUMED
7156 || event->ws.kind == TARGET_WAITKIND_NO_HISTORY)
7157 continue;
85ad3aaf 7158
953edf2b
TT
7159 if (event->ws.kind == TARGET_WAITKIND_FORKED
7160 || event->ws.kind == TARGET_WAITKIND_VFORKED)
7161 *may_global_wildcard = 0;
722247f1 7162
5b6d1e4f 7163 struct inferior *inf = find_inferior_ptid (this, event->ptid);
722247f1 7164
953edf2b
TT
7165 /* This may be the first time we heard about this process.
7166 Regardless, we must not do a global wildcard resume, otherwise
7167 we'd resume this process too. */
7168 *may_global_wildcard = 0;
7169 if (inf != NULL)
7170 get_remote_inferior (inf)->may_wildcard_vcont = false;
722247f1 7171 }
722247f1
YQ
7172}
7173
f48ff2a7 7174/* Discard all pending stop replies of inferior INF. */
c906108c 7175
6b8edb51
PA
7176void
7177remote_target::discard_pending_stop_replies (struct inferior *inf)
c906108c 7178{
f48ff2a7
YQ
7179 struct stop_reply *reply;
7180 struct remote_state *rs = get_remote_state ();
7181 struct remote_notif_state *rns = rs->notif_state;
7182
7183 /* This function can be notified when an inferior exists. When the
7184 target is not remote, the notification state is NULL. */
7185 if (rs->remote_desc == NULL)
7186 return;
7187
7188 reply = (struct stop_reply *) rns->pending_event[notif_client_stop.id];
c906108c 7189
74531fed 7190 /* Discard the in-flight notification. */
e99b03dc 7191 if (reply != NULL && reply->ptid.pid () == inf->pid)
74531fed 7192 {
32603266 7193 delete reply;
f48ff2a7 7194 rns->pending_event[notif_client_stop.id] = NULL;
74531fed 7195 }
c906108c 7196
74531fed
PA
7197 /* Discard the stop replies we have already pulled with
7198 vStopped. */
953edf2b
TT
7199 auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7200 rs->stop_reply_queue.end (),
7201 [=] (const stop_reply_up &event)
7202 {
7203 return event->ptid.pid () == inf->pid;
7204 });
7205 rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
bcc75809
YQ
7206}
7207
7208/* Discard the stop replies for RS in stop_reply_queue. */
f48ff2a7 7209
6b8edb51
PA
7210void
7211remote_target::discard_pending_stop_replies_in_queue ()
f48ff2a7 7212{
6b8edb51 7213 remote_state *rs = get_remote_state ();
f48ff2a7 7214
f48ff2a7
YQ
7215 /* Discard the stop replies we have already pulled with
7216 vStopped. */
953edf2b
TT
7217 auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7218 rs->stop_reply_queue.end (),
7219 [=] (const stop_reply_up &event)
7220 {
7221 return event->rs == rs;
7222 });
7223 rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
74531fed 7224}
43ff13b4 7225
722247f1
YQ
7226/* Remove the first reply in 'stop_reply_queue' which matches
7227 PTID. */
2e9f7625 7228
6b8edb51
PA
7229struct stop_reply *
7230remote_target::remote_notif_remove_queued_reply (ptid_t ptid)
74531fed 7231{
953edf2b 7232 remote_state *rs = get_remote_state ();
722247f1 7233
953edf2b
TT
7234 auto iter = std::find_if (rs->stop_reply_queue.begin (),
7235 rs->stop_reply_queue.end (),
7236 [=] (const stop_reply_up &event)
7237 {
7238 return event->ptid.matches (ptid);
7239 });
7240 struct stop_reply *result;
7241 if (iter == rs->stop_reply_queue.end ())
7242 result = nullptr;
7243 else
7244 {
7245 result = iter->release ();
7246 rs->stop_reply_queue.erase (iter);
7247 }
722247f1 7248
722247f1
YQ
7249 if (notif_debug)
7250 fprintf_unfiltered (gdb_stdlog,
7251 "notif: discard queued event: 'Stop' in %s\n",
a068643d 7252 target_pid_to_str (ptid).c_str ());
a744cf53 7253
953edf2b 7254 return result;
74531fed 7255}
75c99385 7256
74531fed
PA
7257/* Look for a queued stop reply belonging to PTID. If one is found,
7258 remove it from the queue, and return it. Returns NULL if none is
7259 found. If there are still queued events left to process, tell the
7260 event loop to get back to target_wait soon. */
e24a49d8 7261
6b8edb51
PA
7262struct stop_reply *
7263remote_target::queued_stop_reply (ptid_t ptid)
74531fed 7264{
953edf2b 7265 remote_state *rs = get_remote_state ();
722247f1 7266 struct stop_reply *r = remote_notif_remove_queued_reply (ptid);
74531fed 7267
953edf2b 7268 if (!rs->stop_reply_queue.empty ())
6b8edb51 7269 {
6b8edb51
PA
7270 /* There's still at least an event left. */
7271 mark_async_event_handler (rs->remote_async_inferior_event_token);
7272 }
74531fed 7273
722247f1 7274 return r;
74531fed
PA
7275}
7276
7277/* Push a fully parsed stop reply in the stop reply queue. Since we
7278 know that we now have at least one queued event left to pass to the
7279 core side, tell the event loop to get back to target_wait soon. */
7280
6b8edb51
PA
7281void
7282remote_target::push_stop_reply (struct stop_reply *new_event)
74531fed 7283{
6b8edb51 7284 remote_state *rs = get_remote_state ();
953edf2b 7285 rs->stop_reply_queue.push_back (stop_reply_up (new_event));
74531fed 7286
722247f1
YQ
7287 if (notif_debug)
7288 fprintf_unfiltered (gdb_stdlog,
7289 "notif: push 'Stop' %s to queue %d\n",
a068643d 7290 target_pid_to_str (new_event->ptid).c_str (),
953edf2b 7291 int (rs->stop_reply_queue.size ()));
74531fed 7292
6b8edb51 7293 mark_async_event_handler (rs->remote_async_inferior_event_token);
74531fed
PA
7294}
7295
7296/* Returns true if we have a stop reply for PTID. */
7297
6b8edb51
PA
7298int
7299remote_target::peek_stop_reply (ptid_t ptid)
74531fed 7300{
6b8edb51 7301 remote_state *rs = get_remote_state ();
953edf2b
TT
7302 for (auto &event : rs->stop_reply_queue)
7303 if (ptid == event->ptid
7304 && event->ws.kind == TARGET_WAITKIND_STOPPED)
7305 return 1;
7306 return 0;
74531fed
PA
7307}
7308
26d56a93
SL
7309/* Helper for remote_parse_stop_reply. Return nonzero if the substring
7310 starting with P and ending with PEND matches PREFIX. */
7311
7312static int
7313strprefix (const char *p, const char *pend, const char *prefix)
7314{
7315 for ( ; p < pend; p++, prefix++)
7316 if (*p != *prefix)
7317 return 0;
7318 return *prefix == '\0';
7319}
7320
74531fed
PA
7321/* Parse the stop reply in BUF. Either the function succeeds, and the
7322 result is stored in EVENT, or throws an error. */
7323
6b8edb51 7324void
bb277751 7325remote_target::remote_parse_stop_reply (const char *buf, stop_reply *event)
74531fed 7326{
5cd63fda 7327 remote_arch_state *rsa = NULL;
74531fed 7328 ULONGEST addr;
256642e8 7329 const char *p;
94585166 7330 int skipregs = 0;
74531fed
PA
7331
7332 event->ptid = null_ptid;
bcc75809 7333 event->rs = get_remote_state ();
74531fed
PA
7334 event->ws.kind = TARGET_WAITKIND_IGNORE;
7335 event->ws.value.integer = 0;
f7e6eed5 7336 event->stop_reason = TARGET_STOPPED_BY_NO_REASON;
32603266 7337 event->regcache.clear ();
dc146f7c 7338 event->core = -1;
74531fed
PA
7339
7340 switch (buf[0])
7341 {
7342 case 'T': /* Status with PC, SP, FP, ... */
cea39f65
MS
7343 /* Expedited reply, containing Signal, {regno, reg} repeat. */
7344 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
7345 ss = signal number
7346 n... = register number
7347 r... = register contents
7348 */
7349
7350 p = &buf[3]; /* after Txx */
7351 while (*p)
7352 {
256642e8 7353 const char *p1;
cea39f65 7354 int fieldsize;
43ff13b4 7355
1f10ba14
PA
7356 p1 = strchr (p, ':');
7357 if (p1 == NULL)
7358 error (_("Malformed packet(a) (missing colon): %s\n\
7359Packet: '%s'\n"),
7360 p, buf);
7361 if (p == p1)
7362 error (_("Malformed packet(a) (missing register number): %s\n\
7363Packet: '%s'\n"),
7364 p, buf);
3c3bea1c 7365
1f10ba14
PA
7366 /* Some "registers" are actually extended stop information.
7367 Note if you're adding a new entry here: GDB 7.9 and
7368 earlier assume that all register "numbers" that start
7369 with an hex digit are real register numbers. Make sure
7370 the server only sends such a packet if it knows the
7371 client understands it. */
c8e38a49 7372
26d56a93 7373 if (strprefix (p, p1, "thread"))
1f10ba14 7374 event->ptid = read_ptid (++p1, &p);
82075af2
JS
7375 else if (strprefix (p, p1, "syscall_entry"))
7376 {
7377 ULONGEST sysno;
7378
7379 event->ws.kind = TARGET_WAITKIND_SYSCALL_ENTRY;
7380 p = unpack_varlen_hex (++p1, &sysno);
7381 event->ws.value.syscall_number = (int) sysno;
7382 }
7383 else if (strprefix (p, p1, "syscall_return"))
7384 {
7385 ULONGEST sysno;
7386
7387 event->ws.kind = TARGET_WAITKIND_SYSCALL_RETURN;
7388 p = unpack_varlen_hex (++p1, &sysno);
7389 event->ws.value.syscall_number = (int) sysno;
7390 }
26d56a93
SL
7391 else if (strprefix (p, p1, "watch")
7392 || strprefix (p, p1, "rwatch")
7393 || strprefix (p, p1, "awatch"))
cea39f65 7394 {
f7e6eed5 7395 event->stop_reason = TARGET_STOPPED_BY_WATCHPOINT;
1f10ba14
PA
7396 p = unpack_varlen_hex (++p1, &addr);
7397 event->watch_data_address = (CORE_ADDR) addr;
cea39f65 7398 }
26d56a93 7399 else if (strprefix (p, p1, "swbreak"))
f7e6eed5
PA
7400 {
7401 event->stop_reason = TARGET_STOPPED_BY_SW_BREAKPOINT;
7402
7403 /* Make sure the stub doesn't forget to indicate support
7404 with qSupported. */
7405 if (packet_support (PACKET_swbreak_feature) != PACKET_ENABLE)
7406 error (_("Unexpected swbreak stop reason"));
7407
7408 /* The value part is documented as "must be empty",
7409 though we ignore it, in case we ever decide to make
7410 use of it in a backward compatible way. */
8424cc97 7411 p = strchrnul (p1 + 1, ';');
f7e6eed5 7412 }
26d56a93 7413 else if (strprefix (p, p1, "hwbreak"))
f7e6eed5
PA
7414 {
7415 event->stop_reason = TARGET_STOPPED_BY_HW_BREAKPOINT;
7416
7417 /* Make sure the stub doesn't forget to indicate support
7418 with qSupported. */
7419 if (packet_support (PACKET_hwbreak_feature) != PACKET_ENABLE)
7420 error (_("Unexpected hwbreak stop reason"));
7421
7422 /* See above. */
8424cc97 7423 p = strchrnul (p1 + 1, ';');
f7e6eed5 7424 }
26d56a93 7425 else if (strprefix (p, p1, "library"))
cea39f65 7426 {
1f10ba14 7427 event->ws.kind = TARGET_WAITKIND_LOADED;
8424cc97 7428 p = strchrnul (p1 + 1, ';');
1f10ba14 7429 }
26d56a93 7430 else if (strprefix (p, p1, "replaylog"))
1f10ba14
PA
7431 {
7432 event->ws.kind = TARGET_WAITKIND_NO_HISTORY;
7433 /* p1 will indicate "begin" or "end", but it makes
7434 no difference for now, so ignore it. */
8424cc97 7435 p = strchrnul (p1 + 1, ';');
1f10ba14 7436 }
26d56a93 7437 else if (strprefix (p, p1, "core"))
1f10ba14
PA
7438 {
7439 ULONGEST c;
a744cf53 7440
1f10ba14
PA
7441 p = unpack_varlen_hex (++p1, &c);
7442 event->core = c;
cea39f65 7443 }
26d56a93 7444 else if (strprefix (p, p1, "fork"))
de0d863e
DB
7445 {
7446 event->ws.value.related_pid = read_ptid (++p1, &p);
7447 event->ws.kind = TARGET_WAITKIND_FORKED;
7448 }
26d56a93 7449 else if (strprefix (p, p1, "vfork"))
c269dbdb
DB
7450 {
7451 event->ws.value.related_pid = read_ptid (++p1, &p);
7452 event->ws.kind = TARGET_WAITKIND_VFORKED;
7453 }
26d56a93 7454 else if (strprefix (p, p1, "vforkdone"))
c269dbdb
DB
7455 {
7456 event->ws.kind = TARGET_WAITKIND_VFORK_DONE;
8424cc97 7457 p = strchrnul (p1 + 1, ';');
c269dbdb 7458 }
6ab24463 7459 else if (strprefix (p, p1, "exec"))
94585166
DB
7460 {
7461 ULONGEST ignored;
94585166
DB
7462 int pathlen;
7463
7464 /* Determine the length of the execd pathname. */
7465 p = unpack_varlen_hex (++p1, &ignored);
7466 pathlen = (p - p1) / 2;
7467
7468 /* Save the pathname for event reporting and for
7469 the next run command. */
c6321f19
TT
7470 gdb::unique_xmalloc_ptr<char[]> pathname
7471 ((char *) xmalloc (pathlen + 1));
7472 hex2bin (p1, (gdb_byte *) pathname.get (), pathlen);
94585166
DB
7473 pathname[pathlen] = '\0';
7474
7475 /* This is freed during event handling. */
c6321f19 7476 event->ws.value.execd_pathname = pathname.release ();
94585166
DB
7477 event->ws.kind = TARGET_WAITKIND_EXECD;
7478
7479 /* Skip the registers included in this packet, since
7480 they may be for an architecture different from the
7481 one used by the original program. */
7482 skipregs = 1;
7483 }
65706a29
PA
7484 else if (strprefix (p, p1, "create"))
7485 {
7486 event->ws.kind = TARGET_WAITKIND_THREAD_CREATED;
8424cc97 7487 p = strchrnul (p1 + 1, ';');
65706a29 7488 }
cea39f65
MS
7489 else
7490 {
1f10ba14 7491 ULONGEST pnum;
256642e8 7492 const char *p_temp;
1f10ba14 7493
94585166
DB
7494 if (skipregs)
7495 {
8424cc97 7496 p = strchrnul (p1 + 1, ';');
94585166
DB
7497 p++;
7498 continue;
7499 }
7500
1f10ba14
PA
7501 /* Maybe a real ``P'' register number. */
7502 p_temp = unpack_varlen_hex (p, &pnum);
7503 /* If the first invalid character is the colon, we got a
7504 register number. Otherwise, it's an unknown stop
7505 reason. */
7506 if (p_temp == p1)
7507 {
5cd63fda
PA
7508 /* If we haven't parsed the event's thread yet, find
7509 it now, in order to find the architecture of the
7510 reported expedited registers. */
7511 if (event->ptid == null_ptid)
7512 {
24ed6739
AB
7513 /* If there is no thread-id information then leave
7514 the event->ptid as null_ptid. Later in
7515 process_stop_reply we will pick a suitable
7516 thread. */
5cd63fda
PA
7517 const char *thr = strstr (p1 + 1, ";thread:");
7518 if (thr != NULL)
7519 event->ptid = read_ptid (thr + strlen (";thread:"),
7520 NULL);
5cd63fda
PA
7521 }
7522
7523 if (rsa == NULL)
7524 {
5b6d1e4f
PA
7525 inferior *inf
7526 = (event->ptid == null_ptid
7527 ? NULL
7528 : find_inferior_ptid (this, event->ptid));
5cd63fda
PA
7529 /* If this is the first time we learn anything
7530 about this process, skip the registers
7531 included in this packet, since we don't yet
7532 know which architecture to use to parse them.
7533 We'll determine the architecture later when
7534 we process the stop reply and retrieve the
7535 target description, via
7536 remote_notice_new_inferior ->
7537 post_create_inferior. */
7538 if (inf == NULL)
7539 {
7540 p = strchrnul (p1 + 1, ';');
7541 p++;
7542 continue;
7543 }
7544
7545 event->arch = inf->gdbarch;
9d6eea31 7546 rsa = event->rs->get_remote_arch_state (event->arch);
5cd63fda
PA
7547 }
7548
7549 packet_reg *reg
7550 = packet_reg_from_pnum (event->arch, rsa, pnum);
1f10ba14 7551 cached_reg_t cached_reg;
43ff13b4 7552
1f10ba14
PA
7553 if (reg == NULL)
7554 error (_("Remote sent bad register number %s: %s\n\
8a3fe4f8 7555Packet: '%s'\n"),
1f10ba14 7556 hex_string (pnum), p, buf);
c8e38a49 7557
1f10ba14 7558 cached_reg.num = reg->regnum;
d1dff226 7559 cached_reg.data = (gdb_byte *)
5cd63fda 7560 xmalloc (register_size (event->arch, reg->regnum));
4100683b 7561
1f10ba14
PA
7562 p = p1 + 1;
7563 fieldsize = hex2bin (p, cached_reg.data,
5cd63fda 7564 register_size (event->arch, reg->regnum));
1f10ba14 7565 p += 2 * fieldsize;
5cd63fda 7566 if (fieldsize < register_size (event->arch, reg->regnum))
1f10ba14 7567 warning (_("Remote reply is too short: %s"), buf);
74531fed 7568
32603266 7569 event->regcache.push_back (cached_reg);
1f10ba14
PA
7570 }
7571 else
7572 {
7573 /* Not a number. Silently skip unknown optional
7574 info. */
8424cc97 7575 p = strchrnul (p1 + 1, ';');
1f10ba14 7576 }
cea39f65 7577 }
c8e38a49 7578
cea39f65
MS
7579 if (*p != ';')
7580 error (_("Remote register badly formatted: %s\nhere: %s"),
7581 buf, p);
7582 ++p;
7583 }
5b5596ff
PA
7584
7585 if (event->ws.kind != TARGET_WAITKIND_IGNORE)
7586 break;
7587
c8e38a49
PA
7588 /* fall through */
7589 case 'S': /* Old style status, just signal only. */
3a09da41
PA
7590 {
7591 int sig;
7592
7593 event->ws.kind = TARGET_WAITKIND_STOPPED;
7594 sig = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
7595 if (GDB_SIGNAL_FIRST <= sig && sig < GDB_SIGNAL_LAST)
7596 event->ws.value.sig = (enum gdb_signal) sig;
7597 else
7598 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
7599 }
c8e38a49 7600 break;
65706a29
PA
7601 case 'w': /* Thread exited. */
7602 {
65706a29
PA
7603 ULONGEST value;
7604
7605 event->ws.kind = TARGET_WAITKIND_THREAD_EXITED;
7606 p = unpack_varlen_hex (&buf[1], &value);
7607 event->ws.value.integer = value;
7608 if (*p != ';')
7609 error (_("stop reply packet badly formatted: %s"), buf);
974eac9d 7610 event->ptid = read_ptid (++p, NULL);
65706a29
PA
7611 break;
7612 }
c8e38a49
PA
7613 case 'W': /* Target exited. */
7614 case 'X':
7615 {
c8e38a49 7616 ULONGEST value;
82f73884 7617
c8e38a49
PA
7618 /* GDB used to accept only 2 hex chars here. Stubs should
7619 only send more if they detect GDB supports multi-process
7620 support. */
7621 p = unpack_varlen_hex (&buf[1], &value);
82f73884 7622
c8e38a49
PA
7623 if (buf[0] == 'W')
7624 {
7625 /* The remote process exited. */
74531fed
PA
7626 event->ws.kind = TARGET_WAITKIND_EXITED;
7627 event->ws.value.integer = value;
c8e38a49
PA
7628 }
7629 else
7630 {
7631 /* The remote process exited with a signal. */
74531fed 7632 event->ws.kind = TARGET_WAITKIND_SIGNALLED;
3a09da41
PA
7633 if (GDB_SIGNAL_FIRST <= value && value < GDB_SIGNAL_LAST)
7634 event->ws.value.sig = (enum gdb_signal) value;
7635 else
7636 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
c8e38a49 7637 }
82f73884 7638
e7af6c70
TBA
7639 /* If no process is specified, return null_ptid, and let the
7640 caller figure out the right process to use. */
7641 int pid = 0;
c8e38a49
PA
7642 if (*p == '\0')
7643 ;
7644 else if (*p == ';')
7645 {
7646 p++;
7647
0b24eb2d 7648 if (*p == '\0')
82f73884 7649 ;
61012eef 7650 else if (startswith (p, "process:"))
82f73884 7651 {
c8e38a49 7652 ULONGEST upid;
a744cf53 7653
c8e38a49
PA
7654 p += sizeof ("process:") - 1;
7655 unpack_varlen_hex (p, &upid);
7656 pid = upid;
82f73884
PA
7657 }
7658 else
7659 error (_("unknown stop reply packet: %s"), buf);
43ff13b4 7660 }
c8e38a49
PA
7661 else
7662 error (_("unknown stop reply packet: %s"), buf);
f2907e49 7663 event->ptid = ptid_t (pid);
74531fed
PA
7664 }
7665 break;
f2faf941
PA
7666 case 'N':
7667 event->ws.kind = TARGET_WAITKIND_NO_RESUMED;
7668 event->ptid = minus_one_ptid;
7669 break;
74531fed 7670 }
74531fed
PA
7671}
7672
722247f1
YQ
7673/* When the stub wants to tell GDB about a new notification reply, it
7674 sends a notification (%Stop, for example). Those can come it at
7675 any time, hence, we have to make sure that any pending
7676 putpkt/getpkt sequence we're making is finished, before querying
7677 the stub for more events with the corresponding ack command
7678 (vStopped, for example). E.g., if we started a vStopped sequence
7679 immediately upon receiving the notification, something like this
7680 could happen:
74531fed
PA
7681
7682 1.1) --> Hg 1
7683 1.2) <-- OK
7684 1.3) --> g
7685 1.4) <-- %Stop
7686 1.5) --> vStopped
7687 1.6) <-- (registers reply to step #1.3)
7688
7689 Obviously, the reply in step #1.6 would be unexpected to a vStopped
7690 query.
7691
796cb314 7692 To solve this, whenever we parse a %Stop notification successfully,
74531fed
PA
7693 we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
7694 doing whatever we were doing:
7695
7696 2.1) --> Hg 1
7697 2.2) <-- OK
7698 2.3) --> g
7699 2.4) <-- %Stop
7700 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
7701 2.5) <-- (registers reply to step #2.3)
7702
85102364 7703 Eventually after step #2.5, we return to the event loop, which
74531fed
PA
7704 notices there's an event on the
7705 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
7706 associated callback --- the function below. At this point, we're
7707 always safe to start a vStopped sequence. :
7708
7709 2.6) --> vStopped
7710 2.7) <-- T05 thread:2
7711 2.8) --> vStopped
7712 2.9) --> OK
7713*/
7714
722247f1 7715void
6b8edb51 7716remote_target::remote_notif_get_pending_events (notif_client *nc)
74531fed
PA
7717{
7718 struct remote_state *rs = get_remote_state ();
74531fed 7719
f48ff2a7 7720 if (rs->notif_state->pending_event[nc->id] != NULL)
74531fed 7721 {
722247f1
YQ
7722 if (notif_debug)
7723 fprintf_unfiltered (gdb_stdlog,
7724 "notif: process: '%s' ack pending event\n",
7725 nc->name);
74531fed 7726
722247f1 7727 /* acknowledge */
8d64371b
TT
7728 nc->ack (this, nc, rs->buf.data (),
7729 rs->notif_state->pending_event[nc->id]);
f48ff2a7 7730 rs->notif_state->pending_event[nc->id] = NULL;
74531fed
PA
7731
7732 while (1)
7733 {
8d64371b
TT
7734 getpkt (&rs->buf, 0);
7735 if (strcmp (rs->buf.data (), "OK") == 0)
74531fed
PA
7736 break;
7737 else
8d64371b 7738 remote_notif_ack (this, nc, rs->buf.data ());
74531fed
PA
7739 }
7740 }
722247f1
YQ
7741 else
7742 {
7743 if (notif_debug)
7744 fprintf_unfiltered (gdb_stdlog,
7745 "notif: process: '%s' no pending reply\n",
7746 nc->name);
7747 }
74531fed
PA
7748}
7749
6b8edb51
PA
7750/* Wrapper around remote_target::remote_notif_get_pending_events to
7751 avoid having to export the whole remote_target class. */
7752
7753void
7754remote_notif_get_pending_events (remote_target *remote, notif_client *nc)
7755{
7756 remote->remote_notif_get_pending_events (nc);
7757}
7758
8f66807b
AB
7759/* Called from process_stop_reply when the stop packet we are responding
7760 to didn't include a process-id or thread-id. STATUS is the stop event
7761 we are responding to.
7762
7763 It is the task of this function to select a suitable thread (or process)
7764 and return its ptid, this is the thread (or process) we will assume the
7765 stop event came from.
7766
7767 In some cases there isn't really any choice about which thread (or
7768 process) is selected, a basic remote with a single process containing a
7769 single thread might choose not to send any process-id or thread-id in
7770 its stop packets, this function will select and return the one and only
7771 thread.
7772
7773 However, if a target supports multiple threads (or processes) and still
7774 doesn't include a thread-id (or process-id) in its stop packet then
7775 first, this is a badly behaving target, and second, we're going to have
7776 to select a thread (or process) at random and use that. This function
7777 will print a warning to the user if it detects that there is the
7778 possibility that GDB is guessing which thread (or process) to
7779 report.
7780
7781 Note that this is called before GDB fetches the updated thread list from the
7782 target. So it's possible for the stop reply to be ambiguous and for GDB to
7783 not realize it. For example, if there's initially one thread, the target
7784 spawns a second thread, and then sends a stop reply without an id that
7785 concerns the first thread. GDB will assume the stop reply is about the
7786 first thread - the only thread it knows about - without printing a warning.
7787 Anyway, if the remote meant for the stop reply to be about the second thread,
7788 then it would be really broken, because GDB doesn't know about that thread
7789 yet. */
74531fed 7790
6b8edb51 7791ptid_t
8f66807b
AB
7792remote_target::select_thread_for_ambiguous_stop_reply
7793 (const struct target_waitstatus *status)
74531fed 7794{
8f66807b
AB
7795 /* Some stop events apply to all threads in an inferior, while others
7796 only apply to a single thread. */
7797 bool process_wide_stop
7798 = (status->kind == TARGET_WAITKIND_EXITED
7799 || status->kind == TARGET_WAITKIND_SIGNALLED);
74531fed 7800
8f66807b
AB
7801 thread_info *first_resumed_thread = nullptr;
7802 bool ambiguous = false;
74531fed 7803
8f66807b
AB
7804 /* Consider all non-exited threads of the target, find the first resumed
7805 one. */
7806 for (thread_info *thr : all_non_exited_threads (this))
24ed6739 7807 {
8f66807b 7808 remote_thread_info *remote_thr = get_remote_thread_info (thr);
cada5fc9 7809
a6c11cbb 7810 if (remote_thr->get_resume_state () != resume_state::RESUMED)
8f66807b 7811 continue;
24ed6739 7812
8f66807b
AB
7813 if (first_resumed_thread == nullptr)
7814 first_resumed_thread = thr;
7815 else if (!process_wide_stop
7816 || first_resumed_thread->ptid.pid () != thr->ptid.pid ())
7817 ambiguous = true;
7818 }
7819
7820 gdb_assert (first_resumed_thread != nullptr);
cada5fc9 7821
8f66807b
AB
7822 /* Warn if the remote target is sending ambiguous stop replies. */
7823 if (ambiguous)
7824 {
7825 static bool warned = false;
7826
7827 if (!warned)
7828 {
7829 /* If you are seeing this warning then the remote target has
7830 stopped without specifying a thread-id, but the target
7831 does have multiple threads (or inferiors), and so GDB is
7832 having to guess which thread stopped.
7833
7834 Examples of what might cause this are the target sending
7835 and 'S' stop packet, or a 'T' stop packet and not
7836 including a thread-id.
7837
7838 Additionally, the target might send a 'W' or 'X packet
7839 without including a process-id, when the target has
7840 multiple running inferiors. */
7841 if (process_wide_stop)
7842 warning (_("multi-inferior target stopped without "
7843 "sending a process-id, using first "
7844 "non-exited inferior"));
cada5fc9 7845 else
8f66807b
AB
7846 warning (_("multi-threaded target stopped without "
7847 "sending a thread-id, using first "
7848 "non-exited thread"));
7849 warned = true;
24ed6739 7850 }
24ed6739 7851 }
74531fed 7852
8f66807b
AB
7853 /* If this is a stop for all threads then don't use a particular threads
7854 ptid, instead create a new ptid where only the pid field is set. */
7855 if (process_wide_stop)
7856 return ptid_t (first_resumed_thread->ptid.pid ());
7857 else
7858 return first_resumed_thread->ptid;
7859}
7860
7861/* Called when it is decided that STOP_REPLY holds the info of the
7862 event that is to be returned to the core. This function always
7863 destroys STOP_REPLY. */
7864
7865ptid_t
7866remote_target::process_stop_reply (struct stop_reply *stop_reply,
7867 struct target_waitstatus *status)
7868{
7869 *status = stop_reply->ws;
7870 ptid_t ptid = stop_reply->ptid;
7871
7872 /* If no thread/process was reported by the stub then select a suitable
7873 thread/process. */
7874 if (ptid == null_ptid)
7875 ptid = select_thread_for_ambiguous_stop_reply (status);
7876 gdb_assert (ptid != null_ptid);
7877
5f3563ea 7878 if (status->kind != TARGET_WAITKIND_EXITED
f2faf941
PA
7879 && status->kind != TARGET_WAITKIND_SIGNALLED
7880 && status->kind != TARGET_WAITKIND_NO_RESUMED)
74531fed 7881 {
5f3563ea 7882 /* Expedited registers. */
32603266 7883 if (!stop_reply->regcache.empty ())
5f3563ea 7884 {
217f1f79 7885 struct regcache *regcache
5b6d1e4f 7886 = get_thread_arch_regcache (this, ptid, stop_reply->arch);
5f3563ea 7887
32603266
TT
7888 for (cached_reg_t &reg : stop_reply->regcache)
7889 {
7890 regcache->raw_supply (reg.num, reg.data);
7891 xfree (reg.data);
7892 }
d1dff226 7893
32603266 7894 stop_reply->regcache.clear ();
5f3563ea 7895 }
74531fed 7896
1941c569 7897 remote_notice_new_inferior (ptid, 0);
5b6d1e4f 7898 remote_thread_info *remote_thr = get_remote_thread_info (this, ptid);
799a2abe
PA
7899 remote_thr->core = stop_reply->core;
7900 remote_thr->stop_reason = stop_reply->stop_reason;
7901 remote_thr->watch_data_address = stop_reply->watch_data_address;
c9d22089
SM
7902
7903 if (target_is_non_stop_p ())
7904 {
7905 /* If the target works in non-stop mode, a stop-reply indicates that
7906 only this thread stopped. */
7907 remote_thr->set_not_resumed ();
7908 }
7909 else
7910 {
7911 /* If the target works in all-stop mode, a stop-reply indicates that
7912 all the target's threads stopped. */
7913 for (thread_info *tp : all_non_exited_threads (this))
7914 get_remote_thread_info (tp)->set_not_resumed ();
7915 }
74531fed
PA
7916 }
7917
32603266 7918 delete stop_reply;
74531fed
PA
7919 return ptid;
7920}
7921
7922/* The non-stop mode version of target_wait. */
7923
6b8edb51 7924ptid_t
b60cea74
TT
7925remote_target::wait_ns (ptid_t ptid, struct target_waitstatus *status,
7926 target_wait_flags options)
74531fed
PA
7927{
7928 struct remote_state *rs = get_remote_state ();
74531fed
PA
7929 struct stop_reply *stop_reply;
7930 int ret;
fee9eda9 7931 int is_notif = 0;
74531fed
PA
7932
7933 /* If in non-stop mode, get out of getpkt even if a
7934 notification is received. */
7935
8d64371b 7936 ret = getpkt_or_notif_sane (&rs->buf, 0 /* forever */, &is_notif);
74531fed
PA
7937 while (1)
7938 {
fee9eda9 7939 if (ret != -1 && !is_notif)
74531fed
PA
7940 switch (rs->buf[0])
7941 {
7942 case 'E': /* Error of some sort. */
7943 /* We're out of sync with the target now. Did it continue
7944 or not? We can't tell which thread it was in non-stop,
7945 so just ignore this. */
8d64371b 7946 warning (_("Remote failure reply: %s"), rs->buf.data ());
74531fed
PA
7947 break;
7948 case 'O': /* Console output. */
8d64371b 7949 remote_console_output (&rs->buf[1]);
74531fed
PA
7950 break;
7951 default:
8d64371b 7952 warning (_("Invalid remote reply: %s"), rs->buf.data ());
74531fed
PA
7953 break;
7954 }
7955
7956 /* Acknowledge a pending stop reply that may have arrived in the
7957 mean time. */
f48ff2a7 7958 if (rs->notif_state->pending_event[notif_client_stop.id] != NULL)
722247f1 7959 remote_notif_get_pending_events (&notif_client_stop);
74531fed
PA
7960
7961 /* If indeed we noticed a stop reply, we're done. */
7962 stop_reply = queued_stop_reply (ptid);
7963 if (stop_reply != NULL)
7964 return process_stop_reply (stop_reply, status);
7965
47608cb1 7966 /* Still no event. If we're just polling for an event, then
74531fed 7967 return to the event loop. */
47608cb1 7968 if (options & TARGET_WNOHANG)
74531fed
PA
7969 {
7970 status->kind = TARGET_WAITKIND_IGNORE;
7971 return minus_one_ptid;
7972 }
7973
47608cb1 7974 /* Otherwise do a blocking wait. */
8d64371b 7975 ret = getpkt_or_notif_sane (&rs->buf, 1 /* forever */, &is_notif);
74531fed
PA
7976 }
7977}
7978
31ba933e
PA
7979/* Return the first resumed thread. */
7980
7981static ptid_t
5b6d1e4f 7982first_remote_resumed_thread (remote_target *target)
31ba933e 7983{
5b6d1e4f 7984 for (thread_info *tp : all_non_exited_threads (target, minus_one_ptid))
31ba933e
PA
7985 if (tp->resumed)
7986 return tp->ptid;
7987 return null_ptid;
7988}
7989
74531fed
PA
7990/* Wait until the remote machine stops, then return, storing status in
7991 STATUS just as `wait' would. */
7992
6b8edb51 7993ptid_t
b60cea74
TT
7994remote_target::wait_as (ptid_t ptid, target_waitstatus *status,
7995 target_wait_flags options)
74531fed
PA
7996{
7997 struct remote_state *rs = get_remote_state ();
74531fed 7998 ptid_t event_ptid = null_ptid;
cea39f65 7999 char *buf;
74531fed
PA
8000 struct stop_reply *stop_reply;
8001
47608cb1
PA
8002 again:
8003
74531fed
PA
8004 status->kind = TARGET_WAITKIND_IGNORE;
8005 status->value.integer = 0;
8006
8007 stop_reply = queued_stop_reply (ptid);
8008 if (stop_reply != NULL)
8009 return process_stop_reply (stop_reply, status);
8010
8011 if (rs->cached_wait_status)
8012 /* Use the cached wait status, but only once. */
8013 rs->cached_wait_status = 0;
8014 else
8015 {
8016 int ret;
722247f1 8017 int is_notif;
567420d1 8018 int forever = ((options & TARGET_WNOHANG) == 0
6b8edb51 8019 && rs->wait_forever_enabled_p);
567420d1
PA
8020
8021 if (!rs->waiting_for_stop_reply)
8022 {
8023 status->kind = TARGET_WAITKIND_NO_RESUMED;
8024 return minus_one_ptid;
8025 }
74531fed 8026
74531fed
PA
8027 /* FIXME: cagney/1999-09-27: If we're in async mode we should
8028 _never_ wait for ever -> test on target_is_async_p().
8029 However, before we do that we need to ensure that the caller
8030 knows how to take the target into/out of async mode. */
8d64371b 8031 ret = getpkt_or_notif_sane (&rs->buf, forever, &is_notif);
722247f1
YQ
8032
8033 /* GDB gets a notification. Return to core as this event is
8034 not interesting. */
8035 if (ret != -1 && is_notif)
8036 return minus_one_ptid;
567420d1
PA
8037
8038 if (ret == -1 && (options & TARGET_WNOHANG) != 0)
8039 return minus_one_ptid;
74531fed
PA
8040 }
8041
8d64371b 8042 buf = rs->buf.data ();
74531fed 8043
3a29589a
DJ
8044 /* Assume that the target has acknowledged Ctrl-C unless we receive
8045 an 'F' or 'O' packet. */
8046 if (buf[0] != 'F' && buf[0] != 'O')
8047 rs->ctrlc_pending_p = 0;
8048
74531fed
PA
8049 switch (buf[0])
8050 {
8051 case 'E': /* Error of some sort. */
8052 /* We're out of sync with the target now. Did it continue or
8053 not? Not is more likely, so report a stop. */
29090fb6
LM
8054 rs->waiting_for_stop_reply = 0;
8055
74531fed
PA
8056 warning (_("Remote failure reply: %s"), buf);
8057 status->kind = TARGET_WAITKIND_STOPPED;
a493e3e2 8058 status->value.sig = GDB_SIGNAL_0;
74531fed
PA
8059 break;
8060 case 'F': /* File-I/O request. */
e42e5352
YQ
8061 /* GDB may access the inferior memory while handling the File-I/O
8062 request, but we don't want GDB accessing memory while waiting
8063 for a stop reply. See the comments in putpkt_binary. Set
8064 waiting_for_stop_reply to 0 temporarily. */
8065 rs->waiting_for_stop_reply = 0;
6b8edb51 8066 remote_fileio_request (this, buf, rs->ctrlc_pending_p);
3a29589a 8067 rs->ctrlc_pending_p = 0;
e42e5352
YQ
8068 /* GDB handled the File-I/O request, and the target is running
8069 again. Keep waiting for events. */
8070 rs->waiting_for_stop_reply = 1;
74531fed 8071 break;
f2faf941 8072 case 'N': case 'T': case 'S': case 'X': case 'W':
74531fed 8073 {
29090fb6
LM
8074 /* There is a stop reply to handle. */
8075 rs->waiting_for_stop_reply = 0;
8076
8077 stop_reply
6b8edb51
PA
8078 = (struct stop_reply *) remote_notif_parse (this,
8079 &notif_client_stop,
8d64371b 8080 rs->buf.data ());
74531fed 8081
74531fed 8082 event_ptid = process_stop_reply (stop_reply, status);
c8e38a49
PA
8083 break;
8084 }
8085 case 'O': /* Console output. */
8086 remote_console_output (buf + 1);
c8e38a49
PA
8087 break;
8088 case '\0':
b73be471 8089 if (rs->last_sent_signal != GDB_SIGNAL_0)
c8e38a49
PA
8090 {
8091 /* Zero length reply means that we tried 'S' or 'C' and the
8092 remote system doesn't support it. */
223ffa71 8093 target_terminal::ours_for_output ();
c8e38a49
PA
8094 printf_filtered
8095 ("Can't send signals to this remote system. %s not sent.\n",
b73be471
TT
8096 gdb_signal_to_name (rs->last_sent_signal));
8097 rs->last_sent_signal = GDB_SIGNAL_0;
223ffa71 8098 target_terminal::inferior ();
c8e38a49 8099
f5c4fcd9
TT
8100 strcpy (buf, rs->last_sent_step ? "s" : "c");
8101 putpkt (buf);
c8e38a49 8102 break;
43ff13b4 8103 }
86a73007 8104 /* fallthrough */
c8e38a49
PA
8105 default:
8106 warning (_("Invalid remote reply: %s"), buf);
c8e38a49 8107 break;
43ff13b4 8108 }
c8e38a49 8109
f2faf941
PA
8110 if (status->kind == TARGET_WAITKIND_NO_RESUMED)
8111 return minus_one_ptid;
8112 else if (status->kind == TARGET_WAITKIND_IGNORE)
47608cb1
PA
8113 {
8114 /* Nothing interesting happened. If we're doing a non-blocking
8115 poll, we're done. Otherwise, go back to waiting. */
8116 if (options & TARGET_WNOHANG)
8117 return minus_one_ptid;
8118 else
8119 goto again;
8120 }
74531fed
PA
8121 else if (status->kind != TARGET_WAITKIND_EXITED
8122 && status->kind != TARGET_WAITKIND_SIGNALLED)
82f73884 8123 {
d7e15655 8124 if (event_ptid != null_ptid)
47f8a51d 8125 record_currthread (rs, event_ptid);
82f73884 8126 else
5b6d1e4f 8127 event_ptid = first_remote_resumed_thread (this);
43ff13b4 8128 }
74531fed 8129 else
e7af6c70
TBA
8130 {
8131 /* A process exit. Invalidate our notion of current thread. */
8132 record_currthread (rs, minus_one_ptid);
8133 /* It's possible that the packet did not include a pid. */
8134 if (event_ptid == null_ptid)
5b6d1e4f 8135 event_ptid = first_remote_resumed_thread (this);
e7af6c70
TBA
8136 /* EVENT_PTID could still be NULL_PTID. Double-check. */
8137 if (event_ptid == null_ptid)
8138 event_ptid = magic_null_ptid;
8139 }
79d7f229 8140
82f73884 8141 return event_ptid;
43ff13b4
JM
8142}
8143
74531fed
PA
8144/* Wait until the remote machine stops, then return, storing status in
8145 STATUS just as `wait' would. */
8146
f6ac5f3d 8147ptid_t
b60cea74
TT
8148remote_target::wait (ptid_t ptid, struct target_waitstatus *status,
8149 target_wait_flags options)
c8e38a49
PA
8150{
8151 ptid_t event_ptid;
8152
6efcd9a8 8153 if (target_is_non_stop_p ())
6b8edb51 8154 event_ptid = wait_ns (ptid, status, options);
74531fed 8155 else
6b8edb51 8156 event_ptid = wait_as (ptid, status, options);
c8e38a49 8157
d9d41e78 8158 if (target_is_async_p ())
c8e38a49 8159 {
6b8edb51
PA
8160 remote_state *rs = get_remote_state ();
8161
74531fed
PA
8162 /* If there are are events left in the queue tell the event loop
8163 to return here. */
953edf2b 8164 if (!rs->stop_reply_queue.empty ())
6b8edb51 8165 mark_async_event_handler (rs->remote_async_inferior_event_token);
c8e38a49 8166 }
c8e38a49
PA
8167
8168 return event_ptid;
8169}
8170
74ca34ce 8171/* Fetch a single register using a 'p' packet. */
c906108c 8172
6b8edb51
PA
8173int
8174remote_target::fetch_register_using_p (struct regcache *regcache,
8175 packet_reg *reg)
b96ec7ac 8176{
ac7936df 8177 struct gdbarch *gdbarch = regcache->arch ();
b96ec7ac 8178 struct remote_state *rs = get_remote_state ();
2e9f7625 8179 char *buf, *p;
9890e433 8180 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
b96ec7ac
AC
8181 int i;
8182
4082afcc 8183 if (packet_support (PACKET_p) == PACKET_DISABLE)
74ca34ce
DJ
8184 return 0;
8185
8186 if (reg->pnum == -1)
8187 return 0;
8188
8d64371b 8189 p = rs->buf.data ();
fcad0fa4 8190 *p++ = 'p';
74ca34ce 8191 p += hexnumstr (p, reg->pnum);
fcad0fa4 8192 *p++ = '\0';
1f4437a4 8193 putpkt (rs->buf);
8d64371b 8194 getpkt (&rs->buf, 0);
3f9a994c 8195
8d64371b 8196 buf = rs->buf.data ();
2e9f7625 8197
8d64371b 8198 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_p]))
74ca34ce
DJ
8199 {
8200 case PACKET_OK:
8201 break;
8202 case PACKET_UNKNOWN:
8203 return 0;
8204 case PACKET_ERROR:
27a9c0bf 8205 error (_("Could not fetch register \"%s\"; remote failure reply '%s'"),
ac7936df 8206 gdbarch_register_name (regcache->arch (),
27a9c0bf
MS
8207 reg->regnum),
8208 buf);
74ca34ce 8209 }
3f9a994c
JB
8210
8211 /* If this register is unfetchable, tell the regcache. */
8212 if (buf[0] == 'x')
8480adf2 8213 {
73e1c03f 8214 regcache->raw_supply (reg->regnum, NULL);
8480adf2 8215 return 1;
b96ec7ac 8216 }
b96ec7ac 8217
3f9a994c
JB
8218 /* Otherwise, parse and supply the value. */
8219 p = buf;
8220 i = 0;
8221 while (p[0] != 0)
8222 {
8223 if (p[1] == 0)
74ca34ce 8224 error (_("fetch_register_using_p: early buf termination"));
3f9a994c
JB
8225
8226 regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
8227 p += 2;
8228 }
73e1c03f 8229 regcache->raw_supply (reg->regnum, regp);
3f9a994c 8230 return 1;
b96ec7ac
AC
8231}
8232
74ca34ce
DJ
8233/* Fetch the registers included in the target's 'g' packet. */
8234
6b8edb51
PA
8235int
8236remote_target::send_g_packet ()
c906108c 8237{
d01949b6 8238 struct remote_state *rs = get_remote_state ();
cea39f65 8239 int buf_len;
c906108c 8240
8d64371b 8241 xsnprintf (rs->buf.data (), get_remote_packet_size (), "g");
b75abf5b 8242 putpkt (rs->buf);
8d64371b 8243 getpkt (&rs->buf, 0);
b75abf5b
AK
8244 if (packet_check_result (rs->buf) == PACKET_ERROR)
8245 error (_("Could not read registers; remote failure reply '%s'"),
dda83cd7 8246 rs->buf.data ());
c906108c 8247
29709017
DJ
8248 /* We can get out of synch in various cases. If the first character
8249 in the buffer is not a hex character, assume that has happened
8250 and try to fetch another packet to read. */
8251 while ((rs->buf[0] < '0' || rs->buf[0] > '9')
8252 && (rs->buf[0] < 'A' || rs->buf[0] > 'F')
8253 && (rs->buf[0] < 'a' || rs->buf[0] > 'f')
8254 && rs->buf[0] != 'x') /* New: unavailable register value. */
8255 {
8256 if (remote_debug)
8257 fprintf_unfiltered (gdb_stdlog,
8258 "Bad register packet; fetching a new packet\n");
8d64371b 8259 getpkt (&rs->buf, 0);
29709017
DJ
8260 }
8261
8d64371b 8262 buf_len = strlen (rs->buf.data ());
74ca34ce
DJ
8263
8264 /* Sanity check the received packet. */
8265 if (buf_len % 2 != 0)
8d64371b 8266 error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf.data ());
29709017
DJ
8267
8268 return buf_len / 2;
8269}
8270
6b8edb51
PA
8271void
8272remote_target::process_g_packet (struct regcache *regcache)
29709017 8273{
ac7936df 8274 struct gdbarch *gdbarch = regcache->arch ();
29709017 8275 struct remote_state *rs = get_remote_state ();
9d6eea31 8276 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
29709017
DJ
8277 int i, buf_len;
8278 char *p;
8279 char *regs;
8280
8d64371b 8281 buf_len = strlen (rs->buf.data ());
29709017
DJ
8282
8283 /* Further sanity checks, with knowledge of the architecture. */
74ca34ce 8284 if (buf_len > 2 * rsa->sizeof_g_packet)
fc809827 8285 error (_("Remote 'g' packet reply is too long (expected %ld bytes, got %d "
8d64371b
TT
8286 "bytes): %s"),
8287 rsa->sizeof_g_packet, buf_len / 2,
8288 rs->buf.data ());
74ca34ce
DJ
8289
8290 /* Save the size of the packet sent to us by the target. It is used
8291 as a heuristic when determining the max size of packets that the
8292 target can safely receive. */
8293 if (rsa->actual_register_packet_size == 0)
8294 rsa->actual_register_packet_size = buf_len;
8295
8296 /* If this is smaller than we guessed the 'g' packet would be,
8297 update our records. A 'g' reply that doesn't include a register's
8298 value implies either that the register is not available, or that
8299 the 'p' packet must be used. */
8300 if (buf_len < 2 * rsa->sizeof_g_packet)
b323314b 8301 {
9dc193c3 8302 long sizeof_g_packet = buf_len / 2;
74ca34ce 8303
4a22f64d 8304 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
b96ec7ac 8305 {
9dc193c3
LF
8306 long offset = rsa->regs[i].offset;
8307 long reg_size = register_size (gdbarch, i);
8308
74ca34ce
DJ
8309 if (rsa->regs[i].pnum == -1)
8310 continue;
8311
9dc193c3 8312 if (offset >= sizeof_g_packet)
74ca34ce 8313 rsa->regs[i].in_g_packet = 0;
9dc193c3
LF
8314 else if (offset + reg_size > sizeof_g_packet)
8315 error (_("Truncated register %d in remote 'g' packet"), i);
b96ec7ac 8316 else
74ca34ce 8317 rsa->regs[i].in_g_packet = 1;
b96ec7ac 8318 }
9dc193c3
LF
8319
8320 /* Looks valid enough, we can assume this is the correct length
dda83cd7
SM
8321 for a 'g' packet. It's important not to adjust
8322 rsa->sizeof_g_packet if we have truncated registers otherwise
8323 this "if" won't be run the next time the method is called
8324 with a packet of the same size and one of the internal errors
8325 below will trigger instead. */
9dc193c3 8326 rsa->sizeof_g_packet = sizeof_g_packet;
74ca34ce 8327 }
b323314b 8328
224c3ddb 8329 regs = (char *) alloca (rsa->sizeof_g_packet);
c906108c
SS
8330
8331 /* Unimplemented registers read as all bits zero. */
ea9c271d 8332 memset (regs, 0, rsa->sizeof_g_packet);
c906108c 8333
c906108c
SS
8334 /* Reply describes registers byte by byte, each byte encoded as two
8335 hex characters. Suck them all up, then supply them to the
8336 register cacheing/storage mechanism. */
8337
8d64371b 8338 p = rs->buf.data ();
ea9c271d 8339 for (i = 0; i < rsa->sizeof_g_packet; i++)
c906108c 8340 {
74ca34ce
DJ
8341 if (p[0] == 0 || p[1] == 0)
8342 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
8343 internal_error (__FILE__, __LINE__,
9b20d036 8344 _("unexpected end of 'g' packet reply"));
74ca34ce 8345
c906108c 8346 if (p[0] == 'x' && p[1] == 'x')
c5aa993b 8347 regs[i] = 0; /* 'x' */
c906108c
SS
8348 else
8349 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
8350 p += 2;
8351 }
8352
a744cf53
MS
8353 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
8354 {
8355 struct packet_reg *r = &rsa->regs[i];
9dc193c3 8356 long reg_size = register_size (gdbarch, i);
a744cf53
MS
8357
8358 if (r->in_g_packet)
8359 {
8d64371b 8360 if ((r->offset + reg_size) * 2 > strlen (rs->buf.data ()))
a744cf53
MS
8361 /* This shouldn't happen - we adjusted in_g_packet above. */
8362 internal_error (__FILE__, __LINE__,
9b20d036 8363 _("unexpected end of 'g' packet reply"));
a744cf53
MS
8364 else if (rs->buf[r->offset * 2] == 'x')
8365 {
8d64371b 8366 gdb_assert (r->offset * 2 < strlen (rs->buf.data ()));
a744cf53
MS
8367 /* The register isn't available, mark it as such (at
8368 the same time setting the value to zero). */
73e1c03f 8369 regcache->raw_supply (r->regnum, NULL);
a744cf53
MS
8370 }
8371 else
73e1c03f 8372 regcache->raw_supply (r->regnum, regs + r->offset);
a744cf53
MS
8373 }
8374 }
c906108c
SS
8375}
8376
6b8edb51
PA
8377void
8378remote_target::fetch_registers_using_g (struct regcache *regcache)
29709017
DJ
8379{
8380 send_g_packet ();
56be3814 8381 process_g_packet (regcache);
29709017
DJ
8382}
8383
e6e4e701
PA
8384/* Make the remote selected traceframe match GDB's selected
8385 traceframe. */
8386
6b8edb51
PA
8387void
8388remote_target::set_remote_traceframe ()
e6e4e701
PA
8389{
8390 int newnum;
262e1174 8391 struct remote_state *rs = get_remote_state ();
e6e4e701 8392
262e1174 8393 if (rs->remote_traceframe_number == get_traceframe_number ())
e6e4e701
PA
8394 return;
8395
8396 /* Avoid recursion, remote_trace_find calls us again. */
262e1174 8397 rs->remote_traceframe_number = get_traceframe_number ();
e6e4e701
PA
8398
8399 newnum = target_trace_find (tfind_number,
8400 get_traceframe_number (), 0, 0, NULL);
8401
8402 /* Should not happen. If it does, all bets are off. */
8403 if (newnum != get_traceframe_number ())
8404 warning (_("could not set remote traceframe"));
8405}
8406
f6ac5f3d
PA
8407void
8408remote_target::fetch_registers (struct regcache *regcache, int regnum)
74ca34ce 8409{
ac7936df 8410 struct gdbarch *gdbarch = regcache->arch ();
9d6eea31
PA
8411 struct remote_state *rs = get_remote_state ();
8412 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
74ca34ce
DJ
8413 int i;
8414
e6e4e701 8415 set_remote_traceframe ();
222312d3 8416 set_general_thread (regcache->ptid ());
74ca34ce
DJ
8417
8418 if (regnum >= 0)
8419 {
5cd63fda 8420 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
a744cf53 8421
74ca34ce
DJ
8422 gdb_assert (reg != NULL);
8423
8424 /* If this register might be in the 'g' packet, try that first -
8425 we are likely to read more than one register. If this is the
8426 first 'g' packet, we might be overly optimistic about its
8427 contents, so fall back to 'p'. */
8428 if (reg->in_g_packet)
8429 {
56be3814 8430 fetch_registers_using_g (regcache);
74ca34ce
DJ
8431 if (reg->in_g_packet)
8432 return;
8433 }
8434
56be3814 8435 if (fetch_register_using_p (regcache, reg))
74ca34ce
DJ
8436 return;
8437
8438 /* This register is not available. */
73e1c03f 8439 regcache->raw_supply (reg->regnum, NULL);
74ca34ce
DJ
8440
8441 return;
8442 }
8443
56be3814 8444 fetch_registers_using_g (regcache);
74ca34ce 8445
5cd63fda 8446 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
74ca34ce 8447 if (!rsa->regs[i].in_g_packet)
56be3814 8448 if (!fetch_register_using_p (regcache, &rsa->regs[i]))
74ca34ce
DJ
8449 {
8450 /* This register is not available. */
73e1c03f 8451 regcache->raw_supply (i, NULL);
74ca34ce
DJ
8452 }
8453}
8454
c906108c
SS
8455/* Prepare to store registers. Since we may send them all (using a
8456 'G' request), we have to read out the ones we don't want to change
8457 first. */
8458
f6ac5f3d
PA
8459void
8460remote_target::prepare_to_store (struct regcache *regcache)
c906108c 8461{
9d6eea31
PA
8462 struct remote_state *rs = get_remote_state ();
8463 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
cf0e1e0d 8464 int i;
cf0e1e0d 8465
c906108c 8466 /* Make sure the entire registers array is valid. */
4082afcc 8467 switch (packet_support (PACKET_P))
5a2468f5
JM
8468 {
8469 case PACKET_DISABLE:
8470 case PACKET_SUPPORT_UNKNOWN:
cf0e1e0d 8471 /* Make sure all the necessary registers are cached. */
ac7936df 8472 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
ea9c271d 8473 if (rsa->regs[i].in_g_packet)
0b47d985 8474 regcache->raw_update (rsa->regs[i].regnum);
5a2468f5
JM
8475 break;
8476 case PACKET_ENABLE:
8477 break;
8478 }
8479}
8480
ad10f812 8481/* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
23860348 8482 packet was not recognized. */
5a2468f5 8483
6b8edb51
PA
8484int
8485remote_target::store_register_using_P (const struct regcache *regcache,
8486 packet_reg *reg)
5a2468f5 8487{
ac7936df 8488 struct gdbarch *gdbarch = regcache->arch ();
d01949b6 8489 struct remote_state *rs = get_remote_state ();
5a2468f5 8490 /* Try storing a single register. */
8d64371b 8491 char *buf = rs->buf.data ();
9890e433 8492 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
5a2468f5 8493 char *p;
5a2468f5 8494
4082afcc 8495 if (packet_support (PACKET_P) == PACKET_DISABLE)
74ca34ce
DJ
8496 return 0;
8497
8498 if (reg->pnum == -1)
8499 return 0;
8500
ea9c271d 8501 xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
5a2468f5 8502 p = buf + strlen (buf);
34a79281 8503 regcache->raw_collect (reg->regnum, regp);
4a22f64d 8504 bin2hex (regp, p, register_size (gdbarch, reg->regnum));
1f4437a4 8505 putpkt (rs->buf);
8d64371b 8506 getpkt (&rs->buf, 0);
5a2468f5 8507
74ca34ce
DJ
8508 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P]))
8509 {
8510 case PACKET_OK:
8511 return 1;
8512 case PACKET_ERROR:
27a9c0bf 8513 error (_("Could not write register \"%s\"; remote failure reply '%s'"),
8d64371b 8514 gdbarch_register_name (gdbarch, reg->regnum), rs->buf.data ());
74ca34ce
DJ
8515 case PACKET_UNKNOWN:
8516 return 0;
8517 default:
8518 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
8519 }
c906108c
SS
8520}
8521
23860348
MS
8522/* Store register REGNUM, or all registers if REGNUM == -1, from the
8523 contents of the register cache buffer. FIXME: ignores errors. */
c906108c 8524
6b8edb51
PA
8525void
8526remote_target::store_registers_using_G (const struct regcache *regcache)
c906108c 8527{
d01949b6 8528 struct remote_state *rs = get_remote_state ();
9d6eea31 8529 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
cfd77fa1 8530 gdb_byte *regs;
c906108c
SS
8531 char *p;
8532
193cb69f
AC
8533 /* Extract all the registers in the regcache copying them into a
8534 local buffer. */
8535 {
b323314b 8536 int i;
a744cf53 8537
224c3ddb 8538 regs = (gdb_byte *) alloca (rsa->sizeof_g_packet);
ea9c271d 8539 memset (regs, 0, rsa->sizeof_g_packet);
ac7936df 8540 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
193cb69f 8541 {
ea9c271d 8542 struct packet_reg *r = &rsa->regs[i];
a744cf53 8543
b323314b 8544 if (r->in_g_packet)
34a79281 8545 regcache->raw_collect (r->regnum, regs + r->offset);
193cb69f
AC
8546 }
8547 }
c906108c
SS
8548
8549 /* Command describes registers byte by byte,
8550 each byte encoded as two hex characters. */
8d64371b 8551 p = rs->buf.data ();
193cb69f 8552 *p++ = 'G';
74ca34ce 8553 bin2hex (regs, p, rsa->sizeof_g_packet);
1f4437a4 8554 putpkt (rs->buf);
8d64371b 8555 getpkt (&rs->buf, 0);
1f4437a4 8556 if (packet_check_result (rs->buf) == PACKET_ERROR)
27a9c0bf 8557 error (_("Could not write registers; remote failure reply '%s'"),
8d64371b 8558 rs->buf.data ());
c906108c 8559}
74ca34ce
DJ
8560
8561/* Store register REGNUM, or all registers if REGNUM == -1, from the contents
8562 of the register cache buffer. FIXME: ignores errors. */
8563
f6ac5f3d
PA
8564void
8565remote_target::store_registers (struct regcache *regcache, int regnum)
74ca34ce 8566{
5cd63fda 8567 struct gdbarch *gdbarch = regcache->arch ();
9d6eea31
PA
8568 struct remote_state *rs = get_remote_state ();
8569 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
74ca34ce
DJ
8570 int i;
8571
e6e4e701 8572 set_remote_traceframe ();
222312d3 8573 set_general_thread (regcache->ptid ());
74ca34ce
DJ
8574
8575 if (regnum >= 0)
8576 {
5cd63fda 8577 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
a744cf53 8578
74ca34ce
DJ
8579 gdb_assert (reg != NULL);
8580
8581 /* Always prefer to store registers using the 'P' packet if
8582 possible; we often change only a small number of registers.
8583 Sometimes we change a larger number; we'd need help from a
8584 higher layer to know to use 'G'. */
56be3814 8585 if (store_register_using_P (regcache, reg))
74ca34ce
DJ
8586 return;
8587
8588 /* For now, don't complain if we have no way to write the
8589 register. GDB loses track of unavailable registers too
8590 easily. Some day, this may be an error. We don't have
0df8b418 8591 any way to read the register, either... */
74ca34ce
DJ
8592 if (!reg->in_g_packet)
8593 return;
8594
56be3814 8595 store_registers_using_G (regcache);
74ca34ce
DJ
8596 return;
8597 }
8598
56be3814 8599 store_registers_using_G (regcache);
74ca34ce 8600
5cd63fda 8601 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
74ca34ce 8602 if (!rsa->regs[i].in_g_packet)
56be3814 8603 if (!store_register_using_P (regcache, &rsa->regs[i]))
74ca34ce
DJ
8604 /* See above for why we do not issue an error here. */
8605 continue;
8606}
c906108c
SS
8607\f
8608
8609/* Return the number of hex digits in num. */
8610
8611static int
fba45db2 8612hexnumlen (ULONGEST num)
c906108c
SS
8613{
8614 int i;
8615
8616 for (i = 0; num != 0; i++)
8617 num >>= 4;
8618
325fac50 8619 return std::max (i, 1);
c906108c
SS
8620}
8621
2df3850c 8622/* Set BUF to the minimum number of hex digits representing NUM. */
c906108c
SS
8623
8624static int
fba45db2 8625hexnumstr (char *buf, ULONGEST num)
c906108c 8626{
c906108c 8627 int len = hexnumlen (num);
a744cf53 8628
2df3850c
JM
8629 return hexnumnstr (buf, num, len);
8630}
8631
c906108c 8632
2df3850c 8633/* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
c906108c 8634
2df3850c 8635static int
fba45db2 8636hexnumnstr (char *buf, ULONGEST num, int width)
2df3850c
JM
8637{
8638 int i;
8639
8640 buf[width] = '\0';
8641
8642 for (i = width - 1; i >= 0; i--)
c906108c 8643 {
c5aa993b 8644 buf[i] = "0123456789abcdef"[(num & 0xf)];
c906108c
SS
8645 num >>= 4;
8646 }
8647
2df3850c 8648 return width;
c906108c
SS
8649}
8650
23860348 8651/* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
c906108c
SS
8652
8653static CORE_ADDR
fba45db2 8654remote_address_masked (CORE_ADDR addr)
c906108c 8655{
883b9c6c 8656 unsigned int address_size = remote_address_size;
a744cf53 8657
911c95a5
UW
8658 /* If "remoteaddresssize" was not set, default to target address size. */
8659 if (!address_size)
f5656ead 8660 address_size = gdbarch_addr_bit (target_gdbarch ());
911c95a5
UW
8661
8662 if (address_size > 0
8663 && address_size < (sizeof (ULONGEST) * 8))
c906108c
SS
8664 {
8665 /* Only create a mask when that mask can safely be constructed
dda83cd7 8666 in a ULONGEST variable. */
c906108c 8667 ULONGEST mask = 1;
a744cf53 8668
911c95a5 8669 mask = (mask << address_size) - 1;
c906108c
SS
8670 addr &= mask;
8671 }
8672 return addr;
8673}
8674
8675/* Determine whether the remote target supports binary downloading.
8676 This is accomplished by sending a no-op memory write of zero length
8677 to the target at the specified address. It does not suffice to send
23860348
MS
8678 the whole packet, since many stubs strip the eighth bit and
8679 subsequently compute a wrong checksum, which causes real havoc with
8680 remote_write_bytes.
7a292a7a 8681
96baa820 8682 NOTE: This can still lose if the serial line is not eight-bit
0df8b418 8683 clean. In cases like this, the user should clear "remote
23860348 8684 X-packet". */
96baa820 8685
6b8edb51
PA
8686void
8687remote_target::check_binary_download (CORE_ADDR addr)
c906108c 8688{
d01949b6 8689 struct remote_state *rs = get_remote_state ();
24b06219 8690
4082afcc 8691 switch (packet_support (PACKET_X))
c906108c 8692 {
96baa820
JM
8693 case PACKET_DISABLE:
8694 break;
8695 case PACKET_ENABLE:
8696 break;
8697 case PACKET_SUPPORT_UNKNOWN:
8698 {
96baa820 8699 char *p;
802188a7 8700
8d64371b 8701 p = rs->buf.data ();
96baa820
JM
8702 *p++ = 'X';
8703 p += hexnumstr (p, (ULONGEST) addr);
8704 *p++ = ',';
8705 p += hexnumstr (p, (ULONGEST) 0);
8706 *p++ = ':';
8707 *p = '\0';
802188a7 8708
8d64371b
TT
8709 putpkt_binary (rs->buf.data (), (int) (p - rs->buf.data ()));
8710 getpkt (&rs->buf, 0);
c906108c 8711
2e9f7625 8712 if (rs->buf[0] == '\0')
96baa820
JM
8713 {
8714 if (remote_debug)
8715 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
8716 "binary downloading NOT "
8717 "supported by target\n");
444abaca 8718 remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
96baa820
JM
8719 }
8720 else
8721 {
8722 if (remote_debug)
8723 fprintf_unfiltered (gdb_stdlog,
64b9b334 8724 "binary downloading supported by target\n");
444abaca 8725 remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
96baa820
JM
8726 }
8727 break;
8728 }
c906108c
SS
8729 }
8730}
8731
124e13d9
SM
8732/* Helper function to resize the payload in order to try to get a good
8733 alignment. We try to write an amount of data such that the next write will
8734 start on an address aligned on REMOTE_ALIGN_WRITES. */
8735
8736static int
8737align_for_efficient_write (int todo, CORE_ADDR memaddr)
8738{
8739 return ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr;
8740}
8741
c906108c
SS
8742/* Write memory data directly to the remote machine.
8743 This does not inform the data cache; the data cache uses this.
a76d924d 8744 HEADER is the starting part of the packet.
c906108c
SS
8745 MEMADDR is the address in the remote memory space.
8746 MYADDR is the address of the buffer in our space.
124e13d9
SM
8747 LEN_UNITS is the number of addressable units to write.
8748 UNIT_SIZE is the length in bytes of an addressable unit.
a76d924d
DJ
8749 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
8750 should send data as binary ('X'), or hex-encoded ('M').
8751
8752 The function creates packet of the form
8753 <HEADER><ADDRESS>,<LENGTH>:<DATA>
8754
124e13d9 8755 where encoding of <DATA> is terminated by PACKET_FORMAT.
a76d924d
DJ
8756
8757 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
8758 are omitted.
8759
9b409511 8760 Return the transferred status, error or OK (an
124e13d9
SM
8761 'enum target_xfer_status' value). Save the number of addressable units
8762 transferred in *XFERED_LEN_UNITS. Only transfer a single packet.
8763
8764 On a platform with an addressable memory size of 2 bytes (UNIT_SIZE == 2), an
8765 exchange between gdb and the stub could look like (?? in place of the
8766 checksum):
8767
8768 -> $m1000,4#??
8769 <- aaaabbbbccccdddd
8770
8771 -> $M1000,3:eeeeffffeeee#??
8772 <- OK
8773
8774 -> $m1000,4#??
8775 <- eeeeffffeeeedddd */
c906108c 8776
6b8edb51
PA
8777target_xfer_status
8778remote_target::remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
8779 const gdb_byte *myaddr,
8780 ULONGEST len_units,
8781 int unit_size,
8782 ULONGEST *xfered_len_units,
8783 char packet_format, int use_length)
c906108c 8784{
6d820c5c 8785 struct remote_state *rs = get_remote_state ();
cfd77fa1 8786 char *p;
a76d924d
DJ
8787 char *plen = NULL;
8788 int plenlen = 0;
124e13d9
SM
8789 int todo_units;
8790 int units_written;
8791 int payload_capacity_bytes;
8792 int payload_length_bytes;
a76d924d
DJ
8793
8794 if (packet_format != 'X' && packet_format != 'M')
8795 internal_error (__FILE__, __LINE__,
9b20d036 8796 _("remote_write_bytes_aux: bad packet format"));
c906108c 8797
124e13d9 8798 if (len_units == 0)
9b409511 8799 return TARGET_XFER_EOF;
b2182ed2 8800
124e13d9 8801 payload_capacity_bytes = get_memory_write_packet_size ();
2bc416ba 8802
6d820c5c
DJ
8803 /* The packet buffer will be large enough for the payload;
8804 get_memory_packet_size ensures this. */
a76d924d 8805 rs->buf[0] = '\0';
c906108c 8806
a257b5bb 8807 /* Compute the size of the actual payload by subtracting out the
0df8b418
MS
8808 packet header and footer overhead: "$M<memaddr>,<len>:...#nn". */
8809
124e13d9 8810 payload_capacity_bytes -= strlen ("$,:#NN");
a76d924d 8811 if (!use_length)
0df8b418 8812 /* The comma won't be used. */
124e13d9
SM
8813 payload_capacity_bytes += 1;
8814 payload_capacity_bytes -= strlen (header);
8815 payload_capacity_bytes -= hexnumlen (memaddr);
c906108c 8816
a76d924d 8817 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
917317f4 8818
8d64371b
TT
8819 strcat (rs->buf.data (), header);
8820 p = rs->buf.data () + strlen (header);
a76d924d
DJ
8821
8822 /* Compute a best guess of the number of bytes actually transfered. */
8823 if (packet_format == 'X')
c906108c 8824 {
23860348 8825 /* Best guess at number of bytes that will fit. */
325fac50
PA
8826 todo_units = std::min (len_units,
8827 (ULONGEST) payload_capacity_bytes / unit_size);
a76d924d 8828 if (use_length)
124e13d9 8829 payload_capacity_bytes -= hexnumlen (todo_units);
325fac50 8830 todo_units = std::min (todo_units, payload_capacity_bytes / unit_size);
a76d924d
DJ
8831 }
8832 else
8833 {
124e13d9 8834 /* Number of bytes that will fit. */
325fac50
PA
8835 todo_units
8836 = std::min (len_units,
8837 (ULONGEST) (payload_capacity_bytes / unit_size) / 2);
a76d924d 8838 if (use_length)
124e13d9 8839 payload_capacity_bytes -= hexnumlen (todo_units);
325fac50
PA
8840 todo_units = std::min (todo_units,
8841 (payload_capacity_bytes / unit_size) / 2);
917317f4 8842 }
a76d924d 8843
124e13d9 8844 if (todo_units <= 0)
3de11b2e 8845 internal_error (__FILE__, __LINE__,
405f8e94 8846 _("minimum packet size too small to write data"));
802188a7 8847
6765f3e5
DJ
8848 /* If we already need another packet, then try to align the end
8849 of this packet to a useful boundary. */
124e13d9
SM
8850 if (todo_units > 2 * REMOTE_ALIGN_WRITES && todo_units < len_units)
8851 todo_units = align_for_efficient_write (todo_units, memaddr);
6765f3e5 8852
a257b5bb 8853 /* Append "<memaddr>". */
917317f4
JM
8854 memaddr = remote_address_masked (memaddr);
8855 p += hexnumstr (p, (ULONGEST) memaddr);
a257b5bb 8856
a76d924d
DJ
8857 if (use_length)
8858 {
8859 /* Append ",". */
8860 *p++ = ',';
802188a7 8861
124e13d9 8862 /* Append the length and retain its location and size. It may need to be
dda83cd7 8863 adjusted once the packet body has been created. */
a76d924d 8864 plen = p;
124e13d9 8865 plenlen = hexnumstr (p, (ULONGEST) todo_units);
a76d924d
DJ
8866 p += plenlen;
8867 }
a257b5bb
AC
8868
8869 /* Append ":". */
917317f4
JM
8870 *p++ = ':';
8871 *p = '\0';
802188a7 8872
a257b5bb 8873 /* Append the packet body. */
a76d924d 8874 if (packet_format == 'X')
917317f4 8875 {
917317f4
JM
8876 /* Binary mode. Send target system values byte by byte, in
8877 increasing byte addresses. Only escape certain critical
8878 characters. */
124e13d9
SM
8879 payload_length_bytes =
8880 remote_escape_output (myaddr, todo_units, unit_size, (gdb_byte *) p,
8881 &units_written, payload_capacity_bytes);
6765f3e5 8882
124e13d9 8883 /* If not all TODO units fit, then we'll need another packet. Make
9b7194bc
DJ
8884 a second try to keep the end of the packet aligned. Don't do
8885 this if the packet is tiny. */
124e13d9 8886 if (units_written < todo_units && units_written > 2 * REMOTE_ALIGN_WRITES)
6765f3e5 8887 {
124e13d9
SM
8888 int new_todo_units;
8889
8890 new_todo_units = align_for_efficient_write (units_written, memaddr);
8891
8892 if (new_todo_units != units_written)
8893 payload_length_bytes =
8894 remote_escape_output (myaddr, new_todo_units, unit_size,
8895 (gdb_byte *) p, &units_written,
8896 payload_capacity_bytes);
6765f3e5
DJ
8897 }
8898
124e13d9
SM
8899 p += payload_length_bytes;
8900 if (use_length && units_written < todo_units)
c906108c 8901 {
802188a7 8902 /* Escape chars have filled up the buffer prematurely,
124e13d9 8903 and we have actually sent fewer units than planned.
917317f4
JM
8904 Fix-up the length field of the packet. Use the same
8905 number of characters as before. */
124e13d9
SM
8906 plen += hexnumnstr (plen, (ULONGEST) units_written,
8907 plenlen);
917317f4 8908 *plen = ':'; /* overwrite \0 from hexnumnstr() */
c906108c 8909 }
a76d924d
DJ
8910 }
8911 else
8912 {
917317f4
JM
8913 /* Normal mode: Send target system values byte by byte, in
8914 increasing byte addresses. Each byte is encoded as a two hex
8915 value. */
124e13d9
SM
8916 p += 2 * bin2hex (myaddr, p, todo_units * unit_size);
8917 units_written = todo_units;
c906108c 8918 }
802188a7 8919
8d64371b
TT
8920 putpkt_binary (rs->buf.data (), (int) (p - rs->buf.data ()));
8921 getpkt (&rs->buf, 0);
802188a7 8922
2e9f7625 8923 if (rs->buf[0] == 'E')
00d84524 8924 return TARGET_XFER_E_IO;
802188a7 8925
124e13d9
SM
8926 /* Return UNITS_WRITTEN, not TODO_UNITS, in case escape chars caused us to
8927 send fewer units than we'd planned. */
8928 *xfered_len_units = (ULONGEST) units_written;
92ffd475 8929 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
c906108c
SS
8930}
8931
a76d924d
DJ
8932/* Write memory data directly to the remote machine.
8933 This does not inform the data cache; the data cache uses this.
8934 MEMADDR is the address in the remote memory space.
8935 MYADDR is the address of the buffer in our space.
8936 LEN is the number of bytes.
8937
9b409511
YQ
8938 Return the transferred status, error or OK (an
8939 'enum target_xfer_status' value). Save the number of bytes
8940 transferred in *XFERED_LEN. Only transfer a single packet. */
a76d924d 8941
6b8edb51
PA
8942target_xfer_status
8943remote_target::remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr,
8944 ULONGEST len, int unit_size,
8945 ULONGEST *xfered_len)
a76d924d 8946{
a121b7c1 8947 const char *packet_format = NULL;
a76d924d
DJ
8948
8949 /* Check whether the target supports binary download. */
8950 check_binary_download (memaddr);
8951
4082afcc 8952 switch (packet_support (PACKET_X))
a76d924d
DJ
8953 {
8954 case PACKET_ENABLE:
8955 packet_format = "X";
8956 break;
8957 case PACKET_DISABLE:
8958 packet_format = "M";
8959 break;
8960 case PACKET_SUPPORT_UNKNOWN:
8961 internal_error (__FILE__, __LINE__,
8962 _("remote_write_bytes: bad internal state"));
8963 default:
8964 internal_error (__FILE__, __LINE__, _("bad switch"));
8965 }
8966
8967 return remote_write_bytes_aux (packet_format,
124e13d9 8968 memaddr, myaddr, len, unit_size, xfered_len,
9b409511 8969 packet_format[0], 1);
a76d924d
DJ
8970}
8971
9217e74e
YQ
8972/* Read memory data directly from the remote machine.
8973 This does not use the data cache; the data cache uses this.
8974 MEMADDR is the address in the remote memory space.
8975 MYADDR is the address of the buffer in our space.
124e13d9
SM
8976 LEN_UNITS is the number of addressable memory units to read..
8977 UNIT_SIZE is the length in bytes of an addressable unit.
9217e74e
YQ
8978
8979 Return the transferred status, error or OK (an
8980 'enum target_xfer_status' value). Save the number of bytes
124e13d9
SM
8981 transferred in *XFERED_LEN_UNITS.
8982
8983 See the comment of remote_write_bytes_aux for an example of
8984 memory read/write exchange between gdb and the stub. */
9217e74e 8985
6b8edb51
PA
8986target_xfer_status
8987remote_target::remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr,
8988 ULONGEST len_units,
8989 int unit_size, ULONGEST *xfered_len_units)
9217e74e
YQ
8990{
8991 struct remote_state *rs = get_remote_state ();
124e13d9 8992 int buf_size_bytes; /* Max size of packet output buffer. */
9217e74e 8993 char *p;
124e13d9
SM
8994 int todo_units;
8995 int decoded_bytes;
9217e74e 8996
124e13d9 8997 buf_size_bytes = get_memory_read_packet_size ();
9217e74e
YQ
8998 /* The packet buffer will be large enough for the payload;
8999 get_memory_packet_size ensures this. */
9000
124e13d9 9001 /* Number of units that will fit. */
325fac50
PA
9002 todo_units = std::min (len_units,
9003 (ULONGEST) (buf_size_bytes / unit_size) / 2);
9217e74e
YQ
9004
9005 /* Construct "m"<memaddr>","<len>". */
9006 memaddr = remote_address_masked (memaddr);
8d64371b 9007 p = rs->buf.data ();
9217e74e
YQ
9008 *p++ = 'm';
9009 p += hexnumstr (p, (ULONGEST) memaddr);
9010 *p++ = ',';
124e13d9 9011 p += hexnumstr (p, (ULONGEST) todo_units);
9217e74e
YQ
9012 *p = '\0';
9013 putpkt (rs->buf);
8d64371b 9014 getpkt (&rs->buf, 0);
9217e74e
YQ
9015 if (rs->buf[0] == 'E'
9016 && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2])
9017 && rs->buf[3] == '\0')
9018 return TARGET_XFER_E_IO;
9019 /* Reply describes memory byte by byte, each byte encoded as two hex
9020 characters. */
8d64371b 9021 p = rs->buf.data ();
124e13d9 9022 decoded_bytes = hex2bin (p, myaddr, todo_units * unit_size);
9217e74e 9023 /* Return what we have. Let higher layers handle partial reads. */
124e13d9 9024 *xfered_len_units = (ULONGEST) (decoded_bytes / unit_size);
92ffd475 9025 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
9217e74e
YQ
9026}
9027
b55fbac4
YQ
9028/* Using the set of read-only target sections of remote, read live
9029 read-only memory.
8acf9577
YQ
9030
9031 For interface/parameters/return description see target.h,
9032 to_xfer_partial. */
9033
6b8edb51
PA
9034target_xfer_status
9035remote_target::remote_xfer_live_readonly_partial (gdb_byte *readbuf,
9036 ULONGEST memaddr,
9037 ULONGEST len,
9038 int unit_size,
9039 ULONGEST *xfered_len)
8acf9577
YQ
9040{
9041 struct target_section *secp;
8acf9577 9042
6b8edb51 9043 secp = target_section_by_addr (this, memaddr);
8acf9577 9044 if (secp != NULL
fd361982 9045 && (bfd_section_flags (secp->the_bfd_section) & SEC_READONLY))
8acf9577 9046 {
8acf9577
YQ
9047 ULONGEST memend = memaddr + len;
9048
d7a78e5c
TT
9049 target_section_table *table = target_get_section_table (this);
9050 for (target_section &p : *table)
8acf9577 9051 {
bb2a6777 9052 if (memaddr >= p.addr)
8acf9577 9053 {
bb2a6777 9054 if (memend <= p.endaddr)
8acf9577
YQ
9055 {
9056 /* Entire transfer is within this section. */
124e13d9 9057 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 9058 xfered_len);
8acf9577 9059 }
bb2a6777 9060 else if (memaddr >= p.endaddr)
8acf9577
YQ
9061 {
9062 /* This section ends before the transfer starts. */
9063 continue;
9064 }
9065 else
9066 {
9067 /* This section overlaps the transfer. Just do half. */
bb2a6777 9068 len = p.endaddr - memaddr;
124e13d9 9069 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 9070 xfered_len);
8acf9577
YQ
9071 }
9072 }
9073 }
9074 }
9075
9076 return TARGET_XFER_EOF;
9077}
9078
9217e74e
YQ
9079/* Similar to remote_read_bytes_1, but it reads from the remote stub
9080 first if the requested memory is unavailable in traceframe.
9081 Otherwise, fall back to remote_read_bytes_1. */
c906108c 9082
6b8edb51
PA
9083target_xfer_status
9084remote_target::remote_read_bytes (CORE_ADDR memaddr,
9085 gdb_byte *myaddr, ULONGEST len, int unit_size,
9086 ULONGEST *xfered_len)
c906108c 9087{
6b6aa828 9088 if (len == 0)
96c4f946 9089 return TARGET_XFER_EOF;
b2182ed2 9090
8acf9577
YQ
9091 if (get_traceframe_number () != -1)
9092 {
a79b1bc6 9093 std::vector<mem_range> available;
8acf9577
YQ
9094
9095 /* If we fail to get the set of available memory, then the
9096 target does not support querying traceframe info, and so we
9097 attempt reading from the traceframe anyway (assuming the
9098 target implements the old QTro packet then). */
9099 if (traceframe_available_memory (&available, memaddr, len))
9100 {
a79b1bc6 9101 if (available.empty () || available[0].start != memaddr)
8acf9577
YQ
9102 {
9103 enum target_xfer_status res;
9104
9105 /* Don't read into the traceframe's available
9106 memory. */
a79b1bc6 9107 if (!available.empty ())
8acf9577
YQ
9108 {
9109 LONGEST oldlen = len;
9110
a79b1bc6 9111 len = available[0].start - memaddr;
8acf9577
YQ
9112 gdb_assert (len <= oldlen);
9113 }
9114
8acf9577 9115 /* This goes through the topmost target again. */
6b8edb51 9116 res = remote_xfer_live_readonly_partial (myaddr, memaddr,
124e13d9 9117 len, unit_size, xfered_len);
8acf9577
YQ
9118 if (res == TARGET_XFER_OK)
9119 return TARGET_XFER_OK;
9120 else
9121 {
9122 /* No use trying further, we know some memory starting
9123 at MEMADDR isn't available. */
9124 *xfered_len = len;
92ffd475
PC
9125 return (*xfered_len != 0) ?
9126 TARGET_XFER_UNAVAILABLE : TARGET_XFER_EOF;
8acf9577
YQ
9127 }
9128 }
9129
9130 /* Don't try to read more than how much is available, in
9131 case the target implements the deprecated QTro packet to
9132 cater for older GDBs (the target's knowledge of read-only
9133 sections may be outdated by now). */
a79b1bc6 9134 len = available[0].length;
8acf9577
YQ
9135 }
9136 }
9137
124e13d9 9138 return remote_read_bytes_1 (memaddr, myaddr, len, unit_size, xfered_len);
c906108c 9139}
74531fed 9140
c906108c 9141\f
c906108c 9142
a76d924d
DJ
9143/* Sends a packet with content determined by the printf format string
9144 FORMAT and the remaining arguments, then gets the reply. Returns
9145 whether the packet was a success, a failure, or unknown. */
9146
6b8edb51
PA
9147packet_result
9148remote_target::remote_send_printf (const char *format, ...)
a76d924d
DJ
9149{
9150 struct remote_state *rs = get_remote_state ();
9151 int max_size = get_remote_packet_size ();
a76d924d 9152 va_list ap;
a744cf53 9153
a76d924d
DJ
9154 va_start (ap, format);
9155
9156 rs->buf[0] = '\0';
8d64371b 9157 int size = vsnprintf (rs->buf.data (), max_size, format, ap);
33b031ce
GB
9158
9159 va_end (ap);
9160
9161 if (size >= max_size)
9b20d036 9162 internal_error (__FILE__, __LINE__, _("Too long remote packet."));
a76d924d
DJ
9163
9164 if (putpkt (rs->buf) < 0)
9165 error (_("Communication problem with target."));
9166
9167 rs->buf[0] = '\0';
8d64371b 9168 getpkt (&rs->buf, 0);
a76d924d
DJ
9169
9170 return packet_check_result (rs->buf);
9171}
9172
a76d924d
DJ
9173/* Flash writing can take quite some time. We'll set
9174 effectively infinite timeout for flash operations.
9175 In future, we'll need to decide on a better approach. */
9176static const int remote_flash_timeout = 1000;
9177
f6ac5f3d
PA
9178void
9179remote_target::flash_erase (ULONGEST address, LONGEST length)
a76d924d 9180{
f5656ead 9181 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
a76d924d 9182 enum packet_result ret;
2ec845e7
TT
9183 scoped_restore restore_timeout
9184 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
a76d924d
DJ
9185
9186 ret = remote_send_printf ("vFlashErase:%s,%s",
5af949e3 9187 phex (address, addr_size),
a76d924d
DJ
9188 phex (length, 4));
9189 switch (ret)
9190 {
9191 case PACKET_UNKNOWN:
9192 error (_("Remote target does not support flash erase"));
9193 case PACKET_ERROR:
9194 error (_("Error erasing flash with vFlashErase packet"));
9195 default:
9196 break;
9197 }
a76d924d
DJ
9198}
9199
6b8edb51
PA
9200target_xfer_status
9201remote_target::remote_flash_write (ULONGEST address,
9202 ULONGEST length, ULONGEST *xfered_len,
9203 const gdb_byte *data)
a76d924d 9204{
2ec845e7
TT
9205 scoped_restore restore_timeout
9206 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
9207 return remote_write_bytes_aux ("vFlashWrite:", address, data, length, 1,
9208 xfered_len,'X', 0);
a76d924d
DJ
9209}
9210
f6ac5f3d
PA
9211void
9212remote_target::flash_done ()
a76d924d 9213{
a76d924d 9214 int ret;
a76d924d 9215
2ec845e7
TT
9216 scoped_restore restore_timeout
9217 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
9218
a76d924d 9219 ret = remote_send_printf ("vFlashDone");
a76d924d
DJ
9220
9221 switch (ret)
9222 {
9223 case PACKET_UNKNOWN:
9224 error (_("Remote target does not support vFlashDone"));
9225 case PACKET_ERROR:
9226 error (_("Error finishing flash operation"));
9227 default:
9228 break;
9229 }
9230}
9231
f6ac5f3d
PA
9232void
9233remote_target::files_info ()
c906108c
SS
9234{
9235 puts_filtered ("Debugging a target over a serial line.\n");
9236}
9237\f
9238/* Stuff for dealing with the packets which are part of this protocol.
9239 See comment at top of file for details. */
9240
1927e618
PA
9241/* Close/unpush the remote target, and throw a TARGET_CLOSE_ERROR
9242 error to higher layers. Called when a serial error is detected.
9243 The exception message is STRING, followed by a colon and a blank,
d6cb50a2
JK
9244 the system error message for errno at function entry and final dot
9245 for output compatibility with throw_perror_with_name. */
1927e618
PA
9246
9247static void
5b6d1e4f 9248unpush_and_perror (remote_target *target, const char *string)
1927e618 9249{
d6cb50a2 9250 int saved_errno = errno;
1927e618 9251
5b6d1e4f 9252 remote_unpush_target (target);
d6cb50a2
JK
9253 throw_error (TARGET_CLOSE_ERROR, "%s: %s.", string,
9254 safe_strerror (saved_errno));
1927e618
PA
9255}
9256
048094ac
PA
9257/* Read a single character from the remote end. The current quit
9258 handler is overridden to avoid quitting in the middle of packet
9259 sequence, as that would break communication with the remote server.
9260 See remote_serial_quit_handler for more detail. */
c906108c 9261
6b8edb51
PA
9262int
9263remote_target::readchar (int timeout)
c906108c
SS
9264{
9265 int ch;
5d93a237 9266 struct remote_state *rs = get_remote_state ();
048094ac 9267
2ec845e7 9268 {
6b8edb51
PA
9269 scoped_restore restore_quit_target
9270 = make_scoped_restore (&curr_quit_handler_target, this);
2ec845e7 9271 scoped_restore restore_quit
6b8edb51 9272 = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
c906108c 9273
2ec845e7 9274 rs->got_ctrlc_during_io = 0;
c906108c 9275
2ec845e7 9276 ch = serial_readchar (rs->remote_desc, timeout);
048094ac 9277
2ec845e7
TT
9278 if (rs->got_ctrlc_during_io)
9279 set_quit_flag ();
9280 }
048094ac 9281
2acceee2 9282 if (ch >= 0)
0876f84a 9283 return ch;
2acceee2
JM
9284
9285 switch ((enum serial_rc) ch)
c906108c
SS
9286 {
9287 case SERIAL_EOF:
5b6d1e4f 9288 remote_unpush_target (this);
598d3636 9289 throw_error (TARGET_CLOSE_ERROR, _("Remote connection closed"));
2acceee2 9290 /* no return */
c906108c 9291 case SERIAL_ERROR:
5b6d1e4f
PA
9292 unpush_and_perror (this, _("Remote communication error. "
9293 "Target disconnected."));
2acceee2 9294 /* no return */
c906108c 9295 case SERIAL_TIMEOUT:
2acceee2 9296 break;
c906108c 9297 }
2acceee2 9298 return ch;
c906108c
SS
9299}
9300
c33e31fd 9301/* Wrapper for serial_write that closes the target and throws if
048094ac
PA
9302 writing fails. The current quit handler is overridden to avoid
9303 quitting in the middle of packet sequence, as that would break
9304 communication with the remote server. See
9305 remote_serial_quit_handler for more detail. */
c33e31fd 9306
6b8edb51
PA
9307void
9308remote_target::remote_serial_write (const char *str, int len)
c33e31fd 9309{
5d93a237 9310 struct remote_state *rs = get_remote_state ();
048094ac 9311
6b8edb51
PA
9312 scoped_restore restore_quit_target
9313 = make_scoped_restore (&curr_quit_handler_target, this);
2ec845e7 9314 scoped_restore restore_quit
6b8edb51 9315 = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
048094ac
PA
9316
9317 rs->got_ctrlc_during_io = 0;
5d93a237
TT
9318
9319 if (serial_write (rs->remote_desc, str, len))
c33e31fd 9320 {
5b6d1e4f
PA
9321 unpush_and_perror (this, _("Remote communication error. "
9322 "Target disconnected."));
c33e31fd 9323 }
048094ac
PA
9324
9325 if (rs->got_ctrlc_during_io)
9326 set_quit_flag ();
c33e31fd
PA
9327}
9328
b3ced9ba
PA
9329/* Return a string representing an escaped version of BUF, of len N.
9330 E.g. \n is converted to \\n, \t to \\t, etc. */
6e5abd65 9331
b3ced9ba 9332static std::string
6e5abd65
PA
9333escape_buffer (const char *buf, int n)
9334{
d7e74731 9335 string_file stb;
6e5abd65 9336
d7e74731
PA
9337 stb.putstrn (buf, n, '\\');
9338 return std::move (stb.string ());
6e5abd65
PA
9339}
9340
c906108c
SS
9341/* Display a null-terminated packet on stdout, for debugging, using C
9342 string notation. */
9343
9344static void
baa336ce 9345print_packet (const char *buf)
c906108c
SS
9346{
9347 puts_filtered ("\"");
43e526b9 9348 fputstr_filtered (buf, '"', gdb_stdout);
c906108c
SS
9349 puts_filtered ("\"");
9350}
9351
9352int
6b8edb51 9353remote_target::putpkt (const char *buf)
c906108c
SS
9354{
9355 return putpkt_binary (buf, strlen (buf));
9356}
9357
6b8edb51
PA
9358/* Wrapper around remote_target::putpkt to avoid exporting
9359 remote_target. */
9360
9361int
9362putpkt (remote_target *remote, const char *buf)
9363{
9364 return remote->putpkt (buf);
9365}
9366
c906108c 9367/* Send a packet to the remote machine, with error checking. The data
23860348 9368 of the packet is in BUF. The string in BUF can be at most
ea9c271d 9369 get_remote_packet_size () - 5 to account for the $, # and checksum,
23860348
MS
9370 and for a possible /0 if we are debugging (remote_debug) and want
9371 to print the sent packet as a string. */
c906108c 9372
6b8edb51
PA
9373int
9374remote_target::putpkt_binary (const char *buf, int cnt)
c906108c 9375{
2d717e4f 9376 struct remote_state *rs = get_remote_state ();
c906108c
SS
9377 int i;
9378 unsigned char csum = 0;
b80406ac
TT
9379 gdb::def_vector<char> data (cnt + 6);
9380 char *buf2 = data.data ();
085dd6e6 9381
c906108c
SS
9382 int ch;
9383 int tcount = 0;
9384 char *p;
9385
e24a49d8
PA
9386 /* Catch cases like trying to read memory or listing threads while
9387 we're waiting for a stop reply. The remote server wouldn't be
9388 ready to handle this request, so we'd hang and timeout. We don't
9389 have to worry about this in synchronous mode, because in that
9390 case it's not possible to issue a command while the target is
74531fed
PA
9391 running. This is not a problem in non-stop mode, because in that
9392 case, the stub is always ready to process serial input. */
6efcd9a8
PA
9393 if (!target_is_non_stop_p ()
9394 && target_is_async_p ()
9395 && rs->waiting_for_stop_reply)
9597b22a
DE
9396 {
9397 error (_("Cannot execute this command while the target is running.\n"
9398 "Use the \"interrupt\" command to stop the target\n"
9399 "and then try again."));
9400 }
e24a49d8 9401
2d717e4f
DJ
9402 /* We're sending out a new packet. Make sure we don't look at a
9403 stale cached response. */
9404 rs->cached_wait_status = 0;
9405
c906108c
SS
9406 /* Copy the packet into buffer BUF2, encapsulating it
9407 and giving it a checksum. */
9408
c906108c
SS
9409 p = buf2;
9410 *p++ = '$';
9411
9412 for (i = 0; i < cnt; i++)
9413 {
9414 csum += buf[i];
9415 *p++ = buf[i];
9416 }
9417 *p++ = '#';
9418 *p++ = tohex ((csum >> 4) & 0xf);
9419 *p++ = tohex (csum & 0xf);
9420
9421 /* Send it over and over until we get a positive ack. */
9422
9423 while (1)
9424 {
9425 int started_error_output = 0;
9426
9427 if (remote_debug)
9428 {
9429 *p = '\0';
b3ced9ba 9430
6f8976bf 9431 int len = (int) (p - buf2);
6cc8564b
LM
9432 int max_chars;
9433
9434 if (remote_packet_max_chars < 0)
9435 max_chars = len;
9436 else
9437 max_chars = remote_packet_max_chars;
6f8976bf
YQ
9438
9439 std::string str
6cc8564b 9440 = escape_buffer (buf2, std::min (len, max_chars));
6f8976bf
YQ
9441
9442 fprintf_unfiltered (gdb_stdlog, "Sending packet: %s", str.c_str ());
9443
6cc8564b 9444 if (len > max_chars)
567a3e54 9445 fprintf_unfiltered (gdb_stdlog, "[%d bytes omitted]",
6cc8564b 9446 len - max_chars);
6f8976bf
YQ
9447
9448 fprintf_unfiltered (gdb_stdlog, "...");
b3ced9ba 9449
0f71a2f6 9450 gdb_flush (gdb_stdlog);
c906108c 9451 }
c33e31fd 9452 remote_serial_write (buf2, p - buf2);
c906108c 9453
a6f3e723
SL
9454 /* If this is a no acks version of the remote protocol, send the
9455 packet and move on. */
9456 if (rs->noack_mode)
dda83cd7 9457 break;
a6f3e723 9458
74531fed
PA
9459 /* Read until either a timeout occurs (-2) or '+' is read.
9460 Handle any notification that arrives in the mean time. */
c906108c
SS
9461 while (1)
9462 {
9463 ch = readchar (remote_timeout);
9464
c5aa993b 9465 if (remote_debug)
c906108c
SS
9466 {
9467 switch (ch)
9468 {
9469 case '+':
1216fa2c 9470 case '-':
c906108c
SS
9471 case SERIAL_TIMEOUT:
9472 case '$':
74531fed 9473 case '%':
c906108c
SS
9474 if (started_error_output)
9475 {
9476 putchar_unfiltered ('\n');
9477 started_error_output = 0;
9478 }
9479 }
9480 }
9481
9482 switch (ch)
9483 {
9484 case '+':
9485 if (remote_debug)
0f71a2f6 9486 fprintf_unfiltered (gdb_stdlog, "Ack\n");
c906108c 9487 return 1;
1216fa2c
AC
9488 case '-':
9489 if (remote_debug)
9490 fprintf_unfiltered (gdb_stdlog, "Nak\n");
a17d146e 9491 /* FALLTHROUGH */
c906108c 9492 case SERIAL_TIMEOUT:
c5aa993b 9493 tcount++;
c906108c 9494 if (tcount > 3)
b80406ac 9495 return 0;
23860348 9496 break; /* Retransmit buffer. */
c906108c
SS
9497 case '$':
9498 {
dda83cd7 9499 if (remote_debug)
2bc416ba 9500 fprintf_unfiltered (gdb_stdlog,
23860348 9501 "Packet instead of Ack, ignoring it\n");
d6f7abdf
AC
9502 /* It's probably an old response sent because an ACK
9503 was lost. Gobble up the packet and ack it so it
9504 doesn't get retransmitted when we resend this
9505 packet. */
6d820c5c 9506 skip_frame ();
c33e31fd 9507 remote_serial_write ("+", 1);
23860348 9508 continue; /* Now, go look for +. */
c906108c 9509 }
74531fed
PA
9510
9511 case '%':
9512 {
9513 int val;
9514
9515 /* If we got a notification, handle it, and go back to looking
9516 for an ack. */
9517 /* We've found the start of a notification. Now
9518 collect the data. */
8d64371b 9519 val = read_frame (&rs->buf);
74531fed
PA
9520 if (val >= 0)
9521 {
9522 if (remote_debug)
9523 {
8d64371b 9524 std::string str = escape_buffer (rs->buf.data (), val);
6e5abd65 9525
6e5abd65
PA
9526 fprintf_unfiltered (gdb_stdlog,
9527 " Notification received: %s\n",
b3ced9ba 9528 str.c_str ());
74531fed 9529 }
8d64371b 9530 handle_notification (rs->notif_state, rs->buf.data ());
74531fed
PA
9531 /* We're in sync now, rewait for the ack. */
9532 tcount = 0;
9533 }
9534 else
9535 {
9536 if (remote_debug)
9537 {
9538 if (!started_error_output)
9539 {
9540 started_error_output = 1;
9541 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
9542 }
9543 fputc_unfiltered (ch & 0177, gdb_stdlog);
8d64371b 9544 fprintf_unfiltered (gdb_stdlog, "%s", rs->buf.data ());
74531fed
PA
9545 }
9546 }
9547 continue;
9548 }
9549 /* fall-through */
c906108c
SS
9550 default:
9551 if (remote_debug)
9552 {
9553 if (!started_error_output)
9554 {
9555 started_error_output = 1;
0f71a2f6 9556 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
c906108c 9557 }
0f71a2f6 9558 fputc_unfiltered (ch & 0177, gdb_stdlog);
c906108c
SS
9559 }
9560 continue;
9561 }
23860348 9562 break; /* Here to retransmit. */
c906108c
SS
9563 }
9564
9565#if 0
9566 /* This is wrong. If doing a long backtrace, the user should be
dda83cd7
SM
9567 able to get out next time we call QUIT, without anything as
9568 violent as interrupt_query. If we want to provide a way out of
9569 here without getting to the next QUIT, it should be based on
9570 hitting ^C twice as in remote_wait. */
c906108c
SS
9571 if (quit_flag)
9572 {
9573 quit_flag = 0;
9574 interrupt_query ();
9575 }
9576#endif
9577 }
a5c0808e 9578
a6f3e723 9579 return 0;
c906108c
SS
9580}
9581
6d820c5c
DJ
9582/* Come here after finding the start of a frame when we expected an
9583 ack. Do our best to discard the rest of this packet. */
9584
6b8edb51
PA
9585void
9586remote_target::skip_frame ()
6d820c5c
DJ
9587{
9588 int c;
9589
9590 while (1)
9591 {
9592 c = readchar (remote_timeout);
9593 switch (c)
9594 {
9595 case SERIAL_TIMEOUT:
9596 /* Nothing we can do. */
9597 return;
9598 case '#':
9599 /* Discard the two bytes of checksum and stop. */
9600 c = readchar (remote_timeout);
9601 if (c >= 0)
9602 c = readchar (remote_timeout);
9603
9604 return;
9605 case '*': /* Run length encoding. */
9606 /* Discard the repeat count. */
9607 c = readchar (remote_timeout);
9608 if (c < 0)
9609 return;
9610 break;
9611 default:
9612 /* A regular character. */
9613 break;
9614 }
9615 }
9616}
9617
c906108c 9618/* Come here after finding the start of the frame. Collect the rest
6d820c5c
DJ
9619 into *BUF, verifying the checksum, length, and handling run-length
9620 compression. NUL terminate the buffer. If there is not enough room,
8d64371b 9621 expand *BUF.
c906108c 9622
c2d11a7d
JM
9623 Returns -1 on error, number of characters in buffer (ignoring the
9624 trailing NULL) on success. (could be extended to return one of the
23860348 9625 SERIAL status indications). */
c2d11a7d 9626
6b8edb51 9627long
8d64371b 9628remote_target::read_frame (gdb::char_vector *buf_p)
c906108c
SS
9629{
9630 unsigned char csum;
c2d11a7d 9631 long bc;
c906108c 9632 int c;
8d64371b 9633 char *buf = buf_p->data ();
a6f3e723 9634 struct remote_state *rs = get_remote_state ();
c906108c
SS
9635
9636 csum = 0;
c2d11a7d 9637 bc = 0;
c906108c
SS
9638
9639 while (1)
9640 {
9641 c = readchar (remote_timeout);
c906108c
SS
9642 switch (c)
9643 {
9644 case SERIAL_TIMEOUT:
9645 if (remote_debug)
0f71a2f6 9646 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog);
c2d11a7d 9647 return -1;
c906108c
SS
9648 case '$':
9649 if (remote_debug)
0f71a2f6
JM
9650 fputs_filtered ("Saw new packet start in middle of old one\n",
9651 gdb_stdlog);
23860348 9652 return -1; /* Start a new packet, count retries. */
c906108c
SS
9653 case '#':
9654 {
9655 unsigned char pktcsum;
e1b09194
AC
9656 int check_0 = 0;
9657 int check_1 = 0;
c906108c 9658
c2d11a7d 9659 buf[bc] = '\0';
c906108c 9660
e1b09194
AC
9661 check_0 = readchar (remote_timeout);
9662 if (check_0 >= 0)
9663 check_1 = readchar (remote_timeout);
802188a7 9664
e1b09194
AC
9665 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
9666 {
9667 if (remote_debug)
2bc416ba 9668 fputs_filtered ("Timeout in checksum, retrying\n",
23860348 9669 gdb_stdlog);
e1b09194
AC
9670 return -1;
9671 }
9672 else if (check_0 < 0 || check_1 < 0)
40e3f985
FN
9673 {
9674 if (remote_debug)
2bc416ba 9675 fputs_filtered ("Communication error in checksum\n",
23860348 9676 gdb_stdlog);
40e3f985
FN
9677 return -1;
9678 }
c906108c 9679
a6f3e723
SL
9680 /* Don't recompute the checksum; with no ack packets we
9681 don't have any way to indicate a packet retransmission
9682 is necessary. */
9683 if (rs->noack_mode)
9684 return bc;
9685
e1b09194 9686 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
c906108c 9687 if (csum == pktcsum)
dda83cd7 9688 return bc;
c906108c 9689
c5aa993b 9690 if (remote_debug)
c906108c 9691 {
b3ced9ba 9692 std::string str = escape_buffer (buf, bc);
6e5abd65 9693
6e5abd65 9694 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
9695 "Bad checksum, sentsum=0x%x, "
9696 "csum=0x%x, buf=%s\n",
b3ced9ba 9697 pktcsum, csum, str.c_str ());
c906108c 9698 }
c2d11a7d 9699 /* Number of characters in buffer ignoring trailing
dda83cd7 9700 NULL. */
c2d11a7d 9701 return -1;
c906108c 9702 }
23860348 9703 case '*': /* Run length encoding. */
dda83cd7 9704 {
c2c6d25f 9705 int repeat;
c906108c 9706
a744cf53 9707 csum += c;
b4501125
AC
9708 c = readchar (remote_timeout);
9709 csum += c;
23860348 9710 repeat = c - ' ' + 3; /* Compute repeat count. */
c906108c 9711
23860348 9712 /* The character before ``*'' is repeated. */
c2d11a7d 9713
6d820c5c 9714 if (repeat > 0 && repeat <= 255 && bc > 0)
c2c6d25f 9715 {
8d64371b 9716 if (bc + repeat - 1 >= buf_p->size () - 1)
6d820c5c
DJ
9717 {
9718 /* Make some more room in the buffer. */
8d64371b
TT
9719 buf_p->resize (buf_p->size () + repeat);
9720 buf = buf_p->data ();
6d820c5c
DJ
9721 }
9722
c2d11a7d
JM
9723 memset (&buf[bc], buf[bc - 1], repeat);
9724 bc += repeat;
c2c6d25f
JM
9725 continue;
9726 }
9727
c2d11a7d 9728 buf[bc] = '\0';
6d820c5c 9729 printf_filtered (_("Invalid run length encoding: %s\n"), buf);
c2d11a7d 9730 return -1;
c2c6d25f 9731 }
c906108c 9732 default:
8d64371b 9733 if (bc >= buf_p->size () - 1)
c906108c 9734 {
6d820c5c 9735 /* Make some more room in the buffer. */
8d64371b
TT
9736 buf_p->resize (buf_p->size () * 2);
9737 buf = buf_p->data ();
c906108c
SS
9738 }
9739
6d820c5c
DJ
9740 buf[bc++] = c;
9741 csum += c;
9742 continue;
c906108c
SS
9743 }
9744 }
9745}
9746
ed2b7c17
TT
9747/* Set this to the maximum number of seconds to wait instead of waiting forever
9748 in target_wait(). If this timer times out, then it generates an error and
9749 the command is aborted. This replaces most of the need for timeouts in the
9750 GDB test suite, and makes it possible to distinguish between a hung target
9751 and one with slow communications. */
9752
9753static int watchdog = 0;
9754static void
9755show_watchdog (struct ui_file *file, int from_tty,
9756 struct cmd_list_element *c, const char *value)
9757{
9758 fprintf_filtered (file, _("Watchdog timer is %s.\n"), value);
9759}
9760
c906108c 9761/* Read a packet from the remote machine, with error checking, and
8d64371b
TT
9762 store it in *BUF. Resize *BUF if necessary to hold the result. If
9763 FOREVER, wait forever rather than timing out; this is used (in
9764 synchronous mode) to wait for a target that is is executing user
9765 code to stop. */
d9fcf2fb
JM
9766/* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
9767 don't have to change all the calls to getpkt to deal with the
9768 return value, because at the moment I don't know what the right
23860348 9769 thing to do it for those. */
6b8edb51 9770
c906108c 9771void
8d64371b 9772remote_target::getpkt (gdb::char_vector *buf, int forever)
d9fcf2fb 9773{
8d64371b 9774 getpkt_sane (buf, forever);
d9fcf2fb
JM
9775}
9776
9777
9778/* Read a packet from the remote machine, with error checking, and
8d64371b
TT
9779 store it in *BUF. Resize *BUF if necessary to hold the result. If
9780 FOREVER, wait forever rather than timing out; this is used (in
9781 synchronous mode) to wait for a target that is is executing user
9782 code to stop. If FOREVER == 0, this function is allowed to time
9783 out gracefully and return an indication of this to the caller.
9784 Otherwise return the number of bytes read. If EXPECTING_NOTIF,
9785 consider receiving a notification enough reason to return to the
9786 caller. *IS_NOTIF is an output boolean that indicates whether *BUF
9787 holds a notification or not (a regular packet). */
74531fed 9788
6b8edb51 9789int
8d64371b 9790remote_target::getpkt_or_notif_sane_1 (gdb::char_vector *buf,
6b8edb51
PA
9791 int forever, int expecting_notif,
9792 int *is_notif)
c906108c 9793{
2d717e4f 9794 struct remote_state *rs = get_remote_state ();
c906108c
SS
9795 int c;
9796 int tries;
9797 int timeout;
df4b58fe 9798 int val = -1;
c906108c 9799
2d717e4f
DJ
9800 /* We're reading a new response. Make sure we don't look at a
9801 previously cached response. */
9802 rs->cached_wait_status = 0;
9803
8d64371b 9804 strcpy (buf->data (), "timeout");
c906108c
SS
9805
9806 if (forever)
74531fed
PA
9807 timeout = watchdog > 0 ? watchdog : -1;
9808 else if (expecting_notif)
9809 timeout = 0; /* There should already be a char in the buffer. If
9810 not, bail out. */
c906108c
SS
9811 else
9812 timeout = remote_timeout;
9813
9814#define MAX_TRIES 3
9815
74531fed
PA
9816 /* Process any number of notifications, and then return when
9817 we get a packet. */
9818 for (;;)
c906108c 9819 {
d9c43928 9820 /* If we get a timeout or bad checksum, retry up to MAX_TRIES
74531fed
PA
9821 times. */
9822 for (tries = 1; tries <= MAX_TRIES; tries++)
c906108c 9823 {
74531fed
PA
9824 /* This can loop forever if the remote side sends us
9825 characters continuously, but if it pauses, we'll get
9826 SERIAL_TIMEOUT from readchar because of timeout. Then
9827 we'll count that as a retry.
9828
9829 Note that even when forever is set, we will only wait
9830 forever prior to the start of a packet. After that, we
9831 expect characters to arrive at a brisk pace. They should
9832 show up within remote_timeout intervals. */
9833 do
9834 c = readchar (timeout);
9835 while (c != SERIAL_TIMEOUT && c != '$' && c != '%');
c906108c
SS
9836
9837 if (c == SERIAL_TIMEOUT)
9838 {
74531fed
PA
9839 if (expecting_notif)
9840 return -1; /* Don't complain, it's normal to not get
9841 anything in this case. */
9842
23860348 9843 if (forever) /* Watchdog went off? Kill the target. */
c906108c 9844 {
5b6d1e4f 9845 remote_unpush_target (this);
598d3636
JK
9846 throw_error (TARGET_CLOSE_ERROR,
9847 _("Watchdog timeout has expired. "
9848 "Target detached."));
c906108c 9849 }
c906108c 9850 if (remote_debug)
0f71a2f6 9851 fputs_filtered ("Timed out.\n", gdb_stdlog);
c906108c 9852 }
74531fed
PA
9853 else
9854 {
9855 /* We've found the start of a packet or notification.
9856 Now collect the data. */
8d64371b 9857 val = read_frame (buf);
74531fed
PA
9858 if (val >= 0)
9859 break;
9860 }
9861
c33e31fd 9862 remote_serial_write ("-", 1);
c906108c 9863 }
c906108c 9864
74531fed
PA
9865 if (tries > MAX_TRIES)
9866 {
9867 /* We have tried hard enough, and just can't receive the
9868 packet/notification. Give up. */
9869 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
c906108c 9870
74531fed
PA
9871 /* Skip the ack char if we're in no-ack mode. */
9872 if (!rs->noack_mode)
c33e31fd 9873 remote_serial_write ("+", 1);
74531fed
PA
9874 return -1;
9875 }
c906108c 9876
74531fed
PA
9877 /* If we got an ordinary packet, return that to our caller. */
9878 if (c == '$')
c906108c
SS
9879 {
9880 if (remote_debug)
43e526b9 9881 {
6cc8564b
LM
9882 int max_chars;
9883
9884 if (remote_packet_max_chars < 0)
9885 max_chars = val;
9886 else
9887 max_chars = remote_packet_max_chars;
9888
6f8976bf 9889 std::string str
8d64371b 9890 = escape_buffer (buf->data (),
6cc8564b 9891 std::min (val, max_chars));
6f8976bf
YQ
9892
9893 fprintf_unfiltered (gdb_stdlog, "Packet received: %s",
9894 str.c_str ());
9895
6cc8564b 9896 if (val > max_chars)
567a3e54 9897 fprintf_unfiltered (gdb_stdlog, "[%d bytes omitted]",
6cc8564b 9898 val - max_chars);
6e5abd65 9899
6f8976bf 9900 fprintf_unfiltered (gdb_stdlog, "\n");
43e526b9 9901 }
a6f3e723
SL
9902
9903 /* Skip the ack char if we're in no-ack mode. */
9904 if (!rs->noack_mode)
c33e31fd 9905 remote_serial_write ("+", 1);
fee9eda9
YQ
9906 if (is_notif != NULL)
9907 *is_notif = 0;
0876f84a 9908 return val;
c906108c
SS
9909 }
9910
74531fed
PA
9911 /* If we got a notification, handle it, and go back to looking
9912 for a packet. */
9913 else
9914 {
9915 gdb_assert (c == '%');
9916
9917 if (remote_debug)
9918 {
8d64371b 9919 std::string str = escape_buffer (buf->data (), val);
6e5abd65 9920
6e5abd65
PA
9921 fprintf_unfiltered (gdb_stdlog,
9922 " Notification received: %s\n",
b3ced9ba 9923 str.c_str ());
74531fed 9924 }
fee9eda9
YQ
9925 if (is_notif != NULL)
9926 *is_notif = 1;
c906108c 9927
8d64371b 9928 handle_notification (rs->notif_state, buf->data ());
c906108c 9929
74531fed 9930 /* Notifications require no acknowledgement. */
a6f3e723 9931
74531fed 9932 if (expecting_notif)
fee9eda9 9933 return val;
74531fed
PA
9934 }
9935 }
9936}
9937
6b8edb51 9938int
8d64371b 9939remote_target::getpkt_sane (gdb::char_vector *buf, int forever)
74531fed 9940{
8d64371b 9941 return getpkt_or_notif_sane_1 (buf, forever, 0, NULL);
74531fed
PA
9942}
9943
6b8edb51 9944int
8d64371b 9945remote_target::getpkt_or_notif_sane (gdb::char_vector *buf, int forever,
6b8edb51 9946 int *is_notif)
74531fed 9947{
8d64371b 9948 return getpkt_or_notif_sane_1 (buf, forever, 1, is_notif);
c906108c 9949}
74531fed 9950
cbb8991c
DB
9951/* Kill any new fork children of process PID that haven't been
9952 processed by follow_fork. */
9953
6b8edb51
PA
9954void
9955remote_target::kill_new_fork_children (int pid)
cbb8991c 9956{
6b8edb51 9957 remote_state *rs = get_remote_state ();
cbb8991c 9958 struct notif_client *notif = &notif_client_stop;
cbb8991c
DB
9959
9960 /* Kill the fork child threads of any threads in process PID
9961 that are stopped at a fork event. */
5b6d1e4f 9962 for (thread_info *thread : all_non_exited_threads (this))
cbb8991c
DB
9963 {
9964 struct target_waitstatus *ws = &thread->pending_follow;
9965
9966 if (is_pending_fork_parent (ws, pid, thread->ptid))
9967 {
953edf2b 9968 int child_pid = ws->value.related_pid.pid ();
cbb8991c
DB
9969 int res;
9970
6b8edb51 9971 res = remote_vkill (child_pid);
cbb8991c
DB
9972 if (res != 0)
9973 error (_("Can't kill fork child process %d"), child_pid);
9974 }
9975 }
9976
9977 /* Check for any pending fork events (not reported or processed yet)
9978 in process PID and kill those fork child threads as well. */
9979 remote_notif_get_pending_events (notif);
953edf2b
TT
9980 for (auto &event : rs->stop_reply_queue)
9981 if (is_pending_fork_parent (&event->ws, pid, event->ptid))
9982 {
9983 int child_pid = event->ws.value.related_pid.pid ();
9984 int res;
9985
9986 res = remote_vkill (child_pid);
9987 if (res != 0)
9988 error (_("Can't kill fork child process %d"), child_pid);
9989 }
cbb8991c
DB
9990}
9991
c906108c 9992\f
8020350c
DB
9993/* Target hook to kill the current inferior. */
9994
f6ac5f3d
PA
9995void
9996remote_target::kill ()
43ff13b4 9997{
8020350c 9998 int res = -1;
e99b03dc 9999 int pid = inferior_ptid.pid ();
8020350c 10000 struct remote_state *rs = get_remote_state ();
0fdf84ca 10001
8020350c 10002 if (packet_support (PACKET_vKill) != PACKET_DISABLE)
0fdf84ca 10003 {
8020350c
DB
10004 /* If we're stopped while forking and we haven't followed yet,
10005 kill the child task. We need to do this before killing the
10006 parent task because if this is a vfork then the parent will
10007 be sleeping. */
6b8edb51 10008 kill_new_fork_children (pid);
8020350c 10009
6b8edb51 10010 res = remote_vkill (pid);
8020350c 10011 if (res == 0)
0fdf84ca 10012 {
bc1e6c81 10013 target_mourn_inferior (inferior_ptid);
0fdf84ca
PA
10014 return;
10015 }
8020350c 10016 }
0fdf84ca 10017
8020350c
DB
10018 /* If we are in 'target remote' mode and we are killing the only
10019 inferior, then we will tell gdbserver to exit and unpush the
10020 target. */
10021 if (res == -1 && !remote_multi_process_p (rs)
5b6d1e4f 10022 && number_of_live_inferiors (this) == 1)
8020350c
DB
10023 {
10024 remote_kill_k ();
10025
10026 /* We've killed the remote end, we get to mourn it. If we are
10027 not in extended mode, mourning the inferior also unpushes
10028 remote_ops from the target stack, which closes the remote
10029 connection. */
bc1e6c81 10030 target_mourn_inferior (inferior_ptid);
8020350c
DB
10031
10032 return;
0fdf84ca 10033 }
43ff13b4 10034
8020350c 10035 error (_("Can't kill process"));
43ff13b4
JM
10036}
10037
8020350c
DB
10038/* Send a kill request to the target using the 'vKill' packet. */
10039
6b8edb51
PA
10040int
10041remote_target::remote_vkill (int pid)
82f73884 10042{
4082afcc 10043 if (packet_support (PACKET_vKill) == PACKET_DISABLE)
82f73884
PA
10044 return -1;
10045
6b8edb51
PA
10046 remote_state *rs = get_remote_state ();
10047
82f73884 10048 /* Tell the remote target to detach. */
8d64371b 10049 xsnprintf (rs->buf.data (), get_remote_packet_size (), "vKill;%x", pid);
82f73884 10050 putpkt (rs->buf);
8d64371b 10051 getpkt (&rs->buf, 0);
82f73884 10052
4082afcc
PA
10053 switch (packet_ok (rs->buf,
10054 &remote_protocol_packets[PACKET_vKill]))
10055 {
10056 case PACKET_OK:
10057 return 0;
10058 case PACKET_ERROR:
10059 return 1;
10060 case PACKET_UNKNOWN:
10061 return -1;
10062 default:
10063 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
10064 }
82f73884
PA
10065}
10066
8020350c
DB
10067/* Send a kill request to the target using the 'k' packet. */
10068
6b8edb51
PA
10069void
10070remote_target::remote_kill_k ()
82f73884 10071{
8020350c
DB
10072 /* Catch errors so the user can quit from gdb even when we
10073 aren't on speaking terms with the remote system. */
a70b8144 10074 try
82f73884 10075 {
82f73884 10076 putpkt ("k");
82f73884 10077 }
230d2906 10078 catch (const gdb_exception_error &ex)
8020350c
DB
10079 {
10080 if (ex.error == TARGET_CLOSE_ERROR)
10081 {
10082 /* If we got an (EOF) error that caused the target
10083 to go away, then we're done, that's what we wanted.
10084 "k" is susceptible to cause a premature EOF, given
10085 that the remote server isn't actually required to
10086 reply to "k", and it can happen that it doesn't
10087 even get to reply ACK to the "k". */
10088 return;
10089 }
82f73884 10090
8020350c
DB
10091 /* Otherwise, something went wrong. We didn't actually kill
10092 the target. Just propagate the exception, and let the
10093 user or higher layers decide what to do. */
eedc3f4f 10094 throw;
8020350c 10095 }
82f73884
PA
10096}
10097
f6ac5f3d
PA
10098void
10099remote_target::mourn_inferior ()
c906108c 10100{
8020350c 10101 struct remote_state *rs = get_remote_state ();
ce5ce7ed 10102
9607784a
PA
10103 /* We're no longer interested in notification events of an inferior
10104 that exited or was killed/detached. */
10105 discard_pending_stop_replies (current_inferior ());
10106
8020350c 10107 /* In 'target remote' mode with one inferior, we close the connection. */
5b6d1e4f 10108 if (!rs->extended && number_of_live_inferiors (this) <= 1)
8020350c 10109 {
5b6d1e4f 10110 remote_unpush_target (this);
8020350c
DB
10111 return;
10112 }
c906108c 10113
e24a49d8
PA
10114 /* In case we got here due to an error, but we're going to stay
10115 connected. */
10116 rs->waiting_for_stop_reply = 0;
10117
dc1981d7
PA
10118 /* If the current general thread belonged to the process we just
10119 detached from or has exited, the remote side current general
10120 thread becomes undefined. Considering a case like this:
10121
10122 - We just got here due to a detach.
10123 - The process that we're detaching from happens to immediately
10124 report a global breakpoint being hit in non-stop mode, in the
10125 same thread we had selected before.
10126 - GDB attaches to this process again.
10127 - This event happens to be the next event we handle.
10128
10129 GDB would consider that the current general thread didn't need to
10130 be set on the stub side (with Hg), since for all it knew,
10131 GENERAL_THREAD hadn't changed.
10132
10133 Notice that although in all-stop mode, the remote server always
10134 sets the current thread to the thread reporting the stop event,
10135 that doesn't happen in non-stop mode; in non-stop, the stub *must
10136 not* change the current thread when reporting a breakpoint hit,
10137 due to the decoupling of event reporting and event handling.
10138
10139 To keep things simple, we always invalidate our notion of the
10140 current thread. */
47f8a51d 10141 record_currthread (rs, minus_one_ptid);
dc1981d7 10142
8020350c 10143 /* Call common code to mark the inferior as not running. */
48aa3c27 10144 generic_mourn_inferior ();
2d717e4f 10145}
c906108c 10146
57810aa7 10147bool
f6ac5f3d 10148extended_remote_target::supports_disable_randomization ()
03583c20 10149{
4082afcc 10150 return packet_support (PACKET_QDisableRandomization) == PACKET_ENABLE;
03583c20
UW
10151}
10152
6b8edb51
PA
10153void
10154remote_target::extended_remote_disable_randomization (int val)
03583c20
UW
10155{
10156 struct remote_state *rs = get_remote_state ();
10157 char *reply;
10158
8d64371b
TT
10159 xsnprintf (rs->buf.data (), get_remote_packet_size (),
10160 "QDisableRandomization:%x", val);
03583c20 10161 putpkt (rs->buf);
b6bb3468 10162 reply = remote_get_noisy_reply ();
03583c20
UW
10163 if (*reply == '\0')
10164 error (_("Target does not support QDisableRandomization."));
10165 if (strcmp (reply, "OK") != 0)
10166 error (_("Bogus QDisableRandomization reply from target: %s"), reply);
10167}
10168
6b8edb51
PA
10169int
10170remote_target::extended_remote_run (const std::string &args)
2d717e4f
DJ
10171{
10172 struct remote_state *rs = get_remote_state ();
2d717e4f 10173 int len;
94585166 10174 const char *remote_exec_file = get_remote_exec_file ();
c906108c 10175
2d717e4f
DJ
10176 /* If the user has disabled vRun support, or we have detected that
10177 support is not available, do not try it. */
4082afcc 10178 if (packet_support (PACKET_vRun) == PACKET_DISABLE)
2d717e4f 10179 return -1;
424163ea 10180
8d64371b
TT
10181 strcpy (rs->buf.data (), "vRun;");
10182 len = strlen (rs->buf.data ());
c906108c 10183
2d717e4f
DJ
10184 if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ())
10185 error (_("Remote file name too long for run packet"));
8d64371b 10186 len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf.data () + len,
9f1b45b0 10187 strlen (remote_exec_file));
2d717e4f 10188
7c5ded6a 10189 if (!args.empty ())
2d717e4f 10190 {
2d717e4f 10191 int i;
2d717e4f 10192
773a1edc 10193 gdb_argv argv (args.c_str ());
2d717e4f
DJ
10194 for (i = 0; argv[i] != NULL; i++)
10195 {
10196 if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ())
10197 error (_("Argument list too long for run packet"));
10198 rs->buf[len++] = ';';
8d64371b 10199 len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf.data () + len,
9f1b45b0 10200 strlen (argv[i]));
2d717e4f 10201 }
2d717e4f
DJ
10202 }
10203
10204 rs->buf[len++] = '\0';
10205
10206 putpkt (rs->buf);
8d64371b 10207 getpkt (&rs->buf, 0);
2d717e4f 10208
4082afcc 10209 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun]))
2d717e4f 10210 {
4082afcc 10211 case PACKET_OK:
3405876a 10212 /* We have a wait response. All is well. */
2d717e4f 10213 return 0;
4082afcc
PA
10214 case PACKET_UNKNOWN:
10215 return -1;
10216 case PACKET_ERROR:
2d717e4f
DJ
10217 if (remote_exec_file[0] == '\0')
10218 error (_("Running the default executable on the remote target failed; "
10219 "try \"set remote exec-file\"?"));
10220 else
10221 error (_("Running \"%s\" on the remote target failed"),
10222 remote_exec_file);
4082afcc
PA
10223 default:
10224 gdb_assert_not_reached (_("bad switch"));
2d717e4f 10225 }
c906108c
SS
10226}
10227
0a2dde4a
SDJ
10228/* Helper function to send set/unset environment packets. ACTION is
10229 either "set" or "unset". PACKET is either "QEnvironmentHexEncoded"
10230 or "QEnvironmentUnsetVariable". VALUE is the variable to be
10231 sent. */
10232
6b8edb51
PA
10233void
10234remote_target::send_environment_packet (const char *action,
10235 const char *packet,
10236 const char *value)
0a2dde4a 10237{
6b8edb51
PA
10238 remote_state *rs = get_remote_state ();
10239
0a2dde4a
SDJ
10240 /* Convert the environment variable to an hex string, which
10241 is the best format to be transmitted over the wire. */
10242 std::string encoded_value = bin2hex ((const gdb_byte *) value,
10243 strlen (value));
10244
8d64371b 10245 xsnprintf (rs->buf.data (), get_remote_packet_size (),
0a2dde4a
SDJ
10246 "%s:%s", packet, encoded_value.c_str ());
10247
10248 putpkt (rs->buf);
8d64371b
TT
10249 getpkt (&rs->buf, 0);
10250 if (strcmp (rs->buf.data (), "OK") != 0)
0a2dde4a
SDJ
10251 warning (_("Unable to %s environment variable '%s' on remote."),
10252 action, value);
10253}
10254
10255/* Helper function to handle the QEnvironment* packets. */
10256
6b8edb51
PA
10257void
10258remote_target::extended_remote_environment_support ()
0a2dde4a 10259{
6b8edb51
PA
10260 remote_state *rs = get_remote_state ();
10261
0a2dde4a
SDJ
10262 if (packet_support (PACKET_QEnvironmentReset) != PACKET_DISABLE)
10263 {
10264 putpkt ("QEnvironmentReset");
8d64371b
TT
10265 getpkt (&rs->buf, 0);
10266 if (strcmp (rs->buf.data (), "OK") != 0)
0a2dde4a
SDJ
10267 warning (_("Unable to reset environment on remote."));
10268 }
10269
10270 gdb_environ *e = &current_inferior ()->environment;
10271
10272 if (packet_support (PACKET_QEnvironmentHexEncoded) != PACKET_DISABLE)
10273 for (const std::string &el : e->user_set_env ())
6b8edb51 10274 send_environment_packet ("set", "QEnvironmentHexEncoded",
0a2dde4a
SDJ
10275 el.c_str ());
10276
10277 if (packet_support (PACKET_QEnvironmentUnset) != PACKET_DISABLE)
10278 for (const std::string &el : e->user_unset_env ())
6b8edb51 10279 send_environment_packet ("unset", "QEnvironmentUnset", el.c_str ());
0a2dde4a
SDJ
10280}
10281
bc3b087d
SDJ
10282/* Helper function to set the current working directory for the
10283 inferior in the remote target. */
10284
6b8edb51
PA
10285void
10286remote_target::extended_remote_set_inferior_cwd ()
bc3b087d
SDJ
10287{
10288 if (packet_support (PACKET_QSetWorkingDir) != PACKET_DISABLE)
10289 {
10290 const char *inferior_cwd = get_inferior_cwd ();
6b8edb51 10291 remote_state *rs = get_remote_state ();
bc3b087d
SDJ
10292
10293 if (inferior_cwd != NULL)
10294 {
10295 std::string hexpath = bin2hex ((const gdb_byte *) inferior_cwd,
10296 strlen (inferior_cwd));
10297
8d64371b 10298 xsnprintf (rs->buf.data (), get_remote_packet_size (),
bc3b087d
SDJ
10299 "QSetWorkingDir:%s", hexpath.c_str ());
10300 }
10301 else
10302 {
10303 /* An empty inferior_cwd means that the user wants us to
10304 reset the remote server's inferior's cwd. */
8d64371b 10305 xsnprintf (rs->buf.data (), get_remote_packet_size (),
bc3b087d
SDJ
10306 "QSetWorkingDir:");
10307 }
10308
10309 putpkt (rs->buf);
8d64371b 10310 getpkt (&rs->buf, 0);
bc3b087d
SDJ
10311 if (packet_ok (rs->buf,
10312 &remote_protocol_packets[PACKET_QSetWorkingDir])
10313 != PACKET_OK)
10314 error (_("\
10315Remote replied unexpectedly while setting the inferior's working\n\
10316directory: %s"),
8d64371b 10317 rs->buf.data ());
bc3b087d
SDJ
10318
10319 }
10320}
10321
2d717e4f
DJ
10322/* In the extended protocol we want to be able to do things like
10323 "run" and have them basically work as expected. So we need
10324 a special create_inferior function. We support changing the
10325 executable file and the command line arguments, but not the
10326 environment. */
10327
f6ac5f3d
PA
10328void
10329extended_remote_target::create_inferior (const char *exec_file,
10330 const std::string &args,
10331 char **env, int from_tty)
43ff13b4 10332{
3405876a
PA
10333 int run_worked;
10334 char *stop_reply;
10335 struct remote_state *rs = get_remote_state ();
94585166 10336 const char *remote_exec_file = get_remote_exec_file ();
3405876a 10337
43ff13b4 10338 /* If running asynchronously, register the target file descriptor
23860348 10339 with the event loop. */
75c99385 10340 if (target_can_async_p ())
6a3753b3 10341 target_async (1);
43ff13b4 10342
03583c20 10343 /* Disable address space randomization if requested (and supported). */
f6ac5f3d 10344 if (supports_disable_randomization ())
03583c20
UW
10345 extended_remote_disable_randomization (disable_randomization);
10346
aefd8b33
SDJ
10347 /* If startup-with-shell is on, we inform gdbserver to start the
10348 remote inferior using a shell. */
10349 if (packet_support (PACKET_QStartupWithShell) != PACKET_DISABLE)
10350 {
8d64371b 10351 xsnprintf (rs->buf.data (), get_remote_packet_size (),
aefd8b33
SDJ
10352 "QStartupWithShell:%d", startup_with_shell ? 1 : 0);
10353 putpkt (rs->buf);
8d64371b
TT
10354 getpkt (&rs->buf, 0);
10355 if (strcmp (rs->buf.data (), "OK") != 0)
aefd8b33
SDJ
10356 error (_("\
10357Remote replied unexpectedly while setting startup-with-shell: %s"),
8d64371b 10358 rs->buf.data ());
aefd8b33
SDJ
10359 }
10360
6b8edb51 10361 extended_remote_environment_support ();
0a2dde4a 10362
6b8edb51 10363 extended_remote_set_inferior_cwd ();
bc3b087d 10364
43ff13b4 10365 /* Now restart the remote server. */
3405876a
PA
10366 run_worked = extended_remote_run (args) != -1;
10367 if (!run_worked)
2d717e4f
DJ
10368 {
10369 /* vRun was not supported. Fail if we need it to do what the
10370 user requested. */
10371 if (remote_exec_file[0])
10372 error (_("Remote target does not support \"set remote exec-file\""));
7c5ded6a 10373 if (!args.empty ())
65e65158 10374 error (_("Remote target does not support \"set args\" or run ARGS"));
43ff13b4 10375
2d717e4f
DJ
10376 /* Fall back to "R". */
10377 extended_remote_restart ();
10378 }
424163ea 10379
3405876a 10380 /* vRun's success return is a stop reply. */
8d64371b 10381 stop_reply = run_worked ? rs->buf.data () : NULL;
3405876a 10382 add_current_inferior_and_thread (stop_reply);
c0a2216e 10383
2d717e4f
DJ
10384 /* Get updated offsets, if the stub uses qOffsets. */
10385 get_offsets ();
2d717e4f 10386}
c906108c 10387\f
c5aa993b 10388
b775012e
LM
10389/* Given a location's target info BP_TGT and the packet buffer BUF, output
10390 the list of conditions (in agent expression bytecode format), if any, the
10391 target needs to evaluate. The output is placed into the packet buffer
bba74b36 10392 started from BUF and ended at BUF_END. */
b775012e
LM
10393
10394static int
10395remote_add_target_side_condition (struct gdbarch *gdbarch,
bba74b36
YQ
10396 struct bp_target_info *bp_tgt, char *buf,
10397 char *buf_end)
b775012e 10398{
3cde5c42 10399 if (bp_tgt->conditions.empty ())
b775012e
LM
10400 return 0;
10401
10402 buf += strlen (buf);
bba74b36 10403 xsnprintf (buf, buf_end - buf, "%s", ";");
b775012e
LM
10404 buf++;
10405
83621223 10406 /* Send conditions to the target. */
d538e36d 10407 for (agent_expr *aexpr : bp_tgt->conditions)
b775012e 10408 {
bba74b36 10409 xsnprintf (buf, buf_end - buf, "X%x,", aexpr->len);
b775012e 10410 buf += strlen (buf);
3cde5c42 10411 for (int i = 0; i < aexpr->len; ++i)
b775012e
LM
10412 buf = pack_hex_byte (buf, aexpr->buf[i]);
10413 *buf = '\0';
10414 }
b775012e
LM
10415 return 0;
10416}
10417
d3ce09f5
SS
10418static void
10419remote_add_target_side_commands (struct gdbarch *gdbarch,
10420 struct bp_target_info *bp_tgt, char *buf)
10421{
3cde5c42 10422 if (bp_tgt->tcommands.empty ())
d3ce09f5
SS
10423 return;
10424
10425 buf += strlen (buf);
10426
10427 sprintf (buf, ";cmds:%x,", bp_tgt->persist);
10428 buf += strlen (buf);
10429
10430 /* Concatenate all the agent expressions that are commands into the
10431 cmds parameter. */
df97be55 10432 for (agent_expr *aexpr : bp_tgt->tcommands)
d3ce09f5
SS
10433 {
10434 sprintf (buf, "X%x,", aexpr->len);
10435 buf += strlen (buf);
3cde5c42 10436 for (int i = 0; i < aexpr->len; ++i)
d3ce09f5
SS
10437 buf = pack_hex_byte (buf, aexpr->buf[i]);
10438 *buf = '\0';
10439 }
d3ce09f5
SS
10440}
10441
8181d85f
DJ
10442/* Insert a breakpoint. On targets that have software breakpoint
10443 support, we ask the remote target to do the work; on targets
10444 which don't, we insert a traditional memory breakpoint. */
c906108c 10445
f6ac5f3d
PA
10446int
10447remote_target::insert_breakpoint (struct gdbarch *gdbarch,
10448 struct bp_target_info *bp_tgt)
c906108c 10449{
d471ea57
AC
10450 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
10451 If it succeeds, then set the support to PACKET_ENABLE. If it
10452 fails, and the user has explicitly requested the Z support then
23860348 10453 report an error, otherwise, mark it disabled and go on. */
802188a7 10454
4082afcc 10455 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 10456 {
0d5ed153 10457 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 10458 struct remote_state *rs;
bba74b36 10459 char *p, *endbuf;
4fff2411 10460
28439a30
PA
10461 /* Make sure the remote is pointing at the right process, if
10462 necessary. */
10463 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10464 set_general_process ();
10465
4fff2411 10466 rs = get_remote_state ();
8d64371b
TT
10467 p = rs->buf.data ();
10468 endbuf = p + get_remote_packet_size ();
802188a7 10469
96baa820
JM
10470 *(p++) = 'Z';
10471 *(p++) = '0';
10472 *(p++) = ',';
7c0f6dcc 10473 addr = (ULONGEST) remote_address_masked (addr);
8181d85f 10474 p += hexnumstr (p, addr);
579c6ad9 10475 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
802188a7 10476
f6ac5f3d 10477 if (supports_evaluation_of_breakpoint_conditions ())
bba74b36 10478 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 10479
f6ac5f3d 10480 if (can_run_breakpoint_commands ())
d3ce09f5
SS
10481 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10482
6d820c5c 10483 putpkt (rs->buf);
8d64371b 10484 getpkt (&rs->buf, 0);
96baa820 10485
6d820c5c 10486 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
96baa820 10487 {
d471ea57
AC
10488 case PACKET_ERROR:
10489 return -1;
10490 case PACKET_OK:
10491 return 0;
10492 case PACKET_UNKNOWN:
10493 break;
96baa820
JM
10494 }
10495 }
c906108c 10496
0000e5cc
PA
10497 /* If this breakpoint has target-side commands but this stub doesn't
10498 support Z0 packets, throw error. */
3cde5c42 10499 if (!bp_tgt->tcommands.empty ())
0000e5cc
PA
10500 throw_error (NOT_SUPPORTED_ERROR, _("\
10501Target doesn't support breakpoints that have target side commands."));
10502
f6ac5f3d 10503 return memory_insert_breakpoint (this, gdbarch, bp_tgt);
c906108c
SS
10504}
10505
f6ac5f3d
PA
10506int
10507remote_target::remove_breakpoint (struct gdbarch *gdbarch,
10508 struct bp_target_info *bp_tgt,
10509 enum remove_bp_reason reason)
c906108c 10510{
8181d85f 10511 CORE_ADDR addr = bp_tgt->placed_address;
d01949b6 10512 struct remote_state *rs = get_remote_state ();
96baa820 10513
4082afcc 10514 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 10515 {
8d64371b
TT
10516 char *p = rs->buf.data ();
10517 char *endbuf = p + get_remote_packet_size ();
802188a7 10518
28439a30
PA
10519 /* Make sure the remote is pointing at the right process, if
10520 necessary. */
10521 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10522 set_general_process ();
10523
96baa820
JM
10524 *(p++) = 'z';
10525 *(p++) = '0';
10526 *(p++) = ',';
10527
8181d85f
DJ
10528 addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
10529 p += hexnumstr (p, addr);
579c6ad9 10530 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
802188a7 10531
6d820c5c 10532 putpkt (rs->buf);
8d64371b 10533 getpkt (&rs->buf, 0);
96baa820 10534
6d820c5c 10535 return (rs->buf[0] == 'E');
96baa820
JM
10536 }
10537
f6ac5f3d 10538 return memory_remove_breakpoint (this, gdbarch, bp_tgt, reason);
c906108c
SS
10539}
10540
f486487f 10541static enum Z_packet_type
d471ea57
AC
10542watchpoint_to_Z_packet (int type)
10543{
10544 switch (type)
10545 {
10546 case hw_write:
bb858e6a 10547 return Z_PACKET_WRITE_WP;
d471ea57
AC
10548 break;
10549 case hw_read:
bb858e6a 10550 return Z_PACKET_READ_WP;
d471ea57
AC
10551 break;
10552 case hw_access:
bb858e6a 10553 return Z_PACKET_ACCESS_WP;
d471ea57
AC
10554 break;
10555 default:
8e65ff28 10556 internal_error (__FILE__, __LINE__,
e2e0b3e5 10557 _("hw_bp_to_z: bad watchpoint type %d"), type);
d471ea57
AC
10558 }
10559}
10560
f6ac5f3d
PA
10561int
10562remote_target::insert_watchpoint (CORE_ADDR addr, int len,
10563 enum target_hw_bp_type type, struct expression *cond)
96baa820 10564{
d01949b6 10565 struct remote_state *rs = get_remote_state ();
8d64371b 10566 char *endbuf = rs->buf.data () + get_remote_packet_size ();
e514a9d6 10567 char *p;
d471ea57 10568 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
96baa820 10569
4082afcc 10570 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
85d721b8 10571 return 1;
802188a7 10572
28439a30
PA
10573 /* Make sure the remote is pointing at the right process, if
10574 necessary. */
10575 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10576 set_general_process ();
10577
8d64371b
TT
10578 xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "Z%x,", packet);
10579 p = strchr (rs->buf.data (), '\0');
96baa820
JM
10580 addr = remote_address_masked (addr);
10581 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 10582 xsnprintf (p, endbuf - p, ",%x", len);
802188a7 10583
6d820c5c 10584 putpkt (rs->buf);
8d64371b 10585 getpkt (&rs->buf, 0);
96baa820 10586
6d820c5c 10587 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
10588 {
10589 case PACKET_ERROR:
d471ea57 10590 return -1;
85d721b8
PA
10591 case PACKET_UNKNOWN:
10592 return 1;
d471ea57
AC
10593 case PACKET_OK:
10594 return 0;
10595 }
8e65ff28 10596 internal_error (__FILE__, __LINE__,
e2e0b3e5 10597 _("remote_insert_watchpoint: reached end of function"));
96baa820
JM
10598}
10599
57810aa7 10600bool
f6ac5f3d
PA
10601remote_target::watchpoint_addr_within_range (CORE_ADDR addr,
10602 CORE_ADDR start, int length)
283002cf
MR
10603{
10604 CORE_ADDR diff = remote_address_masked (addr - start);
10605
10606 return diff < length;
10607}
10608
d471ea57 10609
f6ac5f3d
PA
10610int
10611remote_target::remove_watchpoint (CORE_ADDR addr, int len,
10612 enum target_hw_bp_type type, struct expression *cond)
96baa820 10613{
d01949b6 10614 struct remote_state *rs = get_remote_state ();
8d64371b 10615 char *endbuf = rs->buf.data () + get_remote_packet_size ();
e514a9d6 10616 char *p;
d471ea57
AC
10617 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
10618
4082afcc 10619 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
5cffb350 10620 return -1;
802188a7 10621
28439a30
PA
10622 /* Make sure the remote is pointing at the right process, if
10623 necessary. */
10624 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10625 set_general_process ();
10626
8d64371b
TT
10627 xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "z%x,", packet);
10628 p = strchr (rs->buf.data (), '\0');
96baa820
JM
10629 addr = remote_address_masked (addr);
10630 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 10631 xsnprintf (p, endbuf - p, ",%x", len);
6d820c5c 10632 putpkt (rs->buf);
8d64371b 10633 getpkt (&rs->buf, 0);
96baa820 10634
6d820c5c 10635 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
10636 {
10637 case PACKET_ERROR:
10638 case PACKET_UNKNOWN:
10639 return -1;
10640 case PACKET_OK:
10641 return 0;
10642 }
8e65ff28 10643 internal_error (__FILE__, __LINE__,
e2e0b3e5 10644 _("remote_remove_watchpoint: reached end of function"));
96baa820
JM
10645}
10646
3c3bea1c 10647
60fcc1c3
TT
10648static int remote_hw_watchpoint_limit = -1;
10649static int remote_hw_watchpoint_length_limit = -1;
10650static int remote_hw_breakpoint_limit = -1;
d471ea57 10651
f6ac5f3d
PA
10652int
10653remote_target::region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
480a3f21
PW
10654{
10655 if (remote_hw_watchpoint_length_limit == 0)
10656 return 0;
10657 else if (remote_hw_watchpoint_length_limit < 0)
10658 return 1;
10659 else if (len <= remote_hw_watchpoint_length_limit)
10660 return 1;
10661 else
10662 return 0;
10663}
10664
f6ac5f3d
PA
10665int
10666remote_target::can_use_hw_breakpoint (enum bptype type, int cnt, int ot)
96baa820 10667{
3c3bea1c
GS
10668 if (type == bp_hardware_breakpoint)
10669 {
10670 if (remote_hw_breakpoint_limit == 0)
10671 return 0;
501eef12
AC
10672 else if (remote_hw_breakpoint_limit < 0)
10673 return 1;
3c3bea1c
GS
10674 else if (cnt <= remote_hw_breakpoint_limit)
10675 return 1;
10676 }
10677 else
10678 {
10679 if (remote_hw_watchpoint_limit == 0)
10680 return 0;
501eef12
AC
10681 else if (remote_hw_watchpoint_limit < 0)
10682 return 1;
3c3bea1c
GS
10683 else if (ot)
10684 return -1;
10685 else if (cnt <= remote_hw_watchpoint_limit)
10686 return 1;
10687 }
10688 return -1;
10689}
10690
f7e6eed5
PA
10691/* The to_stopped_by_sw_breakpoint method of target remote. */
10692
57810aa7 10693bool
f6ac5f3d 10694remote_target::stopped_by_sw_breakpoint ()
f7e6eed5 10695{
799a2abe 10696 struct thread_info *thread = inferior_thread ();
f7e6eed5 10697
799a2abe 10698 return (thread->priv != NULL
7aabaf9d
SM
10699 && (get_remote_thread_info (thread)->stop_reason
10700 == TARGET_STOPPED_BY_SW_BREAKPOINT));
f7e6eed5
PA
10701}
10702
10703/* The to_supports_stopped_by_sw_breakpoint method of target
10704 remote. */
10705
57810aa7 10706bool
f6ac5f3d 10707remote_target::supports_stopped_by_sw_breakpoint ()
f7e6eed5 10708{
f7e6eed5
PA
10709 return (packet_support (PACKET_swbreak_feature) == PACKET_ENABLE);
10710}
10711
10712/* The to_stopped_by_hw_breakpoint method of target remote. */
10713
57810aa7 10714bool
f6ac5f3d 10715remote_target::stopped_by_hw_breakpoint ()
f7e6eed5 10716{
799a2abe 10717 struct thread_info *thread = inferior_thread ();
f7e6eed5 10718
799a2abe 10719 return (thread->priv != NULL
7aabaf9d
SM
10720 && (get_remote_thread_info (thread)->stop_reason
10721 == TARGET_STOPPED_BY_HW_BREAKPOINT));
f7e6eed5
PA
10722}
10723
10724/* The to_supports_stopped_by_hw_breakpoint method of target
10725 remote. */
10726
57810aa7 10727bool
f6ac5f3d 10728remote_target::supports_stopped_by_hw_breakpoint ()
f7e6eed5 10729{
f7e6eed5
PA
10730 return (packet_support (PACKET_hwbreak_feature) == PACKET_ENABLE);
10731}
10732
57810aa7 10733bool
f6ac5f3d 10734remote_target::stopped_by_watchpoint ()
3c3bea1c 10735{
799a2abe 10736 struct thread_info *thread = inferior_thread ();
ee154bee 10737
799a2abe 10738 return (thread->priv != NULL
7aabaf9d
SM
10739 && (get_remote_thread_info (thread)->stop_reason
10740 == TARGET_STOPPED_BY_WATCHPOINT));
3c3bea1c
GS
10741}
10742
57810aa7 10743bool
f6ac5f3d 10744remote_target::stopped_data_address (CORE_ADDR *addr_p)
3c3bea1c 10745{
799a2abe 10746 struct thread_info *thread = inferior_thread ();
a744cf53 10747
799a2abe 10748 if (thread->priv != NULL
7aabaf9d
SM
10749 && (get_remote_thread_info (thread)->stop_reason
10750 == TARGET_STOPPED_BY_WATCHPOINT))
4aa7a7f5 10751 {
7aabaf9d 10752 *addr_p = get_remote_thread_info (thread)->watch_data_address;
57810aa7 10753 return true;
4aa7a7f5
JJ
10754 }
10755
57810aa7 10756 return false;
3c3bea1c
GS
10757}
10758
10759
f6ac5f3d
PA
10760int
10761remote_target::insert_hw_breakpoint (struct gdbarch *gdbarch,
10762 struct bp_target_info *bp_tgt)
3c3bea1c 10763{
0d5ed153 10764 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 10765 struct remote_state *rs;
bba74b36 10766 char *p, *endbuf;
dd61ec5c 10767 char *message;
3c3bea1c 10768
4082afcc 10769 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 10770 return -1;
2bc416ba 10771
28439a30
PA
10772 /* Make sure the remote is pointing at the right process, if
10773 necessary. */
10774 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10775 set_general_process ();
10776
4fff2411 10777 rs = get_remote_state ();
8d64371b
TT
10778 p = rs->buf.data ();
10779 endbuf = p + get_remote_packet_size ();
4fff2411 10780
96baa820
JM
10781 *(p++) = 'Z';
10782 *(p++) = '1';
10783 *(p++) = ',';
802188a7 10784
0d5ed153 10785 addr = remote_address_masked (addr);
96baa820 10786 p += hexnumstr (p, (ULONGEST) addr);
579c6ad9 10787 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
96baa820 10788
f6ac5f3d 10789 if (supports_evaluation_of_breakpoint_conditions ())
bba74b36 10790 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 10791
f6ac5f3d 10792 if (can_run_breakpoint_commands ())
d3ce09f5
SS
10793 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10794
6d820c5c 10795 putpkt (rs->buf);
8d64371b 10796 getpkt (&rs->buf, 0);
96baa820 10797
6d820c5c 10798 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
10799 {
10800 case PACKET_ERROR:
dd61ec5c 10801 if (rs->buf[1] == '.')
dda83cd7
SM
10802 {
10803 message = strchr (&rs->buf[2], '.');
10804 if (message)
10805 error (_("Remote failure reply: %s"), message + 1);
10806 }
dd61ec5c 10807 return -1;
d471ea57
AC
10808 case PACKET_UNKNOWN:
10809 return -1;
10810 case PACKET_OK:
10811 return 0;
10812 }
8e65ff28 10813 internal_error (__FILE__, __LINE__,
e2e0b3e5 10814 _("remote_insert_hw_breakpoint: reached end of function"));
96baa820
JM
10815}
10816
d471ea57 10817
f6ac5f3d
PA
10818int
10819remote_target::remove_hw_breakpoint (struct gdbarch *gdbarch,
10820 struct bp_target_info *bp_tgt)
96baa820 10821{
8181d85f 10822 CORE_ADDR addr;
d01949b6 10823 struct remote_state *rs = get_remote_state ();
8d64371b
TT
10824 char *p = rs->buf.data ();
10825 char *endbuf = p + get_remote_packet_size ();
c8189ed1 10826
4082afcc 10827 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 10828 return -1;
802188a7 10829
28439a30
PA
10830 /* Make sure the remote is pointing at the right process, if
10831 necessary. */
10832 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10833 set_general_process ();
10834
96baa820
JM
10835 *(p++) = 'z';
10836 *(p++) = '1';
10837 *(p++) = ',';
802188a7 10838
8181d85f 10839 addr = remote_address_masked (bp_tgt->placed_address);
96baa820 10840 p += hexnumstr (p, (ULONGEST) addr);
579c6ad9 10841 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
96baa820 10842
6d820c5c 10843 putpkt (rs->buf);
8d64371b 10844 getpkt (&rs->buf, 0);
802188a7 10845
6d820c5c 10846 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
10847 {
10848 case PACKET_ERROR:
10849 case PACKET_UNKNOWN:
10850 return -1;
10851 case PACKET_OK:
10852 return 0;
10853 }
8e65ff28 10854 internal_error (__FILE__, __LINE__,
e2e0b3e5 10855 _("remote_remove_hw_breakpoint: reached end of function"));
96baa820 10856}
96baa820 10857
4a5e7a5b
PA
10858/* Verify memory using the "qCRC:" request. */
10859
f6ac5f3d
PA
10860int
10861remote_target::verify_memory (const gdb_byte *data, CORE_ADDR lma, ULONGEST size)
4a5e7a5b
PA
10862{
10863 struct remote_state *rs = get_remote_state ();
10864 unsigned long host_crc, target_crc;
10865 char *tmp;
10866
936d2992
PA
10867 /* It doesn't make sense to use qCRC if the remote target is
10868 connected but not running. */
55f6301a
TT
10869 if (target_has_execution ()
10870 && packet_support (PACKET_qCRC) != PACKET_DISABLE)
936d2992
PA
10871 {
10872 enum packet_result result;
28439a30 10873
936d2992
PA
10874 /* Make sure the remote is pointing at the right process. */
10875 set_general_process ();
4a5e7a5b 10876
936d2992 10877 /* FIXME: assumes lma can fit into long. */
8d64371b 10878 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qCRC:%lx,%lx",
936d2992
PA
10879 (long) lma, (long) size);
10880 putpkt (rs->buf);
4a5e7a5b 10881
936d2992
PA
10882 /* Be clever; compute the host_crc before waiting for target
10883 reply. */
10884 host_crc = xcrc32 (data, size, 0xffffffff);
10885
8d64371b 10886 getpkt (&rs->buf, 0);
4a5e7a5b 10887
936d2992
PA
10888 result = packet_ok (rs->buf,
10889 &remote_protocol_packets[PACKET_qCRC]);
10890 if (result == PACKET_ERROR)
10891 return -1;
10892 else if (result == PACKET_OK)
10893 {
10894 for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
10895 target_crc = target_crc * 16 + fromhex (*tmp);
4a5e7a5b 10896
936d2992
PA
10897 return (host_crc == target_crc);
10898 }
10899 }
4a5e7a5b 10900
f6ac5f3d 10901 return simple_verify_memory (this, data, lma, size);
4a5e7a5b
PA
10902}
10903
c906108c
SS
10904/* compare-sections command
10905
10906 With no arguments, compares each loadable section in the exec bfd
10907 with the same memory range on the target, and reports mismatches.
4a5e7a5b 10908 Useful for verifying the image on the target against the exec file. */
e514a9d6 10909
c906108c 10910static void
ac88e2de 10911compare_sections_command (const char *args, int from_tty)
c906108c
SS
10912{
10913 asection *s;
ce359b09 10914 const char *sectname;
c906108c
SS
10915 bfd_size_type size;
10916 bfd_vma lma;
10917 int matched = 0;
10918 int mismatched = 0;
4a5e7a5b 10919 int res;
95cf3b38 10920 int read_only = 0;
c906108c 10921
7e10abd1 10922 if (!current_program_space->exec_bfd ())
8a3fe4f8 10923 error (_("command cannot be used without an exec file"));
c906108c 10924
95cf3b38
DT
10925 if (args != NULL && strcmp (args, "-r") == 0)
10926 {
10927 read_only = 1;
10928 args = NULL;
10929 }
10930
7e10abd1 10931 for (s = current_program_space->exec_bfd ()->sections; s; s = s->next)
c906108c
SS
10932 {
10933 if (!(s->flags & SEC_LOAD))
0df8b418 10934 continue; /* Skip non-loadable section. */
c906108c 10935
95cf3b38
DT
10936 if (read_only && (s->flags & SEC_READONLY) == 0)
10937 continue; /* Skip writeable sections */
10938
fd361982 10939 size = bfd_section_size (s);
c906108c 10940 if (size == 0)
0df8b418 10941 continue; /* Skip zero-length section. */
c906108c 10942
fd361982 10943 sectname = bfd_section_name (s);
c906108c 10944 if (args && strcmp (args, sectname) != 0)
0df8b418 10945 continue; /* Not the section selected by user. */
c906108c 10946
0df8b418 10947 matched = 1; /* Do this section. */
c906108c 10948 lma = s->lma;
c906108c 10949
b80406ac 10950 gdb::byte_vector sectdata (size);
7e10abd1
TT
10951 bfd_get_section_contents (current_program_space->exec_bfd (), s,
10952 sectdata.data (), 0, size);
c906108c 10953
b80406ac 10954 res = target_verify_memory (sectdata.data (), lma, size);
4a5e7a5b
PA
10955
10956 if (res == -1)
5af949e3 10957 error (_("target memory fault, section %s, range %s -- %s"), sectname,
f5656ead
TT
10958 paddress (target_gdbarch (), lma),
10959 paddress (target_gdbarch (), lma + size));
c906108c 10960
5af949e3 10961 printf_filtered ("Section %s, range %s -- %s: ", sectname,
f5656ead
TT
10962 paddress (target_gdbarch (), lma),
10963 paddress (target_gdbarch (), lma + size));
4a5e7a5b 10964 if (res)
c906108c
SS
10965 printf_filtered ("matched.\n");
10966 else
c5aa993b
JM
10967 {
10968 printf_filtered ("MIS-MATCHED!\n");
10969 mismatched++;
10970 }
c906108c
SS
10971 }
10972 if (mismatched > 0)
936d2992 10973 warning (_("One or more sections of the target image does not match\n\
8a3fe4f8 10974the loaded file\n"));
c906108c 10975 if (args && !matched)
a3f17187 10976 printf_filtered (_("No loaded section named '%s'.\n"), args);
c906108c
SS
10977}
10978
0e7f50da
UW
10979/* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
10980 into remote target. The number of bytes written to the remote
10981 target is returned, or -1 for error. */
10982
6b8edb51
PA
10983target_xfer_status
10984remote_target::remote_write_qxfer (const char *object_name,
10985 const char *annex, const gdb_byte *writebuf,
10986 ULONGEST offset, LONGEST len,
10987 ULONGEST *xfered_len,
10988 struct packet_config *packet)
0e7f50da
UW
10989{
10990 int i, buf_len;
10991 ULONGEST n;
0e7f50da
UW
10992 struct remote_state *rs = get_remote_state ();
10993 int max_size = get_memory_write_packet_size ();
10994
7cc244de 10995 if (packet_config_support (packet) == PACKET_DISABLE)
2ed4b548 10996 return TARGET_XFER_E_IO;
0e7f50da
UW
10997
10998 /* Insert header. */
8d64371b 10999 i = snprintf (rs->buf.data (), max_size,
0e7f50da
UW
11000 "qXfer:%s:write:%s:%s:",
11001 object_name, annex ? annex : "",
11002 phex_nz (offset, sizeof offset));
11003 max_size -= (i + 1);
11004
11005 /* Escape as much data as fits into rs->buf. */
11006 buf_len = remote_escape_output
8d64371b 11007 (writebuf, len, 1, (gdb_byte *) rs->buf.data () + i, &max_size, max_size);
0e7f50da 11008
8d64371b
TT
11009 if (putpkt_binary (rs->buf.data (), i + buf_len) < 0
11010 || getpkt_sane (&rs->buf, 0) < 0
0e7f50da 11011 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 11012 return TARGET_XFER_E_IO;
0e7f50da 11013
8d64371b 11014 unpack_varlen_hex (rs->buf.data (), &n);
9b409511
YQ
11015
11016 *xfered_len = n;
92ffd475 11017 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
0e7f50da
UW
11018}
11019
0876f84a
DJ
11020/* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
11021 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
11022 number of bytes read is returned, or 0 for EOF, or -1 for error.
11023 The number of bytes read may be less than LEN without indicating an
11024 EOF. PACKET is checked and updated to indicate whether the remote
11025 target supports this object. */
11026
6b8edb51
PA
11027target_xfer_status
11028remote_target::remote_read_qxfer (const char *object_name,
11029 const char *annex,
11030 gdb_byte *readbuf, ULONGEST offset,
11031 LONGEST len,
11032 ULONGEST *xfered_len,
11033 struct packet_config *packet)
0876f84a 11034{
0876f84a 11035 struct remote_state *rs = get_remote_state ();
0876f84a
DJ
11036 LONGEST i, n, packet_len;
11037
7cc244de 11038 if (packet_config_support (packet) == PACKET_DISABLE)
2ed4b548 11039 return TARGET_XFER_E_IO;
0876f84a
DJ
11040
11041 /* Check whether we've cached an end-of-object packet that matches
11042 this request. */
8e88304f 11043 if (rs->finished_object)
0876f84a 11044 {
8e88304f
TT
11045 if (strcmp (object_name, rs->finished_object) == 0
11046 && strcmp (annex ? annex : "", rs->finished_annex) == 0
11047 && offset == rs->finished_offset)
9b409511
YQ
11048 return TARGET_XFER_EOF;
11049
0876f84a
DJ
11050
11051 /* Otherwise, we're now reading something different. Discard
11052 the cache. */
8e88304f
TT
11053 xfree (rs->finished_object);
11054 xfree (rs->finished_annex);
11055 rs->finished_object = NULL;
11056 rs->finished_annex = NULL;
0876f84a
DJ
11057 }
11058
11059 /* Request only enough to fit in a single packet. The actual data
11060 may not, since we don't know how much of it will need to be escaped;
11061 the target is free to respond with slightly less data. We subtract
11062 five to account for the response type and the protocol frame. */
768adc05 11063 n = std::min<LONGEST> (get_remote_packet_size () - 5, len);
8d64371b
TT
11064 snprintf (rs->buf.data (), get_remote_packet_size () - 4,
11065 "qXfer:%s:read:%s:%s,%s",
0876f84a
DJ
11066 object_name, annex ? annex : "",
11067 phex_nz (offset, sizeof offset),
11068 phex_nz (n, sizeof n));
11069 i = putpkt (rs->buf);
11070 if (i < 0)
2ed4b548 11071 return TARGET_XFER_E_IO;
0876f84a
DJ
11072
11073 rs->buf[0] = '\0';
8d64371b 11074 packet_len = getpkt_sane (&rs->buf, 0);
0876f84a 11075 if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 11076 return TARGET_XFER_E_IO;
0876f84a
DJ
11077
11078 if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
8d64371b 11079 error (_("Unknown remote qXfer reply: %s"), rs->buf.data ());
0876f84a
DJ
11080
11081 /* 'm' means there is (or at least might be) more data after this
11082 batch. That does not make sense unless there's at least one byte
11083 of data in this reply. */
11084 if (rs->buf[0] == 'm' && packet_len == 1)
11085 error (_("Remote qXfer reply contained no data."));
11086
11087 /* Got some data. */
8d64371b 11088 i = remote_unescape_input ((gdb_byte *) rs->buf.data () + 1,
bc20a4af 11089 packet_len - 1, readbuf, n);
0876f84a
DJ
11090
11091 /* 'l' is an EOF marker, possibly including a final block of data,
0e7f50da
UW
11092 or possibly empty. If we have the final block of a non-empty
11093 object, record this fact to bypass a subsequent partial read. */
11094 if (rs->buf[0] == 'l' && offset + i > 0)
0876f84a 11095 {
8e88304f
TT
11096 rs->finished_object = xstrdup (object_name);
11097 rs->finished_annex = xstrdup (annex ? annex : "");
11098 rs->finished_offset = offset + i;
0876f84a
DJ
11099 }
11100
9b409511
YQ
11101 if (i == 0)
11102 return TARGET_XFER_EOF;
11103 else
11104 {
11105 *xfered_len = i;
11106 return TARGET_XFER_OK;
11107 }
0876f84a
DJ
11108}
11109
f6ac5f3d
PA
11110enum target_xfer_status
11111remote_target::xfer_partial (enum target_object object,
11112 const char *annex, gdb_byte *readbuf,
11113 const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
11114 ULONGEST *xfered_len)
c906108c 11115{
82f73884 11116 struct remote_state *rs;
c906108c 11117 int i;
6d820c5c 11118 char *p2;
1e3ff5ad 11119 char query_type;
124e13d9 11120 int unit_size = gdbarch_addressable_memory_unit_size (target_gdbarch ());
c906108c 11121
e6e4e701 11122 set_remote_traceframe ();
82f73884
PA
11123 set_general_thread (inferior_ptid);
11124
11125 rs = get_remote_state ();
11126
b2182ed2 11127 /* Handle memory using the standard memory routines. */
21e3b9b9
DJ
11128 if (object == TARGET_OBJECT_MEMORY)
11129 {
2d717e4f
DJ
11130 /* If the remote target is connected but not running, we should
11131 pass this request down to a lower stratum (e.g. the executable
11132 file). */
55f6301a 11133 if (!target_has_execution ())
9b409511 11134 return TARGET_XFER_EOF;
2d717e4f 11135
21e3b9b9 11136 if (writebuf != NULL)
124e13d9
SM
11137 return remote_write_bytes (offset, writebuf, len, unit_size,
11138 xfered_len);
21e3b9b9 11139 else
6b8edb51 11140 return remote_read_bytes (offset, readbuf, len, unit_size,
124e13d9 11141 xfered_len);
21e3b9b9
DJ
11142 }
11143
4aa995e1
PA
11144 /* Handle extra signal info using qxfer packets. */
11145 if (object == TARGET_OBJECT_SIGNAL_INFO)
11146 {
11147 if (readbuf)
f6ac5f3d 11148 return remote_read_qxfer ("siginfo", annex, readbuf, offset, len,
9b409511 11149 xfered_len, &remote_protocol_packets
4aa995e1
PA
11150 [PACKET_qXfer_siginfo_read]);
11151 else
f6ac5f3d 11152 return remote_write_qxfer ("siginfo", annex,
9b409511 11153 writebuf, offset, len, xfered_len,
4aa995e1
PA
11154 &remote_protocol_packets
11155 [PACKET_qXfer_siginfo_write]);
11156 }
11157
0fb4aa4b
PA
11158 if (object == TARGET_OBJECT_STATIC_TRACE_DATA)
11159 {
11160 if (readbuf)
f6ac5f3d 11161 return remote_read_qxfer ("statictrace", annex,
9b409511 11162 readbuf, offset, len, xfered_len,
0fb4aa4b
PA
11163 &remote_protocol_packets
11164 [PACKET_qXfer_statictrace_read]);
11165 else
2ed4b548 11166 return TARGET_XFER_E_IO;
0fb4aa4b
PA
11167 }
11168
a76d924d
DJ
11169 /* Only handle flash writes. */
11170 if (writebuf != NULL)
11171 {
a76d924d
DJ
11172 switch (object)
11173 {
11174 case TARGET_OBJECT_FLASH:
6b8edb51 11175 return remote_flash_write (offset, len, xfered_len,
9b409511 11176 writebuf);
a76d924d
DJ
11177
11178 default:
2ed4b548 11179 return TARGET_XFER_E_IO;
a76d924d
DJ
11180 }
11181 }
4b8a223f 11182
1e3ff5ad
AC
11183 /* Map pre-existing objects onto letters. DO NOT do this for new
11184 objects!!! Instead specify new query packets. */
11185 switch (object)
c906108c 11186 {
1e3ff5ad
AC
11187 case TARGET_OBJECT_AVR:
11188 query_type = 'R';
11189 break;
802188a7
RM
11190
11191 case TARGET_OBJECT_AUXV:
0876f84a 11192 gdb_assert (annex == NULL);
f6ac5f3d 11193 return remote_read_qxfer ("auxv", annex, readbuf, offset, len,
9b409511 11194 xfered_len,
0876f84a 11195 &remote_protocol_packets[PACKET_qXfer_auxv]);
802188a7 11196
23181151
DJ
11197 case TARGET_OBJECT_AVAILABLE_FEATURES:
11198 return remote_read_qxfer
f6ac5f3d 11199 ("features", annex, readbuf, offset, len, xfered_len,
23181151
DJ
11200 &remote_protocol_packets[PACKET_qXfer_features]);
11201
cfa9d6d9
DJ
11202 case TARGET_OBJECT_LIBRARIES:
11203 return remote_read_qxfer
f6ac5f3d 11204 ("libraries", annex, readbuf, offset, len, xfered_len,
cfa9d6d9
DJ
11205 &remote_protocol_packets[PACKET_qXfer_libraries]);
11206
2268b414
JK
11207 case TARGET_OBJECT_LIBRARIES_SVR4:
11208 return remote_read_qxfer
f6ac5f3d 11209 ("libraries-svr4", annex, readbuf, offset, len, xfered_len,
2268b414
JK
11210 &remote_protocol_packets[PACKET_qXfer_libraries_svr4]);
11211
fd79ecee
DJ
11212 case TARGET_OBJECT_MEMORY_MAP:
11213 gdb_assert (annex == NULL);
f6ac5f3d 11214 return remote_read_qxfer ("memory-map", annex, readbuf, offset, len,
9b409511 11215 xfered_len,
fd79ecee
DJ
11216 &remote_protocol_packets[PACKET_qXfer_memory_map]);
11217
07e059b5
VP
11218 case TARGET_OBJECT_OSDATA:
11219 /* Should only get here if we're connected. */
5d93a237 11220 gdb_assert (rs->remote_desc);
07e059b5 11221 return remote_read_qxfer
f6ac5f3d 11222 ("osdata", annex, readbuf, offset, len, xfered_len,
dda83cd7 11223 &remote_protocol_packets[PACKET_qXfer_osdata]);
07e059b5 11224
dc146f7c
VP
11225 case TARGET_OBJECT_THREADS:
11226 gdb_assert (annex == NULL);
f6ac5f3d 11227 return remote_read_qxfer ("threads", annex, readbuf, offset, len,
9b409511 11228 xfered_len,
dc146f7c
VP
11229 &remote_protocol_packets[PACKET_qXfer_threads]);
11230
b3b9301e
PA
11231 case TARGET_OBJECT_TRACEFRAME_INFO:
11232 gdb_assert (annex == NULL);
11233 return remote_read_qxfer
f6ac5f3d 11234 ("traceframe-info", annex, readbuf, offset, len, xfered_len,
b3b9301e 11235 &remote_protocol_packets[PACKET_qXfer_traceframe_info]);
78d85199
YQ
11236
11237 case TARGET_OBJECT_FDPIC:
f6ac5f3d 11238 return remote_read_qxfer ("fdpic", annex, readbuf, offset, len,
9b409511 11239 xfered_len,
78d85199 11240 &remote_protocol_packets[PACKET_qXfer_fdpic]);
169081d0
TG
11241
11242 case TARGET_OBJECT_OPENVMS_UIB:
f6ac5f3d 11243 return remote_read_qxfer ("uib", annex, readbuf, offset, len,
9b409511 11244 xfered_len,
169081d0
TG
11245 &remote_protocol_packets[PACKET_qXfer_uib]);
11246
9accd112 11247 case TARGET_OBJECT_BTRACE:
f6ac5f3d 11248 return remote_read_qxfer ("btrace", annex, readbuf, offset, len,
9b409511 11249 xfered_len,
dda83cd7 11250 &remote_protocol_packets[PACKET_qXfer_btrace]);
9accd112 11251
f4abbc16 11252 case TARGET_OBJECT_BTRACE_CONF:
f6ac5f3d 11253 return remote_read_qxfer ("btrace-conf", annex, readbuf, offset,
f4abbc16
MM
11254 len, xfered_len,
11255 &remote_protocol_packets[PACKET_qXfer_btrace_conf]);
11256
c78fa86a 11257 case TARGET_OBJECT_EXEC_FILE:
f6ac5f3d 11258 return remote_read_qxfer ("exec-file", annex, readbuf, offset,
c78fa86a
GB
11259 len, xfered_len,
11260 &remote_protocol_packets[PACKET_qXfer_exec_file]);
11261
1e3ff5ad 11262 default:
2ed4b548 11263 return TARGET_XFER_E_IO;
c906108c
SS
11264 }
11265
0df8b418 11266 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
24b06219 11267 large enough let the caller deal with it. */
ea9c271d 11268 if (len < get_remote_packet_size ())
2ed4b548 11269 return TARGET_XFER_E_IO;
ea9c271d 11270 len = get_remote_packet_size ();
1e3ff5ad 11271
23860348 11272 /* Except for querying the minimum buffer size, target must be open. */
5d93a237 11273 if (!rs->remote_desc)
8a3fe4f8 11274 error (_("remote query is only available after target open"));
c906108c 11275
1e3ff5ad 11276 gdb_assert (annex != NULL);
4b8a223f 11277 gdb_assert (readbuf != NULL);
c906108c 11278
8d64371b 11279 p2 = rs->buf.data ();
c906108c
SS
11280 *p2++ = 'q';
11281 *p2++ = query_type;
11282
23860348
MS
11283 /* We used one buffer char for the remote protocol q command and
11284 another for the query type. As the remote protocol encapsulation
11285 uses 4 chars plus one extra in case we are debugging
11286 (remote_debug), we have PBUFZIZ - 7 left to pack the query
11287 string. */
c906108c 11288 i = 0;
ea9c271d 11289 while (annex[i] && (i < (get_remote_packet_size () - 8)))
c906108c 11290 {
1e3ff5ad
AC
11291 /* Bad caller may have sent forbidden characters. */
11292 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
11293 *p2++ = annex[i];
c906108c
SS
11294 i++;
11295 }
1e3ff5ad
AC
11296 *p2 = '\0';
11297 gdb_assert (annex[i] == '\0');
c906108c 11298
6d820c5c 11299 i = putpkt (rs->buf);
c5aa993b 11300 if (i < 0)
2ed4b548 11301 return TARGET_XFER_E_IO;
c906108c 11302
8d64371b
TT
11303 getpkt (&rs->buf, 0);
11304 strcpy ((char *) readbuf, rs->buf.data ());
c906108c 11305
9b409511 11306 *xfered_len = strlen ((char *) readbuf);
92ffd475 11307 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
c906108c
SS
11308}
11309
09c98b44
DB
11310/* Implementation of to_get_memory_xfer_limit. */
11311
f6ac5f3d
PA
11312ULONGEST
11313remote_target::get_memory_xfer_limit ()
09c98b44
DB
11314{
11315 return get_memory_write_packet_size ();
11316}
11317
f6ac5f3d
PA
11318int
11319remote_target::search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
11320 const gdb_byte *pattern, ULONGEST pattern_len,
11321 CORE_ADDR *found_addrp)
08388c79 11322{
f5656ead 11323 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
08388c79
DE
11324 struct remote_state *rs = get_remote_state ();
11325 int max_size = get_memory_write_packet_size ();
11326 struct packet_config *packet =
11327 &remote_protocol_packets[PACKET_qSearch_memory];
0df8b418
MS
11328 /* Number of packet bytes used to encode the pattern;
11329 this could be more than PATTERN_LEN due to escape characters. */
08388c79 11330 int escaped_pattern_len;
0df8b418 11331 /* Amount of pattern that was encodable in the packet. */
08388c79
DE
11332 int used_pattern_len;
11333 int i;
11334 int found;
11335 ULONGEST found_addr;
11336
4a72de73
TT
11337 auto read_memory = [=] (CORE_ADDR addr, gdb_byte *result, size_t len)
11338 {
11339 return (target_read (this, TARGET_OBJECT_MEMORY, NULL, result, addr, len)
11340 == len);
11341 };
11342
7cc244de
PA
11343 /* Don't go to the target if we don't have to. This is done before
11344 checking packet_config_support to avoid the possibility that a
11345 success for this edge case means the facility works in
11346 general. */
08388c79
DE
11347 if (pattern_len > search_space_len)
11348 return 0;
11349 if (pattern_len == 0)
11350 {
11351 *found_addrp = start_addr;
11352 return 1;
11353 }
11354
11355 /* If we already know the packet isn't supported, fall back to the simple
11356 way of searching memory. */
11357
4082afcc 11358 if (packet_config_support (packet) == PACKET_DISABLE)
08388c79
DE
11359 {
11360 /* Target doesn't provided special support, fall back and use the
11361 standard support (copy memory and do the search here). */
4a72de73 11362 return simple_search_memory (read_memory, start_addr, search_space_len,
08388c79
DE
11363 pattern, pattern_len, found_addrp);
11364 }
11365
28439a30
PA
11366 /* Make sure the remote is pointing at the right process. */
11367 set_general_process ();
11368
08388c79 11369 /* Insert header. */
8d64371b 11370 i = snprintf (rs->buf.data (), max_size,
08388c79 11371 "qSearch:memory:%s;%s;",
5af949e3 11372 phex_nz (start_addr, addr_size),
08388c79
DE
11373 phex_nz (search_space_len, sizeof (search_space_len)));
11374 max_size -= (i + 1);
11375
11376 /* Escape as much data as fits into rs->buf. */
11377 escaped_pattern_len =
8d64371b
TT
11378 remote_escape_output (pattern, pattern_len, 1,
11379 (gdb_byte *) rs->buf.data () + i,
08388c79
DE
11380 &used_pattern_len, max_size);
11381
11382 /* Bail if the pattern is too large. */
11383 if (used_pattern_len != pattern_len)
9b20d036 11384 error (_("Pattern is too large to transmit to remote target."));
08388c79 11385
8d64371b
TT
11386 if (putpkt_binary (rs->buf.data (), i + escaped_pattern_len) < 0
11387 || getpkt_sane (&rs->buf, 0) < 0
08388c79
DE
11388 || packet_ok (rs->buf, packet) != PACKET_OK)
11389 {
11390 /* The request may not have worked because the command is not
11391 supported. If so, fall back to the simple way. */
7cc244de 11392 if (packet_config_support (packet) == PACKET_DISABLE)
08388c79 11393 {
4a72de73 11394 return simple_search_memory (read_memory, start_addr, search_space_len,
08388c79
DE
11395 pattern, pattern_len, found_addrp);
11396 }
11397 return -1;
11398 }
11399
11400 if (rs->buf[0] == '0')
11401 found = 0;
11402 else if (rs->buf[0] == '1')
11403 {
11404 found = 1;
11405 if (rs->buf[1] != ',')
8d64371b
TT
11406 error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ());
11407 unpack_varlen_hex (&rs->buf[2], &found_addr);
08388c79
DE
11408 *found_addrp = found_addr;
11409 }
11410 else
8d64371b 11411 error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ());
08388c79
DE
11412
11413 return found;
11414}
11415
f6ac5f3d
PA
11416void
11417remote_target::rcmd (const char *command, struct ui_file *outbuf)
96baa820 11418{
d01949b6 11419 struct remote_state *rs = get_remote_state ();
8d64371b 11420 char *p = rs->buf.data ();
96baa820 11421
5d93a237 11422 if (!rs->remote_desc)
8a3fe4f8 11423 error (_("remote rcmd is only available after target open"));
96baa820 11424
23860348 11425 /* Send a NULL command across as an empty command. */
7be570e7
JM
11426 if (command == NULL)
11427 command = "";
11428
23860348 11429 /* The query prefix. */
8d64371b
TT
11430 strcpy (rs->buf.data (), "qRcmd,");
11431 p = strchr (rs->buf.data (), '\0');
96baa820 11432
8d64371b 11433 if ((strlen (rs->buf.data ()) + strlen (command) * 2 + 8/*misc*/)
3e43a32a 11434 > get_remote_packet_size ())
8a3fe4f8 11435 error (_("\"monitor\" command ``%s'' is too long."), command);
96baa820 11436
23860348 11437 /* Encode the actual command. */
a30bf1f1 11438 bin2hex ((const gdb_byte *) command, p, strlen (command));
96baa820 11439
6d820c5c 11440 if (putpkt (rs->buf) < 0)
8a3fe4f8 11441 error (_("Communication problem with target."));
96baa820
JM
11442
11443 /* get/display the response */
11444 while (1)
11445 {
2e9f7625
DJ
11446 char *buf;
11447
00bf0b85 11448 /* XXX - see also remote_get_noisy_reply(). */
5b37825d 11449 QUIT; /* Allow user to bail out with ^C. */
2e9f7625 11450 rs->buf[0] = '\0';
8d64371b 11451 if (getpkt_sane (&rs->buf, 0) == -1)
dda83cd7
SM
11452 {
11453 /* Timeout. Continue to (try to) read responses.
11454 This is better than stopping with an error, assuming the stub
11455 is still executing the (long) monitor command.
11456 If needed, the user can interrupt gdb using C-c, obtaining
11457 an effect similar to stop on timeout. */
11458 continue;
11459 }
8d64371b 11460 buf = rs->buf.data ();
96baa820 11461 if (buf[0] == '\0')
8a3fe4f8 11462 error (_("Target does not support this command."));
96baa820
JM
11463 if (buf[0] == 'O' && buf[1] != 'K')
11464 {
23860348 11465 remote_console_output (buf + 1); /* 'O' message from stub. */
96baa820
JM
11466 continue;
11467 }
11468 if (strcmp (buf, "OK") == 0)
11469 break;
7be570e7
JM
11470 if (strlen (buf) == 3 && buf[0] == 'E'
11471 && isdigit (buf[1]) && isdigit (buf[2]))
11472 {
8a3fe4f8 11473 error (_("Protocol error with Rcmd"));
7be570e7 11474 }
96baa820
JM
11475 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
11476 {
11477 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
a744cf53 11478
96baa820
JM
11479 fputc_unfiltered (c, outbuf);
11480 }
11481 break;
11482 }
11483}
11484
f6ac5f3d
PA
11485std::vector<mem_region>
11486remote_target::memory_map ()
fd79ecee 11487{
a664f67e 11488 std::vector<mem_region> result;
9018be22 11489 gdb::optional<gdb::char_vector> text
8b88a78e 11490 = target_read_stralloc (current_top_target (), TARGET_OBJECT_MEMORY_MAP, NULL);
fd79ecee
DJ
11491
11492 if (text)
9018be22 11493 result = parse_memory_map (text->data ());
fd79ecee
DJ
11494
11495 return result;
11496}
11497
c906108c 11498static void
ac88e2de 11499packet_command (const char *args, int from_tty)
c906108c 11500{
6b8edb51 11501 remote_target *remote = get_current_remote_target ();
c906108c 11502
6b8edb51 11503 if (remote == nullptr)
8a3fe4f8 11504 error (_("command can only be used with remote target"));
c906108c 11505
6b8edb51
PA
11506 remote->packet_command (args, from_tty);
11507}
11508
11509void
11510remote_target::packet_command (const char *args, int from_tty)
11511{
c5aa993b 11512 if (!args)
8a3fe4f8 11513 error (_("remote-packet command requires packet text as argument"));
c906108c
SS
11514
11515 puts_filtered ("sending: ");
11516 print_packet (args);
11517 puts_filtered ("\n");
11518 putpkt (args);
11519
6b8edb51
PA
11520 remote_state *rs = get_remote_state ();
11521
8d64371b 11522 getpkt (&rs->buf, 0);
c906108c 11523 puts_filtered ("received: ");
8d64371b 11524 print_packet (rs->buf.data ());
c906108c
SS
11525 puts_filtered ("\n");
11526}
11527
11528#if 0
23860348 11529/* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
c906108c 11530
a14ed312 11531static void display_thread_info (struct gdb_ext_thread_info *info);
c906108c 11532
a14ed312 11533static void threadset_test_cmd (char *cmd, int tty);
c906108c 11534
a14ed312 11535static void threadalive_test (char *cmd, int tty);
c906108c 11536
a14ed312 11537static void threadlist_test_cmd (char *cmd, int tty);
c906108c 11538
23860348 11539int get_and_display_threadinfo (threadref *ref);
c906108c 11540
a14ed312 11541static void threadinfo_test_cmd (char *cmd, int tty);
c906108c 11542
23860348 11543static int thread_display_step (threadref *ref, void *context);
c906108c 11544
a14ed312 11545static void threadlist_update_test_cmd (char *cmd, int tty);
c906108c 11546
a14ed312 11547static void init_remote_threadtests (void);
c906108c 11548
23860348 11549#define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
c906108c
SS
11550
11551static void
0b39b52e 11552threadset_test_cmd (const char *cmd, int tty)
c906108c
SS
11553{
11554 int sample_thread = SAMPLE_THREAD;
11555
a3f17187 11556 printf_filtered (_("Remote threadset test\n"));
79d7f229 11557 set_general_thread (sample_thread);
c906108c
SS
11558}
11559
11560
11561static void
0b39b52e 11562threadalive_test (const char *cmd, int tty)
c906108c
SS
11563{
11564 int sample_thread = SAMPLE_THREAD;
e99b03dc 11565 int pid = inferior_ptid.pid ();
fd79271b 11566 ptid_t ptid = ptid_t (pid, sample_thread, 0);
c906108c 11567
79d7f229 11568 if (remote_thread_alive (ptid))
c906108c
SS
11569 printf_filtered ("PASS: Thread alive test\n");
11570 else
11571 printf_filtered ("FAIL: Thread alive test\n");
11572}
11573
23860348 11574void output_threadid (char *title, threadref *ref);
c906108c
SS
11575
11576void
fba45db2 11577output_threadid (char *title, threadref *ref)
c906108c
SS
11578{
11579 char hexid[20];
11580
405feb71 11581 pack_threadid (&hexid[0], ref); /* Convert thread id into hex. */
c906108c
SS
11582 hexid[16] = 0;
11583 printf_filtered ("%s %s\n", title, (&hexid[0]));
11584}
11585
11586static void
0b39b52e 11587threadlist_test_cmd (const char *cmd, int tty)
c906108c
SS
11588{
11589 int startflag = 1;
11590 threadref nextthread;
11591 int done, result_count;
11592 threadref threadlist[3];
11593
11594 printf_filtered ("Remote Threadlist test\n");
11595 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
11596 &result_count, &threadlist[0]))
11597 printf_filtered ("FAIL: threadlist test\n");
11598 else
11599 {
11600 threadref *scan = threadlist;
11601 threadref *limit = scan + result_count;
11602
11603 while (scan < limit)
11604 output_threadid (" thread ", scan++);
11605 }
11606}
11607
11608void
fba45db2 11609display_thread_info (struct gdb_ext_thread_info *info)
c906108c
SS
11610{
11611 output_threadid ("Threadid: ", &info->threadid);
11612 printf_filtered ("Name: %s\n ", info->shortname);
11613 printf_filtered ("State: %s\n", info->display);
11614 printf_filtered ("other: %s\n\n", info->more_display);
11615}
11616
11617int
fba45db2 11618get_and_display_threadinfo (threadref *ref)
c906108c
SS
11619{
11620 int result;
11621 int set;
11622 struct gdb_ext_thread_info threadinfo;
11623
11624 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
11625 | TAG_MOREDISPLAY | TAG_DISPLAY;
11626 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
11627 display_thread_info (&threadinfo);
11628 return result;
11629}
11630
11631static void
0b39b52e 11632threadinfo_test_cmd (const char *cmd, int tty)
c906108c
SS
11633{
11634 int athread = SAMPLE_THREAD;
11635 threadref thread;
11636 int set;
11637
11638 int_to_threadref (&thread, athread);
11639 printf_filtered ("Remote Threadinfo test\n");
11640 if (!get_and_display_threadinfo (&thread))
11641 printf_filtered ("FAIL cannot get thread info\n");
11642}
11643
11644static int
fba45db2 11645thread_display_step (threadref *ref, void *context)
c906108c
SS
11646{
11647 /* output_threadid(" threadstep ",ref); *//* simple test */
11648 return get_and_display_threadinfo (ref);
11649}
11650
11651static void
0b39b52e 11652threadlist_update_test_cmd (const char *cmd, int tty)
c906108c
SS
11653{
11654 printf_filtered ("Remote Threadlist update test\n");
11655 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
11656}
11657
11658static void
11659init_remote_threadtests (void)
11660{
3e43a32a
MS
11661 add_com ("tlist", class_obscure, threadlist_test_cmd,
11662 _("Fetch and print the remote list of "
590042fc 11663 "thread identifiers, one pkt only."));
c906108c 11664 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
590042fc 11665 _("Fetch and display info about one thread."));
c906108c 11666 add_com ("tset", class_obscure, threadset_test_cmd,
590042fc 11667 _("Test setting to a different thread."));
c906108c 11668 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
590042fc 11669 _("Iterate through updating all remote thread info."));
c906108c 11670 add_com ("talive", class_obscure, threadalive_test,
590042fc 11671 _("Remote thread alive test."));
c906108c
SS
11672}
11673
11674#endif /* 0 */
11675
a068643d 11676/* Convert a thread ID to a string. */
f3fb8c85 11677
a068643d 11678std::string
f6ac5f3d 11679remote_target::pid_to_str (ptid_t ptid)
f3fb8c85 11680{
82f73884 11681 struct remote_state *rs = get_remote_state ();
f3fb8c85 11682
d7e15655 11683 if (ptid == null_ptid)
7cee1e54 11684 return normal_pid_to_str (ptid);
0e998d96 11685 else if (ptid.is_pid ())
ecd0ada5
PA
11686 {
11687 /* Printing an inferior target id. */
11688
11689 /* When multi-process extensions are off, there's no way in the
11690 remote protocol to know the remote process id, if there's any
11691 at all. There's one exception --- when we're connected with
11692 target extended-remote, and we manually attached to a process
11693 with "attach PID". We don't record anywhere a flag that
11694 allows us to distinguish that case from the case of
11695 connecting with extended-remote and the stub already being
11696 attached to a process, and reporting yes to qAttached, hence
11697 no smart special casing here. */
11698 if (!remote_multi_process_p (rs))
a068643d 11699 return "Remote target";
ecd0ada5
PA
11700
11701 return normal_pid_to_str (ptid);
82f73884 11702 }
ecd0ada5 11703 else
79d7f229 11704 {
d7e15655 11705 if (magic_null_ptid == ptid)
a068643d 11706 return "Thread <main>";
8020350c 11707 else if (remote_multi_process_p (rs))
e38504b3 11708 if (ptid.lwp () == 0)
de0d863e
DB
11709 return normal_pid_to_str (ptid);
11710 else
a068643d
TT
11711 return string_printf ("Thread %d.%ld",
11712 ptid.pid (), ptid.lwp ());
ecd0ada5 11713 else
a068643d 11714 return string_printf ("Thread %ld", ptid.lwp ());
79d7f229 11715 }
f3fb8c85
MS
11716}
11717
38691318
KB
11718/* Get the address of the thread local variable in OBJFILE which is
11719 stored at OFFSET within the thread local storage for thread PTID. */
11720
f6ac5f3d
PA
11721CORE_ADDR
11722remote_target::get_thread_local_address (ptid_t ptid, CORE_ADDR lm,
11723 CORE_ADDR offset)
38691318 11724{
4082afcc 11725 if (packet_support (PACKET_qGetTLSAddr) != PACKET_DISABLE)
38691318
KB
11726 {
11727 struct remote_state *rs = get_remote_state ();
8d64371b
TT
11728 char *p = rs->buf.data ();
11729 char *endp = p + get_remote_packet_size ();
571dd617 11730 enum packet_result result;
38691318
KB
11731
11732 strcpy (p, "qGetTLSAddr:");
11733 p += strlen (p);
82f73884 11734 p = write_ptid (p, endp, ptid);
38691318
KB
11735 *p++ = ',';
11736 p += hexnumstr (p, offset);
11737 *p++ = ',';
11738 p += hexnumstr (p, lm);
11739 *p++ = '\0';
11740
6d820c5c 11741 putpkt (rs->buf);
8d64371b 11742 getpkt (&rs->buf, 0);
3e43a32a
MS
11743 result = packet_ok (rs->buf,
11744 &remote_protocol_packets[PACKET_qGetTLSAddr]);
571dd617 11745 if (result == PACKET_OK)
38691318 11746 {
b926417a 11747 ULONGEST addr;
38691318 11748
8d64371b 11749 unpack_varlen_hex (rs->buf.data (), &addr);
b926417a 11750 return addr;
38691318 11751 }
571dd617 11752 else if (result == PACKET_UNKNOWN)
109c3e39
AC
11753 throw_error (TLS_GENERIC_ERROR,
11754 _("Remote target doesn't support qGetTLSAddr packet"));
38691318 11755 else
109c3e39
AC
11756 throw_error (TLS_GENERIC_ERROR,
11757 _("Remote target failed to process qGetTLSAddr request"));
38691318
KB
11758 }
11759 else
109c3e39
AC
11760 throw_error (TLS_GENERIC_ERROR,
11761 _("TLS not supported or disabled on this target"));
38691318
KB
11762 /* Not reached. */
11763 return 0;
11764}
11765
711e434b
PM
11766/* Provide thread local base, i.e. Thread Information Block address.
11767 Returns 1 if ptid is found and thread_local_base is non zero. */
11768
57810aa7 11769bool
f6ac5f3d 11770remote_target::get_tib_address (ptid_t ptid, CORE_ADDR *addr)
711e434b 11771{
4082afcc 11772 if (packet_support (PACKET_qGetTIBAddr) != PACKET_DISABLE)
711e434b
PM
11773 {
11774 struct remote_state *rs = get_remote_state ();
8d64371b
TT
11775 char *p = rs->buf.data ();
11776 char *endp = p + get_remote_packet_size ();
711e434b
PM
11777 enum packet_result result;
11778
11779 strcpy (p, "qGetTIBAddr:");
11780 p += strlen (p);
11781 p = write_ptid (p, endp, ptid);
11782 *p++ = '\0';
11783
11784 putpkt (rs->buf);
8d64371b 11785 getpkt (&rs->buf, 0);
711e434b
PM
11786 result = packet_ok (rs->buf,
11787 &remote_protocol_packets[PACKET_qGetTIBAddr]);
11788 if (result == PACKET_OK)
11789 {
b926417a 11790 ULONGEST val;
8d64371b 11791 unpack_varlen_hex (rs->buf.data (), &val);
711e434b 11792 if (addr)
b926417a 11793 *addr = (CORE_ADDR) val;
57810aa7 11794 return true;
711e434b
PM
11795 }
11796 else if (result == PACKET_UNKNOWN)
11797 error (_("Remote target doesn't support qGetTIBAddr packet"));
11798 else
11799 error (_("Remote target failed to process qGetTIBAddr request"));
11800 }
11801 else
11802 error (_("qGetTIBAddr not supported or disabled on this target"));
11803 /* Not reached. */
57810aa7 11804 return false;
711e434b
PM
11805}
11806
29709017
DJ
11807/* Support for inferring a target description based on the current
11808 architecture and the size of a 'g' packet. While the 'g' packet
11809 can have any size (since optional registers can be left off the
11810 end), some sizes are easily recognizable given knowledge of the
11811 approximate architecture. */
11812
11813struct remote_g_packet_guess
11814{
eefce37f
TT
11815 remote_g_packet_guess (int bytes_, const struct target_desc *tdesc_)
11816 : bytes (bytes_),
11817 tdesc (tdesc_)
11818 {
11819 }
11820
29709017
DJ
11821 int bytes;
11822 const struct target_desc *tdesc;
11823};
29709017 11824
eefce37f 11825struct remote_g_packet_data : public allocate_on_obstack
29709017 11826{
eefce37f 11827 std::vector<remote_g_packet_guess> guesses;
29709017
DJ
11828};
11829
11830static struct gdbarch_data *remote_g_packet_data_handle;
11831
11832static void *
11833remote_g_packet_data_init (struct obstack *obstack)
11834{
eefce37f 11835 return new (obstack) remote_g_packet_data;
29709017
DJ
11836}
11837
11838void
11839register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes,
11840 const struct target_desc *tdesc)
11841{
11842 struct remote_g_packet_data *data
19ba03f4
SM
11843 = ((struct remote_g_packet_data *)
11844 gdbarch_data (gdbarch, remote_g_packet_data_handle));
29709017
DJ
11845
11846 gdb_assert (tdesc != NULL);
11847
eefce37f
TT
11848 for (const remote_g_packet_guess &guess : data->guesses)
11849 if (guess.bytes == bytes)
29709017 11850 internal_error (__FILE__, __LINE__,
9b20d036 11851 _("Duplicate g packet description added for size %d"),
29709017
DJ
11852 bytes);
11853
eefce37f 11854 data->guesses.emplace_back (bytes, tdesc);
29709017
DJ
11855}
11856
eefce37f
TT
11857/* Return true if remote_read_description would do anything on this target
11858 and architecture, false otherwise. */
d962ef82 11859
eefce37f 11860static bool
d962ef82
DJ
11861remote_read_description_p (struct target_ops *target)
11862{
11863 struct remote_g_packet_data *data
19ba03f4
SM
11864 = ((struct remote_g_packet_data *)
11865 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
d962ef82 11866
eefce37f 11867 return !data->guesses.empty ();
d962ef82
DJ
11868}
11869
f6ac5f3d
PA
11870const struct target_desc *
11871remote_target::read_description ()
29709017
DJ
11872{
11873 struct remote_g_packet_data *data
19ba03f4
SM
11874 = ((struct remote_g_packet_data *)
11875 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
29709017 11876
d962ef82
DJ
11877 /* Do not try this during initial connection, when we do not know
11878 whether there is a running but stopped thread. */
55f6301a 11879 if (!target_has_execution () || inferior_ptid == null_ptid)
b6a8c27b 11880 return beneath ()->read_description ();
d962ef82 11881
eefce37f 11882 if (!data->guesses.empty ())
29709017 11883 {
29709017
DJ
11884 int bytes = send_g_packet ();
11885
eefce37f
TT
11886 for (const remote_g_packet_guess &guess : data->guesses)
11887 if (guess.bytes == bytes)
11888 return guess.tdesc;
29709017
DJ
11889
11890 /* We discard the g packet. A minor optimization would be to
11891 hold on to it, and fill the register cache once we have selected
11892 an architecture, but it's too tricky to do safely. */
11893 }
11894
b6a8c27b 11895 return beneath ()->read_description ();
29709017
DJ
11896}
11897
a6b151f1
DJ
11898/* Remote file transfer support. This is host-initiated I/O, not
11899 target-initiated; for target-initiated, see remote-fileio.c. */
11900
11901/* If *LEFT is at least the length of STRING, copy STRING to
11902 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11903 decrease *LEFT. Otherwise raise an error. */
11904
11905static void
a121b7c1 11906remote_buffer_add_string (char **buffer, int *left, const char *string)
a6b151f1
DJ
11907{
11908 int len = strlen (string);
11909
11910 if (len > *left)
11911 error (_("Packet too long for target."));
11912
11913 memcpy (*buffer, string, len);
11914 *buffer += len;
11915 *left -= len;
11916
11917 /* NUL-terminate the buffer as a convenience, if there is
11918 room. */
11919 if (*left)
11920 **buffer = '\0';
11921}
11922
11923/* If *LEFT is large enough, hex encode LEN bytes from BYTES into
11924 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11925 decrease *LEFT. Otherwise raise an error. */
11926
11927static void
11928remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes,
11929 int len)
11930{
11931 if (2 * len > *left)
11932 error (_("Packet too long for target."));
11933
11934 bin2hex (bytes, *buffer, len);
11935 *buffer += 2 * len;
11936 *left -= 2 * len;
11937
11938 /* NUL-terminate the buffer as a convenience, if there is
11939 room. */
11940 if (*left)
11941 **buffer = '\0';
11942}
11943
11944/* If *LEFT is large enough, convert VALUE to hex and add it to
11945 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11946 decrease *LEFT. Otherwise raise an error. */
11947
11948static void
11949remote_buffer_add_int (char **buffer, int *left, ULONGEST value)
11950{
11951 int len = hexnumlen (value);
11952
11953 if (len > *left)
11954 error (_("Packet too long for target."));
11955
11956 hexnumstr (*buffer, value);
11957 *buffer += len;
11958 *left -= len;
11959
11960 /* NUL-terminate the buffer as a convenience, if there is
11961 room. */
11962 if (*left)
11963 **buffer = '\0';
11964}
11965
11966/* Parse an I/O result packet from BUFFER. Set RETCODE to the return
11967 value, *REMOTE_ERRNO to the remote error number or zero if none
11968 was included, and *ATTACHMENT to point to the start of the annex
11969 if any. The length of the packet isn't needed here; there may
11970 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
11971
11972 Return 0 if the packet could be parsed, -1 if it could not. If
11973 -1 is returned, the other variables may not be initialized. */
11974
11975static int
aa2838cc
SM
11976remote_hostio_parse_result (const char *buffer, int *retcode,
11977 int *remote_errno, const char **attachment)
a6b151f1
DJ
11978{
11979 char *p, *p2;
11980
11981 *remote_errno = 0;
11982 *attachment = NULL;
11983
11984 if (buffer[0] != 'F')
11985 return -1;
11986
11987 errno = 0;
11988 *retcode = strtol (&buffer[1], &p, 16);
11989 if (errno != 0 || p == &buffer[1])
11990 return -1;
11991
11992 /* Check for ",errno". */
11993 if (*p == ',')
11994 {
11995 errno = 0;
11996 *remote_errno = strtol (p + 1, &p2, 16);
11997 if (errno != 0 || p + 1 == p2)
11998 return -1;
11999 p = p2;
12000 }
12001
12002 /* Check for ";attachment". If there is no attachment, the
12003 packet should end here. */
12004 if (*p == ';')
12005 {
12006 *attachment = p + 1;
12007 return 0;
12008 }
12009 else if (*p == '\0')
12010 return 0;
12011 else
12012 return -1;
12013}
12014
12015/* Send a prepared I/O packet to the target and read its response.
12016 The prepared packet is in the global RS->BUF before this function
12017 is called, and the answer is there when we return.
12018
12019 COMMAND_BYTES is the length of the request to send, which may include
12020 binary data. WHICH_PACKET is the packet configuration to check
12021 before attempting a packet. If an error occurs, *REMOTE_ERRNO
12022 is set to the error number and -1 is returned. Otherwise the value
12023 returned by the function is returned.
12024
12025 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
12026 attachment is expected; an error will be reported if there's a
12027 mismatch. If one is found, *ATTACHMENT will be set to point into
12028 the packet buffer and *ATTACHMENT_LEN will be set to the
12029 attachment's length. */
12030
6b8edb51
PA
12031int
12032remote_target::remote_hostio_send_command (int command_bytes, int which_packet,
aa2838cc 12033 int *remote_errno, const char **attachment,
6b8edb51 12034 int *attachment_len)
a6b151f1
DJ
12035{
12036 struct remote_state *rs = get_remote_state ();
12037 int ret, bytes_read;
aa2838cc 12038 const char *attachment_tmp;
a6b151f1 12039
20db9c52 12040 if (packet_support (which_packet) == PACKET_DISABLE)
a6b151f1
DJ
12041 {
12042 *remote_errno = FILEIO_ENOSYS;
12043 return -1;
12044 }
12045
8d64371b
TT
12046 putpkt_binary (rs->buf.data (), command_bytes);
12047 bytes_read = getpkt_sane (&rs->buf, 0);
a6b151f1
DJ
12048
12049 /* If it timed out, something is wrong. Don't try to parse the
12050 buffer. */
12051 if (bytes_read < 0)
12052 {
12053 *remote_errno = FILEIO_EINVAL;
12054 return -1;
12055 }
12056
12057 switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet]))
12058 {
12059 case PACKET_ERROR:
12060 *remote_errno = FILEIO_EINVAL;
12061 return -1;
12062 case PACKET_UNKNOWN:
12063 *remote_errno = FILEIO_ENOSYS;
12064 return -1;
12065 case PACKET_OK:
12066 break;
12067 }
12068
8d64371b 12069 if (remote_hostio_parse_result (rs->buf.data (), &ret, remote_errno,
a6b151f1
DJ
12070 &attachment_tmp))
12071 {
12072 *remote_errno = FILEIO_EINVAL;
12073 return -1;
12074 }
12075
12076 /* Make sure we saw an attachment if and only if we expected one. */
12077 if ((attachment_tmp == NULL && attachment != NULL)
12078 || (attachment_tmp != NULL && attachment == NULL))
12079 {
12080 *remote_errno = FILEIO_EINVAL;
12081 return -1;
12082 }
12083
12084 /* If an attachment was found, it must point into the packet buffer;
12085 work out how many bytes there were. */
12086 if (attachment_tmp != NULL)
12087 {
12088 *attachment = attachment_tmp;
8d64371b 12089 *attachment_len = bytes_read - (*attachment - rs->buf.data ());
a6b151f1
DJ
12090 }
12091
12092 return ret;
12093}
12094
dd194f6b 12095/* See declaration.h. */
80152258 12096
dd194f6b
PA
12097void
12098readahead_cache::invalidate ()
80152258 12099{
dd194f6b 12100 this->fd = -1;
80152258
PA
12101}
12102
dd194f6b 12103/* See declaration.h. */
80152258 12104
dd194f6b
PA
12105void
12106readahead_cache::invalidate_fd (int fd)
80152258 12107{
dd194f6b
PA
12108 if (this->fd == fd)
12109 this->fd = -1;
80152258
PA
12110}
12111
15a201c8
GB
12112/* Set the filesystem remote_hostio functions that take FILENAME
12113 arguments will use. Return 0 on success, or -1 if an error
12114 occurs (and set *REMOTE_ERRNO). */
12115
6b8edb51
PA
12116int
12117remote_target::remote_hostio_set_filesystem (struct inferior *inf,
12118 int *remote_errno)
15a201c8
GB
12119{
12120 struct remote_state *rs = get_remote_state ();
12121 int required_pid = (inf == NULL || inf->fake_pid_p) ? 0 : inf->pid;
8d64371b 12122 char *p = rs->buf.data ();
15a201c8
GB
12123 int left = get_remote_packet_size () - 1;
12124 char arg[9];
12125 int ret;
12126
12127 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
12128 return 0;
12129
12130 if (rs->fs_pid != -1 && required_pid == rs->fs_pid)
12131 return 0;
12132
12133 remote_buffer_add_string (&p, &left, "vFile:setfs:");
12134
12135 xsnprintf (arg, sizeof (arg), "%x", required_pid);
12136 remote_buffer_add_string (&p, &left, arg);
12137
8d64371b 12138 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_setfs,
15a201c8
GB
12139 remote_errno, NULL, NULL);
12140
12141 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
12142 return 0;
12143
12144 if (ret == 0)
12145 rs->fs_pid = required_pid;
12146
12147 return ret;
12148}
12149
12e2a5fd 12150/* Implementation of to_fileio_open. */
a6b151f1 12151
6b8edb51
PA
12152int
12153remote_target::remote_hostio_open (inferior *inf, const char *filename,
12154 int flags, int mode, int warn_if_slow,
12155 int *remote_errno)
a6b151f1
DJ
12156{
12157 struct remote_state *rs = get_remote_state ();
8d64371b 12158 char *p = rs->buf.data ();
a6b151f1
DJ
12159 int left = get_remote_packet_size () - 1;
12160
4313b8c0
GB
12161 if (warn_if_slow)
12162 {
12163 static int warning_issued = 0;
12164
12165 printf_unfiltered (_("Reading %s from remote target...\n"),
12166 filename);
12167
12168 if (!warning_issued)
12169 {
12170 warning (_("File transfers from remote targets can be slow."
12171 " Use \"set sysroot\" to access files locally"
12172 " instead."));
12173 warning_issued = 1;
12174 }
12175 }
12176
15a201c8
GB
12177 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
12178 return -1;
12179
a6b151f1
DJ
12180 remote_buffer_add_string (&p, &left, "vFile:open:");
12181
12182 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12183 strlen (filename));
12184 remote_buffer_add_string (&p, &left, ",");
12185
12186 remote_buffer_add_int (&p, &left, flags);
12187 remote_buffer_add_string (&p, &left, ",");
12188
12189 remote_buffer_add_int (&p, &left, mode);
12190
8d64371b 12191 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_open,
a6b151f1
DJ
12192 remote_errno, NULL, NULL);
12193}
12194
f6ac5f3d
PA
12195int
12196remote_target::fileio_open (struct inferior *inf, const char *filename,
12197 int flags, int mode, int warn_if_slow,
12198 int *remote_errno)
12199{
6b8edb51 12200 return remote_hostio_open (inf, filename, flags, mode, warn_if_slow,
f6ac5f3d
PA
12201 remote_errno);
12202}
12203
12e2a5fd 12204/* Implementation of to_fileio_pwrite. */
a6b151f1 12205
6b8edb51
PA
12206int
12207remote_target::remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
12208 ULONGEST offset, int *remote_errno)
a6b151f1
DJ
12209{
12210 struct remote_state *rs = get_remote_state ();
8d64371b 12211 char *p = rs->buf.data ();
a6b151f1
DJ
12212 int left = get_remote_packet_size ();
12213 int out_len;
12214
dd194f6b 12215 rs->readahead_cache.invalidate_fd (fd);
80152258 12216
a6b151f1
DJ
12217 remote_buffer_add_string (&p, &left, "vFile:pwrite:");
12218
12219 remote_buffer_add_int (&p, &left, fd);
12220 remote_buffer_add_string (&p, &left, ",");
12221
12222 remote_buffer_add_int (&p, &left, offset);
12223 remote_buffer_add_string (&p, &left, ",");
12224
124e13d9 12225 p += remote_escape_output (write_buf, len, 1, (gdb_byte *) p, &out_len,
8d64371b
TT
12226 (get_remote_packet_size ()
12227 - (p - rs->buf.data ())));
a6b151f1 12228
8d64371b 12229 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pwrite,
a6b151f1
DJ
12230 remote_errno, NULL, NULL);
12231}
12232
f6ac5f3d
PA
12233int
12234remote_target::fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
12235 ULONGEST offset, int *remote_errno)
12236{
6b8edb51 12237 return remote_hostio_pwrite (fd, write_buf, len, offset, remote_errno);
f6ac5f3d
PA
12238}
12239
80152258
PA
12240/* Helper for the implementation of to_fileio_pread. Read the file
12241 from the remote side with vFile:pread. */
a6b151f1 12242
6b8edb51
PA
12243int
12244remote_target::remote_hostio_pread_vFile (int fd, gdb_byte *read_buf, int len,
12245 ULONGEST offset, int *remote_errno)
a6b151f1
DJ
12246{
12247 struct remote_state *rs = get_remote_state ();
8d64371b 12248 char *p = rs->buf.data ();
aa2838cc 12249 const char *attachment;
a6b151f1
DJ
12250 int left = get_remote_packet_size ();
12251 int ret, attachment_len;
12252 int read_len;
12253
12254 remote_buffer_add_string (&p, &left, "vFile:pread:");
12255
12256 remote_buffer_add_int (&p, &left, fd);
12257 remote_buffer_add_string (&p, &left, ",");
12258
12259 remote_buffer_add_int (&p, &left, len);
12260 remote_buffer_add_string (&p, &left, ",");
12261
12262 remote_buffer_add_int (&p, &left, offset);
12263
8d64371b 12264 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pread,
a6b151f1
DJ
12265 remote_errno, &attachment,
12266 &attachment_len);
12267
12268 if (ret < 0)
12269 return ret;
12270
bc20a4af 12271 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
a6b151f1
DJ
12272 read_buf, len);
12273 if (read_len != ret)
12274 error (_("Read returned %d, but %d bytes."), ret, (int) read_len);
12275
12276 return ret;
12277}
12278
dd194f6b 12279/* See declaration.h. */
80152258 12280
dd194f6b
PA
12281int
12282readahead_cache::pread (int fd, gdb_byte *read_buf, size_t len,
12283 ULONGEST offset)
80152258 12284{
dd194f6b
PA
12285 if (this->fd == fd
12286 && this->offset <= offset
12287 && offset < this->offset + this->bufsize)
80152258 12288 {
dd194f6b 12289 ULONGEST max = this->offset + this->bufsize;
80152258
PA
12290
12291 if (offset + len > max)
12292 len = max - offset;
12293
dd194f6b 12294 memcpy (read_buf, this->buf + offset - this->offset, len);
80152258
PA
12295 return len;
12296 }
12297
12298 return 0;
12299}
12300
12301/* Implementation of to_fileio_pread. */
12302
6b8edb51
PA
12303int
12304remote_target::remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
12305 ULONGEST offset, int *remote_errno)
80152258
PA
12306{
12307 int ret;
12308 struct remote_state *rs = get_remote_state ();
dd194f6b 12309 readahead_cache *cache = &rs->readahead_cache;
80152258 12310
dd194f6b 12311 ret = cache->pread (fd, read_buf, len, offset);
80152258
PA
12312 if (ret > 0)
12313 {
12314 cache->hit_count++;
12315
12316 if (remote_debug)
12317 fprintf_unfiltered (gdb_stdlog, "readahead cache hit %s\n",
12318 pulongest (cache->hit_count));
12319 return ret;
12320 }
12321
12322 cache->miss_count++;
12323 if (remote_debug)
12324 fprintf_unfiltered (gdb_stdlog, "readahead cache miss %s\n",
12325 pulongest (cache->miss_count));
12326
12327 cache->fd = fd;
12328 cache->offset = offset;
12329 cache->bufsize = get_remote_packet_size ();
224c3ddb 12330 cache->buf = (gdb_byte *) xrealloc (cache->buf, cache->bufsize);
80152258 12331
6b8edb51 12332 ret = remote_hostio_pread_vFile (cache->fd, cache->buf, cache->bufsize,
80152258
PA
12333 cache->offset, remote_errno);
12334 if (ret <= 0)
12335 {
dd194f6b 12336 cache->invalidate_fd (fd);
80152258
PA
12337 return ret;
12338 }
12339
12340 cache->bufsize = ret;
dd194f6b 12341 return cache->pread (fd, read_buf, len, offset);
80152258
PA
12342}
12343
f6ac5f3d
PA
12344int
12345remote_target::fileio_pread (int fd, gdb_byte *read_buf, int len,
12346 ULONGEST offset, int *remote_errno)
12347{
6b8edb51 12348 return remote_hostio_pread (fd, read_buf, len, offset, remote_errno);
f6ac5f3d
PA
12349}
12350
12e2a5fd 12351/* Implementation of to_fileio_close. */
a6b151f1 12352
6b8edb51
PA
12353int
12354remote_target::remote_hostio_close (int fd, int *remote_errno)
a6b151f1
DJ
12355{
12356 struct remote_state *rs = get_remote_state ();
8d64371b 12357 char *p = rs->buf.data ();
a6b151f1
DJ
12358 int left = get_remote_packet_size () - 1;
12359
dd194f6b 12360 rs->readahead_cache.invalidate_fd (fd);
80152258 12361
a6b151f1
DJ
12362 remote_buffer_add_string (&p, &left, "vFile:close:");
12363
12364 remote_buffer_add_int (&p, &left, fd);
12365
8d64371b 12366 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_close,
a6b151f1
DJ
12367 remote_errno, NULL, NULL);
12368}
12369
f6ac5f3d
PA
12370int
12371remote_target::fileio_close (int fd, int *remote_errno)
12372{
6b8edb51 12373 return remote_hostio_close (fd, remote_errno);
f6ac5f3d
PA
12374}
12375
12e2a5fd 12376/* Implementation of to_fileio_unlink. */
a6b151f1 12377
6b8edb51
PA
12378int
12379remote_target::remote_hostio_unlink (inferior *inf, const char *filename,
12380 int *remote_errno)
a6b151f1
DJ
12381{
12382 struct remote_state *rs = get_remote_state ();
8d64371b 12383 char *p = rs->buf.data ();
a6b151f1
DJ
12384 int left = get_remote_packet_size () - 1;
12385
15a201c8
GB
12386 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
12387 return -1;
12388
a6b151f1
DJ
12389 remote_buffer_add_string (&p, &left, "vFile:unlink:");
12390
12391 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12392 strlen (filename));
12393
8d64371b 12394 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_unlink,
a6b151f1
DJ
12395 remote_errno, NULL, NULL);
12396}
12397
f6ac5f3d
PA
12398int
12399remote_target::fileio_unlink (struct inferior *inf, const char *filename,
12400 int *remote_errno)
12401{
6b8edb51 12402 return remote_hostio_unlink (inf, filename, remote_errno);
f6ac5f3d
PA
12403}
12404
12e2a5fd 12405/* Implementation of to_fileio_readlink. */
b9e7b9c3 12406
f6ac5f3d
PA
12407gdb::optional<std::string>
12408remote_target::fileio_readlink (struct inferior *inf, const char *filename,
12409 int *remote_errno)
b9e7b9c3
UW
12410{
12411 struct remote_state *rs = get_remote_state ();
8d64371b 12412 char *p = rs->buf.data ();
aa2838cc 12413 const char *attachment;
b9e7b9c3
UW
12414 int left = get_remote_packet_size ();
12415 int len, attachment_len;
12416 int read_len;
b9e7b9c3 12417
15a201c8 12418 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
e0d3522b 12419 return {};
15a201c8 12420
b9e7b9c3
UW
12421 remote_buffer_add_string (&p, &left, "vFile:readlink:");
12422
12423 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12424 strlen (filename));
12425
8d64371b 12426 len = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_readlink,
b9e7b9c3
UW
12427 remote_errno, &attachment,
12428 &attachment_len);
12429
12430 if (len < 0)
e0d3522b 12431 return {};
b9e7b9c3 12432
e0d3522b 12433 std::string ret (len, '\0');
b9e7b9c3 12434
bc20a4af 12435 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
e0d3522b 12436 (gdb_byte *) &ret[0], len);
b9e7b9c3
UW
12437 if (read_len != len)
12438 error (_("Readlink returned %d, but %d bytes."), len, read_len);
12439
b9e7b9c3
UW
12440 return ret;
12441}
12442
12e2a5fd 12443/* Implementation of to_fileio_fstat. */
0a93529c 12444
f6ac5f3d
PA
12445int
12446remote_target::fileio_fstat (int fd, struct stat *st, int *remote_errno)
0a93529c
GB
12447{
12448 struct remote_state *rs = get_remote_state ();
8d64371b 12449 char *p = rs->buf.data ();
0a93529c
GB
12450 int left = get_remote_packet_size ();
12451 int attachment_len, ret;
aa2838cc 12452 const char *attachment;
0a93529c
GB
12453 struct fio_stat fst;
12454 int read_len;
12455
464b0089
GB
12456 remote_buffer_add_string (&p, &left, "vFile:fstat:");
12457
12458 remote_buffer_add_int (&p, &left, fd);
12459
8d64371b 12460 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_fstat,
464b0089
GB
12461 remote_errno, &attachment,
12462 &attachment_len);
12463 if (ret < 0)
0a93529c 12464 {
464b0089
GB
12465 if (*remote_errno != FILEIO_ENOSYS)
12466 return ret;
12467
0a93529c
GB
12468 /* Strictly we should return -1, ENOSYS here, but when
12469 "set sysroot remote:" was implemented in August 2008
12470 BFD's need for a stat function was sidestepped with
12471 this hack. This was not remedied until March 2015
12472 so we retain the previous behavior to avoid breaking
12473 compatibility.
12474
12475 Note that the memset is a March 2015 addition; older
12476 GDBs set st_size *and nothing else* so the structure
12477 would have garbage in all other fields. This might
12478 break something but retaining the previous behavior
12479 here would be just too wrong. */
12480
12481 memset (st, 0, sizeof (struct stat));
12482 st->st_size = INT_MAX;
12483 return 0;
12484 }
12485
0a93529c
GB
12486 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
12487 (gdb_byte *) &fst, sizeof (fst));
12488
12489 if (read_len != ret)
12490 error (_("vFile:fstat returned %d, but %d bytes."), ret, read_len);
12491
12492 if (read_len != sizeof (fst))
12493 error (_("vFile:fstat returned %d bytes, but expecting %d."),
12494 read_len, (int) sizeof (fst));
12495
12496 remote_fileio_to_host_stat (&fst, st);
12497
12498 return 0;
12499}
12500
12e2a5fd 12501/* Implementation of to_filesystem_is_local. */
e3dd7556 12502
57810aa7 12503bool
f6ac5f3d 12504remote_target::filesystem_is_local ()
e3dd7556
GB
12505{
12506 /* Valgrind GDB presents itself as a remote target but works
12507 on the local filesystem: it does not implement remote get
12508 and users are not expected to set a sysroot. To handle
12509 this case we treat the remote filesystem as local if the
12510 sysroot is exactly TARGET_SYSROOT_PREFIX and if the stub
12511 does not support vFile:open. */
a3be80c3 12512 if (strcmp (gdb_sysroot, TARGET_SYSROOT_PREFIX) == 0)
e3dd7556
GB
12513 {
12514 enum packet_support ps = packet_support (PACKET_vFile_open);
12515
12516 if (ps == PACKET_SUPPORT_UNKNOWN)
12517 {
12518 int fd, remote_errno;
12519
12520 /* Try opening a file to probe support. The supplied
12521 filename is irrelevant, we only care about whether
12522 the stub recognizes the packet or not. */
6b8edb51 12523 fd = remote_hostio_open (NULL, "just probing",
4313b8c0 12524 FILEIO_O_RDONLY, 0700, 0,
e3dd7556
GB
12525 &remote_errno);
12526
12527 if (fd >= 0)
6b8edb51 12528 remote_hostio_close (fd, &remote_errno);
e3dd7556
GB
12529
12530 ps = packet_support (PACKET_vFile_open);
12531 }
12532
12533 if (ps == PACKET_DISABLE)
12534 {
12535 static int warning_issued = 0;
12536
12537 if (!warning_issued)
12538 {
12539 warning (_("remote target does not support file"
12540 " transfer, attempting to access files"
12541 " from local filesystem."));
12542 warning_issued = 1;
12543 }
12544
57810aa7 12545 return true;
e3dd7556
GB
12546 }
12547 }
12548
57810aa7 12549 return false;
e3dd7556
GB
12550}
12551
a6b151f1
DJ
12552static int
12553remote_fileio_errno_to_host (int errnum)
12554{
12555 switch (errnum)
12556 {
12557 case FILEIO_EPERM:
dda83cd7 12558 return EPERM;
a6b151f1 12559 case FILEIO_ENOENT:
dda83cd7 12560 return ENOENT;
a6b151f1 12561 case FILEIO_EINTR:
dda83cd7 12562 return EINTR;
a6b151f1 12563 case FILEIO_EIO:
dda83cd7 12564 return EIO;
a6b151f1 12565 case FILEIO_EBADF:
dda83cd7 12566 return EBADF;
a6b151f1 12567 case FILEIO_EACCES:
dda83cd7 12568 return EACCES;
a6b151f1 12569 case FILEIO_EFAULT:
dda83cd7 12570 return EFAULT;
a6b151f1 12571 case FILEIO_EBUSY:
dda83cd7 12572 return EBUSY;
a6b151f1 12573 case FILEIO_EEXIST:
dda83cd7 12574 return EEXIST;
a6b151f1 12575 case FILEIO_ENODEV:
dda83cd7 12576 return ENODEV;
a6b151f1 12577 case FILEIO_ENOTDIR:
dda83cd7 12578 return ENOTDIR;
a6b151f1 12579 case FILEIO_EISDIR:
dda83cd7 12580 return EISDIR;
a6b151f1 12581 case FILEIO_EINVAL:
dda83cd7 12582 return EINVAL;
a6b151f1 12583 case FILEIO_ENFILE:
dda83cd7 12584 return ENFILE;
a6b151f1 12585 case FILEIO_EMFILE:
dda83cd7 12586 return EMFILE;
a6b151f1 12587 case FILEIO_EFBIG:
dda83cd7 12588 return EFBIG;
a6b151f1 12589 case FILEIO_ENOSPC:
dda83cd7 12590 return ENOSPC;
a6b151f1 12591 case FILEIO_ESPIPE:
dda83cd7 12592 return ESPIPE;
a6b151f1 12593 case FILEIO_EROFS:
dda83cd7 12594 return EROFS;
a6b151f1 12595 case FILEIO_ENOSYS:
dda83cd7 12596 return ENOSYS;
a6b151f1 12597 case FILEIO_ENAMETOOLONG:
dda83cd7 12598 return ENAMETOOLONG;
a6b151f1
DJ
12599 }
12600 return -1;
12601}
12602
12603static char *
12604remote_hostio_error (int errnum)
12605{
12606 int host_error = remote_fileio_errno_to_host (errnum);
12607
12608 if (host_error == -1)
12609 error (_("Unknown remote I/O error %d"), errnum);
12610 else
12611 error (_("Remote I/O error: %s"), safe_strerror (host_error));
12612}
12613
440b7aec
PA
12614/* A RAII wrapper around a remote file descriptor. */
12615
12616class scoped_remote_fd
a6b151f1 12617{
440b7aec 12618public:
6b8edb51
PA
12619 scoped_remote_fd (remote_target *remote, int fd)
12620 : m_remote (remote), m_fd (fd)
440b7aec
PA
12621 {
12622 }
a6b151f1 12623
440b7aec
PA
12624 ~scoped_remote_fd ()
12625 {
12626 if (m_fd != -1)
12627 {
12628 try
12629 {
12630 int remote_errno;
6b8edb51 12631 m_remote->remote_hostio_close (m_fd, &remote_errno);
440b7aec
PA
12632 }
12633 catch (...)
12634 {
12635 /* Swallow exception before it escapes the dtor. If
12636 something goes wrong, likely the connection is gone,
12637 and there's nothing else that can be done. */
12638 }
12639 }
12640 }
12641
12642 DISABLE_COPY_AND_ASSIGN (scoped_remote_fd);
12643
12644 /* Release ownership of the file descriptor, and return it. */
88a774b9 12645 ATTRIBUTE_UNUSED_RESULT int release () noexcept
440b7aec
PA
12646 {
12647 int fd = m_fd;
12648 m_fd = -1;
12649 return fd;
12650 }
12651
12652 /* Return the owned file descriptor. */
12653 int get () const noexcept
12654 {
12655 return m_fd;
12656 }
12657
12658private:
6b8edb51
PA
12659 /* The remote target. */
12660 remote_target *m_remote;
12661
440b7aec
PA
12662 /* The owned remote I/O file descriptor. */
12663 int m_fd;
12664};
a6b151f1
DJ
12665
12666void
12667remote_file_put (const char *local_file, const char *remote_file, int from_tty)
6b8edb51
PA
12668{
12669 remote_target *remote = get_current_remote_target ();
12670
12671 if (remote == nullptr)
12672 error (_("command can only be used with remote target"));
12673
12674 remote->remote_file_put (local_file, remote_file, from_tty);
12675}
12676
12677void
12678remote_target::remote_file_put (const char *local_file, const char *remote_file,
12679 int from_tty)
a6b151f1 12680{
440b7aec 12681 int retcode, remote_errno, bytes, io_size;
a6b151f1
DJ
12682 int bytes_in_buffer;
12683 int saw_eof;
12684 ULONGEST offset;
a6b151f1 12685
d419f42d 12686 gdb_file_up file = gdb_fopen_cloexec (local_file, "rb");
a6b151f1
DJ
12687 if (file == NULL)
12688 perror_with_name (local_file);
a6b151f1 12689
440b7aec 12690 scoped_remote_fd fd
6b8edb51
PA
12691 (this, remote_hostio_open (NULL,
12692 remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT
12693 | FILEIO_O_TRUNC),
12694 0700, 0, &remote_errno));
440b7aec 12695 if (fd.get () == -1)
a6b151f1
DJ
12696 remote_hostio_error (remote_errno);
12697
12698 /* Send up to this many bytes at once. They won't all fit in the
12699 remote packet limit, so we'll transfer slightly fewer. */
12700 io_size = get_remote_packet_size ();
5ca3b260 12701 gdb::byte_vector buffer (io_size);
a6b151f1 12702
a6b151f1
DJ
12703 bytes_in_buffer = 0;
12704 saw_eof = 0;
12705 offset = 0;
12706 while (bytes_in_buffer || !saw_eof)
12707 {
12708 if (!saw_eof)
12709 {
5ca3b260 12710 bytes = fread (buffer.data () + bytes_in_buffer, 1,
3e43a32a 12711 io_size - bytes_in_buffer,
d419f42d 12712 file.get ());
a6b151f1
DJ
12713 if (bytes == 0)
12714 {
d419f42d 12715 if (ferror (file.get ()))
a6b151f1
DJ
12716 error (_("Error reading %s."), local_file);
12717 else
12718 {
12719 /* EOF. Unless there is something still in the
12720 buffer from the last iteration, we are done. */
12721 saw_eof = 1;
12722 if (bytes_in_buffer == 0)
12723 break;
12724 }
12725 }
12726 }
12727 else
12728 bytes = 0;
12729
12730 bytes += bytes_in_buffer;
12731 bytes_in_buffer = 0;
12732
5ca3b260 12733 retcode = remote_hostio_pwrite (fd.get (), buffer.data (), bytes,
3e43a32a 12734 offset, &remote_errno);
a6b151f1
DJ
12735
12736 if (retcode < 0)
12737 remote_hostio_error (remote_errno);
12738 else if (retcode == 0)
12739 error (_("Remote write of %d bytes returned 0!"), bytes);
12740 else if (retcode < bytes)
12741 {
12742 /* Short write. Save the rest of the read data for the next
12743 write. */
12744 bytes_in_buffer = bytes - retcode;
5ca3b260 12745 memmove (buffer.data (), buffer.data () + retcode, bytes_in_buffer);
a6b151f1
DJ
12746 }
12747
12748 offset += retcode;
12749 }
12750
6b8edb51 12751 if (remote_hostio_close (fd.release (), &remote_errno))
a6b151f1
DJ
12752 remote_hostio_error (remote_errno);
12753
12754 if (from_tty)
12755 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file);
a6b151f1
DJ
12756}
12757
12758void
12759remote_file_get (const char *remote_file, const char *local_file, int from_tty)
6b8edb51
PA
12760{
12761 remote_target *remote = get_current_remote_target ();
12762
12763 if (remote == nullptr)
12764 error (_("command can only be used with remote target"));
12765
12766 remote->remote_file_get (remote_file, local_file, from_tty);
12767}
12768
12769void
12770remote_target::remote_file_get (const char *remote_file, const char *local_file,
12771 int from_tty)
a6b151f1 12772{
440b7aec 12773 int remote_errno, bytes, io_size;
a6b151f1 12774 ULONGEST offset;
a6b151f1 12775
440b7aec 12776 scoped_remote_fd fd
6b8edb51
PA
12777 (this, remote_hostio_open (NULL,
12778 remote_file, FILEIO_O_RDONLY, 0, 0,
12779 &remote_errno));
440b7aec 12780 if (fd.get () == -1)
a6b151f1
DJ
12781 remote_hostio_error (remote_errno);
12782
d419f42d 12783 gdb_file_up file = gdb_fopen_cloexec (local_file, "wb");
a6b151f1
DJ
12784 if (file == NULL)
12785 perror_with_name (local_file);
a6b151f1
DJ
12786
12787 /* Send up to this many bytes at once. They won't all fit in the
12788 remote packet limit, so we'll transfer slightly fewer. */
12789 io_size = get_remote_packet_size ();
5ca3b260 12790 gdb::byte_vector buffer (io_size);
a6b151f1 12791
a6b151f1
DJ
12792 offset = 0;
12793 while (1)
12794 {
5ca3b260 12795 bytes = remote_hostio_pread (fd.get (), buffer.data (), io_size, offset,
440b7aec 12796 &remote_errno);
a6b151f1
DJ
12797 if (bytes == 0)
12798 /* Success, but no bytes, means end-of-file. */
12799 break;
12800 if (bytes == -1)
12801 remote_hostio_error (remote_errno);
12802
12803 offset += bytes;
12804
5ca3b260 12805 bytes = fwrite (buffer.data (), 1, bytes, file.get ());
a6b151f1
DJ
12806 if (bytes == 0)
12807 perror_with_name (local_file);
12808 }
12809
6b8edb51 12810 if (remote_hostio_close (fd.release (), &remote_errno))
a6b151f1
DJ
12811 remote_hostio_error (remote_errno);
12812
12813 if (from_tty)
12814 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file);
a6b151f1
DJ
12815}
12816
12817void
12818remote_file_delete (const char *remote_file, int from_tty)
12819{
6b8edb51 12820 remote_target *remote = get_current_remote_target ();
a6b151f1 12821
6b8edb51 12822 if (remote == nullptr)
a6b151f1
DJ
12823 error (_("command can only be used with remote target"));
12824
6b8edb51
PA
12825 remote->remote_file_delete (remote_file, from_tty);
12826}
12827
12828void
12829remote_target::remote_file_delete (const char *remote_file, int from_tty)
12830{
12831 int retcode, remote_errno;
12832
12833 retcode = remote_hostio_unlink (NULL, remote_file, &remote_errno);
a6b151f1
DJ
12834 if (retcode == -1)
12835 remote_hostio_error (remote_errno);
12836
12837 if (from_tty)
12838 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file);
12839}
12840
12841static void
ac88e2de 12842remote_put_command (const char *args, int from_tty)
a6b151f1 12843{
d1a41061
PP
12844 if (args == NULL)
12845 error_no_arg (_("file to put"));
12846
773a1edc 12847 gdb_argv argv (args);
a6b151f1
DJ
12848 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12849 error (_("Invalid parameters to remote put"));
12850
12851 remote_file_put (argv[0], argv[1], from_tty);
a6b151f1
DJ
12852}
12853
12854static void
ac88e2de 12855remote_get_command (const char *args, int from_tty)
a6b151f1 12856{
d1a41061
PP
12857 if (args == NULL)
12858 error_no_arg (_("file to get"));
12859
773a1edc 12860 gdb_argv argv (args);
a6b151f1
DJ
12861 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12862 error (_("Invalid parameters to remote get"));
12863
12864 remote_file_get (argv[0], argv[1], from_tty);
a6b151f1
DJ
12865}
12866
12867static void
ac88e2de 12868remote_delete_command (const char *args, int from_tty)
a6b151f1 12869{
d1a41061
PP
12870 if (args == NULL)
12871 error_no_arg (_("file to delete"));
12872
773a1edc 12873 gdb_argv argv (args);
a6b151f1
DJ
12874 if (argv[0] == NULL || argv[1] != NULL)
12875 error (_("Invalid parameters to remote delete"));
12876
12877 remote_file_delete (argv[0], from_tty);
a6b151f1
DJ
12878}
12879
57810aa7 12880bool
f6ac5f3d 12881remote_target::can_execute_reverse ()
b2175913 12882{
4082afcc
PA
12883 if (packet_support (PACKET_bs) == PACKET_ENABLE
12884 || packet_support (PACKET_bc) == PACKET_ENABLE)
57810aa7 12885 return true;
40ab02ce 12886 else
57810aa7 12887 return false;
b2175913
MS
12888}
12889
57810aa7 12890bool
f6ac5f3d 12891remote_target::supports_non_stop ()
74531fed 12892{
57810aa7 12893 return true;
74531fed
PA
12894}
12895
57810aa7 12896bool
f6ac5f3d 12897remote_target::supports_disable_randomization ()
03583c20
UW
12898{
12899 /* Only supported in extended mode. */
57810aa7 12900 return false;
03583c20
UW
12901}
12902
57810aa7 12903bool
f6ac5f3d 12904remote_target::supports_multi_process ()
8a305172
PA
12905{
12906 struct remote_state *rs = get_remote_state ();
a744cf53 12907
8020350c 12908 return remote_multi_process_p (rs);
8a305172
PA
12909}
12910
70221824 12911static int
f6ac5f3d 12912remote_supports_cond_tracepoints ()
782b2b07 12913{
4082afcc 12914 return packet_support (PACKET_ConditionalTracepoints) == PACKET_ENABLE;
782b2b07
SS
12915}
12916
57810aa7 12917bool
f6ac5f3d 12918remote_target::supports_evaluation_of_breakpoint_conditions ()
3788aec7 12919{
4082afcc 12920 return packet_support (PACKET_ConditionalBreakpoints) == PACKET_ENABLE;
3788aec7
LM
12921}
12922
70221824 12923static int
f6ac5f3d 12924remote_supports_fast_tracepoints ()
7a697b8d 12925{
4082afcc 12926 return packet_support (PACKET_FastTracepoints) == PACKET_ENABLE;
7a697b8d
SS
12927}
12928
0fb4aa4b 12929static int
f6ac5f3d 12930remote_supports_static_tracepoints ()
0fb4aa4b 12931{
4082afcc 12932 return packet_support (PACKET_StaticTracepoints) == PACKET_ENABLE;
0fb4aa4b
PA
12933}
12934
1e4d1764 12935static int
f6ac5f3d 12936remote_supports_install_in_trace ()
1e4d1764 12937{
4082afcc 12938 return packet_support (PACKET_InstallInTrace) == PACKET_ENABLE;
1e4d1764
YQ
12939}
12940
57810aa7 12941bool
f6ac5f3d 12942remote_target::supports_enable_disable_tracepoint ()
d248b706 12943{
4082afcc
PA
12944 return (packet_support (PACKET_EnableDisableTracepoints_feature)
12945 == PACKET_ENABLE);
d248b706
KY
12946}
12947
57810aa7 12948bool
f6ac5f3d 12949remote_target::supports_string_tracing ()
3065dfb6 12950{
4082afcc 12951 return packet_support (PACKET_tracenz_feature) == PACKET_ENABLE;
3065dfb6
SS
12952}
12953
57810aa7 12954bool
f6ac5f3d 12955remote_target::can_run_breakpoint_commands ()
d3ce09f5 12956{
4082afcc 12957 return packet_support (PACKET_BreakpointCommands) == PACKET_ENABLE;
d3ce09f5
SS
12958}
12959
f6ac5f3d
PA
12960void
12961remote_target::trace_init ()
35b1e5cc 12962{
b6bb3468
PA
12963 struct remote_state *rs = get_remote_state ();
12964
35b1e5cc 12965 putpkt ("QTinit");
b6bb3468 12966 remote_get_noisy_reply ();
8d64371b 12967 if (strcmp (rs->buf.data (), "OK") != 0)
35b1e5cc
SS
12968 error (_("Target does not support this command."));
12969}
12970
409873ef
SS
12971/* Recursive routine to walk through command list including loops, and
12972 download packets for each command. */
12973
6b8edb51
PA
12974void
12975remote_target::remote_download_command_source (int num, ULONGEST addr,
12976 struct command_line *cmds)
409873ef
SS
12977{
12978 struct remote_state *rs = get_remote_state ();
12979 struct command_line *cmd;
12980
12981 for (cmd = cmds; cmd; cmd = cmd->next)
12982 {
0df8b418 12983 QUIT; /* Allow user to bail out with ^C. */
8d64371b 12984 strcpy (rs->buf.data (), "QTDPsrc:");
409873ef 12985 encode_source_string (num, addr, "cmd", cmd->line,
8d64371b
TT
12986 rs->buf.data () + strlen (rs->buf.data ()),
12987 rs->buf.size () - strlen (rs->buf.data ()));
409873ef 12988 putpkt (rs->buf);
b6bb3468 12989 remote_get_noisy_reply ();
8d64371b 12990 if (strcmp (rs->buf.data (), "OK"))
409873ef
SS
12991 warning (_("Target does not support source download."));
12992
12993 if (cmd->control_type == while_control
12994 || cmd->control_type == while_stepping_control)
12995 {
12973681 12996 remote_download_command_source (num, addr, cmd->body_list_0.get ());
409873ef 12997
0df8b418 12998 QUIT; /* Allow user to bail out with ^C. */
8d64371b 12999 strcpy (rs->buf.data (), "QTDPsrc:");
409873ef 13000 encode_source_string (num, addr, "cmd", "end",
8d64371b
TT
13001 rs->buf.data () + strlen (rs->buf.data ()),
13002 rs->buf.size () - strlen (rs->buf.data ()));
409873ef 13003 putpkt (rs->buf);
b6bb3468 13004 remote_get_noisy_reply ();
8d64371b 13005 if (strcmp (rs->buf.data (), "OK"))
409873ef
SS
13006 warning (_("Target does not support source download."));
13007 }
13008 }
13009}
13010
f6ac5f3d
PA
13011void
13012remote_target::download_tracepoint (struct bp_location *loc)
35b1e5cc
SS
13013{
13014 CORE_ADDR tpaddr;
409873ef 13015 char addrbuf[40];
b44ec619
SM
13016 std::vector<std::string> tdp_actions;
13017 std::vector<std::string> stepping_actions;
35b1e5cc 13018 char *pkt;
e8ba3115 13019 struct breakpoint *b = loc->owner;
d9b3f62e 13020 struct tracepoint *t = (struct tracepoint *) b;
b6bb3468 13021 struct remote_state *rs = get_remote_state ();
3df3a985 13022 int ret;
ff36536c 13023 const char *err_msg = _("Tracepoint packet too large for target.");
3df3a985
PFC
13024 size_t size_left;
13025
13026 /* We use a buffer other than rs->buf because we'll build strings
13027 across multiple statements, and other statements in between could
13028 modify rs->buf. */
13029 gdb::char_vector buf (get_remote_packet_size ());
35b1e5cc 13030
dc673c81 13031 encode_actions_rsp (loc, &tdp_actions, &stepping_actions);
e8ba3115
YQ
13032
13033 tpaddr = loc->address;
53807e9f 13034 strcpy (addrbuf, phex (tpaddr, sizeof (CORE_ADDR)));
3df3a985
PFC
13035 ret = snprintf (buf.data (), buf.size (), "QTDP:%x:%s:%c:%lx:%x",
13036 b->number, addrbuf, /* address */
13037 (b->enable_state == bp_enabled ? 'E' : 'D'),
13038 t->step_count, t->pass_count);
13039
13040 if (ret < 0 || ret >= buf.size ())
a7f25a84 13041 error ("%s", err_msg);
3df3a985 13042
e8ba3115
YQ
13043 /* Fast tracepoints are mostly handled by the target, but we can
13044 tell the target how big of an instruction block should be moved
13045 around. */
13046 if (b->type == bp_fast_tracepoint)
13047 {
13048 /* Only test for support at download time; we may not know
13049 target capabilities at definition time. */
13050 if (remote_supports_fast_tracepoints ())
35b1e5cc 13051 {
6b940e6a
PL
13052 if (gdbarch_fast_tracepoint_valid_at (loc->gdbarch, tpaddr,
13053 NULL))
3df3a985
PFC
13054 {
13055 size_left = buf.size () - strlen (buf.data ());
13056 ret = snprintf (buf.data () + strlen (buf.data ()),
13057 size_left, ":F%x",
13058 gdb_insn_length (loc->gdbarch, tpaddr));
13059
13060 if (ret < 0 || ret >= size_left)
a7f25a84 13061 error ("%s", err_msg);
3df3a985 13062 }
35b1e5cc 13063 else
e8ba3115
YQ
13064 /* If it passed validation at definition but fails now,
13065 something is very wrong. */
13066 internal_error (__FILE__, __LINE__,
13067 _("Fast tracepoint not "
13068 "valid during download"));
35b1e5cc 13069 }
e8ba3115
YQ
13070 else
13071 /* Fast tracepoints are functionally identical to regular
13072 tracepoints, so don't take lack of support as a reason to
13073 give up on the trace run. */
13074 warning (_("Target does not support fast tracepoints, "
13075 "downloading %d as regular tracepoint"), b->number);
13076 }
13077 else if (b->type == bp_static_tracepoint)
13078 {
13079 /* Only test for support at download time; we may not know
13080 target capabilities at definition time. */
13081 if (remote_supports_static_tracepoints ())
0fb4aa4b 13082 {
e8ba3115 13083 struct static_tracepoint_marker marker;
0fb4aa4b 13084
e8ba3115 13085 if (target_static_tracepoint_marker_at (tpaddr, &marker))
3df3a985
PFC
13086 {
13087 size_left = buf.size () - strlen (buf.data ());
13088 ret = snprintf (buf.data () + strlen (buf.data ()),
13089 size_left, ":S");
13090
13091 if (ret < 0 || ret >= size_left)
a7f25a84 13092 error ("%s", err_msg);
3df3a985 13093 }
0fb4aa4b 13094 else
e8ba3115 13095 error (_("Static tracepoint not valid during download"));
0fb4aa4b 13096 }
e8ba3115
YQ
13097 else
13098 /* Fast tracepoints are functionally identical to regular
13099 tracepoints, so don't take lack of support as a reason
13100 to give up on the trace run. */
13101 error (_("Target does not support static tracepoints"));
13102 }
13103 /* If the tracepoint has a conditional, make it into an agent
13104 expression and append to the definition. */
13105 if (loc->cond)
13106 {
13107 /* Only test support at download time, we may not know target
13108 capabilities at definition time. */
13109 if (remote_supports_cond_tracepoints ())
35b1e5cc 13110 {
3df3a985
PFC
13111 agent_expr_up aexpr = gen_eval_for_expr (tpaddr,
13112 loc->cond.get ());
13113
13114 size_left = buf.size () - strlen (buf.data ());
13115
13116 ret = snprintf (buf.data () + strlen (buf.data ()),
13117 size_left, ":X%x,", aexpr->len);
13118
13119 if (ret < 0 || ret >= size_left)
a7f25a84 13120 error ("%s", err_msg);
3df3a985
PFC
13121
13122 size_left = buf.size () - strlen (buf.data ());
13123
13124 /* Two bytes to encode each aexpr byte, plus the terminating
13125 null byte. */
13126 if (aexpr->len * 2 + 1 > size_left)
a7f25a84 13127 error ("%s", err_msg);
3df3a985
PFC
13128
13129 pkt = buf.data () + strlen (buf.data ());
13130
b44ec619 13131 for (int ndx = 0; ndx < aexpr->len; ++ndx)
e8ba3115
YQ
13132 pkt = pack_hex_byte (pkt, aexpr->buf[ndx]);
13133 *pkt = '\0';
35b1e5cc 13134 }
e8ba3115
YQ
13135 else
13136 warning (_("Target does not support conditional tracepoints, "
13137 "ignoring tp %d cond"), b->number);
13138 }
35b1e5cc 13139
d9b3f62e 13140 if (b->commands || *default_collect)
3df3a985
PFC
13141 {
13142 size_left = buf.size () - strlen (buf.data ());
13143
13144 ret = snprintf (buf.data () + strlen (buf.data ()),
13145 size_left, "-");
13146
13147 if (ret < 0 || ret >= size_left)
a7f25a84 13148 error ("%s", err_msg);
3df3a985
PFC
13149 }
13150
13151 putpkt (buf.data ());
b6bb3468 13152 remote_get_noisy_reply ();
8d64371b 13153 if (strcmp (rs->buf.data (), "OK"))
e8ba3115 13154 error (_("Target does not support tracepoints."));
35b1e5cc 13155
e8ba3115 13156 /* do_single_steps (t); */
b44ec619
SM
13157 for (auto action_it = tdp_actions.begin ();
13158 action_it != tdp_actions.end (); action_it++)
e8ba3115 13159 {
b44ec619
SM
13160 QUIT; /* Allow user to bail out with ^C. */
13161
aa6f3694 13162 bool has_more = ((action_it + 1) != tdp_actions.end ()
b44ec619
SM
13163 || !stepping_actions.empty ());
13164
3df3a985
PFC
13165 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%c",
13166 b->number, addrbuf, /* address */
13167 action_it->c_str (),
13168 has_more ? '-' : 0);
13169
13170 if (ret < 0 || ret >= buf.size ())
a7f25a84 13171 error ("%s", err_msg);
3df3a985
PFC
13172
13173 putpkt (buf.data ());
b44ec619 13174 remote_get_noisy_reply ();
8d64371b 13175 if (strcmp (rs->buf.data (), "OK"))
b44ec619 13176 error (_("Error on target while setting tracepoints."));
e8ba3115 13177 }
409873ef 13178
05abfc39
PFC
13179 for (auto action_it = stepping_actions.begin ();
13180 action_it != stepping_actions.end (); action_it++)
13181 {
13182 QUIT; /* Allow user to bail out with ^C. */
13183
13184 bool is_first = action_it == stepping_actions.begin ();
aa6f3694 13185 bool has_more = (action_it + 1) != stepping_actions.end ();
05abfc39 13186
3df3a985
PFC
13187 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%s%s",
13188 b->number, addrbuf, /* address */
13189 is_first ? "S" : "",
13190 action_it->c_str (),
13191 has_more ? "-" : "");
13192
13193 if (ret < 0 || ret >= buf.size ())
a7f25a84 13194 error ("%s", err_msg);
3df3a985
PFC
13195
13196 putpkt (buf.data ());
05abfc39 13197 remote_get_noisy_reply ();
8d64371b 13198 if (strcmp (rs->buf.data (), "OK"))
05abfc39
PFC
13199 error (_("Error on target while setting tracepoints."));
13200 }
b44ec619 13201
4082afcc 13202 if (packet_support (PACKET_TracepointSource) == PACKET_ENABLE)
e8ba3115 13203 {
f00aae0f 13204 if (b->location != NULL)
409873ef 13205 {
3df3a985
PFC
13206 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
13207
13208 if (ret < 0 || ret >= buf.size ())
a7f25a84 13209 error ("%s", err_msg);
3df3a985 13210
f00aae0f 13211 encode_source_string (b->number, loc->address, "at",
d28cd78a 13212 event_location_to_string (b->location.get ()),
3df3a985
PFC
13213 buf.data () + strlen (buf.data ()),
13214 buf.size () - strlen (buf.data ()));
13215 putpkt (buf.data ());
b6bb3468 13216 remote_get_noisy_reply ();
8d64371b 13217 if (strcmp (rs->buf.data (), "OK"))
e8ba3115 13218 warning (_("Target does not support source download."));
409873ef 13219 }
e8ba3115
YQ
13220 if (b->cond_string)
13221 {
3df3a985
PFC
13222 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
13223
13224 if (ret < 0 || ret >= buf.size ())
a7f25a84 13225 error ("%s", err_msg);
3df3a985 13226
e8ba3115 13227 encode_source_string (b->number, loc->address,
3df3a985
PFC
13228 "cond", b->cond_string,
13229 buf.data () + strlen (buf.data ()),
13230 buf.size () - strlen (buf.data ()));
13231 putpkt (buf.data ());
b6bb3468 13232 remote_get_noisy_reply ();
8d64371b 13233 if (strcmp (rs->buf.data (), "OK"))
e8ba3115
YQ
13234 warning (_("Target does not support source download."));
13235 }
13236 remote_download_command_source (b->number, loc->address,
13237 breakpoint_commands (b));
35b1e5cc 13238 }
35b1e5cc
SS
13239}
13240
57810aa7 13241bool
f6ac5f3d 13242remote_target::can_download_tracepoint ()
1e4d1764 13243{
1e51243a
PA
13244 struct remote_state *rs = get_remote_state ();
13245 struct trace_status *ts;
13246 int status;
13247
13248 /* Don't try to install tracepoints until we've relocated our
13249 symbols, and fetched and merged the target's tracepoint list with
13250 ours. */
13251 if (rs->starting_up)
57810aa7 13252 return false;
1e51243a
PA
13253
13254 ts = current_trace_status ();
f6ac5f3d 13255 status = get_trace_status (ts);
1e4d1764
YQ
13256
13257 if (status == -1 || !ts->running_known || !ts->running)
57810aa7 13258 return false;
1e4d1764
YQ
13259
13260 /* If we are in a tracing experiment, but remote stub doesn't support
13261 installing tracepoint in trace, we have to return. */
13262 if (!remote_supports_install_in_trace ())
57810aa7 13263 return false;
1e4d1764 13264
57810aa7 13265 return true;
1e4d1764
YQ
13266}
13267
13268
f6ac5f3d
PA
13269void
13270remote_target::download_trace_state_variable (const trace_state_variable &tsv)
35b1e5cc
SS
13271{
13272 struct remote_state *rs = get_remote_state ();
00bf0b85 13273 char *p;
35b1e5cc 13274
8d64371b 13275 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDV:%x:%s:%x:",
c252925c
SM
13276 tsv.number, phex ((ULONGEST) tsv.initial_value, 8),
13277 tsv.builtin);
8d64371b
TT
13278 p = rs->buf.data () + strlen (rs->buf.data ());
13279 if ((p - rs->buf.data ()) + tsv.name.length () * 2
13280 >= get_remote_packet_size ())
00bf0b85 13281 error (_("Trace state variable name too long for tsv definition packet"));
c252925c 13282 p += 2 * bin2hex ((gdb_byte *) (tsv.name.data ()), p, tsv.name.length ());
00bf0b85 13283 *p++ = '\0';
35b1e5cc 13284 putpkt (rs->buf);
b6bb3468 13285 remote_get_noisy_reply ();
8d64371b 13286 if (rs->buf[0] == '\0')
ad91cd99 13287 error (_("Target does not support this command."));
8d64371b 13288 if (strcmp (rs->buf.data (), "OK") != 0)
ad91cd99 13289 error (_("Error on target while downloading trace state variable."));
35b1e5cc
SS
13290}
13291
f6ac5f3d
PA
13292void
13293remote_target::enable_tracepoint (struct bp_location *location)
d248b706
KY
13294{
13295 struct remote_state *rs = get_remote_state ();
d248b706 13296
8d64371b 13297 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTEnable:%x:%s",
53807e9f
TT
13298 location->owner->number,
13299 phex (location->address, sizeof (CORE_ADDR)));
d248b706 13300 putpkt (rs->buf);
b6bb3468 13301 remote_get_noisy_reply ();
8d64371b 13302 if (rs->buf[0] == '\0')
d248b706 13303 error (_("Target does not support enabling tracepoints while a trace run is ongoing."));
8d64371b 13304 if (strcmp (rs->buf.data (), "OK") != 0)
d248b706
KY
13305 error (_("Error on target while enabling tracepoint."));
13306}
13307
f6ac5f3d
PA
13308void
13309remote_target::disable_tracepoint (struct bp_location *location)
d248b706
KY
13310{
13311 struct remote_state *rs = get_remote_state ();
d248b706 13312
8d64371b 13313 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDisable:%x:%s",
53807e9f
TT
13314 location->owner->number,
13315 phex (location->address, sizeof (CORE_ADDR)));
d248b706 13316 putpkt (rs->buf);
b6bb3468 13317 remote_get_noisy_reply ();
8d64371b 13318 if (rs->buf[0] == '\0')
d248b706 13319 error (_("Target does not support disabling tracepoints while a trace run is ongoing."));
8d64371b 13320 if (strcmp (rs->buf.data (), "OK") != 0)
d248b706
KY
13321 error (_("Error on target while disabling tracepoint."));
13322}
13323
f6ac5f3d
PA
13324void
13325remote_target::trace_set_readonly_regions ()
35b1e5cc
SS
13326{
13327 asection *s;
13328 bfd_size_type size;
608bcef2 13329 bfd_vma vma;
35b1e5cc 13330 int anysecs = 0;
c2fa21f1 13331 int offset = 0;
35b1e5cc 13332
7e10abd1 13333 if (!current_program_space->exec_bfd ())
35b1e5cc
SS
13334 return; /* No information to give. */
13335
b6bb3468
PA
13336 struct remote_state *rs = get_remote_state ();
13337
8d64371b
TT
13338 strcpy (rs->buf.data (), "QTro");
13339 offset = strlen (rs->buf.data ());
7e10abd1 13340 for (s = current_program_space->exec_bfd ()->sections; s; s = s->next)
35b1e5cc
SS
13341 {
13342 char tmp1[40], tmp2[40];
c2fa21f1 13343 int sec_length;
35b1e5cc
SS
13344
13345 if ((s->flags & SEC_LOAD) == 0 ||
0df8b418 13346 /* (s->flags & SEC_CODE) == 0 || */
35b1e5cc
SS
13347 (s->flags & SEC_READONLY) == 0)
13348 continue;
13349
13350 anysecs = 1;
fd361982
AM
13351 vma = bfd_section_vma (s);
13352 size = bfd_section_size (s);
608bcef2
HZ
13353 sprintf_vma (tmp1, vma);
13354 sprintf_vma (tmp2, vma + size);
c2fa21f1 13355 sec_length = 1 + strlen (tmp1) + 1 + strlen (tmp2);
8d64371b 13356 if (offset + sec_length + 1 > rs->buf.size ())
c2fa21f1 13357 {
4082afcc 13358 if (packet_support (PACKET_qXfer_traceframe_info) != PACKET_ENABLE)
864ac8a7 13359 warning (_("\
c2fa21f1
HZ
13360Too many sections for read-only sections definition packet."));
13361 break;
13362 }
8d64371b 13363 xsnprintf (rs->buf.data () + offset, rs->buf.size () - offset, ":%s,%s",
bba74b36 13364 tmp1, tmp2);
c2fa21f1 13365 offset += sec_length;
35b1e5cc
SS
13366 }
13367 if (anysecs)
13368 {
b6bb3468 13369 putpkt (rs->buf);
8d64371b 13370 getpkt (&rs->buf, 0);
35b1e5cc
SS
13371 }
13372}
13373
f6ac5f3d
PA
13374void
13375remote_target::trace_start ()
35b1e5cc 13376{
b6bb3468
PA
13377 struct remote_state *rs = get_remote_state ();
13378
35b1e5cc 13379 putpkt ("QTStart");
b6bb3468 13380 remote_get_noisy_reply ();
8d64371b 13381 if (rs->buf[0] == '\0')
ad91cd99 13382 error (_("Target does not support this command."));
8d64371b
TT
13383 if (strcmp (rs->buf.data (), "OK") != 0)
13384 error (_("Bogus reply from target: %s"), rs->buf.data ());
35b1e5cc
SS
13385}
13386
f6ac5f3d
PA
13387int
13388remote_target::get_trace_status (struct trace_status *ts)
35b1e5cc 13389{
953b98d1 13390 /* Initialize it just to avoid a GCC false warning. */
f652de6f 13391 char *p = NULL;
bd3eecc3 13392 enum packet_result result;
b6bb3468 13393 struct remote_state *rs = get_remote_state ();
bd3eecc3 13394
4082afcc 13395 if (packet_support (PACKET_qTStatus) == PACKET_DISABLE)
bd3eecc3 13396 return -1;
a744cf53 13397
7b9a15e1 13398 /* FIXME we need to get register block size some other way. */
5cd63fda 13399 trace_regblock_size
9d6eea31 13400 = rs->get_remote_arch_state (target_gdbarch ())->sizeof_g_packet;
00bf0b85 13401
049dc89b
JK
13402 putpkt ("qTStatus");
13403
a70b8144 13404 try
67f41397 13405 {
b6bb3468 13406 p = remote_get_noisy_reply ();
67f41397 13407 }
230d2906 13408 catch (const gdb_exception_error &ex)
67f41397 13409 {
598d3636
JK
13410 if (ex.error != TARGET_CLOSE_ERROR)
13411 {
13412 exception_fprintf (gdb_stderr, ex, "qTStatus: ");
13413 return -1;
13414 }
eedc3f4f 13415 throw;
67f41397 13416 }
00bf0b85 13417
bd3eecc3
PA
13418 result = packet_ok (p, &remote_protocol_packets[PACKET_qTStatus]);
13419
00bf0b85 13420 /* If the remote target doesn't do tracing, flag it. */
bd3eecc3 13421 if (result == PACKET_UNKNOWN)
00bf0b85 13422 return -1;
35b1e5cc 13423
00bf0b85 13424 /* We're working with a live target. */
f5911ea1 13425 ts->filename = NULL;
00bf0b85 13426
00bf0b85 13427 if (*p++ != 'T')
8d64371b 13428 error (_("Bogus trace status reply from target: %s"), rs->buf.data ());
35b1e5cc 13429
84cebc4a
YQ
13430 /* Function 'parse_trace_status' sets default value of each field of
13431 'ts' at first, so we don't have to do it here. */
00bf0b85
SS
13432 parse_trace_status (p, ts);
13433
13434 return ts->running;
35b1e5cc
SS
13435}
13436
f6ac5f3d
PA
13437void
13438remote_target::get_tracepoint_status (struct breakpoint *bp,
13439 struct uploaded_tp *utp)
f196051f
SS
13440{
13441 struct remote_state *rs = get_remote_state ();
f196051f
SS
13442 char *reply;
13443 struct bp_location *loc;
13444 struct tracepoint *tp = (struct tracepoint *) bp;
bba74b36 13445 size_t size = get_remote_packet_size ();
f196051f
SS
13446
13447 if (tp)
13448 {
c1fc2657 13449 tp->hit_count = 0;
f196051f 13450 tp->traceframe_usage = 0;
c1fc2657 13451 for (loc = tp->loc; loc; loc = loc->next)
f196051f
SS
13452 {
13453 /* If the tracepoint was never downloaded, don't go asking for
13454 any status. */
13455 if (tp->number_on_target == 0)
13456 continue;
8d64371b 13457 xsnprintf (rs->buf.data (), size, "qTP:%x:%s", tp->number_on_target,
bba74b36 13458 phex_nz (loc->address, 0));
f196051f 13459 putpkt (rs->buf);
b6bb3468 13460 reply = remote_get_noisy_reply ();
f196051f
SS
13461 if (reply && *reply)
13462 {
13463 if (*reply == 'V')
13464 parse_tracepoint_status (reply + 1, bp, utp);
13465 }
13466 }
13467 }
13468 else if (utp)
13469 {
13470 utp->hit_count = 0;
13471 utp->traceframe_usage = 0;
8d64371b 13472 xsnprintf (rs->buf.data (), size, "qTP:%x:%s", utp->number,
bba74b36 13473 phex_nz (utp->addr, 0));
f196051f 13474 putpkt (rs->buf);
b6bb3468 13475 reply = remote_get_noisy_reply ();
f196051f
SS
13476 if (reply && *reply)
13477 {
13478 if (*reply == 'V')
13479 parse_tracepoint_status (reply + 1, bp, utp);
13480 }
13481 }
13482}
13483
f6ac5f3d
PA
13484void
13485remote_target::trace_stop ()
35b1e5cc 13486{
b6bb3468
PA
13487 struct remote_state *rs = get_remote_state ();
13488
35b1e5cc 13489 putpkt ("QTStop");
b6bb3468 13490 remote_get_noisy_reply ();
8d64371b 13491 if (rs->buf[0] == '\0')
ad91cd99 13492 error (_("Target does not support this command."));
8d64371b
TT
13493 if (strcmp (rs->buf.data (), "OK") != 0)
13494 error (_("Bogus reply from target: %s"), rs->buf.data ());
35b1e5cc
SS
13495}
13496
f6ac5f3d
PA
13497int
13498remote_target::trace_find (enum trace_find_type type, int num,
13499 CORE_ADDR addr1, CORE_ADDR addr2,
13500 int *tpp)
35b1e5cc
SS
13501{
13502 struct remote_state *rs = get_remote_state ();
8d64371b 13503 char *endbuf = rs->buf.data () + get_remote_packet_size ();
35b1e5cc
SS
13504 char *p, *reply;
13505 int target_frameno = -1, target_tracept = -1;
13506
e6e4e701
PA
13507 /* Lookups other than by absolute frame number depend on the current
13508 trace selected, so make sure it is correct on the remote end
13509 first. */
13510 if (type != tfind_number)
13511 set_remote_traceframe ();
13512
8d64371b 13513 p = rs->buf.data ();
35b1e5cc
SS
13514 strcpy (p, "QTFrame:");
13515 p = strchr (p, '\0');
13516 switch (type)
13517 {
13518 case tfind_number:
bba74b36 13519 xsnprintf (p, endbuf - p, "%x", num);
35b1e5cc
SS
13520 break;
13521 case tfind_pc:
bba74b36 13522 xsnprintf (p, endbuf - p, "pc:%s", phex_nz (addr1, 0));
35b1e5cc
SS
13523 break;
13524 case tfind_tp:
bba74b36 13525 xsnprintf (p, endbuf - p, "tdp:%x", num);
35b1e5cc
SS
13526 break;
13527 case tfind_range:
bba74b36
YQ
13528 xsnprintf (p, endbuf - p, "range:%s:%s", phex_nz (addr1, 0),
13529 phex_nz (addr2, 0));
35b1e5cc
SS
13530 break;
13531 case tfind_outside:
bba74b36
YQ
13532 xsnprintf (p, endbuf - p, "outside:%s:%s", phex_nz (addr1, 0),
13533 phex_nz (addr2, 0));
35b1e5cc
SS
13534 break;
13535 default:
9b20d036 13536 error (_("Unknown trace find type %d"), type);
35b1e5cc
SS
13537 }
13538
13539 putpkt (rs->buf);
b6bb3468 13540 reply = remote_get_noisy_reply ();
ad91cd99
PA
13541 if (*reply == '\0')
13542 error (_("Target does not support this command."));
35b1e5cc
SS
13543
13544 while (reply && *reply)
13545 switch (*reply)
13546 {
13547 case 'F':
f197e0f1
VP
13548 p = ++reply;
13549 target_frameno = (int) strtol (p, &reply, 16);
13550 if (reply == p)
13551 error (_("Unable to parse trace frame number"));
e6e4e701
PA
13552 /* Don't update our remote traceframe number cache on failure
13553 to select a remote traceframe. */
f197e0f1
VP
13554 if (target_frameno == -1)
13555 return -1;
35b1e5cc
SS
13556 break;
13557 case 'T':
f197e0f1
VP
13558 p = ++reply;
13559 target_tracept = (int) strtol (p, &reply, 16);
13560 if (reply == p)
13561 error (_("Unable to parse tracepoint number"));
35b1e5cc
SS
13562 break;
13563 case 'O': /* "OK"? */
13564 if (reply[1] == 'K' && reply[2] == '\0')
13565 reply += 2;
13566 else
13567 error (_("Bogus reply from target: %s"), reply);
13568 break;
13569 default:
13570 error (_("Bogus reply from target: %s"), reply);
13571 }
13572 if (tpp)
13573 *tpp = target_tracept;
e6e4e701 13574
262e1174 13575 rs->remote_traceframe_number = target_frameno;
35b1e5cc
SS
13576 return target_frameno;
13577}
13578
57810aa7 13579bool
f6ac5f3d 13580remote_target::get_trace_state_variable_value (int tsvnum, LONGEST *val)
35b1e5cc
SS
13581{
13582 struct remote_state *rs = get_remote_state ();
13583 char *reply;
13584 ULONGEST uval;
13585
e6e4e701
PA
13586 set_remote_traceframe ();
13587
8d64371b 13588 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTV:%x", tsvnum);
35b1e5cc 13589 putpkt (rs->buf);
b6bb3468 13590 reply = remote_get_noisy_reply ();
35b1e5cc
SS
13591 if (reply && *reply)
13592 {
13593 if (*reply == 'V')
13594 {
13595 unpack_varlen_hex (reply + 1, &uval);
13596 *val = (LONGEST) uval;
57810aa7 13597 return true;
35b1e5cc
SS
13598 }
13599 }
57810aa7 13600 return false;
35b1e5cc
SS
13601}
13602
f6ac5f3d
PA
13603int
13604remote_target::save_trace_data (const char *filename)
00bf0b85
SS
13605{
13606 struct remote_state *rs = get_remote_state ();
13607 char *p, *reply;
13608
8d64371b 13609 p = rs->buf.data ();
00bf0b85
SS
13610 strcpy (p, "QTSave:");
13611 p += strlen (p);
8d64371b
TT
13612 if ((p - rs->buf.data ()) + strlen (filename) * 2
13613 >= get_remote_packet_size ())
00bf0b85 13614 error (_("Remote file name too long for trace save packet"));
9f1b45b0 13615 p += 2 * bin2hex ((gdb_byte *) filename, p, strlen (filename));
00bf0b85
SS
13616 *p++ = '\0';
13617 putpkt (rs->buf);
b6bb3468 13618 reply = remote_get_noisy_reply ();
d6c5869f 13619 if (*reply == '\0')
ad91cd99
PA
13620 error (_("Target does not support this command."));
13621 if (strcmp (reply, "OK") != 0)
13622 error (_("Bogus reply from target: %s"), reply);
00bf0b85
SS
13623 return 0;
13624}
13625
13626/* This is basically a memory transfer, but needs to be its own packet
13627 because we don't know how the target actually organizes its trace
13628 memory, plus we want to be able to ask for as much as possible, but
13629 not be unhappy if we don't get as much as we ask for. */
13630
f6ac5f3d
PA
13631LONGEST
13632remote_target::get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len)
00bf0b85
SS
13633{
13634 struct remote_state *rs = get_remote_state ();
13635 char *reply;
13636 char *p;
13637 int rslt;
13638
8d64371b 13639 p = rs->buf.data ();
00bf0b85
SS
13640 strcpy (p, "qTBuffer:");
13641 p += strlen (p);
13642 p += hexnumstr (p, offset);
13643 *p++ = ',';
13644 p += hexnumstr (p, len);
13645 *p++ = '\0';
13646
13647 putpkt (rs->buf);
b6bb3468 13648 reply = remote_get_noisy_reply ();
00bf0b85
SS
13649 if (reply && *reply)
13650 {
13651 /* 'l' by itself means we're at the end of the buffer and
13652 there is nothing more to get. */
13653 if (*reply == 'l')
13654 return 0;
13655
13656 /* Convert the reply into binary. Limit the number of bytes to
13657 convert according to our passed-in buffer size, rather than
13658 what was returned in the packet; if the target is
13659 unexpectedly generous and gives us a bigger reply than we
13660 asked for, we don't want to crash. */
b6bb3468 13661 rslt = hex2bin (reply, buf, len);
00bf0b85
SS
13662 return rslt;
13663 }
13664
13665 /* Something went wrong, flag as an error. */
13666 return -1;
13667}
13668
f6ac5f3d
PA
13669void
13670remote_target::set_disconnected_tracing (int val)
35b1e5cc
SS
13671{
13672 struct remote_state *rs = get_remote_state ();
13673
4082afcc 13674 if (packet_support (PACKET_DisconnectedTracing_feature) == PACKET_ENABLE)
33da3f1c 13675 {
ad91cd99
PA
13676 char *reply;
13677
8d64371b
TT
13678 xsnprintf (rs->buf.data (), get_remote_packet_size (),
13679 "QTDisconnected:%x", val);
33da3f1c 13680 putpkt (rs->buf);
b6bb3468 13681 reply = remote_get_noisy_reply ();
ad91cd99 13682 if (*reply == '\0')
33da3f1c 13683 error (_("Target does not support this command."));
ad91cd99 13684 if (strcmp (reply, "OK") != 0)
dda83cd7 13685 error (_("Bogus reply from target: %s"), reply);
33da3f1c
SS
13686 }
13687 else if (val)
13688 warning (_("Target does not support disconnected tracing."));
35b1e5cc
SS
13689}
13690
f6ac5f3d
PA
13691int
13692remote_target::core_of_thread (ptid_t ptid)
dc146f7c 13693{
5b6d1e4f 13694 thread_info *info = find_thread_ptid (this, ptid);
a744cf53 13695
7aabaf9d
SM
13696 if (info != NULL && info->priv != NULL)
13697 return get_remote_thread_info (info)->core;
13698
dc146f7c
VP
13699 return -1;
13700}
13701
f6ac5f3d
PA
13702void
13703remote_target::set_circular_trace_buffer (int val)
4daf5ac0
SS
13704{
13705 struct remote_state *rs = get_remote_state ();
ad91cd99 13706 char *reply;
4daf5ac0 13707
8d64371b
TT
13708 xsnprintf (rs->buf.data (), get_remote_packet_size (),
13709 "QTBuffer:circular:%x", val);
4daf5ac0 13710 putpkt (rs->buf);
b6bb3468 13711 reply = remote_get_noisy_reply ();
ad91cd99 13712 if (*reply == '\0')
4daf5ac0 13713 error (_("Target does not support this command."));
ad91cd99
PA
13714 if (strcmp (reply, "OK") != 0)
13715 error (_("Bogus reply from target: %s"), reply);
4daf5ac0
SS
13716}
13717
f6ac5f3d
PA
13718traceframe_info_up
13719remote_target::traceframe_info ()
b3b9301e 13720{
9018be22 13721 gdb::optional<gdb::char_vector> text
8b88a78e 13722 = target_read_stralloc (current_top_target (), TARGET_OBJECT_TRACEFRAME_INFO,
b7b030ad 13723 NULL);
9018be22
SM
13724 if (text)
13725 return parse_traceframe_info (text->data ());
b3b9301e
PA
13726
13727 return NULL;
13728}
13729
405f8e94
SS
13730/* Handle the qTMinFTPILen packet. Returns the minimum length of
13731 instruction on which a fast tracepoint may be placed. Returns -1
13732 if the packet is not supported, and 0 if the minimum instruction
13733 length is unknown. */
13734
f6ac5f3d
PA
13735int
13736remote_target::get_min_fast_tracepoint_insn_len ()
405f8e94
SS
13737{
13738 struct remote_state *rs = get_remote_state ();
13739 char *reply;
13740
e886a173
PA
13741 /* If we're not debugging a process yet, the IPA can't be
13742 loaded. */
55f6301a 13743 if (!target_has_execution ())
e886a173
PA
13744 return 0;
13745
13746 /* Make sure the remote is pointing at the right process. */
13747 set_general_process ();
13748
8d64371b 13749 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTMinFTPILen");
405f8e94 13750 putpkt (rs->buf);
b6bb3468 13751 reply = remote_get_noisy_reply ();
405f8e94
SS
13752 if (*reply == '\0')
13753 return -1;
13754 else
13755 {
13756 ULONGEST min_insn_len;
13757
13758 unpack_varlen_hex (reply, &min_insn_len);
13759
13760 return (int) min_insn_len;
13761 }
13762}
13763
f6ac5f3d
PA
13764void
13765remote_target::set_trace_buffer_size (LONGEST val)
f6f899bf 13766{
4082afcc 13767 if (packet_support (PACKET_QTBuffer_size) != PACKET_DISABLE)
f6f899bf
HAQ
13768 {
13769 struct remote_state *rs = get_remote_state ();
8d64371b
TT
13770 char *buf = rs->buf.data ();
13771 char *endbuf = buf + get_remote_packet_size ();
f6f899bf
HAQ
13772 enum packet_result result;
13773
13774 gdb_assert (val >= 0 || val == -1);
13775 buf += xsnprintf (buf, endbuf - buf, "QTBuffer:size:");
13776 /* Send -1 as literal "-1" to avoid host size dependency. */
13777 if (val < 0)
13778 {
13779 *buf++ = '-';
dda83cd7 13780 buf += hexnumstr (buf, (ULONGEST) -val);
f6f899bf
HAQ
13781 }
13782 else
13783 buf += hexnumstr (buf, (ULONGEST) val);
13784
13785 putpkt (rs->buf);
b6bb3468 13786 remote_get_noisy_reply ();
f6f899bf
HAQ
13787 result = packet_ok (rs->buf,
13788 &remote_protocol_packets[PACKET_QTBuffer_size]);
13789
13790 if (result != PACKET_OK)
8d64371b 13791 warning (_("Bogus reply from target: %s"), rs->buf.data ());
f6f899bf
HAQ
13792 }
13793}
13794
57810aa7 13795bool
f6ac5f3d
PA
13796remote_target::set_trace_notes (const char *user, const char *notes,
13797 const char *stop_notes)
f196051f
SS
13798{
13799 struct remote_state *rs = get_remote_state ();
13800 char *reply;
8d64371b
TT
13801 char *buf = rs->buf.data ();
13802 char *endbuf = buf + get_remote_packet_size ();
f196051f
SS
13803 int nbytes;
13804
13805 buf += xsnprintf (buf, endbuf - buf, "QTNotes:");
13806 if (user)
13807 {
13808 buf += xsnprintf (buf, endbuf - buf, "user:");
9f1b45b0 13809 nbytes = bin2hex ((gdb_byte *) user, buf, strlen (user));
f196051f
SS
13810 buf += 2 * nbytes;
13811 *buf++ = ';';
13812 }
13813 if (notes)
13814 {
13815 buf += xsnprintf (buf, endbuf - buf, "notes:");
9f1b45b0 13816 nbytes = bin2hex ((gdb_byte *) notes, buf, strlen (notes));
f196051f
SS
13817 buf += 2 * nbytes;
13818 *buf++ = ';';
13819 }
13820 if (stop_notes)
13821 {
13822 buf += xsnprintf (buf, endbuf - buf, "tstop:");
9f1b45b0 13823 nbytes = bin2hex ((gdb_byte *) stop_notes, buf, strlen (stop_notes));
f196051f
SS
13824 buf += 2 * nbytes;
13825 *buf++ = ';';
13826 }
13827 /* Ensure the buffer is terminated. */
13828 *buf = '\0';
13829
13830 putpkt (rs->buf);
b6bb3468 13831 reply = remote_get_noisy_reply ();
f196051f 13832 if (*reply == '\0')
57810aa7 13833 return false;
f196051f
SS
13834
13835 if (strcmp (reply, "OK") != 0)
13836 error (_("Bogus reply from target: %s"), reply);
13837
57810aa7 13838 return true;
f196051f
SS
13839}
13840
57810aa7
PA
13841bool
13842remote_target::use_agent (bool use)
d1feda86 13843{
4082afcc 13844 if (packet_support (PACKET_QAgent) != PACKET_DISABLE)
d1feda86
YQ
13845 {
13846 struct remote_state *rs = get_remote_state ();
13847
13848 /* If the stub supports QAgent. */
8d64371b 13849 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QAgent:%d", use);
d1feda86 13850 putpkt (rs->buf);
8d64371b 13851 getpkt (&rs->buf, 0);
d1feda86 13852
8d64371b 13853 if (strcmp (rs->buf.data (), "OK") == 0)
d1feda86 13854 {
f6ac5f3d 13855 ::use_agent = use;
57810aa7 13856 return true;
d1feda86
YQ
13857 }
13858 }
13859
57810aa7 13860 return false;
d1feda86
YQ
13861}
13862
57810aa7 13863bool
f6ac5f3d 13864remote_target::can_use_agent ()
d1feda86 13865{
4082afcc 13866 return (packet_support (PACKET_QAgent) != PACKET_DISABLE);
d1feda86
YQ
13867}
13868
9accd112
MM
13869struct btrace_target_info
13870{
13871 /* The ptid of the traced thread. */
13872 ptid_t ptid;
f4abbc16
MM
13873
13874 /* The obtained branch trace configuration. */
13875 struct btrace_config conf;
9accd112
MM
13876};
13877
f4abbc16
MM
13878/* Reset our idea of our target's btrace configuration. */
13879
13880static void
6b8edb51 13881remote_btrace_reset (remote_state *rs)
f4abbc16 13882{
f4abbc16
MM
13883 memset (&rs->btrace_config, 0, sizeof (rs->btrace_config));
13884}
13885
f4abbc16
MM
13886/* Synchronize the configuration with the target. */
13887
6b8edb51
PA
13888void
13889remote_target::btrace_sync_conf (const btrace_config *conf)
f4abbc16 13890{
d33501a5
MM
13891 struct packet_config *packet;
13892 struct remote_state *rs;
13893 char *buf, *pos, *endbuf;
13894
13895 rs = get_remote_state ();
8d64371b 13896 buf = rs->buf.data ();
d33501a5
MM
13897 endbuf = buf + get_remote_packet_size ();
13898
13899 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_bts_size];
13900 if (packet_config_support (packet) == PACKET_ENABLE
13901 && conf->bts.size != rs->btrace_config.bts.size)
13902 {
13903 pos = buf;
13904 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
dda83cd7 13905 conf->bts.size);
d33501a5
MM
13906
13907 putpkt (buf);
8d64371b 13908 getpkt (&rs->buf, 0);
d33501a5
MM
13909
13910 if (packet_ok (buf, packet) == PACKET_ERROR)
13911 {
13912 if (buf[0] == 'E' && buf[1] == '.')
13913 error (_("Failed to configure the BTS buffer size: %s"), buf + 2);
13914 else
13915 error (_("Failed to configure the BTS buffer size."));
13916 }
13917
13918 rs->btrace_config.bts.size = conf->bts.size;
13919 }
b20a6524
MM
13920
13921 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_pt_size];
13922 if (packet_config_support (packet) == PACKET_ENABLE
13923 && conf->pt.size != rs->btrace_config.pt.size)
13924 {
13925 pos = buf;
13926 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
dda83cd7 13927 conf->pt.size);
b20a6524
MM
13928
13929 putpkt (buf);
8d64371b 13930 getpkt (&rs->buf, 0);
b20a6524
MM
13931
13932 if (packet_ok (buf, packet) == PACKET_ERROR)
13933 {
13934 if (buf[0] == 'E' && buf[1] == '.')
13935 error (_("Failed to configure the trace buffer size: %s"), buf + 2);
13936 else
13937 error (_("Failed to configure the trace buffer size."));
13938 }
13939
13940 rs->btrace_config.pt.size = conf->pt.size;
13941 }
f4abbc16
MM
13942}
13943
13944/* Read the current thread's btrace configuration from the target and
13945 store it into CONF. */
13946
13947static void
13948btrace_read_config (struct btrace_config *conf)
13949{
9018be22 13950 gdb::optional<gdb::char_vector> xml
8b88a78e 13951 = target_read_stralloc (current_top_target (), TARGET_OBJECT_BTRACE_CONF, "");
9018be22
SM
13952 if (xml)
13953 parse_xml_btrace_conf (conf, xml->data ());
f4abbc16
MM
13954}
13955
c0272db5
TW
13956/* Maybe reopen target btrace. */
13957
6b8edb51
PA
13958void
13959remote_target::remote_btrace_maybe_reopen ()
c0272db5
TW
13960{
13961 struct remote_state *rs = get_remote_state ();
c0272db5 13962 int btrace_target_pushed = 0;
15766370 13963#if !defined (HAVE_LIBIPT)
c0272db5 13964 int warned = 0;
15766370 13965#endif
c0272db5 13966
aedbe3bb
CM
13967 /* Don't bother walking the entirety of the remote thread list when
13968 we know the feature isn't supported by the remote. */
13969 if (packet_support (PACKET_qXfer_btrace_conf) != PACKET_ENABLE)
13970 return;
13971
5ed8105e
PA
13972 scoped_restore_current_thread restore_thread;
13973
5b6d1e4f 13974 for (thread_info *tp : all_non_exited_threads (this))
c0272db5
TW
13975 {
13976 set_general_thread (tp->ptid);
13977
13978 memset (&rs->btrace_config, 0x00, sizeof (struct btrace_config));
13979 btrace_read_config (&rs->btrace_config);
13980
13981 if (rs->btrace_config.format == BTRACE_FORMAT_NONE)
13982 continue;
13983
13984#if !defined (HAVE_LIBIPT)
13985 if (rs->btrace_config.format == BTRACE_FORMAT_PT)
13986 {
13987 if (!warned)
13988 {
13989 warned = 1;
c4e12631
MM
13990 warning (_("Target is recording using Intel Processor Trace "
13991 "but support was disabled at compile time."));
c0272db5
TW
13992 }
13993
13994 continue;
13995 }
13996#endif /* !defined (HAVE_LIBIPT) */
13997
13998 /* Push target, once, but before anything else happens. This way our
13999 changes to the threads will be cleaned up by unpushing the target
14000 in case btrace_read_config () throws. */
14001 if (!btrace_target_pushed)
14002 {
14003 btrace_target_pushed = 1;
14004 record_btrace_push_target ();
14005 printf_filtered (_("Target is recording using %s.\n"),
14006 btrace_format_string (rs->btrace_config.format));
14007 }
14008
14009 tp->btrace.target = XCNEW (struct btrace_target_info);
14010 tp->btrace.target->ptid = tp->ptid;
14011 tp->btrace.target->conf = rs->btrace_config;
14012 }
c0272db5
TW
14013}
14014
9accd112
MM
14015/* Enable branch tracing. */
14016
f6ac5f3d
PA
14017struct btrace_target_info *
14018remote_target::enable_btrace (ptid_t ptid, const struct btrace_config *conf)
9accd112
MM
14019{
14020 struct btrace_target_info *tinfo = NULL;
b20a6524 14021 struct packet_config *packet = NULL;
9accd112 14022 struct remote_state *rs = get_remote_state ();
8d64371b
TT
14023 char *buf = rs->buf.data ();
14024 char *endbuf = buf + get_remote_packet_size ();
9accd112 14025
b20a6524
MM
14026 switch (conf->format)
14027 {
14028 case BTRACE_FORMAT_BTS:
14029 packet = &remote_protocol_packets[PACKET_Qbtrace_bts];
14030 break;
14031
14032 case BTRACE_FORMAT_PT:
14033 packet = &remote_protocol_packets[PACKET_Qbtrace_pt];
14034 break;
14035 }
14036
14037 if (packet == NULL || packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
14038 error (_("Target does not support branch tracing."));
14039
f4abbc16
MM
14040 btrace_sync_conf (conf);
14041
9accd112
MM
14042 set_general_thread (ptid);
14043
14044 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
14045 putpkt (rs->buf);
8d64371b 14046 getpkt (&rs->buf, 0);
9accd112
MM
14047
14048 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
14049 {
14050 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
14051 error (_("Could not enable branch tracing for %s: %s"),
a068643d 14052 target_pid_to_str (ptid).c_str (), &rs->buf[2]);
9accd112
MM
14053 else
14054 error (_("Could not enable branch tracing for %s."),
a068643d 14055 target_pid_to_str (ptid).c_str ());
9accd112
MM
14056 }
14057
8d749320 14058 tinfo = XCNEW (struct btrace_target_info);
9accd112
MM
14059 tinfo->ptid = ptid;
14060
f4abbc16
MM
14061 /* If we fail to read the configuration, we lose some information, but the
14062 tracing itself is not impacted. */
a70b8144 14063 try
492d29ea
PA
14064 {
14065 btrace_read_config (&tinfo->conf);
14066 }
230d2906 14067 catch (const gdb_exception_error &err)
492d29ea
PA
14068 {
14069 if (err.message != NULL)
3d6e9d23 14070 warning ("%s", err.what ());
492d29ea 14071 }
f4abbc16 14072
9accd112
MM
14073 return tinfo;
14074}
14075
14076/* Disable branch tracing. */
14077
f6ac5f3d
PA
14078void
14079remote_target::disable_btrace (struct btrace_target_info *tinfo)
9accd112
MM
14080{
14081 struct packet_config *packet = &remote_protocol_packets[PACKET_Qbtrace_off];
14082 struct remote_state *rs = get_remote_state ();
8d64371b
TT
14083 char *buf = rs->buf.data ();
14084 char *endbuf = buf + get_remote_packet_size ();
9accd112 14085
4082afcc 14086 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
14087 error (_("Target does not support branch tracing."));
14088
14089 set_general_thread (tinfo->ptid);
14090
14091 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
14092 putpkt (rs->buf);
8d64371b 14093 getpkt (&rs->buf, 0);
9accd112
MM
14094
14095 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
14096 {
14097 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
14098 error (_("Could not disable branch tracing for %s: %s"),
a068643d 14099 target_pid_to_str (tinfo->ptid).c_str (), &rs->buf[2]);
9accd112
MM
14100 else
14101 error (_("Could not disable branch tracing for %s."),
a068643d 14102 target_pid_to_str (tinfo->ptid).c_str ());
9accd112
MM
14103 }
14104
14105 xfree (tinfo);
14106}
14107
14108/* Teardown branch tracing. */
14109
f6ac5f3d
PA
14110void
14111remote_target::teardown_btrace (struct btrace_target_info *tinfo)
9accd112
MM
14112{
14113 /* We must not talk to the target during teardown. */
14114 xfree (tinfo);
14115}
14116
14117/* Read the branch trace. */
14118
f6ac5f3d
PA
14119enum btrace_error
14120remote_target::read_btrace (struct btrace_data *btrace,
14121 struct btrace_target_info *tinfo,
14122 enum btrace_read_type type)
9accd112
MM
14123{
14124 struct packet_config *packet = &remote_protocol_packets[PACKET_qXfer_btrace];
9accd112 14125 const char *annex;
9accd112 14126
4082afcc 14127 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
14128 error (_("Target does not support branch tracing."));
14129
14130#if !defined(HAVE_LIBEXPAT)
14131 error (_("Cannot process branch tracing result. XML parsing not supported."));
14132#endif
14133
14134 switch (type)
14135 {
864089d2 14136 case BTRACE_READ_ALL:
9accd112
MM
14137 annex = "all";
14138 break;
864089d2 14139 case BTRACE_READ_NEW:
9accd112
MM
14140 annex = "new";
14141 break;
969c39fb
MM
14142 case BTRACE_READ_DELTA:
14143 annex = "delta";
14144 break;
9accd112
MM
14145 default:
14146 internal_error (__FILE__, __LINE__,
14147 _("Bad branch tracing read type: %u."),
14148 (unsigned int) type);
14149 }
14150
9018be22 14151 gdb::optional<gdb::char_vector> xml
8b88a78e 14152 = target_read_stralloc (current_top_target (), TARGET_OBJECT_BTRACE, annex);
9018be22 14153 if (!xml)
969c39fb 14154 return BTRACE_ERR_UNKNOWN;
9accd112 14155
9018be22 14156 parse_xml_btrace (btrace, xml->data ());
9accd112 14157
969c39fb 14158 return BTRACE_ERR_NONE;
9accd112
MM
14159}
14160
f6ac5f3d
PA
14161const struct btrace_config *
14162remote_target::btrace_conf (const struct btrace_target_info *tinfo)
f4abbc16
MM
14163{
14164 return &tinfo->conf;
14165}
14166
57810aa7 14167bool
f6ac5f3d 14168remote_target::augmented_libraries_svr4_read ()
ced63ec0 14169{
4082afcc
PA
14170 return (packet_support (PACKET_augmented_libraries_svr4_read_feature)
14171 == PACKET_ENABLE);
ced63ec0
GB
14172}
14173
9dd130a0
TT
14174/* Implementation of to_load. */
14175
f6ac5f3d
PA
14176void
14177remote_target::load (const char *name, int from_tty)
9dd130a0
TT
14178{
14179 generic_load (name, from_tty);
14180}
14181
c78fa86a
GB
14182/* Accepts an integer PID; returns a string representing a file that
14183 can be opened on the remote side to get the symbols for the child
14184 process. Returns NULL if the operation is not supported. */
14185
f6ac5f3d
PA
14186char *
14187remote_target::pid_to_exec_file (int pid)
c78fa86a 14188{
9018be22 14189 static gdb::optional<gdb::char_vector> filename;
835205d0 14190 char *annex = NULL;
c78fa86a
GB
14191
14192 if (packet_support (PACKET_qXfer_exec_file) != PACKET_ENABLE)
14193 return NULL;
14194
5b6d1e4f 14195 inferior *inf = find_inferior_pid (this, pid);
835205d0
GB
14196 if (inf == NULL)
14197 internal_error (__FILE__, __LINE__,
14198 _("not currently attached to process %d"), pid);
14199
14200 if (!inf->fake_pid_p)
14201 {
14202 const int annex_size = 9;
14203
224c3ddb 14204 annex = (char *) alloca (annex_size);
835205d0
GB
14205 xsnprintf (annex, annex_size, "%x", pid);
14206 }
14207
8b88a78e 14208 filename = target_read_stralloc (current_top_target (),
c78fa86a
GB
14209 TARGET_OBJECT_EXEC_FILE, annex);
14210
9018be22 14211 return filename ? filename->data () : nullptr;
c78fa86a
GB
14212}
14213
750ce8d1
YQ
14214/* Implement the to_can_do_single_step target_ops method. */
14215
f6ac5f3d
PA
14216int
14217remote_target::can_do_single_step ()
750ce8d1
YQ
14218{
14219 /* We can only tell whether target supports single step or not by
14220 supported s and S vCont actions if the stub supports vContSupported
14221 feature. If the stub doesn't support vContSupported feature,
14222 we have conservatively to think target doesn't supports single
14223 step. */
14224 if (packet_support (PACKET_vContSupported) == PACKET_ENABLE)
14225 {
14226 struct remote_state *rs = get_remote_state ();
14227
14228 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6b8edb51 14229 remote_vcont_probe ();
750ce8d1
YQ
14230
14231 return rs->supports_vCont.s && rs->supports_vCont.S;
14232 }
14233 else
14234 return 0;
14235}
14236
3a00c802
PA
14237/* Implementation of the to_execution_direction method for the remote
14238 target. */
14239
f6ac5f3d
PA
14240enum exec_direction_kind
14241remote_target::execution_direction ()
3a00c802
PA
14242{
14243 struct remote_state *rs = get_remote_state ();
14244
14245 return rs->last_resume_exec_dir;
14246}
14247
f6327dcb
KB
14248/* Return pointer to the thread_info struct which corresponds to
14249 THREAD_HANDLE (having length HANDLE_LEN). */
14250
f6ac5f3d
PA
14251thread_info *
14252remote_target::thread_handle_to_thread_info (const gdb_byte *thread_handle,
14253 int handle_len,
14254 inferior *inf)
f6327dcb 14255{
5b6d1e4f 14256 for (thread_info *tp : all_non_exited_threads (this))
f6327dcb 14257 {
7aabaf9d 14258 remote_thread_info *priv = get_remote_thread_info (tp);
f6327dcb
KB
14259
14260 if (tp->inf == inf && priv != NULL)
dda83cd7 14261 {
7aabaf9d 14262 if (handle_len != priv->thread_handle.size ())
f6327dcb 14263 error (_("Thread handle size mismatch: %d vs %zu (from remote)"),
dda83cd7 14264 handle_len, priv->thread_handle.size ());
7aabaf9d 14265 if (memcmp (thread_handle, priv->thread_handle.data (),
dda83cd7 14266 handle_len) == 0)
f6327dcb
KB
14267 return tp;
14268 }
14269 }
14270
14271 return NULL;
14272}
14273
3d6c6204
KB
14274gdb::byte_vector
14275remote_target::thread_info_to_thread_handle (struct thread_info *tp)
14276{
14277 remote_thread_info *priv = get_remote_thread_info (tp);
14278 return priv->thread_handle;
14279}
14280
57810aa7 14281bool
f6ac5f3d 14282remote_target::can_async_p ()
6426a772 14283{
5d93a237
TT
14284 struct remote_state *rs = get_remote_state ();
14285
3015c064
SM
14286 /* We don't go async if the user has explicitly prevented it with the
14287 "maint set target-async" command. */
c6ebd6cf 14288 if (!target_async_permitted)
57810aa7 14289 return false;
75c99385 14290
23860348 14291 /* We're async whenever the serial device is. */
5d93a237 14292 return serial_can_async_p (rs->remote_desc);
6426a772
JM
14293}
14294
57810aa7 14295bool
f6ac5f3d 14296remote_target::is_async_p ()
6426a772 14297{
5d93a237
TT
14298 struct remote_state *rs = get_remote_state ();
14299
c6ebd6cf 14300 if (!target_async_permitted)
75c99385 14301 /* We only enable async when the user specifically asks for it. */
57810aa7 14302 return false;
75c99385 14303
23860348 14304 /* We're async whenever the serial device is. */
5d93a237 14305 return serial_is_async_p (rs->remote_desc);
6426a772
JM
14306}
14307
2acceee2
JM
14308/* Pass the SERIAL event on and up to the client. One day this code
14309 will be able to delay notifying the client of an event until the
23860348 14310 point where an entire packet has been received. */
2acceee2 14311
2acceee2
JM
14312static serial_event_ftype remote_async_serial_handler;
14313
6426a772 14314static void
819cc324 14315remote_async_serial_handler (struct serial *scb, void *context)
6426a772 14316{
2acceee2
JM
14317 /* Don't propogate error information up to the client. Instead let
14318 the client find out about the error by querying the target. */
b1a35af2 14319 inferior_event_handler (INF_REG_EVENT);
2acceee2
JM
14320}
14321
74531fed
PA
14322static void
14323remote_async_inferior_event_handler (gdb_client_data data)
14324{
b1a35af2 14325 inferior_event_handler (INF_REG_EVENT);
96118d11
PA
14326
14327 remote_target *remote = (remote_target *) data;
14328 remote_state *rs = remote->get_remote_state ();
14329
14330 /* inferior_event_handler may have consumed an event pending on the
14331 infrun side without calling target_wait on the REMOTE target, or
14332 may have pulled an event out of a different target. Keep trying
14333 for this remote target as long it still has either pending events
14334 or unacknowledged notifications. */
14335
14336 if (rs->notif_state->pending_event[notif_client_stop.id] != NULL
14337 || !rs->stop_reply_queue.empty ())
14338 mark_async_event_handler (rs->remote_async_inferior_event_token);
74531fed
PA
14339}
14340
5b6d1e4f
PA
14341int
14342remote_target::async_wait_fd ()
14343{
14344 struct remote_state *rs = get_remote_state ();
14345 return rs->remote_desc->fd;
14346}
14347
f6ac5f3d
PA
14348void
14349remote_target::async (int enable)
2acceee2 14350{
5d93a237
TT
14351 struct remote_state *rs = get_remote_state ();
14352
6a3753b3 14353 if (enable)
2acceee2 14354 {
88b496c3 14355 serial_async (rs->remote_desc, remote_async_serial_handler, rs);
b7d2e916
PA
14356
14357 /* If there are pending events in the stop reply queue tell the
14358 event loop to process them. */
953edf2b 14359 if (!rs->stop_reply_queue.empty ())
6b8edb51 14360 mark_async_event_handler (rs->remote_async_inferior_event_token);
6efcd9a8
PA
14361 /* For simplicity, below we clear the pending events token
14362 without remembering whether it is marked, so here we always
14363 mark it. If there's actually no pending notification to
14364 process, this ends up being a no-op (other than a spurious
14365 event-loop wakeup). */
14366 if (target_is_non_stop_p ())
14367 mark_async_event_handler (rs->notif_state->get_pending_events_token);
2acceee2
JM
14368 }
14369 else
b7d2e916
PA
14370 {
14371 serial_async (rs->remote_desc, NULL, NULL);
6efcd9a8
PA
14372 /* If the core is disabling async, it doesn't want to be
14373 disturbed with target events. Clear all async event sources
14374 too. */
6b8edb51 14375 clear_async_event_handler (rs->remote_async_inferior_event_token);
6efcd9a8
PA
14376 if (target_is_non_stop_p ())
14377 clear_async_event_handler (rs->notif_state->get_pending_events_token);
b7d2e916 14378 }
6426a772
JM
14379}
14380
65706a29
PA
14381/* Implementation of the to_thread_events method. */
14382
f6ac5f3d
PA
14383void
14384remote_target::thread_events (int enable)
65706a29
PA
14385{
14386 struct remote_state *rs = get_remote_state ();
14387 size_t size = get_remote_packet_size ();
65706a29
PA
14388
14389 if (packet_support (PACKET_QThreadEvents) == PACKET_DISABLE)
14390 return;
14391
8d64371b 14392 xsnprintf (rs->buf.data (), size, "QThreadEvents:%x", enable ? 1 : 0);
65706a29 14393 putpkt (rs->buf);
8d64371b 14394 getpkt (&rs->buf, 0);
65706a29
PA
14395
14396 switch (packet_ok (rs->buf,
14397 &remote_protocol_packets[PACKET_QThreadEvents]))
14398 {
14399 case PACKET_OK:
8d64371b
TT
14400 if (strcmp (rs->buf.data (), "OK") != 0)
14401 error (_("Remote refused setting thread events: %s"), rs->buf.data ());
65706a29
PA
14402 break;
14403 case PACKET_ERROR:
8d64371b 14404 warning (_("Remote failure reply: %s"), rs->buf.data ());
65706a29
PA
14405 break;
14406 case PACKET_UNKNOWN:
14407 break;
14408 }
14409}
14410
d471ea57 14411static void
981a3fb3 14412show_remote_cmd (const char *args, int from_tty)
d471ea57 14413{
37a105a1 14414 /* We can't just use cmd_show_list here, because we want to skip
427c3a89 14415 the redundant "show remote Z-packet" and the legacy aliases. */
37a105a1 14416 struct cmd_list_element *list = remote_show_cmdlist;
79a45e25 14417 struct ui_out *uiout = current_uiout;
37a105a1 14418
2e783024 14419 ui_out_emit_tuple tuple_emitter (uiout, "showlist");
37a105a1
DJ
14420 for (; list != NULL; list = list->next)
14421 if (strcmp (list->name, "Z-packet") == 0)
14422 continue;
427c3a89
DJ
14423 else if (list->type == not_set_cmd)
14424 /* Alias commands are exactly like the original, except they
14425 don't have the normal type. */
14426 continue;
14427 else
37a105a1 14428 {
2e783024 14429 ui_out_emit_tuple option_emitter (uiout, "option");
a744cf53 14430
112e8700
SM
14431 uiout->field_string ("name", list->name);
14432 uiout->text (": ");
427c3a89 14433 if (list->type == show_cmd)
f5c4fcd9 14434 do_show_command (NULL, from_tty, list);
427c3a89
DJ
14435 else
14436 cmd_func (list, NULL, from_tty);
37a105a1 14437 }
d471ea57 14438}
5a2468f5 14439
0f71a2f6 14440
23860348 14441/* Function to be called whenever a new objfile (shlib) is detected. */
dc8acb97
MS
14442static void
14443remote_new_objfile (struct objfile *objfile)
14444{
6b8edb51 14445 remote_target *remote = get_current_remote_target ();
5d93a237 14446
6b8edb51
PA
14447 if (remote != NULL) /* Have a remote connection. */
14448 remote->remote_check_symbols ();
dc8acb97
MS
14449}
14450
00bf0b85
SS
14451/* Pull all the tracepoints defined on the target and create local
14452 data structures representing them. We don't want to create real
14453 tracepoints yet, we don't want to mess up the user's existing
14454 collection. */
14455
f6ac5f3d
PA
14456int
14457remote_target::upload_tracepoints (struct uploaded_tp **utpp)
d5551862 14458{
00bf0b85
SS
14459 struct remote_state *rs = get_remote_state ();
14460 char *p;
d5551862 14461
00bf0b85
SS
14462 /* Ask for a first packet of tracepoint definition. */
14463 putpkt ("qTfP");
8d64371b
TT
14464 getpkt (&rs->buf, 0);
14465 p = rs->buf.data ();
00bf0b85 14466 while (*p && *p != 'l')
d5551862 14467 {
00bf0b85
SS
14468 parse_tracepoint_definition (p, utpp);
14469 /* Ask for another packet of tracepoint definition. */
14470 putpkt ("qTsP");
8d64371b
TT
14471 getpkt (&rs->buf, 0);
14472 p = rs->buf.data ();
d5551862 14473 }
00bf0b85 14474 return 0;
d5551862
SS
14475}
14476
f6ac5f3d
PA
14477int
14478remote_target::upload_trace_state_variables (struct uploaded_tsv **utsvp)
d5551862 14479{
00bf0b85 14480 struct remote_state *rs = get_remote_state ();
d5551862 14481 char *p;
d5551862 14482
00bf0b85
SS
14483 /* Ask for a first packet of variable definition. */
14484 putpkt ("qTfV");
8d64371b
TT
14485 getpkt (&rs->buf, 0);
14486 p = rs->buf.data ();
00bf0b85 14487 while (*p && *p != 'l')
d5551862 14488 {
00bf0b85
SS
14489 parse_tsv_definition (p, utsvp);
14490 /* Ask for another packet of variable definition. */
14491 putpkt ("qTsV");
8d64371b
TT
14492 getpkt (&rs->buf, 0);
14493 p = rs->buf.data ();
d5551862 14494 }
00bf0b85 14495 return 0;
d5551862
SS
14496}
14497
c1e36e3e
PA
14498/* The "set/show range-stepping" show hook. */
14499
14500static void
14501show_range_stepping (struct ui_file *file, int from_tty,
14502 struct cmd_list_element *c,
14503 const char *value)
14504{
14505 fprintf_filtered (file,
14506 _("Debugger's willingness to use range stepping "
14507 "is %s.\n"), value);
14508}
14509
6b8edb51
PA
14510/* Return true if the vCont;r action is supported by the remote
14511 stub. */
14512
14513bool
14514remote_target::vcont_r_supported ()
14515{
14516 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
14517 remote_vcont_probe ();
14518
14519 return (packet_support (PACKET_vCont) == PACKET_ENABLE
14520 && get_remote_state ()->supports_vCont.r);
14521}
14522
c1e36e3e
PA
14523/* The "set/show range-stepping" set hook. */
14524
14525static void
eb4c3f4a 14526set_range_stepping (const char *ignore_args, int from_tty,
c1e36e3e
PA
14527 struct cmd_list_element *c)
14528{
6b8edb51
PA
14529 /* When enabling, check whether range stepping is actually supported
14530 by the target, and warn if not. */
c1e36e3e
PA
14531 if (use_range_stepping)
14532 {
6b8edb51
PA
14533 remote_target *remote = get_current_remote_target ();
14534 if (remote == NULL
14535 || !remote->vcont_r_supported ())
14536 warning (_("Range stepping is not supported by the current target"));
c1e36e3e
PA
14537 }
14538}
14539
baf2b57f
SM
14540static void
14541show_remote_debug (struct ui_file *file, int from_tty,
14542 struct cmd_list_element *c, const char *value)
14543{
14544 fprintf_filtered (file, _("Debugging of remote protocol is %s.\n"),
14545 value);
14546}
14547
14548static void
14549show_remote_timeout (struct ui_file *file, int from_tty,
14550 struct cmd_list_element *c, const char *value)
14551{
14552 fprintf_filtered (file,
14553 _("Timeout limit to wait for target to respond is %s.\n"),
14554 value);
14555}
14556
6c265988 14557void _initialize_remote ();
c906108c 14558void
6c265988 14559_initialize_remote ()
c906108c 14560{
9a7071a8 14561 struct cmd_list_element *cmd;
6f937416 14562 const char *cmd_name;
ea9c271d 14563
0f71a2f6 14564 /* architecture specific data */
29709017
DJ
14565 remote_g_packet_data_handle =
14566 gdbarch_data_register_pre_init (remote_g_packet_data_init);
d01949b6 14567
d9f719f1
PA
14568 add_target (remote_target_info, remote_target::open);
14569 add_target (extended_remote_target_info, extended_remote_target::open);
cce74817 14570
dc8acb97 14571 /* Hook into new objfile notification. */
76727919 14572 gdb::observers::new_objfile.attach (remote_new_objfile);
dc8acb97 14573
c906108c
SS
14574#if 0
14575 init_remote_threadtests ();
14576#endif
14577
23860348 14578 /* set/show remote ... */
d471ea57 14579
0743fc83 14580 add_basic_prefix_cmd ("remote", class_maintenance, _("\
590042fc 14581Remote protocol specific variables.\n\
5a2468f5 14582Configure various remote-protocol specific variables such as\n\
590042fc 14583the packets being used."),
0743fc83
TT
14584 &remote_set_cmdlist, "set remote ",
14585 0 /* allow-unknown */, &setlist);
1bedd215 14586 add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
590042fc 14587Remote protocol specific variables.\n\
5a2468f5 14588Configure various remote-protocol specific variables such as\n\
590042fc 14589the packets being used."),
cff3e48b 14590 &remote_show_cmdlist, "show remote ",
23860348 14591 0 /* allow-unknown */, &showlist);
5a2468f5 14592
1a966eab
AC
14593 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
14594Compare section data on target to the exec file.\n\
95cf3b38
DT
14595Argument is a single section name (default: all loaded sections).\n\
14596To compare only read-only loaded sections, specify the -r option."),
c906108c
SS
14597 &cmdlist);
14598
1a966eab
AC
14599 add_cmd ("packet", class_maintenance, packet_command, _("\
14600Send an arbitrary packet to a remote target.\n\
c906108c
SS
14601 maintenance packet TEXT\n\
14602If GDB is talking to an inferior via the GDB serial protocol, then\n\
14603this command sends the string TEXT to the inferior, and displays the\n\
14604response packet. GDB supplies the initial `$' character, and the\n\
1a966eab 14605terminating `#' character and checksum."),
c906108c
SS
14606 &maintenancelist);
14607
7915a72c
AC
14608 add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
14609Set whether to send break if interrupted."), _("\
14610Show whether to send break if interrupted."), _("\
14611If set, a break, instead of a cntrl-c, is sent to the remote target."),
9a7071a8 14612 set_remotebreak, show_remotebreak,
e707bbc2 14613 &setlist, &showlist);
9a7071a8 14614 cmd_name = "remotebreak";
cf00cd6f 14615 cmd = lookup_cmd (&cmd_name, setlist, "", NULL, -1, 1);
9a7071a8
JB
14616 deprecate_cmd (cmd, "set remote interrupt-sequence");
14617 cmd_name = "remotebreak"; /* needed because lookup_cmd updates the pointer */
cf00cd6f 14618 cmd = lookup_cmd (&cmd_name, showlist, "", NULL, -1, 1);
9a7071a8
JB
14619 deprecate_cmd (cmd, "show remote interrupt-sequence");
14620
14621 add_setshow_enum_cmd ("interrupt-sequence", class_support,
3e43a32a
MS
14622 interrupt_sequence_modes, &interrupt_sequence_mode,
14623 _("\
9a7071a8
JB
14624Set interrupt sequence to remote target."), _("\
14625Show interrupt sequence to remote target."), _("\
14626Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."),
14627 NULL, show_interrupt_sequence,
14628 &remote_set_cmdlist,
14629 &remote_show_cmdlist);
14630
14631 add_setshow_boolean_cmd ("interrupt-on-connect", class_support,
14632 &interrupt_on_connect, _("\
590042fc
PW
14633Set whether interrupt-sequence is sent to remote target when gdb connects to."), _("\
14634Show whether interrupt-sequence is sent to remote target when gdb connects to."), _("\
9a7071a8
JB
14635If set, interrupt sequence is sent to remote target."),
14636 NULL, NULL,
14637 &remote_set_cmdlist, &remote_show_cmdlist);
c906108c 14638
23860348 14639 /* Install commands for configuring memory read/write packets. */
11cf8741 14640
1a966eab
AC
14641 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
14642Set the maximum number of bytes per memory write packet (deprecated)."),
11cf8741 14643 &setlist);
1a966eab
AC
14644 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
14645Show the maximum number of bytes per memory write packet (deprecated)."),
11cf8741
JM
14646 &showlist);
14647 add_cmd ("memory-write-packet-size", no_class,
1a966eab
AC
14648 set_memory_write_packet_size, _("\
14649Set the maximum number of bytes per memory-write packet.\n\
14650Specify the number of bytes in a packet or 0 (zero) for the\n\
14651default packet size. The actual limit is further reduced\n\
14652dependent on the target. Specify ``fixed'' to disable the\n\
14653further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
14654 &remote_set_cmdlist);
14655 add_cmd ("memory-read-packet-size", no_class,
1a966eab
AC
14656 set_memory_read_packet_size, _("\
14657Set the maximum number of bytes per memory-read packet.\n\
14658Specify the number of bytes in a packet or 0 (zero) for the\n\
14659default packet size. The actual limit is further reduced\n\
14660dependent on the target. Specify ``fixed'' to disable the\n\
14661further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
14662 &remote_set_cmdlist);
14663 add_cmd ("memory-write-packet-size", no_class,
14664 show_memory_write_packet_size,
1a966eab 14665 _("Show the maximum number of bytes per memory-write packet."),
11cf8741
JM
14666 &remote_show_cmdlist);
14667 add_cmd ("memory-read-packet-size", no_class,
14668 show_memory_read_packet_size,
1a966eab 14669 _("Show the maximum number of bytes per memory-read packet."),
11cf8741 14670 &remote_show_cmdlist);
c906108c 14671
055303e2 14672 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-limit", no_class,
7915a72c
AC
14673 &remote_hw_watchpoint_limit, _("\
14674Set the maximum number of target hardware watchpoints."), _("\
14675Show the maximum number of target hardware watchpoints."), _("\
055303e2
AB
14676Specify \"unlimited\" for unlimited hardware watchpoints."),
14677 NULL, show_hardware_watchpoint_limit,
14678 &remote_set_cmdlist,
14679 &remote_show_cmdlist);
14680 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-length-limit",
14681 no_class,
480a3f21
PW
14682 &remote_hw_watchpoint_length_limit, _("\
14683Set the maximum length (in bytes) of a target hardware watchpoint."), _("\
14684Show the maximum length (in bytes) of a target hardware watchpoint."), _("\
055303e2
AB
14685Specify \"unlimited\" to allow watchpoints of unlimited size."),
14686 NULL, show_hardware_watchpoint_length_limit,
480a3f21 14687 &remote_set_cmdlist, &remote_show_cmdlist);
055303e2 14688 add_setshow_zuinteger_unlimited_cmd ("hardware-breakpoint-limit", no_class,
7915a72c
AC
14689 &remote_hw_breakpoint_limit, _("\
14690Set the maximum number of target hardware breakpoints."), _("\
14691Show the maximum number of target hardware breakpoints."), _("\
055303e2
AB
14692Specify \"unlimited\" for unlimited hardware breakpoints."),
14693 NULL, show_hardware_breakpoint_limit,
b3f42336 14694 &remote_set_cmdlist, &remote_show_cmdlist);
501eef12 14695
1b493192
PA
14696 add_setshow_zuinteger_cmd ("remoteaddresssize", class_obscure,
14697 &remote_address_size, _("\
4d28ad1e
AC
14698Set the maximum size of the address (in bits) in a memory packet."), _("\
14699Show the maximum size of the address (in bits) in a memory packet."), NULL,
1b493192
PA
14700 NULL,
14701 NULL, /* FIXME: i18n: */
14702 &setlist, &showlist);
c906108c 14703
ca4f7f8b
PA
14704 init_all_packet_configs ();
14705
444abaca 14706 add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
bb572ddd 14707 "X", "binary-download", 1);
0f71a2f6 14708
444abaca 14709 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
bb572ddd 14710 "vCont", "verbose-resume", 0);
506fb367 14711
89be2091
DJ
14712 add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals],
14713 "QPassSignals", "pass-signals", 0);
14714
82075af2
JS
14715 add_packet_config_cmd (&remote_protocol_packets[PACKET_QCatchSyscalls],
14716 "QCatchSyscalls", "catch-syscalls", 0);
14717
9b224c5e
PA
14718 add_packet_config_cmd (&remote_protocol_packets[PACKET_QProgramSignals],
14719 "QProgramSignals", "program-signals", 0);
14720
bc3b087d
SDJ
14721 add_packet_config_cmd (&remote_protocol_packets[PACKET_QSetWorkingDir],
14722 "QSetWorkingDir", "set-working-dir", 0);
14723
aefd8b33
SDJ
14724 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartupWithShell],
14725 "QStartupWithShell", "startup-with-shell", 0);
14726
0a2dde4a
SDJ
14727 add_packet_config_cmd (&remote_protocol_packets
14728 [PACKET_QEnvironmentHexEncoded],
14729 "QEnvironmentHexEncoded", "environment-hex-encoded",
14730 0);
14731
14732 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentReset],
14733 "QEnvironmentReset", "environment-reset",
14734 0);
14735
14736 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentUnset],
14737 "QEnvironmentUnset", "environment-unset",
14738 0);
14739
444abaca 14740 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
bb572ddd 14741 "qSymbol", "symbol-lookup", 0);
dc8acb97 14742
444abaca 14743 add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
bb572ddd 14744 "P", "set-register", 1);
d471ea57 14745
444abaca 14746 add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
bb572ddd 14747 "p", "fetch-register", 1);
b96ec7ac 14748
444abaca 14749 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
bb572ddd 14750 "Z0", "software-breakpoint", 0);
d471ea57 14751
444abaca 14752 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
bb572ddd 14753 "Z1", "hardware-breakpoint", 0);
d471ea57 14754
444abaca 14755 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
bb572ddd 14756 "Z2", "write-watchpoint", 0);
d471ea57 14757
444abaca 14758 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
bb572ddd 14759 "Z3", "read-watchpoint", 0);
d471ea57 14760
444abaca 14761 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
bb572ddd 14762 "Z4", "access-watchpoint", 0);
d471ea57 14763
0876f84a
DJ
14764 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
14765 "qXfer:auxv:read", "read-aux-vector", 0);
802188a7 14766
c78fa86a
GB
14767 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_exec_file],
14768 "qXfer:exec-file:read", "pid-to-exec-file", 0);
14769
23181151
DJ
14770 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features],
14771 "qXfer:features:read", "target-features", 0);
14772
cfa9d6d9
DJ
14773 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries],
14774 "qXfer:libraries:read", "library-info", 0);
14775
2268b414
JK
14776 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries_svr4],
14777 "qXfer:libraries-svr4:read", "library-info-svr4", 0);
14778
fd79ecee
DJ
14779 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
14780 "qXfer:memory-map:read", "memory-map", 0);
14781
07e059b5 14782 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata],
dda83cd7 14783 "qXfer:osdata:read", "osdata", 0);
07e059b5 14784
dc146f7c
VP
14785 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_threads],
14786 "qXfer:threads:read", "threads", 0);
14787
4aa995e1 14788 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read],
dda83cd7 14789 "qXfer:siginfo:read", "read-siginfo-object", 0);
4aa995e1
PA
14790
14791 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write],
dda83cd7 14792 "qXfer:siginfo:write", "write-siginfo-object", 0);
4aa995e1 14793
b3b9301e
PA
14794 add_packet_config_cmd
14795 (&remote_protocol_packets[PACKET_qXfer_traceframe_info],
eb9fe518 14796 "qXfer:traceframe-info:read", "traceframe-info", 0);
b3b9301e 14797
169081d0
TG
14798 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_uib],
14799 "qXfer:uib:read", "unwind-info-block", 0);
14800
444abaca 14801 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
38691318 14802 "qGetTLSAddr", "get-thread-local-storage-address",
38691318
KB
14803 0);
14804
711e434b
PM
14805 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTIBAddr],
14806 "qGetTIBAddr", "get-thread-information-block-address",
14807 0);
14808
40ab02ce
MS
14809 add_packet_config_cmd (&remote_protocol_packets[PACKET_bc],
14810 "bc", "reverse-continue", 0);
14811
14812 add_packet_config_cmd (&remote_protocol_packets[PACKET_bs],
14813 "bs", "reverse-step", 0);
14814
be2a5f71
DJ
14815 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
14816 "qSupported", "supported-packets", 0);
14817
08388c79
DE
14818 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory],
14819 "qSearch:memory", "search-memory", 0);
14820
bd3eecc3
PA
14821 add_packet_config_cmd (&remote_protocol_packets[PACKET_qTStatus],
14822 "qTStatus", "trace-status", 0);
14823
15a201c8
GB
14824 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_setfs],
14825 "vFile:setfs", "hostio-setfs", 0);
14826
a6b151f1
DJ
14827 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open],
14828 "vFile:open", "hostio-open", 0);
14829
14830 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread],
14831 "vFile:pread", "hostio-pread", 0);
14832
14833 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite],
14834 "vFile:pwrite", "hostio-pwrite", 0);
14835
14836 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close],
14837 "vFile:close", "hostio-close", 0);
14838
14839 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink],
14840 "vFile:unlink", "hostio-unlink", 0);
14841
b9e7b9c3
UW
14842 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_readlink],
14843 "vFile:readlink", "hostio-readlink", 0);
14844
0a93529c
GB
14845 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_fstat],
14846 "vFile:fstat", "hostio-fstat", 0);
14847
2d717e4f
DJ
14848 add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach],
14849 "vAttach", "attach", 0);
14850
14851 add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun],
14852 "vRun", "run", 0);
14853
a6f3e723
SL
14854 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode],
14855 "QStartNoAckMode", "noack", 0);
14856
82f73884
PA
14857 add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill],
14858 "vKill", "kill", 0);
14859
0b16c5cf
PA
14860 add_packet_config_cmd (&remote_protocol_packets[PACKET_qAttached],
14861 "qAttached", "query-attached", 0);
14862
782b2b07 14863 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalTracepoints],
3e43a32a
MS
14864 "ConditionalTracepoints",
14865 "conditional-tracepoints", 0);
3788aec7
LM
14866
14867 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalBreakpoints],
14868 "ConditionalBreakpoints",
14869 "conditional-breakpoints", 0);
14870
d3ce09f5
SS
14871 add_packet_config_cmd (&remote_protocol_packets[PACKET_BreakpointCommands],
14872 "BreakpointCommands",
14873 "breakpoint-commands", 0);
14874
7a697b8d
SS
14875 add_packet_config_cmd (&remote_protocol_packets[PACKET_FastTracepoints],
14876 "FastTracepoints", "fast-tracepoints", 0);
782b2b07 14877
409873ef
SS
14878 add_packet_config_cmd (&remote_protocol_packets[PACKET_TracepointSource],
14879 "TracepointSource", "TracepointSource", 0);
14880
d914c394
SS
14881 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAllow],
14882 "QAllow", "allow", 0);
14883
0fb4aa4b
PA
14884 add_packet_config_cmd (&remote_protocol_packets[PACKET_StaticTracepoints],
14885 "StaticTracepoints", "static-tracepoints", 0);
14886
1e4d1764
YQ
14887 add_packet_config_cmd (&remote_protocol_packets[PACKET_InstallInTrace],
14888 "InstallInTrace", "install-in-trace", 0);
14889
0fb4aa4b 14890 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_statictrace_read],
dda83cd7 14891 "qXfer:statictrace:read", "read-sdata-object", 0);
0fb4aa4b 14892
78d85199
YQ
14893 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_fdpic],
14894 "qXfer:fdpic:read", "read-fdpic-loadmap", 0);
14895
03583c20
UW
14896 add_packet_config_cmd (&remote_protocol_packets[PACKET_QDisableRandomization],
14897 "QDisableRandomization", "disable-randomization", 0);
14898
d1feda86
YQ
14899 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAgent],
14900 "QAgent", "agent", 0);
14901
f6f899bf
HAQ
14902 add_packet_config_cmd (&remote_protocol_packets[PACKET_QTBuffer_size],
14903 "QTBuffer:size", "trace-buffer-size", 0);
14904
9accd112
MM
14905 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_off],
14906 "Qbtrace:off", "disable-btrace", 0);
14907
14908 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_bts],
b20a6524
MM
14909 "Qbtrace:bts", "enable-btrace-bts", 0);
14910
14911 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_pt],
14912 "Qbtrace:pt", "enable-btrace-pt", 0);
9accd112
MM
14913
14914 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace],
14915 "qXfer:btrace", "read-btrace", 0);
14916
f4abbc16
MM
14917 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace_conf],
14918 "qXfer:btrace-conf", "read-btrace-conf", 0);
14919
d33501a5
MM
14920 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_bts_size],
14921 "Qbtrace-conf:bts:size", "btrace-conf-bts-size", 0);
14922
73b8c1fd
PA
14923 add_packet_config_cmd (&remote_protocol_packets[PACKET_multiprocess_feature],
14924 "multiprocess-feature", "multiprocess-feature", 0);
14925
f7e6eed5 14926 add_packet_config_cmd (&remote_protocol_packets[PACKET_swbreak_feature],
dda83cd7 14927 "swbreak-feature", "swbreak-feature", 0);
f7e6eed5
PA
14928
14929 add_packet_config_cmd (&remote_protocol_packets[PACKET_hwbreak_feature],
dda83cd7 14930 "hwbreak-feature", "hwbreak-feature", 0);
f7e6eed5 14931
89245bc0
DB
14932 add_packet_config_cmd (&remote_protocol_packets[PACKET_fork_event_feature],
14933 "fork-event-feature", "fork-event-feature", 0);
14934
14935 add_packet_config_cmd (&remote_protocol_packets[PACKET_vfork_event_feature],
14936 "vfork-event-feature", "vfork-event-feature", 0);
14937
b20a6524
MM
14938 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_pt_size],
14939 "Qbtrace-conf:pt:size", "btrace-conf-pt-size", 0);
14940
750ce8d1
YQ
14941 add_packet_config_cmd (&remote_protocol_packets[PACKET_vContSupported],
14942 "vContSupported", "verbose-resume-supported", 0);
14943
94585166
DB
14944 add_packet_config_cmd (&remote_protocol_packets[PACKET_exec_event_feature],
14945 "exec-event-feature", "exec-event-feature", 0);
14946
de979965
PA
14947 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCtrlC],
14948 "vCtrlC", "ctrl-c", 0);
14949
65706a29
PA
14950 add_packet_config_cmd (&remote_protocol_packets[PACKET_QThreadEvents],
14951 "QThreadEvents", "thread-events", 0);
14952
f2faf941
PA
14953 add_packet_config_cmd (&remote_protocol_packets[PACKET_no_resumed],
14954 "N stop reply", "no-resumed-stop-reply", 0);
14955
0b736949
DB
14956 /* Assert that we've registered "set remote foo-packet" commands
14957 for all packet configs. */
ca4f7f8b
PA
14958 {
14959 int i;
14960
14961 for (i = 0; i < PACKET_MAX; i++)
14962 {
14963 /* Ideally all configs would have a command associated. Some
14964 still don't though. */
14965 int excepted;
14966
14967 switch (i)
14968 {
14969 case PACKET_QNonStop:
ca4f7f8b
PA
14970 case PACKET_EnableDisableTracepoints_feature:
14971 case PACKET_tracenz_feature:
14972 case PACKET_DisconnectedTracing_feature:
14973 case PACKET_augmented_libraries_svr4_read_feature:
936d2992
PA
14974 case PACKET_qCRC:
14975 /* Additions to this list need to be well justified:
14976 pre-existing packets are OK; new packets are not. */
ca4f7f8b
PA
14977 excepted = 1;
14978 break;
14979 default:
14980 excepted = 0;
14981 break;
14982 }
14983
14984 /* This catches both forgetting to add a config command, and
14985 forgetting to remove a packet from the exception list. */
14986 gdb_assert (excepted == (remote_protocol_packets[i].name == NULL));
14987 }
14988 }
14989
37a105a1
DJ
14990 /* Keep the old ``set remote Z-packet ...'' working. Each individual
14991 Z sub-packet has its own set and show commands, but users may
14992 have sets to this variable in their .gdbinit files (or in their
14993 documentation). */
e9e68a56 14994 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
7915a72c 14995 &remote_Z_packet_detect, _("\
590042fc
PW
14996Set use of remote protocol `Z' packets."), _("\
14997Show use of remote protocol `Z' packets."), _("\
3b64bf98 14998When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
7915a72c 14999packets."),
e9e68a56 15000 set_remote_protocol_Z_packet_cmd,
3e43a32a
MS
15001 show_remote_protocol_Z_packet_cmd,
15002 /* FIXME: i18n: Use of remote protocol
15003 `Z' packets is %s. */
e9e68a56 15004 &remote_set_cmdlist, &remote_show_cmdlist);
449092f6 15005
0743fc83 15006 add_basic_prefix_cmd ("remote", class_files, _("\
590042fc 15007Manipulate files on the remote system.\n\
a6b151f1 15008Transfer files to and from the remote target system."),
0743fc83
TT
15009 &remote_cmdlist, "remote ",
15010 0 /* allow-unknown */, &cmdlist);
a6b151f1
DJ
15011
15012 add_cmd ("put", class_files, remote_put_command,
15013 _("Copy a local file to the remote system."),
15014 &remote_cmdlist);
15015
15016 add_cmd ("get", class_files, remote_get_command,
15017 _("Copy a remote file to the local system."),
15018 &remote_cmdlist);
15019
15020 add_cmd ("delete", class_files, remote_delete_command,
15021 _("Delete a remote file."),
15022 &remote_cmdlist);
15023
2d717e4f 15024 add_setshow_string_noescape_cmd ("exec-file", class_files,
94585166 15025 &remote_exec_file_var, _("\
590042fc
PW
15026Set the remote pathname for \"run\"."), _("\
15027Show the remote pathname for \"run\"."), NULL,
94585166
DB
15028 set_remote_exec_file,
15029 show_remote_exec_file,
15030 &remote_set_cmdlist,
15031 &remote_show_cmdlist);
2d717e4f 15032
c1e36e3e
PA
15033 add_setshow_boolean_cmd ("range-stepping", class_run,
15034 &use_range_stepping, _("\
15035Enable or disable range stepping."), _("\
15036Show whether target-assisted range stepping is enabled."), _("\
15037If on, and the target supports it, when stepping a source line, GDB\n\
15038tells the target to step the corresponding range of addresses itself instead\n\
15039of issuing multiple single-steps. This speeds up source level\n\
15040stepping. If off, GDB always issues single-steps, even if range\n\
15041stepping is supported by the target. The default is on."),
15042 set_range_stepping,
15043 show_range_stepping,
15044 &setlist,
15045 &showlist);
15046
ed2b7c17
TT
15047 add_setshow_zinteger_cmd ("watchdog", class_maintenance, &watchdog, _("\
15048Set watchdog timer."), _("\
15049Show watchdog timer."), _("\
15050When non-zero, this timeout is used instead of waiting forever for a target\n\
15051to finish a low-level step or continue operation. If the specified amount\n\
15052of time passes without a response from the target, an error occurs."),
15053 NULL,
15054 show_watchdog,
15055 &setlist, &showlist);
15056
6cc8564b
LM
15057 add_setshow_zuinteger_unlimited_cmd ("remote-packet-max-chars", no_class,
15058 &remote_packet_max_chars, _("\
15059Set the maximum number of characters to display for each remote packet."), _("\
15060Show the maximum number of characters to display for each remote packet."), _("\
15061Specify \"unlimited\" to display all the characters."),
15062 NULL, show_remote_packet_max_chars,
15063 &setdebuglist, &showdebuglist);
15064
02349803
SM
15065 add_setshow_boolean_cmd ("remote", no_class, &remote_debug,
15066 _("Set debugging of remote protocol."),
15067 _("Show debugging of remote protocol."),
15068 _("\
baf2b57f
SM
15069When enabled, each packet sent or received with the remote target\n\
15070is displayed."),
02349803
SM
15071 NULL,
15072 show_remote_debug,
15073 &setdebuglist, &showdebuglist);
baf2b57f
SM
15074
15075 add_setshow_zuinteger_unlimited_cmd ("remotetimeout", no_class,
15076 &remote_timeout, _("\
15077Set timeout limit to wait for target to respond."), _("\
15078Show timeout limit to wait for target to respond."), _("\
15079This value is used to set the time limit for gdb to wait for a response\n\
15080from the target."),
15081 NULL,
15082 show_remote_timeout,
15083 &setlist, &showlist);
15084
449092f6 15085 /* Eventually initialize fileio. See fileio.c */
3f4d92eb 15086 initialize_remote_fileio (&remote_set_cmdlist, &remote_show_cmdlist);
c906108c 15087}
This page took 4.201641 seconds and 4 git commands to generate.