gdb: better handling of 'S' packets
[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
6b8edb51
PA
90#define OPAQUETHREADBYTES 8
91
92/* a 64 bit opaque identifier */
93typedef unsigned char threadref[OPAQUETHREADBYTES];
94
95struct gdb_ext_thread_info;
96struct threads_listing_context;
97typedef int (*rmt_thread_action) (threadref *ref, void *context);
98struct protocol_feature;
99struct packet_reg;
100
101struct stop_reply;
32603266 102typedef std::unique_ptr<stop_reply> stop_reply_up;
6b8edb51
PA
103
104/* Generic configuration support for packets the stub optionally
105 supports. Allows the user to specify the use of the packet as well
106 as allowing GDB to auto-detect support in the remote stub. */
107
108enum packet_support
109 {
110 PACKET_SUPPORT_UNKNOWN = 0,
111 PACKET_ENABLE,
112 PACKET_DISABLE
113 };
114
115/* Analyze a packet's return value and update the packet config
116 accordingly. */
117
118enum packet_result
119{
120 PACKET_ERROR,
121 PACKET_OK,
122 PACKET_UNKNOWN
123};
124
125struct threads_listing_context;
3c69da40
PA
126
127/* Stub vCont actions support.
128
129 Each field is a boolean flag indicating whether the stub reports
130 support for the corresponding action. */
131
132struct vCont_action_support
133{
134 /* vCont;t */
135 bool t = false;
136
137 /* vCont;r */
138 bool r = false;
139
140 /* vCont;s */
141 bool s = false;
142
143 /* vCont;S */
144 bool S = false;
145};
146
405feb71 147/* About this many threadids fit in a packet. */
3c69da40
PA
148
149#define MAXTHREADLISTRESULTS 32
150
151/* Data for the vFile:pread readahead cache. */
152
153struct readahead_cache
154{
155 /* Invalidate the readahead cache. */
156 void invalidate ();
157
158 /* Invalidate the readahead cache if it is holding data for FD. */
159 void invalidate_fd (int fd);
160
161 /* Serve pread from the readahead cache. Returns number of bytes
162 read, or 0 if the request can't be served from the cache. */
163 int pread (int fd, gdb_byte *read_buf, size_t len, ULONGEST offset);
164
165 /* The file descriptor for the file that is being cached. -1 if the
166 cache is invalid. */
167 int fd = -1;
168
169 /* The offset into the file that the cache buffer corresponds
170 to. */
171 ULONGEST offset = 0;
172
173 /* The buffer holding the cache contents. */
174 gdb_byte *buf = nullptr;
175 /* The buffer's size. We try to read as much as fits into a packet
176 at a time. */
177 size_t bufsize = 0;
178
179 /* Cache hit and miss counters. */
180 ULONGEST hit_count = 0;
181 ULONGEST miss_count = 0;
182};
183
184/* Description of the remote protocol for a given architecture. */
185
186struct packet_reg
187{
188 long offset; /* Offset into G packet. */
189 long regnum; /* GDB's internal register number. */
190 LONGEST pnum; /* Remote protocol register number. */
191 int in_g_packet; /* Always part of G packet. */
192 /* long size in bytes; == register_size (target_gdbarch (), regnum);
193 at present. */
194 /* char *name; == gdbarch_register_name (target_gdbarch (), regnum);
195 at present. */
196};
197
198struct remote_arch_state
199{
200 explicit remote_arch_state (struct gdbarch *gdbarch);
201
202 /* Description of the remote protocol registers. */
203 long sizeof_g_packet;
204
205 /* Description of the remote protocol registers indexed by REGNUM
206 (making an array gdbarch_num_regs in size). */
207 std::unique_ptr<packet_reg[]> regs;
208
209 /* This is the size (in chars) of the first response to the ``g''
210 packet. It is used as a heuristic when determining the maximum
211 size of memory-read and memory-write packets. A target will
212 typically only reserve a buffer large enough to hold the ``g''
213 packet. The size does not include packet overhead (headers and
214 trailers). */
215 long actual_register_packet_size;
216
217 /* This is the maximum size (in chars) of a non read/write packet.
218 It is also used as a cap on the size of read/write packets. */
219 long remote_packet_size;
220};
221
222/* Description of the remote protocol state for the currently
223 connected target. This is per-target state, and independent of the
224 selected architecture. */
225
226class remote_state
227{
228public:
229
230 remote_state ();
231 ~remote_state ();
232
233 /* Get the remote arch state for GDBARCH. */
234 struct remote_arch_state *get_remote_arch_state (struct gdbarch *gdbarch);
235
236public: /* data */
237
238 /* A buffer to use for incoming packets, and its current size. The
239 buffer is grown dynamically for larger incoming packets.
240 Outgoing packets may also be constructed in this buffer.
8d64371b 241 The size of the buffer is always at least REMOTE_PACKET_SIZE;
3c69da40
PA
242 REMOTE_PACKET_SIZE should be used to limit the length of outgoing
243 packets. */
8d64371b 244 gdb::char_vector buf;
3c69da40
PA
245
246 /* True if we're going through initial connection setup (finding out
247 about the remote side's threads, relocating symbols, etc.). */
248 bool starting_up = false;
249
250 /* If we negotiated packet size explicitly (and thus can bypass
251 heuristics for the largest packet size that will not overflow
252 a buffer in the stub), this will be set to that packet size.
253 Otherwise zero, meaning to use the guessed size. */
254 long explicit_packet_size = 0;
255
256 /* remote_wait is normally called when the target is running and
257 waits for a stop reply packet. But sometimes we need to call it
258 when the target is already stopped. We can send a "?" packet
259 and have remote_wait read the response. Or, if we already have
260 the response, we can stash it in BUF and tell remote_wait to
261 skip calling getpkt. This flag is set when BUF contains a
262 stop reply packet and the target is not waiting. */
263 int cached_wait_status = 0;
264
265 /* True, if in no ack mode. That is, neither GDB nor the stub will
266 expect acks from each other. The connection is assumed to be
267 reliable. */
268 bool noack_mode = false;
269
270 /* True if we're connected in extended remote mode. */
271 bool extended = false;
272
273 /* True if we resumed the target and we're waiting for the target to
274 stop. In the mean time, we can't start another command/query.
275 The remote server wouldn't be ready to process it, so we'd
276 timeout waiting for a reply that would never come and eventually
277 we'd close the connection. This can happen in asynchronous mode
278 because we allow GDB commands while the target is running. */
279 bool waiting_for_stop_reply = false;
280
281 /* The status of the stub support for the various vCont actions. */
282 vCont_action_support supports_vCont;
5b6d1e4f
PA
283 /* Whether vCont support was probed already. This is a workaround
284 until packet_support is per-connection. */
285 bool supports_vCont_probed;
3c69da40
PA
286
287 /* True if the user has pressed Ctrl-C, but the target hasn't
288 responded to that. */
289 bool ctrlc_pending_p = false;
290
291 /* True if we saw a Ctrl-C while reading or writing from/to the
292 remote descriptor. At that point it is not safe to send a remote
293 interrupt packet, so we instead remember we saw the Ctrl-C and
294 process it once we're done with sending/receiving the current
295 packet, which should be shortly. If however that takes too long,
296 and the user presses Ctrl-C again, we offer to disconnect. */
297 bool got_ctrlc_during_io = false;
298
299 /* Descriptor for I/O to remote machine. Initialize it to NULL so that
300 remote_open knows that we don't have a file open when the program
301 starts. */
302 struct serial *remote_desc = nullptr;
303
304 /* These are the threads which we last sent to the remote system. The
305 TID member will be -1 for all or -2 for not sent yet. */
306 ptid_t general_thread = null_ptid;
307 ptid_t continue_thread = null_ptid;
308
309 /* This is the traceframe which we last selected on the remote system.
310 It will be -1 if no traceframe is selected. */
311 int remote_traceframe_number = -1;
312
313 char *last_pass_packet = nullptr;
314
315 /* The last QProgramSignals packet sent to the target. We bypass
316 sending a new program signals list down to the target if the new
317 packet is exactly the same as the last we sent. IOW, we only let
318 the target know about program signals list changes. */
319 char *last_program_signals_packet = nullptr;
320
321 gdb_signal last_sent_signal = GDB_SIGNAL_0;
322
323 bool last_sent_step = false;
324
325 /* The execution direction of the last resume we got. */
326 exec_direction_kind last_resume_exec_dir = EXEC_FORWARD;
327
328 char *finished_object = nullptr;
329 char *finished_annex = nullptr;
330 ULONGEST finished_offset = 0;
331
332 /* Should we try the 'ThreadInfo' query packet?
333
334 This variable (NOT available to the user: auto-detect only!)
335 determines whether GDB will use the new, simpler "ThreadInfo"
336 query or the older, more complex syntax for thread queries.
337 This is an auto-detect variable (set to true at each connect,
338 and set to false when the target fails to recognize it). */
339 bool use_threadinfo_query = false;
340 bool use_threadextra_query = false;
341
342 threadref echo_nextthread {};
343 threadref nextthread {};
344 threadref resultthreadlist[MAXTHREADLISTRESULTS] {};
345
346 /* The state of remote notification. */
347 struct remote_notif_state *notif_state = nullptr;
348
349 /* The branch trace configuration. */
350 struct btrace_config btrace_config {};
351
352 /* The argument to the last "vFile:setfs:" packet we sent, used
353 to avoid sending repeated unnecessary "vFile:setfs:" packets.
354 Initialized to -1 to indicate that no "vFile:setfs:" packet
355 has yet been sent. */
356 int fs_pid = -1;
357
358 /* A readahead cache for vFile:pread. Often, reading a binary
359 involves a sequence of small reads. E.g., when parsing an ELF
360 file. A readahead cache helps mostly the case of remote
361 debugging on a connection with higher latency, due to the
362 request/reply nature of the RSP. We only cache data for a single
363 file descriptor at a time. */
364 struct readahead_cache readahead_cache;
365
366 /* The list of already fetched and acknowledged stop events. This
367 queue is used for notification Stop, and other notifications
368 don't need queue for their events, because the notification
369 events of Stop can't be consumed immediately, so that events
370 should be queued first, and be consumed by remote_wait_{ns,as}
371 one per time. Other notifications can consume their events
372 immediately, so queue is not needed for them. */
953edf2b 373 std::vector<stop_reply_up> stop_reply_queue;
3c69da40
PA
374
375 /* Asynchronous signal handle registered as event loop source for
376 when we have pending events ready to be passed to the core. */
377 struct async_event_handler *remote_async_inferior_event_token = nullptr;
378
379 /* FIXME: cagney/1999-09-23: Even though getpkt was called with
380 ``forever'' still use the normal timeout mechanism. This is
381 currently used by the ASYNC code to guarentee that target reads
382 during the initial connect always time-out. Once getpkt has been
383 modified to return a timeout indication and, in turn
384 remote_wait()/wait_for_inferior() have gained a timeout parameter
385 this can go away. */
386 int wait_forever_enabled_p = 1;
387
388private:
389 /* Mapping of remote protocol data for each gdbarch. Usually there
390 is only one entry here, though we may see more with stubs that
391 support multi-process. */
392 std::unordered_map<struct gdbarch *, remote_arch_state>
393 m_arch_states;
394};
6b8edb51 395
d9f719f1
PA
396static const target_info remote_target_info = {
397 "remote",
398 N_("Remote serial target in gdb-specific protocol"),
399 remote_doc
400};
401
3b3dac9b 402class remote_target : public process_stratum_target
f6ac5f3d
PA
403{
404public:
3b3dac9b 405 remote_target () = default;
6b8edb51 406 ~remote_target () override;
f6ac5f3d 407
d9f719f1
PA
408 const target_info &info () const override
409 { return remote_target_info; }
f6ac5f3d 410
121b3efd
PA
411 const char *connection_string () override;
412
f6ac5f3d
PA
413 thread_control_capabilities get_thread_control_capabilities () override
414 { return tc_schedlock; }
415
d9f719f1
PA
416 /* Open a remote connection. */
417 static void open (const char *, int);
418
f6ac5f3d
PA
419 void close () override;
420
421 void detach (inferior *, int) override;
422 void disconnect (const char *, int) override;
423
424 void commit_resume () override;
425 void resume (ptid_t, int, enum gdb_signal) override;
b60cea74 426 ptid_t wait (ptid_t, struct target_waitstatus *, target_wait_flags) override;
f6ac5f3d
PA
427
428 void fetch_registers (struct regcache *, int) override;
429 void store_registers (struct regcache *, int) override;
430 void prepare_to_store (struct regcache *) override;
431
432 void files_info () override;
433
434 int insert_breakpoint (struct gdbarch *, struct bp_target_info *) override;
435
436 int remove_breakpoint (struct gdbarch *, struct bp_target_info *,
437 enum remove_bp_reason) override;
438
439
57810aa7
PA
440 bool stopped_by_sw_breakpoint () override;
441 bool supports_stopped_by_sw_breakpoint () override;
f6ac5f3d 442
57810aa7 443 bool stopped_by_hw_breakpoint () override;
f6ac5f3d 444
57810aa7 445 bool supports_stopped_by_hw_breakpoint () override;
f6ac5f3d 446
57810aa7 447 bool stopped_by_watchpoint () override;
f6ac5f3d 448
57810aa7 449 bool stopped_data_address (CORE_ADDR *) override;
f6ac5f3d 450
57810aa7 451 bool watchpoint_addr_within_range (CORE_ADDR, CORE_ADDR, int) override;
f6ac5f3d
PA
452
453 int can_use_hw_breakpoint (enum bptype, int, int) override;
454
455 int insert_hw_breakpoint (struct gdbarch *, struct bp_target_info *) override;
456
457 int remove_hw_breakpoint (struct gdbarch *, struct bp_target_info *) override;
458
459 int region_ok_for_hw_watchpoint (CORE_ADDR, int) override;
460
461 int insert_watchpoint (CORE_ADDR, int, enum target_hw_bp_type,
462 struct expression *) override;
463
464 int remove_watchpoint (CORE_ADDR, int, enum target_hw_bp_type,
465 struct expression *) override;
466
467 void kill () override;
468
469 void load (const char *, int) override;
470
471 void mourn_inferior () override;
472
adc6a863 473 void pass_signals (gdb::array_view<const unsigned char>) override;
f6ac5f3d
PA
474
475 int set_syscall_catchpoint (int, bool, int,
476 gdb::array_view<const int>) override;
477
adc6a863 478 void program_signals (gdb::array_view<const unsigned char>) override;
f6ac5f3d 479
57810aa7 480 bool thread_alive (ptid_t ptid) override;
f6ac5f3d
PA
481
482 const char *thread_name (struct thread_info *) override;
483
484 void update_thread_list () override;
485
a068643d 486 std::string pid_to_str (ptid_t) override;
f6ac5f3d
PA
487
488 const char *extra_thread_info (struct thread_info *) override;
489
490 ptid_t get_ada_task_ptid (long lwp, long thread) override;
491
492 thread_info *thread_handle_to_thread_info (const gdb_byte *thread_handle,
493 int handle_len,
494 inferior *inf) override;
495
3d6c6204
KB
496 gdb::byte_vector thread_info_to_thread_handle (struct thread_info *tp)
497 override;
498
f6ac5f3d
PA
499 void stop (ptid_t) override;
500
501 void interrupt () override;
502
503 void pass_ctrlc () override;
504
505 enum target_xfer_status xfer_partial (enum target_object object,
506 const char *annex,
507 gdb_byte *readbuf,
508 const gdb_byte *writebuf,
509 ULONGEST offset, ULONGEST len,
510 ULONGEST *xfered_len) override;
511
512 ULONGEST get_memory_xfer_limit () override;
513
514 void rcmd (const char *command, struct ui_file *output) override;
515
516 char *pid_to_exec_file (int pid) override;
517
518 void log_command (const char *cmd) override
519 {
520 serial_log_command (this, cmd);
521 }
522
523 CORE_ADDR get_thread_local_address (ptid_t ptid,
524 CORE_ADDR load_module_addr,
525 CORE_ADDR offset) override;
526
57810aa7 527 bool can_execute_reverse () override;
f6ac5f3d
PA
528
529 std::vector<mem_region> memory_map () override;
530
531 void flash_erase (ULONGEST address, LONGEST length) override;
532
533 void flash_done () override;
534
535 const struct target_desc *read_description () override;
536
537 int search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
538 const gdb_byte *pattern, ULONGEST pattern_len,
539 CORE_ADDR *found_addrp) override;
540
57810aa7 541 bool can_async_p () override;
f6ac5f3d 542
57810aa7 543 bool is_async_p () override;
f6ac5f3d
PA
544
545 void async (int) override;
546
5b6d1e4f
PA
547 int async_wait_fd () override;
548
f6ac5f3d
PA
549 void thread_events (int) override;
550
551 int can_do_single_step () override;
552
553 void terminal_inferior () override;
554
555 void terminal_ours () override;
556
57810aa7 557 bool supports_non_stop () override;
f6ac5f3d 558
57810aa7 559 bool supports_multi_process () override;
f6ac5f3d 560
57810aa7 561 bool supports_disable_randomization () override;
f6ac5f3d 562
57810aa7 563 bool filesystem_is_local () override;
f6ac5f3d
PA
564
565
566 int fileio_open (struct inferior *inf, const char *filename,
567 int flags, int mode, int warn_if_slow,
568 int *target_errno) override;
569
570 int fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
571 ULONGEST offset, int *target_errno) override;
572
573 int fileio_pread (int fd, gdb_byte *read_buf, int len,
574 ULONGEST offset, int *target_errno) override;
575
576 int fileio_fstat (int fd, struct stat *sb, int *target_errno) override;
577
578 int fileio_close (int fd, int *target_errno) override;
579
580 int fileio_unlink (struct inferior *inf,
581 const char *filename,
582 int *target_errno) override;
583
584 gdb::optional<std::string>
585 fileio_readlink (struct inferior *inf,
586 const char *filename,
587 int *target_errno) override;
588
57810aa7 589 bool supports_enable_disable_tracepoint () override;
f6ac5f3d 590
57810aa7 591 bool supports_string_tracing () override;
f6ac5f3d 592
57810aa7 593 bool supports_evaluation_of_breakpoint_conditions () override;
f6ac5f3d 594
57810aa7 595 bool can_run_breakpoint_commands () override;
f6ac5f3d
PA
596
597 void trace_init () override;
598
599 void download_tracepoint (struct bp_location *location) override;
600
57810aa7 601 bool can_download_tracepoint () override;
f6ac5f3d
PA
602
603 void download_trace_state_variable (const trace_state_variable &tsv) override;
604
605 void enable_tracepoint (struct bp_location *location) override;
606
607 void disable_tracepoint (struct bp_location *location) override;
608
609 void trace_set_readonly_regions () override;
610
611 void trace_start () override;
612
613 int get_trace_status (struct trace_status *ts) override;
614
615 void get_tracepoint_status (struct breakpoint *tp, struct uploaded_tp *utp)
616 override;
617
618 void trace_stop () override;
619
620 int trace_find (enum trace_find_type type, int num,
621 CORE_ADDR addr1, CORE_ADDR addr2, int *tpp) override;
622
57810aa7 623 bool get_trace_state_variable_value (int tsv, LONGEST *val) override;
f6ac5f3d
PA
624
625 int save_trace_data (const char *filename) override;
626
627 int upload_tracepoints (struct uploaded_tp **utpp) override;
628
629 int upload_trace_state_variables (struct uploaded_tsv **utsvp) override;
630
631 LONGEST get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len) override;
632
633 int get_min_fast_tracepoint_insn_len () override;
634
635 void set_disconnected_tracing (int val) override;
636
637 void set_circular_trace_buffer (int val) override;
638
639 void set_trace_buffer_size (LONGEST val) override;
640
57810aa7
PA
641 bool set_trace_notes (const char *user, const char *notes,
642 const char *stopnotes) override;
f6ac5f3d
PA
643
644 int core_of_thread (ptid_t ptid) override;
645
646 int verify_memory (const gdb_byte *data,
647 CORE_ADDR memaddr, ULONGEST size) override;
648
649
57810aa7 650 bool get_tib_address (ptid_t ptid, CORE_ADDR *addr) override;
f6ac5f3d
PA
651
652 void set_permissions () override;
653
654 bool static_tracepoint_marker_at (CORE_ADDR,
655 struct static_tracepoint_marker *marker)
656 override;
657
658 std::vector<static_tracepoint_marker>
659 static_tracepoint_markers_by_strid (const char *id) override;
660
661 traceframe_info_up traceframe_info () override;
662
57810aa7
PA
663 bool use_agent (bool use) override;
664 bool can_use_agent () override;
f6ac5f3d
PA
665
666 struct btrace_target_info *enable_btrace (ptid_t ptid,
667 const struct btrace_config *conf) override;
668
669 void disable_btrace (struct btrace_target_info *tinfo) override;
670
671 void teardown_btrace (struct btrace_target_info *tinfo) override;
672
673 enum btrace_error read_btrace (struct btrace_data *data,
674 struct btrace_target_info *btinfo,
675 enum btrace_read_type type) override;
676
677 const struct btrace_config *btrace_conf (const struct btrace_target_info *) override;
57810aa7 678 bool augmented_libraries_svr4_read () override;
5ab2fbf1 679 bool follow_fork (bool, bool) override;
4ca51187 680 void follow_exec (struct inferior *, const char *) override;
f6ac5f3d
PA
681 int insert_fork_catchpoint (int) override;
682 int remove_fork_catchpoint (int) override;
683 int insert_vfork_catchpoint (int) override;
684 int remove_vfork_catchpoint (int) override;
685 int insert_exec_catchpoint (int) override;
686 int remove_exec_catchpoint (int) override;
687 enum exec_direction_kind execution_direction () override;
688
6b8edb51
PA
689public: /* Remote specific methods. */
690
691 void remote_download_command_source (int num, ULONGEST addr,
692 struct command_line *cmds);
693
694 void remote_file_put (const char *local_file, const char *remote_file,
695 int from_tty);
696 void remote_file_get (const char *remote_file, const char *local_file,
697 int from_tty);
698 void remote_file_delete (const char *remote_file, int from_tty);
699
700 int remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
701 ULONGEST offset, int *remote_errno);
702 int remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
703 ULONGEST offset, int *remote_errno);
704 int remote_hostio_pread_vFile (int fd, gdb_byte *read_buf, int len,
705 ULONGEST offset, int *remote_errno);
706
707 int remote_hostio_send_command (int command_bytes, int which_packet,
708 int *remote_errno, char **attachment,
709 int *attachment_len);
710 int remote_hostio_set_filesystem (struct inferior *inf,
711 int *remote_errno);
712 /* We should get rid of this and use fileio_open directly. */
713 int remote_hostio_open (struct inferior *inf, const char *filename,
714 int flags, int mode, int warn_if_slow,
715 int *remote_errno);
716 int remote_hostio_close (int fd, int *remote_errno);
717
718 int remote_hostio_unlink (inferior *inf, const char *filename,
719 int *remote_errno);
720
721 struct remote_state *get_remote_state ();
722
723 long get_remote_packet_size (void);
724 long get_memory_packet_size (struct memory_packet_config *config);
725
726 long get_memory_write_packet_size ();
727 long get_memory_read_packet_size ();
728
729 char *append_pending_thread_resumptions (char *p, char *endp,
730 ptid_t ptid);
d9f719f1 731 static void open_1 (const char *name, int from_tty, int extended_p);
f6ac5f3d 732 void start_remote (int from_tty, int extended_p);
00431a78 733 void remote_detach_1 (struct inferior *inf, int from_tty);
6b8edb51
PA
734
735 char *append_resumption (char *p, char *endp,
736 ptid_t ptid, int step, gdb_signal siggnal);
737 int remote_resume_with_vcont (ptid_t ptid, int step,
738 gdb_signal siggnal);
739
740 void add_current_inferior_and_thread (char *wait_status);
741
742 ptid_t wait_ns (ptid_t ptid, struct target_waitstatus *status,
b60cea74 743 target_wait_flags options);
6b8edb51 744 ptid_t wait_as (ptid_t ptid, target_waitstatus *status,
b60cea74 745 target_wait_flags options);
6b8edb51
PA
746
747 ptid_t process_stop_reply (struct stop_reply *stop_reply,
748 target_waitstatus *status);
749
8f66807b
AB
750 ptid_t select_thread_for_ambiguous_stop_reply
751 (const struct target_waitstatus *status);
752
6b8edb51
PA
753 void remote_notice_new_inferior (ptid_t currthread, int executing);
754
755 void process_initial_stop_replies (int from_tty);
756
00431a78 757 thread_info *remote_add_thread (ptid_t ptid, bool running, bool executing);
6b8edb51
PA
758
759 void btrace_sync_conf (const btrace_config *conf);
760
761 void remote_btrace_maybe_reopen ();
762
763 void remove_new_fork_children (threads_listing_context *context);
764 void kill_new_fork_children (int pid);
765 void discard_pending_stop_replies (struct inferior *inf);
766 int stop_reply_queue_length ();
767
768 void check_pending_events_prevent_wildcard_vcont
769 (int *may_global_wildcard_vcont);
770
771 void discard_pending_stop_replies_in_queue ();
772 struct stop_reply *remote_notif_remove_queued_reply (ptid_t ptid);
773 struct stop_reply *queued_stop_reply (ptid_t ptid);
774 int peek_stop_reply (ptid_t ptid);
bb277751 775 void remote_parse_stop_reply (const char *buf, stop_reply *event);
6b8edb51
PA
776
777 void remote_stop_ns (ptid_t ptid);
778 void remote_interrupt_as ();
779 void remote_interrupt_ns ();
780
781 char *remote_get_noisy_reply ();
782 int remote_query_attached (int pid);
9ab8741a 783 inferior *remote_add_inferior (bool fake_pid_p, int pid, int attached,
6b8edb51
PA
784 int try_open_exec);
785
786 ptid_t remote_current_thread (ptid_t oldpid);
787 ptid_t get_current_thread (char *wait_status);
788
789 void set_thread (ptid_t ptid, int gen);
790 void set_general_thread (ptid_t ptid);
791 void set_continue_thread (ptid_t ptid);
792 void set_general_process ();
793
794 char *write_ptid (char *buf, const char *endbuf, ptid_t ptid);
795
796 int remote_unpack_thread_info_response (char *pkt, threadref *expectedref,
797 gdb_ext_thread_info *info);
798 int remote_get_threadinfo (threadref *threadid, int fieldset,
799 gdb_ext_thread_info *info);
800
801 int parse_threadlist_response (char *pkt, int result_limit,
802 threadref *original_echo,
803 threadref *resultlist,
804 int *doneflag);
805 int remote_get_threadlist (int startflag, threadref *nextthread,
806 int result_limit, int *done, int *result_count,
807 threadref *threadlist);
808
809 int remote_threadlist_iterator (rmt_thread_action stepfunction,
810 void *context, int looplimit);
811
812 int remote_get_threads_with_ql (threads_listing_context *context);
813 int remote_get_threads_with_qxfer (threads_listing_context *context);
814 int remote_get_threads_with_qthreadinfo (threads_listing_context *context);
815
816 void extended_remote_restart ();
817
818 void get_offsets ();
819
820 void remote_check_symbols ();
821
822 void remote_supported_packet (const struct protocol_feature *feature,
823 enum packet_support support,
824 const char *argument);
825
826 void remote_query_supported ();
827
828 void remote_packet_size (const protocol_feature *feature,
829 packet_support support, const char *value);
830
831 void remote_serial_quit_handler ();
832
833 void remote_detach_pid (int pid);
834
835 void remote_vcont_probe ();
836
837 void remote_resume_with_hc (ptid_t ptid, int step,
838 gdb_signal siggnal);
839
840 void send_interrupt_sequence ();
841 void interrupt_query ();
842
843 void remote_notif_get_pending_events (notif_client *nc);
844
845 int fetch_register_using_p (struct regcache *regcache,
846 packet_reg *reg);
847 int send_g_packet ();
848 void process_g_packet (struct regcache *regcache);
849 void fetch_registers_using_g (struct regcache *regcache);
850 int store_register_using_P (const struct regcache *regcache,
851 packet_reg *reg);
852 void store_registers_using_G (const struct regcache *regcache);
853
854 void set_remote_traceframe ();
855
856 void check_binary_download (CORE_ADDR addr);
857
858 target_xfer_status remote_write_bytes_aux (const char *header,
859 CORE_ADDR memaddr,
860 const gdb_byte *myaddr,
861 ULONGEST len_units,
862 int unit_size,
863 ULONGEST *xfered_len_units,
864 char packet_format,
865 int use_length);
866
867 target_xfer_status remote_write_bytes (CORE_ADDR memaddr,
868 const gdb_byte *myaddr, ULONGEST len,
869 int unit_size, ULONGEST *xfered_len);
870
871 target_xfer_status remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr,
872 ULONGEST len_units,
873 int unit_size, ULONGEST *xfered_len_units);
874
875 target_xfer_status remote_xfer_live_readonly_partial (gdb_byte *readbuf,
876 ULONGEST memaddr,
877 ULONGEST len,
878 int unit_size,
879 ULONGEST *xfered_len);
880
881 target_xfer_status remote_read_bytes (CORE_ADDR memaddr,
882 gdb_byte *myaddr, ULONGEST len,
883 int unit_size,
884 ULONGEST *xfered_len);
885
886 packet_result remote_send_printf (const char *format, ...)
887 ATTRIBUTE_PRINTF (2, 3);
888
889 target_xfer_status remote_flash_write (ULONGEST address,
890 ULONGEST length, ULONGEST *xfered_len,
891 const gdb_byte *data);
892
893 int readchar (int timeout);
894
895 void remote_serial_write (const char *str, int len);
896
897 int putpkt (const char *buf);
898 int putpkt_binary (const char *buf, int cnt);
899
8d64371b
TT
900 int putpkt (const gdb::char_vector &buf)
901 {
902 return putpkt (buf.data ());
903 }
904
6b8edb51 905 void skip_frame ();
8d64371b
TT
906 long read_frame (gdb::char_vector *buf_p);
907 void getpkt (gdb::char_vector *buf, int forever);
908 int getpkt_or_notif_sane_1 (gdb::char_vector *buf, int forever,
6b8edb51 909 int expecting_notif, int *is_notif);
8d64371b
TT
910 int getpkt_sane (gdb::char_vector *buf, int forever);
911 int getpkt_or_notif_sane (gdb::char_vector *buf, int forever,
6b8edb51
PA
912 int *is_notif);
913 int remote_vkill (int pid);
914 void remote_kill_k ();
915
916 void extended_remote_disable_randomization (int val);
917 int extended_remote_run (const std::string &args);
918
919 void send_environment_packet (const char *action,
920 const char *packet,
921 const char *value);
922
923 void extended_remote_environment_support ();
3c69da40 924 void extended_remote_set_inferior_cwd ();
80152258 925
3c69da40
PA
926 target_xfer_status remote_write_qxfer (const char *object_name,
927 const char *annex,
928 const gdb_byte *writebuf,
929 ULONGEST offset, LONGEST len,
930 ULONGEST *xfered_len,
931 struct packet_config *packet);
43c3a0e4 932
3c69da40
PA
933 target_xfer_status remote_read_qxfer (const char *object_name,
934 const char *annex,
935 gdb_byte *readbuf, ULONGEST offset,
936 LONGEST len,
937 ULONGEST *xfered_len,
938 struct packet_config *packet);
43c3a0e4 939
3c69da40 940 void push_stop_reply (struct stop_reply *new_event);
43c3a0e4 941
3c69da40 942 bool vcont_r_supported ();
43c3a0e4 943
3c69da40 944 void packet_command (const char *args, int from_tty);
43c3a0e4 945
3c69da40 946private: /* data fields */
43c3a0e4 947
3c69da40
PA
948 /* The remote state. Don't reference this directly. Use the
949 get_remote_state method instead. */
950 remote_state m_remote_state;
43c3a0e4
PA
951};
952
3c69da40
PA
953static const target_info extended_remote_target_info = {
954 "extended-remote",
955 N_("Extended remote serial target in gdb-specific protocol"),
956 remote_doc
957};
ea9c271d 958
3c69da40
PA
959/* Set up the extended remote target by extending the standard remote
960 target and adding to it. */
961
962class extended_remote_target final : public remote_target
ea9c271d 963{
9d6eea31 964public:
3c69da40
PA
965 const target_info &info () const override
966 { return extended_remote_target_info; }
9d6eea31 967
3c69da40
PA
968 /* Open an extended-remote connection. */
969 static void open (const char *, int);
de44f5a7 970
3c69da40
PA
971 bool can_create_inferior () override { return true; }
972 void create_inferior (const char *, const std::string &,
973 char **, int) override;
9d6eea31 974
3c69da40 975 void detach (inferior *, int) override;
9d6eea31 976
3c69da40
PA
977 bool can_attach () override { return true; }
978 void attach (const char *, int) override;
be2a5f71 979
3c69da40
PA
980 void post_attach (int) override;
981 bool supports_disable_randomization () override;
982};
1e51243a 983
3c69da40 984/* Per-program-space data key. */
7b4a314f
TT
985static const struct program_space_key<char, gdb::xfree_deleter<char>>
986 remote_pspace_data;
2d717e4f 987
3c69da40
PA
988/* The variable registered as the control variable used by the
989 remote exec-file commands. While the remote exec-file setting is
990 per-program-space, the set/show machinery uses this as the
991 location of the remote exec-file value. */
992static char *remote_exec_file_var;
a6f3e723 993
3c69da40
PA
994/* The size to align memory write packets, when practical. The protocol
995 does not guarantee any alignment, and gdb will generate short
996 writes and unaligned writes, but even as a best-effort attempt this
997 can improve bulk transfers. For instance, if a write is misaligned
998 relative to the target's data bus, the stub may need to make an extra
999 round trip fetching data from the target. This doesn't make a
1000 huge difference, but it's easy to do, so we try to be helpful.
82f73884 1001
3c69da40
PA
1002 The alignment chosen is arbitrary; usually data bus width is
1003 important here, not the possibly larger cache line size. */
1004enum { REMOTE_ALIGN_WRITES = 16 };
82f73884 1005
3c69da40 1006/* Prototypes for local functions. */
74531fed 1007
3c69da40 1008static int hexnumlen (ULONGEST num);
782b2b07 1009
3c69da40 1010static int stubhex (int ch);
5d93a237 1011
3c69da40 1012static int hexnumstr (char *, ULONGEST);
048094ac 1013
3c69da40 1014static int hexnumnstr (char *, ULONGEST, int);
47f8a51d 1015
3c69da40 1016static CORE_ADDR remote_address_masked (CORE_ADDR);
262e1174 1017
3c69da40 1018static void print_packet (const char *);
747dc59d 1019
3c69da40 1020static int stub_unpack_int (char *buff, int fieldlength);
5e4a05c4 1021
3c69da40 1022struct packet_config;
b73be471 1023
3c69da40 1024static void show_packet_config_cmd (struct packet_config *config);
280ceea3 1025
3c69da40
PA
1026static void show_remote_protocol_packet_cmd (struct ui_file *file,
1027 int from_tty,
1028 struct cmd_list_element *c,
1029 const char *value);
8e88304f 1030
3c69da40 1031static ptid_t read_ptid (const char *buf, const char **obuf);
3a00c802 1032
3c69da40 1033static void remote_async_inferior_event_handler (gdb_client_data);
b80fafe3 1034
eefce37f 1035static bool remote_read_description_p (struct target_ops *target);
88b496c3 1036
05be00a8 1037static void remote_console_output (const char *msg);
5965e028 1038
3c69da40 1039static void remote_btrace_reset (remote_state *rs);
f4abbc16 1040
5b6d1e4f 1041static void remote_unpush_and_throw (remote_target *target);
15a201c8 1042
3c69da40 1043/* For "remote". */
80152258 1044
3c69da40 1045static struct cmd_list_element *remote_cmdlist;
9d6eea31 1046
3c69da40 1047/* For "set remote" and "show remote". */
6b8edb51 1048
3c69da40
PA
1049static struct cmd_list_element *remote_set_cmdlist;
1050static struct cmd_list_element *remote_show_cmdlist;
6b8edb51 1051
3c69da40 1052/* Controls whether GDB is willing to use range stepping. */
6b8edb51 1053
491144b5 1054static bool use_range_stepping = true;
3c69da40 1055
c9d22089
SM
1056/* From the remote target's point of view, each thread is in one of these three
1057 states. */
1058enum class resume_state
1059{
1060 /* Not resumed - we haven't been asked to resume this thread. */
1061 NOT_RESUMED,
1062
1063 /* We have been asked to resume this thread, but haven't sent a vCont action
1064 for it yet. We'll need to consider it next time commit_resume is
1065 called. */
1066 RESUMED_PENDING_VCONT,
1067
1068 /* We have been asked to resume this thread, and we have sent a vCont action
1069 for it. */
1070 RESUMED,
1071};
1072
1073/* Information about a thread's pending vCont-resume. Used when a thread is in
1074 the remote_resume_state::RESUMED_PENDING_VCONT state. remote_target::resume
1075 stores this information which is then picked up by
1076 remote_target::commit_resume to know which is the proper action for this
1077 thread to include in the vCont packet. */
1078struct resumed_pending_vcont_info
1079{
1080 /* True if the last resume call for this thread was a step request, false
1081 if a continue request. */
1082 bool step;
1083
1084 /* The signal specified in the last resume call for this thread. */
1085 gdb_signal sig;
1086};
1087
7aabaf9d
SM
1088/* Private data that we'll store in (struct thread_info)->priv. */
1089struct remote_thread_info : public private_thread_info
dc146f7c 1090{
7aabaf9d
SM
1091 std::string extra;
1092 std::string name;
1093 int core = -1;
799a2abe 1094
f6327dcb
KB
1095 /* Thread handle, perhaps a pthread_t or thread_t value, stored as a
1096 sequence of bytes. */
7aabaf9d 1097 gdb::byte_vector thread_handle;
f6327dcb 1098
799a2abe 1099 /* Whether the target stopped for a breakpoint/watchpoint. */
7aabaf9d 1100 enum target_stop_reason stop_reason = TARGET_STOPPED_BY_NO_REASON;
799a2abe
PA
1101
1102 /* This is set to the data address of the access causing the target
1103 to stop for a watchpoint. */
7aabaf9d 1104 CORE_ADDR watch_data_address = 0;
85ad3aaf 1105
c9d22089
SM
1106 /* Get the thread's resume state. */
1107 enum resume_state resume_state () const
1108 {
1109 return m_resume_state;
1110 }
1111
1112 /* Put the thread in the NOT_RESUMED state. */
1113 void set_not_resumed ()
1114 {
1115 m_resume_state = resume_state::NOT_RESUMED;
1116 }
85ad3aaf 1117
c9d22089
SM
1118 /* Put the thread in the RESUMED_PENDING_VCONT state. */
1119 void set_resumed_pending_vcont (bool step, gdb_signal sig)
1120 {
1121 m_resume_state = resume_state::RESUMED_PENDING_VCONT;
1122 m_resumed_pending_vcont_info.step = step;
1123 m_resumed_pending_vcont_info.sig = sig;
1124 }
85ad3aaf 1125
c9d22089 1126 /* Get the information this thread's pending vCont-resumption.
85ad3aaf 1127
c9d22089
SM
1128 Must only be called if the thread is in the RESUMED_PENDING_VCONT resume
1129 state. */
1130 const struct resumed_pending_vcont_info &resumed_pending_vcont_info () const
1131 {
1132 gdb_assert (m_resume_state == resume_state::RESUMED_PENDING_VCONT);
1133
1134 return m_resumed_pending_vcont_info;
1135 }
1136
1137 /* Put the thread in the VCONT_RESUMED state. */
1138 void set_resumed ()
1139 {
1140 m_resume_state = resume_state::RESUMED;
1141 }
1142
1143private:
1144 /* Resume state for this thread. This is used to implement vCont action
1145 coalescing (only when the target operates in non-stop mode).
1146
1147 remote_target::resume moves the thread to the RESUMED_PENDING_VCONT state,
1148 which notes that this thread must be considered in the next commit_resume
1149 call.
1150
1151 remote_target::commit_resume sends a vCont packet with actions for the
1152 threads in the RESUMED_PENDING_VCONT state and moves them to the
1153 VCONT_RESUMED state.
1154
1155 When reporting a stop to the core for a thread, that thread is moved back
1156 to the NOT_RESUMED state. */
1157 enum resume_state m_resume_state = resume_state::NOT_RESUMED;
1158
1159 /* Extra info used if the thread is in the RESUMED_PENDING_VCONT state. */
1160 struct resumed_pending_vcont_info m_resumed_pending_vcont_info;
dc146f7c
VP
1161};
1162
de44f5a7 1163remote_state::remote_state ()
8d64371b 1164 : buf (400)
de44f5a7 1165{
de44f5a7
PA
1166}
1167
1168remote_state::~remote_state ()
1169{
1170 xfree (this->last_pass_packet);
1171 xfree (this->last_program_signals_packet);
de44f5a7
PA
1172 xfree (this->finished_object);
1173 xfree (this->finished_annex);
cf792862
TT
1174}
1175
35b1e5cc
SS
1176/* Utility: generate error from an incoming stub packet. */
1177static void
1178trace_error (char *buf)
1179{
1180 if (*buf++ != 'E')
1181 return; /* not an error msg */
1182 switch (*buf)
1183 {
1184 case '1': /* malformed packet error */
1185 if (*++buf == '0') /* general case: */
1186 error (_("remote.c: error in outgoing packet."));
1187 else
1188 error (_("remote.c: error in outgoing packet at field #%ld."),
1189 strtol (buf, NULL, 16));
35b1e5cc
SS
1190 default:
1191 error (_("Target returns error code '%s'."), buf);
1192 }
1193}
1194
1195/* Utility: wait for reply from stub, while accepting "O" packets. */
b6bb3468 1196
6b8edb51
PA
1197char *
1198remote_target::remote_get_noisy_reply ()
35b1e5cc 1199{
b6bb3468
PA
1200 struct remote_state *rs = get_remote_state ();
1201
35b1e5cc
SS
1202 do /* Loop on reply from remote stub. */
1203 {
1204 char *buf;
a744cf53 1205
0df8b418 1206 QUIT; /* Allow user to bail out with ^C. */
8d64371b
TT
1207 getpkt (&rs->buf, 0);
1208 buf = rs->buf.data ();
ad91cd99 1209 if (buf[0] == 'E')
35b1e5cc 1210 trace_error (buf);
61012eef 1211 else if (startswith (buf, "qRelocInsn:"))
dde08ee1
PA
1212 {
1213 ULONGEST ul;
1214 CORE_ADDR from, to, org_to;
256642e8 1215 const char *p, *pp;
dde08ee1 1216 int adjusted_size = 0;
7556d4a4 1217 int relocated = 0;
dde08ee1
PA
1218
1219 p = buf + strlen ("qRelocInsn:");
1220 pp = unpack_varlen_hex (p, &ul);
1221 if (*pp != ';')
cb91c06a 1222 error (_("invalid qRelocInsn packet: %s"), buf);
dde08ee1
PA
1223 from = ul;
1224
1225 p = pp + 1;
a9cbf802 1226 unpack_varlen_hex (p, &ul);
dde08ee1
PA
1227 to = ul;
1228
1229 org_to = to;
1230
a70b8144 1231 try
dde08ee1 1232 {
f5656ead 1233 gdbarch_relocate_instruction (target_gdbarch (), &to, from);
7556d4a4 1234 relocated = 1;
dde08ee1 1235 }
230d2906 1236 catch (const gdb_exception &ex)
7556d4a4
PA
1237 {
1238 if (ex.error == MEMORY_ERROR)
1239 {
1240 /* Propagate memory errors silently back to the
1241 target. The stub may have limited the range of
1242 addresses we can write to, for example. */
1243 }
1244 else
1245 {
1246 /* Something unexpectedly bad happened. Be verbose
1247 so we can tell what, and propagate the error back
1248 to the stub, so it doesn't get stuck waiting for
1249 a response. */
1250 exception_fprintf (gdb_stderr, ex,
1251 _("warning: relocating instruction: "));
1252 }
1253 putpkt ("E01");
1254 }
1255
1256 if (relocated)
dde08ee1
PA
1257 {
1258 adjusted_size = to - org_to;
1259
8d64371b 1260 xsnprintf (buf, rs->buf.size (), "qRelocInsn:%x", adjusted_size);
dde08ee1
PA
1261 putpkt (buf);
1262 }
dde08ee1 1263 }
ad91cd99 1264 else if (buf[0] == 'O' && buf[1] != 'K')
35b1e5cc
SS
1265 remote_console_output (buf + 1); /* 'O' message from stub */
1266 else
0df8b418 1267 return buf; /* Here's the actual reply. */
35b1e5cc
SS
1268 }
1269 while (1);
1270}
3c3bea1c 1271
9d6eea31
PA
1272struct remote_arch_state *
1273remote_state::get_remote_arch_state (struct gdbarch *gdbarch)
d01949b6 1274{
43c3a0e4
PA
1275 remote_arch_state *rsa;
1276
1277 auto it = this->m_arch_states.find (gdbarch);
1278 if (it == this->m_arch_states.end ())
9d6eea31 1279 {
43c3a0e4
PA
1280 auto p = this->m_arch_states.emplace (std::piecewise_construct,
1281 std::forward_as_tuple (gdbarch),
1282 std::forward_as_tuple (gdbarch));
1283 rsa = &p.first->second;
9d6eea31
PA
1284
1285 /* Make sure that the packet buffer is plenty big enough for
1286 this architecture. */
8d64371b
TT
1287 if (this->buf.size () < rsa->remote_packet_size)
1288 this->buf.resize (2 * rsa->remote_packet_size);
9d6eea31 1289 }
43c3a0e4
PA
1290 else
1291 rsa = &it->second;
1292
1293 return rsa;
d01949b6
AC
1294}
1295
0b83947e
DJ
1296/* Fetch the global remote target state. */
1297
6b8edb51
PA
1298remote_state *
1299remote_target::get_remote_state ()
0b83947e
DJ
1300{
1301 /* Make sure that the remote architecture state has been
1302 initialized, because doing so might reallocate rs->buf. Any
1303 function which calls getpkt also needs to be mindful of changes
1304 to rs->buf, but this call limits the number of places which run
1305 into trouble. */
3c69da40 1306 m_remote_state.get_remote_arch_state (target_gdbarch ());
0b83947e 1307
3c69da40 1308 return &m_remote_state;
0b83947e
DJ
1309}
1310
94585166
DB
1311/* Fetch the remote exec-file from the current program space. */
1312
1313static const char *
1314get_remote_exec_file (void)
1315{
1316 char *remote_exec_file;
1317
7b4a314f 1318 remote_exec_file = remote_pspace_data.get (current_program_space);
94585166
DB
1319 if (remote_exec_file == NULL)
1320 return "";
1321
1322 return remote_exec_file;
1323}
1324
1325/* Set the remote exec file for PSPACE. */
1326
1327static void
1328set_pspace_remote_exec_file (struct program_space *pspace,
7b4a314f 1329 const char *remote_exec_file)
94585166 1330{
7b4a314f 1331 char *old_file = remote_pspace_data.get (pspace);
94585166
DB
1332
1333 xfree (old_file);
7b4a314f 1334 remote_pspace_data.set (pspace, xstrdup (remote_exec_file));
94585166
DB
1335}
1336
1337/* The "set/show remote exec-file" set command hook. */
1338
1339static void
eb4c3f4a 1340set_remote_exec_file (const char *ignored, int from_tty,
94585166
DB
1341 struct cmd_list_element *c)
1342{
1343 gdb_assert (remote_exec_file_var != NULL);
1344 set_pspace_remote_exec_file (current_program_space, remote_exec_file_var);
1345}
1346
1347/* The "set/show remote exec-file" show command hook. */
1348
1349static void
1350show_remote_exec_file (struct ui_file *file, int from_tty,
1351 struct cmd_list_element *cmd, const char *value)
1352{
acdf84a6 1353 fprintf_filtered (file, "%s\n", get_remote_exec_file ());
94585166
DB
1354}
1355
c21236dc
PA
1356static int
1357map_regcache_remote_table (struct gdbarch *gdbarch, struct packet_reg *regs)
d01949b6 1358{
74ca34ce 1359 int regnum, num_remote_regs, offset;
74ca34ce 1360 struct packet_reg **remote_regs;
ea9c271d 1361
4a22f64d 1362 for (regnum = 0; regnum < gdbarch_num_regs (gdbarch); regnum++)
ad10f812 1363 {
c21236dc 1364 struct packet_reg *r = &regs[regnum];
baef701f 1365
4a22f64d 1366 if (register_size (gdbarch, regnum) == 0)
baef701f
DJ
1367 /* Do not try to fetch zero-sized (placeholder) registers. */
1368 r->pnum = -1;
1369 else
1370 r->pnum = gdbarch_remote_register_number (gdbarch, regnum);
1371
b323314b 1372 r->regnum = regnum;
74ca34ce
DJ
1373 }
1374
1375 /* Define the g/G packet format as the contents of each register
1376 with a remote protocol number, in order of ascending protocol
1377 number. */
1378
224c3ddb 1379 remote_regs = XALLOCAVEC (struct packet_reg *, gdbarch_num_regs (gdbarch));
f57d151a 1380 for (num_remote_regs = 0, regnum = 0;
4a22f64d 1381 regnum < gdbarch_num_regs (gdbarch);
f57d151a 1382 regnum++)
c21236dc
PA
1383 if (regs[regnum].pnum != -1)
1384 remote_regs[num_remote_regs++] = &regs[regnum];
7d58c67d 1385
39ef2f62
CB
1386 std::sort (remote_regs, remote_regs + num_remote_regs,
1387 [] (const packet_reg *a, const packet_reg *b)
1388 { return a->pnum < b->pnum; });
74ca34ce
DJ
1389
1390 for (regnum = 0, offset = 0; regnum < num_remote_regs; regnum++)
1391 {
1392 remote_regs[regnum]->in_g_packet = 1;
1393 remote_regs[regnum]->offset = offset;
4a22f64d 1394 offset += register_size (gdbarch, remote_regs[regnum]->regnum);
ad10f812
AC
1395 }
1396
c21236dc
PA
1397 return offset;
1398}
1399
1400/* Given the architecture described by GDBARCH, return the remote
1401 protocol register's number and the register's offset in the g/G
1402 packets of GDB register REGNUM, in PNUM and POFFSET respectively.
1403 If the target does not have a mapping for REGNUM, return false,
1404 otherwise, return true. */
1405
1406int
1407remote_register_number_and_offset (struct gdbarch *gdbarch, int regnum,
1408 int *pnum, int *poffset)
1409{
c21236dc
PA
1410 gdb_assert (regnum < gdbarch_num_regs (gdbarch));
1411
b80406ac 1412 std::vector<packet_reg> regs (gdbarch_num_regs (gdbarch));
c21236dc 1413
b80406ac 1414 map_regcache_remote_table (gdbarch, regs.data ());
c21236dc
PA
1415
1416 *pnum = regs[regnum].pnum;
1417 *poffset = regs[regnum].offset;
1418
c21236dc
PA
1419 return *pnum != -1;
1420}
1421
9d6eea31 1422remote_arch_state::remote_arch_state (struct gdbarch *gdbarch)
c21236dc 1423{
c21236dc
PA
1424 /* Use the architecture to build a regnum<->pnum table, which will be
1425 1:1 unless a feature set specifies otherwise. */
9d6eea31 1426 this->regs.reset (new packet_reg [gdbarch_num_regs (gdbarch)] ());
c21236dc 1427
74ca34ce
DJ
1428 /* Record the maximum possible size of the g packet - it may turn out
1429 to be smaller. */
9d6eea31
PA
1430 this->sizeof_g_packet
1431 = map_regcache_remote_table (gdbarch, this->regs.get ());
74ca34ce 1432
0df8b418 1433 /* Default maximum number of characters in a packet body. Many
d01949b6
AC
1434 remote stubs have a hardwired buffer size of 400 bytes
1435 (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
1436 as the maximum packet-size to ensure that the packet and an extra
1437 NUL character can always fit in the buffer. This stops GDB
1438 trashing stubs that try to squeeze an extra NUL into what is
ea9c271d 1439 already a full buffer (As of 1999-12-04 that was most stubs). */
9d6eea31 1440 this->remote_packet_size = 400 - 1;
d01949b6 1441
ea9c271d 1442 /* This one is filled in when a ``g'' packet is received. */
9d6eea31 1443 this->actual_register_packet_size = 0;
ea9c271d
DJ
1444
1445 /* Should rsa->sizeof_g_packet needs more space than the
0df8b418
MS
1446 default, adjust the size accordingly. Remember that each byte is
1447 encoded as two characters. 32 is the overhead for the packet
1448 header / footer. NOTE: cagney/1999-10-26: I suspect that 8
d01949b6 1449 (``$NN:G...#NN'') is a better guess, the below has been padded a
23860348 1450 little. */
9d6eea31
PA
1451 if (this->sizeof_g_packet > ((this->remote_packet_size - 32) / 2))
1452 this->remote_packet_size = (this->sizeof_g_packet * 2 + 32);
ea9c271d
DJ
1453}
1454
6b8edb51
PA
1455/* Get a pointer to the current remote target. If not connected to a
1456 remote target, return NULL. */
1457
1458static remote_target *
1459get_current_remote_target ()
1460{
5b6d1e4f 1461 target_ops *proc_target = current_inferior ()->process_target ();
6b8edb51
PA
1462 return dynamic_cast<remote_target *> (proc_target);
1463}
1464
ea9c271d
DJ
1465/* Return the current allowed size of a remote packet. This is
1466 inferred from the current architecture, and should be used to
1467 limit the length of outgoing packets. */
6b8edb51
PA
1468long
1469remote_target::get_remote_packet_size ()
ea9c271d 1470{
be2a5f71 1471 struct remote_state *rs = get_remote_state ();
9d6eea31 1472 remote_arch_state *rsa = rs->get_remote_arch_state (target_gdbarch ());
ea9c271d 1473
be2a5f71
DJ
1474 if (rs->explicit_packet_size)
1475 return rs->explicit_packet_size;
1476
ea9c271d 1477 return rsa->remote_packet_size;
d01949b6
AC
1478}
1479
ad10f812 1480static struct packet_reg *
5cd63fda
PA
1481packet_reg_from_regnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
1482 long regnum)
ad10f812 1483{
5cd63fda 1484 if (regnum < 0 && regnum >= gdbarch_num_regs (gdbarch))
b323314b
AC
1485 return NULL;
1486 else
ad10f812 1487 {
ea9c271d 1488 struct packet_reg *r = &rsa->regs[regnum];
a744cf53 1489
b323314b
AC
1490 gdb_assert (r->regnum == regnum);
1491 return r;
ad10f812 1492 }
ad10f812
AC
1493}
1494
1495static struct packet_reg *
5cd63fda
PA
1496packet_reg_from_pnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
1497 LONGEST pnum)
ad10f812 1498{
b323314b 1499 int i;
a744cf53 1500
5cd63fda 1501 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
ad10f812 1502 {
ea9c271d 1503 struct packet_reg *r = &rsa->regs[i];
a744cf53 1504
b323314b
AC
1505 if (r->pnum == pnum)
1506 return r;
ad10f812
AC
1507 }
1508 return NULL;
d01949b6
AC
1509}
1510
9a7071a8
JB
1511/* Allow the user to specify what sequence to send to the remote
1512 when he requests a program interruption: Although ^C is usually
1513 what remote systems expect (this is the default, here), it is
1514 sometimes preferable to send a break. On other systems such
1515 as the Linux kernel, a break followed by g, which is Magic SysRq g
1516 is required in order to interrupt the execution. */
1517const char interrupt_sequence_control_c[] = "Ctrl-C";
1518const char interrupt_sequence_break[] = "BREAK";
1519const char interrupt_sequence_break_g[] = "BREAK-g";
40478521 1520static const char *const interrupt_sequence_modes[] =
9a7071a8
JB
1521 {
1522 interrupt_sequence_control_c,
1523 interrupt_sequence_break,
1524 interrupt_sequence_break_g,
1525 NULL
1526 };
1527static const char *interrupt_sequence_mode = interrupt_sequence_control_c;
1528
1529static void
1530show_interrupt_sequence (struct ui_file *file, int from_tty,
1531 struct cmd_list_element *c,
1532 const char *value)
1533{
1534 if (interrupt_sequence_mode == interrupt_sequence_control_c)
1535 fprintf_filtered (file,
1536 _("Send the ASCII ETX character (Ctrl-c) "
1537 "to the remote target to interrupt the "
1538 "execution of the program.\n"));
1539 else if (interrupt_sequence_mode == interrupt_sequence_break)
1540 fprintf_filtered (file,
1541 _("send a break signal to the remote target "
1542 "to interrupt the execution of the program.\n"));
1543 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
1544 fprintf_filtered (file,
1545 _("Send a break signal and 'g' a.k.a. Magic SysRq g to "
1546 "the remote target to interrupt the execution "
1547 "of Linux kernel.\n"));
1548 else
1549 internal_error (__FILE__, __LINE__,
1550 _("Invalid value for interrupt_sequence_mode: %s."),
1551 interrupt_sequence_mode);
1552}
6426a772 1553
9a7071a8
JB
1554/* This boolean variable specifies whether interrupt_sequence is sent
1555 to the remote target when gdb connects to it.
1556 This is mostly needed when you debug the Linux kernel: The Linux kernel
1557 expects BREAK g which is Magic SysRq g for connecting gdb. */
491144b5 1558static bool interrupt_on_connect = false;
c906108c 1559
9a7071a8
JB
1560/* This variable is used to implement the "set/show remotebreak" commands.
1561 Since these commands are now deprecated in favor of "set/show remote
1562 interrupt-sequence", it no longer has any effect on the code. */
491144b5 1563static bool remote_break;
c906108c 1564
9a7071a8 1565static void
eb4c3f4a 1566set_remotebreak (const char *args, int from_tty, struct cmd_list_element *c)
9a7071a8
JB
1567{
1568 if (remote_break)
1569 interrupt_sequence_mode = interrupt_sequence_break;
1570 else
1571 interrupt_sequence_mode = interrupt_sequence_control_c;
1572}
1573
1574static void
1575show_remotebreak (struct ui_file *file, int from_tty,
1576 struct cmd_list_element *c,
1577 const char *value)
1578{
1579}
1580
c906108c
SS
1581/* This variable sets the number of bits in an address that are to be
1582 sent in a memory ("M" or "m") packet. Normally, after stripping
0df8b418 1583 leading zeros, the entire address would be sent. This variable
c906108c
SS
1584 restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
1585 initial implementation of remote.c restricted the address sent in
1586 memory packets to ``host::sizeof long'' bytes - (typically 32
1587 bits). Consequently, for 64 bit targets, the upper 32 bits of an
1588 address was never sent. Since fixing this bug may cause a break in
85102364 1589 some remote targets this variable is principally provided to
23860348 1590 facilitate backward compatibility. */
c906108c 1591
883b9c6c 1592static unsigned int remote_address_size;
c906108c 1593
11cf8741 1594\f
11cf8741 1595/* User configurable variables for the number of characters in a
ea9c271d
DJ
1596 memory read/write packet. MIN (rsa->remote_packet_size,
1597 rsa->sizeof_g_packet) is the default. Some targets need smaller
24b06219 1598 values (fifo overruns, et.al.) and some users need larger values
ad10f812
AC
1599 (speed up transfers). The variables ``preferred_*'' (the user
1600 request), ``current_*'' (what was actually set) and ``forced_*''
23860348 1601 (Positive - a soft limit, negative - a hard limit). */
11cf8741
JM
1602
1603struct memory_packet_config
1604{
a121b7c1 1605 const char *name;
11cf8741
JM
1606 long size;
1607 int fixed_p;
1608};
1609
cc0be08f
PA
1610/* The default max memory-write-packet-size, when the setting is
1611 "fixed". The 16k is historical. (It came from older GDB's using
1612 alloca for buffers and the knowledge (folklore?) that some hosts
1613 don't cope very well with large alloca calls.) */
1614#define DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED 16384
a5c0808e
PA
1615
1616/* The minimum remote packet size for memory transfers. Ensures we
1617 can write at least one byte. */
1618#define MIN_MEMORY_PACKET_SIZE 20
1619
cc0be08f
PA
1620/* Get the memory packet size, assuming it is fixed. */
1621
1622static long
1623get_fixed_memory_packet_size (struct memory_packet_config *config)
1624{
1625 gdb_assert (config->fixed_p);
1626
1627 if (config->size <= 0)
1628 return DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED;
1629 else
1630 return config->size;
1631}
1632
11cf8741
JM
1633/* Compute the current size of a read/write packet. Since this makes
1634 use of ``actual_register_packet_size'' the computation is dynamic. */
1635
6b8edb51
PA
1636long
1637remote_target::get_memory_packet_size (struct memory_packet_config *config)
11cf8741 1638{
d01949b6 1639 struct remote_state *rs = get_remote_state ();
9d6eea31 1640 remote_arch_state *rsa = rs->get_remote_arch_state (target_gdbarch ());
ea9c271d 1641
11cf8741
JM
1642 long what_they_get;
1643 if (config->fixed_p)
cc0be08f 1644 what_they_get = get_fixed_memory_packet_size (config);
11cf8741
JM
1645 else
1646 {
ea9c271d 1647 what_they_get = get_remote_packet_size ();
23860348 1648 /* Limit the packet to the size specified by the user. */
11cf8741
JM
1649 if (config->size > 0
1650 && what_they_get > config->size)
1651 what_they_get = config->size;
be2a5f71
DJ
1652
1653 /* Limit it to the size of the targets ``g'' response unless we have
1654 permission from the stub to use a larger packet size. */
1655 if (rs->explicit_packet_size == 0
1656 && rsa->actual_register_packet_size > 0
1657 && what_they_get > rsa->actual_register_packet_size)
1658 what_they_get = rsa->actual_register_packet_size;
11cf8741 1659 }
a5c0808e
PA
1660 if (what_they_get < MIN_MEMORY_PACKET_SIZE)
1661 what_they_get = MIN_MEMORY_PACKET_SIZE;
6d820c5c
DJ
1662
1663 /* Make sure there is room in the global buffer for this packet
1664 (including its trailing NUL byte). */
8d64371b
TT
1665 if (rs->buf.size () < what_they_get + 1)
1666 rs->buf.resize (2 * what_they_get);
6d820c5c 1667
11cf8741
JM
1668 return what_they_get;
1669}
1670
0df8b418 1671/* Update the size of a read/write packet. If they user wants
23860348 1672 something really big then do a sanity check. */
11cf8741
JM
1673
1674static void
ac88e2de 1675set_memory_packet_size (const char *args, struct memory_packet_config *config)
11cf8741
JM
1676{
1677 int fixed_p = config->fixed_p;
1678 long size = config->size;
a744cf53 1679
11cf8741 1680 if (args == NULL)
8a3fe4f8 1681 error (_("Argument required (integer, `fixed' or `limited')."));
11cf8741
JM
1682 else if (strcmp (args, "hard") == 0
1683 || strcmp (args, "fixed") == 0)
1684 fixed_p = 1;
1685 else if (strcmp (args, "soft") == 0
1686 || strcmp (args, "limit") == 0)
1687 fixed_p = 0;
1688 else
1689 {
1690 char *end;
a744cf53 1691
11cf8741
JM
1692 size = strtoul (args, &end, 0);
1693 if (args == end)
8a3fe4f8 1694 error (_("Invalid %s (bad syntax)."), config->name);
a5c0808e
PA
1695
1696 /* Instead of explicitly capping the size of a packet to or
1697 disallowing it, the user is allowed to set the size to
1698 something arbitrarily large. */
11cf8741 1699 }
a5c0808e 1700
23860348 1701 /* Extra checks? */
11cf8741
JM
1702 if (fixed_p && !config->fixed_p)
1703 {
cc0be08f
PA
1704 /* So that the query shows the correct value. */
1705 long query_size = (size <= 0
1706 ? DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED
1707 : size);
1708
e2e0b3e5
AC
1709 if (! query (_("The target may not be able to correctly handle a %s\n"
1710 "of %ld bytes. Change the packet size? "),
cc0be08f 1711 config->name, query_size))
8a3fe4f8 1712 error (_("Packet size not changed."));
11cf8741 1713 }
23860348 1714 /* Update the config. */
11cf8741
JM
1715 config->fixed_p = fixed_p;
1716 config->size = size;
1717}
1718
1719static void
1720show_memory_packet_size (struct memory_packet_config *config)
1721{
cc0be08f
PA
1722 if (config->size == 0)
1723 printf_filtered (_("The %s is 0 (default). "), config->name);
1724 else
1725 printf_filtered (_("The %s is %ld. "), config->name, config->size);
11cf8741 1726 if (config->fixed_p)
a3f17187 1727 printf_filtered (_("Packets are fixed at %ld bytes.\n"),
cc0be08f 1728 get_fixed_memory_packet_size (config));
11cf8741 1729 else
cc0be08f 1730 {
6b8edb51 1731 remote_target *remote = get_current_remote_target ();
cc0be08f 1732
6b8edb51 1733 if (remote != NULL)
cc0be08f 1734 printf_filtered (_("Packets are limited to %ld bytes.\n"),
6b8edb51 1735 remote->get_memory_packet_size (config));
cc0be08f
PA
1736 else
1737 puts_filtered ("The actual limit will be further reduced "
1738 "dependent on the target.\n");
1739 }
11cf8741
JM
1740}
1741
5b6d1e4f 1742/* FIXME: needs to be per-remote-target. */
11cf8741
JM
1743static struct memory_packet_config memory_write_packet_config =
1744{
1745 "memory-write-packet-size",
1746};
1747
1748static void
ac88e2de 1749set_memory_write_packet_size (const char *args, int from_tty)
11cf8741
JM
1750{
1751 set_memory_packet_size (args, &memory_write_packet_config);
1752}
1753
1754static void
ac88e2de 1755show_memory_write_packet_size (const char *args, int from_tty)
11cf8741
JM
1756{
1757 show_memory_packet_size (&memory_write_packet_config);
1758}
1759
055303e2
AB
1760/* Show the number of hardware watchpoints that can be used. */
1761
1762static void
1763show_hardware_watchpoint_limit (struct ui_file *file, int from_tty,
1764 struct cmd_list_element *c,
1765 const char *value)
1766{
1767 fprintf_filtered (file, _("The maximum number of target hardware "
1768 "watchpoints is %s.\n"), value);
1769}
1770
1771/* Show the length limit (in bytes) for hardware watchpoints. */
1772
1773static void
1774show_hardware_watchpoint_length_limit (struct ui_file *file, int from_tty,
1775 struct cmd_list_element *c,
1776 const char *value)
1777{
1778 fprintf_filtered (file, _("The maximum length (in bytes) of a target "
1779 "hardware watchpoint is %s.\n"), value);
1780}
1781
1782/* Show the number of hardware breakpoints that can be used. */
1783
1784static void
1785show_hardware_breakpoint_limit (struct ui_file *file, int from_tty,
1786 struct cmd_list_element *c,
1787 const char *value)
1788{
1789 fprintf_filtered (file, _("The maximum number of target hardware "
1790 "breakpoints is %s.\n"), value);
1791}
1792
6cc8564b
LM
1793/* Controls the maximum number of characters to display in the debug output
1794 for each remote packet. The remaining characters are omitted. */
1795
1796static int remote_packet_max_chars = 512;
1797
1798/* Show the maximum number of characters to display for each remote packet
1799 when remote debugging is enabled. */
1800
1801static void
1802show_remote_packet_max_chars (struct ui_file *file, int from_tty,
1803 struct cmd_list_element *c,
1804 const char *value)
1805{
1806 fprintf_filtered (file, _("Number of remote packet characters to "
1807 "display is %s.\n"), value);
1808}
1809
6b8edb51
PA
1810long
1811remote_target::get_memory_write_packet_size ()
11cf8741
JM
1812{
1813 return get_memory_packet_size (&memory_write_packet_config);
1814}
1815
5b6d1e4f 1816/* FIXME: needs to be per-remote-target. */
11cf8741
JM
1817static struct memory_packet_config memory_read_packet_config =
1818{
1819 "memory-read-packet-size",
1820};
1821
1822static void
ac88e2de 1823set_memory_read_packet_size (const char *args, int from_tty)
11cf8741
JM
1824{
1825 set_memory_packet_size (args, &memory_read_packet_config);
1826}
1827
1828static void
ac88e2de 1829show_memory_read_packet_size (const char *args, int from_tty)
11cf8741
JM
1830{
1831 show_memory_packet_size (&memory_read_packet_config);
1832}
1833
6b8edb51
PA
1834long
1835remote_target::get_memory_read_packet_size ()
11cf8741
JM
1836{
1837 long size = get_memory_packet_size (&memory_read_packet_config);
a744cf53 1838
11cf8741
JM
1839 /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
1840 extra buffer size argument before the memory read size can be
ea9c271d
DJ
1841 increased beyond this. */
1842 if (size > get_remote_packet_size ())
1843 size = get_remote_packet_size ();
11cf8741
JM
1844 return size;
1845}
1846
11cf8741 1847\f
5a2468f5 1848
5a2468f5
JM
1849struct packet_config
1850 {
bb572ddd
DJ
1851 const char *name;
1852 const char *title;
4082afcc
PA
1853
1854 /* If auto, GDB auto-detects support for this packet or feature,
1855 either through qSupported, or by trying the packet and looking
1856 at the response. If true, GDB assumes the target supports this
ca4f7f8b
PA
1857 packet. If false, the packet is disabled. Configs that don't
1858 have an associated command always have this set to auto. */
7f19b9a2 1859 enum auto_boolean detect;
4082afcc
PA
1860
1861 /* Does the target support this packet? */
5a2468f5
JM
1862 enum packet_support support;
1863 };
1864
4082afcc
PA
1865static enum packet_support packet_config_support (struct packet_config *config);
1866static enum packet_support packet_support (int packet);
5a2468f5
JM
1867
1868static void
fba45db2 1869show_packet_config_cmd (struct packet_config *config)
5a2468f5 1870{
a121b7c1 1871 const char *support = "internal-error";
a744cf53 1872
4082afcc 1873 switch (packet_config_support (config))
5a2468f5
JM
1874 {
1875 case PACKET_ENABLE:
1876 support = "enabled";
1877 break;
1878 case PACKET_DISABLE:
1879 support = "disabled";
1880 break;
1881 case PACKET_SUPPORT_UNKNOWN:
1882 support = "unknown";
1883 break;
1884 }
1885 switch (config->detect)
1886 {
7f19b9a2 1887 case AUTO_BOOLEAN_AUTO:
3e43a32a
MS
1888 printf_filtered (_("Support for the `%s' packet "
1889 "is auto-detected, currently %s.\n"),
37a105a1 1890 config->name, support);
5a2468f5 1891 break;
7f19b9a2
AC
1892 case AUTO_BOOLEAN_TRUE:
1893 case AUTO_BOOLEAN_FALSE:
37a105a1
DJ
1894 printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
1895 config->name, support);
8e248173 1896 break;
5a2468f5
JM
1897 }
1898}
1899
1900static void
bb572ddd
DJ
1901add_packet_config_cmd (struct packet_config *config, const char *name,
1902 const char *title, int legacy)
d471ea57 1903{
5a2468f5
JM
1904 char *set_doc;
1905 char *show_doc;
d471ea57 1906 char *cmd_name;
3ed07be4 1907
5a2468f5
JM
1908 config->name = name;
1909 config->title = title;
590042fc 1910 set_doc = xstrprintf ("Set use of remote protocol `%s' (%s) packet.",
b435e160 1911 name, title);
3e43a32a 1912 show_doc = xstrprintf ("Show current use of remote "
590042fc 1913 "protocol `%s' (%s) packet.",
b435e160 1914 name, title);
d471ea57 1915 /* set/show TITLE-packet {auto,on,off} */
b435e160 1916 cmd_name = xstrprintf ("%s-packet", title);
e9e68a56 1917 add_setshow_auto_boolean_cmd (cmd_name, class_obscure,
3e43a32a
MS
1918 &config->detect, set_doc,
1919 show_doc, NULL, /* help_doc */
4082afcc 1920 NULL,
bb572ddd
DJ
1921 show_remote_protocol_packet_cmd,
1922 &remote_set_cmdlist, &remote_show_cmdlist);
1eefb858
TT
1923 /* The command code copies the documentation strings. */
1924 xfree (set_doc);
1925 xfree (show_doc);
23860348 1926 /* set/show remote NAME-packet {auto,on,off} -- legacy. */
d471ea57
AC
1927 if (legacy)
1928 {
1929 char *legacy_name;
a744cf53 1930
b435e160 1931 legacy_name = xstrprintf ("%s-packet", name);
d471ea57 1932 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
bb572ddd 1933 &remote_set_cmdlist);
d471ea57 1934 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
bb572ddd 1935 &remote_show_cmdlist);
d471ea57 1936 }
5a2468f5
JM
1937}
1938
d471ea57 1939static enum packet_result
a76d924d 1940packet_check_result (const char *buf)
5a2468f5 1941{
d471ea57 1942 if (buf[0] != '\0')
5a2468f5 1943 {
d471ea57 1944 /* The stub recognized the packet request. Check that the
23860348 1945 operation succeeded. */
a76d924d
DJ
1946 if (buf[0] == 'E'
1947 && isxdigit (buf[1]) && isxdigit (buf[2])
1948 && buf[3] == '\0')
85102364 1949 /* "Enn" - definitely an error. */
a76d924d
DJ
1950 return PACKET_ERROR;
1951
1952 /* Always treat "E." as an error. This will be used for
1953 more verbose error messages, such as E.memtypes. */
1954 if (buf[0] == 'E' && buf[1] == '.')
1955 return PACKET_ERROR;
1956
1957 /* The packet may or may not be OK. Just assume it is. */
1958 return PACKET_OK;
1959 }
1960 else
1961 /* The stub does not support the packet. */
1962 return PACKET_UNKNOWN;
1963}
1964
8d64371b
TT
1965static enum packet_result
1966packet_check_result (const gdb::char_vector &buf)
1967{
1968 return packet_check_result (buf.data ());
1969}
1970
a76d924d
DJ
1971static enum packet_result
1972packet_ok (const char *buf, struct packet_config *config)
1973{
1974 enum packet_result result;
1975
4082afcc
PA
1976 if (config->detect != AUTO_BOOLEAN_TRUE
1977 && config->support == PACKET_DISABLE)
1978 internal_error (__FILE__, __LINE__,
1979 _("packet_ok: attempt to use a disabled packet"));
1980
a76d924d
DJ
1981 result = packet_check_result (buf);
1982 switch (result)
1983 {
1984 case PACKET_OK:
1985 case PACKET_ERROR:
1986 /* The stub recognized the packet request. */
4082afcc 1987 if (config->support == PACKET_SUPPORT_UNKNOWN)
d471ea57 1988 {
d471ea57
AC
1989 if (remote_debug)
1990 fprintf_unfiltered (gdb_stdlog,
4082afcc
PA
1991 "Packet %s (%s) is supported\n",
1992 config->name, config->title);
d471ea57 1993 config->support = PACKET_ENABLE;
d471ea57 1994 }
a76d924d
DJ
1995 break;
1996 case PACKET_UNKNOWN:
23860348 1997 /* The stub does not support the packet. */
4082afcc
PA
1998 if (config->detect == AUTO_BOOLEAN_AUTO
1999 && config->support == PACKET_ENABLE)
d471ea57 2000 {
4082afcc
PA
2001 /* If the stub previously indicated that the packet was
2002 supported then there is a protocol error. */
2003 error (_("Protocol error: %s (%s) conflicting enabled responses."),
2004 config->name, config->title);
2005 }
2006 else if (config->detect == AUTO_BOOLEAN_TRUE)
2007 {
2008 /* The user set it wrong. */
2009 error (_("Enabled packet %s (%s) not recognized by stub"),
2010 config->name, config->title);
d471ea57 2011 }
4082afcc
PA
2012
2013 if (remote_debug)
2014 fprintf_unfiltered (gdb_stdlog,
2015 "Packet %s (%s) is NOT supported\n",
2016 config->name, config->title);
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
2731 if (remote_debug)
2732 {
2733 fprintf_unfiltered (gdb_stdlog,
2734 "remote_set_syscall_catchpoint "
2735 "pid %d needed %d any_count %d n_sysno %d\n",
2736 pid, needed, any_count, n_sysno);
2737 }
2738
1b81856f 2739 std::string built_packet;
82075af2
JS
2740 if (needed)
2741 {
2742 /* Prepare a packet with the sysno list, assuming max 8+1
2743 characters for a sysno. If the resulting packet size is too
2744 big, fallback on the non-selective packet. */
2745 const int maxpktsz = strlen ("QCatchSyscalls:1") + n_sysno * 9 + 1;
1b81856f
PA
2746 built_packet.reserve (maxpktsz);
2747 built_packet = "QCatchSyscalls:1";
649a140c 2748 if (any_count == 0)
82075af2 2749 {
649a140c
PA
2750 /* Add in each syscall to be caught. */
2751 for (size_t i = 0; i < syscall_counts.size (); i++)
82075af2 2752 {
649a140c
PA
2753 if (syscall_counts[i] != 0)
2754 string_appendf (built_packet, ";%zx", i);
82075af2
JS
2755 }
2756 }
1b81856f 2757 if (built_packet.size () > get_remote_packet_size ())
82075af2
JS
2758 {
2759 /* catch_packet too big. Fallback to less efficient
2760 non selective mode, with GDB doing the filtering. */
b80406ac 2761 catch_packet = "QCatchSyscalls:1";
82075af2 2762 }
b80406ac 2763 else
1b81856f 2764 catch_packet = built_packet.c_str ();
82075af2
JS
2765 }
2766 else
b80406ac 2767 catch_packet = "QCatchSyscalls:0";
82075af2 2768
b80406ac 2769 struct remote_state *rs = get_remote_state ();
82075af2 2770
b80406ac 2771 putpkt (catch_packet);
8d64371b 2772 getpkt (&rs->buf, 0);
b80406ac
TT
2773 result = packet_ok (rs->buf, &remote_protocol_packets[PACKET_QCatchSyscalls]);
2774 if (result == PACKET_OK)
2775 return 0;
2776 else
2777 return -1;
82075af2
JS
2778}
2779
9b224c5e
PA
2780/* If 'QProgramSignals' is supported, tell the remote stub what
2781 signals it should pass through to the inferior when detaching. */
2782
f6ac5f3d 2783void
adc6a863 2784remote_target::program_signals (gdb::array_view<const unsigned char> signals)
9b224c5e 2785{
4082afcc 2786 if (packet_support (PACKET_QProgramSignals) != PACKET_DISABLE)
9b224c5e
PA
2787 {
2788 char *packet, *p;
adc6a863 2789 int count = 0;
5e4a05c4 2790 struct remote_state *rs = get_remote_state ();
9b224c5e 2791
adc6a863
PA
2792 gdb_assert (signals.size () < 256);
2793 for (size_t i = 0; i < signals.size (); i++)
9b224c5e
PA
2794 {
2795 if (signals[i])
2796 count++;
2797 }
224c3ddb 2798 packet = (char *) xmalloc (count * 3 + strlen ("QProgramSignals:") + 1);
9b224c5e
PA
2799 strcpy (packet, "QProgramSignals:");
2800 p = packet + strlen (packet);
adc6a863 2801 for (size_t i = 0; i < signals.size (); i++)
9b224c5e
PA
2802 {
2803 if (signal_pass_state (i))
2804 {
2805 if (i >= 16)
2806 *p++ = tohex (i >> 4);
2807 *p++ = tohex (i & 15);
2808 if (count)
2809 *p++ = ';';
2810 else
2811 break;
2812 count--;
2813 }
2814 }
2815 *p = 0;
5e4a05c4
TT
2816 if (!rs->last_program_signals_packet
2817 || strcmp (rs->last_program_signals_packet, packet) != 0)
9b224c5e 2818 {
9b224c5e 2819 putpkt (packet);
8d64371b 2820 getpkt (&rs->buf, 0);
8dc5b319 2821 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QProgramSignals]);
5e4a05c4
TT
2822 xfree (rs->last_program_signals_packet);
2823 rs->last_program_signals_packet = packet;
9b224c5e
PA
2824 }
2825 else
2826 xfree (packet);
2827 }
2828}
2829
79d7f229
PA
2830/* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
2831 MINUS_ONE_PTID, set the thread to -1, so the stub returns the
2832 thread. If GEN is set, set the general thread, if not, then set
2833 the step/continue thread. */
6b8edb51
PA
2834void
2835remote_target::set_thread (ptid_t ptid, int gen)
c906108c 2836{
d01949b6 2837 struct remote_state *rs = get_remote_state ();
47f8a51d 2838 ptid_t state = gen ? rs->general_thread : rs->continue_thread;
8d64371b
TT
2839 char *buf = rs->buf.data ();
2840 char *endbuf = buf + get_remote_packet_size ();
c906108c 2841
d7e15655 2842 if (state == ptid)
c906108c
SS
2843 return;
2844
79d7f229
PA
2845 *buf++ = 'H';
2846 *buf++ = gen ? 'g' : 'c';
d7e15655 2847 if (ptid == magic_null_ptid)
79d7f229 2848 xsnprintf (buf, endbuf - buf, "0");
d7e15655 2849 else if (ptid == any_thread_ptid)
79d7f229 2850 xsnprintf (buf, endbuf - buf, "0");
d7e15655 2851 else if (ptid == minus_one_ptid)
79d7f229
PA
2852 xsnprintf (buf, endbuf - buf, "-1");
2853 else
82f73884 2854 write_ptid (buf, endbuf, ptid);
79d7f229 2855 putpkt (rs->buf);
8d64371b 2856 getpkt (&rs->buf, 0);
c906108c 2857 if (gen)
47f8a51d 2858 rs->general_thread = ptid;
c906108c 2859 else
47f8a51d 2860 rs->continue_thread = ptid;
c906108c 2861}
79d7f229 2862
6b8edb51
PA
2863void
2864remote_target::set_general_thread (ptid_t ptid)
79d7f229
PA
2865{
2866 set_thread (ptid, 1);
2867}
2868
6b8edb51
PA
2869void
2870remote_target::set_continue_thread (ptid_t ptid)
79d7f229
PA
2871{
2872 set_thread (ptid, 0);
2873}
2874
3c9c4b83
PA
2875/* Change the remote current process. Which thread within the process
2876 ends up selected isn't important, as long as it is the same process
2877 as what INFERIOR_PTID points to.
2878
2879 This comes from that fact that there is no explicit notion of
2880 "selected process" in the protocol. The selected process for
2881 general operations is the process the selected general thread
2882 belongs to. */
2883
6b8edb51
PA
2884void
2885remote_target::set_general_process ()
3c9c4b83
PA
2886{
2887 struct remote_state *rs = get_remote_state ();
2888
2889 /* If the remote can't handle multiple processes, don't bother. */
8020350c 2890 if (!remote_multi_process_p (rs))
3c9c4b83
PA
2891 return;
2892
2893 /* We only need to change the remote current thread if it's pointing
2894 at some other process. */
e99b03dc 2895 if (rs->general_thread.pid () != inferior_ptid.pid ())
3c9c4b83
PA
2896 set_general_thread (inferior_ptid);
2897}
2898
c906108c 2899\f
7d1a114c
PA
2900/* Return nonzero if this is the main thread that we made up ourselves
2901 to model non-threaded targets as single-threaded. */
c906108c
SS
2902
2903static int
f6ac5f3d 2904remote_thread_always_alive (ptid_t ptid)
c906108c 2905{
d7e15655 2906 if (ptid == magic_null_ptid)
c0a2216e
PA
2907 /* The main thread is always alive. */
2908 return 1;
2909
e38504b3 2910 if (ptid.pid () != 0 && ptid.lwp () == 0)
c0a2216e
PA
2911 /* The main thread is always alive. This can happen after a
2912 vAttach, if the remote side doesn't support
2913 multi-threading. */
2914 return 1;
2915
7d1a114c
PA
2916 return 0;
2917}
2918
2919/* Return nonzero if the thread PTID is still alive on the remote
2920 system. */
2921
57810aa7 2922bool
f6ac5f3d 2923remote_target::thread_alive (ptid_t ptid)
7d1a114c
PA
2924{
2925 struct remote_state *rs = get_remote_state ();
2926 char *p, *endp;
2927
2928 /* Check if this is a thread that we made up ourselves to model
2929 non-threaded targets as single-threaded. */
f6ac5f3d 2930 if (remote_thread_always_alive (ptid))
7d1a114c
PA
2931 return 1;
2932
8d64371b
TT
2933 p = rs->buf.data ();
2934 endp = p + get_remote_packet_size ();
82f73884
PA
2935
2936 *p++ = 'T';
2937 write_ptid (p, endp, ptid);
2938
2e9f7625 2939 putpkt (rs->buf);
8d64371b 2940 getpkt (&rs->buf, 0);
2e9f7625 2941 return (rs->buf[0] == 'O' && rs->buf[1] == 'K');
c906108c
SS
2942}
2943
79efa585
SM
2944/* Return a pointer to a thread name if we know it and NULL otherwise.
2945 The thread_info object owns the memory for the name. */
2946
f6ac5f3d
PA
2947const char *
2948remote_target::thread_name (struct thread_info *info)
79efa585
SM
2949{
2950 if (info->priv != NULL)
a9334058
SM
2951 {
2952 const std::string &name = get_remote_thread_info (info)->name;
2953 return !name.empty () ? name.c_str () : NULL;
2954 }
79efa585
SM
2955
2956 return NULL;
2957}
2958
c906108c
SS
2959/* About these extended threadlist and threadinfo packets. They are
2960 variable length packets but, the fields within them are often fixed
30baf67b 2961 length. They are redundant enough to send over UDP as is the
c906108c
SS
2962 remote protocol in general. There is a matching unit test module
2963 in libstub. */
2964
23860348 2965/* WARNING: This threadref data structure comes from the remote O.S.,
0df8b418 2966 libstub protocol encoding, and remote.c. It is not particularly
23860348 2967 changable. */
cce74817
JM
2968
2969/* Right now, the internal structure is int. We want it to be bigger.
0df8b418 2970 Plan to fix this. */
cce74817 2971
23860348 2972typedef int gdb_threadref; /* Internal GDB thread reference. */
cce74817 2973
9d1f7ab2 2974/* gdb_ext_thread_info is an internal GDB data structure which is
cfde0993 2975 equivalent to the reply of the remote threadinfo packet. */
cce74817
JM
2976
2977struct gdb_ext_thread_info
c5aa993b 2978 {
23860348 2979 threadref threadid; /* External form of thread reference. */
2bc416ba 2980 int active; /* Has state interesting to GDB?
23860348 2981 regs, stack. */
2bc416ba 2982 char display[256]; /* Brief state display, name,
cedea757 2983 blocked/suspended. */
23860348 2984 char shortname[32]; /* To be used to name threads. */
2bc416ba 2985 char more_display[256]; /* Long info, statistics, queue depth,
23860348 2986 whatever. */
c5aa993b 2987 };
cce74817
JM
2988
2989/* The volume of remote transfers can be limited by submitting
2990 a mask containing bits specifying the desired information.
2991 Use a union of these values as the 'selection' parameter to
0df8b418 2992 get_thread_info. FIXME: Make these TAG names more thread specific. */
cce74817
JM
2993
2994#define TAG_THREADID 1
2995#define TAG_EXISTS 2
2996#define TAG_DISPLAY 4
2997#define TAG_THREADNAME 8
c5aa993b 2998#define TAG_MOREDISPLAY 16
cce74817 2999
23860348 3000#define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
c906108c 3001
a14ed312 3002static char *unpack_nibble (char *buf, int *val);
cce74817 3003
a14ed312 3004static char *unpack_byte (char *buf, int *value);
cce74817 3005
a14ed312 3006static char *pack_int (char *buf, int value);
cce74817 3007
a14ed312 3008static char *unpack_int (char *buf, int *value);
cce74817 3009
a14ed312 3010static char *unpack_string (char *src, char *dest, int length);
cce74817 3011
23860348 3012static char *pack_threadid (char *pkt, threadref *id);
cce74817 3013
23860348 3014static char *unpack_threadid (char *inbuf, threadref *id);
cce74817 3015
23860348 3016void int_to_threadref (threadref *id, int value);
cce74817 3017
23860348 3018static int threadref_to_int (threadref *ref);
cce74817 3019
23860348 3020static void copy_threadref (threadref *dest, threadref *src);
cce74817 3021
23860348 3022static int threadmatch (threadref *dest, threadref *src);
cce74817 3023
2bc416ba 3024static char *pack_threadinfo_request (char *pkt, int mode,
23860348 3025 threadref *id);
cce74817 3026
a14ed312
KB
3027static char *pack_threadlist_request (char *pkt, int startflag,
3028 int threadcount,
23860348 3029 threadref *nextthread);
cce74817 3030
23860348 3031static int remote_newthread_step (threadref *ref, void *context);
cce74817 3032
82f73884
PA
3033
3034/* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the
3035 buffer we're allowed to write to. Returns
3036 BUF+CHARACTERS_WRITTEN. */
3037
6b8edb51
PA
3038char *
3039remote_target::write_ptid (char *buf, const char *endbuf, ptid_t ptid)
82f73884
PA
3040{
3041 int pid, tid;
3042 struct remote_state *rs = get_remote_state ();
3043
3044 if (remote_multi_process_p (rs))
3045 {
e99b03dc 3046 pid = ptid.pid ();
82f73884
PA
3047 if (pid < 0)
3048 buf += xsnprintf (buf, endbuf - buf, "p-%x.", -pid);
3049 else
3050 buf += xsnprintf (buf, endbuf - buf, "p%x.", pid);
3051 }
e38504b3 3052 tid = ptid.lwp ();
82f73884
PA
3053 if (tid < 0)
3054 buf += xsnprintf (buf, endbuf - buf, "-%x", -tid);
3055 else
3056 buf += xsnprintf (buf, endbuf - buf, "%x", tid);
3057
3058 return buf;
3059}
3060
256642e8
PA
3061/* Extract a PTID from BUF. If non-null, OBUF is set to one past the
3062 last parsed char. Returns null_ptid if no thread id is found, and
3063 throws an error if the thread id has an invalid format. */
82f73884
PA
3064
3065static ptid_t
256642e8 3066read_ptid (const char *buf, const char **obuf)
82f73884 3067{
256642e8
PA
3068 const char *p = buf;
3069 const char *pp;
82f73884 3070 ULONGEST pid = 0, tid = 0;
82f73884
PA
3071
3072 if (*p == 'p')
3073 {
3074 /* Multi-process ptid. */
3075 pp = unpack_varlen_hex (p + 1, &pid);
3076 if (*pp != '.')
b37520b6 3077 error (_("invalid remote ptid: %s"), p);
82f73884
PA
3078
3079 p = pp;
3080 pp = unpack_varlen_hex (p + 1, &tid);
3081 if (obuf)
3082 *obuf = pp;
fd79271b 3083 return ptid_t (pid, tid, 0);
82f73884
PA
3084 }
3085
3086 /* No multi-process. Just a tid. */
3087 pp = unpack_varlen_hex (p, &tid);
3088
c9f35b34
KB
3089 /* Return null_ptid when no thread id is found. */
3090 if (p == pp)
3091 {
3092 if (obuf)
3093 *obuf = pp;
3094 return null_ptid;
3095 }
3096
82f73884 3097 /* Since the stub is not sending a process id, then default to
ca19bf23
PA
3098 what's in inferior_ptid, unless it's null at this point. If so,
3099 then since there's no way to know the pid of the reported
3100 threads, use the magic number. */
d7e15655 3101 if (inferior_ptid == null_ptid)
e99b03dc 3102 pid = magic_null_ptid.pid ();
ca19bf23 3103 else
e99b03dc 3104 pid = inferior_ptid.pid ();
82f73884
PA
3105
3106 if (obuf)
3107 *obuf = pp;
fd79271b 3108 return ptid_t (pid, tid, 0);
82f73884
PA
3109}
3110
c906108c 3111static int
fba45db2 3112stubhex (int ch)
c906108c
SS
3113{
3114 if (ch >= 'a' && ch <= 'f')
3115 return ch - 'a' + 10;
3116 if (ch >= '0' && ch <= '9')
3117 return ch - '0';
3118 if (ch >= 'A' && ch <= 'F')
3119 return ch - 'A' + 10;
3120 return -1;
3121}
3122
3123static int
fba45db2 3124stub_unpack_int (char *buff, int fieldlength)
c906108c
SS
3125{
3126 int nibble;
3127 int retval = 0;
3128
3129 while (fieldlength)
3130 {
3131 nibble = stubhex (*buff++);
3132 retval |= nibble;
3133 fieldlength--;
3134 if (fieldlength)
3135 retval = retval << 4;
3136 }
3137 return retval;
3138}
3139
c906108c 3140static char *
fba45db2 3141unpack_nibble (char *buf, int *val)
c906108c 3142{
b7589f7d 3143 *val = fromhex (*buf++);
c906108c
SS
3144 return buf;
3145}
3146
c906108c 3147static char *
fba45db2 3148unpack_byte (char *buf, int *value)
c906108c
SS
3149{
3150 *value = stub_unpack_int (buf, 2);
3151 return buf + 2;
3152}
3153
3154static char *
fba45db2 3155pack_int (char *buf, int value)
c906108c
SS
3156{
3157 buf = pack_hex_byte (buf, (value >> 24) & 0xff);
3158 buf = pack_hex_byte (buf, (value >> 16) & 0xff);
3159 buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
3160 buf = pack_hex_byte (buf, (value & 0xff));
3161 return buf;
3162}
3163
3164static char *
fba45db2 3165unpack_int (char *buf, int *value)
c906108c
SS
3166{
3167 *value = stub_unpack_int (buf, 8);
3168 return buf + 8;
3169}
3170
23860348 3171#if 0 /* Currently unused, uncomment when needed. */
a14ed312 3172static char *pack_string (char *pkt, char *string);
c906108c
SS
3173
3174static char *
fba45db2 3175pack_string (char *pkt, char *string)
c906108c
SS
3176{
3177 char ch;
3178 int len;
3179
3180 len = strlen (string);
3181 if (len > 200)
23860348 3182 len = 200; /* Bigger than most GDB packets, junk??? */
c906108c
SS
3183 pkt = pack_hex_byte (pkt, len);
3184 while (len-- > 0)
3185 {
3186 ch = *string++;
3187 if ((ch == '\0') || (ch == '#'))
23860348 3188 ch = '*'; /* Protect encapsulation. */
c906108c
SS
3189 *pkt++ = ch;
3190 }
3191 return pkt;
3192}
3193#endif /* 0 (unused) */
3194
3195static char *
fba45db2 3196unpack_string (char *src, char *dest, int length)
c906108c
SS
3197{
3198 while (length--)
3199 *dest++ = *src++;
3200 *dest = '\0';
3201 return src;
3202}
3203
3204static char *
fba45db2 3205pack_threadid (char *pkt, threadref *id)
c906108c
SS
3206{
3207 char *limit;
3208 unsigned char *altid;
3209
3210 altid = (unsigned char *) id;
3211 limit = pkt + BUF_THREAD_ID_SIZE;
3212 while (pkt < limit)
3213 pkt = pack_hex_byte (pkt, *altid++);
3214 return pkt;
3215}
3216
3217
3218static char *
fba45db2 3219unpack_threadid (char *inbuf, threadref *id)
c906108c
SS
3220{
3221 char *altref;
3222 char *limit = inbuf + BUF_THREAD_ID_SIZE;
3223 int x, y;
3224
3225 altref = (char *) id;
3226
3227 while (inbuf < limit)
3228 {
3229 x = stubhex (*inbuf++);
3230 y = stubhex (*inbuf++);
3231 *altref++ = (x << 4) | y;
3232 }
3233 return inbuf;
3234}
3235
3236/* Externally, threadrefs are 64 bits but internally, they are still
0df8b418 3237 ints. This is due to a mismatch of specifications. We would like
c906108c
SS
3238 to use 64bit thread references internally. This is an adapter
3239 function. */
3240
3241void
fba45db2 3242int_to_threadref (threadref *id, int value)
c906108c
SS
3243{
3244 unsigned char *scan;
3245
3246 scan = (unsigned char *) id;
3247 {
3248 int i = 4;
3249 while (i--)
3250 *scan++ = 0;
3251 }
3252 *scan++ = (value >> 24) & 0xff;
3253 *scan++ = (value >> 16) & 0xff;
3254 *scan++ = (value >> 8) & 0xff;
3255 *scan++ = (value & 0xff);
3256}
3257
3258static int
fba45db2 3259threadref_to_int (threadref *ref)
c906108c
SS
3260{
3261 int i, value = 0;
3262 unsigned char *scan;
3263
cfd77fa1 3264 scan = *ref;
c906108c
SS
3265 scan += 4;
3266 i = 4;
3267 while (i-- > 0)
3268 value = (value << 8) | ((*scan++) & 0xff);
3269 return value;
3270}
3271
3272static void
fba45db2 3273copy_threadref (threadref *dest, threadref *src)
c906108c
SS
3274{
3275 int i;
3276 unsigned char *csrc, *cdest;
3277
3278 csrc = (unsigned char *) src;
3279 cdest = (unsigned char *) dest;
3280 i = 8;
3281 while (i--)
3282 *cdest++ = *csrc++;
3283}
3284
3285static int
fba45db2 3286threadmatch (threadref *dest, threadref *src)
c906108c 3287{
23860348 3288 /* Things are broken right now, so just assume we got a match. */
c906108c
SS
3289#if 0
3290 unsigned char *srcp, *destp;
3291 int i, result;
3292 srcp = (char *) src;
3293 destp = (char *) dest;
3294
3295 result = 1;
3296 while (i-- > 0)
3297 result &= (*srcp++ == *destp++) ? 1 : 0;
3298 return result;
3299#endif
3300 return 1;
3301}
3302
3303/*
c5aa993b
JM
3304 threadid:1, # always request threadid
3305 context_exists:2,
3306 display:4,
3307 unique_name:8,
3308 more_display:16
3309 */
c906108c
SS
3310
3311/* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
3312
3313static char *
fba45db2 3314pack_threadinfo_request (char *pkt, int mode, threadref *id)
c906108c 3315{
23860348
MS
3316 *pkt++ = 'q'; /* Info Query */
3317 *pkt++ = 'P'; /* process or thread info */
3318 pkt = pack_int (pkt, mode); /* mode */
c906108c 3319 pkt = pack_threadid (pkt, id); /* threadid */
23860348 3320 *pkt = '\0'; /* terminate */
c906108c
SS
3321 return pkt;
3322}
3323
23860348 3324/* These values tag the fields in a thread info response packet. */
c906108c 3325/* Tagging the fields allows us to request specific fields and to
23860348 3326 add more fields as time goes by. */
c906108c 3327
23860348 3328#define TAG_THREADID 1 /* Echo the thread identifier. */
c5aa993b 3329#define TAG_EXISTS 2 /* Is this process defined enough to
23860348 3330 fetch registers and its stack? */
c5aa993b 3331#define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
23860348 3332#define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
802188a7 3333#define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
23860348 3334 the process. */
c906108c 3335
6b8edb51
PA
3336int
3337remote_target::remote_unpack_thread_info_response (char *pkt,
3338 threadref *expectedref,
3339 gdb_ext_thread_info *info)
c906108c 3340{
d01949b6 3341 struct remote_state *rs = get_remote_state ();
c906108c 3342 int mask, length;
cfd77fa1 3343 int tag;
c906108c 3344 threadref ref;
8d64371b 3345 char *limit = pkt + rs->buf.size (); /* Plausible parsing limit. */
c906108c
SS
3346 int retval = 1;
3347
23860348 3348 /* info->threadid = 0; FIXME: implement zero_threadref. */
c906108c
SS
3349 info->active = 0;
3350 info->display[0] = '\0';
3351 info->shortname[0] = '\0';
3352 info->more_display[0] = '\0';
3353
23860348
MS
3354 /* Assume the characters indicating the packet type have been
3355 stripped. */
c906108c
SS
3356 pkt = unpack_int (pkt, &mask); /* arg mask */
3357 pkt = unpack_threadid (pkt, &ref);
3358
3359 if (mask == 0)
8a3fe4f8 3360 warning (_("Incomplete response to threadinfo request."));
c906108c 3361 if (!threadmatch (&ref, expectedref))
23860348 3362 { /* This is an answer to a different request. */
8a3fe4f8 3363 warning (_("ERROR RMT Thread info mismatch."));
c906108c
SS
3364 return 0;
3365 }
3366 copy_threadref (&info->threadid, &ref);
3367
405feb71 3368 /* Loop on tagged fields , try to bail if something goes wrong. */
c906108c 3369
23860348
MS
3370 /* Packets are terminated with nulls. */
3371 while ((pkt < limit) && mask && *pkt)
c906108c
SS
3372 {
3373 pkt = unpack_int (pkt, &tag); /* tag */
23860348
MS
3374 pkt = unpack_byte (pkt, &length); /* length */
3375 if (!(tag & mask)) /* Tags out of synch with mask. */
c906108c 3376 {
8a3fe4f8 3377 warning (_("ERROR RMT: threadinfo tag mismatch."));
c906108c
SS
3378 retval = 0;
3379 break;
3380 }
3381 if (tag == TAG_THREADID)
3382 {
3383 if (length != 16)
3384 {
8a3fe4f8 3385 warning (_("ERROR RMT: length of threadid is not 16."));
c906108c
SS
3386 retval = 0;
3387 break;
3388 }
3389 pkt = unpack_threadid (pkt, &ref);
3390 mask = mask & ~TAG_THREADID;
3391 continue;
3392 }
3393 if (tag == TAG_EXISTS)
3394 {
3395 info->active = stub_unpack_int (pkt, length);
3396 pkt += length;
3397 mask = mask & ~(TAG_EXISTS);
3398 if (length > 8)
3399 {
8a3fe4f8 3400 warning (_("ERROR RMT: 'exists' length too long."));
c906108c
SS
3401 retval = 0;
3402 break;
3403 }
3404 continue;
3405 }
3406 if (tag == TAG_THREADNAME)
3407 {
3408 pkt = unpack_string (pkt, &info->shortname[0], length);
3409 mask = mask & ~TAG_THREADNAME;
3410 continue;
3411 }
3412 if (tag == TAG_DISPLAY)
3413 {
3414 pkt = unpack_string (pkt, &info->display[0], length);
3415 mask = mask & ~TAG_DISPLAY;
3416 continue;
3417 }
3418 if (tag == TAG_MOREDISPLAY)
3419 {
3420 pkt = unpack_string (pkt, &info->more_display[0], length);
3421 mask = mask & ~TAG_MOREDISPLAY;
3422 continue;
3423 }
8a3fe4f8 3424 warning (_("ERROR RMT: unknown thread info tag."));
23860348 3425 break; /* Not a tag we know about. */
c906108c
SS
3426 }
3427 return retval;
3428}
3429
6b8edb51
PA
3430int
3431remote_target::remote_get_threadinfo (threadref *threadid,
3432 int fieldset,
3433 gdb_ext_thread_info *info)
c906108c 3434{
d01949b6 3435 struct remote_state *rs = get_remote_state ();
c906108c 3436 int result;
c906108c 3437
8d64371b 3438 pack_threadinfo_request (rs->buf.data (), fieldset, threadid);
2e9f7625 3439 putpkt (rs->buf);
8d64371b 3440 getpkt (&rs->buf, 0);
3084dd77
PA
3441
3442 if (rs->buf[0] == '\0')
3443 return 0;
3444
8d64371b 3445 result = remote_unpack_thread_info_response (&rs->buf[2],
23860348 3446 threadid, info);
c906108c
SS
3447 return result;
3448}
3449
c906108c
SS
3450/* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
3451
3452static char *
fba45db2
KB
3453pack_threadlist_request (char *pkt, int startflag, int threadcount,
3454 threadref *nextthread)
c906108c
SS
3455{
3456 *pkt++ = 'q'; /* info query packet */
3457 *pkt++ = 'L'; /* Process LIST or threadLIST request */
23860348 3458 pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */
c906108c
SS
3459 pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */
3460 pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */
3461 *pkt = '\0';
3462 return pkt;
3463}
3464
3465/* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
3466
6b8edb51
PA
3467int
3468remote_target::parse_threadlist_response (char *pkt, int result_limit,
3469 threadref *original_echo,
3470 threadref *resultlist,
3471 int *doneflag)
c906108c 3472{
d01949b6 3473 struct remote_state *rs = get_remote_state ();
c906108c
SS
3474 char *limit;
3475 int count, resultcount, done;
3476
3477 resultcount = 0;
3478 /* Assume the 'q' and 'M chars have been stripped. */
8d64371b 3479 limit = pkt + (rs->buf.size () - BUF_THREAD_ID_SIZE);
23860348 3480 /* done parse past here */
c906108c
SS
3481 pkt = unpack_byte (pkt, &count); /* count field */
3482 pkt = unpack_nibble (pkt, &done);
3483 /* The first threadid is the argument threadid. */
3484 pkt = unpack_threadid (pkt, original_echo); /* should match query packet */
3485 while ((count-- > 0) && (pkt < limit))
3486 {
3487 pkt = unpack_threadid (pkt, resultlist++);
3488 if (resultcount++ >= result_limit)
3489 break;
3490 }
3491 if (doneflag)
3492 *doneflag = done;
3493 return resultcount;
3494}
3495
6dc54d91
PA
3496/* Fetch the next batch of threads from the remote. Returns -1 if the
3497 qL packet is not supported, 0 on error and 1 on success. */
3498
6b8edb51
PA
3499int
3500remote_target::remote_get_threadlist (int startflag, threadref *nextthread,
3501 int result_limit, int *done, int *result_count,
3502 threadref *threadlist)
c906108c 3503{
d01949b6 3504 struct remote_state *rs = get_remote_state ();
c906108c
SS
3505 int result = 1;
3506
405feb71 3507 /* Truncate result limit to be smaller than the packet size. */
3e43a32a
MS
3508 if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10)
3509 >= get_remote_packet_size ())
ea9c271d 3510 result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2;
c906108c 3511
8d64371b
TT
3512 pack_threadlist_request (rs->buf.data (), startflag, result_limit,
3513 nextthread);
6d820c5c 3514 putpkt (rs->buf);
8d64371b
TT
3515 getpkt (&rs->buf, 0);
3516 if (rs->buf[0] == '\0')
6dc54d91
PA
3517 {
3518 /* Packet not supported. */
3519 return -1;
3520 }
3521
3522 *result_count =
8d64371b 3523 parse_threadlist_response (&rs->buf[2], result_limit,
6dc54d91 3524 &rs->echo_nextthread, threadlist, done);
c906108c 3525
0d031856 3526 if (!threadmatch (&rs->echo_nextthread, nextthread))
c906108c 3527 {
23860348 3528 /* FIXME: This is a good reason to drop the packet. */
405feb71
TV
3529 /* Possibly, there is a duplicate response. */
3530 /* Possibilities :
dda83cd7
SM
3531 retransmit immediatly - race conditions
3532 retransmit after timeout - yes
3533 exit
3534 wait for packet, then exit
c906108c 3535 */
8a3fe4f8 3536 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
23860348 3537 return 0; /* I choose simply exiting. */
c906108c
SS
3538 }
3539 if (*result_count <= 0)
3540 {
3541 if (*done != 1)
3542 {
8a3fe4f8 3543 warning (_("RMT ERROR : failed to get remote thread list."));
c906108c
SS
3544 result = 0;
3545 }
3546 return result; /* break; */
3547 }
3548 if (*result_count > result_limit)
3549 {
3550 *result_count = 0;
8a3fe4f8 3551 warning (_("RMT ERROR: threadlist response longer than requested."));
c906108c
SS
3552 return 0;
3553 }
3554 return result;
3555}
3556
6dc54d91
PA
3557/* Fetch the list of remote threads, with the qL packet, and call
3558 STEPFUNCTION for each thread found. Stops iterating and returns 1
3559 if STEPFUNCTION returns true. Stops iterating and returns 0 if the
3560 STEPFUNCTION returns false. If the packet is not supported,
3561 returns -1. */
c906108c 3562
6b8edb51
PA
3563int
3564remote_target::remote_threadlist_iterator (rmt_thread_action stepfunction,
3565 void *context, int looplimit)
c906108c 3566{
0d031856 3567 struct remote_state *rs = get_remote_state ();
c906108c
SS
3568 int done, i, result_count;
3569 int startflag = 1;
3570 int result = 1;
3571 int loopcount = 0;
c906108c
SS
3572
3573 done = 0;
3574 while (!done)
3575 {
3576 if (loopcount++ > looplimit)
3577 {
3578 result = 0;
8a3fe4f8 3579 warning (_("Remote fetch threadlist -infinite loop-."));
c906108c
SS
3580 break;
3581 }
6dc54d91
PA
3582 result = remote_get_threadlist (startflag, &rs->nextthread,
3583 MAXTHREADLISTRESULTS,
3584 &done, &result_count,
3585 rs->resultthreadlist);
3586 if (result <= 0)
3587 break;
23860348 3588 /* Clear for later iterations. */
c906108c
SS
3589 startflag = 0;
3590 /* Setup to resume next batch of thread references, set nextthread. */
3591 if (result_count >= 1)
0d031856
TT
3592 copy_threadref (&rs->nextthread,
3593 &rs->resultthreadlist[result_count - 1]);
c906108c
SS
3594 i = 0;
3595 while (result_count--)
6dc54d91
PA
3596 {
3597 if (!(*stepfunction) (&rs->resultthreadlist[i++], context))
3598 {
3599 result = 0;
3600 break;
3601 }
3602 }
c906108c
SS
3603 }
3604 return result;
3605}
3606
6dc54d91
PA
3607/* A thread found on the remote target. */
3608
21fe1c75 3609struct thread_item
6dc54d91 3610{
21fe1c75
SM
3611 explicit thread_item (ptid_t ptid_)
3612 : ptid (ptid_)
3613 {}
3614
3615 thread_item (thread_item &&other) = default;
3616 thread_item &operator= (thread_item &&other) = default;
3617
3618 DISABLE_COPY_AND_ASSIGN (thread_item);
3619
6dc54d91
PA
3620 /* The thread's PTID. */
3621 ptid_t ptid;
3622
21fe1c75
SM
3623 /* The thread's extra info. */
3624 std::string extra;
6dc54d91 3625
21fe1c75
SM
3626 /* The thread's name. */
3627 std::string name;
79efa585 3628
6dc54d91 3629 /* The core the thread was running on. -1 if not known. */
21fe1c75 3630 int core = -1;
f6327dcb
KB
3631
3632 /* The thread handle associated with the thread. */
21fe1c75 3633 gdb::byte_vector thread_handle;
21fe1c75 3634};
6dc54d91
PA
3635
3636/* Context passed around to the various methods listing remote
3637 threads. As new threads are found, they're added to the ITEMS
3638 vector. */
3639
3640struct threads_listing_context
3641{
21fe1c75
SM
3642 /* Return true if this object contains an entry for a thread with ptid
3643 PTID. */
6dc54d91 3644
21fe1c75
SM
3645 bool contains_thread (ptid_t ptid) const
3646 {
3647 auto match_ptid = [&] (const thread_item &item)
3648 {
3649 return item.ptid == ptid;
3650 };
80134cf5 3651
21fe1c75
SM
3652 auto it = std::find_if (this->items.begin (),
3653 this->items.end (),
3654 match_ptid);
80134cf5 3655
21fe1c75
SM
3656 return it != this->items.end ();
3657 }
80134cf5 3658
21fe1c75 3659 /* Remove the thread with ptid PTID. */
80134cf5 3660
21fe1c75
SM
3661 void remove_thread (ptid_t ptid)
3662 {
3663 auto match_ptid = [&] (const thread_item &item)
3664 {
dda83cd7 3665 return item.ptid == ptid;
21fe1c75 3666 };
cbb8991c 3667
21fe1c75
SM
3668 auto it = std::remove_if (this->items.begin (),
3669 this->items.end (),
3670 match_ptid);
cbb8991c 3671
21fe1c75
SM
3672 if (it != this->items.end ())
3673 this->items.erase (it);
3674 }
3675
3676 /* The threads found on the remote target. */
3677 std::vector<thread_item> items;
3678};
cbb8991c 3679
c906108c 3680static int
6dc54d91 3681remote_newthread_step (threadref *ref, void *data)
c906108c 3682{
19ba03f4
SM
3683 struct threads_listing_context *context
3684 = (struct threads_listing_context *) data;
21fe1c75
SM
3685 int pid = inferior_ptid.pid ();
3686 int lwp = threadref_to_int (ref);
3687 ptid_t ptid (pid, lwp);
6dc54d91 3688
21fe1c75 3689 context->items.emplace_back (ptid);
6dc54d91 3690
c906108c
SS
3691 return 1; /* continue iterator */
3692}
3693
3694#define CRAZY_MAX_THREADS 1000
3695
6b8edb51
PA
3696ptid_t
3697remote_target::remote_current_thread (ptid_t oldpid)
c906108c 3698{
d01949b6 3699 struct remote_state *rs = get_remote_state ();
c906108c
SS
3700
3701 putpkt ("qC");
8d64371b 3702 getpkt (&rs->buf, 0);
2e9f7625 3703 if (rs->buf[0] == 'Q' && rs->buf[1] == 'C')
c9f35b34 3704 {
256642e8 3705 const char *obuf;
c9f35b34
KB
3706 ptid_t result;
3707
3708 result = read_ptid (&rs->buf[2], &obuf);
3709 if (*obuf != '\0' && remote_debug)
dda83cd7
SM
3710 fprintf_unfiltered (gdb_stdlog,
3711 "warning: garbage in qC reply\n");
c9f35b34
KB
3712
3713 return result;
3714 }
c906108c
SS
3715 else
3716 return oldpid;
3717}
3718
6dc54d91 3719/* List remote threads using the deprecated qL packet. */
cce74817 3720
6b8edb51
PA
3721int
3722remote_target::remote_get_threads_with_ql (threads_listing_context *context)
c906108c 3723{
6dc54d91
PA
3724 if (remote_threadlist_iterator (remote_newthread_step, context,
3725 CRAZY_MAX_THREADS) >= 0)
3726 return 1;
3727
3728 return 0;
c906108c
SS
3729}
3730
dc146f7c
VP
3731#if defined(HAVE_LIBEXPAT)
3732
dc146f7c
VP
3733static void
3734start_thread (struct gdb_xml_parser *parser,
3735 const struct gdb_xml_element *element,
4d0fdd9b
SM
3736 void *user_data,
3737 std::vector<gdb_xml_value> &attributes)
dc146f7c 3738{
19ba03f4
SM
3739 struct threads_listing_context *data
3740 = (struct threads_listing_context *) user_data;
3d2c1d41 3741 struct gdb_xml_value *attr;
dc146f7c 3742
4d0fdd9b 3743 char *id = (char *) xml_find_attribute (attributes, "id")->value.get ();
21fe1c75
SM
3744 ptid_t ptid = read_ptid (id, NULL);
3745
3746 data->items.emplace_back (ptid);
3747 thread_item &item = data->items.back ();
dc146f7c 3748
3d2c1d41
PA
3749 attr = xml_find_attribute (attributes, "core");
3750 if (attr != NULL)
4d0fdd9b 3751 item.core = *(ULONGEST *) attr->value.get ();
dc146f7c 3752
79efa585 3753 attr = xml_find_attribute (attributes, "name");
21fe1c75 3754 if (attr != NULL)
4d0fdd9b 3755 item.name = (const char *) attr->value.get ();
79efa585 3756
f6327dcb
KB
3757 attr = xml_find_attribute (attributes, "handle");
3758 if (attr != NULL)
4d0fdd9b 3759 item.thread_handle = hex2bin ((const char *) attr->value.get ());
dc146f7c
VP
3760}
3761
3762static void
3763end_thread (struct gdb_xml_parser *parser,
3764 const struct gdb_xml_element *element,
3765 void *user_data, const char *body_text)
3766{
19ba03f4
SM
3767 struct threads_listing_context *data
3768 = (struct threads_listing_context *) user_data;
dc146f7c 3769
21fe1c75
SM
3770 if (body_text != NULL && *body_text != '\0')
3771 data->items.back ().extra = body_text;
dc146f7c
VP
3772}
3773
3774const struct gdb_xml_attribute thread_attributes[] = {
3775 { "id", GDB_XML_AF_NONE, NULL, NULL },
3776 { "core", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
79efa585 3777 { "name", GDB_XML_AF_OPTIONAL, NULL, NULL },
f6327dcb 3778 { "handle", GDB_XML_AF_OPTIONAL, NULL, NULL },
dc146f7c
VP
3779 { NULL, GDB_XML_AF_NONE, NULL, NULL }
3780};
3781
3782const struct gdb_xml_element thread_children[] = {
3783 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3784};
3785
3786const struct gdb_xml_element threads_children[] = {
3787 { "thread", thread_attributes, thread_children,
3788 GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL,
3789 start_thread, end_thread },
3790 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3791};
3792
3793const struct gdb_xml_element threads_elements[] = {
3794 { "threads", NULL, threads_children,
3795 GDB_XML_EF_NONE, NULL, NULL },
3796 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3797};
3798
3799#endif
3800
6dc54d91 3801/* List remote threads using qXfer:threads:read. */
9d1f7ab2 3802
6b8edb51
PA
3803int
3804remote_target::remote_get_threads_with_qxfer (threads_listing_context *context)
0f71a2f6 3805{
dc146f7c 3806#if defined(HAVE_LIBEXPAT)
4082afcc 3807 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
dc146f7c 3808 {
9018be22 3809 gdb::optional<gdb::char_vector> xml
6b8edb51 3810 = target_read_stralloc (this, TARGET_OBJECT_THREADS, NULL);
efc0eabd 3811
9018be22 3812 if (xml && (*xml)[0] != '\0')
dc146f7c 3813 {
6dc54d91 3814 gdb_xml_parse_quick (_("threads"), "threads.dtd",
9018be22 3815 threads_elements, xml->data (), context);
dc146f7c
VP
3816 }
3817
6dc54d91 3818 return 1;
dc146f7c
VP
3819 }
3820#endif
3821
6dc54d91
PA
3822 return 0;
3823}
3824
3825/* List remote threads using qfThreadInfo/qsThreadInfo. */
3826
6b8edb51
PA
3827int
3828remote_target::remote_get_threads_with_qthreadinfo (threads_listing_context *context)
6dc54d91
PA
3829{
3830 struct remote_state *rs = get_remote_state ();
3831
b80fafe3 3832 if (rs->use_threadinfo_query)
9d1f7ab2 3833 {
256642e8 3834 const char *bufp;
6dc54d91 3835
9d1f7ab2 3836 putpkt ("qfThreadInfo");
8d64371b
TT
3837 getpkt (&rs->buf, 0);
3838 bufp = rs->buf.data ();
9d1f7ab2 3839 if (bufp[0] != '\0') /* q packet recognized */
802188a7 3840 {
9d1f7ab2
MS
3841 while (*bufp++ == 'm') /* reply contains one or more TID */
3842 {
3843 do
3844 {
21fe1c75
SM
3845 ptid_t ptid = read_ptid (bufp, &bufp);
3846 context->items.emplace_back (ptid);
9d1f7ab2
MS
3847 }
3848 while (*bufp++ == ','); /* comma-separated list */
3849 putpkt ("qsThreadInfo");
8d64371b
TT
3850 getpkt (&rs->buf, 0);
3851 bufp = rs->buf.data ();
9d1f7ab2 3852 }
6dc54d91
PA
3853 return 1;
3854 }
3855 else
3856 {
3857 /* Packet not recognized. */
3858 rs->use_threadinfo_query = 0;
9d1f7ab2
MS
3859 }
3860 }
3861
6dc54d91
PA
3862 return 0;
3863}
3864
a05575d3
TBA
3865/* Return true if INF only has one non-exited thread. */
3866
3867static bool
3868has_single_non_exited_thread (inferior *inf)
3869{
3870 int count = 0;
3871 for (thread_info *tp ATTRIBUTE_UNUSED : inf->non_exited_threads ())
3872 if (++count > 1)
3873 break;
3874 return count == 1;
3875}
3876
e8032dde 3877/* Implement the to_update_thread_list function for the remote
6dc54d91
PA
3878 targets. */
3879
f6ac5f3d
PA
3880void
3881remote_target::update_thread_list ()
6dc54d91 3882{
6dc54d91 3883 struct threads_listing_context context;
ab970af1 3884 int got_list = 0;
e8032dde 3885
6dc54d91
PA
3886 /* We have a few different mechanisms to fetch the thread list. Try
3887 them all, starting with the most preferred one first, falling
3888 back to older methods. */
6b8edb51
PA
3889 if (remote_get_threads_with_qxfer (&context)
3890 || remote_get_threads_with_qthreadinfo (&context)
3891 || remote_get_threads_with_ql (&context))
6dc54d91 3892 {
ab970af1
PA
3893 got_list = 1;
3894
21fe1c75 3895 if (context.items.empty ()
f6ac5f3d 3896 && remote_thread_always_alive (inferior_ptid))
7d1a114c
PA
3897 {
3898 /* Some targets don't really support threads, but still
3899 reply an (empty) thread list in response to the thread
3900 listing packets, instead of replying "packet not
3901 supported". Exit early so we don't delete the main
3902 thread. */
7d1a114c
PA
3903 return;
3904 }
3905
ab970af1
PA
3906 /* CONTEXT now holds the current thread list on the remote
3907 target end. Delete GDB-side threads no longer found on the
3908 target. */
08036331 3909 for (thread_info *tp : all_threads_safe ())
cbb8991c 3910 {
5b6d1e4f
PA
3911 if (tp->inf->process_target () != this)
3912 continue;
3913
21fe1c75 3914 if (!context.contains_thread (tp->ptid))
ab970af1 3915 {
a05575d3
TBA
3916 /* Do not remove the thread if it is the last thread in
3917 the inferior. This situation happens when we have a
3918 pending exit process status to process. Otherwise we
3919 may end up with a seemingly live inferior (i.e. pid
3920 != 0) that has no threads. */
3921 if (has_single_non_exited_thread (tp->inf))
3922 continue;
3923
ab970af1 3924 /* Not found. */
00431a78 3925 delete_thread (tp);
ab970af1 3926 }
cbb8991c
DB
3927 }
3928
3929 /* Remove any unreported fork child threads from CONTEXT so
3930 that we don't interfere with follow fork, which is where
3931 creation of such threads is handled. */
3932 remove_new_fork_children (&context);
74531fed 3933
ab970af1 3934 /* And now add threads we don't know about yet to our list. */
21fe1c75 3935 for (thread_item &item : context.items)
6dc54d91 3936 {
21fe1c75 3937 if (item.ptid != null_ptid)
6dc54d91 3938 {
6dc54d91 3939 /* In non-stop mode, we assume new found threads are
0d5b594f
PA
3940 executing until proven otherwise with a stop reply.
3941 In all-stop, we can only get here if all threads are
6dc54d91 3942 stopped. */
0d5b594f 3943 int executing = target_is_non_stop_p () ? 1 : 0;
6dc54d91 3944
21fe1c75 3945 remote_notice_new_inferior (item.ptid, executing);
6dc54d91 3946
5b6d1e4f 3947 thread_info *tp = find_thread_ptid (this, item.ptid);
00431a78 3948 remote_thread_info *info = get_remote_thread_info (tp);
21fe1c75 3949 info->core = item.core;
7aabaf9d
SM
3950 info->extra = std::move (item.extra);
3951 info->name = std::move (item.name);
3952 info->thread_handle = std::move (item.thread_handle);
6dc54d91
PA
3953 }
3954 }
3955 }
3956
ab970af1
PA
3957 if (!got_list)
3958 {
3959 /* If no thread listing method is supported, then query whether
3960 each known thread is alive, one by one, with the T packet.
3961 If the target doesn't support threads at all, then this is a
3962 no-op. See remote_thread_alive. */
3963 prune_threads ();
3964 }
9d1f7ab2
MS
3965}
3966
802188a7 3967/*
9d1f7ab2
MS
3968 * Collect a descriptive string about the given thread.
3969 * The target may say anything it wants to about the thread
3970 * (typically info about its blocked / runnable state, name, etc.).
3971 * This string will appear in the info threads display.
802188a7 3972 *
9d1f7ab2
MS
3973 * Optional: targets are not required to implement this function.
3974 */
3975
f6ac5f3d
PA
3976const char *
3977remote_target::extra_thread_info (thread_info *tp)
9d1f7ab2 3978{
d01949b6 3979 struct remote_state *rs = get_remote_state ();
9d1f7ab2
MS
3980 int set;
3981 threadref id;
3982 struct gdb_ext_thread_info threadinfo;
9d1f7ab2 3983
5d93a237 3984 if (rs->remote_desc == 0) /* paranoia */
8e65ff28 3985 internal_error (__FILE__, __LINE__,
e2e0b3e5 3986 _("remote_threads_extra_info"));
9d1f7ab2 3987
d7e15655 3988 if (tp->ptid == magic_null_ptid
e38504b3 3989 || (tp->ptid.pid () != 0 && tp->ptid.lwp () == 0))
60e569b9
PA
3990 /* This is the main thread which was added by GDB. The remote
3991 server doesn't know about it. */
3992 return NULL;
3993
c76a8ea3
PA
3994 std::string &extra = get_remote_thread_info (tp)->extra;
3995
3996 /* If already have cached info, use it. */
3997 if (!extra.empty ())
3998 return extra.c_str ();
3999
4082afcc 4000 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
dc146f7c 4001 {
c76a8ea3
PA
4002 /* If we're using qXfer:threads:read, then the extra info is
4003 included in the XML. So if we didn't have anything cached,
4004 it's because there's really no extra info. */
4005 return NULL;
dc146f7c
VP
4006 }
4007
b80fafe3 4008 if (rs->use_threadextra_query)
9d1f7ab2 4009 {
8d64371b
TT
4010 char *b = rs->buf.data ();
4011 char *endb = b + get_remote_packet_size ();
82f73884
PA
4012
4013 xsnprintf (b, endb - b, "qThreadExtraInfo,");
4014 b += strlen (b);
4015 write_ptid (b, endb, tp->ptid);
4016
2e9f7625 4017 putpkt (rs->buf);
8d64371b 4018 getpkt (&rs->buf, 0);
2e9f7625 4019 if (rs->buf[0] != 0)
9d1f7ab2 4020 {
8d64371b
TT
4021 extra.resize (strlen (rs->buf.data ()) / 2);
4022 hex2bin (rs->buf.data (), (gdb_byte *) &extra[0], extra.size ());
c76a8ea3 4023 return extra.c_str ();
9d1f7ab2 4024 }
0f71a2f6 4025 }
9d1f7ab2
MS
4026
4027 /* If the above query fails, fall back to the old method. */
b80fafe3 4028 rs->use_threadextra_query = 0;
9d1f7ab2
MS
4029 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
4030 | TAG_MOREDISPLAY | TAG_DISPLAY;
e38504b3 4031 int_to_threadref (&id, tp->ptid.lwp ());
9d1f7ab2
MS
4032 if (remote_get_threadinfo (&id, set, &threadinfo))
4033 if (threadinfo.active)
0f71a2f6 4034 {
9d1f7ab2 4035 if (*threadinfo.shortname)
c76a8ea3 4036 string_appendf (extra, " Name: %s", threadinfo.shortname);
9d1f7ab2 4037 if (*threadinfo.display)
c76a8ea3
PA
4038 {
4039 if (!extra.empty ())
4040 extra += ',';
4041 string_appendf (extra, " State: %s", threadinfo.display);
4042 }
9d1f7ab2 4043 if (*threadinfo.more_display)
c5aa993b 4044 {
c76a8ea3
PA
4045 if (!extra.empty ())
4046 extra += ',';
4047 string_appendf (extra, " Priority: %s", threadinfo.more_display);
c5aa993b 4048 }
c76a8ea3 4049 return extra.c_str ();
0f71a2f6 4050 }
9d1f7ab2 4051 return NULL;
0f71a2f6 4052}
c906108c 4053\f
c5aa993b 4054
f6ac5f3d
PA
4055bool
4056remote_target::static_tracepoint_marker_at (CORE_ADDR addr,
4057 struct static_tracepoint_marker *marker)
0fb4aa4b
PA
4058{
4059 struct remote_state *rs = get_remote_state ();
8d64371b 4060 char *p = rs->buf.data ();
0fb4aa4b 4061
bba74b36 4062 xsnprintf (p, get_remote_packet_size (), "qTSTMat:");
0fb4aa4b
PA
4063 p += strlen (p);
4064 p += hexnumstr (p, addr);
4065 putpkt (rs->buf);
8d64371b
TT
4066 getpkt (&rs->buf, 0);
4067 p = rs->buf.data ();
0fb4aa4b
PA
4068
4069 if (*p == 'E')
4070 error (_("Remote failure reply: %s"), p);
4071
4072 if (*p++ == 'm')
4073 {
256642e8 4074 parse_static_tracepoint_marker_definition (p, NULL, marker);
5d9310c4 4075 return true;
0fb4aa4b
PA
4076 }
4077
5d9310c4 4078 return false;
0fb4aa4b
PA
4079}
4080
f6ac5f3d
PA
4081std::vector<static_tracepoint_marker>
4082remote_target::static_tracepoint_markers_by_strid (const char *strid)
0fb4aa4b
PA
4083{
4084 struct remote_state *rs = get_remote_state ();
5d9310c4 4085 std::vector<static_tracepoint_marker> markers;
256642e8 4086 const char *p;
5d9310c4 4087 static_tracepoint_marker marker;
0fb4aa4b
PA
4088
4089 /* Ask for a first packet of static tracepoint marker
4090 definition. */
4091 putpkt ("qTfSTM");
8d64371b
TT
4092 getpkt (&rs->buf, 0);
4093 p = rs->buf.data ();
0fb4aa4b
PA
4094 if (*p == 'E')
4095 error (_("Remote failure reply: %s"), p);
4096
0fb4aa4b
PA
4097 while (*p++ == 'm')
4098 {
0fb4aa4b
PA
4099 do
4100 {
5d9310c4 4101 parse_static_tracepoint_marker_definition (p, &p, &marker);
0fb4aa4b 4102
5d9310c4
SM
4103 if (strid == NULL || marker.str_id == strid)
4104 markers.push_back (std::move (marker));
0fb4aa4b
PA
4105 }
4106 while (*p++ == ','); /* comma-separated list */
4107 /* Ask for another packet of static tracepoint definition. */
4108 putpkt ("qTsSTM");
8d64371b
TT
4109 getpkt (&rs->buf, 0);
4110 p = rs->buf.data ();
0fb4aa4b
PA
4111 }
4112
0fb4aa4b
PA
4113 return markers;
4114}
4115
4116\f
10760264
JB
4117/* Implement the to_get_ada_task_ptid function for the remote targets. */
4118
f6ac5f3d
PA
4119ptid_t
4120remote_target::get_ada_task_ptid (long lwp, long thread)
10760264 4121{
e99b03dc 4122 return ptid_t (inferior_ptid.pid (), lwp, 0);
10760264
JB
4123}
4124\f
4125
24b06219 4126/* Restart the remote side; this is an extended protocol operation. */
c906108c 4127
6b8edb51
PA
4128void
4129remote_target::extended_remote_restart ()
c906108c 4130{
d01949b6 4131 struct remote_state *rs = get_remote_state ();
c906108c
SS
4132
4133 /* Send the restart command; for reasons I don't understand the
4134 remote side really expects a number after the "R". */
8d64371b 4135 xsnprintf (rs->buf.data (), get_remote_packet_size (), "R%x", 0);
6d820c5c 4136 putpkt (rs->buf);
c906108c 4137
ad9a8f3f 4138 remote_fileio_reset ();
c906108c
SS
4139}
4140\f
4141/* Clean up connection to a remote debugger. */
4142
f6ac5f3d
PA
4143void
4144remote_target::close ()
c906108c 4145{
048094ac 4146 /* Make sure we leave stdin registered in the event loop. */
f6ac5f3d 4147 terminal_ours ();
ce5ce7ed 4148
6b8edb51
PA
4149 trace_reset_local_state ();
4150
4151 delete this;
4152}
4153
4154remote_target::~remote_target ()
4155{
4156 struct remote_state *rs = get_remote_state ();
4157
4158 /* Check for NULL because we may get here with a partially
4159 constructed target/connection. */
4160 if (rs->remote_desc == nullptr)
4161 return;
4162
4163 serial_close (rs->remote_desc);
4164
4165 /* We are destroying the remote target, so we should discard
f48ff2a7 4166 everything of this target. */
6b8edb51 4167 discard_pending_stop_replies_in_queue ();
74531fed 4168
6b8edb51
PA
4169 if (rs->remote_async_inferior_event_token)
4170 delete_async_event_handler (&rs->remote_async_inferior_event_token);
722247f1 4171
97dfbadd 4172 delete rs->notif_state;
c906108c
SS
4173}
4174
23860348 4175/* Query the remote side for the text, data and bss offsets. */
c906108c 4176
6b8edb51
PA
4177void
4178remote_target::get_offsets ()
c906108c 4179{
d01949b6 4180 struct remote_state *rs = get_remote_state ();
2e9f7625 4181 char *buf;
085dd6e6 4182 char *ptr;
31d99776
DJ
4183 int lose, num_segments = 0, do_sections, do_segments;
4184 CORE_ADDR text_addr, data_addr, bss_addr, segments[2];
31d99776 4185
a42d7dd8 4186 if (current_program_space->symfile_object_file == NULL)
31d99776 4187 return;
c906108c
SS
4188
4189 putpkt ("qOffsets");
8d64371b
TT
4190 getpkt (&rs->buf, 0);
4191 buf = rs->buf.data ();
c906108c
SS
4192
4193 if (buf[0] == '\000')
4194 return; /* Return silently. Stub doesn't support
23860348 4195 this command. */
c906108c
SS
4196 if (buf[0] == 'E')
4197 {
8a3fe4f8 4198 warning (_("Remote failure reply: %s"), buf);
c906108c
SS
4199 return;
4200 }
4201
4202 /* Pick up each field in turn. This used to be done with scanf, but
4203 scanf will make trouble if CORE_ADDR size doesn't match
4204 conversion directives correctly. The following code will work
4205 with any size of CORE_ADDR. */
4206 text_addr = data_addr = bss_addr = 0;
4207 ptr = buf;
4208 lose = 0;
4209
61012eef 4210 if (startswith (ptr, "Text="))
c906108c
SS
4211 {
4212 ptr += 5;
4213 /* Don't use strtol, could lose on big values. */
4214 while (*ptr && *ptr != ';')
4215 text_addr = (text_addr << 4) + fromhex (*ptr++);
c906108c 4216
61012eef 4217 if (startswith (ptr, ";Data="))
31d99776
DJ
4218 {
4219 ptr += 6;
4220 while (*ptr && *ptr != ';')
4221 data_addr = (data_addr << 4) + fromhex (*ptr++);
4222 }
4223 else
4224 lose = 1;
4225
61012eef 4226 if (!lose && startswith (ptr, ";Bss="))
31d99776
DJ
4227 {
4228 ptr += 5;
4229 while (*ptr && *ptr != ';')
4230 bss_addr = (bss_addr << 4) + fromhex (*ptr++);
c906108c 4231
31d99776
DJ
4232 if (bss_addr != data_addr)
4233 warning (_("Target reported unsupported offsets: %s"), buf);
4234 }
4235 else
4236 lose = 1;
4237 }
61012eef 4238 else if (startswith (ptr, "TextSeg="))
c906108c 4239 {
31d99776
DJ
4240 ptr += 8;
4241 /* Don't use strtol, could lose on big values. */
c906108c 4242 while (*ptr && *ptr != ';')
31d99776
DJ
4243 text_addr = (text_addr << 4) + fromhex (*ptr++);
4244 num_segments = 1;
4245
61012eef 4246 if (startswith (ptr, ";DataSeg="))
31d99776
DJ
4247 {
4248 ptr += 9;
4249 while (*ptr && *ptr != ';')
4250 data_addr = (data_addr << 4) + fromhex (*ptr++);
4251 num_segments++;
4252 }
c906108c
SS
4253 }
4254 else
4255 lose = 1;
4256
4257 if (lose)
8a3fe4f8 4258 error (_("Malformed response to offset query, %s"), buf);
31d99776
DJ
4259 else if (*ptr != '\0')
4260 warning (_("Target reported unsupported offsets: %s"), buf);
c906108c 4261
a42d7dd8
TT
4262 objfile *objf = current_program_space->symfile_object_file;
4263 section_offsets offs = objf->section_offsets;
c906108c 4264
a42d7dd8 4265 symfile_segment_data_up data = get_symfile_segment_data (objf->obfd);
31d99776
DJ
4266 do_segments = (data != NULL);
4267 do_sections = num_segments == 0;
c906108c 4268
28c32713 4269 if (num_segments > 0)
31d99776 4270 {
31d99776
DJ
4271 segments[0] = text_addr;
4272 segments[1] = data_addr;
4273 }
28c32713
JB
4274 /* If we have two segments, we can still try to relocate everything
4275 by assuming that the .text and .data offsets apply to the whole
4276 text and data segments. Convert the offsets given in the packet
4277 to base addresses for symfile_map_offsets_to_segments. */
68b888ff 4278 else if (data != nullptr && data->segments.size () == 2)
28c32713 4279 {
68b888ff
SM
4280 segments[0] = data->segments[0].base + text_addr;
4281 segments[1] = data->segments[1].base + data_addr;
28c32713
JB
4282 num_segments = 2;
4283 }
8d385431
DJ
4284 /* If the object file has only one segment, assume that it is text
4285 rather than data; main programs with no writable data are rare,
4286 but programs with no code are useless. Of course the code might
4287 have ended up in the data segment... to detect that we would need
4288 the permissions here. */
68b888ff 4289 else if (data && data->segments.size () == 1)
8d385431 4290 {
68b888ff 4291 segments[0] = data->segments[0].base + text_addr;
8d385431
DJ
4292 num_segments = 1;
4293 }
28c32713
JB
4294 /* There's no way to relocate by segment. */
4295 else
4296 do_segments = 0;
31d99776
DJ
4297
4298 if (do_segments)
4299 {
a42d7dd8 4300 int ret = symfile_map_offsets_to_segments (objf->obfd,
62982abd
SM
4301 data.get (), offs,
4302 num_segments, segments);
31d99776
DJ
4303
4304 if (ret == 0 && !do_sections)
3e43a32a
MS
4305 error (_("Can not handle qOffsets TextSeg "
4306 "response with this symbol file"));
31d99776
DJ
4307
4308 if (ret > 0)
4309 do_sections = 0;
4310 }
c906108c 4311
31d99776
DJ
4312 if (do_sections)
4313 {
a42d7dd8 4314 offs[SECT_OFF_TEXT (objf)] = text_addr;
31d99776 4315
3e43a32a
MS
4316 /* This is a temporary kludge to force data and bss to use the
4317 same offsets because that's what nlmconv does now. The real
4318 solution requires changes to the stub and remote.c that I
4319 don't have time to do right now. */
31d99776 4320
a42d7dd8
TT
4321 offs[SECT_OFF_DATA (objf)] = data_addr;
4322 offs[SECT_OFF_BSS (objf)] = data_addr;
31d99776 4323 }
c906108c 4324
a42d7dd8 4325 objfile_relocate (objf, offs);
c906108c
SS
4326}
4327
9a7071a8 4328/* Send interrupt_sequence to remote target. */
6b8edb51
PA
4329
4330void
4331remote_target::send_interrupt_sequence ()
9a7071a8 4332{
5d93a237
TT
4333 struct remote_state *rs = get_remote_state ();
4334
9a7071a8 4335 if (interrupt_sequence_mode == interrupt_sequence_control_c)
c33e31fd 4336 remote_serial_write ("\x03", 1);
9a7071a8 4337 else if (interrupt_sequence_mode == interrupt_sequence_break)
5d93a237 4338 serial_send_break (rs->remote_desc);
9a7071a8
JB
4339 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
4340 {
5d93a237 4341 serial_send_break (rs->remote_desc);
c33e31fd 4342 remote_serial_write ("g", 1);
9a7071a8
JB
4343 }
4344 else
4345 internal_error (__FILE__, __LINE__,
4346 _("Invalid value for interrupt_sequence_mode: %s."),
4347 interrupt_sequence_mode);
4348}
4349
3405876a
PA
4350
4351/* If STOP_REPLY is a T stop reply, look for the "thread" register,
4352 and extract the PTID. Returns NULL_PTID if not found. */
4353
4354static ptid_t
4355stop_reply_extract_thread (char *stop_reply)
4356{
4357 if (stop_reply[0] == 'T' && strlen (stop_reply) > 3)
4358 {
256642e8 4359 const char *p;
3405876a
PA
4360
4361 /* Txx r:val ; r:val (...) */
4362 p = &stop_reply[3];
4363
4364 /* Look for "register" named "thread". */
4365 while (*p != '\0')
4366 {
256642e8 4367 const char *p1;
3405876a
PA
4368
4369 p1 = strchr (p, ':');
4370 if (p1 == NULL)
4371 return null_ptid;
4372
4373 if (strncmp (p, "thread", p1 - p) == 0)
4374 return read_ptid (++p1, &p);
4375
4376 p1 = strchr (p, ';');
4377 if (p1 == NULL)
4378 return null_ptid;
4379 p1++;
4380
4381 p = p1;
4382 }
4383 }
4384
4385 return null_ptid;
4386}
4387
b7ea362b
PA
4388/* Determine the remote side's current thread. If we have a stop
4389 reply handy (in WAIT_STATUS), maybe it's a T stop reply with a
4390 "thread" register we can extract the current thread from. If not,
4391 ask the remote which is the current thread with qC. The former
4392 method avoids a roundtrip. */
4393
6b8edb51
PA
4394ptid_t
4395remote_target::get_current_thread (char *wait_status)
b7ea362b 4396{
6a49a997 4397 ptid_t ptid = null_ptid;
b7ea362b
PA
4398
4399 /* Note we don't use remote_parse_stop_reply as that makes use of
4400 the target architecture, which we haven't yet fully determined at
4401 this point. */
4402 if (wait_status != NULL)
4403 ptid = stop_reply_extract_thread (wait_status);
d7e15655 4404 if (ptid == null_ptid)
b7ea362b
PA
4405 ptid = remote_current_thread (inferior_ptid);
4406
4407 return ptid;
4408}
4409
49c62f2e
PA
4410/* Query the remote target for which is the current thread/process,
4411 add it to our tables, and update INFERIOR_PTID. The caller is
4412 responsible for setting the state such that the remote end is ready
3405876a
PA
4413 to return the current thread.
4414
4415 This function is called after handling the '?' or 'vRun' packets,
4416 whose response is a stop reply from which we can also try
4417 extracting the thread. If the target doesn't support the explicit
4418 qC query, we infer the current thread from that stop reply, passed
4419 in in WAIT_STATUS, which may be NULL. */
49c62f2e 4420
6b8edb51
PA
4421void
4422remote_target::add_current_inferior_and_thread (char *wait_status)
49c62f2e
PA
4423{
4424 struct remote_state *rs = get_remote_state ();
9ab8741a 4425 bool fake_pid_p = false;
49c62f2e 4426
0ac55310 4427 switch_to_no_thread ();
49c62f2e 4428
0ac55310
PA
4429 /* Now, if we have thread information, update the current thread's
4430 ptid. */
87215ad1 4431 ptid_t curr_ptid = get_current_thread (wait_status);
3405876a 4432
87215ad1 4433 if (curr_ptid != null_ptid)
49c62f2e
PA
4434 {
4435 if (!remote_multi_process_p (rs))
9ab8741a 4436 fake_pid_p = true;
49c62f2e
PA
4437 }
4438 else
4439 {
4440 /* Without this, some commands which require an active target
4441 (such as kill) won't work. This variable serves (at least)
4442 double duty as both the pid of the target process (if it has
4443 such), and as a flag indicating that a target is active. */
87215ad1 4444 curr_ptid = magic_null_ptid;
9ab8741a 4445 fake_pid_p = true;
49c62f2e
PA
4446 }
4447
e99b03dc 4448 remote_add_inferior (fake_pid_p, curr_ptid.pid (), -1, 1);
49c62f2e 4449
87215ad1
SDJ
4450 /* Add the main thread and switch to it. Don't try reading
4451 registers yet, since we haven't fetched the target description
4452 yet. */
5b6d1e4f 4453 thread_info *tp = add_thread_silent (this, curr_ptid);
87215ad1 4454 switch_to_thread_no_regs (tp);
49c62f2e
PA
4455}
4456
6efcd9a8
PA
4457/* Print info about a thread that was found already stopped on
4458 connection. */
4459
4460static void
4461print_one_stopped_thread (struct thread_info *thread)
4462{
4463 struct target_waitstatus *ws = &thread->suspend.waitstatus;
4464
00431a78 4465 switch_to_thread (thread);
f2ffa92b 4466 thread->suspend.stop_pc = get_frame_pc (get_current_frame ());
6efcd9a8
PA
4467 set_current_sal_from_frame (get_current_frame ());
4468
4469 thread->suspend.waitstatus_pending_p = 0;
4470
4471 if (ws->kind == TARGET_WAITKIND_STOPPED)
4472 {
4473 enum gdb_signal sig = ws->value.sig;
4474
4475 if (signal_print_state (sig))
76727919 4476 gdb::observers::signal_received.notify (sig);
6efcd9a8 4477 }
76727919 4478 gdb::observers::normal_stop.notify (NULL, 1);
6efcd9a8
PA
4479}
4480
221e1a37
PA
4481/* Process all initial stop replies the remote side sent in response
4482 to the ? packet. These indicate threads that were already stopped
4483 on initial connection. We mark these threads as stopped and print
4484 their current frame before giving the user the prompt. */
4485
6b8edb51
PA
4486void
4487remote_target::process_initial_stop_replies (int from_tty)
221e1a37
PA
4488{
4489 int pending_stop_replies = stop_reply_queue_length ();
6efcd9a8
PA
4490 struct thread_info *selected = NULL;
4491 struct thread_info *lowest_stopped = NULL;
4492 struct thread_info *first = NULL;
221e1a37
PA
4493
4494 /* Consume the initial pending events. */
4495 while (pending_stop_replies-- > 0)
4496 {
4497 ptid_t waiton_ptid = minus_one_ptid;
4498 ptid_t event_ptid;
4499 struct target_waitstatus ws;
4500 int ignore_event = 0;
4501
4502 memset (&ws, 0, sizeof (ws));
4503 event_ptid = target_wait (waiton_ptid, &ws, TARGET_WNOHANG);
4504 if (remote_debug)
4505 print_target_wait_results (waiton_ptid, event_ptid, &ws);
4506
4507 switch (ws.kind)
4508 {
4509 case TARGET_WAITKIND_IGNORE:
4510 case TARGET_WAITKIND_NO_RESUMED:
4511 case TARGET_WAITKIND_SIGNALLED:
4512 case TARGET_WAITKIND_EXITED:
4513 /* We shouldn't see these, but if we do, just ignore. */
4514 if (remote_debug)
4515 fprintf_unfiltered (gdb_stdlog, "remote: event ignored\n");
4516 ignore_event = 1;
4517 break;
4518
4519 case TARGET_WAITKIND_EXECD:
4520 xfree (ws.value.execd_pathname);
4521 break;
4522 default:
4523 break;
4524 }
4525
4526 if (ignore_event)
4527 continue;
4528
5b6d1e4f 4529 thread_info *evthread = find_thread_ptid (this, event_ptid);
221e1a37
PA
4530
4531 if (ws.kind == TARGET_WAITKIND_STOPPED)
4532 {
4533 enum gdb_signal sig = ws.value.sig;
4534
4535 /* Stubs traditionally report SIGTRAP as initial signal,
4536 instead of signal 0. Suppress it. */
4537 if (sig == GDB_SIGNAL_TRAP)
4538 sig = GDB_SIGNAL_0;
b926417a 4539 evthread->suspend.stop_signal = sig;
6efcd9a8
PA
4540 ws.value.sig = sig;
4541 }
221e1a37 4542
b926417a 4543 evthread->suspend.waitstatus = ws;
6efcd9a8
PA
4544
4545 if (ws.kind != TARGET_WAITKIND_STOPPED
4546 || ws.value.sig != GDB_SIGNAL_0)
b926417a 4547 evthread->suspend.waitstatus_pending_p = 1;
6efcd9a8 4548
719546c4
SM
4549 set_executing (this, event_ptid, false);
4550 set_running (this, event_ptid, false);
c9d22089 4551 get_remote_thread_info (evthread)->set_not_resumed ();
6efcd9a8
PA
4552 }
4553
4554 /* "Notice" the new inferiors before anything related to
4555 registers/memory. */
5b6d1e4f 4556 for (inferior *inf : all_non_exited_inferiors (this))
6efcd9a8 4557 {
6efcd9a8
PA
4558 inf->needs_setup = 1;
4559
4560 if (non_stop)
4561 {
08036331 4562 thread_info *thread = any_live_thread_of_inferior (inf);
00431a78 4563 notice_new_inferior (thread, thread->state == THREAD_RUNNING,
6efcd9a8
PA
4564 from_tty);
4565 }
4566 }
4567
4568 /* If all-stop on top of non-stop, pause all threads. Note this
4569 records the threads' stop pc, so must be done after "noticing"
4570 the inferiors. */
4571 if (!non_stop)
4572 {
4573 stop_all_threads ();
4574
4575 /* If all threads of an inferior were already stopped, we
4576 haven't setup the inferior yet. */
5b6d1e4f 4577 for (inferior *inf : all_non_exited_inferiors (this))
6efcd9a8 4578 {
6efcd9a8
PA
4579 if (inf->needs_setup)
4580 {
08036331 4581 thread_info *thread = any_live_thread_of_inferior (inf);
6efcd9a8
PA
4582 switch_to_thread_no_regs (thread);
4583 setup_inferior (0);
4584 }
4585 }
221e1a37 4586 }
6efcd9a8
PA
4587
4588 /* Now go over all threads that are stopped, and print their current
4589 frame. If all-stop, then if there's a signalled thread, pick
4590 that as current. */
5b6d1e4f 4591 for (thread_info *thread : all_non_exited_threads (this))
6efcd9a8 4592 {
6efcd9a8
PA
4593 if (first == NULL)
4594 first = thread;
4595
4596 if (!non_stop)
00431a78 4597 thread->set_running (false);
6efcd9a8
PA
4598 else if (thread->state != THREAD_STOPPED)
4599 continue;
4600
6efcd9a8
PA
4601 if (selected == NULL
4602 && thread->suspend.waitstatus_pending_p)
4603 selected = thread;
4604
5d5658a1
PA
4605 if (lowest_stopped == NULL
4606 || thread->inf->num < lowest_stopped->inf->num
4607 || thread->per_inf_num < lowest_stopped->per_inf_num)
6efcd9a8
PA
4608 lowest_stopped = thread;
4609
4610 if (non_stop)
4611 print_one_stopped_thread (thread);
4612 }
4613
4614 /* In all-stop, we only print the status of one thread, and leave
4615 others with their status pending. */
4616 if (!non_stop)
4617 {
08036331 4618 thread_info *thread = selected;
6efcd9a8
PA
4619 if (thread == NULL)
4620 thread = lowest_stopped;
4621 if (thread == NULL)
4622 thread = first;
4623
4624 print_one_stopped_thread (thread);
4625 }
4626
4627 /* For "info program". */
08036331 4628 thread_info *thread = inferior_thread ();
6efcd9a8 4629 if (thread->state == THREAD_STOPPED)
5b6d1e4f 4630 set_last_target_status (this, inferior_ptid, thread->suspend.waitstatus);
221e1a37
PA
4631}
4632
048094ac
PA
4633/* Start the remote connection and sync state. */
4634
f6ac5f3d
PA
4635void
4636remote_target::start_remote (int from_tty, int extended_p)
c906108c 4637{
c8d104ad
PA
4638 struct remote_state *rs = get_remote_state ();
4639 struct packet_config *noack_config;
2d717e4f 4640 char *wait_status = NULL;
8621d6a9 4641
048094ac
PA
4642 /* Signal other parts that we're going through the initial setup,
4643 and so things may not be stable yet. E.g., we don't try to
4644 install tracepoints until we've relocated symbols. Also, a
4645 Ctrl-C before we're connected and synced up can't interrupt the
4646 target. Instead, it offers to drop the (potentially wedged)
4647 connection. */
4648 rs->starting_up = 1;
4649
522002f9 4650 QUIT;
c906108c 4651
9a7071a8
JB
4652 if (interrupt_on_connect)
4653 send_interrupt_sequence ();
4654
57e12211 4655 /* Ack any packet which the remote side has already sent. */
048094ac 4656 remote_serial_write ("+", 1);
1e51243a 4657
c8d104ad
PA
4658 /* The first packet we send to the target is the optional "supported
4659 packets" request. If the target can answer this, it will tell us
4660 which later probes to skip. */
4661 remote_query_supported ();
4662
d914c394 4663 /* If the stub wants to get a QAllow, compose one and send it. */
4082afcc 4664 if (packet_support (PACKET_QAllow) != PACKET_DISABLE)
f6ac5f3d 4665 set_permissions ();
d914c394 4666
57809e5e
JK
4667 /* gdbserver < 7.7 (before its fix from 2013-12-11) did reply to any
4668 unknown 'v' packet with string "OK". "OK" gets interpreted by GDB
4669 as a reply to known packet. For packet "vFile:setfs:" it is an
4670 invalid reply and GDB would return error in
4671 remote_hostio_set_filesystem, making remote files access impossible.
4672 Disable "vFile:setfs:" in such case. Do not disable other 'v' packets as
4673 other "vFile" packets get correctly detected even on gdbserver < 7.7. */
4674 {
4675 const char v_mustreplyempty[] = "vMustReplyEmpty";
4676
4677 putpkt (v_mustreplyempty);
8d64371b
TT
4678 getpkt (&rs->buf, 0);
4679 if (strcmp (rs->buf.data (), "OK") == 0)
57809e5e 4680 remote_protocol_packets[PACKET_vFile_setfs].support = PACKET_DISABLE;
8d64371b 4681 else if (strcmp (rs->buf.data (), "") != 0)
57809e5e 4682 error (_("Remote replied unexpectedly to '%s': %s"), v_mustreplyempty,
8d64371b 4683 rs->buf.data ());
57809e5e
JK
4684 }
4685
c8d104ad
PA
4686 /* Next, we possibly activate noack mode.
4687
4688 If the QStartNoAckMode packet configuration is set to AUTO,
4689 enable noack mode if the stub reported a wish for it with
4690 qSupported.
4691
4692 If set to TRUE, then enable noack mode even if the stub didn't
4693 report it in qSupported. If the stub doesn't reply OK, the
4694 session ends with an error.
4695
4696 If FALSE, then don't activate noack mode, regardless of what the
4697 stub claimed should be the default with qSupported. */
4698
4699 noack_config = &remote_protocol_packets[PACKET_QStartNoAckMode];
4082afcc 4700 if (packet_config_support (noack_config) != PACKET_DISABLE)
c8d104ad
PA
4701 {
4702 putpkt ("QStartNoAckMode");
8d64371b 4703 getpkt (&rs->buf, 0);
c8d104ad
PA
4704 if (packet_ok (rs->buf, noack_config) == PACKET_OK)
4705 rs->noack_mode = 1;
4706 }
4707
04bd08de 4708 if (extended_p)
5fe04517
PA
4709 {
4710 /* Tell the remote that we are using the extended protocol. */
4711 putpkt ("!");
8d64371b 4712 getpkt (&rs->buf, 0);
5fe04517
PA
4713 }
4714
9b224c5e
PA
4715 /* Let the target know which signals it is allowed to pass down to
4716 the program. */
4717 update_signals_program_target ();
4718
d962ef82
DJ
4719 /* Next, if the target can specify a description, read it. We do
4720 this before anything involving memory or registers. */
4721 target_find_description ();
4722
6c95b8df
PA
4723 /* Next, now that we know something about the target, update the
4724 address spaces in the program spaces. */
4725 update_address_spaces ();
4726
50c71eaf
PA
4727 /* On OSs where the list of libraries is global to all
4728 processes, we fetch them early. */
f5656ead 4729 if (gdbarch_has_global_solist (target_gdbarch ()))
e696b3ad 4730 solib_add (NULL, from_tty, auto_solib_add);
50c71eaf 4731
6efcd9a8 4732 if (target_is_non_stop_p ())
74531fed 4733 {
4082afcc 4734 if (packet_support (PACKET_QNonStop) != PACKET_ENABLE)
3e43a32a
MS
4735 error (_("Non-stop mode requested, but remote "
4736 "does not support non-stop"));
74531fed
PA
4737
4738 putpkt ("QNonStop:1");
8d64371b 4739 getpkt (&rs->buf, 0);
74531fed 4740
8d64371b
TT
4741 if (strcmp (rs->buf.data (), "OK") != 0)
4742 error (_("Remote refused setting non-stop mode with: %s"),
4743 rs->buf.data ());
74531fed
PA
4744
4745 /* Find about threads and processes the stub is already
4746 controlling. We default to adding them in the running state.
4747 The '?' query below will then tell us about which threads are
4748 stopped. */
f6ac5f3d 4749 this->update_thread_list ();
74531fed 4750 }
4082afcc 4751 else if (packet_support (PACKET_QNonStop) == PACKET_ENABLE)
74531fed
PA
4752 {
4753 /* Don't assume that the stub can operate in all-stop mode.
e6f3fa52 4754 Request it explicitly. */
74531fed 4755 putpkt ("QNonStop:0");
8d64371b 4756 getpkt (&rs->buf, 0);
74531fed 4757
8d64371b
TT
4758 if (strcmp (rs->buf.data (), "OK") != 0)
4759 error (_("Remote refused setting all-stop mode with: %s"),
4760 rs->buf.data ());
74531fed
PA
4761 }
4762
a0743c90
YQ
4763 /* Upload TSVs regardless of whether the target is running or not. The
4764 remote stub, such as GDBserver, may have some predefined or builtin
4765 TSVs, even if the target is not running. */
f6ac5f3d 4766 if (get_trace_status (current_trace_status ()) != -1)
a0743c90
YQ
4767 {
4768 struct uploaded_tsv *uploaded_tsvs = NULL;
4769
f6ac5f3d 4770 upload_trace_state_variables (&uploaded_tsvs);
a0743c90
YQ
4771 merge_uploaded_trace_state_variables (&uploaded_tsvs);
4772 }
4773
2d717e4f
DJ
4774 /* Check whether the target is running now. */
4775 putpkt ("?");
8d64371b 4776 getpkt (&rs->buf, 0);
2d717e4f 4777
6efcd9a8 4778 if (!target_is_non_stop_p ())
2d717e4f 4779 {
74531fed 4780 if (rs->buf[0] == 'W' || rs->buf[0] == 'X')
2d717e4f 4781 {
04bd08de 4782 if (!extended_p)
74531fed 4783 error (_("The target is not running (try extended-remote?)"));
c35b1492
PA
4784
4785 /* We're connected, but not running. Drop out before we
4786 call start_remote. */
e278ad5b 4787 rs->starting_up = 0;
c35b1492 4788 return;
2d717e4f
DJ
4789 }
4790 else
74531fed 4791 {
74531fed 4792 /* Save the reply for later. */
8d64371b
TT
4793 wait_status = (char *) alloca (strlen (rs->buf.data ()) + 1);
4794 strcpy (wait_status, rs->buf.data ());
74531fed
PA
4795 }
4796
b7ea362b 4797 /* Fetch thread list. */
e8032dde 4798 target_update_thread_list ();
b7ea362b 4799
74531fed
PA
4800 /* Let the stub know that we want it to return the thread. */
4801 set_continue_thread (minus_one_ptid);
4802
5b6d1e4f 4803 if (thread_count (this) == 0)
b7ea362b
PA
4804 {
4805 /* Target has no concept of threads at all. GDB treats
4806 non-threaded target as single-threaded; add a main
4807 thread. */
4808 add_current_inferior_and_thread (wait_status);
4809 }
4810 else
4811 {
4812 /* We have thread information; select the thread the target
4813 says should be current. If we're reconnecting to a
4814 multi-threaded program, this will ideally be the thread
4815 that last reported an event before GDB disconnected. */
75c6c844
PA
4816 ptid_t curr_thread = get_current_thread (wait_status);
4817 if (curr_thread == null_ptid)
b7ea362b
PA
4818 {
4819 /* Odd... The target was able to list threads, but not
4820 tell us which thread was current (no "thread"
4821 register in T stop reply?). Just pick the first
4822 thread in the thread list then. */
c9f35b34
KB
4823
4824 if (remote_debug)
4825 fprintf_unfiltered (gdb_stdlog,
dda83cd7 4826 "warning: couldn't determine remote "
c9f35b34
KB
4827 "current thread; picking first in list.\n");
4828
5b6d1e4f
PA
4829 for (thread_info *tp : all_non_exited_threads (this,
4830 minus_one_ptid))
75c6c844
PA
4831 {
4832 switch_to_thread (tp);
4833 break;
4834 }
b7ea362b 4835 }
75c6c844 4836 else
5b6d1e4f 4837 switch_to_thread (find_thread_ptid (this, curr_thread));
b7ea362b 4838 }
74531fed 4839
6e586cc5
YQ
4840 /* init_wait_for_inferior should be called before get_offsets in order
4841 to manage `inserted' flag in bp loc in a correct state.
4842 breakpoint_init_inferior, called from init_wait_for_inferior, set
4843 `inserted' flag to 0, while before breakpoint_re_set, called from
4844 start_remote, set `inserted' flag to 1. In the initialization of
4845 inferior, breakpoint_init_inferior should be called first, and then
4846 breakpoint_re_set can be called. If this order is broken, state of
4847 `inserted' flag is wrong, and cause some problems on breakpoint
4848 manipulation. */
4849 init_wait_for_inferior ();
4850
74531fed
PA
4851 get_offsets (); /* Get text, data & bss offsets. */
4852
d962ef82
DJ
4853 /* If we could not find a description using qXfer, and we know
4854 how to do it some other way, try again. This is not
4855 supported for non-stop; it could be, but it is tricky if
4856 there are no stopped threads when we connect. */
f6ac5f3d 4857 if (remote_read_description_p (this)
f5656ead 4858 && gdbarch_target_desc (target_gdbarch ()) == NULL)
d962ef82
DJ
4859 {
4860 target_clear_description ();
4861 target_find_description ();
4862 }
4863
74531fed
PA
4864 /* Use the previously fetched status. */
4865 gdb_assert (wait_status != NULL);
8d64371b 4866 strcpy (rs->buf.data (), wait_status);
74531fed
PA
4867 rs->cached_wait_status = 1;
4868
f6ac5f3d 4869 ::start_remote (from_tty); /* Initialize gdb process mechanisms. */
2d717e4f
DJ
4870 }
4871 else
4872 {
68c97600
PA
4873 /* Clear WFI global state. Do this before finding about new
4874 threads and inferiors, and setting the current inferior.
4875 Otherwise we would clear the proceed status of the current
4876 inferior when we want its stop_soon state to be preserved
4877 (see notice_new_inferior). */
4878 init_wait_for_inferior ();
4879
74531fed
PA
4880 /* In non-stop, we will either get an "OK", meaning that there
4881 are no stopped threads at this time; or, a regular stop
4882 reply. In the latter case, there may be more than one thread
4883 stopped --- we pull them all out using the vStopped
4884 mechanism. */
8d64371b 4885 if (strcmp (rs->buf.data (), "OK") != 0)
74531fed 4886 {
722247f1 4887 struct notif_client *notif = &notif_client_stop;
2d717e4f 4888
722247f1
YQ
4889 /* remote_notif_get_pending_replies acks this one, and gets
4890 the rest out. */
f48ff2a7 4891 rs->notif_state->pending_event[notif_client_stop.id]
8d64371b 4892 = remote_notif_parse (this, notif, rs->buf.data ());
722247f1 4893 remote_notif_get_pending_events (notif);
74531fed 4894 }
2d717e4f 4895
5b6d1e4f 4896 if (thread_count (this) == 0)
74531fed 4897 {
04bd08de 4898 if (!extended_p)
74531fed 4899 error (_("The target is not running (try extended-remote?)"));
82f73884 4900
c35b1492
PA
4901 /* We're connected, but not running. Drop out before we
4902 call start_remote. */
e278ad5b 4903 rs->starting_up = 0;
c35b1492
PA
4904 return;
4905 }
74531fed 4906
74531fed
PA
4907 /* In non-stop mode, any cached wait status will be stored in
4908 the stop reply queue. */
4909 gdb_assert (wait_status == NULL);
f0223081 4910
2455069d 4911 /* Report all signals during attach/startup. */
adc6a863 4912 pass_signals ({});
221e1a37
PA
4913
4914 /* If there are already stopped threads, mark them stopped and
4915 report their stops before giving the prompt to the user. */
6efcd9a8 4916 process_initial_stop_replies (from_tty);
221e1a37
PA
4917
4918 if (target_can_async_p ())
4919 target_async (1);
74531fed 4920 }
c8d104ad 4921
c8d104ad 4922 /* If we connected to a live target, do some additional setup. */
55f6301a 4923 if (target_has_execution ())
c8d104ad 4924 {
a42d7dd8
TT
4925 /* No use without a symbol-file. */
4926 if (current_program_space->symfile_object_file)
36d25514 4927 remote_check_symbols ();
c8d104ad 4928 }
50c71eaf 4929
d5551862
SS
4930 /* Possibly the target has been engaged in a trace run started
4931 previously; find out where things are at. */
f6ac5f3d 4932 if (get_trace_status (current_trace_status ()) != -1)
d5551862 4933 {
00bf0b85 4934 struct uploaded_tp *uploaded_tps = NULL;
00bf0b85 4935
00bf0b85
SS
4936 if (current_trace_status ()->running)
4937 printf_filtered (_("Trace is already running on the target.\n"));
4938
f6ac5f3d 4939 upload_tracepoints (&uploaded_tps);
00bf0b85
SS
4940
4941 merge_uploaded_tracepoints (&uploaded_tps);
d5551862
SS
4942 }
4943
c0272db5
TW
4944 /* Possibly the target has been engaged in a btrace record started
4945 previously; find out where things are at. */
4946 remote_btrace_maybe_reopen ();
4947
1e51243a
PA
4948 /* The thread and inferior lists are now synchronized with the
4949 target, our symbols have been relocated, and we're merged the
4950 target's tracepoints with ours. We're done with basic start
4951 up. */
4952 rs->starting_up = 0;
4953
a25a5a45
PA
4954 /* Maybe breakpoints are global and need to be inserted now. */
4955 if (breakpoints_should_be_inserted_now ())
50c71eaf 4956 insert_breakpoints ();
c906108c
SS
4957}
4958
121b3efd
PA
4959const char *
4960remote_target::connection_string ()
4961{
4962 remote_state *rs = get_remote_state ();
4963
4964 if (rs->remote_desc->name != NULL)
4965 return rs->remote_desc->name;
4966 else
4967 return NULL;
4968}
4969
c906108c
SS
4970/* Open a connection to a remote debugger.
4971 NAME is the filename used for communication. */
4972
f6ac5f3d
PA
4973void
4974remote_target::open (const char *name, int from_tty)
c906108c 4975{
f6ac5f3d 4976 open_1 (name, from_tty, 0);
43ff13b4
JM
4977}
4978
c906108c
SS
4979/* Open a connection to a remote debugger using the extended
4980 remote gdb protocol. NAME is the filename used for communication. */
4981
f6ac5f3d
PA
4982void
4983extended_remote_target::open (const char *name, int from_tty)
c906108c 4984{
f6ac5f3d 4985 open_1 (name, from_tty, 1 /*extended_p */);
43ff13b4
JM
4986}
4987
ca4f7f8b
PA
4988/* Reset all packets back to "unknown support". Called when opening a
4989 new connection to a remote target. */
c906108c 4990
d471ea57 4991static void
ca4f7f8b 4992reset_all_packet_configs_support (void)
d471ea57
AC
4993{
4994 int i;
a744cf53 4995
444abaca 4996 for (i = 0; i < PACKET_MAX; i++)
4082afcc 4997 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
d471ea57
AC
4998}
4999
ca4f7f8b
PA
5000/* Initialize all packet configs. */
5001
5002static void
5003init_all_packet_configs (void)
5004{
5005 int i;
5006
5007 for (i = 0; i < PACKET_MAX; i++)
5008 {
5009 remote_protocol_packets[i].detect = AUTO_BOOLEAN_AUTO;
5010 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
5011 }
5012}
5013
23860348 5014/* Symbol look-up. */
dc8acb97 5015
6b8edb51
PA
5016void
5017remote_target::remote_check_symbols ()
dc8acb97 5018{
8d64371b 5019 char *tmp;
dc8acb97
MS
5020 int end;
5021
63154eca
PA
5022 /* The remote side has no concept of inferiors that aren't running
5023 yet, it only knows about running processes. If we're connected
5024 but our current inferior is not running, we should not invite the
5025 remote target to request symbol lookups related to its
5026 (unrelated) current process. */
55f6301a 5027 if (!target_has_execution ())
63154eca
PA
5028 return;
5029
4082afcc 5030 if (packet_support (PACKET_qSymbol) == PACKET_DISABLE)
dc8acb97
MS
5031 return;
5032
63154eca
PA
5033 /* Make sure the remote is pointing at the right process. Note
5034 there's no way to select "no process". */
3c9c4b83
PA
5035 set_general_process ();
5036
6d820c5c
DJ
5037 /* Allocate a message buffer. We can't reuse the input buffer in RS,
5038 because we need both at the same time. */
66644cd3 5039 gdb::char_vector msg (get_remote_packet_size ());
8d64371b 5040 gdb::char_vector reply (get_remote_packet_size ());
6d820c5c 5041
23860348 5042 /* Invite target to request symbol lookups. */
dc8acb97
MS
5043
5044 putpkt ("qSymbol::");
8d64371b 5045 getpkt (&reply, 0);
28170b88 5046 packet_ok (reply, &remote_protocol_packets[PACKET_qSymbol]);
dc8acb97 5047
8d64371b 5048 while (startswith (reply.data (), "qSymbol:"))
dc8acb97 5049 {
77e371c0
TT
5050 struct bound_minimal_symbol sym;
5051
dc8acb97 5052 tmp = &reply[8];
66644cd3
AB
5053 end = hex2bin (tmp, reinterpret_cast <gdb_byte *> (msg.data ()),
5054 strlen (tmp) / 2);
dc8acb97 5055 msg[end] = '\0';
66644cd3 5056 sym = lookup_minimal_symbol (msg.data (), NULL, NULL);
3b7344d5 5057 if (sym.minsym == NULL)
66644cd3
AB
5058 xsnprintf (msg.data (), get_remote_packet_size (), "qSymbol::%s",
5059 &reply[8]);
dc8acb97 5060 else
2bbe3cc1 5061 {
f5656ead 5062 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
77e371c0 5063 CORE_ADDR sym_addr = BMSYMBOL_VALUE_ADDRESS (sym);
2bbe3cc1
DJ
5064
5065 /* If this is a function address, return the start of code
5066 instead of any data function descriptor. */
f5656ead 5067 sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
2bbe3cc1 5068 sym_addr,
8b88a78e 5069 current_top_target ());
2bbe3cc1 5070
66644cd3 5071 xsnprintf (msg.data (), get_remote_packet_size (), "qSymbol:%s:%s",
5af949e3 5072 phex_nz (sym_addr, addr_size), &reply[8]);
2bbe3cc1 5073 }
66644cd3
AB
5074
5075 putpkt (msg.data ());
8d64371b 5076 getpkt (&reply, 0);
dc8acb97
MS
5077 }
5078}
5079
9db8d71f 5080static struct serial *
baa336ce 5081remote_serial_open (const char *name)
9db8d71f
DJ
5082{
5083 static int udp_warning = 0;
5084
5085 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
5086 of in ser-tcp.c, because it is the remote protocol assuming that the
5087 serial connection is reliable and not the serial connection promising
5088 to be. */
61012eef 5089 if (!udp_warning && startswith (name, "udp:"))
9db8d71f 5090 {
3e43a32a
MS
5091 warning (_("The remote protocol may be unreliable over UDP.\n"
5092 "Some events may be lost, rendering further debugging "
5093 "impossible."));
9db8d71f
DJ
5094 udp_warning = 1;
5095 }
5096
5097 return serial_open (name);
5098}
5099
d914c394
SS
5100/* Inform the target of our permission settings. The permission flags
5101 work without this, but if the target knows the settings, it can do
5102 a couple things. First, it can add its own check, to catch cases
5103 that somehow manage to get by the permissions checks in target
5104 methods. Second, if the target is wired to disallow particular
5105 settings (for instance, a system in the field that is not set up to
5106 be able to stop at a breakpoint), it can object to any unavailable
5107 permissions. */
5108
5109void
f6ac5f3d 5110remote_target::set_permissions ()
d914c394
SS
5111{
5112 struct remote_state *rs = get_remote_state ();
5113
8d64371b 5114 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QAllow:"
bba74b36
YQ
5115 "WriteReg:%x;WriteMem:%x;"
5116 "InsertBreak:%x;InsertTrace:%x;"
5117 "InsertFastTrace:%x;Stop:%x",
5118 may_write_registers, may_write_memory,
5119 may_insert_breakpoints, may_insert_tracepoints,
5120 may_insert_fast_tracepoints, may_stop);
d914c394 5121 putpkt (rs->buf);
8d64371b 5122 getpkt (&rs->buf, 0);
d914c394
SS
5123
5124 /* If the target didn't like the packet, warn the user. Do not try
5125 to undo the user's settings, that would just be maddening. */
8d64371b
TT
5126 if (strcmp (rs->buf.data (), "OK") != 0)
5127 warning (_("Remote refused setting permissions with: %s"),
5128 rs->buf.data ());
d914c394
SS
5129}
5130
be2a5f71
DJ
5131/* This type describes each known response to the qSupported
5132 packet. */
5133struct protocol_feature
5134{
5135 /* The name of this protocol feature. */
5136 const char *name;
5137
5138 /* The default for this protocol feature. */
5139 enum packet_support default_support;
5140
5141 /* The function to call when this feature is reported, or after
5142 qSupported processing if the feature is not supported.
5143 The first argument points to this structure. The second
5144 argument indicates whether the packet requested support be
5145 enabled, disabled, or probed (or the default, if this function
5146 is being called at the end of processing and this feature was
5147 not reported). The third argument may be NULL; if not NULL, it
5148 is a NUL-terminated string taken from the packet following
5149 this feature's name and an equals sign. */
6b8edb51
PA
5150 void (*func) (remote_target *remote, const struct protocol_feature *,
5151 enum packet_support, const char *);
be2a5f71
DJ
5152
5153 /* The corresponding packet for this feature. Only used if
5154 FUNC is remote_supported_packet. */
5155 int packet;
5156};
5157
be2a5f71 5158static void
6b8edb51
PA
5159remote_supported_packet (remote_target *remote,
5160 const struct protocol_feature *feature,
be2a5f71
DJ
5161 enum packet_support support,
5162 const char *argument)
5163{
5164 if (argument)
5165 {
5166 warning (_("Remote qSupported response supplied an unexpected value for"
5167 " \"%s\"."), feature->name);
5168 return;
5169 }
5170
4082afcc 5171 remote_protocol_packets[feature->packet].support = support;
be2a5f71 5172}
be2a5f71 5173
6b8edb51
PA
5174void
5175remote_target::remote_packet_size (const protocol_feature *feature,
5176 enum packet_support support, const char *value)
be2a5f71
DJ
5177{
5178 struct remote_state *rs = get_remote_state ();
5179
5180 int packet_size;
5181 char *value_end;
5182
5183 if (support != PACKET_ENABLE)
5184 return;
5185
5186 if (value == NULL || *value == '\0')
5187 {
5188 warning (_("Remote target reported \"%s\" without a size."),
5189 feature->name);
5190 return;
5191 }
5192
5193 errno = 0;
5194 packet_size = strtol (value, &value_end, 16);
5195 if (errno != 0 || *value_end != '\0' || packet_size < 0)
5196 {
5197 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
5198 feature->name, value);
5199 return;
5200 }
5201
be2a5f71
DJ
5202 /* Record the new maximum packet size. */
5203 rs->explicit_packet_size = packet_size;
5204}
5205
cb8c24b6 5206static void
6b8edb51
PA
5207remote_packet_size (remote_target *remote, const protocol_feature *feature,
5208 enum packet_support support, const char *value)
5209{
5210 remote->remote_packet_size (feature, support, value);
5211}
5212
dc473cfb 5213static const struct protocol_feature remote_protocol_features[] = {
0876f84a 5214 { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 },
40e57cf2 5215 { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet,
fd79ecee 5216 PACKET_qXfer_auxv },
c78fa86a
GB
5217 { "qXfer:exec-file:read", PACKET_DISABLE, remote_supported_packet,
5218 PACKET_qXfer_exec_file },
23181151
DJ
5219 { "qXfer:features:read", PACKET_DISABLE, remote_supported_packet,
5220 PACKET_qXfer_features },
cfa9d6d9
DJ
5221 { "qXfer:libraries:read", PACKET_DISABLE, remote_supported_packet,
5222 PACKET_qXfer_libraries },
2268b414
JK
5223 { "qXfer:libraries-svr4:read", PACKET_DISABLE, remote_supported_packet,
5224 PACKET_qXfer_libraries_svr4 },
ced63ec0 5225 { "augmented-libraries-svr4-read", PACKET_DISABLE,
4082afcc 5226 remote_supported_packet, PACKET_augmented_libraries_svr4_read_feature },
fd79ecee 5227 { "qXfer:memory-map:read", PACKET_DISABLE, remote_supported_packet,
89be2091 5228 PACKET_qXfer_memory_map },
07e059b5
VP
5229 { "qXfer:osdata:read", PACKET_DISABLE, remote_supported_packet,
5230 PACKET_qXfer_osdata },
dc146f7c
VP
5231 { "qXfer:threads:read", PACKET_DISABLE, remote_supported_packet,
5232 PACKET_qXfer_threads },
b3b9301e
PA
5233 { "qXfer:traceframe-info:read", PACKET_DISABLE, remote_supported_packet,
5234 PACKET_qXfer_traceframe_info },
89be2091
DJ
5235 { "QPassSignals", PACKET_DISABLE, remote_supported_packet,
5236 PACKET_QPassSignals },
82075af2
JS
5237 { "QCatchSyscalls", PACKET_DISABLE, remote_supported_packet,
5238 PACKET_QCatchSyscalls },
9b224c5e
PA
5239 { "QProgramSignals", PACKET_DISABLE, remote_supported_packet,
5240 PACKET_QProgramSignals },
bc3b087d
SDJ
5241 { "QSetWorkingDir", PACKET_DISABLE, remote_supported_packet,
5242 PACKET_QSetWorkingDir },
aefd8b33
SDJ
5243 { "QStartupWithShell", PACKET_DISABLE, remote_supported_packet,
5244 PACKET_QStartupWithShell },
0a2dde4a
SDJ
5245 { "QEnvironmentHexEncoded", PACKET_DISABLE, remote_supported_packet,
5246 PACKET_QEnvironmentHexEncoded },
5247 { "QEnvironmentReset", PACKET_DISABLE, remote_supported_packet,
5248 PACKET_QEnvironmentReset },
5249 { "QEnvironmentUnset", PACKET_DISABLE, remote_supported_packet,
5250 PACKET_QEnvironmentUnset },
a6f3e723
SL
5251 { "QStartNoAckMode", PACKET_DISABLE, remote_supported_packet,
5252 PACKET_QStartNoAckMode },
4082afcc
PA
5253 { "multiprocess", PACKET_DISABLE, remote_supported_packet,
5254 PACKET_multiprocess_feature },
5255 { "QNonStop", PACKET_DISABLE, remote_supported_packet, PACKET_QNonStop },
4aa995e1
PA
5256 { "qXfer:siginfo:read", PACKET_DISABLE, remote_supported_packet,
5257 PACKET_qXfer_siginfo_read },
5258 { "qXfer:siginfo:write", PACKET_DISABLE, remote_supported_packet,
5259 PACKET_qXfer_siginfo_write },
4082afcc 5260 { "ConditionalTracepoints", PACKET_DISABLE, remote_supported_packet,
782b2b07 5261 PACKET_ConditionalTracepoints },
4082afcc 5262 { "ConditionalBreakpoints", PACKET_DISABLE, remote_supported_packet,
3788aec7 5263 PACKET_ConditionalBreakpoints },
4082afcc 5264 { "BreakpointCommands", PACKET_DISABLE, remote_supported_packet,
d3ce09f5 5265 PACKET_BreakpointCommands },
4082afcc 5266 { "FastTracepoints", PACKET_DISABLE, remote_supported_packet,
7a697b8d 5267 PACKET_FastTracepoints },
4082afcc 5268 { "StaticTracepoints", PACKET_DISABLE, remote_supported_packet,
0fb4aa4b 5269 PACKET_StaticTracepoints },
4082afcc 5270 {"InstallInTrace", PACKET_DISABLE, remote_supported_packet,
1e4d1764 5271 PACKET_InstallInTrace},
4082afcc
PA
5272 { "DisconnectedTracing", PACKET_DISABLE, remote_supported_packet,
5273 PACKET_DisconnectedTracing_feature },
40ab02ce
MS
5274 { "ReverseContinue", PACKET_DISABLE, remote_supported_packet,
5275 PACKET_bc },
5276 { "ReverseStep", PACKET_DISABLE, remote_supported_packet,
5277 PACKET_bs },
409873ef
SS
5278 { "TracepointSource", PACKET_DISABLE, remote_supported_packet,
5279 PACKET_TracepointSource },
d914c394
SS
5280 { "QAllow", PACKET_DISABLE, remote_supported_packet,
5281 PACKET_QAllow },
4082afcc
PA
5282 { "EnableDisableTracepoints", PACKET_DISABLE, remote_supported_packet,
5283 PACKET_EnableDisableTracepoints_feature },
78d85199
YQ
5284 { "qXfer:fdpic:read", PACKET_DISABLE, remote_supported_packet,
5285 PACKET_qXfer_fdpic },
169081d0
TG
5286 { "qXfer:uib:read", PACKET_DISABLE, remote_supported_packet,
5287 PACKET_qXfer_uib },
03583c20
UW
5288 { "QDisableRandomization", PACKET_DISABLE, remote_supported_packet,
5289 PACKET_QDisableRandomization },
d1feda86 5290 { "QAgent", PACKET_DISABLE, remote_supported_packet, PACKET_QAgent},
f6f899bf
HAQ
5291 { "QTBuffer:size", PACKET_DISABLE,
5292 remote_supported_packet, PACKET_QTBuffer_size},
4082afcc 5293 { "tracenz", PACKET_DISABLE, remote_supported_packet, PACKET_tracenz_feature },
9accd112
MM
5294 { "Qbtrace:off", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_off },
5295 { "Qbtrace:bts", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_bts },
b20a6524 5296 { "Qbtrace:pt", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_pt },
9accd112 5297 { "qXfer:btrace:read", PACKET_DISABLE, remote_supported_packet,
f4abbc16
MM
5298 PACKET_qXfer_btrace },
5299 { "qXfer:btrace-conf:read", PACKET_DISABLE, remote_supported_packet,
d33501a5
MM
5300 PACKET_qXfer_btrace_conf },
5301 { "Qbtrace-conf:bts:size", PACKET_DISABLE, remote_supported_packet,
f7e6eed5
PA
5302 PACKET_Qbtrace_conf_bts_size },
5303 { "swbreak", PACKET_DISABLE, remote_supported_packet, PACKET_swbreak_feature },
0a93529c 5304 { "hwbreak", PACKET_DISABLE, remote_supported_packet, PACKET_hwbreak_feature },
89245bc0
DB
5305 { "fork-events", PACKET_DISABLE, remote_supported_packet,
5306 PACKET_fork_event_feature },
5307 { "vfork-events", PACKET_DISABLE, remote_supported_packet,
5308 PACKET_vfork_event_feature },
94585166
DB
5309 { "exec-events", PACKET_DISABLE, remote_supported_packet,
5310 PACKET_exec_event_feature },
b20a6524 5311 { "Qbtrace-conf:pt:size", PACKET_DISABLE, remote_supported_packet,
750ce8d1 5312 PACKET_Qbtrace_conf_pt_size },
65706a29
PA
5313 { "vContSupported", PACKET_DISABLE, remote_supported_packet, PACKET_vContSupported },
5314 { "QThreadEvents", PACKET_DISABLE, remote_supported_packet, PACKET_QThreadEvents },
f2faf941 5315 { "no-resumed", PACKET_DISABLE, remote_supported_packet, PACKET_no_resumed },
be2a5f71
DJ
5316};
5317
c8d5aac9
L
5318static char *remote_support_xml;
5319
5320/* Register string appended to "xmlRegisters=" in qSupported query. */
5321
5322void
6e39997a 5323register_remote_support_xml (const char *xml)
c8d5aac9
L
5324{
5325#if defined(HAVE_LIBEXPAT)
5326 if (remote_support_xml == NULL)
c4f7c687 5327 remote_support_xml = concat ("xmlRegisters=", xml, (char *) NULL);
c8d5aac9
L
5328 else
5329 {
5330 char *copy = xstrdup (remote_support_xml + 13);
ca3a04f6
CB
5331 char *saveptr;
5332 char *p = strtok_r (copy, ",", &saveptr);
c8d5aac9
L
5333
5334 do
5335 {
5336 if (strcmp (p, xml) == 0)
5337 {
5338 /* already there */
5339 xfree (copy);
5340 return;
5341 }
5342 }
ca3a04f6 5343 while ((p = strtok_r (NULL, ",", &saveptr)) != NULL);
c8d5aac9
L
5344 xfree (copy);
5345
94b0dee1
PA
5346 remote_support_xml = reconcat (remote_support_xml,
5347 remote_support_xml, ",", xml,
5348 (char *) NULL);
c8d5aac9
L
5349 }
5350#endif
5351}
5352
69b6ecb0
TT
5353static void
5354remote_query_supported_append (std::string *msg, const char *append)
c8d5aac9 5355{
69b6ecb0
TT
5356 if (!msg->empty ())
5357 msg->append (";");
5358 msg->append (append);
c8d5aac9
L
5359}
5360
6b8edb51
PA
5361void
5362remote_target::remote_query_supported ()
be2a5f71
DJ
5363{
5364 struct remote_state *rs = get_remote_state ();
5365 char *next;
5366 int i;
5367 unsigned char seen [ARRAY_SIZE (remote_protocol_features)];
5368
5369 /* The packet support flags are handled differently for this packet
5370 than for most others. We treat an error, a disabled packet, and
5371 an empty response identically: any features which must be reported
5372 to be used will be automatically disabled. An empty buffer
5373 accomplishes this, since that is also the representation for a list
5374 containing no features. */
5375
5376 rs->buf[0] = 0;
4082afcc 5377 if (packet_support (PACKET_qSupported) != PACKET_DISABLE)
be2a5f71 5378 {
69b6ecb0 5379 std::string q;
c8d5aac9 5380
73b8c1fd 5381 if (packet_set_cmd_state (PACKET_multiprocess_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5382 remote_query_supported_append (&q, "multiprocess+");
c8d5aac9 5383
f7e6eed5 5384 if (packet_set_cmd_state (PACKET_swbreak_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5385 remote_query_supported_append (&q, "swbreak+");
f7e6eed5 5386 if (packet_set_cmd_state (PACKET_hwbreak_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5387 remote_query_supported_append (&q, "hwbreak+");
f7e6eed5 5388
69b6ecb0 5389 remote_query_supported_append (&q, "qRelocInsn+");
dde08ee1 5390
8020350c
DB
5391 if (packet_set_cmd_state (PACKET_fork_event_feature)
5392 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5393 remote_query_supported_append (&q, "fork-events+");
8020350c
DB
5394 if (packet_set_cmd_state (PACKET_vfork_event_feature)
5395 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5396 remote_query_supported_append (&q, "vfork-events+");
8020350c
DB
5397 if (packet_set_cmd_state (PACKET_exec_event_feature)
5398 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5399 remote_query_supported_append (&q, "exec-events+");
89245bc0 5400
750ce8d1 5401 if (packet_set_cmd_state (PACKET_vContSupported) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5402 remote_query_supported_append (&q, "vContSupported+");
750ce8d1 5403
65706a29 5404 if (packet_set_cmd_state (PACKET_QThreadEvents) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5405 remote_query_supported_append (&q, "QThreadEvents+");
65706a29 5406
f2faf941 5407 if (packet_set_cmd_state (PACKET_no_resumed) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5408 remote_query_supported_append (&q, "no-resumed+");
f2faf941 5409
b35d5edb
PA
5410 /* Keep this one last to work around a gdbserver <= 7.10 bug in
5411 the qSupported:xmlRegisters=i386 handling. */
7cc244de
PA
5412 if (remote_support_xml != NULL
5413 && packet_support (PACKET_qXfer_features) != PACKET_DISABLE)
69b6ecb0 5414 remote_query_supported_append (&q, remote_support_xml);
82f73884 5415
69b6ecb0
TT
5416 q = "qSupported:" + q;
5417 putpkt (q.c_str ());
94b0dee1 5418
8d64371b 5419 getpkt (&rs->buf, 0);
be2a5f71
DJ
5420
5421 /* If an error occured, warn, but do not return - just reset the
5422 buffer to empty and go on to disable features. */
5423 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported])
5424 == PACKET_ERROR)
5425 {
8d64371b 5426 warning (_("Remote failure reply: %s"), rs->buf.data ());
be2a5f71
DJ
5427 rs->buf[0] = 0;
5428 }
5429 }
5430
5431 memset (seen, 0, sizeof (seen));
5432
8d64371b 5433 next = rs->buf.data ();
be2a5f71
DJ
5434 while (*next)
5435 {
5436 enum packet_support is_supported;
5437 char *p, *end, *name_end, *value;
5438
5439 /* First separate out this item from the rest of the packet. If
5440 there's another item after this, we overwrite the separator
5441 (terminated strings are much easier to work with). */
5442 p = next;
5443 end = strchr (p, ';');
5444 if (end == NULL)
5445 {
5446 end = p + strlen (p);
5447 next = end;
5448 }
5449 else
5450 {
89be2091
DJ
5451 *end = '\0';
5452 next = end + 1;
5453
be2a5f71
DJ
5454 if (end == p)
5455 {
5456 warning (_("empty item in \"qSupported\" response"));
5457 continue;
5458 }
be2a5f71
DJ
5459 }
5460
5461 name_end = strchr (p, '=');
5462 if (name_end)
5463 {
5464 /* This is a name=value entry. */
5465 is_supported = PACKET_ENABLE;
5466 value = name_end + 1;
5467 *name_end = '\0';
5468 }
5469 else
5470 {
5471 value = NULL;
5472 switch (end[-1])
5473 {
5474 case '+':
5475 is_supported = PACKET_ENABLE;
5476 break;
5477
5478 case '-':
5479 is_supported = PACKET_DISABLE;
5480 break;
5481
5482 case '?':
5483 is_supported = PACKET_SUPPORT_UNKNOWN;
5484 break;
5485
5486 default:
3e43a32a
MS
5487 warning (_("unrecognized item \"%s\" "
5488 "in \"qSupported\" response"), p);
be2a5f71
DJ
5489 continue;
5490 }
5491 end[-1] = '\0';
5492 }
5493
5494 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
5495 if (strcmp (remote_protocol_features[i].name, p) == 0)
5496 {
5497 const struct protocol_feature *feature;
5498
5499 seen[i] = 1;
5500 feature = &remote_protocol_features[i];
6b8edb51 5501 feature->func (this, feature, is_supported, value);
be2a5f71
DJ
5502 break;
5503 }
5504 }
5505
5506 /* If we increased the packet size, make sure to increase the global
5507 buffer size also. We delay this until after parsing the entire
5508 qSupported packet, because this is the same buffer we were
5509 parsing. */
8d64371b
TT
5510 if (rs->buf.size () < rs->explicit_packet_size)
5511 rs->buf.resize (rs->explicit_packet_size);
be2a5f71
DJ
5512
5513 /* Handle the defaults for unmentioned features. */
5514 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
5515 if (!seen[i])
5516 {
5517 const struct protocol_feature *feature;
5518
5519 feature = &remote_protocol_features[i];
6b8edb51 5520 feature->func (this, feature, feature->default_support, NULL);
be2a5f71
DJ
5521 }
5522}
5523
048094ac
PA
5524/* Serial QUIT handler for the remote serial descriptor.
5525
5526 Defers handling a Ctrl-C until we're done with the current
5527 command/response packet sequence, unless:
5528
5529 - We're setting up the connection. Don't send a remote interrupt
5530 request, as we're not fully synced yet. Quit immediately
5531 instead.
5532
5533 - The target has been resumed in the foreground
223ffa71 5534 (target_terminal::is_ours is false) with a synchronous resume
048094ac
PA
5535 packet, and we're blocked waiting for the stop reply, thus a
5536 Ctrl-C should be immediately sent to the target.
5537
5538 - We get a second Ctrl-C while still within the same serial read or
5539 write. In that case the serial is seemingly wedged --- offer to
5540 quit/disconnect.
5541
5542 - We see a second Ctrl-C without target response, after having
5543 previously interrupted the target. In that case the target/stub
5544 is probably wedged --- offer to quit/disconnect.
5545*/
5546
6b8edb51
PA
5547void
5548remote_target::remote_serial_quit_handler ()
048094ac
PA
5549{
5550 struct remote_state *rs = get_remote_state ();
5551
5552 if (check_quit_flag ())
5553 {
5554 /* If we're starting up, we're not fully synced yet. Quit
5555 immediately. */
5556 if (rs->starting_up)
5557 quit ();
5558 else if (rs->got_ctrlc_during_io)
5559 {
5560 if (query (_("The target is not responding to GDB commands.\n"
5561 "Stop debugging it? ")))
5b6d1e4f 5562 remote_unpush_and_throw (this);
048094ac
PA
5563 }
5564 /* If ^C has already been sent once, offer to disconnect. */
223ffa71 5565 else if (!target_terminal::is_ours () && rs->ctrlc_pending_p)
048094ac
PA
5566 interrupt_query ();
5567 /* All-stop protocol, and blocked waiting for stop reply. Send
5568 an interrupt request. */
223ffa71 5569 else if (!target_terminal::is_ours () && rs->waiting_for_stop_reply)
e671cd59 5570 target_interrupt ();
048094ac
PA
5571 else
5572 rs->got_ctrlc_during_io = 1;
5573 }
5574}
5575
6b8edb51
PA
5576/* The remote_target that is current while the quit handler is
5577 overridden with remote_serial_quit_handler. */
5578static remote_target *curr_quit_handler_target;
5579
5580static void
5581remote_serial_quit_handler ()
5582{
5583 curr_quit_handler_target->remote_serial_quit_handler ();
5584}
5585
5b6d1e4f
PA
5586/* Remove the remote target from the target stack of each inferior
5587 that is using it. Upper targets depend on it so remove them
5588 first. */
78a095c3
JK
5589
5590static void
5b6d1e4f 5591remote_unpush_target (remote_target *target)
78a095c3 5592{
5b6d1e4f
PA
5593 /* We have to unpush the target from all inferiors, even those that
5594 aren't running. */
5595 scoped_restore_current_inferior restore_current_inferior;
5596
5597 for (inferior *inf : all_inferiors (target))
5598 {
5599 switch_to_inferior_no_thread (inf);
5600 pop_all_targets_at_and_above (process_stratum);
5601 generic_mourn_inferior ();
5602 }
78a095c3 5603}
be2a5f71 5604
048094ac 5605static void
5b6d1e4f 5606remote_unpush_and_throw (remote_target *target)
048094ac 5607{
5b6d1e4f 5608 remote_unpush_target (target);
048094ac
PA
5609 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
5610}
5611
f6ac5f3d
PA
5612void
5613remote_target::open_1 (const char *name, int from_tty, int extended_p)
c906108c 5614{
6b8edb51 5615 remote_target *curr_remote = get_current_remote_target ();
a6f3e723 5616
c906108c 5617 if (name == 0)
8a3fe4f8 5618 error (_("To open a remote debug connection, you need to specify what\n"
22e04375 5619 "serial device is attached to the remote system\n"
8a3fe4f8 5620 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
c906108c 5621
2d717e4f 5622 /* If we're connected to a running target, target_preopen will kill it.
78a095c3
JK
5623 Ask this question first, before target_preopen has a chance to kill
5624 anything. */
55f6301a 5625 if (curr_remote != NULL && !target_has_execution ())
2d717e4f 5626 {
78a095c3
JK
5627 if (from_tty
5628 && !query (_("Already connected to a remote target. Disconnect? ")))
2d717e4f
DJ
5629 error (_("Still connected."));
5630 }
5631
78a095c3 5632 /* Here the possibly existing remote target gets unpushed. */
c906108c
SS
5633 target_preopen (from_tty);
5634
ad9a8f3f 5635 remote_fileio_reset ();
1dd41f16
NS
5636 reopen_exec_file ();
5637 reread_symbols ();
5638
6b8edb51
PA
5639 remote_target *remote
5640 = (extended_p ? new extended_remote_target () : new remote_target ());
5641 target_ops_up target_holder (remote);
5642
5643 remote_state *rs = remote->get_remote_state ();
5644
5645 /* See FIXME above. */
5646 if (!target_async_permitted)
5647 rs->wait_forever_enabled_p = 1;
5648
5d93a237
TT
5649 rs->remote_desc = remote_serial_open (name);
5650 if (!rs->remote_desc)
c906108c
SS
5651 perror_with_name (name);
5652
5653 if (baud_rate != -1)
5654 {
5d93a237 5655 if (serial_setbaudrate (rs->remote_desc, baud_rate))
c906108c 5656 {
9b74d5d3
KB
5657 /* The requested speed could not be set. Error out to
5658 top level after closing remote_desc. Take care to
5659 set remote_desc to NULL to avoid closing remote_desc
5660 more than once. */
5d93a237
TT
5661 serial_close (rs->remote_desc);
5662 rs->remote_desc = NULL;
c906108c
SS
5663 perror_with_name (name);
5664 }
5665 }
5666
236af5e3 5667 serial_setparity (rs->remote_desc, serial_parity);
5d93a237 5668 serial_raw (rs->remote_desc);
c906108c
SS
5669
5670 /* If there is something sitting in the buffer we might take it as a
5671 response to a command, which would be bad. */
5d93a237 5672 serial_flush_input (rs->remote_desc);
c906108c
SS
5673
5674 if (from_tty)
5675 {
5676 puts_filtered ("Remote debugging using ");
5677 puts_filtered (name);
5678 puts_filtered ("\n");
5679 }
d9f719f1 5680
6b8edb51 5681 /* Switch to using the remote target now. */
dea57a62 5682 push_target (std::move (target_holder));
c906108c 5683
74531fed 5684 /* Register extra event sources in the event loop. */
6b8edb51 5685 rs->remote_async_inferior_event_token
db20ebdf
SM
5686 = create_async_event_handler (remote_async_inferior_event_handler, remote,
5687 "remote");
6b8edb51 5688 rs->notif_state = remote_notif_state_allocate (remote);
74531fed 5689
be2a5f71
DJ
5690 /* Reset the target state; these things will be queried either by
5691 remote_query_supported or as they are needed. */
ca4f7f8b 5692 reset_all_packet_configs_support ();
74531fed 5693 rs->cached_wait_status = 0;
be2a5f71 5694 rs->explicit_packet_size = 0;
a6f3e723 5695 rs->noack_mode = 0;
82f73884 5696 rs->extended = extended_p;
e24a49d8 5697 rs->waiting_for_stop_reply = 0;
3a29589a 5698 rs->ctrlc_pending_p = 0;
048094ac 5699 rs->got_ctrlc_during_io = 0;
802188a7 5700
47f8a51d
TT
5701 rs->general_thread = not_sent_ptid;
5702 rs->continue_thread = not_sent_ptid;
262e1174 5703 rs->remote_traceframe_number = -1;
c906108c 5704
3a00c802
PA
5705 rs->last_resume_exec_dir = EXEC_FORWARD;
5706
9d1f7ab2 5707 /* Probe for ability to use "ThreadInfo" query, as required. */
b80fafe3
TT
5708 rs->use_threadinfo_query = 1;
5709 rs->use_threadextra_query = 1;
9d1f7ab2 5710
dd194f6b 5711 rs->readahead_cache.invalidate ();
80152258 5712
c6ebd6cf 5713 if (target_async_permitted)
92d1e331 5714 {
92d1e331
DJ
5715 /* FIXME: cagney/1999-09-23: During the initial connection it is
5716 assumed that the target is already ready and able to respond to
0df8b418 5717 requests. Unfortunately remote_start_remote() eventually calls
92d1e331 5718 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
0df8b418 5719 around this. Eventually a mechanism that allows
92d1e331 5720 wait_for_inferior() to expect/get timeouts will be
23860348 5721 implemented. */
6b8edb51 5722 rs->wait_forever_enabled_p = 0;
92d1e331
DJ
5723 }
5724
23860348 5725 /* First delete any symbols previously loaded from shared libraries. */
f78f6cf1 5726 no_shared_libraries (NULL, 0);
f78f6cf1 5727
36918e70 5728 /* Start the remote connection. If error() or QUIT, discard this
165b8e33
AC
5729 target (we'd otherwise be in an inconsistent state) and then
5730 propogate the error on up the exception chain. This ensures that
5731 the caller doesn't stumble along blindly assuming that the
5732 function succeeded. The CLI doesn't have this problem but other
5733 UI's, such as MI do.
36918e70
AC
5734
5735 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
5736 this function should return an error indication letting the
ce2826aa 5737 caller restore the previous state. Unfortunately the command
36918e70
AC
5738 ``target remote'' is directly wired to this function making that
5739 impossible. On a positive note, the CLI side of this problem has
5740 been fixed - the function set_cmd_context() makes it possible for
5741 all the ``target ....'' commands to share a common callback
5742 function. See cli-dump.c. */
109c3e39 5743 {
2d717e4f 5744
a70b8144 5745 try
04bd08de 5746 {
6b8edb51 5747 remote->start_remote (from_tty, extended_p);
04bd08de 5748 }
230d2906 5749 catch (const gdb_exception &ex)
109c3e39 5750 {
c8d104ad
PA
5751 /* Pop the partially set up target - unless something else did
5752 already before throwing the exception. */
6b8edb51 5753 if (ex.error != TARGET_CLOSE_ERROR)
5b6d1e4f 5754 remote_unpush_target (remote);
eedc3f4f 5755 throw;
109c3e39
AC
5756 }
5757 }
c906108c 5758
6b8edb51 5759 remote_btrace_reset (rs);
f4abbc16 5760
c6ebd6cf 5761 if (target_async_permitted)
6b8edb51 5762 rs->wait_forever_enabled_p = 1;
43ff13b4
JM
5763}
5764
de0d863e
DB
5765/* Detach the specified process. */
5766
6b8edb51
PA
5767void
5768remote_target::remote_detach_pid (int pid)
de0d863e
DB
5769{
5770 struct remote_state *rs = get_remote_state ();
5771
4c7333b3
PA
5772 /* This should not be necessary, but the handling for D;PID in
5773 GDBserver versions prior to 8.2 incorrectly assumes that the
5774 selected process points to the same process we're detaching,
5775 leading to misbehavior (and possibly GDBserver crashing) when it
5776 does not. Since it's easy and cheap, work around it by forcing
5777 GDBserver to select GDB's current process. */
5778 set_general_process ();
5779
de0d863e 5780 if (remote_multi_process_p (rs))
8d64371b 5781 xsnprintf (rs->buf.data (), get_remote_packet_size (), "D;%x", pid);
de0d863e 5782 else
8d64371b 5783 strcpy (rs->buf.data (), "D");
de0d863e
DB
5784
5785 putpkt (rs->buf);
8d64371b 5786 getpkt (&rs->buf, 0);
de0d863e
DB
5787
5788 if (rs->buf[0] == 'O' && rs->buf[1] == 'K')
5789 ;
5790 else if (rs->buf[0] == '\0')
5791 error (_("Remote doesn't know how to detach"));
5792 else
5793 error (_("Can't detach process."));
5794}
5795
5796/* This detaches a program to which we previously attached, using
5797 inferior_ptid to identify the process. After this is done, GDB
5798 can be used to debug some other program. We better not have left
5799 any breakpoints in the target program or it'll die when it hits
5800 one. */
c906108c 5801
6b8edb51 5802void
00431a78 5803remote_target::remote_detach_1 (inferior *inf, int from_tty)
c906108c 5804{
e99b03dc 5805 int pid = inferior_ptid.pid ();
d01949b6 5806 struct remote_state *rs = get_remote_state ();
de0d863e 5807 int is_fork_parent;
c906108c 5808
55f6301a 5809 if (!target_has_execution ())
2d717e4f
DJ
5810 error (_("No process to detach from."));
5811
0f48b757 5812 target_announce_detach (from_tty);
7cee1e54 5813
c906108c 5814 /* Tell the remote target to detach. */
de0d863e 5815 remote_detach_pid (pid);
82f73884 5816
8020350c 5817 /* Exit only if this is the only active inferior. */
5b6d1e4f 5818 if (from_tty && !rs->extended && number_of_live_inferiors (this) == 1)
7cee1e54 5819 puts_filtered (_("Ending remote debugging.\n"));
82f73884 5820
5b6d1e4f 5821 thread_info *tp = find_thread_ptid (this, inferior_ptid);
00431a78 5822
de0d863e
DB
5823 /* Check to see if we are detaching a fork parent. Note that if we
5824 are detaching a fork child, tp == NULL. */
5825 is_fork_parent = (tp != NULL
5826 && tp->pending_follow.kind == TARGET_WAITKIND_FORKED);
5827
5828 /* If doing detach-on-fork, we don't mourn, because that will delete
5829 breakpoints that should be available for the followed inferior. */
5830 if (!is_fork_parent)
f67c0c91 5831 {
249b5733
PA
5832 /* Save the pid as a string before mourning, since that will
5833 unpush the remote target, and we need the string after. */
f2907e49 5834 std::string infpid = target_pid_to_str (ptid_t (pid));
f67c0c91
SDJ
5835
5836 target_mourn_inferior (inferior_ptid);
5837 if (print_inferior_events)
5838 printf_unfiltered (_("[Inferior %d (%s) detached]\n"),
5839 inf->num, infpid.c_str ());
5840 }
de0d863e
DB
5841 else
5842 {
0ac55310 5843 switch_to_no_thread ();
00431a78 5844 detach_inferior (current_inferior ());
de0d863e 5845 }
2d717e4f
DJ
5846}
5847
f6ac5f3d
PA
5848void
5849remote_target::detach (inferior *inf, int from_tty)
2d717e4f 5850{
00431a78 5851 remote_detach_1 (inf, from_tty);
2d717e4f
DJ
5852}
5853
f6ac5f3d
PA
5854void
5855extended_remote_target::detach (inferior *inf, int from_tty)
2d717e4f 5856{
00431a78 5857 remote_detach_1 (inf, from_tty);
de0d863e
DB
5858}
5859
5860/* Target follow-fork function for remote targets. On entry, and
5861 at return, the current inferior is the fork parent.
5862
5863 Note that although this is currently only used for extended-remote,
5864 it is named remote_follow_fork in anticipation of using it for the
5865 remote target as well. */
5866
5ab2fbf1
SM
5867bool
5868remote_target::follow_fork (bool follow_child, bool detach_fork)
de0d863e
DB
5869{
5870 struct remote_state *rs = get_remote_state ();
c269dbdb 5871 enum target_waitkind kind = inferior_thread ()->pending_follow.kind;
de0d863e 5872
c269dbdb
DB
5873 if ((kind == TARGET_WAITKIND_FORKED && remote_fork_event_p (rs))
5874 || (kind == TARGET_WAITKIND_VFORKED && remote_vfork_event_p (rs)))
de0d863e
DB
5875 {
5876 /* When following the parent and detaching the child, we detach
5877 the child here. For the case of following the child and
5878 detaching the parent, the detach is done in the target-
5879 independent follow fork code in infrun.c. We can't use
5880 target_detach when detaching an unfollowed child because
5881 the client side doesn't know anything about the child. */
5882 if (detach_fork && !follow_child)
5883 {
5884 /* Detach the fork child. */
5885 ptid_t child_ptid;
5886 pid_t child_pid;
5887
5888 child_ptid = inferior_thread ()->pending_follow.value.related_pid;
e99b03dc 5889 child_pid = child_ptid.pid ();
de0d863e
DB
5890
5891 remote_detach_pid (child_pid);
de0d863e
DB
5892 }
5893 }
5ab2fbf1
SM
5894
5895 return false;
c906108c
SS
5896}
5897
94585166
DB
5898/* Target follow-exec function for remote targets. Save EXECD_PATHNAME
5899 in the program space of the new inferior. On entry and at return the
5900 current inferior is the exec'ing inferior. INF is the new exec'd
5901 inferior, which may be the same as the exec'ing inferior unless
5902 follow-exec-mode is "new". */
5903
f6ac5f3d 5904void
4ca51187 5905remote_target::follow_exec (struct inferior *inf, const char *execd_pathname)
94585166
DB
5906{
5907 /* We know that this is a target file name, so if it has the "target:"
5908 prefix we strip it off before saving it in the program space. */
5909 if (is_target_filename (execd_pathname))
5910 execd_pathname += strlen (TARGET_SYSROOT_PREFIX);
5911
5912 set_pspace_remote_exec_file (inf->pspace, execd_pathname);
5913}
5914
6ad8ae5c
DJ
5915/* Same as remote_detach, but don't send the "D" packet; just disconnect. */
5916
f6ac5f3d
PA
5917void
5918remote_target::disconnect (const char *args, int from_tty)
43ff13b4 5919{
43ff13b4 5920 if (args)
2d717e4f 5921 error (_("Argument given to \"disconnect\" when remotely debugging."));
43ff13b4 5922
8020350c 5923 /* Make sure we unpush even the extended remote targets. Calling
5b6d1e4f
PA
5924 target_mourn_inferior won't unpush, and
5925 remote_target::mourn_inferior won't unpush if there is more than
5926 one inferior left. */
5927 remote_unpush_target (this);
2d717e4f 5928
43ff13b4
JM
5929 if (from_tty)
5930 puts_filtered ("Ending remote debugging.\n");
5931}
5932
2d717e4f
DJ
5933/* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
5934 be chatty about it. */
5935
f6ac5f3d
PA
5936void
5937extended_remote_target::attach (const char *args, int from_tty)
2d717e4f
DJ
5938{
5939 struct remote_state *rs = get_remote_state ();
be86555c 5940 int pid;
96ef3384 5941 char *wait_status = NULL;
2d717e4f 5942
74164c56 5943 pid = parse_pid_to_attach (args);
2d717e4f 5944
74164c56
JK
5945 /* Remote PID can be freely equal to getpid, do not check it here the same
5946 way as in other targets. */
2d717e4f 5947
4082afcc 5948 if (packet_support (PACKET_vAttach) == PACKET_DISABLE)
2d717e4f
DJ
5949 error (_("This target does not support attaching to a process"));
5950
7cee1e54
PA
5951 if (from_tty)
5952 {
d9fa87f4 5953 const char *exec_file = get_exec_file (0);
7cee1e54
PA
5954
5955 if (exec_file)
5956 printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file,
a068643d 5957 target_pid_to_str (ptid_t (pid)).c_str ());
7cee1e54
PA
5958 else
5959 printf_unfiltered (_("Attaching to %s\n"),
a068643d 5960 target_pid_to_str (ptid_t (pid)).c_str ());
7cee1e54
PA
5961 }
5962
8d64371b 5963 xsnprintf (rs->buf.data (), get_remote_packet_size (), "vAttach;%x", pid);
2d717e4f 5964 putpkt (rs->buf);
8d64371b 5965 getpkt (&rs->buf, 0);
2d717e4f 5966
4082afcc
PA
5967 switch (packet_ok (rs->buf,
5968 &remote_protocol_packets[PACKET_vAttach]))
2d717e4f 5969 {
4082afcc 5970 case PACKET_OK:
6efcd9a8 5971 if (!target_is_non_stop_p ())
74531fed
PA
5972 {
5973 /* Save the reply for later. */
8d64371b
TT
5974 wait_status = (char *) alloca (strlen (rs->buf.data ()) + 1);
5975 strcpy (wait_status, rs->buf.data ());
74531fed 5976 }
8d64371b 5977 else if (strcmp (rs->buf.data (), "OK") != 0)
74531fed 5978 error (_("Attaching to %s failed with: %s"),
a068643d 5979 target_pid_to_str (ptid_t (pid)).c_str (),
8d64371b 5980 rs->buf.data ());
4082afcc
PA
5981 break;
5982 case PACKET_UNKNOWN:
5983 error (_("This target does not support attaching to a process"));
5984 default:
50fa3001
SDJ
5985 error (_("Attaching to %s failed"),
5986 target_pid_to_str (ptid_t (pid)).c_str ());
2d717e4f 5987 }
2d717e4f 5988
0ac55310 5989 switch_to_inferior_no_thread (remote_add_inferior (false, pid, 1, 0));
bad34192 5990
f2907e49 5991 inferior_ptid = ptid_t (pid);
79d7f229 5992
6efcd9a8 5993 if (target_is_non_stop_p ())
bad34192 5994 {
bad34192 5995 /* Get list of threads. */
f6ac5f3d 5996 update_thread_list ();
82f73884 5997
0ac55310
PA
5998 thread_info *thread = first_thread_of_inferior (current_inferior ());
5999 if (thread != nullptr)
6000 switch_to_thread (thread);
bad34192
PA
6001
6002 /* Invalidate our notion of the remote current thread. */
47f8a51d 6003 record_currthread (rs, minus_one_ptid);
bad34192 6004 }
74531fed 6005 else
bad34192 6006 {
0ac55310
PA
6007 /* Now, if we have thread information, update the main thread's
6008 ptid. */
6009 ptid_t curr_ptid = remote_current_thread (ptid_t (pid));
bad34192
PA
6010
6011 /* Add the main thread to the thread list. */
0ac55310
PA
6012 thread_info *thr = add_thread_silent (this, curr_ptid);
6013
6014 switch_to_thread (thr);
6015
00aecdcf
PA
6016 /* Don't consider the thread stopped until we've processed the
6017 saved stop reply. */
5b6d1e4f 6018 set_executing (this, thr->ptid, true);
bad34192 6019 }
c0a2216e 6020
96ef3384
UW
6021 /* Next, if the target can specify a description, read it. We do
6022 this before anything involving memory or registers. */
6023 target_find_description ();
6024
6efcd9a8 6025 if (!target_is_non_stop_p ())
74531fed
PA
6026 {
6027 /* Use the previously fetched status. */
6028 gdb_assert (wait_status != NULL);
6029
6030 if (target_can_async_p ())
6031 {
722247f1 6032 struct notif_event *reply
6b8edb51 6033 = remote_notif_parse (this, &notif_client_stop, wait_status);
74531fed 6034
722247f1 6035 push_stop_reply ((struct stop_reply *) reply);
74531fed 6036
6a3753b3 6037 target_async (1);
74531fed
PA
6038 }
6039 else
6040 {
6041 gdb_assert (wait_status != NULL);
8d64371b 6042 strcpy (rs->buf.data (), wait_status);
74531fed
PA
6043 rs->cached_wait_status = 1;
6044 }
6045 }
6046 else
6047 gdb_assert (wait_status == NULL);
2d717e4f
DJ
6048}
6049
b9c1d481
AS
6050/* Implementation of the to_post_attach method. */
6051
f6ac5f3d
PA
6052void
6053extended_remote_target::post_attach (int pid)
b9c1d481 6054{
6efcd9a8
PA
6055 /* Get text, data & bss offsets. */
6056 get_offsets ();
6057
b9c1d481
AS
6058 /* In certain cases GDB might not have had the chance to start
6059 symbol lookup up until now. This could happen if the debugged
6060 binary is not using shared libraries, the vsyscall page is not
6061 present (on Linux) and the binary itself hadn't changed since the
6062 debugging process was started. */
a42d7dd8 6063 if (current_program_space->symfile_object_file != NULL)
b9c1d481
AS
6064 remote_check_symbols();
6065}
6066
c906108c 6067\f
506fb367
DJ
6068/* Check for the availability of vCont. This function should also check
6069 the response. */
c906108c 6070
6b8edb51
PA
6071void
6072remote_target::remote_vcont_probe ()
c906108c 6073{
6b8edb51 6074 remote_state *rs = get_remote_state ();
2e9f7625 6075 char *buf;
6d820c5c 6076
8d64371b 6077 strcpy (rs->buf.data (), "vCont?");
2e9f7625 6078 putpkt (rs->buf);
8d64371b
TT
6079 getpkt (&rs->buf, 0);
6080 buf = rs->buf.data ();
c906108c 6081
506fb367 6082 /* Make sure that the features we assume are supported. */
61012eef 6083 if (startswith (buf, "vCont"))
506fb367
DJ
6084 {
6085 char *p = &buf[5];
750ce8d1 6086 int support_c, support_C;
506fb367 6087
750ce8d1
YQ
6088 rs->supports_vCont.s = 0;
6089 rs->supports_vCont.S = 0;
506fb367
DJ
6090 support_c = 0;
6091 support_C = 0;
d458bd84 6092 rs->supports_vCont.t = 0;
c1e36e3e 6093 rs->supports_vCont.r = 0;
506fb367
DJ
6094 while (p && *p == ';')
6095 {
6096 p++;
6097 if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 6098 rs->supports_vCont.s = 1;
506fb367 6099 else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 6100 rs->supports_vCont.S = 1;
506fb367
DJ
6101 else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
6102 support_c = 1;
6103 else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
6104 support_C = 1;
74531fed 6105 else if (*p == 't' && (*(p + 1) == ';' || *(p + 1) == 0))
d458bd84 6106 rs->supports_vCont.t = 1;
c1e36e3e
PA
6107 else if (*p == 'r' && (*(p + 1) == ';' || *(p + 1) == 0))
6108 rs->supports_vCont.r = 1;
506fb367
DJ
6109
6110 p = strchr (p, ';');
6111 }
c906108c 6112
750ce8d1
YQ
6113 /* If c, and C are not all supported, we can't use vCont. Clearing
6114 BUF will make packet_ok disable the packet. */
6115 if (!support_c || !support_C)
506fb367
DJ
6116 buf[0] = 0;
6117 }
c906108c 6118
8d64371b 6119 packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCont]);
5b6d1e4f 6120 rs->supports_vCont_probed = true;
506fb367 6121}
c906108c 6122
0d8f58ca
PA
6123/* Helper function for building "vCont" resumptions. Write a
6124 resumption to P. ENDP points to one-passed-the-end of the buffer
6125 we're allowed to write to. Returns BUF+CHARACTERS_WRITTEN. The
6126 thread to be resumed is PTID; STEP and SIGGNAL indicate whether the
6127 resumed thread should be single-stepped and/or signalled. If PTID
6128 equals minus_one_ptid, then all threads are resumed; if PTID
6129 represents a process, then all threads of the process are resumed;
6130 the thread to be stepped and/or signalled is given in the global
6131 INFERIOR_PTID. */
6132
6b8edb51
PA
6133char *
6134remote_target::append_resumption (char *p, char *endp,
6135 ptid_t ptid, int step, gdb_signal siggnal)
0d8f58ca
PA
6136{
6137 struct remote_state *rs = get_remote_state ();
6138
a493e3e2 6139 if (step && siggnal != GDB_SIGNAL_0)
0d8f58ca 6140 p += xsnprintf (p, endp - p, ";S%02x", siggnal);
c1e36e3e
PA
6141 else if (step
6142 /* GDB is willing to range step. */
6143 && use_range_stepping
6144 /* Target supports range stepping. */
6145 && rs->supports_vCont.r
6146 /* We don't currently support range stepping multiple
6147 threads with a wildcard (though the protocol allows it,
6148 so stubs shouldn't make an active effort to forbid
6149 it). */
0e998d96 6150 && !(remote_multi_process_p (rs) && ptid.is_pid ()))
c1e36e3e
PA
6151 {
6152 struct thread_info *tp;
6153
d7e15655 6154 if (ptid == minus_one_ptid)
c1e36e3e
PA
6155 {
6156 /* If we don't know about the target thread's tid, then
6157 we're resuming magic_null_ptid (see caller). */
5b6d1e4f 6158 tp = find_thread_ptid (this, magic_null_ptid);
c1e36e3e
PA
6159 }
6160 else
5b6d1e4f 6161 tp = find_thread_ptid (this, ptid);
c1e36e3e
PA
6162 gdb_assert (tp != NULL);
6163
6164 if (tp->control.may_range_step)
6165 {
6166 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
6167
6168 p += xsnprintf (p, endp - p, ";r%s,%s",
6169 phex_nz (tp->control.step_range_start,
6170 addr_size),
6171 phex_nz (tp->control.step_range_end,
6172 addr_size));
6173 }
6174 else
6175 p += xsnprintf (p, endp - p, ";s");
6176 }
0d8f58ca
PA
6177 else if (step)
6178 p += xsnprintf (p, endp - p, ";s");
a493e3e2 6179 else if (siggnal != GDB_SIGNAL_0)
0d8f58ca
PA
6180 p += xsnprintf (p, endp - p, ";C%02x", siggnal);
6181 else
6182 p += xsnprintf (p, endp - p, ";c");
6183
0e998d96 6184 if (remote_multi_process_p (rs) && ptid.is_pid ())
0d8f58ca
PA
6185 {
6186 ptid_t nptid;
6187
6188 /* All (-1) threads of process. */
e99b03dc 6189 nptid = ptid_t (ptid.pid (), -1, 0);
0d8f58ca
PA
6190
6191 p += xsnprintf (p, endp - p, ":");
6192 p = write_ptid (p, endp, nptid);
6193 }
d7e15655 6194 else if (ptid != minus_one_ptid)
0d8f58ca
PA
6195 {
6196 p += xsnprintf (p, endp - p, ":");
6197 p = write_ptid (p, endp, ptid);
6198 }
6199
6200 return p;
6201}
6202
799a2abe
PA
6203/* Clear the thread's private info on resume. */
6204
6205static void
6206resume_clear_thread_private_info (struct thread_info *thread)
6207{
6208 if (thread->priv != NULL)
6209 {
7aabaf9d
SM
6210 remote_thread_info *priv = get_remote_thread_info (thread);
6211
6212 priv->stop_reason = TARGET_STOPPED_BY_NO_REASON;
6213 priv->watch_data_address = 0;
799a2abe
PA
6214 }
6215}
6216
e5ef252a
PA
6217/* Append a vCont continue-with-signal action for threads that have a
6218 non-zero stop signal. */
6219
6b8edb51
PA
6220char *
6221remote_target::append_pending_thread_resumptions (char *p, char *endp,
6222 ptid_t ptid)
e5ef252a 6223{
5b6d1e4f 6224 for (thread_info *thread : all_non_exited_threads (this, ptid))
08036331 6225 if (inferior_ptid != thread->ptid
70509625 6226 && thread->suspend.stop_signal != GDB_SIGNAL_0)
e5ef252a
PA
6227 {
6228 p = append_resumption (p, endp, thread->ptid,
6229 0, thread->suspend.stop_signal);
6230 thread->suspend.stop_signal = GDB_SIGNAL_0;
799a2abe 6231 resume_clear_thread_private_info (thread);
e5ef252a
PA
6232 }
6233
6234 return p;
6235}
6236
7b68ffbb
PA
6237/* Set the target running, using the packets that use Hc
6238 (c/s/C/S). */
6239
6b8edb51
PA
6240void
6241remote_target::remote_resume_with_hc (ptid_t ptid, int step,
6242 gdb_signal siggnal)
7b68ffbb
PA
6243{
6244 struct remote_state *rs = get_remote_state ();
7b68ffbb
PA
6245 char *buf;
6246
6247 rs->last_sent_signal = siggnal;
6248 rs->last_sent_step = step;
6249
6250 /* The c/s/C/S resume packets use Hc, so set the continue
6251 thread. */
d7e15655 6252 if (ptid == minus_one_ptid)
7b68ffbb
PA
6253 set_continue_thread (any_thread_ptid);
6254 else
6255 set_continue_thread (ptid);
6256
5b6d1e4f 6257 for (thread_info *thread : all_non_exited_threads (this))
7b68ffbb
PA
6258 resume_clear_thread_private_info (thread);
6259
8d64371b 6260 buf = rs->buf.data ();
6b8edb51 6261 if (::execution_direction == EXEC_REVERSE)
7b68ffbb
PA
6262 {
6263 /* We don't pass signals to the target in reverse exec mode. */
6264 if (info_verbose && siggnal != GDB_SIGNAL_0)
6265 warning (_(" - Can't pass signal %d to target in reverse: ignored."),
6266 siggnal);
6267
6268 if (step && packet_support (PACKET_bs) == PACKET_DISABLE)
6269 error (_("Remote reverse-step not supported."));
6270 if (!step && packet_support (PACKET_bc) == PACKET_DISABLE)
6271 error (_("Remote reverse-continue not supported."));
6272
6273 strcpy (buf, step ? "bs" : "bc");
6274 }
6275 else if (siggnal != GDB_SIGNAL_0)
6276 {
6277 buf[0] = step ? 'S' : 'C';
6278 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
6279 buf[2] = tohex (((int) siggnal) & 0xf);
6280 buf[3] = '\0';
6281 }
6282 else
6283 strcpy (buf, step ? "s" : "c");
6284
6285 putpkt (buf);
6286}
6287
506fb367
DJ
6288/* Resume the remote inferior by using a "vCont" packet. The thread
6289 to be resumed is PTID; STEP and SIGGNAL indicate whether the
79d7f229
PA
6290 resumed thread should be single-stepped and/or signalled. If PTID
6291 equals minus_one_ptid, then all threads are resumed; the thread to
6292 be stepped and/or signalled is given in the global INFERIOR_PTID.
6293 This function returns non-zero iff it resumes the inferior.
44eaed12 6294
7b68ffbb
PA
6295 This function issues a strict subset of all possible vCont commands
6296 at the moment. */
44eaed12 6297
6b8edb51
PA
6298int
6299remote_target::remote_resume_with_vcont (ptid_t ptid, int step,
6300 enum gdb_signal siggnal)
506fb367
DJ
6301{
6302 struct remote_state *rs = get_remote_state ();
82f73884
PA
6303 char *p;
6304 char *endp;
44eaed12 6305
7b68ffbb 6306 /* No reverse execution actions defined for vCont. */
6b8edb51 6307 if (::execution_direction == EXEC_REVERSE)
7b68ffbb
PA
6308 return 0;
6309
4082afcc 6310 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6b8edb51 6311 remote_vcont_probe ();
44eaed12 6312
4082afcc 6313 if (packet_support (PACKET_vCont) == PACKET_DISABLE)
6d820c5c 6314 return 0;
44eaed12 6315
8d64371b
TT
6316 p = rs->buf.data ();
6317 endp = p + get_remote_packet_size ();
82f73884 6318
506fb367
DJ
6319 /* If we could generate a wider range of packets, we'd have to worry
6320 about overflowing BUF. Should there be a generic
6321 "multi-part-packet" packet? */
6322
0d8f58ca
PA
6323 p += xsnprintf (p, endp - p, "vCont");
6324
d7e15655 6325 if (ptid == magic_null_ptid)
c906108c 6326 {
79d7f229
PA
6327 /* MAGIC_NULL_PTID means that we don't have any active threads,
6328 so we don't have any TID numbers the inferior will
6329 understand. Make sure to only send forms that do not specify
6330 a TID. */
a9cbf802 6331 append_resumption (p, endp, minus_one_ptid, step, siggnal);
506fb367 6332 }
d7e15655 6333 else if (ptid == minus_one_ptid || ptid.is_pid ())
506fb367 6334 {
0d8f58ca
PA
6335 /* Resume all threads (of all processes, or of a single
6336 process), with preference for INFERIOR_PTID. This assumes
6337 inferior_ptid belongs to the set of all threads we are about
6338 to resume. */
a493e3e2 6339 if (step || siggnal != GDB_SIGNAL_0)
82f73884 6340 {
0d8f58ca
PA
6341 /* Step inferior_ptid, with or without signal. */
6342 p = append_resumption (p, endp, inferior_ptid, step, siggnal);
82f73884 6343 }
0d8f58ca 6344
e5ef252a
PA
6345 /* Also pass down any pending signaled resumption for other
6346 threads not the current. */
6347 p = append_pending_thread_resumptions (p, endp, ptid);
6348
0d8f58ca 6349 /* And continue others without a signal. */
a493e3e2 6350 append_resumption (p, endp, ptid, /*step=*/ 0, GDB_SIGNAL_0);
c906108c
SS
6351 }
6352 else
506fb367
DJ
6353 {
6354 /* Scheduler locking; resume only PTID. */
a9cbf802 6355 append_resumption (p, endp, ptid, step, siggnal);
506fb367 6356 }
c906108c 6357
8d64371b 6358 gdb_assert (strlen (rs->buf.data ()) < get_remote_packet_size ());
82f73884 6359 putpkt (rs->buf);
506fb367 6360
6efcd9a8 6361 if (target_is_non_stop_p ())
74531fed
PA
6362 {
6363 /* In non-stop, the stub replies to vCont with "OK". The stop
6364 reply will be reported asynchronously by means of a `%Stop'
6365 notification. */
8d64371b
TT
6366 getpkt (&rs->buf, 0);
6367 if (strcmp (rs->buf.data (), "OK") != 0)
6368 error (_("Unexpected vCont reply in non-stop mode: %s"),
6369 rs->buf.data ());
74531fed
PA
6370 }
6371
506fb367 6372 return 1;
c906108c 6373}
43ff13b4 6374
506fb367
DJ
6375/* Tell the remote machine to resume. */
6376
f6ac5f3d
PA
6377void
6378remote_target::resume (ptid_t ptid, int step, enum gdb_signal siggnal)
43ff13b4 6379{
d01949b6 6380 struct remote_state *rs = get_remote_state ();
43ff13b4 6381
85ad3aaf
PA
6382 /* When connected in non-stop mode, the core resumes threads
6383 individually. Resuming remote threads directly in target_resume
6384 would thus result in sending one packet per thread. Instead, to
6385 minimize roundtrip latency, here we just store the resume
c9d22089
SM
6386 request (put the thread in RESUMED_PENDING_VCONT state); the actual remote
6387 resumption will be done in remote_target::commit_resume, where we'll be
6388 able to do vCont action coalescing. */
f6ac5f3d 6389 if (target_is_non_stop_p () && ::execution_direction != EXEC_REVERSE)
85ad3aaf 6390 {
7aabaf9d 6391 remote_thread_info *remote_thr;
85ad3aaf 6392
d7e15655 6393 if (minus_one_ptid == ptid || ptid.is_pid ())
5b6d1e4f 6394 remote_thr = get_remote_thread_info (this, inferior_ptid);
85ad3aaf 6395 else
5b6d1e4f 6396 remote_thr = get_remote_thread_info (this, ptid);
7aabaf9d 6397
c9d22089
SM
6398 /* We don't expect the core to ask to resume an already resumed (from
6399 its point of view) thread. */
6400 gdb_assert (remote_thr->resume_state () == resume_state::NOT_RESUMED);
6401
6402 remote_thr->set_resumed_pending_vcont (step, siggnal);
85ad3aaf
PA
6403 return;
6404 }
6405
722247f1
YQ
6406 /* In all-stop, we can't mark REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN
6407 (explained in remote-notif.c:handle_notification) so
6408 remote_notif_process is not called. We need find a place where
6409 it is safe to start a 'vNotif' sequence. It is good to do it
6410 before resuming inferior, because inferior was stopped and no RSP
6411 traffic at that moment. */
6efcd9a8 6412 if (!target_is_non_stop_p ())
5965e028 6413 remote_notif_process (rs->notif_state, &notif_client_stop);
722247f1 6414
f6ac5f3d 6415 rs->last_resume_exec_dir = ::execution_direction;
3a00c802 6416
7b68ffbb
PA
6417 /* Prefer vCont, and fallback to s/c/S/C, which use Hc. */
6418 if (!remote_resume_with_vcont (ptid, step, siggnal))
6b8edb51 6419 remote_resume_with_hc (ptid, step, siggnal);
43ff13b4 6420
c9d22089
SM
6421 /* Update resumed state tracked by the remote target. */
6422 for (thread_info *tp : all_non_exited_threads (this, ptid))
6423 get_remote_thread_info (tp)->set_resumed ();
6424
2acceee2 6425 /* We are about to start executing the inferior, let's register it
0df8b418
MS
6426 with the event loop. NOTE: this is the one place where all the
6427 execution commands end up. We could alternatively do this in each
23860348 6428 of the execution commands in infcmd.c. */
2acceee2
JM
6429 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
6430 into infcmd.c in order to allow inferior function calls to work
23860348 6431 NOT asynchronously. */
362646f5 6432 if (target_can_async_p ())
6a3753b3 6433 target_async (1);
e24a49d8
PA
6434
6435 /* We've just told the target to resume. The remote server will
6436 wait for the inferior to stop, and then send a stop reply. In
6437 the mean time, we can't start another command/query ourselves
74531fed
PA
6438 because the stub wouldn't be ready to process it. This applies
6439 only to the base all-stop protocol, however. In non-stop (which
6440 only supports vCont), the stub replies with an "OK", and is
6441 immediate able to process further serial input. */
6efcd9a8 6442 if (!target_is_non_stop_p ())
74531fed 6443 rs->waiting_for_stop_reply = 1;
43ff13b4 6444}
85ad3aaf 6445
85ad3aaf
PA
6446static int is_pending_fork_parent_thread (struct thread_info *thread);
6447
6448/* Private per-inferior info for target remote processes. */
6449
089354bb 6450struct remote_inferior : public private_inferior
85ad3aaf
PA
6451{
6452 /* Whether we can send a wildcard vCont for this process. */
089354bb 6453 bool may_wildcard_vcont = true;
85ad3aaf
PA
6454};
6455
089354bb
SM
6456/* Get the remote private inferior data associated to INF. */
6457
6458static remote_inferior *
6459get_remote_inferior (inferior *inf)
6460{
6461 if (inf->priv == NULL)
6462 inf->priv.reset (new remote_inferior);
6463
6464 return static_cast<remote_inferior *> (inf->priv.get ());
6465}
6466
f5db4863 6467/* Class used to track the construction of a vCont packet in the
85ad3aaf
PA
6468 outgoing packet buffer. This is used to send multiple vCont
6469 packets if we have more actions than would fit a single packet. */
6470
f5db4863 6471class vcont_builder
85ad3aaf 6472{
f5db4863 6473public:
6b8edb51
PA
6474 explicit vcont_builder (remote_target *remote)
6475 : m_remote (remote)
f5db4863
PA
6476 {
6477 restart ();
6478 }
6479
6480 void flush ();
6481 void push_action (ptid_t ptid, bool step, gdb_signal siggnal);
6482
6483private:
6484 void restart ();
6485
6b8edb51
PA
6486 /* The remote target. */
6487 remote_target *m_remote;
6488
85ad3aaf
PA
6489 /* Pointer to the first action. P points here if no action has been
6490 appended yet. */
f5db4863 6491 char *m_first_action;
85ad3aaf
PA
6492
6493 /* Where the next action will be appended. */
f5db4863 6494 char *m_p;
85ad3aaf
PA
6495
6496 /* The end of the buffer. Must never write past this. */
f5db4863 6497 char *m_endp;
85ad3aaf
PA
6498};
6499
6500/* Prepare the outgoing buffer for a new vCont packet. */
6501
f5db4863
PA
6502void
6503vcont_builder::restart ()
85ad3aaf 6504{
6b8edb51 6505 struct remote_state *rs = m_remote->get_remote_state ();
85ad3aaf 6506
8d64371b
TT
6507 m_p = rs->buf.data ();
6508 m_endp = m_p + m_remote->get_remote_packet_size ();
f5db4863
PA
6509 m_p += xsnprintf (m_p, m_endp - m_p, "vCont");
6510 m_first_action = m_p;
85ad3aaf
PA
6511}
6512
6513/* If the vCont packet being built has any action, send it to the
6514 remote end. */
6515
f5db4863
PA
6516void
6517vcont_builder::flush ()
85ad3aaf
PA
6518{
6519 struct remote_state *rs;
6520
f5db4863 6521 if (m_p == m_first_action)
85ad3aaf
PA
6522 return;
6523
6b8edb51
PA
6524 rs = m_remote->get_remote_state ();
6525 m_remote->putpkt (rs->buf);
8d64371b
TT
6526 m_remote->getpkt (&rs->buf, 0);
6527 if (strcmp (rs->buf.data (), "OK") != 0)
6528 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf.data ());
85ad3aaf
PA
6529}
6530
6531/* The largest action is range-stepping, with its two addresses. This
6532 is more than sufficient. If a new, bigger action is created, it'll
6533 quickly trigger a failed assertion in append_resumption (and we'll
6534 just bump this). */
6535#define MAX_ACTION_SIZE 200
6536
6537/* Append a new vCont action in the outgoing packet being built. If
6538 the action doesn't fit the packet along with previous actions, push
6539 what we've got so far to the remote end and start over a new vCont
6540 packet (with the new action). */
6541
f5db4863
PA
6542void
6543vcont_builder::push_action (ptid_t ptid, bool step, gdb_signal siggnal)
85ad3aaf
PA
6544{
6545 char buf[MAX_ACTION_SIZE + 1];
85ad3aaf 6546
6b8edb51
PA
6547 char *endp = m_remote->append_resumption (buf, buf + sizeof (buf),
6548 ptid, step, siggnal);
85ad3aaf
PA
6549
6550 /* Check whether this new action would fit in the vCont packet along
6551 with previous actions. If not, send what we've got so far and
6552 start a new vCont packet. */
f5db4863
PA
6553 size_t rsize = endp - buf;
6554 if (rsize > m_endp - m_p)
85ad3aaf 6555 {
f5db4863
PA
6556 flush ();
6557 restart ();
85ad3aaf
PA
6558
6559 /* Should now fit. */
f5db4863 6560 gdb_assert (rsize <= m_endp - m_p);
85ad3aaf
PA
6561 }
6562
f5db4863
PA
6563 memcpy (m_p, buf, rsize);
6564 m_p += rsize;
6565 *m_p = '\0';
85ad3aaf
PA
6566}
6567
6568/* to_commit_resume implementation. */
6569
f6ac5f3d
PA
6570void
6571remote_target::commit_resume ()
85ad3aaf 6572{
85ad3aaf
PA
6573 int any_process_wildcard;
6574 int may_global_wildcard_vcont;
85ad3aaf
PA
6575
6576 /* If connected in all-stop mode, we'd send the remote resume
6577 request directly from remote_resume. Likewise if
6578 reverse-debugging, as there are no defined vCont actions for
6579 reverse execution. */
f6ac5f3d 6580 if (!target_is_non_stop_p () || ::execution_direction == EXEC_REVERSE)
85ad3aaf
PA
6581 return;
6582
6583 /* Try to send wildcard actions ("vCont;c" or "vCont;c:pPID.-1")
6584 instead of resuming all threads of each process individually.
6585 However, if any thread of a process must remain halted, we can't
6586 send wildcard resumes and must send one action per thread.
6587
6588 Care must be taken to not resume threads/processes the server
6589 side already told us are stopped, but the core doesn't know about
6590 yet, because the events are still in the vStopped notification
6591 queue. For example:
6592
6593 #1 => vCont s:p1.1;c
6594 #2 <= OK
6595 #3 <= %Stopped T05 p1.1
6596 #4 => vStopped
6597 #5 <= T05 p1.2
6598 #6 => vStopped
6599 #7 <= OK
6600 #8 (infrun handles the stop for p1.1 and continues stepping)
6601 #9 => vCont s:p1.1;c
6602
6603 The last vCont above would resume thread p1.2 by mistake, because
6604 the server has no idea that the event for p1.2 had not been
6605 handled yet.
6606
6607 The server side must similarly ignore resume actions for the
6608 thread that has a pending %Stopped notification (and any other
6609 threads with events pending), until GDB acks the notification
6610 with vStopped. Otherwise, e.g., the following case is
6611 mishandled:
6612
6613 #1 => g (or any other packet)
6614 #2 <= [registers]
6615 #3 <= %Stopped T05 p1.2
6616 #4 => vCont s:p1.1;c
6617 #5 <= OK
6618
6619 Above, the server must not resume thread p1.2. GDB can't know
6620 that p1.2 stopped until it acks the %Stopped notification, and
6621 since from GDB's perspective all threads should be running, it
6622 sends a "c" action.
6623
6624 Finally, special care must also be given to handling fork/vfork
6625 events. A (v)fork event actually tells us that two processes
6626 stopped -- the parent and the child. Until we follow the fork,
6627 we must not resume the child. Therefore, if we have a pending
6628 fork follow, we must not send a global wildcard resume action
6629 (vCont;c). We can still send process-wide wildcards though. */
6630
6631 /* Start by assuming a global wildcard (vCont;c) is possible. */
6632 may_global_wildcard_vcont = 1;
6633
6634 /* And assume every process is individually wildcard-able too. */
5b6d1e4f 6635 for (inferior *inf : all_non_exited_inferiors (this))
85ad3aaf 6636 {
089354bb
SM
6637 remote_inferior *priv = get_remote_inferior (inf);
6638
6639 priv->may_wildcard_vcont = true;
85ad3aaf
PA
6640 }
6641
6642 /* Check for any pending events (not reported or processed yet) and
6643 disable process and global wildcard resumes appropriately. */
6644 check_pending_events_prevent_wildcard_vcont (&may_global_wildcard_vcont);
6645
5b6d1e4f 6646 for (thread_info *tp : all_non_exited_threads (this))
85ad3aaf 6647 {
c9d22089
SM
6648 remote_thread_info *priv = get_remote_thread_info (tp);
6649
85ad3aaf
PA
6650 /* If a thread of a process is not meant to be resumed, then we
6651 can't wildcard that process. */
c9d22089 6652 if (priv->resume_state () == resume_state::NOT_RESUMED)
85ad3aaf 6653 {
089354bb 6654 get_remote_inferior (tp->inf)->may_wildcard_vcont = false;
85ad3aaf
PA
6655
6656 /* And if we can't wildcard a process, we can't wildcard
6657 everything either. */
6658 may_global_wildcard_vcont = 0;
6659 continue;
6660 }
6661
6662 /* If a thread is the parent of an unfollowed fork, then we
6663 can't do a global wildcard, as that would resume the fork
6664 child. */
6665 if (is_pending_fork_parent_thread (tp))
6666 may_global_wildcard_vcont = 0;
6667 }
6668
6669 /* Now let's build the vCont packet(s). Actions must be appended
6670 from narrower to wider scopes (thread -> process -> global). If
6671 we end up with too many actions for a single packet vcont_builder
6672 flushes the current vCont packet to the remote side and starts a
6673 new one. */
6b8edb51 6674 struct vcont_builder vcont_builder (this);
85ad3aaf
PA
6675
6676 /* Threads first. */
5b6d1e4f 6677 for (thread_info *tp : all_non_exited_threads (this))
85ad3aaf 6678 {
7aabaf9d 6679 remote_thread_info *remote_thr = get_remote_thread_info (tp);
85ad3aaf 6680
c9d22089
SM
6681 /* If the thread was previously vCont-resumed, no need to send a specific
6682 action for it. If we didn't receive a resume request for it, don't
6683 send an action for it either. */
6684 if (remote_thr->resume_state () != resume_state::RESUMED_PENDING_VCONT)
85ad3aaf
PA
6685 continue;
6686
6687 gdb_assert (!thread_is_in_step_over_chain (tp));
6688
c9d22089
SM
6689 const resumed_pending_vcont_info &info
6690 = remote_thr->resumed_pending_vcont_info ();
85ad3aaf 6691
c9d22089
SM
6692 /* Check if we need to send a specific action for this thread. If not,
6693 it will be included in a wildcard resume instead. */
6694 if (info.step || info.sig != GDB_SIGNAL_0
6695 || !get_remote_inferior (tp->inf)->may_wildcard_vcont)
6696 vcont_builder.push_action (tp->ptid, info.step, info.sig);
6697
6698 remote_thr->set_resumed ();
85ad3aaf
PA
6699 }
6700
6701 /* Now check whether we can send any process-wide wildcard. This is
6702 to avoid sending a global wildcard in the case nothing is
6703 supposed to be resumed. */
6704 any_process_wildcard = 0;
6705
5b6d1e4f 6706 for (inferior *inf : all_non_exited_inferiors (this))
85ad3aaf 6707 {
089354bb 6708 if (get_remote_inferior (inf)->may_wildcard_vcont)
85ad3aaf
PA
6709 {
6710 any_process_wildcard = 1;
6711 break;
6712 }
6713 }
6714
6715 if (any_process_wildcard)
6716 {
6717 /* If all processes are wildcard-able, then send a single "c"
6718 action, otherwise, send an "all (-1) threads of process"
6719 continue action for each running process, if any. */
6720 if (may_global_wildcard_vcont)
6721 {
f5db4863
PA
6722 vcont_builder.push_action (minus_one_ptid,
6723 false, GDB_SIGNAL_0);
85ad3aaf
PA
6724 }
6725 else
6726 {
5b6d1e4f 6727 for (inferior *inf : all_non_exited_inferiors (this))
85ad3aaf 6728 {
089354bb 6729 if (get_remote_inferior (inf)->may_wildcard_vcont)
85ad3aaf 6730 {
f2907e49 6731 vcont_builder.push_action (ptid_t (inf->pid),
f5db4863 6732 false, GDB_SIGNAL_0);
85ad3aaf
PA
6733 }
6734 }
6735 }
6736 }
6737
f5db4863 6738 vcont_builder.flush ();
85ad3aaf
PA
6739}
6740
c906108c 6741\f
43ff13b4 6742
74531fed
PA
6743/* Non-stop version of target_stop. Uses `vCont;t' to stop a remote
6744 thread, all threads of a remote process, or all threads of all
6745 processes. */
6746
6b8edb51
PA
6747void
6748remote_target::remote_stop_ns (ptid_t ptid)
74531fed
PA
6749{
6750 struct remote_state *rs = get_remote_state ();
8d64371b
TT
6751 char *p = rs->buf.data ();
6752 char *endp = p + get_remote_packet_size ();
74531fed 6753
5b6d1e4f
PA
6754 /* FIXME: This supports_vCont_probed check is a workaround until
6755 packet_support is per-connection. */
6756 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN
6757 || !rs->supports_vCont_probed)
6b8edb51 6758 remote_vcont_probe ();
74531fed 6759
d458bd84 6760 if (!rs->supports_vCont.t)
74531fed
PA
6761 error (_("Remote server does not support stopping threads"));
6762
d7e15655 6763 if (ptid == minus_one_ptid
0e998d96 6764 || (!remote_multi_process_p (rs) && ptid.is_pid ()))
74531fed
PA
6765 p += xsnprintf (p, endp - p, "vCont;t");
6766 else
6767 {
6768 ptid_t nptid;
6769
74531fed
PA
6770 p += xsnprintf (p, endp - p, "vCont;t:");
6771
0e998d96 6772 if (ptid.is_pid ())
74531fed 6773 /* All (-1) threads of process. */
e99b03dc 6774 nptid = ptid_t (ptid.pid (), -1, 0);
74531fed
PA
6775 else
6776 {
6777 /* Small optimization: if we already have a stop reply for
6778 this thread, no use in telling the stub we want this
6779 stopped. */
6780 if (peek_stop_reply (ptid))
6781 return;
6782
6783 nptid = ptid;
6784 }
6785
a9cbf802 6786 write_ptid (p, endp, nptid);
74531fed
PA
6787 }
6788
6789 /* In non-stop, we get an immediate OK reply. The stop reply will
6790 come in asynchronously by notification. */
6791 putpkt (rs->buf);
8d64371b
TT
6792 getpkt (&rs->buf, 0);
6793 if (strcmp (rs->buf.data (), "OK") != 0)
a068643d 6794 error (_("Stopping %s failed: %s"), target_pid_to_str (ptid).c_str (),
8d64371b 6795 rs->buf.data ());
74531fed
PA
6796}
6797
bfedc46a
PA
6798/* All-stop version of target_interrupt. Sends a break or a ^C to
6799 interrupt the remote target. It is undefined which thread of which
6800 process reports the interrupt. */
74531fed 6801
6b8edb51
PA
6802void
6803remote_target::remote_interrupt_as ()
74531fed
PA
6804{
6805 struct remote_state *rs = get_remote_state ();
6806
3a29589a
DJ
6807 rs->ctrlc_pending_p = 1;
6808
74531fed
PA
6809 /* If the inferior is stopped already, but the core didn't know
6810 about it yet, just ignore the request. The cached wait status
6811 will be collected in remote_wait. */
6812 if (rs->cached_wait_status)
6813 return;
6814
9a7071a8
JB
6815 /* Send interrupt_sequence to remote target. */
6816 send_interrupt_sequence ();
74531fed
PA
6817}
6818
de979965
PA
6819/* Non-stop version of target_interrupt. Uses `vCtrlC' to interrupt
6820 the remote target. It is undefined which thread of which process
e42de8c7
PA
6821 reports the interrupt. Throws an error if the packet is not
6822 supported by the server. */
de979965 6823
6b8edb51
PA
6824void
6825remote_target::remote_interrupt_ns ()
de979965
PA
6826{
6827 struct remote_state *rs = get_remote_state ();
8d64371b
TT
6828 char *p = rs->buf.data ();
6829 char *endp = p + get_remote_packet_size ();
de979965
PA
6830
6831 xsnprintf (p, endp - p, "vCtrlC");
6832
6833 /* In non-stop, we get an immediate OK reply. The stop reply will
6834 come in asynchronously by notification. */
6835 putpkt (rs->buf);
8d64371b 6836 getpkt (&rs->buf, 0);
de979965
PA
6837
6838 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCtrlC]))
6839 {
6840 case PACKET_OK:
6841 break;
6842 case PACKET_UNKNOWN:
e42de8c7 6843 error (_("No support for interrupting the remote target."));
de979965 6844 case PACKET_ERROR:
8d64371b 6845 error (_("Interrupting target failed: %s"), rs->buf.data ());
de979965 6846 }
de979965
PA
6847}
6848
bfedc46a 6849/* Implement the to_stop function for the remote targets. */
74531fed 6850
f6ac5f3d
PA
6851void
6852remote_target::stop (ptid_t ptid)
c906108c 6853{
7a292a7a 6854 if (remote_debug)
0f71a2f6 6855 fprintf_unfiltered (gdb_stdlog, "remote_stop called\n");
c906108c 6856
6efcd9a8 6857 if (target_is_non_stop_p ())
74531fed 6858 remote_stop_ns (ptid);
c906108c 6859 else
bfedc46a
PA
6860 {
6861 /* We don't currently have a way to transparently pause the
6862 remote target in all-stop mode. Interrupt it instead. */
de979965 6863 remote_interrupt_as ();
bfedc46a
PA
6864 }
6865}
6866
6867/* Implement the to_interrupt function for the remote targets. */
6868
f6ac5f3d
PA
6869void
6870remote_target::interrupt ()
bfedc46a
PA
6871{
6872 if (remote_debug)
6873 fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n");
6874
e42de8c7
PA
6875 if (target_is_non_stop_p ())
6876 remote_interrupt_ns ();
bfedc46a 6877 else
e42de8c7 6878 remote_interrupt_as ();
c906108c
SS
6879}
6880
93692b58
PA
6881/* Implement the to_pass_ctrlc function for the remote targets. */
6882
f6ac5f3d
PA
6883void
6884remote_target::pass_ctrlc ()
93692b58
PA
6885{
6886 struct remote_state *rs = get_remote_state ();
6887
6888 if (remote_debug)
6889 fprintf_unfiltered (gdb_stdlog, "remote_pass_ctrlc called\n");
6890
6891 /* If we're starting up, we're not fully synced yet. Quit
6892 immediately. */
6893 if (rs->starting_up)
6894 quit ();
6895 /* If ^C has already been sent once, offer to disconnect. */
6896 else if (rs->ctrlc_pending_p)
6897 interrupt_query ();
6898 else
e671cd59 6899 target_interrupt ();
93692b58
PA
6900}
6901
c906108c
SS
6902/* Ask the user what to do when an interrupt is received. */
6903
6b8edb51
PA
6904void
6905remote_target::interrupt_query ()
c906108c 6906{
abc56d60 6907 struct remote_state *rs = get_remote_state ();
c906108c 6908
abc56d60 6909 if (rs->waiting_for_stop_reply && rs->ctrlc_pending_p)
74531fed 6910 {
abc56d60
PA
6911 if (query (_("The target is not responding to interrupt requests.\n"
6912 "Stop debugging it? ")))
74531fed 6913 {
5b6d1e4f 6914 remote_unpush_target (this);
abc56d60 6915 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
74531fed
PA
6916 }
6917 }
abc56d60
PA
6918 else
6919 {
6920 if (query (_("Interrupted while waiting for the program.\n"
6921 "Give up waiting? ")))
6922 quit ();
6923 }
c906108c
SS
6924}
6925
6426a772
JM
6926/* Enable/disable target terminal ownership. Most targets can use
6927 terminal groups to control terminal ownership. Remote targets are
6928 different in that explicit transfer of ownership to/from GDB/target
23860348 6929 is required. */
6426a772 6930
f6ac5f3d
PA
6931void
6932remote_target::terminal_inferior ()
6426a772 6933{
6426a772
JM
6934 /* NOTE: At this point we could also register our selves as the
6935 recipient of all input. Any characters typed could then be
23860348 6936 passed on down to the target. */
6426a772
JM
6937}
6938
f6ac5f3d
PA
6939void
6940remote_target::terminal_ours ()
6426a772 6941{
6426a772
JM
6942}
6943
176a6961 6944static void
05be00a8 6945remote_console_output (const char *msg)
c906108c 6946{
05be00a8 6947 const char *p;
c906108c 6948
c5aa993b 6949 for (p = msg; p[0] && p[1]; p += 2)
c906108c
SS
6950 {
6951 char tb[2];
6952 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
a744cf53 6953
c906108c
SS
6954 tb[0] = c;
6955 tb[1] = 0;
da5bd37e 6956 gdb_stdtarg->puts (tb);
c906108c 6957 }
da5bd37e 6958 gdb_stdtarg->flush ();
00db5b94 6959}
74531fed 6960
32603266 6961struct stop_reply : public notif_event
74531fed 6962{
32603266 6963 ~stop_reply ();
74531fed 6964
722247f1 6965 /* The identifier of the thread about this event */
74531fed
PA
6966 ptid_t ptid;
6967
340e3c99 6968 /* The remote state this event is associated with. When the remote
bcc75809
YQ
6969 connection, represented by a remote_state object, is closed,
6970 all the associated stop_reply events should be released. */
6971 struct remote_state *rs;
6972
74531fed
PA
6973 struct target_waitstatus ws;
6974
5cd63fda
PA
6975 /* The architecture associated with the expedited registers. */
6976 gdbarch *arch;
6977
15148d6a
PA
6978 /* Expedited registers. This makes remote debugging a bit more
6979 efficient for those targets that provide critical registers as
6980 part of their normal status mechanism (as another roundtrip to
6981 fetch them is avoided). */
32603266 6982 std::vector<cached_reg_t> regcache;
74531fed 6983
f7e6eed5
PA
6984 enum target_stop_reason stop_reason;
6985
74531fed
PA
6986 CORE_ADDR watch_data_address;
6987
dc146f7c 6988 int core;
32603266 6989};
c906108c 6990
221e1a37
PA
6991/* Return the length of the stop reply queue. */
6992
6b8edb51
PA
6993int
6994remote_target::stop_reply_queue_length ()
221e1a37 6995{
6b8edb51 6996 remote_state *rs = get_remote_state ();
953edf2b 6997 return rs->stop_reply_queue.size ();
221e1a37
PA
6998}
6999
cb8c24b6 7000static void
6b8edb51 7001remote_notif_stop_parse (remote_target *remote,
bb277751 7002 struct notif_client *self, const char *buf,
722247f1
YQ
7003 struct notif_event *event)
7004{
6b8edb51 7005 remote->remote_parse_stop_reply (buf, (struct stop_reply *) event);
722247f1
YQ
7006}
7007
7008static void
6b8edb51 7009remote_notif_stop_ack (remote_target *remote,
bb277751 7010 struct notif_client *self, const char *buf,
722247f1
YQ
7011 struct notif_event *event)
7012{
7013 struct stop_reply *stop_reply = (struct stop_reply *) event;
7014
7015 /* acknowledge */
6b8edb51 7016 putpkt (remote, self->ack_command);
722247f1
YQ
7017
7018 if (stop_reply->ws.kind == TARGET_WAITKIND_IGNORE)
6b8edb51 7019 {
722247f1
YQ
7020 /* We got an unknown stop reply. */
7021 error (_("Unknown stop reply"));
6b8edb51 7022 }
722247f1 7023
6b8edb51 7024 remote->push_stop_reply (stop_reply);
722247f1
YQ
7025}
7026
7027static int
6b8edb51
PA
7028remote_notif_stop_can_get_pending_events (remote_target *remote,
7029 struct notif_client *self)
722247f1
YQ
7030{
7031 /* We can't get pending events in remote_notif_process for
7032 notification stop, and we have to do this in remote_wait_ns
7033 instead. If we fetch all queued events from stub, remote stub
7034 may exit and we have no chance to process them back in
7035 remote_wait_ns. */
6b8edb51
PA
7036 remote_state *rs = remote->get_remote_state ();
7037 mark_async_event_handler (rs->remote_async_inferior_event_token);
722247f1
YQ
7038 return 0;
7039}
7040
32603266 7041stop_reply::~stop_reply ()
722247f1 7042{
32603266
TT
7043 for (cached_reg_t &reg : regcache)
7044 xfree (reg.data);
722247f1
YQ
7045}
7046
32603266
TT
7047static notif_event_up
7048remote_notif_stop_alloc_reply ()
722247f1 7049{
32603266 7050 return notif_event_up (new struct stop_reply ());
722247f1
YQ
7051}
7052
7053/* A client of notification Stop. */
7054
7055struct notif_client notif_client_stop =
7056{
7057 "Stop",
7058 "vStopped",
7059 remote_notif_stop_parse,
7060 remote_notif_stop_ack,
7061 remote_notif_stop_can_get_pending_events,
7062 remote_notif_stop_alloc_reply,
f48ff2a7 7063 REMOTE_NOTIF_STOP,
722247f1
YQ
7064};
7065
85ad3aaf 7066/* Determine if THREAD_PTID is a pending fork parent thread. ARG contains
cbb8991c
DB
7067 the pid of the process that owns the threads we want to check, or
7068 -1 if we want to check all threads. */
7069
7070static int
7071is_pending_fork_parent (struct target_waitstatus *ws, int event_pid,
7072 ptid_t thread_ptid)
7073{
7074 if (ws->kind == TARGET_WAITKIND_FORKED
7075 || ws->kind == TARGET_WAITKIND_VFORKED)
7076 {
e99b03dc 7077 if (event_pid == -1 || event_pid == thread_ptid.pid ())
cbb8991c
DB
7078 return 1;
7079 }
7080
7081 return 0;
7082}
7083
85ad3aaf
PA
7084/* Return the thread's pending status used to determine whether the
7085 thread is a fork parent stopped at a fork event. */
7086
7087static struct target_waitstatus *
7088thread_pending_fork_status (struct thread_info *thread)
7089{
7090 if (thread->suspend.waitstatus_pending_p)
7091 return &thread->suspend.waitstatus;
7092 else
7093 return &thread->pending_follow;
7094}
7095
7096/* Determine if THREAD is a pending fork parent thread. */
7097
7098static int
7099is_pending_fork_parent_thread (struct thread_info *thread)
7100{
7101 struct target_waitstatus *ws = thread_pending_fork_status (thread);
7102 int pid = -1;
7103
7104 return is_pending_fork_parent (ws, pid, thread->ptid);
7105}
7106
cbb8991c
DB
7107/* If CONTEXT contains any fork child threads that have not been
7108 reported yet, remove them from the CONTEXT list. If such a
7109 thread exists it is because we are stopped at a fork catchpoint
7110 and have not yet called follow_fork, which will set up the
7111 host-side data structures for the new process. */
7112
6b8edb51
PA
7113void
7114remote_target::remove_new_fork_children (threads_listing_context *context)
cbb8991c 7115{
cbb8991c
DB
7116 int pid = -1;
7117 struct notif_client *notif = &notif_client_stop;
cbb8991c
DB
7118
7119 /* For any threads stopped at a fork event, remove the corresponding
7120 fork child threads from the CONTEXT list. */
5b6d1e4f 7121 for (thread_info *thread : all_non_exited_threads (this))
cbb8991c 7122 {
85ad3aaf 7123 struct target_waitstatus *ws = thread_pending_fork_status (thread);
cbb8991c
DB
7124
7125 if (is_pending_fork_parent (ws, pid, thread->ptid))
21fe1c75 7126 context->remove_thread (ws->value.related_pid);
cbb8991c
DB
7127 }
7128
7129 /* Check for any pending fork events (not reported or processed yet)
7130 in process PID and remove those fork child threads from the
7131 CONTEXT list as well. */
7132 remote_notif_get_pending_events (notif);
953edf2b
TT
7133 for (auto &event : get_remote_state ()->stop_reply_queue)
7134 if (event->ws.kind == TARGET_WAITKIND_FORKED
7135 || event->ws.kind == TARGET_WAITKIND_VFORKED
7136 || event->ws.kind == TARGET_WAITKIND_THREAD_EXITED)
7137 context->remove_thread (event->ws.value.related_pid);
85ad3aaf
PA
7138}
7139
7140/* Check whether any event pending in the vStopped queue would prevent
7141 a global or process wildcard vCont action. Clear
7142 *may_global_wildcard if we can't do a global wildcard (vCont;c),
7143 and clear the event inferior's may_wildcard_vcont flag if we can't
7144 do a process-wide wildcard resume (vCont;c:pPID.-1). */
7145
6b8edb51
PA
7146void
7147remote_target::check_pending_events_prevent_wildcard_vcont
7148 (int *may_global_wildcard)
85ad3aaf
PA
7149{
7150 struct notif_client *notif = &notif_client_stop;
7151
7152 remote_notif_get_pending_events (notif);
953edf2b
TT
7153 for (auto &event : get_remote_state ()->stop_reply_queue)
7154 {
7155 if (event->ws.kind == TARGET_WAITKIND_NO_RESUMED
7156 || event->ws.kind == TARGET_WAITKIND_NO_HISTORY)
7157 continue;
85ad3aaf 7158
953edf2b
TT
7159 if (event->ws.kind == TARGET_WAITKIND_FORKED
7160 || event->ws.kind == TARGET_WAITKIND_VFORKED)
7161 *may_global_wildcard = 0;
722247f1 7162
5b6d1e4f 7163 struct inferior *inf = find_inferior_ptid (this, event->ptid);
722247f1 7164
953edf2b
TT
7165 /* This may be the first time we heard about this process.
7166 Regardless, we must not do a global wildcard resume, otherwise
7167 we'd resume this process too. */
7168 *may_global_wildcard = 0;
7169 if (inf != NULL)
7170 get_remote_inferior (inf)->may_wildcard_vcont = false;
722247f1 7171 }
722247f1
YQ
7172}
7173
f48ff2a7 7174/* Discard all pending stop replies of inferior INF. */
c906108c 7175
6b8edb51
PA
7176void
7177remote_target::discard_pending_stop_replies (struct inferior *inf)
c906108c 7178{
f48ff2a7
YQ
7179 struct stop_reply *reply;
7180 struct remote_state *rs = get_remote_state ();
7181 struct remote_notif_state *rns = rs->notif_state;
7182
7183 /* This function can be notified when an inferior exists. When the
7184 target is not remote, the notification state is NULL. */
7185 if (rs->remote_desc == NULL)
7186 return;
7187
7188 reply = (struct stop_reply *) rns->pending_event[notif_client_stop.id];
c906108c 7189
74531fed 7190 /* Discard the in-flight notification. */
e99b03dc 7191 if (reply != NULL && reply->ptid.pid () == inf->pid)
74531fed 7192 {
32603266 7193 delete reply;
f48ff2a7 7194 rns->pending_event[notif_client_stop.id] = NULL;
74531fed 7195 }
c906108c 7196
74531fed
PA
7197 /* Discard the stop replies we have already pulled with
7198 vStopped. */
953edf2b
TT
7199 auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7200 rs->stop_reply_queue.end (),
7201 [=] (const stop_reply_up &event)
7202 {
7203 return event->ptid.pid () == inf->pid;
7204 });
7205 rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
bcc75809
YQ
7206}
7207
7208/* Discard the stop replies for RS in stop_reply_queue. */
f48ff2a7 7209
6b8edb51
PA
7210void
7211remote_target::discard_pending_stop_replies_in_queue ()
f48ff2a7 7212{
6b8edb51 7213 remote_state *rs = get_remote_state ();
f48ff2a7 7214
f48ff2a7
YQ
7215 /* Discard the stop replies we have already pulled with
7216 vStopped. */
953edf2b
TT
7217 auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7218 rs->stop_reply_queue.end (),
7219 [=] (const stop_reply_up &event)
7220 {
7221 return event->rs == rs;
7222 });
7223 rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
74531fed 7224}
43ff13b4 7225
722247f1
YQ
7226/* Remove the first reply in 'stop_reply_queue' which matches
7227 PTID. */
2e9f7625 7228
6b8edb51
PA
7229struct stop_reply *
7230remote_target::remote_notif_remove_queued_reply (ptid_t ptid)
74531fed 7231{
953edf2b 7232 remote_state *rs = get_remote_state ();
722247f1 7233
953edf2b
TT
7234 auto iter = std::find_if (rs->stop_reply_queue.begin (),
7235 rs->stop_reply_queue.end (),
7236 [=] (const stop_reply_up &event)
7237 {
7238 return event->ptid.matches (ptid);
7239 });
7240 struct stop_reply *result;
7241 if (iter == rs->stop_reply_queue.end ())
7242 result = nullptr;
7243 else
7244 {
7245 result = iter->release ();
7246 rs->stop_reply_queue.erase (iter);
7247 }
722247f1 7248
722247f1
YQ
7249 if (notif_debug)
7250 fprintf_unfiltered (gdb_stdlog,
7251 "notif: discard queued event: 'Stop' in %s\n",
a068643d 7252 target_pid_to_str (ptid).c_str ());
a744cf53 7253
953edf2b 7254 return result;
74531fed 7255}
75c99385 7256
74531fed
PA
7257/* Look for a queued stop reply belonging to PTID. If one is found,
7258 remove it from the queue, and return it. Returns NULL if none is
7259 found. If there are still queued events left to process, tell the
7260 event loop to get back to target_wait soon. */
e24a49d8 7261
6b8edb51
PA
7262struct stop_reply *
7263remote_target::queued_stop_reply (ptid_t ptid)
74531fed 7264{
953edf2b 7265 remote_state *rs = get_remote_state ();
722247f1 7266 struct stop_reply *r = remote_notif_remove_queued_reply (ptid);
74531fed 7267
953edf2b 7268 if (!rs->stop_reply_queue.empty ())
6b8edb51 7269 {
6b8edb51
PA
7270 /* There's still at least an event left. */
7271 mark_async_event_handler (rs->remote_async_inferior_event_token);
7272 }
74531fed 7273
722247f1 7274 return r;
74531fed
PA
7275}
7276
7277/* Push a fully parsed stop reply in the stop reply queue. Since we
7278 know that we now have at least one queued event left to pass to the
7279 core side, tell the event loop to get back to target_wait soon. */
7280
6b8edb51
PA
7281void
7282remote_target::push_stop_reply (struct stop_reply *new_event)
74531fed 7283{
6b8edb51 7284 remote_state *rs = get_remote_state ();
953edf2b 7285 rs->stop_reply_queue.push_back (stop_reply_up (new_event));
74531fed 7286
722247f1
YQ
7287 if (notif_debug)
7288 fprintf_unfiltered (gdb_stdlog,
7289 "notif: push 'Stop' %s to queue %d\n",
a068643d 7290 target_pid_to_str (new_event->ptid).c_str (),
953edf2b 7291 int (rs->stop_reply_queue.size ()));
74531fed 7292
6b8edb51 7293 mark_async_event_handler (rs->remote_async_inferior_event_token);
74531fed
PA
7294}
7295
7296/* Returns true if we have a stop reply for PTID. */
7297
6b8edb51
PA
7298int
7299remote_target::peek_stop_reply (ptid_t ptid)
74531fed 7300{
6b8edb51 7301 remote_state *rs = get_remote_state ();
953edf2b
TT
7302 for (auto &event : rs->stop_reply_queue)
7303 if (ptid == event->ptid
7304 && event->ws.kind == TARGET_WAITKIND_STOPPED)
7305 return 1;
7306 return 0;
74531fed
PA
7307}
7308
26d56a93
SL
7309/* Helper for remote_parse_stop_reply. Return nonzero if the substring
7310 starting with P and ending with PEND matches PREFIX. */
7311
7312static int
7313strprefix (const char *p, const char *pend, const char *prefix)
7314{
7315 for ( ; p < pend; p++, prefix++)
7316 if (*p != *prefix)
7317 return 0;
7318 return *prefix == '\0';
7319}
7320
74531fed
PA
7321/* Parse the stop reply in BUF. Either the function succeeds, and the
7322 result is stored in EVENT, or throws an error. */
7323
6b8edb51 7324void
bb277751 7325remote_target::remote_parse_stop_reply (const char *buf, stop_reply *event)
74531fed 7326{
5cd63fda 7327 remote_arch_state *rsa = NULL;
74531fed 7328 ULONGEST addr;
256642e8 7329 const char *p;
94585166 7330 int skipregs = 0;
74531fed
PA
7331
7332 event->ptid = null_ptid;
bcc75809 7333 event->rs = get_remote_state ();
74531fed
PA
7334 event->ws.kind = TARGET_WAITKIND_IGNORE;
7335 event->ws.value.integer = 0;
f7e6eed5 7336 event->stop_reason = TARGET_STOPPED_BY_NO_REASON;
32603266 7337 event->regcache.clear ();
dc146f7c 7338 event->core = -1;
74531fed
PA
7339
7340 switch (buf[0])
7341 {
7342 case 'T': /* Status with PC, SP, FP, ... */
cea39f65
MS
7343 /* Expedited reply, containing Signal, {regno, reg} repeat. */
7344 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
7345 ss = signal number
7346 n... = register number
7347 r... = register contents
7348 */
7349
7350 p = &buf[3]; /* after Txx */
7351 while (*p)
7352 {
256642e8 7353 const char *p1;
cea39f65 7354 int fieldsize;
43ff13b4 7355
1f10ba14
PA
7356 p1 = strchr (p, ':');
7357 if (p1 == NULL)
7358 error (_("Malformed packet(a) (missing colon): %s\n\
7359Packet: '%s'\n"),
7360 p, buf);
7361 if (p == p1)
7362 error (_("Malformed packet(a) (missing register number): %s\n\
7363Packet: '%s'\n"),
7364 p, buf);
3c3bea1c 7365
1f10ba14
PA
7366 /* Some "registers" are actually extended stop information.
7367 Note if you're adding a new entry here: GDB 7.9 and
7368 earlier assume that all register "numbers" that start
7369 with an hex digit are real register numbers. Make sure
7370 the server only sends such a packet if it knows the
7371 client understands it. */
c8e38a49 7372
26d56a93 7373 if (strprefix (p, p1, "thread"))
1f10ba14 7374 event->ptid = read_ptid (++p1, &p);
82075af2
JS
7375 else if (strprefix (p, p1, "syscall_entry"))
7376 {
7377 ULONGEST sysno;
7378
7379 event->ws.kind = TARGET_WAITKIND_SYSCALL_ENTRY;
7380 p = unpack_varlen_hex (++p1, &sysno);
7381 event->ws.value.syscall_number = (int) sysno;
7382 }
7383 else if (strprefix (p, p1, "syscall_return"))
7384 {
7385 ULONGEST sysno;
7386
7387 event->ws.kind = TARGET_WAITKIND_SYSCALL_RETURN;
7388 p = unpack_varlen_hex (++p1, &sysno);
7389 event->ws.value.syscall_number = (int) sysno;
7390 }
26d56a93
SL
7391 else if (strprefix (p, p1, "watch")
7392 || strprefix (p, p1, "rwatch")
7393 || strprefix (p, p1, "awatch"))
cea39f65 7394 {
f7e6eed5 7395 event->stop_reason = TARGET_STOPPED_BY_WATCHPOINT;
1f10ba14
PA
7396 p = unpack_varlen_hex (++p1, &addr);
7397 event->watch_data_address = (CORE_ADDR) addr;
cea39f65 7398 }
26d56a93 7399 else if (strprefix (p, p1, "swbreak"))
f7e6eed5
PA
7400 {
7401 event->stop_reason = TARGET_STOPPED_BY_SW_BREAKPOINT;
7402
7403 /* Make sure the stub doesn't forget to indicate support
7404 with qSupported. */
7405 if (packet_support (PACKET_swbreak_feature) != PACKET_ENABLE)
7406 error (_("Unexpected swbreak stop reason"));
7407
7408 /* The value part is documented as "must be empty",
7409 though we ignore it, in case we ever decide to make
7410 use of it in a backward compatible way. */
8424cc97 7411 p = strchrnul (p1 + 1, ';');
f7e6eed5 7412 }
26d56a93 7413 else if (strprefix (p, p1, "hwbreak"))
f7e6eed5
PA
7414 {
7415 event->stop_reason = TARGET_STOPPED_BY_HW_BREAKPOINT;
7416
7417 /* Make sure the stub doesn't forget to indicate support
7418 with qSupported. */
7419 if (packet_support (PACKET_hwbreak_feature) != PACKET_ENABLE)
7420 error (_("Unexpected hwbreak stop reason"));
7421
7422 /* See above. */
8424cc97 7423 p = strchrnul (p1 + 1, ';');
f7e6eed5 7424 }
26d56a93 7425 else if (strprefix (p, p1, "library"))
cea39f65 7426 {
1f10ba14 7427 event->ws.kind = TARGET_WAITKIND_LOADED;
8424cc97 7428 p = strchrnul (p1 + 1, ';');
1f10ba14 7429 }
26d56a93 7430 else if (strprefix (p, p1, "replaylog"))
1f10ba14
PA
7431 {
7432 event->ws.kind = TARGET_WAITKIND_NO_HISTORY;
7433 /* p1 will indicate "begin" or "end", but it makes
7434 no difference for now, so ignore it. */
8424cc97 7435 p = strchrnul (p1 + 1, ';');
1f10ba14 7436 }
26d56a93 7437 else if (strprefix (p, p1, "core"))
1f10ba14
PA
7438 {
7439 ULONGEST c;
a744cf53 7440
1f10ba14
PA
7441 p = unpack_varlen_hex (++p1, &c);
7442 event->core = c;
cea39f65 7443 }
26d56a93 7444 else if (strprefix (p, p1, "fork"))
de0d863e
DB
7445 {
7446 event->ws.value.related_pid = read_ptid (++p1, &p);
7447 event->ws.kind = TARGET_WAITKIND_FORKED;
7448 }
26d56a93 7449 else if (strprefix (p, p1, "vfork"))
c269dbdb
DB
7450 {
7451 event->ws.value.related_pid = read_ptid (++p1, &p);
7452 event->ws.kind = TARGET_WAITKIND_VFORKED;
7453 }
26d56a93 7454 else if (strprefix (p, p1, "vforkdone"))
c269dbdb
DB
7455 {
7456 event->ws.kind = TARGET_WAITKIND_VFORK_DONE;
8424cc97 7457 p = strchrnul (p1 + 1, ';');
c269dbdb 7458 }
6ab24463 7459 else if (strprefix (p, p1, "exec"))
94585166
DB
7460 {
7461 ULONGEST ignored;
94585166
DB
7462 int pathlen;
7463
7464 /* Determine the length of the execd pathname. */
7465 p = unpack_varlen_hex (++p1, &ignored);
7466 pathlen = (p - p1) / 2;
7467
7468 /* Save the pathname for event reporting and for
7469 the next run command. */
c6321f19
TT
7470 gdb::unique_xmalloc_ptr<char[]> pathname
7471 ((char *) xmalloc (pathlen + 1));
7472 hex2bin (p1, (gdb_byte *) pathname.get (), pathlen);
94585166
DB
7473 pathname[pathlen] = '\0';
7474
7475 /* This is freed during event handling. */
c6321f19 7476 event->ws.value.execd_pathname = pathname.release ();
94585166
DB
7477 event->ws.kind = TARGET_WAITKIND_EXECD;
7478
7479 /* Skip the registers included in this packet, since
7480 they may be for an architecture different from the
7481 one used by the original program. */
7482 skipregs = 1;
7483 }
65706a29
PA
7484 else if (strprefix (p, p1, "create"))
7485 {
7486 event->ws.kind = TARGET_WAITKIND_THREAD_CREATED;
8424cc97 7487 p = strchrnul (p1 + 1, ';');
65706a29 7488 }
cea39f65
MS
7489 else
7490 {
1f10ba14 7491 ULONGEST pnum;
256642e8 7492 const char *p_temp;
1f10ba14 7493
94585166
DB
7494 if (skipregs)
7495 {
8424cc97 7496 p = strchrnul (p1 + 1, ';');
94585166
DB
7497 p++;
7498 continue;
7499 }
7500
1f10ba14
PA
7501 /* Maybe a real ``P'' register number. */
7502 p_temp = unpack_varlen_hex (p, &pnum);
7503 /* If the first invalid character is the colon, we got a
7504 register number. Otherwise, it's an unknown stop
7505 reason. */
7506 if (p_temp == p1)
7507 {
5cd63fda
PA
7508 /* If we haven't parsed the event's thread yet, find
7509 it now, in order to find the architecture of the
7510 reported expedited registers. */
7511 if (event->ptid == null_ptid)
7512 {
24ed6739
AB
7513 /* If there is no thread-id information then leave
7514 the event->ptid as null_ptid. Later in
7515 process_stop_reply we will pick a suitable
7516 thread. */
5cd63fda
PA
7517 const char *thr = strstr (p1 + 1, ";thread:");
7518 if (thr != NULL)
7519 event->ptid = read_ptid (thr + strlen (";thread:"),
7520 NULL);
5cd63fda
PA
7521 }
7522
7523 if (rsa == NULL)
7524 {
5b6d1e4f
PA
7525 inferior *inf
7526 = (event->ptid == null_ptid
7527 ? NULL
7528 : find_inferior_ptid (this, event->ptid));
5cd63fda
PA
7529 /* If this is the first time we learn anything
7530 about this process, skip the registers
7531 included in this packet, since we don't yet
7532 know which architecture to use to parse them.
7533 We'll determine the architecture later when
7534 we process the stop reply and retrieve the
7535 target description, via
7536 remote_notice_new_inferior ->
7537 post_create_inferior. */
7538 if (inf == NULL)
7539 {
7540 p = strchrnul (p1 + 1, ';');
7541 p++;
7542 continue;
7543 }
7544
7545 event->arch = inf->gdbarch;
9d6eea31 7546 rsa = event->rs->get_remote_arch_state (event->arch);
5cd63fda
PA
7547 }
7548
7549 packet_reg *reg
7550 = packet_reg_from_pnum (event->arch, rsa, pnum);
1f10ba14 7551 cached_reg_t cached_reg;
43ff13b4 7552
1f10ba14
PA
7553 if (reg == NULL)
7554 error (_("Remote sent bad register number %s: %s\n\
8a3fe4f8 7555Packet: '%s'\n"),
1f10ba14 7556 hex_string (pnum), p, buf);
c8e38a49 7557
1f10ba14 7558 cached_reg.num = reg->regnum;
d1dff226 7559 cached_reg.data = (gdb_byte *)
5cd63fda 7560 xmalloc (register_size (event->arch, reg->regnum));
4100683b 7561
1f10ba14
PA
7562 p = p1 + 1;
7563 fieldsize = hex2bin (p, cached_reg.data,
5cd63fda 7564 register_size (event->arch, reg->regnum));
1f10ba14 7565 p += 2 * fieldsize;
5cd63fda 7566 if (fieldsize < register_size (event->arch, reg->regnum))
1f10ba14 7567 warning (_("Remote reply is too short: %s"), buf);
74531fed 7568
32603266 7569 event->regcache.push_back (cached_reg);
1f10ba14
PA
7570 }
7571 else
7572 {
7573 /* Not a number. Silently skip unknown optional
7574 info. */
8424cc97 7575 p = strchrnul (p1 + 1, ';');
1f10ba14 7576 }
cea39f65 7577 }
c8e38a49 7578
cea39f65
MS
7579 if (*p != ';')
7580 error (_("Remote register badly formatted: %s\nhere: %s"),
7581 buf, p);
7582 ++p;
7583 }
5b5596ff
PA
7584
7585 if (event->ws.kind != TARGET_WAITKIND_IGNORE)
7586 break;
7587
c8e38a49
PA
7588 /* fall through */
7589 case 'S': /* Old style status, just signal only. */
3a09da41
PA
7590 {
7591 int sig;
7592
7593 event->ws.kind = TARGET_WAITKIND_STOPPED;
7594 sig = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
7595 if (GDB_SIGNAL_FIRST <= sig && sig < GDB_SIGNAL_LAST)
7596 event->ws.value.sig = (enum gdb_signal) sig;
7597 else
7598 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
7599 }
c8e38a49 7600 break;
65706a29
PA
7601 case 'w': /* Thread exited. */
7602 {
65706a29
PA
7603 ULONGEST value;
7604
7605 event->ws.kind = TARGET_WAITKIND_THREAD_EXITED;
7606 p = unpack_varlen_hex (&buf[1], &value);
7607 event->ws.value.integer = value;
7608 if (*p != ';')
7609 error (_("stop reply packet badly formatted: %s"), buf);
974eac9d 7610 event->ptid = read_ptid (++p, NULL);
65706a29
PA
7611 break;
7612 }
c8e38a49
PA
7613 case 'W': /* Target exited. */
7614 case 'X':
7615 {
c8e38a49 7616 ULONGEST value;
82f73884 7617
c8e38a49
PA
7618 /* GDB used to accept only 2 hex chars here. Stubs should
7619 only send more if they detect GDB supports multi-process
7620 support. */
7621 p = unpack_varlen_hex (&buf[1], &value);
82f73884 7622
c8e38a49
PA
7623 if (buf[0] == 'W')
7624 {
7625 /* The remote process exited. */
74531fed
PA
7626 event->ws.kind = TARGET_WAITKIND_EXITED;
7627 event->ws.value.integer = value;
c8e38a49
PA
7628 }
7629 else
7630 {
7631 /* The remote process exited with a signal. */
74531fed 7632 event->ws.kind = TARGET_WAITKIND_SIGNALLED;
3a09da41
PA
7633 if (GDB_SIGNAL_FIRST <= value && value < GDB_SIGNAL_LAST)
7634 event->ws.value.sig = (enum gdb_signal) value;
7635 else
7636 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
c8e38a49 7637 }
82f73884 7638
e7af6c70
TBA
7639 /* If no process is specified, return null_ptid, and let the
7640 caller figure out the right process to use. */
7641 int pid = 0;
c8e38a49
PA
7642 if (*p == '\0')
7643 ;
7644 else if (*p == ';')
7645 {
7646 p++;
7647
0b24eb2d 7648 if (*p == '\0')
82f73884 7649 ;
61012eef 7650 else if (startswith (p, "process:"))
82f73884 7651 {
c8e38a49 7652 ULONGEST upid;
a744cf53 7653
c8e38a49
PA
7654 p += sizeof ("process:") - 1;
7655 unpack_varlen_hex (p, &upid);
7656 pid = upid;
82f73884
PA
7657 }
7658 else
7659 error (_("unknown stop reply packet: %s"), buf);
43ff13b4 7660 }
c8e38a49
PA
7661 else
7662 error (_("unknown stop reply packet: %s"), buf);
f2907e49 7663 event->ptid = ptid_t (pid);
74531fed
PA
7664 }
7665 break;
f2faf941
PA
7666 case 'N':
7667 event->ws.kind = TARGET_WAITKIND_NO_RESUMED;
7668 event->ptid = minus_one_ptid;
7669 break;
74531fed 7670 }
74531fed
PA
7671}
7672
722247f1
YQ
7673/* When the stub wants to tell GDB about a new notification reply, it
7674 sends a notification (%Stop, for example). Those can come it at
7675 any time, hence, we have to make sure that any pending
7676 putpkt/getpkt sequence we're making is finished, before querying
7677 the stub for more events with the corresponding ack command
7678 (vStopped, for example). E.g., if we started a vStopped sequence
7679 immediately upon receiving the notification, something like this
7680 could happen:
74531fed
PA
7681
7682 1.1) --> Hg 1
7683 1.2) <-- OK
7684 1.3) --> g
7685 1.4) <-- %Stop
7686 1.5) --> vStopped
7687 1.6) <-- (registers reply to step #1.3)
7688
7689 Obviously, the reply in step #1.6 would be unexpected to a vStopped
7690 query.
7691
796cb314 7692 To solve this, whenever we parse a %Stop notification successfully,
74531fed
PA
7693 we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
7694 doing whatever we were doing:
7695
7696 2.1) --> Hg 1
7697 2.2) <-- OK
7698 2.3) --> g
7699 2.4) <-- %Stop
7700 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
7701 2.5) <-- (registers reply to step #2.3)
7702
85102364 7703 Eventually after step #2.5, we return to the event loop, which
74531fed
PA
7704 notices there's an event on the
7705 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
7706 associated callback --- the function below. At this point, we're
7707 always safe to start a vStopped sequence. :
7708
7709 2.6) --> vStopped
7710 2.7) <-- T05 thread:2
7711 2.8) --> vStopped
7712 2.9) --> OK
7713*/
7714
722247f1 7715void
6b8edb51 7716remote_target::remote_notif_get_pending_events (notif_client *nc)
74531fed
PA
7717{
7718 struct remote_state *rs = get_remote_state ();
74531fed 7719
f48ff2a7 7720 if (rs->notif_state->pending_event[nc->id] != NULL)
74531fed 7721 {
722247f1
YQ
7722 if (notif_debug)
7723 fprintf_unfiltered (gdb_stdlog,
7724 "notif: process: '%s' ack pending event\n",
7725 nc->name);
74531fed 7726
722247f1 7727 /* acknowledge */
8d64371b
TT
7728 nc->ack (this, nc, rs->buf.data (),
7729 rs->notif_state->pending_event[nc->id]);
f48ff2a7 7730 rs->notif_state->pending_event[nc->id] = NULL;
74531fed
PA
7731
7732 while (1)
7733 {
8d64371b
TT
7734 getpkt (&rs->buf, 0);
7735 if (strcmp (rs->buf.data (), "OK") == 0)
74531fed
PA
7736 break;
7737 else
8d64371b 7738 remote_notif_ack (this, nc, rs->buf.data ());
74531fed
PA
7739 }
7740 }
722247f1
YQ
7741 else
7742 {
7743 if (notif_debug)
7744 fprintf_unfiltered (gdb_stdlog,
7745 "notif: process: '%s' no pending reply\n",
7746 nc->name);
7747 }
74531fed
PA
7748}
7749
6b8edb51
PA
7750/* Wrapper around remote_target::remote_notif_get_pending_events to
7751 avoid having to export the whole remote_target class. */
7752
7753void
7754remote_notif_get_pending_events (remote_target *remote, notif_client *nc)
7755{
7756 remote->remote_notif_get_pending_events (nc);
7757}
7758
8f66807b
AB
7759/* Called from process_stop_reply when the stop packet we are responding
7760 to didn't include a process-id or thread-id. STATUS is the stop event
7761 we are responding to.
7762
7763 It is the task of this function to select a suitable thread (or process)
7764 and return its ptid, this is the thread (or process) we will assume the
7765 stop event came from.
7766
7767 In some cases there isn't really any choice about which thread (or
7768 process) is selected, a basic remote with a single process containing a
7769 single thread might choose not to send any process-id or thread-id in
7770 its stop packets, this function will select and return the one and only
7771 thread.
7772
7773 However, if a target supports multiple threads (or processes) and still
7774 doesn't include a thread-id (or process-id) in its stop packet then
7775 first, this is a badly behaving target, and second, we're going to have
7776 to select a thread (or process) at random and use that. This function
7777 will print a warning to the user if it detects that there is the
7778 possibility that GDB is guessing which thread (or process) to
7779 report.
7780
7781 Note that this is called before GDB fetches the updated thread list from the
7782 target. So it's possible for the stop reply to be ambiguous and for GDB to
7783 not realize it. For example, if there's initially one thread, the target
7784 spawns a second thread, and then sends a stop reply without an id that
7785 concerns the first thread. GDB will assume the stop reply is about the
7786 first thread - the only thread it knows about - without printing a warning.
7787 Anyway, if the remote meant for the stop reply to be about the second thread,
7788 then it would be really broken, because GDB doesn't know about that thread
7789 yet. */
74531fed 7790
6b8edb51 7791ptid_t
8f66807b
AB
7792remote_target::select_thread_for_ambiguous_stop_reply
7793 (const struct target_waitstatus *status)
74531fed 7794{
8f66807b
AB
7795 /* Some stop events apply to all threads in an inferior, while others
7796 only apply to a single thread. */
7797 bool process_wide_stop
7798 = (status->kind == TARGET_WAITKIND_EXITED
7799 || status->kind == TARGET_WAITKIND_SIGNALLED);
74531fed 7800
8f66807b
AB
7801 thread_info *first_resumed_thread = nullptr;
7802 bool ambiguous = false;
74531fed 7803
8f66807b
AB
7804 /* Consider all non-exited threads of the target, find the first resumed
7805 one. */
7806 for (thread_info *thr : all_non_exited_threads (this))
24ed6739 7807 {
8f66807b 7808 remote_thread_info *remote_thr = get_remote_thread_info (thr);
cada5fc9 7809
8f66807b
AB
7810 if (remote_thr->resume_state () != resume_state::RESUMED)
7811 continue;
24ed6739 7812
8f66807b
AB
7813 if (first_resumed_thread == nullptr)
7814 first_resumed_thread = thr;
7815 else if (!process_wide_stop
7816 || first_resumed_thread->ptid.pid () != thr->ptid.pid ())
7817 ambiguous = true;
7818 }
7819
7820 gdb_assert (first_resumed_thread != nullptr);
cada5fc9 7821
8f66807b
AB
7822 /* Warn if the remote target is sending ambiguous stop replies. */
7823 if (ambiguous)
7824 {
7825 static bool warned = false;
7826
7827 if (!warned)
7828 {
7829 /* If you are seeing this warning then the remote target has
7830 stopped without specifying a thread-id, but the target
7831 does have multiple threads (or inferiors), and so GDB is
7832 having to guess which thread stopped.
7833
7834 Examples of what might cause this are the target sending
7835 and 'S' stop packet, or a 'T' stop packet and not
7836 including a thread-id.
7837
7838 Additionally, the target might send a 'W' or 'X packet
7839 without including a process-id, when the target has
7840 multiple running inferiors. */
7841 if (process_wide_stop)
7842 warning (_("multi-inferior target stopped without "
7843 "sending a process-id, using first "
7844 "non-exited inferior"));
cada5fc9 7845 else
8f66807b
AB
7846 warning (_("multi-threaded target stopped without "
7847 "sending a thread-id, using first "
7848 "non-exited thread"));
7849 warned = true;
24ed6739 7850 }
24ed6739 7851 }
74531fed 7852
8f66807b
AB
7853 /* If this is a stop for all threads then don't use a particular threads
7854 ptid, instead create a new ptid where only the pid field is set. */
7855 if (process_wide_stop)
7856 return ptid_t (first_resumed_thread->ptid.pid ());
7857 else
7858 return first_resumed_thread->ptid;
7859}
7860
7861/* Called when it is decided that STOP_REPLY holds the info of the
7862 event that is to be returned to the core. This function always
7863 destroys STOP_REPLY. */
7864
7865ptid_t
7866remote_target::process_stop_reply (struct stop_reply *stop_reply,
7867 struct target_waitstatus *status)
7868{
7869 *status = stop_reply->ws;
7870 ptid_t ptid = stop_reply->ptid;
7871
7872 /* If no thread/process was reported by the stub then select a suitable
7873 thread/process. */
7874 if (ptid == null_ptid)
7875 ptid = select_thread_for_ambiguous_stop_reply (status);
7876 gdb_assert (ptid != null_ptid);
7877
5f3563ea 7878 if (status->kind != TARGET_WAITKIND_EXITED
f2faf941
PA
7879 && status->kind != TARGET_WAITKIND_SIGNALLED
7880 && status->kind != TARGET_WAITKIND_NO_RESUMED)
74531fed 7881 {
5f3563ea 7882 /* Expedited registers. */
32603266 7883 if (!stop_reply->regcache.empty ())
5f3563ea 7884 {
217f1f79 7885 struct regcache *regcache
5b6d1e4f 7886 = get_thread_arch_regcache (this, ptid, stop_reply->arch);
5f3563ea 7887
32603266
TT
7888 for (cached_reg_t &reg : stop_reply->regcache)
7889 {
7890 regcache->raw_supply (reg.num, reg.data);
7891 xfree (reg.data);
7892 }
d1dff226 7893
32603266 7894 stop_reply->regcache.clear ();
5f3563ea 7895 }
74531fed 7896
1941c569 7897 remote_notice_new_inferior (ptid, 0);
5b6d1e4f 7898 remote_thread_info *remote_thr = get_remote_thread_info (this, ptid);
799a2abe
PA
7899 remote_thr->core = stop_reply->core;
7900 remote_thr->stop_reason = stop_reply->stop_reason;
7901 remote_thr->watch_data_address = stop_reply->watch_data_address;
c9d22089
SM
7902
7903 if (target_is_non_stop_p ())
7904 {
7905 /* If the target works in non-stop mode, a stop-reply indicates that
7906 only this thread stopped. */
7907 remote_thr->set_not_resumed ();
7908 }
7909 else
7910 {
7911 /* If the target works in all-stop mode, a stop-reply indicates that
7912 all the target's threads stopped. */
7913 for (thread_info *tp : all_non_exited_threads (this))
7914 get_remote_thread_info (tp)->set_not_resumed ();
7915 }
74531fed
PA
7916 }
7917
32603266 7918 delete stop_reply;
74531fed
PA
7919 return ptid;
7920}
7921
7922/* The non-stop mode version of target_wait. */
7923
6b8edb51 7924ptid_t
b60cea74
TT
7925remote_target::wait_ns (ptid_t ptid, struct target_waitstatus *status,
7926 target_wait_flags options)
74531fed
PA
7927{
7928 struct remote_state *rs = get_remote_state ();
74531fed
PA
7929 struct stop_reply *stop_reply;
7930 int ret;
fee9eda9 7931 int is_notif = 0;
74531fed
PA
7932
7933 /* If in non-stop mode, get out of getpkt even if a
7934 notification is received. */
7935
8d64371b 7936 ret = getpkt_or_notif_sane (&rs->buf, 0 /* forever */, &is_notif);
74531fed
PA
7937 while (1)
7938 {
fee9eda9 7939 if (ret != -1 && !is_notif)
74531fed
PA
7940 switch (rs->buf[0])
7941 {
7942 case 'E': /* Error of some sort. */
7943 /* We're out of sync with the target now. Did it continue
7944 or not? We can't tell which thread it was in non-stop,
7945 so just ignore this. */
8d64371b 7946 warning (_("Remote failure reply: %s"), rs->buf.data ());
74531fed
PA
7947 break;
7948 case 'O': /* Console output. */
8d64371b 7949 remote_console_output (&rs->buf[1]);
74531fed
PA
7950 break;
7951 default:
8d64371b 7952 warning (_("Invalid remote reply: %s"), rs->buf.data ());
74531fed
PA
7953 break;
7954 }
7955
7956 /* Acknowledge a pending stop reply that may have arrived in the
7957 mean time. */
f48ff2a7 7958 if (rs->notif_state->pending_event[notif_client_stop.id] != NULL)
722247f1 7959 remote_notif_get_pending_events (&notif_client_stop);
74531fed
PA
7960
7961 /* If indeed we noticed a stop reply, we're done. */
7962 stop_reply = queued_stop_reply (ptid);
7963 if (stop_reply != NULL)
7964 return process_stop_reply (stop_reply, status);
7965
47608cb1 7966 /* Still no event. If we're just polling for an event, then
74531fed 7967 return to the event loop. */
47608cb1 7968 if (options & TARGET_WNOHANG)
74531fed
PA
7969 {
7970 status->kind = TARGET_WAITKIND_IGNORE;
7971 return minus_one_ptid;
7972 }
7973
47608cb1 7974 /* Otherwise do a blocking wait. */
8d64371b 7975 ret = getpkt_or_notif_sane (&rs->buf, 1 /* forever */, &is_notif);
74531fed
PA
7976 }
7977}
7978
31ba933e
PA
7979/* Return the first resumed thread. */
7980
7981static ptid_t
5b6d1e4f 7982first_remote_resumed_thread (remote_target *target)
31ba933e 7983{
5b6d1e4f 7984 for (thread_info *tp : all_non_exited_threads (target, minus_one_ptid))
31ba933e
PA
7985 if (tp->resumed)
7986 return tp->ptid;
7987 return null_ptid;
7988}
7989
74531fed
PA
7990/* Wait until the remote machine stops, then return, storing status in
7991 STATUS just as `wait' would. */
7992
6b8edb51 7993ptid_t
b60cea74
TT
7994remote_target::wait_as (ptid_t ptid, target_waitstatus *status,
7995 target_wait_flags options)
74531fed
PA
7996{
7997 struct remote_state *rs = get_remote_state ();
74531fed 7998 ptid_t event_ptid = null_ptid;
cea39f65 7999 char *buf;
74531fed
PA
8000 struct stop_reply *stop_reply;
8001
47608cb1
PA
8002 again:
8003
74531fed
PA
8004 status->kind = TARGET_WAITKIND_IGNORE;
8005 status->value.integer = 0;
8006
8007 stop_reply = queued_stop_reply (ptid);
8008 if (stop_reply != NULL)
8009 return process_stop_reply (stop_reply, status);
8010
8011 if (rs->cached_wait_status)
8012 /* Use the cached wait status, but only once. */
8013 rs->cached_wait_status = 0;
8014 else
8015 {
8016 int ret;
722247f1 8017 int is_notif;
567420d1 8018 int forever = ((options & TARGET_WNOHANG) == 0
6b8edb51 8019 && rs->wait_forever_enabled_p);
567420d1
PA
8020
8021 if (!rs->waiting_for_stop_reply)
8022 {
8023 status->kind = TARGET_WAITKIND_NO_RESUMED;
8024 return minus_one_ptid;
8025 }
74531fed 8026
74531fed
PA
8027 /* FIXME: cagney/1999-09-27: If we're in async mode we should
8028 _never_ wait for ever -> test on target_is_async_p().
8029 However, before we do that we need to ensure that the caller
8030 knows how to take the target into/out of async mode. */
8d64371b 8031 ret = getpkt_or_notif_sane (&rs->buf, forever, &is_notif);
722247f1
YQ
8032
8033 /* GDB gets a notification. Return to core as this event is
8034 not interesting. */
8035 if (ret != -1 && is_notif)
8036 return minus_one_ptid;
567420d1
PA
8037
8038 if (ret == -1 && (options & TARGET_WNOHANG) != 0)
8039 return minus_one_ptid;
74531fed
PA
8040 }
8041
8d64371b 8042 buf = rs->buf.data ();
74531fed 8043
3a29589a
DJ
8044 /* Assume that the target has acknowledged Ctrl-C unless we receive
8045 an 'F' or 'O' packet. */
8046 if (buf[0] != 'F' && buf[0] != 'O')
8047 rs->ctrlc_pending_p = 0;
8048
74531fed
PA
8049 switch (buf[0])
8050 {
8051 case 'E': /* Error of some sort. */
8052 /* We're out of sync with the target now. Did it continue or
8053 not? Not is more likely, so report a stop. */
29090fb6
LM
8054 rs->waiting_for_stop_reply = 0;
8055
74531fed
PA
8056 warning (_("Remote failure reply: %s"), buf);
8057 status->kind = TARGET_WAITKIND_STOPPED;
a493e3e2 8058 status->value.sig = GDB_SIGNAL_0;
74531fed
PA
8059 break;
8060 case 'F': /* File-I/O request. */
e42e5352
YQ
8061 /* GDB may access the inferior memory while handling the File-I/O
8062 request, but we don't want GDB accessing memory while waiting
8063 for a stop reply. See the comments in putpkt_binary. Set
8064 waiting_for_stop_reply to 0 temporarily. */
8065 rs->waiting_for_stop_reply = 0;
6b8edb51 8066 remote_fileio_request (this, buf, rs->ctrlc_pending_p);
3a29589a 8067 rs->ctrlc_pending_p = 0;
e42e5352
YQ
8068 /* GDB handled the File-I/O request, and the target is running
8069 again. Keep waiting for events. */
8070 rs->waiting_for_stop_reply = 1;
74531fed 8071 break;
f2faf941 8072 case 'N': case 'T': case 'S': case 'X': case 'W':
74531fed 8073 {
29090fb6
LM
8074 /* There is a stop reply to handle. */
8075 rs->waiting_for_stop_reply = 0;
8076
8077 stop_reply
6b8edb51
PA
8078 = (struct stop_reply *) remote_notif_parse (this,
8079 &notif_client_stop,
8d64371b 8080 rs->buf.data ());
74531fed 8081
74531fed 8082 event_ptid = process_stop_reply (stop_reply, status);
c8e38a49
PA
8083 break;
8084 }
8085 case 'O': /* Console output. */
8086 remote_console_output (buf + 1);
c8e38a49
PA
8087 break;
8088 case '\0':
b73be471 8089 if (rs->last_sent_signal != GDB_SIGNAL_0)
c8e38a49
PA
8090 {
8091 /* Zero length reply means that we tried 'S' or 'C' and the
8092 remote system doesn't support it. */
223ffa71 8093 target_terminal::ours_for_output ();
c8e38a49
PA
8094 printf_filtered
8095 ("Can't send signals to this remote system. %s not sent.\n",
b73be471
TT
8096 gdb_signal_to_name (rs->last_sent_signal));
8097 rs->last_sent_signal = GDB_SIGNAL_0;
223ffa71 8098 target_terminal::inferior ();
c8e38a49 8099
f5c4fcd9
TT
8100 strcpy (buf, rs->last_sent_step ? "s" : "c");
8101 putpkt (buf);
c8e38a49 8102 break;
43ff13b4 8103 }
86a73007 8104 /* fallthrough */
c8e38a49
PA
8105 default:
8106 warning (_("Invalid remote reply: %s"), buf);
c8e38a49 8107 break;
43ff13b4 8108 }
c8e38a49 8109
f2faf941
PA
8110 if (status->kind == TARGET_WAITKIND_NO_RESUMED)
8111 return minus_one_ptid;
8112 else if (status->kind == TARGET_WAITKIND_IGNORE)
47608cb1
PA
8113 {
8114 /* Nothing interesting happened. If we're doing a non-blocking
8115 poll, we're done. Otherwise, go back to waiting. */
8116 if (options & TARGET_WNOHANG)
8117 return minus_one_ptid;
8118 else
8119 goto again;
8120 }
74531fed
PA
8121 else if (status->kind != TARGET_WAITKIND_EXITED
8122 && status->kind != TARGET_WAITKIND_SIGNALLED)
82f73884 8123 {
d7e15655 8124 if (event_ptid != null_ptid)
47f8a51d 8125 record_currthread (rs, event_ptid);
82f73884 8126 else
5b6d1e4f 8127 event_ptid = first_remote_resumed_thread (this);
43ff13b4 8128 }
74531fed 8129 else
e7af6c70
TBA
8130 {
8131 /* A process exit. Invalidate our notion of current thread. */
8132 record_currthread (rs, minus_one_ptid);
8133 /* It's possible that the packet did not include a pid. */
8134 if (event_ptid == null_ptid)
5b6d1e4f 8135 event_ptid = first_remote_resumed_thread (this);
e7af6c70
TBA
8136 /* EVENT_PTID could still be NULL_PTID. Double-check. */
8137 if (event_ptid == null_ptid)
8138 event_ptid = magic_null_ptid;
8139 }
79d7f229 8140
82f73884 8141 return event_ptid;
43ff13b4
JM
8142}
8143
74531fed
PA
8144/* Wait until the remote machine stops, then return, storing status in
8145 STATUS just as `wait' would. */
8146
f6ac5f3d 8147ptid_t
b60cea74
TT
8148remote_target::wait (ptid_t ptid, struct target_waitstatus *status,
8149 target_wait_flags options)
c8e38a49
PA
8150{
8151 ptid_t event_ptid;
8152
6efcd9a8 8153 if (target_is_non_stop_p ())
6b8edb51 8154 event_ptid = wait_ns (ptid, status, options);
74531fed 8155 else
6b8edb51 8156 event_ptid = wait_as (ptid, status, options);
c8e38a49 8157
d9d41e78 8158 if (target_is_async_p ())
c8e38a49 8159 {
6b8edb51
PA
8160 remote_state *rs = get_remote_state ();
8161
74531fed
PA
8162 /* If there are are events left in the queue tell the event loop
8163 to return here. */
953edf2b 8164 if (!rs->stop_reply_queue.empty ())
6b8edb51 8165 mark_async_event_handler (rs->remote_async_inferior_event_token);
c8e38a49 8166 }
c8e38a49
PA
8167
8168 return event_ptid;
8169}
8170
74ca34ce 8171/* Fetch a single register using a 'p' packet. */
c906108c 8172
6b8edb51
PA
8173int
8174remote_target::fetch_register_using_p (struct regcache *regcache,
8175 packet_reg *reg)
b96ec7ac 8176{
ac7936df 8177 struct gdbarch *gdbarch = regcache->arch ();
b96ec7ac 8178 struct remote_state *rs = get_remote_state ();
2e9f7625 8179 char *buf, *p;
9890e433 8180 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
b96ec7ac
AC
8181 int i;
8182
4082afcc 8183 if (packet_support (PACKET_p) == PACKET_DISABLE)
74ca34ce
DJ
8184 return 0;
8185
8186 if (reg->pnum == -1)
8187 return 0;
8188
8d64371b 8189 p = rs->buf.data ();
fcad0fa4 8190 *p++ = 'p';
74ca34ce 8191 p += hexnumstr (p, reg->pnum);
fcad0fa4 8192 *p++ = '\0';
1f4437a4 8193 putpkt (rs->buf);
8d64371b 8194 getpkt (&rs->buf, 0);
3f9a994c 8195
8d64371b 8196 buf = rs->buf.data ();
2e9f7625 8197
8d64371b 8198 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_p]))
74ca34ce
DJ
8199 {
8200 case PACKET_OK:
8201 break;
8202 case PACKET_UNKNOWN:
8203 return 0;
8204 case PACKET_ERROR:
27a9c0bf 8205 error (_("Could not fetch register \"%s\"; remote failure reply '%s'"),
ac7936df 8206 gdbarch_register_name (regcache->arch (),
27a9c0bf
MS
8207 reg->regnum),
8208 buf);
74ca34ce 8209 }
3f9a994c
JB
8210
8211 /* If this register is unfetchable, tell the regcache. */
8212 if (buf[0] == 'x')
8480adf2 8213 {
73e1c03f 8214 regcache->raw_supply (reg->regnum, NULL);
8480adf2 8215 return 1;
b96ec7ac 8216 }
b96ec7ac 8217
3f9a994c
JB
8218 /* Otherwise, parse and supply the value. */
8219 p = buf;
8220 i = 0;
8221 while (p[0] != 0)
8222 {
8223 if (p[1] == 0)
74ca34ce 8224 error (_("fetch_register_using_p: early buf termination"));
3f9a994c
JB
8225
8226 regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
8227 p += 2;
8228 }
73e1c03f 8229 regcache->raw_supply (reg->regnum, regp);
3f9a994c 8230 return 1;
b96ec7ac
AC
8231}
8232
74ca34ce
DJ
8233/* Fetch the registers included in the target's 'g' packet. */
8234
6b8edb51
PA
8235int
8236remote_target::send_g_packet ()
c906108c 8237{
d01949b6 8238 struct remote_state *rs = get_remote_state ();
cea39f65 8239 int buf_len;
c906108c 8240
8d64371b 8241 xsnprintf (rs->buf.data (), get_remote_packet_size (), "g");
b75abf5b 8242 putpkt (rs->buf);
8d64371b 8243 getpkt (&rs->buf, 0);
b75abf5b
AK
8244 if (packet_check_result (rs->buf) == PACKET_ERROR)
8245 error (_("Could not read registers; remote failure reply '%s'"),
dda83cd7 8246 rs->buf.data ());
c906108c 8247
29709017
DJ
8248 /* We can get out of synch in various cases. If the first character
8249 in the buffer is not a hex character, assume that has happened
8250 and try to fetch another packet to read. */
8251 while ((rs->buf[0] < '0' || rs->buf[0] > '9')
8252 && (rs->buf[0] < 'A' || rs->buf[0] > 'F')
8253 && (rs->buf[0] < 'a' || rs->buf[0] > 'f')
8254 && rs->buf[0] != 'x') /* New: unavailable register value. */
8255 {
8256 if (remote_debug)
8257 fprintf_unfiltered (gdb_stdlog,
8258 "Bad register packet; fetching a new packet\n");
8d64371b 8259 getpkt (&rs->buf, 0);
29709017
DJ
8260 }
8261
8d64371b 8262 buf_len = strlen (rs->buf.data ());
74ca34ce
DJ
8263
8264 /* Sanity check the received packet. */
8265 if (buf_len % 2 != 0)
8d64371b 8266 error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf.data ());
29709017
DJ
8267
8268 return buf_len / 2;
8269}
8270
6b8edb51
PA
8271void
8272remote_target::process_g_packet (struct regcache *regcache)
29709017 8273{
ac7936df 8274 struct gdbarch *gdbarch = regcache->arch ();
29709017 8275 struct remote_state *rs = get_remote_state ();
9d6eea31 8276 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
29709017
DJ
8277 int i, buf_len;
8278 char *p;
8279 char *regs;
8280
8d64371b 8281 buf_len = strlen (rs->buf.data ());
29709017
DJ
8282
8283 /* Further sanity checks, with knowledge of the architecture. */
74ca34ce 8284 if (buf_len > 2 * rsa->sizeof_g_packet)
fc809827 8285 error (_("Remote 'g' packet reply is too long (expected %ld bytes, got %d "
8d64371b
TT
8286 "bytes): %s"),
8287 rsa->sizeof_g_packet, buf_len / 2,
8288 rs->buf.data ());
74ca34ce
DJ
8289
8290 /* Save the size of the packet sent to us by the target. It is used
8291 as a heuristic when determining the max size of packets that the
8292 target can safely receive. */
8293 if (rsa->actual_register_packet_size == 0)
8294 rsa->actual_register_packet_size = buf_len;
8295
8296 /* If this is smaller than we guessed the 'g' packet would be,
8297 update our records. A 'g' reply that doesn't include a register's
8298 value implies either that the register is not available, or that
8299 the 'p' packet must be used. */
8300 if (buf_len < 2 * rsa->sizeof_g_packet)
b323314b 8301 {
9dc193c3 8302 long sizeof_g_packet = buf_len / 2;
74ca34ce 8303
4a22f64d 8304 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
b96ec7ac 8305 {
9dc193c3
LF
8306 long offset = rsa->regs[i].offset;
8307 long reg_size = register_size (gdbarch, i);
8308
74ca34ce
DJ
8309 if (rsa->regs[i].pnum == -1)
8310 continue;
8311
9dc193c3 8312 if (offset >= sizeof_g_packet)
74ca34ce 8313 rsa->regs[i].in_g_packet = 0;
9dc193c3
LF
8314 else if (offset + reg_size > sizeof_g_packet)
8315 error (_("Truncated register %d in remote 'g' packet"), i);
b96ec7ac 8316 else
74ca34ce 8317 rsa->regs[i].in_g_packet = 1;
b96ec7ac 8318 }
9dc193c3
LF
8319
8320 /* Looks valid enough, we can assume this is the correct length
dda83cd7
SM
8321 for a 'g' packet. It's important not to adjust
8322 rsa->sizeof_g_packet if we have truncated registers otherwise
8323 this "if" won't be run the next time the method is called
8324 with a packet of the same size and one of the internal errors
8325 below will trigger instead. */
9dc193c3 8326 rsa->sizeof_g_packet = sizeof_g_packet;
74ca34ce 8327 }
b323314b 8328
224c3ddb 8329 regs = (char *) alloca (rsa->sizeof_g_packet);
c906108c
SS
8330
8331 /* Unimplemented registers read as all bits zero. */
ea9c271d 8332 memset (regs, 0, rsa->sizeof_g_packet);
c906108c 8333
c906108c
SS
8334 /* Reply describes registers byte by byte, each byte encoded as two
8335 hex characters. Suck them all up, then supply them to the
8336 register cacheing/storage mechanism. */
8337
8d64371b 8338 p = rs->buf.data ();
ea9c271d 8339 for (i = 0; i < rsa->sizeof_g_packet; i++)
c906108c 8340 {
74ca34ce
DJ
8341 if (p[0] == 0 || p[1] == 0)
8342 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
8343 internal_error (__FILE__, __LINE__,
9b20d036 8344 _("unexpected end of 'g' packet reply"));
74ca34ce 8345
c906108c 8346 if (p[0] == 'x' && p[1] == 'x')
c5aa993b 8347 regs[i] = 0; /* 'x' */
c906108c
SS
8348 else
8349 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
8350 p += 2;
8351 }
8352
a744cf53
MS
8353 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
8354 {
8355 struct packet_reg *r = &rsa->regs[i];
9dc193c3 8356 long reg_size = register_size (gdbarch, i);
a744cf53
MS
8357
8358 if (r->in_g_packet)
8359 {
8d64371b 8360 if ((r->offset + reg_size) * 2 > strlen (rs->buf.data ()))
a744cf53
MS
8361 /* This shouldn't happen - we adjusted in_g_packet above. */
8362 internal_error (__FILE__, __LINE__,
9b20d036 8363 _("unexpected end of 'g' packet reply"));
a744cf53
MS
8364 else if (rs->buf[r->offset * 2] == 'x')
8365 {
8d64371b 8366 gdb_assert (r->offset * 2 < strlen (rs->buf.data ()));
a744cf53
MS
8367 /* The register isn't available, mark it as such (at
8368 the same time setting the value to zero). */
73e1c03f 8369 regcache->raw_supply (r->regnum, NULL);
a744cf53
MS
8370 }
8371 else
73e1c03f 8372 regcache->raw_supply (r->regnum, regs + r->offset);
a744cf53
MS
8373 }
8374 }
c906108c
SS
8375}
8376
6b8edb51
PA
8377void
8378remote_target::fetch_registers_using_g (struct regcache *regcache)
29709017
DJ
8379{
8380 send_g_packet ();
56be3814 8381 process_g_packet (regcache);
29709017
DJ
8382}
8383
e6e4e701
PA
8384/* Make the remote selected traceframe match GDB's selected
8385 traceframe. */
8386
6b8edb51
PA
8387void
8388remote_target::set_remote_traceframe ()
e6e4e701
PA
8389{
8390 int newnum;
262e1174 8391 struct remote_state *rs = get_remote_state ();
e6e4e701 8392
262e1174 8393 if (rs->remote_traceframe_number == get_traceframe_number ())
e6e4e701
PA
8394 return;
8395
8396 /* Avoid recursion, remote_trace_find calls us again. */
262e1174 8397 rs->remote_traceframe_number = get_traceframe_number ();
e6e4e701
PA
8398
8399 newnum = target_trace_find (tfind_number,
8400 get_traceframe_number (), 0, 0, NULL);
8401
8402 /* Should not happen. If it does, all bets are off. */
8403 if (newnum != get_traceframe_number ())
8404 warning (_("could not set remote traceframe"));
8405}
8406
f6ac5f3d
PA
8407void
8408remote_target::fetch_registers (struct regcache *regcache, int regnum)
74ca34ce 8409{
ac7936df 8410 struct gdbarch *gdbarch = regcache->arch ();
9d6eea31
PA
8411 struct remote_state *rs = get_remote_state ();
8412 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
74ca34ce
DJ
8413 int i;
8414
e6e4e701 8415 set_remote_traceframe ();
222312d3 8416 set_general_thread (regcache->ptid ());
74ca34ce
DJ
8417
8418 if (regnum >= 0)
8419 {
5cd63fda 8420 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
a744cf53 8421
74ca34ce
DJ
8422 gdb_assert (reg != NULL);
8423
8424 /* If this register might be in the 'g' packet, try that first -
8425 we are likely to read more than one register. If this is the
8426 first 'g' packet, we might be overly optimistic about its
8427 contents, so fall back to 'p'. */
8428 if (reg->in_g_packet)
8429 {
56be3814 8430 fetch_registers_using_g (regcache);
74ca34ce
DJ
8431 if (reg->in_g_packet)
8432 return;
8433 }
8434
56be3814 8435 if (fetch_register_using_p (regcache, reg))
74ca34ce
DJ
8436 return;
8437
8438 /* This register is not available. */
73e1c03f 8439 regcache->raw_supply (reg->regnum, NULL);
74ca34ce
DJ
8440
8441 return;
8442 }
8443
56be3814 8444 fetch_registers_using_g (regcache);
74ca34ce 8445
5cd63fda 8446 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
74ca34ce 8447 if (!rsa->regs[i].in_g_packet)
56be3814 8448 if (!fetch_register_using_p (regcache, &rsa->regs[i]))
74ca34ce
DJ
8449 {
8450 /* This register is not available. */
73e1c03f 8451 regcache->raw_supply (i, NULL);
74ca34ce
DJ
8452 }
8453}
8454
c906108c
SS
8455/* Prepare to store registers. Since we may send them all (using a
8456 'G' request), we have to read out the ones we don't want to change
8457 first. */
8458
f6ac5f3d
PA
8459void
8460remote_target::prepare_to_store (struct regcache *regcache)
c906108c 8461{
9d6eea31
PA
8462 struct remote_state *rs = get_remote_state ();
8463 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
cf0e1e0d 8464 int i;
cf0e1e0d 8465
c906108c 8466 /* Make sure the entire registers array is valid. */
4082afcc 8467 switch (packet_support (PACKET_P))
5a2468f5
JM
8468 {
8469 case PACKET_DISABLE:
8470 case PACKET_SUPPORT_UNKNOWN:
cf0e1e0d 8471 /* Make sure all the necessary registers are cached. */
ac7936df 8472 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
ea9c271d 8473 if (rsa->regs[i].in_g_packet)
0b47d985 8474 regcache->raw_update (rsa->regs[i].regnum);
5a2468f5
JM
8475 break;
8476 case PACKET_ENABLE:
8477 break;
8478 }
8479}
8480
ad10f812 8481/* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
23860348 8482 packet was not recognized. */
5a2468f5 8483
6b8edb51
PA
8484int
8485remote_target::store_register_using_P (const struct regcache *regcache,
8486 packet_reg *reg)
5a2468f5 8487{
ac7936df 8488 struct gdbarch *gdbarch = regcache->arch ();
d01949b6 8489 struct remote_state *rs = get_remote_state ();
5a2468f5 8490 /* Try storing a single register. */
8d64371b 8491 char *buf = rs->buf.data ();
9890e433 8492 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
5a2468f5 8493 char *p;
5a2468f5 8494
4082afcc 8495 if (packet_support (PACKET_P) == PACKET_DISABLE)
74ca34ce
DJ
8496 return 0;
8497
8498 if (reg->pnum == -1)
8499 return 0;
8500
ea9c271d 8501 xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
5a2468f5 8502 p = buf + strlen (buf);
34a79281 8503 regcache->raw_collect (reg->regnum, regp);
4a22f64d 8504 bin2hex (regp, p, register_size (gdbarch, reg->regnum));
1f4437a4 8505 putpkt (rs->buf);
8d64371b 8506 getpkt (&rs->buf, 0);
5a2468f5 8507
74ca34ce
DJ
8508 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P]))
8509 {
8510 case PACKET_OK:
8511 return 1;
8512 case PACKET_ERROR:
27a9c0bf 8513 error (_("Could not write register \"%s\"; remote failure reply '%s'"),
8d64371b 8514 gdbarch_register_name (gdbarch, reg->regnum), rs->buf.data ());
74ca34ce
DJ
8515 case PACKET_UNKNOWN:
8516 return 0;
8517 default:
8518 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
8519 }
c906108c
SS
8520}
8521
23860348
MS
8522/* Store register REGNUM, or all registers if REGNUM == -1, from the
8523 contents of the register cache buffer. FIXME: ignores errors. */
c906108c 8524
6b8edb51
PA
8525void
8526remote_target::store_registers_using_G (const struct regcache *regcache)
c906108c 8527{
d01949b6 8528 struct remote_state *rs = get_remote_state ();
9d6eea31 8529 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
cfd77fa1 8530 gdb_byte *regs;
c906108c
SS
8531 char *p;
8532
193cb69f
AC
8533 /* Extract all the registers in the regcache copying them into a
8534 local buffer. */
8535 {
b323314b 8536 int i;
a744cf53 8537
224c3ddb 8538 regs = (gdb_byte *) alloca (rsa->sizeof_g_packet);
ea9c271d 8539 memset (regs, 0, rsa->sizeof_g_packet);
ac7936df 8540 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
193cb69f 8541 {
ea9c271d 8542 struct packet_reg *r = &rsa->regs[i];
a744cf53 8543
b323314b 8544 if (r->in_g_packet)
34a79281 8545 regcache->raw_collect (r->regnum, regs + r->offset);
193cb69f
AC
8546 }
8547 }
c906108c
SS
8548
8549 /* Command describes registers byte by byte,
8550 each byte encoded as two hex characters. */
8d64371b 8551 p = rs->buf.data ();
193cb69f 8552 *p++ = 'G';
74ca34ce 8553 bin2hex (regs, p, rsa->sizeof_g_packet);
1f4437a4 8554 putpkt (rs->buf);
8d64371b 8555 getpkt (&rs->buf, 0);
1f4437a4 8556 if (packet_check_result (rs->buf) == PACKET_ERROR)
27a9c0bf 8557 error (_("Could not write registers; remote failure reply '%s'"),
8d64371b 8558 rs->buf.data ());
c906108c 8559}
74ca34ce
DJ
8560
8561/* Store register REGNUM, or all registers if REGNUM == -1, from the contents
8562 of the register cache buffer. FIXME: ignores errors. */
8563
f6ac5f3d
PA
8564void
8565remote_target::store_registers (struct regcache *regcache, int regnum)
74ca34ce 8566{
5cd63fda 8567 struct gdbarch *gdbarch = regcache->arch ();
9d6eea31
PA
8568 struct remote_state *rs = get_remote_state ();
8569 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
74ca34ce
DJ
8570 int i;
8571
e6e4e701 8572 set_remote_traceframe ();
222312d3 8573 set_general_thread (regcache->ptid ());
74ca34ce
DJ
8574
8575 if (regnum >= 0)
8576 {
5cd63fda 8577 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
a744cf53 8578
74ca34ce
DJ
8579 gdb_assert (reg != NULL);
8580
8581 /* Always prefer to store registers using the 'P' packet if
8582 possible; we often change only a small number of registers.
8583 Sometimes we change a larger number; we'd need help from a
8584 higher layer to know to use 'G'. */
56be3814 8585 if (store_register_using_P (regcache, reg))
74ca34ce
DJ
8586 return;
8587
8588 /* For now, don't complain if we have no way to write the
8589 register. GDB loses track of unavailable registers too
8590 easily. Some day, this may be an error. We don't have
0df8b418 8591 any way to read the register, either... */
74ca34ce
DJ
8592 if (!reg->in_g_packet)
8593 return;
8594
56be3814 8595 store_registers_using_G (regcache);
74ca34ce
DJ
8596 return;
8597 }
8598
56be3814 8599 store_registers_using_G (regcache);
74ca34ce 8600
5cd63fda 8601 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
74ca34ce 8602 if (!rsa->regs[i].in_g_packet)
56be3814 8603 if (!store_register_using_P (regcache, &rsa->regs[i]))
74ca34ce
DJ
8604 /* See above for why we do not issue an error here. */
8605 continue;
8606}
c906108c
SS
8607\f
8608
8609/* Return the number of hex digits in num. */
8610
8611static int
fba45db2 8612hexnumlen (ULONGEST num)
c906108c
SS
8613{
8614 int i;
8615
8616 for (i = 0; num != 0; i++)
8617 num >>= 4;
8618
325fac50 8619 return std::max (i, 1);
c906108c
SS
8620}
8621
2df3850c 8622/* Set BUF to the minimum number of hex digits representing NUM. */
c906108c
SS
8623
8624static int
fba45db2 8625hexnumstr (char *buf, ULONGEST num)
c906108c 8626{
c906108c 8627 int len = hexnumlen (num);
a744cf53 8628
2df3850c
JM
8629 return hexnumnstr (buf, num, len);
8630}
8631
c906108c 8632
2df3850c 8633/* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
c906108c 8634
2df3850c 8635static int
fba45db2 8636hexnumnstr (char *buf, ULONGEST num, int width)
2df3850c
JM
8637{
8638 int i;
8639
8640 buf[width] = '\0';
8641
8642 for (i = width - 1; i >= 0; i--)
c906108c 8643 {
c5aa993b 8644 buf[i] = "0123456789abcdef"[(num & 0xf)];
c906108c
SS
8645 num >>= 4;
8646 }
8647
2df3850c 8648 return width;
c906108c
SS
8649}
8650
23860348 8651/* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
c906108c
SS
8652
8653static CORE_ADDR
fba45db2 8654remote_address_masked (CORE_ADDR addr)
c906108c 8655{
883b9c6c 8656 unsigned int address_size = remote_address_size;
a744cf53 8657
911c95a5
UW
8658 /* If "remoteaddresssize" was not set, default to target address size. */
8659 if (!address_size)
f5656ead 8660 address_size = gdbarch_addr_bit (target_gdbarch ());
911c95a5
UW
8661
8662 if (address_size > 0
8663 && address_size < (sizeof (ULONGEST) * 8))
c906108c
SS
8664 {
8665 /* Only create a mask when that mask can safely be constructed
dda83cd7 8666 in a ULONGEST variable. */
c906108c 8667 ULONGEST mask = 1;
a744cf53 8668
911c95a5 8669 mask = (mask << address_size) - 1;
c906108c
SS
8670 addr &= mask;
8671 }
8672 return addr;
8673}
8674
8675/* Determine whether the remote target supports binary downloading.
8676 This is accomplished by sending a no-op memory write of zero length
8677 to the target at the specified address. It does not suffice to send
23860348
MS
8678 the whole packet, since many stubs strip the eighth bit and
8679 subsequently compute a wrong checksum, which causes real havoc with
8680 remote_write_bytes.
7a292a7a 8681
96baa820 8682 NOTE: This can still lose if the serial line is not eight-bit
0df8b418 8683 clean. In cases like this, the user should clear "remote
23860348 8684 X-packet". */
96baa820 8685
6b8edb51
PA
8686void
8687remote_target::check_binary_download (CORE_ADDR addr)
c906108c 8688{
d01949b6 8689 struct remote_state *rs = get_remote_state ();
24b06219 8690
4082afcc 8691 switch (packet_support (PACKET_X))
c906108c 8692 {
96baa820
JM
8693 case PACKET_DISABLE:
8694 break;
8695 case PACKET_ENABLE:
8696 break;
8697 case PACKET_SUPPORT_UNKNOWN:
8698 {
96baa820 8699 char *p;
802188a7 8700
8d64371b 8701 p = rs->buf.data ();
96baa820
JM
8702 *p++ = 'X';
8703 p += hexnumstr (p, (ULONGEST) addr);
8704 *p++ = ',';
8705 p += hexnumstr (p, (ULONGEST) 0);
8706 *p++ = ':';
8707 *p = '\0';
802188a7 8708
8d64371b
TT
8709 putpkt_binary (rs->buf.data (), (int) (p - rs->buf.data ()));
8710 getpkt (&rs->buf, 0);
c906108c 8711
2e9f7625 8712 if (rs->buf[0] == '\0')
96baa820
JM
8713 {
8714 if (remote_debug)
8715 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
8716 "binary downloading NOT "
8717 "supported by target\n");
444abaca 8718 remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
96baa820
JM
8719 }
8720 else
8721 {
8722 if (remote_debug)
8723 fprintf_unfiltered (gdb_stdlog,
64b9b334 8724 "binary downloading supported by target\n");
444abaca 8725 remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
96baa820
JM
8726 }
8727 break;
8728 }
c906108c
SS
8729 }
8730}
8731
124e13d9
SM
8732/* Helper function to resize the payload in order to try to get a good
8733 alignment. We try to write an amount of data such that the next write will
8734 start on an address aligned on REMOTE_ALIGN_WRITES. */
8735
8736static int
8737align_for_efficient_write (int todo, CORE_ADDR memaddr)
8738{
8739 return ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr;
8740}
8741
c906108c
SS
8742/* Write memory data directly to the remote machine.
8743 This does not inform the data cache; the data cache uses this.
a76d924d 8744 HEADER is the starting part of the packet.
c906108c
SS
8745 MEMADDR is the address in the remote memory space.
8746 MYADDR is the address of the buffer in our space.
124e13d9
SM
8747 LEN_UNITS is the number of addressable units to write.
8748 UNIT_SIZE is the length in bytes of an addressable unit.
a76d924d
DJ
8749 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
8750 should send data as binary ('X'), or hex-encoded ('M').
8751
8752 The function creates packet of the form
8753 <HEADER><ADDRESS>,<LENGTH>:<DATA>
8754
124e13d9 8755 where encoding of <DATA> is terminated by PACKET_FORMAT.
a76d924d
DJ
8756
8757 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
8758 are omitted.
8759
9b409511 8760 Return the transferred status, error or OK (an
124e13d9
SM
8761 'enum target_xfer_status' value). Save the number of addressable units
8762 transferred in *XFERED_LEN_UNITS. Only transfer a single packet.
8763
8764 On a platform with an addressable memory size of 2 bytes (UNIT_SIZE == 2), an
8765 exchange between gdb and the stub could look like (?? in place of the
8766 checksum):
8767
8768 -> $m1000,4#??
8769 <- aaaabbbbccccdddd
8770
8771 -> $M1000,3:eeeeffffeeee#??
8772 <- OK
8773
8774 -> $m1000,4#??
8775 <- eeeeffffeeeedddd */
c906108c 8776
6b8edb51
PA
8777target_xfer_status
8778remote_target::remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
8779 const gdb_byte *myaddr,
8780 ULONGEST len_units,
8781 int unit_size,
8782 ULONGEST *xfered_len_units,
8783 char packet_format, int use_length)
c906108c 8784{
6d820c5c 8785 struct remote_state *rs = get_remote_state ();
cfd77fa1 8786 char *p;
a76d924d
DJ
8787 char *plen = NULL;
8788 int plenlen = 0;
124e13d9
SM
8789 int todo_units;
8790 int units_written;
8791 int payload_capacity_bytes;
8792 int payload_length_bytes;
a76d924d
DJ
8793
8794 if (packet_format != 'X' && packet_format != 'M')
8795 internal_error (__FILE__, __LINE__,
9b20d036 8796 _("remote_write_bytes_aux: bad packet format"));
c906108c 8797
124e13d9 8798 if (len_units == 0)
9b409511 8799 return TARGET_XFER_EOF;
b2182ed2 8800
124e13d9 8801 payload_capacity_bytes = get_memory_write_packet_size ();
2bc416ba 8802
6d820c5c
DJ
8803 /* The packet buffer will be large enough for the payload;
8804 get_memory_packet_size ensures this. */
a76d924d 8805 rs->buf[0] = '\0';
c906108c 8806
a257b5bb 8807 /* Compute the size of the actual payload by subtracting out the
0df8b418
MS
8808 packet header and footer overhead: "$M<memaddr>,<len>:...#nn". */
8809
124e13d9 8810 payload_capacity_bytes -= strlen ("$,:#NN");
a76d924d 8811 if (!use_length)
0df8b418 8812 /* The comma won't be used. */
124e13d9
SM
8813 payload_capacity_bytes += 1;
8814 payload_capacity_bytes -= strlen (header);
8815 payload_capacity_bytes -= hexnumlen (memaddr);
c906108c 8816
a76d924d 8817 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
917317f4 8818
8d64371b
TT
8819 strcat (rs->buf.data (), header);
8820 p = rs->buf.data () + strlen (header);
a76d924d
DJ
8821
8822 /* Compute a best guess of the number of bytes actually transfered. */
8823 if (packet_format == 'X')
c906108c 8824 {
23860348 8825 /* Best guess at number of bytes that will fit. */
325fac50
PA
8826 todo_units = std::min (len_units,
8827 (ULONGEST) payload_capacity_bytes / unit_size);
a76d924d 8828 if (use_length)
124e13d9 8829 payload_capacity_bytes -= hexnumlen (todo_units);
325fac50 8830 todo_units = std::min (todo_units, payload_capacity_bytes / unit_size);
a76d924d
DJ
8831 }
8832 else
8833 {
124e13d9 8834 /* Number of bytes that will fit. */
325fac50
PA
8835 todo_units
8836 = std::min (len_units,
8837 (ULONGEST) (payload_capacity_bytes / unit_size) / 2);
a76d924d 8838 if (use_length)
124e13d9 8839 payload_capacity_bytes -= hexnumlen (todo_units);
325fac50
PA
8840 todo_units = std::min (todo_units,
8841 (payload_capacity_bytes / unit_size) / 2);
917317f4 8842 }
a76d924d 8843
124e13d9 8844 if (todo_units <= 0)
3de11b2e 8845 internal_error (__FILE__, __LINE__,
405f8e94 8846 _("minimum packet size too small to write data"));
802188a7 8847
6765f3e5
DJ
8848 /* If we already need another packet, then try to align the end
8849 of this packet to a useful boundary. */
124e13d9
SM
8850 if (todo_units > 2 * REMOTE_ALIGN_WRITES && todo_units < len_units)
8851 todo_units = align_for_efficient_write (todo_units, memaddr);
6765f3e5 8852
a257b5bb 8853 /* Append "<memaddr>". */
917317f4
JM
8854 memaddr = remote_address_masked (memaddr);
8855 p += hexnumstr (p, (ULONGEST) memaddr);
a257b5bb 8856
a76d924d
DJ
8857 if (use_length)
8858 {
8859 /* Append ",". */
8860 *p++ = ',';
802188a7 8861
124e13d9 8862 /* Append the length and retain its location and size. It may need to be
dda83cd7 8863 adjusted once the packet body has been created. */
a76d924d 8864 plen = p;
124e13d9 8865 plenlen = hexnumstr (p, (ULONGEST) todo_units);
a76d924d
DJ
8866 p += plenlen;
8867 }
a257b5bb
AC
8868
8869 /* Append ":". */
917317f4
JM
8870 *p++ = ':';
8871 *p = '\0';
802188a7 8872
a257b5bb 8873 /* Append the packet body. */
a76d924d 8874 if (packet_format == 'X')
917317f4 8875 {
917317f4
JM
8876 /* Binary mode. Send target system values byte by byte, in
8877 increasing byte addresses. Only escape certain critical
8878 characters. */
124e13d9
SM
8879 payload_length_bytes =
8880 remote_escape_output (myaddr, todo_units, unit_size, (gdb_byte *) p,
8881 &units_written, payload_capacity_bytes);
6765f3e5 8882
124e13d9 8883 /* If not all TODO units fit, then we'll need another packet. Make
9b7194bc
DJ
8884 a second try to keep the end of the packet aligned. Don't do
8885 this if the packet is tiny. */
124e13d9 8886 if (units_written < todo_units && units_written > 2 * REMOTE_ALIGN_WRITES)
6765f3e5 8887 {
124e13d9
SM
8888 int new_todo_units;
8889
8890 new_todo_units = align_for_efficient_write (units_written, memaddr);
8891
8892 if (new_todo_units != units_written)
8893 payload_length_bytes =
8894 remote_escape_output (myaddr, new_todo_units, unit_size,
8895 (gdb_byte *) p, &units_written,
8896 payload_capacity_bytes);
6765f3e5
DJ
8897 }
8898
124e13d9
SM
8899 p += payload_length_bytes;
8900 if (use_length && units_written < todo_units)
c906108c 8901 {
802188a7 8902 /* Escape chars have filled up the buffer prematurely,
124e13d9 8903 and we have actually sent fewer units than planned.
917317f4
JM
8904 Fix-up the length field of the packet. Use the same
8905 number of characters as before. */
124e13d9
SM
8906 plen += hexnumnstr (plen, (ULONGEST) units_written,
8907 plenlen);
917317f4 8908 *plen = ':'; /* overwrite \0 from hexnumnstr() */
c906108c 8909 }
a76d924d
DJ
8910 }
8911 else
8912 {
917317f4
JM
8913 /* Normal mode: Send target system values byte by byte, in
8914 increasing byte addresses. Each byte is encoded as a two hex
8915 value. */
124e13d9
SM
8916 p += 2 * bin2hex (myaddr, p, todo_units * unit_size);
8917 units_written = todo_units;
c906108c 8918 }
802188a7 8919
8d64371b
TT
8920 putpkt_binary (rs->buf.data (), (int) (p - rs->buf.data ()));
8921 getpkt (&rs->buf, 0);
802188a7 8922
2e9f7625 8923 if (rs->buf[0] == 'E')
00d84524 8924 return TARGET_XFER_E_IO;
802188a7 8925
124e13d9
SM
8926 /* Return UNITS_WRITTEN, not TODO_UNITS, in case escape chars caused us to
8927 send fewer units than we'd planned. */
8928 *xfered_len_units = (ULONGEST) units_written;
92ffd475 8929 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
c906108c
SS
8930}
8931
a76d924d
DJ
8932/* Write memory data directly to the remote machine.
8933 This does not inform the data cache; the data cache uses this.
8934 MEMADDR is the address in the remote memory space.
8935 MYADDR is the address of the buffer in our space.
8936 LEN is the number of bytes.
8937
9b409511
YQ
8938 Return the transferred status, error or OK (an
8939 'enum target_xfer_status' value). Save the number of bytes
8940 transferred in *XFERED_LEN. Only transfer a single packet. */
a76d924d 8941
6b8edb51
PA
8942target_xfer_status
8943remote_target::remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr,
8944 ULONGEST len, int unit_size,
8945 ULONGEST *xfered_len)
a76d924d 8946{
a121b7c1 8947 const char *packet_format = NULL;
a76d924d
DJ
8948
8949 /* Check whether the target supports binary download. */
8950 check_binary_download (memaddr);
8951
4082afcc 8952 switch (packet_support (PACKET_X))
a76d924d
DJ
8953 {
8954 case PACKET_ENABLE:
8955 packet_format = "X";
8956 break;
8957 case PACKET_DISABLE:
8958 packet_format = "M";
8959 break;
8960 case PACKET_SUPPORT_UNKNOWN:
8961 internal_error (__FILE__, __LINE__,
8962 _("remote_write_bytes: bad internal state"));
8963 default:
8964 internal_error (__FILE__, __LINE__, _("bad switch"));
8965 }
8966
8967 return remote_write_bytes_aux (packet_format,
124e13d9 8968 memaddr, myaddr, len, unit_size, xfered_len,
9b409511 8969 packet_format[0], 1);
a76d924d
DJ
8970}
8971
9217e74e
YQ
8972/* Read memory data directly from the remote machine.
8973 This does not use the data cache; the data cache uses this.
8974 MEMADDR is the address in the remote memory space.
8975 MYADDR is the address of the buffer in our space.
124e13d9
SM
8976 LEN_UNITS is the number of addressable memory units to read..
8977 UNIT_SIZE is the length in bytes of an addressable unit.
9217e74e
YQ
8978
8979 Return the transferred status, error or OK (an
8980 'enum target_xfer_status' value). Save the number of bytes
124e13d9
SM
8981 transferred in *XFERED_LEN_UNITS.
8982
8983 See the comment of remote_write_bytes_aux for an example of
8984 memory read/write exchange between gdb and the stub. */
9217e74e 8985
6b8edb51
PA
8986target_xfer_status
8987remote_target::remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr,
8988 ULONGEST len_units,
8989 int unit_size, ULONGEST *xfered_len_units)
9217e74e
YQ
8990{
8991 struct remote_state *rs = get_remote_state ();
124e13d9 8992 int buf_size_bytes; /* Max size of packet output buffer. */
9217e74e 8993 char *p;
124e13d9
SM
8994 int todo_units;
8995 int decoded_bytes;
9217e74e 8996
124e13d9 8997 buf_size_bytes = get_memory_read_packet_size ();
9217e74e
YQ
8998 /* The packet buffer will be large enough for the payload;
8999 get_memory_packet_size ensures this. */
9000
124e13d9 9001 /* Number of units that will fit. */
325fac50
PA
9002 todo_units = std::min (len_units,
9003 (ULONGEST) (buf_size_bytes / unit_size) / 2);
9217e74e
YQ
9004
9005 /* Construct "m"<memaddr>","<len>". */
9006 memaddr = remote_address_masked (memaddr);
8d64371b 9007 p = rs->buf.data ();
9217e74e
YQ
9008 *p++ = 'm';
9009 p += hexnumstr (p, (ULONGEST) memaddr);
9010 *p++ = ',';
124e13d9 9011 p += hexnumstr (p, (ULONGEST) todo_units);
9217e74e
YQ
9012 *p = '\0';
9013 putpkt (rs->buf);
8d64371b 9014 getpkt (&rs->buf, 0);
9217e74e
YQ
9015 if (rs->buf[0] == 'E'
9016 && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2])
9017 && rs->buf[3] == '\0')
9018 return TARGET_XFER_E_IO;
9019 /* Reply describes memory byte by byte, each byte encoded as two hex
9020 characters. */
8d64371b 9021 p = rs->buf.data ();
124e13d9 9022 decoded_bytes = hex2bin (p, myaddr, todo_units * unit_size);
9217e74e 9023 /* Return what we have. Let higher layers handle partial reads. */
124e13d9 9024 *xfered_len_units = (ULONGEST) (decoded_bytes / unit_size);
92ffd475 9025 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
9217e74e
YQ
9026}
9027
b55fbac4
YQ
9028/* Using the set of read-only target sections of remote, read live
9029 read-only memory.
8acf9577
YQ
9030
9031 For interface/parameters/return description see target.h,
9032 to_xfer_partial. */
9033
6b8edb51
PA
9034target_xfer_status
9035remote_target::remote_xfer_live_readonly_partial (gdb_byte *readbuf,
9036 ULONGEST memaddr,
9037 ULONGEST len,
9038 int unit_size,
9039 ULONGEST *xfered_len)
8acf9577
YQ
9040{
9041 struct target_section *secp;
8acf9577 9042
6b8edb51 9043 secp = target_section_by_addr (this, memaddr);
8acf9577 9044 if (secp != NULL
fd361982 9045 && (bfd_section_flags (secp->the_bfd_section) & SEC_READONLY))
8acf9577 9046 {
8acf9577
YQ
9047 ULONGEST memend = memaddr + len;
9048
d7a78e5c
TT
9049 target_section_table *table = target_get_section_table (this);
9050 for (target_section &p : *table)
8acf9577 9051 {
bb2a6777 9052 if (memaddr >= p.addr)
8acf9577 9053 {
bb2a6777 9054 if (memend <= p.endaddr)
8acf9577
YQ
9055 {
9056 /* Entire transfer is within this section. */
124e13d9 9057 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 9058 xfered_len);
8acf9577 9059 }
bb2a6777 9060 else if (memaddr >= p.endaddr)
8acf9577
YQ
9061 {
9062 /* This section ends before the transfer starts. */
9063 continue;
9064 }
9065 else
9066 {
9067 /* This section overlaps the transfer. Just do half. */
bb2a6777 9068 len = p.endaddr - memaddr;
124e13d9 9069 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 9070 xfered_len);
8acf9577
YQ
9071 }
9072 }
9073 }
9074 }
9075
9076 return TARGET_XFER_EOF;
9077}
9078
9217e74e
YQ
9079/* Similar to remote_read_bytes_1, but it reads from the remote stub
9080 first if the requested memory is unavailable in traceframe.
9081 Otherwise, fall back to remote_read_bytes_1. */
c906108c 9082
6b8edb51
PA
9083target_xfer_status
9084remote_target::remote_read_bytes (CORE_ADDR memaddr,
9085 gdb_byte *myaddr, ULONGEST len, int unit_size,
9086 ULONGEST *xfered_len)
c906108c 9087{
6b6aa828 9088 if (len == 0)
96c4f946 9089 return TARGET_XFER_EOF;
b2182ed2 9090
8acf9577
YQ
9091 if (get_traceframe_number () != -1)
9092 {
a79b1bc6 9093 std::vector<mem_range> available;
8acf9577
YQ
9094
9095 /* If we fail to get the set of available memory, then the
9096 target does not support querying traceframe info, and so we
9097 attempt reading from the traceframe anyway (assuming the
9098 target implements the old QTro packet then). */
9099 if (traceframe_available_memory (&available, memaddr, len))
9100 {
a79b1bc6 9101 if (available.empty () || available[0].start != memaddr)
8acf9577
YQ
9102 {
9103 enum target_xfer_status res;
9104
9105 /* Don't read into the traceframe's available
9106 memory. */
a79b1bc6 9107 if (!available.empty ())
8acf9577
YQ
9108 {
9109 LONGEST oldlen = len;
9110
a79b1bc6 9111 len = available[0].start - memaddr;
8acf9577
YQ
9112 gdb_assert (len <= oldlen);
9113 }
9114
8acf9577 9115 /* This goes through the topmost target again. */
6b8edb51 9116 res = remote_xfer_live_readonly_partial (myaddr, memaddr,
124e13d9 9117 len, unit_size, xfered_len);
8acf9577
YQ
9118 if (res == TARGET_XFER_OK)
9119 return TARGET_XFER_OK;
9120 else
9121 {
9122 /* No use trying further, we know some memory starting
9123 at MEMADDR isn't available. */
9124 *xfered_len = len;
92ffd475
PC
9125 return (*xfered_len != 0) ?
9126 TARGET_XFER_UNAVAILABLE : TARGET_XFER_EOF;
8acf9577
YQ
9127 }
9128 }
9129
9130 /* Don't try to read more than how much is available, in
9131 case the target implements the deprecated QTro packet to
9132 cater for older GDBs (the target's knowledge of read-only
9133 sections may be outdated by now). */
a79b1bc6 9134 len = available[0].length;
8acf9577
YQ
9135 }
9136 }
9137
124e13d9 9138 return remote_read_bytes_1 (memaddr, myaddr, len, unit_size, xfered_len);
c906108c 9139}
74531fed 9140
c906108c 9141\f
c906108c 9142
a76d924d
DJ
9143/* Sends a packet with content determined by the printf format string
9144 FORMAT and the remaining arguments, then gets the reply. Returns
9145 whether the packet was a success, a failure, or unknown. */
9146
6b8edb51
PA
9147packet_result
9148remote_target::remote_send_printf (const char *format, ...)
a76d924d
DJ
9149{
9150 struct remote_state *rs = get_remote_state ();
9151 int max_size = get_remote_packet_size ();
a76d924d 9152 va_list ap;
a744cf53 9153
a76d924d
DJ
9154 va_start (ap, format);
9155
9156 rs->buf[0] = '\0';
8d64371b 9157 int size = vsnprintf (rs->buf.data (), max_size, format, ap);
33b031ce
GB
9158
9159 va_end (ap);
9160
9161 if (size >= max_size)
9b20d036 9162 internal_error (__FILE__, __LINE__, _("Too long remote packet."));
a76d924d
DJ
9163
9164 if (putpkt (rs->buf) < 0)
9165 error (_("Communication problem with target."));
9166
9167 rs->buf[0] = '\0';
8d64371b 9168 getpkt (&rs->buf, 0);
a76d924d
DJ
9169
9170 return packet_check_result (rs->buf);
9171}
9172
a76d924d
DJ
9173/* Flash writing can take quite some time. We'll set
9174 effectively infinite timeout for flash operations.
9175 In future, we'll need to decide on a better approach. */
9176static const int remote_flash_timeout = 1000;
9177
f6ac5f3d
PA
9178void
9179remote_target::flash_erase (ULONGEST address, LONGEST length)
a76d924d 9180{
f5656ead 9181 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
a76d924d 9182 enum packet_result ret;
2ec845e7
TT
9183 scoped_restore restore_timeout
9184 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
a76d924d
DJ
9185
9186 ret = remote_send_printf ("vFlashErase:%s,%s",
5af949e3 9187 phex (address, addr_size),
a76d924d
DJ
9188 phex (length, 4));
9189 switch (ret)
9190 {
9191 case PACKET_UNKNOWN:
9192 error (_("Remote target does not support flash erase"));
9193 case PACKET_ERROR:
9194 error (_("Error erasing flash with vFlashErase packet"));
9195 default:
9196 break;
9197 }
a76d924d
DJ
9198}
9199
6b8edb51
PA
9200target_xfer_status
9201remote_target::remote_flash_write (ULONGEST address,
9202 ULONGEST length, ULONGEST *xfered_len,
9203 const gdb_byte *data)
a76d924d 9204{
2ec845e7
TT
9205 scoped_restore restore_timeout
9206 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
9207 return remote_write_bytes_aux ("vFlashWrite:", address, data, length, 1,
9208 xfered_len,'X', 0);
a76d924d
DJ
9209}
9210
f6ac5f3d
PA
9211void
9212remote_target::flash_done ()
a76d924d 9213{
a76d924d 9214 int ret;
a76d924d 9215
2ec845e7
TT
9216 scoped_restore restore_timeout
9217 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
9218
a76d924d 9219 ret = remote_send_printf ("vFlashDone");
a76d924d
DJ
9220
9221 switch (ret)
9222 {
9223 case PACKET_UNKNOWN:
9224 error (_("Remote target does not support vFlashDone"));
9225 case PACKET_ERROR:
9226 error (_("Error finishing flash operation"));
9227 default:
9228 break;
9229 }
9230}
9231
f6ac5f3d
PA
9232void
9233remote_target::files_info ()
c906108c
SS
9234{
9235 puts_filtered ("Debugging a target over a serial line.\n");
9236}
9237\f
9238/* Stuff for dealing with the packets which are part of this protocol.
9239 See comment at top of file for details. */
9240
1927e618
PA
9241/* Close/unpush the remote target, and throw a TARGET_CLOSE_ERROR
9242 error to higher layers. Called when a serial error is detected.
9243 The exception message is STRING, followed by a colon and a blank,
d6cb50a2
JK
9244 the system error message for errno at function entry and final dot
9245 for output compatibility with throw_perror_with_name. */
1927e618
PA
9246
9247static void
5b6d1e4f 9248unpush_and_perror (remote_target *target, const char *string)
1927e618 9249{
d6cb50a2 9250 int saved_errno = errno;
1927e618 9251
5b6d1e4f 9252 remote_unpush_target (target);
d6cb50a2
JK
9253 throw_error (TARGET_CLOSE_ERROR, "%s: %s.", string,
9254 safe_strerror (saved_errno));
1927e618
PA
9255}
9256
048094ac
PA
9257/* Read a single character from the remote end. The current quit
9258 handler is overridden to avoid quitting in the middle of packet
9259 sequence, as that would break communication with the remote server.
9260 See remote_serial_quit_handler for more detail. */
c906108c 9261
6b8edb51
PA
9262int
9263remote_target::readchar (int timeout)
c906108c
SS
9264{
9265 int ch;
5d93a237 9266 struct remote_state *rs = get_remote_state ();
048094ac 9267
2ec845e7 9268 {
6b8edb51
PA
9269 scoped_restore restore_quit_target
9270 = make_scoped_restore (&curr_quit_handler_target, this);
2ec845e7 9271 scoped_restore restore_quit
6b8edb51 9272 = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
c906108c 9273
2ec845e7 9274 rs->got_ctrlc_during_io = 0;
c906108c 9275
2ec845e7 9276 ch = serial_readchar (rs->remote_desc, timeout);
048094ac 9277
2ec845e7
TT
9278 if (rs->got_ctrlc_during_io)
9279 set_quit_flag ();
9280 }
048094ac 9281
2acceee2 9282 if (ch >= 0)
0876f84a 9283 return ch;
2acceee2
JM
9284
9285 switch ((enum serial_rc) ch)
c906108c
SS
9286 {
9287 case SERIAL_EOF:
5b6d1e4f 9288 remote_unpush_target (this);
598d3636 9289 throw_error (TARGET_CLOSE_ERROR, _("Remote connection closed"));
2acceee2 9290 /* no return */
c906108c 9291 case SERIAL_ERROR:
5b6d1e4f
PA
9292 unpush_and_perror (this, _("Remote communication error. "
9293 "Target disconnected."));
2acceee2 9294 /* no return */
c906108c 9295 case SERIAL_TIMEOUT:
2acceee2 9296 break;
c906108c 9297 }
2acceee2 9298 return ch;
c906108c
SS
9299}
9300
c33e31fd 9301/* Wrapper for serial_write that closes the target and throws if
048094ac
PA
9302 writing fails. The current quit handler is overridden to avoid
9303 quitting in the middle of packet sequence, as that would break
9304 communication with the remote server. See
9305 remote_serial_quit_handler for more detail. */
c33e31fd 9306
6b8edb51
PA
9307void
9308remote_target::remote_serial_write (const char *str, int len)
c33e31fd 9309{
5d93a237 9310 struct remote_state *rs = get_remote_state ();
048094ac 9311
6b8edb51
PA
9312 scoped_restore restore_quit_target
9313 = make_scoped_restore (&curr_quit_handler_target, this);
2ec845e7 9314 scoped_restore restore_quit
6b8edb51 9315 = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
048094ac
PA
9316
9317 rs->got_ctrlc_during_io = 0;
5d93a237
TT
9318
9319 if (serial_write (rs->remote_desc, str, len))
c33e31fd 9320 {
5b6d1e4f
PA
9321 unpush_and_perror (this, _("Remote communication error. "
9322 "Target disconnected."));
c33e31fd 9323 }
048094ac
PA
9324
9325 if (rs->got_ctrlc_during_io)
9326 set_quit_flag ();
c33e31fd
PA
9327}
9328
b3ced9ba
PA
9329/* Return a string representing an escaped version of BUF, of len N.
9330 E.g. \n is converted to \\n, \t to \\t, etc. */
6e5abd65 9331
b3ced9ba 9332static std::string
6e5abd65
PA
9333escape_buffer (const char *buf, int n)
9334{
d7e74731 9335 string_file stb;
6e5abd65 9336
d7e74731
PA
9337 stb.putstrn (buf, n, '\\');
9338 return std::move (stb.string ());
6e5abd65
PA
9339}
9340
c906108c
SS
9341/* Display a null-terminated packet on stdout, for debugging, using C
9342 string notation. */
9343
9344static void
baa336ce 9345print_packet (const char *buf)
c906108c
SS
9346{
9347 puts_filtered ("\"");
43e526b9 9348 fputstr_filtered (buf, '"', gdb_stdout);
c906108c
SS
9349 puts_filtered ("\"");
9350}
9351
9352int
6b8edb51 9353remote_target::putpkt (const char *buf)
c906108c
SS
9354{
9355 return putpkt_binary (buf, strlen (buf));
9356}
9357
6b8edb51
PA
9358/* Wrapper around remote_target::putpkt to avoid exporting
9359 remote_target. */
9360
9361int
9362putpkt (remote_target *remote, const char *buf)
9363{
9364 return remote->putpkt (buf);
9365}
9366
c906108c 9367/* Send a packet to the remote machine, with error checking. The data
23860348 9368 of the packet is in BUF. The string in BUF can be at most
ea9c271d 9369 get_remote_packet_size () - 5 to account for the $, # and checksum,
23860348
MS
9370 and for a possible /0 if we are debugging (remote_debug) and want
9371 to print the sent packet as a string. */
c906108c 9372
6b8edb51
PA
9373int
9374remote_target::putpkt_binary (const char *buf, int cnt)
c906108c 9375{
2d717e4f 9376 struct remote_state *rs = get_remote_state ();
c906108c
SS
9377 int i;
9378 unsigned char csum = 0;
b80406ac
TT
9379 gdb::def_vector<char> data (cnt + 6);
9380 char *buf2 = data.data ();
085dd6e6 9381
c906108c
SS
9382 int ch;
9383 int tcount = 0;
9384 char *p;
9385
e24a49d8
PA
9386 /* Catch cases like trying to read memory or listing threads while
9387 we're waiting for a stop reply. The remote server wouldn't be
9388 ready to handle this request, so we'd hang and timeout. We don't
9389 have to worry about this in synchronous mode, because in that
9390 case it's not possible to issue a command while the target is
74531fed
PA
9391 running. This is not a problem in non-stop mode, because in that
9392 case, the stub is always ready to process serial input. */
6efcd9a8
PA
9393 if (!target_is_non_stop_p ()
9394 && target_is_async_p ()
9395 && rs->waiting_for_stop_reply)
9597b22a
DE
9396 {
9397 error (_("Cannot execute this command while the target is running.\n"
9398 "Use the \"interrupt\" command to stop the target\n"
9399 "and then try again."));
9400 }
e24a49d8 9401
2d717e4f
DJ
9402 /* We're sending out a new packet. Make sure we don't look at a
9403 stale cached response. */
9404 rs->cached_wait_status = 0;
9405
c906108c
SS
9406 /* Copy the packet into buffer BUF2, encapsulating it
9407 and giving it a checksum. */
9408
c906108c
SS
9409 p = buf2;
9410 *p++ = '$';
9411
9412 for (i = 0; i < cnt; i++)
9413 {
9414 csum += buf[i];
9415 *p++ = buf[i];
9416 }
9417 *p++ = '#';
9418 *p++ = tohex ((csum >> 4) & 0xf);
9419 *p++ = tohex (csum & 0xf);
9420
9421 /* Send it over and over until we get a positive ack. */
9422
9423 while (1)
9424 {
9425 int started_error_output = 0;
9426
9427 if (remote_debug)
9428 {
9429 *p = '\0';
b3ced9ba 9430
6f8976bf 9431 int len = (int) (p - buf2);
6cc8564b
LM
9432 int max_chars;
9433
9434 if (remote_packet_max_chars < 0)
9435 max_chars = len;
9436 else
9437 max_chars = remote_packet_max_chars;
6f8976bf
YQ
9438
9439 std::string str
6cc8564b 9440 = escape_buffer (buf2, std::min (len, max_chars));
6f8976bf
YQ
9441
9442 fprintf_unfiltered (gdb_stdlog, "Sending packet: %s", str.c_str ());
9443
6cc8564b 9444 if (len > max_chars)
567a3e54 9445 fprintf_unfiltered (gdb_stdlog, "[%d bytes omitted]",
6cc8564b 9446 len - max_chars);
6f8976bf
YQ
9447
9448 fprintf_unfiltered (gdb_stdlog, "...");
b3ced9ba 9449
0f71a2f6 9450 gdb_flush (gdb_stdlog);
c906108c 9451 }
c33e31fd 9452 remote_serial_write (buf2, p - buf2);
c906108c 9453
a6f3e723
SL
9454 /* If this is a no acks version of the remote protocol, send the
9455 packet and move on. */
9456 if (rs->noack_mode)
dda83cd7 9457 break;
a6f3e723 9458
74531fed
PA
9459 /* Read until either a timeout occurs (-2) or '+' is read.
9460 Handle any notification that arrives in the mean time. */
c906108c
SS
9461 while (1)
9462 {
9463 ch = readchar (remote_timeout);
9464
c5aa993b 9465 if (remote_debug)
c906108c
SS
9466 {
9467 switch (ch)
9468 {
9469 case '+':
1216fa2c 9470 case '-':
c906108c
SS
9471 case SERIAL_TIMEOUT:
9472 case '$':
74531fed 9473 case '%':
c906108c
SS
9474 if (started_error_output)
9475 {
9476 putchar_unfiltered ('\n');
9477 started_error_output = 0;
9478 }
9479 }
9480 }
9481
9482 switch (ch)
9483 {
9484 case '+':
9485 if (remote_debug)
0f71a2f6 9486 fprintf_unfiltered (gdb_stdlog, "Ack\n");
c906108c 9487 return 1;
1216fa2c
AC
9488 case '-':
9489 if (remote_debug)
9490 fprintf_unfiltered (gdb_stdlog, "Nak\n");
a17d146e 9491 /* FALLTHROUGH */
c906108c 9492 case SERIAL_TIMEOUT:
c5aa993b 9493 tcount++;
c906108c 9494 if (tcount > 3)
b80406ac 9495 return 0;
23860348 9496 break; /* Retransmit buffer. */
c906108c
SS
9497 case '$':
9498 {
dda83cd7 9499 if (remote_debug)
2bc416ba 9500 fprintf_unfiltered (gdb_stdlog,
23860348 9501 "Packet instead of Ack, ignoring it\n");
d6f7abdf
AC
9502 /* It's probably an old response sent because an ACK
9503 was lost. Gobble up the packet and ack it so it
9504 doesn't get retransmitted when we resend this
9505 packet. */
6d820c5c 9506 skip_frame ();
c33e31fd 9507 remote_serial_write ("+", 1);
23860348 9508 continue; /* Now, go look for +. */
c906108c 9509 }
74531fed
PA
9510
9511 case '%':
9512 {
9513 int val;
9514
9515 /* If we got a notification, handle it, and go back to looking
9516 for an ack. */
9517 /* We've found the start of a notification. Now
9518 collect the data. */
8d64371b 9519 val = read_frame (&rs->buf);
74531fed
PA
9520 if (val >= 0)
9521 {
9522 if (remote_debug)
9523 {
8d64371b 9524 std::string str = escape_buffer (rs->buf.data (), val);
6e5abd65 9525
6e5abd65
PA
9526 fprintf_unfiltered (gdb_stdlog,
9527 " Notification received: %s\n",
b3ced9ba 9528 str.c_str ());
74531fed 9529 }
8d64371b 9530 handle_notification (rs->notif_state, rs->buf.data ());
74531fed
PA
9531 /* We're in sync now, rewait for the ack. */
9532 tcount = 0;
9533 }
9534 else
9535 {
9536 if (remote_debug)
9537 {
9538 if (!started_error_output)
9539 {
9540 started_error_output = 1;
9541 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
9542 }
9543 fputc_unfiltered (ch & 0177, gdb_stdlog);
8d64371b 9544 fprintf_unfiltered (gdb_stdlog, "%s", rs->buf.data ());
74531fed
PA
9545 }
9546 }
9547 continue;
9548 }
9549 /* fall-through */
c906108c
SS
9550 default:
9551 if (remote_debug)
9552 {
9553 if (!started_error_output)
9554 {
9555 started_error_output = 1;
0f71a2f6 9556 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
c906108c 9557 }
0f71a2f6 9558 fputc_unfiltered (ch & 0177, gdb_stdlog);
c906108c
SS
9559 }
9560 continue;
9561 }
23860348 9562 break; /* Here to retransmit. */
c906108c
SS
9563 }
9564
9565#if 0
9566 /* This is wrong. If doing a long backtrace, the user should be
dda83cd7
SM
9567 able to get out next time we call QUIT, without anything as
9568 violent as interrupt_query. If we want to provide a way out of
9569 here without getting to the next QUIT, it should be based on
9570 hitting ^C twice as in remote_wait. */
c906108c
SS
9571 if (quit_flag)
9572 {
9573 quit_flag = 0;
9574 interrupt_query ();
9575 }
9576#endif
9577 }
a5c0808e 9578
a6f3e723 9579 return 0;
c906108c
SS
9580}
9581
6d820c5c
DJ
9582/* Come here after finding the start of a frame when we expected an
9583 ack. Do our best to discard the rest of this packet. */
9584
6b8edb51
PA
9585void
9586remote_target::skip_frame ()
6d820c5c
DJ
9587{
9588 int c;
9589
9590 while (1)
9591 {
9592 c = readchar (remote_timeout);
9593 switch (c)
9594 {
9595 case SERIAL_TIMEOUT:
9596 /* Nothing we can do. */
9597 return;
9598 case '#':
9599 /* Discard the two bytes of checksum and stop. */
9600 c = readchar (remote_timeout);
9601 if (c >= 0)
9602 c = readchar (remote_timeout);
9603
9604 return;
9605 case '*': /* Run length encoding. */
9606 /* Discard the repeat count. */
9607 c = readchar (remote_timeout);
9608 if (c < 0)
9609 return;
9610 break;
9611 default:
9612 /* A regular character. */
9613 break;
9614 }
9615 }
9616}
9617
c906108c 9618/* Come here after finding the start of the frame. Collect the rest
6d820c5c
DJ
9619 into *BUF, verifying the checksum, length, and handling run-length
9620 compression. NUL terminate the buffer. If there is not enough room,
8d64371b 9621 expand *BUF.
c906108c 9622
c2d11a7d
JM
9623 Returns -1 on error, number of characters in buffer (ignoring the
9624 trailing NULL) on success. (could be extended to return one of the
23860348 9625 SERIAL status indications). */
c2d11a7d 9626
6b8edb51 9627long
8d64371b 9628remote_target::read_frame (gdb::char_vector *buf_p)
c906108c
SS
9629{
9630 unsigned char csum;
c2d11a7d 9631 long bc;
c906108c 9632 int c;
8d64371b 9633 char *buf = buf_p->data ();
a6f3e723 9634 struct remote_state *rs = get_remote_state ();
c906108c
SS
9635
9636 csum = 0;
c2d11a7d 9637 bc = 0;
c906108c
SS
9638
9639 while (1)
9640 {
9641 c = readchar (remote_timeout);
c906108c
SS
9642 switch (c)
9643 {
9644 case SERIAL_TIMEOUT:
9645 if (remote_debug)
0f71a2f6 9646 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog);
c2d11a7d 9647 return -1;
c906108c
SS
9648 case '$':
9649 if (remote_debug)
0f71a2f6
JM
9650 fputs_filtered ("Saw new packet start in middle of old one\n",
9651 gdb_stdlog);
23860348 9652 return -1; /* Start a new packet, count retries. */
c906108c
SS
9653 case '#':
9654 {
9655 unsigned char pktcsum;
e1b09194
AC
9656 int check_0 = 0;
9657 int check_1 = 0;
c906108c 9658
c2d11a7d 9659 buf[bc] = '\0';
c906108c 9660
e1b09194
AC
9661 check_0 = readchar (remote_timeout);
9662 if (check_0 >= 0)
9663 check_1 = readchar (remote_timeout);
802188a7 9664
e1b09194
AC
9665 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
9666 {
9667 if (remote_debug)
2bc416ba 9668 fputs_filtered ("Timeout in checksum, retrying\n",
23860348 9669 gdb_stdlog);
e1b09194
AC
9670 return -1;
9671 }
9672 else if (check_0 < 0 || check_1 < 0)
40e3f985
FN
9673 {
9674 if (remote_debug)
2bc416ba 9675 fputs_filtered ("Communication error in checksum\n",
23860348 9676 gdb_stdlog);
40e3f985
FN
9677 return -1;
9678 }
c906108c 9679
a6f3e723
SL
9680 /* Don't recompute the checksum; with no ack packets we
9681 don't have any way to indicate a packet retransmission
9682 is necessary. */
9683 if (rs->noack_mode)
9684 return bc;
9685
e1b09194 9686 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
c906108c 9687 if (csum == pktcsum)
dda83cd7 9688 return bc;
c906108c 9689
c5aa993b 9690 if (remote_debug)
c906108c 9691 {
b3ced9ba 9692 std::string str = escape_buffer (buf, bc);
6e5abd65 9693
6e5abd65 9694 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
9695 "Bad checksum, sentsum=0x%x, "
9696 "csum=0x%x, buf=%s\n",
b3ced9ba 9697 pktcsum, csum, str.c_str ());
c906108c 9698 }
c2d11a7d 9699 /* Number of characters in buffer ignoring trailing
dda83cd7 9700 NULL. */
c2d11a7d 9701 return -1;
c906108c 9702 }
23860348 9703 case '*': /* Run length encoding. */
dda83cd7 9704 {
c2c6d25f 9705 int repeat;
c906108c 9706
a744cf53 9707 csum += c;
b4501125
AC
9708 c = readchar (remote_timeout);
9709 csum += c;
23860348 9710 repeat = c - ' ' + 3; /* Compute repeat count. */
c906108c 9711
23860348 9712 /* The character before ``*'' is repeated. */
c2d11a7d 9713
6d820c5c 9714 if (repeat > 0 && repeat <= 255 && bc > 0)
c2c6d25f 9715 {
8d64371b 9716 if (bc + repeat - 1 >= buf_p->size () - 1)
6d820c5c
DJ
9717 {
9718 /* Make some more room in the buffer. */
8d64371b
TT
9719 buf_p->resize (buf_p->size () + repeat);
9720 buf = buf_p->data ();
6d820c5c
DJ
9721 }
9722
c2d11a7d
JM
9723 memset (&buf[bc], buf[bc - 1], repeat);
9724 bc += repeat;
c2c6d25f
JM
9725 continue;
9726 }
9727
c2d11a7d 9728 buf[bc] = '\0';
6d820c5c 9729 printf_filtered (_("Invalid run length encoding: %s\n"), buf);
c2d11a7d 9730 return -1;
c2c6d25f 9731 }
c906108c 9732 default:
8d64371b 9733 if (bc >= buf_p->size () - 1)
c906108c 9734 {
6d820c5c 9735 /* Make some more room in the buffer. */
8d64371b
TT
9736 buf_p->resize (buf_p->size () * 2);
9737 buf = buf_p->data ();
c906108c
SS
9738 }
9739
6d820c5c
DJ
9740 buf[bc++] = c;
9741 csum += c;
9742 continue;
c906108c
SS
9743 }
9744 }
9745}
9746
ed2b7c17
TT
9747/* Set this to the maximum number of seconds to wait instead of waiting forever
9748 in target_wait(). If this timer times out, then it generates an error and
9749 the command is aborted. This replaces most of the need for timeouts in the
9750 GDB test suite, and makes it possible to distinguish between a hung target
9751 and one with slow communications. */
9752
9753static int watchdog = 0;
9754static void
9755show_watchdog (struct ui_file *file, int from_tty,
9756 struct cmd_list_element *c, const char *value)
9757{
9758 fprintf_filtered (file, _("Watchdog timer is %s.\n"), value);
9759}
9760
c906108c 9761/* Read a packet from the remote machine, with error checking, and
8d64371b
TT
9762 store it in *BUF. Resize *BUF if necessary to hold the result. If
9763 FOREVER, wait forever rather than timing out; this is used (in
9764 synchronous mode) to wait for a target that is is executing user
9765 code to stop. */
d9fcf2fb
JM
9766/* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
9767 don't have to change all the calls to getpkt to deal with the
9768 return value, because at the moment I don't know what the right
23860348 9769 thing to do it for those. */
6b8edb51 9770
c906108c 9771void
8d64371b 9772remote_target::getpkt (gdb::char_vector *buf, int forever)
d9fcf2fb 9773{
8d64371b 9774 getpkt_sane (buf, forever);
d9fcf2fb
JM
9775}
9776
9777
9778/* Read a packet from the remote machine, with error checking, and
8d64371b
TT
9779 store it in *BUF. Resize *BUF if necessary to hold the result. If
9780 FOREVER, wait forever rather than timing out; this is used (in
9781 synchronous mode) to wait for a target that is is executing user
9782 code to stop. If FOREVER == 0, this function is allowed to time
9783 out gracefully and return an indication of this to the caller.
9784 Otherwise return the number of bytes read. If EXPECTING_NOTIF,
9785 consider receiving a notification enough reason to return to the
9786 caller. *IS_NOTIF is an output boolean that indicates whether *BUF
9787 holds a notification or not (a regular packet). */
74531fed 9788
6b8edb51 9789int
8d64371b 9790remote_target::getpkt_or_notif_sane_1 (gdb::char_vector *buf,
6b8edb51
PA
9791 int forever, int expecting_notif,
9792 int *is_notif)
c906108c 9793{
2d717e4f 9794 struct remote_state *rs = get_remote_state ();
c906108c
SS
9795 int c;
9796 int tries;
9797 int timeout;
df4b58fe 9798 int val = -1;
c906108c 9799
2d717e4f
DJ
9800 /* We're reading a new response. Make sure we don't look at a
9801 previously cached response. */
9802 rs->cached_wait_status = 0;
9803
8d64371b 9804 strcpy (buf->data (), "timeout");
c906108c
SS
9805
9806 if (forever)
74531fed
PA
9807 timeout = watchdog > 0 ? watchdog : -1;
9808 else if (expecting_notif)
9809 timeout = 0; /* There should already be a char in the buffer. If
9810 not, bail out. */
c906108c
SS
9811 else
9812 timeout = remote_timeout;
9813
9814#define MAX_TRIES 3
9815
74531fed
PA
9816 /* Process any number of notifications, and then return when
9817 we get a packet. */
9818 for (;;)
c906108c 9819 {
d9c43928 9820 /* If we get a timeout or bad checksum, retry up to MAX_TRIES
74531fed
PA
9821 times. */
9822 for (tries = 1; tries <= MAX_TRIES; tries++)
c906108c 9823 {
74531fed
PA
9824 /* This can loop forever if the remote side sends us
9825 characters continuously, but if it pauses, we'll get
9826 SERIAL_TIMEOUT from readchar because of timeout. Then
9827 we'll count that as a retry.
9828
9829 Note that even when forever is set, we will only wait
9830 forever prior to the start of a packet. After that, we
9831 expect characters to arrive at a brisk pace. They should
9832 show up within remote_timeout intervals. */
9833 do
9834 c = readchar (timeout);
9835 while (c != SERIAL_TIMEOUT && c != '$' && c != '%');
c906108c
SS
9836
9837 if (c == SERIAL_TIMEOUT)
9838 {
74531fed
PA
9839 if (expecting_notif)
9840 return -1; /* Don't complain, it's normal to not get
9841 anything in this case. */
9842
23860348 9843 if (forever) /* Watchdog went off? Kill the target. */
c906108c 9844 {
5b6d1e4f 9845 remote_unpush_target (this);
598d3636
JK
9846 throw_error (TARGET_CLOSE_ERROR,
9847 _("Watchdog timeout has expired. "
9848 "Target detached."));
c906108c 9849 }
c906108c 9850 if (remote_debug)
0f71a2f6 9851 fputs_filtered ("Timed out.\n", gdb_stdlog);
c906108c 9852 }
74531fed
PA
9853 else
9854 {
9855 /* We've found the start of a packet or notification.
9856 Now collect the data. */
8d64371b 9857 val = read_frame (buf);
74531fed
PA
9858 if (val >= 0)
9859 break;
9860 }
9861
c33e31fd 9862 remote_serial_write ("-", 1);
c906108c 9863 }
c906108c 9864
74531fed
PA
9865 if (tries > MAX_TRIES)
9866 {
9867 /* We have tried hard enough, and just can't receive the
9868 packet/notification. Give up. */
9869 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
c906108c 9870
74531fed
PA
9871 /* Skip the ack char if we're in no-ack mode. */
9872 if (!rs->noack_mode)
c33e31fd 9873 remote_serial_write ("+", 1);
74531fed
PA
9874 return -1;
9875 }
c906108c 9876
74531fed
PA
9877 /* If we got an ordinary packet, return that to our caller. */
9878 if (c == '$')
c906108c
SS
9879 {
9880 if (remote_debug)
43e526b9 9881 {
6cc8564b
LM
9882 int max_chars;
9883
9884 if (remote_packet_max_chars < 0)
9885 max_chars = val;
9886 else
9887 max_chars = remote_packet_max_chars;
9888
6f8976bf 9889 std::string str
8d64371b 9890 = escape_buffer (buf->data (),
6cc8564b 9891 std::min (val, max_chars));
6f8976bf
YQ
9892
9893 fprintf_unfiltered (gdb_stdlog, "Packet received: %s",
9894 str.c_str ());
9895
6cc8564b 9896 if (val > max_chars)
567a3e54 9897 fprintf_unfiltered (gdb_stdlog, "[%d bytes omitted]",
6cc8564b 9898 val - max_chars);
6e5abd65 9899
6f8976bf 9900 fprintf_unfiltered (gdb_stdlog, "\n");
43e526b9 9901 }
a6f3e723
SL
9902
9903 /* Skip the ack char if we're in no-ack mode. */
9904 if (!rs->noack_mode)
c33e31fd 9905 remote_serial_write ("+", 1);
fee9eda9
YQ
9906 if (is_notif != NULL)
9907 *is_notif = 0;
0876f84a 9908 return val;
c906108c
SS
9909 }
9910
74531fed
PA
9911 /* If we got a notification, handle it, and go back to looking
9912 for a packet. */
9913 else
9914 {
9915 gdb_assert (c == '%');
9916
9917 if (remote_debug)
9918 {
8d64371b 9919 std::string str = escape_buffer (buf->data (), val);
6e5abd65 9920
6e5abd65
PA
9921 fprintf_unfiltered (gdb_stdlog,
9922 " Notification received: %s\n",
b3ced9ba 9923 str.c_str ());
74531fed 9924 }
fee9eda9
YQ
9925 if (is_notif != NULL)
9926 *is_notif = 1;
c906108c 9927
8d64371b 9928 handle_notification (rs->notif_state, buf->data ());
c906108c 9929
74531fed 9930 /* Notifications require no acknowledgement. */
a6f3e723 9931
74531fed 9932 if (expecting_notif)
fee9eda9 9933 return val;
74531fed
PA
9934 }
9935 }
9936}
9937
6b8edb51 9938int
8d64371b 9939remote_target::getpkt_sane (gdb::char_vector *buf, int forever)
74531fed 9940{
8d64371b 9941 return getpkt_or_notif_sane_1 (buf, forever, 0, NULL);
74531fed
PA
9942}
9943
6b8edb51 9944int
8d64371b 9945remote_target::getpkt_or_notif_sane (gdb::char_vector *buf, int forever,
6b8edb51 9946 int *is_notif)
74531fed 9947{
8d64371b 9948 return getpkt_or_notif_sane_1 (buf, forever, 1, is_notif);
c906108c 9949}
74531fed 9950
cbb8991c
DB
9951/* Kill any new fork children of process PID that haven't been
9952 processed by follow_fork. */
9953
6b8edb51
PA
9954void
9955remote_target::kill_new_fork_children (int pid)
cbb8991c 9956{
6b8edb51 9957 remote_state *rs = get_remote_state ();
cbb8991c 9958 struct notif_client *notif = &notif_client_stop;
cbb8991c
DB
9959
9960 /* Kill the fork child threads of any threads in process PID
9961 that are stopped at a fork event. */
5b6d1e4f 9962 for (thread_info *thread : all_non_exited_threads (this))
cbb8991c
DB
9963 {
9964 struct target_waitstatus *ws = &thread->pending_follow;
9965
9966 if (is_pending_fork_parent (ws, pid, thread->ptid))
9967 {
953edf2b 9968 int child_pid = ws->value.related_pid.pid ();
cbb8991c
DB
9969 int res;
9970
6b8edb51 9971 res = remote_vkill (child_pid);
cbb8991c
DB
9972 if (res != 0)
9973 error (_("Can't kill fork child process %d"), child_pid);
9974 }
9975 }
9976
9977 /* Check for any pending fork events (not reported or processed yet)
9978 in process PID and kill those fork child threads as well. */
9979 remote_notif_get_pending_events (notif);
953edf2b
TT
9980 for (auto &event : rs->stop_reply_queue)
9981 if (is_pending_fork_parent (&event->ws, pid, event->ptid))
9982 {
9983 int child_pid = event->ws.value.related_pid.pid ();
9984 int res;
9985
9986 res = remote_vkill (child_pid);
9987 if (res != 0)
9988 error (_("Can't kill fork child process %d"), child_pid);
9989 }
cbb8991c
DB
9990}
9991
c906108c 9992\f
8020350c
DB
9993/* Target hook to kill the current inferior. */
9994
f6ac5f3d
PA
9995void
9996remote_target::kill ()
43ff13b4 9997{
8020350c 9998 int res = -1;
e99b03dc 9999 int pid = inferior_ptid.pid ();
8020350c 10000 struct remote_state *rs = get_remote_state ();
0fdf84ca 10001
8020350c 10002 if (packet_support (PACKET_vKill) != PACKET_DISABLE)
0fdf84ca 10003 {
8020350c
DB
10004 /* If we're stopped while forking and we haven't followed yet,
10005 kill the child task. We need to do this before killing the
10006 parent task because if this is a vfork then the parent will
10007 be sleeping. */
6b8edb51 10008 kill_new_fork_children (pid);
8020350c 10009
6b8edb51 10010 res = remote_vkill (pid);
8020350c 10011 if (res == 0)
0fdf84ca 10012 {
bc1e6c81 10013 target_mourn_inferior (inferior_ptid);
0fdf84ca
PA
10014 return;
10015 }
8020350c 10016 }
0fdf84ca 10017
8020350c
DB
10018 /* If we are in 'target remote' mode and we are killing the only
10019 inferior, then we will tell gdbserver to exit and unpush the
10020 target. */
10021 if (res == -1 && !remote_multi_process_p (rs)
5b6d1e4f 10022 && number_of_live_inferiors (this) == 1)
8020350c
DB
10023 {
10024 remote_kill_k ();
10025
10026 /* We've killed the remote end, we get to mourn it. If we are
10027 not in extended mode, mourning the inferior also unpushes
10028 remote_ops from the target stack, which closes the remote
10029 connection. */
bc1e6c81 10030 target_mourn_inferior (inferior_ptid);
8020350c
DB
10031
10032 return;
0fdf84ca 10033 }
43ff13b4 10034
8020350c 10035 error (_("Can't kill process"));
43ff13b4
JM
10036}
10037
8020350c
DB
10038/* Send a kill request to the target using the 'vKill' packet. */
10039
6b8edb51
PA
10040int
10041remote_target::remote_vkill (int pid)
82f73884 10042{
4082afcc 10043 if (packet_support (PACKET_vKill) == PACKET_DISABLE)
82f73884
PA
10044 return -1;
10045
6b8edb51
PA
10046 remote_state *rs = get_remote_state ();
10047
82f73884 10048 /* Tell the remote target to detach. */
8d64371b 10049 xsnprintf (rs->buf.data (), get_remote_packet_size (), "vKill;%x", pid);
82f73884 10050 putpkt (rs->buf);
8d64371b 10051 getpkt (&rs->buf, 0);
82f73884 10052
4082afcc
PA
10053 switch (packet_ok (rs->buf,
10054 &remote_protocol_packets[PACKET_vKill]))
10055 {
10056 case PACKET_OK:
10057 return 0;
10058 case PACKET_ERROR:
10059 return 1;
10060 case PACKET_UNKNOWN:
10061 return -1;
10062 default:
10063 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
10064 }
82f73884
PA
10065}
10066
8020350c
DB
10067/* Send a kill request to the target using the 'k' packet. */
10068
6b8edb51
PA
10069void
10070remote_target::remote_kill_k ()
82f73884 10071{
8020350c
DB
10072 /* Catch errors so the user can quit from gdb even when we
10073 aren't on speaking terms with the remote system. */
a70b8144 10074 try
82f73884 10075 {
82f73884 10076 putpkt ("k");
82f73884 10077 }
230d2906 10078 catch (const gdb_exception_error &ex)
8020350c
DB
10079 {
10080 if (ex.error == TARGET_CLOSE_ERROR)
10081 {
10082 /* If we got an (EOF) error that caused the target
10083 to go away, then we're done, that's what we wanted.
10084 "k" is susceptible to cause a premature EOF, given
10085 that the remote server isn't actually required to
10086 reply to "k", and it can happen that it doesn't
10087 even get to reply ACK to the "k". */
10088 return;
10089 }
82f73884 10090
8020350c
DB
10091 /* Otherwise, something went wrong. We didn't actually kill
10092 the target. Just propagate the exception, and let the
10093 user or higher layers decide what to do. */
eedc3f4f 10094 throw;
8020350c 10095 }
82f73884
PA
10096}
10097
f6ac5f3d
PA
10098void
10099remote_target::mourn_inferior ()
c906108c 10100{
8020350c 10101 struct remote_state *rs = get_remote_state ();
ce5ce7ed 10102
9607784a
PA
10103 /* We're no longer interested in notification events of an inferior
10104 that exited or was killed/detached. */
10105 discard_pending_stop_replies (current_inferior ());
10106
8020350c 10107 /* In 'target remote' mode with one inferior, we close the connection. */
5b6d1e4f 10108 if (!rs->extended && number_of_live_inferiors (this) <= 1)
8020350c 10109 {
5b6d1e4f 10110 remote_unpush_target (this);
8020350c
DB
10111 return;
10112 }
c906108c 10113
e24a49d8
PA
10114 /* In case we got here due to an error, but we're going to stay
10115 connected. */
10116 rs->waiting_for_stop_reply = 0;
10117
dc1981d7
PA
10118 /* If the current general thread belonged to the process we just
10119 detached from or has exited, the remote side current general
10120 thread becomes undefined. Considering a case like this:
10121
10122 - We just got here due to a detach.
10123 - The process that we're detaching from happens to immediately
10124 report a global breakpoint being hit in non-stop mode, in the
10125 same thread we had selected before.
10126 - GDB attaches to this process again.
10127 - This event happens to be the next event we handle.
10128
10129 GDB would consider that the current general thread didn't need to
10130 be set on the stub side (with Hg), since for all it knew,
10131 GENERAL_THREAD hadn't changed.
10132
10133 Notice that although in all-stop mode, the remote server always
10134 sets the current thread to the thread reporting the stop event,
10135 that doesn't happen in non-stop mode; in non-stop, the stub *must
10136 not* change the current thread when reporting a breakpoint hit,
10137 due to the decoupling of event reporting and event handling.
10138
10139 To keep things simple, we always invalidate our notion of the
10140 current thread. */
47f8a51d 10141 record_currthread (rs, minus_one_ptid);
dc1981d7 10142
8020350c 10143 /* Call common code to mark the inferior as not running. */
48aa3c27 10144 generic_mourn_inferior ();
2d717e4f 10145}
c906108c 10146
57810aa7 10147bool
f6ac5f3d 10148extended_remote_target::supports_disable_randomization ()
03583c20 10149{
4082afcc 10150 return packet_support (PACKET_QDisableRandomization) == PACKET_ENABLE;
03583c20
UW
10151}
10152
6b8edb51
PA
10153void
10154remote_target::extended_remote_disable_randomization (int val)
03583c20
UW
10155{
10156 struct remote_state *rs = get_remote_state ();
10157 char *reply;
10158
8d64371b
TT
10159 xsnprintf (rs->buf.data (), get_remote_packet_size (),
10160 "QDisableRandomization:%x", val);
03583c20 10161 putpkt (rs->buf);
b6bb3468 10162 reply = remote_get_noisy_reply ();
03583c20
UW
10163 if (*reply == '\0')
10164 error (_("Target does not support QDisableRandomization."));
10165 if (strcmp (reply, "OK") != 0)
10166 error (_("Bogus QDisableRandomization reply from target: %s"), reply);
10167}
10168
6b8edb51
PA
10169int
10170remote_target::extended_remote_run (const std::string &args)
2d717e4f
DJ
10171{
10172 struct remote_state *rs = get_remote_state ();
2d717e4f 10173 int len;
94585166 10174 const char *remote_exec_file = get_remote_exec_file ();
c906108c 10175
2d717e4f
DJ
10176 /* If the user has disabled vRun support, or we have detected that
10177 support is not available, do not try it. */
4082afcc 10178 if (packet_support (PACKET_vRun) == PACKET_DISABLE)
2d717e4f 10179 return -1;
424163ea 10180
8d64371b
TT
10181 strcpy (rs->buf.data (), "vRun;");
10182 len = strlen (rs->buf.data ());
c906108c 10183
2d717e4f
DJ
10184 if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ())
10185 error (_("Remote file name too long for run packet"));
8d64371b 10186 len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf.data () + len,
9f1b45b0 10187 strlen (remote_exec_file));
2d717e4f 10188
7c5ded6a 10189 if (!args.empty ())
2d717e4f 10190 {
2d717e4f 10191 int i;
2d717e4f 10192
773a1edc 10193 gdb_argv argv (args.c_str ());
2d717e4f
DJ
10194 for (i = 0; argv[i] != NULL; i++)
10195 {
10196 if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ())
10197 error (_("Argument list too long for run packet"));
10198 rs->buf[len++] = ';';
8d64371b 10199 len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf.data () + len,
9f1b45b0 10200 strlen (argv[i]));
2d717e4f 10201 }
2d717e4f
DJ
10202 }
10203
10204 rs->buf[len++] = '\0';
10205
10206 putpkt (rs->buf);
8d64371b 10207 getpkt (&rs->buf, 0);
2d717e4f 10208
4082afcc 10209 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun]))
2d717e4f 10210 {
4082afcc 10211 case PACKET_OK:
3405876a 10212 /* We have a wait response. All is well. */
2d717e4f 10213 return 0;
4082afcc
PA
10214 case PACKET_UNKNOWN:
10215 return -1;
10216 case PACKET_ERROR:
2d717e4f
DJ
10217 if (remote_exec_file[0] == '\0')
10218 error (_("Running the default executable on the remote target failed; "
10219 "try \"set remote exec-file\"?"));
10220 else
10221 error (_("Running \"%s\" on the remote target failed"),
10222 remote_exec_file);
4082afcc
PA
10223 default:
10224 gdb_assert_not_reached (_("bad switch"));
2d717e4f 10225 }
c906108c
SS
10226}
10227
0a2dde4a
SDJ
10228/* Helper function to send set/unset environment packets. ACTION is
10229 either "set" or "unset". PACKET is either "QEnvironmentHexEncoded"
10230 or "QEnvironmentUnsetVariable". VALUE is the variable to be
10231 sent. */
10232
6b8edb51
PA
10233void
10234remote_target::send_environment_packet (const char *action,
10235 const char *packet,
10236 const char *value)
0a2dde4a 10237{
6b8edb51
PA
10238 remote_state *rs = get_remote_state ();
10239
0a2dde4a
SDJ
10240 /* Convert the environment variable to an hex string, which
10241 is the best format to be transmitted over the wire. */
10242 std::string encoded_value = bin2hex ((const gdb_byte *) value,
10243 strlen (value));
10244
8d64371b 10245 xsnprintf (rs->buf.data (), get_remote_packet_size (),
0a2dde4a
SDJ
10246 "%s:%s", packet, encoded_value.c_str ());
10247
10248 putpkt (rs->buf);
8d64371b
TT
10249 getpkt (&rs->buf, 0);
10250 if (strcmp (rs->buf.data (), "OK") != 0)
0a2dde4a
SDJ
10251 warning (_("Unable to %s environment variable '%s' on remote."),
10252 action, value);
10253}
10254
10255/* Helper function to handle the QEnvironment* packets. */
10256
6b8edb51
PA
10257void
10258remote_target::extended_remote_environment_support ()
0a2dde4a 10259{
6b8edb51
PA
10260 remote_state *rs = get_remote_state ();
10261
0a2dde4a
SDJ
10262 if (packet_support (PACKET_QEnvironmentReset) != PACKET_DISABLE)
10263 {
10264 putpkt ("QEnvironmentReset");
8d64371b
TT
10265 getpkt (&rs->buf, 0);
10266 if (strcmp (rs->buf.data (), "OK") != 0)
0a2dde4a
SDJ
10267 warning (_("Unable to reset environment on remote."));
10268 }
10269
10270 gdb_environ *e = &current_inferior ()->environment;
10271
10272 if (packet_support (PACKET_QEnvironmentHexEncoded) != PACKET_DISABLE)
10273 for (const std::string &el : e->user_set_env ())
6b8edb51 10274 send_environment_packet ("set", "QEnvironmentHexEncoded",
0a2dde4a
SDJ
10275 el.c_str ());
10276
10277 if (packet_support (PACKET_QEnvironmentUnset) != PACKET_DISABLE)
10278 for (const std::string &el : e->user_unset_env ())
6b8edb51 10279 send_environment_packet ("unset", "QEnvironmentUnset", el.c_str ());
0a2dde4a
SDJ
10280}
10281
bc3b087d
SDJ
10282/* Helper function to set the current working directory for the
10283 inferior in the remote target. */
10284
6b8edb51
PA
10285void
10286remote_target::extended_remote_set_inferior_cwd ()
bc3b087d
SDJ
10287{
10288 if (packet_support (PACKET_QSetWorkingDir) != PACKET_DISABLE)
10289 {
10290 const char *inferior_cwd = get_inferior_cwd ();
6b8edb51 10291 remote_state *rs = get_remote_state ();
bc3b087d
SDJ
10292
10293 if (inferior_cwd != NULL)
10294 {
10295 std::string hexpath = bin2hex ((const gdb_byte *) inferior_cwd,
10296 strlen (inferior_cwd));
10297
8d64371b 10298 xsnprintf (rs->buf.data (), get_remote_packet_size (),
bc3b087d
SDJ
10299 "QSetWorkingDir:%s", hexpath.c_str ());
10300 }
10301 else
10302 {
10303 /* An empty inferior_cwd means that the user wants us to
10304 reset the remote server's inferior's cwd. */
8d64371b 10305 xsnprintf (rs->buf.data (), get_remote_packet_size (),
bc3b087d
SDJ
10306 "QSetWorkingDir:");
10307 }
10308
10309 putpkt (rs->buf);
8d64371b 10310 getpkt (&rs->buf, 0);
bc3b087d
SDJ
10311 if (packet_ok (rs->buf,
10312 &remote_protocol_packets[PACKET_QSetWorkingDir])
10313 != PACKET_OK)
10314 error (_("\
10315Remote replied unexpectedly while setting the inferior's working\n\
10316directory: %s"),
8d64371b 10317 rs->buf.data ());
bc3b087d
SDJ
10318
10319 }
10320}
10321
2d717e4f
DJ
10322/* In the extended protocol we want to be able to do things like
10323 "run" and have them basically work as expected. So we need
10324 a special create_inferior function. We support changing the
10325 executable file and the command line arguments, but not the
10326 environment. */
10327
f6ac5f3d
PA
10328void
10329extended_remote_target::create_inferior (const char *exec_file,
10330 const std::string &args,
10331 char **env, int from_tty)
43ff13b4 10332{
3405876a
PA
10333 int run_worked;
10334 char *stop_reply;
10335 struct remote_state *rs = get_remote_state ();
94585166 10336 const char *remote_exec_file = get_remote_exec_file ();
3405876a 10337
43ff13b4 10338 /* If running asynchronously, register the target file descriptor
23860348 10339 with the event loop. */
75c99385 10340 if (target_can_async_p ())
6a3753b3 10341 target_async (1);
43ff13b4 10342
03583c20 10343 /* Disable address space randomization if requested (and supported). */
f6ac5f3d 10344 if (supports_disable_randomization ())
03583c20
UW
10345 extended_remote_disable_randomization (disable_randomization);
10346
aefd8b33
SDJ
10347 /* If startup-with-shell is on, we inform gdbserver to start the
10348 remote inferior using a shell. */
10349 if (packet_support (PACKET_QStartupWithShell) != PACKET_DISABLE)
10350 {
8d64371b 10351 xsnprintf (rs->buf.data (), get_remote_packet_size (),
aefd8b33
SDJ
10352 "QStartupWithShell:%d", startup_with_shell ? 1 : 0);
10353 putpkt (rs->buf);
8d64371b
TT
10354 getpkt (&rs->buf, 0);
10355 if (strcmp (rs->buf.data (), "OK") != 0)
aefd8b33
SDJ
10356 error (_("\
10357Remote replied unexpectedly while setting startup-with-shell: %s"),
8d64371b 10358 rs->buf.data ());
aefd8b33
SDJ
10359 }
10360
6b8edb51 10361 extended_remote_environment_support ();
0a2dde4a 10362
6b8edb51 10363 extended_remote_set_inferior_cwd ();
bc3b087d 10364
43ff13b4 10365 /* Now restart the remote server. */
3405876a
PA
10366 run_worked = extended_remote_run (args) != -1;
10367 if (!run_worked)
2d717e4f
DJ
10368 {
10369 /* vRun was not supported. Fail if we need it to do what the
10370 user requested. */
10371 if (remote_exec_file[0])
10372 error (_("Remote target does not support \"set remote exec-file\""));
7c5ded6a 10373 if (!args.empty ())
65e65158 10374 error (_("Remote target does not support \"set args\" or run ARGS"));
43ff13b4 10375
2d717e4f
DJ
10376 /* Fall back to "R". */
10377 extended_remote_restart ();
10378 }
424163ea 10379
3405876a 10380 /* vRun's success return is a stop reply. */
8d64371b 10381 stop_reply = run_worked ? rs->buf.data () : NULL;
3405876a 10382 add_current_inferior_and_thread (stop_reply);
c0a2216e 10383
2d717e4f
DJ
10384 /* Get updated offsets, if the stub uses qOffsets. */
10385 get_offsets ();
2d717e4f 10386}
c906108c 10387\f
c5aa993b 10388
b775012e
LM
10389/* Given a location's target info BP_TGT and the packet buffer BUF, output
10390 the list of conditions (in agent expression bytecode format), if any, the
10391 target needs to evaluate. The output is placed into the packet buffer
bba74b36 10392 started from BUF and ended at BUF_END. */
b775012e
LM
10393
10394static int
10395remote_add_target_side_condition (struct gdbarch *gdbarch,
bba74b36
YQ
10396 struct bp_target_info *bp_tgt, char *buf,
10397 char *buf_end)
b775012e 10398{
3cde5c42 10399 if (bp_tgt->conditions.empty ())
b775012e
LM
10400 return 0;
10401
10402 buf += strlen (buf);
bba74b36 10403 xsnprintf (buf, buf_end - buf, "%s", ";");
b775012e
LM
10404 buf++;
10405
83621223 10406 /* Send conditions to the target. */
d538e36d 10407 for (agent_expr *aexpr : bp_tgt->conditions)
b775012e 10408 {
bba74b36 10409 xsnprintf (buf, buf_end - buf, "X%x,", aexpr->len);
b775012e 10410 buf += strlen (buf);
3cde5c42 10411 for (int i = 0; i < aexpr->len; ++i)
b775012e
LM
10412 buf = pack_hex_byte (buf, aexpr->buf[i]);
10413 *buf = '\0';
10414 }
b775012e
LM
10415 return 0;
10416}
10417
d3ce09f5
SS
10418static void
10419remote_add_target_side_commands (struct gdbarch *gdbarch,
10420 struct bp_target_info *bp_tgt, char *buf)
10421{
3cde5c42 10422 if (bp_tgt->tcommands.empty ())
d3ce09f5
SS
10423 return;
10424
10425 buf += strlen (buf);
10426
10427 sprintf (buf, ";cmds:%x,", bp_tgt->persist);
10428 buf += strlen (buf);
10429
10430 /* Concatenate all the agent expressions that are commands into the
10431 cmds parameter. */
df97be55 10432 for (agent_expr *aexpr : bp_tgt->tcommands)
d3ce09f5
SS
10433 {
10434 sprintf (buf, "X%x,", aexpr->len);
10435 buf += strlen (buf);
3cde5c42 10436 for (int i = 0; i < aexpr->len; ++i)
d3ce09f5
SS
10437 buf = pack_hex_byte (buf, aexpr->buf[i]);
10438 *buf = '\0';
10439 }
d3ce09f5
SS
10440}
10441
8181d85f
DJ
10442/* Insert a breakpoint. On targets that have software breakpoint
10443 support, we ask the remote target to do the work; on targets
10444 which don't, we insert a traditional memory breakpoint. */
c906108c 10445
f6ac5f3d
PA
10446int
10447remote_target::insert_breakpoint (struct gdbarch *gdbarch,
10448 struct bp_target_info *bp_tgt)
c906108c 10449{
d471ea57
AC
10450 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
10451 If it succeeds, then set the support to PACKET_ENABLE. If it
10452 fails, and the user has explicitly requested the Z support then
23860348 10453 report an error, otherwise, mark it disabled and go on. */
802188a7 10454
4082afcc 10455 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 10456 {
0d5ed153 10457 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 10458 struct remote_state *rs;
bba74b36 10459 char *p, *endbuf;
4fff2411 10460
28439a30
PA
10461 /* Make sure the remote is pointing at the right process, if
10462 necessary. */
10463 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10464 set_general_process ();
10465
4fff2411 10466 rs = get_remote_state ();
8d64371b
TT
10467 p = rs->buf.data ();
10468 endbuf = p + get_remote_packet_size ();
802188a7 10469
96baa820
JM
10470 *(p++) = 'Z';
10471 *(p++) = '0';
10472 *(p++) = ',';
7c0f6dcc 10473 addr = (ULONGEST) remote_address_masked (addr);
8181d85f 10474 p += hexnumstr (p, addr);
579c6ad9 10475 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
802188a7 10476
f6ac5f3d 10477 if (supports_evaluation_of_breakpoint_conditions ())
bba74b36 10478 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 10479
f6ac5f3d 10480 if (can_run_breakpoint_commands ())
d3ce09f5
SS
10481 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10482
6d820c5c 10483 putpkt (rs->buf);
8d64371b 10484 getpkt (&rs->buf, 0);
96baa820 10485
6d820c5c 10486 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
96baa820 10487 {
d471ea57
AC
10488 case PACKET_ERROR:
10489 return -1;
10490 case PACKET_OK:
10491 return 0;
10492 case PACKET_UNKNOWN:
10493 break;
96baa820
JM
10494 }
10495 }
c906108c 10496
0000e5cc
PA
10497 /* If this breakpoint has target-side commands but this stub doesn't
10498 support Z0 packets, throw error. */
3cde5c42 10499 if (!bp_tgt->tcommands.empty ())
0000e5cc
PA
10500 throw_error (NOT_SUPPORTED_ERROR, _("\
10501Target doesn't support breakpoints that have target side commands."));
10502
f6ac5f3d 10503 return memory_insert_breakpoint (this, gdbarch, bp_tgt);
c906108c
SS
10504}
10505
f6ac5f3d
PA
10506int
10507remote_target::remove_breakpoint (struct gdbarch *gdbarch,
10508 struct bp_target_info *bp_tgt,
10509 enum remove_bp_reason reason)
c906108c 10510{
8181d85f 10511 CORE_ADDR addr = bp_tgt->placed_address;
d01949b6 10512 struct remote_state *rs = get_remote_state ();
96baa820 10513
4082afcc 10514 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 10515 {
8d64371b
TT
10516 char *p = rs->buf.data ();
10517 char *endbuf = p + get_remote_packet_size ();
802188a7 10518
28439a30
PA
10519 /* Make sure the remote is pointing at the right process, if
10520 necessary. */
10521 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10522 set_general_process ();
10523
96baa820
JM
10524 *(p++) = 'z';
10525 *(p++) = '0';
10526 *(p++) = ',';
10527
8181d85f
DJ
10528 addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
10529 p += hexnumstr (p, addr);
579c6ad9 10530 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
802188a7 10531
6d820c5c 10532 putpkt (rs->buf);
8d64371b 10533 getpkt (&rs->buf, 0);
96baa820 10534
6d820c5c 10535 return (rs->buf[0] == 'E');
96baa820
JM
10536 }
10537
f6ac5f3d 10538 return memory_remove_breakpoint (this, gdbarch, bp_tgt, reason);
c906108c
SS
10539}
10540
f486487f 10541static enum Z_packet_type
d471ea57
AC
10542watchpoint_to_Z_packet (int type)
10543{
10544 switch (type)
10545 {
10546 case hw_write:
bb858e6a 10547 return Z_PACKET_WRITE_WP;
d471ea57
AC
10548 break;
10549 case hw_read:
bb858e6a 10550 return Z_PACKET_READ_WP;
d471ea57
AC
10551 break;
10552 case hw_access:
bb858e6a 10553 return Z_PACKET_ACCESS_WP;
d471ea57
AC
10554 break;
10555 default:
8e65ff28 10556 internal_error (__FILE__, __LINE__,
e2e0b3e5 10557 _("hw_bp_to_z: bad watchpoint type %d"), type);
d471ea57
AC
10558 }
10559}
10560
f6ac5f3d
PA
10561int
10562remote_target::insert_watchpoint (CORE_ADDR addr, int len,
10563 enum target_hw_bp_type type, struct expression *cond)
96baa820 10564{
d01949b6 10565 struct remote_state *rs = get_remote_state ();
8d64371b 10566 char *endbuf = rs->buf.data () + get_remote_packet_size ();
e514a9d6 10567 char *p;
d471ea57 10568 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
96baa820 10569
4082afcc 10570 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
85d721b8 10571 return 1;
802188a7 10572
28439a30
PA
10573 /* Make sure the remote is pointing at the right process, if
10574 necessary. */
10575 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10576 set_general_process ();
10577
8d64371b
TT
10578 xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "Z%x,", packet);
10579 p = strchr (rs->buf.data (), '\0');
96baa820
JM
10580 addr = remote_address_masked (addr);
10581 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 10582 xsnprintf (p, endbuf - p, ",%x", len);
802188a7 10583
6d820c5c 10584 putpkt (rs->buf);
8d64371b 10585 getpkt (&rs->buf, 0);
96baa820 10586
6d820c5c 10587 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
10588 {
10589 case PACKET_ERROR:
d471ea57 10590 return -1;
85d721b8
PA
10591 case PACKET_UNKNOWN:
10592 return 1;
d471ea57
AC
10593 case PACKET_OK:
10594 return 0;
10595 }
8e65ff28 10596 internal_error (__FILE__, __LINE__,
e2e0b3e5 10597 _("remote_insert_watchpoint: reached end of function"));
96baa820
JM
10598}
10599
57810aa7 10600bool
f6ac5f3d
PA
10601remote_target::watchpoint_addr_within_range (CORE_ADDR addr,
10602 CORE_ADDR start, int length)
283002cf
MR
10603{
10604 CORE_ADDR diff = remote_address_masked (addr - start);
10605
10606 return diff < length;
10607}
10608
d471ea57 10609
f6ac5f3d
PA
10610int
10611remote_target::remove_watchpoint (CORE_ADDR addr, int len,
10612 enum target_hw_bp_type type, struct expression *cond)
96baa820 10613{
d01949b6 10614 struct remote_state *rs = get_remote_state ();
8d64371b 10615 char *endbuf = rs->buf.data () + get_remote_packet_size ();
e514a9d6 10616 char *p;
d471ea57
AC
10617 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
10618
4082afcc 10619 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
5cffb350 10620 return -1;
802188a7 10621
28439a30
PA
10622 /* Make sure the remote is pointing at the right process, if
10623 necessary. */
10624 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10625 set_general_process ();
10626
8d64371b
TT
10627 xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "z%x,", packet);
10628 p = strchr (rs->buf.data (), '\0');
96baa820
JM
10629 addr = remote_address_masked (addr);
10630 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 10631 xsnprintf (p, endbuf - p, ",%x", len);
6d820c5c 10632 putpkt (rs->buf);
8d64371b 10633 getpkt (&rs->buf, 0);
96baa820 10634
6d820c5c 10635 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
10636 {
10637 case PACKET_ERROR:
10638 case PACKET_UNKNOWN:
10639 return -1;
10640 case PACKET_OK:
10641 return 0;
10642 }
8e65ff28 10643 internal_error (__FILE__, __LINE__,
e2e0b3e5 10644 _("remote_remove_watchpoint: reached end of function"));
96baa820
JM
10645}
10646
3c3bea1c 10647
60fcc1c3
TT
10648static int remote_hw_watchpoint_limit = -1;
10649static int remote_hw_watchpoint_length_limit = -1;
10650static int remote_hw_breakpoint_limit = -1;
d471ea57 10651
f6ac5f3d
PA
10652int
10653remote_target::region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
480a3f21
PW
10654{
10655 if (remote_hw_watchpoint_length_limit == 0)
10656 return 0;
10657 else if (remote_hw_watchpoint_length_limit < 0)
10658 return 1;
10659 else if (len <= remote_hw_watchpoint_length_limit)
10660 return 1;
10661 else
10662 return 0;
10663}
10664
f6ac5f3d
PA
10665int
10666remote_target::can_use_hw_breakpoint (enum bptype type, int cnt, int ot)
96baa820 10667{
3c3bea1c
GS
10668 if (type == bp_hardware_breakpoint)
10669 {
10670 if (remote_hw_breakpoint_limit == 0)
10671 return 0;
501eef12
AC
10672 else if (remote_hw_breakpoint_limit < 0)
10673 return 1;
3c3bea1c
GS
10674 else if (cnt <= remote_hw_breakpoint_limit)
10675 return 1;
10676 }
10677 else
10678 {
10679 if (remote_hw_watchpoint_limit == 0)
10680 return 0;
501eef12
AC
10681 else if (remote_hw_watchpoint_limit < 0)
10682 return 1;
3c3bea1c
GS
10683 else if (ot)
10684 return -1;
10685 else if (cnt <= remote_hw_watchpoint_limit)
10686 return 1;
10687 }
10688 return -1;
10689}
10690
f7e6eed5
PA
10691/* The to_stopped_by_sw_breakpoint method of target remote. */
10692
57810aa7 10693bool
f6ac5f3d 10694remote_target::stopped_by_sw_breakpoint ()
f7e6eed5 10695{
799a2abe 10696 struct thread_info *thread = inferior_thread ();
f7e6eed5 10697
799a2abe 10698 return (thread->priv != NULL
7aabaf9d
SM
10699 && (get_remote_thread_info (thread)->stop_reason
10700 == TARGET_STOPPED_BY_SW_BREAKPOINT));
f7e6eed5
PA
10701}
10702
10703/* The to_supports_stopped_by_sw_breakpoint method of target
10704 remote. */
10705
57810aa7 10706bool
f6ac5f3d 10707remote_target::supports_stopped_by_sw_breakpoint ()
f7e6eed5 10708{
f7e6eed5
PA
10709 return (packet_support (PACKET_swbreak_feature) == PACKET_ENABLE);
10710}
10711
10712/* The to_stopped_by_hw_breakpoint method of target remote. */
10713
57810aa7 10714bool
f6ac5f3d 10715remote_target::stopped_by_hw_breakpoint ()
f7e6eed5 10716{
799a2abe 10717 struct thread_info *thread = inferior_thread ();
f7e6eed5 10718
799a2abe 10719 return (thread->priv != NULL
7aabaf9d
SM
10720 && (get_remote_thread_info (thread)->stop_reason
10721 == TARGET_STOPPED_BY_HW_BREAKPOINT));
f7e6eed5
PA
10722}
10723
10724/* The to_supports_stopped_by_hw_breakpoint method of target
10725 remote. */
10726
57810aa7 10727bool
f6ac5f3d 10728remote_target::supports_stopped_by_hw_breakpoint ()
f7e6eed5 10729{
f7e6eed5
PA
10730 return (packet_support (PACKET_hwbreak_feature) == PACKET_ENABLE);
10731}
10732
57810aa7 10733bool
f6ac5f3d 10734remote_target::stopped_by_watchpoint ()
3c3bea1c 10735{
799a2abe 10736 struct thread_info *thread = inferior_thread ();
ee154bee 10737
799a2abe 10738 return (thread->priv != NULL
7aabaf9d
SM
10739 && (get_remote_thread_info (thread)->stop_reason
10740 == TARGET_STOPPED_BY_WATCHPOINT));
3c3bea1c
GS
10741}
10742
57810aa7 10743bool
f6ac5f3d 10744remote_target::stopped_data_address (CORE_ADDR *addr_p)
3c3bea1c 10745{
799a2abe 10746 struct thread_info *thread = inferior_thread ();
a744cf53 10747
799a2abe 10748 if (thread->priv != NULL
7aabaf9d
SM
10749 && (get_remote_thread_info (thread)->stop_reason
10750 == TARGET_STOPPED_BY_WATCHPOINT))
4aa7a7f5 10751 {
7aabaf9d 10752 *addr_p = get_remote_thread_info (thread)->watch_data_address;
57810aa7 10753 return true;
4aa7a7f5
JJ
10754 }
10755
57810aa7 10756 return false;
3c3bea1c
GS
10757}
10758
10759
f6ac5f3d
PA
10760int
10761remote_target::insert_hw_breakpoint (struct gdbarch *gdbarch,
10762 struct bp_target_info *bp_tgt)
3c3bea1c 10763{
0d5ed153 10764 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 10765 struct remote_state *rs;
bba74b36 10766 char *p, *endbuf;
dd61ec5c 10767 char *message;
3c3bea1c 10768
4082afcc 10769 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 10770 return -1;
2bc416ba 10771
28439a30
PA
10772 /* Make sure the remote is pointing at the right process, if
10773 necessary. */
10774 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10775 set_general_process ();
10776
4fff2411 10777 rs = get_remote_state ();
8d64371b
TT
10778 p = rs->buf.data ();
10779 endbuf = p + get_remote_packet_size ();
4fff2411 10780
96baa820
JM
10781 *(p++) = 'Z';
10782 *(p++) = '1';
10783 *(p++) = ',';
802188a7 10784
0d5ed153 10785 addr = remote_address_masked (addr);
96baa820 10786 p += hexnumstr (p, (ULONGEST) addr);
579c6ad9 10787 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
96baa820 10788
f6ac5f3d 10789 if (supports_evaluation_of_breakpoint_conditions ())
bba74b36 10790 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 10791
f6ac5f3d 10792 if (can_run_breakpoint_commands ())
d3ce09f5
SS
10793 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10794
6d820c5c 10795 putpkt (rs->buf);
8d64371b 10796 getpkt (&rs->buf, 0);
96baa820 10797
6d820c5c 10798 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
10799 {
10800 case PACKET_ERROR:
dd61ec5c 10801 if (rs->buf[1] == '.')
dda83cd7
SM
10802 {
10803 message = strchr (&rs->buf[2], '.');
10804 if (message)
10805 error (_("Remote failure reply: %s"), message + 1);
10806 }
dd61ec5c 10807 return -1;
d471ea57
AC
10808 case PACKET_UNKNOWN:
10809 return -1;
10810 case PACKET_OK:
10811 return 0;
10812 }
8e65ff28 10813 internal_error (__FILE__, __LINE__,
e2e0b3e5 10814 _("remote_insert_hw_breakpoint: reached end of function"));
96baa820
JM
10815}
10816
d471ea57 10817
f6ac5f3d
PA
10818int
10819remote_target::remove_hw_breakpoint (struct gdbarch *gdbarch,
10820 struct bp_target_info *bp_tgt)
96baa820 10821{
8181d85f 10822 CORE_ADDR addr;
d01949b6 10823 struct remote_state *rs = get_remote_state ();
8d64371b
TT
10824 char *p = rs->buf.data ();
10825 char *endbuf = p + get_remote_packet_size ();
c8189ed1 10826
4082afcc 10827 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 10828 return -1;
802188a7 10829
28439a30
PA
10830 /* Make sure the remote is pointing at the right process, if
10831 necessary. */
10832 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10833 set_general_process ();
10834
96baa820
JM
10835 *(p++) = 'z';
10836 *(p++) = '1';
10837 *(p++) = ',';
802188a7 10838
8181d85f 10839 addr = remote_address_masked (bp_tgt->placed_address);
96baa820 10840 p += hexnumstr (p, (ULONGEST) addr);
579c6ad9 10841 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
96baa820 10842
6d820c5c 10843 putpkt (rs->buf);
8d64371b 10844 getpkt (&rs->buf, 0);
802188a7 10845
6d820c5c 10846 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
10847 {
10848 case PACKET_ERROR:
10849 case PACKET_UNKNOWN:
10850 return -1;
10851 case PACKET_OK:
10852 return 0;
10853 }
8e65ff28 10854 internal_error (__FILE__, __LINE__,
e2e0b3e5 10855 _("remote_remove_hw_breakpoint: reached end of function"));
96baa820 10856}
96baa820 10857
4a5e7a5b
PA
10858/* Verify memory using the "qCRC:" request. */
10859
f6ac5f3d
PA
10860int
10861remote_target::verify_memory (const gdb_byte *data, CORE_ADDR lma, ULONGEST size)
4a5e7a5b
PA
10862{
10863 struct remote_state *rs = get_remote_state ();
10864 unsigned long host_crc, target_crc;
10865 char *tmp;
10866
936d2992
PA
10867 /* It doesn't make sense to use qCRC if the remote target is
10868 connected but not running. */
55f6301a
TT
10869 if (target_has_execution ()
10870 && packet_support (PACKET_qCRC) != PACKET_DISABLE)
936d2992
PA
10871 {
10872 enum packet_result result;
28439a30 10873
936d2992
PA
10874 /* Make sure the remote is pointing at the right process. */
10875 set_general_process ();
4a5e7a5b 10876
936d2992 10877 /* FIXME: assumes lma can fit into long. */
8d64371b 10878 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qCRC:%lx,%lx",
936d2992
PA
10879 (long) lma, (long) size);
10880 putpkt (rs->buf);
4a5e7a5b 10881
936d2992
PA
10882 /* Be clever; compute the host_crc before waiting for target
10883 reply. */
10884 host_crc = xcrc32 (data, size, 0xffffffff);
10885
8d64371b 10886 getpkt (&rs->buf, 0);
4a5e7a5b 10887
936d2992
PA
10888 result = packet_ok (rs->buf,
10889 &remote_protocol_packets[PACKET_qCRC]);
10890 if (result == PACKET_ERROR)
10891 return -1;
10892 else if (result == PACKET_OK)
10893 {
10894 for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
10895 target_crc = target_crc * 16 + fromhex (*tmp);
4a5e7a5b 10896
936d2992
PA
10897 return (host_crc == target_crc);
10898 }
10899 }
4a5e7a5b 10900
f6ac5f3d 10901 return simple_verify_memory (this, data, lma, size);
4a5e7a5b
PA
10902}
10903
c906108c
SS
10904/* compare-sections command
10905
10906 With no arguments, compares each loadable section in the exec bfd
10907 with the same memory range on the target, and reports mismatches.
4a5e7a5b 10908 Useful for verifying the image on the target against the exec file. */
e514a9d6 10909
c906108c 10910static void
ac88e2de 10911compare_sections_command (const char *args, int from_tty)
c906108c
SS
10912{
10913 asection *s;
ce359b09 10914 const char *sectname;
c906108c
SS
10915 bfd_size_type size;
10916 bfd_vma lma;
10917 int matched = 0;
10918 int mismatched = 0;
4a5e7a5b 10919 int res;
95cf3b38 10920 int read_only = 0;
c906108c 10921
7e10abd1 10922 if (!current_program_space->exec_bfd ())
8a3fe4f8 10923 error (_("command cannot be used without an exec file"));
c906108c 10924
95cf3b38
DT
10925 if (args != NULL && strcmp (args, "-r") == 0)
10926 {
10927 read_only = 1;
10928 args = NULL;
10929 }
10930
7e10abd1 10931 for (s = current_program_space->exec_bfd ()->sections; s; s = s->next)
c906108c
SS
10932 {
10933 if (!(s->flags & SEC_LOAD))
0df8b418 10934 continue; /* Skip non-loadable section. */
c906108c 10935
95cf3b38
DT
10936 if (read_only && (s->flags & SEC_READONLY) == 0)
10937 continue; /* Skip writeable sections */
10938
fd361982 10939 size = bfd_section_size (s);
c906108c 10940 if (size == 0)
0df8b418 10941 continue; /* Skip zero-length section. */
c906108c 10942
fd361982 10943 sectname = bfd_section_name (s);
c906108c 10944 if (args && strcmp (args, sectname) != 0)
0df8b418 10945 continue; /* Not the section selected by user. */
c906108c 10946
0df8b418 10947 matched = 1; /* Do this section. */
c906108c 10948 lma = s->lma;
c906108c 10949
b80406ac 10950 gdb::byte_vector sectdata (size);
7e10abd1
TT
10951 bfd_get_section_contents (current_program_space->exec_bfd (), s,
10952 sectdata.data (), 0, size);
c906108c 10953
b80406ac 10954 res = target_verify_memory (sectdata.data (), lma, size);
4a5e7a5b
PA
10955
10956 if (res == -1)
5af949e3 10957 error (_("target memory fault, section %s, range %s -- %s"), sectname,
f5656ead
TT
10958 paddress (target_gdbarch (), lma),
10959 paddress (target_gdbarch (), lma + size));
c906108c 10960
5af949e3 10961 printf_filtered ("Section %s, range %s -- %s: ", sectname,
f5656ead
TT
10962 paddress (target_gdbarch (), lma),
10963 paddress (target_gdbarch (), lma + size));
4a5e7a5b 10964 if (res)
c906108c
SS
10965 printf_filtered ("matched.\n");
10966 else
c5aa993b
JM
10967 {
10968 printf_filtered ("MIS-MATCHED!\n");
10969 mismatched++;
10970 }
c906108c
SS
10971 }
10972 if (mismatched > 0)
936d2992 10973 warning (_("One or more sections of the target image does not match\n\
8a3fe4f8 10974the loaded file\n"));
c906108c 10975 if (args && !matched)
a3f17187 10976 printf_filtered (_("No loaded section named '%s'.\n"), args);
c906108c
SS
10977}
10978
0e7f50da
UW
10979/* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
10980 into remote target. The number of bytes written to the remote
10981 target is returned, or -1 for error. */
10982
6b8edb51
PA
10983target_xfer_status
10984remote_target::remote_write_qxfer (const char *object_name,
10985 const char *annex, const gdb_byte *writebuf,
10986 ULONGEST offset, LONGEST len,
10987 ULONGEST *xfered_len,
10988 struct packet_config *packet)
0e7f50da
UW
10989{
10990 int i, buf_len;
10991 ULONGEST n;
0e7f50da
UW
10992 struct remote_state *rs = get_remote_state ();
10993 int max_size = get_memory_write_packet_size ();
10994
7cc244de 10995 if (packet_config_support (packet) == PACKET_DISABLE)
2ed4b548 10996 return TARGET_XFER_E_IO;
0e7f50da
UW
10997
10998 /* Insert header. */
8d64371b 10999 i = snprintf (rs->buf.data (), max_size,
0e7f50da
UW
11000 "qXfer:%s:write:%s:%s:",
11001 object_name, annex ? annex : "",
11002 phex_nz (offset, sizeof offset));
11003 max_size -= (i + 1);
11004
11005 /* Escape as much data as fits into rs->buf. */
11006 buf_len = remote_escape_output
8d64371b 11007 (writebuf, len, 1, (gdb_byte *) rs->buf.data () + i, &max_size, max_size);
0e7f50da 11008
8d64371b
TT
11009 if (putpkt_binary (rs->buf.data (), i + buf_len) < 0
11010 || getpkt_sane (&rs->buf, 0) < 0
0e7f50da 11011 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 11012 return TARGET_XFER_E_IO;
0e7f50da 11013
8d64371b 11014 unpack_varlen_hex (rs->buf.data (), &n);
9b409511
YQ
11015
11016 *xfered_len = n;
92ffd475 11017 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
0e7f50da
UW
11018}
11019
0876f84a
DJ
11020/* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
11021 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
11022 number of bytes read is returned, or 0 for EOF, or -1 for error.
11023 The number of bytes read may be less than LEN without indicating an
11024 EOF. PACKET is checked and updated to indicate whether the remote
11025 target supports this object. */
11026
6b8edb51
PA
11027target_xfer_status
11028remote_target::remote_read_qxfer (const char *object_name,
11029 const char *annex,
11030 gdb_byte *readbuf, ULONGEST offset,
11031 LONGEST len,
11032 ULONGEST *xfered_len,
11033 struct packet_config *packet)
0876f84a 11034{
0876f84a 11035 struct remote_state *rs = get_remote_state ();
0876f84a
DJ
11036 LONGEST i, n, packet_len;
11037
7cc244de 11038 if (packet_config_support (packet) == PACKET_DISABLE)
2ed4b548 11039 return TARGET_XFER_E_IO;
0876f84a
DJ
11040
11041 /* Check whether we've cached an end-of-object packet that matches
11042 this request. */
8e88304f 11043 if (rs->finished_object)
0876f84a 11044 {
8e88304f
TT
11045 if (strcmp (object_name, rs->finished_object) == 0
11046 && strcmp (annex ? annex : "", rs->finished_annex) == 0
11047 && offset == rs->finished_offset)
9b409511
YQ
11048 return TARGET_XFER_EOF;
11049
0876f84a
DJ
11050
11051 /* Otherwise, we're now reading something different. Discard
11052 the cache. */
8e88304f
TT
11053 xfree (rs->finished_object);
11054 xfree (rs->finished_annex);
11055 rs->finished_object = NULL;
11056 rs->finished_annex = NULL;
0876f84a
DJ
11057 }
11058
11059 /* Request only enough to fit in a single packet. The actual data
11060 may not, since we don't know how much of it will need to be escaped;
11061 the target is free to respond with slightly less data. We subtract
11062 five to account for the response type and the protocol frame. */
768adc05 11063 n = std::min<LONGEST> (get_remote_packet_size () - 5, len);
8d64371b
TT
11064 snprintf (rs->buf.data (), get_remote_packet_size () - 4,
11065 "qXfer:%s:read:%s:%s,%s",
0876f84a
DJ
11066 object_name, annex ? annex : "",
11067 phex_nz (offset, sizeof offset),
11068 phex_nz (n, sizeof n));
11069 i = putpkt (rs->buf);
11070 if (i < 0)
2ed4b548 11071 return TARGET_XFER_E_IO;
0876f84a
DJ
11072
11073 rs->buf[0] = '\0';
8d64371b 11074 packet_len = getpkt_sane (&rs->buf, 0);
0876f84a 11075 if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 11076 return TARGET_XFER_E_IO;
0876f84a
DJ
11077
11078 if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
8d64371b 11079 error (_("Unknown remote qXfer reply: %s"), rs->buf.data ());
0876f84a
DJ
11080
11081 /* 'm' means there is (or at least might be) more data after this
11082 batch. That does not make sense unless there's at least one byte
11083 of data in this reply. */
11084 if (rs->buf[0] == 'm' && packet_len == 1)
11085 error (_("Remote qXfer reply contained no data."));
11086
11087 /* Got some data. */
8d64371b 11088 i = remote_unescape_input ((gdb_byte *) rs->buf.data () + 1,
bc20a4af 11089 packet_len - 1, readbuf, n);
0876f84a
DJ
11090
11091 /* 'l' is an EOF marker, possibly including a final block of data,
0e7f50da
UW
11092 or possibly empty. If we have the final block of a non-empty
11093 object, record this fact to bypass a subsequent partial read. */
11094 if (rs->buf[0] == 'l' && offset + i > 0)
0876f84a 11095 {
8e88304f
TT
11096 rs->finished_object = xstrdup (object_name);
11097 rs->finished_annex = xstrdup (annex ? annex : "");
11098 rs->finished_offset = offset + i;
0876f84a
DJ
11099 }
11100
9b409511
YQ
11101 if (i == 0)
11102 return TARGET_XFER_EOF;
11103 else
11104 {
11105 *xfered_len = i;
11106 return TARGET_XFER_OK;
11107 }
0876f84a
DJ
11108}
11109
f6ac5f3d
PA
11110enum target_xfer_status
11111remote_target::xfer_partial (enum target_object object,
11112 const char *annex, gdb_byte *readbuf,
11113 const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
11114 ULONGEST *xfered_len)
c906108c 11115{
82f73884 11116 struct remote_state *rs;
c906108c 11117 int i;
6d820c5c 11118 char *p2;
1e3ff5ad 11119 char query_type;
124e13d9 11120 int unit_size = gdbarch_addressable_memory_unit_size (target_gdbarch ());
c906108c 11121
e6e4e701 11122 set_remote_traceframe ();
82f73884
PA
11123 set_general_thread (inferior_ptid);
11124
11125 rs = get_remote_state ();
11126
b2182ed2 11127 /* Handle memory using the standard memory routines. */
21e3b9b9
DJ
11128 if (object == TARGET_OBJECT_MEMORY)
11129 {
2d717e4f
DJ
11130 /* If the remote target is connected but not running, we should
11131 pass this request down to a lower stratum (e.g. the executable
11132 file). */
55f6301a 11133 if (!target_has_execution ())
9b409511 11134 return TARGET_XFER_EOF;
2d717e4f 11135
21e3b9b9 11136 if (writebuf != NULL)
124e13d9
SM
11137 return remote_write_bytes (offset, writebuf, len, unit_size,
11138 xfered_len);
21e3b9b9 11139 else
6b8edb51 11140 return remote_read_bytes (offset, readbuf, len, unit_size,
124e13d9 11141 xfered_len);
21e3b9b9
DJ
11142 }
11143
4aa995e1
PA
11144 /* Handle extra signal info using qxfer packets. */
11145 if (object == TARGET_OBJECT_SIGNAL_INFO)
11146 {
11147 if (readbuf)
f6ac5f3d 11148 return remote_read_qxfer ("siginfo", annex, readbuf, offset, len,
9b409511 11149 xfered_len, &remote_protocol_packets
4aa995e1
PA
11150 [PACKET_qXfer_siginfo_read]);
11151 else
f6ac5f3d 11152 return remote_write_qxfer ("siginfo", annex,
9b409511 11153 writebuf, offset, len, xfered_len,
4aa995e1
PA
11154 &remote_protocol_packets
11155 [PACKET_qXfer_siginfo_write]);
11156 }
11157
0fb4aa4b
PA
11158 if (object == TARGET_OBJECT_STATIC_TRACE_DATA)
11159 {
11160 if (readbuf)
f6ac5f3d 11161 return remote_read_qxfer ("statictrace", annex,
9b409511 11162 readbuf, offset, len, xfered_len,
0fb4aa4b
PA
11163 &remote_protocol_packets
11164 [PACKET_qXfer_statictrace_read]);
11165 else
2ed4b548 11166 return TARGET_XFER_E_IO;
0fb4aa4b
PA
11167 }
11168
a76d924d
DJ
11169 /* Only handle flash writes. */
11170 if (writebuf != NULL)
11171 {
a76d924d
DJ
11172 switch (object)
11173 {
11174 case TARGET_OBJECT_FLASH:
6b8edb51 11175 return remote_flash_write (offset, len, xfered_len,
9b409511 11176 writebuf);
a76d924d
DJ
11177
11178 default:
2ed4b548 11179 return TARGET_XFER_E_IO;
a76d924d
DJ
11180 }
11181 }
4b8a223f 11182
1e3ff5ad
AC
11183 /* Map pre-existing objects onto letters. DO NOT do this for new
11184 objects!!! Instead specify new query packets. */
11185 switch (object)
c906108c 11186 {
1e3ff5ad
AC
11187 case TARGET_OBJECT_AVR:
11188 query_type = 'R';
11189 break;
802188a7
RM
11190
11191 case TARGET_OBJECT_AUXV:
0876f84a 11192 gdb_assert (annex == NULL);
f6ac5f3d 11193 return remote_read_qxfer ("auxv", annex, readbuf, offset, len,
9b409511 11194 xfered_len,
0876f84a 11195 &remote_protocol_packets[PACKET_qXfer_auxv]);
802188a7 11196
23181151
DJ
11197 case TARGET_OBJECT_AVAILABLE_FEATURES:
11198 return remote_read_qxfer
f6ac5f3d 11199 ("features", annex, readbuf, offset, len, xfered_len,
23181151
DJ
11200 &remote_protocol_packets[PACKET_qXfer_features]);
11201
cfa9d6d9
DJ
11202 case TARGET_OBJECT_LIBRARIES:
11203 return remote_read_qxfer
f6ac5f3d 11204 ("libraries", annex, readbuf, offset, len, xfered_len,
cfa9d6d9
DJ
11205 &remote_protocol_packets[PACKET_qXfer_libraries]);
11206
2268b414
JK
11207 case TARGET_OBJECT_LIBRARIES_SVR4:
11208 return remote_read_qxfer
f6ac5f3d 11209 ("libraries-svr4", annex, readbuf, offset, len, xfered_len,
2268b414
JK
11210 &remote_protocol_packets[PACKET_qXfer_libraries_svr4]);
11211
fd79ecee
DJ
11212 case TARGET_OBJECT_MEMORY_MAP:
11213 gdb_assert (annex == NULL);
f6ac5f3d 11214 return remote_read_qxfer ("memory-map", annex, readbuf, offset, len,
9b409511 11215 xfered_len,
fd79ecee
DJ
11216 &remote_protocol_packets[PACKET_qXfer_memory_map]);
11217
07e059b5
VP
11218 case TARGET_OBJECT_OSDATA:
11219 /* Should only get here if we're connected. */
5d93a237 11220 gdb_assert (rs->remote_desc);
07e059b5 11221 return remote_read_qxfer
f6ac5f3d 11222 ("osdata", annex, readbuf, offset, len, xfered_len,
dda83cd7 11223 &remote_protocol_packets[PACKET_qXfer_osdata]);
07e059b5 11224
dc146f7c
VP
11225 case TARGET_OBJECT_THREADS:
11226 gdb_assert (annex == NULL);
f6ac5f3d 11227 return remote_read_qxfer ("threads", annex, readbuf, offset, len,
9b409511 11228 xfered_len,
dc146f7c
VP
11229 &remote_protocol_packets[PACKET_qXfer_threads]);
11230
b3b9301e
PA
11231 case TARGET_OBJECT_TRACEFRAME_INFO:
11232 gdb_assert (annex == NULL);
11233 return remote_read_qxfer
f6ac5f3d 11234 ("traceframe-info", annex, readbuf, offset, len, xfered_len,
b3b9301e 11235 &remote_protocol_packets[PACKET_qXfer_traceframe_info]);
78d85199
YQ
11236
11237 case TARGET_OBJECT_FDPIC:
f6ac5f3d 11238 return remote_read_qxfer ("fdpic", annex, readbuf, offset, len,
9b409511 11239 xfered_len,
78d85199 11240 &remote_protocol_packets[PACKET_qXfer_fdpic]);
169081d0
TG
11241
11242 case TARGET_OBJECT_OPENVMS_UIB:
f6ac5f3d 11243 return remote_read_qxfer ("uib", annex, readbuf, offset, len,
9b409511 11244 xfered_len,
169081d0
TG
11245 &remote_protocol_packets[PACKET_qXfer_uib]);
11246
9accd112 11247 case TARGET_OBJECT_BTRACE:
f6ac5f3d 11248 return remote_read_qxfer ("btrace", annex, readbuf, offset, len,
9b409511 11249 xfered_len,
dda83cd7 11250 &remote_protocol_packets[PACKET_qXfer_btrace]);
9accd112 11251
f4abbc16 11252 case TARGET_OBJECT_BTRACE_CONF:
f6ac5f3d 11253 return remote_read_qxfer ("btrace-conf", annex, readbuf, offset,
f4abbc16
MM
11254 len, xfered_len,
11255 &remote_protocol_packets[PACKET_qXfer_btrace_conf]);
11256
c78fa86a 11257 case TARGET_OBJECT_EXEC_FILE:
f6ac5f3d 11258 return remote_read_qxfer ("exec-file", annex, readbuf, offset,
c78fa86a
GB
11259 len, xfered_len,
11260 &remote_protocol_packets[PACKET_qXfer_exec_file]);
11261
1e3ff5ad 11262 default:
2ed4b548 11263 return TARGET_XFER_E_IO;
c906108c
SS
11264 }
11265
0df8b418 11266 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
24b06219 11267 large enough let the caller deal with it. */
ea9c271d 11268 if (len < get_remote_packet_size ())
2ed4b548 11269 return TARGET_XFER_E_IO;
ea9c271d 11270 len = get_remote_packet_size ();
1e3ff5ad 11271
23860348 11272 /* Except for querying the minimum buffer size, target must be open. */
5d93a237 11273 if (!rs->remote_desc)
8a3fe4f8 11274 error (_("remote query is only available after target open"));
c906108c 11275
1e3ff5ad 11276 gdb_assert (annex != NULL);
4b8a223f 11277 gdb_assert (readbuf != NULL);
c906108c 11278
8d64371b 11279 p2 = rs->buf.data ();
c906108c
SS
11280 *p2++ = 'q';
11281 *p2++ = query_type;
11282
23860348
MS
11283 /* We used one buffer char for the remote protocol q command and
11284 another for the query type. As the remote protocol encapsulation
11285 uses 4 chars plus one extra in case we are debugging
11286 (remote_debug), we have PBUFZIZ - 7 left to pack the query
11287 string. */
c906108c 11288 i = 0;
ea9c271d 11289 while (annex[i] && (i < (get_remote_packet_size () - 8)))
c906108c 11290 {
1e3ff5ad
AC
11291 /* Bad caller may have sent forbidden characters. */
11292 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
11293 *p2++ = annex[i];
c906108c
SS
11294 i++;
11295 }
1e3ff5ad
AC
11296 *p2 = '\0';
11297 gdb_assert (annex[i] == '\0');
c906108c 11298
6d820c5c 11299 i = putpkt (rs->buf);
c5aa993b 11300 if (i < 0)
2ed4b548 11301 return TARGET_XFER_E_IO;
c906108c 11302
8d64371b
TT
11303 getpkt (&rs->buf, 0);
11304 strcpy ((char *) readbuf, rs->buf.data ());
c906108c 11305
9b409511 11306 *xfered_len = strlen ((char *) readbuf);
92ffd475 11307 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
c906108c
SS
11308}
11309
09c98b44
DB
11310/* Implementation of to_get_memory_xfer_limit. */
11311
f6ac5f3d
PA
11312ULONGEST
11313remote_target::get_memory_xfer_limit ()
09c98b44
DB
11314{
11315 return get_memory_write_packet_size ();
11316}
11317
f6ac5f3d
PA
11318int
11319remote_target::search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
11320 const gdb_byte *pattern, ULONGEST pattern_len,
11321 CORE_ADDR *found_addrp)
08388c79 11322{
f5656ead 11323 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
08388c79
DE
11324 struct remote_state *rs = get_remote_state ();
11325 int max_size = get_memory_write_packet_size ();
11326 struct packet_config *packet =
11327 &remote_protocol_packets[PACKET_qSearch_memory];
0df8b418
MS
11328 /* Number of packet bytes used to encode the pattern;
11329 this could be more than PATTERN_LEN due to escape characters. */
08388c79 11330 int escaped_pattern_len;
0df8b418 11331 /* Amount of pattern that was encodable in the packet. */
08388c79
DE
11332 int used_pattern_len;
11333 int i;
11334 int found;
11335 ULONGEST found_addr;
11336
4a72de73
TT
11337 auto read_memory = [=] (CORE_ADDR addr, gdb_byte *result, size_t len)
11338 {
11339 return (target_read (this, TARGET_OBJECT_MEMORY, NULL, result, addr, len)
11340 == len);
11341 };
11342
7cc244de
PA
11343 /* Don't go to the target if we don't have to. This is done before
11344 checking packet_config_support to avoid the possibility that a
11345 success for this edge case means the facility works in
11346 general. */
08388c79
DE
11347 if (pattern_len > search_space_len)
11348 return 0;
11349 if (pattern_len == 0)
11350 {
11351 *found_addrp = start_addr;
11352 return 1;
11353 }
11354
11355 /* If we already know the packet isn't supported, fall back to the simple
11356 way of searching memory. */
11357
4082afcc 11358 if (packet_config_support (packet) == PACKET_DISABLE)
08388c79
DE
11359 {
11360 /* Target doesn't provided special support, fall back and use the
11361 standard support (copy memory and do the search here). */
4a72de73 11362 return simple_search_memory (read_memory, start_addr, search_space_len,
08388c79
DE
11363 pattern, pattern_len, found_addrp);
11364 }
11365
28439a30
PA
11366 /* Make sure the remote is pointing at the right process. */
11367 set_general_process ();
11368
08388c79 11369 /* Insert header. */
8d64371b 11370 i = snprintf (rs->buf.data (), max_size,
08388c79 11371 "qSearch:memory:%s;%s;",
5af949e3 11372 phex_nz (start_addr, addr_size),
08388c79
DE
11373 phex_nz (search_space_len, sizeof (search_space_len)));
11374 max_size -= (i + 1);
11375
11376 /* Escape as much data as fits into rs->buf. */
11377 escaped_pattern_len =
8d64371b
TT
11378 remote_escape_output (pattern, pattern_len, 1,
11379 (gdb_byte *) rs->buf.data () + i,
08388c79
DE
11380 &used_pattern_len, max_size);
11381
11382 /* Bail if the pattern is too large. */
11383 if (used_pattern_len != pattern_len)
9b20d036 11384 error (_("Pattern is too large to transmit to remote target."));
08388c79 11385
8d64371b
TT
11386 if (putpkt_binary (rs->buf.data (), i + escaped_pattern_len) < 0
11387 || getpkt_sane (&rs->buf, 0) < 0
08388c79
DE
11388 || packet_ok (rs->buf, packet) != PACKET_OK)
11389 {
11390 /* The request may not have worked because the command is not
11391 supported. If so, fall back to the simple way. */
7cc244de 11392 if (packet_config_support (packet) == PACKET_DISABLE)
08388c79 11393 {
4a72de73 11394 return simple_search_memory (read_memory, start_addr, search_space_len,
08388c79
DE
11395 pattern, pattern_len, found_addrp);
11396 }
11397 return -1;
11398 }
11399
11400 if (rs->buf[0] == '0')
11401 found = 0;
11402 else if (rs->buf[0] == '1')
11403 {
11404 found = 1;
11405 if (rs->buf[1] != ',')
8d64371b
TT
11406 error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ());
11407 unpack_varlen_hex (&rs->buf[2], &found_addr);
08388c79
DE
11408 *found_addrp = found_addr;
11409 }
11410 else
8d64371b 11411 error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ());
08388c79
DE
11412
11413 return found;
11414}
11415
f6ac5f3d
PA
11416void
11417remote_target::rcmd (const char *command, struct ui_file *outbuf)
96baa820 11418{
d01949b6 11419 struct remote_state *rs = get_remote_state ();
8d64371b 11420 char *p = rs->buf.data ();
96baa820 11421
5d93a237 11422 if (!rs->remote_desc)
8a3fe4f8 11423 error (_("remote rcmd is only available after target open"));
96baa820 11424
23860348 11425 /* Send a NULL command across as an empty command. */
7be570e7
JM
11426 if (command == NULL)
11427 command = "";
11428
23860348 11429 /* The query prefix. */
8d64371b
TT
11430 strcpy (rs->buf.data (), "qRcmd,");
11431 p = strchr (rs->buf.data (), '\0');
96baa820 11432
8d64371b 11433 if ((strlen (rs->buf.data ()) + strlen (command) * 2 + 8/*misc*/)
3e43a32a 11434 > get_remote_packet_size ())
8a3fe4f8 11435 error (_("\"monitor\" command ``%s'' is too long."), command);
96baa820 11436
23860348 11437 /* Encode the actual command. */
a30bf1f1 11438 bin2hex ((const gdb_byte *) command, p, strlen (command));
96baa820 11439
6d820c5c 11440 if (putpkt (rs->buf) < 0)
8a3fe4f8 11441 error (_("Communication problem with target."));
96baa820
JM
11442
11443 /* get/display the response */
11444 while (1)
11445 {
2e9f7625
DJ
11446 char *buf;
11447
00bf0b85 11448 /* XXX - see also remote_get_noisy_reply(). */
5b37825d 11449 QUIT; /* Allow user to bail out with ^C. */
2e9f7625 11450 rs->buf[0] = '\0';
8d64371b 11451 if (getpkt_sane (&rs->buf, 0) == -1)
dda83cd7
SM
11452 {
11453 /* Timeout. Continue to (try to) read responses.
11454 This is better than stopping with an error, assuming the stub
11455 is still executing the (long) monitor command.
11456 If needed, the user can interrupt gdb using C-c, obtaining
11457 an effect similar to stop on timeout. */
11458 continue;
11459 }
8d64371b 11460 buf = rs->buf.data ();
96baa820 11461 if (buf[0] == '\0')
8a3fe4f8 11462 error (_("Target does not support this command."));
96baa820
JM
11463 if (buf[0] == 'O' && buf[1] != 'K')
11464 {
23860348 11465 remote_console_output (buf + 1); /* 'O' message from stub. */
96baa820
JM
11466 continue;
11467 }
11468 if (strcmp (buf, "OK") == 0)
11469 break;
7be570e7
JM
11470 if (strlen (buf) == 3 && buf[0] == 'E'
11471 && isdigit (buf[1]) && isdigit (buf[2]))
11472 {
8a3fe4f8 11473 error (_("Protocol error with Rcmd"));
7be570e7 11474 }
96baa820
JM
11475 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
11476 {
11477 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
a744cf53 11478
96baa820
JM
11479 fputc_unfiltered (c, outbuf);
11480 }
11481 break;
11482 }
11483}
11484
f6ac5f3d
PA
11485std::vector<mem_region>
11486remote_target::memory_map ()
fd79ecee 11487{
a664f67e 11488 std::vector<mem_region> result;
9018be22 11489 gdb::optional<gdb::char_vector> text
8b88a78e 11490 = target_read_stralloc (current_top_target (), TARGET_OBJECT_MEMORY_MAP, NULL);
fd79ecee
DJ
11491
11492 if (text)
9018be22 11493 result = parse_memory_map (text->data ());
fd79ecee
DJ
11494
11495 return result;
11496}
11497
c906108c 11498static void
ac88e2de 11499packet_command (const char *args, int from_tty)
c906108c 11500{
6b8edb51 11501 remote_target *remote = get_current_remote_target ();
c906108c 11502
6b8edb51 11503 if (remote == nullptr)
8a3fe4f8 11504 error (_("command can only be used with remote target"));
c906108c 11505
6b8edb51
PA
11506 remote->packet_command (args, from_tty);
11507}
11508
11509void
11510remote_target::packet_command (const char *args, int from_tty)
11511{
c5aa993b 11512 if (!args)
8a3fe4f8 11513 error (_("remote-packet command requires packet text as argument"));
c906108c
SS
11514
11515 puts_filtered ("sending: ");
11516 print_packet (args);
11517 puts_filtered ("\n");
11518 putpkt (args);
11519
6b8edb51
PA
11520 remote_state *rs = get_remote_state ();
11521
8d64371b 11522 getpkt (&rs->buf, 0);
c906108c 11523 puts_filtered ("received: ");
8d64371b 11524 print_packet (rs->buf.data ());
c906108c
SS
11525 puts_filtered ("\n");
11526}
11527
11528#if 0
23860348 11529/* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
c906108c 11530
a14ed312 11531static void display_thread_info (struct gdb_ext_thread_info *info);
c906108c 11532
a14ed312 11533static void threadset_test_cmd (char *cmd, int tty);
c906108c 11534
a14ed312 11535static void threadalive_test (char *cmd, int tty);
c906108c 11536
a14ed312 11537static void threadlist_test_cmd (char *cmd, int tty);
c906108c 11538
23860348 11539int get_and_display_threadinfo (threadref *ref);
c906108c 11540
a14ed312 11541static void threadinfo_test_cmd (char *cmd, int tty);
c906108c 11542
23860348 11543static int thread_display_step (threadref *ref, void *context);
c906108c 11544
a14ed312 11545static void threadlist_update_test_cmd (char *cmd, int tty);
c906108c 11546
a14ed312 11547static void init_remote_threadtests (void);
c906108c 11548
23860348 11549#define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
c906108c
SS
11550
11551static void
0b39b52e 11552threadset_test_cmd (const char *cmd, int tty)
c906108c
SS
11553{
11554 int sample_thread = SAMPLE_THREAD;
11555
a3f17187 11556 printf_filtered (_("Remote threadset test\n"));
79d7f229 11557 set_general_thread (sample_thread);
c906108c
SS
11558}
11559
11560
11561static void
0b39b52e 11562threadalive_test (const char *cmd, int tty)
c906108c
SS
11563{
11564 int sample_thread = SAMPLE_THREAD;
e99b03dc 11565 int pid = inferior_ptid.pid ();
fd79271b 11566 ptid_t ptid = ptid_t (pid, sample_thread, 0);
c906108c 11567
79d7f229 11568 if (remote_thread_alive (ptid))
c906108c
SS
11569 printf_filtered ("PASS: Thread alive test\n");
11570 else
11571 printf_filtered ("FAIL: Thread alive test\n");
11572}
11573
23860348 11574void output_threadid (char *title, threadref *ref);
c906108c
SS
11575
11576void
fba45db2 11577output_threadid (char *title, threadref *ref)
c906108c
SS
11578{
11579 char hexid[20];
11580
405feb71 11581 pack_threadid (&hexid[0], ref); /* Convert thread id into hex. */
c906108c
SS
11582 hexid[16] = 0;
11583 printf_filtered ("%s %s\n", title, (&hexid[0]));
11584}
11585
11586static void
0b39b52e 11587threadlist_test_cmd (const char *cmd, int tty)
c906108c
SS
11588{
11589 int startflag = 1;
11590 threadref nextthread;
11591 int done, result_count;
11592 threadref threadlist[3];
11593
11594 printf_filtered ("Remote Threadlist test\n");
11595 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
11596 &result_count, &threadlist[0]))
11597 printf_filtered ("FAIL: threadlist test\n");
11598 else
11599 {
11600 threadref *scan = threadlist;
11601 threadref *limit = scan + result_count;
11602
11603 while (scan < limit)
11604 output_threadid (" thread ", scan++);
11605 }
11606}
11607
11608void
fba45db2 11609display_thread_info (struct gdb_ext_thread_info *info)
c906108c
SS
11610{
11611 output_threadid ("Threadid: ", &info->threadid);
11612 printf_filtered ("Name: %s\n ", info->shortname);
11613 printf_filtered ("State: %s\n", info->display);
11614 printf_filtered ("other: %s\n\n", info->more_display);
11615}
11616
11617int
fba45db2 11618get_and_display_threadinfo (threadref *ref)
c906108c
SS
11619{
11620 int result;
11621 int set;
11622 struct gdb_ext_thread_info threadinfo;
11623
11624 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
11625 | TAG_MOREDISPLAY | TAG_DISPLAY;
11626 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
11627 display_thread_info (&threadinfo);
11628 return result;
11629}
11630
11631static void
0b39b52e 11632threadinfo_test_cmd (const char *cmd, int tty)
c906108c
SS
11633{
11634 int athread = SAMPLE_THREAD;
11635 threadref thread;
11636 int set;
11637
11638 int_to_threadref (&thread, athread);
11639 printf_filtered ("Remote Threadinfo test\n");
11640 if (!get_and_display_threadinfo (&thread))
11641 printf_filtered ("FAIL cannot get thread info\n");
11642}
11643
11644static int
fba45db2 11645thread_display_step (threadref *ref, void *context)
c906108c
SS
11646{
11647 /* output_threadid(" threadstep ",ref); *//* simple test */
11648 return get_and_display_threadinfo (ref);
11649}
11650
11651static void
0b39b52e 11652threadlist_update_test_cmd (const char *cmd, int tty)
c906108c
SS
11653{
11654 printf_filtered ("Remote Threadlist update test\n");
11655 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
11656}
11657
11658static void
11659init_remote_threadtests (void)
11660{
3e43a32a
MS
11661 add_com ("tlist", class_obscure, threadlist_test_cmd,
11662 _("Fetch and print the remote list of "
590042fc 11663 "thread identifiers, one pkt only."));
c906108c 11664 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
590042fc 11665 _("Fetch and display info about one thread."));
c906108c 11666 add_com ("tset", class_obscure, threadset_test_cmd,
590042fc 11667 _("Test setting to a different thread."));
c906108c 11668 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
590042fc 11669 _("Iterate through updating all remote thread info."));
c906108c 11670 add_com ("talive", class_obscure, threadalive_test,
590042fc 11671 _("Remote thread alive test."));
c906108c
SS
11672}
11673
11674#endif /* 0 */
11675
a068643d 11676/* Convert a thread ID to a string. */
f3fb8c85 11677
a068643d 11678std::string
f6ac5f3d 11679remote_target::pid_to_str (ptid_t ptid)
f3fb8c85 11680{
82f73884 11681 struct remote_state *rs = get_remote_state ();
f3fb8c85 11682
d7e15655 11683 if (ptid == null_ptid)
7cee1e54 11684 return normal_pid_to_str (ptid);
0e998d96 11685 else if (ptid.is_pid ())
ecd0ada5
PA
11686 {
11687 /* Printing an inferior target id. */
11688
11689 /* When multi-process extensions are off, there's no way in the
11690 remote protocol to know the remote process id, if there's any
11691 at all. There's one exception --- when we're connected with
11692 target extended-remote, and we manually attached to a process
11693 with "attach PID". We don't record anywhere a flag that
11694 allows us to distinguish that case from the case of
11695 connecting with extended-remote and the stub already being
11696 attached to a process, and reporting yes to qAttached, hence
11697 no smart special casing here. */
11698 if (!remote_multi_process_p (rs))
a068643d 11699 return "Remote target";
ecd0ada5
PA
11700
11701 return normal_pid_to_str (ptid);
82f73884 11702 }
ecd0ada5 11703 else
79d7f229 11704 {
d7e15655 11705 if (magic_null_ptid == ptid)
a068643d 11706 return "Thread <main>";
8020350c 11707 else if (remote_multi_process_p (rs))
e38504b3 11708 if (ptid.lwp () == 0)
de0d863e
DB
11709 return normal_pid_to_str (ptid);
11710 else
a068643d
TT
11711 return string_printf ("Thread %d.%ld",
11712 ptid.pid (), ptid.lwp ());
ecd0ada5 11713 else
a068643d 11714 return string_printf ("Thread %ld", ptid.lwp ());
79d7f229 11715 }
f3fb8c85
MS
11716}
11717
38691318
KB
11718/* Get the address of the thread local variable in OBJFILE which is
11719 stored at OFFSET within the thread local storage for thread PTID. */
11720
f6ac5f3d
PA
11721CORE_ADDR
11722remote_target::get_thread_local_address (ptid_t ptid, CORE_ADDR lm,
11723 CORE_ADDR offset)
38691318 11724{
4082afcc 11725 if (packet_support (PACKET_qGetTLSAddr) != PACKET_DISABLE)
38691318
KB
11726 {
11727 struct remote_state *rs = get_remote_state ();
8d64371b
TT
11728 char *p = rs->buf.data ();
11729 char *endp = p + get_remote_packet_size ();
571dd617 11730 enum packet_result result;
38691318
KB
11731
11732 strcpy (p, "qGetTLSAddr:");
11733 p += strlen (p);
82f73884 11734 p = write_ptid (p, endp, ptid);
38691318
KB
11735 *p++ = ',';
11736 p += hexnumstr (p, offset);
11737 *p++ = ',';
11738 p += hexnumstr (p, lm);
11739 *p++ = '\0';
11740
6d820c5c 11741 putpkt (rs->buf);
8d64371b 11742 getpkt (&rs->buf, 0);
3e43a32a
MS
11743 result = packet_ok (rs->buf,
11744 &remote_protocol_packets[PACKET_qGetTLSAddr]);
571dd617 11745 if (result == PACKET_OK)
38691318 11746 {
b926417a 11747 ULONGEST addr;
38691318 11748
8d64371b 11749 unpack_varlen_hex (rs->buf.data (), &addr);
b926417a 11750 return addr;
38691318 11751 }
571dd617 11752 else if (result == PACKET_UNKNOWN)
109c3e39
AC
11753 throw_error (TLS_GENERIC_ERROR,
11754 _("Remote target doesn't support qGetTLSAddr packet"));
38691318 11755 else
109c3e39
AC
11756 throw_error (TLS_GENERIC_ERROR,
11757 _("Remote target failed to process qGetTLSAddr request"));
38691318
KB
11758 }
11759 else
109c3e39
AC
11760 throw_error (TLS_GENERIC_ERROR,
11761 _("TLS not supported or disabled on this target"));
38691318
KB
11762 /* Not reached. */
11763 return 0;
11764}
11765
711e434b
PM
11766/* Provide thread local base, i.e. Thread Information Block address.
11767 Returns 1 if ptid is found and thread_local_base is non zero. */
11768
57810aa7 11769bool
f6ac5f3d 11770remote_target::get_tib_address (ptid_t ptid, CORE_ADDR *addr)
711e434b 11771{
4082afcc 11772 if (packet_support (PACKET_qGetTIBAddr) != PACKET_DISABLE)
711e434b
PM
11773 {
11774 struct remote_state *rs = get_remote_state ();
8d64371b
TT
11775 char *p = rs->buf.data ();
11776 char *endp = p + get_remote_packet_size ();
711e434b
PM
11777 enum packet_result result;
11778
11779 strcpy (p, "qGetTIBAddr:");
11780 p += strlen (p);
11781 p = write_ptid (p, endp, ptid);
11782 *p++ = '\0';
11783
11784 putpkt (rs->buf);
8d64371b 11785 getpkt (&rs->buf, 0);
711e434b
PM
11786 result = packet_ok (rs->buf,
11787 &remote_protocol_packets[PACKET_qGetTIBAddr]);
11788 if (result == PACKET_OK)
11789 {
b926417a 11790 ULONGEST val;
8d64371b 11791 unpack_varlen_hex (rs->buf.data (), &val);
711e434b 11792 if (addr)
b926417a 11793 *addr = (CORE_ADDR) val;
57810aa7 11794 return true;
711e434b
PM
11795 }
11796 else if (result == PACKET_UNKNOWN)
11797 error (_("Remote target doesn't support qGetTIBAddr packet"));
11798 else
11799 error (_("Remote target failed to process qGetTIBAddr request"));
11800 }
11801 else
11802 error (_("qGetTIBAddr not supported or disabled on this target"));
11803 /* Not reached. */
57810aa7 11804 return false;
711e434b
PM
11805}
11806
29709017
DJ
11807/* Support for inferring a target description based on the current
11808 architecture and the size of a 'g' packet. While the 'g' packet
11809 can have any size (since optional registers can be left off the
11810 end), some sizes are easily recognizable given knowledge of the
11811 approximate architecture. */
11812
11813struct remote_g_packet_guess
11814{
eefce37f
TT
11815 remote_g_packet_guess (int bytes_, const struct target_desc *tdesc_)
11816 : bytes (bytes_),
11817 tdesc (tdesc_)
11818 {
11819 }
11820
29709017
DJ
11821 int bytes;
11822 const struct target_desc *tdesc;
11823};
29709017 11824
eefce37f 11825struct remote_g_packet_data : public allocate_on_obstack
29709017 11826{
eefce37f 11827 std::vector<remote_g_packet_guess> guesses;
29709017
DJ
11828};
11829
11830static struct gdbarch_data *remote_g_packet_data_handle;
11831
11832static void *
11833remote_g_packet_data_init (struct obstack *obstack)
11834{
eefce37f 11835 return new (obstack) remote_g_packet_data;
29709017
DJ
11836}
11837
11838void
11839register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes,
11840 const struct target_desc *tdesc)
11841{
11842 struct remote_g_packet_data *data
19ba03f4
SM
11843 = ((struct remote_g_packet_data *)
11844 gdbarch_data (gdbarch, remote_g_packet_data_handle));
29709017
DJ
11845
11846 gdb_assert (tdesc != NULL);
11847
eefce37f
TT
11848 for (const remote_g_packet_guess &guess : data->guesses)
11849 if (guess.bytes == bytes)
29709017 11850 internal_error (__FILE__, __LINE__,
9b20d036 11851 _("Duplicate g packet description added for size %d"),
29709017
DJ
11852 bytes);
11853
eefce37f 11854 data->guesses.emplace_back (bytes, tdesc);
29709017
DJ
11855}
11856
eefce37f
TT
11857/* Return true if remote_read_description would do anything on this target
11858 and architecture, false otherwise. */
d962ef82 11859
eefce37f 11860static bool
d962ef82
DJ
11861remote_read_description_p (struct target_ops *target)
11862{
11863 struct remote_g_packet_data *data
19ba03f4
SM
11864 = ((struct remote_g_packet_data *)
11865 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
d962ef82 11866
eefce37f 11867 return !data->guesses.empty ();
d962ef82
DJ
11868}
11869
f6ac5f3d
PA
11870const struct target_desc *
11871remote_target::read_description ()
29709017
DJ
11872{
11873 struct remote_g_packet_data *data
19ba03f4
SM
11874 = ((struct remote_g_packet_data *)
11875 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
29709017 11876
d962ef82
DJ
11877 /* Do not try this during initial connection, when we do not know
11878 whether there is a running but stopped thread. */
55f6301a 11879 if (!target_has_execution () || inferior_ptid == null_ptid)
b6a8c27b 11880 return beneath ()->read_description ();
d962ef82 11881
eefce37f 11882 if (!data->guesses.empty ())
29709017 11883 {
29709017
DJ
11884 int bytes = send_g_packet ();
11885
eefce37f
TT
11886 for (const remote_g_packet_guess &guess : data->guesses)
11887 if (guess.bytes == bytes)
11888 return guess.tdesc;
29709017
DJ
11889
11890 /* We discard the g packet. A minor optimization would be to
11891 hold on to it, and fill the register cache once we have selected
11892 an architecture, but it's too tricky to do safely. */
11893 }
11894
b6a8c27b 11895 return beneath ()->read_description ();
29709017
DJ
11896}
11897
a6b151f1
DJ
11898/* Remote file transfer support. This is host-initiated I/O, not
11899 target-initiated; for target-initiated, see remote-fileio.c. */
11900
11901/* If *LEFT is at least the length of STRING, copy STRING to
11902 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11903 decrease *LEFT. Otherwise raise an error. */
11904
11905static void
a121b7c1 11906remote_buffer_add_string (char **buffer, int *left, const char *string)
a6b151f1
DJ
11907{
11908 int len = strlen (string);
11909
11910 if (len > *left)
11911 error (_("Packet too long for target."));
11912
11913 memcpy (*buffer, string, len);
11914 *buffer += len;
11915 *left -= len;
11916
11917 /* NUL-terminate the buffer as a convenience, if there is
11918 room. */
11919 if (*left)
11920 **buffer = '\0';
11921}
11922
11923/* If *LEFT is large enough, hex encode LEN bytes from BYTES into
11924 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11925 decrease *LEFT. Otherwise raise an error. */
11926
11927static void
11928remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes,
11929 int len)
11930{
11931 if (2 * len > *left)
11932 error (_("Packet too long for target."));
11933
11934 bin2hex (bytes, *buffer, len);
11935 *buffer += 2 * len;
11936 *left -= 2 * len;
11937
11938 /* NUL-terminate the buffer as a convenience, if there is
11939 room. */
11940 if (*left)
11941 **buffer = '\0';
11942}
11943
11944/* If *LEFT is large enough, convert VALUE to hex and add it to
11945 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11946 decrease *LEFT. Otherwise raise an error. */
11947
11948static void
11949remote_buffer_add_int (char **buffer, int *left, ULONGEST value)
11950{
11951 int len = hexnumlen (value);
11952
11953 if (len > *left)
11954 error (_("Packet too long for target."));
11955
11956 hexnumstr (*buffer, value);
11957 *buffer += len;
11958 *left -= len;
11959
11960 /* NUL-terminate the buffer as a convenience, if there is
11961 room. */
11962 if (*left)
11963 **buffer = '\0';
11964}
11965
11966/* Parse an I/O result packet from BUFFER. Set RETCODE to the return
11967 value, *REMOTE_ERRNO to the remote error number or zero if none
11968 was included, and *ATTACHMENT to point to the start of the annex
11969 if any. The length of the packet isn't needed here; there may
11970 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
11971
11972 Return 0 if the packet could be parsed, -1 if it could not. If
11973 -1 is returned, the other variables may not be initialized. */
11974
11975static int
11976remote_hostio_parse_result (char *buffer, int *retcode,
11977 int *remote_errno, char **attachment)
11978{
11979 char *p, *p2;
11980
11981 *remote_errno = 0;
11982 *attachment = NULL;
11983
11984 if (buffer[0] != 'F')
11985 return -1;
11986
11987 errno = 0;
11988 *retcode = strtol (&buffer[1], &p, 16);
11989 if (errno != 0 || p == &buffer[1])
11990 return -1;
11991
11992 /* Check for ",errno". */
11993 if (*p == ',')
11994 {
11995 errno = 0;
11996 *remote_errno = strtol (p + 1, &p2, 16);
11997 if (errno != 0 || p + 1 == p2)
11998 return -1;
11999 p = p2;
12000 }
12001
12002 /* Check for ";attachment". If there is no attachment, the
12003 packet should end here. */
12004 if (*p == ';')
12005 {
12006 *attachment = p + 1;
12007 return 0;
12008 }
12009 else if (*p == '\0')
12010 return 0;
12011 else
12012 return -1;
12013}
12014
12015/* Send a prepared I/O packet to the target and read its response.
12016 The prepared packet is in the global RS->BUF before this function
12017 is called, and the answer is there when we return.
12018
12019 COMMAND_BYTES is the length of the request to send, which may include
12020 binary data. WHICH_PACKET is the packet configuration to check
12021 before attempting a packet. If an error occurs, *REMOTE_ERRNO
12022 is set to the error number and -1 is returned. Otherwise the value
12023 returned by the function is returned.
12024
12025 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
12026 attachment is expected; an error will be reported if there's a
12027 mismatch. If one is found, *ATTACHMENT will be set to point into
12028 the packet buffer and *ATTACHMENT_LEN will be set to the
12029 attachment's length. */
12030
6b8edb51
PA
12031int
12032remote_target::remote_hostio_send_command (int command_bytes, int which_packet,
12033 int *remote_errno, char **attachment,
12034 int *attachment_len)
a6b151f1
DJ
12035{
12036 struct remote_state *rs = get_remote_state ();
12037 int ret, bytes_read;
12038 char *attachment_tmp;
12039
20db9c52 12040 if (packet_support (which_packet) == PACKET_DISABLE)
a6b151f1
DJ
12041 {
12042 *remote_errno = FILEIO_ENOSYS;
12043 return -1;
12044 }
12045
8d64371b
TT
12046 putpkt_binary (rs->buf.data (), command_bytes);
12047 bytes_read = getpkt_sane (&rs->buf, 0);
a6b151f1
DJ
12048
12049 /* If it timed out, something is wrong. Don't try to parse the
12050 buffer. */
12051 if (bytes_read < 0)
12052 {
12053 *remote_errno = FILEIO_EINVAL;
12054 return -1;
12055 }
12056
12057 switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet]))
12058 {
12059 case PACKET_ERROR:
12060 *remote_errno = FILEIO_EINVAL;
12061 return -1;
12062 case PACKET_UNKNOWN:
12063 *remote_errno = FILEIO_ENOSYS;
12064 return -1;
12065 case PACKET_OK:
12066 break;
12067 }
12068
8d64371b 12069 if (remote_hostio_parse_result (rs->buf.data (), &ret, remote_errno,
a6b151f1
DJ
12070 &attachment_tmp))
12071 {
12072 *remote_errno = FILEIO_EINVAL;
12073 return -1;
12074 }
12075
12076 /* Make sure we saw an attachment if and only if we expected one. */
12077 if ((attachment_tmp == NULL && attachment != NULL)
12078 || (attachment_tmp != NULL && attachment == NULL))
12079 {
12080 *remote_errno = FILEIO_EINVAL;
12081 return -1;
12082 }
12083
12084 /* If an attachment was found, it must point into the packet buffer;
12085 work out how many bytes there were. */
12086 if (attachment_tmp != NULL)
12087 {
12088 *attachment = attachment_tmp;
8d64371b 12089 *attachment_len = bytes_read - (*attachment - rs->buf.data ());
a6b151f1
DJ
12090 }
12091
12092 return ret;
12093}
12094
dd194f6b 12095/* See declaration.h. */
80152258 12096
dd194f6b
PA
12097void
12098readahead_cache::invalidate ()
80152258 12099{
dd194f6b 12100 this->fd = -1;
80152258
PA
12101}
12102
dd194f6b 12103/* See declaration.h. */
80152258 12104
dd194f6b
PA
12105void
12106readahead_cache::invalidate_fd (int fd)
80152258 12107{
dd194f6b
PA
12108 if (this->fd == fd)
12109 this->fd = -1;
80152258
PA
12110}
12111
15a201c8
GB
12112/* Set the filesystem remote_hostio functions that take FILENAME
12113 arguments will use. Return 0 on success, or -1 if an error
12114 occurs (and set *REMOTE_ERRNO). */
12115
6b8edb51
PA
12116int
12117remote_target::remote_hostio_set_filesystem (struct inferior *inf,
12118 int *remote_errno)
15a201c8
GB
12119{
12120 struct remote_state *rs = get_remote_state ();
12121 int required_pid = (inf == NULL || inf->fake_pid_p) ? 0 : inf->pid;
8d64371b 12122 char *p = rs->buf.data ();
15a201c8
GB
12123 int left = get_remote_packet_size () - 1;
12124 char arg[9];
12125 int ret;
12126
12127 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
12128 return 0;
12129
12130 if (rs->fs_pid != -1 && required_pid == rs->fs_pid)
12131 return 0;
12132
12133 remote_buffer_add_string (&p, &left, "vFile:setfs:");
12134
12135 xsnprintf (arg, sizeof (arg), "%x", required_pid);
12136 remote_buffer_add_string (&p, &left, arg);
12137
8d64371b 12138 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_setfs,
15a201c8
GB
12139 remote_errno, NULL, NULL);
12140
12141 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
12142 return 0;
12143
12144 if (ret == 0)
12145 rs->fs_pid = required_pid;
12146
12147 return ret;
12148}
12149
12e2a5fd 12150/* Implementation of to_fileio_open. */
a6b151f1 12151
6b8edb51
PA
12152int
12153remote_target::remote_hostio_open (inferior *inf, const char *filename,
12154 int flags, int mode, int warn_if_slow,
12155 int *remote_errno)
a6b151f1
DJ
12156{
12157 struct remote_state *rs = get_remote_state ();
8d64371b 12158 char *p = rs->buf.data ();
a6b151f1
DJ
12159 int left = get_remote_packet_size () - 1;
12160
4313b8c0
GB
12161 if (warn_if_slow)
12162 {
12163 static int warning_issued = 0;
12164
12165 printf_unfiltered (_("Reading %s from remote target...\n"),
12166 filename);
12167
12168 if (!warning_issued)
12169 {
12170 warning (_("File transfers from remote targets can be slow."
12171 " Use \"set sysroot\" to access files locally"
12172 " instead."));
12173 warning_issued = 1;
12174 }
12175 }
12176
15a201c8
GB
12177 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
12178 return -1;
12179
a6b151f1
DJ
12180 remote_buffer_add_string (&p, &left, "vFile:open:");
12181
12182 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12183 strlen (filename));
12184 remote_buffer_add_string (&p, &left, ",");
12185
12186 remote_buffer_add_int (&p, &left, flags);
12187 remote_buffer_add_string (&p, &left, ",");
12188
12189 remote_buffer_add_int (&p, &left, mode);
12190
8d64371b 12191 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_open,
a6b151f1
DJ
12192 remote_errno, NULL, NULL);
12193}
12194
f6ac5f3d
PA
12195int
12196remote_target::fileio_open (struct inferior *inf, const char *filename,
12197 int flags, int mode, int warn_if_slow,
12198 int *remote_errno)
12199{
6b8edb51 12200 return remote_hostio_open (inf, filename, flags, mode, warn_if_slow,
f6ac5f3d
PA
12201 remote_errno);
12202}
12203
12e2a5fd 12204/* Implementation of to_fileio_pwrite. */
a6b151f1 12205
6b8edb51
PA
12206int
12207remote_target::remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
12208 ULONGEST offset, int *remote_errno)
a6b151f1
DJ
12209{
12210 struct remote_state *rs = get_remote_state ();
8d64371b 12211 char *p = rs->buf.data ();
a6b151f1
DJ
12212 int left = get_remote_packet_size ();
12213 int out_len;
12214
dd194f6b 12215 rs->readahead_cache.invalidate_fd (fd);
80152258 12216
a6b151f1
DJ
12217 remote_buffer_add_string (&p, &left, "vFile:pwrite:");
12218
12219 remote_buffer_add_int (&p, &left, fd);
12220 remote_buffer_add_string (&p, &left, ",");
12221
12222 remote_buffer_add_int (&p, &left, offset);
12223 remote_buffer_add_string (&p, &left, ",");
12224
124e13d9 12225 p += remote_escape_output (write_buf, len, 1, (gdb_byte *) p, &out_len,
8d64371b
TT
12226 (get_remote_packet_size ()
12227 - (p - rs->buf.data ())));
a6b151f1 12228
8d64371b 12229 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pwrite,
a6b151f1
DJ
12230 remote_errno, NULL, NULL);
12231}
12232
f6ac5f3d
PA
12233int
12234remote_target::fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
12235 ULONGEST offset, int *remote_errno)
12236{
6b8edb51 12237 return remote_hostio_pwrite (fd, write_buf, len, offset, remote_errno);
f6ac5f3d
PA
12238}
12239
80152258
PA
12240/* Helper for the implementation of to_fileio_pread. Read the file
12241 from the remote side with vFile:pread. */
a6b151f1 12242
6b8edb51
PA
12243int
12244remote_target::remote_hostio_pread_vFile (int fd, gdb_byte *read_buf, int len,
12245 ULONGEST offset, int *remote_errno)
a6b151f1
DJ
12246{
12247 struct remote_state *rs = get_remote_state ();
8d64371b 12248 char *p = rs->buf.data ();
a6b151f1
DJ
12249 char *attachment;
12250 int left = get_remote_packet_size ();
12251 int ret, attachment_len;
12252 int read_len;
12253
12254 remote_buffer_add_string (&p, &left, "vFile:pread:");
12255
12256 remote_buffer_add_int (&p, &left, fd);
12257 remote_buffer_add_string (&p, &left, ",");
12258
12259 remote_buffer_add_int (&p, &left, len);
12260 remote_buffer_add_string (&p, &left, ",");
12261
12262 remote_buffer_add_int (&p, &left, offset);
12263
8d64371b 12264 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pread,
a6b151f1
DJ
12265 remote_errno, &attachment,
12266 &attachment_len);
12267
12268 if (ret < 0)
12269 return ret;
12270
bc20a4af 12271 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
a6b151f1
DJ
12272 read_buf, len);
12273 if (read_len != ret)
12274 error (_("Read returned %d, but %d bytes."), ret, (int) read_len);
12275
12276 return ret;
12277}
12278
dd194f6b 12279/* See declaration.h. */
80152258 12280
dd194f6b
PA
12281int
12282readahead_cache::pread (int fd, gdb_byte *read_buf, size_t len,
12283 ULONGEST offset)
80152258 12284{
dd194f6b
PA
12285 if (this->fd == fd
12286 && this->offset <= offset
12287 && offset < this->offset + this->bufsize)
80152258 12288 {
dd194f6b 12289 ULONGEST max = this->offset + this->bufsize;
80152258
PA
12290
12291 if (offset + len > max)
12292 len = max - offset;
12293
dd194f6b 12294 memcpy (read_buf, this->buf + offset - this->offset, len);
80152258
PA
12295 return len;
12296 }
12297
12298 return 0;
12299}
12300
12301/* Implementation of to_fileio_pread. */
12302
6b8edb51
PA
12303int
12304remote_target::remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
12305 ULONGEST offset, int *remote_errno)
80152258
PA
12306{
12307 int ret;
12308 struct remote_state *rs = get_remote_state ();
dd194f6b 12309 readahead_cache *cache = &rs->readahead_cache;
80152258 12310
dd194f6b 12311 ret = cache->pread (fd, read_buf, len, offset);
80152258
PA
12312 if (ret > 0)
12313 {
12314 cache->hit_count++;
12315
12316 if (remote_debug)
12317 fprintf_unfiltered (gdb_stdlog, "readahead cache hit %s\n",
12318 pulongest (cache->hit_count));
12319 return ret;
12320 }
12321
12322 cache->miss_count++;
12323 if (remote_debug)
12324 fprintf_unfiltered (gdb_stdlog, "readahead cache miss %s\n",
12325 pulongest (cache->miss_count));
12326
12327 cache->fd = fd;
12328 cache->offset = offset;
12329 cache->bufsize = get_remote_packet_size ();
224c3ddb 12330 cache->buf = (gdb_byte *) xrealloc (cache->buf, cache->bufsize);
80152258 12331
6b8edb51 12332 ret = remote_hostio_pread_vFile (cache->fd, cache->buf, cache->bufsize,
80152258
PA
12333 cache->offset, remote_errno);
12334 if (ret <= 0)
12335 {
dd194f6b 12336 cache->invalidate_fd (fd);
80152258
PA
12337 return ret;
12338 }
12339
12340 cache->bufsize = ret;
dd194f6b 12341 return cache->pread (fd, read_buf, len, offset);
80152258
PA
12342}
12343
f6ac5f3d
PA
12344int
12345remote_target::fileio_pread (int fd, gdb_byte *read_buf, int len,
12346 ULONGEST offset, int *remote_errno)
12347{
6b8edb51 12348 return remote_hostio_pread (fd, read_buf, len, offset, remote_errno);
f6ac5f3d
PA
12349}
12350
12e2a5fd 12351/* Implementation of to_fileio_close. */
a6b151f1 12352
6b8edb51
PA
12353int
12354remote_target::remote_hostio_close (int fd, int *remote_errno)
a6b151f1
DJ
12355{
12356 struct remote_state *rs = get_remote_state ();
8d64371b 12357 char *p = rs->buf.data ();
a6b151f1
DJ
12358 int left = get_remote_packet_size () - 1;
12359
dd194f6b 12360 rs->readahead_cache.invalidate_fd (fd);
80152258 12361
a6b151f1
DJ
12362 remote_buffer_add_string (&p, &left, "vFile:close:");
12363
12364 remote_buffer_add_int (&p, &left, fd);
12365
8d64371b 12366 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_close,
a6b151f1
DJ
12367 remote_errno, NULL, NULL);
12368}
12369
f6ac5f3d
PA
12370int
12371remote_target::fileio_close (int fd, int *remote_errno)
12372{
6b8edb51 12373 return remote_hostio_close (fd, remote_errno);
f6ac5f3d
PA
12374}
12375
12e2a5fd 12376/* Implementation of to_fileio_unlink. */
a6b151f1 12377
6b8edb51
PA
12378int
12379remote_target::remote_hostio_unlink (inferior *inf, const char *filename,
12380 int *remote_errno)
a6b151f1
DJ
12381{
12382 struct remote_state *rs = get_remote_state ();
8d64371b 12383 char *p = rs->buf.data ();
a6b151f1
DJ
12384 int left = get_remote_packet_size () - 1;
12385
15a201c8
GB
12386 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
12387 return -1;
12388
a6b151f1
DJ
12389 remote_buffer_add_string (&p, &left, "vFile:unlink:");
12390
12391 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12392 strlen (filename));
12393
8d64371b 12394 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_unlink,
a6b151f1
DJ
12395 remote_errno, NULL, NULL);
12396}
12397
f6ac5f3d
PA
12398int
12399remote_target::fileio_unlink (struct inferior *inf, const char *filename,
12400 int *remote_errno)
12401{
6b8edb51 12402 return remote_hostio_unlink (inf, filename, remote_errno);
f6ac5f3d
PA
12403}
12404
12e2a5fd 12405/* Implementation of to_fileio_readlink. */
b9e7b9c3 12406
f6ac5f3d
PA
12407gdb::optional<std::string>
12408remote_target::fileio_readlink (struct inferior *inf, const char *filename,
12409 int *remote_errno)
b9e7b9c3
UW
12410{
12411 struct remote_state *rs = get_remote_state ();
8d64371b 12412 char *p = rs->buf.data ();
b9e7b9c3
UW
12413 char *attachment;
12414 int left = get_remote_packet_size ();
12415 int len, attachment_len;
12416 int read_len;
b9e7b9c3 12417
15a201c8 12418 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
e0d3522b 12419 return {};
15a201c8 12420
b9e7b9c3
UW
12421 remote_buffer_add_string (&p, &left, "vFile:readlink:");
12422
12423 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12424 strlen (filename));
12425
8d64371b 12426 len = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_readlink,
b9e7b9c3
UW
12427 remote_errno, &attachment,
12428 &attachment_len);
12429
12430 if (len < 0)
e0d3522b 12431 return {};
b9e7b9c3 12432
e0d3522b 12433 std::string ret (len, '\0');
b9e7b9c3 12434
bc20a4af 12435 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
e0d3522b 12436 (gdb_byte *) &ret[0], len);
b9e7b9c3
UW
12437 if (read_len != len)
12438 error (_("Readlink returned %d, but %d bytes."), len, read_len);
12439
b9e7b9c3
UW
12440 return ret;
12441}
12442
12e2a5fd 12443/* Implementation of to_fileio_fstat. */
0a93529c 12444
f6ac5f3d
PA
12445int
12446remote_target::fileio_fstat (int fd, struct stat *st, int *remote_errno)
0a93529c
GB
12447{
12448 struct remote_state *rs = get_remote_state ();
8d64371b 12449 char *p = rs->buf.data ();
0a93529c
GB
12450 int left = get_remote_packet_size ();
12451 int attachment_len, ret;
12452 char *attachment;
12453 struct fio_stat fst;
12454 int read_len;
12455
464b0089
GB
12456 remote_buffer_add_string (&p, &left, "vFile:fstat:");
12457
12458 remote_buffer_add_int (&p, &left, fd);
12459
8d64371b 12460 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_fstat,
464b0089
GB
12461 remote_errno, &attachment,
12462 &attachment_len);
12463 if (ret < 0)
0a93529c 12464 {
464b0089
GB
12465 if (*remote_errno != FILEIO_ENOSYS)
12466 return ret;
12467
0a93529c
GB
12468 /* Strictly we should return -1, ENOSYS here, but when
12469 "set sysroot remote:" was implemented in August 2008
12470 BFD's need for a stat function was sidestepped with
12471 this hack. This was not remedied until March 2015
12472 so we retain the previous behavior to avoid breaking
12473 compatibility.
12474
12475 Note that the memset is a March 2015 addition; older
12476 GDBs set st_size *and nothing else* so the structure
12477 would have garbage in all other fields. This might
12478 break something but retaining the previous behavior
12479 here would be just too wrong. */
12480
12481 memset (st, 0, sizeof (struct stat));
12482 st->st_size = INT_MAX;
12483 return 0;
12484 }
12485
0a93529c
GB
12486 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
12487 (gdb_byte *) &fst, sizeof (fst));
12488
12489 if (read_len != ret)
12490 error (_("vFile:fstat returned %d, but %d bytes."), ret, read_len);
12491
12492 if (read_len != sizeof (fst))
12493 error (_("vFile:fstat returned %d bytes, but expecting %d."),
12494 read_len, (int) sizeof (fst));
12495
12496 remote_fileio_to_host_stat (&fst, st);
12497
12498 return 0;
12499}
12500
12e2a5fd 12501/* Implementation of to_filesystem_is_local. */
e3dd7556 12502
57810aa7 12503bool
f6ac5f3d 12504remote_target::filesystem_is_local ()
e3dd7556
GB
12505{
12506 /* Valgrind GDB presents itself as a remote target but works
12507 on the local filesystem: it does not implement remote get
12508 and users are not expected to set a sysroot. To handle
12509 this case we treat the remote filesystem as local if the
12510 sysroot is exactly TARGET_SYSROOT_PREFIX and if the stub
12511 does not support vFile:open. */
a3be80c3 12512 if (strcmp (gdb_sysroot, TARGET_SYSROOT_PREFIX) == 0)
e3dd7556
GB
12513 {
12514 enum packet_support ps = packet_support (PACKET_vFile_open);
12515
12516 if (ps == PACKET_SUPPORT_UNKNOWN)
12517 {
12518 int fd, remote_errno;
12519
12520 /* Try opening a file to probe support. The supplied
12521 filename is irrelevant, we only care about whether
12522 the stub recognizes the packet or not. */
6b8edb51 12523 fd = remote_hostio_open (NULL, "just probing",
4313b8c0 12524 FILEIO_O_RDONLY, 0700, 0,
e3dd7556
GB
12525 &remote_errno);
12526
12527 if (fd >= 0)
6b8edb51 12528 remote_hostio_close (fd, &remote_errno);
e3dd7556
GB
12529
12530 ps = packet_support (PACKET_vFile_open);
12531 }
12532
12533 if (ps == PACKET_DISABLE)
12534 {
12535 static int warning_issued = 0;
12536
12537 if (!warning_issued)
12538 {
12539 warning (_("remote target does not support file"
12540 " transfer, attempting to access files"
12541 " from local filesystem."));
12542 warning_issued = 1;
12543 }
12544
57810aa7 12545 return true;
e3dd7556
GB
12546 }
12547 }
12548
57810aa7 12549 return false;
e3dd7556
GB
12550}
12551
a6b151f1
DJ
12552static int
12553remote_fileio_errno_to_host (int errnum)
12554{
12555 switch (errnum)
12556 {
12557 case FILEIO_EPERM:
dda83cd7 12558 return EPERM;
a6b151f1 12559 case FILEIO_ENOENT:
dda83cd7 12560 return ENOENT;
a6b151f1 12561 case FILEIO_EINTR:
dda83cd7 12562 return EINTR;
a6b151f1 12563 case FILEIO_EIO:
dda83cd7 12564 return EIO;
a6b151f1 12565 case FILEIO_EBADF:
dda83cd7 12566 return EBADF;
a6b151f1 12567 case FILEIO_EACCES:
dda83cd7 12568 return EACCES;
a6b151f1 12569 case FILEIO_EFAULT:
dda83cd7 12570 return EFAULT;
a6b151f1 12571 case FILEIO_EBUSY:
dda83cd7 12572 return EBUSY;
a6b151f1 12573 case FILEIO_EEXIST:
dda83cd7 12574 return EEXIST;
a6b151f1 12575 case FILEIO_ENODEV:
dda83cd7 12576 return ENODEV;
a6b151f1 12577 case FILEIO_ENOTDIR:
dda83cd7 12578 return ENOTDIR;
a6b151f1 12579 case FILEIO_EISDIR:
dda83cd7 12580 return EISDIR;
a6b151f1 12581 case FILEIO_EINVAL:
dda83cd7 12582 return EINVAL;
a6b151f1 12583 case FILEIO_ENFILE:
dda83cd7 12584 return ENFILE;
a6b151f1 12585 case FILEIO_EMFILE:
dda83cd7 12586 return EMFILE;
a6b151f1 12587 case FILEIO_EFBIG:
dda83cd7 12588 return EFBIG;
a6b151f1 12589 case FILEIO_ENOSPC:
dda83cd7 12590 return ENOSPC;
a6b151f1 12591 case FILEIO_ESPIPE:
dda83cd7 12592 return ESPIPE;
a6b151f1 12593 case FILEIO_EROFS:
dda83cd7 12594 return EROFS;
a6b151f1 12595 case FILEIO_ENOSYS:
dda83cd7 12596 return ENOSYS;
a6b151f1 12597 case FILEIO_ENAMETOOLONG:
dda83cd7 12598 return ENAMETOOLONG;
a6b151f1
DJ
12599 }
12600 return -1;
12601}
12602
12603static char *
12604remote_hostio_error (int errnum)
12605{
12606 int host_error = remote_fileio_errno_to_host (errnum);
12607
12608 if (host_error == -1)
12609 error (_("Unknown remote I/O error %d"), errnum);
12610 else
12611 error (_("Remote I/O error: %s"), safe_strerror (host_error));
12612}
12613
440b7aec
PA
12614/* A RAII wrapper around a remote file descriptor. */
12615
12616class scoped_remote_fd
a6b151f1 12617{
440b7aec 12618public:
6b8edb51
PA
12619 scoped_remote_fd (remote_target *remote, int fd)
12620 : m_remote (remote), m_fd (fd)
440b7aec
PA
12621 {
12622 }
a6b151f1 12623
440b7aec
PA
12624 ~scoped_remote_fd ()
12625 {
12626 if (m_fd != -1)
12627 {
12628 try
12629 {
12630 int remote_errno;
6b8edb51 12631 m_remote->remote_hostio_close (m_fd, &remote_errno);
440b7aec
PA
12632 }
12633 catch (...)
12634 {
12635 /* Swallow exception before it escapes the dtor. If
12636 something goes wrong, likely the connection is gone,
12637 and there's nothing else that can be done. */
12638 }
12639 }
12640 }
12641
12642 DISABLE_COPY_AND_ASSIGN (scoped_remote_fd);
12643
12644 /* Release ownership of the file descriptor, and return it. */
88a774b9 12645 ATTRIBUTE_UNUSED_RESULT int release () noexcept
440b7aec
PA
12646 {
12647 int fd = m_fd;
12648 m_fd = -1;
12649 return fd;
12650 }
12651
12652 /* Return the owned file descriptor. */
12653 int get () const noexcept
12654 {
12655 return m_fd;
12656 }
12657
12658private:
6b8edb51
PA
12659 /* The remote target. */
12660 remote_target *m_remote;
12661
440b7aec
PA
12662 /* The owned remote I/O file descriptor. */
12663 int m_fd;
12664};
a6b151f1
DJ
12665
12666void
12667remote_file_put (const char *local_file, const char *remote_file, int from_tty)
6b8edb51
PA
12668{
12669 remote_target *remote = get_current_remote_target ();
12670
12671 if (remote == nullptr)
12672 error (_("command can only be used with remote target"));
12673
12674 remote->remote_file_put (local_file, remote_file, from_tty);
12675}
12676
12677void
12678remote_target::remote_file_put (const char *local_file, const char *remote_file,
12679 int from_tty)
a6b151f1 12680{
440b7aec 12681 int retcode, remote_errno, bytes, io_size;
a6b151f1
DJ
12682 int bytes_in_buffer;
12683 int saw_eof;
12684 ULONGEST offset;
a6b151f1 12685
d419f42d 12686 gdb_file_up file = gdb_fopen_cloexec (local_file, "rb");
a6b151f1
DJ
12687 if (file == NULL)
12688 perror_with_name (local_file);
a6b151f1 12689
440b7aec 12690 scoped_remote_fd fd
6b8edb51
PA
12691 (this, remote_hostio_open (NULL,
12692 remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT
12693 | FILEIO_O_TRUNC),
12694 0700, 0, &remote_errno));
440b7aec 12695 if (fd.get () == -1)
a6b151f1
DJ
12696 remote_hostio_error (remote_errno);
12697
12698 /* Send up to this many bytes at once. They won't all fit in the
12699 remote packet limit, so we'll transfer slightly fewer. */
12700 io_size = get_remote_packet_size ();
5ca3b260 12701 gdb::byte_vector buffer (io_size);
a6b151f1 12702
a6b151f1
DJ
12703 bytes_in_buffer = 0;
12704 saw_eof = 0;
12705 offset = 0;
12706 while (bytes_in_buffer || !saw_eof)
12707 {
12708 if (!saw_eof)
12709 {
5ca3b260 12710 bytes = fread (buffer.data () + bytes_in_buffer, 1,
3e43a32a 12711 io_size - bytes_in_buffer,
d419f42d 12712 file.get ());
a6b151f1
DJ
12713 if (bytes == 0)
12714 {
d419f42d 12715 if (ferror (file.get ()))
a6b151f1
DJ
12716 error (_("Error reading %s."), local_file);
12717 else
12718 {
12719 /* EOF. Unless there is something still in the
12720 buffer from the last iteration, we are done. */
12721 saw_eof = 1;
12722 if (bytes_in_buffer == 0)
12723 break;
12724 }
12725 }
12726 }
12727 else
12728 bytes = 0;
12729
12730 bytes += bytes_in_buffer;
12731 bytes_in_buffer = 0;
12732
5ca3b260 12733 retcode = remote_hostio_pwrite (fd.get (), buffer.data (), bytes,
3e43a32a 12734 offset, &remote_errno);
a6b151f1
DJ
12735
12736 if (retcode < 0)
12737 remote_hostio_error (remote_errno);
12738 else if (retcode == 0)
12739 error (_("Remote write of %d bytes returned 0!"), bytes);
12740 else if (retcode < bytes)
12741 {
12742 /* Short write. Save the rest of the read data for the next
12743 write. */
12744 bytes_in_buffer = bytes - retcode;
5ca3b260 12745 memmove (buffer.data (), buffer.data () + retcode, bytes_in_buffer);
a6b151f1
DJ
12746 }
12747
12748 offset += retcode;
12749 }
12750
6b8edb51 12751 if (remote_hostio_close (fd.release (), &remote_errno))
a6b151f1
DJ
12752 remote_hostio_error (remote_errno);
12753
12754 if (from_tty)
12755 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file);
a6b151f1
DJ
12756}
12757
12758void
12759remote_file_get (const char *remote_file, const char *local_file, int from_tty)
6b8edb51
PA
12760{
12761 remote_target *remote = get_current_remote_target ();
12762
12763 if (remote == nullptr)
12764 error (_("command can only be used with remote target"));
12765
12766 remote->remote_file_get (remote_file, local_file, from_tty);
12767}
12768
12769void
12770remote_target::remote_file_get (const char *remote_file, const char *local_file,
12771 int from_tty)
a6b151f1 12772{
440b7aec 12773 int remote_errno, bytes, io_size;
a6b151f1 12774 ULONGEST offset;
a6b151f1 12775
440b7aec 12776 scoped_remote_fd fd
6b8edb51
PA
12777 (this, remote_hostio_open (NULL,
12778 remote_file, FILEIO_O_RDONLY, 0, 0,
12779 &remote_errno));
440b7aec 12780 if (fd.get () == -1)
a6b151f1
DJ
12781 remote_hostio_error (remote_errno);
12782
d419f42d 12783 gdb_file_up file = gdb_fopen_cloexec (local_file, "wb");
a6b151f1
DJ
12784 if (file == NULL)
12785 perror_with_name (local_file);
a6b151f1
DJ
12786
12787 /* Send up to this many bytes at once. They won't all fit in the
12788 remote packet limit, so we'll transfer slightly fewer. */
12789 io_size = get_remote_packet_size ();
5ca3b260 12790 gdb::byte_vector buffer (io_size);
a6b151f1 12791
a6b151f1
DJ
12792 offset = 0;
12793 while (1)
12794 {
5ca3b260 12795 bytes = remote_hostio_pread (fd.get (), buffer.data (), io_size, offset,
440b7aec 12796 &remote_errno);
a6b151f1
DJ
12797 if (bytes == 0)
12798 /* Success, but no bytes, means end-of-file. */
12799 break;
12800 if (bytes == -1)
12801 remote_hostio_error (remote_errno);
12802
12803 offset += bytes;
12804
5ca3b260 12805 bytes = fwrite (buffer.data (), 1, bytes, file.get ());
a6b151f1
DJ
12806 if (bytes == 0)
12807 perror_with_name (local_file);
12808 }
12809
6b8edb51 12810 if (remote_hostio_close (fd.release (), &remote_errno))
a6b151f1
DJ
12811 remote_hostio_error (remote_errno);
12812
12813 if (from_tty)
12814 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file);
a6b151f1
DJ
12815}
12816
12817void
12818remote_file_delete (const char *remote_file, int from_tty)
12819{
6b8edb51 12820 remote_target *remote = get_current_remote_target ();
a6b151f1 12821
6b8edb51 12822 if (remote == nullptr)
a6b151f1
DJ
12823 error (_("command can only be used with remote target"));
12824
6b8edb51
PA
12825 remote->remote_file_delete (remote_file, from_tty);
12826}
12827
12828void
12829remote_target::remote_file_delete (const char *remote_file, int from_tty)
12830{
12831 int retcode, remote_errno;
12832
12833 retcode = remote_hostio_unlink (NULL, remote_file, &remote_errno);
a6b151f1
DJ
12834 if (retcode == -1)
12835 remote_hostio_error (remote_errno);
12836
12837 if (from_tty)
12838 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file);
12839}
12840
12841static void
ac88e2de 12842remote_put_command (const char *args, int from_tty)
a6b151f1 12843{
d1a41061
PP
12844 if (args == NULL)
12845 error_no_arg (_("file to put"));
12846
773a1edc 12847 gdb_argv argv (args);
a6b151f1
DJ
12848 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12849 error (_("Invalid parameters to remote put"));
12850
12851 remote_file_put (argv[0], argv[1], from_tty);
a6b151f1
DJ
12852}
12853
12854static void
ac88e2de 12855remote_get_command (const char *args, int from_tty)
a6b151f1 12856{
d1a41061
PP
12857 if (args == NULL)
12858 error_no_arg (_("file to get"));
12859
773a1edc 12860 gdb_argv argv (args);
a6b151f1
DJ
12861 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12862 error (_("Invalid parameters to remote get"));
12863
12864 remote_file_get (argv[0], argv[1], from_tty);
a6b151f1
DJ
12865}
12866
12867static void
ac88e2de 12868remote_delete_command (const char *args, int from_tty)
a6b151f1 12869{
d1a41061
PP
12870 if (args == NULL)
12871 error_no_arg (_("file to delete"));
12872
773a1edc 12873 gdb_argv argv (args);
a6b151f1
DJ
12874 if (argv[0] == NULL || argv[1] != NULL)
12875 error (_("Invalid parameters to remote delete"));
12876
12877 remote_file_delete (argv[0], from_tty);
a6b151f1
DJ
12878}
12879
57810aa7 12880bool
f6ac5f3d 12881remote_target::can_execute_reverse ()
b2175913 12882{
4082afcc
PA
12883 if (packet_support (PACKET_bs) == PACKET_ENABLE
12884 || packet_support (PACKET_bc) == PACKET_ENABLE)
57810aa7 12885 return true;
40ab02ce 12886 else
57810aa7 12887 return false;
b2175913
MS
12888}
12889
57810aa7 12890bool
f6ac5f3d 12891remote_target::supports_non_stop ()
74531fed 12892{
57810aa7 12893 return true;
74531fed
PA
12894}
12895
57810aa7 12896bool
f6ac5f3d 12897remote_target::supports_disable_randomization ()
03583c20
UW
12898{
12899 /* Only supported in extended mode. */
57810aa7 12900 return false;
03583c20
UW
12901}
12902
57810aa7 12903bool
f6ac5f3d 12904remote_target::supports_multi_process ()
8a305172
PA
12905{
12906 struct remote_state *rs = get_remote_state ();
a744cf53 12907
8020350c 12908 return remote_multi_process_p (rs);
8a305172
PA
12909}
12910
70221824 12911static int
f6ac5f3d 12912remote_supports_cond_tracepoints ()
782b2b07 12913{
4082afcc 12914 return packet_support (PACKET_ConditionalTracepoints) == PACKET_ENABLE;
782b2b07
SS
12915}
12916
57810aa7 12917bool
f6ac5f3d 12918remote_target::supports_evaluation_of_breakpoint_conditions ()
3788aec7 12919{
4082afcc 12920 return packet_support (PACKET_ConditionalBreakpoints) == PACKET_ENABLE;
3788aec7
LM
12921}
12922
70221824 12923static int
f6ac5f3d 12924remote_supports_fast_tracepoints ()
7a697b8d 12925{
4082afcc 12926 return packet_support (PACKET_FastTracepoints) == PACKET_ENABLE;
7a697b8d
SS
12927}
12928
0fb4aa4b 12929static int
f6ac5f3d 12930remote_supports_static_tracepoints ()
0fb4aa4b 12931{
4082afcc 12932 return packet_support (PACKET_StaticTracepoints) == PACKET_ENABLE;
0fb4aa4b
PA
12933}
12934
1e4d1764 12935static int
f6ac5f3d 12936remote_supports_install_in_trace ()
1e4d1764 12937{
4082afcc 12938 return packet_support (PACKET_InstallInTrace) == PACKET_ENABLE;
1e4d1764
YQ
12939}
12940
57810aa7 12941bool
f6ac5f3d 12942remote_target::supports_enable_disable_tracepoint ()
d248b706 12943{
4082afcc
PA
12944 return (packet_support (PACKET_EnableDisableTracepoints_feature)
12945 == PACKET_ENABLE);
d248b706
KY
12946}
12947
57810aa7 12948bool
f6ac5f3d 12949remote_target::supports_string_tracing ()
3065dfb6 12950{
4082afcc 12951 return packet_support (PACKET_tracenz_feature) == PACKET_ENABLE;
3065dfb6
SS
12952}
12953
57810aa7 12954bool
f6ac5f3d 12955remote_target::can_run_breakpoint_commands ()
d3ce09f5 12956{
4082afcc 12957 return packet_support (PACKET_BreakpointCommands) == PACKET_ENABLE;
d3ce09f5
SS
12958}
12959
f6ac5f3d
PA
12960void
12961remote_target::trace_init ()
35b1e5cc 12962{
b6bb3468
PA
12963 struct remote_state *rs = get_remote_state ();
12964
35b1e5cc 12965 putpkt ("QTinit");
b6bb3468 12966 remote_get_noisy_reply ();
8d64371b 12967 if (strcmp (rs->buf.data (), "OK") != 0)
35b1e5cc
SS
12968 error (_("Target does not support this command."));
12969}
12970
409873ef
SS
12971/* Recursive routine to walk through command list including loops, and
12972 download packets for each command. */
12973
6b8edb51
PA
12974void
12975remote_target::remote_download_command_source (int num, ULONGEST addr,
12976 struct command_line *cmds)
409873ef
SS
12977{
12978 struct remote_state *rs = get_remote_state ();
12979 struct command_line *cmd;
12980
12981 for (cmd = cmds; cmd; cmd = cmd->next)
12982 {
0df8b418 12983 QUIT; /* Allow user to bail out with ^C. */
8d64371b 12984 strcpy (rs->buf.data (), "QTDPsrc:");
409873ef 12985 encode_source_string (num, addr, "cmd", cmd->line,
8d64371b
TT
12986 rs->buf.data () + strlen (rs->buf.data ()),
12987 rs->buf.size () - strlen (rs->buf.data ()));
409873ef 12988 putpkt (rs->buf);
b6bb3468 12989 remote_get_noisy_reply ();
8d64371b 12990 if (strcmp (rs->buf.data (), "OK"))
409873ef
SS
12991 warning (_("Target does not support source download."));
12992
12993 if (cmd->control_type == while_control
12994 || cmd->control_type == while_stepping_control)
12995 {
12973681 12996 remote_download_command_source (num, addr, cmd->body_list_0.get ());
409873ef 12997
0df8b418 12998 QUIT; /* Allow user to bail out with ^C. */
8d64371b 12999 strcpy (rs->buf.data (), "QTDPsrc:");
409873ef 13000 encode_source_string (num, addr, "cmd", "end",
8d64371b
TT
13001 rs->buf.data () + strlen (rs->buf.data ()),
13002 rs->buf.size () - strlen (rs->buf.data ()));
409873ef 13003 putpkt (rs->buf);
b6bb3468 13004 remote_get_noisy_reply ();
8d64371b 13005 if (strcmp (rs->buf.data (), "OK"))
409873ef
SS
13006 warning (_("Target does not support source download."));
13007 }
13008 }
13009}
13010
f6ac5f3d
PA
13011void
13012remote_target::download_tracepoint (struct bp_location *loc)
35b1e5cc
SS
13013{
13014 CORE_ADDR tpaddr;
409873ef 13015 char addrbuf[40];
b44ec619
SM
13016 std::vector<std::string> tdp_actions;
13017 std::vector<std::string> stepping_actions;
35b1e5cc 13018 char *pkt;
e8ba3115 13019 struct breakpoint *b = loc->owner;
d9b3f62e 13020 struct tracepoint *t = (struct tracepoint *) b;
b6bb3468 13021 struct remote_state *rs = get_remote_state ();
3df3a985 13022 int ret;
ff36536c 13023 const char *err_msg = _("Tracepoint packet too large for target.");
3df3a985
PFC
13024 size_t size_left;
13025
13026 /* We use a buffer other than rs->buf because we'll build strings
13027 across multiple statements, and other statements in between could
13028 modify rs->buf. */
13029 gdb::char_vector buf (get_remote_packet_size ());
35b1e5cc 13030
dc673c81 13031 encode_actions_rsp (loc, &tdp_actions, &stepping_actions);
e8ba3115
YQ
13032
13033 tpaddr = loc->address;
53807e9f 13034 strcpy (addrbuf, phex (tpaddr, sizeof (CORE_ADDR)));
3df3a985
PFC
13035 ret = snprintf (buf.data (), buf.size (), "QTDP:%x:%s:%c:%lx:%x",
13036 b->number, addrbuf, /* address */
13037 (b->enable_state == bp_enabled ? 'E' : 'D'),
13038 t->step_count, t->pass_count);
13039
13040 if (ret < 0 || ret >= buf.size ())
a7f25a84 13041 error ("%s", err_msg);
3df3a985 13042
e8ba3115
YQ
13043 /* Fast tracepoints are mostly handled by the target, but we can
13044 tell the target how big of an instruction block should be moved
13045 around. */
13046 if (b->type == bp_fast_tracepoint)
13047 {
13048 /* Only test for support at download time; we may not know
13049 target capabilities at definition time. */
13050 if (remote_supports_fast_tracepoints ())
35b1e5cc 13051 {
6b940e6a
PL
13052 if (gdbarch_fast_tracepoint_valid_at (loc->gdbarch, tpaddr,
13053 NULL))
3df3a985
PFC
13054 {
13055 size_left = buf.size () - strlen (buf.data ());
13056 ret = snprintf (buf.data () + strlen (buf.data ()),
13057 size_left, ":F%x",
13058 gdb_insn_length (loc->gdbarch, tpaddr));
13059
13060 if (ret < 0 || ret >= size_left)
a7f25a84 13061 error ("%s", err_msg);
3df3a985 13062 }
35b1e5cc 13063 else
e8ba3115
YQ
13064 /* If it passed validation at definition but fails now,
13065 something is very wrong. */
13066 internal_error (__FILE__, __LINE__,
13067 _("Fast tracepoint not "
13068 "valid during download"));
35b1e5cc 13069 }
e8ba3115
YQ
13070 else
13071 /* Fast tracepoints are functionally identical to regular
13072 tracepoints, so don't take lack of support as a reason to
13073 give up on the trace run. */
13074 warning (_("Target does not support fast tracepoints, "
13075 "downloading %d as regular tracepoint"), b->number);
13076 }
13077 else if (b->type == bp_static_tracepoint)
13078 {
13079 /* Only test for support at download time; we may not know
13080 target capabilities at definition time. */
13081 if (remote_supports_static_tracepoints ())
0fb4aa4b 13082 {
e8ba3115 13083 struct static_tracepoint_marker marker;
0fb4aa4b 13084
e8ba3115 13085 if (target_static_tracepoint_marker_at (tpaddr, &marker))
3df3a985
PFC
13086 {
13087 size_left = buf.size () - strlen (buf.data ());
13088 ret = snprintf (buf.data () + strlen (buf.data ()),
13089 size_left, ":S");
13090
13091 if (ret < 0 || ret >= size_left)
a7f25a84 13092 error ("%s", err_msg);
3df3a985 13093 }
0fb4aa4b 13094 else
e8ba3115 13095 error (_("Static tracepoint not valid during download"));
0fb4aa4b 13096 }
e8ba3115
YQ
13097 else
13098 /* Fast tracepoints are functionally identical to regular
13099 tracepoints, so don't take lack of support as a reason
13100 to give up on the trace run. */
13101 error (_("Target does not support static tracepoints"));
13102 }
13103 /* If the tracepoint has a conditional, make it into an agent
13104 expression and append to the definition. */
13105 if (loc->cond)
13106 {
13107 /* Only test support at download time, we may not know target
13108 capabilities at definition time. */
13109 if (remote_supports_cond_tracepoints ())
35b1e5cc 13110 {
3df3a985
PFC
13111 agent_expr_up aexpr = gen_eval_for_expr (tpaddr,
13112 loc->cond.get ());
13113
13114 size_left = buf.size () - strlen (buf.data ());
13115
13116 ret = snprintf (buf.data () + strlen (buf.data ()),
13117 size_left, ":X%x,", aexpr->len);
13118
13119 if (ret < 0 || ret >= size_left)
a7f25a84 13120 error ("%s", err_msg);
3df3a985
PFC
13121
13122 size_left = buf.size () - strlen (buf.data ());
13123
13124 /* Two bytes to encode each aexpr byte, plus the terminating
13125 null byte. */
13126 if (aexpr->len * 2 + 1 > size_left)
a7f25a84 13127 error ("%s", err_msg);
3df3a985
PFC
13128
13129 pkt = buf.data () + strlen (buf.data ());
13130
b44ec619 13131 for (int ndx = 0; ndx < aexpr->len; ++ndx)
e8ba3115
YQ
13132 pkt = pack_hex_byte (pkt, aexpr->buf[ndx]);
13133 *pkt = '\0';
35b1e5cc 13134 }
e8ba3115
YQ
13135 else
13136 warning (_("Target does not support conditional tracepoints, "
13137 "ignoring tp %d cond"), b->number);
13138 }
35b1e5cc 13139
d9b3f62e 13140 if (b->commands || *default_collect)
3df3a985
PFC
13141 {
13142 size_left = buf.size () - strlen (buf.data ());
13143
13144 ret = snprintf (buf.data () + strlen (buf.data ()),
13145 size_left, "-");
13146
13147 if (ret < 0 || ret >= size_left)
a7f25a84 13148 error ("%s", err_msg);
3df3a985
PFC
13149 }
13150
13151 putpkt (buf.data ());
b6bb3468 13152 remote_get_noisy_reply ();
8d64371b 13153 if (strcmp (rs->buf.data (), "OK"))
e8ba3115 13154 error (_("Target does not support tracepoints."));
35b1e5cc 13155
e8ba3115 13156 /* do_single_steps (t); */
b44ec619
SM
13157 for (auto action_it = tdp_actions.begin ();
13158 action_it != tdp_actions.end (); action_it++)
e8ba3115 13159 {
b44ec619
SM
13160 QUIT; /* Allow user to bail out with ^C. */
13161
aa6f3694 13162 bool has_more = ((action_it + 1) != tdp_actions.end ()
b44ec619
SM
13163 || !stepping_actions.empty ());
13164
3df3a985
PFC
13165 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%c",
13166 b->number, addrbuf, /* address */
13167 action_it->c_str (),
13168 has_more ? '-' : 0);
13169
13170 if (ret < 0 || ret >= buf.size ())
a7f25a84 13171 error ("%s", err_msg);
3df3a985
PFC
13172
13173 putpkt (buf.data ());
b44ec619 13174 remote_get_noisy_reply ();
8d64371b 13175 if (strcmp (rs->buf.data (), "OK"))
b44ec619 13176 error (_("Error on target while setting tracepoints."));
e8ba3115 13177 }
409873ef 13178
05abfc39
PFC
13179 for (auto action_it = stepping_actions.begin ();
13180 action_it != stepping_actions.end (); action_it++)
13181 {
13182 QUIT; /* Allow user to bail out with ^C. */
13183
13184 bool is_first = action_it == stepping_actions.begin ();
aa6f3694 13185 bool has_more = (action_it + 1) != stepping_actions.end ();
05abfc39 13186
3df3a985
PFC
13187 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%s%s",
13188 b->number, addrbuf, /* address */
13189 is_first ? "S" : "",
13190 action_it->c_str (),
13191 has_more ? "-" : "");
13192
13193 if (ret < 0 || ret >= buf.size ())
a7f25a84 13194 error ("%s", err_msg);
3df3a985
PFC
13195
13196 putpkt (buf.data ());
05abfc39 13197 remote_get_noisy_reply ();
8d64371b 13198 if (strcmp (rs->buf.data (), "OK"))
05abfc39
PFC
13199 error (_("Error on target while setting tracepoints."));
13200 }
b44ec619 13201
4082afcc 13202 if (packet_support (PACKET_TracepointSource) == PACKET_ENABLE)
e8ba3115 13203 {
f00aae0f 13204 if (b->location != NULL)
409873ef 13205 {
3df3a985
PFC
13206 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
13207
13208 if (ret < 0 || ret >= buf.size ())
a7f25a84 13209 error ("%s", err_msg);
3df3a985 13210
f00aae0f 13211 encode_source_string (b->number, loc->address, "at",
d28cd78a 13212 event_location_to_string (b->location.get ()),
3df3a985
PFC
13213 buf.data () + strlen (buf.data ()),
13214 buf.size () - strlen (buf.data ()));
13215 putpkt (buf.data ());
b6bb3468 13216 remote_get_noisy_reply ();
8d64371b 13217 if (strcmp (rs->buf.data (), "OK"))
e8ba3115 13218 warning (_("Target does not support source download."));
409873ef 13219 }
e8ba3115
YQ
13220 if (b->cond_string)
13221 {
3df3a985
PFC
13222 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
13223
13224 if (ret < 0 || ret >= buf.size ())
a7f25a84 13225 error ("%s", err_msg);
3df3a985 13226
e8ba3115 13227 encode_source_string (b->number, loc->address,
3df3a985
PFC
13228 "cond", b->cond_string,
13229 buf.data () + strlen (buf.data ()),
13230 buf.size () - strlen (buf.data ()));
13231 putpkt (buf.data ());
b6bb3468 13232 remote_get_noisy_reply ();
8d64371b 13233 if (strcmp (rs->buf.data (), "OK"))
e8ba3115
YQ
13234 warning (_("Target does not support source download."));
13235 }
13236 remote_download_command_source (b->number, loc->address,
13237 breakpoint_commands (b));
35b1e5cc 13238 }
35b1e5cc
SS
13239}
13240
57810aa7 13241bool
f6ac5f3d 13242remote_target::can_download_tracepoint ()
1e4d1764 13243{
1e51243a
PA
13244 struct remote_state *rs = get_remote_state ();
13245 struct trace_status *ts;
13246 int status;
13247
13248 /* Don't try to install tracepoints until we've relocated our
13249 symbols, and fetched and merged the target's tracepoint list with
13250 ours. */
13251 if (rs->starting_up)
57810aa7 13252 return false;
1e51243a
PA
13253
13254 ts = current_trace_status ();
f6ac5f3d 13255 status = get_trace_status (ts);
1e4d1764
YQ
13256
13257 if (status == -1 || !ts->running_known || !ts->running)
57810aa7 13258 return false;
1e4d1764
YQ
13259
13260 /* If we are in a tracing experiment, but remote stub doesn't support
13261 installing tracepoint in trace, we have to return. */
13262 if (!remote_supports_install_in_trace ())
57810aa7 13263 return false;
1e4d1764 13264
57810aa7 13265 return true;
1e4d1764
YQ
13266}
13267
13268
f6ac5f3d
PA
13269void
13270remote_target::download_trace_state_variable (const trace_state_variable &tsv)
35b1e5cc
SS
13271{
13272 struct remote_state *rs = get_remote_state ();
00bf0b85 13273 char *p;
35b1e5cc 13274
8d64371b 13275 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDV:%x:%s:%x:",
c252925c
SM
13276 tsv.number, phex ((ULONGEST) tsv.initial_value, 8),
13277 tsv.builtin);
8d64371b
TT
13278 p = rs->buf.data () + strlen (rs->buf.data ());
13279 if ((p - rs->buf.data ()) + tsv.name.length () * 2
13280 >= get_remote_packet_size ())
00bf0b85 13281 error (_("Trace state variable name too long for tsv definition packet"));
c252925c 13282 p += 2 * bin2hex ((gdb_byte *) (tsv.name.data ()), p, tsv.name.length ());
00bf0b85 13283 *p++ = '\0';
35b1e5cc 13284 putpkt (rs->buf);
b6bb3468 13285 remote_get_noisy_reply ();
8d64371b 13286 if (rs->buf[0] == '\0')
ad91cd99 13287 error (_("Target does not support this command."));
8d64371b 13288 if (strcmp (rs->buf.data (), "OK") != 0)
ad91cd99 13289 error (_("Error on target while downloading trace state variable."));
35b1e5cc
SS
13290}
13291
f6ac5f3d
PA
13292void
13293remote_target::enable_tracepoint (struct bp_location *location)
d248b706
KY
13294{
13295 struct remote_state *rs = get_remote_state ();
d248b706 13296
8d64371b 13297 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTEnable:%x:%s",
53807e9f
TT
13298 location->owner->number,
13299 phex (location->address, sizeof (CORE_ADDR)));
d248b706 13300 putpkt (rs->buf);
b6bb3468 13301 remote_get_noisy_reply ();
8d64371b 13302 if (rs->buf[0] == '\0')
d248b706 13303 error (_("Target does not support enabling tracepoints while a trace run is ongoing."));
8d64371b 13304 if (strcmp (rs->buf.data (), "OK") != 0)
d248b706
KY
13305 error (_("Error on target while enabling tracepoint."));
13306}
13307
f6ac5f3d
PA
13308void
13309remote_target::disable_tracepoint (struct bp_location *location)
d248b706
KY
13310{
13311 struct remote_state *rs = get_remote_state ();
d248b706 13312
8d64371b 13313 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDisable:%x:%s",
53807e9f
TT
13314 location->owner->number,
13315 phex (location->address, sizeof (CORE_ADDR)));
d248b706 13316 putpkt (rs->buf);
b6bb3468 13317 remote_get_noisy_reply ();
8d64371b 13318 if (rs->buf[0] == '\0')
d248b706 13319 error (_("Target does not support disabling tracepoints while a trace run is ongoing."));
8d64371b 13320 if (strcmp (rs->buf.data (), "OK") != 0)
d248b706
KY
13321 error (_("Error on target while disabling tracepoint."));
13322}
13323
f6ac5f3d
PA
13324void
13325remote_target::trace_set_readonly_regions ()
35b1e5cc
SS
13326{
13327 asection *s;
13328 bfd_size_type size;
608bcef2 13329 bfd_vma vma;
35b1e5cc 13330 int anysecs = 0;
c2fa21f1 13331 int offset = 0;
35b1e5cc 13332
7e10abd1 13333 if (!current_program_space->exec_bfd ())
35b1e5cc
SS
13334 return; /* No information to give. */
13335
b6bb3468
PA
13336 struct remote_state *rs = get_remote_state ();
13337
8d64371b
TT
13338 strcpy (rs->buf.data (), "QTro");
13339 offset = strlen (rs->buf.data ());
7e10abd1 13340 for (s = current_program_space->exec_bfd ()->sections; s; s = s->next)
35b1e5cc
SS
13341 {
13342 char tmp1[40], tmp2[40];
c2fa21f1 13343 int sec_length;
35b1e5cc
SS
13344
13345 if ((s->flags & SEC_LOAD) == 0 ||
0df8b418 13346 /* (s->flags & SEC_CODE) == 0 || */
35b1e5cc
SS
13347 (s->flags & SEC_READONLY) == 0)
13348 continue;
13349
13350 anysecs = 1;
fd361982
AM
13351 vma = bfd_section_vma (s);
13352 size = bfd_section_size (s);
608bcef2
HZ
13353 sprintf_vma (tmp1, vma);
13354 sprintf_vma (tmp2, vma + size);
c2fa21f1 13355 sec_length = 1 + strlen (tmp1) + 1 + strlen (tmp2);
8d64371b 13356 if (offset + sec_length + 1 > rs->buf.size ())
c2fa21f1 13357 {
4082afcc 13358 if (packet_support (PACKET_qXfer_traceframe_info) != PACKET_ENABLE)
864ac8a7 13359 warning (_("\
c2fa21f1
HZ
13360Too many sections for read-only sections definition packet."));
13361 break;
13362 }
8d64371b 13363 xsnprintf (rs->buf.data () + offset, rs->buf.size () - offset, ":%s,%s",
bba74b36 13364 tmp1, tmp2);
c2fa21f1 13365 offset += sec_length;
35b1e5cc
SS
13366 }
13367 if (anysecs)
13368 {
b6bb3468 13369 putpkt (rs->buf);
8d64371b 13370 getpkt (&rs->buf, 0);
35b1e5cc
SS
13371 }
13372}
13373
f6ac5f3d
PA
13374void
13375remote_target::trace_start ()
35b1e5cc 13376{
b6bb3468
PA
13377 struct remote_state *rs = get_remote_state ();
13378
35b1e5cc 13379 putpkt ("QTStart");
b6bb3468 13380 remote_get_noisy_reply ();
8d64371b 13381 if (rs->buf[0] == '\0')
ad91cd99 13382 error (_("Target does not support this command."));
8d64371b
TT
13383 if (strcmp (rs->buf.data (), "OK") != 0)
13384 error (_("Bogus reply from target: %s"), rs->buf.data ());
35b1e5cc
SS
13385}
13386
f6ac5f3d
PA
13387int
13388remote_target::get_trace_status (struct trace_status *ts)
35b1e5cc 13389{
953b98d1 13390 /* Initialize it just to avoid a GCC false warning. */
f652de6f 13391 char *p = NULL;
bd3eecc3 13392 enum packet_result result;
b6bb3468 13393 struct remote_state *rs = get_remote_state ();
bd3eecc3 13394
4082afcc 13395 if (packet_support (PACKET_qTStatus) == PACKET_DISABLE)
bd3eecc3 13396 return -1;
a744cf53 13397
7b9a15e1 13398 /* FIXME we need to get register block size some other way. */
5cd63fda 13399 trace_regblock_size
9d6eea31 13400 = rs->get_remote_arch_state (target_gdbarch ())->sizeof_g_packet;
00bf0b85 13401
049dc89b
JK
13402 putpkt ("qTStatus");
13403
a70b8144 13404 try
67f41397 13405 {
b6bb3468 13406 p = remote_get_noisy_reply ();
67f41397 13407 }
230d2906 13408 catch (const gdb_exception_error &ex)
67f41397 13409 {
598d3636
JK
13410 if (ex.error != TARGET_CLOSE_ERROR)
13411 {
13412 exception_fprintf (gdb_stderr, ex, "qTStatus: ");
13413 return -1;
13414 }
eedc3f4f 13415 throw;
67f41397 13416 }
00bf0b85 13417
bd3eecc3
PA
13418 result = packet_ok (p, &remote_protocol_packets[PACKET_qTStatus]);
13419
00bf0b85 13420 /* If the remote target doesn't do tracing, flag it. */
bd3eecc3 13421 if (result == PACKET_UNKNOWN)
00bf0b85 13422 return -1;
35b1e5cc 13423
00bf0b85 13424 /* We're working with a live target. */
f5911ea1 13425 ts->filename = NULL;
00bf0b85 13426
00bf0b85 13427 if (*p++ != 'T')
8d64371b 13428 error (_("Bogus trace status reply from target: %s"), rs->buf.data ());
35b1e5cc 13429
84cebc4a
YQ
13430 /* Function 'parse_trace_status' sets default value of each field of
13431 'ts' at first, so we don't have to do it here. */
00bf0b85
SS
13432 parse_trace_status (p, ts);
13433
13434 return ts->running;
35b1e5cc
SS
13435}
13436
f6ac5f3d
PA
13437void
13438remote_target::get_tracepoint_status (struct breakpoint *bp,
13439 struct uploaded_tp *utp)
f196051f
SS
13440{
13441 struct remote_state *rs = get_remote_state ();
f196051f
SS
13442 char *reply;
13443 struct bp_location *loc;
13444 struct tracepoint *tp = (struct tracepoint *) bp;
bba74b36 13445 size_t size = get_remote_packet_size ();
f196051f
SS
13446
13447 if (tp)
13448 {
c1fc2657 13449 tp->hit_count = 0;
f196051f 13450 tp->traceframe_usage = 0;
c1fc2657 13451 for (loc = tp->loc; loc; loc = loc->next)
f196051f
SS
13452 {
13453 /* If the tracepoint was never downloaded, don't go asking for
13454 any status. */
13455 if (tp->number_on_target == 0)
13456 continue;
8d64371b 13457 xsnprintf (rs->buf.data (), size, "qTP:%x:%s", tp->number_on_target,
bba74b36 13458 phex_nz (loc->address, 0));
f196051f 13459 putpkt (rs->buf);
b6bb3468 13460 reply = remote_get_noisy_reply ();
f196051f
SS
13461 if (reply && *reply)
13462 {
13463 if (*reply == 'V')
13464 parse_tracepoint_status (reply + 1, bp, utp);
13465 }
13466 }
13467 }
13468 else if (utp)
13469 {
13470 utp->hit_count = 0;
13471 utp->traceframe_usage = 0;
8d64371b 13472 xsnprintf (rs->buf.data (), size, "qTP:%x:%s", utp->number,
bba74b36 13473 phex_nz (utp->addr, 0));
f196051f 13474 putpkt (rs->buf);
b6bb3468 13475 reply = remote_get_noisy_reply ();
f196051f
SS
13476 if (reply && *reply)
13477 {
13478 if (*reply == 'V')
13479 parse_tracepoint_status (reply + 1, bp, utp);
13480 }
13481 }
13482}
13483
f6ac5f3d
PA
13484void
13485remote_target::trace_stop ()
35b1e5cc 13486{
b6bb3468
PA
13487 struct remote_state *rs = get_remote_state ();
13488
35b1e5cc 13489 putpkt ("QTStop");
b6bb3468 13490 remote_get_noisy_reply ();
8d64371b 13491 if (rs->buf[0] == '\0')
ad91cd99 13492 error (_("Target does not support this command."));
8d64371b
TT
13493 if (strcmp (rs->buf.data (), "OK") != 0)
13494 error (_("Bogus reply from target: %s"), rs->buf.data ());
35b1e5cc
SS
13495}
13496
f6ac5f3d
PA
13497int
13498remote_target::trace_find (enum trace_find_type type, int num,
13499 CORE_ADDR addr1, CORE_ADDR addr2,
13500 int *tpp)
35b1e5cc
SS
13501{
13502 struct remote_state *rs = get_remote_state ();
8d64371b 13503 char *endbuf = rs->buf.data () + get_remote_packet_size ();
35b1e5cc
SS
13504 char *p, *reply;
13505 int target_frameno = -1, target_tracept = -1;
13506
e6e4e701
PA
13507 /* Lookups other than by absolute frame number depend on the current
13508 trace selected, so make sure it is correct on the remote end
13509 first. */
13510 if (type != tfind_number)
13511 set_remote_traceframe ();
13512
8d64371b 13513 p = rs->buf.data ();
35b1e5cc
SS
13514 strcpy (p, "QTFrame:");
13515 p = strchr (p, '\0');
13516 switch (type)
13517 {
13518 case tfind_number:
bba74b36 13519 xsnprintf (p, endbuf - p, "%x", num);
35b1e5cc
SS
13520 break;
13521 case tfind_pc:
bba74b36 13522 xsnprintf (p, endbuf - p, "pc:%s", phex_nz (addr1, 0));
35b1e5cc
SS
13523 break;
13524 case tfind_tp:
bba74b36 13525 xsnprintf (p, endbuf - p, "tdp:%x", num);
35b1e5cc
SS
13526 break;
13527 case tfind_range:
bba74b36
YQ
13528 xsnprintf (p, endbuf - p, "range:%s:%s", phex_nz (addr1, 0),
13529 phex_nz (addr2, 0));
35b1e5cc
SS
13530 break;
13531 case tfind_outside:
bba74b36
YQ
13532 xsnprintf (p, endbuf - p, "outside:%s:%s", phex_nz (addr1, 0),
13533 phex_nz (addr2, 0));
35b1e5cc
SS
13534 break;
13535 default:
9b20d036 13536 error (_("Unknown trace find type %d"), type);
35b1e5cc
SS
13537 }
13538
13539 putpkt (rs->buf);
b6bb3468 13540 reply = remote_get_noisy_reply ();
ad91cd99
PA
13541 if (*reply == '\0')
13542 error (_("Target does not support this command."));
35b1e5cc
SS
13543
13544 while (reply && *reply)
13545 switch (*reply)
13546 {
13547 case 'F':
f197e0f1
VP
13548 p = ++reply;
13549 target_frameno = (int) strtol (p, &reply, 16);
13550 if (reply == p)
13551 error (_("Unable to parse trace frame number"));
e6e4e701
PA
13552 /* Don't update our remote traceframe number cache on failure
13553 to select a remote traceframe. */
f197e0f1
VP
13554 if (target_frameno == -1)
13555 return -1;
35b1e5cc
SS
13556 break;
13557 case 'T':
f197e0f1
VP
13558 p = ++reply;
13559 target_tracept = (int) strtol (p, &reply, 16);
13560 if (reply == p)
13561 error (_("Unable to parse tracepoint number"));
35b1e5cc
SS
13562 break;
13563 case 'O': /* "OK"? */
13564 if (reply[1] == 'K' && reply[2] == '\0')
13565 reply += 2;
13566 else
13567 error (_("Bogus reply from target: %s"), reply);
13568 break;
13569 default:
13570 error (_("Bogus reply from target: %s"), reply);
13571 }
13572 if (tpp)
13573 *tpp = target_tracept;
e6e4e701 13574
262e1174 13575 rs->remote_traceframe_number = target_frameno;
35b1e5cc
SS
13576 return target_frameno;
13577}
13578
57810aa7 13579bool
f6ac5f3d 13580remote_target::get_trace_state_variable_value (int tsvnum, LONGEST *val)
35b1e5cc
SS
13581{
13582 struct remote_state *rs = get_remote_state ();
13583 char *reply;
13584 ULONGEST uval;
13585
e6e4e701
PA
13586 set_remote_traceframe ();
13587
8d64371b 13588 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTV:%x", tsvnum);
35b1e5cc 13589 putpkt (rs->buf);
b6bb3468 13590 reply = remote_get_noisy_reply ();
35b1e5cc
SS
13591 if (reply && *reply)
13592 {
13593 if (*reply == 'V')
13594 {
13595 unpack_varlen_hex (reply + 1, &uval);
13596 *val = (LONGEST) uval;
57810aa7 13597 return true;
35b1e5cc
SS
13598 }
13599 }
57810aa7 13600 return false;
35b1e5cc
SS
13601}
13602
f6ac5f3d
PA
13603int
13604remote_target::save_trace_data (const char *filename)
00bf0b85
SS
13605{
13606 struct remote_state *rs = get_remote_state ();
13607 char *p, *reply;
13608
8d64371b 13609 p = rs->buf.data ();
00bf0b85
SS
13610 strcpy (p, "QTSave:");
13611 p += strlen (p);
8d64371b
TT
13612 if ((p - rs->buf.data ()) + strlen (filename) * 2
13613 >= get_remote_packet_size ())
00bf0b85 13614 error (_("Remote file name too long for trace save packet"));
9f1b45b0 13615 p += 2 * bin2hex ((gdb_byte *) filename, p, strlen (filename));
00bf0b85
SS
13616 *p++ = '\0';
13617 putpkt (rs->buf);
b6bb3468 13618 reply = remote_get_noisy_reply ();
d6c5869f 13619 if (*reply == '\0')
ad91cd99
PA
13620 error (_("Target does not support this command."));
13621 if (strcmp (reply, "OK") != 0)
13622 error (_("Bogus reply from target: %s"), reply);
00bf0b85
SS
13623 return 0;
13624}
13625
13626/* This is basically a memory transfer, but needs to be its own packet
13627 because we don't know how the target actually organizes its trace
13628 memory, plus we want to be able to ask for as much as possible, but
13629 not be unhappy if we don't get as much as we ask for. */
13630
f6ac5f3d
PA
13631LONGEST
13632remote_target::get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len)
00bf0b85
SS
13633{
13634 struct remote_state *rs = get_remote_state ();
13635 char *reply;
13636 char *p;
13637 int rslt;
13638
8d64371b 13639 p = rs->buf.data ();
00bf0b85
SS
13640 strcpy (p, "qTBuffer:");
13641 p += strlen (p);
13642 p += hexnumstr (p, offset);
13643 *p++ = ',';
13644 p += hexnumstr (p, len);
13645 *p++ = '\0';
13646
13647 putpkt (rs->buf);
b6bb3468 13648 reply = remote_get_noisy_reply ();
00bf0b85
SS
13649 if (reply && *reply)
13650 {
13651 /* 'l' by itself means we're at the end of the buffer and
13652 there is nothing more to get. */
13653 if (*reply == 'l')
13654 return 0;
13655
13656 /* Convert the reply into binary. Limit the number of bytes to
13657 convert according to our passed-in buffer size, rather than
13658 what was returned in the packet; if the target is
13659 unexpectedly generous and gives us a bigger reply than we
13660 asked for, we don't want to crash. */
b6bb3468 13661 rslt = hex2bin (reply, buf, len);
00bf0b85
SS
13662 return rslt;
13663 }
13664
13665 /* Something went wrong, flag as an error. */
13666 return -1;
13667}
13668
f6ac5f3d
PA
13669void
13670remote_target::set_disconnected_tracing (int val)
35b1e5cc
SS
13671{
13672 struct remote_state *rs = get_remote_state ();
13673
4082afcc 13674 if (packet_support (PACKET_DisconnectedTracing_feature) == PACKET_ENABLE)
33da3f1c 13675 {
ad91cd99
PA
13676 char *reply;
13677
8d64371b
TT
13678 xsnprintf (rs->buf.data (), get_remote_packet_size (),
13679 "QTDisconnected:%x", val);
33da3f1c 13680 putpkt (rs->buf);
b6bb3468 13681 reply = remote_get_noisy_reply ();
ad91cd99 13682 if (*reply == '\0')
33da3f1c 13683 error (_("Target does not support this command."));
ad91cd99 13684 if (strcmp (reply, "OK") != 0)
dda83cd7 13685 error (_("Bogus reply from target: %s"), reply);
33da3f1c
SS
13686 }
13687 else if (val)
13688 warning (_("Target does not support disconnected tracing."));
35b1e5cc
SS
13689}
13690
f6ac5f3d
PA
13691int
13692remote_target::core_of_thread (ptid_t ptid)
dc146f7c 13693{
5b6d1e4f 13694 thread_info *info = find_thread_ptid (this, ptid);
a744cf53 13695
7aabaf9d
SM
13696 if (info != NULL && info->priv != NULL)
13697 return get_remote_thread_info (info)->core;
13698
dc146f7c
VP
13699 return -1;
13700}
13701
f6ac5f3d
PA
13702void
13703remote_target::set_circular_trace_buffer (int val)
4daf5ac0
SS
13704{
13705 struct remote_state *rs = get_remote_state ();
ad91cd99 13706 char *reply;
4daf5ac0 13707
8d64371b
TT
13708 xsnprintf (rs->buf.data (), get_remote_packet_size (),
13709 "QTBuffer:circular:%x", val);
4daf5ac0 13710 putpkt (rs->buf);
b6bb3468 13711 reply = remote_get_noisy_reply ();
ad91cd99 13712 if (*reply == '\0')
4daf5ac0 13713 error (_("Target does not support this command."));
ad91cd99
PA
13714 if (strcmp (reply, "OK") != 0)
13715 error (_("Bogus reply from target: %s"), reply);
4daf5ac0
SS
13716}
13717
f6ac5f3d
PA
13718traceframe_info_up
13719remote_target::traceframe_info ()
b3b9301e 13720{
9018be22 13721 gdb::optional<gdb::char_vector> text
8b88a78e 13722 = target_read_stralloc (current_top_target (), TARGET_OBJECT_TRACEFRAME_INFO,
b7b030ad 13723 NULL);
9018be22
SM
13724 if (text)
13725 return parse_traceframe_info (text->data ());
b3b9301e
PA
13726
13727 return NULL;
13728}
13729
405f8e94
SS
13730/* Handle the qTMinFTPILen packet. Returns the minimum length of
13731 instruction on which a fast tracepoint may be placed. Returns -1
13732 if the packet is not supported, and 0 if the minimum instruction
13733 length is unknown. */
13734
f6ac5f3d
PA
13735int
13736remote_target::get_min_fast_tracepoint_insn_len ()
405f8e94
SS
13737{
13738 struct remote_state *rs = get_remote_state ();
13739 char *reply;
13740
e886a173
PA
13741 /* If we're not debugging a process yet, the IPA can't be
13742 loaded. */
55f6301a 13743 if (!target_has_execution ())
e886a173
PA
13744 return 0;
13745
13746 /* Make sure the remote is pointing at the right process. */
13747 set_general_process ();
13748
8d64371b 13749 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTMinFTPILen");
405f8e94 13750 putpkt (rs->buf);
b6bb3468 13751 reply = remote_get_noisy_reply ();
405f8e94
SS
13752 if (*reply == '\0')
13753 return -1;
13754 else
13755 {
13756 ULONGEST min_insn_len;
13757
13758 unpack_varlen_hex (reply, &min_insn_len);
13759
13760 return (int) min_insn_len;
13761 }
13762}
13763
f6ac5f3d
PA
13764void
13765remote_target::set_trace_buffer_size (LONGEST val)
f6f899bf 13766{
4082afcc 13767 if (packet_support (PACKET_QTBuffer_size) != PACKET_DISABLE)
f6f899bf
HAQ
13768 {
13769 struct remote_state *rs = get_remote_state ();
8d64371b
TT
13770 char *buf = rs->buf.data ();
13771 char *endbuf = buf + get_remote_packet_size ();
f6f899bf
HAQ
13772 enum packet_result result;
13773
13774 gdb_assert (val >= 0 || val == -1);
13775 buf += xsnprintf (buf, endbuf - buf, "QTBuffer:size:");
13776 /* Send -1 as literal "-1" to avoid host size dependency. */
13777 if (val < 0)
13778 {
13779 *buf++ = '-';
dda83cd7 13780 buf += hexnumstr (buf, (ULONGEST) -val);
f6f899bf
HAQ
13781 }
13782 else
13783 buf += hexnumstr (buf, (ULONGEST) val);
13784
13785 putpkt (rs->buf);
b6bb3468 13786 remote_get_noisy_reply ();
f6f899bf
HAQ
13787 result = packet_ok (rs->buf,
13788 &remote_protocol_packets[PACKET_QTBuffer_size]);
13789
13790 if (result != PACKET_OK)
8d64371b 13791 warning (_("Bogus reply from target: %s"), rs->buf.data ());
f6f899bf
HAQ
13792 }
13793}
13794
57810aa7 13795bool
f6ac5f3d
PA
13796remote_target::set_trace_notes (const char *user, const char *notes,
13797 const char *stop_notes)
f196051f
SS
13798{
13799 struct remote_state *rs = get_remote_state ();
13800 char *reply;
8d64371b
TT
13801 char *buf = rs->buf.data ();
13802 char *endbuf = buf + get_remote_packet_size ();
f196051f
SS
13803 int nbytes;
13804
13805 buf += xsnprintf (buf, endbuf - buf, "QTNotes:");
13806 if (user)
13807 {
13808 buf += xsnprintf (buf, endbuf - buf, "user:");
9f1b45b0 13809 nbytes = bin2hex ((gdb_byte *) user, buf, strlen (user));
f196051f
SS
13810 buf += 2 * nbytes;
13811 *buf++ = ';';
13812 }
13813 if (notes)
13814 {
13815 buf += xsnprintf (buf, endbuf - buf, "notes:");
9f1b45b0 13816 nbytes = bin2hex ((gdb_byte *) notes, buf, strlen (notes));
f196051f
SS
13817 buf += 2 * nbytes;
13818 *buf++ = ';';
13819 }
13820 if (stop_notes)
13821 {
13822 buf += xsnprintf (buf, endbuf - buf, "tstop:");
9f1b45b0 13823 nbytes = bin2hex ((gdb_byte *) stop_notes, buf, strlen (stop_notes));
f196051f
SS
13824 buf += 2 * nbytes;
13825 *buf++ = ';';
13826 }
13827 /* Ensure the buffer is terminated. */
13828 *buf = '\0';
13829
13830 putpkt (rs->buf);
b6bb3468 13831 reply = remote_get_noisy_reply ();
f196051f 13832 if (*reply == '\0')
57810aa7 13833 return false;
f196051f
SS
13834
13835 if (strcmp (reply, "OK") != 0)
13836 error (_("Bogus reply from target: %s"), reply);
13837
57810aa7 13838 return true;
f196051f
SS
13839}
13840
57810aa7
PA
13841bool
13842remote_target::use_agent (bool use)
d1feda86 13843{
4082afcc 13844 if (packet_support (PACKET_QAgent) != PACKET_DISABLE)
d1feda86
YQ
13845 {
13846 struct remote_state *rs = get_remote_state ();
13847
13848 /* If the stub supports QAgent. */
8d64371b 13849 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QAgent:%d", use);
d1feda86 13850 putpkt (rs->buf);
8d64371b 13851 getpkt (&rs->buf, 0);
d1feda86 13852
8d64371b 13853 if (strcmp (rs->buf.data (), "OK") == 0)
d1feda86 13854 {
f6ac5f3d 13855 ::use_agent = use;
57810aa7 13856 return true;
d1feda86
YQ
13857 }
13858 }
13859
57810aa7 13860 return false;
d1feda86
YQ
13861}
13862
57810aa7 13863bool
f6ac5f3d 13864remote_target::can_use_agent ()
d1feda86 13865{
4082afcc 13866 return (packet_support (PACKET_QAgent) != PACKET_DISABLE);
d1feda86
YQ
13867}
13868
9accd112
MM
13869struct btrace_target_info
13870{
13871 /* The ptid of the traced thread. */
13872 ptid_t ptid;
f4abbc16
MM
13873
13874 /* The obtained branch trace configuration. */
13875 struct btrace_config conf;
9accd112
MM
13876};
13877
f4abbc16
MM
13878/* Reset our idea of our target's btrace configuration. */
13879
13880static void
6b8edb51 13881remote_btrace_reset (remote_state *rs)
f4abbc16 13882{
f4abbc16
MM
13883 memset (&rs->btrace_config, 0, sizeof (rs->btrace_config));
13884}
13885
f4abbc16
MM
13886/* Synchronize the configuration with the target. */
13887
6b8edb51
PA
13888void
13889remote_target::btrace_sync_conf (const btrace_config *conf)
f4abbc16 13890{
d33501a5
MM
13891 struct packet_config *packet;
13892 struct remote_state *rs;
13893 char *buf, *pos, *endbuf;
13894
13895 rs = get_remote_state ();
8d64371b 13896 buf = rs->buf.data ();
d33501a5
MM
13897 endbuf = buf + get_remote_packet_size ();
13898
13899 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_bts_size];
13900 if (packet_config_support (packet) == PACKET_ENABLE
13901 && conf->bts.size != rs->btrace_config.bts.size)
13902 {
13903 pos = buf;
13904 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
dda83cd7 13905 conf->bts.size);
d33501a5
MM
13906
13907 putpkt (buf);
8d64371b 13908 getpkt (&rs->buf, 0);
d33501a5
MM
13909
13910 if (packet_ok (buf, packet) == PACKET_ERROR)
13911 {
13912 if (buf[0] == 'E' && buf[1] == '.')
13913 error (_("Failed to configure the BTS buffer size: %s"), buf + 2);
13914 else
13915 error (_("Failed to configure the BTS buffer size."));
13916 }
13917
13918 rs->btrace_config.bts.size = conf->bts.size;
13919 }
b20a6524
MM
13920
13921 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_pt_size];
13922 if (packet_config_support (packet) == PACKET_ENABLE
13923 && conf->pt.size != rs->btrace_config.pt.size)
13924 {
13925 pos = buf;
13926 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
dda83cd7 13927 conf->pt.size);
b20a6524
MM
13928
13929 putpkt (buf);
8d64371b 13930 getpkt (&rs->buf, 0);
b20a6524
MM
13931
13932 if (packet_ok (buf, packet) == PACKET_ERROR)
13933 {
13934 if (buf[0] == 'E' && buf[1] == '.')
13935 error (_("Failed to configure the trace buffer size: %s"), buf + 2);
13936 else
13937 error (_("Failed to configure the trace buffer size."));
13938 }
13939
13940 rs->btrace_config.pt.size = conf->pt.size;
13941 }
f4abbc16
MM
13942}
13943
13944/* Read the current thread's btrace configuration from the target and
13945 store it into CONF. */
13946
13947static void
13948btrace_read_config (struct btrace_config *conf)
13949{
9018be22 13950 gdb::optional<gdb::char_vector> xml
8b88a78e 13951 = target_read_stralloc (current_top_target (), TARGET_OBJECT_BTRACE_CONF, "");
9018be22
SM
13952 if (xml)
13953 parse_xml_btrace_conf (conf, xml->data ());
f4abbc16
MM
13954}
13955
c0272db5
TW
13956/* Maybe reopen target btrace. */
13957
6b8edb51
PA
13958void
13959remote_target::remote_btrace_maybe_reopen ()
c0272db5
TW
13960{
13961 struct remote_state *rs = get_remote_state ();
c0272db5 13962 int btrace_target_pushed = 0;
15766370 13963#if !defined (HAVE_LIBIPT)
c0272db5 13964 int warned = 0;
15766370 13965#endif
c0272db5 13966
aedbe3bb
CM
13967 /* Don't bother walking the entirety of the remote thread list when
13968 we know the feature isn't supported by the remote. */
13969 if (packet_support (PACKET_qXfer_btrace_conf) != PACKET_ENABLE)
13970 return;
13971
5ed8105e
PA
13972 scoped_restore_current_thread restore_thread;
13973
5b6d1e4f 13974 for (thread_info *tp : all_non_exited_threads (this))
c0272db5
TW
13975 {
13976 set_general_thread (tp->ptid);
13977
13978 memset (&rs->btrace_config, 0x00, sizeof (struct btrace_config));
13979 btrace_read_config (&rs->btrace_config);
13980
13981 if (rs->btrace_config.format == BTRACE_FORMAT_NONE)
13982 continue;
13983
13984#if !defined (HAVE_LIBIPT)
13985 if (rs->btrace_config.format == BTRACE_FORMAT_PT)
13986 {
13987 if (!warned)
13988 {
13989 warned = 1;
c4e12631
MM
13990 warning (_("Target is recording using Intel Processor Trace "
13991 "but support was disabled at compile time."));
c0272db5
TW
13992 }
13993
13994 continue;
13995 }
13996#endif /* !defined (HAVE_LIBIPT) */
13997
13998 /* Push target, once, but before anything else happens. This way our
13999 changes to the threads will be cleaned up by unpushing the target
14000 in case btrace_read_config () throws. */
14001 if (!btrace_target_pushed)
14002 {
14003 btrace_target_pushed = 1;
14004 record_btrace_push_target ();
14005 printf_filtered (_("Target is recording using %s.\n"),
14006 btrace_format_string (rs->btrace_config.format));
14007 }
14008
14009 tp->btrace.target = XCNEW (struct btrace_target_info);
14010 tp->btrace.target->ptid = tp->ptid;
14011 tp->btrace.target->conf = rs->btrace_config;
14012 }
c0272db5
TW
14013}
14014
9accd112
MM
14015/* Enable branch tracing. */
14016
f6ac5f3d
PA
14017struct btrace_target_info *
14018remote_target::enable_btrace (ptid_t ptid, const struct btrace_config *conf)
9accd112
MM
14019{
14020 struct btrace_target_info *tinfo = NULL;
b20a6524 14021 struct packet_config *packet = NULL;
9accd112 14022 struct remote_state *rs = get_remote_state ();
8d64371b
TT
14023 char *buf = rs->buf.data ();
14024 char *endbuf = buf + get_remote_packet_size ();
9accd112 14025
b20a6524
MM
14026 switch (conf->format)
14027 {
14028 case BTRACE_FORMAT_BTS:
14029 packet = &remote_protocol_packets[PACKET_Qbtrace_bts];
14030 break;
14031
14032 case BTRACE_FORMAT_PT:
14033 packet = &remote_protocol_packets[PACKET_Qbtrace_pt];
14034 break;
14035 }
14036
14037 if (packet == NULL || packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
14038 error (_("Target does not support branch tracing."));
14039
f4abbc16
MM
14040 btrace_sync_conf (conf);
14041
9accd112
MM
14042 set_general_thread (ptid);
14043
14044 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
14045 putpkt (rs->buf);
8d64371b 14046 getpkt (&rs->buf, 0);
9accd112
MM
14047
14048 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
14049 {
14050 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
14051 error (_("Could not enable branch tracing for %s: %s"),
a068643d 14052 target_pid_to_str (ptid).c_str (), &rs->buf[2]);
9accd112
MM
14053 else
14054 error (_("Could not enable branch tracing for %s."),
a068643d 14055 target_pid_to_str (ptid).c_str ());
9accd112
MM
14056 }
14057
8d749320 14058 tinfo = XCNEW (struct btrace_target_info);
9accd112
MM
14059 tinfo->ptid = ptid;
14060
f4abbc16
MM
14061 /* If we fail to read the configuration, we lose some information, but the
14062 tracing itself is not impacted. */
a70b8144 14063 try
492d29ea
PA
14064 {
14065 btrace_read_config (&tinfo->conf);
14066 }
230d2906 14067 catch (const gdb_exception_error &err)
492d29ea
PA
14068 {
14069 if (err.message != NULL)
3d6e9d23 14070 warning ("%s", err.what ());
492d29ea 14071 }
f4abbc16 14072
9accd112
MM
14073 return tinfo;
14074}
14075
14076/* Disable branch tracing. */
14077
f6ac5f3d
PA
14078void
14079remote_target::disable_btrace (struct btrace_target_info *tinfo)
9accd112
MM
14080{
14081 struct packet_config *packet = &remote_protocol_packets[PACKET_Qbtrace_off];
14082 struct remote_state *rs = get_remote_state ();
8d64371b
TT
14083 char *buf = rs->buf.data ();
14084 char *endbuf = buf + get_remote_packet_size ();
9accd112 14085
4082afcc 14086 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
14087 error (_("Target does not support branch tracing."));
14088
14089 set_general_thread (tinfo->ptid);
14090
14091 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
14092 putpkt (rs->buf);
8d64371b 14093 getpkt (&rs->buf, 0);
9accd112
MM
14094
14095 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
14096 {
14097 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
14098 error (_("Could not disable branch tracing for %s: %s"),
a068643d 14099 target_pid_to_str (tinfo->ptid).c_str (), &rs->buf[2]);
9accd112
MM
14100 else
14101 error (_("Could not disable branch tracing for %s."),
a068643d 14102 target_pid_to_str (tinfo->ptid).c_str ());
9accd112
MM
14103 }
14104
14105 xfree (tinfo);
14106}
14107
14108/* Teardown branch tracing. */
14109
f6ac5f3d
PA
14110void
14111remote_target::teardown_btrace (struct btrace_target_info *tinfo)
9accd112
MM
14112{
14113 /* We must not talk to the target during teardown. */
14114 xfree (tinfo);
14115}
14116
14117/* Read the branch trace. */
14118
f6ac5f3d
PA
14119enum btrace_error
14120remote_target::read_btrace (struct btrace_data *btrace,
14121 struct btrace_target_info *tinfo,
14122 enum btrace_read_type type)
9accd112
MM
14123{
14124 struct packet_config *packet = &remote_protocol_packets[PACKET_qXfer_btrace];
9accd112 14125 const char *annex;
9accd112 14126
4082afcc 14127 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
14128 error (_("Target does not support branch tracing."));
14129
14130#if !defined(HAVE_LIBEXPAT)
14131 error (_("Cannot process branch tracing result. XML parsing not supported."));
14132#endif
14133
14134 switch (type)
14135 {
864089d2 14136 case BTRACE_READ_ALL:
9accd112
MM
14137 annex = "all";
14138 break;
864089d2 14139 case BTRACE_READ_NEW:
9accd112
MM
14140 annex = "new";
14141 break;
969c39fb
MM
14142 case BTRACE_READ_DELTA:
14143 annex = "delta";
14144 break;
9accd112
MM
14145 default:
14146 internal_error (__FILE__, __LINE__,
14147 _("Bad branch tracing read type: %u."),
14148 (unsigned int) type);
14149 }
14150
9018be22 14151 gdb::optional<gdb::char_vector> xml
8b88a78e 14152 = target_read_stralloc (current_top_target (), TARGET_OBJECT_BTRACE, annex);
9018be22 14153 if (!xml)
969c39fb 14154 return BTRACE_ERR_UNKNOWN;
9accd112 14155
9018be22 14156 parse_xml_btrace (btrace, xml->data ());
9accd112 14157
969c39fb 14158 return BTRACE_ERR_NONE;
9accd112
MM
14159}
14160
f6ac5f3d
PA
14161const struct btrace_config *
14162remote_target::btrace_conf (const struct btrace_target_info *tinfo)
f4abbc16
MM
14163{
14164 return &tinfo->conf;
14165}
14166
57810aa7 14167bool
f6ac5f3d 14168remote_target::augmented_libraries_svr4_read ()
ced63ec0 14169{
4082afcc
PA
14170 return (packet_support (PACKET_augmented_libraries_svr4_read_feature)
14171 == PACKET_ENABLE);
ced63ec0
GB
14172}
14173
9dd130a0
TT
14174/* Implementation of to_load. */
14175
f6ac5f3d
PA
14176void
14177remote_target::load (const char *name, int from_tty)
9dd130a0
TT
14178{
14179 generic_load (name, from_tty);
14180}
14181
c78fa86a
GB
14182/* Accepts an integer PID; returns a string representing a file that
14183 can be opened on the remote side to get the symbols for the child
14184 process. Returns NULL if the operation is not supported. */
14185
f6ac5f3d
PA
14186char *
14187remote_target::pid_to_exec_file (int pid)
c78fa86a 14188{
9018be22 14189 static gdb::optional<gdb::char_vector> filename;
835205d0 14190 char *annex = NULL;
c78fa86a
GB
14191
14192 if (packet_support (PACKET_qXfer_exec_file) != PACKET_ENABLE)
14193 return NULL;
14194
5b6d1e4f 14195 inferior *inf = find_inferior_pid (this, pid);
835205d0
GB
14196 if (inf == NULL)
14197 internal_error (__FILE__, __LINE__,
14198 _("not currently attached to process %d"), pid);
14199
14200 if (!inf->fake_pid_p)
14201 {
14202 const int annex_size = 9;
14203
224c3ddb 14204 annex = (char *) alloca (annex_size);
835205d0
GB
14205 xsnprintf (annex, annex_size, "%x", pid);
14206 }
14207
8b88a78e 14208 filename = target_read_stralloc (current_top_target (),
c78fa86a
GB
14209 TARGET_OBJECT_EXEC_FILE, annex);
14210
9018be22 14211 return filename ? filename->data () : nullptr;
c78fa86a
GB
14212}
14213
750ce8d1
YQ
14214/* Implement the to_can_do_single_step target_ops method. */
14215
f6ac5f3d
PA
14216int
14217remote_target::can_do_single_step ()
750ce8d1
YQ
14218{
14219 /* We can only tell whether target supports single step or not by
14220 supported s and S vCont actions if the stub supports vContSupported
14221 feature. If the stub doesn't support vContSupported feature,
14222 we have conservatively to think target doesn't supports single
14223 step. */
14224 if (packet_support (PACKET_vContSupported) == PACKET_ENABLE)
14225 {
14226 struct remote_state *rs = get_remote_state ();
14227
14228 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6b8edb51 14229 remote_vcont_probe ();
750ce8d1
YQ
14230
14231 return rs->supports_vCont.s && rs->supports_vCont.S;
14232 }
14233 else
14234 return 0;
14235}
14236
3a00c802
PA
14237/* Implementation of the to_execution_direction method for the remote
14238 target. */
14239
f6ac5f3d
PA
14240enum exec_direction_kind
14241remote_target::execution_direction ()
3a00c802
PA
14242{
14243 struct remote_state *rs = get_remote_state ();
14244
14245 return rs->last_resume_exec_dir;
14246}
14247
f6327dcb
KB
14248/* Return pointer to the thread_info struct which corresponds to
14249 THREAD_HANDLE (having length HANDLE_LEN). */
14250
f6ac5f3d
PA
14251thread_info *
14252remote_target::thread_handle_to_thread_info (const gdb_byte *thread_handle,
14253 int handle_len,
14254 inferior *inf)
f6327dcb 14255{
5b6d1e4f 14256 for (thread_info *tp : all_non_exited_threads (this))
f6327dcb 14257 {
7aabaf9d 14258 remote_thread_info *priv = get_remote_thread_info (tp);
f6327dcb
KB
14259
14260 if (tp->inf == inf && priv != NULL)
dda83cd7 14261 {
7aabaf9d 14262 if (handle_len != priv->thread_handle.size ())
f6327dcb 14263 error (_("Thread handle size mismatch: %d vs %zu (from remote)"),
dda83cd7 14264 handle_len, priv->thread_handle.size ());
7aabaf9d 14265 if (memcmp (thread_handle, priv->thread_handle.data (),
dda83cd7 14266 handle_len) == 0)
f6327dcb
KB
14267 return tp;
14268 }
14269 }
14270
14271 return NULL;
14272}
14273
3d6c6204
KB
14274gdb::byte_vector
14275remote_target::thread_info_to_thread_handle (struct thread_info *tp)
14276{
14277 remote_thread_info *priv = get_remote_thread_info (tp);
14278 return priv->thread_handle;
14279}
14280
57810aa7 14281bool
f6ac5f3d 14282remote_target::can_async_p ()
6426a772 14283{
5d93a237
TT
14284 struct remote_state *rs = get_remote_state ();
14285
3015c064
SM
14286 /* We don't go async if the user has explicitly prevented it with the
14287 "maint set target-async" command. */
c6ebd6cf 14288 if (!target_async_permitted)
57810aa7 14289 return false;
75c99385 14290
23860348 14291 /* We're async whenever the serial device is. */
5d93a237 14292 return serial_can_async_p (rs->remote_desc);
6426a772
JM
14293}
14294
57810aa7 14295bool
f6ac5f3d 14296remote_target::is_async_p ()
6426a772 14297{
5d93a237
TT
14298 struct remote_state *rs = get_remote_state ();
14299
c6ebd6cf 14300 if (!target_async_permitted)
75c99385 14301 /* We only enable async when the user specifically asks for it. */
57810aa7 14302 return false;
75c99385 14303
23860348 14304 /* We're async whenever the serial device is. */
5d93a237 14305 return serial_is_async_p (rs->remote_desc);
6426a772
JM
14306}
14307
2acceee2
JM
14308/* Pass the SERIAL event on and up to the client. One day this code
14309 will be able to delay notifying the client of an event until the
23860348 14310 point where an entire packet has been received. */
2acceee2 14311
2acceee2
JM
14312static serial_event_ftype remote_async_serial_handler;
14313
6426a772 14314static void
819cc324 14315remote_async_serial_handler (struct serial *scb, void *context)
6426a772 14316{
2acceee2
JM
14317 /* Don't propogate error information up to the client. Instead let
14318 the client find out about the error by querying the target. */
b1a35af2 14319 inferior_event_handler (INF_REG_EVENT);
2acceee2
JM
14320}
14321
74531fed
PA
14322static void
14323remote_async_inferior_event_handler (gdb_client_data data)
14324{
b1a35af2 14325 inferior_event_handler (INF_REG_EVENT);
96118d11
PA
14326
14327 remote_target *remote = (remote_target *) data;
14328 remote_state *rs = remote->get_remote_state ();
14329
14330 /* inferior_event_handler may have consumed an event pending on the
14331 infrun side without calling target_wait on the REMOTE target, or
14332 may have pulled an event out of a different target. Keep trying
14333 for this remote target as long it still has either pending events
14334 or unacknowledged notifications. */
14335
14336 if (rs->notif_state->pending_event[notif_client_stop.id] != NULL
14337 || !rs->stop_reply_queue.empty ())
14338 mark_async_event_handler (rs->remote_async_inferior_event_token);
74531fed
PA
14339}
14340
5b6d1e4f
PA
14341int
14342remote_target::async_wait_fd ()
14343{
14344 struct remote_state *rs = get_remote_state ();
14345 return rs->remote_desc->fd;
14346}
14347
f6ac5f3d
PA
14348void
14349remote_target::async (int enable)
2acceee2 14350{
5d93a237
TT
14351 struct remote_state *rs = get_remote_state ();
14352
6a3753b3 14353 if (enable)
2acceee2 14354 {
88b496c3 14355 serial_async (rs->remote_desc, remote_async_serial_handler, rs);
b7d2e916
PA
14356
14357 /* If there are pending events in the stop reply queue tell the
14358 event loop to process them. */
953edf2b 14359 if (!rs->stop_reply_queue.empty ())
6b8edb51 14360 mark_async_event_handler (rs->remote_async_inferior_event_token);
6efcd9a8
PA
14361 /* For simplicity, below we clear the pending events token
14362 without remembering whether it is marked, so here we always
14363 mark it. If there's actually no pending notification to
14364 process, this ends up being a no-op (other than a spurious
14365 event-loop wakeup). */
14366 if (target_is_non_stop_p ())
14367 mark_async_event_handler (rs->notif_state->get_pending_events_token);
2acceee2
JM
14368 }
14369 else
b7d2e916
PA
14370 {
14371 serial_async (rs->remote_desc, NULL, NULL);
6efcd9a8
PA
14372 /* If the core is disabling async, it doesn't want to be
14373 disturbed with target events. Clear all async event sources
14374 too. */
6b8edb51 14375 clear_async_event_handler (rs->remote_async_inferior_event_token);
6efcd9a8
PA
14376 if (target_is_non_stop_p ())
14377 clear_async_event_handler (rs->notif_state->get_pending_events_token);
b7d2e916 14378 }
6426a772
JM
14379}
14380
65706a29
PA
14381/* Implementation of the to_thread_events method. */
14382
f6ac5f3d
PA
14383void
14384remote_target::thread_events (int enable)
65706a29
PA
14385{
14386 struct remote_state *rs = get_remote_state ();
14387 size_t size = get_remote_packet_size ();
65706a29
PA
14388
14389 if (packet_support (PACKET_QThreadEvents) == PACKET_DISABLE)
14390 return;
14391
8d64371b 14392 xsnprintf (rs->buf.data (), size, "QThreadEvents:%x", enable ? 1 : 0);
65706a29 14393 putpkt (rs->buf);
8d64371b 14394 getpkt (&rs->buf, 0);
65706a29
PA
14395
14396 switch (packet_ok (rs->buf,
14397 &remote_protocol_packets[PACKET_QThreadEvents]))
14398 {
14399 case PACKET_OK:
8d64371b
TT
14400 if (strcmp (rs->buf.data (), "OK") != 0)
14401 error (_("Remote refused setting thread events: %s"), rs->buf.data ());
65706a29
PA
14402 break;
14403 case PACKET_ERROR:
8d64371b 14404 warning (_("Remote failure reply: %s"), rs->buf.data ());
65706a29
PA
14405 break;
14406 case PACKET_UNKNOWN:
14407 break;
14408 }
14409}
14410
d471ea57 14411static void
981a3fb3 14412show_remote_cmd (const char *args, int from_tty)
d471ea57 14413{
37a105a1 14414 /* We can't just use cmd_show_list here, because we want to skip
427c3a89 14415 the redundant "show remote Z-packet" and the legacy aliases. */
37a105a1 14416 struct cmd_list_element *list = remote_show_cmdlist;
79a45e25 14417 struct ui_out *uiout = current_uiout;
37a105a1 14418
2e783024 14419 ui_out_emit_tuple tuple_emitter (uiout, "showlist");
37a105a1
DJ
14420 for (; list != NULL; list = list->next)
14421 if (strcmp (list->name, "Z-packet") == 0)
14422 continue;
427c3a89
DJ
14423 else if (list->type == not_set_cmd)
14424 /* Alias commands are exactly like the original, except they
14425 don't have the normal type. */
14426 continue;
14427 else
37a105a1 14428 {
2e783024 14429 ui_out_emit_tuple option_emitter (uiout, "option");
a744cf53 14430
112e8700
SM
14431 uiout->field_string ("name", list->name);
14432 uiout->text (": ");
427c3a89 14433 if (list->type == show_cmd)
f5c4fcd9 14434 do_show_command (NULL, from_tty, list);
427c3a89
DJ
14435 else
14436 cmd_func (list, NULL, from_tty);
37a105a1 14437 }
d471ea57 14438}
5a2468f5 14439
0f71a2f6 14440
23860348 14441/* Function to be called whenever a new objfile (shlib) is detected. */
dc8acb97
MS
14442static void
14443remote_new_objfile (struct objfile *objfile)
14444{
6b8edb51 14445 remote_target *remote = get_current_remote_target ();
5d93a237 14446
6b8edb51
PA
14447 if (remote != NULL) /* Have a remote connection. */
14448 remote->remote_check_symbols ();
dc8acb97
MS
14449}
14450
00bf0b85
SS
14451/* Pull all the tracepoints defined on the target and create local
14452 data structures representing them. We don't want to create real
14453 tracepoints yet, we don't want to mess up the user's existing
14454 collection. */
14455
f6ac5f3d
PA
14456int
14457remote_target::upload_tracepoints (struct uploaded_tp **utpp)
d5551862 14458{
00bf0b85
SS
14459 struct remote_state *rs = get_remote_state ();
14460 char *p;
d5551862 14461
00bf0b85
SS
14462 /* Ask for a first packet of tracepoint definition. */
14463 putpkt ("qTfP");
8d64371b
TT
14464 getpkt (&rs->buf, 0);
14465 p = rs->buf.data ();
00bf0b85 14466 while (*p && *p != 'l')
d5551862 14467 {
00bf0b85
SS
14468 parse_tracepoint_definition (p, utpp);
14469 /* Ask for another packet of tracepoint definition. */
14470 putpkt ("qTsP");
8d64371b
TT
14471 getpkt (&rs->buf, 0);
14472 p = rs->buf.data ();
d5551862 14473 }
00bf0b85 14474 return 0;
d5551862
SS
14475}
14476
f6ac5f3d
PA
14477int
14478remote_target::upload_trace_state_variables (struct uploaded_tsv **utsvp)
d5551862 14479{
00bf0b85 14480 struct remote_state *rs = get_remote_state ();
d5551862 14481 char *p;
d5551862 14482
00bf0b85
SS
14483 /* Ask for a first packet of variable definition. */
14484 putpkt ("qTfV");
8d64371b
TT
14485 getpkt (&rs->buf, 0);
14486 p = rs->buf.data ();
00bf0b85 14487 while (*p && *p != 'l')
d5551862 14488 {
00bf0b85
SS
14489 parse_tsv_definition (p, utsvp);
14490 /* Ask for another packet of variable definition. */
14491 putpkt ("qTsV");
8d64371b
TT
14492 getpkt (&rs->buf, 0);
14493 p = rs->buf.data ();
d5551862 14494 }
00bf0b85 14495 return 0;
d5551862
SS
14496}
14497
c1e36e3e
PA
14498/* The "set/show range-stepping" show hook. */
14499
14500static void
14501show_range_stepping (struct ui_file *file, int from_tty,
14502 struct cmd_list_element *c,
14503 const char *value)
14504{
14505 fprintf_filtered (file,
14506 _("Debugger's willingness to use range stepping "
14507 "is %s.\n"), value);
14508}
14509
6b8edb51
PA
14510/* Return true if the vCont;r action is supported by the remote
14511 stub. */
14512
14513bool
14514remote_target::vcont_r_supported ()
14515{
14516 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
14517 remote_vcont_probe ();
14518
14519 return (packet_support (PACKET_vCont) == PACKET_ENABLE
14520 && get_remote_state ()->supports_vCont.r);
14521}
14522
c1e36e3e
PA
14523/* The "set/show range-stepping" set hook. */
14524
14525static void
eb4c3f4a 14526set_range_stepping (const char *ignore_args, int from_tty,
c1e36e3e
PA
14527 struct cmd_list_element *c)
14528{
6b8edb51
PA
14529 /* When enabling, check whether range stepping is actually supported
14530 by the target, and warn if not. */
c1e36e3e
PA
14531 if (use_range_stepping)
14532 {
6b8edb51
PA
14533 remote_target *remote = get_current_remote_target ();
14534 if (remote == NULL
14535 || !remote->vcont_r_supported ())
14536 warning (_("Range stepping is not supported by the current target"));
c1e36e3e
PA
14537 }
14538}
14539
6c265988 14540void _initialize_remote ();
c906108c 14541void
6c265988 14542_initialize_remote ()
c906108c 14543{
9a7071a8 14544 struct cmd_list_element *cmd;
6f937416 14545 const char *cmd_name;
ea9c271d 14546
0f71a2f6 14547 /* architecture specific data */
29709017
DJ
14548 remote_g_packet_data_handle =
14549 gdbarch_data_register_pre_init (remote_g_packet_data_init);
d01949b6 14550
d9f719f1
PA
14551 add_target (remote_target_info, remote_target::open);
14552 add_target (extended_remote_target_info, extended_remote_target::open);
cce74817 14553
dc8acb97 14554 /* Hook into new objfile notification. */
76727919 14555 gdb::observers::new_objfile.attach (remote_new_objfile);
dc8acb97 14556
c906108c
SS
14557#if 0
14558 init_remote_threadtests ();
14559#endif
14560
23860348 14561 /* set/show remote ... */
d471ea57 14562
0743fc83 14563 add_basic_prefix_cmd ("remote", class_maintenance, _("\
590042fc 14564Remote protocol specific variables.\n\
5a2468f5 14565Configure various remote-protocol specific variables such as\n\
590042fc 14566the packets being used."),
0743fc83
TT
14567 &remote_set_cmdlist, "set remote ",
14568 0 /* allow-unknown */, &setlist);
1bedd215 14569 add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
590042fc 14570Remote protocol specific variables.\n\
5a2468f5 14571Configure various remote-protocol specific variables such as\n\
590042fc 14572the packets being used."),
cff3e48b 14573 &remote_show_cmdlist, "show remote ",
23860348 14574 0 /* allow-unknown */, &showlist);
5a2468f5 14575
1a966eab
AC
14576 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
14577Compare section data on target to the exec file.\n\
95cf3b38
DT
14578Argument is a single section name (default: all loaded sections).\n\
14579To compare only read-only loaded sections, specify the -r option."),
c906108c
SS
14580 &cmdlist);
14581
1a966eab
AC
14582 add_cmd ("packet", class_maintenance, packet_command, _("\
14583Send an arbitrary packet to a remote target.\n\
c906108c
SS
14584 maintenance packet TEXT\n\
14585If GDB is talking to an inferior via the GDB serial protocol, then\n\
14586this command sends the string TEXT to the inferior, and displays the\n\
14587response packet. GDB supplies the initial `$' character, and the\n\
1a966eab 14588terminating `#' character and checksum."),
c906108c
SS
14589 &maintenancelist);
14590
7915a72c
AC
14591 add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
14592Set whether to send break if interrupted."), _("\
14593Show whether to send break if interrupted."), _("\
14594If set, a break, instead of a cntrl-c, is sent to the remote target."),
9a7071a8 14595 set_remotebreak, show_remotebreak,
e707bbc2 14596 &setlist, &showlist);
9a7071a8 14597 cmd_name = "remotebreak";
cf00cd6f 14598 cmd = lookup_cmd (&cmd_name, setlist, "", NULL, -1, 1);
9a7071a8
JB
14599 deprecate_cmd (cmd, "set remote interrupt-sequence");
14600 cmd_name = "remotebreak"; /* needed because lookup_cmd updates the pointer */
cf00cd6f 14601 cmd = lookup_cmd (&cmd_name, showlist, "", NULL, -1, 1);
9a7071a8
JB
14602 deprecate_cmd (cmd, "show remote interrupt-sequence");
14603
14604 add_setshow_enum_cmd ("interrupt-sequence", class_support,
3e43a32a
MS
14605 interrupt_sequence_modes, &interrupt_sequence_mode,
14606 _("\
9a7071a8
JB
14607Set interrupt sequence to remote target."), _("\
14608Show interrupt sequence to remote target."), _("\
14609Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."),
14610 NULL, show_interrupt_sequence,
14611 &remote_set_cmdlist,
14612 &remote_show_cmdlist);
14613
14614 add_setshow_boolean_cmd ("interrupt-on-connect", class_support,
14615 &interrupt_on_connect, _("\
590042fc
PW
14616Set whether interrupt-sequence is sent to remote target when gdb connects to."), _("\
14617Show whether interrupt-sequence is sent to remote target when gdb connects to."), _("\
9a7071a8
JB
14618If set, interrupt sequence is sent to remote target."),
14619 NULL, NULL,
14620 &remote_set_cmdlist, &remote_show_cmdlist);
c906108c 14621
23860348 14622 /* Install commands for configuring memory read/write packets. */
11cf8741 14623
1a966eab
AC
14624 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
14625Set the maximum number of bytes per memory write packet (deprecated)."),
11cf8741 14626 &setlist);
1a966eab
AC
14627 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
14628Show the maximum number of bytes per memory write packet (deprecated)."),
11cf8741
JM
14629 &showlist);
14630 add_cmd ("memory-write-packet-size", no_class,
1a966eab
AC
14631 set_memory_write_packet_size, _("\
14632Set the maximum number of bytes per memory-write packet.\n\
14633Specify the number of bytes in a packet or 0 (zero) for the\n\
14634default packet size. The actual limit is further reduced\n\
14635dependent on the target. Specify ``fixed'' to disable the\n\
14636further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
14637 &remote_set_cmdlist);
14638 add_cmd ("memory-read-packet-size", no_class,
1a966eab
AC
14639 set_memory_read_packet_size, _("\
14640Set the maximum number of bytes per memory-read packet.\n\
14641Specify the number of bytes in a packet or 0 (zero) for the\n\
14642default packet size. The actual limit is further reduced\n\
14643dependent on the target. Specify ``fixed'' to disable the\n\
14644further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
14645 &remote_set_cmdlist);
14646 add_cmd ("memory-write-packet-size", no_class,
14647 show_memory_write_packet_size,
1a966eab 14648 _("Show the maximum number of bytes per memory-write packet."),
11cf8741
JM
14649 &remote_show_cmdlist);
14650 add_cmd ("memory-read-packet-size", no_class,
14651 show_memory_read_packet_size,
1a966eab 14652 _("Show the maximum number of bytes per memory-read packet."),
11cf8741 14653 &remote_show_cmdlist);
c906108c 14654
055303e2 14655 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-limit", no_class,
7915a72c
AC
14656 &remote_hw_watchpoint_limit, _("\
14657Set the maximum number of target hardware watchpoints."), _("\
14658Show the maximum number of target hardware watchpoints."), _("\
055303e2
AB
14659Specify \"unlimited\" for unlimited hardware watchpoints."),
14660 NULL, show_hardware_watchpoint_limit,
14661 &remote_set_cmdlist,
14662 &remote_show_cmdlist);
14663 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-length-limit",
14664 no_class,
480a3f21
PW
14665 &remote_hw_watchpoint_length_limit, _("\
14666Set the maximum length (in bytes) of a target hardware watchpoint."), _("\
14667Show the maximum length (in bytes) of a target hardware watchpoint."), _("\
055303e2
AB
14668Specify \"unlimited\" to allow watchpoints of unlimited size."),
14669 NULL, show_hardware_watchpoint_length_limit,
480a3f21 14670 &remote_set_cmdlist, &remote_show_cmdlist);
055303e2 14671 add_setshow_zuinteger_unlimited_cmd ("hardware-breakpoint-limit", no_class,
7915a72c
AC
14672 &remote_hw_breakpoint_limit, _("\
14673Set the maximum number of target hardware breakpoints."), _("\
14674Show the maximum number of target hardware breakpoints."), _("\
055303e2
AB
14675Specify \"unlimited\" for unlimited hardware breakpoints."),
14676 NULL, show_hardware_breakpoint_limit,
b3f42336 14677 &remote_set_cmdlist, &remote_show_cmdlist);
501eef12 14678
1b493192
PA
14679 add_setshow_zuinteger_cmd ("remoteaddresssize", class_obscure,
14680 &remote_address_size, _("\
4d28ad1e
AC
14681Set the maximum size of the address (in bits) in a memory packet."), _("\
14682Show the maximum size of the address (in bits) in a memory packet."), NULL,
1b493192
PA
14683 NULL,
14684 NULL, /* FIXME: i18n: */
14685 &setlist, &showlist);
c906108c 14686
ca4f7f8b
PA
14687 init_all_packet_configs ();
14688
444abaca 14689 add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
bb572ddd 14690 "X", "binary-download", 1);
0f71a2f6 14691
444abaca 14692 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
bb572ddd 14693 "vCont", "verbose-resume", 0);
506fb367 14694
89be2091
DJ
14695 add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals],
14696 "QPassSignals", "pass-signals", 0);
14697
82075af2
JS
14698 add_packet_config_cmd (&remote_protocol_packets[PACKET_QCatchSyscalls],
14699 "QCatchSyscalls", "catch-syscalls", 0);
14700
9b224c5e
PA
14701 add_packet_config_cmd (&remote_protocol_packets[PACKET_QProgramSignals],
14702 "QProgramSignals", "program-signals", 0);
14703
bc3b087d
SDJ
14704 add_packet_config_cmd (&remote_protocol_packets[PACKET_QSetWorkingDir],
14705 "QSetWorkingDir", "set-working-dir", 0);
14706
aefd8b33
SDJ
14707 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartupWithShell],
14708 "QStartupWithShell", "startup-with-shell", 0);
14709
0a2dde4a
SDJ
14710 add_packet_config_cmd (&remote_protocol_packets
14711 [PACKET_QEnvironmentHexEncoded],
14712 "QEnvironmentHexEncoded", "environment-hex-encoded",
14713 0);
14714
14715 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentReset],
14716 "QEnvironmentReset", "environment-reset",
14717 0);
14718
14719 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentUnset],
14720 "QEnvironmentUnset", "environment-unset",
14721 0);
14722
444abaca 14723 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
bb572ddd 14724 "qSymbol", "symbol-lookup", 0);
dc8acb97 14725
444abaca 14726 add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
bb572ddd 14727 "P", "set-register", 1);
d471ea57 14728
444abaca 14729 add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
bb572ddd 14730 "p", "fetch-register", 1);
b96ec7ac 14731
444abaca 14732 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
bb572ddd 14733 "Z0", "software-breakpoint", 0);
d471ea57 14734
444abaca 14735 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
bb572ddd 14736 "Z1", "hardware-breakpoint", 0);
d471ea57 14737
444abaca 14738 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
bb572ddd 14739 "Z2", "write-watchpoint", 0);
d471ea57 14740
444abaca 14741 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
bb572ddd 14742 "Z3", "read-watchpoint", 0);
d471ea57 14743
444abaca 14744 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
bb572ddd 14745 "Z4", "access-watchpoint", 0);
d471ea57 14746
0876f84a
DJ
14747 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
14748 "qXfer:auxv:read", "read-aux-vector", 0);
802188a7 14749
c78fa86a
GB
14750 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_exec_file],
14751 "qXfer:exec-file:read", "pid-to-exec-file", 0);
14752
23181151
DJ
14753 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features],
14754 "qXfer:features:read", "target-features", 0);
14755
cfa9d6d9
DJ
14756 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries],
14757 "qXfer:libraries:read", "library-info", 0);
14758
2268b414
JK
14759 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries_svr4],
14760 "qXfer:libraries-svr4:read", "library-info-svr4", 0);
14761
fd79ecee
DJ
14762 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
14763 "qXfer:memory-map:read", "memory-map", 0);
14764
07e059b5 14765 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata],
dda83cd7 14766 "qXfer:osdata:read", "osdata", 0);
07e059b5 14767
dc146f7c
VP
14768 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_threads],
14769 "qXfer:threads:read", "threads", 0);
14770
4aa995e1 14771 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read],
dda83cd7 14772 "qXfer:siginfo:read", "read-siginfo-object", 0);
4aa995e1
PA
14773
14774 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write],
dda83cd7 14775 "qXfer:siginfo:write", "write-siginfo-object", 0);
4aa995e1 14776
b3b9301e
PA
14777 add_packet_config_cmd
14778 (&remote_protocol_packets[PACKET_qXfer_traceframe_info],
eb9fe518 14779 "qXfer:traceframe-info:read", "traceframe-info", 0);
b3b9301e 14780
169081d0
TG
14781 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_uib],
14782 "qXfer:uib:read", "unwind-info-block", 0);
14783
444abaca 14784 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
38691318 14785 "qGetTLSAddr", "get-thread-local-storage-address",
38691318
KB
14786 0);
14787
711e434b
PM
14788 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTIBAddr],
14789 "qGetTIBAddr", "get-thread-information-block-address",
14790 0);
14791
40ab02ce
MS
14792 add_packet_config_cmd (&remote_protocol_packets[PACKET_bc],
14793 "bc", "reverse-continue", 0);
14794
14795 add_packet_config_cmd (&remote_protocol_packets[PACKET_bs],
14796 "bs", "reverse-step", 0);
14797
be2a5f71
DJ
14798 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
14799 "qSupported", "supported-packets", 0);
14800
08388c79
DE
14801 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory],
14802 "qSearch:memory", "search-memory", 0);
14803
bd3eecc3
PA
14804 add_packet_config_cmd (&remote_protocol_packets[PACKET_qTStatus],
14805 "qTStatus", "trace-status", 0);
14806
15a201c8
GB
14807 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_setfs],
14808 "vFile:setfs", "hostio-setfs", 0);
14809
a6b151f1
DJ
14810 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open],
14811 "vFile:open", "hostio-open", 0);
14812
14813 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread],
14814 "vFile:pread", "hostio-pread", 0);
14815
14816 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite],
14817 "vFile:pwrite", "hostio-pwrite", 0);
14818
14819 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close],
14820 "vFile:close", "hostio-close", 0);
14821
14822 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink],
14823 "vFile:unlink", "hostio-unlink", 0);
14824
b9e7b9c3
UW
14825 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_readlink],
14826 "vFile:readlink", "hostio-readlink", 0);
14827
0a93529c
GB
14828 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_fstat],
14829 "vFile:fstat", "hostio-fstat", 0);
14830
2d717e4f
DJ
14831 add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach],
14832 "vAttach", "attach", 0);
14833
14834 add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun],
14835 "vRun", "run", 0);
14836
a6f3e723
SL
14837 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode],
14838 "QStartNoAckMode", "noack", 0);
14839
82f73884
PA
14840 add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill],
14841 "vKill", "kill", 0);
14842
0b16c5cf
PA
14843 add_packet_config_cmd (&remote_protocol_packets[PACKET_qAttached],
14844 "qAttached", "query-attached", 0);
14845
782b2b07 14846 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalTracepoints],
3e43a32a
MS
14847 "ConditionalTracepoints",
14848 "conditional-tracepoints", 0);
3788aec7
LM
14849
14850 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalBreakpoints],
14851 "ConditionalBreakpoints",
14852 "conditional-breakpoints", 0);
14853
d3ce09f5
SS
14854 add_packet_config_cmd (&remote_protocol_packets[PACKET_BreakpointCommands],
14855 "BreakpointCommands",
14856 "breakpoint-commands", 0);
14857
7a697b8d
SS
14858 add_packet_config_cmd (&remote_protocol_packets[PACKET_FastTracepoints],
14859 "FastTracepoints", "fast-tracepoints", 0);
782b2b07 14860
409873ef
SS
14861 add_packet_config_cmd (&remote_protocol_packets[PACKET_TracepointSource],
14862 "TracepointSource", "TracepointSource", 0);
14863
d914c394
SS
14864 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAllow],
14865 "QAllow", "allow", 0);
14866
0fb4aa4b
PA
14867 add_packet_config_cmd (&remote_protocol_packets[PACKET_StaticTracepoints],
14868 "StaticTracepoints", "static-tracepoints", 0);
14869
1e4d1764
YQ
14870 add_packet_config_cmd (&remote_protocol_packets[PACKET_InstallInTrace],
14871 "InstallInTrace", "install-in-trace", 0);
14872
0fb4aa4b 14873 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_statictrace_read],
dda83cd7 14874 "qXfer:statictrace:read", "read-sdata-object", 0);
0fb4aa4b 14875
78d85199
YQ
14876 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_fdpic],
14877 "qXfer:fdpic:read", "read-fdpic-loadmap", 0);
14878
03583c20
UW
14879 add_packet_config_cmd (&remote_protocol_packets[PACKET_QDisableRandomization],
14880 "QDisableRandomization", "disable-randomization", 0);
14881
d1feda86
YQ
14882 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAgent],
14883 "QAgent", "agent", 0);
14884
f6f899bf
HAQ
14885 add_packet_config_cmd (&remote_protocol_packets[PACKET_QTBuffer_size],
14886 "QTBuffer:size", "trace-buffer-size", 0);
14887
9accd112
MM
14888 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_off],
14889 "Qbtrace:off", "disable-btrace", 0);
14890
14891 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_bts],
b20a6524
MM
14892 "Qbtrace:bts", "enable-btrace-bts", 0);
14893
14894 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_pt],
14895 "Qbtrace:pt", "enable-btrace-pt", 0);
9accd112
MM
14896
14897 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace],
14898 "qXfer:btrace", "read-btrace", 0);
14899
f4abbc16
MM
14900 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace_conf],
14901 "qXfer:btrace-conf", "read-btrace-conf", 0);
14902
d33501a5
MM
14903 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_bts_size],
14904 "Qbtrace-conf:bts:size", "btrace-conf-bts-size", 0);
14905
73b8c1fd
PA
14906 add_packet_config_cmd (&remote_protocol_packets[PACKET_multiprocess_feature],
14907 "multiprocess-feature", "multiprocess-feature", 0);
14908
f7e6eed5 14909 add_packet_config_cmd (&remote_protocol_packets[PACKET_swbreak_feature],
dda83cd7 14910 "swbreak-feature", "swbreak-feature", 0);
f7e6eed5
PA
14911
14912 add_packet_config_cmd (&remote_protocol_packets[PACKET_hwbreak_feature],
dda83cd7 14913 "hwbreak-feature", "hwbreak-feature", 0);
f7e6eed5 14914
89245bc0
DB
14915 add_packet_config_cmd (&remote_protocol_packets[PACKET_fork_event_feature],
14916 "fork-event-feature", "fork-event-feature", 0);
14917
14918 add_packet_config_cmd (&remote_protocol_packets[PACKET_vfork_event_feature],
14919 "vfork-event-feature", "vfork-event-feature", 0);
14920
b20a6524
MM
14921 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_pt_size],
14922 "Qbtrace-conf:pt:size", "btrace-conf-pt-size", 0);
14923
750ce8d1
YQ
14924 add_packet_config_cmd (&remote_protocol_packets[PACKET_vContSupported],
14925 "vContSupported", "verbose-resume-supported", 0);
14926
94585166
DB
14927 add_packet_config_cmd (&remote_protocol_packets[PACKET_exec_event_feature],
14928 "exec-event-feature", "exec-event-feature", 0);
14929
de979965
PA
14930 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCtrlC],
14931 "vCtrlC", "ctrl-c", 0);
14932
65706a29
PA
14933 add_packet_config_cmd (&remote_protocol_packets[PACKET_QThreadEvents],
14934 "QThreadEvents", "thread-events", 0);
14935
f2faf941
PA
14936 add_packet_config_cmd (&remote_protocol_packets[PACKET_no_resumed],
14937 "N stop reply", "no-resumed-stop-reply", 0);
14938
0b736949
DB
14939 /* Assert that we've registered "set remote foo-packet" commands
14940 for all packet configs. */
ca4f7f8b
PA
14941 {
14942 int i;
14943
14944 for (i = 0; i < PACKET_MAX; i++)
14945 {
14946 /* Ideally all configs would have a command associated. Some
14947 still don't though. */
14948 int excepted;
14949
14950 switch (i)
14951 {
14952 case PACKET_QNonStop:
ca4f7f8b
PA
14953 case PACKET_EnableDisableTracepoints_feature:
14954 case PACKET_tracenz_feature:
14955 case PACKET_DisconnectedTracing_feature:
14956 case PACKET_augmented_libraries_svr4_read_feature:
936d2992
PA
14957 case PACKET_qCRC:
14958 /* Additions to this list need to be well justified:
14959 pre-existing packets are OK; new packets are not. */
ca4f7f8b
PA
14960 excepted = 1;
14961 break;
14962 default:
14963 excepted = 0;
14964 break;
14965 }
14966
14967 /* This catches both forgetting to add a config command, and
14968 forgetting to remove a packet from the exception list. */
14969 gdb_assert (excepted == (remote_protocol_packets[i].name == NULL));
14970 }
14971 }
14972
37a105a1
DJ
14973 /* Keep the old ``set remote Z-packet ...'' working. Each individual
14974 Z sub-packet has its own set and show commands, but users may
14975 have sets to this variable in their .gdbinit files (or in their
14976 documentation). */
e9e68a56 14977 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
7915a72c 14978 &remote_Z_packet_detect, _("\
590042fc
PW
14979Set use of remote protocol `Z' packets."), _("\
14980Show use of remote protocol `Z' packets."), _("\
3b64bf98 14981When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
7915a72c 14982packets."),
e9e68a56 14983 set_remote_protocol_Z_packet_cmd,
3e43a32a
MS
14984 show_remote_protocol_Z_packet_cmd,
14985 /* FIXME: i18n: Use of remote protocol
14986 `Z' packets is %s. */
e9e68a56 14987 &remote_set_cmdlist, &remote_show_cmdlist);
449092f6 14988
0743fc83 14989 add_basic_prefix_cmd ("remote", class_files, _("\
590042fc 14990Manipulate files on the remote system.\n\
a6b151f1 14991Transfer files to and from the remote target system."),
0743fc83
TT
14992 &remote_cmdlist, "remote ",
14993 0 /* allow-unknown */, &cmdlist);
a6b151f1
DJ
14994
14995 add_cmd ("put", class_files, remote_put_command,
14996 _("Copy a local file to the remote system."),
14997 &remote_cmdlist);
14998
14999 add_cmd ("get", class_files, remote_get_command,
15000 _("Copy a remote file to the local system."),
15001 &remote_cmdlist);
15002
15003 add_cmd ("delete", class_files, remote_delete_command,
15004 _("Delete a remote file."),
15005 &remote_cmdlist);
15006
2d717e4f 15007 add_setshow_string_noescape_cmd ("exec-file", class_files,
94585166 15008 &remote_exec_file_var, _("\
590042fc
PW
15009Set the remote pathname for \"run\"."), _("\
15010Show the remote pathname for \"run\"."), NULL,
94585166
DB
15011 set_remote_exec_file,
15012 show_remote_exec_file,
15013 &remote_set_cmdlist,
15014 &remote_show_cmdlist);
2d717e4f 15015
c1e36e3e
PA
15016 add_setshow_boolean_cmd ("range-stepping", class_run,
15017 &use_range_stepping, _("\
15018Enable or disable range stepping."), _("\
15019Show whether target-assisted range stepping is enabled."), _("\
15020If on, and the target supports it, when stepping a source line, GDB\n\
15021tells the target to step the corresponding range of addresses itself instead\n\
15022of issuing multiple single-steps. This speeds up source level\n\
15023stepping. If off, GDB always issues single-steps, even if range\n\
15024stepping is supported by the target. The default is on."),
15025 set_range_stepping,
15026 show_range_stepping,
15027 &setlist,
15028 &showlist);
15029
ed2b7c17
TT
15030 add_setshow_zinteger_cmd ("watchdog", class_maintenance, &watchdog, _("\
15031Set watchdog timer."), _("\
15032Show watchdog timer."), _("\
15033When non-zero, this timeout is used instead of waiting forever for a target\n\
15034to finish a low-level step or continue operation. If the specified amount\n\
15035of time passes without a response from the target, an error occurs."),
15036 NULL,
15037 show_watchdog,
15038 &setlist, &showlist);
15039
6cc8564b
LM
15040 add_setshow_zuinteger_unlimited_cmd ("remote-packet-max-chars", no_class,
15041 &remote_packet_max_chars, _("\
15042Set the maximum number of characters to display for each remote packet."), _("\
15043Show the maximum number of characters to display for each remote packet."), _("\
15044Specify \"unlimited\" to display all the characters."),
15045 NULL, show_remote_packet_max_chars,
15046 &setdebuglist, &showdebuglist);
15047
449092f6 15048 /* Eventually initialize fileio. See fileio.c */
3f4d92eb 15049 initialize_remote_fileio (&remote_set_cmdlist, &remote_show_cmdlist);
c906108c 15050}
This page took 5.354477 seconds and 4 git commands to generate.