Testcase for attaching in non-stop mode
[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 {
2189c312
SM
1993 remote_debug_printf ("Packet %s (%s) is supported",
1994 config->name, config->title);
d471ea57 1995 config->support = PACKET_ENABLE;
d471ea57 1996 }
a76d924d
DJ
1997 break;
1998 case PACKET_UNKNOWN:
23860348 1999 /* The stub does not support the packet. */
4082afcc
PA
2000 if (config->detect == AUTO_BOOLEAN_AUTO
2001 && config->support == PACKET_ENABLE)
d471ea57 2002 {
4082afcc
PA
2003 /* If the stub previously indicated that the packet was
2004 supported then there is a protocol error. */
2005 error (_("Protocol error: %s (%s) conflicting enabled responses."),
2006 config->name, config->title);
2007 }
2008 else if (config->detect == AUTO_BOOLEAN_TRUE)
2009 {
2010 /* The user set it wrong. */
2011 error (_("Enabled packet %s (%s) not recognized by stub"),
2012 config->name, config->title);
d471ea57 2013 }
4082afcc 2014
2189c312
SM
2015 remote_debug_printf ("Packet %s (%s) is NOT supported",
2016 config->name, config->title);
4082afcc 2017 config->support = PACKET_DISABLE;
a76d924d 2018 break;
5a2468f5 2019 }
a76d924d
DJ
2020
2021 return result;
5a2468f5
JM
2022}
2023
8d64371b
TT
2024static enum packet_result
2025packet_ok (const gdb::char_vector &buf, struct packet_config *config)
2026{
2027 return packet_ok (buf.data (), config);
2028}
2029
444abaca
DJ
2030enum {
2031 PACKET_vCont = 0,
2032 PACKET_X,
2033 PACKET_qSymbol,
2034 PACKET_P,
2035 PACKET_p,
2036 PACKET_Z0,
2037 PACKET_Z1,
2038 PACKET_Z2,
2039 PACKET_Z3,
2040 PACKET_Z4,
15a201c8 2041 PACKET_vFile_setfs,
a6b151f1
DJ
2042 PACKET_vFile_open,
2043 PACKET_vFile_pread,
2044 PACKET_vFile_pwrite,
2045 PACKET_vFile_close,
2046 PACKET_vFile_unlink,
b9e7b9c3 2047 PACKET_vFile_readlink,
0a93529c 2048 PACKET_vFile_fstat,
0876f84a 2049 PACKET_qXfer_auxv,
23181151 2050 PACKET_qXfer_features,
c78fa86a 2051 PACKET_qXfer_exec_file,
cfa9d6d9 2052 PACKET_qXfer_libraries,
2268b414 2053 PACKET_qXfer_libraries_svr4,
fd79ecee 2054 PACKET_qXfer_memory_map,
07e059b5 2055 PACKET_qXfer_osdata,
dc146f7c 2056 PACKET_qXfer_threads,
0fb4aa4b 2057 PACKET_qXfer_statictrace_read,
b3b9301e 2058 PACKET_qXfer_traceframe_info,
169081d0 2059 PACKET_qXfer_uib,
711e434b 2060 PACKET_qGetTIBAddr,
444abaca 2061 PACKET_qGetTLSAddr,
be2a5f71 2062 PACKET_qSupported,
bd3eecc3 2063 PACKET_qTStatus,
89be2091 2064 PACKET_QPassSignals,
82075af2 2065 PACKET_QCatchSyscalls,
9b224c5e 2066 PACKET_QProgramSignals,
bc3b087d 2067 PACKET_QSetWorkingDir,
aefd8b33 2068 PACKET_QStartupWithShell,
0a2dde4a
SDJ
2069 PACKET_QEnvironmentHexEncoded,
2070 PACKET_QEnvironmentReset,
2071 PACKET_QEnvironmentUnset,
936d2992 2072 PACKET_qCRC,
08388c79 2073 PACKET_qSearch_memory,
2d717e4f
DJ
2074 PACKET_vAttach,
2075 PACKET_vRun,
a6f3e723 2076 PACKET_QStartNoAckMode,
82f73884 2077 PACKET_vKill,
4aa995e1
PA
2078 PACKET_qXfer_siginfo_read,
2079 PACKET_qXfer_siginfo_write,
0b16c5cf 2080 PACKET_qAttached,
4082afcc
PA
2081
2082 /* Support for conditional tracepoints. */
782b2b07 2083 PACKET_ConditionalTracepoints,
4082afcc
PA
2084
2085 /* Support for target-side breakpoint conditions. */
3788aec7 2086 PACKET_ConditionalBreakpoints,
4082afcc
PA
2087
2088 /* Support for target-side breakpoint commands. */
d3ce09f5 2089 PACKET_BreakpointCommands,
4082afcc
PA
2090
2091 /* Support for fast tracepoints. */
7a697b8d 2092 PACKET_FastTracepoints,
4082afcc
PA
2093
2094 /* Support for static tracepoints. */
0fb4aa4b 2095 PACKET_StaticTracepoints,
4082afcc
PA
2096
2097 /* Support for installing tracepoints while a trace experiment is
2098 running. */
1e4d1764 2099 PACKET_InstallInTrace,
4082afcc 2100
40ab02ce
MS
2101 PACKET_bc,
2102 PACKET_bs,
409873ef 2103 PACKET_TracepointSource,
d914c394 2104 PACKET_QAllow,
78d85199 2105 PACKET_qXfer_fdpic,
03583c20 2106 PACKET_QDisableRandomization,
d1feda86 2107 PACKET_QAgent,
f6f899bf 2108 PACKET_QTBuffer_size,
9accd112
MM
2109 PACKET_Qbtrace_off,
2110 PACKET_Qbtrace_bts,
b20a6524 2111 PACKET_Qbtrace_pt,
9accd112 2112 PACKET_qXfer_btrace,
4082afcc
PA
2113
2114 /* Support for the QNonStop packet. */
2115 PACKET_QNonStop,
2116
65706a29
PA
2117 /* Support for the QThreadEvents packet. */
2118 PACKET_QThreadEvents,
2119
4082afcc
PA
2120 /* Support for multi-process extensions. */
2121 PACKET_multiprocess_feature,
2122
2123 /* Support for enabling and disabling tracepoints while a trace
2124 experiment is running. */
2125 PACKET_EnableDisableTracepoints_feature,
2126
2127 /* Support for collecting strings using the tracenz bytecode. */
2128 PACKET_tracenz_feature,
2129
2130 /* Support for continuing to run a trace experiment while GDB is
2131 disconnected. */
2132 PACKET_DisconnectedTracing_feature,
2133
2134 /* Support for qXfer:libraries-svr4:read with a non-empty annex. */
2135 PACKET_augmented_libraries_svr4_read_feature,
2136
f4abbc16
MM
2137 /* Support for the qXfer:btrace-conf:read packet. */
2138 PACKET_qXfer_btrace_conf,
2139
d33501a5
MM
2140 /* Support for the Qbtrace-conf:bts:size packet. */
2141 PACKET_Qbtrace_conf_bts_size,
2142
f7e6eed5
PA
2143 /* Support for swbreak+ feature. */
2144 PACKET_swbreak_feature,
2145
2146 /* Support for hwbreak+ feature. */
2147 PACKET_hwbreak_feature,
2148
89245bc0
DB
2149 /* Support for fork events. */
2150 PACKET_fork_event_feature,
2151
2152 /* Support for vfork events. */
2153 PACKET_vfork_event_feature,
2154
b20a6524
MM
2155 /* Support for the Qbtrace-conf:pt:size packet. */
2156 PACKET_Qbtrace_conf_pt_size,
2157
94585166
DB
2158 /* Support for exec events. */
2159 PACKET_exec_event_feature,
2160
750ce8d1
YQ
2161 /* Support for query supported vCont actions. */
2162 PACKET_vContSupported,
2163
de979965
PA
2164 /* Support remote CTRL-C. */
2165 PACKET_vCtrlC,
2166
f2faf941
PA
2167 /* Support TARGET_WAITKIND_NO_RESUMED. */
2168 PACKET_no_resumed,
2169
444abaca
DJ
2170 PACKET_MAX
2171};
506fb367 2172
5b6d1e4f
PA
2173/* FIXME: needs to be per-remote-target. Ignoring this for now,
2174 assuming all remote targets are the same server (thus all support
2175 the same packets). */
444abaca 2176static struct packet_config remote_protocol_packets[PACKET_MAX];
dc8acb97 2177
f7e6eed5
PA
2178/* Returns the packet's corresponding "set remote foo-packet" command
2179 state. See struct packet_config for more details. */
2180
2181static enum auto_boolean
2182packet_set_cmd_state (int packet)
2183{
2184 return remote_protocol_packets[packet].detect;
2185}
2186
4082afcc
PA
2187/* Returns whether a given packet or feature is supported. This takes
2188 into account the state of the corresponding "set remote foo-packet"
2189 command, which may be used to bypass auto-detection. */
dc8acb97 2190
4082afcc
PA
2191static enum packet_support
2192packet_config_support (struct packet_config *config)
2193{
2194 switch (config->detect)
444abaca 2195 {
4082afcc
PA
2196 case AUTO_BOOLEAN_TRUE:
2197 return PACKET_ENABLE;
2198 case AUTO_BOOLEAN_FALSE:
2199 return PACKET_DISABLE;
2200 case AUTO_BOOLEAN_AUTO:
2201 return config->support;
2202 default:
2203 gdb_assert_not_reached (_("bad switch"));
444abaca 2204 }
4082afcc
PA
2205}
2206
2207/* Same as packet_config_support, but takes the packet's enum value as
2208 argument. */
2209
2210static enum packet_support
2211packet_support (int packet)
2212{
2213 struct packet_config *config = &remote_protocol_packets[packet];
2214
2215 return packet_config_support (config);
dc8acb97
MS
2216}
2217
5a2468f5 2218static void
444abaca
DJ
2219show_remote_protocol_packet_cmd (struct ui_file *file, int from_tty,
2220 struct cmd_list_element *c,
2221 const char *value)
5a2468f5 2222{
444abaca 2223 struct packet_config *packet;
5a2468f5 2224
444abaca
DJ
2225 for (packet = remote_protocol_packets;
2226 packet < &remote_protocol_packets[PACKET_MAX];
2227 packet++)
2228 {
2229 if (&packet->detect == c->var)
2230 {
2231 show_packet_config_cmd (packet);
2232 return;
2233 }
2234 }
9b20d036 2235 internal_error (__FILE__, __LINE__, _("Could not find config for %s"),
444abaca 2236 c->name);
5a2468f5
JM
2237}
2238
d471ea57
AC
2239/* Should we try one of the 'Z' requests? */
2240
2241enum Z_packet_type
2242{
2243 Z_PACKET_SOFTWARE_BP,
2244 Z_PACKET_HARDWARE_BP,
2245 Z_PACKET_WRITE_WP,
2246 Z_PACKET_READ_WP,
2247 Z_PACKET_ACCESS_WP,
2248 NR_Z_PACKET_TYPES
2249};
96baa820 2250
d471ea57 2251/* For compatibility with older distributions. Provide a ``set remote
23860348 2252 Z-packet ...'' command that updates all the Z packet types. */
d471ea57 2253
7f19b9a2 2254static enum auto_boolean remote_Z_packet_detect;
96baa820
JM
2255
2256static void
eb4c3f4a 2257set_remote_protocol_Z_packet_cmd (const char *args, int from_tty,
fba45db2 2258 struct cmd_list_element *c)
96baa820 2259{
d471ea57 2260 int i;
a744cf53 2261
d471ea57 2262 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
4082afcc 2263 remote_protocol_packets[PACKET_Z0 + i].detect = remote_Z_packet_detect;
96baa820
JM
2264}
2265
2266static void
08546159
AC
2267show_remote_protocol_Z_packet_cmd (struct ui_file *file, int from_tty,
2268 struct cmd_list_element *c,
2269 const char *value)
96baa820 2270{
d471ea57 2271 int i;
a744cf53 2272
d471ea57
AC
2273 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
2274 {
444abaca 2275 show_packet_config_cmd (&remote_protocol_packets[PACKET_Z0 + i]);
d471ea57 2276 }
96baa820
JM
2277}
2278
4082afcc
PA
2279/* Returns true if the multi-process extensions are in effect. */
2280
2281static int
2282remote_multi_process_p (struct remote_state *rs)
2283{
2284 return packet_support (PACKET_multiprocess_feature) == PACKET_ENABLE;
2285}
2286
de0d863e
DB
2287/* Returns true if fork events are supported. */
2288
2289static int
2290remote_fork_event_p (struct remote_state *rs)
2291{
2292 return packet_support (PACKET_fork_event_feature) == PACKET_ENABLE;
2293}
2294
c269dbdb
DB
2295/* Returns true if vfork events are supported. */
2296
2297static int
2298remote_vfork_event_p (struct remote_state *rs)
2299{
2300 return packet_support (PACKET_vfork_event_feature) == PACKET_ENABLE;
2301}
2302
d46addbb
DB
2303/* Returns true if exec events are supported. */
2304
2305static int
2306remote_exec_event_p (struct remote_state *rs)
2307{
2308 return packet_support (PACKET_exec_event_feature) == PACKET_ENABLE;
2309}
2310
cbb8991c
DB
2311/* Insert fork catchpoint target routine. If fork events are enabled
2312 then return success, nothing more to do. */
2313
f6ac5f3d
PA
2314int
2315remote_target::insert_fork_catchpoint (int pid)
cbb8991c
DB
2316{
2317 struct remote_state *rs = get_remote_state ();
2318
2319 return !remote_fork_event_p (rs);
2320}
2321
2322/* Remove fork catchpoint target routine. Nothing to do, just
2323 return success. */
2324
f6ac5f3d
PA
2325int
2326remote_target::remove_fork_catchpoint (int pid)
cbb8991c
DB
2327{
2328 return 0;
2329}
2330
2331/* Insert vfork catchpoint target routine. If vfork events are enabled
2332 then return success, nothing more to do. */
2333
f6ac5f3d
PA
2334int
2335remote_target::insert_vfork_catchpoint (int pid)
cbb8991c
DB
2336{
2337 struct remote_state *rs = get_remote_state ();
2338
2339 return !remote_vfork_event_p (rs);
2340}
2341
2342/* Remove vfork catchpoint target routine. Nothing to do, just
2343 return success. */
2344
f6ac5f3d
PA
2345int
2346remote_target::remove_vfork_catchpoint (int pid)
cbb8991c
DB
2347{
2348 return 0;
2349}
2350
d46addbb
DB
2351/* Insert exec catchpoint target routine. If exec events are
2352 enabled, just return success. */
2353
f6ac5f3d
PA
2354int
2355remote_target::insert_exec_catchpoint (int pid)
d46addbb
DB
2356{
2357 struct remote_state *rs = get_remote_state ();
2358
2359 return !remote_exec_event_p (rs);
2360}
2361
2362/* Remove exec catchpoint target routine. Nothing to do, just
2363 return success. */
2364
f6ac5f3d
PA
2365int
2366remote_target::remove_exec_catchpoint (int pid)
d46addbb
DB
2367{
2368 return 0;
2369}
2370
c906108c
SS
2371\f
2372
ffdd69cf
TT
2373/* Take advantage of the fact that the TID field is not used, to tag
2374 special ptids with it set to != 0. */
2375static const ptid_t magic_null_ptid (42000, -1, 1);
2376static const ptid_t not_sent_ptid (42000, -2, 1);
2377static const ptid_t any_thread_ptid (42000, 0, 1);
79d7f229 2378
0b16c5cf
PA
2379/* Find out if the stub attached to PID (and hence GDB should offer to
2380 detach instead of killing it when bailing out). */
2381
6b8edb51
PA
2382int
2383remote_target::remote_query_attached (int pid)
0b16c5cf
PA
2384{
2385 struct remote_state *rs = get_remote_state ();
bba74b36 2386 size_t size = get_remote_packet_size ();
0b16c5cf 2387
4082afcc 2388 if (packet_support (PACKET_qAttached) == PACKET_DISABLE)
0b16c5cf
PA
2389 return 0;
2390
2391 if (remote_multi_process_p (rs))
8d64371b 2392 xsnprintf (rs->buf.data (), size, "qAttached:%x", pid);
0b16c5cf 2393 else
8d64371b 2394 xsnprintf (rs->buf.data (), size, "qAttached");
0b16c5cf
PA
2395
2396 putpkt (rs->buf);
8d64371b 2397 getpkt (&rs->buf, 0);
0b16c5cf
PA
2398
2399 switch (packet_ok (rs->buf,
1554e9be 2400 &remote_protocol_packets[PACKET_qAttached]))
0b16c5cf
PA
2401 {
2402 case PACKET_OK:
8d64371b 2403 if (strcmp (rs->buf.data (), "1") == 0)
0b16c5cf
PA
2404 return 1;
2405 break;
2406 case PACKET_ERROR:
8d64371b 2407 warning (_("Remote failure reply: %s"), rs->buf.data ());
0b16c5cf
PA
2408 break;
2409 case PACKET_UNKNOWN:
2410 break;
2411 }
2412
2413 return 0;
2414}
2415
49c62f2e
PA
2416/* Add PID to GDB's inferior table. If FAKE_PID_P is true, then PID
2417 has been invented by GDB, instead of reported by the target. Since
2418 we can be connected to a remote system before before knowing about
2419 any inferior, mark the target with execution when we find the first
2420 inferior. If ATTACHED is 1, then we had just attached to this
2421 inferior. If it is 0, then we just created this inferior. If it
2422 is -1, then try querying the remote stub to find out if it had
1b6e6f5c
GB
2423 attached to the inferior or not. If TRY_OPEN_EXEC is true then
2424 attempt to open this inferior's executable as the main executable
2425 if no main executable is open already. */
1941c569 2426
6b8edb51 2427inferior *
9ab8741a 2428remote_target::remote_add_inferior (bool fake_pid_p, int pid, int attached,
6b8edb51 2429 int try_open_exec)
1941c569 2430{
1941c569
PA
2431 struct inferior *inf;
2432
0b16c5cf
PA
2433 /* Check whether this process we're learning about is to be
2434 considered attached, or if is to be considered to have been
2435 spawned by the stub. */
2436 if (attached == -1)
2437 attached = remote_query_attached (pid);
2438
f5656ead 2439 if (gdbarch_has_global_solist (target_gdbarch ()))
6c95b8df
PA
2440 {
2441 /* If the target shares code across all inferiors, then every
2442 attach adds a new inferior. */
2443 inf = add_inferior (pid);
2444
2445 /* ... and every inferior is bound to the same program space.
2446 However, each inferior may still have its own address
2447 space. */
2448 inf->aspace = maybe_new_address_space ();
2449 inf->pspace = current_program_space;
2450 }
2451 else
2452 {
2453 /* In the traditional debugging scenario, there's a 1-1 match
2454 between program/address spaces. We simply bind the inferior
2455 to the program space's address space. */
2456 inf = current_inferior ();
78f2c40a
PA
2457
2458 /* However, if the current inferior is already bound to a
2459 process, find some other empty inferior. */
2460 if (inf->pid != 0)
2461 {
2462 inf = nullptr;
2463 for (inferior *it : all_inferiors ())
2464 if (it->pid == 0)
2465 {
2466 inf = it;
2467 break;
2468 }
2469 }
2470 if (inf == nullptr)
2471 {
2472 /* Since all inferiors were already bound to a process, add
2473 a new inferior. */
2474 inf = add_inferior_with_spaces ();
2475 }
2476 switch_to_inferior_no_thread (inf);
5b6d1e4f 2477 push_target (this);
6c95b8df
PA
2478 inferior_appeared (inf, pid);
2479 }
1941c569 2480
0b16c5cf 2481 inf->attach_flag = attached;
49c62f2e 2482 inf->fake_pid_p = fake_pid_p;
0b16c5cf 2483
1b6e6f5c
GB
2484 /* If no main executable is currently open then attempt to
2485 open the file that was executed to create this inferior. */
835205d0 2486 if (try_open_exec && get_exec_file (0) == NULL)
bb805577 2487 exec_file_locate_attach (pid, 0, 1);
1b6e6f5c 2488
a2fedca9
PW
2489 /* Check for exec file mismatch, and let the user solve it. */
2490 validate_exec_file (1);
2491
1941c569
PA
2492 return inf;
2493}
2494
7aabaf9d 2495static remote_thread_info *get_remote_thread_info (thread_info *thread);
5b6d1e4f
PA
2496static remote_thread_info *get_remote_thread_info (remote_target *target,
2497 ptid_t ptid);
85ad3aaf 2498
1941c569
PA
2499/* Add thread PTID to GDB's thread list. Tag it as executing/running
2500 according to RUNNING. */
2501
00431a78 2502thread_info *
6b8edb51 2503remote_target::remote_add_thread (ptid_t ptid, bool running, bool executing)
c906108c 2504{
b7ea362b 2505 struct remote_state *rs = get_remote_state ();
85ad3aaf 2506 struct thread_info *thread;
b7ea362b
PA
2507
2508 /* GDB historically didn't pull threads in the initial connection
2509 setup. If the remote target doesn't even have a concept of
2510 threads (e.g., a bare-metal target), even if internally we
2511 consider that a single-threaded target, mentioning a new thread
2512 might be confusing to the user. Be silent then, preserving the
2513 age old behavior. */
2514 if (rs->starting_up)
5b6d1e4f 2515 thread = add_thread_silent (this, ptid);
b7ea362b 2516 else
5b6d1e4f 2517 thread = add_thread (this, ptid);
1941c569 2518
c9d22089
SM
2519 /* We start by assuming threads are resumed. That state then gets updated
2520 when we process a matching stop reply. */
2521 get_remote_thread_info (thread)->set_resumed ();
2522
5b6d1e4f
PA
2523 set_executing (this, ptid, executing);
2524 set_running (this, ptid, running);
00431a78
PA
2525
2526 return thread;
1941c569
PA
2527}
2528
2529/* Come here when we learn about a thread id from the remote target.
2530 It may be the first time we hear about such thread, so take the
2531 opportunity to add it to GDB's thread list. In case this is the
2532 first time we're noticing its corresponding inferior, add it to
0d5b594f
PA
2533 GDB's inferior list as well. EXECUTING indicates whether the
2534 thread is (internally) executing or stopped. */
1941c569 2535
6b8edb51
PA
2536void
2537remote_target::remote_notice_new_inferior (ptid_t currthread, int executing)
1941c569 2538{
0d5b594f
PA
2539 /* In non-stop mode, we assume new found threads are (externally)
2540 running until proven otherwise with a stop reply. In all-stop,
2541 we can only get here if all threads are stopped. */
2542 int running = target_is_non_stop_p () ? 1 : 0;
2543
c906108c
SS
2544 /* If this is a new thread, add it to GDB's thread list.
2545 If we leave it up to WFI to do this, bad things will happen. */
82f73884 2546
5b6d1e4f 2547 thread_info *tp = find_thread_ptid (this, currthread);
00431a78 2548 if (tp != NULL && tp->state == THREAD_EXITED)
82f73884
PA
2549 {
2550 /* We're seeing an event on a thread id we knew had exited.
2551 This has to be a new thread reusing the old id. Add it. */
0d5b594f 2552 remote_add_thread (currthread, running, executing);
82f73884
PA
2553 return;
2554 }
2555
5b6d1e4f 2556 if (!in_thread_list (this, currthread))
c0a2216e 2557 {
1941c569 2558 struct inferior *inf = NULL;
e99b03dc 2559 int pid = currthread.pid ();
1941c569 2560
0e998d96 2561 if (inferior_ptid.is_pid ()
e99b03dc 2562 && pid == inferior_ptid.pid ())
c0a2216e
PA
2563 {
2564 /* inferior_ptid has no thread member yet. This can happen
2565 with the vAttach -> remote_wait,"TAAthread:" path if the
2566 stub doesn't support qC. This is the first stop reported
2567 after an attach, so this is the main thread. Update the
2568 ptid in the thread list. */
5b6d1e4f
PA
2569 if (in_thread_list (this, ptid_t (pid)))
2570 thread_change_ptid (this, inferior_ptid, currthread);
bad34192
PA
2571 else
2572 {
0ac55310
PA
2573 thread_info *thr
2574 = remote_add_thread (currthread, running, executing);
2575 switch_to_thread (thr);
bad34192 2576 }
dc146f7c 2577 return;
c0a2216e 2578 }
82f73884 2579
d7e15655 2580 if (magic_null_ptid == inferior_ptid)
c0a2216e
PA
2581 {
2582 /* inferior_ptid is not set yet. This can happen with the
2583 vRun -> remote_wait,"TAAthread:" path if the stub
2584 doesn't support qC. This is the first stop reported
2585 after an attach, so this is the main thread. Update the
2586 ptid in the thread list. */
5b6d1e4f 2587 thread_change_ptid (this, inferior_ptid, currthread);
82f73884 2588 return;
c0a2216e 2589 }
82f73884 2590
29c87f7f
PA
2591 /* When connecting to a target remote, or to a target
2592 extended-remote which already was debugging an inferior, we
2593 may not know about it yet. Add it before adding its child
2594 thread, so notifications are emitted in a sensible order. */
5b6d1e4f 2595 if (find_inferior_pid (this, currthread.pid ()) == NULL)
49c62f2e
PA
2596 {
2597 struct remote_state *rs = get_remote_state ();
9ab8741a 2598 bool fake_pid_p = !remote_multi_process_p (rs);
49c62f2e
PA
2599
2600 inf = remote_add_inferior (fake_pid_p,
e99b03dc 2601 currthread.pid (), -1, 1);
49c62f2e 2602 }
29c87f7f 2603
82f73884 2604 /* This is really a new thread. Add it. */
00431a78
PA
2605 thread_info *new_thr
2606 = remote_add_thread (currthread, running, executing);
1941c569
PA
2607
2608 /* If we found a new inferior, let the common code do whatever
2609 it needs to with it (e.g., read shared libraries, insert
b7ea362b
PA
2610 breakpoints), unless we're just setting up an all-stop
2611 connection. */
1941c569 2612 if (inf != NULL)
b7ea362b
PA
2613 {
2614 struct remote_state *rs = get_remote_state ();
2615
6efcd9a8 2616 if (!rs->starting_up)
00431a78 2617 notice_new_inferior (new_thr, executing, 0);
b7ea362b 2618 }
c0a2216e 2619 }
c906108c
SS
2620}
2621
85ad3aaf 2622/* Return THREAD's private thread data, creating it if necessary. */
dc146f7c 2623
7aabaf9d
SM
2624static remote_thread_info *
2625get_remote_thread_info (thread_info *thread)
dc146f7c 2626{
85ad3aaf 2627 gdb_assert (thread != NULL);
dc146f7c 2628
85ad3aaf 2629 if (thread->priv == NULL)
7aabaf9d 2630 thread->priv.reset (new remote_thread_info);
dc146f7c 2631
7aabaf9d 2632 return static_cast<remote_thread_info *> (thread->priv.get ());
85ad3aaf
PA
2633}
2634
5b6d1e4f
PA
2635/* Return PTID's private thread data, creating it if necessary. */
2636
7aabaf9d 2637static remote_thread_info *
5b6d1e4f 2638get_remote_thread_info (remote_target *target, ptid_t ptid)
85ad3aaf 2639{
5b6d1e4f 2640 thread_info *thr = find_thread_ptid (target, ptid);
00431a78 2641 return get_remote_thread_info (thr);
dc146f7c
VP
2642}
2643
74531fed
PA
2644/* Call this function as a result of
2645 1) A halt indication (T packet) containing a thread id
2646 2) A direct query of currthread
0df8b418 2647 3) Successful execution of set thread */
74531fed
PA
2648
2649static void
47f8a51d 2650record_currthread (struct remote_state *rs, ptid_t currthread)
74531fed 2651{
47f8a51d 2652 rs->general_thread = currthread;
74531fed
PA
2653}
2654
89be2091
DJ
2655/* If 'QPassSignals' is supported, tell the remote stub what signals
2656 it can simply pass through to the inferior without reporting. */
2657
f6ac5f3d 2658void
adc6a863 2659remote_target::pass_signals (gdb::array_view<const unsigned char> pass_signals)
89be2091 2660{
4082afcc 2661 if (packet_support (PACKET_QPassSignals) != PACKET_DISABLE)
89be2091
DJ
2662 {
2663 char *pass_packet, *p;
adc6a863 2664 int count = 0;
747dc59d 2665 struct remote_state *rs = get_remote_state ();
89be2091 2666
adc6a863
PA
2667 gdb_assert (pass_signals.size () < 256);
2668 for (size_t i = 0; i < pass_signals.size (); i++)
89be2091 2669 {
2455069d 2670 if (pass_signals[i])
89be2091
DJ
2671 count++;
2672 }
224c3ddb 2673 pass_packet = (char *) xmalloc (count * 3 + strlen ("QPassSignals:") + 1);
89be2091
DJ
2674 strcpy (pass_packet, "QPassSignals:");
2675 p = pass_packet + strlen (pass_packet);
adc6a863 2676 for (size_t i = 0; i < pass_signals.size (); i++)
89be2091 2677 {
2455069d 2678 if (pass_signals[i])
89be2091
DJ
2679 {
2680 if (i >= 16)
2681 *p++ = tohex (i >> 4);
2682 *p++ = tohex (i & 15);
2683 if (count)
2684 *p++ = ';';
2685 else
2686 break;
2687 count--;
2688 }
2689 }
2690 *p = 0;
747dc59d 2691 if (!rs->last_pass_packet || strcmp (rs->last_pass_packet, pass_packet))
89be2091 2692 {
89be2091 2693 putpkt (pass_packet);
8d64371b 2694 getpkt (&rs->buf, 0);
8dc5b319 2695 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QPassSignals]);
84d53fa9 2696 xfree (rs->last_pass_packet);
747dc59d 2697 rs->last_pass_packet = pass_packet;
89be2091
DJ
2698 }
2699 else
2700 xfree (pass_packet);
2701 }
2702}
2703
82075af2
JS
2704/* If 'QCatchSyscalls' is supported, tell the remote stub
2705 to report syscalls to GDB. */
2706
f6ac5f3d
PA
2707int
2708remote_target::set_syscall_catchpoint (int pid, bool needed, int any_count,
2709 gdb::array_view<const int> syscall_counts)
82075af2 2710{
b80406ac 2711 const char *catch_packet;
82075af2
JS
2712 enum packet_result result;
2713 int n_sysno = 0;
2714
2715 if (packet_support (PACKET_QCatchSyscalls) == PACKET_DISABLE)
2716 {
2717 /* Not supported. */
2718 return 1;
2719 }
2720
649a140c 2721 if (needed && any_count == 0)
82075af2 2722 {
649a140c
PA
2723 /* Count how many syscalls are to be caught. */
2724 for (size_t i = 0; i < syscall_counts.size (); i++)
82075af2 2725 {
649a140c 2726 if (syscall_counts[i] != 0)
82075af2
JS
2727 n_sysno++;
2728 }
2729 }
2730
2189c312
SM
2731 remote_debug_printf ("pid %d needed %d any_count %d n_sysno %d",
2732 pid, needed, any_count, n_sysno);
82075af2 2733
1b81856f 2734 std::string built_packet;
82075af2
JS
2735 if (needed)
2736 {
2737 /* Prepare a packet with the sysno list, assuming max 8+1
2738 characters for a sysno. If the resulting packet size is too
2739 big, fallback on the non-selective packet. */
2740 const int maxpktsz = strlen ("QCatchSyscalls:1") + n_sysno * 9 + 1;
1b81856f
PA
2741 built_packet.reserve (maxpktsz);
2742 built_packet = "QCatchSyscalls:1";
649a140c 2743 if (any_count == 0)
82075af2 2744 {
649a140c
PA
2745 /* Add in each syscall to be caught. */
2746 for (size_t i = 0; i < syscall_counts.size (); i++)
82075af2 2747 {
649a140c
PA
2748 if (syscall_counts[i] != 0)
2749 string_appendf (built_packet, ";%zx", i);
82075af2
JS
2750 }
2751 }
1b81856f 2752 if (built_packet.size () > get_remote_packet_size ())
82075af2
JS
2753 {
2754 /* catch_packet too big. Fallback to less efficient
2755 non selective mode, with GDB doing the filtering. */
b80406ac 2756 catch_packet = "QCatchSyscalls:1";
82075af2 2757 }
b80406ac 2758 else
1b81856f 2759 catch_packet = built_packet.c_str ();
82075af2
JS
2760 }
2761 else
b80406ac 2762 catch_packet = "QCatchSyscalls:0";
82075af2 2763
b80406ac 2764 struct remote_state *rs = get_remote_state ();
82075af2 2765
b80406ac 2766 putpkt (catch_packet);
8d64371b 2767 getpkt (&rs->buf, 0);
b80406ac
TT
2768 result = packet_ok (rs->buf, &remote_protocol_packets[PACKET_QCatchSyscalls]);
2769 if (result == PACKET_OK)
2770 return 0;
2771 else
2772 return -1;
82075af2
JS
2773}
2774
9b224c5e
PA
2775/* If 'QProgramSignals' is supported, tell the remote stub what
2776 signals it should pass through to the inferior when detaching. */
2777
f6ac5f3d 2778void
adc6a863 2779remote_target::program_signals (gdb::array_view<const unsigned char> signals)
9b224c5e 2780{
4082afcc 2781 if (packet_support (PACKET_QProgramSignals) != PACKET_DISABLE)
9b224c5e
PA
2782 {
2783 char *packet, *p;
adc6a863 2784 int count = 0;
5e4a05c4 2785 struct remote_state *rs = get_remote_state ();
9b224c5e 2786
adc6a863
PA
2787 gdb_assert (signals.size () < 256);
2788 for (size_t i = 0; i < signals.size (); i++)
9b224c5e
PA
2789 {
2790 if (signals[i])
2791 count++;
2792 }
224c3ddb 2793 packet = (char *) xmalloc (count * 3 + strlen ("QProgramSignals:") + 1);
9b224c5e
PA
2794 strcpy (packet, "QProgramSignals:");
2795 p = packet + strlen (packet);
adc6a863 2796 for (size_t i = 0; i < signals.size (); i++)
9b224c5e
PA
2797 {
2798 if (signal_pass_state (i))
2799 {
2800 if (i >= 16)
2801 *p++ = tohex (i >> 4);
2802 *p++ = tohex (i & 15);
2803 if (count)
2804 *p++ = ';';
2805 else
2806 break;
2807 count--;
2808 }
2809 }
2810 *p = 0;
5e4a05c4
TT
2811 if (!rs->last_program_signals_packet
2812 || strcmp (rs->last_program_signals_packet, packet) != 0)
9b224c5e 2813 {
9b224c5e 2814 putpkt (packet);
8d64371b 2815 getpkt (&rs->buf, 0);
8dc5b319 2816 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QProgramSignals]);
5e4a05c4
TT
2817 xfree (rs->last_program_signals_packet);
2818 rs->last_program_signals_packet = packet;
9b224c5e
PA
2819 }
2820 else
2821 xfree (packet);
2822 }
2823}
2824
79d7f229
PA
2825/* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
2826 MINUS_ONE_PTID, set the thread to -1, so the stub returns the
2827 thread. If GEN is set, set the general thread, if not, then set
2828 the step/continue thread. */
6b8edb51
PA
2829void
2830remote_target::set_thread (ptid_t ptid, int gen)
c906108c 2831{
d01949b6 2832 struct remote_state *rs = get_remote_state ();
47f8a51d 2833 ptid_t state = gen ? rs->general_thread : rs->continue_thread;
8d64371b
TT
2834 char *buf = rs->buf.data ();
2835 char *endbuf = buf + get_remote_packet_size ();
c906108c 2836
d7e15655 2837 if (state == ptid)
c906108c
SS
2838 return;
2839
79d7f229
PA
2840 *buf++ = 'H';
2841 *buf++ = gen ? 'g' : 'c';
d7e15655 2842 if (ptid == magic_null_ptid)
79d7f229 2843 xsnprintf (buf, endbuf - buf, "0");
d7e15655 2844 else if (ptid == any_thread_ptid)
79d7f229 2845 xsnprintf (buf, endbuf - buf, "0");
d7e15655 2846 else if (ptid == minus_one_ptid)
79d7f229
PA
2847 xsnprintf (buf, endbuf - buf, "-1");
2848 else
82f73884 2849 write_ptid (buf, endbuf, ptid);
79d7f229 2850 putpkt (rs->buf);
8d64371b 2851 getpkt (&rs->buf, 0);
c906108c 2852 if (gen)
47f8a51d 2853 rs->general_thread = ptid;
c906108c 2854 else
47f8a51d 2855 rs->continue_thread = ptid;
c906108c 2856}
79d7f229 2857
6b8edb51
PA
2858void
2859remote_target::set_general_thread (ptid_t ptid)
79d7f229
PA
2860{
2861 set_thread (ptid, 1);
2862}
2863
6b8edb51
PA
2864void
2865remote_target::set_continue_thread (ptid_t ptid)
79d7f229
PA
2866{
2867 set_thread (ptid, 0);
2868}
2869
3c9c4b83
PA
2870/* Change the remote current process. Which thread within the process
2871 ends up selected isn't important, as long as it is the same process
2872 as what INFERIOR_PTID points to.
2873
2874 This comes from that fact that there is no explicit notion of
2875 "selected process" in the protocol. The selected process for
2876 general operations is the process the selected general thread
2877 belongs to. */
2878
6b8edb51
PA
2879void
2880remote_target::set_general_process ()
3c9c4b83
PA
2881{
2882 struct remote_state *rs = get_remote_state ();
2883
2884 /* If the remote can't handle multiple processes, don't bother. */
8020350c 2885 if (!remote_multi_process_p (rs))
3c9c4b83
PA
2886 return;
2887
2888 /* We only need to change the remote current thread if it's pointing
2889 at some other process. */
e99b03dc 2890 if (rs->general_thread.pid () != inferior_ptid.pid ())
3c9c4b83
PA
2891 set_general_thread (inferior_ptid);
2892}
2893
c906108c 2894\f
7d1a114c
PA
2895/* Return nonzero if this is the main thread that we made up ourselves
2896 to model non-threaded targets as single-threaded. */
c906108c
SS
2897
2898static int
f6ac5f3d 2899remote_thread_always_alive (ptid_t ptid)
c906108c 2900{
d7e15655 2901 if (ptid == magic_null_ptid)
c0a2216e
PA
2902 /* The main thread is always alive. */
2903 return 1;
2904
e38504b3 2905 if (ptid.pid () != 0 && ptid.lwp () == 0)
c0a2216e
PA
2906 /* The main thread is always alive. This can happen after a
2907 vAttach, if the remote side doesn't support
2908 multi-threading. */
2909 return 1;
2910
7d1a114c
PA
2911 return 0;
2912}
2913
2914/* Return nonzero if the thread PTID is still alive on the remote
2915 system. */
2916
57810aa7 2917bool
f6ac5f3d 2918remote_target::thread_alive (ptid_t ptid)
7d1a114c
PA
2919{
2920 struct remote_state *rs = get_remote_state ();
2921 char *p, *endp;
2922
2923 /* Check if this is a thread that we made up ourselves to model
2924 non-threaded targets as single-threaded. */
f6ac5f3d 2925 if (remote_thread_always_alive (ptid))
7d1a114c
PA
2926 return 1;
2927
8d64371b
TT
2928 p = rs->buf.data ();
2929 endp = p + get_remote_packet_size ();
82f73884
PA
2930
2931 *p++ = 'T';
2932 write_ptid (p, endp, ptid);
2933
2e9f7625 2934 putpkt (rs->buf);
8d64371b 2935 getpkt (&rs->buf, 0);
2e9f7625 2936 return (rs->buf[0] == 'O' && rs->buf[1] == 'K');
c906108c
SS
2937}
2938
79efa585
SM
2939/* Return a pointer to a thread name if we know it and NULL otherwise.
2940 The thread_info object owns the memory for the name. */
2941
f6ac5f3d
PA
2942const char *
2943remote_target::thread_name (struct thread_info *info)
79efa585
SM
2944{
2945 if (info->priv != NULL)
a9334058
SM
2946 {
2947 const std::string &name = get_remote_thread_info (info)->name;
2948 return !name.empty () ? name.c_str () : NULL;
2949 }
79efa585
SM
2950
2951 return NULL;
2952}
2953
c906108c
SS
2954/* About these extended threadlist and threadinfo packets. They are
2955 variable length packets but, the fields within them are often fixed
30baf67b 2956 length. They are redundant enough to send over UDP as is the
c906108c
SS
2957 remote protocol in general. There is a matching unit test module
2958 in libstub. */
2959
23860348 2960/* WARNING: This threadref data structure comes from the remote O.S.,
0df8b418 2961 libstub protocol encoding, and remote.c. It is not particularly
23860348 2962 changable. */
cce74817
JM
2963
2964/* Right now, the internal structure is int. We want it to be bigger.
0df8b418 2965 Plan to fix this. */
cce74817 2966
23860348 2967typedef int gdb_threadref; /* Internal GDB thread reference. */
cce74817 2968
9d1f7ab2 2969/* gdb_ext_thread_info is an internal GDB data structure which is
cfde0993 2970 equivalent to the reply of the remote threadinfo packet. */
cce74817
JM
2971
2972struct gdb_ext_thread_info
c5aa993b 2973 {
23860348 2974 threadref threadid; /* External form of thread reference. */
2bc416ba 2975 int active; /* Has state interesting to GDB?
23860348 2976 regs, stack. */
2bc416ba 2977 char display[256]; /* Brief state display, name,
cedea757 2978 blocked/suspended. */
23860348 2979 char shortname[32]; /* To be used to name threads. */
2bc416ba 2980 char more_display[256]; /* Long info, statistics, queue depth,
23860348 2981 whatever. */
c5aa993b 2982 };
cce74817
JM
2983
2984/* The volume of remote transfers can be limited by submitting
2985 a mask containing bits specifying the desired information.
2986 Use a union of these values as the 'selection' parameter to
0df8b418 2987 get_thread_info. FIXME: Make these TAG names more thread specific. */
cce74817
JM
2988
2989#define TAG_THREADID 1
2990#define TAG_EXISTS 2
2991#define TAG_DISPLAY 4
2992#define TAG_THREADNAME 8
c5aa993b 2993#define TAG_MOREDISPLAY 16
cce74817 2994
23860348 2995#define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
c906108c 2996
cecb1912 2997static const char *unpack_nibble (const char *buf, int *val);
cce74817 2998
cecb1912 2999static const char *unpack_byte (const char *buf, int *value);
cce74817 3000
a14ed312 3001static char *pack_int (char *buf, int value);
cce74817 3002
cecb1912 3003static const char *unpack_int (const char *buf, int *value);
cce74817 3004
cecb1912 3005static const char *unpack_string (const char *src, char *dest, int length);
cce74817 3006
23860348 3007static char *pack_threadid (char *pkt, threadref *id);
cce74817 3008
cecb1912 3009static const char *unpack_threadid (const char *inbuf, threadref *id);
cce74817 3010
23860348 3011void int_to_threadref (threadref *id, int value);
cce74817 3012
23860348 3013static int threadref_to_int (threadref *ref);
cce74817 3014
23860348 3015static void copy_threadref (threadref *dest, threadref *src);
cce74817 3016
23860348 3017static int threadmatch (threadref *dest, threadref *src);
cce74817 3018
2bc416ba 3019static char *pack_threadinfo_request (char *pkt, int mode,
23860348 3020 threadref *id);
cce74817 3021
a14ed312
KB
3022static char *pack_threadlist_request (char *pkt, int startflag,
3023 int threadcount,
23860348 3024 threadref *nextthread);
cce74817 3025
23860348 3026static int remote_newthread_step (threadref *ref, void *context);
cce74817 3027
82f73884
PA
3028
3029/* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the
3030 buffer we're allowed to write to. Returns
3031 BUF+CHARACTERS_WRITTEN. */
3032
6b8edb51
PA
3033char *
3034remote_target::write_ptid (char *buf, const char *endbuf, ptid_t ptid)
82f73884
PA
3035{
3036 int pid, tid;
3037 struct remote_state *rs = get_remote_state ();
3038
3039 if (remote_multi_process_p (rs))
3040 {
e99b03dc 3041 pid = ptid.pid ();
82f73884
PA
3042 if (pid < 0)
3043 buf += xsnprintf (buf, endbuf - buf, "p-%x.", -pid);
3044 else
3045 buf += xsnprintf (buf, endbuf - buf, "p%x.", pid);
3046 }
e38504b3 3047 tid = ptid.lwp ();
82f73884
PA
3048 if (tid < 0)
3049 buf += xsnprintf (buf, endbuf - buf, "-%x", -tid);
3050 else
3051 buf += xsnprintf (buf, endbuf - buf, "%x", tid);
3052
3053 return buf;
3054}
3055
256642e8
PA
3056/* Extract a PTID from BUF. If non-null, OBUF is set to one past the
3057 last parsed char. Returns null_ptid if no thread id is found, and
3058 throws an error if the thread id has an invalid format. */
82f73884
PA
3059
3060static ptid_t
256642e8 3061read_ptid (const char *buf, const char **obuf)
82f73884 3062{
256642e8
PA
3063 const char *p = buf;
3064 const char *pp;
82f73884 3065 ULONGEST pid = 0, tid = 0;
82f73884
PA
3066
3067 if (*p == 'p')
3068 {
3069 /* Multi-process ptid. */
3070 pp = unpack_varlen_hex (p + 1, &pid);
3071 if (*pp != '.')
b37520b6 3072 error (_("invalid remote ptid: %s"), p);
82f73884
PA
3073
3074 p = pp;
3075 pp = unpack_varlen_hex (p + 1, &tid);
3076 if (obuf)
3077 *obuf = pp;
fd79271b 3078 return ptid_t (pid, tid, 0);
82f73884
PA
3079 }
3080
3081 /* No multi-process. Just a tid. */
3082 pp = unpack_varlen_hex (p, &tid);
3083
c9f35b34
KB
3084 /* Return null_ptid when no thread id is found. */
3085 if (p == pp)
3086 {
3087 if (obuf)
3088 *obuf = pp;
3089 return null_ptid;
3090 }
3091
82f73884 3092 /* Since the stub is not sending a process id, then default to
ca19bf23
PA
3093 what's in inferior_ptid, unless it's null at this point. If so,
3094 then since there's no way to know the pid of the reported
3095 threads, use the magic number. */
d7e15655 3096 if (inferior_ptid == null_ptid)
e99b03dc 3097 pid = magic_null_ptid.pid ();
ca19bf23 3098 else
e99b03dc 3099 pid = inferior_ptid.pid ();
82f73884
PA
3100
3101 if (obuf)
3102 *obuf = pp;
fd79271b 3103 return ptid_t (pid, tid, 0);
82f73884
PA
3104}
3105
c906108c 3106static int
fba45db2 3107stubhex (int ch)
c906108c
SS
3108{
3109 if (ch >= 'a' && ch <= 'f')
3110 return ch - 'a' + 10;
3111 if (ch >= '0' && ch <= '9')
3112 return ch - '0';
3113 if (ch >= 'A' && ch <= 'F')
3114 return ch - 'A' + 10;
3115 return -1;
3116}
3117
3118static int
cecb1912 3119stub_unpack_int (const char *buff, int fieldlength)
c906108c
SS
3120{
3121 int nibble;
3122 int retval = 0;
3123
3124 while (fieldlength)
3125 {
3126 nibble = stubhex (*buff++);
3127 retval |= nibble;
3128 fieldlength--;
3129 if (fieldlength)
3130 retval = retval << 4;
3131 }
3132 return retval;
3133}
3134
cecb1912
SM
3135static const char *
3136unpack_nibble (const char *buf, int *val)
c906108c 3137{
b7589f7d 3138 *val = fromhex (*buf++);
c906108c
SS
3139 return buf;
3140}
3141
cecb1912
SM
3142static const char *
3143unpack_byte (const char *buf, int *value)
c906108c
SS
3144{
3145 *value = stub_unpack_int (buf, 2);
3146 return buf + 2;
3147}
3148
3149static char *
fba45db2 3150pack_int (char *buf, int value)
c906108c
SS
3151{
3152 buf = pack_hex_byte (buf, (value >> 24) & 0xff);
3153 buf = pack_hex_byte (buf, (value >> 16) & 0xff);
3154 buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
3155 buf = pack_hex_byte (buf, (value & 0xff));
3156 return buf;
3157}
3158
cecb1912
SM
3159static const char *
3160unpack_int (const char *buf, int *value)
c906108c
SS
3161{
3162 *value = stub_unpack_int (buf, 8);
3163 return buf + 8;
3164}
3165
23860348 3166#if 0 /* Currently unused, uncomment when needed. */
a14ed312 3167static char *pack_string (char *pkt, char *string);
c906108c
SS
3168
3169static char *
fba45db2 3170pack_string (char *pkt, char *string)
c906108c
SS
3171{
3172 char ch;
3173 int len;
3174
3175 len = strlen (string);
3176 if (len > 200)
23860348 3177 len = 200; /* Bigger than most GDB packets, junk??? */
c906108c
SS
3178 pkt = pack_hex_byte (pkt, len);
3179 while (len-- > 0)
3180 {
3181 ch = *string++;
3182 if ((ch == '\0') || (ch == '#'))
23860348 3183 ch = '*'; /* Protect encapsulation. */
c906108c
SS
3184 *pkt++ = ch;
3185 }
3186 return pkt;
3187}
3188#endif /* 0 (unused) */
3189
cecb1912
SM
3190static const char *
3191unpack_string (const char *src, char *dest, int length)
c906108c
SS
3192{
3193 while (length--)
3194 *dest++ = *src++;
3195 *dest = '\0';
3196 return src;
3197}
3198
3199static char *
fba45db2 3200pack_threadid (char *pkt, threadref *id)
c906108c
SS
3201{
3202 char *limit;
3203 unsigned char *altid;
3204
3205 altid = (unsigned char *) id;
3206 limit = pkt + BUF_THREAD_ID_SIZE;
3207 while (pkt < limit)
3208 pkt = pack_hex_byte (pkt, *altid++);
3209 return pkt;
3210}
3211
3212
cecb1912
SM
3213static const char *
3214unpack_threadid (const char *inbuf, threadref *id)
c906108c
SS
3215{
3216 char *altref;
cecb1912 3217 const char *limit = inbuf + BUF_THREAD_ID_SIZE;
c906108c
SS
3218 int x, y;
3219
3220 altref = (char *) id;
3221
3222 while (inbuf < limit)
3223 {
3224 x = stubhex (*inbuf++);
3225 y = stubhex (*inbuf++);
3226 *altref++ = (x << 4) | y;
3227 }
3228 return inbuf;
3229}
3230
3231/* Externally, threadrefs are 64 bits but internally, they are still
0df8b418 3232 ints. This is due to a mismatch of specifications. We would like
c906108c
SS
3233 to use 64bit thread references internally. This is an adapter
3234 function. */
3235
3236void
fba45db2 3237int_to_threadref (threadref *id, int value)
c906108c
SS
3238{
3239 unsigned char *scan;
3240
3241 scan = (unsigned char *) id;
3242 {
3243 int i = 4;
3244 while (i--)
3245 *scan++ = 0;
3246 }
3247 *scan++ = (value >> 24) & 0xff;
3248 *scan++ = (value >> 16) & 0xff;
3249 *scan++ = (value >> 8) & 0xff;
3250 *scan++ = (value & 0xff);
3251}
3252
3253static int
fba45db2 3254threadref_to_int (threadref *ref)
c906108c
SS
3255{
3256 int i, value = 0;
3257 unsigned char *scan;
3258
cfd77fa1 3259 scan = *ref;
c906108c
SS
3260 scan += 4;
3261 i = 4;
3262 while (i-- > 0)
3263 value = (value << 8) | ((*scan++) & 0xff);
3264 return value;
3265}
3266
3267static void
fba45db2 3268copy_threadref (threadref *dest, threadref *src)
c906108c
SS
3269{
3270 int i;
3271 unsigned char *csrc, *cdest;
3272
3273 csrc = (unsigned char *) src;
3274 cdest = (unsigned char *) dest;
3275 i = 8;
3276 while (i--)
3277 *cdest++ = *csrc++;
3278}
3279
3280static int
fba45db2 3281threadmatch (threadref *dest, threadref *src)
c906108c 3282{
23860348 3283 /* Things are broken right now, so just assume we got a match. */
c906108c
SS
3284#if 0
3285 unsigned char *srcp, *destp;
3286 int i, result;
3287 srcp = (char *) src;
3288 destp = (char *) dest;
3289
3290 result = 1;
3291 while (i-- > 0)
3292 result &= (*srcp++ == *destp++) ? 1 : 0;
3293 return result;
3294#endif
3295 return 1;
3296}
3297
3298/*
c5aa993b
JM
3299 threadid:1, # always request threadid
3300 context_exists:2,
3301 display:4,
3302 unique_name:8,
3303 more_display:16
3304 */
c906108c
SS
3305
3306/* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
3307
3308static char *
fba45db2 3309pack_threadinfo_request (char *pkt, int mode, threadref *id)
c906108c 3310{
23860348
MS
3311 *pkt++ = 'q'; /* Info Query */
3312 *pkt++ = 'P'; /* process or thread info */
3313 pkt = pack_int (pkt, mode); /* mode */
c906108c 3314 pkt = pack_threadid (pkt, id); /* threadid */
23860348 3315 *pkt = '\0'; /* terminate */
c906108c
SS
3316 return pkt;
3317}
3318
23860348 3319/* These values tag the fields in a thread info response packet. */
c906108c 3320/* Tagging the fields allows us to request specific fields and to
23860348 3321 add more fields as time goes by. */
c906108c 3322
23860348 3323#define TAG_THREADID 1 /* Echo the thread identifier. */
c5aa993b 3324#define TAG_EXISTS 2 /* Is this process defined enough to
23860348 3325 fetch registers and its stack? */
c5aa993b 3326#define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
23860348 3327#define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
802188a7 3328#define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
23860348 3329 the process. */
c906108c 3330
6b8edb51 3331int
cecb1912 3332remote_target::remote_unpack_thread_info_response (const char *pkt,
6b8edb51
PA
3333 threadref *expectedref,
3334 gdb_ext_thread_info *info)
c906108c 3335{
d01949b6 3336 struct remote_state *rs = get_remote_state ();
c906108c 3337 int mask, length;
cfd77fa1 3338 int tag;
c906108c 3339 threadref ref;
cecb1912 3340 const char *limit = pkt + rs->buf.size (); /* Plausible parsing limit. */
c906108c
SS
3341 int retval = 1;
3342
23860348 3343 /* info->threadid = 0; FIXME: implement zero_threadref. */
c906108c
SS
3344 info->active = 0;
3345 info->display[0] = '\0';
3346 info->shortname[0] = '\0';
3347 info->more_display[0] = '\0';
3348
23860348
MS
3349 /* Assume the characters indicating the packet type have been
3350 stripped. */
c906108c
SS
3351 pkt = unpack_int (pkt, &mask); /* arg mask */
3352 pkt = unpack_threadid (pkt, &ref);
3353
3354 if (mask == 0)
8a3fe4f8 3355 warning (_("Incomplete response to threadinfo request."));
c906108c 3356 if (!threadmatch (&ref, expectedref))
23860348 3357 { /* This is an answer to a different request. */
8a3fe4f8 3358 warning (_("ERROR RMT Thread info mismatch."));
c906108c
SS
3359 return 0;
3360 }
3361 copy_threadref (&info->threadid, &ref);
3362
405feb71 3363 /* Loop on tagged fields , try to bail if something goes wrong. */
c906108c 3364
23860348
MS
3365 /* Packets are terminated with nulls. */
3366 while ((pkt < limit) && mask && *pkt)
c906108c
SS
3367 {
3368 pkt = unpack_int (pkt, &tag); /* tag */
23860348
MS
3369 pkt = unpack_byte (pkt, &length); /* length */
3370 if (!(tag & mask)) /* Tags out of synch with mask. */
c906108c 3371 {
8a3fe4f8 3372 warning (_("ERROR RMT: threadinfo tag mismatch."));
c906108c
SS
3373 retval = 0;
3374 break;
3375 }
3376 if (tag == TAG_THREADID)
3377 {
3378 if (length != 16)
3379 {
8a3fe4f8 3380 warning (_("ERROR RMT: length of threadid is not 16."));
c906108c
SS
3381 retval = 0;
3382 break;
3383 }
3384 pkt = unpack_threadid (pkt, &ref);
3385 mask = mask & ~TAG_THREADID;
3386 continue;
3387 }
3388 if (tag == TAG_EXISTS)
3389 {
3390 info->active = stub_unpack_int (pkt, length);
3391 pkt += length;
3392 mask = mask & ~(TAG_EXISTS);
3393 if (length > 8)
3394 {
8a3fe4f8 3395 warning (_("ERROR RMT: 'exists' length too long."));
c906108c
SS
3396 retval = 0;
3397 break;
3398 }
3399 continue;
3400 }
3401 if (tag == TAG_THREADNAME)
3402 {
3403 pkt = unpack_string (pkt, &info->shortname[0], length);
3404 mask = mask & ~TAG_THREADNAME;
3405 continue;
3406 }
3407 if (tag == TAG_DISPLAY)
3408 {
3409 pkt = unpack_string (pkt, &info->display[0], length);
3410 mask = mask & ~TAG_DISPLAY;
3411 continue;
3412 }
3413 if (tag == TAG_MOREDISPLAY)
3414 {
3415 pkt = unpack_string (pkt, &info->more_display[0], length);
3416 mask = mask & ~TAG_MOREDISPLAY;
3417 continue;
3418 }
8a3fe4f8 3419 warning (_("ERROR RMT: unknown thread info tag."));
23860348 3420 break; /* Not a tag we know about. */
c906108c
SS
3421 }
3422 return retval;
3423}
3424
6b8edb51
PA
3425int
3426remote_target::remote_get_threadinfo (threadref *threadid,
3427 int fieldset,
3428 gdb_ext_thread_info *info)
c906108c 3429{
d01949b6 3430 struct remote_state *rs = get_remote_state ();
c906108c 3431 int result;
c906108c 3432
8d64371b 3433 pack_threadinfo_request (rs->buf.data (), fieldset, threadid);
2e9f7625 3434 putpkt (rs->buf);
8d64371b 3435 getpkt (&rs->buf, 0);
3084dd77
PA
3436
3437 if (rs->buf[0] == '\0')
3438 return 0;
3439
8d64371b 3440 result = remote_unpack_thread_info_response (&rs->buf[2],
23860348 3441 threadid, info);
c906108c
SS
3442 return result;
3443}
3444
c906108c
SS
3445/* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
3446
3447static char *
fba45db2
KB
3448pack_threadlist_request (char *pkt, int startflag, int threadcount,
3449 threadref *nextthread)
c906108c
SS
3450{
3451 *pkt++ = 'q'; /* info query packet */
3452 *pkt++ = 'L'; /* Process LIST or threadLIST request */
23860348 3453 pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */
c906108c
SS
3454 pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */
3455 pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */
3456 *pkt = '\0';
3457 return pkt;
3458}
3459
3460/* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
3461
6b8edb51 3462int
cecb1912 3463remote_target::parse_threadlist_response (const char *pkt, int result_limit,
6b8edb51
PA
3464 threadref *original_echo,
3465 threadref *resultlist,
3466 int *doneflag)
c906108c 3467{
d01949b6 3468 struct remote_state *rs = get_remote_state ();
c906108c
SS
3469 int count, resultcount, done;
3470
3471 resultcount = 0;
3472 /* Assume the 'q' and 'M chars have been stripped. */
cecb1912 3473 const char *limit = pkt + (rs->buf.size () - BUF_THREAD_ID_SIZE);
23860348 3474 /* done parse past here */
c906108c
SS
3475 pkt = unpack_byte (pkt, &count); /* count field */
3476 pkt = unpack_nibble (pkt, &done);
3477 /* The first threadid is the argument threadid. */
3478 pkt = unpack_threadid (pkt, original_echo); /* should match query packet */
3479 while ((count-- > 0) && (pkt < limit))
3480 {
3481 pkt = unpack_threadid (pkt, resultlist++);
3482 if (resultcount++ >= result_limit)
3483 break;
3484 }
3485 if (doneflag)
3486 *doneflag = done;
3487 return resultcount;
3488}
3489
6dc54d91
PA
3490/* Fetch the next batch of threads from the remote. Returns -1 if the
3491 qL packet is not supported, 0 on error and 1 on success. */
3492
6b8edb51
PA
3493int
3494remote_target::remote_get_threadlist (int startflag, threadref *nextthread,
3495 int result_limit, int *done, int *result_count,
3496 threadref *threadlist)
c906108c 3497{
d01949b6 3498 struct remote_state *rs = get_remote_state ();
c906108c
SS
3499 int result = 1;
3500
405feb71 3501 /* Truncate result limit to be smaller than the packet size. */
3e43a32a
MS
3502 if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10)
3503 >= get_remote_packet_size ())
ea9c271d 3504 result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2;
c906108c 3505
8d64371b
TT
3506 pack_threadlist_request (rs->buf.data (), startflag, result_limit,
3507 nextthread);
6d820c5c 3508 putpkt (rs->buf);
8d64371b
TT
3509 getpkt (&rs->buf, 0);
3510 if (rs->buf[0] == '\0')
6dc54d91
PA
3511 {
3512 /* Packet not supported. */
3513 return -1;
3514 }
3515
3516 *result_count =
8d64371b 3517 parse_threadlist_response (&rs->buf[2], result_limit,
6dc54d91 3518 &rs->echo_nextthread, threadlist, done);
c906108c 3519
0d031856 3520 if (!threadmatch (&rs->echo_nextthread, nextthread))
c906108c 3521 {
23860348 3522 /* FIXME: This is a good reason to drop the packet. */
405feb71
TV
3523 /* Possibly, there is a duplicate response. */
3524 /* Possibilities :
dda83cd7
SM
3525 retransmit immediatly - race conditions
3526 retransmit after timeout - yes
3527 exit
3528 wait for packet, then exit
c906108c 3529 */
8a3fe4f8 3530 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
23860348 3531 return 0; /* I choose simply exiting. */
c906108c
SS
3532 }
3533 if (*result_count <= 0)
3534 {
3535 if (*done != 1)
3536 {
8a3fe4f8 3537 warning (_("RMT ERROR : failed to get remote thread list."));
c906108c
SS
3538 result = 0;
3539 }
3540 return result; /* break; */
3541 }
3542 if (*result_count > result_limit)
3543 {
3544 *result_count = 0;
8a3fe4f8 3545 warning (_("RMT ERROR: threadlist response longer than requested."));
c906108c
SS
3546 return 0;
3547 }
3548 return result;
3549}
3550
6dc54d91
PA
3551/* Fetch the list of remote threads, with the qL packet, and call
3552 STEPFUNCTION for each thread found. Stops iterating and returns 1
3553 if STEPFUNCTION returns true. Stops iterating and returns 0 if the
3554 STEPFUNCTION returns false. If the packet is not supported,
3555 returns -1. */
c906108c 3556
6b8edb51
PA
3557int
3558remote_target::remote_threadlist_iterator (rmt_thread_action stepfunction,
3559 void *context, int looplimit)
c906108c 3560{
0d031856 3561 struct remote_state *rs = get_remote_state ();
c906108c
SS
3562 int done, i, result_count;
3563 int startflag = 1;
3564 int result = 1;
3565 int loopcount = 0;
c906108c
SS
3566
3567 done = 0;
3568 while (!done)
3569 {
3570 if (loopcount++ > looplimit)
3571 {
3572 result = 0;
8a3fe4f8 3573 warning (_("Remote fetch threadlist -infinite loop-."));
c906108c
SS
3574 break;
3575 }
6dc54d91
PA
3576 result = remote_get_threadlist (startflag, &rs->nextthread,
3577 MAXTHREADLISTRESULTS,
3578 &done, &result_count,
3579 rs->resultthreadlist);
3580 if (result <= 0)
3581 break;
23860348 3582 /* Clear for later iterations. */
c906108c
SS
3583 startflag = 0;
3584 /* Setup to resume next batch of thread references, set nextthread. */
3585 if (result_count >= 1)
0d031856
TT
3586 copy_threadref (&rs->nextthread,
3587 &rs->resultthreadlist[result_count - 1]);
c906108c
SS
3588 i = 0;
3589 while (result_count--)
6dc54d91
PA
3590 {
3591 if (!(*stepfunction) (&rs->resultthreadlist[i++], context))
3592 {
3593 result = 0;
3594 break;
3595 }
3596 }
c906108c
SS
3597 }
3598 return result;
3599}
3600
6dc54d91
PA
3601/* A thread found on the remote target. */
3602
21fe1c75 3603struct thread_item
6dc54d91 3604{
21fe1c75
SM
3605 explicit thread_item (ptid_t ptid_)
3606 : ptid (ptid_)
3607 {}
3608
3609 thread_item (thread_item &&other) = default;
3610 thread_item &operator= (thread_item &&other) = default;
3611
3612 DISABLE_COPY_AND_ASSIGN (thread_item);
3613
6dc54d91
PA
3614 /* The thread's PTID. */
3615 ptid_t ptid;
3616
21fe1c75
SM
3617 /* The thread's extra info. */
3618 std::string extra;
6dc54d91 3619
21fe1c75
SM
3620 /* The thread's name. */
3621 std::string name;
79efa585 3622
6dc54d91 3623 /* The core the thread was running on. -1 if not known. */
21fe1c75 3624 int core = -1;
f6327dcb
KB
3625
3626 /* The thread handle associated with the thread. */
21fe1c75 3627 gdb::byte_vector thread_handle;
21fe1c75 3628};
6dc54d91
PA
3629
3630/* Context passed around to the various methods listing remote
3631 threads. As new threads are found, they're added to the ITEMS
3632 vector. */
3633
3634struct threads_listing_context
3635{
21fe1c75
SM
3636 /* Return true if this object contains an entry for a thread with ptid
3637 PTID. */
6dc54d91 3638
21fe1c75
SM
3639 bool contains_thread (ptid_t ptid) const
3640 {
3641 auto match_ptid = [&] (const thread_item &item)
3642 {
3643 return item.ptid == ptid;
3644 };
80134cf5 3645
21fe1c75
SM
3646 auto it = std::find_if (this->items.begin (),
3647 this->items.end (),
3648 match_ptid);
80134cf5 3649
21fe1c75
SM
3650 return it != this->items.end ();
3651 }
80134cf5 3652
21fe1c75 3653 /* Remove the thread with ptid PTID. */
80134cf5 3654
21fe1c75
SM
3655 void remove_thread (ptid_t ptid)
3656 {
3657 auto match_ptid = [&] (const thread_item &item)
3658 {
dda83cd7 3659 return item.ptid == ptid;
21fe1c75 3660 };
cbb8991c 3661
21fe1c75
SM
3662 auto it = std::remove_if (this->items.begin (),
3663 this->items.end (),
3664 match_ptid);
cbb8991c 3665
21fe1c75
SM
3666 if (it != this->items.end ())
3667 this->items.erase (it);
3668 }
3669
3670 /* The threads found on the remote target. */
3671 std::vector<thread_item> items;
3672};
cbb8991c 3673
c906108c 3674static int
6dc54d91 3675remote_newthread_step (threadref *ref, void *data)
c906108c 3676{
19ba03f4
SM
3677 struct threads_listing_context *context
3678 = (struct threads_listing_context *) data;
21fe1c75
SM
3679 int pid = inferior_ptid.pid ();
3680 int lwp = threadref_to_int (ref);
3681 ptid_t ptid (pid, lwp);
6dc54d91 3682
21fe1c75 3683 context->items.emplace_back (ptid);
6dc54d91 3684
c906108c
SS
3685 return 1; /* continue iterator */
3686}
3687
3688#define CRAZY_MAX_THREADS 1000
3689
6b8edb51
PA
3690ptid_t
3691remote_target::remote_current_thread (ptid_t oldpid)
c906108c 3692{
d01949b6 3693 struct remote_state *rs = get_remote_state ();
c906108c
SS
3694
3695 putpkt ("qC");
8d64371b 3696 getpkt (&rs->buf, 0);
2e9f7625 3697 if (rs->buf[0] == 'Q' && rs->buf[1] == 'C')
c9f35b34 3698 {
256642e8 3699 const char *obuf;
c9f35b34
KB
3700 ptid_t result;
3701
3702 result = read_ptid (&rs->buf[2], &obuf);
2189c312
SM
3703 if (*obuf != '\0')
3704 remote_debug_printf ("warning: garbage in qC reply");
c9f35b34
KB
3705
3706 return result;
3707 }
c906108c
SS
3708 else
3709 return oldpid;
3710}
3711
6dc54d91 3712/* List remote threads using the deprecated qL packet. */
cce74817 3713
6b8edb51
PA
3714int
3715remote_target::remote_get_threads_with_ql (threads_listing_context *context)
c906108c 3716{
6dc54d91
PA
3717 if (remote_threadlist_iterator (remote_newthread_step, context,
3718 CRAZY_MAX_THREADS) >= 0)
3719 return 1;
3720
3721 return 0;
c906108c
SS
3722}
3723
dc146f7c
VP
3724#if defined(HAVE_LIBEXPAT)
3725
dc146f7c
VP
3726static void
3727start_thread (struct gdb_xml_parser *parser,
3728 const struct gdb_xml_element *element,
4d0fdd9b
SM
3729 void *user_data,
3730 std::vector<gdb_xml_value> &attributes)
dc146f7c 3731{
19ba03f4
SM
3732 struct threads_listing_context *data
3733 = (struct threads_listing_context *) user_data;
3d2c1d41 3734 struct gdb_xml_value *attr;
dc146f7c 3735
4d0fdd9b 3736 char *id = (char *) xml_find_attribute (attributes, "id")->value.get ();
21fe1c75
SM
3737 ptid_t ptid = read_ptid (id, NULL);
3738
3739 data->items.emplace_back (ptid);
3740 thread_item &item = data->items.back ();
dc146f7c 3741
3d2c1d41
PA
3742 attr = xml_find_attribute (attributes, "core");
3743 if (attr != NULL)
4d0fdd9b 3744 item.core = *(ULONGEST *) attr->value.get ();
dc146f7c 3745
79efa585 3746 attr = xml_find_attribute (attributes, "name");
21fe1c75 3747 if (attr != NULL)
4d0fdd9b 3748 item.name = (const char *) attr->value.get ();
79efa585 3749
f6327dcb
KB
3750 attr = xml_find_attribute (attributes, "handle");
3751 if (attr != NULL)
4d0fdd9b 3752 item.thread_handle = hex2bin ((const char *) attr->value.get ());
dc146f7c
VP
3753}
3754
3755static void
3756end_thread (struct gdb_xml_parser *parser,
3757 const struct gdb_xml_element *element,
3758 void *user_data, const char *body_text)
3759{
19ba03f4
SM
3760 struct threads_listing_context *data
3761 = (struct threads_listing_context *) user_data;
dc146f7c 3762
21fe1c75
SM
3763 if (body_text != NULL && *body_text != '\0')
3764 data->items.back ().extra = body_text;
dc146f7c
VP
3765}
3766
3767const struct gdb_xml_attribute thread_attributes[] = {
3768 { "id", GDB_XML_AF_NONE, NULL, NULL },
3769 { "core", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
79efa585 3770 { "name", GDB_XML_AF_OPTIONAL, NULL, NULL },
f6327dcb 3771 { "handle", GDB_XML_AF_OPTIONAL, NULL, NULL },
dc146f7c
VP
3772 { NULL, GDB_XML_AF_NONE, NULL, NULL }
3773};
3774
3775const struct gdb_xml_element thread_children[] = {
3776 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3777};
3778
3779const struct gdb_xml_element threads_children[] = {
3780 { "thread", thread_attributes, thread_children,
3781 GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL,
3782 start_thread, end_thread },
3783 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3784};
3785
3786const struct gdb_xml_element threads_elements[] = {
3787 { "threads", NULL, threads_children,
3788 GDB_XML_EF_NONE, NULL, NULL },
3789 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3790};
3791
3792#endif
3793
6dc54d91 3794/* List remote threads using qXfer:threads:read. */
9d1f7ab2 3795
6b8edb51
PA
3796int
3797remote_target::remote_get_threads_with_qxfer (threads_listing_context *context)
0f71a2f6 3798{
dc146f7c 3799#if defined(HAVE_LIBEXPAT)
4082afcc 3800 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
dc146f7c 3801 {
9018be22 3802 gdb::optional<gdb::char_vector> xml
6b8edb51 3803 = target_read_stralloc (this, TARGET_OBJECT_THREADS, NULL);
efc0eabd 3804
9018be22 3805 if (xml && (*xml)[0] != '\0')
dc146f7c 3806 {
6dc54d91 3807 gdb_xml_parse_quick (_("threads"), "threads.dtd",
9018be22 3808 threads_elements, xml->data (), context);
dc146f7c
VP
3809 }
3810
6dc54d91 3811 return 1;
dc146f7c
VP
3812 }
3813#endif
3814
6dc54d91
PA
3815 return 0;
3816}
3817
3818/* List remote threads using qfThreadInfo/qsThreadInfo. */
3819
6b8edb51
PA
3820int
3821remote_target::remote_get_threads_with_qthreadinfo (threads_listing_context *context)
6dc54d91
PA
3822{
3823 struct remote_state *rs = get_remote_state ();
3824
b80fafe3 3825 if (rs->use_threadinfo_query)
9d1f7ab2 3826 {
256642e8 3827 const char *bufp;
6dc54d91 3828
9d1f7ab2 3829 putpkt ("qfThreadInfo");
8d64371b
TT
3830 getpkt (&rs->buf, 0);
3831 bufp = rs->buf.data ();
9d1f7ab2 3832 if (bufp[0] != '\0') /* q packet recognized */
802188a7 3833 {
9d1f7ab2
MS
3834 while (*bufp++ == 'm') /* reply contains one or more TID */
3835 {
3836 do
3837 {
21fe1c75
SM
3838 ptid_t ptid = read_ptid (bufp, &bufp);
3839 context->items.emplace_back (ptid);
9d1f7ab2
MS
3840 }
3841 while (*bufp++ == ','); /* comma-separated list */
3842 putpkt ("qsThreadInfo");
8d64371b
TT
3843 getpkt (&rs->buf, 0);
3844 bufp = rs->buf.data ();
9d1f7ab2 3845 }
6dc54d91
PA
3846 return 1;
3847 }
3848 else
3849 {
3850 /* Packet not recognized. */
3851 rs->use_threadinfo_query = 0;
9d1f7ab2
MS
3852 }
3853 }
3854
6dc54d91
PA
3855 return 0;
3856}
3857
a05575d3
TBA
3858/* Return true if INF only has one non-exited thread. */
3859
3860static bool
3861has_single_non_exited_thread (inferior *inf)
3862{
3863 int count = 0;
3864 for (thread_info *tp ATTRIBUTE_UNUSED : inf->non_exited_threads ())
3865 if (++count > 1)
3866 break;
3867 return count == 1;
3868}
3869
e8032dde 3870/* Implement the to_update_thread_list function for the remote
6dc54d91
PA
3871 targets. */
3872
f6ac5f3d
PA
3873void
3874remote_target::update_thread_list ()
6dc54d91 3875{
6dc54d91 3876 struct threads_listing_context context;
ab970af1 3877 int got_list = 0;
e8032dde 3878
6dc54d91
PA
3879 /* We have a few different mechanisms to fetch the thread list. Try
3880 them all, starting with the most preferred one first, falling
3881 back to older methods. */
6b8edb51
PA
3882 if (remote_get_threads_with_qxfer (&context)
3883 || remote_get_threads_with_qthreadinfo (&context)
3884 || remote_get_threads_with_ql (&context))
6dc54d91 3885 {
ab970af1
PA
3886 got_list = 1;
3887
21fe1c75 3888 if (context.items.empty ()
f6ac5f3d 3889 && remote_thread_always_alive (inferior_ptid))
7d1a114c
PA
3890 {
3891 /* Some targets don't really support threads, but still
3892 reply an (empty) thread list in response to the thread
3893 listing packets, instead of replying "packet not
3894 supported". Exit early so we don't delete the main
3895 thread. */
7d1a114c
PA
3896 return;
3897 }
3898
ab970af1
PA
3899 /* CONTEXT now holds the current thread list on the remote
3900 target end. Delete GDB-side threads no longer found on the
3901 target. */
08036331 3902 for (thread_info *tp : all_threads_safe ())
cbb8991c 3903 {
5b6d1e4f
PA
3904 if (tp->inf->process_target () != this)
3905 continue;
3906
21fe1c75 3907 if (!context.contains_thread (tp->ptid))
ab970af1 3908 {
a05575d3
TBA
3909 /* Do not remove the thread if it is the last thread in
3910 the inferior. This situation happens when we have a
3911 pending exit process status to process. Otherwise we
3912 may end up with a seemingly live inferior (i.e. pid
3913 != 0) that has no threads. */
3914 if (has_single_non_exited_thread (tp->inf))
3915 continue;
3916
ab970af1 3917 /* Not found. */
00431a78 3918 delete_thread (tp);
ab970af1 3919 }
cbb8991c
DB
3920 }
3921
3922 /* Remove any unreported fork child threads from CONTEXT so
3923 that we don't interfere with follow fork, which is where
3924 creation of such threads is handled. */
3925 remove_new_fork_children (&context);
74531fed 3926
ab970af1 3927 /* And now add threads we don't know about yet to our list. */
21fe1c75 3928 for (thread_item &item : context.items)
6dc54d91 3929 {
21fe1c75 3930 if (item.ptid != null_ptid)
6dc54d91 3931 {
6dc54d91 3932 /* In non-stop mode, we assume new found threads are
0d5b594f
PA
3933 executing until proven otherwise with a stop reply.
3934 In all-stop, we can only get here if all threads are
6dc54d91 3935 stopped. */
0d5b594f 3936 int executing = target_is_non_stop_p () ? 1 : 0;
6dc54d91 3937
21fe1c75 3938 remote_notice_new_inferior (item.ptid, executing);
6dc54d91 3939
5b6d1e4f 3940 thread_info *tp = find_thread_ptid (this, item.ptid);
00431a78 3941 remote_thread_info *info = get_remote_thread_info (tp);
21fe1c75 3942 info->core = item.core;
7aabaf9d
SM
3943 info->extra = std::move (item.extra);
3944 info->name = std::move (item.name);
3945 info->thread_handle = std::move (item.thread_handle);
6dc54d91
PA
3946 }
3947 }
3948 }
3949
ab970af1
PA
3950 if (!got_list)
3951 {
3952 /* If no thread listing method is supported, then query whether
3953 each known thread is alive, one by one, with the T packet.
3954 If the target doesn't support threads at all, then this is a
3955 no-op. See remote_thread_alive. */
3956 prune_threads ();
3957 }
9d1f7ab2
MS
3958}
3959
802188a7 3960/*
9d1f7ab2
MS
3961 * Collect a descriptive string about the given thread.
3962 * The target may say anything it wants to about the thread
3963 * (typically info about its blocked / runnable state, name, etc.).
3964 * This string will appear in the info threads display.
802188a7 3965 *
9d1f7ab2
MS
3966 * Optional: targets are not required to implement this function.
3967 */
3968
f6ac5f3d
PA
3969const char *
3970remote_target::extra_thread_info (thread_info *tp)
9d1f7ab2 3971{
d01949b6 3972 struct remote_state *rs = get_remote_state ();
9d1f7ab2
MS
3973 int set;
3974 threadref id;
3975 struct gdb_ext_thread_info threadinfo;
9d1f7ab2 3976
5d93a237 3977 if (rs->remote_desc == 0) /* paranoia */
8e65ff28 3978 internal_error (__FILE__, __LINE__,
e2e0b3e5 3979 _("remote_threads_extra_info"));
9d1f7ab2 3980
d7e15655 3981 if (tp->ptid == magic_null_ptid
e38504b3 3982 || (tp->ptid.pid () != 0 && tp->ptid.lwp () == 0))
60e569b9
PA
3983 /* This is the main thread which was added by GDB. The remote
3984 server doesn't know about it. */
3985 return NULL;
3986
c76a8ea3
PA
3987 std::string &extra = get_remote_thread_info (tp)->extra;
3988
3989 /* If already have cached info, use it. */
3990 if (!extra.empty ())
3991 return extra.c_str ();
3992
4082afcc 3993 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
dc146f7c 3994 {
c76a8ea3
PA
3995 /* If we're using qXfer:threads:read, then the extra info is
3996 included in the XML. So if we didn't have anything cached,
3997 it's because there's really no extra info. */
3998 return NULL;
dc146f7c
VP
3999 }
4000
b80fafe3 4001 if (rs->use_threadextra_query)
9d1f7ab2 4002 {
8d64371b
TT
4003 char *b = rs->buf.data ();
4004 char *endb = b + get_remote_packet_size ();
82f73884
PA
4005
4006 xsnprintf (b, endb - b, "qThreadExtraInfo,");
4007 b += strlen (b);
4008 write_ptid (b, endb, tp->ptid);
4009
2e9f7625 4010 putpkt (rs->buf);
8d64371b 4011 getpkt (&rs->buf, 0);
2e9f7625 4012 if (rs->buf[0] != 0)
9d1f7ab2 4013 {
8d64371b
TT
4014 extra.resize (strlen (rs->buf.data ()) / 2);
4015 hex2bin (rs->buf.data (), (gdb_byte *) &extra[0], extra.size ());
c76a8ea3 4016 return extra.c_str ();
9d1f7ab2 4017 }
0f71a2f6 4018 }
9d1f7ab2
MS
4019
4020 /* If the above query fails, fall back to the old method. */
b80fafe3 4021 rs->use_threadextra_query = 0;
9d1f7ab2
MS
4022 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
4023 | TAG_MOREDISPLAY | TAG_DISPLAY;
e38504b3 4024 int_to_threadref (&id, tp->ptid.lwp ());
9d1f7ab2
MS
4025 if (remote_get_threadinfo (&id, set, &threadinfo))
4026 if (threadinfo.active)
0f71a2f6 4027 {
9d1f7ab2 4028 if (*threadinfo.shortname)
c76a8ea3 4029 string_appendf (extra, " Name: %s", threadinfo.shortname);
9d1f7ab2 4030 if (*threadinfo.display)
c76a8ea3
PA
4031 {
4032 if (!extra.empty ())
4033 extra += ',';
4034 string_appendf (extra, " State: %s", threadinfo.display);
4035 }
9d1f7ab2 4036 if (*threadinfo.more_display)
c5aa993b 4037 {
c76a8ea3
PA
4038 if (!extra.empty ())
4039 extra += ',';
4040 string_appendf (extra, " Priority: %s", threadinfo.more_display);
c5aa993b 4041 }
c76a8ea3 4042 return extra.c_str ();
0f71a2f6 4043 }
9d1f7ab2 4044 return NULL;
0f71a2f6 4045}
c906108c 4046\f
c5aa993b 4047
f6ac5f3d
PA
4048bool
4049remote_target::static_tracepoint_marker_at (CORE_ADDR addr,
4050 struct static_tracepoint_marker *marker)
0fb4aa4b
PA
4051{
4052 struct remote_state *rs = get_remote_state ();
8d64371b 4053 char *p = rs->buf.data ();
0fb4aa4b 4054
bba74b36 4055 xsnprintf (p, get_remote_packet_size (), "qTSTMat:");
0fb4aa4b
PA
4056 p += strlen (p);
4057 p += hexnumstr (p, addr);
4058 putpkt (rs->buf);
8d64371b
TT
4059 getpkt (&rs->buf, 0);
4060 p = rs->buf.data ();
0fb4aa4b
PA
4061
4062 if (*p == 'E')
4063 error (_("Remote failure reply: %s"), p);
4064
4065 if (*p++ == 'm')
4066 {
256642e8 4067 parse_static_tracepoint_marker_definition (p, NULL, marker);
5d9310c4 4068 return true;
0fb4aa4b
PA
4069 }
4070
5d9310c4 4071 return false;
0fb4aa4b
PA
4072}
4073
f6ac5f3d
PA
4074std::vector<static_tracepoint_marker>
4075remote_target::static_tracepoint_markers_by_strid (const char *strid)
0fb4aa4b
PA
4076{
4077 struct remote_state *rs = get_remote_state ();
5d9310c4 4078 std::vector<static_tracepoint_marker> markers;
256642e8 4079 const char *p;
5d9310c4 4080 static_tracepoint_marker marker;
0fb4aa4b
PA
4081
4082 /* Ask for a first packet of static tracepoint marker
4083 definition. */
4084 putpkt ("qTfSTM");
8d64371b
TT
4085 getpkt (&rs->buf, 0);
4086 p = rs->buf.data ();
0fb4aa4b
PA
4087 if (*p == 'E')
4088 error (_("Remote failure reply: %s"), p);
4089
0fb4aa4b
PA
4090 while (*p++ == 'm')
4091 {
0fb4aa4b
PA
4092 do
4093 {
5d9310c4 4094 parse_static_tracepoint_marker_definition (p, &p, &marker);
0fb4aa4b 4095
5d9310c4
SM
4096 if (strid == NULL || marker.str_id == strid)
4097 markers.push_back (std::move (marker));
0fb4aa4b
PA
4098 }
4099 while (*p++ == ','); /* comma-separated list */
4100 /* Ask for another packet of static tracepoint definition. */
4101 putpkt ("qTsSTM");
8d64371b
TT
4102 getpkt (&rs->buf, 0);
4103 p = rs->buf.data ();
0fb4aa4b
PA
4104 }
4105
0fb4aa4b
PA
4106 return markers;
4107}
4108
4109\f
10760264
JB
4110/* Implement the to_get_ada_task_ptid function for the remote targets. */
4111
f6ac5f3d
PA
4112ptid_t
4113remote_target::get_ada_task_ptid (long lwp, long thread)
10760264 4114{
e99b03dc 4115 return ptid_t (inferior_ptid.pid (), lwp, 0);
10760264
JB
4116}
4117\f
4118
24b06219 4119/* Restart the remote side; this is an extended protocol operation. */
c906108c 4120
6b8edb51
PA
4121void
4122remote_target::extended_remote_restart ()
c906108c 4123{
d01949b6 4124 struct remote_state *rs = get_remote_state ();
c906108c
SS
4125
4126 /* Send the restart command; for reasons I don't understand the
4127 remote side really expects a number after the "R". */
8d64371b 4128 xsnprintf (rs->buf.data (), get_remote_packet_size (), "R%x", 0);
6d820c5c 4129 putpkt (rs->buf);
c906108c 4130
ad9a8f3f 4131 remote_fileio_reset ();
c906108c
SS
4132}
4133\f
4134/* Clean up connection to a remote debugger. */
4135
f6ac5f3d
PA
4136void
4137remote_target::close ()
c906108c 4138{
048094ac 4139 /* Make sure we leave stdin registered in the event loop. */
f6ac5f3d 4140 terminal_ours ();
ce5ce7ed 4141
6b8edb51
PA
4142 trace_reset_local_state ();
4143
4144 delete this;
4145}
4146
4147remote_target::~remote_target ()
4148{
4149 struct remote_state *rs = get_remote_state ();
4150
4151 /* Check for NULL because we may get here with a partially
4152 constructed target/connection. */
4153 if (rs->remote_desc == nullptr)
4154 return;
4155
4156 serial_close (rs->remote_desc);
4157
4158 /* We are destroying the remote target, so we should discard
f48ff2a7 4159 everything of this target. */
6b8edb51 4160 discard_pending_stop_replies_in_queue ();
74531fed 4161
6b8edb51
PA
4162 if (rs->remote_async_inferior_event_token)
4163 delete_async_event_handler (&rs->remote_async_inferior_event_token);
722247f1 4164
97dfbadd 4165 delete rs->notif_state;
c906108c
SS
4166}
4167
23860348 4168/* Query the remote side for the text, data and bss offsets. */
c906108c 4169
6b8edb51
PA
4170void
4171remote_target::get_offsets ()
c906108c 4172{
d01949b6 4173 struct remote_state *rs = get_remote_state ();
2e9f7625 4174 char *buf;
085dd6e6 4175 char *ptr;
31d99776
DJ
4176 int lose, num_segments = 0, do_sections, do_segments;
4177 CORE_ADDR text_addr, data_addr, bss_addr, segments[2];
31d99776 4178
a42d7dd8 4179 if (current_program_space->symfile_object_file == NULL)
31d99776 4180 return;
c906108c
SS
4181
4182 putpkt ("qOffsets");
8d64371b
TT
4183 getpkt (&rs->buf, 0);
4184 buf = rs->buf.data ();
c906108c
SS
4185
4186 if (buf[0] == '\000')
4187 return; /* Return silently. Stub doesn't support
23860348 4188 this command. */
c906108c
SS
4189 if (buf[0] == 'E')
4190 {
8a3fe4f8 4191 warning (_("Remote failure reply: %s"), buf);
c906108c
SS
4192 return;
4193 }
4194
4195 /* Pick up each field in turn. This used to be done with scanf, but
4196 scanf will make trouble if CORE_ADDR size doesn't match
4197 conversion directives correctly. The following code will work
4198 with any size of CORE_ADDR. */
4199 text_addr = data_addr = bss_addr = 0;
4200 ptr = buf;
4201 lose = 0;
4202
61012eef 4203 if (startswith (ptr, "Text="))
c906108c
SS
4204 {
4205 ptr += 5;
4206 /* Don't use strtol, could lose on big values. */
4207 while (*ptr && *ptr != ';')
4208 text_addr = (text_addr << 4) + fromhex (*ptr++);
c906108c 4209
61012eef 4210 if (startswith (ptr, ";Data="))
31d99776
DJ
4211 {
4212 ptr += 6;
4213 while (*ptr && *ptr != ';')
4214 data_addr = (data_addr << 4) + fromhex (*ptr++);
4215 }
4216 else
4217 lose = 1;
4218
61012eef 4219 if (!lose && startswith (ptr, ";Bss="))
31d99776
DJ
4220 {
4221 ptr += 5;
4222 while (*ptr && *ptr != ';')
4223 bss_addr = (bss_addr << 4) + fromhex (*ptr++);
c906108c 4224
31d99776
DJ
4225 if (bss_addr != data_addr)
4226 warning (_("Target reported unsupported offsets: %s"), buf);
4227 }
4228 else
4229 lose = 1;
4230 }
61012eef 4231 else if (startswith (ptr, "TextSeg="))
c906108c 4232 {
31d99776
DJ
4233 ptr += 8;
4234 /* Don't use strtol, could lose on big values. */
c906108c 4235 while (*ptr && *ptr != ';')
31d99776
DJ
4236 text_addr = (text_addr << 4) + fromhex (*ptr++);
4237 num_segments = 1;
4238
61012eef 4239 if (startswith (ptr, ";DataSeg="))
31d99776
DJ
4240 {
4241 ptr += 9;
4242 while (*ptr && *ptr != ';')
4243 data_addr = (data_addr << 4) + fromhex (*ptr++);
4244 num_segments++;
4245 }
c906108c
SS
4246 }
4247 else
4248 lose = 1;
4249
4250 if (lose)
8a3fe4f8 4251 error (_("Malformed response to offset query, %s"), buf);
31d99776
DJ
4252 else if (*ptr != '\0')
4253 warning (_("Target reported unsupported offsets: %s"), buf);
c906108c 4254
a42d7dd8
TT
4255 objfile *objf = current_program_space->symfile_object_file;
4256 section_offsets offs = objf->section_offsets;
c906108c 4257
a42d7dd8 4258 symfile_segment_data_up data = get_symfile_segment_data (objf->obfd);
31d99776
DJ
4259 do_segments = (data != NULL);
4260 do_sections = num_segments == 0;
c906108c 4261
28c32713 4262 if (num_segments > 0)
31d99776 4263 {
31d99776
DJ
4264 segments[0] = text_addr;
4265 segments[1] = data_addr;
4266 }
28c32713
JB
4267 /* If we have two segments, we can still try to relocate everything
4268 by assuming that the .text and .data offsets apply to the whole
4269 text and data segments. Convert the offsets given in the packet
4270 to base addresses for symfile_map_offsets_to_segments. */
68b888ff 4271 else if (data != nullptr && data->segments.size () == 2)
28c32713 4272 {
68b888ff
SM
4273 segments[0] = data->segments[0].base + text_addr;
4274 segments[1] = data->segments[1].base + data_addr;
28c32713
JB
4275 num_segments = 2;
4276 }
8d385431
DJ
4277 /* If the object file has only one segment, assume that it is text
4278 rather than data; main programs with no writable data are rare,
4279 but programs with no code are useless. Of course the code might
4280 have ended up in the data segment... to detect that we would need
4281 the permissions here. */
68b888ff 4282 else if (data && data->segments.size () == 1)
8d385431 4283 {
68b888ff 4284 segments[0] = data->segments[0].base + text_addr;
8d385431
DJ
4285 num_segments = 1;
4286 }
28c32713
JB
4287 /* There's no way to relocate by segment. */
4288 else
4289 do_segments = 0;
31d99776
DJ
4290
4291 if (do_segments)
4292 {
a42d7dd8 4293 int ret = symfile_map_offsets_to_segments (objf->obfd,
62982abd
SM
4294 data.get (), offs,
4295 num_segments, segments);
31d99776
DJ
4296
4297 if (ret == 0 && !do_sections)
3e43a32a
MS
4298 error (_("Can not handle qOffsets TextSeg "
4299 "response with this symbol file"));
31d99776
DJ
4300
4301 if (ret > 0)
4302 do_sections = 0;
4303 }
c906108c 4304
31d99776
DJ
4305 if (do_sections)
4306 {
a42d7dd8 4307 offs[SECT_OFF_TEXT (objf)] = text_addr;
31d99776 4308
3e43a32a
MS
4309 /* This is a temporary kludge to force data and bss to use the
4310 same offsets because that's what nlmconv does now. The real
4311 solution requires changes to the stub and remote.c that I
4312 don't have time to do right now. */
31d99776 4313
a42d7dd8
TT
4314 offs[SECT_OFF_DATA (objf)] = data_addr;
4315 offs[SECT_OFF_BSS (objf)] = data_addr;
31d99776 4316 }
c906108c 4317
a42d7dd8 4318 objfile_relocate (objf, offs);
c906108c
SS
4319}
4320
9a7071a8 4321/* Send interrupt_sequence to remote target. */
6b8edb51
PA
4322
4323void
4324remote_target::send_interrupt_sequence ()
9a7071a8 4325{
5d93a237
TT
4326 struct remote_state *rs = get_remote_state ();
4327
9a7071a8 4328 if (interrupt_sequence_mode == interrupt_sequence_control_c)
c33e31fd 4329 remote_serial_write ("\x03", 1);
9a7071a8 4330 else if (interrupt_sequence_mode == interrupt_sequence_break)
5d93a237 4331 serial_send_break (rs->remote_desc);
9a7071a8
JB
4332 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
4333 {
5d93a237 4334 serial_send_break (rs->remote_desc);
c33e31fd 4335 remote_serial_write ("g", 1);
9a7071a8
JB
4336 }
4337 else
4338 internal_error (__FILE__, __LINE__,
4339 _("Invalid value for interrupt_sequence_mode: %s."),
4340 interrupt_sequence_mode);
4341}
4342
3405876a
PA
4343
4344/* If STOP_REPLY is a T stop reply, look for the "thread" register,
4345 and extract the PTID. Returns NULL_PTID if not found. */
4346
4347static ptid_t
e3b2741b 4348stop_reply_extract_thread (const char *stop_reply)
3405876a
PA
4349{
4350 if (stop_reply[0] == 'T' && strlen (stop_reply) > 3)
4351 {
256642e8 4352 const char *p;
3405876a
PA
4353
4354 /* Txx r:val ; r:val (...) */
4355 p = &stop_reply[3];
4356
4357 /* Look for "register" named "thread". */
4358 while (*p != '\0')
4359 {
256642e8 4360 const char *p1;
3405876a
PA
4361
4362 p1 = strchr (p, ':');
4363 if (p1 == NULL)
4364 return null_ptid;
4365
4366 if (strncmp (p, "thread", p1 - p) == 0)
4367 return read_ptid (++p1, &p);
4368
4369 p1 = strchr (p, ';');
4370 if (p1 == NULL)
4371 return null_ptid;
4372 p1++;
4373
4374 p = p1;
4375 }
4376 }
4377
4378 return null_ptid;
4379}
4380
b7ea362b
PA
4381/* Determine the remote side's current thread. If we have a stop
4382 reply handy (in WAIT_STATUS), maybe it's a T stop reply with a
4383 "thread" register we can extract the current thread from. If not,
4384 ask the remote which is the current thread with qC. The former
4385 method avoids a roundtrip. */
4386
6b8edb51 4387ptid_t
e3b2741b 4388remote_target::get_current_thread (const char *wait_status)
b7ea362b 4389{
6a49a997 4390 ptid_t ptid = null_ptid;
b7ea362b
PA
4391
4392 /* Note we don't use remote_parse_stop_reply as that makes use of
4393 the target architecture, which we haven't yet fully determined at
4394 this point. */
4395 if (wait_status != NULL)
4396 ptid = stop_reply_extract_thread (wait_status);
d7e15655 4397 if (ptid == null_ptid)
b7ea362b
PA
4398 ptid = remote_current_thread (inferior_ptid);
4399
4400 return ptid;
4401}
4402
49c62f2e
PA
4403/* Query the remote target for which is the current thread/process,
4404 add it to our tables, and update INFERIOR_PTID. The caller is
4405 responsible for setting the state such that the remote end is ready
3405876a
PA
4406 to return the current thread.
4407
4408 This function is called after handling the '?' or 'vRun' packets,
4409 whose response is a stop reply from which we can also try
4410 extracting the thread. If the target doesn't support the explicit
4411 qC query, we infer the current thread from that stop reply, passed
4412 in in WAIT_STATUS, which may be NULL. */
49c62f2e 4413
6b8edb51 4414void
e3b2741b 4415remote_target::add_current_inferior_and_thread (const char *wait_status)
49c62f2e
PA
4416{
4417 struct remote_state *rs = get_remote_state ();
9ab8741a 4418 bool fake_pid_p = false;
49c62f2e 4419
0ac55310 4420 switch_to_no_thread ();
49c62f2e 4421
0ac55310
PA
4422 /* Now, if we have thread information, update the current thread's
4423 ptid. */
87215ad1 4424 ptid_t curr_ptid = get_current_thread (wait_status);
3405876a 4425
87215ad1 4426 if (curr_ptid != null_ptid)
49c62f2e
PA
4427 {
4428 if (!remote_multi_process_p (rs))
9ab8741a 4429 fake_pid_p = true;
49c62f2e
PA
4430 }
4431 else
4432 {
4433 /* Without this, some commands which require an active target
4434 (such as kill) won't work. This variable serves (at least)
4435 double duty as both the pid of the target process (if it has
4436 such), and as a flag indicating that a target is active. */
87215ad1 4437 curr_ptid = magic_null_ptid;
9ab8741a 4438 fake_pid_p = true;
49c62f2e
PA
4439 }
4440
e99b03dc 4441 remote_add_inferior (fake_pid_p, curr_ptid.pid (), -1, 1);
49c62f2e 4442
87215ad1
SDJ
4443 /* Add the main thread and switch to it. Don't try reading
4444 registers yet, since we haven't fetched the target description
4445 yet. */
5b6d1e4f 4446 thread_info *tp = add_thread_silent (this, curr_ptid);
87215ad1 4447 switch_to_thread_no_regs (tp);
49c62f2e
PA
4448}
4449
6efcd9a8
PA
4450/* Print info about a thread that was found already stopped on
4451 connection. */
4452
4453static void
4454print_one_stopped_thread (struct thread_info *thread)
4455{
4456 struct target_waitstatus *ws = &thread->suspend.waitstatus;
4457
00431a78 4458 switch_to_thread (thread);
f2ffa92b 4459 thread->suspend.stop_pc = get_frame_pc (get_current_frame ());
6efcd9a8
PA
4460 set_current_sal_from_frame (get_current_frame ());
4461
4462 thread->suspend.waitstatus_pending_p = 0;
4463
4464 if (ws->kind == TARGET_WAITKIND_STOPPED)
4465 {
4466 enum gdb_signal sig = ws->value.sig;
4467
4468 if (signal_print_state (sig))
76727919 4469 gdb::observers::signal_received.notify (sig);
6efcd9a8 4470 }
76727919 4471 gdb::observers::normal_stop.notify (NULL, 1);
6efcd9a8
PA
4472}
4473
221e1a37
PA
4474/* Process all initial stop replies the remote side sent in response
4475 to the ? packet. These indicate threads that were already stopped
4476 on initial connection. We mark these threads as stopped and print
4477 their current frame before giving the user the prompt. */
4478
6b8edb51
PA
4479void
4480remote_target::process_initial_stop_replies (int from_tty)
221e1a37
PA
4481{
4482 int pending_stop_replies = stop_reply_queue_length ();
6efcd9a8
PA
4483 struct thread_info *selected = NULL;
4484 struct thread_info *lowest_stopped = NULL;
4485 struct thread_info *first = NULL;
221e1a37
PA
4486
4487 /* Consume the initial pending events. */
4488 while (pending_stop_replies-- > 0)
4489 {
4490 ptid_t waiton_ptid = minus_one_ptid;
4491 ptid_t event_ptid;
4492 struct target_waitstatus ws;
4493 int ignore_event = 0;
4494
4495 memset (&ws, 0, sizeof (ws));
4496 event_ptid = target_wait (waiton_ptid, &ws, TARGET_WNOHANG);
4497 if (remote_debug)
4498 print_target_wait_results (waiton_ptid, event_ptid, &ws);
4499
4500 switch (ws.kind)
4501 {
4502 case TARGET_WAITKIND_IGNORE:
4503 case TARGET_WAITKIND_NO_RESUMED:
4504 case TARGET_WAITKIND_SIGNALLED:
4505 case TARGET_WAITKIND_EXITED:
4506 /* We shouldn't see these, but if we do, just ignore. */
2189c312 4507 remote_debug_printf ("event ignored");
221e1a37
PA
4508 ignore_event = 1;
4509 break;
4510
4511 case TARGET_WAITKIND_EXECD:
4512 xfree (ws.value.execd_pathname);
4513 break;
4514 default:
4515 break;
4516 }
4517
4518 if (ignore_event)
4519 continue;
4520
5b6d1e4f 4521 thread_info *evthread = find_thread_ptid (this, event_ptid);
221e1a37
PA
4522
4523 if (ws.kind == TARGET_WAITKIND_STOPPED)
4524 {
4525 enum gdb_signal sig = ws.value.sig;
4526
4527 /* Stubs traditionally report SIGTRAP as initial signal,
4528 instead of signal 0. Suppress it. */
4529 if (sig == GDB_SIGNAL_TRAP)
4530 sig = GDB_SIGNAL_0;
b926417a 4531 evthread->suspend.stop_signal = sig;
6efcd9a8
PA
4532 ws.value.sig = sig;
4533 }
221e1a37 4534
b926417a 4535 evthread->suspend.waitstatus = ws;
6efcd9a8
PA
4536
4537 if (ws.kind != TARGET_WAITKIND_STOPPED
4538 || ws.value.sig != GDB_SIGNAL_0)
b926417a 4539 evthread->suspend.waitstatus_pending_p = 1;
6efcd9a8 4540
719546c4
SM
4541 set_executing (this, event_ptid, false);
4542 set_running (this, event_ptid, false);
c9d22089 4543 get_remote_thread_info (evthread)->set_not_resumed ();
6efcd9a8
PA
4544 }
4545
4546 /* "Notice" the new inferiors before anything related to
4547 registers/memory. */
5b6d1e4f 4548 for (inferior *inf : all_non_exited_inferiors (this))
6efcd9a8 4549 {
6efcd9a8
PA
4550 inf->needs_setup = 1;
4551
4552 if (non_stop)
4553 {
08036331 4554 thread_info *thread = any_live_thread_of_inferior (inf);
00431a78 4555 notice_new_inferior (thread, thread->state == THREAD_RUNNING,
6efcd9a8
PA
4556 from_tty);
4557 }
4558 }
4559
4560 /* If all-stop on top of non-stop, pause all threads. Note this
4561 records the threads' stop pc, so must be done after "noticing"
4562 the inferiors. */
4563 if (!non_stop)
4564 {
4565 stop_all_threads ();
4566
4567 /* If all threads of an inferior were already stopped, we
4568 haven't setup the inferior yet. */
5b6d1e4f 4569 for (inferior *inf : all_non_exited_inferiors (this))
6efcd9a8 4570 {
6efcd9a8
PA
4571 if (inf->needs_setup)
4572 {
08036331 4573 thread_info *thread = any_live_thread_of_inferior (inf);
6efcd9a8
PA
4574 switch_to_thread_no_regs (thread);
4575 setup_inferior (0);
4576 }
4577 }
221e1a37 4578 }
6efcd9a8
PA
4579
4580 /* Now go over all threads that are stopped, and print their current
4581 frame. If all-stop, then if there's a signalled thread, pick
4582 that as current. */
5b6d1e4f 4583 for (thread_info *thread : all_non_exited_threads (this))
6efcd9a8 4584 {
6efcd9a8
PA
4585 if (first == NULL)
4586 first = thread;
4587
4588 if (!non_stop)
00431a78 4589 thread->set_running (false);
6efcd9a8
PA
4590 else if (thread->state != THREAD_STOPPED)
4591 continue;
4592
6efcd9a8
PA
4593 if (selected == NULL
4594 && thread->suspend.waitstatus_pending_p)
4595 selected = thread;
4596
5d5658a1
PA
4597 if (lowest_stopped == NULL
4598 || thread->inf->num < lowest_stopped->inf->num
4599 || thread->per_inf_num < lowest_stopped->per_inf_num)
6efcd9a8
PA
4600 lowest_stopped = thread;
4601
4602 if (non_stop)
4603 print_one_stopped_thread (thread);
4604 }
4605
4606 /* In all-stop, we only print the status of one thread, and leave
4607 others with their status pending. */
4608 if (!non_stop)
4609 {
08036331 4610 thread_info *thread = selected;
6efcd9a8
PA
4611 if (thread == NULL)
4612 thread = lowest_stopped;
4613 if (thread == NULL)
4614 thread = first;
4615
4616 print_one_stopped_thread (thread);
4617 }
4618
4619 /* For "info program". */
08036331 4620 thread_info *thread = inferior_thread ();
6efcd9a8 4621 if (thread->state == THREAD_STOPPED)
5b6d1e4f 4622 set_last_target_status (this, inferior_ptid, thread->suspend.waitstatus);
221e1a37
PA
4623}
4624
048094ac
PA
4625/* Start the remote connection and sync state. */
4626
f6ac5f3d
PA
4627void
4628remote_target::start_remote (int from_tty, int extended_p)
c906108c 4629{
2189c312
SM
4630 REMOTE_SCOPED_DEBUG_ENTER_EXIT;
4631
c8d104ad
PA
4632 struct remote_state *rs = get_remote_state ();
4633 struct packet_config *noack_config;
8621d6a9 4634
048094ac
PA
4635 /* Signal other parts that we're going through the initial setup,
4636 and so things may not be stable yet. E.g., we don't try to
4637 install tracepoints until we've relocated symbols. Also, a
4638 Ctrl-C before we're connected and synced up can't interrupt the
4639 target. Instead, it offers to drop the (potentially wedged)
4640 connection. */
4641 rs->starting_up = 1;
4642
522002f9 4643 QUIT;
c906108c 4644
9a7071a8
JB
4645 if (interrupt_on_connect)
4646 send_interrupt_sequence ();
4647
57e12211 4648 /* Ack any packet which the remote side has already sent. */
048094ac 4649 remote_serial_write ("+", 1);
1e51243a 4650
c8d104ad
PA
4651 /* The first packet we send to the target is the optional "supported
4652 packets" request. If the target can answer this, it will tell us
4653 which later probes to skip. */
4654 remote_query_supported ();
4655
d914c394 4656 /* If the stub wants to get a QAllow, compose one and send it. */
4082afcc 4657 if (packet_support (PACKET_QAllow) != PACKET_DISABLE)
f6ac5f3d 4658 set_permissions ();
d914c394 4659
57809e5e
JK
4660 /* gdbserver < 7.7 (before its fix from 2013-12-11) did reply to any
4661 unknown 'v' packet with string "OK". "OK" gets interpreted by GDB
4662 as a reply to known packet. For packet "vFile:setfs:" it is an
4663 invalid reply and GDB would return error in
4664 remote_hostio_set_filesystem, making remote files access impossible.
4665 Disable "vFile:setfs:" in such case. Do not disable other 'v' packets as
4666 other "vFile" packets get correctly detected even on gdbserver < 7.7. */
4667 {
4668 const char v_mustreplyempty[] = "vMustReplyEmpty";
4669
4670 putpkt (v_mustreplyempty);
8d64371b
TT
4671 getpkt (&rs->buf, 0);
4672 if (strcmp (rs->buf.data (), "OK") == 0)
57809e5e 4673 remote_protocol_packets[PACKET_vFile_setfs].support = PACKET_DISABLE;
8d64371b 4674 else if (strcmp (rs->buf.data (), "") != 0)
57809e5e 4675 error (_("Remote replied unexpectedly to '%s': %s"), v_mustreplyempty,
8d64371b 4676 rs->buf.data ());
57809e5e
JK
4677 }
4678
c8d104ad
PA
4679 /* Next, we possibly activate noack mode.
4680
4681 If the QStartNoAckMode packet configuration is set to AUTO,
4682 enable noack mode if the stub reported a wish for it with
4683 qSupported.
4684
4685 If set to TRUE, then enable noack mode even if the stub didn't
4686 report it in qSupported. If the stub doesn't reply OK, the
4687 session ends with an error.
4688
4689 If FALSE, then don't activate noack mode, regardless of what the
4690 stub claimed should be the default with qSupported. */
4691
4692 noack_config = &remote_protocol_packets[PACKET_QStartNoAckMode];
4082afcc 4693 if (packet_config_support (noack_config) != PACKET_DISABLE)
c8d104ad
PA
4694 {
4695 putpkt ("QStartNoAckMode");
8d64371b 4696 getpkt (&rs->buf, 0);
c8d104ad
PA
4697 if (packet_ok (rs->buf, noack_config) == PACKET_OK)
4698 rs->noack_mode = 1;
4699 }
4700
04bd08de 4701 if (extended_p)
5fe04517
PA
4702 {
4703 /* Tell the remote that we are using the extended protocol. */
4704 putpkt ("!");
8d64371b 4705 getpkt (&rs->buf, 0);
5fe04517
PA
4706 }
4707
9b224c5e
PA
4708 /* Let the target know which signals it is allowed to pass down to
4709 the program. */
4710 update_signals_program_target ();
4711
d962ef82
DJ
4712 /* Next, if the target can specify a description, read it. We do
4713 this before anything involving memory or registers. */
4714 target_find_description ();
4715
6c95b8df
PA
4716 /* Next, now that we know something about the target, update the
4717 address spaces in the program spaces. */
4718 update_address_spaces ();
4719
50c71eaf
PA
4720 /* On OSs where the list of libraries is global to all
4721 processes, we fetch them early. */
f5656ead 4722 if (gdbarch_has_global_solist (target_gdbarch ()))
e696b3ad 4723 solib_add (NULL, from_tty, auto_solib_add);
50c71eaf 4724
6efcd9a8 4725 if (target_is_non_stop_p ())
74531fed 4726 {
4082afcc 4727 if (packet_support (PACKET_QNonStop) != PACKET_ENABLE)
3e43a32a
MS
4728 error (_("Non-stop mode requested, but remote "
4729 "does not support non-stop"));
74531fed
PA
4730
4731 putpkt ("QNonStop:1");
8d64371b 4732 getpkt (&rs->buf, 0);
74531fed 4733
8d64371b
TT
4734 if (strcmp (rs->buf.data (), "OK") != 0)
4735 error (_("Remote refused setting non-stop mode with: %s"),
4736 rs->buf.data ());
74531fed
PA
4737
4738 /* Find about threads and processes the stub is already
4739 controlling. We default to adding them in the running state.
4740 The '?' query below will then tell us about which threads are
4741 stopped. */
f6ac5f3d 4742 this->update_thread_list ();
74531fed 4743 }
4082afcc 4744 else if (packet_support (PACKET_QNonStop) == PACKET_ENABLE)
74531fed
PA
4745 {
4746 /* Don't assume that the stub can operate in all-stop mode.
e6f3fa52 4747 Request it explicitly. */
74531fed 4748 putpkt ("QNonStop:0");
8d64371b 4749 getpkt (&rs->buf, 0);
74531fed 4750
8d64371b
TT
4751 if (strcmp (rs->buf.data (), "OK") != 0)
4752 error (_("Remote refused setting all-stop mode with: %s"),
4753 rs->buf.data ());
74531fed
PA
4754 }
4755
a0743c90
YQ
4756 /* Upload TSVs regardless of whether the target is running or not. The
4757 remote stub, such as GDBserver, may have some predefined or builtin
4758 TSVs, even if the target is not running. */
f6ac5f3d 4759 if (get_trace_status (current_trace_status ()) != -1)
a0743c90
YQ
4760 {
4761 struct uploaded_tsv *uploaded_tsvs = NULL;
4762
f6ac5f3d 4763 upload_trace_state_variables (&uploaded_tsvs);
a0743c90
YQ
4764 merge_uploaded_trace_state_variables (&uploaded_tsvs);
4765 }
4766
2d717e4f
DJ
4767 /* Check whether the target is running now. */
4768 putpkt ("?");
8d64371b 4769 getpkt (&rs->buf, 0);
2d717e4f 4770
6efcd9a8 4771 if (!target_is_non_stop_p ())
2d717e4f 4772 {
b5c8f22d
SM
4773 char *wait_status = NULL;
4774
74531fed 4775 if (rs->buf[0] == 'W' || rs->buf[0] == 'X')
2d717e4f 4776 {
04bd08de 4777 if (!extended_p)
74531fed 4778 error (_("The target is not running (try extended-remote?)"));
c35b1492
PA
4779
4780 /* We're connected, but not running. Drop out before we
4781 call start_remote. */
e278ad5b 4782 rs->starting_up = 0;
c35b1492 4783 return;
2d717e4f
DJ
4784 }
4785 else
74531fed 4786 {
74531fed 4787 /* Save the reply for later. */
8d64371b
TT
4788 wait_status = (char *) alloca (strlen (rs->buf.data ()) + 1);
4789 strcpy (wait_status, rs->buf.data ());
74531fed
PA
4790 }
4791
b7ea362b 4792 /* Fetch thread list. */
e8032dde 4793 target_update_thread_list ();
b7ea362b 4794
74531fed
PA
4795 /* Let the stub know that we want it to return the thread. */
4796 set_continue_thread (minus_one_ptid);
4797
5b6d1e4f 4798 if (thread_count (this) == 0)
b7ea362b
PA
4799 {
4800 /* Target has no concept of threads at all. GDB treats
4801 non-threaded target as single-threaded; add a main
4802 thread. */
4803 add_current_inferior_and_thread (wait_status);
4804 }
4805 else
4806 {
4807 /* We have thread information; select the thread the target
4808 says should be current. If we're reconnecting to a
4809 multi-threaded program, this will ideally be the thread
4810 that last reported an event before GDB disconnected. */
75c6c844
PA
4811 ptid_t curr_thread = get_current_thread (wait_status);
4812 if (curr_thread == null_ptid)
b7ea362b
PA
4813 {
4814 /* Odd... The target was able to list threads, but not
4815 tell us which thread was current (no "thread"
4816 register in T stop reply?). Just pick the first
4817 thread in the thread list then. */
2189c312
SM
4818
4819 remote_debug_printf ("warning: couldn't determine remote "
4820 "current thread; picking first in list.");
c9f35b34 4821
5b6d1e4f
PA
4822 for (thread_info *tp : all_non_exited_threads (this,
4823 minus_one_ptid))
75c6c844
PA
4824 {
4825 switch_to_thread (tp);
4826 break;
4827 }
b7ea362b 4828 }
75c6c844 4829 else
5b6d1e4f 4830 switch_to_thread (find_thread_ptid (this, curr_thread));
b7ea362b 4831 }
74531fed 4832
6e586cc5
YQ
4833 /* init_wait_for_inferior should be called before get_offsets in order
4834 to manage `inserted' flag in bp loc in a correct state.
4835 breakpoint_init_inferior, called from init_wait_for_inferior, set
4836 `inserted' flag to 0, while before breakpoint_re_set, called from
4837 start_remote, set `inserted' flag to 1. In the initialization of
4838 inferior, breakpoint_init_inferior should be called first, and then
4839 breakpoint_re_set can be called. If this order is broken, state of
4840 `inserted' flag is wrong, and cause some problems on breakpoint
4841 manipulation. */
4842 init_wait_for_inferior ();
4843
74531fed
PA
4844 get_offsets (); /* Get text, data & bss offsets. */
4845
d962ef82
DJ
4846 /* If we could not find a description using qXfer, and we know
4847 how to do it some other way, try again. This is not
4848 supported for non-stop; it could be, but it is tricky if
4849 there are no stopped threads when we connect. */
f6ac5f3d 4850 if (remote_read_description_p (this)
f5656ead 4851 && gdbarch_target_desc (target_gdbarch ()) == NULL)
d962ef82
DJ
4852 {
4853 target_clear_description ();
4854 target_find_description ();
4855 }
4856
74531fed
PA
4857 /* Use the previously fetched status. */
4858 gdb_assert (wait_status != NULL);
8d64371b 4859 strcpy (rs->buf.data (), wait_status);
74531fed
PA
4860 rs->cached_wait_status = 1;
4861
f6ac5f3d 4862 ::start_remote (from_tty); /* Initialize gdb process mechanisms. */
2d717e4f
DJ
4863 }
4864 else
4865 {
68c97600
PA
4866 /* Clear WFI global state. Do this before finding about new
4867 threads and inferiors, and setting the current inferior.
4868 Otherwise we would clear the proceed status of the current
4869 inferior when we want its stop_soon state to be preserved
4870 (see notice_new_inferior). */
4871 init_wait_for_inferior ();
4872
74531fed
PA
4873 /* In non-stop, we will either get an "OK", meaning that there
4874 are no stopped threads at this time; or, a regular stop
4875 reply. In the latter case, there may be more than one thread
4876 stopped --- we pull them all out using the vStopped
4877 mechanism. */
8d64371b 4878 if (strcmp (rs->buf.data (), "OK") != 0)
74531fed 4879 {
722247f1 4880 struct notif_client *notif = &notif_client_stop;
2d717e4f 4881
722247f1
YQ
4882 /* remote_notif_get_pending_replies acks this one, and gets
4883 the rest out. */
f48ff2a7 4884 rs->notif_state->pending_event[notif_client_stop.id]
8d64371b 4885 = remote_notif_parse (this, notif, rs->buf.data ());
722247f1 4886 remote_notif_get_pending_events (notif);
74531fed 4887 }
2d717e4f 4888
5b6d1e4f 4889 if (thread_count (this) == 0)
74531fed 4890 {
04bd08de 4891 if (!extended_p)
74531fed 4892 error (_("The target is not running (try extended-remote?)"));
82f73884 4893
c35b1492
PA
4894 /* We're connected, but not running. Drop out before we
4895 call start_remote. */
e278ad5b 4896 rs->starting_up = 0;
c35b1492
PA
4897 return;
4898 }
74531fed 4899
2455069d 4900 /* Report all signals during attach/startup. */
adc6a863 4901 pass_signals ({});
221e1a37
PA
4902
4903 /* If there are already stopped threads, mark them stopped and
4904 report their stops before giving the prompt to the user. */
6efcd9a8 4905 process_initial_stop_replies (from_tty);
221e1a37
PA
4906
4907 if (target_can_async_p ())
4908 target_async (1);
74531fed 4909 }
c8d104ad 4910
c8d104ad 4911 /* If we connected to a live target, do some additional setup. */
55f6301a 4912 if (target_has_execution ())
c8d104ad 4913 {
a42d7dd8
TT
4914 /* No use without a symbol-file. */
4915 if (current_program_space->symfile_object_file)
36d25514 4916 remote_check_symbols ();
c8d104ad 4917 }
50c71eaf 4918
d5551862
SS
4919 /* Possibly the target has been engaged in a trace run started
4920 previously; find out where things are at. */
f6ac5f3d 4921 if (get_trace_status (current_trace_status ()) != -1)
d5551862 4922 {
00bf0b85 4923 struct uploaded_tp *uploaded_tps = NULL;
00bf0b85 4924
00bf0b85
SS
4925 if (current_trace_status ()->running)
4926 printf_filtered (_("Trace is already running on the target.\n"));
4927
f6ac5f3d 4928 upload_tracepoints (&uploaded_tps);
00bf0b85
SS
4929
4930 merge_uploaded_tracepoints (&uploaded_tps);
d5551862
SS
4931 }
4932
c0272db5
TW
4933 /* Possibly the target has been engaged in a btrace record started
4934 previously; find out where things are at. */
4935 remote_btrace_maybe_reopen ();
4936
1e51243a
PA
4937 /* The thread and inferior lists are now synchronized with the
4938 target, our symbols have been relocated, and we're merged the
4939 target's tracepoints with ours. We're done with basic start
4940 up. */
4941 rs->starting_up = 0;
4942
a25a5a45
PA
4943 /* Maybe breakpoints are global and need to be inserted now. */
4944 if (breakpoints_should_be_inserted_now ())
50c71eaf 4945 insert_breakpoints ();
c906108c
SS
4946}
4947
121b3efd
PA
4948const char *
4949remote_target::connection_string ()
4950{
4951 remote_state *rs = get_remote_state ();
4952
4953 if (rs->remote_desc->name != NULL)
4954 return rs->remote_desc->name;
4955 else
4956 return NULL;
4957}
4958
c906108c
SS
4959/* Open a connection to a remote debugger.
4960 NAME is the filename used for communication. */
4961
f6ac5f3d
PA
4962void
4963remote_target::open (const char *name, int from_tty)
c906108c 4964{
f6ac5f3d 4965 open_1 (name, from_tty, 0);
43ff13b4
JM
4966}
4967
c906108c
SS
4968/* Open a connection to a remote debugger using the extended
4969 remote gdb protocol. NAME is the filename used for communication. */
4970
f6ac5f3d
PA
4971void
4972extended_remote_target::open (const char *name, int from_tty)
c906108c 4973{
f6ac5f3d 4974 open_1 (name, from_tty, 1 /*extended_p */);
43ff13b4
JM
4975}
4976
ca4f7f8b
PA
4977/* Reset all packets back to "unknown support". Called when opening a
4978 new connection to a remote target. */
c906108c 4979
d471ea57 4980static void
ca4f7f8b 4981reset_all_packet_configs_support (void)
d471ea57
AC
4982{
4983 int i;
a744cf53 4984
444abaca 4985 for (i = 0; i < PACKET_MAX; i++)
4082afcc 4986 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
d471ea57
AC
4987}
4988
ca4f7f8b
PA
4989/* Initialize all packet configs. */
4990
4991static void
4992init_all_packet_configs (void)
4993{
4994 int i;
4995
4996 for (i = 0; i < PACKET_MAX; i++)
4997 {
4998 remote_protocol_packets[i].detect = AUTO_BOOLEAN_AUTO;
4999 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
5000 }
5001}
5002
23860348 5003/* Symbol look-up. */
dc8acb97 5004
6b8edb51
PA
5005void
5006remote_target::remote_check_symbols ()
dc8acb97 5007{
8d64371b 5008 char *tmp;
dc8acb97
MS
5009 int end;
5010
63154eca
PA
5011 /* The remote side has no concept of inferiors that aren't running
5012 yet, it only knows about running processes. If we're connected
5013 but our current inferior is not running, we should not invite the
5014 remote target to request symbol lookups related to its
5015 (unrelated) current process. */
55f6301a 5016 if (!target_has_execution ())
63154eca
PA
5017 return;
5018
4082afcc 5019 if (packet_support (PACKET_qSymbol) == PACKET_DISABLE)
dc8acb97
MS
5020 return;
5021
63154eca
PA
5022 /* Make sure the remote is pointing at the right process. Note
5023 there's no way to select "no process". */
3c9c4b83
PA
5024 set_general_process ();
5025
6d820c5c
DJ
5026 /* Allocate a message buffer. We can't reuse the input buffer in RS,
5027 because we need both at the same time. */
66644cd3 5028 gdb::char_vector msg (get_remote_packet_size ());
8d64371b 5029 gdb::char_vector reply (get_remote_packet_size ());
6d820c5c 5030
23860348 5031 /* Invite target to request symbol lookups. */
dc8acb97
MS
5032
5033 putpkt ("qSymbol::");
8d64371b 5034 getpkt (&reply, 0);
28170b88 5035 packet_ok (reply, &remote_protocol_packets[PACKET_qSymbol]);
dc8acb97 5036
8d64371b 5037 while (startswith (reply.data (), "qSymbol:"))
dc8acb97 5038 {
77e371c0
TT
5039 struct bound_minimal_symbol sym;
5040
dc8acb97 5041 tmp = &reply[8];
66644cd3
AB
5042 end = hex2bin (tmp, reinterpret_cast <gdb_byte *> (msg.data ()),
5043 strlen (tmp) / 2);
dc8acb97 5044 msg[end] = '\0';
66644cd3 5045 sym = lookup_minimal_symbol (msg.data (), NULL, NULL);
3b7344d5 5046 if (sym.minsym == NULL)
66644cd3
AB
5047 xsnprintf (msg.data (), get_remote_packet_size (), "qSymbol::%s",
5048 &reply[8]);
dc8acb97 5049 else
2bbe3cc1 5050 {
f5656ead 5051 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
77e371c0 5052 CORE_ADDR sym_addr = BMSYMBOL_VALUE_ADDRESS (sym);
2bbe3cc1
DJ
5053
5054 /* If this is a function address, return the start of code
5055 instead of any data function descriptor. */
f5656ead 5056 sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
2bbe3cc1 5057 sym_addr,
8b88a78e 5058 current_top_target ());
2bbe3cc1 5059
66644cd3 5060 xsnprintf (msg.data (), get_remote_packet_size (), "qSymbol:%s:%s",
5af949e3 5061 phex_nz (sym_addr, addr_size), &reply[8]);
2bbe3cc1 5062 }
66644cd3
AB
5063
5064 putpkt (msg.data ());
8d64371b 5065 getpkt (&reply, 0);
dc8acb97
MS
5066 }
5067}
5068
9db8d71f 5069static struct serial *
baa336ce 5070remote_serial_open (const char *name)
9db8d71f
DJ
5071{
5072 static int udp_warning = 0;
5073
5074 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
5075 of in ser-tcp.c, because it is the remote protocol assuming that the
5076 serial connection is reliable and not the serial connection promising
5077 to be. */
61012eef 5078 if (!udp_warning && startswith (name, "udp:"))
9db8d71f 5079 {
3e43a32a
MS
5080 warning (_("The remote protocol may be unreliable over UDP.\n"
5081 "Some events may be lost, rendering further debugging "
5082 "impossible."));
9db8d71f
DJ
5083 udp_warning = 1;
5084 }
5085
5086 return serial_open (name);
5087}
5088
d914c394
SS
5089/* Inform the target of our permission settings. The permission flags
5090 work without this, but if the target knows the settings, it can do
5091 a couple things. First, it can add its own check, to catch cases
5092 that somehow manage to get by the permissions checks in target
5093 methods. Second, if the target is wired to disallow particular
5094 settings (for instance, a system in the field that is not set up to
5095 be able to stop at a breakpoint), it can object to any unavailable
5096 permissions. */
5097
5098void
f6ac5f3d 5099remote_target::set_permissions ()
d914c394
SS
5100{
5101 struct remote_state *rs = get_remote_state ();
5102
8d64371b 5103 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QAllow:"
bba74b36
YQ
5104 "WriteReg:%x;WriteMem:%x;"
5105 "InsertBreak:%x;InsertTrace:%x;"
5106 "InsertFastTrace:%x;Stop:%x",
5107 may_write_registers, may_write_memory,
5108 may_insert_breakpoints, may_insert_tracepoints,
5109 may_insert_fast_tracepoints, may_stop);
d914c394 5110 putpkt (rs->buf);
8d64371b 5111 getpkt (&rs->buf, 0);
d914c394
SS
5112
5113 /* If the target didn't like the packet, warn the user. Do not try
5114 to undo the user's settings, that would just be maddening. */
8d64371b
TT
5115 if (strcmp (rs->buf.data (), "OK") != 0)
5116 warning (_("Remote refused setting permissions with: %s"),
5117 rs->buf.data ());
d914c394
SS
5118}
5119
be2a5f71
DJ
5120/* This type describes each known response to the qSupported
5121 packet. */
5122struct protocol_feature
5123{
5124 /* The name of this protocol feature. */
5125 const char *name;
5126
5127 /* The default for this protocol feature. */
5128 enum packet_support default_support;
5129
5130 /* The function to call when this feature is reported, or after
5131 qSupported processing if the feature is not supported.
5132 The first argument points to this structure. The second
5133 argument indicates whether the packet requested support be
5134 enabled, disabled, or probed (or the default, if this function
5135 is being called at the end of processing and this feature was
5136 not reported). The third argument may be NULL; if not NULL, it
5137 is a NUL-terminated string taken from the packet following
5138 this feature's name and an equals sign. */
6b8edb51
PA
5139 void (*func) (remote_target *remote, const struct protocol_feature *,
5140 enum packet_support, const char *);
be2a5f71
DJ
5141
5142 /* The corresponding packet for this feature. Only used if
5143 FUNC is remote_supported_packet. */
5144 int packet;
5145};
5146
be2a5f71 5147static void
6b8edb51
PA
5148remote_supported_packet (remote_target *remote,
5149 const struct protocol_feature *feature,
be2a5f71
DJ
5150 enum packet_support support,
5151 const char *argument)
5152{
5153 if (argument)
5154 {
5155 warning (_("Remote qSupported response supplied an unexpected value for"
5156 " \"%s\"."), feature->name);
5157 return;
5158 }
5159
4082afcc 5160 remote_protocol_packets[feature->packet].support = support;
be2a5f71 5161}
be2a5f71 5162
6b8edb51
PA
5163void
5164remote_target::remote_packet_size (const protocol_feature *feature,
5165 enum packet_support support, const char *value)
be2a5f71
DJ
5166{
5167 struct remote_state *rs = get_remote_state ();
5168
5169 int packet_size;
5170 char *value_end;
5171
5172 if (support != PACKET_ENABLE)
5173 return;
5174
5175 if (value == NULL || *value == '\0')
5176 {
5177 warning (_("Remote target reported \"%s\" without a size."),
5178 feature->name);
5179 return;
5180 }
5181
5182 errno = 0;
5183 packet_size = strtol (value, &value_end, 16);
5184 if (errno != 0 || *value_end != '\0' || packet_size < 0)
5185 {
5186 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
5187 feature->name, value);
5188 return;
5189 }
5190
be2a5f71
DJ
5191 /* Record the new maximum packet size. */
5192 rs->explicit_packet_size = packet_size;
5193}
5194
cb8c24b6 5195static void
6b8edb51
PA
5196remote_packet_size (remote_target *remote, const protocol_feature *feature,
5197 enum packet_support support, const char *value)
5198{
5199 remote->remote_packet_size (feature, support, value);
5200}
5201
dc473cfb 5202static const struct protocol_feature remote_protocol_features[] = {
0876f84a 5203 { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 },
40e57cf2 5204 { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet,
fd79ecee 5205 PACKET_qXfer_auxv },
c78fa86a
GB
5206 { "qXfer:exec-file:read", PACKET_DISABLE, remote_supported_packet,
5207 PACKET_qXfer_exec_file },
23181151
DJ
5208 { "qXfer:features:read", PACKET_DISABLE, remote_supported_packet,
5209 PACKET_qXfer_features },
cfa9d6d9
DJ
5210 { "qXfer:libraries:read", PACKET_DISABLE, remote_supported_packet,
5211 PACKET_qXfer_libraries },
2268b414
JK
5212 { "qXfer:libraries-svr4:read", PACKET_DISABLE, remote_supported_packet,
5213 PACKET_qXfer_libraries_svr4 },
ced63ec0 5214 { "augmented-libraries-svr4-read", PACKET_DISABLE,
4082afcc 5215 remote_supported_packet, PACKET_augmented_libraries_svr4_read_feature },
fd79ecee 5216 { "qXfer:memory-map:read", PACKET_DISABLE, remote_supported_packet,
89be2091 5217 PACKET_qXfer_memory_map },
07e059b5
VP
5218 { "qXfer:osdata:read", PACKET_DISABLE, remote_supported_packet,
5219 PACKET_qXfer_osdata },
dc146f7c
VP
5220 { "qXfer:threads:read", PACKET_DISABLE, remote_supported_packet,
5221 PACKET_qXfer_threads },
b3b9301e
PA
5222 { "qXfer:traceframe-info:read", PACKET_DISABLE, remote_supported_packet,
5223 PACKET_qXfer_traceframe_info },
89be2091
DJ
5224 { "QPassSignals", PACKET_DISABLE, remote_supported_packet,
5225 PACKET_QPassSignals },
82075af2
JS
5226 { "QCatchSyscalls", PACKET_DISABLE, remote_supported_packet,
5227 PACKET_QCatchSyscalls },
9b224c5e
PA
5228 { "QProgramSignals", PACKET_DISABLE, remote_supported_packet,
5229 PACKET_QProgramSignals },
bc3b087d
SDJ
5230 { "QSetWorkingDir", PACKET_DISABLE, remote_supported_packet,
5231 PACKET_QSetWorkingDir },
aefd8b33
SDJ
5232 { "QStartupWithShell", PACKET_DISABLE, remote_supported_packet,
5233 PACKET_QStartupWithShell },
0a2dde4a
SDJ
5234 { "QEnvironmentHexEncoded", PACKET_DISABLE, remote_supported_packet,
5235 PACKET_QEnvironmentHexEncoded },
5236 { "QEnvironmentReset", PACKET_DISABLE, remote_supported_packet,
5237 PACKET_QEnvironmentReset },
5238 { "QEnvironmentUnset", PACKET_DISABLE, remote_supported_packet,
5239 PACKET_QEnvironmentUnset },
a6f3e723
SL
5240 { "QStartNoAckMode", PACKET_DISABLE, remote_supported_packet,
5241 PACKET_QStartNoAckMode },
4082afcc
PA
5242 { "multiprocess", PACKET_DISABLE, remote_supported_packet,
5243 PACKET_multiprocess_feature },
5244 { "QNonStop", PACKET_DISABLE, remote_supported_packet, PACKET_QNonStop },
4aa995e1
PA
5245 { "qXfer:siginfo:read", PACKET_DISABLE, remote_supported_packet,
5246 PACKET_qXfer_siginfo_read },
5247 { "qXfer:siginfo:write", PACKET_DISABLE, remote_supported_packet,
5248 PACKET_qXfer_siginfo_write },
4082afcc 5249 { "ConditionalTracepoints", PACKET_DISABLE, remote_supported_packet,
782b2b07 5250 PACKET_ConditionalTracepoints },
4082afcc 5251 { "ConditionalBreakpoints", PACKET_DISABLE, remote_supported_packet,
3788aec7 5252 PACKET_ConditionalBreakpoints },
4082afcc 5253 { "BreakpointCommands", PACKET_DISABLE, remote_supported_packet,
d3ce09f5 5254 PACKET_BreakpointCommands },
4082afcc 5255 { "FastTracepoints", PACKET_DISABLE, remote_supported_packet,
7a697b8d 5256 PACKET_FastTracepoints },
4082afcc 5257 { "StaticTracepoints", PACKET_DISABLE, remote_supported_packet,
0fb4aa4b 5258 PACKET_StaticTracepoints },
4082afcc 5259 {"InstallInTrace", PACKET_DISABLE, remote_supported_packet,
1e4d1764 5260 PACKET_InstallInTrace},
4082afcc
PA
5261 { "DisconnectedTracing", PACKET_DISABLE, remote_supported_packet,
5262 PACKET_DisconnectedTracing_feature },
40ab02ce
MS
5263 { "ReverseContinue", PACKET_DISABLE, remote_supported_packet,
5264 PACKET_bc },
5265 { "ReverseStep", PACKET_DISABLE, remote_supported_packet,
5266 PACKET_bs },
409873ef
SS
5267 { "TracepointSource", PACKET_DISABLE, remote_supported_packet,
5268 PACKET_TracepointSource },
d914c394
SS
5269 { "QAllow", PACKET_DISABLE, remote_supported_packet,
5270 PACKET_QAllow },
4082afcc
PA
5271 { "EnableDisableTracepoints", PACKET_DISABLE, remote_supported_packet,
5272 PACKET_EnableDisableTracepoints_feature },
78d85199
YQ
5273 { "qXfer:fdpic:read", PACKET_DISABLE, remote_supported_packet,
5274 PACKET_qXfer_fdpic },
169081d0
TG
5275 { "qXfer:uib:read", PACKET_DISABLE, remote_supported_packet,
5276 PACKET_qXfer_uib },
03583c20
UW
5277 { "QDisableRandomization", PACKET_DISABLE, remote_supported_packet,
5278 PACKET_QDisableRandomization },
d1feda86 5279 { "QAgent", PACKET_DISABLE, remote_supported_packet, PACKET_QAgent},
f6f899bf
HAQ
5280 { "QTBuffer:size", PACKET_DISABLE,
5281 remote_supported_packet, PACKET_QTBuffer_size},
4082afcc 5282 { "tracenz", PACKET_DISABLE, remote_supported_packet, PACKET_tracenz_feature },
9accd112
MM
5283 { "Qbtrace:off", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_off },
5284 { "Qbtrace:bts", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_bts },
b20a6524 5285 { "Qbtrace:pt", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_pt },
9accd112 5286 { "qXfer:btrace:read", PACKET_DISABLE, remote_supported_packet,
f4abbc16
MM
5287 PACKET_qXfer_btrace },
5288 { "qXfer:btrace-conf:read", PACKET_DISABLE, remote_supported_packet,
d33501a5
MM
5289 PACKET_qXfer_btrace_conf },
5290 { "Qbtrace-conf:bts:size", PACKET_DISABLE, remote_supported_packet,
f7e6eed5
PA
5291 PACKET_Qbtrace_conf_bts_size },
5292 { "swbreak", PACKET_DISABLE, remote_supported_packet, PACKET_swbreak_feature },
0a93529c 5293 { "hwbreak", PACKET_DISABLE, remote_supported_packet, PACKET_hwbreak_feature },
89245bc0
DB
5294 { "fork-events", PACKET_DISABLE, remote_supported_packet,
5295 PACKET_fork_event_feature },
5296 { "vfork-events", PACKET_DISABLE, remote_supported_packet,
5297 PACKET_vfork_event_feature },
94585166
DB
5298 { "exec-events", PACKET_DISABLE, remote_supported_packet,
5299 PACKET_exec_event_feature },
b20a6524 5300 { "Qbtrace-conf:pt:size", PACKET_DISABLE, remote_supported_packet,
750ce8d1 5301 PACKET_Qbtrace_conf_pt_size },
65706a29
PA
5302 { "vContSupported", PACKET_DISABLE, remote_supported_packet, PACKET_vContSupported },
5303 { "QThreadEvents", PACKET_DISABLE, remote_supported_packet, PACKET_QThreadEvents },
f2faf941 5304 { "no-resumed", PACKET_DISABLE, remote_supported_packet, PACKET_no_resumed },
be2a5f71
DJ
5305};
5306
c8d5aac9
L
5307static char *remote_support_xml;
5308
5309/* Register string appended to "xmlRegisters=" in qSupported query. */
5310
5311void
6e39997a 5312register_remote_support_xml (const char *xml)
c8d5aac9
L
5313{
5314#if defined(HAVE_LIBEXPAT)
5315 if (remote_support_xml == NULL)
c4f7c687 5316 remote_support_xml = concat ("xmlRegisters=", xml, (char *) NULL);
c8d5aac9
L
5317 else
5318 {
5319 char *copy = xstrdup (remote_support_xml + 13);
ca3a04f6
CB
5320 char *saveptr;
5321 char *p = strtok_r (copy, ",", &saveptr);
c8d5aac9
L
5322
5323 do
5324 {
5325 if (strcmp (p, xml) == 0)
5326 {
5327 /* already there */
5328 xfree (copy);
5329 return;
5330 }
5331 }
ca3a04f6 5332 while ((p = strtok_r (NULL, ",", &saveptr)) != NULL);
c8d5aac9
L
5333 xfree (copy);
5334
94b0dee1
PA
5335 remote_support_xml = reconcat (remote_support_xml,
5336 remote_support_xml, ",", xml,
5337 (char *) NULL);
c8d5aac9
L
5338 }
5339#endif
5340}
5341
69b6ecb0
TT
5342static void
5343remote_query_supported_append (std::string *msg, const char *append)
c8d5aac9 5344{
69b6ecb0
TT
5345 if (!msg->empty ())
5346 msg->append (";");
5347 msg->append (append);
c8d5aac9
L
5348}
5349
6b8edb51
PA
5350void
5351remote_target::remote_query_supported ()
be2a5f71
DJ
5352{
5353 struct remote_state *rs = get_remote_state ();
5354 char *next;
5355 int i;
5356 unsigned char seen [ARRAY_SIZE (remote_protocol_features)];
5357
5358 /* The packet support flags are handled differently for this packet
5359 than for most others. We treat an error, a disabled packet, and
5360 an empty response identically: any features which must be reported
5361 to be used will be automatically disabled. An empty buffer
5362 accomplishes this, since that is also the representation for a list
5363 containing no features. */
5364
5365 rs->buf[0] = 0;
4082afcc 5366 if (packet_support (PACKET_qSupported) != PACKET_DISABLE)
be2a5f71 5367 {
69b6ecb0 5368 std::string q;
c8d5aac9 5369
73b8c1fd 5370 if (packet_set_cmd_state (PACKET_multiprocess_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5371 remote_query_supported_append (&q, "multiprocess+");
c8d5aac9 5372
f7e6eed5 5373 if (packet_set_cmd_state (PACKET_swbreak_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5374 remote_query_supported_append (&q, "swbreak+");
f7e6eed5 5375 if (packet_set_cmd_state (PACKET_hwbreak_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5376 remote_query_supported_append (&q, "hwbreak+");
f7e6eed5 5377
69b6ecb0 5378 remote_query_supported_append (&q, "qRelocInsn+");
dde08ee1 5379
8020350c
DB
5380 if (packet_set_cmd_state (PACKET_fork_event_feature)
5381 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5382 remote_query_supported_append (&q, "fork-events+");
8020350c
DB
5383 if (packet_set_cmd_state (PACKET_vfork_event_feature)
5384 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5385 remote_query_supported_append (&q, "vfork-events+");
8020350c
DB
5386 if (packet_set_cmd_state (PACKET_exec_event_feature)
5387 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5388 remote_query_supported_append (&q, "exec-events+");
89245bc0 5389
750ce8d1 5390 if (packet_set_cmd_state (PACKET_vContSupported) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5391 remote_query_supported_append (&q, "vContSupported+");
750ce8d1 5392
65706a29 5393 if (packet_set_cmd_state (PACKET_QThreadEvents) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5394 remote_query_supported_append (&q, "QThreadEvents+");
65706a29 5395
f2faf941 5396 if (packet_set_cmd_state (PACKET_no_resumed) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5397 remote_query_supported_append (&q, "no-resumed+");
f2faf941 5398
b35d5edb
PA
5399 /* Keep this one last to work around a gdbserver <= 7.10 bug in
5400 the qSupported:xmlRegisters=i386 handling. */
7cc244de
PA
5401 if (remote_support_xml != NULL
5402 && packet_support (PACKET_qXfer_features) != PACKET_DISABLE)
69b6ecb0 5403 remote_query_supported_append (&q, remote_support_xml);
82f73884 5404
69b6ecb0
TT
5405 q = "qSupported:" + q;
5406 putpkt (q.c_str ());
94b0dee1 5407
8d64371b 5408 getpkt (&rs->buf, 0);
be2a5f71
DJ
5409
5410 /* If an error occured, warn, but do not return - just reset the
5411 buffer to empty and go on to disable features. */
5412 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported])
5413 == PACKET_ERROR)
5414 {
8d64371b 5415 warning (_("Remote failure reply: %s"), rs->buf.data ());
be2a5f71
DJ
5416 rs->buf[0] = 0;
5417 }
5418 }
5419
5420 memset (seen, 0, sizeof (seen));
5421
8d64371b 5422 next = rs->buf.data ();
be2a5f71
DJ
5423 while (*next)
5424 {
5425 enum packet_support is_supported;
5426 char *p, *end, *name_end, *value;
5427
5428 /* First separate out this item from the rest of the packet. If
5429 there's another item after this, we overwrite the separator
5430 (terminated strings are much easier to work with). */
5431 p = next;
5432 end = strchr (p, ';');
5433 if (end == NULL)
5434 {
5435 end = p + strlen (p);
5436 next = end;
5437 }
5438 else
5439 {
89be2091
DJ
5440 *end = '\0';
5441 next = end + 1;
5442
be2a5f71
DJ
5443 if (end == p)
5444 {
5445 warning (_("empty item in \"qSupported\" response"));
5446 continue;
5447 }
be2a5f71
DJ
5448 }
5449
5450 name_end = strchr (p, '=');
5451 if (name_end)
5452 {
5453 /* This is a name=value entry. */
5454 is_supported = PACKET_ENABLE;
5455 value = name_end + 1;
5456 *name_end = '\0';
5457 }
5458 else
5459 {
5460 value = NULL;
5461 switch (end[-1])
5462 {
5463 case '+':
5464 is_supported = PACKET_ENABLE;
5465 break;
5466
5467 case '-':
5468 is_supported = PACKET_DISABLE;
5469 break;
5470
5471 case '?':
5472 is_supported = PACKET_SUPPORT_UNKNOWN;
5473 break;
5474
5475 default:
3e43a32a
MS
5476 warning (_("unrecognized item \"%s\" "
5477 "in \"qSupported\" response"), p);
be2a5f71
DJ
5478 continue;
5479 }
5480 end[-1] = '\0';
5481 }
5482
5483 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
5484 if (strcmp (remote_protocol_features[i].name, p) == 0)
5485 {
5486 const struct protocol_feature *feature;
5487
5488 seen[i] = 1;
5489 feature = &remote_protocol_features[i];
6b8edb51 5490 feature->func (this, feature, is_supported, value);
be2a5f71
DJ
5491 break;
5492 }
5493 }
5494
5495 /* If we increased the packet size, make sure to increase the global
5496 buffer size also. We delay this until after parsing the entire
5497 qSupported packet, because this is the same buffer we were
5498 parsing. */
8d64371b
TT
5499 if (rs->buf.size () < rs->explicit_packet_size)
5500 rs->buf.resize (rs->explicit_packet_size);
be2a5f71
DJ
5501
5502 /* Handle the defaults for unmentioned features. */
5503 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
5504 if (!seen[i])
5505 {
5506 const struct protocol_feature *feature;
5507
5508 feature = &remote_protocol_features[i];
6b8edb51 5509 feature->func (this, feature, feature->default_support, NULL);
be2a5f71
DJ
5510 }
5511}
5512
048094ac
PA
5513/* Serial QUIT handler for the remote serial descriptor.
5514
5515 Defers handling a Ctrl-C until we're done with the current
5516 command/response packet sequence, unless:
5517
5518 - We're setting up the connection. Don't send a remote interrupt
5519 request, as we're not fully synced yet. Quit immediately
5520 instead.
5521
5522 - The target has been resumed in the foreground
223ffa71 5523 (target_terminal::is_ours is false) with a synchronous resume
048094ac
PA
5524 packet, and we're blocked waiting for the stop reply, thus a
5525 Ctrl-C should be immediately sent to the target.
5526
5527 - We get a second Ctrl-C while still within the same serial read or
5528 write. In that case the serial is seemingly wedged --- offer to
5529 quit/disconnect.
5530
5531 - We see a second Ctrl-C without target response, after having
5532 previously interrupted the target. In that case the target/stub
5533 is probably wedged --- offer to quit/disconnect.
5534*/
5535
6b8edb51
PA
5536void
5537remote_target::remote_serial_quit_handler ()
048094ac
PA
5538{
5539 struct remote_state *rs = get_remote_state ();
5540
5541 if (check_quit_flag ())
5542 {
5543 /* If we're starting up, we're not fully synced yet. Quit
5544 immediately. */
5545 if (rs->starting_up)
5546 quit ();
5547 else if (rs->got_ctrlc_during_io)
5548 {
5549 if (query (_("The target is not responding to GDB commands.\n"
5550 "Stop debugging it? ")))
5b6d1e4f 5551 remote_unpush_and_throw (this);
048094ac
PA
5552 }
5553 /* If ^C has already been sent once, offer to disconnect. */
223ffa71 5554 else if (!target_terminal::is_ours () && rs->ctrlc_pending_p)
048094ac
PA
5555 interrupt_query ();
5556 /* All-stop protocol, and blocked waiting for stop reply. Send
5557 an interrupt request. */
223ffa71 5558 else if (!target_terminal::is_ours () && rs->waiting_for_stop_reply)
e671cd59 5559 target_interrupt ();
048094ac
PA
5560 else
5561 rs->got_ctrlc_during_io = 1;
5562 }
5563}
5564
6b8edb51
PA
5565/* The remote_target that is current while the quit handler is
5566 overridden with remote_serial_quit_handler. */
5567static remote_target *curr_quit_handler_target;
5568
5569static void
5570remote_serial_quit_handler ()
5571{
5572 curr_quit_handler_target->remote_serial_quit_handler ();
5573}
5574
5b6d1e4f
PA
5575/* Remove the remote target from the target stack of each inferior
5576 that is using it. Upper targets depend on it so remove them
5577 first. */
78a095c3
JK
5578
5579static void
5b6d1e4f 5580remote_unpush_target (remote_target *target)
78a095c3 5581{
5b6d1e4f
PA
5582 /* We have to unpush the target from all inferiors, even those that
5583 aren't running. */
5584 scoped_restore_current_inferior restore_current_inferior;
5585
5586 for (inferior *inf : all_inferiors (target))
5587 {
5588 switch_to_inferior_no_thread (inf);
5589 pop_all_targets_at_and_above (process_stratum);
5590 generic_mourn_inferior ();
5591 }
78a095c3 5592}
be2a5f71 5593
048094ac 5594static void
5b6d1e4f 5595remote_unpush_and_throw (remote_target *target)
048094ac 5596{
5b6d1e4f 5597 remote_unpush_target (target);
048094ac
PA
5598 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
5599}
5600
f6ac5f3d
PA
5601void
5602remote_target::open_1 (const char *name, int from_tty, int extended_p)
c906108c 5603{
6b8edb51 5604 remote_target *curr_remote = get_current_remote_target ();
a6f3e723 5605
c906108c 5606 if (name == 0)
8a3fe4f8 5607 error (_("To open a remote debug connection, you need to specify what\n"
22e04375 5608 "serial device is attached to the remote system\n"
8a3fe4f8 5609 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
c906108c 5610
2d717e4f 5611 /* If we're connected to a running target, target_preopen will kill it.
78a095c3
JK
5612 Ask this question first, before target_preopen has a chance to kill
5613 anything. */
55f6301a 5614 if (curr_remote != NULL && !target_has_execution ())
2d717e4f 5615 {
78a095c3
JK
5616 if (from_tty
5617 && !query (_("Already connected to a remote target. Disconnect? ")))
2d717e4f
DJ
5618 error (_("Still connected."));
5619 }
5620
78a095c3 5621 /* Here the possibly existing remote target gets unpushed. */
c906108c
SS
5622 target_preopen (from_tty);
5623
ad9a8f3f 5624 remote_fileio_reset ();
1dd41f16
NS
5625 reopen_exec_file ();
5626 reread_symbols ();
5627
6b8edb51
PA
5628 remote_target *remote
5629 = (extended_p ? new extended_remote_target () : new remote_target ());
5630 target_ops_up target_holder (remote);
5631
5632 remote_state *rs = remote->get_remote_state ();
5633
5634 /* See FIXME above. */
5635 if (!target_async_permitted)
5636 rs->wait_forever_enabled_p = 1;
5637
5d93a237
TT
5638 rs->remote_desc = remote_serial_open (name);
5639 if (!rs->remote_desc)
c906108c
SS
5640 perror_with_name (name);
5641
5642 if (baud_rate != -1)
5643 {
5d93a237 5644 if (serial_setbaudrate (rs->remote_desc, baud_rate))
c906108c 5645 {
9b74d5d3
KB
5646 /* The requested speed could not be set. Error out to
5647 top level after closing remote_desc. Take care to
5648 set remote_desc to NULL to avoid closing remote_desc
5649 more than once. */
5d93a237
TT
5650 serial_close (rs->remote_desc);
5651 rs->remote_desc = NULL;
c906108c
SS
5652 perror_with_name (name);
5653 }
5654 }
5655
236af5e3 5656 serial_setparity (rs->remote_desc, serial_parity);
5d93a237 5657 serial_raw (rs->remote_desc);
c906108c
SS
5658
5659 /* If there is something sitting in the buffer we might take it as a
5660 response to a command, which would be bad. */
5d93a237 5661 serial_flush_input (rs->remote_desc);
c906108c
SS
5662
5663 if (from_tty)
5664 {
5665 puts_filtered ("Remote debugging using ");
5666 puts_filtered (name);
5667 puts_filtered ("\n");
5668 }
d9f719f1 5669
6b8edb51 5670 /* Switch to using the remote target now. */
dea57a62 5671 push_target (std::move (target_holder));
c906108c 5672
74531fed 5673 /* Register extra event sources in the event loop. */
6b8edb51 5674 rs->remote_async_inferior_event_token
db20ebdf
SM
5675 = create_async_event_handler (remote_async_inferior_event_handler, remote,
5676 "remote");
6b8edb51 5677 rs->notif_state = remote_notif_state_allocate (remote);
74531fed 5678
be2a5f71
DJ
5679 /* Reset the target state; these things will be queried either by
5680 remote_query_supported or as they are needed. */
ca4f7f8b 5681 reset_all_packet_configs_support ();
74531fed 5682 rs->cached_wait_status = 0;
be2a5f71 5683 rs->explicit_packet_size = 0;
a6f3e723 5684 rs->noack_mode = 0;
82f73884 5685 rs->extended = extended_p;
e24a49d8 5686 rs->waiting_for_stop_reply = 0;
3a29589a 5687 rs->ctrlc_pending_p = 0;
048094ac 5688 rs->got_ctrlc_during_io = 0;
802188a7 5689
47f8a51d
TT
5690 rs->general_thread = not_sent_ptid;
5691 rs->continue_thread = not_sent_ptid;
262e1174 5692 rs->remote_traceframe_number = -1;
c906108c 5693
3a00c802
PA
5694 rs->last_resume_exec_dir = EXEC_FORWARD;
5695
9d1f7ab2 5696 /* Probe for ability to use "ThreadInfo" query, as required. */
b80fafe3
TT
5697 rs->use_threadinfo_query = 1;
5698 rs->use_threadextra_query = 1;
9d1f7ab2 5699
dd194f6b 5700 rs->readahead_cache.invalidate ();
80152258 5701
c6ebd6cf 5702 if (target_async_permitted)
92d1e331 5703 {
92d1e331
DJ
5704 /* FIXME: cagney/1999-09-23: During the initial connection it is
5705 assumed that the target is already ready and able to respond to
0df8b418 5706 requests. Unfortunately remote_start_remote() eventually calls
92d1e331 5707 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
0df8b418 5708 around this. Eventually a mechanism that allows
92d1e331 5709 wait_for_inferior() to expect/get timeouts will be
23860348 5710 implemented. */
6b8edb51 5711 rs->wait_forever_enabled_p = 0;
92d1e331
DJ
5712 }
5713
23860348 5714 /* First delete any symbols previously loaded from shared libraries. */
f78f6cf1 5715 no_shared_libraries (NULL, 0);
f78f6cf1 5716
36918e70 5717 /* Start the remote connection. If error() or QUIT, discard this
165b8e33
AC
5718 target (we'd otherwise be in an inconsistent state) and then
5719 propogate the error on up the exception chain. This ensures that
5720 the caller doesn't stumble along blindly assuming that the
5721 function succeeded. The CLI doesn't have this problem but other
5722 UI's, such as MI do.
36918e70
AC
5723
5724 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
5725 this function should return an error indication letting the
ce2826aa 5726 caller restore the previous state. Unfortunately the command
36918e70
AC
5727 ``target remote'' is directly wired to this function making that
5728 impossible. On a positive note, the CLI side of this problem has
5729 been fixed - the function set_cmd_context() makes it possible for
5730 all the ``target ....'' commands to share a common callback
5731 function. See cli-dump.c. */
109c3e39 5732 {
2d717e4f 5733
a70b8144 5734 try
04bd08de 5735 {
6b8edb51 5736 remote->start_remote (from_tty, extended_p);
04bd08de 5737 }
230d2906 5738 catch (const gdb_exception &ex)
109c3e39 5739 {
c8d104ad
PA
5740 /* Pop the partially set up target - unless something else did
5741 already before throwing the exception. */
6b8edb51 5742 if (ex.error != TARGET_CLOSE_ERROR)
5b6d1e4f 5743 remote_unpush_target (remote);
eedc3f4f 5744 throw;
109c3e39
AC
5745 }
5746 }
c906108c 5747
6b8edb51 5748 remote_btrace_reset (rs);
f4abbc16 5749
c6ebd6cf 5750 if (target_async_permitted)
6b8edb51 5751 rs->wait_forever_enabled_p = 1;
43ff13b4
JM
5752}
5753
de0d863e
DB
5754/* Detach the specified process. */
5755
6b8edb51
PA
5756void
5757remote_target::remote_detach_pid (int pid)
de0d863e
DB
5758{
5759 struct remote_state *rs = get_remote_state ();
5760
4c7333b3
PA
5761 /* This should not be necessary, but the handling for D;PID in
5762 GDBserver versions prior to 8.2 incorrectly assumes that the
5763 selected process points to the same process we're detaching,
5764 leading to misbehavior (and possibly GDBserver crashing) when it
5765 does not. Since it's easy and cheap, work around it by forcing
5766 GDBserver to select GDB's current process. */
5767 set_general_process ();
5768
de0d863e 5769 if (remote_multi_process_p (rs))
8d64371b 5770 xsnprintf (rs->buf.data (), get_remote_packet_size (), "D;%x", pid);
de0d863e 5771 else
8d64371b 5772 strcpy (rs->buf.data (), "D");
de0d863e
DB
5773
5774 putpkt (rs->buf);
8d64371b 5775 getpkt (&rs->buf, 0);
de0d863e
DB
5776
5777 if (rs->buf[0] == 'O' && rs->buf[1] == 'K')
5778 ;
5779 else if (rs->buf[0] == '\0')
5780 error (_("Remote doesn't know how to detach"));
5781 else
5782 error (_("Can't detach process."));
5783}
5784
5785/* This detaches a program to which we previously attached, using
5786 inferior_ptid to identify the process. After this is done, GDB
5787 can be used to debug some other program. We better not have left
5788 any breakpoints in the target program or it'll die when it hits
5789 one. */
c906108c 5790
6b8edb51 5791void
00431a78 5792remote_target::remote_detach_1 (inferior *inf, int from_tty)
c906108c 5793{
e99b03dc 5794 int pid = inferior_ptid.pid ();
d01949b6 5795 struct remote_state *rs = get_remote_state ();
de0d863e 5796 int is_fork_parent;
c906108c 5797
55f6301a 5798 if (!target_has_execution ())
2d717e4f
DJ
5799 error (_("No process to detach from."));
5800
0f48b757 5801 target_announce_detach (from_tty);
7cee1e54 5802
c906108c 5803 /* Tell the remote target to detach. */
de0d863e 5804 remote_detach_pid (pid);
82f73884 5805
8020350c 5806 /* Exit only if this is the only active inferior. */
5b6d1e4f 5807 if (from_tty && !rs->extended && number_of_live_inferiors (this) == 1)
7cee1e54 5808 puts_filtered (_("Ending remote debugging.\n"));
82f73884 5809
5b6d1e4f 5810 thread_info *tp = find_thread_ptid (this, inferior_ptid);
00431a78 5811
de0d863e
DB
5812 /* Check to see if we are detaching a fork parent. Note that if we
5813 are detaching a fork child, tp == NULL. */
5814 is_fork_parent = (tp != NULL
5815 && tp->pending_follow.kind == TARGET_WAITKIND_FORKED);
5816
5817 /* If doing detach-on-fork, we don't mourn, because that will delete
5818 breakpoints that should be available for the followed inferior. */
5819 if (!is_fork_parent)
f67c0c91 5820 {
249b5733
PA
5821 /* Save the pid as a string before mourning, since that will
5822 unpush the remote target, and we need the string after. */
f2907e49 5823 std::string infpid = target_pid_to_str (ptid_t (pid));
f67c0c91
SDJ
5824
5825 target_mourn_inferior (inferior_ptid);
5826 if (print_inferior_events)
5827 printf_unfiltered (_("[Inferior %d (%s) detached]\n"),
5828 inf->num, infpid.c_str ());
5829 }
de0d863e
DB
5830 else
5831 {
0ac55310 5832 switch_to_no_thread ();
00431a78 5833 detach_inferior (current_inferior ());
de0d863e 5834 }
2d717e4f
DJ
5835}
5836
f6ac5f3d
PA
5837void
5838remote_target::detach (inferior *inf, int from_tty)
2d717e4f 5839{
00431a78 5840 remote_detach_1 (inf, from_tty);
2d717e4f
DJ
5841}
5842
f6ac5f3d
PA
5843void
5844extended_remote_target::detach (inferior *inf, int from_tty)
2d717e4f 5845{
00431a78 5846 remote_detach_1 (inf, from_tty);
de0d863e
DB
5847}
5848
5849/* Target follow-fork function for remote targets. On entry, and
5850 at return, the current inferior is the fork parent.
5851
5852 Note that although this is currently only used for extended-remote,
5853 it is named remote_follow_fork in anticipation of using it for the
5854 remote target as well. */
5855
5ab2fbf1
SM
5856bool
5857remote_target::follow_fork (bool follow_child, bool detach_fork)
de0d863e
DB
5858{
5859 struct remote_state *rs = get_remote_state ();
c269dbdb 5860 enum target_waitkind kind = inferior_thread ()->pending_follow.kind;
de0d863e 5861
c269dbdb
DB
5862 if ((kind == TARGET_WAITKIND_FORKED && remote_fork_event_p (rs))
5863 || (kind == TARGET_WAITKIND_VFORKED && remote_vfork_event_p (rs)))
de0d863e
DB
5864 {
5865 /* When following the parent and detaching the child, we detach
5866 the child here. For the case of following the child and
5867 detaching the parent, the detach is done in the target-
5868 independent follow fork code in infrun.c. We can't use
5869 target_detach when detaching an unfollowed child because
5870 the client side doesn't know anything about the child. */
5871 if (detach_fork && !follow_child)
5872 {
5873 /* Detach the fork child. */
5874 ptid_t child_ptid;
5875 pid_t child_pid;
5876
5877 child_ptid = inferior_thread ()->pending_follow.value.related_pid;
e99b03dc 5878 child_pid = child_ptid.pid ();
de0d863e
DB
5879
5880 remote_detach_pid (child_pid);
de0d863e
DB
5881 }
5882 }
5ab2fbf1
SM
5883
5884 return false;
c906108c
SS
5885}
5886
94585166
DB
5887/* Target follow-exec function for remote targets. Save EXECD_PATHNAME
5888 in the program space of the new inferior. On entry and at return the
5889 current inferior is the exec'ing inferior. INF is the new exec'd
5890 inferior, which may be the same as the exec'ing inferior unless
5891 follow-exec-mode is "new". */
5892
f6ac5f3d 5893void
4ca51187 5894remote_target::follow_exec (struct inferior *inf, const char *execd_pathname)
94585166
DB
5895{
5896 /* We know that this is a target file name, so if it has the "target:"
5897 prefix we strip it off before saving it in the program space. */
5898 if (is_target_filename (execd_pathname))
5899 execd_pathname += strlen (TARGET_SYSROOT_PREFIX);
5900
5901 set_pspace_remote_exec_file (inf->pspace, execd_pathname);
5902}
5903
6ad8ae5c
DJ
5904/* Same as remote_detach, but don't send the "D" packet; just disconnect. */
5905
f6ac5f3d
PA
5906void
5907remote_target::disconnect (const char *args, int from_tty)
43ff13b4 5908{
43ff13b4 5909 if (args)
2d717e4f 5910 error (_("Argument given to \"disconnect\" when remotely debugging."));
43ff13b4 5911
8020350c 5912 /* Make sure we unpush even the extended remote targets. Calling
5b6d1e4f
PA
5913 target_mourn_inferior won't unpush, and
5914 remote_target::mourn_inferior won't unpush if there is more than
5915 one inferior left. */
5916 remote_unpush_target (this);
2d717e4f 5917
43ff13b4
JM
5918 if (from_tty)
5919 puts_filtered ("Ending remote debugging.\n");
5920}
5921
2d717e4f
DJ
5922/* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
5923 be chatty about it. */
5924
f6ac5f3d
PA
5925void
5926extended_remote_target::attach (const char *args, int from_tty)
2d717e4f
DJ
5927{
5928 struct remote_state *rs = get_remote_state ();
be86555c 5929 int pid;
96ef3384 5930 char *wait_status = NULL;
2d717e4f 5931
74164c56 5932 pid = parse_pid_to_attach (args);
2d717e4f 5933
74164c56
JK
5934 /* Remote PID can be freely equal to getpid, do not check it here the same
5935 way as in other targets. */
2d717e4f 5936
4082afcc 5937 if (packet_support (PACKET_vAttach) == PACKET_DISABLE)
2d717e4f
DJ
5938 error (_("This target does not support attaching to a process"));
5939
7cee1e54
PA
5940 if (from_tty)
5941 {
d9fa87f4 5942 const char *exec_file = get_exec_file (0);
7cee1e54
PA
5943
5944 if (exec_file)
5945 printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file,
a068643d 5946 target_pid_to_str (ptid_t (pid)).c_str ());
7cee1e54
PA
5947 else
5948 printf_unfiltered (_("Attaching to %s\n"),
a068643d 5949 target_pid_to_str (ptid_t (pid)).c_str ());
7cee1e54
PA
5950 }
5951
8d64371b 5952 xsnprintf (rs->buf.data (), get_remote_packet_size (), "vAttach;%x", pid);
2d717e4f 5953 putpkt (rs->buf);
8d64371b 5954 getpkt (&rs->buf, 0);
2d717e4f 5955
4082afcc
PA
5956 switch (packet_ok (rs->buf,
5957 &remote_protocol_packets[PACKET_vAttach]))
2d717e4f 5958 {
4082afcc 5959 case PACKET_OK:
6efcd9a8 5960 if (!target_is_non_stop_p ())
74531fed
PA
5961 {
5962 /* Save the reply for later. */
8d64371b
TT
5963 wait_status = (char *) alloca (strlen (rs->buf.data ()) + 1);
5964 strcpy (wait_status, rs->buf.data ());
74531fed 5965 }
8d64371b 5966 else if (strcmp (rs->buf.data (), "OK") != 0)
74531fed 5967 error (_("Attaching to %s failed with: %s"),
a068643d 5968 target_pid_to_str (ptid_t (pid)).c_str (),
8d64371b 5969 rs->buf.data ());
4082afcc
PA
5970 break;
5971 case PACKET_UNKNOWN:
5972 error (_("This target does not support attaching to a process"));
5973 default:
50fa3001
SDJ
5974 error (_("Attaching to %s failed"),
5975 target_pid_to_str (ptid_t (pid)).c_str ());
2d717e4f 5976 }
2d717e4f 5977
0ac55310 5978 switch_to_inferior_no_thread (remote_add_inferior (false, pid, 1, 0));
bad34192 5979
f2907e49 5980 inferior_ptid = ptid_t (pid);
79d7f229 5981
6efcd9a8 5982 if (target_is_non_stop_p ())
bad34192 5983 {
bad34192 5984 /* Get list of threads. */
f6ac5f3d 5985 update_thread_list ();
82f73884 5986
0ac55310
PA
5987 thread_info *thread = first_thread_of_inferior (current_inferior ());
5988 if (thread != nullptr)
5989 switch_to_thread (thread);
bad34192
PA
5990
5991 /* Invalidate our notion of the remote current thread. */
47f8a51d 5992 record_currthread (rs, minus_one_ptid);
bad34192 5993 }
74531fed 5994 else
bad34192 5995 {
0ac55310
PA
5996 /* Now, if we have thread information, update the main thread's
5997 ptid. */
5998 ptid_t curr_ptid = remote_current_thread (ptid_t (pid));
bad34192
PA
5999
6000 /* Add the main thread to the thread list. */
0ac55310
PA
6001 thread_info *thr = add_thread_silent (this, curr_ptid);
6002
6003 switch_to_thread (thr);
6004
00aecdcf
PA
6005 /* Don't consider the thread stopped until we've processed the
6006 saved stop reply. */
5b6d1e4f 6007 set_executing (this, thr->ptid, true);
bad34192 6008 }
c0a2216e 6009
96ef3384
UW
6010 /* Next, if the target can specify a description, read it. We do
6011 this before anything involving memory or registers. */
6012 target_find_description ();
6013
6efcd9a8 6014 if (!target_is_non_stop_p ())
74531fed
PA
6015 {
6016 /* Use the previously fetched status. */
6017 gdb_assert (wait_status != NULL);
6018
6019 if (target_can_async_p ())
6020 {
722247f1 6021 struct notif_event *reply
6b8edb51 6022 = remote_notif_parse (this, &notif_client_stop, wait_status);
74531fed 6023
722247f1 6024 push_stop_reply ((struct stop_reply *) reply);
74531fed 6025
6a3753b3 6026 target_async (1);
74531fed
PA
6027 }
6028 else
6029 {
6030 gdb_assert (wait_status != NULL);
8d64371b 6031 strcpy (rs->buf.data (), wait_status);
74531fed
PA
6032 rs->cached_wait_status = 1;
6033 }
6034 }
6035 else
621cc310
PA
6036 {
6037 gdb_assert (wait_status == NULL);
6038
6039 gdb_assert (target_can_async_p ());
6040 target_async (1);
6041 }
2d717e4f
DJ
6042}
6043
b9c1d481
AS
6044/* Implementation of the to_post_attach method. */
6045
f6ac5f3d
PA
6046void
6047extended_remote_target::post_attach (int pid)
b9c1d481 6048{
6efcd9a8
PA
6049 /* Get text, data & bss offsets. */
6050 get_offsets ();
6051
b9c1d481
AS
6052 /* In certain cases GDB might not have had the chance to start
6053 symbol lookup up until now. This could happen if the debugged
6054 binary is not using shared libraries, the vsyscall page is not
6055 present (on Linux) and the binary itself hadn't changed since the
6056 debugging process was started. */
a42d7dd8 6057 if (current_program_space->symfile_object_file != NULL)
b9c1d481
AS
6058 remote_check_symbols();
6059}
6060
c906108c 6061\f
506fb367
DJ
6062/* Check for the availability of vCont. This function should also check
6063 the response. */
c906108c 6064
6b8edb51
PA
6065void
6066remote_target::remote_vcont_probe ()
c906108c 6067{
6b8edb51 6068 remote_state *rs = get_remote_state ();
2e9f7625 6069 char *buf;
6d820c5c 6070
8d64371b 6071 strcpy (rs->buf.data (), "vCont?");
2e9f7625 6072 putpkt (rs->buf);
8d64371b
TT
6073 getpkt (&rs->buf, 0);
6074 buf = rs->buf.data ();
c906108c 6075
506fb367 6076 /* Make sure that the features we assume are supported. */
61012eef 6077 if (startswith (buf, "vCont"))
506fb367
DJ
6078 {
6079 char *p = &buf[5];
750ce8d1 6080 int support_c, support_C;
506fb367 6081
750ce8d1
YQ
6082 rs->supports_vCont.s = 0;
6083 rs->supports_vCont.S = 0;
506fb367
DJ
6084 support_c = 0;
6085 support_C = 0;
d458bd84 6086 rs->supports_vCont.t = 0;
c1e36e3e 6087 rs->supports_vCont.r = 0;
506fb367
DJ
6088 while (p && *p == ';')
6089 {
6090 p++;
6091 if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 6092 rs->supports_vCont.s = 1;
506fb367 6093 else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 6094 rs->supports_vCont.S = 1;
506fb367
DJ
6095 else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
6096 support_c = 1;
6097 else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
6098 support_C = 1;
74531fed 6099 else if (*p == 't' && (*(p + 1) == ';' || *(p + 1) == 0))
d458bd84 6100 rs->supports_vCont.t = 1;
c1e36e3e
PA
6101 else if (*p == 'r' && (*(p + 1) == ';' || *(p + 1) == 0))
6102 rs->supports_vCont.r = 1;
506fb367
DJ
6103
6104 p = strchr (p, ';');
6105 }
c906108c 6106
750ce8d1
YQ
6107 /* If c, and C are not all supported, we can't use vCont. Clearing
6108 BUF will make packet_ok disable the packet. */
6109 if (!support_c || !support_C)
506fb367
DJ
6110 buf[0] = 0;
6111 }
c906108c 6112
8d64371b 6113 packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCont]);
5b6d1e4f 6114 rs->supports_vCont_probed = true;
506fb367 6115}
c906108c 6116
0d8f58ca
PA
6117/* Helper function for building "vCont" resumptions. Write a
6118 resumption to P. ENDP points to one-passed-the-end of the buffer
6119 we're allowed to write to. Returns BUF+CHARACTERS_WRITTEN. The
6120 thread to be resumed is PTID; STEP and SIGGNAL indicate whether the
6121 resumed thread should be single-stepped and/or signalled. If PTID
6122 equals minus_one_ptid, then all threads are resumed; if PTID
6123 represents a process, then all threads of the process are resumed;
6124 the thread to be stepped and/or signalled is given in the global
6125 INFERIOR_PTID. */
6126
6b8edb51
PA
6127char *
6128remote_target::append_resumption (char *p, char *endp,
6129 ptid_t ptid, int step, gdb_signal siggnal)
0d8f58ca
PA
6130{
6131 struct remote_state *rs = get_remote_state ();
6132
a493e3e2 6133 if (step && siggnal != GDB_SIGNAL_0)
0d8f58ca 6134 p += xsnprintf (p, endp - p, ";S%02x", siggnal);
c1e36e3e
PA
6135 else if (step
6136 /* GDB is willing to range step. */
6137 && use_range_stepping
6138 /* Target supports range stepping. */
6139 && rs->supports_vCont.r
6140 /* We don't currently support range stepping multiple
6141 threads with a wildcard (though the protocol allows it,
6142 so stubs shouldn't make an active effort to forbid
6143 it). */
0e998d96 6144 && !(remote_multi_process_p (rs) && ptid.is_pid ()))
c1e36e3e
PA
6145 {
6146 struct thread_info *tp;
6147
d7e15655 6148 if (ptid == minus_one_ptid)
c1e36e3e
PA
6149 {
6150 /* If we don't know about the target thread's tid, then
6151 we're resuming magic_null_ptid (see caller). */
5b6d1e4f 6152 tp = find_thread_ptid (this, magic_null_ptid);
c1e36e3e
PA
6153 }
6154 else
5b6d1e4f 6155 tp = find_thread_ptid (this, ptid);
c1e36e3e
PA
6156 gdb_assert (tp != NULL);
6157
6158 if (tp->control.may_range_step)
6159 {
6160 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
6161
6162 p += xsnprintf (p, endp - p, ";r%s,%s",
6163 phex_nz (tp->control.step_range_start,
6164 addr_size),
6165 phex_nz (tp->control.step_range_end,
6166 addr_size));
6167 }
6168 else
6169 p += xsnprintf (p, endp - p, ";s");
6170 }
0d8f58ca
PA
6171 else if (step)
6172 p += xsnprintf (p, endp - p, ";s");
a493e3e2 6173 else if (siggnal != GDB_SIGNAL_0)
0d8f58ca
PA
6174 p += xsnprintf (p, endp - p, ";C%02x", siggnal);
6175 else
6176 p += xsnprintf (p, endp - p, ";c");
6177
0e998d96 6178 if (remote_multi_process_p (rs) && ptid.is_pid ())
0d8f58ca
PA
6179 {
6180 ptid_t nptid;
6181
6182 /* All (-1) threads of process. */
e99b03dc 6183 nptid = ptid_t (ptid.pid (), -1, 0);
0d8f58ca
PA
6184
6185 p += xsnprintf (p, endp - p, ":");
6186 p = write_ptid (p, endp, nptid);
6187 }
d7e15655 6188 else if (ptid != minus_one_ptid)
0d8f58ca
PA
6189 {
6190 p += xsnprintf (p, endp - p, ":");
6191 p = write_ptid (p, endp, ptid);
6192 }
6193
6194 return p;
6195}
6196
799a2abe
PA
6197/* Clear the thread's private info on resume. */
6198
6199static void
6200resume_clear_thread_private_info (struct thread_info *thread)
6201{
6202 if (thread->priv != NULL)
6203 {
7aabaf9d
SM
6204 remote_thread_info *priv = get_remote_thread_info (thread);
6205
6206 priv->stop_reason = TARGET_STOPPED_BY_NO_REASON;
6207 priv->watch_data_address = 0;
799a2abe
PA
6208 }
6209}
6210
e5ef252a
PA
6211/* Append a vCont continue-with-signal action for threads that have a
6212 non-zero stop signal. */
6213
6b8edb51
PA
6214char *
6215remote_target::append_pending_thread_resumptions (char *p, char *endp,
6216 ptid_t ptid)
e5ef252a 6217{
5b6d1e4f 6218 for (thread_info *thread : all_non_exited_threads (this, ptid))
08036331 6219 if (inferior_ptid != thread->ptid
70509625 6220 && thread->suspend.stop_signal != GDB_SIGNAL_0)
e5ef252a
PA
6221 {
6222 p = append_resumption (p, endp, thread->ptid,
6223 0, thread->suspend.stop_signal);
6224 thread->suspend.stop_signal = GDB_SIGNAL_0;
799a2abe 6225 resume_clear_thread_private_info (thread);
e5ef252a
PA
6226 }
6227
6228 return p;
6229}
6230
7b68ffbb
PA
6231/* Set the target running, using the packets that use Hc
6232 (c/s/C/S). */
6233
6b8edb51
PA
6234void
6235remote_target::remote_resume_with_hc (ptid_t ptid, int step,
6236 gdb_signal siggnal)
7b68ffbb
PA
6237{
6238 struct remote_state *rs = get_remote_state ();
7b68ffbb
PA
6239 char *buf;
6240
6241 rs->last_sent_signal = siggnal;
6242 rs->last_sent_step = step;
6243
6244 /* The c/s/C/S resume packets use Hc, so set the continue
6245 thread. */
d7e15655 6246 if (ptid == minus_one_ptid)
7b68ffbb
PA
6247 set_continue_thread (any_thread_ptid);
6248 else
6249 set_continue_thread (ptid);
6250
5b6d1e4f 6251 for (thread_info *thread : all_non_exited_threads (this))
7b68ffbb
PA
6252 resume_clear_thread_private_info (thread);
6253
8d64371b 6254 buf = rs->buf.data ();
6b8edb51 6255 if (::execution_direction == EXEC_REVERSE)
7b68ffbb
PA
6256 {
6257 /* We don't pass signals to the target in reverse exec mode. */
6258 if (info_verbose && siggnal != GDB_SIGNAL_0)
6259 warning (_(" - Can't pass signal %d to target in reverse: ignored."),
6260 siggnal);
6261
6262 if (step && packet_support (PACKET_bs) == PACKET_DISABLE)
6263 error (_("Remote reverse-step not supported."));
6264 if (!step && packet_support (PACKET_bc) == PACKET_DISABLE)
6265 error (_("Remote reverse-continue not supported."));
6266
6267 strcpy (buf, step ? "bs" : "bc");
6268 }
6269 else if (siggnal != GDB_SIGNAL_0)
6270 {
6271 buf[0] = step ? 'S' : 'C';
6272 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
6273 buf[2] = tohex (((int) siggnal) & 0xf);
6274 buf[3] = '\0';
6275 }
6276 else
6277 strcpy (buf, step ? "s" : "c");
6278
6279 putpkt (buf);
6280}
6281
506fb367
DJ
6282/* Resume the remote inferior by using a "vCont" packet. The thread
6283 to be resumed is PTID; STEP and SIGGNAL indicate whether the
79d7f229
PA
6284 resumed thread should be single-stepped and/or signalled. If PTID
6285 equals minus_one_ptid, then all threads are resumed; the thread to
6286 be stepped and/or signalled is given in the global INFERIOR_PTID.
6287 This function returns non-zero iff it resumes the inferior.
44eaed12 6288
7b68ffbb
PA
6289 This function issues a strict subset of all possible vCont commands
6290 at the moment. */
44eaed12 6291
6b8edb51
PA
6292int
6293remote_target::remote_resume_with_vcont (ptid_t ptid, int step,
6294 enum gdb_signal siggnal)
506fb367
DJ
6295{
6296 struct remote_state *rs = get_remote_state ();
82f73884
PA
6297 char *p;
6298 char *endp;
44eaed12 6299
7b68ffbb 6300 /* No reverse execution actions defined for vCont. */
6b8edb51 6301 if (::execution_direction == EXEC_REVERSE)
7b68ffbb
PA
6302 return 0;
6303
4082afcc 6304 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6b8edb51 6305 remote_vcont_probe ();
44eaed12 6306
4082afcc 6307 if (packet_support (PACKET_vCont) == PACKET_DISABLE)
6d820c5c 6308 return 0;
44eaed12 6309
8d64371b
TT
6310 p = rs->buf.data ();
6311 endp = p + get_remote_packet_size ();
82f73884 6312
506fb367
DJ
6313 /* If we could generate a wider range of packets, we'd have to worry
6314 about overflowing BUF. Should there be a generic
6315 "multi-part-packet" packet? */
6316
0d8f58ca
PA
6317 p += xsnprintf (p, endp - p, "vCont");
6318
d7e15655 6319 if (ptid == magic_null_ptid)
c906108c 6320 {
79d7f229
PA
6321 /* MAGIC_NULL_PTID means that we don't have any active threads,
6322 so we don't have any TID numbers the inferior will
6323 understand. Make sure to only send forms that do not specify
6324 a TID. */
a9cbf802 6325 append_resumption (p, endp, minus_one_ptid, step, siggnal);
506fb367 6326 }
d7e15655 6327 else if (ptid == minus_one_ptid || ptid.is_pid ())
506fb367 6328 {
0d8f58ca
PA
6329 /* Resume all threads (of all processes, or of a single
6330 process), with preference for INFERIOR_PTID. This assumes
6331 inferior_ptid belongs to the set of all threads we are about
6332 to resume. */
a493e3e2 6333 if (step || siggnal != GDB_SIGNAL_0)
82f73884 6334 {
0d8f58ca
PA
6335 /* Step inferior_ptid, with or without signal. */
6336 p = append_resumption (p, endp, inferior_ptid, step, siggnal);
82f73884 6337 }
0d8f58ca 6338
e5ef252a
PA
6339 /* Also pass down any pending signaled resumption for other
6340 threads not the current. */
6341 p = append_pending_thread_resumptions (p, endp, ptid);
6342
0d8f58ca 6343 /* And continue others without a signal. */
a493e3e2 6344 append_resumption (p, endp, ptid, /*step=*/ 0, GDB_SIGNAL_0);
c906108c
SS
6345 }
6346 else
506fb367
DJ
6347 {
6348 /* Scheduler locking; resume only PTID. */
a9cbf802 6349 append_resumption (p, endp, ptid, step, siggnal);
506fb367 6350 }
c906108c 6351
8d64371b 6352 gdb_assert (strlen (rs->buf.data ()) < get_remote_packet_size ());
82f73884 6353 putpkt (rs->buf);
506fb367 6354
6efcd9a8 6355 if (target_is_non_stop_p ())
74531fed
PA
6356 {
6357 /* In non-stop, the stub replies to vCont with "OK". The stop
6358 reply will be reported asynchronously by means of a `%Stop'
6359 notification. */
8d64371b
TT
6360 getpkt (&rs->buf, 0);
6361 if (strcmp (rs->buf.data (), "OK") != 0)
6362 error (_("Unexpected vCont reply in non-stop mode: %s"),
6363 rs->buf.data ());
74531fed
PA
6364 }
6365
506fb367 6366 return 1;
c906108c 6367}
43ff13b4 6368
506fb367
DJ
6369/* Tell the remote machine to resume. */
6370
f6ac5f3d
PA
6371void
6372remote_target::resume (ptid_t ptid, int step, enum gdb_signal siggnal)
43ff13b4 6373{
d01949b6 6374 struct remote_state *rs = get_remote_state ();
43ff13b4 6375
85ad3aaf
PA
6376 /* When connected in non-stop mode, the core resumes threads
6377 individually. Resuming remote threads directly in target_resume
6378 would thus result in sending one packet per thread. Instead, to
6379 minimize roundtrip latency, here we just store the resume
c9d22089
SM
6380 request (put the thread in RESUMED_PENDING_VCONT state); the actual remote
6381 resumption will be done in remote_target::commit_resume, where we'll be
6382 able to do vCont action coalescing. */
f6ac5f3d 6383 if (target_is_non_stop_p () && ::execution_direction != EXEC_REVERSE)
85ad3aaf 6384 {
7aabaf9d 6385 remote_thread_info *remote_thr;
85ad3aaf 6386
d7e15655 6387 if (minus_one_ptid == ptid || ptid.is_pid ())
5b6d1e4f 6388 remote_thr = get_remote_thread_info (this, inferior_ptid);
85ad3aaf 6389 else
5b6d1e4f 6390 remote_thr = get_remote_thread_info (this, ptid);
7aabaf9d 6391
c9d22089
SM
6392 /* We don't expect the core to ask to resume an already resumed (from
6393 its point of view) thread. */
a6c11cbb 6394 gdb_assert (remote_thr->get_resume_state () == resume_state::NOT_RESUMED);
c9d22089
SM
6395
6396 remote_thr->set_resumed_pending_vcont (step, siggnal);
85ad3aaf
PA
6397 return;
6398 }
6399
722247f1
YQ
6400 /* In all-stop, we can't mark REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN
6401 (explained in remote-notif.c:handle_notification) so
6402 remote_notif_process is not called. We need find a place where
6403 it is safe to start a 'vNotif' sequence. It is good to do it
6404 before resuming inferior, because inferior was stopped and no RSP
6405 traffic at that moment. */
6efcd9a8 6406 if (!target_is_non_stop_p ())
5965e028 6407 remote_notif_process (rs->notif_state, &notif_client_stop);
722247f1 6408
f6ac5f3d 6409 rs->last_resume_exec_dir = ::execution_direction;
3a00c802 6410
7b68ffbb
PA
6411 /* Prefer vCont, and fallback to s/c/S/C, which use Hc. */
6412 if (!remote_resume_with_vcont (ptid, step, siggnal))
6b8edb51 6413 remote_resume_with_hc (ptid, step, siggnal);
43ff13b4 6414
c9d22089
SM
6415 /* Update resumed state tracked by the remote target. */
6416 for (thread_info *tp : all_non_exited_threads (this, ptid))
6417 get_remote_thread_info (tp)->set_resumed ();
6418
2acceee2 6419 /* We are about to start executing the inferior, let's register it
0df8b418
MS
6420 with the event loop. NOTE: this is the one place where all the
6421 execution commands end up. We could alternatively do this in each
23860348 6422 of the execution commands in infcmd.c. */
2acceee2
JM
6423 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
6424 into infcmd.c in order to allow inferior function calls to work
23860348 6425 NOT asynchronously. */
362646f5 6426 if (target_can_async_p ())
6a3753b3 6427 target_async (1);
e24a49d8
PA
6428
6429 /* We've just told the target to resume. The remote server will
6430 wait for the inferior to stop, and then send a stop reply. In
6431 the mean time, we can't start another command/query ourselves
74531fed
PA
6432 because the stub wouldn't be ready to process it. This applies
6433 only to the base all-stop protocol, however. In non-stop (which
6434 only supports vCont), the stub replies with an "OK", and is
6435 immediate able to process further serial input. */
6efcd9a8 6436 if (!target_is_non_stop_p ())
74531fed 6437 rs->waiting_for_stop_reply = 1;
43ff13b4 6438}
85ad3aaf 6439
85ad3aaf
PA
6440static int is_pending_fork_parent_thread (struct thread_info *thread);
6441
6442/* Private per-inferior info for target remote processes. */
6443
089354bb 6444struct remote_inferior : public private_inferior
85ad3aaf
PA
6445{
6446 /* Whether we can send a wildcard vCont for this process. */
089354bb 6447 bool may_wildcard_vcont = true;
85ad3aaf
PA
6448};
6449
089354bb
SM
6450/* Get the remote private inferior data associated to INF. */
6451
6452static remote_inferior *
6453get_remote_inferior (inferior *inf)
6454{
6455 if (inf->priv == NULL)
6456 inf->priv.reset (new remote_inferior);
6457
6458 return static_cast<remote_inferior *> (inf->priv.get ());
6459}
6460
f5db4863 6461/* Class used to track the construction of a vCont packet in the
85ad3aaf
PA
6462 outgoing packet buffer. This is used to send multiple vCont
6463 packets if we have more actions than would fit a single packet. */
6464
f5db4863 6465class vcont_builder
85ad3aaf 6466{
f5db4863 6467public:
6b8edb51
PA
6468 explicit vcont_builder (remote_target *remote)
6469 : m_remote (remote)
f5db4863
PA
6470 {
6471 restart ();
6472 }
6473
6474 void flush ();
6475 void push_action (ptid_t ptid, bool step, gdb_signal siggnal);
6476
6477private:
6478 void restart ();
6479
6b8edb51
PA
6480 /* The remote target. */
6481 remote_target *m_remote;
6482
85ad3aaf
PA
6483 /* Pointer to the first action. P points here if no action has been
6484 appended yet. */
f5db4863 6485 char *m_first_action;
85ad3aaf
PA
6486
6487 /* Where the next action will be appended. */
f5db4863 6488 char *m_p;
85ad3aaf
PA
6489
6490 /* The end of the buffer. Must never write past this. */
f5db4863 6491 char *m_endp;
85ad3aaf
PA
6492};
6493
6494/* Prepare the outgoing buffer for a new vCont packet. */
6495
f5db4863
PA
6496void
6497vcont_builder::restart ()
85ad3aaf 6498{
6b8edb51 6499 struct remote_state *rs = m_remote->get_remote_state ();
85ad3aaf 6500
8d64371b
TT
6501 m_p = rs->buf.data ();
6502 m_endp = m_p + m_remote->get_remote_packet_size ();
f5db4863
PA
6503 m_p += xsnprintf (m_p, m_endp - m_p, "vCont");
6504 m_first_action = m_p;
85ad3aaf
PA
6505}
6506
6507/* If the vCont packet being built has any action, send it to the
6508 remote end. */
6509
f5db4863
PA
6510void
6511vcont_builder::flush ()
85ad3aaf
PA
6512{
6513 struct remote_state *rs;
6514
f5db4863 6515 if (m_p == m_first_action)
85ad3aaf
PA
6516 return;
6517
6b8edb51
PA
6518 rs = m_remote->get_remote_state ();
6519 m_remote->putpkt (rs->buf);
8d64371b
TT
6520 m_remote->getpkt (&rs->buf, 0);
6521 if (strcmp (rs->buf.data (), "OK") != 0)
6522 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf.data ());
85ad3aaf
PA
6523}
6524
6525/* The largest action is range-stepping, with its two addresses. This
6526 is more than sufficient. If a new, bigger action is created, it'll
6527 quickly trigger a failed assertion in append_resumption (and we'll
6528 just bump this). */
6529#define MAX_ACTION_SIZE 200
6530
6531/* Append a new vCont action in the outgoing packet being built. If
6532 the action doesn't fit the packet along with previous actions, push
6533 what we've got so far to the remote end and start over a new vCont
6534 packet (with the new action). */
6535
f5db4863
PA
6536void
6537vcont_builder::push_action (ptid_t ptid, bool step, gdb_signal siggnal)
85ad3aaf
PA
6538{
6539 char buf[MAX_ACTION_SIZE + 1];
85ad3aaf 6540
6b8edb51
PA
6541 char *endp = m_remote->append_resumption (buf, buf + sizeof (buf),
6542 ptid, step, siggnal);
85ad3aaf
PA
6543
6544 /* Check whether this new action would fit in the vCont packet along
6545 with previous actions. If not, send what we've got so far and
6546 start a new vCont packet. */
f5db4863
PA
6547 size_t rsize = endp - buf;
6548 if (rsize > m_endp - m_p)
85ad3aaf 6549 {
f5db4863
PA
6550 flush ();
6551 restart ();
85ad3aaf
PA
6552
6553 /* Should now fit. */
f5db4863 6554 gdb_assert (rsize <= m_endp - m_p);
85ad3aaf
PA
6555 }
6556
f5db4863
PA
6557 memcpy (m_p, buf, rsize);
6558 m_p += rsize;
6559 *m_p = '\0';
85ad3aaf
PA
6560}
6561
6562/* to_commit_resume implementation. */
6563
f6ac5f3d
PA
6564void
6565remote_target::commit_resume ()
85ad3aaf 6566{
85ad3aaf
PA
6567 int any_process_wildcard;
6568 int may_global_wildcard_vcont;
85ad3aaf
PA
6569
6570 /* If connected in all-stop mode, we'd send the remote resume
6571 request directly from remote_resume. Likewise if
6572 reverse-debugging, as there are no defined vCont actions for
6573 reverse execution. */
f6ac5f3d 6574 if (!target_is_non_stop_p () || ::execution_direction == EXEC_REVERSE)
85ad3aaf
PA
6575 return;
6576
6577 /* Try to send wildcard actions ("vCont;c" or "vCont;c:pPID.-1")
6578 instead of resuming all threads of each process individually.
6579 However, if any thread of a process must remain halted, we can't
6580 send wildcard resumes and must send one action per thread.
6581
6582 Care must be taken to not resume threads/processes the server
6583 side already told us are stopped, but the core doesn't know about
6584 yet, because the events are still in the vStopped notification
6585 queue. For example:
6586
6587 #1 => vCont s:p1.1;c
6588 #2 <= OK
6589 #3 <= %Stopped T05 p1.1
6590 #4 => vStopped
6591 #5 <= T05 p1.2
6592 #6 => vStopped
6593 #7 <= OK
6594 #8 (infrun handles the stop for p1.1 and continues stepping)
6595 #9 => vCont s:p1.1;c
6596
6597 The last vCont above would resume thread p1.2 by mistake, because
6598 the server has no idea that the event for p1.2 had not been
6599 handled yet.
6600
6601 The server side must similarly ignore resume actions for the
6602 thread that has a pending %Stopped notification (and any other
6603 threads with events pending), until GDB acks the notification
6604 with vStopped. Otherwise, e.g., the following case is
6605 mishandled:
6606
6607 #1 => g (or any other packet)
6608 #2 <= [registers]
6609 #3 <= %Stopped T05 p1.2
6610 #4 => vCont s:p1.1;c
6611 #5 <= OK
6612
6613 Above, the server must not resume thread p1.2. GDB can't know
6614 that p1.2 stopped until it acks the %Stopped notification, and
6615 since from GDB's perspective all threads should be running, it
6616 sends a "c" action.
6617
6618 Finally, special care must also be given to handling fork/vfork
6619 events. A (v)fork event actually tells us that two processes
6620 stopped -- the parent and the child. Until we follow the fork,
6621 we must not resume the child. Therefore, if we have a pending
6622 fork follow, we must not send a global wildcard resume action
6623 (vCont;c). We can still send process-wide wildcards though. */
6624
6625 /* Start by assuming a global wildcard (vCont;c) is possible. */
6626 may_global_wildcard_vcont = 1;
6627
6628 /* And assume every process is individually wildcard-able too. */
5b6d1e4f 6629 for (inferior *inf : all_non_exited_inferiors (this))
85ad3aaf 6630 {
089354bb
SM
6631 remote_inferior *priv = get_remote_inferior (inf);
6632
6633 priv->may_wildcard_vcont = true;
85ad3aaf
PA
6634 }
6635
6636 /* Check for any pending events (not reported or processed yet) and
6637 disable process and global wildcard resumes appropriately. */
6638 check_pending_events_prevent_wildcard_vcont (&may_global_wildcard_vcont);
6639
5b6d1e4f 6640 for (thread_info *tp : all_non_exited_threads (this))
85ad3aaf 6641 {
c9d22089
SM
6642 remote_thread_info *priv = get_remote_thread_info (tp);
6643
85ad3aaf
PA
6644 /* If a thread of a process is not meant to be resumed, then we
6645 can't wildcard that process. */
a6c11cbb 6646 if (priv->get_resume_state () == resume_state::NOT_RESUMED)
85ad3aaf 6647 {
089354bb 6648 get_remote_inferior (tp->inf)->may_wildcard_vcont = false;
85ad3aaf
PA
6649
6650 /* And if we can't wildcard a process, we can't wildcard
6651 everything either. */
6652 may_global_wildcard_vcont = 0;
6653 continue;
6654 }
6655
6656 /* If a thread is the parent of an unfollowed fork, then we
6657 can't do a global wildcard, as that would resume the fork
6658 child. */
6659 if (is_pending_fork_parent_thread (tp))
6660 may_global_wildcard_vcont = 0;
6661 }
6662
6663 /* Now let's build the vCont packet(s). Actions must be appended
6664 from narrower to wider scopes (thread -> process -> global). If
6665 we end up with too many actions for a single packet vcont_builder
6666 flushes the current vCont packet to the remote side and starts a
6667 new one. */
6b8edb51 6668 struct vcont_builder vcont_builder (this);
85ad3aaf
PA
6669
6670 /* Threads first. */
5b6d1e4f 6671 for (thread_info *tp : all_non_exited_threads (this))
85ad3aaf 6672 {
7aabaf9d 6673 remote_thread_info *remote_thr = get_remote_thread_info (tp);
85ad3aaf 6674
c9d22089
SM
6675 /* If the thread was previously vCont-resumed, no need to send a specific
6676 action for it. If we didn't receive a resume request for it, don't
6677 send an action for it either. */
a6c11cbb 6678 if (remote_thr->get_resume_state () != resume_state::RESUMED_PENDING_VCONT)
85ad3aaf
PA
6679 continue;
6680
6681 gdb_assert (!thread_is_in_step_over_chain (tp));
6682
c9d22089
SM
6683 const resumed_pending_vcont_info &info
6684 = remote_thr->resumed_pending_vcont_info ();
85ad3aaf 6685
c9d22089
SM
6686 /* Check if we need to send a specific action for this thread. If not,
6687 it will be included in a wildcard resume instead. */
6688 if (info.step || info.sig != GDB_SIGNAL_0
6689 || !get_remote_inferior (tp->inf)->may_wildcard_vcont)
6690 vcont_builder.push_action (tp->ptid, info.step, info.sig);
6691
6692 remote_thr->set_resumed ();
85ad3aaf
PA
6693 }
6694
6695 /* Now check whether we can send any process-wide wildcard. This is
6696 to avoid sending a global wildcard in the case nothing is
6697 supposed to be resumed. */
6698 any_process_wildcard = 0;
6699
5b6d1e4f 6700 for (inferior *inf : all_non_exited_inferiors (this))
85ad3aaf 6701 {
089354bb 6702 if (get_remote_inferior (inf)->may_wildcard_vcont)
85ad3aaf
PA
6703 {
6704 any_process_wildcard = 1;
6705 break;
6706 }
6707 }
6708
6709 if (any_process_wildcard)
6710 {
6711 /* If all processes are wildcard-able, then send a single "c"
6712 action, otherwise, send an "all (-1) threads of process"
6713 continue action for each running process, if any. */
6714 if (may_global_wildcard_vcont)
6715 {
f5db4863
PA
6716 vcont_builder.push_action (minus_one_ptid,
6717 false, GDB_SIGNAL_0);
85ad3aaf
PA
6718 }
6719 else
6720 {
5b6d1e4f 6721 for (inferior *inf : all_non_exited_inferiors (this))
85ad3aaf 6722 {
089354bb 6723 if (get_remote_inferior (inf)->may_wildcard_vcont)
85ad3aaf 6724 {
f2907e49 6725 vcont_builder.push_action (ptid_t (inf->pid),
f5db4863 6726 false, GDB_SIGNAL_0);
85ad3aaf
PA
6727 }
6728 }
6729 }
6730 }
6731
f5db4863 6732 vcont_builder.flush ();
85ad3aaf
PA
6733}
6734
c906108c 6735\f
43ff13b4 6736
74531fed
PA
6737/* Non-stop version of target_stop. Uses `vCont;t' to stop a remote
6738 thread, all threads of a remote process, or all threads of all
6739 processes. */
6740
6b8edb51
PA
6741void
6742remote_target::remote_stop_ns (ptid_t ptid)
74531fed
PA
6743{
6744 struct remote_state *rs = get_remote_state ();
8d64371b
TT
6745 char *p = rs->buf.data ();
6746 char *endp = p + get_remote_packet_size ();
74531fed 6747
5b6d1e4f
PA
6748 /* FIXME: This supports_vCont_probed check is a workaround until
6749 packet_support is per-connection. */
6750 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN
6751 || !rs->supports_vCont_probed)
6b8edb51 6752 remote_vcont_probe ();
74531fed 6753
d458bd84 6754 if (!rs->supports_vCont.t)
74531fed
PA
6755 error (_("Remote server does not support stopping threads"));
6756
d7e15655 6757 if (ptid == minus_one_ptid
0e998d96 6758 || (!remote_multi_process_p (rs) && ptid.is_pid ()))
74531fed
PA
6759 p += xsnprintf (p, endp - p, "vCont;t");
6760 else
6761 {
6762 ptid_t nptid;
6763
74531fed
PA
6764 p += xsnprintf (p, endp - p, "vCont;t:");
6765
0e998d96 6766 if (ptid.is_pid ())
74531fed 6767 /* All (-1) threads of process. */
e99b03dc 6768 nptid = ptid_t (ptid.pid (), -1, 0);
74531fed
PA
6769 else
6770 {
6771 /* Small optimization: if we already have a stop reply for
6772 this thread, no use in telling the stub we want this
6773 stopped. */
6774 if (peek_stop_reply (ptid))
6775 return;
6776
6777 nptid = ptid;
6778 }
6779
a9cbf802 6780 write_ptid (p, endp, nptid);
74531fed
PA
6781 }
6782
6783 /* In non-stop, we get an immediate OK reply. The stop reply will
6784 come in asynchronously by notification. */
6785 putpkt (rs->buf);
8d64371b
TT
6786 getpkt (&rs->buf, 0);
6787 if (strcmp (rs->buf.data (), "OK") != 0)
a068643d 6788 error (_("Stopping %s failed: %s"), target_pid_to_str (ptid).c_str (),
8d64371b 6789 rs->buf.data ());
74531fed
PA
6790}
6791
bfedc46a
PA
6792/* All-stop version of target_interrupt. Sends a break or a ^C to
6793 interrupt the remote target. It is undefined which thread of which
6794 process reports the interrupt. */
74531fed 6795
6b8edb51
PA
6796void
6797remote_target::remote_interrupt_as ()
74531fed
PA
6798{
6799 struct remote_state *rs = get_remote_state ();
6800
3a29589a
DJ
6801 rs->ctrlc_pending_p = 1;
6802
74531fed
PA
6803 /* If the inferior is stopped already, but the core didn't know
6804 about it yet, just ignore the request. The cached wait status
6805 will be collected in remote_wait. */
6806 if (rs->cached_wait_status)
6807 return;
6808
9a7071a8
JB
6809 /* Send interrupt_sequence to remote target. */
6810 send_interrupt_sequence ();
74531fed
PA
6811}
6812
de979965
PA
6813/* Non-stop version of target_interrupt. Uses `vCtrlC' to interrupt
6814 the remote target. It is undefined which thread of which process
e42de8c7
PA
6815 reports the interrupt. Throws an error if the packet is not
6816 supported by the server. */
de979965 6817
6b8edb51
PA
6818void
6819remote_target::remote_interrupt_ns ()
de979965
PA
6820{
6821 struct remote_state *rs = get_remote_state ();
8d64371b
TT
6822 char *p = rs->buf.data ();
6823 char *endp = p + get_remote_packet_size ();
de979965
PA
6824
6825 xsnprintf (p, endp - p, "vCtrlC");
6826
6827 /* In non-stop, we get an immediate OK reply. The stop reply will
6828 come in asynchronously by notification. */
6829 putpkt (rs->buf);
8d64371b 6830 getpkt (&rs->buf, 0);
de979965
PA
6831
6832 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCtrlC]))
6833 {
6834 case PACKET_OK:
6835 break;
6836 case PACKET_UNKNOWN:
e42de8c7 6837 error (_("No support for interrupting the remote target."));
de979965 6838 case PACKET_ERROR:
8d64371b 6839 error (_("Interrupting target failed: %s"), rs->buf.data ());
de979965 6840 }
de979965
PA
6841}
6842
bfedc46a 6843/* Implement the to_stop function for the remote targets. */
74531fed 6844
f6ac5f3d
PA
6845void
6846remote_target::stop (ptid_t ptid)
c906108c 6847{
2189c312 6848 REMOTE_SCOPED_DEBUG_ENTER_EXIT;
c906108c 6849
6efcd9a8 6850 if (target_is_non_stop_p ())
74531fed 6851 remote_stop_ns (ptid);
c906108c 6852 else
bfedc46a
PA
6853 {
6854 /* We don't currently have a way to transparently pause the
6855 remote target in all-stop mode. Interrupt it instead. */
de979965 6856 remote_interrupt_as ();
bfedc46a
PA
6857 }
6858}
6859
6860/* Implement the to_interrupt function for the remote targets. */
6861
f6ac5f3d
PA
6862void
6863remote_target::interrupt ()
bfedc46a 6864{
2189c312 6865 REMOTE_SCOPED_DEBUG_ENTER_EXIT;
bfedc46a 6866
e42de8c7
PA
6867 if (target_is_non_stop_p ())
6868 remote_interrupt_ns ();
bfedc46a 6869 else
e42de8c7 6870 remote_interrupt_as ();
c906108c
SS
6871}
6872
93692b58
PA
6873/* Implement the to_pass_ctrlc function for the remote targets. */
6874
f6ac5f3d
PA
6875void
6876remote_target::pass_ctrlc ()
93692b58 6877{
2189c312 6878 REMOTE_SCOPED_DEBUG_ENTER_EXIT;
93692b58 6879
2189c312 6880 struct remote_state *rs = get_remote_state ();
93692b58
PA
6881
6882 /* If we're starting up, we're not fully synced yet. Quit
6883 immediately. */
6884 if (rs->starting_up)
6885 quit ();
6886 /* If ^C has already been sent once, offer to disconnect. */
6887 else if (rs->ctrlc_pending_p)
6888 interrupt_query ();
6889 else
e671cd59 6890 target_interrupt ();
93692b58
PA
6891}
6892
c906108c
SS
6893/* Ask the user what to do when an interrupt is received. */
6894
6b8edb51
PA
6895void
6896remote_target::interrupt_query ()
c906108c 6897{
abc56d60 6898 struct remote_state *rs = get_remote_state ();
c906108c 6899
abc56d60 6900 if (rs->waiting_for_stop_reply && rs->ctrlc_pending_p)
74531fed 6901 {
abc56d60
PA
6902 if (query (_("The target is not responding to interrupt requests.\n"
6903 "Stop debugging it? ")))
74531fed 6904 {
5b6d1e4f 6905 remote_unpush_target (this);
abc56d60 6906 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
74531fed
PA
6907 }
6908 }
abc56d60
PA
6909 else
6910 {
6911 if (query (_("Interrupted while waiting for the program.\n"
6912 "Give up waiting? ")))
6913 quit ();
6914 }
c906108c
SS
6915}
6916
6426a772
JM
6917/* Enable/disable target terminal ownership. Most targets can use
6918 terminal groups to control terminal ownership. Remote targets are
6919 different in that explicit transfer of ownership to/from GDB/target
23860348 6920 is required. */
6426a772 6921
f6ac5f3d
PA
6922void
6923remote_target::terminal_inferior ()
6426a772 6924{
6426a772
JM
6925 /* NOTE: At this point we could also register our selves as the
6926 recipient of all input. Any characters typed could then be
23860348 6927 passed on down to the target. */
6426a772
JM
6928}
6929
f6ac5f3d
PA
6930void
6931remote_target::terminal_ours ()
6426a772 6932{
6426a772
JM
6933}
6934
176a6961 6935static void
05be00a8 6936remote_console_output (const char *msg)
c906108c 6937{
05be00a8 6938 const char *p;
c906108c 6939
c5aa993b 6940 for (p = msg; p[0] && p[1]; p += 2)
c906108c
SS
6941 {
6942 char tb[2];
6943 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
a744cf53 6944
c906108c
SS
6945 tb[0] = c;
6946 tb[1] = 0;
da5bd37e 6947 gdb_stdtarg->puts (tb);
c906108c 6948 }
da5bd37e 6949 gdb_stdtarg->flush ();
00db5b94 6950}
74531fed 6951
32603266 6952struct stop_reply : public notif_event
74531fed 6953{
32603266 6954 ~stop_reply ();
74531fed 6955
722247f1 6956 /* The identifier of the thread about this event */
74531fed
PA
6957 ptid_t ptid;
6958
340e3c99 6959 /* The remote state this event is associated with. When the remote
bcc75809
YQ
6960 connection, represented by a remote_state object, is closed,
6961 all the associated stop_reply events should be released. */
6962 struct remote_state *rs;
6963
74531fed
PA
6964 struct target_waitstatus ws;
6965
5cd63fda
PA
6966 /* The architecture associated with the expedited registers. */
6967 gdbarch *arch;
6968
15148d6a
PA
6969 /* Expedited registers. This makes remote debugging a bit more
6970 efficient for those targets that provide critical registers as
6971 part of their normal status mechanism (as another roundtrip to
6972 fetch them is avoided). */
32603266 6973 std::vector<cached_reg_t> regcache;
74531fed 6974
f7e6eed5
PA
6975 enum target_stop_reason stop_reason;
6976
74531fed
PA
6977 CORE_ADDR watch_data_address;
6978
dc146f7c 6979 int core;
32603266 6980};
c906108c 6981
221e1a37
PA
6982/* Return the length of the stop reply queue. */
6983
6b8edb51
PA
6984int
6985remote_target::stop_reply_queue_length ()
221e1a37 6986{
6b8edb51 6987 remote_state *rs = get_remote_state ();
953edf2b 6988 return rs->stop_reply_queue.size ();
221e1a37
PA
6989}
6990
cb8c24b6 6991static void
6b8edb51 6992remote_notif_stop_parse (remote_target *remote,
bb277751 6993 struct notif_client *self, const char *buf,
722247f1
YQ
6994 struct notif_event *event)
6995{
6b8edb51 6996 remote->remote_parse_stop_reply (buf, (struct stop_reply *) event);
722247f1
YQ
6997}
6998
6999static void
6b8edb51 7000remote_notif_stop_ack (remote_target *remote,
bb277751 7001 struct notif_client *self, const char *buf,
722247f1
YQ
7002 struct notif_event *event)
7003{
7004 struct stop_reply *stop_reply = (struct stop_reply *) event;
7005
7006 /* acknowledge */
6b8edb51 7007 putpkt (remote, self->ack_command);
722247f1
YQ
7008
7009 if (stop_reply->ws.kind == TARGET_WAITKIND_IGNORE)
6b8edb51 7010 {
722247f1
YQ
7011 /* We got an unknown stop reply. */
7012 error (_("Unknown stop reply"));
6b8edb51 7013 }
722247f1 7014
6b8edb51 7015 remote->push_stop_reply (stop_reply);
722247f1
YQ
7016}
7017
7018static int
6b8edb51
PA
7019remote_notif_stop_can_get_pending_events (remote_target *remote,
7020 struct notif_client *self)
722247f1
YQ
7021{
7022 /* We can't get pending events in remote_notif_process for
7023 notification stop, and we have to do this in remote_wait_ns
7024 instead. If we fetch all queued events from stub, remote stub
7025 may exit and we have no chance to process them back in
7026 remote_wait_ns. */
6b8edb51
PA
7027 remote_state *rs = remote->get_remote_state ();
7028 mark_async_event_handler (rs->remote_async_inferior_event_token);
722247f1
YQ
7029 return 0;
7030}
7031
32603266 7032stop_reply::~stop_reply ()
722247f1 7033{
32603266
TT
7034 for (cached_reg_t &reg : regcache)
7035 xfree (reg.data);
722247f1
YQ
7036}
7037
32603266
TT
7038static notif_event_up
7039remote_notif_stop_alloc_reply ()
722247f1 7040{
32603266 7041 return notif_event_up (new struct stop_reply ());
722247f1
YQ
7042}
7043
7044/* A client of notification Stop. */
7045
7046struct notif_client notif_client_stop =
7047{
7048 "Stop",
7049 "vStopped",
7050 remote_notif_stop_parse,
7051 remote_notif_stop_ack,
7052 remote_notif_stop_can_get_pending_events,
7053 remote_notif_stop_alloc_reply,
f48ff2a7 7054 REMOTE_NOTIF_STOP,
722247f1
YQ
7055};
7056
85ad3aaf 7057/* Determine if THREAD_PTID is a pending fork parent thread. ARG contains
cbb8991c
DB
7058 the pid of the process that owns the threads we want to check, or
7059 -1 if we want to check all threads. */
7060
7061static int
7062is_pending_fork_parent (struct target_waitstatus *ws, int event_pid,
7063 ptid_t thread_ptid)
7064{
7065 if (ws->kind == TARGET_WAITKIND_FORKED
7066 || ws->kind == TARGET_WAITKIND_VFORKED)
7067 {
e99b03dc 7068 if (event_pid == -1 || event_pid == thread_ptid.pid ())
cbb8991c
DB
7069 return 1;
7070 }
7071
7072 return 0;
7073}
7074
85ad3aaf
PA
7075/* Return the thread's pending status used to determine whether the
7076 thread is a fork parent stopped at a fork event. */
7077
7078static struct target_waitstatus *
7079thread_pending_fork_status (struct thread_info *thread)
7080{
7081 if (thread->suspend.waitstatus_pending_p)
7082 return &thread->suspend.waitstatus;
7083 else
7084 return &thread->pending_follow;
7085}
7086
7087/* Determine if THREAD is a pending fork parent thread. */
7088
7089static int
7090is_pending_fork_parent_thread (struct thread_info *thread)
7091{
7092 struct target_waitstatus *ws = thread_pending_fork_status (thread);
7093 int pid = -1;
7094
7095 return is_pending_fork_parent (ws, pid, thread->ptid);
7096}
7097
cbb8991c
DB
7098/* If CONTEXT contains any fork child threads that have not been
7099 reported yet, remove them from the CONTEXT list. If such a
7100 thread exists it is because we are stopped at a fork catchpoint
7101 and have not yet called follow_fork, which will set up the
7102 host-side data structures for the new process. */
7103
6b8edb51
PA
7104void
7105remote_target::remove_new_fork_children (threads_listing_context *context)
cbb8991c 7106{
cbb8991c
DB
7107 int pid = -1;
7108 struct notif_client *notif = &notif_client_stop;
cbb8991c
DB
7109
7110 /* For any threads stopped at a fork event, remove the corresponding
7111 fork child threads from the CONTEXT list. */
5b6d1e4f 7112 for (thread_info *thread : all_non_exited_threads (this))
cbb8991c 7113 {
85ad3aaf 7114 struct target_waitstatus *ws = thread_pending_fork_status (thread);
cbb8991c
DB
7115
7116 if (is_pending_fork_parent (ws, pid, thread->ptid))
21fe1c75 7117 context->remove_thread (ws->value.related_pid);
cbb8991c
DB
7118 }
7119
7120 /* Check for any pending fork events (not reported or processed yet)
7121 in process PID and remove those fork child threads from the
7122 CONTEXT list as well. */
7123 remote_notif_get_pending_events (notif);
953edf2b
TT
7124 for (auto &event : get_remote_state ()->stop_reply_queue)
7125 if (event->ws.kind == TARGET_WAITKIND_FORKED
7126 || event->ws.kind == TARGET_WAITKIND_VFORKED
7127 || event->ws.kind == TARGET_WAITKIND_THREAD_EXITED)
7128 context->remove_thread (event->ws.value.related_pid);
85ad3aaf
PA
7129}
7130
7131/* Check whether any event pending in the vStopped queue would prevent
7132 a global or process wildcard vCont action. Clear
7133 *may_global_wildcard if we can't do a global wildcard (vCont;c),
7134 and clear the event inferior's may_wildcard_vcont flag if we can't
7135 do a process-wide wildcard resume (vCont;c:pPID.-1). */
7136
6b8edb51
PA
7137void
7138remote_target::check_pending_events_prevent_wildcard_vcont
7139 (int *may_global_wildcard)
85ad3aaf
PA
7140{
7141 struct notif_client *notif = &notif_client_stop;
7142
7143 remote_notif_get_pending_events (notif);
953edf2b
TT
7144 for (auto &event : get_remote_state ()->stop_reply_queue)
7145 {
7146 if (event->ws.kind == TARGET_WAITKIND_NO_RESUMED
7147 || event->ws.kind == TARGET_WAITKIND_NO_HISTORY)
7148 continue;
85ad3aaf 7149
953edf2b
TT
7150 if (event->ws.kind == TARGET_WAITKIND_FORKED
7151 || event->ws.kind == TARGET_WAITKIND_VFORKED)
7152 *may_global_wildcard = 0;
722247f1 7153
5b6d1e4f 7154 struct inferior *inf = find_inferior_ptid (this, event->ptid);
722247f1 7155
953edf2b
TT
7156 /* This may be the first time we heard about this process.
7157 Regardless, we must not do a global wildcard resume, otherwise
7158 we'd resume this process too. */
7159 *may_global_wildcard = 0;
7160 if (inf != NULL)
7161 get_remote_inferior (inf)->may_wildcard_vcont = false;
722247f1 7162 }
722247f1
YQ
7163}
7164
f48ff2a7 7165/* Discard all pending stop replies of inferior INF. */
c906108c 7166
6b8edb51
PA
7167void
7168remote_target::discard_pending_stop_replies (struct inferior *inf)
c906108c 7169{
f48ff2a7
YQ
7170 struct stop_reply *reply;
7171 struct remote_state *rs = get_remote_state ();
7172 struct remote_notif_state *rns = rs->notif_state;
7173
7174 /* This function can be notified when an inferior exists. When the
7175 target is not remote, the notification state is NULL. */
7176 if (rs->remote_desc == NULL)
7177 return;
7178
7179 reply = (struct stop_reply *) rns->pending_event[notif_client_stop.id];
c906108c 7180
74531fed 7181 /* Discard the in-flight notification. */
e99b03dc 7182 if (reply != NULL && reply->ptid.pid () == inf->pid)
74531fed 7183 {
32603266 7184 delete reply;
f48ff2a7 7185 rns->pending_event[notif_client_stop.id] = NULL;
74531fed 7186 }
c906108c 7187
74531fed
PA
7188 /* Discard the stop replies we have already pulled with
7189 vStopped. */
953edf2b
TT
7190 auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7191 rs->stop_reply_queue.end (),
7192 [=] (const stop_reply_up &event)
7193 {
7194 return event->ptid.pid () == inf->pid;
7195 });
7196 rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
bcc75809
YQ
7197}
7198
7199/* Discard the stop replies for RS in stop_reply_queue. */
f48ff2a7 7200
6b8edb51
PA
7201void
7202remote_target::discard_pending_stop_replies_in_queue ()
f48ff2a7 7203{
6b8edb51 7204 remote_state *rs = get_remote_state ();
f48ff2a7 7205
f48ff2a7
YQ
7206 /* Discard the stop replies we have already pulled with
7207 vStopped. */
953edf2b
TT
7208 auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7209 rs->stop_reply_queue.end (),
7210 [=] (const stop_reply_up &event)
7211 {
7212 return event->rs == rs;
7213 });
7214 rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
74531fed 7215}
43ff13b4 7216
722247f1
YQ
7217/* Remove the first reply in 'stop_reply_queue' which matches
7218 PTID. */
2e9f7625 7219
6b8edb51
PA
7220struct stop_reply *
7221remote_target::remote_notif_remove_queued_reply (ptid_t ptid)
74531fed 7222{
953edf2b 7223 remote_state *rs = get_remote_state ();
722247f1 7224
953edf2b
TT
7225 auto iter = std::find_if (rs->stop_reply_queue.begin (),
7226 rs->stop_reply_queue.end (),
7227 [=] (const stop_reply_up &event)
7228 {
7229 return event->ptid.matches (ptid);
7230 });
7231 struct stop_reply *result;
7232 if (iter == rs->stop_reply_queue.end ())
7233 result = nullptr;
7234 else
7235 {
7236 result = iter->release ();
7237 rs->stop_reply_queue.erase (iter);
7238 }
722247f1 7239
722247f1
YQ
7240 if (notif_debug)
7241 fprintf_unfiltered (gdb_stdlog,
7242 "notif: discard queued event: 'Stop' in %s\n",
a068643d 7243 target_pid_to_str (ptid).c_str ());
a744cf53 7244
953edf2b 7245 return result;
74531fed 7246}
75c99385 7247
74531fed
PA
7248/* Look for a queued stop reply belonging to PTID. If one is found,
7249 remove it from the queue, and return it. Returns NULL if none is
7250 found. If there are still queued events left to process, tell the
7251 event loop to get back to target_wait soon. */
e24a49d8 7252
6b8edb51
PA
7253struct stop_reply *
7254remote_target::queued_stop_reply (ptid_t ptid)
74531fed 7255{
953edf2b 7256 remote_state *rs = get_remote_state ();
722247f1 7257 struct stop_reply *r = remote_notif_remove_queued_reply (ptid);
74531fed 7258
953edf2b 7259 if (!rs->stop_reply_queue.empty ())
6b8edb51 7260 {
6b8edb51
PA
7261 /* There's still at least an event left. */
7262 mark_async_event_handler (rs->remote_async_inferior_event_token);
7263 }
74531fed 7264
722247f1 7265 return r;
74531fed
PA
7266}
7267
7268/* Push a fully parsed stop reply in the stop reply queue. Since we
7269 know that we now have at least one queued event left to pass to the
7270 core side, tell the event loop to get back to target_wait soon. */
7271
6b8edb51
PA
7272void
7273remote_target::push_stop_reply (struct stop_reply *new_event)
74531fed 7274{
6b8edb51 7275 remote_state *rs = get_remote_state ();
953edf2b 7276 rs->stop_reply_queue.push_back (stop_reply_up (new_event));
74531fed 7277
722247f1
YQ
7278 if (notif_debug)
7279 fprintf_unfiltered (gdb_stdlog,
7280 "notif: push 'Stop' %s to queue %d\n",
a068643d 7281 target_pid_to_str (new_event->ptid).c_str (),
953edf2b 7282 int (rs->stop_reply_queue.size ()));
74531fed 7283
6b8edb51 7284 mark_async_event_handler (rs->remote_async_inferior_event_token);
74531fed
PA
7285}
7286
7287/* Returns true if we have a stop reply for PTID. */
7288
6b8edb51
PA
7289int
7290remote_target::peek_stop_reply (ptid_t ptid)
74531fed 7291{
6b8edb51 7292 remote_state *rs = get_remote_state ();
953edf2b
TT
7293 for (auto &event : rs->stop_reply_queue)
7294 if (ptid == event->ptid
7295 && event->ws.kind == TARGET_WAITKIND_STOPPED)
7296 return 1;
7297 return 0;
74531fed
PA
7298}
7299
26d56a93
SL
7300/* Helper for remote_parse_stop_reply. Return nonzero if the substring
7301 starting with P and ending with PEND matches PREFIX. */
7302
7303static int
7304strprefix (const char *p, const char *pend, const char *prefix)
7305{
7306 for ( ; p < pend; p++, prefix++)
7307 if (*p != *prefix)
7308 return 0;
7309 return *prefix == '\0';
7310}
7311
74531fed
PA
7312/* Parse the stop reply in BUF. Either the function succeeds, and the
7313 result is stored in EVENT, or throws an error. */
7314
6b8edb51 7315void
bb277751 7316remote_target::remote_parse_stop_reply (const char *buf, stop_reply *event)
74531fed 7317{
5cd63fda 7318 remote_arch_state *rsa = NULL;
74531fed 7319 ULONGEST addr;
256642e8 7320 const char *p;
94585166 7321 int skipregs = 0;
74531fed
PA
7322
7323 event->ptid = null_ptid;
bcc75809 7324 event->rs = get_remote_state ();
74531fed
PA
7325 event->ws.kind = TARGET_WAITKIND_IGNORE;
7326 event->ws.value.integer = 0;
f7e6eed5 7327 event->stop_reason = TARGET_STOPPED_BY_NO_REASON;
32603266 7328 event->regcache.clear ();
dc146f7c 7329 event->core = -1;
74531fed
PA
7330
7331 switch (buf[0])
7332 {
7333 case 'T': /* Status with PC, SP, FP, ... */
cea39f65
MS
7334 /* Expedited reply, containing Signal, {regno, reg} repeat. */
7335 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
7336 ss = signal number
7337 n... = register number
7338 r... = register contents
7339 */
7340
7341 p = &buf[3]; /* after Txx */
7342 while (*p)
7343 {
256642e8 7344 const char *p1;
cea39f65 7345 int fieldsize;
43ff13b4 7346
1f10ba14
PA
7347 p1 = strchr (p, ':');
7348 if (p1 == NULL)
7349 error (_("Malformed packet(a) (missing colon): %s\n\
7350Packet: '%s'\n"),
7351 p, buf);
7352 if (p == p1)
7353 error (_("Malformed packet(a) (missing register number): %s\n\
7354Packet: '%s'\n"),
7355 p, buf);
3c3bea1c 7356
1f10ba14
PA
7357 /* Some "registers" are actually extended stop information.
7358 Note if you're adding a new entry here: GDB 7.9 and
7359 earlier assume that all register "numbers" that start
7360 with an hex digit are real register numbers. Make sure
7361 the server only sends such a packet if it knows the
7362 client understands it. */
c8e38a49 7363
26d56a93 7364 if (strprefix (p, p1, "thread"))
1f10ba14 7365 event->ptid = read_ptid (++p1, &p);
82075af2
JS
7366 else if (strprefix (p, p1, "syscall_entry"))
7367 {
7368 ULONGEST sysno;
7369
7370 event->ws.kind = TARGET_WAITKIND_SYSCALL_ENTRY;
7371 p = unpack_varlen_hex (++p1, &sysno);
7372 event->ws.value.syscall_number = (int) sysno;
7373 }
7374 else if (strprefix (p, p1, "syscall_return"))
7375 {
7376 ULONGEST sysno;
7377
7378 event->ws.kind = TARGET_WAITKIND_SYSCALL_RETURN;
7379 p = unpack_varlen_hex (++p1, &sysno);
7380 event->ws.value.syscall_number = (int) sysno;
7381 }
26d56a93
SL
7382 else if (strprefix (p, p1, "watch")
7383 || strprefix (p, p1, "rwatch")
7384 || strprefix (p, p1, "awatch"))
cea39f65 7385 {
f7e6eed5 7386 event->stop_reason = TARGET_STOPPED_BY_WATCHPOINT;
1f10ba14
PA
7387 p = unpack_varlen_hex (++p1, &addr);
7388 event->watch_data_address = (CORE_ADDR) addr;
cea39f65 7389 }
26d56a93 7390 else if (strprefix (p, p1, "swbreak"))
f7e6eed5
PA
7391 {
7392 event->stop_reason = TARGET_STOPPED_BY_SW_BREAKPOINT;
7393
7394 /* Make sure the stub doesn't forget to indicate support
7395 with qSupported. */
7396 if (packet_support (PACKET_swbreak_feature) != PACKET_ENABLE)
7397 error (_("Unexpected swbreak stop reason"));
7398
7399 /* The value part is documented as "must be empty",
7400 though we ignore it, in case we ever decide to make
7401 use of it in a backward compatible way. */
8424cc97 7402 p = strchrnul (p1 + 1, ';');
f7e6eed5 7403 }
26d56a93 7404 else if (strprefix (p, p1, "hwbreak"))
f7e6eed5
PA
7405 {
7406 event->stop_reason = TARGET_STOPPED_BY_HW_BREAKPOINT;
7407
7408 /* Make sure the stub doesn't forget to indicate support
7409 with qSupported. */
7410 if (packet_support (PACKET_hwbreak_feature) != PACKET_ENABLE)
7411 error (_("Unexpected hwbreak stop reason"));
7412
7413 /* See above. */
8424cc97 7414 p = strchrnul (p1 + 1, ';');
f7e6eed5 7415 }
26d56a93 7416 else if (strprefix (p, p1, "library"))
cea39f65 7417 {
1f10ba14 7418 event->ws.kind = TARGET_WAITKIND_LOADED;
8424cc97 7419 p = strchrnul (p1 + 1, ';');
1f10ba14 7420 }
26d56a93 7421 else if (strprefix (p, p1, "replaylog"))
1f10ba14
PA
7422 {
7423 event->ws.kind = TARGET_WAITKIND_NO_HISTORY;
7424 /* p1 will indicate "begin" or "end", but it makes
7425 no difference for now, so ignore it. */
8424cc97 7426 p = strchrnul (p1 + 1, ';');
1f10ba14 7427 }
26d56a93 7428 else if (strprefix (p, p1, "core"))
1f10ba14
PA
7429 {
7430 ULONGEST c;
a744cf53 7431
1f10ba14
PA
7432 p = unpack_varlen_hex (++p1, &c);
7433 event->core = c;
cea39f65 7434 }
26d56a93 7435 else if (strprefix (p, p1, "fork"))
de0d863e
DB
7436 {
7437 event->ws.value.related_pid = read_ptid (++p1, &p);
7438 event->ws.kind = TARGET_WAITKIND_FORKED;
7439 }
26d56a93 7440 else if (strprefix (p, p1, "vfork"))
c269dbdb
DB
7441 {
7442 event->ws.value.related_pid = read_ptid (++p1, &p);
7443 event->ws.kind = TARGET_WAITKIND_VFORKED;
7444 }
26d56a93 7445 else if (strprefix (p, p1, "vforkdone"))
c269dbdb
DB
7446 {
7447 event->ws.kind = TARGET_WAITKIND_VFORK_DONE;
8424cc97 7448 p = strchrnul (p1 + 1, ';');
c269dbdb 7449 }
6ab24463 7450 else if (strprefix (p, p1, "exec"))
94585166
DB
7451 {
7452 ULONGEST ignored;
94585166
DB
7453 int pathlen;
7454
7455 /* Determine the length of the execd pathname. */
7456 p = unpack_varlen_hex (++p1, &ignored);
7457 pathlen = (p - p1) / 2;
7458
7459 /* Save the pathname for event reporting and for
7460 the next run command. */
c6321f19
TT
7461 gdb::unique_xmalloc_ptr<char[]> pathname
7462 ((char *) xmalloc (pathlen + 1));
7463 hex2bin (p1, (gdb_byte *) pathname.get (), pathlen);
94585166
DB
7464 pathname[pathlen] = '\0';
7465
7466 /* This is freed during event handling. */
c6321f19 7467 event->ws.value.execd_pathname = pathname.release ();
94585166
DB
7468 event->ws.kind = TARGET_WAITKIND_EXECD;
7469
7470 /* Skip the registers included in this packet, since
7471 they may be for an architecture different from the
7472 one used by the original program. */
7473 skipregs = 1;
7474 }
65706a29
PA
7475 else if (strprefix (p, p1, "create"))
7476 {
7477 event->ws.kind = TARGET_WAITKIND_THREAD_CREATED;
8424cc97 7478 p = strchrnul (p1 + 1, ';');
65706a29 7479 }
cea39f65
MS
7480 else
7481 {
1f10ba14 7482 ULONGEST pnum;
256642e8 7483 const char *p_temp;
1f10ba14 7484
94585166
DB
7485 if (skipregs)
7486 {
8424cc97 7487 p = strchrnul (p1 + 1, ';');
94585166
DB
7488 p++;
7489 continue;
7490 }
7491
1f10ba14
PA
7492 /* Maybe a real ``P'' register number. */
7493 p_temp = unpack_varlen_hex (p, &pnum);
7494 /* If the first invalid character is the colon, we got a
7495 register number. Otherwise, it's an unknown stop
7496 reason. */
7497 if (p_temp == p1)
7498 {
5cd63fda
PA
7499 /* If we haven't parsed the event's thread yet, find
7500 it now, in order to find the architecture of the
7501 reported expedited registers. */
7502 if (event->ptid == null_ptid)
7503 {
24ed6739
AB
7504 /* If there is no thread-id information then leave
7505 the event->ptid as null_ptid. Later in
7506 process_stop_reply we will pick a suitable
7507 thread. */
5cd63fda
PA
7508 const char *thr = strstr (p1 + 1, ";thread:");
7509 if (thr != NULL)
7510 event->ptid = read_ptid (thr + strlen (";thread:"),
7511 NULL);
5cd63fda
PA
7512 }
7513
7514 if (rsa == NULL)
7515 {
5b6d1e4f
PA
7516 inferior *inf
7517 = (event->ptid == null_ptid
7518 ? NULL
7519 : find_inferior_ptid (this, event->ptid));
5cd63fda
PA
7520 /* If this is the first time we learn anything
7521 about this process, skip the registers
7522 included in this packet, since we don't yet
7523 know which architecture to use to parse them.
7524 We'll determine the architecture later when
7525 we process the stop reply and retrieve the
7526 target description, via
7527 remote_notice_new_inferior ->
7528 post_create_inferior. */
7529 if (inf == NULL)
7530 {
7531 p = strchrnul (p1 + 1, ';');
7532 p++;
7533 continue;
7534 }
7535
7536 event->arch = inf->gdbarch;
9d6eea31 7537 rsa = event->rs->get_remote_arch_state (event->arch);
5cd63fda
PA
7538 }
7539
7540 packet_reg *reg
7541 = packet_reg_from_pnum (event->arch, rsa, pnum);
1f10ba14 7542 cached_reg_t cached_reg;
43ff13b4 7543
1f10ba14
PA
7544 if (reg == NULL)
7545 error (_("Remote sent bad register number %s: %s\n\
8a3fe4f8 7546Packet: '%s'\n"),
1f10ba14 7547 hex_string (pnum), p, buf);
c8e38a49 7548
1f10ba14 7549 cached_reg.num = reg->regnum;
d1dff226 7550 cached_reg.data = (gdb_byte *)
5cd63fda 7551 xmalloc (register_size (event->arch, reg->regnum));
4100683b 7552
1f10ba14
PA
7553 p = p1 + 1;
7554 fieldsize = hex2bin (p, cached_reg.data,
5cd63fda 7555 register_size (event->arch, reg->regnum));
1f10ba14 7556 p += 2 * fieldsize;
5cd63fda 7557 if (fieldsize < register_size (event->arch, reg->regnum))
1f10ba14 7558 warning (_("Remote reply is too short: %s"), buf);
74531fed 7559
32603266 7560 event->regcache.push_back (cached_reg);
1f10ba14
PA
7561 }
7562 else
7563 {
7564 /* Not a number. Silently skip unknown optional
7565 info. */
8424cc97 7566 p = strchrnul (p1 + 1, ';');
1f10ba14 7567 }
cea39f65 7568 }
c8e38a49 7569
cea39f65
MS
7570 if (*p != ';')
7571 error (_("Remote register badly formatted: %s\nhere: %s"),
7572 buf, p);
7573 ++p;
7574 }
5b5596ff
PA
7575
7576 if (event->ws.kind != TARGET_WAITKIND_IGNORE)
7577 break;
7578
c8e38a49
PA
7579 /* fall through */
7580 case 'S': /* Old style status, just signal only. */
3a09da41
PA
7581 {
7582 int sig;
7583
7584 event->ws.kind = TARGET_WAITKIND_STOPPED;
7585 sig = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
7586 if (GDB_SIGNAL_FIRST <= sig && sig < GDB_SIGNAL_LAST)
7587 event->ws.value.sig = (enum gdb_signal) sig;
7588 else
7589 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
7590 }
c8e38a49 7591 break;
65706a29
PA
7592 case 'w': /* Thread exited. */
7593 {
65706a29
PA
7594 ULONGEST value;
7595
7596 event->ws.kind = TARGET_WAITKIND_THREAD_EXITED;
7597 p = unpack_varlen_hex (&buf[1], &value);
7598 event->ws.value.integer = value;
7599 if (*p != ';')
7600 error (_("stop reply packet badly formatted: %s"), buf);
974eac9d 7601 event->ptid = read_ptid (++p, NULL);
65706a29
PA
7602 break;
7603 }
c8e38a49
PA
7604 case 'W': /* Target exited. */
7605 case 'X':
7606 {
c8e38a49 7607 ULONGEST value;
82f73884 7608
c8e38a49
PA
7609 /* GDB used to accept only 2 hex chars here. Stubs should
7610 only send more if they detect GDB supports multi-process
7611 support. */
7612 p = unpack_varlen_hex (&buf[1], &value);
82f73884 7613
c8e38a49
PA
7614 if (buf[0] == 'W')
7615 {
7616 /* The remote process exited. */
74531fed
PA
7617 event->ws.kind = TARGET_WAITKIND_EXITED;
7618 event->ws.value.integer = value;
c8e38a49
PA
7619 }
7620 else
7621 {
7622 /* The remote process exited with a signal. */
74531fed 7623 event->ws.kind = TARGET_WAITKIND_SIGNALLED;
3a09da41
PA
7624 if (GDB_SIGNAL_FIRST <= value && value < GDB_SIGNAL_LAST)
7625 event->ws.value.sig = (enum gdb_signal) value;
7626 else
7627 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
c8e38a49 7628 }
82f73884 7629
e7af6c70
TBA
7630 /* If no process is specified, return null_ptid, and let the
7631 caller figure out the right process to use. */
7632 int pid = 0;
c8e38a49
PA
7633 if (*p == '\0')
7634 ;
7635 else if (*p == ';')
7636 {
7637 p++;
7638
0b24eb2d 7639 if (*p == '\0')
82f73884 7640 ;
61012eef 7641 else if (startswith (p, "process:"))
82f73884 7642 {
c8e38a49 7643 ULONGEST upid;
a744cf53 7644
c8e38a49
PA
7645 p += sizeof ("process:") - 1;
7646 unpack_varlen_hex (p, &upid);
7647 pid = upid;
82f73884
PA
7648 }
7649 else
7650 error (_("unknown stop reply packet: %s"), buf);
43ff13b4 7651 }
c8e38a49
PA
7652 else
7653 error (_("unknown stop reply packet: %s"), buf);
f2907e49 7654 event->ptid = ptid_t (pid);
74531fed
PA
7655 }
7656 break;
f2faf941
PA
7657 case 'N':
7658 event->ws.kind = TARGET_WAITKIND_NO_RESUMED;
7659 event->ptid = minus_one_ptid;
7660 break;
74531fed 7661 }
74531fed
PA
7662}
7663
722247f1
YQ
7664/* When the stub wants to tell GDB about a new notification reply, it
7665 sends a notification (%Stop, for example). Those can come it at
7666 any time, hence, we have to make sure that any pending
7667 putpkt/getpkt sequence we're making is finished, before querying
7668 the stub for more events with the corresponding ack command
7669 (vStopped, for example). E.g., if we started a vStopped sequence
7670 immediately upon receiving the notification, something like this
7671 could happen:
74531fed
PA
7672
7673 1.1) --> Hg 1
7674 1.2) <-- OK
7675 1.3) --> g
7676 1.4) <-- %Stop
7677 1.5) --> vStopped
7678 1.6) <-- (registers reply to step #1.3)
7679
7680 Obviously, the reply in step #1.6 would be unexpected to a vStopped
7681 query.
7682
796cb314 7683 To solve this, whenever we parse a %Stop notification successfully,
74531fed
PA
7684 we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
7685 doing whatever we were doing:
7686
7687 2.1) --> Hg 1
7688 2.2) <-- OK
7689 2.3) --> g
7690 2.4) <-- %Stop
7691 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
7692 2.5) <-- (registers reply to step #2.3)
7693
85102364 7694 Eventually after step #2.5, we return to the event loop, which
74531fed
PA
7695 notices there's an event on the
7696 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
7697 associated callback --- the function below. At this point, we're
7698 always safe to start a vStopped sequence. :
7699
7700 2.6) --> vStopped
7701 2.7) <-- T05 thread:2
7702 2.8) --> vStopped
7703 2.9) --> OK
7704*/
7705
722247f1 7706void
6b8edb51 7707remote_target::remote_notif_get_pending_events (notif_client *nc)
74531fed
PA
7708{
7709 struct remote_state *rs = get_remote_state ();
74531fed 7710
f48ff2a7 7711 if (rs->notif_state->pending_event[nc->id] != NULL)
74531fed 7712 {
722247f1
YQ
7713 if (notif_debug)
7714 fprintf_unfiltered (gdb_stdlog,
7715 "notif: process: '%s' ack pending event\n",
7716 nc->name);
74531fed 7717
722247f1 7718 /* acknowledge */
8d64371b
TT
7719 nc->ack (this, nc, rs->buf.data (),
7720 rs->notif_state->pending_event[nc->id]);
f48ff2a7 7721 rs->notif_state->pending_event[nc->id] = NULL;
74531fed
PA
7722
7723 while (1)
7724 {
8d64371b
TT
7725 getpkt (&rs->buf, 0);
7726 if (strcmp (rs->buf.data (), "OK") == 0)
74531fed
PA
7727 break;
7728 else
8d64371b 7729 remote_notif_ack (this, nc, rs->buf.data ());
74531fed
PA
7730 }
7731 }
722247f1
YQ
7732 else
7733 {
7734 if (notif_debug)
7735 fprintf_unfiltered (gdb_stdlog,
7736 "notif: process: '%s' no pending reply\n",
7737 nc->name);
7738 }
74531fed
PA
7739}
7740
6b8edb51
PA
7741/* Wrapper around remote_target::remote_notif_get_pending_events to
7742 avoid having to export the whole remote_target class. */
7743
7744void
7745remote_notif_get_pending_events (remote_target *remote, notif_client *nc)
7746{
7747 remote->remote_notif_get_pending_events (nc);
7748}
7749
8f66807b
AB
7750/* Called from process_stop_reply when the stop packet we are responding
7751 to didn't include a process-id or thread-id. STATUS is the stop event
7752 we are responding to.
7753
7754 It is the task of this function to select a suitable thread (or process)
7755 and return its ptid, this is the thread (or process) we will assume the
7756 stop event came from.
7757
7758 In some cases there isn't really any choice about which thread (or
7759 process) is selected, a basic remote with a single process containing a
7760 single thread might choose not to send any process-id or thread-id in
7761 its stop packets, this function will select and return the one and only
7762 thread.
7763
7764 However, if a target supports multiple threads (or processes) and still
7765 doesn't include a thread-id (or process-id) in its stop packet then
7766 first, this is a badly behaving target, and second, we're going to have
7767 to select a thread (or process) at random and use that. This function
7768 will print a warning to the user if it detects that there is the
7769 possibility that GDB is guessing which thread (or process) to
7770 report.
7771
7772 Note that this is called before GDB fetches the updated thread list from the
7773 target. So it's possible for the stop reply to be ambiguous and for GDB to
7774 not realize it. For example, if there's initially one thread, the target
7775 spawns a second thread, and then sends a stop reply without an id that
7776 concerns the first thread. GDB will assume the stop reply is about the
7777 first thread - the only thread it knows about - without printing a warning.
7778 Anyway, if the remote meant for the stop reply to be about the second thread,
7779 then it would be really broken, because GDB doesn't know about that thread
7780 yet. */
74531fed 7781
6b8edb51 7782ptid_t
8f66807b
AB
7783remote_target::select_thread_for_ambiguous_stop_reply
7784 (const struct target_waitstatus *status)
74531fed 7785{
8f66807b
AB
7786 /* Some stop events apply to all threads in an inferior, while others
7787 only apply to a single thread. */
7788 bool process_wide_stop
7789 = (status->kind == TARGET_WAITKIND_EXITED
7790 || status->kind == TARGET_WAITKIND_SIGNALLED);
74531fed 7791
8f66807b
AB
7792 thread_info *first_resumed_thread = nullptr;
7793 bool ambiguous = false;
74531fed 7794
8f66807b
AB
7795 /* Consider all non-exited threads of the target, find the first resumed
7796 one. */
7797 for (thread_info *thr : all_non_exited_threads (this))
24ed6739 7798 {
8f66807b 7799 remote_thread_info *remote_thr = get_remote_thread_info (thr);
cada5fc9 7800
a6c11cbb 7801 if (remote_thr->get_resume_state () != resume_state::RESUMED)
8f66807b 7802 continue;
24ed6739 7803
8f66807b
AB
7804 if (first_resumed_thread == nullptr)
7805 first_resumed_thread = thr;
7806 else if (!process_wide_stop
7807 || first_resumed_thread->ptid.pid () != thr->ptid.pid ())
7808 ambiguous = true;
7809 }
7810
7811 gdb_assert (first_resumed_thread != nullptr);
cada5fc9 7812
8f66807b
AB
7813 /* Warn if the remote target is sending ambiguous stop replies. */
7814 if (ambiguous)
7815 {
7816 static bool warned = false;
7817
7818 if (!warned)
7819 {
7820 /* If you are seeing this warning then the remote target has
7821 stopped without specifying a thread-id, but the target
7822 does have multiple threads (or inferiors), and so GDB is
7823 having to guess which thread stopped.
7824
7825 Examples of what might cause this are the target sending
7826 and 'S' stop packet, or a 'T' stop packet and not
7827 including a thread-id.
7828
7829 Additionally, the target might send a 'W' or 'X packet
7830 without including a process-id, when the target has
7831 multiple running inferiors. */
7832 if (process_wide_stop)
7833 warning (_("multi-inferior target stopped without "
7834 "sending a process-id, using first "
7835 "non-exited inferior"));
cada5fc9 7836 else
8f66807b
AB
7837 warning (_("multi-threaded target stopped without "
7838 "sending a thread-id, using first "
7839 "non-exited thread"));
7840 warned = true;
24ed6739 7841 }
24ed6739 7842 }
74531fed 7843
8f66807b
AB
7844 /* If this is a stop for all threads then don't use a particular threads
7845 ptid, instead create a new ptid where only the pid field is set. */
7846 if (process_wide_stop)
7847 return ptid_t (first_resumed_thread->ptid.pid ());
7848 else
7849 return first_resumed_thread->ptid;
7850}
7851
7852/* Called when it is decided that STOP_REPLY holds the info of the
7853 event that is to be returned to the core. This function always
7854 destroys STOP_REPLY. */
7855
7856ptid_t
7857remote_target::process_stop_reply (struct stop_reply *stop_reply,
7858 struct target_waitstatus *status)
7859{
7860 *status = stop_reply->ws;
7861 ptid_t ptid = stop_reply->ptid;
7862
7863 /* If no thread/process was reported by the stub then select a suitable
7864 thread/process. */
7865 if (ptid == null_ptid)
7866 ptid = select_thread_for_ambiguous_stop_reply (status);
7867 gdb_assert (ptid != null_ptid);
7868
5f3563ea 7869 if (status->kind != TARGET_WAITKIND_EXITED
f2faf941
PA
7870 && status->kind != TARGET_WAITKIND_SIGNALLED
7871 && status->kind != TARGET_WAITKIND_NO_RESUMED)
74531fed 7872 {
5f3563ea 7873 /* Expedited registers. */
32603266 7874 if (!stop_reply->regcache.empty ())
5f3563ea 7875 {
217f1f79 7876 struct regcache *regcache
5b6d1e4f 7877 = get_thread_arch_regcache (this, ptid, stop_reply->arch);
5f3563ea 7878
32603266
TT
7879 for (cached_reg_t &reg : stop_reply->regcache)
7880 {
7881 regcache->raw_supply (reg.num, reg.data);
7882 xfree (reg.data);
7883 }
d1dff226 7884
32603266 7885 stop_reply->regcache.clear ();
5f3563ea 7886 }
74531fed 7887
1941c569 7888 remote_notice_new_inferior (ptid, 0);
5b6d1e4f 7889 remote_thread_info *remote_thr = get_remote_thread_info (this, ptid);
799a2abe
PA
7890 remote_thr->core = stop_reply->core;
7891 remote_thr->stop_reason = stop_reply->stop_reason;
7892 remote_thr->watch_data_address = stop_reply->watch_data_address;
c9d22089
SM
7893
7894 if (target_is_non_stop_p ())
7895 {
7896 /* If the target works in non-stop mode, a stop-reply indicates that
7897 only this thread stopped. */
7898 remote_thr->set_not_resumed ();
7899 }
7900 else
7901 {
7902 /* If the target works in all-stop mode, a stop-reply indicates that
7903 all the target's threads stopped. */
7904 for (thread_info *tp : all_non_exited_threads (this))
7905 get_remote_thread_info (tp)->set_not_resumed ();
7906 }
74531fed
PA
7907 }
7908
32603266 7909 delete stop_reply;
74531fed
PA
7910 return ptid;
7911}
7912
7913/* The non-stop mode version of target_wait. */
7914
6b8edb51 7915ptid_t
b60cea74
TT
7916remote_target::wait_ns (ptid_t ptid, struct target_waitstatus *status,
7917 target_wait_flags options)
74531fed
PA
7918{
7919 struct remote_state *rs = get_remote_state ();
74531fed
PA
7920 struct stop_reply *stop_reply;
7921 int ret;
fee9eda9 7922 int is_notif = 0;
74531fed
PA
7923
7924 /* If in non-stop mode, get out of getpkt even if a
7925 notification is received. */
7926
8d64371b 7927 ret = getpkt_or_notif_sane (&rs->buf, 0 /* forever */, &is_notif);
74531fed
PA
7928 while (1)
7929 {
fee9eda9 7930 if (ret != -1 && !is_notif)
74531fed
PA
7931 switch (rs->buf[0])
7932 {
7933 case 'E': /* Error of some sort. */
7934 /* We're out of sync with the target now. Did it continue
7935 or not? We can't tell which thread it was in non-stop,
7936 so just ignore this. */
8d64371b 7937 warning (_("Remote failure reply: %s"), rs->buf.data ());
74531fed
PA
7938 break;
7939 case 'O': /* Console output. */
8d64371b 7940 remote_console_output (&rs->buf[1]);
74531fed
PA
7941 break;
7942 default:
8d64371b 7943 warning (_("Invalid remote reply: %s"), rs->buf.data ());
74531fed
PA
7944 break;
7945 }
7946
7947 /* Acknowledge a pending stop reply that may have arrived in the
7948 mean time. */
f48ff2a7 7949 if (rs->notif_state->pending_event[notif_client_stop.id] != NULL)
722247f1 7950 remote_notif_get_pending_events (&notif_client_stop);
74531fed
PA
7951
7952 /* If indeed we noticed a stop reply, we're done. */
7953 stop_reply = queued_stop_reply (ptid);
7954 if (stop_reply != NULL)
7955 return process_stop_reply (stop_reply, status);
7956
47608cb1 7957 /* Still no event. If we're just polling for an event, then
74531fed 7958 return to the event loop. */
47608cb1 7959 if (options & TARGET_WNOHANG)
74531fed
PA
7960 {
7961 status->kind = TARGET_WAITKIND_IGNORE;
7962 return minus_one_ptid;
7963 }
7964
47608cb1 7965 /* Otherwise do a blocking wait. */
8d64371b 7966 ret = getpkt_or_notif_sane (&rs->buf, 1 /* forever */, &is_notif);
74531fed
PA
7967 }
7968}
7969
31ba933e
PA
7970/* Return the first resumed thread. */
7971
7972static ptid_t
5b6d1e4f 7973first_remote_resumed_thread (remote_target *target)
31ba933e 7974{
5b6d1e4f 7975 for (thread_info *tp : all_non_exited_threads (target, minus_one_ptid))
31ba933e
PA
7976 if (tp->resumed)
7977 return tp->ptid;
7978 return null_ptid;
7979}
7980
74531fed
PA
7981/* Wait until the remote machine stops, then return, storing status in
7982 STATUS just as `wait' would. */
7983
6b8edb51 7984ptid_t
b60cea74
TT
7985remote_target::wait_as (ptid_t ptid, target_waitstatus *status,
7986 target_wait_flags options)
74531fed
PA
7987{
7988 struct remote_state *rs = get_remote_state ();
74531fed 7989 ptid_t event_ptid = null_ptid;
cea39f65 7990 char *buf;
74531fed
PA
7991 struct stop_reply *stop_reply;
7992
47608cb1
PA
7993 again:
7994
74531fed
PA
7995 status->kind = TARGET_WAITKIND_IGNORE;
7996 status->value.integer = 0;
7997
7998 stop_reply = queued_stop_reply (ptid);
7999 if (stop_reply != NULL)
8000 return process_stop_reply (stop_reply, status);
8001
8002 if (rs->cached_wait_status)
8003 /* Use the cached wait status, but only once. */
8004 rs->cached_wait_status = 0;
8005 else
8006 {
8007 int ret;
722247f1 8008 int is_notif;
567420d1 8009 int forever = ((options & TARGET_WNOHANG) == 0
6b8edb51 8010 && rs->wait_forever_enabled_p);
567420d1
PA
8011
8012 if (!rs->waiting_for_stop_reply)
8013 {
8014 status->kind = TARGET_WAITKIND_NO_RESUMED;
8015 return minus_one_ptid;
8016 }
74531fed 8017
74531fed
PA
8018 /* FIXME: cagney/1999-09-27: If we're in async mode we should
8019 _never_ wait for ever -> test on target_is_async_p().
8020 However, before we do that we need to ensure that the caller
8021 knows how to take the target into/out of async mode. */
8d64371b 8022 ret = getpkt_or_notif_sane (&rs->buf, forever, &is_notif);
722247f1
YQ
8023
8024 /* GDB gets a notification. Return to core as this event is
8025 not interesting. */
8026 if (ret != -1 && is_notif)
8027 return minus_one_ptid;
567420d1
PA
8028
8029 if (ret == -1 && (options & TARGET_WNOHANG) != 0)
8030 return minus_one_ptid;
74531fed
PA
8031 }
8032
8d64371b 8033 buf = rs->buf.data ();
74531fed 8034
3a29589a
DJ
8035 /* Assume that the target has acknowledged Ctrl-C unless we receive
8036 an 'F' or 'O' packet. */
8037 if (buf[0] != 'F' && buf[0] != 'O')
8038 rs->ctrlc_pending_p = 0;
8039
74531fed
PA
8040 switch (buf[0])
8041 {
8042 case 'E': /* Error of some sort. */
8043 /* We're out of sync with the target now. Did it continue or
8044 not? Not is more likely, so report a stop. */
29090fb6
LM
8045 rs->waiting_for_stop_reply = 0;
8046
74531fed
PA
8047 warning (_("Remote failure reply: %s"), buf);
8048 status->kind = TARGET_WAITKIND_STOPPED;
a493e3e2 8049 status->value.sig = GDB_SIGNAL_0;
74531fed
PA
8050 break;
8051 case 'F': /* File-I/O request. */
e42e5352
YQ
8052 /* GDB may access the inferior memory while handling the File-I/O
8053 request, but we don't want GDB accessing memory while waiting
8054 for a stop reply. See the comments in putpkt_binary. Set
8055 waiting_for_stop_reply to 0 temporarily. */
8056 rs->waiting_for_stop_reply = 0;
6b8edb51 8057 remote_fileio_request (this, buf, rs->ctrlc_pending_p);
3a29589a 8058 rs->ctrlc_pending_p = 0;
e42e5352
YQ
8059 /* GDB handled the File-I/O request, and the target is running
8060 again. Keep waiting for events. */
8061 rs->waiting_for_stop_reply = 1;
74531fed 8062 break;
f2faf941 8063 case 'N': case 'T': case 'S': case 'X': case 'W':
74531fed 8064 {
29090fb6
LM
8065 /* There is a stop reply to handle. */
8066 rs->waiting_for_stop_reply = 0;
8067
8068 stop_reply
6b8edb51
PA
8069 = (struct stop_reply *) remote_notif_parse (this,
8070 &notif_client_stop,
8d64371b 8071 rs->buf.data ());
74531fed 8072
74531fed 8073 event_ptid = process_stop_reply (stop_reply, status);
c8e38a49
PA
8074 break;
8075 }
8076 case 'O': /* Console output. */
8077 remote_console_output (buf + 1);
c8e38a49
PA
8078 break;
8079 case '\0':
b73be471 8080 if (rs->last_sent_signal != GDB_SIGNAL_0)
c8e38a49
PA
8081 {
8082 /* Zero length reply means that we tried 'S' or 'C' and the
8083 remote system doesn't support it. */
223ffa71 8084 target_terminal::ours_for_output ();
c8e38a49
PA
8085 printf_filtered
8086 ("Can't send signals to this remote system. %s not sent.\n",
b73be471
TT
8087 gdb_signal_to_name (rs->last_sent_signal));
8088 rs->last_sent_signal = GDB_SIGNAL_0;
223ffa71 8089 target_terminal::inferior ();
c8e38a49 8090
f5c4fcd9
TT
8091 strcpy (buf, rs->last_sent_step ? "s" : "c");
8092 putpkt (buf);
c8e38a49 8093 break;
43ff13b4 8094 }
86a73007 8095 /* fallthrough */
c8e38a49
PA
8096 default:
8097 warning (_("Invalid remote reply: %s"), buf);
c8e38a49 8098 break;
43ff13b4 8099 }
c8e38a49 8100
f2faf941
PA
8101 if (status->kind == TARGET_WAITKIND_NO_RESUMED)
8102 return minus_one_ptid;
8103 else if (status->kind == TARGET_WAITKIND_IGNORE)
47608cb1
PA
8104 {
8105 /* Nothing interesting happened. If we're doing a non-blocking
8106 poll, we're done. Otherwise, go back to waiting. */
8107 if (options & TARGET_WNOHANG)
8108 return minus_one_ptid;
8109 else
8110 goto again;
8111 }
74531fed
PA
8112 else if (status->kind != TARGET_WAITKIND_EXITED
8113 && status->kind != TARGET_WAITKIND_SIGNALLED)
82f73884 8114 {
d7e15655 8115 if (event_ptid != null_ptid)
47f8a51d 8116 record_currthread (rs, event_ptid);
82f73884 8117 else
5b6d1e4f 8118 event_ptid = first_remote_resumed_thread (this);
43ff13b4 8119 }
74531fed 8120 else
e7af6c70
TBA
8121 {
8122 /* A process exit. Invalidate our notion of current thread. */
8123 record_currthread (rs, minus_one_ptid);
8124 /* It's possible that the packet did not include a pid. */
8125 if (event_ptid == null_ptid)
5b6d1e4f 8126 event_ptid = first_remote_resumed_thread (this);
e7af6c70
TBA
8127 /* EVENT_PTID could still be NULL_PTID. Double-check. */
8128 if (event_ptid == null_ptid)
8129 event_ptid = magic_null_ptid;
8130 }
79d7f229 8131
82f73884 8132 return event_ptid;
43ff13b4
JM
8133}
8134
74531fed
PA
8135/* Wait until the remote machine stops, then return, storing status in
8136 STATUS just as `wait' would. */
8137
f6ac5f3d 8138ptid_t
b60cea74
TT
8139remote_target::wait (ptid_t ptid, struct target_waitstatus *status,
8140 target_wait_flags options)
c8e38a49 8141{
2189c312
SM
8142 REMOTE_SCOPED_DEBUG_ENTER_EXIT;
8143
c8e38a49
PA
8144 ptid_t event_ptid;
8145
6efcd9a8 8146 if (target_is_non_stop_p ())
6b8edb51 8147 event_ptid = wait_ns (ptid, status, options);
74531fed 8148 else
6b8edb51 8149 event_ptid = wait_as (ptid, status, options);
c8e38a49 8150
d9d41e78 8151 if (target_is_async_p ())
c8e38a49 8152 {
6b8edb51
PA
8153 remote_state *rs = get_remote_state ();
8154
74531fed
PA
8155 /* If there are are events left in the queue tell the event loop
8156 to return here. */
953edf2b 8157 if (!rs->stop_reply_queue.empty ())
6b8edb51 8158 mark_async_event_handler (rs->remote_async_inferior_event_token);
c8e38a49 8159 }
c8e38a49
PA
8160
8161 return event_ptid;
8162}
8163
74ca34ce 8164/* Fetch a single register using a 'p' packet. */
c906108c 8165
6b8edb51
PA
8166int
8167remote_target::fetch_register_using_p (struct regcache *regcache,
8168 packet_reg *reg)
b96ec7ac 8169{
ac7936df 8170 struct gdbarch *gdbarch = regcache->arch ();
b96ec7ac 8171 struct remote_state *rs = get_remote_state ();
2e9f7625 8172 char *buf, *p;
9890e433 8173 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
b96ec7ac
AC
8174 int i;
8175
4082afcc 8176 if (packet_support (PACKET_p) == PACKET_DISABLE)
74ca34ce
DJ
8177 return 0;
8178
8179 if (reg->pnum == -1)
8180 return 0;
8181
8d64371b 8182 p = rs->buf.data ();
fcad0fa4 8183 *p++ = 'p';
74ca34ce 8184 p += hexnumstr (p, reg->pnum);
fcad0fa4 8185 *p++ = '\0';
1f4437a4 8186 putpkt (rs->buf);
8d64371b 8187 getpkt (&rs->buf, 0);
3f9a994c 8188
8d64371b 8189 buf = rs->buf.data ();
2e9f7625 8190
8d64371b 8191 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_p]))
74ca34ce
DJ
8192 {
8193 case PACKET_OK:
8194 break;
8195 case PACKET_UNKNOWN:
8196 return 0;
8197 case PACKET_ERROR:
27a9c0bf 8198 error (_("Could not fetch register \"%s\"; remote failure reply '%s'"),
ac7936df 8199 gdbarch_register_name (regcache->arch (),
27a9c0bf
MS
8200 reg->regnum),
8201 buf);
74ca34ce 8202 }
3f9a994c
JB
8203
8204 /* If this register is unfetchable, tell the regcache. */
8205 if (buf[0] == 'x')
8480adf2 8206 {
73e1c03f 8207 regcache->raw_supply (reg->regnum, NULL);
8480adf2 8208 return 1;
b96ec7ac 8209 }
b96ec7ac 8210
3f9a994c
JB
8211 /* Otherwise, parse and supply the value. */
8212 p = buf;
8213 i = 0;
8214 while (p[0] != 0)
8215 {
8216 if (p[1] == 0)
74ca34ce 8217 error (_("fetch_register_using_p: early buf termination"));
3f9a994c
JB
8218
8219 regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
8220 p += 2;
8221 }
73e1c03f 8222 regcache->raw_supply (reg->regnum, regp);
3f9a994c 8223 return 1;
b96ec7ac
AC
8224}
8225
74ca34ce
DJ
8226/* Fetch the registers included in the target's 'g' packet. */
8227
6b8edb51
PA
8228int
8229remote_target::send_g_packet ()
c906108c 8230{
d01949b6 8231 struct remote_state *rs = get_remote_state ();
cea39f65 8232 int buf_len;
c906108c 8233
8d64371b 8234 xsnprintf (rs->buf.data (), get_remote_packet_size (), "g");
b75abf5b 8235 putpkt (rs->buf);
8d64371b 8236 getpkt (&rs->buf, 0);
b75abf5b
AK
8237 if (packet_check_result (rs->buf) == PACKET_ERROR)
8238 error (_("Could not read registers; remote failure reply '%s'"),
dda83cd7 8239 rs->buf.data ());
c906108c 8240
29709017
DJ
8241 /* We can get out of synch in various cases. If the first character
8242 in the buffer is not a hex character, assume that has happened
8243 and try to fetch another packet to read. */
8244 while ((rs->buf[0] < '0' || rs->buf[0] > '9')
8245 && (rs->buf[0] < 'A' || rs->buf[0] > 'F')
8246 && (rs->buf[0] < 'a' || rs->buf[0] > 'f')
8247 && rs->buf[0] != 'x') /* New: unavailable register value. */
8248 {
2189c312 8249 remote_debug_printf ("Bad register packet; fetching a new packet");
8d64371b 8250 getpkt (&rs->buf, 0);
29709017
DJ
8251 }
8252
8d64371b 8253 buf_len = strlen (rs->buf.data ());
74ca34ce
DJ
8254
8255 /* Sanity check the received packet. */
8256 if (buf_len % 2 != 0)
8d64371b 8257 error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf.data ());
29709017
DJ
8258
8259 return buf_len / 2;
8260}
8261
6b8edb51
PA
8262void
8263remote_target::process_g_packet (struct regcache *regcache)
29709017 8264{
ac7936df 8265 struct gdbarch *gdbarch = regcache->arch ();
29709017 8266 struct remote_state *rs = get_remote_state ();
9d6eea31 8267 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
29709017
DJ
8268 int i, buf_len;
8269 char *p;
8270 char *regs;
8271
8d64371b 8272 buf_len = strlen (rs->buf.data ());
29709017
DJ
8273
8274 /* Further sanity checks, with knowledge of the architecture. */
74ca34ce 8275 if (buf_len > 2 * rsa->sizeof_g_packet)
fc809827 8276 error (_("Remote 'g' packet reply is too long (expected %ld bytes, got %d "
8d64371b
TT
8277 "bytes): %s"),
8278 rsa->sizeof_g_packet, buf_len / 2,
8279 rs->buf.data ());
74ca34ce
DJ
8280
8281 /* Save the size of the packet sent to us by the target. It is used
8282 as a heuristic when determining the max size of packets that the
8283 target can safely receive. */
8284 if (rsa->actual_register_packet_size == 0)
8285 rsa->actual_register_packet_size = buf_len;
8286
8287 /* If this is smaller than we guessed the 'g' packet would be,
8288 update our records. A 'g' reply that doesn't include a register's
8289 value implies either that the register is not available, or that
8290 the 'p' packet must be used. */
8291 if (buf_len < 2 * rsa->sizeof_g_packet)
b323314b 8292 {
9dc193c3 8293 long sizeof_g_packet = buf_len / 2;
74ca34ce 8294
4a22f64d 8295 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
b96ec7ac 8296 {
9dc193c3
LF
8297 long offset = rsa->regs[i].offset;
8298 long reg_size = register_size (gdbarch, i);
8299
74ca34ce
DJ
8300 if (rsa->regs[i].pnum == -1)
8301 continue;
8302
9dc193c3 8303 if (offset >= sizeof_g_packet)
74ca34ce 8304 rsa->regs[i].in_g_packet = 0;
9dc193c3
LF
8305 else if (offset + reg_size > sizeof_g_packet)
8306 error (_("Truncated register %d in remote 'g' packet"), i);
b96ec7ac 8307 else
74ca34ce 8308 rsa->regs[i].in_g_packet = 1;
b96ec7ac 8309 }
9dc193c3
LF
8310
8311 /* Looks valid enough, we can assume this is the correct length
dda83cd7
SM
8312 for a 'g' packet. It's important not to adjust
8313 rsa->sizeof_g_packet if we have truncated registers otherwise
8314 this "if" won't be run the next time the method is called
8315 with a packet of the same size and one of the internal errors
8316 below will trigger instead. */
9dc193c3 8317 rsa->sizeof_g_packet = sizeof_g_packet;
74ca34ce 8318 }
b323314b 8319
224c3ddb 8320 regs = (char *) alloca (rsa->sizeof_g_packet);
c906108c
SS
8321
8322 /* Unimplemented registers read as all bits zero. */
ea9c271d 8323 memset (regs, 0, rsa->sizeof_g_packet);
c906108c 8324
c906108c
SS
8325 /* Reply describes registers byte by byte, each byte encoded as two
8326 hex characters. Suck them all up, then supply them to the
8327 register cacheing/storage mechanism. */
8328
8d64371b 8329 p = rs->buf.data ();
ea9c271d 8330 for (i = 0; i < rsa->sizeof_g_packet; i++)
c906108c 8331 {
74ca34ce
DJ
8332 if (p[0] == 0 || p[1] == 0)
8333 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
8334 internal_error (__FILE__, __LINE__,
9b20d036 8335 _("unexpected end of 'g' packet reply"));
74ca34ce 8336
c906108c 8337 if (p[0] == 'x' && p[1] == 'x')
c5aa993b 8338 regs[i] = 0; /* 'x' */
c906108c
SS
8339 else
8340 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
8341 p += 2;
8342 }
8343
a744cf53
MS
8344 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
8345 {
8346 struct packet_reg *r = &rsa->regs[i];
9dc193c3 8347 long reg_size = register_size (gdbarch, i);
a744cf53
MS
8348
8349 if (r->in_g_packet)
8350 {
8d64371b 8351 if ((r->offset + reg_size) * 2 > strlen (rs->buf.data ()))
a744cf53
MS
8352 /* This shouldn't happen - we adjusted in_g_packet above. */
8353 internal_error (__FILE__, __LINE__,
9b20d036 8354 _("unexpected end of 'g' packet reply"));
a744cf53
MS
8355 else if (rs->buf[r->offset * 2] == 'x')
8356 {
8d64371b 8357 gdb_assert (r->offset * 2 < strlen (rs->buf.data ()));
a744cf53
MS
8358 /* The register isn't available, mark it as such (at
8359 the same time setting the value to zero). */
73e1c03f 8360 regcache->raw_supply (r->regnum, NULL);
a744cf53
MS
8361 }
8362 else
73e1c03f 8363 regcache->raw_supply (r->regnum, regs + r->offset);
a744cf53
MS
8364 }
8365 }
c906108c
SS
8366}
8367
6b8edb51
PA
8368void
8369remote_target::fetch_registers_using_g (struct regcache *regcache)
29709017
DJ
8370{
8371 send_g_packet ();
56be3814 8372 process_g_packet (regcache);
29709017
DJ
8373}
8374
e6e4e701
PA
8375/* Make the remote selected traceframe match GDB's selected
8376 traceframe. */
8377
6b8edb51
PA
8378void
8379remote_target::set_remote_traceframe ()
e6e4e701
PA
8380{
8381 int newnum;
262e1174 8382 struct remote_state *rs = get_remote_state ();
e6e4e701 8383
262e1174 8384 if (rs->remote_traceframe_number == get_traceframe_number ())
e6e4e701
PA
8385 return;
8386
8387 /* Avoid recursion, remote_trace_find calls us again. */
262e1174 8388 rs->remote_traceframe_number = get_traceframe_number ();
e6e4e701
PA
8389
8390 newnum = target_trace_find (tfind_number,
8391 get_traceframe_number (), 0, 0, NULL);
8392
8393 /* Should not happen. If it does, all bets are off. */
8394 if (newnum != get_traceframe_number ())
8395 warning (_("could not set remote traceframe"));
8396}
8397
f6ac5f3d
PA
8398void
8399remote_target::fetch_registers (struct regcache *regcache, int regnum)
74ca34ce 8400{
ac7936df 8401 struct gdbarch *gdbarch = regcache->arch ();
9d6eea31
PA
8402 struct remote_state *rs = get_remote_state ();
8403 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
74ca34ce
DJ
8404 int i;
8405
e6e4e701 8406 set_remote_traceframe ();
222312d3 8407 set_general_thread (regcache->ptid ());
74ca34ce
DJ
8408
8409 if (regnum >= 0)
8410 {
5cd63fda 8411 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
a744cf53 8412
74ca34ce
DJ
8413 gdb_assert (reg != NULL);
8414
8415 /* If this register might be in the 'g' packet, try that first -
8416 we are likely to read more than one register. If this is the
8417 first 'g' packet, we might be overly optimistic about its
8418 contents, so fall back to 'p'. */
8419 if (reg->in_g_packet)
8420 {
56be3814 8421 fetch_registers_using_g (regcache);
74ca34ce
DJ
8422 if (reg->in_g_packet)
8423 return;
8424 }
8425
56be3814 8426 if (fetch_register_using_p (regcache, reg))
74ca34ce
DJ
8427 return;
8428
8429 /* This register is not available. */
73e1c03f 8430 regcache->raw_supply (reg->regnum, NULL);
74ca34ce
DJ
8431
8432 return;
8433 }
8434
56be3814 8435 fetch_registers_using_g (regcache);
74ca34ce 8436
5cd63fda 8437 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
74ca34ce 8438 if (!rsa->regs[i].in_g_packet)
56be3814 8439 if (!fetch_register_using_p (regcache, &rsa->regs[i]))
74ca34ce
DJ
8440 {
8441 /* This register is not available. */
73e1c03f 8442 regcache->raw_supply (i, NULL);
74ca34ce
DJ
8443 }
8444}
8445
c906108c
SS
8446/* Prepare to store registers. Since we may send them all (using a
8447 'G' request), we have to read out the ones we don't want to change
8448 first. */
8449
f6ac5f3d
PA
8450void
8451remote_target::prepare_to_store (struct regcache *regcache)
c906108c 8452{
9d6eea31
PA
8453 struct remote_state *rs = get_remote_state ();
8454 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
cf0e1e0d 8455 int i;
cf0e1e0d 8456
c906108c 8457 /* Make sure the entire registers array is valid. */
4082afcc 8458 switch (packet_support (PACKET_P))
5a2468f5
JM
8459 {
8460 case PACKET_DISABLE:
8461 case PACKET_SUPPORT_UNKNOWN:
cf0e1e0d 8462 /* Make sure all the necessary registers are cached. */
ac7936df 8463 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
ea9c271d 8464 if (rsa->regs[i].in_g_packet)
0b47d985 8465 regcache->raw_update (rsa->regs[i].regnum);
5a2468f5
JM
8466 break;
8467 case PACKET_ENABLE:
8468 break;
8469 }
8470}
8471
ad10f812 8472/* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
23860348 8473 packet was not recognized. */
5a2468f5 8474
6b8edb51
PA
8475int
8476remote_target::store_register_using_P (const struct regcache *regcache,
8477 packet_reg *reg)
5a2468f5 8478{
ac7936df 8479 struct gdbarch *gdbarch = regcache->arch ();
d01949b6 8480 struct remote_state *rs = get_remote_state ();
5a2468f5 8481 /* Try storing a single register. */
8d64371b 8482 char *buf = rs->buf.data ();
9890e433 8483 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
5a2468f5 8484 char *p;
5a2468f5 8485
4082afcc 8486 if (packet_support (PACKET_P) == PACKET_DISABLE)
74ca34ce
DJ
8487 return 0;
8488
8489 if (reg->pnum == -1)
8490 return 0;
8491
ea9c271d 8492 xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
5a2468f5 8493 p = buf + strlen (buf);
34a79281 8494 regcache->raw_collect (reg->regnum, regp);
4a22f64d 8495 bin2hex (regp, p, register_size (gdbarch, reg->regnum));
1f4437a4 8496 putpkt (rs->buf);
8d64371b 8497 getpkt (&rs->buf, 0);
5a2468f5 8498
74ca34ce
DJ
8499 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P]))
8500 {
8501 case PACKET_OK:
8502 return 1;
8503 case PACKET_ERROR:
27a9c0bf 8504 error (_("Could not write register \"%s\"; remote failure reply '%s'"),
8d64371b 8505 gdbarch_register_name (gdbarch, reg->regnum), rs->buf.data ());
74ca34ce
DJ
8506 case PACKET_UNKNOWN:
8507 return 0;
8508 default:
8509 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
8510 }
c906108c
SS
8511}
8512
23860348
MS
8513/* Store register REGNUM, or all registers if REGNUM == -1, from the
8514 contents of the register cache buffer. FIXME: ignores errors. */
c906108c 8515
6b8edb51
PA
8516void
8517remote_target::store_registers_using_G (const struct regcache *regcache)
c906108c 8518{
d01949b6 8519 struct remote_state *rs = get_remote_state ();
9d6eea31 8520 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
cfd77fa1 8521 gdb_byte *regs;
c906108c
SS
8522 char *p;
8523
193cb69f
AC
8524 /* Extract all the registers in the regcache copying them into a
8525 local buffer. */
8526 {
b323314b 8527 int i;
a744cf53 8528
224c3ddb 8529 regs = (gdb_byte *) alloca (rsa->sizeof_g_packet);
ea9c271d 8530 memset (regs, 0, rsa->sizeof_g_packet);
ac7936df 8531 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
193cb69f 8532 {
ea9c271d 8533 struct packet_reg *r = &rsa->regs[i];
a744cf53 8534
b323314b 8535 if (r->in_g_packet)
34a79281 8536 regcache->raw_collect (r->regnum, regs + r->offset);
193cb69f
AC
8537 }
8538 }
c906108c
SS
8539
8540 /* Command describes registers byte by byte,
8541 each byte encoded as two hex characters. */
8d64371b 8542 p = rs->buf.data ();
193cb69f 8543 *p++ = 'G';
74ca34ce 8544 bin2hex (regs, p, rsa->sizeof_g_packet);
1f4437a4 8545 putpkt (rs->buf);
8d64371b 8546 getpkt (&rs->buf, 0);
1f4437a4 8547 if (packet_check_result (rs->buf) == PACKET_ERROR)
27a9c0bf 8548 error (_("Could not write registers; remote failure reply '%s'"),
8d64371b 8549 rs->buf.data ());
c906108c 8550}
74ca34ce
DJ
8551
8552/* Store register REGNUM, or all registers if REGNUM == -1, from the contents
8553 of the register cache buffer. FIXME: ignores errors. */
8554
f6ac5f3d
PA
8555void
8556remote_target::store_registers (struct regcache *regcache, int regnum)
74ca34ce 8557{
5cd63fda 8558 struct gdbarch *gdbarch = regcache->arch ();
9d6eea31
PA
8559 struct remote_state *rs = get_remote_state ();
8560 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
74ca34ce
DJ
8561 int i;
8562
e6e4e701 8563 set_remote_traceframe ();
222312d3 8564 set_general_thread (regcache->ptid ());
74ca34ce
DJ
8565
8566 if (regnum >= 0)
8567 {
5cd63fda 8568 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
a744cf53 8569
74ca34ce
DJ
8570 gdb_assert (reg != NULL);
8571
8572 /* Always prefer to store registers using the 'P' packet if
8573 possible; we often change only a small number of registers.
8574 Sometimes we change a larger number; we'd need help from a
8575 higher layer to know to use 'G'. */
56be3814 8576 if (store_register_using_P (regcache, reg))
74ca34ce
DJ
8577 return;
8578
8579 /* For now, don't complain if we have no way to write the
8580 register. GDB loses track of unavailable registers too
8581 easily. Some day, this may be an error. We don't have
0df8b418 8582 any way to read the register, either... */
74ca34ce
DJ
8583 if (!reg->in_g_packet)
8584 return;
8585
56be3814 8586 store_registers_using_G (regcache);
74ca34ce
DJ
8587 return;
8588 }
8589
56be3814 8590 store_registers_using_G (regcache);
74ca34ce 8591
5cd63fda 8592 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
74ca34ce 8593 if (!rsa->regs[i].in_g_packet)
56be3814 8594 if (!store_register_using_P (regcache, &rsa->regs[i]))
74ca34ce
DJ
8595 /* See above for why we do not issue an error here. */
8596 continue;
8597}
c906108c
SS
8598\f
8599
8600/* Return the number of hex digits in num. */
8601
8602static int
fba45db2 8603hexnumlen (ULONGEST num)
c906108c
SS
8604{
8605 int i;
8606
8607 for (i = 0; num != 0; i++)
8608 num >>= 4;
8609
325fac50 8610 return std::max (i, 1);
c906108c
SS
8611}
8612
2df3850c 8613/* Set BUF to the minimum number of hex digits representing NUM. */
c906108c
SS
8614
8615static int
fba45db2 8616hexnumstr (char *buf, ULONGEST num)
c906108c 8617{
c906108c 8618 int len = hexnumlen (num);
a744cf53 8619
2df3850c
JM
8620 return hexnumnstr (buf, num, len);
8621}
8622
c906108c 8623
2df3850c 8624/* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
c906108c 8625
2df3850c 8626static int
fba45db2 8627hexnumnstr (char *buf, ULONGEST num, int width)
2df3850c
JM
8628{
8629 int i;
8630
8631 buf[width] = '\0';
8632
8633 for (i = width - 1; i >= 0; i--)
c906108c 8634 {
c5aa993b 8635 buf[i] = "0123456789abcdef"[(num & 0xf)];
c906108c
SS
8636 num >>= 4;
8637 }
8638
2df3850c 8639 return width;
c906108c
SS
8640}
8641
23860348 8642/* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
c906108c
SS
8643
8644static CORE_ADDR
fba45db2 8645remote_address_masked (CORE_ADDR addr)
c906108c 8646{
883b9c6c 8647 unsigned int address_size = remote_address_size;
a744cf53 8648
911c95a5
UW
8649 /* If "remoteaddresssize" was not set, default to target address size. */
8650 if (!address_size)
f5656ead 8651 address_size = gdbarch_addr_bit (target_gdbarch ());
911c95a5
UW
8652
8653 if (address_size > 0
8654 && address_size < (sizeof (ULONGEST) * 8))
c906108c
SS
8655 {
8656 /* Only create a mask when that mask can safely be constructed
dda83cd7 8657 in a ULONGEST variable. */
c906108c 8658 ULONGEST mask = 1;
a744cf53 8659
911c95a5 8660 mask = (mask << address_size) - 1;
c906108c
SS
8661 addr &= mask;
8662 }
8663 return addr;
8664}
8665
8666/* Determine whether the remote target supports binary downloading.
8667 This is accomplished by sending a no-op memory write of zero length
8668 to the target at the specified address. It does not suffice to send
23860348
MS
8669 the whole packet, since many stubs strip the eighth bit and
8670 subsequently compute a wrong checksum, which causes real havoc with
8671 remote_write_bytes.
7a292a7a 8672
96baa820 8673 NOTE: This can still lose if the serial line is not eight-bit
0df8b418 8674 clean. In cases like this, the user should clear "remote
23860348 8675 X-packet". */
96baa820 8676
6b8edb51
PA
8677void
8678remote_target::check_binary_download (CORE_ADDR addr)
c906108c 8679{
d01949b6 8680 struct remote_state *rs = get_remote_state ();
24b06219 8681
4082afcc 8682 switch (packet_support (PACKET_X))
c906108c 8683 {
96baa820
JM
8684 case PACKET_DISABLE:
8685 break;
8686 case PACKET_ENABLE:
8687 break;
8688 case PACKET_SUPPORT_UNKNOWN:
8689 {
96baa820 8690 char *p;
802188a7 8691
8d64371b 8692 p = rs->buf.data ();
96baa820
JM
8693 *p++ = 'X';
8694 p += hexnumstr (p, (ULONGEST) addr);
8695 *p++ = ',';
8696 p += hexnumstr (p, (ULONGEST) 0);
8697 *p++ = ':';
8698 *p = '\0';
802188a7 8699
8d64371b
TT
8700 putpkt_binary (rs->buf.data (), (int) (p - rs->buf.data ()));
8701 getpkt (&rs->buf, 0);
c906108c 8702
2e9f7625 8703 if (rs->buf[0] == '\0')
96baa820 8704 {
2189c312 8705 remote_debug_printf ("binary downloading NOT supported by target");
444abaca 8706 remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
96baa820
JM
8707 }
8708 else
8709 {
2189c312 8710 remote_debug_printf ("binary downloading supported by target");
444abaca 8711 remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
96baa820
JM
8712 }
8713 break;
8714 }
c906108c
SS
8715 }
8716}
8717
124e13d9
SM
8718/* Helper function to resize the payload in order to try to get a good
8719 alignment. We try to write an amount of data such that the next write will
8720 start on an address aligned on REMOTE_ALIGN_WRITES. */
8721
8722static int
8723align_for_efficient_write (int todo, CORE_ADDR memaddr)
8724{
8725 return ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr;
8726}
8727
c906108c
SS
8728/* Write memory data directly to the remote machine.
8729 This does not inform the data cache; the data cache uses this.
a76d924d 8730 HEADER is the starting part of the packet.
c906108c
SS
8731 MEMADDR is the address in the remote memory space.
8732 MYADDR is the address of the buffer in our space.
124e13d9
SM
8733 LEN_UNITS is the number of addressable units to write.
8734 UNIT_SIZE is the length in bytes of an addressable unit.
a76d924d
DJ
8735 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
8736 should send data as binary ('X'), or hex-encoded ('M').
8737
8738 The function creates packet of the form
8739 <HEADER><ADDRESS>,<LENGTH>:<DATA>
8740
124e13d9 8741 where encoding of <DATA> is terminated by PACKET_FORMAT.
a76d924d
DJ
8742
8743 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
8744 are omitted.
8745
9b409511 8746 Return the transferred status, error or OK (an
124e13d9
SM
8747 'enum target_xfer_status' value). Save the number of addressable units
8748 transferred in *XFERED_LEN_UNITS. Only transfer a single packet.
8749
8750 On a platform with an addressable memory size of 2 bytes (UNIT_SIZE == 2), an
8751 exchange between gdb and the stub could look like (?? in place of the
8752 checksum):
8753
8754 -> $m1000,4#??
8755 <- aaaabbbbccccdddd
8756
8757 -> $M1000,3:eeeeffffeeee#??
8758 <- OK
8759
8760 -> $m1000,4#??
8761 <- eeeeffffeeeedddd */
c906108c 8762
6b8edb51
PA
8763target_xfer_status
8764remote_target::remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
8765 const gdb_byte *myaddr,
8766 ULONGEST len_units,
8767 int unit_size,
8768 ULONGEST *xfered_len_units,
8769 char packet_format, int use_length)
c906108c 8770{
6d820c5c 8771 struct remote_state *rs = get_remote_state ();
cfd77fa1 8772 char *p;
a76d924d
DJ
8773 char *plen = NULL;
8774 int plenlen = 0;
124e13d9
SM
8775 int todo_units;
8776 int units_written;
8777 int payload_capacity_bytes;
8778 int payload_length_bytes;
a76d924d
DJ
8779
8780 if (packet_format != 'X' && packet_format != 'M')
8781 internal_error (__FILE__, __LINE__,
9b20d036 8782 _("remote_write_bytes_aux: bad packet format"));
c906108c 8783
124e13d9 8784 if (len_units == 0)
9b409511 8785 return TARGET_XFER_EOF;
b2182ed2 8786
124e13d9 8787 payload_capacity_bytes = get_memory_write_packet_size ();
2bc416ba 8788
6d820c5c
DJ
8789 /* The packet buffer will be large enough for the payload;
8790 get_memory_packet_size ensures this. */
a76d924d 8791 rs->buf[0] = '\0';
c906108c 8792
a257b5bb 8793 /* Compute the size of the actual payload by subtracting out the
0df8b418
MS
8794 packet header and footer overhead: "$M<memaddr>,<len>:...#nn". */
8795
124e13d9 8796 payload_capacity_bytes -= strlen ("$,:#NN");
a76d924d 8797 if (!use_length)
0df8b418 8798 /* The comma won't be used. */
124e13d9
SM
8799 payload_capacity_bytes += 1;
8800 payload_capacity_bytes -= strlen (header);
8801 payload_capacity_bytes -= hexnumlen (memaddr);
c906108c 8802
a76d924d 8803 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
917317f4 8804
8d64371b
TT
8805 strcat (rs->buf.data (), header);
8806 p = rs->buf.data () + strlen (header);
a76d924d
DJ
8807
8808 /* Compute a best guess of the number of bytes actually transfered. */
8809 if (packet_format == 'X')
c906108c 8810 {
23860348 8811 /* Best guess at number of bytes that will fit. */
325fac50
PA
8812 todo_units = std::min (len_units,
8813 (ULONGEST) payload_capacity_bytes / unit_size);
a76d924d 8814 if (use_length)
124e13d9 8815 payload_capacity_bytes -= hexnumlen (todo_units);
325fac50 8816 todo_units = std::min (todo_units, payload_capacity_bytes / unit_size);
a76d924d
DJ
8817 }
8818 else
8819 {
124e13d9 8820 /* Number of bytes that will fit. */
325fac50
PA
8821 todo_units
8822 = std::min (len_units,
8823 (ULONGEST) (payload_capacity_bytes / unit_size) / 2);
a76d924d 8824 if (use_length)
124e13d9 8825 payload_capacity_bytes -= hexnumlen (todo_units);
325fac50
PA
8826 todo_units = std::min (todo_units,
8827 (payload_capacity_bytes / unit_size) / 2);
917317f4 8828 }
a76d924d 8829
124e13d9 8830 if (todo_units <= 0)
3de11b2e 8831 internal_error (__FILE__, __LINE__,
405f8e94 8832 _("minimum packet size too small to write data"));
802188a7 8833
6765f3e5
DJ
8834 /* If we already need another packet, then try to align the end
8835 of this packet to a useful boundary. */
124e13d9
SM
8836 if (todo_units > 2 * REMOTE_ALIGN_WRITES && todo_units < len_units)
8837 todo_units = align_for_efficient_write (todo_units, memaddr);
6765f3e5 8838
a257b5bb 8839 /* Append "<memaddr>". */
917317f4
JM
8840 memaddr = remote_address_masked (memaddr);
8841 p += hexnumstr (p, (ULONGEST) memaddr);
a257b5bb 8842
a76d924d
DJ
8843 if (use_length)
8844 {
8845 /* Append ",". */
8846 *p++ = ',';
802188a7 8847
124e13d9 8848 /* Append the length and retain its location and size. It may need to be
dda83cd7 8849 adjusted once the packet body has been created. */
a76d924d 8850 plen = p;
124e13d9 8851 plenlen = hexnumstr (p, (ULONGEST) todo_units);
a76d924d
DJ
8852 p += plenlen;
8853 }
a257b5bb
AC
8854
8855 /* Append ":". */
917317f4
JM
8856 *p++ = ':';
8857 *p = '\0';
802188a7 8858
a257b5bb 8859 /* Append the packet body. */
a76d924d 8860 if (packet_format == 'X')
917317f4 8861 {
917317f4
JM
8862 /* Binary mode. Send target system values byte by byte, in
8863 increasing byte addresses. Only escape certain critical
8864 characters. */
124e13d9
SM
8865 payload_length_bytes =
8866 remote_escape_output (myaddr, todo_units, unit_size, (gdb_byte *) p,
8867 &units_written, payload_capacity_bytes);
6765f3e5 8868
124e13d9 8869 /* If not all TODO units fit, then we'll need another packet. Make
9b7194bc
DJ
8870 a second try to keep the end of the packet aligned. Don't do
8871 this if the packet is tiny. */
124e13d9 8872 if (units_written < todo_units && units_written > 2 * REMOTE_ALIGN_WRITES)
6765f3e5 8873 {
124e13d9
SM
8874 int new_todo_units;
8875
8876 new_todo_units = align_for_efficient_write (units_written, memaddr);
8877
8878 if (new_todo_units != units_written)
8879 payload_length_bytes =
8880 remote_escape_output (myaddr, new_todo_units, unit_size,
8881 (gdb_byte *) p, &units_written,
8882 payload_capacity_bytes);
6765f3e5
DJ
8883 }
8884
124e13d9
SM
8885 p += payload_length_bytes;
8886 if (use_length && units_written < todo_units)
c906108c 8887 {
802188a7 8888 /* Escape chars have filled up the buffer prematurely,
124e13d9 8889 and we have actually sent fewer units than planned.
917317f4
JM
8890 Fix-up the length field of the packet. Use the same
8891 number of characters as before. */
124e13d9
SM
8892 plen += hexnumnstr (plen, (ULONGEST) units_written,
8893 plenlen);
917317f4 8894 *plen = ':'; /* overwrite \0 from hexnumnstr() */
c906108c 8895 }
a76d924d
DJ
8896 }
8897 else
8898 {
917317f4
JM
8899 /* Normal mode: Send target system values byte by byte, in
8900 increasing byte addresses. Each byte is encoded as a two hex
8901 value. */
124e13d9
SM
8902 p += 2 * bin2hex (myaddr, p, todo_units * unit_size);
8903 units_written = todo_units;
c906108c 8904 }
802188a7 8905
8d64371b
TT
8906 putpkt_binary (rs->buf.data (), (int) (p - rs->buf.data ()));
8907 getpkt (&rs->buf, 0);
802188a7 8908
2e9f7625 8909 if (rs->buf[0] == 'E')
00d84524 8910 return TARGET_XFER_E_IO;
802188a7 8911
124e13d9
SM
8912 /* Return UNITS_WRITTEN, not TODO_UNITS, in case escape chars caused us to
8913 send fewer units than we'd planned. */
8914 *xfered_len_units = (ULONGEST) units_written;
92ffd475 8915 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
c906108c
SS
8916}
8917
a76d924d
DJ
8918/* Write memory data directly to the remote machine.
8919 This does not inform the data cache; the data cache uses this.
8920 MEMADDR is the address in the remote memory space.
8921 MYADDR is the address of the buffer in our space.
8922 LEN is the number of bytes.
8923
9b409511
YQ
8924 Return the transferred status, error or OK (an
8925 'enum target_xfer_status' value). Save the number of bytes
8926 transferred in *XFERED_LEN. Only transfer a single packet. */
a76d924d 8927
6b8edb51
PA
8928target_xfer_status
8929remote_target::remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr,
8930 ULONGEST len, int unit_size,
8931 ULONGEST *xfered_len)
a76d924d 8932{
a121b7c1 8933 const char *packet_format = NULL;
a76d924d
DJ
8934
8935 /* Check whether the target supports binary download. */
8936 check_binary_download (memaddr);
8937
4082afcc 8938 switch (packet_support (PACKET_X))
a76d924d
DJ
8939 {
8940 case PACKET_ENABLE:
8941 packet_format = "X";
8942 break;
8943 case PACKET_DISABLE:
8944 packet_format = "M";
8945 break;
8946 case PACKET_SUPPORT_UNKNOWN:
8947 internal_error (__FILE__, __LINE__,
8948 _("remote_write_bytes: bad internal state"));
8949 default:
8950 internal_error (__FILE__, __LINE__, _("bad switch"));
8951 }
8952
8953 return remote_write_bytes_aux (packet_format,
124e13d9 8954 memaddr, myaddr, len, unit_size, xfered_len,
9b409511 8955 packet_format[0], 1);
a76d924d
DJ
8956}
8957
9217e74e
YQ
8958/* Read memory data directly from the remote machine.
8959 This does not use the data cache; the data cache uses this.
8960 MEMADDR is the address in the remote memory space.
8961 MYADDR is the address of the buffer in our space.
124e13d9
SM
8962 LEN_UNITS is the number of addressable memory units to read..
8963 UNIT_SIZE is the length in bytes of an addressable unit.
9217e74e
YQ
8964
8965 Return the transferred status, error or OK (an
8966 'enum target_xfer_status' value). Save the number of bytes
124e13d9
SM
8967 transferred in *XFERED_LEN_UNITS.
8968
8969 See the comment of remote_write_bytes_aux for an example of
8970 memory read/write exchange between gdb and the stub. */
9217e74e 8971
6b8edb51
PA
8972target_xfer_status
8973remote_target::remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr,
8974 ULONGEST len_units,
8975 int unit_size, ULONGEST *xfered_len_units)
9217e74e
YQ
8976{
8977 struct remote_state *rs = get_remote_state ();
124e13d9 8978 int buf_size_bytes; /* Max size of packet output buffer. */
9217e74e 8979 char *p;
124e13d9
SM
8980 int todo_units;
8981 int decoded_bytes;
9217e74e 8982
124e13d9 8983 buf_size_bytes = get_memory_read_packet_size ();
9217e74e
YQ
8984 /* The packet buffer will be large enough for the payload;
8985 get_memory_packet_size ensures this. */
8986
124e13d9 8987 /* Number of units that will fit. */
325fac50
PA
8988 todo_units = std::min (len_units,
8989 (ULONGEST) (buf_size_bytes / unit_size) / 2);
9217e74e
YQ
8990
8991 /* Construct "m"<memaddr>","<len>". */
8992 memaddr = remote_address_masked (memaddr);
8d64371b 8993 p = rs->buf.data ();
9217e74e
YQ
8994 *p++ = 'm';
8995 p += hexnumstr (p, (ULONGEST) memaddr);
8996 *p++ = ',';
124e13d9 8997 p += hexnumstr (p, (ULONGEST) todo_units);
9217e74e
YQ
8998 *p = '\0';
8999 putpkt (rs->buf);
8d64371b 9000 getpkt (&rs->buf, 0);
9217e74e
YQ
9001 if (rs->buf[0] == 'E'
9002 && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2])
9003 && rs->buf[3] == '\0')
9004 return TARGET_XFER_E_IO;
9005 /* Reply describes memory byte by byte, each byte encoded as two hex
9006 characters. */
8d64371b 9007 p = rs->buf.data ();
124e13d9 9008 decoded_bytes = hex2bin (p, myaddr, todo_units * unit_size);
9217e74e 9009 /* Return what we have. Let higher layers handle partial reads. */
124e13d9 9010 *xfered_len_units = (ULONGEST) (decoded_bytes / unit_size);
92ffd475 9011 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
9217e74e
YQ
9012}
9013
b55fbac4
YQ
9014/* Using the set of read-only target sections of remote, read live
9015 read-only memory.
8acf9577
YQ
9016
9017 For interface/parameters/return description see target.h,
9018 to_xfer_partial. */
9019
6b8edb51
PA
9020target_xfer_status
9021remote_target::remote_xfer_live_readonly_partial (gdb_byte *readbuf,
9022 ULONGEST memaddr,
9023 ULONGEST len,
9024 int unit_size,
9025 ULONGEST *xfered_len)
8acf9577
YQ
9026{
9027 struct target_section *secp;
8acf9577 9028
6b8edb51 9029 secp = target_section_by_addr (this, memaddr);
8acf9577 9030 if (secp != NULL
fd361982 9031 && (bfd_section_flags (secp->the_bfd_section) & SEC_READONLY))
8acf9577 9032 {
8acf9577
YQ
9033 ULONGEST memend = memaddr + len;
9034
d7a78e5c
TT
9035 target_section_table *table = target_get_section_table (this);
9036 for (target_section &p : *table)
8acf9577 9037 {
bb2a6777 9038 if (memaddr >= p.addr)
8acf9577 9039 {
bb2a6777 9040 if (memend <= p.endaddr)
8acf9577
YQ
9041 {
9042 /* Entire transfer is within this section. */
124e13d9 9043 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 9044 xfered_len);
8acf9577 9045 }
bb2a6777 9046 else if (memaddr >= p.endaddr)
8acf9577
YQ
9047 {
9048 /* This section ends before the transfer starts. */
9049 continue;
9050 }
9051 else
9052 {
9053 /* This section overlaps the transfer. Just do half. */
bb2a6777 9054 len = p.endaddr - memaddr;
124e13d9 9055 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 9056 xfered_len);
8acf9577
YQ
9057 }
9058 }
9059 }
9060 }
9061
9062 return TARGET_XFER_EOF;
9063}
9064
9217e74e
YQ
9065/* Similar to remote_read_bytes_1, but it reads from the remote stub
9066 first if the requested memory is unavailable in traceframe.
9067 Otherwise, fall back to remote_read_bytes_1. */
c906108c 9068
6b8edb51
PA
9069target_xfer_status
9070remote_target::remote_read_bytes (CORE_ADDR memaddr,
9071 gdb_byte *myaddr, ULONGEST len, int unit_size,
9072 ULONGEST *xfered_len)
c906108c 9073{
6b6aa828 9074 if (len == 0)
96c4f946 9075 return TARGET_XFER_EOF;
b2182ed2 9076
8acf9577
YQ
9077 if (get_traceframe_number () != -1)
9078 {
a79b1bc6 9079 std::vector<mem_range> available;
8acf9577
YQ
9080
9081 /* If we fail to get the set of available memory, then the
9082 target does not support querying traceframe info, and so we
9083 attempt reading from the traceframe anyway (assuming the
9084 target implements the old QTro packet then). */
9085 if (traceframe_available_memory (&available, memaddr, len))
9086 {
a79b1bc6 9087 if (available.empty () || available[0].start != memaddr)
8acf9577
YQ
9088 {
9089 enum target_xfer_status res;
9090
9091 /* Don't read into the traceframe's available
9092 memory. */
a79b1bc6 9093 if (!available.empty ())
8acf9577
YQ
9094 {
9095 LONGEST oldlen = len;
9096
a79b1bc6 9097 len = available[0].start - memaddr;
8acf9577
YQ
9098 gdb_assert (len <= oldlen);
9099 }
9100
8acf9577 9101 /* This goes through the topmost target again. */
6b8edb51 9102 res = remote_xfer_live_readonly_partial (myaddr, memaddr,
124e13d9 9103 len, unit_size, xfered_len);
8acf9577
YQ
9104 if (res == TARGET_XFER_OK)
9105 return TARGET_XFER_OK;
9106 else
9107 {
9108 /* No use trying further, we know some memory starting
9109 at MEMADDR isn't available. */
9110 *xfered_len = len;
92ffd475
PC
9111 return (*xfered_len != 0) ?
9112 TARGET_XFER_UNAVAILABLE : TARGET_XFER_EOF;
8acf9577
YQ
9113 }
9114 }
9115
9116 /* Don't try to read more than how much is available, in
9117 case the target implements the deprecated QTro packet to
9118 cater for older GDBs (the target's knowledge of read-only
9119 sections may be outdated by now). */
a79b1bc6 9120 len = available[0].length;
8acf9577
YQ
9121 }
9122 }
9123
124e13d9 9124 return remote_read_bytes_1 (memaddr, myaddr, len, unit_size, xfered_len);
c906108c 9125}
74531fed 9126
c906108c 9127\f
c906108c 9128
a76d924d
DJ
9129/* Sends a packet with content determined by the printf format string
9130 FORMAT and the remaining arguments, then gets the reply. Returns
9131 whether the packet was a success, a failure, or unknown. */
9132
6b8edb51
PA
9133packet_result
9134remote_target::remote_send_printf (const char *format, ...)
a76d924d
DJ
9135{
9136 struct remote_state *rs = get_remote_state ();
9137 int max_size = get_remote_packet_size ();
a76d924d 9138 va_list ap;
a744cf53 9139
a76d924d
DJ
9140 va_start (ap, format);
9141
9142 rs->buf[0] = '\0';
8d64371b 9143 int size = vsnprintf (rs->buf.data (), max_size, format, ap);
33b031ce
GB
9144
9145 va_end (ap);
9146
9147 if (size >= max_size)
9b20d036 9148 internal_error (__FILE__, __LINE__, _("Too long remote packet."));
a76d924d
DJ
9149
9150 if (putpkt (rs->buf) < 0)
9151 error (_("Communication problem with target."));
9152
9153 rs->buf[0] = '\0';
8d64371b 9154 getpkt (&rs->buf, 0);
a76d924d
DJ
9155
9156 return packet_check_result (rs->buf);
9157}
9158
a76d924d
DJ
9159/* Flash writing can take quite some time. We'll set
9160 effectively infinite timeout for flash operations.
9161 In future, we'll need to decide on a better approach. */
9162static const int remote_flash_timeout = 1000;
9163
f6ac5f3d
PA
9164void
9165remote_target::flash_erase (ULONGEST address, LONGEST length)
a76d924d 9166{
f5656ead 9167 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
a76d924d 9168 enum packet_result ret;
2ec845e7
TT
9169 scoped_restore restore_timeout
9170 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
a76d924d
DJ
9171
9172 ret = remote_send_printf ("vFlashErase:%s,%s",
5af949e3 9173 phex (address, addr_size),
a76d924d
DJ
9174 phex (length, 4));
9175 switch (ret)
9176 {
9177 case PACKET_UNKNOWN:
9178 error (_("Remote target does not support flash erase"));
9179 case PACKET_ERROR:
9180 error (_("Error erasing flash with vFlashErase packet"));
9181 default:
9182 break;
9183 }
a76d924d
DJ
9184}
9185
6b8edb51
PA
9186target_xfer_status
9187remote_target::remote_flash_write (ULONGEST address,
9188 ULONGEST length, ULONGEST *xfered_len,
9189 const gdb_byte *data)
a76d924d 9190{
2ec845e7
TT
9191 scoped_restore restore_timeout
9192 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
9193 return remote_write_bytes_aux ("vFlashWrite:", address, data, length, 1,
9194 xfered_len,'X', 0);
a76d924d
DJ
9195}
9196
f6ac5f3d
PA
9197void
9198remote_target::flash_done ()
a76d924d 9199{
a76d924d 9200 int ret;
a76d924d 9201
2ec845e7
TT
9202 scoped_restore restore_timeout
9203 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
9204
a76d924d 9205 ret = remote_send_printf ("vFlashDone");
a76d924d
DJ
9206
9207 switch (ret)
9208 {
9209 case PACKET_UNKNOWN:
9210 error (_("Remote target does not support vFlashDone"));
9211 case PACKET_ERROR:
9212 error (_("Error finishing flash operation"));
9213 default:
9214 break;
9215 }
9216}
9217
f6ac5f3d
PA
9218void
9219remote_target::files_info ()
c906108c
SS
9220{
9221 puts_filtered ("Debugging a target over a serial line.\n");
9222}
9223\f
9224/* Stuff for dealing with the packets which are part of this protocol.
9225 See comment at top of file for details. */
9226
1927e618
PA
9227/* Close/unpush the remote target, and throw a TARGET_CLOSE_ERROR
9228 error to higher layers. Called when a serial error is detected.
9229 The exception message is STRING, followed by a colon and a blank,
d6cb50a2
JK
9230 the system error message for errno at function entry and final dot
9231 for output compatibility with throw_perror_with_name. */
1927e618
PA
9232
9233static void
5b6d1e4f 9234unpush_and_perror (remote_target *target, const char *string)
1927e618 9235{
d6cb50a2 9236 int saved_errno = errno;
1927e618 9237
5b6d1e4f 9238 remote_unpush_target (target);
d6cb50a2
JK
9239 throw_error (TARGET_CLOSE_ERROR, "%s: %s.", string,
9240 safe_strerror (saved_errno));
1927e618
PA
9241}
9242
048094ac
PA
9243/* Read a single character from the remote end. The current quit
9244 handler is overridden to avoid quitting in the middle of packet
9245 sequence, as that would break communication with the remote server.
9246 See remote_serial_quit_handler for more detail. */
c906108c 9247
6b8edb51
PA
9248int
9249remote_target::readchar (int timeout)
c906108c
SS
9250{
9251 int ch;
5d93a237 9252 struct remote_state *rs = get_remote_state ();
048094ac 9253
2ec845e7 9254 {
6b8edb51
PA
9255 scoped_restore restore_quit_target
9256 = make_scoped_restore (&curr_quit_handler_target, this);
2ec845e7 9257 scoped_restore restore_quit
6b8edb51 9258 = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
c906108c 9259
2ec845e7 9260 rs->got_ctrlc_during_io = 0;
c906108c 9261
2ec845e7 9262 ch = serial_readchar (rs->remote_desc, timeout);
048094ac 9263
2ec845e7
TT
9264 if (rs->got_ctrlc_during_io)
9265 set_quit_flag ();
9266 }
048094ac 9267
2acceee2 9268 if (ch >= 0)
0876f84a 9269 return ch;
2acceee2
JM
9270
9271 switch ((enum serial_rc) ch)
c906108c
SS
9272 {
9273 case SERIAL_EOF:
5b6d1e4f 9274 remote_unpush_target (this);
598d3636 9275 throw_error (TARGET_CLOSE_ERROR, _("Remote connection closed"));
2acceee2 9276 /* no return */
c906108c 9277 case SERIAL_ERROR:
5b6d1e4f
PA
9278 unpush_and_perror (this, _("Remote communication error. "
9279 "Target disconnected."));
2acceee2 9280 /* no return */
c906108c 9281 case SERIAL_TIMEOUT:
2acceee2 9282 break;
c906108c 9283 }
2acceee2 9284 return ch;
c906108c
SS
9285}
9286
c33e31fd 9287/* Wrapper for serial_write that closes the target and throws if
048094ac
PA
9288 writing fails. The current quit handler is overridden to avoid
9289 quitting in the middle of packet sequence, as that would break
9290 communication with the remote server. See
9291 remote_serial_quit_handler for more detail. */
c33e31fd 9292
6b8edb51
PA
9293void
9294remote_target::remote_serial_write (const char *str, int len)
c33e31fd 9295{
5d93a237 9296 struct remote_state *rs = get_remote_state ();
048094ac 9297
6b8edb51
PA
9298 scoped_restore restore_quit_target
9299 = make_scoped_restore (&curr_quit_handler_target, this);
2ec845e7 9300 scoped_restore restore_quit
6b8edb51 9301 = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
048094ac
PA
9302
9303 rs->got_ctrlc_during_io = 0;
5d93a237
TT
9304
9305 if (serial_write (rs->remote_desc, str, len))
c33e31fd 9306 {
5b6d1e4f
PA
9307 unpush_and_perror (this, _("Remote communication error. "
9308 "Target disconnected."));
c33e31fd 9309 }
048094ac
PA
9310
9311 if (rs->got_ctrlc_during_io)
9312 set_quit_flag ();
c33e31fd
PA
9313}
9314
b3ced9ba
PA
9315/* Return a string representing an escaped version of BUF, of len N.
9316 E.g. \n is converted to \\n, \t to \\t, etc. */
6e5abd65 9317
b3ced9ba 9318static std::string
6e5abd65
PA
9319escape_buffer (const char *buf, int n)
9320{
d7e74731 9321 string_file stb;
6e5abd65 9322
d7e74731
PA
9323 stb.putstrn (buf, n, '\\');
9324 return std::move (stb.string ());
6e5abd65
PA
9325}
9326
c906108c
SS
9327/* Display a null-terminated packet on stdout, for debugging, using C
9328 string notation. */
9329
9330static void
baa336ce 9331print_packet (const char *buf)
c906108c
SS
9332{
9333 puts_filtered ("\"");
43e526b9 9334 fputstr_filtered (buf, '"', gdb_stdout);
c906108c
SS
9335 puts_filtered ("\"");
9336}
9337
9338int
6b8edb51 9339remote_target::putpkt (const char *buf)
c906108c
SS
9340{
9341 return putpkt_binary (buf, strlen (buf));
9342}
9343
6b8edb51
PA
9344/* Wrapper around remote_target::putpkt to avoid exporting
9345 remote_target. */
9346
9347int
9348putpkt (remote_target *remote, const char *buf)
9349{
9350 return remote->putpkt (buf);
9351}
9352
c906108c 9353/* Send a packet to the remote machine, with error checking. The data
23860348 9354 of the packet is in BUF. The string in BUF can be at most
ea9c271d 9355 get_remote_packet_size () - 5 to account for the $, # and checksum,
23860348
MS
9356 and for a possible /0 if we are debugging (remote_debug) and want
9357 to print the sent packet as a string. */
c906108c 9358
6b8edb51
PA
9359int
9360remote_target::putpkt_binary (const char *buf, int cnt)
c906108c 9361{
2d717e4f 9362 struct remote_state *rs = get_remote_state ();
c906108c
SS
9363 int i;
9364 unsigned char csum = 0;
b80406ac
TT
9365 gdb::def_vector<char> data (cnt + 6);
9366 char *buf2 = data.data ();
085dd6e6 9367
c906108c
SS
9368 int ch;
9369 int tcount = 0;
9370 char *p;
9371
e24a49d8
PA
9372 /* Catch cases like trying to read memory or listing threads while
9373 we're waiting for a stop reply. The remote server wouldn't be
9374 ready to handle this request, so we'd hang and timeout. We don't
9375 have to worry about this in synchronous mode, because in that
9376 case it's not possible to issue a command while the target is
74531fed
PA
9377 running. This is not a problem in non-stop mode, because in that
9378 case, the stub is always ready to process serial input. */
6efcd9a8
PA
9379 if (!target_is_non_stop_p ()
9380 && target_is_async_p ()
9381 && rs->waiting_for_stop_reply)
9597b22a
DE
9382 {
9383 error (_("Cannot execute this command while the target is running.\n"
9384 "Use the \"interrupt\" command to stop the target\n"
9385 "and then try again."));
9386 }
e24a49d8 9387
2d717e4f
DJ
9388 /* We're sending out a new packet. Make sure we don't look at a
9389 stale cached response. */
9390 rs->cached_wait_status = 0;
9391
c906108c
SS
9392 /* Copy the packet into buffer BUF2, encapsulating it
9393 and giving it a checksum. */
9394
c906108c
SS
9395 p = buf2;
9396 *p++ = '$';
9397
9398 for (i = 0; i < cnt; i++)
9399 {
9400 csum += buf[i];
9401 *p++ = buf[i];
9402 }
9403 *p++ = '#';
9404 *p++ = tohex ((csum >> 4) & 0xf);
9405 *p++ = tohex (csum & 0xf);
9406
9407 /* Send it over and over until we get a positive ack. */
9408
9409 while (1)
9410 {
c906108c
SS
9411 if (remote_debug)
9412 {
9413 *p = '\0';
b3ced9ba 9414
6f8976bf 9415 int len = (int) (p - buf2);
6cc8564b
LM
9416 int max_chars;
9417
9418 if (remote_packet_max_chars < 0)
9419 max_chars = len;
9420 else
9421 max_chars = remote_packet_max_chars;
6f8976bf
YQ
9422
9423 std::string str
6cc8564b 9424 = escape_buffer (buf2, std::min (len, max_chars));
6f8976bf 9425
6cc8564b 9426 if (len > max_chars)
2189c312
SM
9427 remote_debug_printf_nofunc
9428 ("Sending packet: %s [%d bytes omitted]", str.c_str (),
9429 len - max_chars);
9430 else
9431 remote_debug_printf_nofunc ("Sending packet: %s", str.c_str ());
c906108c 9432 }
c33e31fd 9433 remote_serial_write (buf2, p - buf2);
c906108c 9434
a6f3e723
SL
9435 /* If this is a no acks version of the remote protocol, send the
9436 packet and move on. */
9437 if (rs->noack_mode)
dda83cd7 9438 break;
a6f3e723 9439
74531fed
PA
9440 /* Read until either a timeout occurs (-2) or '+' is read.
9441 Handle any notification that arrives in the mean time. */
c906108c
SS
9442 while (1)
9443 {
9444 ch = readchar (remote_timeout);
9445
c906108c
SS
9446 switch (ch)
9447 {
9448 case '+':
2189c312 9449 remote_debug_printf_nofunc ("Received Ack");
c906108c 9450 return 1;
1216fa2c 9451 case '-':
2189c312 9452 remote_debug_printf_nofunc ("Received Nak");
a17d146e 9453 /* FALLTHROUGH */
c906108c 9454 case SERIAL_TIMEOUT:
c5aa993b 9455 tcount++;
c906108c 9456 if (tcount > 3)
b80406ac 9457 return 0;
23860348 9458 break; /* Retransmit buffer. */
c906108c
SS
9459 case '$':
9460 {
2189c312 9461 remote_debug_printf ("Packet instead of Ack, ignoring it");
d6f7abdf
AC
9462 /* It's probably an old response sent because an ACK
9463 was lost. Gobble up the packet and ack it so it
9464 doesn't get retransmitted when we resend this
9465 packet. */
6d820c5c 9466 skip_frame ();
c33e31fd 9467 remote_serial_write ("+", 1);
23860348 9468 continue; /* Now, go look for +. */
c906108c 9469 }
74531fed
PA
9470
9471 case '%':
9472 {
9473 int val;
9474
9475 /* If we got a notification, handle it, and go back to looking
9476 for an ack. */
9477 /* We've found the start of a notification. Now
9478 collect the data. */
8d64371b 9479 val = read_frame (&rs->buf);
74531fed
PA
9480 if (val >= 0)
9481 {
2189c312
SM
9482 remote_debug_printf_nofunc
9483 (" Notification received: %s",
9484 escape_buffer (rs->buf.data (), val).c_str ());
6e5abd65 9485
8d64371b 9486 handle_notification (rs->notif_state, rs->buf.data ());
74531fed
PA
9487 /* We're in sync now, rewait for the ack. */
9488 tcount = 0;
9489 }
9490 else
2189c312
SM
9491 remote_debug_printf_nofunc ("Junk: %c%s", ch & 0177,
9492 rs->buf.data ());
74531fed
PA
9493 continue;
9494 }
9495 /* fall-through */
c906108c 9496 default:
2189c312
SM
9497 remote_debug_printf_nofunc ("Junk: %c%s", ch & 0177,
9498 rs->buf.data ());
c906108c
SS
9499 continue;
9500 }
23860348 9501 break; /* Here to retransmit. */
c906108c
SS
9502 }
9503
9504#if 0
9505 /* This is wrong. If doing a long backtrace, the user should be
dda83cd7
SM
9506 able to get out next time we call QUIT, without anything as
9507 violent as interrupt_query. If we want to provide a way out of
9508 here without getting to the next QUIT, it should be based on
9509 hitting ^C twice as in remote_wait. */
c906108c
SS
9510 if (quit_flag)
9511 {
9512 quit_flag = 0;
9513 interrupt_query ();
9514 }
9515#endif
9516 }
a5c0808e 9517
a6f3e723 9518 return 0;
c906108c
SS
9519}
9520
6d820c5c
DJ
9521/* Come here after finding the start of a frame when we expected an
9522 ack. Do our best to discard the rest of this packet. */
9523
6b8edb51
PA
9524void
9525remote_target::skip_frame ()
6d820c5c
DJ
9526{
9527 int c;
9528
9529 while (1)
9530 {
9531 c = readchar (remote_timeout);
9532 switch (c)
9533 {
9534 case SERIAL_TIMEOUT:
9535 /* Nothing we can do. */
9536 return;
9537 case '#':
9538 /* Discard the two bytes of checksum and stop. */
9539 c = readchar (remote_timeout);
9540 if (c >= 0)
9541 c = readchar (remote_timeout);
9542
9543 return;
9544 case '*': /* Run length encoding. */
9545 /* Discard the repeat count. */
9546 c = readchar (remote_timeout);
9547 if (c < 0)
9548 return;
9549 break;
9550 default:
9551 /* A regular character. */
9552 break;
9553 }
9554 }
9555}
9556
c906108c 9557/* Come here after finding the start of the frame. Collect the rest
6d820c5c
DJ
9558 into *BUF, verifying the checksum, length, and handling run-length
9559 compression. NUL terminate the buffer. If there is not enough room,
8d64371b 9560 expand *BUF.
c906108c 9561
c2d11a7d
JM
9562 Returns -1 on error, number of characters in buffer (ignoring the
9563 trailing NULL) on success. (could be extended to return one of the
23860348 9564 SERIAL status indications). */
c2d11a7d 9565
6b8edb51 9566long
8d64371b 9567remote_target::read_frame (gdb::char_vector *buf_p)
c906108c
SS
9568{
9569 unsigned char csum;
c2d11a7d 9570 long bc;
c906108c 9571 int c;
8d64371b 9572 char *buf = buf_p->data ();
a6f3e723 9573 struct remote_state *rs = get_remote_state ();
c906108c
SS
9574
9575 csum = 0;
c2d11a7d 9576 bc = 0;
c906108c
SS
9577
9578 while (1)
9579 {
9580 c = readchar (remote_timeout);
c906108c
SS
9581 switch (c)
9582 {
9583 case SERIAL_TIMEOUT:
2189c312 9584 remote_debug_printf ("Timeout in mid-packet, retrying");
c2d11a7d 9585 return -1;
2189c312 9586
c906108c 9587 case '$':
2189c312 9588 remote_debug_printf ("Saw new packet start in middle of old one");
23860348 9589 return -1; /* Start a new packet, count retries. */
2189c312 9590
c906108c
SS
9591 case '#':
9592 {
9593 unsigned char pktcsum;
e1b09194
AC
9594 int check_0 = 0;
9595 int check_1 = 0;
c906108c 9596
c2d11a7d 9597 buf[bc] = '\0';
c906108c 9598
e1b09194
AC
9599 check_0 = readchar (remote_timeout);
9600 if (check_0 >= 0)
9601 check_1 = readchar (remote_timeout);
802188a7 9602
e1b09194
AC
9603 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
9604 {
2189c312 9605 remote_debug_printf ("Timeout in checksum, retrying");
e1b09194
AC
9606 return -1;
9607 }
9608 else if (check_0 < 0 || check_1 < 0)
40e3f985 9609 {
2189c312 9610 remote_debug_printf ("Communication error in checksum");
40e3f985
FN
9611 return -1;
9612 }
c906108c 9613
a6f3e723
SL
9614 /* Don't recompute the checksum; with no ack packets we
9615 don't have any way to indicate a packet retransmission
9616 is necessary. */
9617 if (rs->noack_mode)
9618 return bc;
9619
e1b09194 9620 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
c906108c 9621 if (csum == pktcsum)
dda83cd7 9622 return bc;
c906108c 9623
2189c312
SM
9624 remote_debug_printf
9625 ("Bad checksum, sentsum=0x%x, csum=0x%x, buf=%s",
9626 pktcsum, csum, escape_buffer (buf, bc).c_str ());
6e5abd65 9627
c2d11a7d 9628 /* Number of characters in buffer ignoring trailing
dda83cd7 9629 NULL. */
c2d11a7d 9630 return -1;
c906108c 9631 }
23860348 9632 case '*': /* Run length encoding. */
dda83cd7 9633 {
c2c6d25f 9634 int repeat;
c906108c 9635
a744cf53 9636 csum += c;
b4501125
AC
9637 c = readchar (remote_timeout);
9638 csum += c;
23860348 9639 repeat = c - ' ' + 3; /* Compute repeat count. */
c906108c 9640
23860348 9641 /* The character before ``*'' is repeated. */
c2d11a7d 9642
6d820c5c 9643 if (repeat > 0 && repeat <= 255 && bc > 0)
c2c6d25f 9644 {
8d64371b 9645 if (bc + repeat - 1 >= buf_p->size () - 1)
6d820c5c
DJ
9646 {
9647 /* Make some more room in the buffer. */
8d64371b
TT
9648 buf_p->resize (buf_p->size () + repeat);
9649 buf = buf_p->data ();
6d820c5c
DJ
9650 }
9651
c2d11a7d
JM
9652 memset (&buf[bc], buf[bc - 1], repeat);
9653 bc += repeat;
c2c6d25f
JM
9654 continue;
9655 }
9656
c2d11a7d 9657 buf[bc] = '\0';
6d820c5c 9658 printf_filtered (_("Invalid run length encoding: %s\n"), buf);
c2d11a7d 9659 return -1;
c2c6d25f 9660 }
c906108c 9661 default:
8d64371b 9662 if (bc >= buf_p->size () - 1)
c906108c 9663 {
6d820c5c 9664 /* Make some more room in the buffer. */
8d64371b
TT
9665 buf_p->resize (buf_p->size () * 2);
9666 buf = buf_p->data ();
c906108c
SS
9667 }
9668
6d820c5c
DJ
9669 buf[bc++] = c;
9670 csum += c;
9671 continue;
c906108c
SS
9672 }
9673 }
9674}
9675
ed2b7c17
TT
9676/* Set this to the maximum number of seconds to wait instead of waiting forever
9677 in target_wait(). If this timer times out, then it generates an error and
9678 the command is aborted. This replaces most of the need for timeouts in the
9679 GDB test suite, and makes it possible to distinguish between a hung target
9680 and one with slow communications. */
9681
9682static int watchdog = 0;
9683static void
9684show_watchdog (struct ui_file *file, int from_tty,
9685 struct cmd_list_element *c, const char *value)
9686{
9687 fprintf_filtered (file, _("Watchdog timer is %s.\n"), value);
9688}
9689
c906108c 9690/* Read a packet from the remote machine, with error checking, and
8d64371b
TT
9691 store it in *BUF. Resize *BUF if necessary to hold the result. If
9692 FOREVER, wait forever rather than timing out; this is used (in
9693 synchronous mode) to wait for a target that is is executing user
9694 code to stop. */
d9fcf2fb
JM
9695/* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
9696 don't have to change all the calls to getpkt to deal with the
9697 return value, because at the moment I don't know what the right
23860348 9698 thing to do it for those. */
6b8edb51 9699
c906108c 9700void
8d64371b 9701remote_target::getpkt (gdb::char_vector *buf, int forever)
d9fcf2fb 9702{
8d64371b 9703 getpkt_sane (buf, forever);
d9fcf2fb
JM
9704}
9705
9706
9707/* Read a packet from the remote machine, with error checking, and
8d64371b
TT
9708 store it in *BUF. Resize *BUF if necessary to hold the result. If
9709 FOREVER, wait forever rather than timing out; this is used (in
9710 synchronous mode) to wait for a target that is is executing user
9711 code to stop. If FOREVER == 0, this function is allowed to time
9712 out gracefully and return an indication of this to the caller.
9713 Otherwise return the number of bytes read. If EXPECTING_NOTIF,
9714 consider receiving a notification enough reason to return to the
9715 caller. *IS_NOTIF is an output boolean that indicates whether *BUF
9716 holds a notification or not (a regular packet). */
74531fed 9717
6b8edb51 9718int
8d64371b 9719remote_target::getpkt_or_notif_sane_1 (gdb::char_vector *buf,
6b8edb51
PA
9720 int forever, int expecting_notif,
9721 int *is_notif)
c906108c 9722{
2d717e4f 9723 struct remote_state *rs = get_remote_state ();
c906108c
SS
9724 int c;
9725 int tries;
9726 int timeout;
df4b58fe 9727 int val = -1;
c906108c 9728
2d717e4f
DJ
9729 /* We're reading a new response. Make sure we don't look at a
9730 previously cached response. */
9731 rs->cached_wait_status = 0;
9732
8d64371b 9733 strcpy (buf->data (), "timeout");
c906108c
SS
9734
9735 if (forever)
74531fed
PA
9736 timeout = watchdog > 0 ? watchdog : -1;
9737 else if (expecting_notif)
9738 timeout = 0; /* There should already be a char in the buffer. If
9739 not, bail out. */
c906108c
SS
9740 else
9741 timeout = remote_timeout;
9742
9743#define MAX_TRIES 3
9744
74531fed
PA
9745 /* Process any number of notifications, and then return when
9746 we get a packet. */
9747 for (;;)
c906108c 9748 {
d9c43928 9749 /* If we get a timeout or bad checksum, retry up to MAX_TRIES
74531fed
PA
9750 times. */
9751 for (tries = 1; tries <= MAX_TRIES; tries++)
c906108c 9752 {
74531fed
PA
9753 /* This can loop forever if the remote side sends us
9754 characters continuously, but if it pauses, we'll get
9755 SERIAL_TIMEOUT from readchar because of timeout. Then
9756 we'll count that as a retry.
9757
9758 Note that even when forever is set, we will only wait
9759 forever prior to the start of a packet. After that, we
9760 expect characters to arrive at a brisk pace. They should
9761 show up within remote_timeout intervals. */
9762 do
9763 c = readchar (timeout);
9764 while (c != SERIAL_TIMEOUT && c != '$' && c != '%');
c906108c
SS
9765
9766 if (c == SERIAL_TIMEOUT)
9767 {
74531fed
PA
9768 if (expecting_notif)
9769 return -1; /* Don't complain, it's normal to not get
9770 anything in this case. */
9771
23860348 9772 if (forever) /* Watchdog went off? Kill the target. */
c906108c 9773 {
5b6d1e4f 9774 remote_unpush_target (this);
598d3636
JK
9775 throw_error (TARGET_CLOSE_ERROR,
9776 _("Watchdog timeout has expired. "
9777 "Target detached."));
c906108c 9778 }
2189c312
SM
9779
9780 remote_debug_printf ("Timed out.");
c906108c 9781 }
74531fed
PA
9782 else
9783 {
9784 /* We've found the start of a packet or notification.
9785 Now collect the data. */
8d64371b 9786 val = read_frame (buf);
74531fed
PA
9787 if (val >= 0)
9788 break;
9789 }
9790
c33e31fd 9791 remote_serial_write ("-", 1);
c906108c 9792 }
c906108c 9793
74531fed
PA
9794 if (tries > MAX_TRIES)
9795 {
9796 /* We have tried hard enough, and just can't receive the
9797 packet/notification. Give up. */
9798 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
c906108c 9799
74531fed
PA
9800 /* Skip the ack char if we're in no-ack mode. */
9801 if (!rs->noack_mode)
c33e31fd 9802 remote_serial_write ("+", 1);
74531fed
PA
9803 return -1;
9804 }
c906108c 9805
74531fed
PA
9806 /* If we got an ordinary packet, return that to our caller. */
9807 if (c == '$')
c906108c
SS
9808 {
9809 if (remote_debug)
43e526b9 9810 {
6cc8564b
LM
9811 int max_chars;
9812
9813 if (remote_packet_max_chars < 0)
9814 max_chars = val;
9815 else
9816 max_chars = remote_packet_max_chars;
9817
6f8976bf 9818 std::string str
8d64371b 9819 = escape_buffer (buf->data (),
6cc8564b 9820 std::min (val, max_chars));
6f8976bf 9821
6cc8564b 9822 if (val > max_chars)
2189c312
SM
9823 remote_debug_printf_nofunc
9824 ("Packet received: %s [%d bytes omitted]", str.c_str (),
9825 val - max_chars);
9826 else
9827 remote_debug_printf_nofunc ("Packet received: %s",
9828 str.c_str ());
43e526b9 9829 }
a6f3e723
SL
9830
9831 /* Skip the ack char if we're in no-ack mode. */
9832 if (!rs->noack_mode)
c33e31fd 9833 remote_serial_write ("+", 1);
fee9eda9
YQ
9834 if (is_notif != NULL)
9835 *is_notif = 0;
0876f84a 9836 return val;
c906108c
SS
9837 }
9838
74531fed
PA
9839 /* If we got a notification, handle it, and go back to looking
9840 for a packet. */
9841 else
9842 {
9843 gdb_assert (c == '%');
9844
2189c312
SM
9845 remote_debug_printf_nofunc
9846 (" Notification received: %s",
9847 escape_buffer (buf->data (), val).c_str ());
6e5abd65 9848
fee9eda9
YQ
9849 if (is_notif != NULL)
9850 *is_notif = 1;
c906108c 9851
8d64371b 9852 handle_notification (rs->notif_state, buf->data ());
c906108c 9853
74531fed 9854 /* Notifications require no acknowledgement. */
a6f3e723 9855
74531fed 9856 if (expecting_notif)
fee9eda9 9857 return val;
74531fed
PA
9858 }
9859 }
9860}
9861
6b8edb51 9862int
8d64371b 9863remote_target::getpkt_sane (gdb::char_vector *buf, int forever)
74531fed 9864{
8d64371b 9865 return getpkt_or_notif_sane_1 (buf, forever, 0, NULL);
74531fed
PA
9866}
9867
6b8edb51 9868int
8d64371b 9869remote_target::getpkt_or_notif_sane (gdb::char_vector *buf, int forever,
6b8edb51 9870 int *is_notif)
74531fed 9871{
8d64371b 9872 return getpkt_or_notif_sane_1 (buf, forever, 1, is_notif);
c906108c 9873}
74531fed 9874
cbb8991c
DB
9875/* Kill any new fork children of process PID that haven't been
9876 processed by follow_fork. */
9877
6b8edb51
PA
9878void
9879remote_target::kill_new_fork_children (int pid)
cbb8991c 9880{
6b8edb51 9881 remote_state *rs = get_remote_state ();
cbb8991c 9882 struct notif_client *notif = &notif_client_stop;
cbb8991c
DB
9883
9884 /* Kill the fork child threads of any threads in process PID
9885 that are stopped at a fork event. */
5b6d1e4f 9886 for (thread_info *thread : all_non_exited_threads (this))
cbb8991c
DB
9887 {
9888 struct target_waitstatus *ws = &thread->pending_follow;
9889
9890 if (is_pending_fork_parent (ws, pid, thread->ptid))
9891 {
953edf2b 9892 int child_pid = ws->value.related_pid.pid ();
cbb8991c
DB
9893 int res;
9894
6b8edb51 9895 res = remote_vkill (child_pid);
cbb8991c
DB
9896 if (res != 0)
9897 error (_("Can't kill fork child process %d"), child_pid);
9898 }
9899 }
9900
9901 /* Check for any pending fork events (not reported or processed yet)
9902 in process PID and kill those fork child threads as well. */
9903 remote_notif_get_pending_events (notif);
953edf2b
TT
9904 for (auto &event : rs->stop_reply_queue)
9905 if (is_pending_fork_parent (&event->ws, pid, event->ptid))
9906 {
9907 int child_pid = event->ws.value.related_pid.pid ();
9908 int res;
9909
9910 res = remote_vkill (child_pid);
9911 if (res != 0)
9912 error (_("Can't kill fork child process %d"), child_pid);
9913 }
cbb8991c
DB
9914}
9915
c906108c 9916\f
8020350c
DB
9917/* Target hook to kill the current inferior. */
9918
f6ac5f3d
PA
9919void
9920remote_target::kill ()
43ff13b4 9921{
8020350c 9922 int res = -1;
e99b03dc 9923 int pid = inferior_ptid.pid ();
8020350c 9924 struct remote_state *rs = get_remote_state ();
0fdf84ca 9925
8020350c 9926 if (packet_support (PACKET_vKill) != PACKET_DISABLE)
0fdf84ca 9927 {
8020350c
DB
9928 /* If we're stopped while forking and we haven't followed yet,
9929 kill the child task. We need to do this before killing the
9930 parent task because if this is a vfork then the parent will
9931 be sleeping. */
6b8edb51 9932 kill_new_fork_children (pid);
8020350c 9933
6b8edb51 9934 res = remote_vkill (pid);
8020350c 9935 if (res == 0)
0fdf84ca 9936 {
bc1e6c81 9937 target_mourn_inferior (inferior_ptid);
0fdf84ca
PA
9938 return;
9939 }
8020350c 9940 }
0fdf84ca 9941
8020350c
DB
9942 /* If we are in 'target remote' mode and we are killing the only
9943 inferior, then we will tell gdbserver to exit and unpush the
9944 target. */
9945 if (res == -1 && !remote_multi_process_p (rs)
5b6d1e4f 9946 && number_of_live_inferiors (this) == 1)
8020350c
DB
9947 {
9948 remote_kill_k ();
9949
9950 /* We've killed the remote end, we get to mourn it. If we are
9951 not in extended mode, mourning the inferior also unpushes
9952 remote_ops from the target stack, which closes the remote
9953 connection. */
bc1e6c81 9954 target_mourn_inferior (inferior_ptid);
8020350c
DB
9955
9956 return;
0fdf84ca 9957 }
43ff13b4 9958
8020350c 9959 error (_("Can't kill process"));
43ff13b4
JM
9960}
9961
8020350c
DB
9962/* Send a kill request to the target using the 'vKill' packet. */
9963
6b8edb51
PA
9964int
9965remote_target::remote_vkill (int pid)
82f73884 9966{
4082afcc 9967 if (packet_support (PACKET_vKill) == PACKET_DISABLE)
82f73884
PA
9968 return -1;
9969
6b8edb51
PA
9970 remote_state *rs = get_remote_state ();
9971
82f73884 9972 /* Tell the remote target to detach. */
8d64371b 9973 xsnprintf (rs->buf.data (), get_remote_packet_size (), "vKill;%x", pid);
82f73884 9974 putpkt (rs->buf);
8d64371b 9975 getpkt (&rs->buf, 0);
82f73884 9976
4082afcc
PA
9977 switch (packet_ok (rs->buf,
9978 &remote_protocol_packets[PACKET_vKill]))
9979 {
9980 case PACKET_OK:
9981 return 0;
9982 case PACKET_ERROR:
9983 return 1;
9984 case PACKET_UNKNOWN:
9985 return -1;
9986 default:
9987 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
9988 }
82f73884
PA
9989}
9990
8020350c
DB
9991/* Send a kill request to the target using the 'k' packet. */
9992
6b8edb51
PA
9993void
9994remote_target::remote_kill_k ()
82f73884 9995{
8020350c
DB
9996 /* Catch errors so the user can quit from gdb even when we
9997 aren't on speaking terms with the remote system. */
a70b8144 9998 try
82f73884 9999 {
82f73884 10000 putpkt ("k");
82f73884 10001 }
230d2906 10002 catch (const gdb_exception_error &ex)
8020350c
DB
10003 {
10004 if (ex.error == TARGET_CLOSE_ERROR)
10005 {
10006 /* If we got an (EOF) error that caused the target
10007 to go away, then we're done, that's what we wanted.
10008 "k" is susceptible to cause a premature EOF, given
10009 that the remote server isn't actually required to
10010 reply to "k", and it can happen that it doesn't
10011 even get to reply ACK to the "k". */
10012 return;
10013 }
82f73884 10014
8020350c
DB
10015 /* Otherwise, something went wrong. We didn't actually kill
10016 the target. Just propagate the exception, and let the
10017 user or higher layers decide what to do. */
eedc3f4f 10018 throw;
8020350c 10019 }
82f73884
PA
10020}
10021
f6ac5f3d
PA
10022void
10023remote_target::mourn_inferior ()
c906108c 10024{
8020350c 10025 struct remote_state *rs = get_remote_state ();
ce5ce7ed 10026
9607784a
PA
10027 /* We're no longer interested in notification events of an inferior
10028 that exited or was killed/detached. */
10029 discard_pending_stop_replies (current_inferior ());
10030
8020350c 10031 /* In 'target remote' mode with one inferior, we close the connection. */
5b6d1e4f 10032 if (!rs->extended && number_of_live_inferiors (this) <= 1)
8020350c 10033 {
5b6d1e4f 10034 remote_unpush_target (this);
8020350c
DB
10035 return;
10036 }
c906108c 10037
e24a49d8
PA
10038 /* In case we got here due to an error, but we're going to stay
10039 connected. */
10040 rs->waiting_for_stop_reply = 0;
10041
dc1981d7
PA
10042 /* If the current general thread belonged to the process we just
10043 detached from or has exited, the remote side current general
10044 thread becomes undefined. Considering a case like this:
10045
10046 - We just got here due to a detach.
10047 - The process that we're detaching from happens to immediately
10048 report a global breakpoint being hit in non-stop mode, in the
10049 same thread we had selected before.
10050 - GDB attaches to this process again.
10051 - This event happens to be the next event we handle.
10052
10053 GDB would consider that the current general thread didn't need to
10054 be set on the stub side (with Hg), since for all it knew,
10055 GENERAL_THREAD hadn't changed.
10056
10057 Notice that although in all-stop mode, the remote server always
10058 sets the current thread to the thread reporting the stop event,
10059 that doesn't happen in non-stop mode; in non-stop, the stub *must
10060 not* change the current thread when reporting a breakpoint hit,
10061 due to the decoupling of event reporting and event handling.
10062
10063 To keep things simple, we always invalidate our notion of the
10064 current thread. */
47f8a51d 10065 record_currthread (rs, minus_one_ptid);
dc1981d7 10066
8020350c 10067 /* Call common code to mark the inferior as not running. */
48aa3c27 10068 generic_mourn_inferior ();
2d717e4f 10069}
c906108c 10070
57810aa7 10071bool
f6ac5f3d 10072extended_remote_target::supports_disable_randomization ()
03583c20 10073{
4082afcc 10074 return packet_support (PACKET_QDisableRandomization) == PACKET_ENABLE;
03583c20
UW
10075}
10076
6b8edb51
PA
10077void
10078remote_target::extended_remote_disable_randomization (int val)
03583c20
UW
10079{
10080 struct remote_state *rs = get_remote_state ();
10081 char *reply;
10082
8d64371b
TT
10083 xsnprintf (rs->buf.data (), get_remote_packet_size (),
10084 "QDisableRandomization:%x", val);
03583c20 10085 putpkt (rs->buf);
b6bb3468 10086 reply = remote_get_noisy_reply ();
03583c20
UW
10087 if (*reply == '\0')
10088 error (_("Target does not support QDisableRandomization."));
10089 if (strcmp (reply, "OK") != 0)
10090 error (_("Bogus QDisableRandomization reply from target: %s"), reply);
10091}
10092
6b8edb51
PA
10093int
10094remote_target::extended_remote_run (const std::string &args)
2d717e4f
DJ
10095{
10096 struct remote_state *rs = get_remote_state ();
2d717e4f 10097 int len;
94585166 10098 const char *remote_exec_file = get_remote_exec_file ();
c906108c 10099
2d717e4f
DJ
10100 /* If the user has disabled vRun support, or we have detected that
10101 support is not available, do not try it. */
4082afcc 10102 if (packet_support (PACKET_vRun) == PACKET_DISABLE)
2d717e4f 10103 return -1;
424163ea 10104
8d64371b
TT
10105 strcpy (rs->buf.data (), "vRun;");
10106 len = strlen (rs->buf.data ());
c906108c 10107
2d717e4f
DJ
10108 if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ())
10109 error (_("Remote file name too long for run packet"));
8d64371b 10110 len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf.data () + len,
9f1b45b0 10111 strlen (remote_exec_file));
2d717e4f 10112
7c5ded6a 10113 if (!args.empty ())
2d717e4f 10114 {
2d717e4f 10115 int i;
2d717e4f 10116
773a1edc 10117 gdb_argv argv (args.c_str ());
2d717e4f
DJ
10118 for (i = 0; argv[i] != NULL; i++)
10119 {
10120 if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ())
10121 error (_("Argument list too long for run packet"));
10122 rs->buf[len++] = ';';
8d64371b 10123 len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf.data () + len,
9f1b45b0 10124 strlen (argv[i]));
2d717e4f 10125 }
2d717e4f
DJ
10126 }
10127
10128 rs->buf[len++] = '\0';
10129
10130 putpkt (rs->buf);
8d64371b 10131 getpkt (&rs->buf, 0);
2d717e4f 10132
4082afcc 10133 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun]))
2d717e4f 10134 {
4082afcc 10135 case PACKET_OK:
3405876a 10136 /* We have a wait response. All is well. */
2d717e4f 10137 return 0;
4082afcc
PA
10138 case PACKET_UNKNOWN:
10139 return -1;
10140 case PACKET_ERROR:
2d717e4f
DJ
10141 if (remote_exec_file[0] == '\0')
10142 error (_("Running the default executable on the remote target failed; "
10143 "try \"set remote exec-file\"?"));
10144 else
10145 error (_("Running \"%s\" on the remote target failed"),
10146 remote_exec_file);
4082afcc
PA
10147 default:
10148 gdb_assert_not_reached (_("bad switch"));
2d717e4f 10149 }
c906108c
SS
10150}
10151
0a2dde4a
SDJ
10152/* Helper function to send set/unset environment packets. ACTION is
10153 either "set" or "unset". PACKET is either "QEnvironmentHexEncoded"
10154 or "QEnvironmentUnsetVariable". VALUE is the variable to be
10155 sent. */
10156
6b8edb51
PA
10157void
10158remote_target::send_environment_packet (const char *action,
10159 const char *packet,
10160 const char *value)
0a2dde4a 10161{
6b8edb51
PA
10162 remote_state *rs = get_remote_state ();
10163
0a2dde4a
SDJ
10164 /* Convert the environment variable to an hex string, which
10165 is the best format to be transmitted over the wire. */
10166 std::string encoded_value = bin2hex ((const gdb_byte *) value,
10167 strlen (value));
10168
8d64371b 10169 xsnprintf (rs->buf.data (), get_remote_packet_size (),
0a2dde4a
SDJ
10170 "%s:%s", packet, encoded_value.c_str ());
10171
10172 putpkt (rs->buf);
8d64371b
TT
10173 getpkt (&rs->buf, 0);
10174 if (strcmp (rs->buf.data (), "OK") != 0)
0a2dde4a
SDJ
10175 warning (_("Unable to %s environment variable '%s' on remote."),
10176 action, value);
10177}
10178
10179/* Helper function to handle the QEnvironment* packets. */
10180
6b8edb51
PA
10181void
10182remote_target::extended_remote_environment_support ()
0a2dde4a 10183{
6b8edb51
PA
10184 remote_state *rs = get_remote_state ();
10185
0a2dde4a
SDJ
10186 if (packet_support (PACKET_QEnvironmentReset) != PACKET_DISABLE)
10187 {
10188 putpkt ("QEnvironmentReset");
8d64371b
TT
10189 getpkt (&rs->buf, 0);
10190 if (strcmp (rs->buf.data (), "OK") != 0)
0a2dde4a
SDJ
10191 warning (_("Unable to reset environment on remote."));
10192 }
10193
10194 gdb_environ *e = &current_inferior ()->environment;
10195
10196 if (packet_support (PACKET_QEnvironmentHexEncoded) != PACKET_DISABLE)
10197 for (const std::string &el : e->user_set_env ())
6b8edb51 10198 send_environment_packet ("set", "QEnvironmentHexEncoded",
0a2dde4a
SDJ
10199 el.c_str ());
10200
10201 if (packet_support (PACKET_QEnvironmentUnset) != PACKET_DISABLE)
10202 for (const std::string &el : e->user_unset_env ())
6b8edb51 10203 send_environment_packet ("unset", "QEnvironmentUnset", el.c_str ());
0a2dde4a
SDJ
10204}
10205
bc3b087d
SDJ
10206/* Helper function to set the current working directory for the
10207 inferior in the remote target. */
10208
6b8edb51
PA
10209void
10210remote_target::extended_remote_set_inferior_cwd ()
bc3b087d
SDJ
10211{
10212 if (packet_support (PACKET_QSetWorkingDir) != PACKET_DISABLE)
10213 {
10214 const char *inferior_cwd = get_inferior_cwd ();
6b8edb51 10215 remote_state *rs = get_remote_state ();
bc3b087d
SDJ
10216
10217 if (inferior_cwd != NULL)
10218 {
10219 std::string hexpath = bin2hex ((const gdb_byte *) inferior_cwd,
10220 strlen (inferior_cwd));
10221
8d64371b 10222 xsnprintf (rs->buf.data (), get_remote_packet_size (),
bc3b087d
SDJ
10223 "QSetWorkingDir:%s", hexpath.c_str ());
10224 }
10225 else
10226 {
10227 /* An empty inferior_cwd means that the user wants us to
10228 reset the remote server's inferior's cwd. */
8d64371b 10229 xsnprintf (rs->buf.data (), get_remote_packet_size (),
bc3b087d
SDJ
10230 "QSetWorkingDir:");
10231 }
10232
10233 putpkt (rs->buf);
8d64371b 10234 getpkt (&rs->buf, 0);
bc3b087d
SDJ
10235 if (packet_ok (rs->buf,
10236 &remote_protocol_packets[PACKET_QSetWorkingDir])
10237 != PACKET_OK)
10238 error (_("\
10239Remote replied unexpectedly while setting the inferior's working\n\
10240directory: %s"),
8d64371b 10241 rs->buf.data ());
bc3b087d
SDJ
10242
10243 }
10244}
10245
2d717e4f
DJ
10246/* In the extended protocol we want to be able to do things like
10247 "run" and have them basically work as expected. So we need
10248 a special create_inferior function. We support changing the
10249 executable file and the command line arguments, but not the
10250 environment. */
10251
f6ac5f3d
PA
10252void
10253extended_remote_target::create_inferior (const char *exec_file,
10254 const std::string &args,
10255 char **env, int from_tty)
43ff13b4 10256{
3405876a
PA
10257 int run_worked;
10258 char *stop_reply;
10259 struct remote_state *rs = get_remote_state ();
94585166 10260 const char *remote_exec_file = get_remote_exec_file ();
3405876a 10261
43ff13b4 10262 /* If running asynchronously, register the target file descriptor
23860348 10263 with the event loop. */
75c99385 10264 if (target_can_async_p ())
6a3753b3 10265 target_async (1);
43ff13b4 10266
03583c20 10267 /* Disable address space randomization if requested (and supported). */
f6ac5f3d 10268 if (supports_disable_randomization ())
03583c20
UW
10269 extended_remote_disable_randomization (disable_randomization);
10270
aefd8b33
SDJ
10271 /* If startup-with-shell is on, we inform gdbserver to start the
10272 remote inferior using a shell. */
10273 if (packet_support (PACKET_QStartupWithShell) != PACKET_DISABLE)
10274 {
8d64371b 10275 xsnprintf (rs->buf.data (), get_remote_packet_size (),
aefd8b33
SDJ
10276 "QStartupWithShell:%d", startup_with_shell ? 1 : 0);
10277 putpkt (rs->buf);
8d64371b
TT
10278 getpkt (&rs->buf, 0);
10279 if (strcmp (rs->buf.data (), "OK") != 0)
aefd8b33
SDJ
10280 error (_("\
10281Remote replied unexpectedly while setting startup-with-shell: %s"),
8d64371b 10282 rs->buf.data ());
aefd8b33
SDJ
10283 }
10284
6b8edb51 10285 extended_remote_environment_support ();
0a2dde4a 10286
6b8edb51 10287 extended_remote_set_inferior_cwd ();
bc3b087d 10288
43ff13b4 10289 /* Now restart the remote server. */
3405876a
PA
10290 run_worked = extended_remote_run (args) != -1;
10291 if (!run_worked)
2d717e4f
DJ
10292 {
10293 /* vRun was not supported. Fail if we need it to do what the
10294 user requested. */
10295 if (remote_exec_file[0])
10296 error (_("Remote target does not support \"set remote exec-file\""));
7c5ded6a 10297 if (!args.empty ())
65e65158 10298 error (_("Remote target does not support \"set args\" or run ARGS"));
43ff13b4 10299
2d717e4f
DJ
10300 /* Fall back to "R". */
10301 extended_remote_restart ();
10302 }
424163ea 10303
3405876a 10304 /* vRun's success return is a stop reply. */
8d64371b 10305 stop_reply = run_worked ? rs->buf.data () : NULL;
3405876a 10306 add_current_inferior_and_thread (stop_reply);
c0a2216e 10307
2d717e4f
DJ
10308 /* Get updated offsets, if the stub uses qOffsets. */
10309 get_offsets ();
2d717e4f 10310}
c906108c 10311\f
c5aa993b 10312
b775012e
LM
10313/* Given a location's target info BP_TGT and the packet buffer BUF, output
10314 the list of conditions (in agent expression bytecode format), if any, the
10315 target needs to evaluate. The output is placed into the packet buffer
bba74b36 10316 started from BUF and ended at BUF_END. */
b775012e
LM
10317
10318static int
10319remote_add_target_side_condition (struct gdbarch *gdbarch,
bba74b36
YQ
10320 struct bp_target_info *bp_tgt, char *buf,
10321 char *buf_end)
b775012e 10322{
3cde5c42 10323 if (bp_tgt->conditions.empty ())
b775012e
LM
10324 return 0;
10325
10326 buf += strlen (buf);
bba74b36 10327 xsnprintf (buf, buf_end - buf, "%s", ";");
b775012e
LM
10328 buf++;
10329
83621223 10330 /* Send conditions to the target. */
d538e36d 10331 for (agent_expr *aexpr : bp_tgt->conditions)
b775012e 10332 {
bba74b36 10333 xsnprintf (buf, buf_end - buf, "X%x,", aexpr->len);
b775012e 10334 buf += strlen (buf);
3cde5c42 10335 for (int i = 0; i < aexpr->len; ++i)
b775012e
LM
10336 buf = pack_hex_byte (buf, aexpr->buf[i]);
10337 *buf = '\0';
10338 }
b775012e
LM
10339 return 0;
10340}
10341
d3ce09f5
SS
10342static void
10343remote_add_target_side_commands (struct gdbarch *gdbarch,
10344 struct bp_target_info *bp_tgt, char *buf)
10345{
3cde5c42 10346 if (bp_tgt->tcommands.empty ())
d3ce09f5
SS
10347 return;
10348
10349 buf += strlen (buf);
10350
10351 sprintf (buf, ";cmds:%x,", bp_tgt->persist);
10352 buf += strlen (buf);
10353
10354 /* Concatenate all the agent expressions that are commands into the
10355 cmds parameter. */
df97be55 10356 for (agent_expr *aexpr : bp_tgt->tcommands)
d3ce09f5
SS
10357 {
10358 sprintf (buf, "X%x,", aexpr->len);
10359 buf += strlen (buf);
3cde5c42 10360 for (int i = 0; i < aexpr->len; ++i)
d3ce09f5
SS
10361 buf = pack_hex_byte (buf, aexpr->buf[i]);
10362 *buf = '\0';
10363 }
d3ce09f5
SS
10364}
10365
8181d85f
DJ
10366/* Insert a breakpoint. On targets that have software breakpoint
10367 support, we ask the remote target to do the work; on targets
10368 which don't, we insert a traditional memory breakpoint. */
c906108c 10369
f6ac5f3d
PA
10370int
10371remote_target::insert_breakpoint (struct gdbarch *gdbarch,
10372 struct bp_target_info *bp_tgt)
c906108c 10373{
d471ea57
AC
10374 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
10375 If it succeeds, then set the support to PACKET_ENABLE. If it
10376 fails, and the user has explicitly requested the Z support then
23860348 10377 report an error, otherwise, mark it disabled and go on. */
802188a7 10378
4082afcc 10379 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 10380 {
0d5ed153 10381 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 10382 struct remote_state *rs;
bba74b36 10383 char *p, *endbuf;
4fff2411 10384
28439a30
PA
10385 /* Make sure the remote is pointing at the right process, if
10386 necessary. */
10387 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10388 set_general_process ();
10389
4fff2411 10390 rs = get_remote_state ();
8d64371b
TT
10391 p = rs->buf.data ();
10392 endbuf = p + get_remote_packet_size ();
802188a7 10393
96baa820
JM
10394 *(p++) = 'Z';
10395 *(p++) = '0';
10396 *(p++) = ',';
7c0f6dcc 10397 addr = (ULONGEST) remote_address_masked (addr);
8181d85f 10398 p += hexnumstr (p, addr);
579c6ad9 10399 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
802188a7 10400
f6ac5f3d 10401 if (supports_evaluation_of_breakpoint_conditions ())
bba74b36 10402 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 10403
f6ac5f3d 10404 if (can_run_breakpoint_commands ())
d3ce09f5
SS
10405 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10406
6d820c5c 10407 putpkt (rs->buf);
8d64371b 10408 getpkt (&rs->buf, 0);
96baa820 10409
6d820c5c 10410 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
96baa820 10411 {
d471ea57
AC
10412 case PACKET_ERROR:
10413 return -1;
10414 case PACKET_OK:
10415 return 0;
10416 case PACKET_UNKNOWN:
10417 break;
96baa820
JM
10418 }
10419 }
c906108c 10420
0000e5cc
PA
10421 /* If this breakpoint has target-side commands but this stub doesn't
10422 support Z0 packets, throw error. */
3cde5c42 10423 if (!bp_tgt->tcommands.empty ())
0000e5cc
PA
10424 throw_error (NOT_SUPPORTED_ERROR, _("\
10425Target doesn't support breakpoints that have target side commands."));
10426
f6ac5f3d 10427 return memory_insert_breakpoint (this, gdbarch, bp_tgt);
c906108c
SS
10428}
10429
f6ac5f3d
PA
10430int
10431remote_target::remove_breakpoint (struct gdbarch *gdbarch,
10432 struct bp_target_info *bp_tgt,
10433 enum remove_bp_reason reason)
c906108c 10434{
8181d85f 10435 CORE_ADDR addr = bp_tgt->placed_address;
d01949b6 10436 struct remote_state *rs = get_remote_state ();
96baa820 10437
4082afcc 10438 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 10439 {
8d64371b
TT
10440 char *p = rs->buf.data ();
10441 char *endbuf = p + get_remote_packet_size ();
802188a7 10442
28439a30
PA
10443 /* Make sure the remote is pointing at the right process, if
10444 necessary. */
10445 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10446 set_general_process ();
10447
96baa820
JM
10448 *(p++) = 'z';
10449 *(p++) = '0';
10450 *(p++) = ',';
10451
8181d85f
DJ
10452 addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
10453 p += hexnumstr (p, addr);
579c6ad9 10454 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
802188a7 10455
6d820c5c 10456 putpkt (rs->buf);
8d64371b 10457 getpkt (&rs->buf, 0);
96baa820 10458
6d820c5c 10459 return (rs->buf[0] == 'E');
96baa820
JM
10460 }
10461
f6ac5f3d 10462 return memory_remove_breakpoint (this, gdbarch, bp_tgt, reason);
c906108c
SS
10463}
10464
f486487f 10465static enum Z_packet_type
d471ea57
AC
10466watchpoint_to_Z_packet (int type)
10467{
10468 switch (type)
10469 {
10470 case hw_write:
bb858e6a 10471 return Z_PACKET_WRITE_WP;
d471ea57
AC
10472 break;
10473 case hw_read:
bb858e6a 10474 return Z_PACKET_READ_WP;
d471ea57
AC
10475 break;
10476 case hw_access:
bb858e6a 10477 return Z_PACKET_ACCESS_WP;
d471ea57
AC
10478 break;
10479 default:
8e65ff28 10480 internal_error (__FILE__, __LINE__,
e2e0b3e5 10481 _("hw_bp_to_z: bad watchpoint type %d"), type);
d471ea57
AC
10482 }
10483}
10484
f6ac5f3d
PA
10485int
10486remote_target::insert_watchpoint (CORE_ADDR addr, int len,
10487 enum target_hw_bp_type type, struct expression *cond)
96baa820 10488{
d01949b6 10489 struct remote_state *rs = get_remote_state ();
8d64371b 10490 char *endbuf = rs->buf.data () + get_remote_packet_size ();
e514a9d6 10491 char *p;
d471ea57 10492 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
96baa820 10493
4082afcc 10494 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
85d721b8 10495 return 1;
802188a7 10496
28439a30
PA
10497 /* Make sure the remote is pointing at the right process, if
10498 necessary. */
10499 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10500 set_general_process ();
10501
8d64371b
TT
10502 xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "Z%x,", packet);
10503 p = strchr (rs->buf.data (), '\0');
96baa820
JM
10504 addr = remote_address_masked (addr);
10505 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 10506 xsnprintf (p, endbuf - p, ",%x", len);
802188a7 10507
6d820c5c 10508 putpkt (rs->buf);
8d64371b 10509 getpkt (&rs->buf, 0);
96baa820 10510
6d820c5c 10511 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
10512 {
10513 case PACKET_ERROR:
d471ea57 10514 return -1;
85d721b8
PA
10515 case PACKET_UNKNOWN:
10516 return 1;
d471ea57
AC
10517 case PACKET_OK:
10518 return 0;
10519 }
8e65ff28 10520 internal_error (__FILE__, __LINE__,
e2e0b3e5 10521 _("remote_insert_watchpoint: reached end of function"));
96baa820
JM
10522}
10523
57810aa7 10524bool
f6ac5f3d
PA
10525remote_target::watchpoint_addr_within_range (CORE_ADDR addr,
10526 CORE_ADDR start, int length)
283002cf
MR
10527{
10528 CORE_ADDR diff = remote_address_masked (addr - start);
10529
10530 return diff < length;
10531}
10532
d471ea57 10533
f6ac5f3d
PA
10534int
10535remote_target::remove_watchpoint (CORE_ADDR addr, int len,
10536 enum target_hw_bp_type type, struct expression *cond)
96baa820 10537{
d01949b6 10538 struct remote_state *rs = get_remote_state ();
8d64371b 10539 char *endbuf = rs->buf.data () + get_remote_packet_size ();
e514a9d6 10540 char *p;
d471ea57
AC
10541 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
10542
4082afcc 10543 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
5cffb350 10544 return -1;
802188a7 10545
28439a30
PA
10546 /* Make sure the remote is pointing at the right process, if
10547 necessary. */
10548 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10549 set_general_process ();
10550
8d64371b
TT
10551 xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "z%x,", packet);
10552 p = strchr (rs->buf.data (), '\0');
96baa820
JM
10553 addr = remote_address_masked (addr);
10554 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 10555 xsnprintf (p, endbuf - p, ",%x", len);
6d820c5c 10556 putpkt (rs->buf);
8d64371b 10557 getpkt (&rs->buf, 0);
96baa820 10558
6d820c5c 10559 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
10560 {
10561 case PACKET_ERROR:
10562 case PACKET_UNKNOWN:
10563 return -1;
10564 case PACKET_OK:
10565 return 0;
10566 }
8e65ff28 10567 internal_error (__FILE__, __LINE__,
e2e0b3e5 10568 _("remote_remove_watchpoint: reached end of function"));
96baa820
JM
10569}
10570
3c3bea1c 10571
60fcc1c3
TT
10572static int remote_hw_watchpoint_limit = -1;
10573static int remote_hw_watchpoint_length_limit = -1;
10574static int remote_hw_breakpoint_limit = -1;
d471ea57 10575
f6ac5f3d
PA
10576int
10577remote_target::region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
480a3f21
PW
10578{
10579 if (remote_hw_watchpoint_length_limit == 0)
10580 return 0;
10581 else if (remote_hw_watchpoint_length_limit < 0)
10582 return 1;
10583 else if (len <= remote_hw_watchpoint_length_limit)
10584 return 1;
10585 else
10586 return 0;
10587}
10588
f6ac5f3d
PA
10589int
10590remote_target::can_use_hw_breakpoint (enum bptype type, int cnt, int ot)
96baa820 10591{
3c3bea1c
GS
10592 if (type == bp_hardware_breakpoint)
10593 {
10594 if (remote_hw_breakpoint_limit == 0)
10595 return 0;
501eef12
AC
10596 else if (remote_hw_breakpoint_limit < 0)
10597 return 1;
3c3bea1c
GS
10598 else if (cnt <= remote_hw_breakpoint_limit)
10599 return 1;
10600 }
10601 else
10602 {
10603 if (remote_hw_watchpoint_limit == 0)
10604 return 0;
501eef12
AC
10605 else if (remote_hw_watchpoint_limit < 0)
10606 return 1;
3c3bea1c
GS
10607 else if (ot)
10608 return -1;
10609 else if (cnt <= remote_hw_watchpoint_limit)
10610 return 1;
10611 }
10612 return -1;
10613}
10614
f7e6eed5
PA
10615/* The to_stopped_by_sw_breakpoint method of target remote. */
10616
57810aa7 10617bool
f6ac5f3d 10618remote_target::stopped_by_sw_breakpoint ()
f7e6eed5 10619{
799a2abe 10620 struct thread_info *thread = inferior_thread ();
f7e6eed5 10621
799a2abe 10622 return (thread->priv != NULL
7aabaf9d
SM
10623 && (get_remote_thread_info (thread)->stop_reason
10624 == TARGET_STOPPED_BY_SW_BREAKPOINT));
f7e6eed5
PA
10625}
10626
10627/* The to_supports_stopped_by_sw_breakpoint method of target
10628 remote. */
10629
57810aa7 10630bool
f6ac5f3d 10631remote_target::supports_stopped_by_sw_breakpoint ()
f7e6eed5 10632{
f7e6eed5
PA
10633 return (packet_support (PACKET_swbreak_feature) == PACKET_ENABLE);
10634}
10635
10636/* The to_stopped_by_hw_breakpoint method of target remote. */
10637
57810aa7 10638bool
f6ac5f3d 10639remote_target::stopped_by_hw_breakpoint ()
f7e6eed5 10640{
799a2abe 10641 struct thread_info *thread = inferior_thread ();
f7e6eed5 10642
799a2abe 10643 return (thread->priv != NULL
7aabaf9d
SM
10644 && (get_remote_thread_info (thread)->stop_reason
10645 == TARGET_STOPPED_BY_HW_BREAKPOINT));
f7e6eed5
PA
10646}
10647
10648/* The to_supports_stopped_by_hw_breakpoint method of target
10649 remote. */
10650
57810aa7 10651bool
f6ac5f3d 10652remote_target::supports_stopped_by_hw_breakpoint ()
f7e6eed5 10653{
f7e6eed5
PA
10654 return (packet_support (PACKET_hwbreak_feature) == PACKET_ENABLE);
10655}
10656
57810aa7 10657bool
f6ac5f3d 10658remote_target::stopped_by_watchpoint ()
3c3bea1c 10659{
799a2abe 10660 struct thread_info *thread = inferior_thread ();
ee154bee 10661
799a2abe 10662 return (thread->priv != NULL
7aabaf9d
SM
10663 && (get_remote_thread_info (thread)->stop_reason
10664 == TARGET_STOPPED_BY_WATCHPOINT));
3c3bea1c
GS
10665}
10666
57810aa7 10667bool
f6ac5f3d 10668remote_target::stopped_data_address (CORE_ADDR *addr_p)
3c3bea1c 10669{
799a2abe 10670 struct thread_info *thread = inferior_thread ();
a744cf53 10671
799a2abe 10672 if (thread->priv != NULL
7aabaf9d
SM
10673 && (get_remote_thread_info (thread)->stop_reason
10674 == TARGET_STOPPED_BY_WATCHPOINT))
4aa7a7f5 10675 {
7aabaf9d 10676 *addr_p = get_remote_thread_info (thread)->watch_data_address;
57810aa7 10677 return true;
4aa7a7f5
JJ
10678 }
10679
57810aa7 10680 return false;
3c3bea1c
GS
10681}
10682
10683
f6ac5f3d
PA
10684int
10685remote_target::insert_hw_breakpoint (struct gdbarch *gdbarch,
10686 struct bp_target_info *bp_tgt)
3c3bea1c 10687{
0d5ed153 10688 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 10689 struct remote_state *rs;
bba74b36 10690 char *p, *endbuf;
dd61ec5c 10691 char *message;
3c3bea1c 10692
4082afcc 10693 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 10694 return -1;
2bc416ba 10695
28439a30
PA
10696 /* Make sure the remote is pointing at the right process, if
10697 necessary. */
10698 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10699 set_general_process ();
10700
4fff2411 10701 rs = get_remote_state ();
8d64371b
TT
10702 p = rs->buf.data ();
10703 endbuf = p + get_remote_packet_size ();
4fff2411 10704
96baa820
JM
10705 *(p++) = 'Z';
10706 *(p++) = '1';
10707 *(p++) = ',';
802188a7 10708
0d5ed153 10709 addr = remote_address_masked (addr);
96baa820 10710 p += hexnumstr (p, (ULONGEST) addr);
579c6ad9 10711 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
96baa820 10712
f6ac5f3d 10713 if (supports_evaluation_of_breakpoint_conditions ())
bba74b36 10714 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 10715
f6ac5f3d 10716 if (can_run_breakpoint_commands ())
d3ce09f5
SS
10717 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10718
6d820c5c 10719 putpkt (rs->buf);
8d64371b 10720 getpkt (&rs->buf, 0);
96baa820 10721
6d820c5c 10722 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
10723 {
10724 case PACKET_ERROR:
dd61ec5c 10725 if (rs->buf[1] == '.')
dda83cd7
SM
10726 {
10727 message = strchr (&rs->buf[2], '.');
10728 if (message)
10729 error (_("Remote failure reply: %s"), message + 1);
10730 }
dd61ec5c 10731 return -1;
d471ea57
AC
10732 case PACKET_UNKNOWN:
10733 return -1;
10734 case PACKET_OK:
10735 return 0;
10736 }
8e65ff28 10737 internal_error (__FILE__, __LINE__,
e2e0b3e5 10738 _("remote_insert_hw_breakpoint: reached end of function"));
96baa820
JM
10739}
10740
d471ea57 10741
f6ac5f3d
PA
10742int
10743remote_target::remove_hw_breakpoint (struct gdbarch *gdbarch,
10744 struct bp_target_info *bp_tgt)
96baa820 10745{
8181d85f 10746 CORE_ADDR addr;
d01949b6 10747 struct remote_state *rs = get_remote_state ();
8d64371b
TT
10748 char *p = rs->buf.data ();
10749 char *endbuf = p + get_remote_packet_size ();
c8189ed1 10750
4082afcc 10751 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 10752 return -1;
802188a7 10753
28439a30
PA
10754 /* Make sure the remote is pointing at the right process, if
10755 necessary. */
10756 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10757 set_general_process ();
10758
96baa820
JM
10759 *(p++) = 'z';
10760 *(p++) = '1';
10761 *(p++) = ',';
802188a7 10762
8181d85f 10763 addr = remote_address_masked (bp_tgt->placed_address);
96baa820 10764 p += hexnumstr (p, (ULONGEST) addr);
579c6ad9 10765 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
96baa820 10766
6d820c5c 10767 putpkt (rs->buf);
8d64371b 10768 getpkt (&rs->buf, 0);
802188a7 10769
6d820c5c 10770 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
10771 {
10772 case PACKET_ERROR:
10773 case PACKET_UNKNOWN:
10774 return -1;
10775 case PACKET_OK:
10776 return 0;
10777 }
8e65ff28 10778 internal_error (__FILE__, __LINE__,
e2e0b3e5 10779 _("remote_remove_hw_breakpoint: reached end of function"));
96baa820 10780}
96baa820 10781
4a5e7a5b
PA
10782/* Verify memory using the "qCRC:" request. */
10783
f6ac5f3d
PA
10784int
10785remote_target::verify_memory (const gdb_byte *data, CORE_ADDR lma, ULONGEST size)
4a5e7a5b
PA
10786{
10787 struct remote_state *rs = get_remote_state ();
10788 unsigned long host_crc, target_crc;
10789 char *tmp;
10790
936d2992
PA
10791 /* It doesn't make sense to use qCRC if the remote target is
10792 connected but not running. */
55f6301a
TT
10793 if (target_has_execution ()
10794 && packet_support (PACKET_qCRC) != PACKET_DISABLE)
936d2992
PA
10795 {
10796 enum packet_result result;
28439a30 10797
936d2992
PA
10798 /* Make sure the remote is pointing at the right process. */
10799 set_general_process ();
4a5e7a5b 10800
936d2992 10801 /* FIXME: assumes lma can fit into long. */
8d64371b 10802 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qCRC:%lx,%lx",
936d2992
PA
10803 (long) lma, (long) size);
10804 putpkt (rs->buf);
4a5e7a5b 10805
936d2992
PA
10806 /* Be clever; compute the host_crc before waiting for target
10807 reply. */
10808 host_crc = xcrc32 (data, size, 0xffffffff);
10809
8d64371b 10810 getpkt (&rs->buf, 0);
4a5e7a5b 10811
936d2992
PA
10812 result = packet_ok (rs->buf,
10813 &remote_protocol_packets[PACKET_qCRC]);
10814 if (result == PACKET_ERROR)
10815 return -1;
10816 else if (result == PACKET_OK)
10817 {
10818 for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
10819 target_crc = target_crc * 16 + fromhex (*tmp);
4a5e7a5b 10820
936d2992
PA
10821 return (host_crc == target_crc);
10822 }
10823 }
4a5e7a5b 10824
f6ac5f3d 10825 return simple_verify_memory (this, data, lma, size);
4a5e7a5b
PA
10826}
10827
c906108c
SS
10828/* compare-sections command
10829
10830 With no arguments, compares each loadable section in the exec bfd
10831 with the same memory range on the target, and reports mismatches.
4a5e7a5b 10832 Useful for verifying the image on the target against the exec file. */
e514a9d6 10833
c906108c 10834static void
ac88e2de 10835compare_sections_command (const char *args, int from_tty)
c906108c
SS
10836{
10837 asection *s;
ce359b09 10838 const char *sectname;
c906108c
SS
10839 bfd_size_type size;
10840 bfd_vma lma;
10841 int matched = 0;
10842 int mismatched = 0;
4a5e7a5b 10843 int res;
95cf3b38 10844 int read_only = 0;
c906108c 10845
7e10abd1 10846 if (!current_program_space->exec_bfd ())
8a3fe4f8 10847 error (_("command cannot be used without an exec file"));
c906108c 10848
95cf3b38
DT
10849 if (args != NULL && strcmp (args, "-r") == 0)
10850 {
10851 read_only = 1;
10852 args = NULL;
10853 }
10854
7e10abd1 10855 for (s = current_program_space->exec_bfd ()->sections; s; s = s->next)
c906108c
SS
10856 {
10857 if (!(s->flags & SEC_LOAD))
0df8b418 10858 continue; /* Skip non-loadable section. */
c906108c 10859
95cf3b38
DT
10860 if (read_only && (s->flags & SEC_READONLY) == 0)
10861 continue; /* Skip writeable sections */
10862
fd361982 10863 size = bfd_section_size (s);
c906108c 10864 if (size == 0)
0df8b418 10865 continue; /* Skip zero-length section. */
c906108c 10866
fd361982 10867 sectname = bfd_section_name (s);
c906108c 10868 if (args && strcmp (args, sectname) != 0)
0df8b418 10869 continue; /* Not the section selected by user. */
c906108c 10870
0df8b418 10871 matched = 1; /* Do this section. */
c906108c 10872 lma = s->lma;
c906108c 10873
b80406ac 10874 gdb::byte_vector sectdata (size);
7e10abd1
TT
10875 bfd_get_section_contents (current_program_space->exec_bfd (), s,
10876 sectdata.data (), 0, size);
c906108c 10877
b80406ac 10878 res = target_verify_memory (sectdata.data (), lma, size);
4a5e7a5b
PA
10879
10880 if (res == -1)
5af949e3 10881 error (_("target memory fault, section %s, range %s -- %s"), sectname,
f5656ead
TT
10882 paddress (target_gdbarch (), lma),
10883 paddress (target_gdbarch (), lma + size));
c906108c 10884
5af949e3 10885 printf_filtered ("Section %s, range %s -- %s: ", sectname,
f5656ead
TT
10886 paddress (target_gdbarch (), lma),
10887 paddress (target_gdbarch (), lma + size));
4a5e7a5b 10888 if (res)
c906108c
SS
10889 printf_filtered ("matched.\n");
10890 else
c5aa993b
JM
10891 {
10892 printf_filtered ("MIS-MATCHED!\n");
10893 mismatched++;
10894 }
c906108c
SS
10895 }
10896 if (mismatched > 0)
936d2992 10897 warning (_("One or more sections of the target image does not match\n\
8a3fe4f8 10898the loaded file\n"));
c906108c 10899 if (args && !matched)
a3f17187 10900 printf_filtered (_("No loaded section named '%s'.\n"), args);
c906108c
SS
10901}
10902
0e7f50da
UW
10903/* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
10904 into remote target. The number of bytes written to the remote
10905 target is returned, or -1 for error. */
10906
6b8edb51
PA
10907target_xfer_status
10908remote_target::remote_write_qxfer (const char *object_name,
10909 const char *annex, const gdb_byte *writebuf,
10910 ULONGEST offset, LONGEST len,
10911 ULONGEST *xfered_len,
10912 struct packet_config *packet)
0e7f50da
UW
10913{
10914 int i, buf_len;
10915 ULONGEST n;
0e7f50da
UW
10916 struct remote_state *rs = get_remote_state ();
10917 int max_size = get_memory_write_packet_size ();
10918
7cc244de 10919 if (packet_config_support (packet) == PACKET_DISABLE)
2ed4b548 10920 return TARGET_XFER_E_IO;
0e7f50da
UW
10921
10922 /* Insert header. */
8d64371b 10923 i = snprintf (rs->buf.data (), max_size,
0e7f50da
UW
10924 "qXfer:%s:write:%s:%s:",
10925 object_name, annex ? annex : "",
10926 phex_nz (offset, sizeof offset));
10927 max_size -= (i + 1);
10928
10929 /* Escape as much data as fits into rs->buf. */
10930 buf_len = remote_escape_output
8d64371b 10931 (writebuf, len, 1, (gdb_byte *) rs->buf.data () + i, &max_size, max_size);
0e7f50da 10932
8d64371b
TT
10933 if (putpkt_binary (rs->buf.data (), i + buf_len) < 0
10934 || getpkt_sane (&rs->buf, 0) < 0
0e7f50da 10935 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 10936 return TARGET_XFER_E_IO;
0e7f50da 10937
8d64371b 10938 unpack_varlen_hex (rs->buf.data (), &n);
9b409511
YQ
10939
10940 *xfered_len = n;
92ffd475 10941 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
0e7f50da
UW
10942}
10943
0876f84a
DJ
10944/* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
10945 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
10946 number of bytes read is returned, or 0 for EOF, or -1 for error.
10947 The number of bytes read may be less than LEN without indicating an
10948 EOF. PACKET is checked and updated to indicate whether the remote
10949 target supports this object. */
10950
6b8edb51
PA
10951target_xfer_status
10952remote_target::remote_read_qxfer (const char *object_name,
10953 const char *annex,
10954 gdb_byte *readbuf, ULONGEST offset,
10955 LONGEST len,
10956 ULONGEST *xfered_len,
10957 struct packet_config *packet)
0876f84a 10958{
0876f84a 10959 struct remote_state *rs = get_remote_state ();
0876f84a
DJ
10960 LONGEST i, n, packet_len;
10961
7cc244de 10962 if (packet_config_support (packet) == PACKET_DISABLE)
2ed4b548 10963 return TARGET_XFER_E_IO;
0876f84a
DJ
10964
10965 /* Check whether we've cached an end-of-object packet that matches
10966 this request. */
8e88304f 10967 if (rs->finished_object)
0876f84a 10968 {
8e88304f
TT
10969 if (strcmp (object_name, rs->finished_object) == 0
10970 && strcmp (annex ? annex : "", rs->finished_annex) == 0
10971 && offset == rs->finished_offset)
9b409511
YQ
10972 return TARGET_XFER_EOF;
10973
0876f84a
DJ
10974
10975 /* Otherwise, we're now reading something different. Discard
10976 the cache. */
8e88304f
TT
10977 xfree (rs->finished_object);
10978 xfree (rs->finished_annex);
10979 rs->finished_object = NULL;
10980 rs->finished_annex = NULL;
0876f84a
DJ
10981 }
10982
10983 /* Request only enough to fit in a single packet. The actual data
10984 may not, since we don't know how much of it will need to be escaped;
10985 the target is free to respond with slightly less data. We subtract
10986 five to account for the response type and the protocol frame. */
768adc05 10987 n = std::min<LONGEST> (get_remote_packet_size () - 5, len);
8d64371b
TT
10988 snprintf (rs->buf.data (), get_remote_packet_size () - 4,
10989 "qXfer:%s:read:%s:%s,%s",
0876f84a
DJ
10990 object_name, annex ? annex : "",
10991 phex_nz (offset, sizeof offset),
10992 phex_nz (n, sizeof n));
10993 i = putpkt (rs->buf);
10994 if (i < 0)
2ed4b548 10995 return TARGET_XFER_E_IO;
0876f84a
DJ
10996
10997 rs->buf[0] = '\0';
8d64371b 10998 packet_len = getpkt_sane (&rs->buf, 0);
0876f84a 10999 if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 11000 return TARGET_XFER_E_IO;
0876f84a
DJ
11001
11002 if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
8d64371b 11003 error (_("Unknown remote qXfer reply: %s"), rs->buf.data ());
0876f84a
DJ
11004
11005 /* 'm' means there is (or at least might be) more data after this
11006 batch. That does not make sense unless there's at least one byte
11007 of data in this reply. */
11008 if (rs->buf[0] == 'm' && packet_len == 1)
11009 error (_("Remote qXfer reply contained no data."));
11010
11011 /* Got some data. */
8d64371b 11012 i = remote_unescape_input ((gdb_byte *) rs->buf.data () + 1,
bc20a4af 11013 packet_len - 1, readbuf, n);
0876f84a
DJ
11014
11015 /* 'l' is an EOF marker, possibly including a final block of data,
0e7f50da
UW
11016 or possibly empty. If we have the final block of a non-empty
11017 object, record this fact to bypass a subsequent partial read. */
11018 if (rs->buf[0] == 'l' && offset + i > 0)
0876f84a 11019 {
8e88304f
TT
11020 rs->finished_object = xstrdup (object_name);
11021 rs->finished_annex = xstrdup (annex ? annex : "");
11022 rs->finished_offset = offset + i;
0876f84a
DJ
11023 }
11024
9b409511
YQ
11025 if (i == 0)
11026 return TARGET_XFER_EOF;
11027 else
11028 {
11029 *xfered_len = i;
11030 return TARGET_XFER_OK;
11031 }
0876f84a
DJ
11032}
11033
f6ac5f3d
PA
11034enum target_xfer_status
11035remote_target::xfer_partial (enum target_object object,
11036 const char *annex, gdb_byte *readbuf,
11037 const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
11038 ULONGEST *xfered_len)
c906108c 11039{
82f73884 11040 struct remote_state *rs;
c906108c 11041 int i;
6d820c5c 11042 char *p2;
1e3ff5ad 11043 char query_type;
124e13d9 11044 int unit_size = gdbarch_addressable_memory_unit_size (target_gdbarch ());
c906108c 11045
e6e4e701 11046 set_remote_traceframe ();
82f73884
PA
11047 set_general_thread (inferior_ptid);
11048
11049 rs = get_remote_state ();
11050
b2182ed2 11051 /* Handle memory using the standard memory routines. */
21e3b9b9
DJ
11052 if (object == TARGET_OBJECT_MEMORY)
11053 {
2d717e4f
DJ
11054 /* If the remote target is connected but not running, we should
11055 pass this request down to a lower stratum (e.g. the executable
11056 file). */
55f6301a 11057 if (!target_has_execution ())
9b409511 11058 return TARGET_XFER_EOF;
2d717e4f 11059
21e3b9b9 11060 if (writebuf != NULL)
124e13d9
SM
11061 return remote_write_bytes (offset, writebuf, len, unit_size,
11062 xfered_len);
21e3b9b9 11063 else
6b8edb51 11064 return remote_read_bytes (offset, readbuf, len, unit_size,
124e13d9 11065 xfered_len);
21e3b9b9
DJ
11066 }
11067
4aa995e1
PA
11068 /* Handle extra signal info using qxfer packets. */
11069 if (object == TARGET_OBJECT_SIGNAL_INFO)
11070 {
11071 if (readbuf)
f6ac5f3d 11072 return remote_read_qxfer ("siginfo", annex, readbuf, offset, len,
9b409511 11073 xfered_len, &remote_protocol_packets
4aa995e1
PA
11074 [PACKET_qXfer_siginfo_read]);
11075 else
f6ac5f3d 11076 return remote_write_qxfer ("siginfo", annex,
9b409511 11077 writebuf, offset, len, xfered_len,
4aa995e1
PA
11078 &remote_protocol_packets
11079 [PACKET_qXfer_siginfo_write]);
11080 }
11081
0fb4aa4b
PA
11082 if (object == TARGET_OBJECT_STATIC_TRACE_DATA)
11083 {
11084 if (readbuf)
f6ac5f3d 11085 return remote_read_qxfer ("statictrace", annex,
9b409511 11086 readbuf, offset, len, xfered_len,
0fb4aa4b
PA
11087 &remote_protocol_packets
11088 [PACKET_qXfer_statictrace_read]);
11089 else
2ed4b548 11090 return TARGET_XFER_E_IO;
0fb4aa4b
PA
11091 }
11092
a76d924d
DJ
11093 /* Only handle flash writes. */
11094 if (writebuf != NULL)
11095 {
a76d924d
DJ
11096 switch (object)
11097 {
11098 case TARGET_OBJECT_FLASH:
6b8edb51 11099 return remote_flash_write (offset, len, xfered_len,
9b409511 11100 writebuf);
a76d924d
DJ
11101
11102 default:
2ed4b548 11103 return TARGET_XFER_E_IO;
a76d924d
DJ
11104 }
11105 }
4b8a223f 11106
1e3ff5ad
AC
11107 /* Map pre-existing objects onto letters. DO NOT do this for new
11108 objects!!! Instead specify new query packets. */
11109 switch (object)
c906108c 11110 {
1e3ff5ad
AC
11111 case TARGET_OBJECT_AVR:
11112 query_type = 'R';
11113 break;
802188a7
RM
11114
11115 case TARGET_OBJECT_AUXV:
0876f84a 11116 gdb_assert (annex == NULL);
f6ac5f3d 11117 return remote_read_qxfer ("auxv", annex, readbuf, offset, len,
9b409511 11118 xfered_len,
0876f84a 11119 &remote_protocol_packets[PACKET_qXfer_auxv]);
802188a7 11120
23181151
DJ
11121 case TARGET_OBJECT_AVAILABLE_FEATURES:
11122 return remote_read_qxfer
f6ac5f3d 11123 ("features", annex, readbuf, offset, len, xfered_len,
23181151
DJ
11124 &remote_protocol_packets[PACKET_qXfer_features]);
11125
cfa9d6d9
DJ
11126 case TARGET_OBJECT_LIBRARIES:
11127 return remote_read_qxfer
f6ac5f3d 11128 ("libraries", annex, readbuf, offset, len, xfered_len,
cfa9d6d9
DJ
11129 &remote_protocol_packets[PACKET_qXfer_libraries]);
11130
2268b414
JK
11131 case TARGET_OBJECT_LIBRARIES_SVR4:
11132 return remote_read_qxfer
f6ac5f3d 11133 ("libraries-svr4", annex, readbuf, offset, len, xfered_len,
2268b414
JK
11134 &remote_protocol_packets[PACKET_qXfer_libraries_svr4]);
11135
fd79ecee
DJ
11136 case TARGET_OBJECT_MEMORY_MAP:
11137 gdb_assert (annex == NULL);
f6ac5f3d 11138 return remote_read_qxfer ("memory-map", annex, readbuf, offset, len,
9b409511 11139 xfered_len,
fd79ecee
DJ
11140 &remote_protocol_packets[PACKET_qXfer_memory_map]);
11141
07e059b5
VP
11142 case TARGET_OBJECT_OSDATA:
11143 /* Should only get here if we're connected. */
5d93a237 11144 gdb_assert (rs->remote_desc);
07e059b5 11145 return remote_read_qxfer
f6ac5f3d 11146 ("osdata", annex, readbuf, offset, len, xfered_len,
dda83cd7 11147 &remote_protocol_packets[PACKET_qXfer_osdata]);
07e059b5 11148
dc146f7c
VP
11149 case TARGET_OBJECT_THREADS:
11150 gdb_assert (annex == NULL);
f6ac5f3d 11151 return remote_read_qxfer ("threads", annex, readbuf, offset, len,
9b409511 11152 xfered_len,
dc146f7c
VP
11153 &remote_protocol_packets[PACKET_qXfer_threads]);
11154
b3b9301e
PA
11155 case TARGET_OBJECT_TRACEFRAME_INFO:
11156 gdb_assert (annex == NULL);
11157 return remote_read_qxfer
f6ac5f3d 11158 ("traceframe-info", annex, readbuf, offset, len, xfered_len,
b3b9301e 11159 &remote_protocol_packets[PACKET_qXfer_traceframe_info]);
78d85199
YQ
11160
11161 case TARGET_OBJECT_FDPIC:
f6ac5f3d 11162 return remote_read_qxfer ("fdpic", annex, readbuf, offset, len,
9b409511 11163 xfered_len,
78d85199 11164 &remote_protocol_packets[PACKET_qXfer_fdpic]);
169081d0
TG
11165
11166 case TARGET_OBJECT_OPENVMS_UIB:
f6ac5f3d 11167 return remote_read_qxfer ("uib", annex, readbuf, offset, len,
9b409511 11168 xfered_len,
169081d0
TG
11169 &remote_protocol_packets[PACKET_qXfer_uib]);
11170
9accd112 11171 case TARGET_OBJECT_BTRACE:
f6ac5f3d 11172 return remote_read_qxfer ("btrace", annex, readbuf, offset, len,
9b409511 11173 xfered_len,
dda83cd7 11174 &remote_protocol_packets[PACKET_qXfer_btrace]);
9accd112 11175
f4abbc16 11176 case TARGET_OBJECT_BTRACE_CONF:
f6ac5f3d 11177 return remote_read_qxfer ("btrace-conf", annex, readbuf, offset,
f4abbc16
MM
11178 len, xfered_len,
11179 &remote_protocol_packets[PACKET_qXfer_btrace_conf]);
11180
c78fa86a 11181 case TARGET_OBJECT_EXEC_FILE:
f6ac5f3d 11182 return remote_read_qxfer ("exec-file", annex, readbuf, offset,
c78fa86a
GB
11183 len, xfered_len,
11184 &remote_protocol_packets[PACKET_qXfer_exec_file]);
11185
1e3ff5ad 11186 default:
2ed4b548 11187 return TARGET_XFER_E_IO;
c906108c
SS
11188 }
11189
0df8b418 11190 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
24b06219 11191 large enough let the caller deal with it. */
ea9c271d 11192 if (len < get_remote_packet_size ())
2ed4b548 11193 return TARGET_XFER_E_IO;
ea9c271d 11194 len = get_remote_packet_size ();
1e3ff5ad 11195
23860348 11196 /* Except for querying the minimum buffer size, target must be open. */
5d93a237 11197 if (!rs->remote_desc)
8a3fe4f8 11198 error (_("remote query is only available after target open"));
c906108c 11199
1e3ff5ad 11200 gdb_assert (annex != NULL);
4b8a223f 11201 gdb_assert (readbuf != NULL);
c906108c 11202
8d64371b 11203 p2 = rs->buf.data ();
c906108c
SS
11204 *p2++ = 'q';
11205 *p2++ = query_type;
11206
23860348
MS
11207 /* We used one buffer char for the remote protocol q command and
11208 another for the query type. As the remote protocol encapsulation
11209 uses 4 chars plus one extra in case we are debugging
11210 (remote_debug), we have PBUFZIZ - 7 left to pack the query
11211 string. */
c906108c 11212 i = 0;
ea9c271d 11213 while (annex[i] && (i < (get_remote_packet_size () - 8)))
c906108c 11214 {
1e3ff5ad
AC
11215 /* Bad caller may have sent forbidden characters. */
11216 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
11217 *p2++ = annex[i];
c906108c
SS
11218 i++;
11219 }
1e3ff5ad
AC
11220 *p2 = '\0';
11221 gdb_assert (annex[i] == '\0');
c906108c 11222
6d820c5c 11223 i = putpkt (rs->buf);
c5aa993b 11224 if (i < 0)
2ed4b548 11225 return TARGET_XFER_E_IO;
c906108c 11226
8d64371b
TT
11227 getpkt (&rs->buf, 0);
11228 strcpy ((char *) readbuf, rs->buf.data ());
c906108c 11229
9b409511 11230 *xfered_len = strlen ((char *) readbuf);
92ffd475 11231 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
c906108c
SS
11232}
11233
09c98b44
DB
11234/* Implementation of to_get_memory_xfer_limit. */
11235
f6ac5f3d
PA
11236ULONGEST
11237remote_target::get_memory_xfer_limit ()
09c98b44
DB
11238{
11239 return get_memory_write_packet_size ();
11240}
11241
f6ac5f3d
PA
11242int
11243remote_target::search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
11244 const gdb_byte *pattern, ULONGEST pattern_len,
11245 CORE_ADDR *found_addrp)
08388c79 11246{
f5656ead 11247 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
08388c79
DE
11248 struct remote_state *rs = get_remote_state ();
11249 int max_size = get_memory_write_packet_size ();
11250 struct packet_config *packet =
11251 &remote_protocol_packets[PACKET_qSearch_memory];
0df8b418
MS
11252 /* Number of packet bytes used to encode the pattern;
11253 this could be more than PATTERN_LEN due to escape characters. */
08388c79 11254 int escaped_pattern_len;
0df8b418 11255 /* Amount of pattern that was encodable in the packet. */
08388c79
DE
11256 int used_pattern_len;
11257 int i;
11258 int found;
11259 ULONGEST found_addr;
11260
4a72de73
TT
11261 auto read_memory = [=] (CORE_ADDR addr, gdb_byte *result, size_t len)
11262 {
11263 return (target_read (this, TARGET_OBJECT_MEMORY, NULL, result, addr, len)
11264 == len);
11265 };
11266
7cc244de
PA
11267 /* Don't go to the target if we don't have to. This is done before
11268 checking packet_config_support to avoid the possibility that a
11269 success for this edge case means the facility works in
11270 general. */
08388c79
DE
11271 if (pattern_len > search_space_len)
11272 return 0;
11273 if (pattern_len == 0)
11274 {
11275 *found_addrp = start_addr;
11276 return 1;
11277 }
11278
11279 /* If we already know the packet isn't supported, fall back to the simple
11280 way of searching memory. */
11281
4082afcc 11282 if (packet_config_support (packet) == PACKET_DISABLE)
08388c79
DE
11283 {
11284 /* Target doesn't provided special support, fall back and use the
11285 standard support (copy memory and do the search here). */
4a72de73 11286 return simple_search_memory (read_memory, start_addr, search_space_len,
08388c79
DE
11287 pattern, pattern_len, found_addrp);
11288 }
11289
28439a30
PA
11290 /* Make sure the remote is pointing at the right process. */
11291 set_general_process ();
11292
08388c79 11293 /* Insert header. */
8d64371b 11294 i = snprintf (rs->buf.data (), max_size,
08388c79 11295 "qSearch:memory:%s;%s;",
5af949e3 11296 phex_nz (start_addr, addr_size),
08388c79
DE
11297 phex_nz (search_space_len, sizeof (search_space_len)));
11298 max_size -= (i + 1);
11299
11300 /* Escape as much data as fits into rs->buf. */
11301 escaped_pattern_len =
8d64371b
TT
11302 remote_escape_output (pattern, pattern_len, 1,
11303 (gdb_byte *) rs->buf.data () + i,
08388c79
DE
11304 &used_pattern_len, max_size);
11305
11306 /* Bail if the pattern is too large. */
11307 if (used_pattern_len != pattern_len)
9b20d036 11308 error (_("Pattern is too large to transmit to remote target."));
08388c79 11309
8d64371b
TT
11310 if (putpkt_binary (rs->buf.data (), i + escaped_pattern_len) < 0
11311 || getpkt_sane (&rs->buf, 0) < 0
08388c79
DE
11312 || packet_ok (rs->buf, packet) != PACKET_OK)
11313 {
11314 /* The request may not have worked because the command is not
11315 supported. If so, fall back to the simple way. */
7cc244de 11316 if (packet_config_support (packet) == PACKET_DISABLE)
08388c79 11317 {
4a72de73 11318 return simple_search_memory (read_memory, start_addr, search_space_len,
08388c79
DE
11319 pattern, pattern_len, found_addrp);
11320 }
11321 return -1;
11322 }
11323
11324 if (rs->buf[0] == '0')
11325 found = 0;
11326 else if (rs->buf[0] == '1')
11327 {
11328 found = 1;
11329 if (rs->buf[1] != ',')
8d64371b
TT
11330 error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ());
11331 unpack_varlen_hex (&rs->buf[2], &found_addr);
08388c79
DE
11332 *found_addrp = found_addr;
11333 }
11334 else
8d64371b 11335 error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ());
08388c79
DE
11336
11337 return found;
11338}
11339
f6ac5f3d
PA
11340void
11341remote_target::rcmd (const char *command, struct ui_file *outbuf)
96baa820 11342{
d01949b6 11343 struct remote_state *rs = get_remote_state ();
8d64371b 11344 char *p = rs->buf.data ();
96baa820 11345
5d93a237 11346 if (!rs->remote_desc)
8a3fe4f8 11347 error (_("remote rcmd is only available after target open"));
96baa820 11348
23860348 11349 /* Send a NULL command across as an empty command. */
7be570e7
JM
11350 if (command == NULL)
11351 command = "";
11352
23860348 11353 /* The query prefix. */
8d64371b
TT
11354 strcpy (rs->buf.data (), "qRcmd,");
11355 p = strchr (rs->buf.data (), '\0');
96baa820 11356
8d64371b 11357 if ((strlen (rs->buf.data ()) + strlen (command) * 2 + 8/*misc*/)
3e43a32a 11358 > get_remote_packet_size ())
8a3fe4f8 11359 error (_("\"monitor\" command ``%s'' is too long."), command);
96baa820 11360
23860348 11361 /* Encode the actual command. */
a30bf1f1 11362 bin2hex ((const gdb_byte *) command, p, strlen (command));
96baa820 11363
6d820c5c 11364 if (putpkt (rs->buf) < 0)
8a3fe4f8 11365 error (_("Communication problem with target."));
96baa820
JM
11366
11367 /* get/display the response */
11368 while (1)
11369 {
2e9f7625
DJ
11370 char *buf;
11371
00bf0b85 11372 /* XXX - see also remote_get_noisy_reply(). */
5b37825d 11373 QUIT; /* Allow user to bail out with ^C. */
2e9f7625 11374 rs->buf[0] = '\0';
8d64371b 11375 if (getpkt_sane (&rs->buf, 0) == -1)
dda83cd7
SM
11376 {
11377 /* Timeout. Continue to (try to) read responses.
11378 This is better than stopping with an error, assuming the stub
11379 is still executing the (long) monitor command.
11380 If needed, the user can interrupt gdb using C-c, obtaining
11381 an effect similar to stop on timeout. */
11382 continue;
11383 }
8d64371b 11384 buf = rs->buf.data ();
96baa820 11385 if (buf[0] == '\0')
8a3fe4f8 11386 error (_("Target does not support this command."));
96baa820
JM
11387 if (buf[0] == 'O' && buf[1] != 'K')
11388 {
23860348 11389 remote_console_output (buf + 1); /* 'O' message from stub. */
96baa820
JM
11390 continue;
11391 }
11392 if (strcmp (buf, "OK") == 0)
11393 break;
7be570e7
JM
11394 if (strlen (buf) == 3 && buf[0] == 'E'
11395 && isdigit (buf[1]) && isdigit (buf[2]))
11396 {
8a3fe4f8 11397 error (_("Protocol error with Rcmd"));
7be570e7 11398 }
96baa820
JM
11399 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
11400 {
11401 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
a744cf53 11402
96baa820
JM
11403 fputc_unfiltered (c, outbuf);
11404 }
11405 break;
11406 }
11407}
11408
f6ac5f3d
PA
11409std::vector<mem_region>
11410remote_target::memory_map ()
fd79ecee 11411{
a664f67e 11412 std::vector<mem_region> result;
9018be22 11413 gdb::optional<gdb::char_vector> text
8b88a78e 11414 = target_read_stralloc (current_top_target (), TARGET_OBJECT_MEMORY_MAP, NULL);
fd79ecee
DJ
11415
11416 if (text)
9018be22 11417 result = parse_memory_map (text->data ());
fd79ecee
DJ
11418
11419 return result;
11420}
11421
c906108c 11422static void
ac88e2de 11423packet_command (const char *args, int from_tty)
c906108c 11424{
6b8edb51 11425 remote_target *remote = get_current_remote_target ();
c906108c 11426
6b8edb51 11427 if (remote == nullptr)
8a3fe4f8 11428 error (_("command can only be used with remote target"));
c906108c 11429
6b8edb51
PA
11430 remote->packet_command (args, from_tty);
11431}
11432
11433void
11434remote_target::packet_command (const char *args, int from_tty)
11435{
c5aa993b 11436 if (!args)
8a3fe4f8 11437 error (_("remote-packet command requires packet text as argument"));
c906108c
SS
11438
11439 puts_filtered ("sending: ");
11440 print_packet (args);
11441 puts_filtered ("\n");
11442 putpkt (args);
11443
6b8edb51
PA
11444 remote_state *rs = get_remote_state ();
11445
8d64371b 11446 getpkt (&rs->buf, 0);
c906108c 11447 puts_filtered ("received: ");
8d64371b 11448 print_packet (rs->buf.data ());
c906108c
SS
11449 puts_filtered ("\n");
11450}
11451
11452#if 0
23860348 11453/* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
c906108c 11454
a14ed312 11455static void display_thread_info (struct gdb_ext_thread_info *info);
c906108c 11456
a14ed312 11457static void threadset_test_cmd (char *cmd, int tty);
c906108c 11458
a14ed312 11459static void threadalive_test (char *cmd, int tty);
c906108c 11460
a14ed312 11461static void threadlist_test_cmd (char *cmd, int tty);
c906108c 11462
23860348 11463int get_and_display_threadinfo (threadref *ref);
c906108c 11464
a14ed312 11465static void threadinfo_test_cmd (char *cmd, int tty);
c906108c 11466
23860348 11467static int thread_display_step (threadref *ref, void *context);
c906108c 11468
a14ed312 11469static void threadlist_update_test_cmd (char *cmd, int tty);
c906108c 11470
a14ed312 11471static void init_remote_threadtests (void);
c906108c 11472
23860348 11473#define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
c906108c
SS
11474
11475static void
0b39b52e 11476threadset_test_cmd (const char *cmd, int tty)
c906108c
SS
11477{
11478 int sample_thread = SAMPLE_THREAD;
11479
a3f17187 11480 printf_filtered (_("Remote threadset test\n"));
79d7f229 11481 set_general_thread (sample_thread);
c906108c
SS
11482}
11483
11484
11485static void
0b39b52e 11486threadalive_test (const char *cmd, int tty)
c906108c
SS
11487{
11488 int sample_thread = SAMPLE_THREAD;
e99b03dc 11489 int pid = inferior_ptid.pid ();
fd79271b 11490 ptid_t ptid = ptid_t (pid, sample_thread, 0);
c906108c 11491
79d7f229 11492 if (remote_thread_alive (ptid))
c906108c
SS
11493 printf_filtered ("PASS: Thread alive test\n");
11494 else
11495 printf_filtered ("FAIL: Thread alive test\n");
11496}
11497
23860348 11498void output_threadid (char *title, threadref *ref);
c906108c
SS
11499
11500void
fba45db2 11501output_threadid (char *title, threadref *ref)
c906108c
SS
11502{
11503 char hexid[20];
11504
405feb71 11505 pack_threadid (&hexid[0], ref); /* Convert thread id into hex. */
c906108c
SS
11506 hexid[16] = 0;
11507 printf_filtered ("%s %s\n", title, (&hexid[0]));
11508}
11509
11510static void
0b39b52e 11511threadlist_test_cmd (const char *cmd, int tty)
c906108c
SS
11512{
11513 int startflag = 1;
11514 threadref nextthread;
11515 int done, result_count;
11516 threadref threadlist[3];
11517
11518 printf_filtered ("Remote Threadlist test\n");
11519 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
11520 &result_count, &threadlist[0]))
11521 printf_filtered ("FAIL: threadlist test\n");
11522 else
11523 {
11524 threadref *scan = threadlist;
11525 threadref *limit = scan + result_count;
11526
11527 while (scan < limit)
11528 output_threadid (" thread ", scan++);
11529 }
11530}
11531
11532void
fba45db2 11533display_thread_info (struct gdb_ext_thread_info *info)
c906108c
SS
11534{
11535 output_threadid ("Threadid: ", &info->threadid);
11536 printf_filtered ("Name: %s\n ", info->shortname);
11537 printf_filtered ("State: %s\n", info->display);
11538 printf_filtered ("other: %s\n\n", info->more_display);
11539}
11540
11541int
fba45db2 11542get_and_display_threadinfo (threadref *ref)
c906108c
SS
11543{
11544 int result;
11545 int set;
11546 struct gdb_ext_thread_info threadinfo;
11547
11548 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
11549 | TAG_MOREDISPLAY | TAG_DISPLAY;
11550 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
11551 display_thread_info (&threadinfo);
11552 return result;
11553}
11554
11555static void
0b39b52e 11556threadinfo_test_cmd (const char *cmd, int tty)
c906108c
SS
11557{
11558 int athread = SAMPLE_THREAD;
11559 threadref thread;
11560 int set;
11561
11562 int_to_threadref (&thread, athread);
11563 printf_filtered ("Remote Threadinfo test\n");
11564 if (!get_and_display_threadinfo (&thread))
11565 printf_filtered ("FAIL cannot get thread info\n");
11566}
11567
11568static int
fba45db2 11569thread_display_step (threadref *ref, void *context)
c906108c
SS
11570{
11571 /* output_threadid(" threadstep ",ref); *//* simple test */
11572 return get_and_display_threadinfo (ref);
11573}
11574
11575static void
0b39b52e 11576threadlist_update_test_cmd (const char *cmd, int tty)
c906108c
SS
11577{
11578 printf_filtered ("Remote Threadlist update test\n");
11579 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
11580}
11581
11582static void
11583init_remote_threadtests (void)
11584{
3e43a32a
MS
11585 add_com ("tlist", class_obscure, threadlist_test_cmd,
11586 _("Fetch and print the remote list of "
590042fc 11587 "thread identifiers, one pkt only."));
c906108c 11588 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
590042fc 11589 _("Fetch and display info about one thread."));
c906108c 11590 add_com ("tset", class_obscure, threadset_test_cmd,
590042fc 11591 _("Test setting to a different thread."));
c906108c 11592 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
590042fc 11593 _("Iterate through updating all remote thread info."));
c906108c 11594 add_com ("talive", class_obscure, threadalive_test,
590042fc 11595 _("Remote thread alive test."));
c906108c
SS
11596}
11597
11598#endif /* 0 */
11599
a068643d 11600/* Convert a thread ID to a string. */
f3fb8c85 11601
a068643d 11602std::string
f6ac5f3d 11603remote_target::pid_to_str (ptid_t ptid)
f3fb8c85 11604{
82f73884 11605 struct remote_state *rs = get_remote_state ();
f3fb8c85 11606
d7e15655 11607 if (ptid == null_ptid)
7cee1e54 11608 return normal_pid_to_str (ptid);
0e998d96 11609 else if (ptid.is_pid ())
ecd0ada5
PA
11610 {
11611 /* Printing an inferior target id. */
11612
11613 /* When multi-process extensions are off, there's no way in the
11614 remote protocol to know the remote process id, if there's any
11615 at all. There's one exception --- when we're connected with
11616 target extended-remote, and we manually attached to a process
11617 with "attach PID". We don't record anywhere a flag that
11618 allows us to distinguish that case from the case of
11619 connecting with extended-remote and the stub already being
11620 attached to a process, and reporting yes to qAttached, hence
11621 no smart special casing here. */
11622 if (!remote_multi_process_p (rs))
a068643d 11623 return "Remote target";
ecd0ada5
PA
11624
11625 return normal_pid_to_str (ptid);
82f73884 11626 }
ecd0ada5 11627 else
79d7f229 11628 {
d7e15655 11629 if (magic_null_ptid == ptid)
a068643d 11630 return "Thread <main>";
8020350c 11631 else if (remote_multi_process_p (rs))
e38504b3 11632 if (ptid.lwp () == 0)
de0d863e
DB
11633 return normal_pid_to_str (ptid);
11634 else
a068643d
TT
11635 return string_printf ("Thread %d.%ld",
11636 ptid.pid (), ptid.lwp ());
ecd0ada5 11637 else
a068643d 11638 return string_printf ("Thread %ld", ptid.lwp ());
79d7f229 11639 }
f3fb8c85
MS
11640}
11641
38691318
KB
11642/* Get the address of the thread local variable in OBJFILE which is
11643 stored at OFFSET within the thread local storage for thread PTID. */
11644
f6ac5f3d
PA
11645CORE_ADDR
11646remote_target::get_thread_local_address (ptid_t ptid, CORE_ADDR lm,
11647 CORE_ADDR offset)
38691318 11648{
4082afcc 11649 if (packet_support (PACKET_qGetTLSAddr) != PACKET_DISABLE)
38691318
KB
11650 {
11651 struct remote_state *rs = get_remote_state ();
8d64371b
TT
11652 char *p = rs->buf.data ();
11653 char *endp = p + get_remote_packet_size ();
571dd617 11654 enum packet_result result;
38691318
KB
11655
11656 strcpy (p, "qGetTLSAddr:");
11657 p += strlen (p);
82f73884 11658 p = write_ptid (p, endp, ptid);
38691318
KB
11659 *p++ = ',';
11660 p += hexnumstr (p, offset);
11661 *p++ = ',';
11662 p += hexnumstr (p, lm);
11663 *p++ = '\0';
11664
6d820c5c 11665 putpkt (rs->buf);
8d64371b 11666 getpkt (&rs->buf, 0);
3e43a32a
MS
11667 result = packet_ok (rs->buf,
11668 &remote_protocol_packets[PACKET_qGetTLSAddr]);
571dd617 11669 if (result == PACKET_OK)
38691318 11670 {
b926417a 11671 ULONGEST addr;
38691318 11672
8d64371b 11673 unpack_varlen_hex (rs->buf.data (), &addr);
b926417a 11674 return addr;
38691318 11675 }
571dd617 11676 else if (result == PACKET_UNKNOWN)
109c3e39
AC
11677 throw_error (TLS_GENERIC_ERROR,
11678 _("Remote target doesn't support qGetTLSAddr packet"));
38691318 11679 else
109c3e39
AC
11680 throw_error (TLS_GENERIC_ERROR,
11681 _("Remote target failed to process qGetTLSAddr request"));
38691318
KB
11682 }
11683 else
109c3e39
AC
11684 throw_error (TLS_GENERIC_ERROR,
11685 _("TLS not supported or disabled on this target"));
38691318
KB
11686 /* Not reached. */
11687 return 0;
11688}
11689
711e434b
PM
11690/* Provide thread local base, i.e. Thread Information Block address.
11691 Returns 1 if ptid is found and thread_local_base is non zero. */
11692
57810aa7 11693bool
f6ac5f3d 11694remote_target::get_tib_address (ptid_t ptid, CORE_ADDR *addr)
711e434b 11695{
4082afcc 11696 if (packet_support (PACKET_qGetTIBAddr) != PACKET_DISABLE)
711e434b
PM
11697 {
11698 struct remote_state *rs = get_remote_state ();
8d64371b
TT
11699 char *p = rs->buf.data ();
11700 char *endp = p + get_remote_packet_size ();
711e434b
PM
11701 enum packet_result result;
11702
11703 strcpy (p, "qGetTIBAddr:");
11704 p += strlen (p);
11705 p = write_ptid (p, endp, ptid);
11706 *p++ = '\0';
11707
11708 putpkt (rs->buf);
8d64371b 11709 getpkt (&rs->buf, 0);
711e434b
PM
11710 result = packet_ok (rs->buf,
11711 &remote_protocol_packets[PACKET_qGetTIBAddr]);
11712 if (result == PACKET_OK)
11713 {
b926417a 11714 ULONGEST val;
8d64371b 11715 unpack_varlen_hex (rs->buf.data (), &val);
711e434b 11716 if (addr)
b926417a 11717 *addr = (CORE_ADDR) val;
57810aa7 11718 return true;
711e434b
PM
11719 }
11720 else if (result == PACKET_UNKNOWN)
11721 error (_("Remote target doesn't support qGetTIBAddr packet"));
11722 else
11723 error (_("Remote target failed to process qGetTIBAddr request"));
11724 }
11725 else
11726 error (_("qGetTIBAddr not supported or disabled on this target"));
11727 /* Not reached. */
57810aa7 11728 return false;
711e434b
PM
11729}
11730
29709017
DJ
11731/* Support for inferring a target description based on the current
11732 architecture and the size of a 'g' packet. While the 'g' packet
11733 can have any size (since optional registers can be left off the
11734 end), some sizes are easily recognizable given knowledge of the
11735 approximate architecture. */
11736
11737struct remote_g_packet_guess
11738{
eefce37f
TT
11739 remote_g_packet_guess (int bytes_, const struct target_desc *tdesc_)
11740 : bytes (bytes_),
11741 tdesc (tdesc_)
11742 {
11743 }
11744
29709017
DJ
11745 int bytes;
11746 const struct target_desc *tdesc;
11747};
29709017 11748
eefce37f 11749struct remote_g_packet_data : public allocate_on_obstack
29709017 11750{
eefce37f 11751 std::vector<remote_g_packet_guess> guesses;
29709017
DJ
11752};
11753
11754static struct gdbarch_data *remote_g_packet_data_handle;
11755
11756static void *
11757remote_g_packet_data_init (struct obstack *obstack)
11758{
eefce37f 11759 return new (obstack) remote_g_packet_data;
29709017
DJ
11760}
11761
11762void
11763register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes,
11764 const struct target_desc *tdesc)
11765{
11766 struct remote_g_packet_data *data
19ba03f4
SM
11767 = ((struct remote_g_packet_data *)
11768 gdbarch_data (gdbarch, remote_g_packet_data_handle));
29709017
DJ
11769
11770 gdb_assert (tdesc != NULL);
11771
eefce37f
TT
11772 for (const remote_g_packet_guess &guess : data->guesses)
11773 if (guess.bytes == bytes)
29709017 11774 internal_error (__FILE__, __LINE__,
9b20d036 11775 _("Duplicate g packet description added for size %d"),
29709017
DJ
11776 bytes);
11777
eefce37f 11778 data->guesses.emplace_back (bytes, tdesc);
29709017
DJ
11779}
11780
eefce37f
TT
11781/* Return true if remote_read_description would do anything on this target
11782 and architecture, false otherwise. */
d962ef82 11783
eefce37f 11784static bool
d962ef82
DJ
11785remote_read_description_p (struct target_ops *target)
11786{
11787 struct remote_g_packet_data *data
19ba03f4
SM
11788 = ((struct remote_g_packet_data *)
11789 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
d962ef82 11790
eefce37f 11791 return !data->guesses.empty ();
d962ef82
DJ
11792}
11793
f6ac5f3d
PA
11794const struct target_desc *
11795remote_target::read_description ()
29709017
DJ
11796{
11797 struct remote_g_packet_data *data
19ba03f4
SM
11798 = ((struct remote_g_packet_data *)
11799 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
29709017 11800
d962ef82
DJ
11801 /* Do not try this during initial connection, when we do not know
11802 whether there is a running but stopped thread. */
55f6301a 11803 if (!target_has_execution () || inferior_ptid == null_ptid)
b6a8c27b 11804 return beneath ()->read_description ();
d962ef82 11805
eefce37f 11806 if (!data->guesses.empty ())
29709017 11807 {
29709017
DJ
11808 int bytes = send_g_packet ();
11809
eefce37f
TT
11810 for (const remote_g_packet_guess &guess : data->guesses)
11811 if (guess.bytes == bytes)
11812 return guess.tdesc;
29709017
DJ
11813
11814 /* We discard the g packet. A minor optimization would be to
11815 hold on to it, and fill the register cache once we have selected
11816 an architecture, but it's too tricky to do safely. */
11817 }
11818
b6a8c27b 11819 return beneath ()->read_description ();
29709017
DJ
11820}
11821
a6b151f1
DJ
11822/* Remote file transfer support. This is host-initiated I/O, not
11823 target-initiated; for target-initiated, see remote-fileio.c. */
11824
11825/* If *LEFT is at least the length of STRING, copy STRING to
11826 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11827 decrease *LEFT. Otherwise raise an error. */
11828
11829static void
a121b7c1 11830remote_buffer_add_string (char **buffer, int *left, const char *string)
a6b151f1
DJ
11831{
11832 int len = strlen (string);
11833
11834 if (len > *left)
11835 error (_("Packet too long for target."));
11836
11837 memcpy (*buffer, string, len);
11838 *buffer += len;
11839 *left -= len;
11840
11841 /* NUL-terminate the buffer as a convenience, if there is
11842 room. */
11843 if (*left)
11844 **buffer = '\0';
11845}
11846
11847/* If *LEFT is large enough, hex encode LEN bytes from BYTES into
11848 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11849 decrease *LEFT. Otherwise raise an error. */
11850
11851static void
11852remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes,
11853 int len)
11854{
11855 if (2 * len > *left)
11856 error (_("Packet too long for target."));
11857
11858 bin2hex (bytes, *buffer, len);
11859 *buffer += 2 * len;
11860 *left -= 2 * len;
11861
11862 /* NUL-terminate the buffer as a convenience, if there is
11863 room. */
11864 if (*left)
11865 **buffer = '\0';
11866}
11867
11868/* If *LEFT is large enough, convert VALUE to hex and add it to
11869 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11870 decrease *LEFT. Otherwise raise an error. */
11871
11872static void
11873remote_buffer_add_int (char **buffer, int *left, ULONGEST value)
11874{
11875 int len = hexnumlen (value);
11876
11877 if (len > *left)
11878 error (_("Packet too long for target."));
11879
11880 hexnumstr (*buffer, value);
11881 *buffer += len;
11882 *left -= len;
11883
11884 /* NUL-terminate the buffer as a convenience, if there is
11885 room. */
11886 if (*left)
11887 **buffer = '\0';
11888}
11889
11890/* Parse an I/O result packet from BUFFER. Set RETCODE to the return
11891 value, *REMOTE_ERRNO to the remote error number or zero if none
11892 was included, and *ATTACHMENT to point to the start of the annex
11893 if any. The length of the packet isn't needed here; there may
11894 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
11895
11896 Return 0 if the packet could be parsed, -1 if it could not. If
11897 -1 is returned, the other variables may not be initialized. */
11898
11899static int
aa2838cc
SM
11900remote_hostio_parse_result (const char *buffer, int *retcode,
11901 int *remote_errno, const char **attachment)
a6b151f1
DJ
11902{
11903 char *p, *p2;
11904
11905 *remote_errno = 0;
11906 *attachment = NULL;
11907
11908 if (buffer[0] != 'F')
11909 return -1;
11910
11911 errno = 0;
11912 *retcode = strtol (&buffer[1], &p, 16);
11913 if (errno != 0 || p == &buffer[1])
11914 return -1;
11915
11916 /* Check for ",errno". */
11917 if (*p == ',')
11918 {
11919 errno = 0;
11920 *remote_errno = strtol (p + 1, &p2, 16);
11921 if (errno != 0 || p + 1 == p2)
11922 return -1;
11923 p = p2;
11924 }
11925
11926 /* Check for ";attachment". If there is no attachment, the
11927 packet should end here. */
11928 if (*p == ';')
11929 {
11930 *attachment = p + 1;
11931 return 0;
11932 }
11933 else if (*p == '\0')
11934 return 0;
11935 else
11936 return -1;
11937}
11938
11939/* Send a prepared I/O packet to the target and read its response.
11940 The prepared packet is in the global RS->BUF before this function
11941 is called, and the answer is there when we return.
11942
11943 COMMAND_BYTES is the length of the request to send, which may include
11944 binary data. WHICH_PACKET is the packet configuration to check
11945 before attempting a packet. If an error occurs, *REMOTE_ERRNO
11946 is set to the error number and -1 is returned. Otherwise the value
11947 returned by the function is returned.
11948
11949 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
11950 attachment is expected; an error will be reported if there's a
11951 mismatch. If one is found, *ATTACHMENT will be set to point into
11952 the packet buffer and *ATTACHMENT_LEN will be set to the
11953 attachment's length. */
11954
6b8edb51
PA
11955int
11956remote_target::remote_hostio_send_command (int command_bytes, int which_packet,
aa2838cc 11957 int *remote_errno, const char **attachment,
6b8edb51 11958 int *attachment_len)
a6b151f1
DJ
11959{
11960 struct remote_state *rs = get_remote_state ();
11961 int ret, bytes_read;
aa2838cc 11962 const char *attachment_tmp;
a6b151f1 11963
20db9c52 11964 if (packet_support (which_packet) == PACKET_DISABLE)
a6b151f1
DJ
11965 {
11966 *remote_errno = FILEIO_ENOSYS;
11967 return -1;
11968 }
11969
8d64371b
TT
11970 putpkt_binary (rs->buf.data (), command_bytes);
11971 bytes_read = getpkt_sane (&rs->buf, 0);
a6b151f1
DJ
11972
11973 /* If it timed out, something is wrong. Don't try to parse the
11974 buffer. */
11975 if (bytes_read < 0)
11976 {
11977 *remote_errno = FILEIO_EINVAL;
11978 return -1;
11979 }
11980
11981 switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet]))
11982 {
11983 case PACKET_ERROR:
11984 *remote_errno = FILEIO_EINVAL;
11985 return -1;
11986 case PACKET_UNKNOWN:
11987 *remote_errno = FILEIO_ENOSYS;
11988 return -1;
11989 case PACKET_OK:
11990 break;
11991 }
11992
8d64371b 11993 if (remote_hostio_parse_result (rs->buf.data (), &ret, remote_errno,
a6b151f1
DJ
11994 &attachment_tmp))
11995 {
11996 *remote_errno = FILEIO_EINVAL;
11997 return -1;
11998 }
11999
12000 /* Make sure we saw an attachment if and only if we expected one. */
12001 if ((attachment_tmp == NULL && attachment != NULL)
12002 || (attachment_tmp != NULL && attachment == NULL))
12003 {
12004 *remote_errno = FILEIO_EINVAL;
12005 return -1;
12006 }
12007
12008 /* If an attachment was found, it must point into the packet buffer;
12009 work out how many bytes there were. */
12010 if (attachment_tmp != NULL)
12011 {
12012 *attachment = attachment_tmp;
8d64371b 12013 *attachment_len = bytes_read - (*attachment - rs->buf.data ());
a6b151f1
DJ
12014 }
12015
12016 return ret;
12017}
12018
dd194f6b 12019/* See declaration.h. */
80152258 12020
dd194f6b
PA
12021void
12022readahead_cache::invalidate ()
80152258 12023{
dd194f6b 12024 this->fd = -1;
80152258
PA
12025}
12026
dd194f6b 12027/* See declaration.h. */
80152258 12028
dd194f6b
PA
12029void
12030readahead_cache::invalidate_fd (int fd)
80152258 12031{
dd194f6b
PA
12032 if (this->fd == fd)
12033 this->fd = -1;
80152258
PA
12034}
12035
15a201c8
GB
12036/* Set the filesystem remote_hostio functions that take FILENAME
12037 arguments will use. Return 0 on success, or -1 if an error
12038 occurs (and set *REMOTE_ERRNO). */
12039
6b8edb51
PA
12040int
12041remote_target::remote_hostio_set_filesystem (struct inferior *inf,
12042 int *remote_errno)
15a201c8
GB
12043{
12044 struct remote_state *rs = get_remote_state ();
12045 int required_pid = (inf == NULL || inf->fake_pid_p) ? 0 : inf->pid;
8d64371b 12046 char *p = rs->buf.data ();
15a201c8
GB
12047 int left = get_remote_packet_size () - 1;
12048 char arg[9];
12049 int ret;
12050
12051 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
12052 return 0;
12053
12054 if (rs->fs_pid != -1 && required_pid == rs->fs_pid)
12055 return 0;
12056
12057 remote_buffer_add_string (&p, &left, "vFile:setfs:");
12058
12059 xsnprintf (arg, sizeof (arg), "%x", required_pid);
12060 remote_buffer_add_string (&p, &left, arg);
12061
8d64371b 12062 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_setfs,
15a201c8
GB
12063 remote_errno, NULL, NULL);
12064
12065 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
12066 return 0;
12067
12068 if (ret == 0)
12069 rs->fs_pid = required_pid;
12070
12071 return ret;
12072}
12073
12e2a5fd 12074/* Implementation of to_fileio_open. */
a6b151f1 12075
6b8edb51
PA
12076int
12077remote_target::remote_hostio_open (inferior *inf, const char *filename,
12078 int flags, int mode, int warn_if_slow,
12079 int *remote_errno)
a6b151f1
DJ
12080{
12081 struct remote_state *rs = get_remote_state ();
8d64371b 12082 char *p = rs->buf.data ();
a6b151f1
DJ
12083 int left = get_remote_packet_size () - 1;
12084
4313b8c0
GB
12085 if (warn_if_slow)
12086 {
12087 static int warning_issued = 0;
12088
12089 printf_unfiltered (_("Reading %s from remote target...\n"),
12090 filename);
12091
12092 if (!warning_issued)
12093 {
12094 warning (_("File transfers from remote targets can be slow."
12095 " Use \"set sysroot\" to access files locally"
12096 " instead."));
12097 warning_issued = 1;
12098 }
12099 }
12100
15a201c8
GB
12101 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
12102 return -1;
12103
a6b151f1
DJ
12104 remote_buffer_add_string (&p, &left, "vFile:open:");
12105
12106 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12107 strlen (filename));
12108 remote_buffer_add_string (&p, &left, ",");
12109
12110 remote_buffer_add_int (&p, &left, flags);
12111 remote_buffer_add_string (&p, &left, ",");
12112
12113 remote_buffer_add_int (&p, &left, mode);
12114
8d64371b 12115 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_open,
a6b151f1
DJ
12116 remote_errno, NULL, NULL);
12117}
12118
f6ac5f3d
PA
12119int
12120remote_target::fileio_open (struct inferior *inf, const char *filename,
12121 int flags, int mode, int warn_if_slow,
12122 int *remote_errno)
12123{
6b8edb51 12124 return remote_hostio_open (inf, filename, flags, mode, warn_if_slow,
f6ac5f3d
PA
12125 remote_errno);
12126}
12127
12e2a5fd 12128/* Implementation of to_fileio_pwrite. */
a6b151f1 12129
6b8edb51
PA
12130int
12131remote_target::remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
12132 ULONGEST offset, int *remote_errno)
a6b151f1
DJ
12133{
12134 struct remote_state *rs = get_remote_state ();
8d64371b 12135 char *p = rs->buf.data ();
a6b151f1
DJ
12136 int left = get_remote_packet_size ();
12137 int out_len;
12138
dd194f6b 12139 rs->readahead_cache.invalidate_fd (fd);
80152258 12140
a6b151f1
DJ
12141 remote_buffer_add_string (&p, &left, "vFile:pwrite:");
12142
12143 remote_buffer_add_int (&p, &left, fd);
12144 remote_buffer_add_string (&p, &left, ",");
12145
12146 remote_buffer_add_int (&p, &left, offset);
12147 remote_buffer_add_string (&p, &left, ",");
12148
124e13d9 12149 p += remote_escape_output (write_buf, len, 1, (gdb_byte *) p, &out_len,
8d64371b
TT
12150 (get_remote_packet_size ()
12151 - (p - rs->buf.data ())));
a6b151f1 12152
8d64371b 12153 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pwrite,
a6b151f1
DJ
12154 remote_errno, NULL, NULL);
12155}
12156
f6ac5f3d
PA
12157int
12158remote_target::fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
12159 ULONGEST offset, int *remote_errno)
12160{
6b8edb51 12161 return remote_hostio_pwrite (fd, write_buf, len, offset, remote_errno);
f6ac5f3d
PA
12162}
12163
80152258
PA
12164/* Helper for the implementation of to_fileio_pread. Read the file
12165 from the remote side with vFile:pread. */
a6b151f1 12166
6b8edb51
PA
12167int
12168remote_target::remote_hostio_pread_vFile (int fd, gdb_byte *read_buf, int len,
12169 ULONGEST offset, int *remote_errno)
a6b151f1
DJ
12170{
12171 struct remote_state *rs = get_remote_state ();
8d64371b 12172 char *p = rs->buf.data ();
aa2838cc 12173 const char *attachment;
a6b151f1
DJ
12174 int left = get_remote_packet_size ();
12175 int ret, attachment_len;
12176 int read_len;
12177
12178 remote_buffer_add_string (&p, &left, "vFile:pread:");
12179
12180 remote_buffer_add_int (&p, &left, fd);
12181 remote_buffer_add_string (&p, &left, ",");
12182
12183 remote_buffer_add_int (&p, &left, len);
12184 remote_buffer_add_string (&p, &left, ",");
12185
12186 remote_buffer_add_int (&p, &left, offset);
12187
8d64371b 12188 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pread,
a6b151f1
DJ
12189 remote_errno, &attachment,
12190 &attachment_len);
12191
12192 if (ret < 0)
12193 return ret;
12194
bc20a4af 12195 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
a6b151f1
DJ
12196 read_buf, len);
12197 if (read_len != ret)
12198 error (_("Read returned %d, but %d bytes."), ret, (int) read_len);
12199
12200 return ret;
12201}
12202
dd194f6b 12203/* See declaration.h. */
80152258 12204
dd194f6b
PA
12205int
12206readahead_cache::pread (int fd, gdb_byte *read_buf, size_t len,
12207 ULONGEST offset)
80152258 12208{
dd194f6b
PA
12209 if (this->fd == fd
12210 && this->offset <= offset
12211 && offset < this->offset + this->bufsize)
80152258 12212 {
dd194f6b 12213 ULONGEST max = this->offset + this->bufsize;
80152258
PA
12214
12215 if (offset + len > max)
12216 len = max - offset;
12217
dd194f6b 12218 memcpy (read_buf, this->buf + offset - this->offset, len);
80152258
PA
12219 return len;
12220 }
12221
12222 return 0;
12223}
12224
12225/* Implementation of to_fileio_pread. */
12226
6b8edb51
PA
12227int
12228remote_target::remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
12229 ULONGEST offset, int *remote_errno)
80152258
PA
12230{
12231 int ret;
12232 struct remote_state *rs = get_remote_state ();
dd194f6b 12233 readahead_cache *cache = &rs->readahead_cache;
80152258 12234
dd194f6b 12235 ret = cache->pread (fd, read_buf, len, offset);
80152258
PA
12236 if (ret > 0)
12237 {
12238 cache->hit_count++;
12239
2189c312
SM
12240 remote_debug_printf ("readahead cache hit %s",
12241 pulongest (cache->hit_count));
80152258
PA
12242 return ret;
12243 }
12244
12245 cache->miss_count++;
2189c312
SM
12246
12247 remote_debug_printf ("readahead cache miss %s",
12248 pulongest (cache->miss_count));
80152258
PA
12249
12250 cache->fd = fd;
12251 cache->offset = offset;
12252 cache->bufsize = get_remote_packet_size ();
224c3ddb 12253 cache->buf = (gdb_byte *) xrealloc (cache->buf, cache->bufsize);
80152258 12254
6b8edb51 12255 ret = remote_hostio_pread_vFile (cache->fd, cache->buf, cache->bufsize,
80152258
PA
12256 cache->offset, remote_errno);
12257 if (ret <= 0)
12258 {
dd194f6b 12259 cache->invalidate_fd (fd);
80152258
PA
12260 return ret;
12261 }
12262
12263 cache->bufsize = ret;
dd194f6b 12264 return cache->pread (fd, read_buf, len, offset);
80152258
PA
12265}
12266
f6ac5f3d
PA
12267int
12268remote_target::fileio_pread (int fd, gdb_byte *read_buf, int len,
12269 ULONGEST offset, int *remote_errno)
12270{
6b8edb51 12271 return remote_hostio_pread (fd, read_buf, len, offset, remote_errno);
f6ac5f3d
PA
12272}
12273
12e2a5fd 12274/* Implementation of to_fileio_close. */
a6b151f1 12275
6b8edb51
PA
12276int
12277remote_target::remote_hostio_close (int fd, int *remote_errno)
a6b151f1
DJ
12278{
12279 struct remote_state *rs = get_remote_state ();
8d64371b 12280 char *p = rs->buf.data ();
a6b151f1
DJ
12281 int left = get_remote_packet_size () - 1;
12282
dd194f6b 12283 rs->readahead_cache.invalidate_fd (fd);
80152258 12284
a6b151f1
DJ
12285 remote_buffer_add_string (&p, &left, "vFile:close:");
12286
12287 remote_buffer_add_int (&p, &left, fd);
12288
8d64371b 12289 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_close,
a6b151f1
DJ
12290 remote_errno, NULL, NULL);
12291}
12292
f6ac5f3d
PA
12293int
12294remote_target::fileio_close (int fd, int *remote_errno)
12295{
6b8edb51 12296 return remote_hostio_close (fd, remote_errno);
f6ac5f3d
PA
12297}
12298
12e2a5fd 12299/* Implementation of to_fileio_unlink. */
a6b151f1 12300
6b8edb51
PA
12301int
12302remote_target::remote_hostio_unlink (inferior *inf, const char *filename,
12303 int *remote_errno)
a6b151f1
DJ
12304{
12305 struct remote_state *rs = get_remote_state ();
8d64371b 12306 char *p = rs->buf.data ();
a6b151f1
DJ
12307 int left = get_remote_packet_size () - 1;
12308
15a201c8
GB
12309 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
12310 return -1;
12311
a6b151f1
DJ
12312 remote_buffer_add_string (&p, &left, "vFile:unlink:");
12313
12314 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12315 strlen (filename));
12316
8d64371b 12317 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_unlink,
a6b151f1
DJ
12318 remote_errno, NULL, NULL);
12319}
12320
f6ac5f3d
PA
12321int
12322remote_target::fileio_unlink (struct inferior *inf, const char *filename,
12323 int *remote_errno)
12324{
6b8edb51 12325 return remote_hostio_unlink (inf, filename, remote_errno);
f6ac5f3d
PA
12326}
12327
12e2a5fd 12328/* Implementation of to_fileio_readlink. */
b9e7b9c3 12329
f6ac5f3d
PA
12330gdb::optional<std::string>
12331remote_target::fileio_readlink (struct inferior *inf, const char *filename,
12332 int *remote_errno)
b9e7b9c3
UW
12333{
12334 struct remote_state *rs = get_remote_state ();
8d64371b 12335 char *p = rs->buf.data ();
aa2838cc 12336 const char *attachment;
b9e7b9c3
UW
12337 int left = get_remote_packet_size ();
12338 int len, attachment_len;
12339 int read_len;
b9e7b9c3 12340
15a201c8 12341 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
e0d3522b 12342 return {};
15a201c8 12343
b9e7b9c3
UW
12344 remote_buffer_add_string (&p, &left, "vFile:readlink:");
12345
12346 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12347 strlen (filename));
12348
8d64371b 12349 len = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_readlink,
b9e7b9c3
UW
12350 remote_errno, &attachment,
12351 &attachment_len);
12352
12353 if (len < 0)
e0d3522b 12354 return {};
b9e7b9c3 12355
e0d3522b 12356 std::string ret (len, '\0');
b9e7b9c3 12357
bc20a4af 12358 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
e0d3522b 12359 (gdb_byte *) &ret[0], len);
b9e7b9c3
UW
12360 if (read_len != len)
12361 error (_("Readlink returned %d, but %d bytes."), len, read_len);
12362
b9e7b9c3
UW
12363 return ret;
12364}
12365
12e2a5fd 12366/* Implementation of to_fileio_fstat. */
0a93529c 12367
f6ac5f3d
PA
12368int
12369remote_target::fileio_fstat (int fd, struct stat *st, int *remote_errno)
0a93529c
GB
12370{
12371 struct remote_state *rs = get_remote_state ();
8d64371b 12372 char *p = rs->buf.data ();
0a93529c
GB
12373 int left = get_remote_packet_size ();
12374 int attachment_len, ret;
aa2838cc 12375 const char *attachment;
0a93529c
GB
12376 struct fio_stat fst;
12377 int read_len;
12378
464b0089
GB
12379 remote_buffer_add_string (&p, &left, "vFile:fstat:");
12380
12381 remote_buffer_add_int (&p, &left, fd);
12382
8d64371b 12383 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_fstat,
464b0089
GB
12384 remote_errno, &attachment,
12385 &attachment_len);
12386 if (ret < 0)
0a93529c 12387 {
464b0089
GB
12388 if (*remote_errno != FILEIO_ENOSYS)
12389 return ret;
12390
0a93529c
GB
12391 /* Strictly we should return -1, ENOSYS here, but when
12392 "set sysroot remote:" was implemented in August 2008
12393 BFD's need for a stat function was sidestepped with
12394 this hack. This was not remedied until March 2015
12395 so we retain the previous behavior to avoid breaking
12396 compatibility.
12397
12398 Note that the memset is a March 2015 addition; older
12399 GDBs set st_size *and nothing else* so the structure
12400 would have garbage in all other fields. This might
12401 break something but retaining the previous behavior
12402 here would be just too wrong. */
12403
12404 memset (st, 0, sizeof (struct stat));
12405 st->st_size = INT_MAX;
12406 return 0;
12407 }
12408
0a93529c
GB
12409 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
12410 (gdb_byte *) &fst, sizeof (fst));
12411
12412 if (read_len != ret)
12413 error (_("vFile:fstat returned %d, but %d bytes."), ret, read_len);
12414
12415 if (read_len != sizeof (fst))
12416 error (_("vFile:fstat returned %d bytes, but expecting %d."),
12417 read_len, (int) sizeof (fst));
12418
12419 remote_fileio_to_host_stat (&fst, st);
12420
12421 return 0;
12422}
12423
12e2a5fd 12424/* Implementation of to_filesystem_is_local. */
e3dd7556 12425
57810aa7 12426bool
f6ac5f3d 12427remote_target::filesystem_is_local ()
e3dd7556
GB
12428{
12429 /* Valgrind GDB presents itself as a remote target but works
12430 on the local filesystem: it does not implement remote get
12431 and users are not expected to set a sysroot. To handle
12432 this case we treat the remote filesystem as local if the
12433 sysroot is exactly TARGET_SYSROOT_PREFIX and if the stub
12434 does not support vFile:open. */
a3be80c3 12435 if (strcmp (gdb_sysroot, TARGET_SYSROOT_PREFIX) == 0)
e3dd7556
GB
12436 {
12437 enum packet_support ps = packet_support (PACKET_vFile_open);
12438
12439 if (ps == PACKET_SUPPORT_UNKNOWN)
12440 {
12441 int fd, remote_errno;
12442
12443 /* Try opening a file to probe support. The supplied
12444 filename is irrelevant, we only care about whether
12445 the stub recognizes the packet or not. */
6b8edb51 12446 fd = remote_hostio_open (NULL, "just probing",
4313b8c0 12447 FILEIO_O_RDONLY, 0700, 0,
e3dd7556
GB
12448 &remote_errno);
12449
12450 if (fd >= 0)
6b8edb51 12451 remote_hostio_close (fd, &remote_errno);
e3dd7556
GB
12452
12453 ps = packet_support (PACKET_vFile_open);
12454 }
12455
12456 if (ps == PACKET_DISABLE)
12457 {
12458 static int warning_issued = 0;
12459
12460 if (!warning_issued)
12461 {
12462 warning (_("remote target does not support file"
12463 " transfer, attempting to access files"
12464 " from local filesystem."));
12465 warning_issued = 1;
12466 }
12467
57810aa7 12468 return true;
e3dd7556
GB
12469 }
12470 }
12471
57810aa7 12472 return false;
e3dd7556
GB
12473}
12474
a6b151f1
DJ
12475static int
12476remote_fileio_errno_to_host (int errnum)
12477{
12478 switch (errnum)
12479 {
12480 case FILEIO_EPERM:
dda83cd7 12481 return EPERM;
a6b151f1 12482 case FILEIO_ENOENT:
dda83cd7 12483 return ENOENT;
a6b151f1 12484 case FILEIO_EINTR:
dda83cd7 12485 return EINTR;
a6b151f1 12486 case FILEIO_EIO:
dda83cd7 12487 return EIO;
a6b151f1 12488 case FILEIO_EBADF:
dda83cd7 12489 return EBADF;
a6b151f1 12490 case FILEIO_EACCES:
dda83cd7 12491 return EACCES;
a6b151f1 12492 case FILEIO_EFAULT:
dda83cd7 12493 return EFAULT;
a6b151f1 12494 case FILEIO_EBUSY:
dda83cd7 12495 return EBUSY;
a6b151f1 12496 case FILEIO_EEXIST:
dda83cd7 12497 return EEXIST;
a6b151f1 12498 case FILEIO_ENODEV:
dda83cd7 12499 return ENODEV;
a6b151f1 12500 case FILEIO_ENOTDIR:
dda83cd7 12501 return ENOTDIR;
a6b151f1 12502 case FILEIO_EISDIR:
dda83cd7 12503 return EISDIR;
a6b151f1 12504 case FILEIO_EINVAL:
dda83cd7 12505 return EINVAL;
a6b151f1 12506 case FILEIO_ENFILE:
dda83cd7 12507 return ENFILE;
a6b151f1 12508 case FILEIO_EMFILE:
dda83cd7 12509 return EMFILE;
a6b151f1 12510 case FILEIO_EFBIG:
dda83cd7 12511 return EFBIG;
a6b151f1 12512 case FILEIO_ENOSPC:
dda83cd7 12513 return ENOSPC;
a6b151f1 12514 case FILEIO_ESPIPE:
dda83cd7 12515 return ESPIPE;
a6b151f1 12516 case FILEIO_EROFS:
dda83cd7 12517 return EROFS;
a6b151f1 12518 case FILEIO_ENOSYS:
dda83cd7 12519 return ENOSYS;
a6b151f1 12520 case FILEIO_ENAMETOOLONG:
dda83cd7 12521 return ENAMETOOLONG;
a6b151f1
DJ
12522 }
12523 return -1;
12524}
12525
12526static char *
12527remote_hostio_error (int errnum)
12528{
12529 int host_error = remote_fileio_errno_to_host (errnum);
12530
12531 if (host_error == -1)
12532 error (_("Unknown remote I/O error %d"), errnum);
12533 else
12534 error (_("Remote I/O error: %s"), safe_strerror (host_error));
12535}
12536
440b7aec
PA
12537/* A RAII wrapper around a remote file descriptor. */
12538
12539class scoped_remote_fd
a6b151f1 12540{
440b7aec 12541public:
6b8edb51
PA
12542 scoped_remote_fd (remote_target *remote, int fd)
12543 : m_remote (remote), m_fd (fd)
440b7aec
PA
12544 {
12545 }
a6b151f1 12546
440b7aec
PA
12547 ~scoped_remote_fd ()
12548 {
12549 if (m_fd != -1)
12550 {
12551 try
12552 {
12553 int remote_errno;
6b8edb51 12554 m_remote->remote_hostio_close (m_fd, &remote_errno);
440b7aec
PA
12555 }
12556 catch (...)
12557 {
12558 /* Swallow exception before it escapes the dtor. If
12559 something goes wrong, likely the connection is gone,
12560 and there's nothing else that can be done. */
12561 }
12562 }
12563 }
12564
12565 DISABLE_COPY_AND_ASSIGN (scoped_remote_fd);
12566
12567 /* Release ownership of the file descriptor, and return it. */
88a774b9 12568 ATTRIBUTE_UNUSED_RESULT int release () noexcept
440b7aec
PA
12569 {
12570 int fd = m_fd;
12571 m_fd = -1;
12572 return fd;
12573 }
12574
12575 /* Return the owned file descriptor. */
12576 int get () const noexcept
12577 {
12578 return m_fd;
12579 }
12580
12581private:
6b8edb51
PA
12582 /* The remote target. */
12583 remote_target *m_remote;
12584
440b7aec
PA
12585 /* The owned remote I/O file descriptor. */
12586 int m_fd;
12587};
a6b151f1
DJ
12588
12589void
12590remote_file_put (const char *local_file, const char *remote_file, int from_tty)
6b8edb51
PA
12591{
12592 remote_target *remote = get_current_remote_target ();
12593
12594 if (remote == nullptr)
12595 error (_("command can only be used with remote target"));
12596
12597 remote->remote_file_put (local_file, remote_file, from_tty);
12598}
12599
12600void
12601remote_target::remote_file_put (const char *local_file, const char *remote_file,
12602 int from_tty)
a6b151f1 12603{
440b7aec 12604 int retcode, remote_errno, bytes, io_size;
a6b151f1
DJ
12605 int bytes_in_buffer;
12606 int saw_eof;
12607 ULONGEST offset;
a6b151f1 12608
d419f42d 12609 gdb_file_up file = gdb_fopen_cloexec (local_file, "rb");
a6b151f1
DJ
12610 if (file == NULL)
12611 perror_with_name (local_file);
a6b151f1 12612
440b7aec 12613 scoped_remote_fd fd
6b8edb51
PA
12614 (this, remote_hostio_open (NULL,
12615 remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT
12616 | FILEIO_O_TRUNC),
12617 0700, 0, &remote_errno));
440b7aec 12618 if (fd.get () == -1)
a6b151f1
DJ
12619 remote_hostio_error (remote_errno);
12620
12621 /* Send up to this many bytes at once. They won't all fit in the
12622 remote packet limit, so we'll transfer slightly fewer. */
12623 io_size = get_remote_packet_size ();
5ca3b260 12624 gdb::byte_vector buffer (io_size);
a6b151f1 12625
a6b151f1
DJ
12626 bytes_in_buffer = 0;
12627 saw_eof = 0;
12628 offset = 0;
12629 while (bytes_in_buffer || !saw_eof)
12630 {
12631 if (!saw_eof)
12632 {
5ca3b260 12633 bytes = fread (buffer.data () + bytes_in_buffer, 1,
3e43a32a 12634 io_size - bytes_in_buffer,
d419f42d 12635 file.get ());
a6b151f1
DJ
12636 if (bytes == 0)
12637 {
d419f42d 12638 if (ferror (file.get ()))
a6b151f1
DJ
12639 error (_("Error reading %s."), local_file);
12640 else
12641 {
12642 /* EOF. Unless there is something still in the
12643 buffer from the last iteration, we are done. */
12644 saw_eof = 1;
12645 if (bytes_in_buffer == 0)
12646 break;
12647 }
12648 }
12649 }
12650 else
12651 bytes = 0;
12652
12653 bytes += bytes_in_buffer;
12654 bytes_in_buffer = 0;
12655
5ca3b260 12656 retcode = remote_hostio_pwrite (fd.get (), buffer.data (), bytes,
3e43a32a 12657 offset, &remote_errno);
a6b151f1
DJ
12658
12659 if (retcode < 0)
12660 remote_hostio_error (remote_errno);
12661 else if (retcode == 0)
12662 error (_("Remote write of %d bytes returned 0!"), bytes);
12663 else if (retcode < bytes)
12664 {
12665 /* Short write. Save the rest of the read data for the next
12666 write. */
12667 bytes_in_buffer = bytes - retcode;
5ca3b260 12668 memmove (buffer.data (), buffer.data () + retcode, bytes_in_buffer);
a6b151f1
DJ
12669 }
12670
12671 offset += retcode;
12672 }
12673
6b8edb51 12674 if (remote_hostio_close (fd.release (), &remote_errno))
a6b151f1
DJ
12675 remote_hostio_error (remote_errno);
12676
12677 if (from_tty)
12678 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file);
a6b151f1
DJ
12679}
12680
12681void
12682remote_file_get (const char *remote_file, const char *local_file, int from_tty)
6b8edb51
PA
12683{
12684 remote_target *remote = get_current_remote_target ();
12685
12686 if (remote == nullptr)
12687 error (_("command can only be used with remote target"));
12688
12689 remote->remote_file_get (remote_file, local_file, from_tty);
12690}
12691
12692void
12693remote_target::remote_file_get (const char *remote_file, const char *local_file,
12694 int from_tty)
a6b151f1 12695{
440b7aec 12696 int remote_errno, bytes, io_size;
a6b151f1 12697 ULONGEST offset;
a6b151f1 12698
440b7aec 12699 scoped_remote_fd fd
6b8edb51
PA
12700 (this, remote_hostio_open (NULL,
12701 remote_file, FILEIO_O_RDONLY, 0, 0,
12702 &remote_errno));
440b7aec 12703 if (fd.get () == -1)
a6b151f1
DJ
12704 remote_hostio_error (remote_errno);
12705
d419f42d 12706 gdb_file_up file = gdb_fopen_cloexec (local_file, "wb");
a6b151f1
DJ
12707 if (file == NULL)
12708 perror_with_name (local_file);
a6b151f1
DJ
12709
12710 /* Send up to this many bytes at once. They won't all fit in the
12711 remote packet limit, so we'll transfer slightly fewer. */
12712 io_size = get_remote_packet_size ();
5ca3b260 12713 gdb::byte_vector buffer (io_size);
a6b151f1 12714
a6b151f1
DJ
12715 offset = 0;
12716 while (1)
12717 {
5ca3b260 12718 bytes = remote_hostio_pread (fd.get (), buffer.data (), io_size, offset,
440b7aec 12719 &remote_errno);
a6b151f1
DJ
12720 if (bytes == 0)
12721 /* Success, but no bytes, means end-of-file. */
12722 break;
12723 if (bytes == -1)
12724 remote_hostio_error (remote_errno);
12725
12726 offset += bytes;
12727
5ca3b260 12728 bytes = fwrite (buffer.data (), 1, bytes, file.get ());
a6b151f1
DJ
12729 if (bytes == 0)
12730 perror_with_name (local_file);
12731 }
12732
6b8edb51 12733 if (remote_hostio_close (fd.release (), &remote_errno))
a6b151f1
DJ
12734 remote_hostio_error (remote_errno);
12735
12736 if (from_tty)
12737 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file);
a6b151f1
DJ
12738}
12739
12740void
12741remote_file_delete (const char *remote_file, int from_tty)
12742{
6b8edb51 12743 remote_target *remote = get_current_remote_target ();
a6b151f1 12744
6b8edb51 12745 if (remote == nullptr)
a6b151f1
DJ
12746 error (_("command can only be used with remote target"));
12747
6b8edb51
PA
12748 remote->remote_file_delete (remote_file, from_tty);
12749}
12750
12751void
12752remote_target::remote_file_delete (const char *remote_file, int from_tty)
12753{
12754 int retcode, remote_errno;
12755
12756 retcode = remote_hostio_unlink (NULL, remote_file, &remote_errno);
a6b151f1
DJ
12757 if (retcode == -1)
12758 remote_hostio_error (remote_errno);
12759
12760 if (from_tty)
12761 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file);
12762}
12763
12764static void
ac88e2de 12765remote_put_command (const char *args, int from_tty)
a6b151f1 12766{
d1a41061
PP
12767 if (args == NULL)
12768 error_no_arg (_("file to put"));
12769
773a1edc 12770 gdb_argv argv (args);
a6b151f1
DJ
12771 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12772 error (_("Invalid parameters to remote put"));
12773
12774 remote_file_put (argv[0], argv[1], from_tty);
a6b151f1
DJ
12775}
12776
12777static void
ac88e2de 12778remote_get_command (const char *args, int from_tty)
a6b151f1 12779{
d1a41061
PP
12780 if (args == NULL)
12781 error_no_arg (_("file to get"));
12782
773a1edc 12783 gdb_argv argv (args);
a6b151f1
DJ
12784 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12785 error (_("Invalid parameters to remote get"));
12786
12787 remote_file_get (argv[0], argv[1], from_tty);
a6b151f1
DJ
12788}
12789
12790static void
ac88e2de 12791remote_delete_command (const char *args, int from_tty)
a6b151f1 12792{
d1a41061
PP
12793 if (args == NULL)
12794 error_no_arg (_("file to delete"));
12795
773a1edc 12796 gdb_argv argv (args);
a6b151f1
DJ
12797 if (argv[0] == NULL || argv[1] != NULL)
12798 error (_("Invalid parameters to remote delete"));
12799
12800 remote_file_delete (argv[0], from_tty);
a6b151f1
DJ
12801}
12802
57810aa7 12803bool
f6ac5f3d 12804remote_target::can_execute_reverse ()
b2175913 12805{
4082afcc
PA
12806 if (packet_support (PACKET_bs) == PACKET_ENABLE
12807 || packet_support (PACKET_bc) == PACKET_ENABLE)
57810aa7 12808 return true;
40ab02ce 12809 else
57810aa7 12810 return false;
b2175913
MS
12811}
12812
57810aa7 12813bool
f6ac5f3d 12814remote_target::supports_non_stop ()
74531fed 12815{
57810aa7 12816 return true;
74531fed
PA
12817}
12818
57810aa7 12819bool
f6ac5f3d 12820remote_target::supports_disable_randomization ()
03583c20
UW
12821{
12822 /* Only supported in extended mode. */
57810aa7 12823 return false;
03583c20
UW
12824}
12825
57810aa7 12826bool
f6ac5f3d 12827remote_target::supports_multi_process ()
8a305172
PA
12828{
12829 struct remote_state *rs = get_remote_state ();
a744cf53 12830
8020350c 12831 return remote_multi_process_p (rs);
8a305172
PA
12832}
12833
70221824 12834static int
f6ac5f3d 12835remote_supports_cond_tracepoints ()
782b2b07 12836{
4082afcc 12837 return packet_support (PACKET_ConditionalTracepoints) == PACKET_ENABLE;
782b2b07
SS
12838}
12839
57810aa7 12840bool
f6ac5f3d 12841remote_target::supports_evaluation_of_breakpoint_conditions ()
3788aec7 12842{
4082afcc 12843 return packet_support (PACKET_ConditionalBreakpoints) == PACKET_ENABLE;
3788aec7
LM
12844}
12845
70221824 12846static int
f6ac5f3d 12847remote_supports_fast_tracepoints ()
7a697b8d 12848{
4082afcc 12849 return packet_support (PACKET_FastTracepoints) == PACKET_ENABLE;
7a697b8d
SS
12850}
12851
0fb4aa4b 12852static int
f6ac5f3d 12853remote_supports_static_tracepoints ()
0fb4aa4b 12854{
4082afcc 12855 return packet_support (PACKET_StaticTracepoints) == PACKET_ENABLE;
0fb4aa4b
PA
12856}
12857
1e4d1764 12858static int
f6ac5f3d 12859remote_supports_install_in_trace ()
1e4d1764 12860{
4082afcc 12861 return packet_support (PACKET_InstallInTrace) == PACKET_ENABLE;
1e4d1764
YQ
12862}
12863
57810aa7 12864bool
f6ac5f3d 12865remote_target::supports_enable_disable_tracepoint ()
d248b706 12866{
4082afcc
PA
12867 return (packet_support (PACKET_EnableDisableTracepoints_feature)
12868 == PACKET_ENABLE);
d248b706
KY
12869}
12870
57810aa7 12871bool
f6ac5f3d 12872remote_target::supports_string_tracing ()
3065dfb6 12873{
4082afcc 12874 return packet_support (PACKET_tracenz_feature) == PACKET_ENABLE;
3065dfb6
SS
12875}
12876
57810aa7 12877bool
f6ac5f3d 12878remote_target::can_run_breakpoint_commands ()
d3ce09f5 12879{
4082afcc 12880 return packet_support (PACKET_BreakpointCommands) == PACKET_ENABLE;
d3ce09f5
SS
12881}
12882
f6ac5f3d
PA
12883void
12884remote_target::trace_init ()
35b1e5cc 12885{
b6bb3468
PA
12886 struct remote_state *rs = get_remote_state ();
12887
35b1e5cc 12888 putpkt ("QTinit");
b6bb3468 12889 remote_get_noisy_reply ();
8d64371b 12890 if (strcmp (rs->buf.data (), "OK") != 0)
35b1e5cc
SS
12891 error (_("Target does not support this command."));
12892}
12893
409873ef
SS
12894/* Recursive routine to walk through command list including loops, and
12895 download packets for each command. */
12896
6b8edb51
PA
12897void
12898remote_target::remote_download_command_source (int num, ULONGEST addr,
12899 struct command_line *cmds)
409873ef
SS
12900{
12901 struct remote_state *rs = get_remote_state ();
12902 struct command_line *cmd;
12903
12904 for (cmd = cmds; cmd; cmd = cmd->next)
12905 {
0df8b418 12906 QUIT; /* Allow user to bail out with ^C. */
8d64371b 12907 strcpy (rs->buf.data (), "QTDPsrc:");
409873ef 12908 encode_source_string (num, addr, "cmd", cmd->line,
8d64371b
TT
12909 rs->buf.data () + strlen (rs->buf.data ()),
12910 rs->buf.size () - strlen (rs->buf.data ()));
409873ef 12911 putpkt (rs->buf);
b6bb3468 12912 remote_get_noisy_reply ();
8d64371b 12913 if (strcmp (rs->buf.data (), "OK"))
409873ef
SS
12914 warning (_("Target does not support source download."));
12915
12916 if (cmd->control_type == while_control
12917 || cmd->control_type == while_stepping_control)
12918 {
12973681 12919 remote_download_command_source (num, addr, cmd->body_list_0.get ());
409873ef 12920
0df8b418 12921 QUIT; /* Allow user to bail out with ^C. */
8d64371b 12922 strcpy (rs->buf.data (), "QTDPsrc:");
409873ef 12923 encode_source_string (num, addr, "cmd", "end",
8d64371b
TT
12924 rs->buf.data () + strlen (rs->buf.data ()),
12925 rs->buf.size () - strlen (rs->buf.data ()));
409873ef 12926 putpkt (rs->buf);
b6bb3468 12927 remote_get_noisy_reply ();
8d64371b 12928 if (strcmp (rs->buf.data (), "OK"))
409873ef
SS
12929 warning (_("Target does not support source download."));
12930 }
12931 }
12932}
12933
f6ac5f3d
PA
12934void
12935remote_target::download_tracepoint (struct bp_location *loc)
35b1e5cc
SS
12936{
12937 CORE_ADDR tpaddr;
409873ef 12938 char addrbuf[40];
b44ec619
SM
12939 std::vector<std::string> tdp_actions;
12940 std::vector<std::string> stepping_actions;
35b1e5cc 12941 char *pkt;
e8ba3115 12942 struct breakpoint *b = loc->owner;
d9b3f62e 12943 struct tracepoint *t = (struct tracepoint *) b;
b6bb3468 12944 struct remote_state *rs = get_remote_state ();
3df3a985 12945 int ret;
ff36536c 12946 const char *err_msg = _("Tracepoint packet too large for target.");
3df3a985
PFC
12947 size_t size_left;
12948
12949 /* We use a buffer other than rs->buf because we'll build strings
12950 across multiple statements, and other statements in between could
12951 modify rs->buf. */
12952 gdb::char_vector buf (get_remote_packet_size ());
35b1e5cc 12953
dc673c81 12954 encode_actions_rsp (loc, &tdp_actions, &stepping_actions);
e8ba3115
YQ
12955
12956 tpaddr = loc->address;
53807e9f 12957 strcpy (addrbuf, phex (tpaddr, sizeof (CORE_ADDR)));
3df3a985
PFC
12958 ret = snprintf (buf.data (), buf.size (), "QTDP:%x:%s:%c:%lx:%x",
12959 b->number, addrbuf, /* address */
12960 (b->enable_state == bp_enabled ? 'E' : 'D'),
12961 t->step_count, t->pass_count);
12962
12963 if (ret < 0 || ret >= buf.size ())
a7f25a84 12964 error ("%s", err_msg);
3df3a985 12965
e8ba3115
YQ
12966 /* Fast tracepoints are mostly handled by the target, but we can
12967 tell the target how big of an instruction block should be moved
12968 around. */
12969 if (b->type == bp_fast_tracepoint)
12970 {
12971 /* Only test for support at download time; we may not know
12972 target capabilities at definition time. */
12973 if (remote_supports_fast_tracepoints ())
35b1e5cc 12974 {
6b940e6a
PL
12975 if (gdbarch_fast_tracepoint_valid_at (loc->gdbarch, tpaddr,
12976 NULL))
3df3a985
PFC
12977 {
12978 size_left = buf.size () - strlen (buf.data ());
12979 ret = snprintf (buf.data () + strlen (buf.data ()),
12980 size_left, ":F%x",
12981 gdb_insn_length (loc->gdbarch, tpaddr));
12982
12983 if (ret < 0 || ret >= size_left)
a7f25a84 12984 error ("%s", err_msg);
3df3a985 12985 }
35b1e5cc 12986 else
e8ba3115
YQ
12987 /* If it passed validation at definition but fails now,
12988 something is very wrong. */
12989 internal_error (__FILE__, __LINE__,
12990 _("Fast tracepoint not "
12991 "valid during download"));
35b1e5cc 12992 }
e8ba3115
YQ
12993 else
12994 /* Fast tracepoints are functionally identical to regular
12995 tracepoints, so don't take lack of support as a reason to
12996 give up on the trace run. */
12997 warning (_("Target does not support fast tracepoints, "
12998 "downloading %d as regular tracepoint"), b->number);
12999 }
13000 else if (b->type == bp_static_tracepoint)
13001 {
13002 /* Only test for support at download time; we may not know
13003 target capabilities at definition time. */
13004 if (remote_supports_static_tracepoints ())
0fb4aa4b 13005 {
e8ba3115 13006 struct static_tracepoint_marker marker;
0fb4aa4b 13007
e8ba3115 13008 if (target_static_tracepoint_marker_at (tpaddr, &marker))
3df3a985
PFC
13009 {
13010 size_left = buf.size () - strlen (buf.data ());
13011 ret = snprintf (buf.data () + strlen (buf.data ()),
13012 size_left, ":S");
13013
13014 if (ret < 0 || ret >= size_left)
a7f25a84 13015 error ("%s", err_msg);
3df3a985 13016 }
0fb4aa4b 13017 else
e8ba3115 13018 error (_("Static tracepoint not valid during download"));
0fb4aa4b 13019 }
e8ba3115
YQ
13020 else
13021 /* Fast tracepoints are functionally identical to regular
13022 tracepoints, so don't take lack of support as a reason
13023 to give up on the trace run. */
13024 error (_("Target does not support static tracepoints"));
13025 }
13026 /* If the tracepoint has a conditional, make it into an agent
13027 expression and append to the definition. */
13028 if (loc->cond)
13029 {
13030 /* Only test support at download time, we may not know target
13031 capabilities at definition time. */
13032 if (remote_supports_cond_tracepoints ())
35b1e5cc 13033 {
3df3a985
PFC
13034 agent_expr_up aexpr = gen_eval_for_expr (tpaddr,
13035 loc->cond.get ());
13036
13037 size_left = buf.size () - strlen (buf.data ());
13038
13039 ret = snprintf (buf.data () + strlen (buf.data ()),
13040 size_left, ":X%x,", aexpr->len);
13041
13042 if (ret < 0 || ret >= size_left)
a7f25a84 13043 error ("%s", err_msg);
3df3a985
PFC
13044
13045 size_left = buf.size () - strlen (buf.data ());
13046
13047 /* Two bytes to encode each aexpr byte, plus the terminating
13048 null byte. */
13049 if (aexpr->len * 2 + 1 > size_left)
a7f25a84 13050 error ("%s", err_msg);
3df3a985
PFC
13051
13052 pkt = buf.data () + strlen (buf.data ());
13053
b44ec619 13054 for (int ndx = 0; ndx < aexpr->len; ++ndx)
e8ba3115
YQ
13055 pkt = pack_hex_byte (pkt, aexpr->buf[ndx]);
13056 *pkt = '\0';
35b1e5cc 13057 }
e8ba3115
YQ
13058 else
13059 warning (_("Target does not support conditional tracepoints, "
13060 "ignoring tp %d cond"), b->number);
13061 }
35b1e5cc 13062
d9b3f62e 13063 if (b->commands || *default_collect)
3df3a985
PFC
13064 {
13065 size_left = buf.size () - strlen (buf.data ());
13066
13067 ret = snprintf (buf.data () + strlen (buf.data ()),
13068 size_left, "-");
13069
13070 if (ret < 0 || ret >= size_left)
a7f25a84 13071 error ("%s", err_msg);
3df3a985
PFC
13072 }
13073
13074 putpkt (buf.data ());
b6bb3468 13075 remote_get_noisy_reply ();
8d64371b 13076 if (strcmp (rs->buf.data (), "OK"))
e8ba3115 13077 error (_("Target does not support tracepoints."));
35b1e5cc 13078
e8ba3115 13079 /* do_single_steps (t); */
b44ec619
SM
13080 for (auto action_it = tdp_actions.begin ();
13081 action_it != tdp_actions.end (); action_it++)
e8ba3115 13082 {
b44ec619
SM
13083 QUIT; /* Allow user to bail out with ^C. */
13084
aa6f3694 13085 bool has_more = ((action_it + 1) != tdp_actions.end ()
b44ec619
SM
13086 || !stepping_actions.empty ());
13087
3df3a985
PFC
13088 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%c",
13089 b->number, addrbuf, /* address */
13090 action_it->c_str (),
13091 has_more ? '-' : 0);
13092
13093 if (ret < 0 || ret >= buf.size ())
a7f25a84 13094 error ("%s", err_msg);
3df3a985
PFC
13095
13096 putpkt (buf.data ());
b44ec619 13097 remote_get_noisy_reply ();
8d64371b 13098 if (strcmp (rs->buf.data (), "OK"))
b44ec619 13099 error (_("Error on target while setting tracepoints."));
e8ba3115 13100 }
409873ef 13101
05abfc39
PFC
13102 for (auto action_it = stepping_actions.begin ();
13103 action_it != stepping_actions.end (); action_it++)
13104 {
13105 QUIT; /* Allow user to bail out with ^C. */
13106
13107 bool is_first = action_it == stepping_actions.begin ();
aa6f3694 13108 bool has_more = (action_it + 1) != stepping_actions.end ();
05abfc39 13109
3df3a985
PFC
13110 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%s%s",
13111 b->number, addrbuf, /* address */
13112 is_first ? "S" : "",
13113 action_it->c_str (),
13114 has_more ? "-" : "");
13115
13116 if (ret < 0 || ret >= buf.size ())
a7f25a84 13117 error ("%s", err_msg);
3df3a985
PFC
13118
13119 putpkt (buf.data ());
05abfc39 13120 remote_get_noisy_reply ();
8d64371b 13121 if (strcmp (rs->buf.data (), "OK"))
05abfc39
PFC
13122 error (_("Error on target while setting tracepoints."));
13123 }
b44ec619 13124
4082afcc 13125 if (packet_support (PACKET_TracepointSource) == PACKET_ENABLE)
e8ba3115 13126 {
f00aae0f 13127 if (b->location != NULL)
409873ef 13128 {
3df3a985
PFC
13129 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
13130
13131 if (ret < 0 || ret >= buf.size ())
a7f25a84 13132 error ("%s", err_msg);
3df3a985 13133
f00aae0f 13134 encode_source_string (b->number, loc->address, "at",
d28cd78a 13135 event_location_to_string (b->location.get ()),
3df3a985
PFC
13136 buf.data () + strlen (buf.data ()),
13137 buf.size () - strlen (buf.data ()));
13138 putpkt (buf.data ());
b6bb3468 13139 remote_get_noisy_reply ();
8d64371b 13140 if (strcmp (rs->buf.data (), "OK"))
e8ba3115 13141 warning (_("Target does not support source download."));
409873ef 13142 }
e8ba3115
YQ
13143 if (b->cond_string)
13144 {
3df3a985
PFC
13145 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
13146
13147 if (ret < 0 || ret >= buf.size ())
a7f25a84 13148 error ("%s", err_msg);
3df3a985 13149
e8ba3115 13150 encode_source_string (b->number, loc->address,
3df3a985
PFC
13151 "cond", b->cond_string,
13152 buf.data () + strlen (buf.data ()),
13153 buf.size () - strlen (buf.data ()));
13154 putpkt (buf.data ());
b6bb3468 13155 remote_get_noisy_reply ();
8d64371b 13156 if (strcmp (rs->buf.data (), "OK"))
e8ba3115
YQ
13157 warning (_("Target does not support source download."));
13158 }
13159 remote_download_command_source (b->number, loc->address,
13160 breakpoint_commands (b));
35b1e5cc 13161 }
35b1e5cc
SS
13162}
13163
57810aa7 13164bool
f6ac5f3d 13165remote_target::can_download_tracepoint ()
1e4d1764 13166{
1e51243a
PA
13167 struct remote_state *rs = get_remote_state ();
13168 struct trace_status *ts;
13169 int status;
13170
13171 /* Don't try to install tracepoints until we've relocated our
13172 symbols, and fetched and merged the target's tracepoint list with
13173 ours. */
13174 if (rs->starting_up)
57810aa7 13175 return false;
1e51243a
PA
13176
13177 ts = current_trace_status ();
f6ac5f3d 13178 status = get_trace_status (ts);
1e4d1764
YQ
13179
13180 if (status == -1 || !ts->running_known || !ts->running)
57810aa7 13181 return false;
1e4d1764
YQ
13182
13183 /* If we are in a tracing experiment, but remote stub doesn't support
13184 installing tracepoint in trace, we have to return. */
13185 if (!remote_supports_install_in_trace ())
57810aa7 13186 return false;
1e4d1764 13187
57810aa7 13188 return true;
1e4d1764
YQ
13189}
13190
13191
f6ac5f3d
PA
13192void
13193remote_target::download_trace_state_variable (const trace_state_variable &tsv)
35b1e5cc
SS
13194{
13195 struct remote_state *rs = get_remote_state ();
00bf0b85 13196 char *p;
35b1e5cc 13197
8d64371b 13198 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDV:%x:%s:%x:",
c252925c
SM
13199 tsv.number, phex ((ULONGEST) tsv.initial_value, 8),
13200 tsv.builtin);
8d64371b
TT
13201 p = rs->buf.data () + strlen (rs->buf.data ());
13202 if ((p - rs->buf.data ()) + tsv.name.length () * 2
13203 >= get_remote_packet_size ())
00bf0b85 13204 error (_("Trace state variable name too long for tsv definition packet"));
c252925c 13205 p += 2 * bin2hex ((gdb_byte *) (tsv.name.data ()), p, tsv.name.length ());
00bf0b85 13206 *p++ = '\0';
35b1e5cc 13207 putpkt (rs->buf);
b6bb3468 13208 remote_get_noisy_reply ();
8d64371b 13209 if (rs->buf[0] == '\0')
ad91cd99 13210 error (_("Target does not support this command."));
8d64371b 13211 if (strcmp (rs->buf.data (), "OK") != 0)
ad91cd99 13212 error (_("Error on target while downloading trace state variable."));
35b1e5cc
SS
13213}
13214
f6ac5f3d
PA
13215void
13216remote_target::enable_tracepoint (struct bp_location *location)
d248b706
KY
13217{
13218 struct remote_state *rs = get_remote_state ();
d248b706 13219
8d64371b 13220 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTEnable:%x:%s",
53807e9f
TT
13221 location->owner->number,
13222 phex (location->address, sizeof (CORE_ADDR)));
d248b706 13223 putpkt (rs->buf);
b6bb3468 13224 remote_get_noisy_reply ();
8d64371b 13225 if (rs->buf[0] == '\0')
d248b706 13226 error (_("Target does not support enabling tracepoints while a trace run is ongoing."));
8d64371b 13227 if (strcmp (rs->buf.data (), "OK") != 0)
d248b706
KY
13228 error (_("Error on target while enabling tracepoint."));
13229}
13230
f6ac5f3d
PA
13231void
13232remote_target::disable_tracepoint (struct bp_location *location)
d248b706
KY
13233{
13234 struct remote_state *rs = get_remote_state ();
d248b706 13235
8d64371b 13236 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDisable:%x:%s",
53807e9f
TT
13237 location->owner->number,
13238 phex (location->address, sizeof (CORE_ADDR)));
d248b706 13239 putpkt (rs->buf);
b6bb3468 13240 remote_get_noisy_reply ();
8d64371b 13241 if (rs->buf[0] == '\0')
d248b706 13242 error (_("Target does not support disabling tracepoints while a trace run is ongoing."));
8d64371b 13243 if (strcmp (rs->buf.data (), "OK") != 0)
d248b706
KY
13244 error (_("Error on target while disabling tracepoint."));
13245}
13246
f6ac5f3d
PA
13247void
13248remote_target::trace_set_readonly_regions ()
35b1e5cc
SS
13249{
13250 asection *s;
13251 bfd_size_type size;
608bcef2 13252 bfd_vma vma;
35b1e5cc 13253 int anysecs = 0;
c2fa21f1 13254 int offset = 0;
35b1e5cc 13255
7e10abd1 13256 if (!current_program_space->exec_bfd ())
35b1e5cc
SS
13257 return; /* No information to give. */
13258
b6bb3468
PA
13259 struct remote_state *rs = get_remote_state ();
13260
8d64371b
TT
13261 strcpy (rs->buf.data (), "QTro");
13262 offset = strlen (rs->buf.data ());
7e10abd1 13263 for (s = current_program_space->exec_bfd ()->sections; s; s = s->next)
35b1e5cc
SS
13264 {
13265 char tmp1[40], tmp2[40];
c2fa21f1 13266 int sec_length;
35b1e5cc
SS
13267
13268 if ((s->flags & SEC_LOAD) == 0 ||
0df8b418 13269 /* (s->flags & SEC_CODE) == 0 || */
35b1e5cc
SS
13270 (s->flags & SEC_READONLY) == 0)
13271 continue;
13272
13273 anysecs = 1;
fd361982
AM
13274 vma = bfd_section_vma (s);
13275 size = bfd_section_size (s);
608bcef2
HZ
13276 sprintf_vma (tmp1, vma);
13277 sprintf_vma (tmp2, vma + size);
c2fa21f1 13278 sec_length = 1 + strlen (tmp1) + 1 + strlen (tmp2);
8d64371b 13279 if (offset + sec_length + 1 > rs->buf.size ())
c2fa21f1 13280 {
4082afcc 13281 if (packet_support (PACKET_qXfer_traceframe_info) != PACKET_ENABLE)
864ac8a7 13282 warning (_("\
c2fa21f1
HZ
13283Too many sections for read-only sections definition packet."));
13284 break;
13285 }
8d64371b 13286 xsnprintf (rs->buf.data () + offset, rs->buf.size () - offset, ":%s,%s",
bba74b36 13287 tmp1, tmp2);
c2fa21f1 13288 offset += sec_length;
35b1e5cc
SS
13289 }
13290 if (anysecs)
13291 {
b6bb3468 13292 putpkt (rs->buf);
8d64371b 13293 getpkt (&rs->buf, 0);
35b1e5cc
SS
13294 }
13295}
13296
f6ac5f3d
PA
13297void
13298remote_target::trace_start ()
35b1e5cc 13299{
b6bb3468
PA
13300 struct remote_state *rs = get_remote_state ();
13301
35b1e5cc 13302 putpkt ("QTStart");
b6bb3468 13303 remote_get_noisy_reply ();
8d64371b 13304 if (rs->buf[0] == '\0')
ad91cd99 13305 error (_("Target does not support this command."));
8d64371b
TT
13306 if (strcmp (rs->buf.data (), "OK") != 0)
13307 error (_("Bogus reply from target: %s"), rs->buf.data ());
35b1e5cc
SS
13308}
13309
f6ac5f3d
PA
13310int
13311remote_target::get_trace_status (struct trace_status *ts)
35b1e5cc 13312{
953b98d1 13313 /* Initialize it just to avoid a GCC false warning. */
f652de6f 13314 char *p = NULL;
bd3eecc3 13315 enum packet_result result;
b6bb3468 13316 struct remote_state *rs = get_remote_state ();
bd3eecc3 13317
4082afcc 13318 if (packet_support (PACKET_qTStatus) == PACKET_DISABLE)
bd3eecc3 13319 return -1;
a744cf53 13320
7b9a15e1 13321 /* FIXME we need to get register block size some other way. */
5cd63fda 13322 trace_regblock_size
9d6eea31 13323 = rs->get_remote_arch_state (target_gdbarch ())->sizeof_g_packet;
00bf0b85 13324
049dc89b
JK
13325 putpkt ("qTStatus");
13326
a70b8144 13327 try
67f41397 13328 {
b6bb3468 13329 p = remote_get_noisy_reply ();
67f41397 13330 }
230d2906 13331 catch (const gdb_exception_error &ex)
67f41397 13332 {
598d3636
JK
13333 if (ex.error != TARGET_CLOSE_ERROR)
13334 {
13335 exception_fprintf (gdb_stderr, ex, "qTStatus: ");
13336 return -1;
13337 }
eedc3f4f 13338 throw;
67f41397 13339 }
00bf0b85 13340
bd3eecc3
PA
13341 result = packet_ok (p, &remote_protocol_packets[PACKET_qTStatus]);
13342
00bf0b85 13343 /* If the remote target doesn't do tracing, flag it. */
bd3eecc3 13344 if (result == PACKET_UNKNOWN)
00bf0b85 13345 return -1;
35b1e5cc 13346
00bf0b85 13347 /* We're working with a live target. */
f5911ea1 13348 ts->filename = NULL;
00bf0b85 13349
00bf0b85 13350 if (*p++ != 'T')
8d64371b 13351 error (_("Bogus trace status reply from target: %s"), rs->buf.data ());
35b1e5cc 13352
84cebc4a
YQ
13353 /* Function 'parse_trace_status' sets default value of each field of
13354 'ts' at first, so we don't have to do it here. */
00bf0b85
SS
13355 parse_trace_status (p, ts);
13356
13357 return ts->running;
35b1e5cc
SS
13358}
13359
f6ac5f3d
PA
13360void
13361remote_target::get_tracepoint_status (struct breakpoint *bp,
13362 struct uploaded_tp *utp)
f196051f
SS
13363{
13364 struct remote_state *rs = get_remote_state ();
f196051f
SS
13365 char *reply;
13366 struct bp_location *loc;
13367 struct tracepoint *tp = (struct tracepoint *) bp;
bba74b36 13368 size_t size = get_remote_packet_size ();
f196051f
SS
13369
13370 if (tp)
13371 {
c1fc2657 13372 tp->hit_count = 0;
f196051f 13373 tp->traceframe_usage = 0;
c1fc2657 13374 for (loc = tp->loc; loc; loc = loc->next)
f196051f
SS
13375 {
13376 /* If the tracepoint was never downloaded, don't go asking for
13377 any status. */
13378 if (tp->number_on_target == 0)
13379 continue;
8d64371b 13380 xsnprintf (rs->buf.data (), size, "qTP:%x:%s", tp->number_on_target,
bba74b36 13381 phex_nz (loc->address, 0));
f196051f 13382 putpkt (rs->buf);
b6bb3468 13383 reply = remote_get_noisy_reply ();
f196051f
SS
13384 if (reply && *reply)
13385 {
13386 if (*reply == 'V')
13387 parse_tracepoint_status (reply + 1, bp, utp);
13388 }
13389 }
13390 }
13391 else if (utp)
13392 {
13393 utp->hit_count = 0;
13394 utp->traceframe_usage = 0;
8d64371b 13395 xsnprintf (rs->buf.data (), size, "qTP:%x:%s", utp->number,
bba74b36 13396 phex_nz (utp->addr, 0));
f196051f 13397 putpkt (rs->buf);
b6bb3468 13398 reply = remote_get_noisy_reply ();
f196051f
SS
13399 if (reply && *reply)
13400 {
13401 if (*reply == 'V')
13402 parse_tracepoint_status (reply + 1, bp, utp);
13403 }
13404 }
13405}
13406
f6ac5f3d
PA
13407void
13408remote_target::trace_stop ()
35b1e5cc 13409{
b6bb3468
PA
13410 struct remote_state *rs = get_remote_state ();
13411
35b1e5cc 13412 putpkt ("QTStop");
b6bb3468 13413 remote_get_noisy_reply ();
8d64371b 13414 if (rs->buf[0] == '\0')
ad91cd99 13415 error (_("Target does not support this command."));
8d64371b
TT
13416 if (strcmp (rs->buf.data (), "OK") != 0)
13417 error (_("Bogus reply from target: %s"), rs->buf.data ());
35b1e5cc
SS
13418}
13419
f6ac5f3d
PA
13420int
13421remote_target::trace_find (enum trace_find_type type, int num,
13422 CORE_ADDR addr1, CORE_ADDR addr2,
13423 int *tpp)
35b1e5cc
SS
13424{
13425 struct remote_state *rs = get_remote_state ();
8d64371b 13426 char *endbuf = rs->buf.data () + get_remote_packet_size ();
35b1e5cc
SS
13427 char *p, *reply;
13428 int target_frameno = -1, target_tracept = -1;
13429
e6e4e701
PA
13430 /* Lookups other than by absolute frame number depend on the current
13431 trace selected, so make sure it is correct on the remote end
13432 first. */
13433 if (type != tfind_number)
13434 set_remote_traceframe ();
13435
8d64371b 13436 p = rs->buf.data ();
35b1e5cc
SS
13437 strcpy (p, "QTFrame:");
13438 p = strchr (p, '\0');
13439 switch (type)
13440 {
13441 case tfind_number:
bba74b36 13442 xsnprintf (p, endbuf - p, "%x", num);
35b1e5cc
SS
13443 break;
13444 case tfind_pc:
bba74b36 13445 xsnprintf (p, endbuf - p, "pc:%s", phex_nz (addr1, 0));
35b1e5cc
SS
13446 break;
13447 case tfind_tp:
bba74b36 13448 xsnprintf (p, endbuf - p, "tdp:%x", num);
35b1e5cc
SS
13449 break;
13450 case tfind_range:
bba74b36
YQ
13451 xsnprintf (p, endbuf - p, "range:%s:%s", phex_nz (addr1, 0),
13452 phex_nz (addr2, 0));
35b1e5cc
SS
13453 break;
13454 case tfind_outside:
bba74b36
YQ
13455 xsnprintf (p, endbuf - p, "outside:%s:%s", phex_nz (addr1, 0),
13456 phex_nz (addr2, 0));
35b1e5cc
SS
13457 break;
13458 default:
9b20d036 13459 error (_("Unknown trace find type %d"), type);
35b1e5cc
SS
13460 }
13461
13462 putpkt (rs->buf);
b6bb3468 13463 reply = remote_get_noisy_reply ();
ad91cd99
PA
13464 if (*reply == '\0')
13465 error (_("Target does not support this command."));
35b1e5cc
SS
13466
13467 while (reply && *reply)
13468 switch (*reply)
13469 {
13470 case 'F':
f197e0f1
VP
13471 p = ++reply;
13472 target_frameno = (int) strtol (p, &reply, 16);
13473 if (reply == p)
13474 error (_("Unable to parse trace frame number"));
e6e4e701
PA
13475 /* Don't update our remote traceframe number cache on failure
13476 to select a remote traceframe. */
f197e0f1
VP
13477 if (target_frameno == -1)
13478 return -1;
35b1e5cc
SS
13479 break;
13480 case 'T':
f197e0f1
VP
13481 p = ++reply;
13482 target_tracept = (int) strtol (p, &reply, 16);
13483 if (reply == p)
13484 error (_("Unable to parse tracepoint number"));
35b1e5cc
SS
13485 break;
13486 case 'O': /* "OK"? */
13487 if (reply[1] == 'K' && reply[2] == '\0')
13488 reply += 2;
13489 else
13490 error (_("Bogus reply from target: %s"), reply);
13491 break;
13492 default:
13493 error (_("Bogus reply from target: %s"), reply);
13494 }
13495 if (tpp)
13496 *tpp = target_tracept;
e6e4e701 13497
262e1174 13498 rs->remote_traceframe_number = target_frameno;
35b1e5cc
SS
13499 return target_frameno;
13500}
13501
57810aa7 13502bool
f6ac5f3d 13503remote_target::get_trace_state_variable_value (int tsvnum, LONGEST *val)
35b1e5cc
SS
13504{
13505 struct remote_state *rs = get_remote_state ();
13506 char *reply;
13507 ULONGEST uval;
13508
e6e4e701
PA
13509 set_remote_traceframe ();
13510
8d64371b 13511 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTV:%x", tsvnum);
35b1e5cc 13512 putpkt (rs->buf);
b6bb3468 13513 reply = remote_get_noisy_reply ();
35b1e5cc
SS
13514 if (reply && *reply)
13515 {
13516 if (*reply == 'V')
13517 {
13518 unpack_varlen_hex (reply + 1, &uval);
13519 *val = (LONGEST) uval;
57810aa7 13520 return true;
35b1e5cc
SS
13521 }
13522 }
57810aa7 13523 return false;
35b1e5cc
SS
13524}
13525
f6ac5f3d
PA
13526int
13527remote_target::save_trace_data (const char *filename)
00bf0b85
SS
13528{
13529 struct remote_state *rs = get_remote_state ();
13530 char *p, *reply;
13531
8d64371b 13532 p = rs->buf.data ();
00bf0b85
SS
13533 strcpy (p, "QTSave:");
13534 p += strlen (p);
8d64371b
TT
13535 if ((p - rs->buf.data ()) + strlen (filename) * 2
13536 >= get_remote_packet_size ())
00bf0b85 13537 error (_("Remote file name too long for trace save packet"));
9f1b45b0 13538 p += 2 * bin2hex ((gdb_byte *) filename, p, strlen (filename));
00bf0b85
SS
13539 *p++ = '\0';
13540 putpkt (rs->buf);
b6bb3468 13541 reply = remote_get_noisy_reply ();
d6c5869f 13542 if (*reply == '\0')
ad91cd99
PA
13543 error (_("Target does not support this command."));
13544 if (strcmp (reply, "OK") != 0)
13545 error (_("Bogus reply from target: %s"), reply);
00bf0b85
SS
13546 return 0;
13547}
13548
13549/* This is basically a memory transfer, but needs to be its own packet
13550 because we don't know how the target actually organizes its trace
13551 memory, plus we want to be able to ask for as much as possible, but
13552 not be unhappy if we don't get as much as we ask for. */
13553
f6ac5f3d
PA
13554LONGEST
13555remote_target::get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len)
00bf0b85
SS
13556{
13557 struct remote_state *rs = get_remote_state ();
13558 char *reply;
13559 char *p;
13560 int rslt;
13561
8d64371b 13562 p = rs->buf.data ();
00bf0b85
SS
13563 strcpy (p, "qTBuffer:");
13564 p += strlen (p);
13565 p += hexnumstr (p, offset);
13566 *p++ = ',';
13567 p += hexnumstr (p, len);
13568 *p++ = '\0';
13569
13570 putpkt (rs->buf);
b6bb3468 13571 reply = remote_get_noisy_reply ();
00bf0b85
SS
13572 if (reply && *reply)
13573 {
13574 /* 'l' by itself means we're at the end of the buffer and
13575 there is nothing more to get. */
13576 if (*reply == 'l')
13577 return 0;
13578
13579 /* Convert the reply into binary. Limit the number of bytes to
13580 convert according to our passed-in buffer size, rather than
13581 what was returned in the packet; if the target is
13582 unexpectedly generous and gives us a bigger reply than we
13583 asked for, we don't want to crash. */
b6bb3468 13584 rslt = hex2bin (reply, buf, len);
00bf0b85
SS
13585 return rslt;
13586 }
13587
13588 /* Something went wrong, flag as an error. */
13589 return -1;
13590}
13591
f6ac5f3d
PA
13592void
13593remote_target::set_disconnected_tracing (int val)
35b1e5cc
SS
13594{
13595 struct remote_state *rs = get_remote_state ();
13596
4082afcc 13597 if (packet_support (PACKET_DisconnectedTracing_feature) == PACKET_ENABLE)
33da3f1c 13598 {
ad91cd99
PA
13599 char *reply;
13600
8d64371b
TT
13601 xsnprintf (rs->buf.data (), get_remote_packet_size (),
13602 "QTDisconnected:%x", val);
33da3f1c 13603 putpkt (rs->buf);
b6bb3468 13604 reply = remote_get_noisy_reply ();
ad91cd99 13605 if (*reply == '\0')
33da3f1c 13606 error (_("Target does not support this command."));
ad91cd99 13607 if (strcmp (reply, "OK") != 0)
dda83cd7 13608 error (_("Bogus reply from target: %s"), reply);
33da3f1c
SS
13609 }
13610 else if (val)
13611 warning (_("Target does not support disconnected tracing."));
35b1e5cc
SS
13612}
13613
f6ac5f3d
PA
13614int
13615remote_target::core_of_thread (ptid_t ptid)
dc146f7c 13616{
5b6d1e4f 13617 thread_info *info = find_thread_ptid (this, ptid);
a744cf53 13618
7aabaf9d
SM
13619 if (info != NULL && info->priv != NULL)
13620 return get_remote_thread_info (info)->core;
13621
dc146f7c
VP
13622 return -1;
13623}
13624
f6ac5f3d
PA
13625void
13626remote_target::set_circular_trace_buffer (int val)
4daf5ac0
SS
13627{
13628 struct remote_state *rs = get_remote_state ();
ad91cd99 13629 char *reply;
4daf5ac0 13630
8d64371b
TT
13631 xsnprintf (rs->buf.data (), get_remote_packet_size (),
13632 "QTBuffer:circular:%x", val);
4daf5ac0 13633 putpkt (rs->buf);
b6bb3468 13634 reply = remote_get_noisy_reply ();
ad91cd99 13635 if (*reply == '\0')
4daf5ac0 13636 error (_("Target does not support this command."));
ad91cd99
PA
13637 if (strcmp (reply, "OK") != 0)
13638 error (_("Bogus reply from target: %s"), reply);
4daf5ac0
SS
13639}
13640
f6ac5f3d
PA
13641traceframe_info_up
13642remote_target::traceframe_info ()
b3b9301e 13643{
9018be22 13644 gdb::optional<gdb::char_vector> text
8b88a78e 13645 = target_read_stralloc (current_top_target (), TARGET_OBJECT_TRACEFRAME_INFO,
b7b030ad 13646 NULL);
9018be22
SM
13647 if (text)
13648 return parse_traceframe_info (text->data ());
b3b9301e
PA
13649
13650 return NULL;
13651}
13652
405f8e94
SS
13653/* Handle the qTMinFTPILen packet. Returns the minimum length of
13654 instruction on which a fast tracepoint may be placed. Returns -1
13655 if the packet is not supported, and 0 if the minimum instruction
13656 length is unknown. */
13657
f6ac5f3d
PA
13658int
13659remote_target::get_min_fast_tracepoint_insn_len ()
405f8e94
SS
13660{
13661 struct remote_state *rs = get_remote_state ();
13662 char *reply;
13663
e886a173
PA
13664 /* If we're not debugging a process yet, the IPA can't be
13665 loaded. */
55f6301a 13666 if (!target_has_execution ())
e886a173
PA
13667 return 0;
13668
13669 /* Make sure the remote is pointing at the right process. */
13670 set_general_process ();
13671
8d64371b 13672 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTMinFTPILen");
405f8e94 13673 putpkt (rs->buf);
b6bb3468 13674 reply = remote_get_noisy_reply ();
405f8e94
SS
13675 if (*reply == '\0')
13676 return -1;
13677 else
13678 {
13679 ULONGEST min_insn_len;
13680
13681 unpack_varlen_hex (reply, &min_insn_len);
13682
13683 return (int) min_insn_len;
13684 }
13685}
13686
f6ac5f3d
PA
13687void
13688remote_target::set_trace_buffer_size (LONGEST val)
f6f899bf 13689{
4082afcc 13690 if (packet_support (PACKET_QTBuffer_size) != PACKET_DISABLE)
f6f899bf
HAQ
13691 {
13692 struct remote_state *rs = get_remote_state ();
8d64371b
TT
13693 char *buf = rs->buf.data ();
13694 char *endbuf = buf + get_remote_packet_size ();
f6f899bf
HAQ
13695 enum packet_result result;
13696
13697 gdb_assert (val >= 0 || val == -1);
13698 buf += xsnprintf (buf, endbuf - buf, "QTBuffer:size:");
13699 /* Send -1 as literal "-1" to avoid host size dependency. */
13700 if (val < 0)
13701 {
13702 *buf++ = '-';
dda83cd7 13703 buf += hexnumstr (buf, (ULONGEST) -val);
f6f899bf
HAQ
13704 }
13705 else
13706 buf += hexnumstr (buf, (ULONGEST) val);
13707
13708 putpkt (rs->buf);
b6bb3468 13709 remote_get_noisy_reply ();
f6f899bf
HAQ
13710 result = packet_ok (rs->buf,
13711 &remote_protocol_packets[PACKET_QTBuffer_size]);
13712
13713 if (result != PACKET_OK)
8d64371b 13714 warning (_("Bogus reply from target: %s"), rs->buf.data ());
f6f899bf
HAQ
13715 }
13716}
13717
57810aa7 13718bool
f6ac5f3d
PA
13719remote_target::set_trace_notes (const char *user, const char *notes,
13720 const char *stop_notes)
f196051f
SS
13721{
13722 struct remote_state *rs = get_remote_state ();
13723 char *reply;
8d64371b
TT
13724 char *buf = rs->buf.data ();
13725 char *endbuf = buf + get_remote_packet_size ();
f196051f
SS
13726 int nbytes;
13727
13728 buf += xsnprintf (buf, endbuf - buf, "QTNotes:");
13729 if (user)
13730 {
13731 buf += xsnprintf (buf, endbuf - buf, "user:");
9f1b45b0 13732 nbytes = bin2hex ((gdb_byte *) user, buf, strlen (user));
f196051f
SS
13733 buf += 2 * nbytes;
13734 *buf++ = ';';
13735 }
13736 if (notes)
13737 {
13738 buf += xsnprintf (buf, endbuf - buf, "notes:");
9f1b45b0 13739 nbytes = bin2hex ((gdb_byte *) notes, buf, strlen (notes));
f196051f
SS
13740 buf += 2 * nbytes;
13741 *buf++ = ';';
13742 }
13743 if (stop_notes)
13744 {
13745 buf += xsnprintf (buf, endbuf - buf, "tstop:");
9f1b45b0 13746 nbytes = bin2hex ((gdb_byte *) stop_notes, buf, strlen (stop_notes));
f196051f
SS
13747 buf += 2 * nbytes;
13748 *buf++ = ';';
13749 }
13750 /* Ensure the buffer is terminated. */
13751 *buf = '\0';
13752
13753 putpkt (rs->buf);
b6bb3468 13754 reply = remote_get_noisy_reply ();
f196051f 13755 if (*reply == '\0')
57810aa7 13756 return false;
f196051f
SS
13757
13758 if (strcmp (reply, "OK") != 0)
13759 error (_("Bogus reply from target: %s"), reply);
13760
57810aa7 13761 return true;
f196051f
SS
13762}
13763
57810aa7
PA
13764bool
13765remote_target::use_agent (bool use)
d1feda86 13766{
4082afcc 13767 if (packet_support (PACKET_QAgent) != PACKET_DISABLE)
d1feda86
YQ
13768 {
13769 struct remote_state *rs = get_remote_state ();
13770
13771 /* If the stub supports QAgent. */
8d64371b 13772 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QAgent:%d", use);
d1feda86 13773 putpkt (rs->buf);
8d64371b 13774 getpkt (&rs->buf, 0);
d1feda86 13775
8d64371b 13776 if (strcmp (rs->buf.data (), "OK") == 0)
d1feda86 13777 {
f6ac5f3d 13778 ::use_agent = use;
57810aa7 13779 return true;
d1feda86
YQ
13780 }
13781 }
13782
57810aa7 13783 return false;
d1feda86
YQ
13784}
13785
57810aa7 13786bool
f6ac5f3d 13787remote_target::can_use_agent ()
d1feda86 13788{
4082afcc 13789 return (packet_support (PACKET_QAgent) != PACKET_DISABLE);
d1feda86
YQ
13790}
13791
9accd112
MM
13792struct btrace_target_info
13793{
13794 /* The ptid of the traced thread. */
13795 ptid_t ptid;
f4abbc16
MM
13796
13797 /* The obtained branch trace configuration. */
13798 struct btrace_config conf;
9accd112
MM
13799};
13800
f4abbc16
MM
13801/* Reset our idea of our target's btrace configuration. */
13802
13803static void
6b8edb51 13804remote_btrace_reset (remote_state *rs)
f4abbc16 13805{
f4abbc16
MM
13806 memset (&rs->btrace_config, 0, sizeof (rs->btrace_config));
13807}
13808
f4abbc16
MM
13809/* Synchronize the configuration with the target. */
13810
6b8edb51
PA
13811void
13812remote_target::btrace_sync_conf (const btrace_config *conf)
f4abbc16 13813{
d33501a5
MM
13814 struct packet_config *packet;
13815 struct remote_state *rs;
13816 char *buf, *pos, *endbuf;
13817
13818 rs = get_remote_state ();
8d64371b 13819 buf = rs->buf.data ();
d33501a5
MM
13820 endbuf = buf + get_remote_packet_size ();
13821
13822 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_bts_size];
13823 if (packet_config_support (packet) == PACKET_ENABLE
13824 && conf->bts.size != rs->btrace_config.bts.size)
13825 {
13826 pos = buf;
13827 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
dda83cd7 13828 conf->bts.size);
d33501a5
MM
13829
13830 putpkt (buf);
8d64371b 13831 getpkt (&rs->buf, 0);
d33501a5
MM
13832
13833 if (packet_ok (buf, packet) == PACKET_ERROR)
13834 {
13835 if (buf[0] == 'E' && buf[1] == '.')
13836 error (_("Failed to configure the BTS buffer size: %s"), buf + 2);
13837 else
13838 error (_("Failed to configure the BTS buffer size."));
13839 }
13840
13841 rs->btrace_config.bts.size = conf->bts.size;
13842 }
b20a6524
MM
13843
13844 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_pt_size];
13845 if (packet_config_support (packet) == PACKET_ENABLE
13846 && conf->pt.size != rs->btrace_config.pt.size)
13847 {
13848 pos = buf;
13849 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
dda83cd7 13850 conf->pt.size);
b20a6524
MM
13851
13852 putpkt (buf);
8d64371b 13853 getpkt (&rs->buf, 0);
b20a6524
MM
13854
13855 if (packet_ok (buf, packet) == PACKET_ERROR)
13856 {
13857 if (buf[0] == 'E' && buf[1] == '.')
13858 error (_("Failed to configure the trace buffer size: %s"), buf + 2);
13859 else
13860 error (_("Failed to configure the trace buffer size."));
13861 }
13862
13863 rs->btrace_config.pt.size = conf->pt.size;
13864 }
f4abbc16
MM
13865}
13866
13867/* Read the current thread's btrace configuration from the target and
13868 store it into CONF. */
13869
13870static void
13871btrace_read_config (struct btrace_config *conf)
13872{
9018be22 13873 gdb::optional<gdb::char_vector> xml
8b88a78e 13874 = target_read_stralloc (current_top_target (), TARGET_OBJECT_BTRACE_CONF, "");
9018be22
SM
13875 if (xml)
13876 parse_xml_btrace_conf (conf, xml->data ());
f4abbc16
MM
13877}
13878
c0272db5
TW
13879/* Maybe reopen target btrace. */
13880
6b8edb51
PA
13881void
13882remote_target::remote_btrace_maybe_reopen ()
c0272db5
TW
13883{
13884 struct remote_state *rs = get_remote_state ();
c0272db5 13885 int btrace_target_pushed = 0;
15766370 13886#if !defined (HAVE_LIBIPT)
c0272db5 13887 int warned = 0;
15766370 13888#endif
c0272db5 13889
aedbe3bb
CM
13890 /* Don't bother walking the entirety of the remote thread list when
13891 we know the feature isn't supported by the remote. */
13892 if (packet_support (PACKET_qXfer_btrace_conf) != PACKET_ENABLE)
13893 return;
13894
5ed8105e
PA
13895 scoped_restore_current_thread restore_thread;
13896
5b6d1e4f 13897 for (thread_info *tp : all_non_exited_threads (this))
c0272db5
TW
13898 {
13899 set_general_thread (tp->ptid);
13900
13901 memset (&rs->btrace_config, 0x00, sizeof (struct btrace_config));
13902 btrace_read_config (&rs->btrace_config);
13903
13904 if (rs->btrace_config.format == BTRACE_FORMAT_NONE)
13905 continue;
13906
13907#if !defined (HAVE_LIBIPT)
13908 if (rs->btrace_config.format == BTRACE_FORMAT_PT)
13909 {
13910 if (!warned)
13911 {
13912 warned = 1;
c4e12631
MM
13913 warning (_("Target is recording using Intel Processor Trace "
13914 "but support was disabled at compile time."));
c0272db5
TW
13915 }
13916
13917 continue;
13918 }
13919#endif /* !defined (HAVE_LIBIPT) */
13920
13921 /* Push target, once, but before anything else happens. This way our
13922 changes to the threads will be cleaned up by unpushing the target
13923 in case btrace_read_config () throws. */
13924 if (!btrace_target_pushed)
13925 {
13926 btrace_target_pushed = 1;
13927 record_btrace_push_target ();
13928 printf_filtered (_("Target is recording using %s.\n"),
13929 btrace_format_string (rs->btrace_config.format));
13930 }
13931
13932 tp->btrace.target = XCNEW (struct btrace_target_info);
13933 tp->btrace.target->ptid = tp->ptid;
13934 tp->btrace.target->conf = rs->btrace_config;
13935 }
c0272db5
TW
13936}
13937
9accd112
MM
13938/* Enable branch tracing. */
13939
f6ac5f3d
PA
13940struct btrace_target_info *
13941remote_target::enable_btrace (ptid_t ptid, const struct btrace_config *conf)
9accd112
MM
13942{
13943 struct btrace_target_info *tinfo = NULL;
b20a6524 13944 struct packet_config *packet = NULL;
9accd112 13945 struct remote_state *rs = get_remote_state ();
8d64371b
TT
13946 char *buf = rs->buf.data ();
13947 char *endbuf = buf + get_remote_packet_size ();
9accd112 13948
b20a6524
MM
13949 switch (conf->format)
13950 {
13951 case BTRACE_FORMAT_BTS:
13952 packet = &remote_protocol_packets[PACKET_Qbtrace_bts];
13953 break;
13954
13955 case BTRACE_FORMAT_PT:
13956 packet = &remote_protocol_packets[PACKET_Qbtrace_pt];
13957 break;
13958 }
13959
13960 if (packet == NULL || packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13961 error (_("Target does not support branch tracing."));
13962
f4abbc16
MM
13963 btrace_sync_conf (conf);
13964
9accd112
MM
13965 set_general_thread (ptid);
13966
13967 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
13968 putpkt (rs->buf);
8d64371b 13969 getpkt (&rs->buf, 0);
9accd112
MM
13970
13971 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
13972 {
13973 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
13974 error (_("Could not enable branch tracing for %s: %s"),
a068643d 13975 target_pid_to_str (ptid).c_str (), &rs->buf[2]);
9accd112
MM
13976 else
13977 error (_("Could not enable branch tracing for %s."),
a068643d 13978 target_pid_to_str (ptid).c_str ());
9accd112
MM
13979 }
13980
8d749320 13981 tinfo = XCNEW (struct btrace_target_info);
9accd112
MM
13982 tinfo->ptid = ptid;
13983
f4abbc16
MM
13984 /* If we fail to read the configuration, we lose some information, but the
13985 tracing itself is not impacted. */
a70b8144 13986 try
492d29ea
PA
13987 {
13988 btrace_read_config (&tinfo->conf);
13989 }
230d2906 13990 catch (const gdb_exception_error &err)
492d29ea
PA
13991 {
13992 if (err.message != NULL)
3d6e9d23 13993 warning ("%s", err.what ());
492d29ea 13994 }
f4abbc16 13995
9accd112
MM
13996 return tinfo;
13997}
13998
13999/* Disable branch tracing. */
14000
f6ac5f3d
PA
14001void
14002remote_target::disable_btrace (struct btrace_target_info *tinfo)
9accd112
MM
14003{
14004 struct packet_config *packet = &remote_protocol_packets[PACKET_Qbtrace_off];
14005 struct remote_state *rs = get_remote_state ();
8d64371b
TT
14006 char *buf = rs->buf.data ();
14007 char *endbuf = buf + get_remote_packet_size ();
9accd112 14008
4082afcc 14009 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
14010 error (_("Target does not support branch tracing."));
14011
14012 set_general_thread (tinfo->ptid);
14013
14014 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
14015 putpkt (rs->buf);
8d64371b 14016 getpkt (&rs->buf, 0);
9accd112
MM
14017
14018 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
14019 {
14020 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
14021 error (_("Could not disable branch tracing for %s: %s"),
a068643d 14022 target_pid_to_str (tinfo->ptid).c_str (), &rs->buf[2]);
9accd112
MM
14023 else
14024 error (_("Could not disable branch tracing for %s."),
a068643d 14025 target_pid_to_str (tinfo->ptid).c_str ());
9accd112
MM
14026 }
14027
14028 xfree (tinfo);
14029}
14030
14031/* Teardown branch tracing. */
14032
f6ac5f3d
PA
14033void
14034remote_target::teardown_btrace (struct btrace_target_info *tinfo)
9accd112
MM
14035{
14036 /* We must not talk to the target during teardown. */
14037 xfree (tinfo);
14038}
14039
14040/* Read the branch trace. */
14041
f6ac5f3d
PA
14042enum btrace_error
14043remote_target::read_btrace (struct btrace_data *btrace,
14044 struct btrace_target_info *tinfo,
14045 enum btrace_read_type type)
9accd112
MM
14046{
14047 struct packet_config *packet = &remote_protocol_packets[PACKET_qXfer_btrace];
9accd112 14048 const char *annex;
9accd112 14049
4082afcc 14050 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
14051 error (_("Target does not support branch tracing."));
14052
14053#if !defined(HAVE_LIBEXPAT)
14054 error (_("Cannot process branch tracing result. XML parsing not supported."));
14055#endif
14056
14057 switch (type)
14058 {
864089d2 14059 case BTRACE_READ_ALL:
9accd112
MM
14060 annex = "all";
14061 break;
864089d2 14062 case BTRACE_READ_NEW:
9accd112
MM
14063 annex = "new";
14064 break;
969c39fb
MM
14065 case BTRACE_READ_DELTA:
14066 annex = "delta";
14067 break;
9accd112
MM
14068 default:
14069 internal_error (__FILE__, __LINE__,
14070 _("Bad branch tracing read type: %u."),
14071 (unsigned int) type);
14072 }
14073
9018be22 14074 gdb::optional<gdb::char_vector> xml
8b88a78e 14075 = target_read_stralloc (current_top_target (), TARGET_OBJECT_BTRACE, annex);
9018be22 14076 if (!xml)
969c39fb 14077 return BTRACE_ERR_UNKNOWN;
9accd112 14078
9018be22 14079 parse_xml_btrace (btrace, xml->data ());
9accd112 14080
969c39fb 14081 return BTRACE_ERR_NONE;
9accd112
MM
14082}
14083
f6ac5f3d
PA
14084const struct btrace_config *
14085remote_target::btrace_conf (const struct btrace_target_info *tinfo)
f4abbc16
MM
14086{
14087 return &tinfo->conf;
14088}
14089
57810aa7 14090bool
f6ac5f3d 14091remote_target::augmented_libraries_svr4_read ()
ced63ec0 14092{
4082afcc
PA
14093 return (packet_support (PACKET_augmented_libraries_svr4_read_feature)
14094 == PACKET_ENABLE);
ced63ec0
GB
14095}
14096
9dd130a0
TT
14097/* Implementation of to_load. */
14098
f6ac5f3d
PA
14099void
14100remote_target::load (const char *name, int from_tty)
9dd130a0
TT
14101{
14102 generic_load (name, from_tty);
14103}
14104
c78fa86a
GB
14105/* Accepts an integer PID; returns a string representing a file that
14106 can be opened on the remote side to get the symbols for the child
14107 process. Returns NULL if the operation is not supported. */
14108
f6ac5f3d
PA
14109char *
14110remote_target::pid_to_exec_file (int pid)
c78fa86a 14111{
9018be22 14112 static gdb::optional<gdb::char_vector> filename;
835205d0 14113 char *annex = NULL;
c78fa86a
GB
14114
14115 if (packet_support (PACKET_qXfer_exec_file) != PACKET_ENABLE)
14116 return NULL;
14117
5b6d1e4f 14118 inferior *inf = find_inferior_pid (this, pid);
835205d0
GB
14119 if (inf == NULL)
14120 internal_error (__FILE__, __LINE__,
14121 _("not currently attached to process %d"), pid);
14122
14123 if (!inf->fake_pid_p)
14124 {
14125 const int annex_size = 9;
14126
224c3ddb 14127 annex = (char *) alloca (annex_size);
835205d0
GB
14128 xsnprintf (annex, annex_size, "%x", pid);
14129 }
14130
8b88a78e 14131 filename = target_read_stralloc (current_top_target (),
c78fa86a
GB
14132 TARGET_OBJECT_EXEC_FILE, annex);
14133
9018be22 14134 return filename ? filename->data () : nullptr;
c78fa86a
GB
14135}
14136
750ce8d1
YQ
14137/* Implement the to_can_do_single_step target_ops method. */
14138
f6ac5f3d
PA
14139int
14140remote_target::can_do_single_step ()
750ce8d1
YQ
14141{
14142 /* We can only tell whether target supports single step or not by
14143 supported s and S vCont actions if the stub supports vContSupported
14144 feature. If the stub doesn't support vContSupported feature,
14145 we have conservatively to think target doesn't supports single
14146 step. */
14147 if (packet_support (PACKET_vContSupported) == PACKET_ENABLE)
14148 {
14149 struct remote_state *rs = get_remote_state ();
14150
14151 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6b8edb51 14152 remote_vcont_probe ();
750ce8d1
YQ
14153
14154 return rs->supports_vCont.s && rs->supports_vCont.S;
14155 }
14156 else
14157 return 0;
14158}
14159
3a00c802
PA
14160/* Implementation of the to_execution_direction method for the remote
14161 target. */
14162
f6ac5f3d
PA
14163enum exec_direction_kind
14164remote_target::execution_direction ()
3a00c802
PA
14165{
14166 struct remote_state *rs = get_remote_state ();
14167
14168 return rs->last_resume_exec_dir;
14169}
14170
f6327dcb
KB
14171/* Return pointer to the thread_info struct which corresponds to
14172 THREAD_HANDLE (having length HANDLE_LEN). */
14173
f6ac5f3d
PA
14174thread_info *
14175remote_target::thread_handle_to_thread_info (const gdb_byte *thread_handle,
14176 int handle_len,
14177 inferior *inf)
f6327dcb 14178{
5b6d1e4f 14179 for (thread_info *tp : all_non_exited_threads (this))
f6327dcb 14180 {
7aabaf9d 14181 remote_thread_info *priv = get_remote_thread_info (tp);
f6327dcb
KB
14182
14183 if (tp->inf == inf && priv != NULL)
dda83cd7 14184 {
7aabaf9d 14185 if (handle_len != priv->thread_handle.size ())
f6327dcb 14186 error (_("Thread handle size mismatch: %d vs %zu (from remote)"),
dda83cd7 14187 handle_len, priv->thread_handle.size ());
7aabaf9d 14188 if (memcmp (thread_handle, priv->thread_handle.data (),
dda83cd7 14189 handle_len) == 0)
f6327dcb
KB
14190 return tp;
14191 }
14192 }
14193
14194 return NULL;
14195}
14196
3d6c6204
KB
14197gdb::byte_vector
14198remote_target::thread_info_to_thread_handle (struct thread_info *tp)
14199{
14200 remote_thread_info *priv = get_remote_thread_info (tp);
14201 return priv->thread_handle;
14202}
14203
57810aa7 14204bool
f6ac5f3d 14205remote_target::can_async_p ()
6426a772 14206{
5d93a237
TT
14207 struct remote_state *rs = get_remote_state ();
14208
3015c064
SM
14209 /* We don't go async if the user has explicitly prevented it with the
14210 "maint set target-async" command. */
c6ebd6cf 14211 if (!target_async_permitted)
57810aa7 14212 return false;
75c99385 14213
23860348 14214 /* We're async whenever the serial device is. */
5d93a237 14215 return serial_can_async_p (rs->remote_desc);
6426a772
JM
14216}
14217
57810aa7 14218bool
f6ac5f3d 14219remote_target::is_async_p ()
6426a772 14220{
5d93a237
TT
14221 struct remote_state *rs = get_remote_state ();
14222
c6ebd6cf 14223 if (!target_async_permitted)
75c99385 14224 /* We only enable async when the user specifically asks for it. */
57810aa7 14225 return false;
75c99385 14226
23860348 14227 /* We're async whenever the serial device is. */
5d93a237 14228 return serial_is_async_p (rs->remote_desc);
6426a772
JM
14229}
14230
2acceee2
JM
14231/* Pass the SERIAL event on and up to the client. One day this code
14232 will be able to delay notifying the client of an event until the
23860348 14233 point where an entire packet has been received. */
2acceee2 14234
2acceee2
JM
14235static serial_event_ftype remote_async_serial_handler;
14236
6426a772 14237static void
819cc324 14238remote_async_serial_handler (struct serial *scb, void *context)
6426a772 14239{
2acceee2
JM
14240 /* Don't propogate error information up to the client. Instead let
14241 the client find out about the error by querying the target. */
b1a35af2 14242 inferior_event_handler (INF_REG_EVENT);
2acceee2
JM
14243}
14244
74531fed
PA
14245static void
14246remote_async_inferior_event_handler (gdb_client_data data)
14247{
b1a35af2 14248 inferior_event_handler (INF_REG_EVENT);
96118d11
PA
14249
14250 remote_target *remote = (remote_target *) data;
14251 remote_state *rs = remote->get_remote_state ();
14252
14253 /* inferior_event_handler may have consumed an event pending on the
14254 infrun side without calling target_wait on the REMOTE target, or
14255 may have pulled an event out of a different target. Keep trying
14256 for this remote target as long it still has either pending events
14257 or unacknowledged notifications. */
14258
14259 if (rs->notif_state->pending_event[notif_client_stop.id] != NULL
14260 || !rs->stop_reply_queue.empty ())
14261 mark_async_event_handler (rs->remote_async_inferior_event_token);
74531fed
PA
14262}
14263
5b6d1e4f
PA
14264int
14265remote_target::async_wait_fd ()
14266{
14267 struct remote_state *rs = get_remote_state ();
14268 return rs->remote_desc->fd;
14269}
14270
f6ac5f3d
PA
14271void
14272remote_target::async (int enable)
2acceee2 14273{
5d93a237
TT
14274 struct remote_state *rs = get_remote_state ();
14275
6a3753b3 14276 if (enable)
2acceee2 14277 {
88b496c3 14278 serial_async (rs->remote_desc, remote_async_serial_handler, rs);
b7d2e916
PA
14279
14280 /* If there are pending events in the stop reply queue tell the
14281 event loop to process them. */
953edf2b 14282 if (!rs->stop_reply_queue.empty ())
6b8edb51 14283 mark_async_event_handler (rs->remote_async_inferior_event_token);
6efcd9a8
PA
14284 /* For simplicity, below we clear the pending events token
14285 without remembering whether it is marked, so here we always
14286 mark it. If there's actually no pending notification to
14287 process, this ends up being a no-op (other than a spurious
14288 event-loop wakeup). */
14289 if (target_is_non_stop_p ())
14290 mark_async_event_handler (rs->notif_state->get_pending_events_token);
2acceee2
JM
14291 }
14292 else
b7d2e916
PA
14293 {
14294 serial_async (rs->remote_desc, NULL, NULL);
6efcd9a8
PA
14295 /* If the core is disabling async, it doesn't want to be
14296 disturbed with target events. Clear all async event sources
14297 too. */
6b8edb51 14298 clear_async_event_handler (rs->remote_async_inferior_event_token);
6efcd9a8
PA
14299 if (target_is_non_stop_p ())
14300 clear_async_event_handler (rs->notif_state->get_pending_events_token);
b7d2e916 14301 }
6426a772
JM
14302}
14303
65706a29
PA
14304/* Implementation of the to_thread_events method. */
14305
f6ac5f3d
PA
14306void
14307remote_target::thread_events (int enable)
65706a29
PA
14308{
14309 struct remote_state *rs = get_remote_state ();
14310 size_t size = get_remote_packet_size ();
65706a29
PA
14311
14312 if (packet_support (PACKET_QThreadEvents) == PACKET_DISABLE)
14313 return;
14314
8d64371b 14315 xsnprintf (rs->buf.data (), size, "QThreadEvents:%x", enable ? 1 : 0);
65706a29 14316 putpkt (rs->buf);
8d64371b 14317 getpkt (&rs->buf, 0);
65706a29
PA
14318
14319 switch (packet_ok (rs->buf,
14320 &remote_protocol_packets[PACKET_QThreadEvents]))
14321 {
14322 case PACKET_OK:
8d64371b
TT
14323 if (strcmp (rs->buf.data (), "OK") != 0)
14324 error (_("Remote refused setting thread events: %s"), rs->buf.data ());
65706a29
PA
14325 break;
14326 case PACKET_ERROR:
8d64371b 14327 warning (_("Remote failure reply: %s"), rs->buf.data ());
65706a29
PA
14328 break;
14329 case PACKET_UNKNOWN:
14330 break;
14331 }
14332}
14333
d471ea57 14334static void
981a3fb3 14335show_remote_cmd (const char *args, int from_tty)
d471ea57 14336{
37a105a1 14337 /* We can't just use cmd_show_list here, because we want to skip
427c3a89 14338 the redundant "show remote Z-packet" and the legacy aliases. */
37a105a1 14339 struct cmd_list_element *list = remote_show_cmdlist;
79a45e25 14340 struct ui_out *uiout = current_uiout;
37a105a1 14341
2e783024 14342 ui_out_emit_tuple tuple_emitter (uiout, "showlist");
37a105a1
DJ
14343 for (; list != NULL; list = list->next)
14344 if (strcmp (list->name, "Z-packet") == 0)
14345 continue;
427c3a89
DJ
14346 else if (list->type == not_set_cmd)
14347 /* Alias commands are exactly like the original, except they
14348 don't have the normal type. */
14349 continue;
14350 else
37a105a1 14351 {
2e783024 14352 ui_out_emit_tuple option_emitter (uiout, "option");
a744cf53 14353
112e8700
SM
14354 uiout->field_string ("name", list->name);
14355 uiout->text (": ");
427c3a89 14356 if (list->type == show_cmd)
f5c4fcd9 14357 do_show_command (NULL, from_tty, list);
427c3a89
DJ
14358 else
14359 cmd_func (list, NULL, from_tty);
37a105a1 14360 }
d471ea57 14361}
5a2468f5 14362
0f71a2f6 14363
23860348 14364/* Function to be called whenever a new objfile (shlib) is detected. */
dc8acb97
MS
14365static void
14366remote_new_objfile (struct objfile *objfile)
14367{
6b8edb51 14368 remote_target *remote = get_current_remote_target ();
5d93a237 14369
6b8edb51
PA
14370 if (remote != NULL) /* Have a remote connection. */
14371 remote->remote_check_symbols ();
dc8acb97
MS
14372}
14373
00bf0b85
SS
14374/* Pull all the tracepoints defined on the target and create local
14375 data structures representing them. We don't want to create real
14376 tracepoints yet, we don't want to mess up the user's existing
14377 collection. */
14378
f6ac5f3d
PA
14379int
14380remote_target::upload_tracepoints (struct uploaded_tp **utpp)
d5551862 14381{
00bf0b85
SS
14382 struct remote_state *rs = get_remote_state ();
14383 char *p;
d5551862 14384
00bf0b85
SS
14385 /* Ask for a first packet of tracepoint definition. */
14386 putpkt ("qTfP");
8d64371b
TT
14387 getpkt (&rs->buf, 0);
14388 p = rs->buf.data ();
00bf0b85 14389 while (*p && *p != 'l')
d5551862 14390 {
00bf0b85
SS
14391 parse_tracepoint_definition (p, utpp);
14392 /* Ask for another packet of tracepoint definition. */
14393 putpkt ("qTsP");
8d64371b
TT
14394 getpkt (&rs->buf, 0);
14395 p = rs->buf.data ();
d5551862 14396 }
00bf0b85 14397 return 0;
d5551862
SS
14398}
14399
f6ac5f3d
PA
14400int
14401remote_target::upload_trace_state_variables (struct uploaded_tsv **utsvp)
d5551862 14402{
00bf0b85 14403 struct remote_state *rs = get_remote_state ();
d5551862 14404 char *p;
d5551862 14405
00bf0b85
SS
14406 /* Ask for a first packet of variable definition. */
14407 putpkt ("qTfV");
8d64371b
TT
14408 getpkt (&rs->buf, 0);
14409 p = rs->buf.data ();
00bf0b85 14410 while (*p && *p != 'l')
d5551862 14411 {
00bf0b85
SS
14412 parse_tsv_definition (p, utsvp);
14413 /* Ask for another packet of variable definition. */
14414 putpkt ("qTsV");
8d64371b
TT
14415 getpkt (&rs->buf, 0);
14416 p = rs->buf.data ();
d5551862 14417 }
00bf0b85 14418 return 0;
d5551862
SS
14419}
14420
c1e36e3e
PA
14421/* The "set/show range-stepping" show hook. */
14422
14423static void
14424show_range_stepping (struct ui_file *file, int from_tty,
14425 struct cmd_list_element *c,
14426 const char *value)
14427{
14428 fprintf_filtered (file,
14429 _("Debugger's willingness to use range stepping "
14430 "is %s.\n"), value);
14431}
14432
6b8edb51
PA
14433/* Return true if the vCont;r action is supported by the remote
14434 stub. */
14435
14436bool
14437remote_target::vcont_r_supported ()
14438{
14439 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
14440 remote_vcont_probe ();
14441
14442 return (packet_support (PACKET_vCont) == PACKET_ENABLE
14443 && get_remote_state ()->supports_vCont.r);
14444}
14445
c1e36e3e
PA
14446/* The "set/show range-stepping" set hook. */
14447
14448static void
eb4c3f4a 14449set_range_stepping (const char *ignore_args, int from_tty,
c1e36e3e
PA
14450 struct cmd_list_element *c)
14451{
6b8edb51
PA
14452 /* When enabling, check whether range stepping is actually supported
14453 by the target, and warn if not. */
c1e36e3e
PA
14454 if (use_range_stepping)
14455 {
6b8edb51
PA
14456 remote_target *remote = get_current_remote_target ();
14457 if (remote == NULL
14458 || !remote->vcont_r_supported ())
14459 warning (_("Range stepping is not supported by the current target"));
c1e36e3e
PA
14460 }
14461}
14462
baf2b57f
SM
14463static void
14464show_remote_debug (struct ui_file *file, int from_tty,
14465 struct cmd_list_element *c, const char *value)
14466{
14467 fprintf_filtered (file, _("Debugging of remote protocol is %s.\n"),
14468 value);
14469}
14470
14471static void
14472show_remote_timeout (struct ui_file *file, int from_tty,
14473 struct cmd_list_element *c, const char *value)
14474{
14475 fprintf_filtered (file,
14476 _("Timeout limit to wait for target to respond is %s.\n"),
14477 value);
14478}
14479
6c265988 14480void _initialize_remote ();
c906108c 14481void
6c265988 14482_initialize_remote ()
c906108c 14483{
9a7071a8 14484 struct cmd_list_element *cmd;
6f937416 14485 const char *cmd_name;
ea9c271d 14486
0f71a2f6 14487 /* architecture specific data */
29709017
DJ
14488 remote_g_packet_data_handle =
14489 gdbarch_data_register_pre_init (remote_g_packet_data_init);
d01949b6 14490
d9f719f1
PA
14491 add_target (remote_target_info, remote_target::open);
14492 add_target (extended_remote_target_info, extended_remote_target::open);
cce74817 14493
dc8acb97 14494 /* Hook into new objfile notification. */
76727919 14495 gdb::observers::new_objfile.attach (remote_new_objfile);
dc8acb97 14496
c906108c
SS
14497#if 0
14498 init_remote_threadtests ();
14499#endif
14500
23860348 14501 /* set/show remote ... */
d471ea57 14502
0743fc83 14503 add_basic_prefix_cmd ("remote", class_maintenance, _("\
590042fc 14504Remote protocol specific variables.\n\
5a2468f5 14505Configure various remote-protocol specific variables such as\n\
590042fc 14506the packets being used."),
0743fc83
TT
14507 &remote_set_cmdlist, "set remote ",
14508 0 /* allow-unknown */, &setlist);
1bedd215 14509 add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
590042fc 14510Remote protocol specific variables.\n\
5a2468f5 14511Configure various remote-protocol specific variables such as\n\
590042fc 14512the packets being used."),
cff3e48b 14513 &remote_show_cmdlist, "show remote ",
23860348 14514 0 /* allow-unknown */, &showlist);
5a2468f5 14515
1a966eab
AC
14516 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
14517Compare section data on target to the exec file.\n\
95cf3b38
DT
14518Argument is a single section name (default: all loaded sections).\n\
14519To compare only read-only loaded sections, specify the -r option."),
c906108c
SS
14520 &cmdlist);
14521
1a966eab
AC
14522 add_cmd ("packet", class_maintenance, packet_command, _("\
14523Send an arbitrary packet to a remote target.\n\
c906108c
SS
14524 maintenance packet TEXT\n\
14525If GDB is talking to an inferior via the GDB serial protocol, then\n\
14526this command sends the string TEXT to the inferior, and displays the\n\
14527response packet. GDB supplies the initial `$' character, and the\n\
1a966eab 14528terminating `#' character and checksum."),
c906108c
SS
14529 &maintenancelist);
14530
7915a72c
AC
14531 add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
14532Set whether to send break if interrupted."), _("\
14533Show whether to send break if interrupted."), _("\
14534If set, a break, instead of a cntrl-c, is sent to the remote target."),
9a7071a8 14535 set_remotebreak, show_remotebreak,
e707bbc2 14536 &setlist, &showlist);
9a7071a8 14537 cmd_name = "remotebreak";
cf00cd6f 14538 cmd = lookup_cmd (&cmd_name, setlist, "", NULL, -1, 1);
9a7071a8
JB
14539 deprecate_cmd (cmd, "set remote interrupt-sequence");
14540 cmd_name = "remotebreak"; /* needed because lookup_cmd updates the pointer */
cf00cd6f 14541 cmd = lookup_cmd (&cmd_name, showlist, "", NULL, -1, 1);
9a7071a8
JB
14542 deprecate_cmd (cmd, "show remote interrupt-sequence");
14543
14544 add_setshow_enum_cmd ("interrupt-sequence", class_support,
3e43a32a
MS
14545 interrupt_sequence_modes, &interrupt_sequence_mode,
14546 _("\
9a7071a8
JB
14547Set interrupt sequence to remote target."), _("\
14548Show interrupt sequence to remote target."), _("\
14549Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."),
14550 NULL, show_interrupt_sequence,
14551 &remote_set_cmdlist,
14552 &remote_show_cmdlist);
14553
14554 add_setshow_boolean_cmd ("interrupt-on-connect", class_support,
14555 &interrupt_on_connect, _("\
590042fc
PW
14556Set whether interrupt-sequence is sent to remote target when gdb connects to."), _("\
14557Show whether interrupt-sequence is sent to remote target when gdb connects to."), _("\
9a7071a8
JB
14558If set, interrupt sequence is sent to remote target."),
14559 NULL, NULL,
14560 &remote_set_cmdlist, &remote_show_cmdlist);
c906108c 14561
23860348 14562 /* Install commands for configuring memory read/write packets. */
11cf8741 14563
1a966eab
AC
14564 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
14565Set the maximum number of bytes per memory write packet (deprecated)."),
11cf8741 14566 &setlist);
1a966eab
AC
14567 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
14568Show the maximum number of bytes per memory write packet (deprecated)."),
11cf8741
JM
14569 &showlist);
14570 add_cmd ("memory-write-packet-size", no_class,
1a966eab
AC
14571 set_memory_write_packet_size, _("\
14572Set the maximum number of bytes per memory-write packet.\n\
14573Specify the number of bytes in a packet or 0 (zero) for the\n\
14574default packet size. The actual limit is further reduced\n\
14575dependent on the target. Specify ``fixed'' to disable the\n\
14576further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
14577 &remote_set_cmdlist);
14578 add_cmd ("memory-read-packet-size", no_class,
1a966eab
AC
14579 set_memory_read_packet_size, _("\
14580Set the maximum number of bytes per memory-read packet.\n\
14581Specify the number of bytes in a packet or 0 (zero) for the\n\
14582default packet size. The actual limit is further reduced\n\
14583dependent on the target. Specify ``fixed'' to disable the\n\
14584further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
14585 &remote_set_cmdlist);
14586 add_cmd ("memory-write-packet-size", no_class,
14587 show_memory_write_packet_size,
1a966eab 14588 _("Show the maximum number of bytes per memory-write packet."),
11cf8741
JM
14589 &remote_show_cmdlist);
14590 add_cmd ("memory-read-packet-size", no_class,
14591 show_memory_read_packet_size,
1a966eab 14592 _("Show the maximum number of bytes per memory-read packet."),
11cf8741 14593 &remote_show_cmdlist);
c906108c 14594
055303e2 14595 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-limit", no_class,
7915a72c
AC
14596 &remote_hw_watchpoint_limit, _("\
14597Set the maximum number of target hardware watchpoints."), _("\
14598Show the maximum number of target hardware watchpoints."), _("\
055303e2
AB
14599Specify \"unlimited\" for unlimited hardware watchpoints."),
14600 NULL, show_hardware_watchpoint_limit,
14601 &remote_set_cmdlist,
14602 &remote_show_cmdlist);
14603 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-length-limit",
14604 no_class,
480a3f21
PW
14605 &remote_hw_watchpoint_length_limit, _("\
14606Set the maximum length (in bytes) of a target hardware watchpoint."), _("\
14607Show the maximum length (in bytes) of a target hardware watchpoint."), _("\
055303e2
AB
14608Specify \"unlimited\" to allow watchpoints of unlimited size."),
14609 NULL, show_hardware_watchpoint_length_limit,
480a3f21 14610 &remote_set_cmdlist, &remote_show_cmdlist);
055303e2 14611 add_setshow_zuinteger_unlimited_cmd ("hardware-breakpoint-limit", no_class,
7915a72c
AC
14612 &remote_hw_breakpoint_limit, _("\
14613Set the maximum number of target hardware breakpoints."), _("\
14614Show the maximum number of target hardware breakpoints."), _("\
055303e2
AB
14615Specify \"unlimited\" for unlimited hardware breakpoints."),
14616 NULL, show_hardware_breakpoint_limit,
b3f42336 14617 &remote_set_cmdlist, &remote_show_cmdlist);
501eef12 14618
1b493192
PA
14619 add_setshow_zuinteger_cmd ("remoteaddresssize", class_obscure,
14620 &remote_address_size, _("\
4d28ad1e
AC
14621Set the maximum size of the address (in bits) in a memory packet."), _("\
14622Show the maximum size of the address (in bits) in a memory packet."), NULL,
1b493192
PA
14623 NULL,
14624 NULL, /* FIXME: i18n: */
14625 &setlist, &showlist);
c906108c 14626
ca4f7f8b
PA
14627 init_all_packet_configs ();
14628
444abaca 14629 add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
bb572ddd 14630 "X", "binary-download", 1);
0f71a2f6 14631
444abaca 14632 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
bb572ddd 14633 "vCont", "verbose-resume", 0);
506fb367 14634
89be2091
DJ
14635 add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals],
14636 "QPassSignals", "pass-signals", 0);
14637
82075af2
JS
14638 add_packet_config_cmd (&remote_protocol_packets[PACKET_QCatchSyscalls],
14639 "QCatchSyscalls", "catch-syscalls", 0);
14640
9b224c5e
PA
14641 add_packet_config_cmd (&remote_protocol_packets[PACKET_QProgramSignals],
14642 "QProgramSignals", "program-signals", 0);
14643
bc3b087d
SDJ
14644 add_packet_config_cmd (&remote_protocol_packets[PACKET_QSetWorkingDir],
14645 "QSetWorkingDir", "set-working-dir", 0);
14646
aefd8b33
SDJ
14647 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartupWithShell],
14648 "QStartupWithShell", "startup-with-shell", 0);
14649
0a2dde4a
SDJ
14650 add_packet_config_cmd (&remote_protocol_packets
14651 [PACKET_QEnvironmentHexEncoded],
14652 "QEnvironmentHexEncoded", "environment-hex-encoded",
14653 0);
14654
14655 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentReset],
14656 "QEnvironmentReset", "environment-reset",
14657 0);
14658
14659 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentUnset],
14660 "QEnvironmentUnset", "environment-unset",
14661 0);
14662
444abaca 14663 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
bb572ddd 14664 "qSymbol", "symbol-lookup", 0);
dc8acb97 14665
444abaca 14666 add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
bb572ddd 14667 "P", "set-register", 1);
d471ea57 14668
444abaca 14669 add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
bb572ddd 14670 "p", "fetch-register", 1);
b96ec7ac 14671
444abaca 14672 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
bb572ddd 14673 "Z0", "software-breakpoint", 0);
d471ea57 14674
444abaca 14675 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
bb572ddd 14676 "Z1", "hardware-breakpoint", 0);
d471ea57 14677
444abaca 14678 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
bb572ddd 14679 "Z2", "write-watchpoint", 0);
d471ea57 14680
444abaca 14681 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
bb572ddd 14682 "Z3", "read-watchpoint", 0);
d471ea57 14683
444abaca 14684 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
bb572ddd 14685 "Z4", "access-watchpoint", 0);
d471ea57 14686
0876f84a
DJ
14687 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
14688 "qXfer:auxv:read", "read-aux-vector", 0);
802188a7 14689
c78fa86a
GB
14690 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_exec_file],
14691 "qXfer:exec-file:read", "pid-to-exec-file", 0);
14692
23181151
DJ
14693 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features],
14694 "qXfer:features:read", "target-features", 0);
14695
cfa9d6d9
DJ
14696 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries],
14697 "qXfer:libraries:read", "library-info", 0);
14698
2268b414
JK
14699 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries_svr4],
14700 "qXfer:libraries-svr4:read", "library-info-svr4", 0);
14701
fd79ecee
DJ
14702 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
14703 "qXfer:memory-map:read", "memory-map", 0);
14704
07e059b5 14705 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata],
dda83cd7 14706 "qXfer:osdata:read", "osdata", 0);
07e059b5 14707
dc146f7c
VP
14708 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_threads],
14709 "qXfer:threads:read", "threads", 0);
14710
4aa995e1 14711 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read],
dda83cd7 14712 "qXfer:siginfo:read", "read-siginfo-object", 0);
4aa995e1
PA
14713
14714 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write],
dda83cd7 14715 "qXfer:siginfo:write", "write-siginfo-object", 0);
4aa995e1 14716
b3b9301e
PA
14717 add_packet_config_cmd
14718 (&remote_protocol_packets[PACKET_qXfer_traceframe_info],
eb9fe518 14719 "qXfer:traceframe-info:read", "traceframe-info", 0);
b3b9301e 14720
169081d0
TG
14721 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_uib],
14722 "qXfer:uib:read", "unwind-info-block", 0);
14723
444abaca 14724 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
38691318 14725 "qGetTLSAddr", "get-thread-local-storage-address",
38691318
KB
14726 0);
14727
711e434b
PM
14728 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTIBAddr],
14729 "qGetTIBAddr", "get-thread-information-block-address",
14730 0);
14731
40ab02ce
MS
14732 add_packet_config_cmd (&remote_protocol_packets[PACKET_bc],
14733 "bc", "reverse-continue", 0);
14734
14735 add_packet_config_cmd (&remote_protocol_packets[PACKET_bs],
14736 "bs", "reverse-step", 0);
14737
be2a5f71
DJ
14738 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
14739 "qSupported", "supported-packets", 0);
14740
08388c79
DE
14741 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory],
14742 "qSearch:memory", "search-memory", 0);
14743
bd3eecc3
PA
14744 add_packet_config_cmd (&remote_protocol_packets[PACKET_qTStatus],
14745 "qTStatus", "trace-status", 0);
14746
15a201c8
GB
14747 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_setfs],
14748 "vFile:setfs", "hostio-setfs", 0);
14749
a6b151f1
DJ
14750 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open],
14751 "vFile:open", "hostio-open", 0);
14752
14753 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread],
14754 "vFile:pread", "hostio-pread", 0);
14755
14756 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite],
14757 "vFile:pwrite", "hostio-pwrite", 0);
14758
14759 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close],
14760 "vFile:close", "hostio-close", 0);
14761
14762 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink],
14763 "vFile:unlink", "hostio-unlink", 0);
14764
b9e7b9c3
UW
14765 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_readlink],
14766 "vFile:readlink", "hostio-readlink", 0);
14767
0a93529c
GB
14768 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_fstat],
14769 "vFile:fstat", "hostio-fstat", 0);
14770
2d717e4f
DJ
14771 add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach],
14772 "vAttach", "attach", 0);
14773
14774 add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun],
14775 "vRun", "run", 0);
14776
a6f3e723
SL
14777 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode],
14778 "QStartNoAckMode", "noack", 0);
14779
82f73884
PA
14780 add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill],
14781 "vKill", "kill", 0);
14782
0b16c5cf
PA
14783 add_packet_config_cmd (&remote_protocol_packets[PACKET_qAttached],
14784 "qAttached", "query-attached", 0);
14785
782b2b07 14786 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalTracepoints],
3e43a32a
MS
14787 "ConditionalTracepoints",
14788 "conditional-tracepoints", 0);
3788aec7
LM
14789
14790 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalBreakpoints],
14791 "ConditionalBreakpoints",
14792 "conditional-breakpoints", 0);
14793
d3ce09f5
SS
14794 add_packet_config_cmd (&remote_protocol_packets[PACKET_BreakpointCommands],
14795 "BreakpointCommands",
14796 "breakpoint-commands", 0);
14797
7a697b8d
SS
14798 add_packet_config_cmd (&remote_protocol_packets[PACKET_FastTracepoints],
14799 "FastTracepoints", "fast-tracepoints", 0);
782b2b07 14800
409873ef
SS
14801 add_packet_config_cmd (&remote_protocol_packets[PACKET_TracepointSource],
14802 "TracepointSource", "TracepointSource", 0);
14803
d914c394
SS
14804 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAllow],
14805 "QAllow", "allow", 0);
14806
0fb4aa4b
PA
14807 add_packet_config_cmd (&remote_protocol_packets[PACKET_StaticTracepoints],
14808 "StaticTracepoints", "static-tracepoints", 0);
14809
1e4d1764
YQ
14810 add_packet_config_cmd (&remote_protocol_packets[PACKET_InstallInTrace],
14811 "InstallInTrace", "install-in-trace", 0);
14812
0fb4aa4b 14813 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_statictrace_read],
dda83cd7 14814 "qXfer:statictrace:read", "read-sdata-object", 0);
0fb4aa4b 14815
78d85199
YQ
14816 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_fdpic],
14817 "qXfer:fdpic:read", "read-fdpic-loadmap", 0);
14818
03583c20
UW
14819 add_packet_config_cmd (&remote_protocol_packets[PACKET_QDisableRandomization],
14820 "QDisableRandomization", "disable-randomization", 0);
14821
d1feda86
YQ
14822 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAgent],
14823 "QAgent", "agent", 0);
14824
f6f899bf
HAQ
14825 add_packet_config_cmd (&remote_protocol_packets[PACKET_QTBuffer_size],
14826 "QTBuffer:size", "trace-buffer-size", 0);
14827
9accd112
MM
14828 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_off],
14829 "Qbtrace:off", "disable-btrace", 0);
14830
14831 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_bts],
b20a6524
MM
14832 "Qbtrace:bts", "enable-btrace-bts", 0);
14833
14834 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_pt],
14835 "Qbtrace:pt", "enable-btrace-pt", 0);
9accd112
MM
14836
14837 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace],
14838 "qXfer:btrace", "read-btrace", 0);
14839
f4abbc16
MM
14840 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace_conf],
14841 "qXfer:btrace-conf", "read-btrace-conf", 0);
14842
d33501a5
MM
14843 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_bts_size],
14844 "Qbtrace-conf:bts:size", "btrace-conf-bts-size", 0);
14845
73b8c1fd
PA
14846 add_packet_config_cmd (&remote_protocol_packets[PACKET_multiprocess_feature],
14847 "multiprocess-feature", "multiprocess-feature", 0);
14848
f7e6eed5 14849 add_packet_config_cmd (&remote_protocol_packets[PACKET_swbreak_feature],
dda83cd7 14850 "swbreak-feature", "swbreak-feature", 0);
f7e6eed5
PA
14851
14852 add_packet_config_cmd (&remote_protocol_packets[PACKET_hwbreak_feature],
dda83cd7 14853 "hwbreak-feature", "hwbreak-feature", 0);
f7e6eed5 14854
89245bc0
DB
14855 add_packet_config_cmd (&remote_protocol_packets[PACKET_fork_event_feature],
14856 "fork-event-feature", "fork-event-feature", 0);
14857
14858 add_packet_config_cmd (&remote_protocol_packets[PACKET_vfork_event_feature],
14859 "vfork-event-feature", "vfork-event-feature", 0);
14860
b20a6524
MM
14861 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_pt_size],
14862 "Qbtrace-conf:pt:size", "btrace-conf-pt-size", 0);
14863
750ce8d1
YQ
14864 add_packet_config_cmd (&remote_protocol_packets[PACKET_vContSupported],
14865 "vContSupported", "verbose-resume-supported", 0);
14866
94585166
DB
14867 add_packet_config_cmd (&remote_protocol_packets[PACKET_exec_event_feature],
14868 "exec-event-feature", "exec-event-feature", 0);
14869
de979965
PA
14870 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCtrlC],
14871 "vCtrlC", "ctrl-c", 0);
14872
65706a29
PA
14873 add_packet_config_cmd (&remote_protocol_packets[PACKET_QThreadEvents],
14874 "QThreadEvents", "thread-events", 0);
14875
f2faf941
PA
14876 add_packet_config_cmd (&remote_protocol_packets[PACKET_no_resumed],
14877 "N stop reply", "no-resumed-stop-reply", 0);
14878
0b736949
DB
14879 /* Assert that we've registered "set remote foo-packet" commands
14880 for all packet configs. */
ca4f7f8b
PA
14881 {
14882 int i;
14883
14884 for (i = 0; i < PACKET_MAX; i++)
14885 {
14886 /* Ideally all configs would have a command associated. Some
14887 still don't though. */
14888 int excepted;
14889
14890 switch (i)
14891 {
14892 case PACKET_QNonStop:
ca4f7f8b
PA
14893 case PACKET_EnableDisableTracepoints_feature:
14894 case PACKET_tracenz_feature:
14895 case PACKET_DisconnectedTracing_feature:
14896 case PACKET_augmented_libraries_svr4_read_feature:
936d2992
PA
14897 case PACKET_qCRC:
14898 /* Additions to this list need to be well justified:
14899 pre-existing packets are OK; new packets are not. */
ca4f7f8b
PA
14900 excepted = 1;
14901 break;
14902 default:
14903 excepted = 0;
14904 break;
14905 }
14906
14907 /* This catches both forgetting to add a config command, and
14908 forgetting to remove a packet from the exception list. */
14909 gdb_assert (excepted == (remote_protocol_packets[i].name == NULL));
14910 }
14911 }
14912
37a105a1
DJ
14913 /* Keep the old ``set remote Z-packet ...'' working. Each individual
14914 Z sub-packet has its own set and show commands, but users may
14915 have sets to this variable in their .gdbinit files (or in their
14916 documentation). */
e9e68a56 14917 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
7915a72c 14918 &remote_Z_packet_detect, _("\
590042fc
PW
14919Set use of remote protocol `Z' packets."), _("\
14920Show use of remote protocol `Z' packets."), _("\
3b64bf98 14921When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
7915a72c 14922packets."),
e9e68a56 14923 set_remote_protocol_Z_packet_cmd,
3e43a32a
MS
14924 show_remote_protocol_Z_packet_cmd,
14925 /* FIXME: i18n: Use of remote protocol
14926 `Z' packets is %s. */
e9e68a56 14927 &remote_set_cmdlist, &remote_show_cmdlist);
449092f6 14928
0743fc83 14929 add_basic_prefix_cmd ("remote", class_files, _("\
590042fc 14930Manipulate files on the remote system.\n\
a6b151f1 14931Transfer files to and from the remote target system."),
0743fc83
TT
14932 &remote_cmdlist, "remote ",
14933 0 /* allow-unknown */, &cmdlist);
a6b151f1
DJ
14934
14935 add_cmd ("put", class_files, remote_put_command,
14936 _("Copy a local file to the remote system."),
14937 &remote_cmdlist);
14938
14939 add_cmd ("get", class_files, remote_get_command,
14940 _("Copy a remote file to the local system."),
14941 &remote_cmdlist);
14942
14943 add_cmd ("delete", class_files, remote_delete_command,
14944 _("Delete a remote file."),
14945 &remote_cmdlist);
14946
2d717e4f 14947 add_setshow_string_noescape_cmd ("exec-file", class_files,
94585166 14948 &remote_exec_file_var, _("\
590042fc
PW
14949Set the remote pathname for \"run\"."), _("\
14950Show the remote pathname for \"run\"."), NULL,
94585166
DB
14951 set_remote_exec_file,
14952 show_remote_exec_file,
14953 &remote_set_cmdlist,
14954 &remote_show_cmdlist);
2d717e4f 14955
c1e36e3e
PA
14956 add_setshow_boolean_cmd ("range-stepping", class_run,
14957 &use_range_stepping, _("\
14958Enable or disable range stepping."), _("\
14959Show whether target-assisted range stepping is enabled."), _("\
14960If on, and the target supports it, when stepping a source line, GDB\n\
14961tells the target to step the corresponding range of addresses itself instead\n\
14962of issuing multiple single-steps. This speeds up source level\n\
14963stepping. If off, GDB always issues single-steps, even if range\n\
14964stepping is supported by the target. The default is on."),
14965 set_range_stepping,
14966 show_range_stepping,
14967 &setlist,
14968 &showlist);
14969
ed2b7c17
TT
14970 add_setshow_zinteger_cmd ("watchdog", class_maintenance, &watchdog, _("\
14971Set watchdog timer."), _("\
14972Show watchdog timer."), _("\
14973When non-zero, this timeout is used instead of waiting forever for a target\n\
14974to finish a low-level step or continue operation. If the specified amount\n\
14975of time passes without a response from the target, an error occurs."),
14976 NULL,
14977 show_watchdog,
14978 &setlist, &showlist);
14979
6cc8564b
LM
14980 add_setshow_zuinteger_unlimited_cmd ("remote-packet-max-chars", no_class,
14981 &remote_packet_max_chars, _("\
14982Set the maximum number of characters to display for each remote packet."), _("\
14983Show the maximum number of characters to display for each remote packet."), _("\
14984Specify \"unlimited\" to display all the characters."),
14985 NULL, show_remote_packet_max_chars,
14986 &setdebuglist, &showdebuglist);
14987
02349803
SM
14988 add_setshow_boolean_cmd ("remote", no_class, &remote_debug,
14989 _("Set debugging of remote protocol."),
14990 _("Show debugging of remote protocol."),
14991 _("\
baf2b57f
SM
14992When enabled, each packet sent or received with the remote target\n\
14993is displayed."),
02349803
SM
14994 NULL,
14995 show_remote_debug,
14996 &setdebuglist, &showdebuglist);
baf2b57f
SM
14997
14998 add_setshow_zuinteger_unlimited_cmd ("remotetimeout", no_class,
14999 &remote_timeout, _("\
15000Set timeout limit to wait for target to respond."), _("\
15001Show timeout limit to wait for target to respond."), _("\
15002This value is used to set the time limit for gdb to wait for a response\n\
15003from the target."),
15004 NULL,
15005 show_remote_timeout,
15006 &setlist, &showlist);
15007
449092f6 15008 /* Eventually initialize fileio. See fileio.c */
3f4d92eb 15009 initialize_remote_fileio (&remote_set_cmdlist, &remote_show_cmdlist);
c906108c 15010}
This page took 4.083694 seconds and 4 git commands to generate.