Move "watchdog" to remote.c
[deliverable/binutils-gdb.git] / gdb / remote.c
CommitLineData
c906108c 1/* Remote target communications for serial-line targets in custom GDB protocol
8926118c 2
42a4f53d 3 Copyright (C) 1988-2019 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"
0747795c
TT
45#include "common/filestuff.h"
46#include "common/rsp-low.h"
6b940e6a 47#include "disasm.h"
f00aae0f 48#include "location.h"
c906108c 49
0747795c 50#include "common/gdb_sys_time.h"
c906108c 51
43ff13b4 52#include "event-loop.h"
c2c6d25f 53#include "event-top.h"
2acceee2 54#include "inf-loop.h"
43ff13b4 55
c906108c
SS
56#include <signal.h>
57#include "serial.h"
58
6240bebf
MS
59#include "gdbcore.h" /* for exec_bfd */
60
449092f6 61#include "remote-fileio.h"
a6b151f1 62#include "gdb/fileio.h"
53ce3c39 63#include <sys/stat.h>
dc146f7c 64#include "xml-support.h"
449092f6 65
fd79ecee
DJ
66#include "memory-map.h"
67
35b1e5cc
SS
68#include "tracepoint.h"
69#include "ax.h"
70#include "ax-gdb.h"
0747795c 71#include "common/agent.h"
9accd112 72#include "btrace.h"
c0272db5 73#include "record-btrace.h"
325fac50 74#include <algorithm>
2ec845e7 75#include "common/scoped_restore.h"
0747795c 76#include "common/environ.h"
f6327dcb 77#include "common/byte-vector.h"
9d6eea31 78#include <unordered_map>
35b1e5cc 79
f6ac5f3d
PA
80/* The remote target. */
81
d9f719f1
PA
82static const char remote_doc[] = N_("\
83Use a remote computer via a serial line, using a gdb-specific protocol.\n\
84Specify the serial device it is connected to\n\
85(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).");
86
6b8edb51
PA
87#define OPAQUETHREADBYTES 8
88
89/* a 64 bit opaque identifier */
90typedef unsigned char threadref[OPAQUETHREADBYTES];
91
92struct gdb_ext_thread_info;
93struct threads_listing_context;
94typedef int (*rmt_thread_action) (threadref *ref, void *context);
95struct protocol_feature;
96struct packet_reg;
97
98struct stop_reply;
32603266 99typedef std::unique_ptr<stop_reply> stop_reply_up;
6b8edb51
PA
100
101/* Generic configuration support for packets the stub optionally
102 supports. Allows the user to specify the use of the packet as well
103 as allowing GDB to auto-detect support in the remote stub. */
104
105enum packet_support
106 {
107 PACKET_SUPPORT_UNKNOWN = 0,
108 PACKET_ENABLE,
109 PACKET_DISABLE
110 };
111
112/* Analyze a packet's return value and update the packet config
113 accordingly. */
114
115enum packet_result
116{
117 PACKET_ERROR,
118 PACKET_OK,
119 PACKET_UNKNOWN
120};
121
122struct threads_listing_context;
3c69da40
PA
123
124/* Stub vCont actions support.
125
126 Each field is a boolean flag indicating whether the stub reports
127 support for the corresponding action. */
128
129struct vCont_action_support
130{
131 /* vCont;t */
132 bool t = false;
133
134 /* vCont;r */
135 bool r = false;
136
137 /* vCont;s */
138 bool s = false;
139
140 /* vCont;S */
141 bool S = false;
142};
143
144/* About this many threadisds fit in a packet. */
145
146#define MAXTHREADLISTRESULTS 32
147
148/* Data for the vFile:pread readahead cache. */
149
150struct readahead_cache
151{
152 /* Invalidate the readahead cache. */
153 void invalidate ();
154
155 /* Invalidate the readahead cache if it is holding data for FD. */
156 void invalidate_fd (int fd);
157
158 /* Serve pread from the readahead cache. Returns number of bytes
159 read, or 0 if the request can't be served from the cache. */
160 int pread (int fd, gdb_byte *read_buf, size_t len, ULONGEST offset);
161
162 /* The file descriptor for the file that is being cached. -1 if the
163 cache is invalid. */
164 int fd = -1;
165
166 /* The offset into the file that the cache buffer corresponds
167 to. */
168 ULONGEST offset = 0;
169
170 /* The buffer holding the cache contents. */
171 gdb_byte *buf = nullptr;
172 /* The buffer's size. We try to read as much as fits into a packet
173 at a time. */
174 size_t bufsize = 0;
175
176 /* Cache hit and miss counters. */
177 ULONGEST hit_count = 0;
178 ULONGEST miss_count = 0;
179};
180
181/* Description of the remote protocol for a given architecture. */
182
183struct packet_reg
184{
185 long offset; /* Offset into G packet. */
186 long regnum; /* GDB's internal register number. */
187 LONGEST pnum; /* Remote protocol register number. */
188 int in_g_packet; /* Always part of G packet. */
189 /* long size in bytes; == register_size (target_gdbarch (), regnum);
190 at present. */
191 /* char *name; == gdbarch_register_name (target_gdbarch (), regnum);
192 at present. */
193};
194
195struct remote_arch_state
196{
197 explicit remote_arch_state (struct gdbarch *gdbarch);
198
199 /* Description of the remote protocol registers. */
200 long sizeof_g_packet;
201
202 /* Description of the remote protocol registers indexed by REGNUM
203 (making an array gdbarch_num_regs in size). */
204 std::unique_ptr<packet_reg[]> regs;
205
206 /* This is the size (in chars) of the first response to the ``g''
207 packet. It is used as a heuristic when determining the maximum
208 size of memory-read and memory-write packets. A target will
209 typically only reserve a buffer large enough to hold the ``g''
210 packet. The size does not include packet overhead (headers and
211 trailers). */
212 long actual_register_packet_size;
213
214 /* This is the maximum size (in chars) of a non read/write packet.
215 It is also used as a cap on the size of read/write packets. */
216 long remote_packet_size;
217};
218
219/* Description of the remote protocol state for the currently
220 connected target. This is per-target state, and independent of the
221 selected architecture. */
222
223class remote_state
224{
225public:
226
227 remote_state ();
228 ~remote_state ();
229
230 /* Get the remote arch state for GDBARCH. */
231 struct remote_arch_state *get_remote_arch_state (struct gdbarch *gdbarch);
232
233public: /* data */
234
235 /* A buffer to use for incoming packets, and its current size. The
236 buffer is grown dynamically for larger incoming packets.
237 Outgoing packets may also be constructed in this buffer.
8d64371b 238 The size of the buffer is always at least REMOTE_PACKET_SIZE;
3c69da40
PA
239 REMOTE_PACKET_SIZE should be used to limit the length of outgoing
240 packets. */
8d64371b 241 gdb::char_vector buf;
3c69da40
PA
242
243 /* True if we're going through initial connection setup (finding out
244 about the remote side's threads, relocating symbols, etc.). */
245 bool starting_up = false;
246
247 /* If we negotiated packet size explicitly (and thus can bypass
248 heuristics for the largest packet size that will not overflow
249 a buffer in the stub), this will be set to that packet size.
250 Otherwise zero, meaning to use the guessed size. */
251 long explicit_packet_size = 0;
252
253 /* remote_wait is normally called when the target is running and
254 waits for a stop reply packet. But sometimes we need to call it
255 when the target is already stopped. We can send a "?" packet
256 and have remote_wait read the response. Or, if we already have
257 the response, we can stash it in BUF and tell remote_wait to
258 skip calling getpkt. This flag is set when BUF contains a
259 stop reply packet and the target is not waiting. */
260 int cached_wait_status = 0;
261
262 /* True, if in no ack mode. That is, neither GDB nor the stub will
263 expect acks from each other. The connection is assumed to be
264 reliable. */
265 bool noack_mode = false;
266
267 /* True if we're connected in extended remote mode. */
268 bool extended = false;
269
270 /* True if we resumed the target and we're waiting for the target to
271 stop. In the mean time, we can't start another command/query.
272 The remote server wouldn't be ready to process it, so we'd
273 timeout waiting for a reply that would never come and eventually
274 we'd close the connection. This can happen in asynchronous mode
275 because we allow GDB commands while the target is running. */
276 bool waiting_for_stop_reply = false;
277
278 /* The status of the stub support for the various vCont actions. */
279 vCont_action_support supports_vCont;
280
281 /* True if the user has pressed Ctrl-C, but the target hasn't
282 responded to that. */
283 bool ctrlc_pending_p = false;
284
285 /* True if we saw a Ctrl-C while reading or writing from/to the
286 remote descriptor. At that point it is not safe to send a remote
287 interrupt packet, so we instead remember we saw the Ctrl-C and
288 process it once we're done with sending/receiving the current
289 packet, which should be shortly. If however that takes too long,
290 and the user presses Ctrl-C again, we offer to disconnect. */
291 bool got_ctrlc_during_io = false;
292
293 /* Descriptor for I/O to remote machine. Initialize it to NULL so that
294 remote_open knows that we don't have a file open when the program
295 starts. */
296 struct serial *remote_desc = nullptr;
297
298 /* These are the threads which we last sent to the remote system. The
299 TID member will be -1 for all or -2 for not sent yet. */
300 ptid_t general_thread = null_ptid;
301 ptid_t continue_thread = null_ptid;
302
303 /* This is the traceframe which we last selected on the remote system.
304 It will be -1 if no traceframe is selected. */
305 int remote_traceframe_number = -1;
306
307 char *last_pass_packet = nullptr;
308
309 /* The last QProgramSignals packet sent to the target. We bypass
310 sending a new program signals list down to the target if the new
311 packet is exactly the same as the last we sent. IOW, we only let
312 the target know about program signals list changes. */
313 char *last_program_signals_packet = nullptr;
314
315 gdb_signal last_sent_signal = GDB_SIGNAL_0;
316
317 bool last_sent_step = false;
318
319 /* The execution direction of the last resume we got. */
320 exec_direction_kind last_resume_exec_dir = EXEC_FORWARD;
321
322 char *finished_object = nullptr;
323 char *finished_annex = nullptr;
324 ULONGEST finished_offset = 0;
325
326 /* Should we try the 'ThreadInfo' query packet?
327
328 This variable (NOT available to the user: auto-detect only!)
329 determines whether GDB will use the new, simpler "ThreadInfo"
330 query or the older, more complex syntax for thread queries.
331 This is an auto-detect variable (set to true at each connect,
332 and set to false when the target fails to recognize it). */
333 bool use_threadinfo_query = false;
334 bool use_threadextra_query = false;
335
336 threadref echo_nextthread {};
337 threadref nextthread {};
338 threadref resultthreadlist[MAXTHREADLISTRESULTS] {};
339
340 /* The state of remote notification. */
341 struct remote_notif_state *notif_state = nullptr;
342
343 /* The branch trace configuration. */
344 struct btrace_config btrace_config {};
345
346 /* The argument to the last "vFile:setfs:" packet we sent, used
347 to avoid sending repeated unnecessary "vFile:setfs:" packets.
348 Initialized to -1 to indicate that no "vFile:setfs:" packet
349 has yet been sent. */
350 int fs_pid = -1;
351
352 /* A readahead cache for vFile:pread. Often, reading a binary
353 involves a sequence of small reads. E.g., when parsing an ELF
354 file. A readahead cache helps mostly the case of remote
355 debugging on a connection with higher latency, due to the
356 request/reply nature of the RSP. We only cache data for a single
357 file descriptor at a time. */
358 struct readahead_cache readahead_cache;
359
360 /* The list of already fetched and acknowledged stop events. This
361 queue is used for notification Stop, and other notifications
362 don't need queue for their events, because the notification
363 events of Stop can't be consumed immediately, so that events
364 should be queued first, and be consumed by remote_wait_{ns,as}
365 one per time. Other notifications can consume their events
366 immediately, so queue is not needed for them. */
953edf2b 367 std::vector<stop_reply_up> stop_reply_queue;
3c69da40
PA
368
369 /* Asynchronous signal handle registered as event loop source for
370 when we have pending events ready to be passed to the core. */
371 struct async_event_handler *remote_async_inferior_event_token = nullptr;
372
373 /* FIXME: cagney/1999-09-23: Even though getpkt was called with
374 ``forever'' still use the normal timeout mechanism. This is
375 currently used by the ASYNC code to guarentee that target reads
376 during the initial connect always time-out. Once getpkt has been
377 modified to return a timeout indication and, in turn
378 remote_wait()/wait_for_inferior() have gained a timeout parameter
379 this can go away. */
380 int wait_forever_enabled_p = 1;
381
382private:
383 /* Mapping of remote protocol data for each gdbarch. Usually there
384 is only one entry here, though we may see more with stubs that
385 support multi-process. */
386 std::unordered_map<struct gdbarch *, remote_arch_state>
387 m_arch_states;
388};
6b8edb51 389
d9f719f1
PA
390static const target_info remote_target_info = {
391 "remote",
392 N_("Remote serial target in gdb-specific protocol"),
393 remote_doc
394};
395
3b3dac9b 396class remote_target : public process_stratum_target
f6ac5f3d
PA
397{
398public:
3b3dac9b 399 remote_target () = default;
6b8edb51 400 ~remote_target () override;
f6ac5f3d 401
d9f719f1
PA
402 const target_info &info () const override
403 { return remote_target_info; }
f6ac5f3d
PA
404
405 thread_control_capabilities get_thread_control_capabilities () override
406 { return tc_schedlock; }
407
d9f719f1
PA
408 /* Open a remote connection. */
409 static void open (const char *, int);
410
f6ac5f3d
PA
411 void close () override;
412
413 void detach (inferior *, int) override;
414 void disconnect (const char *, int) override;
415
416 void commit_resume () override;
417 void resume (ptid_t, int, enum gdb_signal) override;
418 ptid_t wait (ptid_t, struct target_waitstatus *, int) override;
419
420 void fetch_registers (struct regcache *, int) override;
421 void store_registers (struct regcache *, int) override;
422 void prepare_to_store (struct regcache *) override;
423
424 void files_info () override;
425
426 int insert_breakpoint (struct gdbarch *, struct bp_target_info *) override;
427
428 int remove_breakpoint (struct gdbarch *, struct bp_target_info *,
429 enum remove_bp_reason) override;
430
431
57810aa7
PA
432 bool stopped_by_sw_breakpoint () override;
433 bool supports_stopped_by_sw_breakpoint () override;
f6ac5f3d 434
57810aa7 435 bool stopped_by_hw_breakpoint () override;
f6ac5f3d 436
57810aa7 437 bool supports_stopped_by_hw_breakpoint () override;
f6ac5f3d 438
57810aa7 439 bool stopped_by_watchpoint () override;
f6ac5f3d 440
57810aa7 441 bool stopped_data_address (CORE_ADDR *) override;
f6ac5f3d 442
57810aa7 443 bool watchpoint_addr_within_range (CORE_ADDR, CORE_ADDR, int) override;
f6ac5f3d
PA
444
445 int can_use_hw_breakpoint (enum bptype, int, int) override;
446
447 int insert_hw_breakpoint (struct gdbarch *, struct bp_target_info *) override;
448
449 int remove_hw_breakpoint (struct gdbarch *, struct bp_target_info *) override;
450
451 int region_ok_for_hw_watchpoint (CORE_ADDR, int) override;
452
453 int insert_watchpoint (CORE_ADDR, int, enum target_hw_bp_type,
454 struct expression *) override;
455
456 int remove_watchpoint (CORE_ADDR, int, enum target_hw_bp_type,
457 struct expression *) override;
458
459 void kill () override;
460
461 void load (const char *, int) override;
462
463 void mourn_inferior () override;
464
adc6a863 465 void pass_signals (gdb::array_view<const unsigned char>) override;
f6ac5f3d
PA
466
467 int set_syscall_catchpoint (int, bool, int,
468 gdb::array_view<const int>) override;
469
adc6a863 470 void program_signals (gdb::array_view<const unsigned char>) override;
f6ac5f3d 471
57810aa7 472 bool thread_alive (ptid_t ptid) override;
f6ac5f3d
PA
473
474 const char *thread_name (struct thread_info *) override;
475
476 void update_thread_list () override;
477
a068643d 478 std::string pid_to_str (ptid_t) override;
f6ac5f3d
PA
479
480 const char *extra_thread_info (struct thread_info *) override;
481
482 ptid_t get_ada_task_ptid (long lwp, long thread) override;
483
484 thread_info *thread_handle_to_thread_info (const gdb_byte *thread_handle,
485 int handle_len,
486 inferior *inf) override;
487
3d6c6204
KB
488 gdb::byte_vector thread_info_to_thread_handle (struct thread_info *tp)
489 override;
490
f6ac5f3d
PA
491 void stop (ptid_t) override;
492
493 void interrupt () override;
494
495 void pass_ctrlc () override;
496
497 enum target_xfer_status xfer_partial (enum target_object object,
498 const char *annex,
499 gdb_byte *readbuf,
500 const gdb_byte *writebuf,
501 ULONGEST offset, ULONGEST len,
502 ULONGEST *xfered_len) override;
503
504 ULONGEST get_memory_xfer_limit () override;
505
506 void rcmd (const char *command, struct ui_file *output) override;
507
508 char *pid_to_exec_file (int pid) override;
509
510 void log_command (const char *cmd) override
511 {
512 serial_log_command (this, cmd);
513 }
514
515 CORE_ADDR get_thread_local_address (ptid_t ptid,
516 CORE_ADDR load_module_addr,
517 CORE_ADDR offset) override;
518
57810aa7 519 bool can_execute_reverse () override;
f6ac5f3d
PA
520
521 std::vector<mem_region> memory_map () override;
522
523 void flash_erase (ULONGEST address, LONGEST length) override;
524
525 void flash_done () override;
526
527 const struct target_desc *read_description () override;
528
529 int search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
530 const gdb_byte *pattern, ULONGEST pattern_len,
531 CORE_ADDR *found_addrp) override;
532
57810aa7 533 bool can_async_p () override;
f6ac5f3d 534
57810aa7 535 bool is_async_p () override;
f6ac5f3d
PA
536
537 void async (int) override;
538
539 void thread_events (int) override;
540
541 int can_do_single_step () override;
542
543 void terminal_inferior () override;
544
545 void terminal_ours () override;
546
57810aa7 547 bool supports_non_stop () override;
f6ac5f3d 548
57810aa7 549 bool supports_multi_process () override;
f6ac5f3d 550
57810aa7 551 bool supports_disable_randomization () override;
f6ac5f3d 552
57810aa7 553 bool filesystem_is_local () override;
f6ac5f3d
PA
554
555
556 int fileio_open (struct inferior *inf, const char *filename,
557 int flags, int mode, int warn_if_slow,
558 int *target_errno) override;
559
560 int fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
561 ULONGEST offset, int *target_errno) override;
562
563 int fileio_pread (int fd, gdb_byte *read_buf, int len,
564 ULONGEST offset, int *target_errno) override;
565
566 int fileio_fstat (int fd, struct stat *sb, int *target_errno) override;
567
568 int fileio_close (int fd, int *target_errno) override;
569
570 int fileio_unlink (struct inferior *inf,
571 const char *filename,
572 int *target_errno) override;
573
574 gdb::optional<std::string>
575 fileio_readlink (struct inferior *inf,
576 const char *filename,
577 int *target_errno) override;
578
57810aa7 579 bool supports_enable_disable_tracepoint () override;
f6ac5f3d 580
57810aa7 581 bool supports_string_tracing () override;
f6ac5f3d 582
57810aa7 583 bool supports_evaluation_of_breakpoint_conditions () override;
f6ac5f3d 584
57810aa7 585 bool can_run_breakpoint_commands () override;
f6ac5f3d
PA
586
587 void trace_init () override;
588
589 void download_tracepoint (struct bp_location *location) override;
590
57810aa7 591 bool can_download_tracepoint () override;
f6ac5f3d
PA
592
593 void download_trace_state_variable (const trace_state_variable &tsv) override;
594
595 void enable_tracepoint (struct bp_location *location) override;
596
597 void disable_tracepoint (struct bp_location *location) override;
598
599 void trace_set_readonly_regions () override;
600
601 void trace_start () override;
602
603 int get_trace_status (struct trace_status *ts) override;
604
605 void get_tracepoint_status (struct breakpoint *tp, struct uploaded_tp *utp)
606 override;
607
608 void trace_stop () override;
609
610 int trace_find (enum trace_find_type type, int num,
611 CORE_ADDR addr1, CORE_ADDR addr2, int *tpp) override;
612
57810aa7 613 bool get_trace_state_variable_value (int tsv, LONGEST *val) override;
f6ac5f3d
PA
614
615 int save_trace_data (const char *filename) override;
616
617 int upload_tracepoints (struct uploaded_tp **utpp) override;
618
619 int upload_trace_state_variables (struct uploaded_tsv **utsvp) override;
620
621 LONGEST get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len) override;
622
623 int get_min_fast_tracepoint_insn_len () override;
624
625 void set_disconnected_tracing (int val) override;
626
627 void set_circular_trace_buffer (int val) override;
628
629 void set_trace_buffer_size (LONGEST val) override;
630
57810aa7
PA
631 bool set_trace_notes (const char *user, const char *notes,
632 const char *stopnotes) override;
f6ac5f3d
PA
633
634 int core_of_thread (ptid_t ptid) override;
635
636 int verify_memory (const gdb_byte *data,
637 CORE_ADDR memaddr, ULONGEST size) override;
638
639
57810aa7 640 bool get_tib_address (ptid_t ptid, CORE_ADDR *addr) override;
f6ac5f3d
PA
641
642 void set_permissions () override;
643
644 bool static_tracepoint_marker_at (CORE_ADDR,
645 struct static_tracepoint_marker *marker)
646 override;
647
648 std::vector<static_tracepoint_marker>
649 static_tracepoint_markers_by_strid (const char *id) override;
650
651 traceframe_info_up traceframe_info () override;
652
57810aa7
PA
653 bool use_agent (bool use) override;
654 bool can_use_agent () override;
f6ac5f3d
PA
655
656 struct btrace_target_info *enable_btrace (ptid_t ptid,
657 const struct btrace_config *conf) override;
658
659 void disable_btrace (struct btrace_target_info *tinfo) override;
660
661 void teardown_btrace (struct btrace_target_info *tinfo) override;
662
663 enum btrace_error read_btrace (struct btrace_data *data,
664 struct btrace_target_info *btinfo,
665 enum btrace_read_type type) override;
666
667 const struct btrace_config *btrace_conf (const struct btrace_target_info *) override;
57810aa7 668 bool augmented_libraries_svr4_read () override;
f6ac5f3d
PA
669 int follow_fork (int, int) override;
670 void follow_exec (struct inferior *, char *) override;
671 int insert_fork_catchpoint (int) override;
672 int remove_fork_catchpoint (int) override;
673 int insert_vfork_catchpoint (int) override;
674 int remove_vfork_catchpoint (int) override;
675 int insert_exec_catchpoint (int) override;
676 int remove_exec_catchpoint (int) override;
677 enum exec_direction_kind execution_direction () override;
678
6b8edb51
PA
679public: /* Remote specific methods. */
680
681 void remote_download_command_source (int num, ULONGEST addr,
682 struct command_line *cmds);
683
684 void remote_file_put (const char *local_file, const char *remote_file,
685 int from_tty);
686 void remote_file_get (const char *remote_file, const char *local_file,
687 int from_tty);
688 void remote_file_delete (const char *remote_file, int from_tty);
689
690 int remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
691 ULONGEST offset, int *remote_errno);
692 int remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
693 ULONGEST offset, int *remote_errno);
694 int remote_hostio_pread_vFile (int fd, gdb_byte *read_buf, int len,
695 ULONGEST offset, int *remote_errno);
696
697 int remote_hostio_send_command (int command_bytes, int which_packet,
698 int *remote_errno, char **attachment,
699 int *attachment_len);
700 int remote_hostio_set_filesystem (struct inferior *inf,
701 int *remote_errno);
702 /* We should get rid of this and use fileio_open directly. */
703 int remote_hostio_open (struct inferior *inf, const char *filename,
704 int flags, int mode, int warn_if_slow,
705 int *remote_errno);
706 int remote_hostio_close (int fd, int *remote_errno);
707
708 int remote_hostio_unlink (inferior *inf, const char *filename,
709 int *remote_errno);
710
711 struct remote_state *get_remote_state ();
712
713 long get_remote_packet_size (void);
714 long get_memory_packet_size (struct memory_packet_config *config);
715
716 long get_memory_write_packet_size ();
717 long get_memory_read_packet_size ();
718
719 char *append_pending_thread_resumptions (char *p, char *endp,
720 ptid_t ptid);
d9f719f1 721 static void open_1 (const char *name, int from_tty, int extended_p);
f6ac5f3d 722 void start_remote (int from_tty, int extended_p);
00431a78 723 void remote_detach_1 (struct inferior *inf, int from_tty);
6b8edb51
PA
724
725 char *append_resumption (char *p, char *endp,
726 ptid_t ptid, int step, gdb_signal siggnal);
727 int remote_resume_with_vcont (ptid_t ptid, int step,
728 gdb_signal siggnal);
729
730 void add_current_inferior_and_thread (char *wait_status);
731
732 ptid_t wait_ns (ptid_t ptid, struct target_waitstatus *status,
733 int options);
734 ptid_t wait_as (ptid_t ptid, target_waitstatus *status,
735 int options);
736
737 ptid_t process_stop_reply (struct stop_reply *stop_reply,
738 target_waitstatus *status);
739
740 void remote_notice_new_inferior (ptid_t currthread, int executing);
741
742 void process_initial_stop_replies (int from_tty);
743
00431a78 744 thread_info *remote_add_thread (ptid_t ptid, bool running, bool executing);
6b8edb51
PA
745
746 void btrace_sync_conf (const btrace_config *conf);
747
748 void remote_btrace_maybe_reopen ();
749
750 void remove_new_fork_children (threads_listing_context *context);
751 void kill_new_fork_children (int pid);
752 void discard_pending_stop_replies (struct inferior *inf);
753 int stop_reply_queue_length ();
754
755 void check_pending_events_prevent_wildcard_vcont
756 (int *may_global_wildcard_vcont);
757
758 void discard_pending_stop_replies_in_queue ();
759 struct stop_reply *remote_notif_remove_queued_reply (ptid_t ptid);
760 struct stop_reply *queued_stop_reply (ptid_t ptid);
761 int peek_stop_reply (ptid_t ptid);
bb277751 762 void remote_parse_stop_reply (const char *buf, stop_reply *event);
6b8edb51
PA
763
764 void remote_stop_ns (ptid_t ptid);
765 void remote_interrupt_as ();
766 void remote_interrupt_ns ();
767
768 char *remote_get_noisy_reply ();
769 int remote_query_attached (int pid);
9ab8741a 770 inferior *remote_add_inferior (bool fake_pid_p, int pid, int attached,
6b8edb51
PA
771 int try_open_exec);
772
773 ptid_t remote_current_thread (ptid_t oldpid);
774 ptid_t get_current_thread (char *wait_status);
775
776 void set_thread (ptid_t ptid, int gen);
777 void set_general_thread (ptid_t ptid);
778 void set_continue_thread (ptid_t ptid);
779 void set_general_process ();
780
781 char *write_ptid (char *buf, const char *endbuf, ptid_t ptid);
782
783 int remote_unpack_thread_info_response (char *pkt, threadref *expectedref,
784 gdb_ext_thread_info *info);
785 int remote_get_threadinfo (threadref *threadid, int fieldset,
786 gdb_ext_thread_info *info);
787
788 int parse_threadlist_response (char *pkt, int result_limit,
789 threadref *original_echo,
790 threadref *resultlist,
791 int *doneflag);
792 int remote_get_threadlist (int startflag, threadref *nextthread,
793 int result_limit, int *done, int *result_count,
794 threadref *threadlist);
795
796 int remote_threadlist_iterator (rmt_thread_action stepfunction,
797 void *context, int looplimit);
798
799 int remote_get_threads_with_ql (threads_listing_context *context);
800 int remote_get_threads_with_qxfer (threads_listing_context *context);
801 int remote_get_threads_with_qthreadinfo (threads_listing_context *context);
802
803 void extended_remote_restart ();
804
805 void get_offsets ();
806
807 void remote_check_symbols ();
808
809 void remote_supported_packet (const struct protocol_feature *feature,
810 enum packet_support support,
811 const char *argument);
812
813 void remote_query_supported ();
814
815 void remote_packet_size (const protocol_feature *feature,
816 packet_support support, const char *value);
817
818 void remote_serial_quit_handler ();
819
820 void remote_detach_pid (int pid);
821
822 void remote_vcont_probe ();
823
824 void remote_resume_with_hc (ptid_t ptid, int step,
825 gdb_signal siggnal);
826
827 void send_interrupt_sequence ();
828 void interrupt_query ();
829
830 void remote_notif_get_pending_events (notif_client *nc);
831
832 int fetch_register_using_p (struct regcache *regcache,
833 packet_reg *reg);
834 int send_g_packet ();
835 void process_g_packet (struct regcache *regcache);
836 void fetch_registers_using_g (struct regcache *regcache);
837 int store_register_using_P (const struct regcache *regcache,
838 packet_reg *reg);
839 void store_registers_using_G (const struct regcache *regcache);
840
841 void set_remote_traceframe ();
842
843 void check_binary_download (CORE_ADDR addr);
844
845 target_xfer_status remote_write_bytes_aux (const char *header,
846 CORE_ADDR memaddr,
847 const gdb_byte *myaddr,
848 ULONGEST len_units,
849 int unit_size,
850 ULONGEST *xfered_len_units,
851 char packet_format,
852 int use_length);
853
854 target_xfer_status remote_write_bytes (CORE_ADDR memaddr,
855 const gdb_byte *myaddr, ULONGEST len,
856 int unit_size, ULONGEST *xfered_len);
857
858 target_xfer_status remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr,
859 ULONGEST len_units,
860 int unit_size, ULONGEST *xfered_len_units);
861
862 target_xfer_status remote_xfer_live_readonly_partial (gdb_byte *readbuf,
863 ULONGEST memaddr,
864 ULONGEST len,
865 int unit_size,
866 ULONGEST *xfered_len);
867
868 target_xfer_status remote_read_bytes (CORE_ADDR memaddr,
869 gdb_byte *myaddr, ULONGEST len,
870 int unit_size,
871 ULONGEST *xfered_len);
872
873 packet_result remote_send_printf (const char *format, ...)
874 ATTRIBUTE_PRINTF (2, 3);
875
876 target_xfer_status remote_flash_write (ULONGEST address,
877 ULONGEST length, ULONGEST *xfered_len,
878 const gdb_byte *data);
879
880 int readchar (int timeout);
881
882 void remote_serial_write (const char *str, int len);
883
884 int putpkt (const char *buf);
885 int putpkt_binary (const char *buf, int cnt);
886
8d64371b
TT
887 int putpkt (const gdb::char_vector &buf)
888 {
889 return putpkt (buf.data ());
890 }
891
6b8edb51 892 void skip_frame ();
8d64371b
TT
893 long read_frame (gdb::char_vector *buf_p);
894 void getpkt (gdb::char_vector *buf, int forever);
895 int getpkt_or_notif_sane_1 (gdb::char_vector *buf, int forever,
6b8edb51 896 int expecting_notif, int *is_notif);
8d64371b
TT
897 int getpkt_sane (gdb::char_vector *buf, int forever);
898 int getpkt_or_notif_sane (gdb::char_vector *buf, int forever,
6b8edb51
PA
899 int *is_notif);
900 int remote_vkill (int pid);
901 void remote_kill_k ();
902
903 void extended_remote_disable_randomization (int val);
904 int extended_remote_run (const std::string &args);
905
906 void send_environment_packet (const char *action,
907 const char *packet,
908 const char *value);
909
910 void extended_remote_environment_support ();
3c69da40 911 void extended_remote_set_inferior_cwd ();
80152258 912
3c69da40
PA
913 target_xfer_status remote_write_qxfer (const char *object_name,
914 const char *annex,
915 const gdb_byte *writebuf,
916 ULONGEST offset, LONGEST len,
917 ULONGEST *xfered_len,
918 struct packet_config *packet);
43c3a0e4 919
3c69da40
PA
920 target_xfer_status remote_read_qxfer (const char *object_name,
921 const char *annex,
922 gdb_byte *readbuf, ULONGEST offset,
923 LONGEST len,
924 ULONGEST *xfered_len,
925 struct packet_config *packet);
43c3a0e4 926
3c69da40 927 void push_stop_reply (struct stop_reply *new_event);
43c3a0e4 928
3c69da40 929 bool vcont_r_supported ();
43c3a0e4 930
3c69da40 931 void packet_command (const char *args, int from_tty);
43c3a0e4 932
3c69da40 933private: /* data fields */
43c3a0e4 934
3c69da40
PA
935 /* The remote state. Don't reference this directly. Use the
936 get_remote_state method instead. */
937 remote_state m_remote_state;
43c3a0e4
PA
938};
939
3c69da40
PA
940static const target_info extended_remote_target_info = {
941 "extended-remote",
942 N_("Extended remote serial target in gdb-specific protocol"),
943 remote_doc
944};
ea9c271d 945
3c69da40
PA
946/* Set up the extended remote target by extending the standard remote
947 target and adding to it. */
948
949class extended_remote_target final : public remote_target
ea9c271d 950{
9d6eea31 951public:
3c69da40
PA
952 const target_info &info () const override
953 { return extended_remote_target_info; }
9d6eea31 954
3c69da40
PA
955 /* Open an extended-remote connection. */
956 static void open (const char *, int);
de44f5a7 957
3c69da40
PA
958 bool can_create_inferior () override { return true; }
959 void create_inferior (const char *, const std::string &,
960 char **, int) override;
9d6eea31 961
3c69da40 962 void detach (inferior *, int) override;
9d6eea31 963
3c69da40
PA
964 bool can_attach () override { return true; }
965 void attach (const char *, int) override;
be2a5f71 966
3c69da40
PA
967 void post_attach (int) override;
968 bool supports_disable_randomization () override;
969};
1e51243a 970
3c69da40
PA
971/* Per-program-space data key. */
972static const struct program_space_data *remote_pspace_data;
2d717e4f 973
3c69da40
PA
974/* The variable registered as the control variable used by the
975 remote exec-file commands. While the remote exec-file setting is
976 per-program-space, the set/show machinery uses this as the
977 location of the remote exec-file value. */
978static char *remote_exec_file_var;
a6f3e723 979
3c69da40
PA
980/* The size to align memory write packets, when practical. The protocol
981 does not guarantee any alignment, and gdb will generate short
982 writes and unaligned writes, but even as a best-effort attempt this
983 can improve bulk transfers. For instance, if a write is misaligned
984 relative to the target's data bus, the stub may need to make an extra
985 round trip fetching data from the target. This doesn't make a
986 huge difference, but it's easy to do, so we try to be helpful.
82f73884 987
3c69da40
PA
988 The alignment chosen is arbitrary; usually data bus width is
989 important here, not the possibly larger cache line size. */
990enum { REMOTE_ALIGN_WRITES = 16 };
82f73884 991
3c69da40 992/* Prototypes for local functions. */
74531fed 993
3c69da40 994static int hexnumlen (ULONGEST num);
782b2b07 995
3c69da40 996static int stubhex (int ch);
5d93a237 997
3c69da40 998static int hexnumstr (char *, ULONGEST);
048094ac 999
3c69da40 1000static int hexnumnstr (char *, ULONGEST, int);
47f8a51d 1001
3c69da40 1002static CORE_ADDR remote_address_masked (CORE_ADDR);
262e1174 1003
3c69da40 1004static void print_packet (const char *);
747dc59d 1005
3c69da40 1006static int stub_unpack_int (char *buff, int fieldlength);
5e4a05c4 1007
3c69da40 1008struct packet_config;
b73be471 1009
3c69da40 1010static void show_packet_config_cmd (struct packet_config *config);
280ceea3 1011
3c69da40
PA
1012static void show_remote_protocol_packet_cmd (struct ui_file *file,
1013 int from_tty,
1014 struct cmd_list_element *c,
1015 const char *value);
8e88304f 1016
3c69da40 1017static ptid_t read_ptid (const char *buf, const char **obuf);
3a00c802 1018
3c69da40 1019static void remote_async_inferior_event_handler (gdb_client_data);
b80fafe3 1020
eefce37f 1021static bool remote_read_description_p (struct target_ops *target);
88b496c3 1022
05be00a8 1023static void remote_console_output (const char *msg);
5965e028 1024
3c69da40 1025static void remote_btrace_reset (remote_state *rs);
f4abbc16 1026
3c69da40 1027static void remote_unpush_and_throw (void);
15a201c8 1028
3c69da40 1029/* For "remote". */
80152258 1030
3c69da40 1031static struct cmd_list_element *remote_cmdlist;
9d6eea31 1032
3c69da40 1033/* For "set remote" and "show remote". */
6b8edb51 1034
3c69da40
PA
1035static struct cmd_list_element *remote_set_cmdlist;
1036static struct cmd_list_element *remote_show_cmdlist;
6b8edb51 1037
3c69da40 1038/* Controls whether GDB is willing to use range stepping. */
6b8edb51 1039
3c69da40
PA
1040static int use_range_stepping = 1;
1041
1042/* The max number of chars in debug output. The rest of chars are
1043 omitted. */
1044
1045#define REMOTE_DEBUG_MAX_CHAR 512
ea9c271d 1046
7aabaf9d
SM
1047/* Private data that we'll store in (struct thread_info)->priv. */
1048struct remote_thread_info : public private_thread_info
dc146f7c 1049{
7aabaf9d
SM
1050 std::string extra;
1051 std::string name;
1052 int core = -1;
799a2abe 1053
f6327dcb
KB
1054 /* Thread handle, perhaps a pthread_t or thread_t value, stored as a
1055 sequence of bytes. */
7aabaf9d 1056 gdb::byte_vector thread_handle;
f6327dcb 1057
799a2abe 1058 /* Whether the target stopped for a breakpoint/watchpoint. */
7aabaf9d 1059 enum target_stop_reason stop_reason = TARGET_STOPPED_BY_NO_REASON;
799a2abe
PA
1060
1061 /* This is set to the data address of the access causing the target
1062 to stop for a watchpoint. */
7aabaf9d 1063 CORE_ADDR watch_data_address = 0;
85ad3aaf
PA
1064
1065 /* Fields used by the vCont action coalescing implemented in
1066 remote_resume / remote_commit_resume. remote_resume stores each
1067 thread's last resume request in these fields, so that a later
1068 remote_commit_resume knows which is the proper action for this
1069 thread to include in the vCont packet. */
1070
1071 /* True if the last target_resume call for this thread was a step
1072 request, false if a continue request. */
7aabaf9d 1073 int last_resume_step = 0;
85ad3aaf
PA
1074
1075 /* The signal specified in the last target_resume call for this
1076 thread. */
7aabaf9d 1077 gdb_signal last_resume_sig = GDB_SIGNAL_0;
85ad3aaf
PA
1078
1079 /* Whether this thread was already vCont-resumed on the remote
1080 side. */
7aabaf9d 1081 int vcont_resumed = 0;
dc146f7c
VP
1082};
1083
de44f5a7 1084remote_state::remote_state ()
8d64371b 1085 : buf (400)
de44f5a7 1086{
de44f5a7
PA
1087}
1088
1089remote_state::~remote_state ()
1090{
1091 xfree (this->last_pass_packet);
1092 xfree (this->last_program_signals_packet);
de44f5a7
PA
1093 xfree (this->finished_object);
1094 xfree (this->finished_annex);
cf792862
TT
1095}
1096
35b1e5cc
SS
1097/* Utility: generate error from an incoming stub packet. */
1098static void
1099trace_error (char *buf)
1100{
1101 if (*buf++ != 'E')
1102 return; /* not an error msg */
1103 switch (*buf)
1104 {
1105 case '1': /* malformed packet error */
1106 if (*++buf == '0') /* general case: */
1107 error (_("remote.c: error in outgoing packet."));
1108 else
1109 error (_("remote.c: error in outgoing packet at field #%ld."),
1110 strtol (buf, NULL, 16));
35b1e5cc
SS
1111 default:
1112 error (_("Target returns error code '%s'."), buf);
1113 }
1114}
1115
1116/* Utility: wait for reply from stub, while accepting "O" packets. */
b6bb3468 1117
6b8edb51
PA
1118char *
1119remote_target::remote_get_noisy_reply ()
35b1e5cc 1120{
b6bb3468
PA
1121 struct remote_state *rs = get_remote_state ();
1122
35b1e5cc
SS
1123 do /* Loop on reply from remote stub. */
1124 {
1125 char *buf;
a744cf53 1126
0df8b418 1127 QUIT; /* Allow user to bail out with ^C. */
8d64371b
TT
1128 getpkt (&rs->buf, 0);
1129 buf = rs->buf.data ();
ad91cd99 1130 if (buf[0] == 'E')
35b1e5cc 1131 trace_error (buf);
61012eef 1132 else if (startswith (buf, "qRelocInsn:"))
dde08ee1
PA
1133 {
1134 ULONGEST ul;
1135 CORE_ADDR from, to, org_to;
256642e8 1136 const char *p, *pp;
dde08ee1 1137 int adjusted_size = 0;
7556d4a4 1138 int relocated = 0;
dde08ee1
PA
1139
1140 p = buf + strlen ("qRelocInsn:");
1141 pp = unpack_varlen_hex (p, &ul);
1142 if (*pp != ';')
cb91c06a 1143 error (_("invalid qRelocInsn packet: %s"), buf);
dde08ee1
PA
1144 from = ul;
1145
1146 p = pp + 1;
a9cbf802 1147 unpack_varlen_hex (p, &ul);
dde08ee1
PA
1148 to = ul;
1149
1150 org_to = to;
1151
a70b8144 1152 try
dde08ee1 1153 {
f5656ead 1154 gdbarch_relocate_instruction (target_gdbarch (), &to, from);
7556d4a4 1155 relocated = 1;
dde08ee1 1156 }
230d2906 1157 catch (const gdb_exception &ex)
7556d4a4
PA
1158 {
1159 if (ex.error == MEMORY_ERROR)
1160 {
1161 /* Propagate memory errors silently back to the
1162 target. The stub may have limited the range of
1163 addresses we can write to, for example. */
1164 }
1165 else
1166 {
1167 /* Something unexpectedly bad happened. Be verbose
1168 so we can tell what, and propagate the error back
1169 to the stub, so it doesn't get stuck waiting for
1170 a response. */
1171 exception_fprintf (gdb_stderr, ex,
1172 _("warning: relocating instruction: "));
1173 }
1174 putpkt ("E01");
1175 }
1176
1177 if (relocated)
dde08ee1
PA
1178 {
1179 adjusted_size = to - org_to;
1180
8d64371b 1181 xsnprintf (buf, rs->buf.size (), "qRelocInsn:%x", adjusted_size);
dde08ee1
PA
1182 putpkt (buf);
1183 }
dde08ee1 1184 }
ad91cd99 1185 else if (buf[0] == 'O' && buf[1] != 'K')
35b1e5cc
SS
1186 remote_console_output (buf + 1); /* 'O' message from stub */
1187 else
0df8b418 1188 return buf; /* Here's the actual reply. */
35b1e5cc
SS
1189 }
1190 while (1);
1191}
3c3bea1c 1192
9d6eea31
PA
1193struct remote_arch_state *
1194remote_state::get_remote_arch_state (struct gdbarch *gdbarch)
d01949b6 1195{
43c3a0e4
PA
1196 remote_arch_state *rsa;
1197
1198 auto it = this->m_arch_states.find (gdbarch);
1199 if (it == this->m_arch_states.end ())
9d6eea31 1200 {
43c3a0e4
PA
1201 auto p = this->m_arch_states.emplace (std::piecewise_construct,
1202 std::forward_as_tuple (gdbarch),
1203 std::forward_as_tuple (gdbarch));
1204 rsa = &p.first->second;
9d6eea31
PA
1205
1206 /* Make sure that the packet buffer is plenty big enough for
1207 this architecture. */
8d64371b
TT
1208 if (this->buf.size () < rsa->remote_packet_size)
1209 this->buf.resize (2 * rsa->remote_packet_size);
9d6eea31 1210 }
43c3a0e4
PA
1211 else
1212 rsa = &it->second;
1213
1214 return rsa;
d01949b6
AC
1215}
1216
0b83947e
DJ
1217/* Fetch the global remote target state. */
1218
6b8edb51
PA
1219remote_state *
1220remote_target::get_remote_state ()
0b83947e
DJ
1221{
1222 /* Make sure that the remote architecture state has been
1223 initialized, because doing so might reallocate rs->buf. Any
1224 function which calls getpkt also needs to be mindful of changes
1225 to rs->buf, but this call limits the number of places which run
1226 into trouble. */
3c69da40 1227 m_remote_state.get_remote_arch_state (target_gdbarch ());
0b83947e 1228
3c69da40 1229 return &m_remote_state;
0b83947e
DJ
1230}
1231
94585166
DB
1232/* Cleanup routine for the remote module's pspace data. */
1233
1234static void
1235remote_pspace_data_cleanup (struct program_space *pspace, void *arg)
1236{
19ba03f4 1237 char *remote_exec_file = (char *) arg;
94585166
DB
1238
1239 xfree (remote_exec_file);
1240}
1241
1242/* Fetch the remote exec-file from the current program space. */
1243
1244static const char *
1245get_remote_exec_file (void)
1246{
1247 char *remote_exec_file;
1248
19ba03f4
SM
1249 remote_exec_file
1250 = (char *) program_space_data (current_program_space,
1251 remote_pspace_data);
94585166
DB
1252 if (remote_exec_file == NULL)
1253 return "";
1254
1255 return remote_exec_file;
1256}
1257
1258/* Set the remote exec file for PSPACE. */
1259
1260static void
1261set_pspace_remote_exec_file (struct program_space *pspace,
1262 char *remote_exec_file)
1263{
19ba03f4 1264 char *old_file = (char *) program_space_data (pspace, remote_pspace_data);
94585166
DB
1265
1266 xfree (old_file);
1267 set_program_space_data (pspace, remote_pspace_data,
1268 xstrdup (remote_exec_file));
1269}
1270
1271/* The "set/show remote exec-file" set command hook. */
1272
1273static void
eb4c3f4a 1274set_remote_exec_file (const char *ignored, int from_tty,
94585166
DB
1275 struct cmd_list_element *c)
1276{
1277 gdb_assert (remote_exec_file_var != NULL);
1278 set_pspace_remote_exec_file (current_program_space, remote_exec_file_var);
1279}
1280
1281/* The "set/show remote exec-file" show command hook. */
1282
1283static void
1284show_remote_exec_file (struct ui_file *file, int from_tty,
1285 struct cmd_list_element *cmd, const char *value)
1286{
1287 fprintf_filtered (file, "%s\n", remote_exec_file_var);
1288}
1289
74ca34ce
DJ
1290static int
1291compare_pnums (const void *lhs_, const void *rhs_)
1292{
19ba03f4
SM
1293 const struct packet_reg * const *lhs
1294 = (const struct packet_reg * const *) lhs_;
1295 const struct packet_reg * const *rhs
1296 = (const struct packet_reg * const *) rhs_;
74ca34ce
DJ
1297
1298 if ((*lhs)->pnum < (*rhs)->pnum)
1299 return -1;
1300 else if ((*lhs)->pnum == (*rhs)->pnum)
1301 return 0;
1302 else
1303 return 1;
1304}
1305
c21236dc
PA
1306static int
1307map_regcache_remote_table (struct gdbarch *gdbarch, struct packet_reg *regs)
d01949b6 1308{
74ca34ce 1309 int regnum, num_remote_regs, offset;
74ca34ce 1310 struct packet_reg **remote_regs;
ea9c271d 1311
4a22f64d 1312 for (regnum = 0; regnum < gdbarch_num_regs (gdbarch); regnum++)
ad10f812 1313 {
c21236dc 1314 struct packet_reg *r = &regs[regnum];
baef701f 1315
4a22f64d 1316 if (register_size (gdbarch, regnum) == 0)
baef701f
DJ
1317 /* Do not try to fetch zero-sized (placeholder) registers. */
1318 r->pnum = -1;
1319 else
1320 r->pnum = gdbarch_remote_register_number (gdbarch, regnum);
1321
b323314b 1322 r->regnum = regnum;
74ca34ce
DJ
1323 }
1324
1325 /* Define the g/G packet format as the contents of each register
1326 with a remote protocol number, in order of ascending protocol
1327 number. */
1328
224c3ddb 1329 remote_regs = XALLOCAVEC (struct packet_reg *, gdbarch_num_regs (gdbarch));
f57d151a 1330 for (num_remote_regs = 0, regnum = 0;
4a22f64d 1331 regnum < gdbarch_num_regs (gdbarch);
f57d151a 1332 regnum++)
c21236dc
PA
1333 if (regs[regnum].pnum != -1)
1334 remote_regs[num_remote_regs++] = &regs[regnum];
7d58c67d 1335
74ca34ce
DJ
1336 qsort (remote_regs, num_remote_regs, sizeof (struct packet_reg *),
1337 compare_pnums);
1338
1339 for (regnum = 0, offset = 0; regnum < num_remote_regs; regnum++)
1340 {
1341 remote_regs[regnum]->in_g_packet = 1;
1342 remote_regs[regnum]->offset = offset;
4a22f64d 1343 offset += register_size (gdbarch, remote_regs[regnum]->regnum);
ad10f812
AC
1344 }
1345
c21236dc
PA
1346 return offset;
1347}
1348
1349/* Given the architecture described by GDBARCH, return the remote
1350 protocol register's number and the register's offset in the g/G
1351 packets of GDB register REGNUM, in PNUM and POFFSET respectively.
1352 If the target does not have a mapping for REGNUM, return false,
1353 otherwise, return true. */
1354
1355int
1356remote_register_number_and_offset (struct gdbarch *gdbarch, int regnum,
1357 int *pnum, int *poffset)
1358{
c21236dc
PA
1359 gdb_assert (regnum < gdbarch_num_regs (gdbarch));
1360
b80406ac 1361 std::vector<packet_reg> regs (gdbarch_num_regs (gdbarch));
c21236dc 1362
b80406ac 1363 map_regcache_remote_table (gdbarch, regs.data ());
c21236dc
PA
1364
1365 *pnum = regs[regnum].pnum;
1366 *poffset = regs[regnum].offset;
1367
c21236dc
PA
1368 return *pnum != -1;
1369}
1370
9d6eea31 1371remote_arch_state::remote_arch_state (struct gdbarch *gdbarch)
c21236dc 1372{
c21236dc
PA
1373 /* Use the architecture to build a regnum<->pnum table, which will be
1374 1:1 unless a feature set specifies otherwise. */
9d6eea31 1375 this->regs.reset (new packet_reg [gdbarch_num_regs (gdbarch)] ());
c21236dc 1376
74ca34ce
DJ
1377 /* Record the maximum possible size of the g packet - it may turn out
1378 to be smaller. */
9d6eea31
PA
1379 this->sizeof_g_packet
1380 = map_regcache_remote_table (gdbarch, this->regs.get ());
74ca34ce 1381
0df8b418 1382 /* Default maximum number of characters in a packet body. Many
d01949b6
AC
1383 remote stubs have a hardwired buffer size of 400 bytes
1384 (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
1385 as the maximum packet-size to ensure that the packet and an extra
1386 NUL character can always fit in the buffer. This stops GDB
1387 trashing stubs that try to squeeze an extra NUL into what is
ea9c271d 1388 already a full buffer (As of 1999-12-04 that was most stubs). */
9d6eea31 1389 this->remote_packet_size = 400 - 1;
d01949b6 1390
ea9c271d 1391 /* This one is filled in when a ``g'' packet is received. */
9d6eea31 1392 this->actual_register_packet_size = 0;
ea9c271d
DJ
1393
1394 /* Should rsa->sizeof_g_packet needs more space than the
0df8b418
MS
1395 default, adjust the size accordingly. Remember that each byte is
1396 encoded as two characters. 32 is the overhead for the packet
1397 header / footer. NOTE: cagney/1999-10-26: I suspect that 8
d01949b6 1398 (``$NN:G...#NN'') is a better guess, the below has been padded a
23860348 1399 little. */
9d6eea31
PA
1400 if (this->sizeof_g_packet > ((this->remote_packet_size - 32) / 2))
1401 this->remote_packet_size = (this->sizeof_g_packet * 2 + 32);
ea9c271d
DJ
1402}
1403
6b8edb51
PA
1404/* Get a pointer to the current remote target. If not connected to a
1405 remote target, return NULL. */
1406
1407static remote_target *
1408get_current_remote_target ()
1409{
1410 target_ops *proc_target = find_target_at (process_stratum);
1411 return dynamic_cast<remote_target *> (proc_target);
1412}
1413
ea9c271d
DJ
1414/* Return the current allowed size of a remote packet. This is
1415 inferred from the current architecture, and should be used to
1416 limit the length of outgoing packets. */
6b8edb51
PA
1417long
1418remote_target::get_remote_packet_size ()
ea9c271d 1419{
be2a5f71 1420 struct remote_state *rs = get_remote_state ();
9d6eea31 1421 remote_arch_state *rsa = rs->get_remote_arch_state (target_gdbarch ());
ea9c271d 1422
be2a5f71
DJ
1423 if (rs->explicit_packet_size)
1424 return rs->explicit_packet_size;
1425
ea9c271d 1426 return rsa->remote_packet_size;
d01949b6
AC
1427}
1428
ad10f812 1429static struct packet_reg *
5cd63fda
PA
1430packet_reg_from_regnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
1431 long regnum)
ad10f812 1432{
5cd63fda 1433 if (regnum < 0 && regnum >= gdbarch_num_regs (gdbarch))
b323314b
AC
1434 return NULL;
1435 else
ad10f812 1436 {
ea9c271d 1437 struct packet_reg *r = &rsa->regs[regnum];
a744cf53 1438
b323314b
AC
1439 gdb_assert (r->regnum == regnum);
1440 return r;
ad10f812 1441 }
ad10f812
AC
1442}
1443
1444static struct packet_reg *
5cd63fda
PA
1445packet_reg_from_pnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
1446 LONGEST pnum)
ad10f812 1447{
b323314b 1448 int i;
a744cf53 1449
5cd63fda 1450 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
ad10f812 1451 {
ea9c271d 1452 struct packet_reg *r = &rsa->regs[i];
a744cf53 1453
b323314b
AC
1454 if (r->pnum == pnum)
1455 return r;
ad10f812
AC
1456 }
1457 return NULL;
d01949b6
AC
1458}
1459
9a7071a8
JB
1460/* Allow the user to specify what sequence to send to the remote
1461 when he requests a program interruption: Although ^C is usually
1462 what remote systems expect (this is the default, here), it is
1463 sometimes preferable to send a break. On other systems such
1464 as the Linux kernel, a break followed by g, which is Magic SysRq g
1465 is required in order to interrupt the execution. */
1466const char interrupt_sequence_control_c[] = "Ctrl-C";
1467const char interrupt_sequence_break[] = "BREAK";
1468const char interrupt_sequence_break_g[] = "BREAK-g";
40478521 1469static const char *const interrupt_sequence_modes[] =
9a7071a8
JB
1470 {
1471 interrupt_sequence_control_c,
1472 interrupt_sequence_break,
1473 interrupt_sequence_break_g,
1474 NULL
1475 };
1476static const char *interrupt_sequence_mode = interrupt_sequence_control_c;
1477
1478static void
1479show_interrupt_sequence (struct ui_file *file, int from_tty,
1480 struct cmd_list_element *c,
1481 const char *value)
1482{
1483 if (interrupt_sequence_mode == interrupt_sequence_control_c)
1484 fprintf_filtered (file,
1485 _("Send the ASCII ETX character (Ctrl-c) "
1486 "to the remote target to interrupt the "
1487 "execution of the program.\n"));
1488 else if (interrupt_sequence_mode == interrupt_sequence_break)
1489 fprintf_filtered (file,
1490 _("send a break signal to the remote target "
1491 "to interrupt the execution of the program.\n"));
1492 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
1493 fprintf_filtered (file,
1494 _("Send a break signal and 'g' a.k.a. Magic SysRq g to "
1495 "the remote target to interrupt the execution "
1496 "of Linux kernel.\n"));
1497 else
1498 internal_error (__FILE__, __LINE__,
1499 _("Invalid value for interrupt_sequence_mode: %s."),
1500 interrupt_sequence_mode);
1501}
6426a772 1502
9a7071a8
JB
1503/* This boolean variable specifies whether interrupt_sequence is sent
1504 to the remote target when gdb connects to it.
1505 This is mostly needed when you debug the Linux kernel: The Linux kernel
1506 expects BREAK g which is Magic SysRq g for connecting gdb. */
1507static int interrupt_on_connect = 0;
c906108c 1508
9a7071a8
JB
1509/* This variable is used to implement the "set/show remotebreak" commands.
1510 Since these commands are now deprecated in favor of "set/show remote
1511 interrupt-sequence", it no longer has any effect on the code. */
c906108c
SS
1512static int remote_break;
1513
9a7071a8 1514static void
eb4c3f4a 1515set_remotebreak (const char *args, int from_tty, struct cmd_list_element *c)
9a7071a8
JB
1516{
1517 if (remote_break)
1518 interrupt_sequence_mode = interrupt_sequence_break;
1519 else
1520 interrupt_sequence_mode = interrupt_sequence_control_c;
1521}
1522
1523static void
1524show_remotebreak (struct ui_file *file, int from_tty,
1525 struct cmd_list_element *c,
1526 const char *value)
1527{
1528}
1529
c906108c
SS
1530/* This variable sets the number of bits in an address that are to be
1531 sent in a memory ("M" or "m") packet. Normally, after stripping
0df8b418 1532 leading zeros, the entire address would be sent. This variable
c906108c
SS
1533 restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
1534 initial implementation of remote.c restricted the address sent in
1535 memory packets to ``host::sizeof long'' bytes - (typically 32
1536 bits). Consequently, for 64 bit targets, the upper 32 bits of an
1537 address was never sent. Since fixing this bug may cause a break in
1538 some remote targets this variable is principly provided to
23860348 1539 facilitate backward compatibility. */
c906108c 1540
883b9c6c 1541static unsigned int remote_address_size;
c906108c 1542
11cf8741 1543\f
11cf8741 1544/* User configurable variables for the number of characters in a
ea9c271d
DJ
1545 memory read/write packet. MIN (rsa->remote_packet_size,
1546 rsa->sizeof_g_packet) is the default. Some targets need smaller
24b06219 1547 values (fifo overruns, et.al.) and some users need larger values
ad10f812
AC
1548 (speed up transfers). The variables ``preferred_*'' (the user
1549 request), ``current_*'' (what was actually set) and ``forced_*''
23860348 1550 (Positive - a soft limit, negative - a hard limit). */
11cf8741
JM
1551
1552struct memory_packet_config
1553{
a121b7c1 1554 const char *name;
11cf8741
JM
1555 long size;
1556 int fixed_p;
1557};
1558
cc0be08f
PA
1559/* The default max memory-write-packet-size, when the setting is
1560 "fixed". The 16k is historical. (It came from older GDB's using
1561 alloca for buffers and the knowledge (folklore?) that some hosts
1562 don't cope very well with large alloca calls.) */
1563#define DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED 16384
a5c0808e
PA
1564
1565/* The minimum remote packet size for memory transfers. Ensures we
1566 can write at least one byte. */
1567#define MIN_MEMORY_PACKET_SIZE 20
1568
cc0be08f
PA
1569/* Get the memory packet size, assuming it is fixed. */
1570
1571static long
1572get_fixed_memory_packet_size (struct memory_packet_config *config)
1573{
1574 gdb_assert (config->fixed_p);
1575
1576 if (config->size <= 0)
1577 return DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED;
1578 else
1579 return config->size;
1580}
1581
11cf8741
JM
1582/* Compute the current size of a read/write packet. Since this makes
1583 use of ``actual_register_packet_size'' the computation is dynamic. */
1584
6b8edb51
PA
1585long
1586remote_target::get_memory_packet_size (struct memory_packet_config *config)
11cf8741 1587{
d01949b6 1588 struct remote_state *rs = get_remote_state ();
9d6eea31 1589 remote_arch_state *rsa = rs->get_remote_arch_state (target_gdbarch ());
ea9c271d 1590
11cf8741
JM
1591 long what_they_get;
1592 if (config->fixed_p)
cc0be08f 1593 what_they_get = get_fixed_memory_packet_size (config);
11cf8741
JM
1594 else
1595 {
ea9c271d 1596 what_they_get = get_remote_packet_size ();
23860348 1597 /* Limit the packet to the size specified by the user. */
11cf8741
JM
1598 if (config->size > 0
1599 && what_they_get > config->size)
1600 what_they_get = config->size;
be2a5f71
DJ
1601
1602 /* Limit it to the size of the targets ``g'' response unless we have
1603 permission from the stub to use a larger packet size. */
1604 if (rs->explicit_packet_size == 0
1605 && rsa->actual_register_packet_size > 0
1606 && what_they_get > rsa->actual_register_packet_size)
1607 what_they_get = rsa->actual_register_packet_size;
11cf8741 1608 }
a5c0808e
PA
1609 if (what_they_get < MIN_MEMORY_PACKET_SIZE)
1610 what_they_get = MIN_MEMORY_PACKET_SIZE;
6d820c5c
DJ
1611
1612 /* Make sure there is room in the global buffer for this packet
1613 (including its trailing NUL byte). */
8d64371b
TT
1614 if (rs->buf.size () < what_they_get + 1)
1615 rs->buf.resize (2 * what_they_get);
6d820c5c 1616
11cf8741
JM
1617 return what_they_get;
1618}
1619
0df8b418 1620/* Update the size of a read/write packet. If they user wants
23860348 1621 something really big then do a sanity check. */
11cf8741
JM
1622
1623static void
ac88e2de 1624set_memory_packet_size (const char *args, struct memory_packet_config *config)
11cf8741
JM
1625{
1626 int fixed_p = config->fixed_p;
1627 long size = config->size;
a744cf53 1628
11cf8741 1629 if (args == NULL)
8a3fe4f8 1630 error (_("Argument required (integer, `fixed' or `limited')."));
11cf8741
JM
1631 else if (strcmp (args, "hard") == 0
1632 || strcmp (args, "fixed") == 0)
1633 fixed_p = 1;
1634 else if (strcmp (args, "soft") == 0
1635 || strcmp (args, "limit") == 0)
1636 fixed_p = 0;
1637 else
1638 {
1639 char *end;
a744cf53 1640
11cf8741
JM
1641 size = strtoul (args, &end, 0);
1642 if (args == end)
8a3fe4f8 1643 error (_("Invalid %s (bad syntax)."), config->name);
a5c0808e
PA
1644
1645 /* Instead of explicitly capping the size of a packet to or
1646 disallowing it, the user is allowed to set the size to
1647 something arbitrarily large. */
11cf8741 1648 }
a5c0808e 1649
23860348 1650 /* Extra checks? */
11cf8741
JM
1651 if (fixed_p && !config->fixed_p)
1652 {
cc0be08f
PA
1653 /* So that the query shows the correct value. */
1654 long query_size = (size <= 0
1655 ? DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED
1656 : size);
1657
e2e0b3e5
AC
1658 if (! query (_("The target may not be able to correctly handle a %s\n"
1659 "of %ld bytes. Change the packet size? "),
cc0be08f 1660 config->name, query_size))
8a3fe4f8 1661 error (_("Packet size not changed."));
11cf8741 1662 }
23860348 1663 /* Update the config. */
11cf8741
JM
1664 config->fixed_p = fixed_p;
1665 config->size = size;
1666}
1667
1668static void
1669show_memory_packet_size (struct memory_packet_config *config)
1670{
cc0be08f
PA
1671 if (config->size == 0)
1672 printf_filtered (_("The %s is 0 (default). "), config->name);
1673 else
1674 printf_filtered (_("The %s is %ld. "), config->name, config->size);
11cf8741 1675 if (config->fixed_p)
a3f17187 1676 printf_filtered (_("Packets are fixed at %ld bytes.\n"),
cc0be08f 1677 get_fixed_memory_packet_size (config));
11cf8741 1678 else
cc0be08f 1679 {
6b8edb51 1680 remote_target *remote = get_current_remote_target ();
cc0be08f 1681
6b8edb51 1682 if (remote != NULL)
cc0be08f 1683 printf_filtered (_("Packets are limited to %ld bytes.\n"),
6b8edb51 1684 remote->get_memory_packet_size (config));
cc0be08f
PA
1685 else
1686 puts_filtered ("The actual limit will be further reduced "
1687 "dependent on the target.\n");
1688 }
11cf8741
JM
1689}
1690
1691static struct memory_packet_config memory_write_packet_config =
1692{
1693 "memory-write-packet-size",
1694};
1695
1696static void
ac88e2de 1697set_memory_write_packet_size (const char *args, int from_tty)
11cf8741
JM
1698{
1699 set_memory_packet_size (args, &memory_write_packet_config);
1700}
1701
1702static void
ac88e2de 1703show_memory_write_packet_size (const char *args, int from_tty)
11cf8741
JM
1704{
1705 show_memory_packet_size (&memory_write_packet_config);
1706}
1707
055303e2
AB
1708/* Show the number of hardware watchpoints that can be used. */
1709
1710static void
1711show_hardware_watchpoint_limit (struct ui_file *file, int from_tty,
1712 struct cmd_list_element *c,
1713 const char *value)
1714{
1715 fprintf_filtered (file, _("The maximum number of target hardware "
1716 "watchpoints is %s.\n"), value);
1717}
1718
1719/* Show the length limit (in bytes) for hardware watchpoints. */
1720
1721static void
1722show_hardware_watchpoint_length_limit (struct ui_file *file, int from_tty,
1723 struct cmd_list_element *c,
1724 const char *value)
1725{
1726 fprintf_filtered (file, _("The maximum length (in bytes) of a target "
1727 "hardware watchpoint is %s.\n"), value);
1728}
1729
1730/* Show the number of hardware breakpoints that can be used. */
1731
1732static void
1733show_hardware_breakpoint_limit (struct ui_file *file, int from_tty,
1734 struct cmd_list_element *c,
1735 const char *value)
1736{
1737 fprintf_filtered (file, _("The maximum number of target hardware "
1738 "breakpoints is %s.\n"), value);
1739}
1740
6b8edb51
PA
1741long
1742remote_target::get_memory_write_packet_size ()
11cf8741
JM
1743{
1744 return get_memory_packet_size (&memory_write_packet_config);
1745}
1746
1747static struct memory_packet_config memory_read_packet_config =
1748{
1749 "memory-read-packet-size",
1750};
1751
1752static void
ac88e2de 1753set_memory_read_packet_size (const char *args, int from_tty)
11cf8741
JM
1754{
1755 set_memory_packet_size (args, &memory_read_packet_config);
1756}
1757
1758static void
ac88e2de 1759show_memory_read_packet_size (const char *args, int from_tty)
11cf8741
JM
1760{
1761 show_memory_packet_size (&memory_read_packet_config);
1762}
1763
6b8edb51
PA
1764long
1765remote_target::get_memory_read_packet_size ()
11cf8741
JM
1766{
1767 long size = get_memory_packet_size (&memory_read_packet_config);
a744cf53 1768
11cf8741
JM
1769 /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
1770 extra buffer size argument before the memory read size can be
ea9c271d
DJ
1771 increased beyond this. */
1772 if (size > get_remote_packet_size ())
1773 size = get_remote_packet_size ();
11cf8741
JM
1774 return size;
1775}
1776
11cf8741 1777\f
5a2468f5 1778
5a2468f5
JM
1779struct packet_config
1780 {
bb572ddd
DJ
1781 const char *name;
1782 const char *title;
4082afcc
PA
1783
1784 /* If auto, GDB auto-detects support for this packet or feature,
1785 either through qSupported, or by trying the packet and looking
1786 at the response. If true, GDB assumes the target supports this
ca4f7f8b
PA
1787 packet. If false, the packet is disabled. Configs that don't
1788 have an associated command always have this set to auto. */
7f19b9a2 1789 enum auto_boolean detect;
4082afcc
PA
1790
1791 /* Does the target support this packet? */
5a2468f5
JM
1792 enum packet_support support;
1793 };
1794
4082afcc
PA
1795static enum packet_support packet_config_support (struct packet_config *config);
1796static enum packet_support packet_support (int packet);
5a2468f5
JM
1797
1798static void
fba45db2 1799show_packet_config_cmd (struct packet_config *config)
5a2468f5 1800{
a121b7c1 1801 const char *support = "internal-error";
a744cf53 1802
4082afcc 1803 switch (packet_config_support (config))
5a2468f5
JM
1804 {
1805 case PACKET_ENABLE:
1806 support = "enabled";
1807 break;
1808 case PACKET_DISABLE:
1809 support = "disabled";
1810 break;
1811 case PACKET_SUPPORT_UNKNOWN:
1812 support = "unknown";
1813 break;
1814 }
1815 switch (config->detect)
1816 {
7f19b9a2 1817 case AUTO_BOOLEAN_AUTO:
3e43a32a
MS
1818 printf_filtered (_("Support for the `%s' packet "
1819 "is auto-detected, currently %s.\n"),
37a105a1 1820 config->name, support);
5a2468f5 1821 break;
7f19b9a2
AC
1822 case AUTO_BOOLEAN_TRUE:
1823 case AUTO_BOOLEAN_FALSE:
37a105a1
DJ
1824 printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
1825 config->name, support);
8e248173 1826 break;
5a2468f5
JM
1827 }
1828}
1829
1830static void
bb572ddd
DJ
1831add_packet_config_cmd (struct packet_config *config, const char *name,
1832 const char *title, int legacy)
d471ea57 1833{
5a2468f5
JM
1834 char *set_doc;
1835 char *show_doc;
d471ea57 1836 char *cmd_name;
3ed07be4 1837
5a2468f5
JM
1838 config->name = name;
1839 config->title = title;
b435e160
AC
1840 set_doc = xstrprintf ("Set use of remote protocol `%s' (%s) packet",
1841 name, title);
3e43a32a
MS
1842 show_doc = xstrprintf ("Show current use of remote "
1843 "protocol `%s' (%s) packet",
b435e160 1844 name, title);
d471ea57 1845 /* set/show TITLE-packet {auto,on,off} */
b435e160 1846 cmd_name = xstrprintf ("%s-packet", title);
e9e68a56 1847 add_setshow_auto_boolean_cmd (cmd_name, class_obscure,
3e43a32a
MS
1848 &config->detect, set_doc,
1849 show_doc, NULL, /* help_doc */
4082afcc 1850 NULL,
bb572ddd
DJ
1851 show_remote_protocol_packet_cmd,
1852 &remote_set_cmdlist, &remote_show_cmdlist);
1eefb858
TT
1853 /* The command code copies the documentation strings. */
1854 xfree (set_doc);
1855 xfree (show_doc);
23860348 1856 /* set/show remote NAME-packet {auto,on,off} -- legacy. */
d471ea57
AC
1857 if (legacy)
1858 {
1859 char *legacy_name;
a744cf53 1860
b435e160 1861 legacy_name = xstrprintf ("%s-packet", name);
d471ea57 1862 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
bb572ddd 1863 &remote_set_cmdlist);
d471ea57 1864 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
bb572ddd 1865 &remote_show_cmdlist);
d471ea57 1866 }
5a2468f5
JM
1867}
1868
d471ea57 1869static enum packet_result
a76d924d 1870packet_check_result (const char *buf)
5a2468f5 1871{
d471ea57 1872 if (buf[0] != '\0')
5a2468f5 1873 {
d471ea57 1874 /* The stub recognized the packet request. Check that the
23860348 1875 operation succeeded. */
a76d924d
DJ
1876 if (buf[0] == 'E'
1877 && isxdigit (buf[1]) && isxdigit (buf[2])
1878 && buf[3] == '\0')
1879 /* "Enn" - definitly an error. */
1880 return PACKET_ERROR;
1881
1882 /* Always treat "E." as an error. This will be used for
1883 more verbose error messages, such as E.memtypes. */
1884 if (buf[0] == 'E' && buf[1] == '.')
1885 return PACKET_ERROR;
1886
1887 /* The packet may or may not be OK. Just assume it is. */
1888 return PACKET_OK;
1889 }
1890 else
1891 /* The stub does not support the packet. */
1892 return PACKET_UNKNOWN;
1893}
1894
8d64371b
TT
1895static enum packet_result
1896packet_check_result (const gdb::char_vector &buf)
1897{
1898 return packet_check_result (buf.data ());
1899}
1900
a76d924d
DJ
1901static enum packet_result
1902packet_ok (const char *buf, struct packet_config *config)
1903{
1904 enum packet_result result;
1905
4082afcc
PA
1906 if (config->detect != AUTO_BOOLEAN_TRUE
1907 && config->support == PACKET_DISABLE)
1908 internal_error (__FILE__, __LINE__,
1909 _("packet_ok: attempt to use a disabled packet"));
1910
a76d924d
DJ
1911 result = packet_check_result (buf);
1912 switch (result)
1913 {
1914 case PACKET_OK:
1915 case PACKET_ERROR:
1916 /* The stub recognized the packet request. */
4082afcc 1917 if (config->support == PACKET_SUPPORT_UNKNOWN)
d471ea57 1918 {
d471ea57
AC
1919 if (remote_debug)
1920 fprintf_unfiltered (gdb_stdlog,
4082afcc
PA
1921 "Packet %s (%s) is supported\n",
1922 config->name, config->title);
d471ea57 1923 config->support = PACKET_ENABLE;
d471ea57 1924 }
a76d924d
DJ
1925 break;
1926 case PACKET_UNKNOWN:
23860348 1927 /* The stub does not support the packet. */
4082afcc
PA
1928 if (config->detect == AUTO_BOOLEAN_AUTO
1929 && config->support == PACKET_ENABLE)
d471ea57 1930 {
4082afcc
PA
1931 /* If the stub previously indicated that the packet was
1932 supported then there is a protocol error. */
1933 error (_("Protocol error: %s (%s) conflicting enabled responses."),
1934 config->name, config->title);
1935 }
1936 else if (config->detect == AUTO_BOOLEAN_TRUE)
1937 {
1938 /* The user set it wrong. */
1939 error (_("Enabled packet %s (%s) not recognized by stub"),
1940 config->name, config->title);
d471ea57 1941 }
4082afcc
PA
1942
1943 if (remote_debug)
1944 fprintf_unfiltered (gdb_stdlog,
1945 "Packet %s (%s) is NOT supported\n",
1946 config->name, config->title);
1947 config->support = PACKET_DISABLE;
a76d924d 1948 break;
5a2468f5 1949 }
a76d924d
DJ
1950
1951 return result;
5a2468f5
JM
1952}
1953
8d64371b
TT
1954static enum packet_result
1955packet_ok (const gdb::char_vector &buf, struct packet_config *config)
1956{
1957 return packet_ok (buf.data (), config);
1958}
1959
444abaca
DJ
1960enum {
1961 PACKET_vCont = 0,
1962 PACKET_X,
1963 PACKET_qSymbol,
1964 PACKET_P,
1965 PACKET_p,
1966 PACKET_Z0,
1967 PACKET_Z1,
1968 PACKET_Z2,
1969 PACKET_Z3,
1970 PACKET_Z4,
15a201c8 1971 PACKET_vFile_setfs,
a6b151f1
DJ
1972 PACKET_vFile_open,
1973 PACKET_vFile_pread,
1974 PACKET_vFile_pwrite,
1975 PACKET_vFile_close,
1976 PACKET_vFile_unlink,
b9e7b9c3 1977 PACKET_vFile_readlink,
0a93529c 1978 PACKET_vFile_fstat,
0876f84a 1979 PACKET_qXfer_auxv,
23181151 1980 PACKET_qXfer_features,
c78fa86a 1981 PACKET_qXfer_exec_file,
cfa9d6d9 1982 PACKET_qXfer_libraries,
2268b414 1983 PACKET_qXfer_libraries_svr4,
fd79ecee 1984 PACKET_qXfer_memory_map,
0e7f50da
UW
1985 PACKET_qXfer_spu_read,
1986 PACKET_qXfer_spu_write,
07e059b5 1987 PACKET_qXfer_osdata,
dc146f7c 1988 PACKET_qXfer_threads,
0fb4aa4b 1989 PACKET_qXfer_statictrace_read,
b3b9301e 1990 PACKET_qXfer_traceframe_info,
169081d0 1991 PACKET_qXfer_uib,
711e434b 1992 PACKET_qGetTIBAddr,
444abaca 1993 PACKET_qGetTLSAddr,
be2a5f71 1994 PACKET_qSupported,
bd3eecc3 1995 PACKET_qTStatus,
89be2091 1996 PACKET_QPassSignals,
82075af2 1997 PACKET_QCatchSyscalls,
9b224c5e 1998 PACKET_QProgramSignals,
bc3b087d 1999 PACKET_QSetWorkingDir,
aefd8b33 2000 PACKET_QStartupWithShell,
0a2dde4a
SDJ
2001 PACKET_QEnvironmentHexEncoded,
2002 PACKET_QEnvironmentReset,
2003 PACKET_QEnvironmentUnset,
936d2992 2004 PACKET_qCRC,
08388c79 2005 PACKET_qSearch_memory,
2d717e4f
DJ
2006 PACKET_vAttach,
2007 PACKET_vRun,
a6f3e723 2008 PACKET_QStartNoAckMode,
82f73884 2009 PACKET_vKill,
4aa995e1
PA
2010 PACKET_qXfer_siginfo_read,
2011 PACKET_qXfer_siginfo_write,
0b16c5cf 2012 PACKET_qAttached,
4082afcc
PA
2013
2014 /* Support for conditional tracepoints. */
782b2b07 2015 PACKET_ConditionalTracepoints,
4082afcc
PA
2016
2017 /* Support for target-side breakpoint conditions. */
3788aec7 2018 PACKET_ConditionalBreakpoints,
4082afcc
PA
2019
2020 /* Support for target-side breakpoint commands. */
d3ce09f5 2021 PACKET_BreakpointCommands,
4082afcc
PA
2022
2023 /* Support for fast tracepoints. */
7a697b8d 2024 PACKET_FastTracepoints,
4082afcc
PA
2025
2026 /* Support for static tracepoints. */
0fb4aa4b 2027 PACKET_StaticTracepoints,
4082afcc
PA
2028
2029 /* Support for installing tracepoints while a trace experiment is
2030 running. */
1e4d1764 2031 PACKET_InstallInTrace,
4082afcc 2032
40ab02ce
MS
2033 PACKET_bc,
2034 PACKET_bs,
409873ef 2035 PACKET_TracepointSource,
d914c394 2036 PACKET_QAllow,
78d85199 2037 PACKET_qXfer_fdpic,
03583c20 2038 PACKET_QDisableRandomization,
d1feda86 2039 PACKET_QAgent,
f6f899bf 2040 PACKET_QTBuffer_size,
9accd112
MM
2041 PACKET_Qbtrace_off,
2042 PACKET_Qbtrace_bts,
b20a6524 2043 PACKET_Qbtrace_pt,
9accd112 2044 PACKET_qXfer_btrace,
4082afcc
PA
2045
2046 /* Support for the QNonStop packet. */
2047 PACKET_QNonStop,
2048
65706a29
PA
2049 /* Support for the QThreadEvents packet. */
2050 PACKET_QThreadEvents,
2051
4082afcc
PA
2052 /* Support for multi-process extensions. */
2053 PACKET_multiprocess_feature,
2054
2055 /* Support for enabling and disabling tracepoints while a trace
2056 experiment is running. */
2057 PACKET_EnableDisableTracepoints_feature,
2058
2059 /* Support for collecting strings using the tracenz bytecode. */
2060 PACKET_tracenz_feature,
2061
2062 /* Support for continuing to run a trace experiment while GDB is
2063 disconnected. */
2064 PACKET_DisconnectedTracing_feature,
2065
2066 /* Support for qXfer:libraries-svr4:read with a non-empty annex. */
2067 PACKET_augmented_libraries_svr4_read_feature,
2068
f4abbc16
MM
2069 /* Support for the qXfer:btrace-conf:read packet. */
2070 PACKET_qXfer_btrace_conf,
2071
d33501a5
MM
2072 /* Support for the Qbtrace-conf:bts:size packet. */
2073 PACKET_Qbtrace_conf_bts_size,
2074
f7e6eed5
PA
2075 /* Support for swbreak+ feature. */
2076 PACKET_swbreak_feature,
2077
2078 /* Support for hwbreak+ feature. */
2079 PACKET_hwbreak_feature,
2080
89245bc0
DB
2081 /* Support for fork events. */
2082 PACKET_fork_event_feature,
2083
2084 /* Support for vfork events. */
2085 PACKET_vfork_event_feature,
2086
b20a6524
MM
2087 /* Support for the Qbtrace-conf:pt:size packet. */
2088 PACKET_Qbtrace_conf_pt_size,
2089
94585166
DB
2090 /* Support for exec events. */
2091 PACKET_exec_event_feature,
2092
750ce8d1
YQ
2093 /* Support for query supported vCont actions. */
2094 PACKET_vContSupported,
2095
de979965
PA
2096 /* Support remote CTRL-C. */
2097 PACKET_vCtrlC,
2098
f2faf941
PA
2099 /* Support TARGET_WAITKIND_NO_RESUMED. */
2100 PACKET_no_resumed,
2101
444abaca
DJ
2102 PACKET_MAX
2103};
506fb367 2104
444abaca 2105static struct packet_config remote_protocol_packets[PACKET_MAX];
dc8acb97 2106
f7e6eed5
PA
2107/* Returns the packet's corresponding "set remote foo-packet" command
2108 state. See struct packet_config for more details. */
2109
2110static enum auto_boolean
2111packet_set_cmd_state (int packet)
2112{
2113 return remote_protocol_packets[packet].detect;
2114}
2115
4082afcc
PA
2116/* Returns whether a given packet or feature is supported. This takes
2117 into account the state of the corresponding "set remote foo-packet"
2118 command, which may be used to bypass auto-detection. */
dc8acb97 2119
4082afcc
PA
2120static enum packet_support
2121packet_config_support (struct packet_config *config)
2122{
2123 switch (config->detect)
444abaca 2124 {
4082afcc
PA
2125 case AUTO_BOOLEAN_TRUE:
2126 return PACKET_ENABLE;
2127 case AUTO_BOOLEAN_FALSE:
2128 return PACKET_DISABLE;
2129 case AUTO_BOOLEAN_AUTO:
2130 return config->support;
2131 default:
2132 gdb_assert_not_reached (_("bad switch"));
444abaca 2133 }
4082afcc
PA
2134}
2135
2136/* Same as packet_config_support, but takes the packet's enum value as
2137 argument. */
2138
2139static enum packet_support
2140packet_support (int packet)
2141{
2142 struct packet_config *config = &remote_protocol_packets[packet];
2143
2144 return packet_config_support (config);
dc8acb97
MS
2145}
2146
5a2468f5 2147static void
444abaca
DJ
2148show_remote_protocol_packet_cmd (struct ui_file *file, int from_tty,
2149 struct cmd_list_element *c,
2150 const char *value)
5a2468f5 2151{
444abaca 2152 struct packet_config *packet;
5a2468f5 2153
444abaca
DJ
2154 for (packet = remote_protocol_packets;
2155 packet < &remote_protocol_packets[PACKET_MAX];
2156 packet++)
2157 {
2158 if (&packet->detect == c->var)
2159 {
2160 show_packet_config_cmd (packet);
2161 return;
2162 }
2163 }
9b20d036 2164 internal_error (__FILE__, __LINE__, _("Could not find config for %s"),
444abaca 2165 c->name);
5a2468f5
JM
2166}
2167
d471ea57
AC
2168/* Should we try one of the 'Z' requests? */
2169
2170enum Z_packet_type
2171{
2172 Z_PACKET_SOFTWARE_BP,
2173 Z_PACKET_HARDWARE_BP,
2174 Z_PACKET_WRITE_WP,
2175 Z_PACKET_READ_WP,
2176 Z_PACKET_ACCESS_WP,
2177 NR_Z_PACKET_TYPES
2178};
96baa820 2179
d471ea57 2180/* For compatibility with older distributions. Provide a ``set remote
23860348 2181 Z-packet ...'' command that updates all the Z packet types. */
d471ea57 2182
7f19b9a2 2183static enum auto_boolean remote_Z_packet_detect;
96baa820
JM
2184
2185static void
eb4c3f4a 2186set_remote_protocol_Z_packet_cmd (const char *args, int from_tty,
fba45db2 2187 struct cmd_list_element *c)
96baa820 2188{
d471ea57 2189 int i;
a744cf53 2190
d471ea57 2191 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
4082afcc 2192 remote_protocol_packets[PACKET_Z0 + i].detect = remote_Z_packet_detect;
96baa820
JM
2193}
2194
2195static void
08546159
AC
2196show_remote_protocol_Z_packet_cmd (struct ui_file *file, int from_tty,
2197 struct cmd_list_element *c,
2198 const char *value)
96baa820 2199{
d471ea57 2200 int i;
a744cf53 2201
d471ea57
AC
2202 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
2203 {
444abaca 2204 show_packet_config_cmd (&remote_protocol_packets[PACKET_Z0 + i]);
d471ea57 2205 }
96baa820
JM
2206}
2207
4082afcc
PA
2208/* Returns true if the multi-process extensions are in effect. */
2209
2210static int
2211remote_multi_process_p (struct remote_state *rs)
2212{
2213 return packet_support (PACKET_multiprocess_feature) == PACKET_ENABLE;
2214}
2215
de0d863e
DB
2216/* Returns true if fork events are supported. */
2217
2218static int
2219remote_fork_event_p (struct remote_state *rs)
2220{
2221 return packet_support (PACKET_fork_event_feature) == PACKET_ENABLE;
2222}
2223
c269dbdb
DB
2224/* Returns true if vfork events are supported. */
2225
2226static int
2227remote_vfork_event_p (struct remote_state *rs)
2228{
2229 return packet_support (PACKET_vfork_event_feature) == PACKET_ENABLE;
2230}
2231
d46addbb
DB
2232/* Returns true if exec events are supported. */
2233
2234static int
2235remote_exec_event_p (struct remote_state *rs)
2236{
2237 return packet_support (PACKET_exec_event_feature) == PACKET_ENABLE;
2238}
2239
cbb8991c
DB
2240/* Insert fork catchpoint target routine. If fork events are enabled
2241 then return success, nothing more to do. */
2242
f6ac5f3d
PA
2243int
2244remote_target::insert_fork_catchpoint (int pid)
cbb8991c
DB
2245{
2246 struct remote_state *rs = get_remote_state ();
2247
2248 return !remote_fork_event_p (rs);
2249}
2250
2251/* Remove fork catchpoint target routine. Nothing to do, just
2252 return success. */
2253
f6ac5f3d
PA
2254int
2255remote_target::remove_fork_catchpoint (int pid)
cbb8991c
DB
2256{
2257 return 0;
2258}
2259
2260/* Insert vfork catchpoint target routine. If vfork events are enabled
2261 then return success, nothing more to do. */
2262
f6ac5f3d
PA
2263int
2264remote_target::insert_vfork_catchpoint (int pid)
cbb8991c
DB
2265{
2266 struct remote_state *rs = get_remote_state ();
2267
2268 return !remote_vfork_event_p (rs);
2269}
2270
2271/* Remove vfork catchpoint target routine. Nothing to do, just
2272 return success. */
2273
f6ac5f3d
PA
2274int
2275remote_target::remove_vfork_catchpoint (int pid)
cbb8991c
DB
2276{
2277 return 0;
2278}
2279
d46addbb
DB
2280/* Insert exec catchpoint target routine. If exec events are
2281 enabled, just return success. */
2282
f6ac5f3d
PA
2283int
2284remote_target::insert_exec_catchpoint (int pid)
d46addbb
DB
2285{
2286 struct remote_state *rs = get_remote_state ();
2287
2288 return !remote_exec_event_p (rs);
2289}
2290
2291/* Remove exec catchpoint target routine. Nothing to do, just
2292 return success. */
2293
f6ac5f3d
PA
2294int
2295remote_target::remove_exec_catchpoint (int pid)
d46addbb
DB
2296{
2297 return 0;
2298}
2299
c906108c
SS
2300\f
2301
ffdd69cf
TT
2302/* Take advantage of the fact that the TID field is not used, to tag
2303 special ptids with it set to != 0. */
2304static const ptid_t magic_null_ptid (42000, -1, 1);
2305static const ptid_t not_sent_ptid (42000, -2, 1);
2306static const ptid_t any_thread_ptid (42000, 0, 1);
79d7f229 2307
0b16c5cf
PA
2308/* Find out if the stub attached to PID (and hence GDB should offer to
2309 detach instead of killing it when bailing out). */
2310
6b8edb51
PA
2311int
2312remote_target::remote_query_attached (int pid)
0b16c5cf
PA
2313{
2314 struct remote_state *rs = get_remote_state ();
bba74b36 2315 size_t size = get_remote_packet_size ();
0b16c5cf 2316
4082afcc 2317 if (packet_support (PACKET_qAttached) == PACKET_DISABLE)
0b16c5cf
PA
2318 return 0;
2319
2320 if (remote_multi_process_p (rs))
8d64371b 2321 xsnprintf (rs->buf.data (), size, "qAttached:%x", pid);
0b16c5cf 2322 else
8d64371b 2323 xsnprintf (rs->buf.data (), size, "qAttached");
0b16c5cf
PA
2324
2325 putpkt (rs->buf);
8d64371b 2326 getpkt (&rs->buf, 0);
0b16c5cf
PA
2327
2328 switch (packet_ok (rs->buf,
1554e9be 2329 &remote_protocol_packets[PACKET_qAttached]))
0b16c5cf
PA
2330 {
2331 case PACKET_OK:
8d64371b 2332 if (strcmp (rs->buf.data (), "1") == 0)
0b16c5cf
PA
2333 return 1;
2334 break;
2335 case PACKET_ERROR:
8d64371b 2336 warning (_("Remote failure reply: %s"), rs->buf.data ());
0b16c5cf
PA
2337 break;
2338 case PACKET_UNKNOWN:
2339 break;
2340 }
2341
2342 return 0;
2343}
2344
49c62f2e
PA
2345/* Add PID to GDB's inferior table. If FAKE_PID_P is true, then PID
2346 has been invented by GDB, instead of reported by the target. Since
2347 we can be connected to a remote system before before knowing about
2348 any inferior, mark the target with execution when we find the first
2349 inferior. If ATTACHED is 1, then we had just attached to this
2350 inferior. If it is 0, then we just created this inferior. If it
2351 is -1, then try querying the remote stub to find out if it had
1b6e6f5c
GB
2352 attached to the inferior or not. If TRY_OPEN_EXEC is true then
2353 attempt to open this inferior's executable as the main executable
2354 if no main executable is open already. */
1941c569 2355
6b8edb51 2356inferior *
9ab8741a 2357remote_target::remote_add_inferior (bool fake_pid_p, int pid, int attached,
6b8edb51 2358 int try_open_exec)
1941c569 2359{
1941c569
PA
2360 struct inferior *inf;
2361
0b16c5cf
PA
2362 /* Check whether this process we're learning about is to be
2363 considered attached, or if is to be considered to have been
2364 spawned by the stub. */
2365 if (attached == -1)
2366 attached = remote_query_attached (pid);
2367
f5656ead 2368 if (gdbarch_has_global_solist (target_gdbarch ()))
6c95b8df
PA
2369 {
2370 /* If the target shares code across all inferiors, then every
2371 attach adds a new inferior. */
2372 inf = add_inferior (pid);
2373
2374 /* ... and every inferior is bound to the same program space.
2375 However, each inferior may still have its own address
2376 space. */
2377 inf->aspace = maybe_new_address_space ();
2378 inf->pspace = current_program_space;
2379 }
2380 else
2381 {
2382 /* In the traditional debugging scenario, there's a 1-1 match
2383 between program/address spaces. We simply bind the inferior
2384 to the program space's address space. */
2385 inf = current_inferior ();
2386 inferior_appeared (inf, pid);
2387 }
1941c569 2388
0b16c5cf 2389 inf->attach_flag = attached;
49c62f2e 2390 inf->fake_pid_p = fake_pid_p;
0b16c5cf 2391
1b6e6f5c
GB
2392 /* If no main executable is currently open then attempt to
2393 open the file that was executed to create this inferior. */
835205d0 2394 if (try_open_exec && get_exec_file (0) == NULL)
bb805577 2395 exec_file_locate_attach (pid, 0, 1);
1b6e6f5c 2396
1941c569
PA
2397 return inf;
2398}
2399
7aabaf9d 2400static remote_thread_info *get_remote_thread_info (thread_info *thread);
00431a78 2401static remote_thread_info *get_remote_thread_info (ptid_t ptid);
85ad3aaf 2402
1941c569
PA
2403/* Add thread PTID to GDB's thread list. Tag it as executing/running
2404 according to RUNNING. */
2405
00431a78 2406thread_info *
6b8edb51 2407remote_target::remote_add_thread (ptid_t ptid, bool running, bool executing)
c906108c 2408{
b7ea362b 2409 struct remote_state *rs = get_remote_state ();
85ad3aaf 2410 struct thread_info *thread;
b7ea362b
PA
2411
2412 /* GDB historically didn't pull threads in the initial connection
2413 setup. If the remote target doesn't even have a concept of
2414 threads (e.g., a bare-metal target), even if internally we
2415 consider that a single-threaded target, mentioning a new thread
2416 might be confusing to the user. Be silent then, preserving the
2417 age old behavior. */
2418 if (rs->starting_up)
85ad3aaf 2419 thread = add_thread_silent (ptid);
b7ea362b 2420 else
85ad3aaf 2421 thread = add_thread (ptid);
1941c569 2422
7aabaf9d 2423 get_remote_thread_info (thread)->vcont_resumed = executing;
0d5b594f 2424 set_executing (ptid, executing);
1941c569 2425 set_running (ptid, running);
00431a78
PA
2426
2427 return thread;
1941c569
PA
2428}
2429
2430/* Come here when we learn about a thread id from the remote target.
2431 It may be the first time we hear about such thread, so take the
2432 opportunity to add it to GDB's thread list. In case this is the
2433 first time we're noticing its corresponding inferior, add it to
0d5b594f
PA
2434 GDB's inferior list as well. EXECUTING indicates whether the
2435 thread is (internally) executing or stopped. */
1941c569 2436
6b8edb51
PA
2437void
2438remote_target::remote_notice_new_inferior (ptid_t currthread, int executing)
1941c569 2439{
0d5b594f
PA
2440 /* In non-stop mode, we assume new found threads are (externally)
2441 running until proven otherwise with a stop reply. In all-stop,
2442 we can only get here if all threads are stopped. */
2443 int running = target_is_non_stop_p () ? 1 : 0;
2444
c906108c
SS
2445 /* If this is a new thread, add it to GDB's thread list.
2446 If we leave it up to WFI to do this, bad things will happen. */
82f73884 2447
00431a78
PA
2448 thread_info *tp = find_thread_ptid (currthread);
2449 if (tp != NULL && tp->state == THREAD_EXITED)
82f73884
PA
2450 {
2451 /* We're seeing an event on a thread id we knew had exited.
2452 This has to be a new thread reusing the old id. Add it. */
0d5b594f 2453 remote_add_thread (currthread, running, executing);
82f73884
PA
2454 return;
2455 }
2456
79d7f229 2457 if (!in_thread_list (currthread))
c0a2216e 2458 {
1941c569 2459 struct inferior *inf = NULL;
e99b03dc 2460 int pid = currthread.pid ();
1941c569 2461
0e998d96 2462 if (inferior_ptid.is_pid ()
e99b03dc 2463 && pid == inferior_ptid.pid ())
c0a2216e
PA
2464 {
2465 /* inferior_ptid has no thread member yet. This can happen
2466 with the vAttach -> remote_wait,"TAAthread:" path if the
2467 stub doesn't support qC. This is the first stop reported
2468 after an attach, so this is the main thread. Update the
2469 ptid in the thread list. */
f2907e49 2470 if (in_thread_list (ptid_t (pid)))
bad34192
PA
2471 thread_change_ptid (inferior_ptid, currthread);
2472 else
2473 {
0d5b594f 2474 remote_add_thread (currthread, running, executing);
bad34192
PA
2475 inferior_ptid = currthread;
2476 }
dc146f7c 2477 return;
c0a2216e 2478 }
82f73884 2479
d7e15655 2480 if (magic_null_ptid == inferior_ptid)
c0a2216e
PA
2481 {
2482 /* inferior_ptid is not set yet. This can happen with the
2483 vRun -> remote_wait,"TAAthread:" path if the stub
2484 doesn't support qC. This is the first stop reported
2485 after an attach, so this is the main thread. Update the
2486 ptid in the thread list. */
dc146f7c 2487 thread_change_ptid (inferior_ptid, currthread);
82f73884 2488 return;
c0a2216e 2489 }
82f73884 2490
29c87f7f
PA
2491 /* When connecting to a target remote, or to a target
2492 extended-remote which already was debugging an inferior, we
2493 may not know about it yet. Add it before adding its child
2494 thread, so notifications are emitted in a sensible order. */
e99b03dc 2495 if (find_inferior_pid (currthread.pid ()) == NULL)
49c62f2e
PA
2496 {
2497 struct remote_state *rs = get_remote_state ();
9ab8741a 2498 bool fake_pid_p = !remote_multi_process_p (rs);
49c62f2e
PA
2499
2500 inf = remote_add_inferior (fake_pid_p,
e99b03dc 2501 currthread.pid (), -1, 1);
49c62f2e 2502 }
29c87f7f 2503
82f73884 2504 /* This is really a new thread. Add it. */
00431a78
PA
2505 thread_info *new_thr
2506 = remote_add_thread (currthread, running, executing);
1941c569
PA
2507
2508 /* If we found a new inferior, let the common code do whatever
2509 it needs to with it (e.g., read shared libraries, insert
b7ea362b
PA
2510 breakpoints), unless we're just setting up an all-stop
2511 connection. */
1941c569 2512 if (inf != NULL)
b7ea362b
PA
2513 {
2514 struct remote_state *rs = get_remote_state ();
2515
6efcd9a8 2516 if (!rs->starting_up)
00431a78 2517 notice_new_inferior (new_thr, executing, 0);
b7ea362b 2518 }
c0a2216e 2519 }
c906108c
SS
2520}
2521
85ad3aaf 2522/* Return THREAD's private thread data, creating it if necessary. */
dc146f7c 2523
7aabaf9d
SM
2524static remote_thread_info *
2525get_remote_thread_info (thread_info *thread)
dc146f7c 2526{
85ad3aaf 2527 gdb_assert (thread != NULL);
dc146f7c 2528
85ad3aaf 2529 if (thread->priv == NULL)
7aabaf9d 2530 thread->priv.reset (new remote_thread_info);
dc146f7c 2531
7aabaf9d 2532 return static_cast<remote_thread_info *> (thread->priv.get ());
85ad3aaf
PA
2533}
2534
7aabaf9d
SM
2535static remote_thread_info *
2536get_remote_thread_info (ptid_t ptid)
85ad3aaf 2537{
00431a78
PA
2538 thread_info *thr = find_thread_ptid (ptid);
2539 return get_remote_thread_info (thr);
dc146f7c
VP
2540}
2541
74531fed
PA
2542/* Call this function as a result of
2543 1) A halt indication (T packet) containing a thread id
2544 2) A direct query of currthread
0df8b418 2545 3) Successful execution of set thread */
74531fed
PA
2546
2547static void
47f8a51d 2548record_currthread (struct remote_state *rs, ptid_t currthread)
74531fed 2549{
47f8a51d 2550 rs->general_thread = currthread;
74531fed
PA
2551}
2552
89be2091
DJ
2553/* If 'QPassSignals' is supported, tell the remote stub what signals
2554 it can simply pass through to the inferior without reporting. */
2555
f6ac5f3d 2556void
adc6a863 2557remote_target::pass_signals (gdb::array_view<const unsigned char> pass_signals)
89be2091 2558{
4082afcc 2559 if (packet_support (PACKET_QPassSignals) != PACKET_DISABLE)
89be2091
DJ
2560 {
2561 char *pass_packet, *p;
adc6a863 2562 int count = 0;
747dc59d 2563 struct remote_state *rs = get_remote_state ();
89be2091 2564
adc6a863
PA
2565 gdb_assert (pass_signals.size () < 256);
2566 for (size_t i = 0; i < pass_signals.size (); i++)
89be2091 2567 {
2455069d 2568 if (pass_signals[i])
89be2091
DJ
2569 count++;
2570 }
224c3ddb 2571 pass_packet = (char *) xmalloc (count * 3 + strlen ("QPassSignals:") + 1);
89be2091
DJ
2572 strcpy (pass_packet, "QPassSignals:");
2573 p = pass_packet + strlen (pass_packet);
adc6a863 2574 for (size_t i = 0; i < pass_signals.size (); i++)
89be2091 2575 {
2455069d 2576 if (pass_signals[i])
89be2091
DJ
2577 {
2578 if (i >= 16)
2579 *p++ = tohex (i >> 4);
2580 *p++ = tohex (i & 15);
2581 if (count)
2582 *p++ = ';';
2583 else
2584 break;
2585 count--;
2586 }
2587 }
2588 *p = 0;
747dc59d 2589 if (!rs->last_pass_packet || strcmp (rs->last_pass_packet, pass_packet))
89be2091 2590 {
89be2091 2591 putpkt (pass_packet);
8d64371b 2592 getpkt (&rs->buf, 0);
8dc5b319 2593 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QPassSignals]);
747dc59d
TT
2594 if (rs->last_pass_packet)
2595 xfree (rs->last_pass_packet);
2596 rs->last_pass_packet = pass_packet;
89be2091
DJ
2597 }
2598 else
2599 xfree (pass_packet);
2600 }
2601}
2602
82075af2
JS
2603/* If 'QCatchSyscalls' is supported, tell the remote stub
2604 to report syscalls to GDB. */
2605
f6ac5f3d
PA
2606int
2607remote_target::set_syscall_catchpoint (int pid, bool needed, int any_count,
2608 gdb::array_view<const int> syscall_counts)
82075af2 2609{
b80406ac 2610 const char *catch_packet;
82075af2
JS
2611 enum packet_result result;
2612 int n_sysno = 0;
2613
2614 if (packet_support (PACKET_QCatchSyscalls) == PACKET_DISABLE)
2615 {
2616 /* Not supported. */
2617 return 1;
2618 }
2619
649a140c 2620 if (needed && any_count == 0)
82075af2 2621 {
649a140c
PA
2622 /* Count how many syscalls are to be caught. */
2623 for (size_t i = 0; i < syscall_counts.size (); i++)
82075af2 2624 {
649a140c 2625 if (syscall_counts[i] != 0)
82075af2
JS
2626 n_sysno++;
2627 }
2628 }
2629
2630 if (remote_debug)
2631 {
2632 fprintf_unfiltered (gdb_stdlog,
2633 "remote_set_syscall_catchpoint "
2634 "pid %d needed %d any_count %d n_sysno %d\n",
2635 pid, needed, any_count, n_sysno);
2636 }
2637
1b81856f 2638 std::string built_packet;
82075af2
JS
2639 if (needed)
2640 {
2641 /* Prepare a packet with the sysno list, assuming max 8+1
2642 characters for a sysno. If the resulting packet size is too
2643 big, fallback on the non-selective packet. */
2644 const int maxpktsz = strlen ("QCatchSyscalls:1") + n_sysno * 9 + 1;
1b81856f
PA
2645 built_packet.reserve (maxpktsz);
2646 built_packet = "QCatchSyscalls:1";
649a140c 2647 if (any_count == 0)
82075af2 2648 {
649a140c
PA
2649 /* Add in each syscall to be caught. */
2650 for (size_t i = 0; i < syscall_counts.size (); i++)
82075af2 2651 {
649a140c
PA
2652 if (syscall_counts[i] != 0)
2653 string_appendf (built_packet, ";%zx", i);
82075af2
JS
2654 }
2655 }
1b81856f 2656 if (built_packet.size () > get_remote_packet_size ())
82075af2
JS
2657 {
2658 /* catch_packet too big. Fallback to less efficient
2659 non selective mode, with GDB doing the filtering. */
b80406ac 2660 catch_packet = "QCatchSyscalls:1";
82075af2 2661 }
b80406ac 2662 else
1b81856f 2663 catch_packet = built_packet.c_str ();
82075af2
JS
2664 }
2665 else
b80406ac 2666 catch_packet = "QCatchSyscalls:0";
82075af2 2667
b80406ac 2668 struct remote_state *rs = get_remote_state ();
82075af2 2669
b80406ac 2670 putpkt (catch_packet);
8d64371b 2671 getpkt (&rs->buf, 0);
b80406ac
TT
2672 result = packet_ok (rs->buf, &remote_protocol_packets[PACKET_QCatchSyscalls]);
2673 if (result == PACKET_OK)
2674 return 0;
2675 else
2676 return -1;
82075af2
JS
2677}
2678
9b224c5e
PA
2679/* If 'QProgramSignals' is supported, tell the remote stub what
2680 signals it should pass through to the inferior when detaching. */
2681
f6ac5f3d 2682void
adc6a863 2683remote_target::program_signals (gdb::array_view<const unsigned char> signals)
9b224c5e 2684{
4082afcc 2685 if (packet_support (PACKET_QProgramSignals) != PACKET_DISABLE)
9b224c5e
PA
2686 {
2687 char *packet, *p;
adc6a863 2688 int count = 0;
5e4a05c4 2689 struct remote_state *rs = get_remote_state ();
9b224c5e 2690
adc6a863
PA
2691 gdb_assert (signals.size () < 256);
2692 for (size_t i = 0; i < signals.size (); i++)
9b224c5e
PA
2693 {
2694 if (signals[i])
2695 count++;
2696 }
224c3ddb 2697 packet = (char *) xmalloc (count * 3 + strlen ("QProgramSignals:") + 1);
9b224c5e
PA
2698 strcpy (packet, "QProgramSignals:");
2699 p = packet + strlen (packet);
adc6a863 2700 for (size_t i = 0; i < signals.size (); i++)
9b224c5e
PA
2701 {
2702 if (signal_pass_state (i))
2703 {
2704 if (i >= 16)
2705 *p++ = tohex (i >> 4);
2706 *p++ = tohex (i & 15);
2707 if (count)
2708 *p++ = ';';
2709 else
2710 break;
2711 count--;
2712 }
2713 }
2714 *p = 0;
5e4a05c4
TT
2715 if (!rs->last_program_signals_packet
2716 || strcmp (rs->last_program_signals_packet, packet) != 0)
9b224c5e 2717 {
9b224c5e 2718 putpkt (packet);
8d64371b 2719 getpkt (&rs->buf, 0);
8dc5b319 2720 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QProgramSignals]);
5e4a05c4
TT
2721 xfree (rs->last_program_signals_packet);
2722 rs->last_program_signals_packet = packet;
9b224c5e
PA
2723 }
2724 else
2725 xfree (packet);
2726 }
2727}
2728
79d7f229
PA
2729/* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
2730 MINUS_ONE_PTID, set the thread to -1, so the stub returns the
2731 thread. If GEN is set, set the general thread, if not, then set
2732 the step/continue thread. */
6b8edb51
PA
2733void
2734remote_target::set_thread (ptid_t ptid, int gen)
c906108c 2735{
d01949b6 2736 struct remote_state *rs = get_remote_state ();
47f8a51d 2737 ptid_t state = gen ? rs->general_thread : rs->continue_thread;
8d64371b
TT
2738 char *buf = rs->buf.data ();
2739 char *endbuf = buf + get_remote_packet_size ();
c906108c 2740
d7e15655 2741 if (state == ptid)
c906108c
SS
2742 return;
2743
79d7f229
PA
2744 *buf++ = 'H';
2745 *buf++ = gen ? 'g' : 'c';
d7e15655 2746 if (ptid == magic_null_ptid)
79d7f229 2747 xsnprintf (buf, endbuf - buf, "0");
d7e15655 2748 else if (ptid == any_thread_ptid)
79d7f229 2749 xsnprintf (buf, endbuf - buf, "0");
d7e15655 2750 else if (ptid == minus_one_ptid)
79d7f229
PA
2751 xsnprintf (buf, endbuf - buf, "-1");
2752 else
82f73884 2753 write_ptid (buf, endbuf, ptid);
79d7f229 2754 putpkt (rs->buf);
8d64371b 2755 getpkt (&rs->buf, 0);
c906108c 2756 if (gen)
47f8a51d 2757 rs->general_thread = ptid;
c906108c 2758 else
47f8a51d 2759 rs->continue_thread = ptid;
c906108c 2760}
79d7f229 2761
6b8edb51
PA
2762void
2763remote_target::set_general_thread (ptid_t ptid)
79d7f229
PA
2764{
2765 set_thread (ptid, 1);
2766}
2767
6b8edb51
PA
2768void
2769remote_target::set_continue_thread (ptid_t ptid)
79d7f229
PA
2770{
2771 set_thread (ptid, 0);
2772}
2773
3c9c4b83
PA
2774/* Change the remote current process. Which thread within the process
2775 ends up selected isn't important, as long as it is the same process
2776 as what INFERIOR_PTID points to.
2777
2778 This comes from that fact that there is no explicit notion of
2779 "selected process" in the protocol. The selected process for
2780 general operations is the process the selected general thread
2781 belongs to. */
2782
6b8edb51
PA
2783void
2784remote_target::set_general_process ()
3c9c4b83
PA
2785{
2786 struct remote_state *rs = get_remote_state ();
2787
2788 /* If the remote can't handle multiple processes, don't bother. */
8020350c 2789 if (!remote_multi_process_p (rs))
3c9c4b83
PA
2790 return;
2791
2792 /* We only need to change the remote current thread if it's pointing
2793 at some other process. */
e99b03dc 2794 if (rs->general_thread.pid () != inferior_ptid.pid ())
3c9c4b83
PA
2795 set_general_thread (inferior_ptid);
2796}
2797
c906108c 2798\f
7d1a114c
PA
2799/* Return nonzero if this is the main thread that we made up ourselves
2800 to model non-threaded targets as single-threaded. */
c906108c
SS
2801
2802static int
f6ac5f3d 2803remote_thread_always_alive (ptid_t ptid)
c906108c 2804{
d7e15655 2805 if (ptid == magic_null_ptid)
c0a2216e
PA
2806 /* The main thread is always alive. */
2807 return 1;
2808
e38504b3 2809 if (ptid.pid () != 0 && ptid.lwp () == 0)
c0a2216e
PA
2810 /* The main thread is always alive. This can happen after a
2811 vAttach, if the remote side doesn't support
2812 multi-threading. */
2813 return 1;
2814
7d1a114c
PA
2815 return 0;
2816}
2817
2818/* Return nonzero if the thread PTID is still alive on the remote
2819 system. */
2820
57810aa7 2821bool
f6ac5f3d 2822remote_target::thread_alive (ptid_t ptid)
7d1a114c
PA
2823{
2824 struct remote_state *rs = get_remote_state ();
2825 char *p, *endp;
2826
2827 /* Check if this is a thread that we made up ourselves to model
2828 non-threaded targets as single-threaded. */
f6ac5f3d 2829 if (remote_thread_always_alive (ptid))
7d1a114c
PA
2830 return 1;
2831
8d64371b
TT
2832 p = rs->buf.data ();
2833 endp = p + get_remote_packet_size ();
82f73884
PA
2834
2835 *p++ = 'T';
2836 write_ptid (p, endp, ptid);
2837
2e9f7625 2838 putpkt (rs->buf);
8d64371b 2839 getpkt (&rs->buf, 0);
2e9f7625 2840 return (rs->buf[0] == 'O' && rs->buf[1] == 'K');
c906108c
SS
2841}
2842
79efa585
SM
2843/* Return a pointer to a thread name if we know it and NULL otherwise.
2844 The thread_info object owns the memory for the name. */
2845
f6ac5f3d
PA
2846const char *
2847remote_target::thread_name (struct thread_info *info)
79efa585
SM
2848{
2849 if (info->priv != NULL)
a9334058
SM
2850 {
2851 const std::string &name = get_remote_thread_info (info)->name;
2852 return !name.empty () ? name.c_str () : NULL;
2853 }
79efa585
SM
2854
2855 return NULL;
2856}
2857
c906108c
SS
2858/* About these extended threadlist and threadinfo packets. They are
2859 variable length packets but, the fields within them are often fixed
2860 length. They are redundent enough to send over UDP as is the
2861 remote protocol in general. There is a matching unit test module
2862 in libstub. */
2863
23860348 2864/* WARNING: This threadref data structure comes from the remote O.S.,
0df8b418 2865 libstub protocol encoding, and remote.c. It is not particularly
23860348 2866 changable. */
cce74817
JM
2867
2868/* Right now, the internal structure is int. We want it to be bigger.
0df8b418 2869 Plan to fix this. */
cce74817 2870
23860348 2871typedef int gdb_threadref; /* Internal GDB thread reference. */
cce74817 2872
9d1f7ab2 2873/* gdb_ext_thread_info is an internal GDB data structure which is
cfde0993 2874 equivalent to the reply of the remote threadinfo packet. */
cce74817
JM
2875
2876struct gdb_ext_thread_info
c5aa993b 2877 {
23860348 2878 threadref threadid; /* External form of thread reference. */
2bc416ba 2879 int active; /* Has state interesting to GDB?
23860348 2880 regs, stack. */
2bc416ba 2881 char display[256]; /* Brief state display, name,
cedea757 2882 blocked/suspended. */
23860348 2883 char shortname[32]; /* To be used to name threads. */
2bc416ba 2884 char more_display[256]; /* Long info, statistics, queue depth,
23860348 2885 whatever. */
c5aa993b 2886 };
cce74817
JM
2887
2888/* The volume of remote transfers can be limited by submitting
2889 a mask containing bits specifying the desired information.
2890 Use a union of these values as the 'selection' parameter to
0df8b418 2891 get_thread_info. FIXME: Make these TAG names more thread specific. */
cce74817
JM
2892
2893#define TAG_THREADID 1
2894#define TAG_EXISTS 2
2895#define TAG_DISPLAY 4
2896#define TAG_THREADNAME 8
c5aa993b 2897#define TAG_MOREDISPLAY 16
cce74817 2898
23860348 2899#define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
c906108c 2900
a14ed312 2901static char *unpack_nibble (char *buf, int *val);
cce74817 2902
a14ed312 2903static char *unpack_byte (char *buf, int *value);
cce74817 2904
a14ed312 2905static char *pack_int (char *buf, int value);
cce74817 2906
a14ed312 2907static char *unpack_int (char *buf, int *value);
cce74817 2908
a14ed312 2909static char *unpack_string (char *src, char *dest, int length);
cce74817 2910
23860348 2911static char *pack_threadid (char *pkt, threadref *id);
cce74817 2912
23860348 2913static char *unpack_threadid (char *inbuf, threadref *id);
cce74817 2914
23860348 2915void int_to_threadref (threadref *id, int value);
cce74817 2916
23860348 2917static int threadref_to_int (threadref *ref);
cce74817 2918
23860348 2919static void copy_threadref (threadref *dest, threadref *src);
cce74817 2920
23860348 2921static int threadmatch (threadref *dest, threadref *src);
cce74817 2922
2bc416ba 2923static char *pack_threadinfo_request (char *pkt, int mode,
23860348 2924 threadref *id);
cce74817 2925
a14ed312
KB
2926static char *pack_threadlist_request (char *pkt, int startflag,
2927 int threadcount,
23860348 2928 threadref *nextthread);
cce74817 2929
23860348 2930static int remote_newthread_step (threadref *ref, void *context);
cce74817 2931
82f73884
PA
2932
2933/* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the
2934 buffer we're allowed to write to. Returns
2935 BUF+CHARACTERS_WRITTEN. */
2936
6b8edb51
PA
2937char *
2938remote_target::write_ptid (char *buf, const char *endbuf, ptid_t ptid)
82f73884
PA
2939{
2940 int pid, tid;
2941 struct remote_state *rs = get_remote_state ();
2942
2943 if (remote_multi_process_p (rs))
2944 {
e99b03dc 2945 pid = ptid.pid ();
82f73884
PA
2946 if (pid < 0)
2947 buf += xsnprintf (buf, endbuf - buf, "p-%x.", -pid);
2948 else
2949 buf += xsnprintf (buf, endbuf - buf, "p%x.", pid);
2950 }
e38504b3 2951 tid = ptid.lwp ();
82f73884
PA
2952 if (tid < 0)
2953 buf += xsnprintf (buf, endbuf - buf, "-%x", -tid);
2954 else
2955 buf += xsnprintf (buf, endbuf - buf, "%x", tid);
2956
2957 return buf;
2958}
2959
256642e8
PA
2960/* Extract a PTID from BUF. If non-null, OBUF is set to one past the
2961 last parsed char. Returns null_ptid if no thread id is found, and
2962 throws an error if the thread id has an invalid format. */
82f73884
PA
2963
2964static ptid_t
256642e8 2965read_ptid (const char *buf, const char **obuf)
82f73884 2966{
256642e8
PA
2967 const char *p = buf;
2968 const char *pp;
82f73884 2969 ULONGEST pid = 0, tid = 0;
82f73884
PA
2970
2971 if (*p == 'p')
2972 {
2973 /* Multi-process ptid. */
2974 pp = unpack_varlen_hex (p + 1, &pid);
2975 if (*pp != '.')
b37520b6 2976 error (_("invalid remote ptid: %s"), p);
82f73884
PA
2977
2978 p = pp;
2979 pp = unpack_varlen_hex (p + 1, &tid);
2980 if (obuf)
2981 *obuf = pp;
fd79271b 2982 return ptid_t (pid, tid, 0);
82f73884
PA
2983 }
2984
2985 /* No multi-process. Just a tid. */
2986 pp = unpack_varlen_hex (p, &tid);
2987
c9f35b34
KB
2988 /* Return null_ptid when no thread id is found. */
2989 if (p == pp)
2990 {
2991 if (obuf)
2992 *obuf = pp;
2993 return null_ptid;
2994 }
2995
82f73884 2996 /* Since the stub is not sending a process id, then default to
ca19bf23
PA
2997 what's in inferior_ptid, unless it's null at this point. If so,
2998 then since there's no way to know the pid of the reported
2999 threads, use the magic number. */
d7e15655 3000 if (inferior_ptid == null_ptid)
e99b03dc 3001 pid = magic_null_ptid.pid ();
ca19bf23 3002 else
e99b03dc 3003 pid = inferior_ptid.pid ();
82f73884
PA
3004
3005 if (obuf)
3006 *obuf = pp;
fd79271b 3007 return ptid_t (pid, tid, 0);
82f73884
PA
3008}
3009
c906108c 3010static int
fba45db2 3011stubhex (int ch)
c906108c
SS
3012{
3013 if (ch >= 'a' && ch <= 'f')
3014 return ch - 'a' + 10;
3015 if (ch >= '0' && ch <= '9')
3016 return ch - '0';
3017 if (ch >= 'A' && ch <= 'F')
3018 return ch - 'A' + 10;
3019 return -1;
3020}
3021
3022static int
fba45db2 3023stub_unpack_int (char *buff, int fieldlength)
c906108c
SS
3024{
3025 int nibble;
3026 int retval = 0;
3027
3028 while (fieldlength)
3029 {
3030 nibble = stubhex (*buff++);
3031 retval |= nibble;
3032 fieldlength--;
3033 if (fieldlength)
3034 retval = retval << 4;
3035 }
3036 return retval;
3037}
3038
c906108c 3039static char *
fba45db2 3040unpack_nibble (char *buf, int *val)
c906108c 3041{
b7589f7d 3042 *val = fromhex (*buf++);
c906108c
SS
3043 return buf;
3044}
3045
c906108c 3046static char *
fba45db2 3047unpack_byte (char *buf, int *value)
c906108c
SS
3048{
3049 *value = stub_unpack_int (buf, 2);
3050 return buf + 2;
3051}
3052
3053static char *
fba45db2 3054pack_int (char *buf, int value)
c906108c
SS
3055{
3056 buf = pack_hex_byte (buf, (value >> 24) & 0xff);
3057 buf = pack_hex_byte (buf, (value >> 16) & 0xff);
3058 buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
3059 buf = pack_hex_byte (buf, (value & 0xff));
3060 return buf;
3061}
3062
3063static char *
fba45db2 3064unpack_int (char *buf, int *value)
c906108c
SS
3065{
3066 *value = stub_unpack_int (buf, 8);
3067 return buf + 8;
3068}
3069
23860348 3070#if 0 /* Currently unused, uncomment when needed. */
a14ed312 3071static char *pack_string (char *pkt, char *string);
c906108c
SS
3072
3073static char *
fba45db2 3074pack_string (char *pkt, char *string)
c906108c
SS
3075{
3076 char ch;
3077 int len;
3078
3079 len = strlen (string);
3080 if (len > 200)
23860348 3081 len = 200; /* Bigger than most GDB packets, junk??? */
c906108c
SS
3082 pkt = pack_hex_byte (pkt, len);
3083 while (len-- > 0)
3084 {
3085 ch = *string++;
3086 if ((ch == '\0') || (ch == '#'))
23860348 3087 ch = '*'; /* Protect encapsulation. */
c906108c
SS
3088 *pkt++ = ch;
3089 }
3090 return pkt;
3091}
3092#endif /* 0 (unused) */
3093
3094static char *
fba45db2 3095unpack_string (char *src, char *dest, int length)
c906108c
SS
3096{
3097 while (length--)
3098 *dest++ = *src++;
3099 *dest = '\0';
3100 return src;
3101}
3102
3103static char *
fba45db2 3104pack_threadid (char *pkt, threadref *id)
c906108c
SS
3105{
3106 char *limit;
3107 unsigned char *altid;
3108
3109 altid = (unsigned char *) id;
3110 limit = pkt + BUF_THREAD_ID_SIZE;
3111 while (pkt < limit)
3112 pkt = pack_hex_byte (pkt, *altid++);
3113 return pkt;
3114}
3115
3116
3117static char *
fba45db2 3118unpack_threadid (char *inbuf, threadref *id)
c906108c
SS
3119{
3120 char *altref;
3121 char *limit = inbuf + BUF_THREAD_ID_SIZE;
3122 int x, y;
3123
3124 altref = (char *) id;
3125
3126 while (inbuf < limit)
3127 {
3128 x = stubhex (*inbuf++);
3129 y = stubhex (*inbuf++);
3130 *altref++ = (x << 4) | y;
3131 }
3132 return inbuf;
3133}
3134
3135/* Externally, threadrefs are 64 bits but internally, they are still
0df8b418 3136 ints. This is due to a mismatch of specifications. We would like
c906108c
SS
3137 to use 64bit thread references internally. This is an adapter
3138 function. */
3139
3140void
fba45db2 3141int_to_threadref (threadref *id, int value)
c906108c
SS
3142{
3143 unsigned char *scan;
3144
3145 scan = (unsigned char *) id;
3146 {
3147 int i = 4;
3148 while (i--)
3149 *scan++ = 0;
3150 }
3151 *scan++ = (value >> 24) & 0xff;
3152 *scan++ = (value >> 16) & 0xff;
3153 *scan++ = (value >> 8) & 0xff;
3154 *scan++ = (value & 0xff);
3155}
3156
3157static int
fba45db2 3158threadref_to_int (threadref *ref)
c906108c
SS
3159{
3160 int i, value = 0;
3161 unsigned char *scan;
3162
cfd77fa1 3163 scan = *ref;
c906108c
SS
3164 scan += 4;
3165 i = 4;
3166 while (i-- > 0)
3167 value = (value << 8) | ((*scan++) & 0xff);
3168 return value;
3169}
3170
3171static void
fba45db2 3172copy_threadref (threadref *dest, threadref *src)
c906108c
SS
3173{
3174 int i;
3175 unsigned char *csrc, *cdest;
3176
3177 csrc = (unsigned char *) src;
3178 cdest = (unsigned char *) dest;
3179 i = 8;
3180 while (i--)
3181 *cdest++ = *csrc++;
3182}
3183
3184static int
fba45db2 3185threadmatch (threadref *dest, threadref *src)
c906108c 3186{
23860348 3187 /* Things are broken right now, so just assume we got a match. */
c906108c
SS
3188#if 0
3189 unsigned char *srcp, *destp;
3190 int i, result;
3191 srcp = (char *) src;
3192 destp = (char *) dest;
3193
3194 result = 1;
3195 while (i-- > 0)
3196 result &= (*srcp++ == *destp++) ? 1 : 0;
3197 return result;
3198#endif
3199 return 1;
3200}
3201
3202/*
c5aa993b
JM
3203 threadid:1, # always request threadid
3204 context_exists:2,
3205 display:4,
3206 unique_name:8,
3207 more_display:16
3208 */
c906108c
SS
3209
3210/* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
3211
3212static char *
fba45db2 3213pack_threadinfo_request (char *pkt, int mode, threadref *id)
c906108c 3214{
23860348
MS
3215 *pkt++ = 'q'; /* Info Query */
3216 *pkt++ = 'P'; /* process or thread info */
3217 pkt = pack_int (pkt, mode); /* mode */
c906108c 3218 pkt = pack_threadid (pkt, id); /* threadid */
23860348 3219 *pkt = '\0'; /* terminate */
c906108c
SS
3220 return pkt;
3221}
3222
23860348 3223/* These values tag the fields in a thread info response packet. */
c906108c 3224/* Tagging the fields allows us to request specific fields and to
23860348 3225 add more fields as time goes by. */
c906108c 3226
23860348 3227#define TAG_THREADID 1 /* Echo the thread identifier. */
c5aa993b 3228#define TAG_EXISTS 2 /* Is this process defined enough to
23860348 3229 fetch registers and its stack? */
c5aa993b 3230#define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
23860348 3231#define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
802188a7 3232#define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
23860348 3233 the process. */
c906108c 3234
6b8edb51
PA
3235int
3236remote_target::remote_unpack_thread_info_response (char *pkt,
3237 threadref *expectedref,
3238 gdb_ext_thread_info *info)
c906108c 3239{
d01949b6 3240 struct remote_state *rs = get_remote_state ();
c906108c 3241 int mask, length;
cfd77fa1 3242 int tag;
c906108c 3243 threadref ref;
8d64371b 3244 char *limit = pkt + rs->buf.size (); /* Plausible parsing limit. */
c906108c
SS
3245 int retval = 1;
3246
23860348 3247 /* info->threadid = 0; FIXME: implement zero_threadref. */
c906108c
SS
3248 info->active = 0;
3249 info->display[0] = '\0';
3250 info->shortname[0] = '\0';
3251 info->more_display[0] = '\0';
3252
23860348
MS
3253 /* Assume the characters indicating the packet type have been
3254 stripped. */
c906108c
SS
3255 pkt = unpack_int (pkt, &mask); /* arg mask */
3256 pkt = unpack_threadid (pkt, &ref);
3257
3258 if (mask == 0)
8a3fe4f8 3259 warning (_("Incomplete response to threadinfo request."));
c906108c 3260 if (!threadmatch (&ref, expectedref))
23860348 3261 { /* This is an answer to a different request. */
8a3fe4f8 3262 warning (_("ERROR RMT Thread info mismatch."));
c906108c
SS
3263 return 0;
3264 }
3265 copy_threadref (&info->threadid, &ref);
3266
23860348 3267 /* Loop on tagged fields , try to bail if somthing goes wrong. */
c906108c 3268
23860348
MS
3269 /* Packets are terminated with nulls. */
3270 while ((pkt < limit) && mask && *pkt)
c906108c
SS
3271 {
3272 pkt = unpack_int (pkt, &tag); /* tag */
23860348
MS
3273 pkt = unpack_byte (pkt, &length); /* length */
3274 if (!(tag & mask)) /* Tags out of synch with mask. */
c906108c 3275 {
8a3fe4f8 3276 warning (_("ERROR RMT: threadinfo tag mismatch."));
c906108c
SS
3277 retval = 0;
3278 break;
3279 }
3280 if (tag == TAG_THREADID)
3281 {
3282 if (length != 16)
3283 {
8a3fe4f8 3284 warning (_("ERROR RMT: length of threadid is not 16."));
c906108c
SS
3285 retval = 0;
3286 break;
3287 }
3288 pkt = unpack_threadid (pkt, &ref);
3289 mask = mask & ~TAG_THREADID;
3290 continue;
3291 }
3292 if (tag == TAG_EXISTS)
3293 {
3294 info->active = stub_unpack_int (pkt, length);
3295 pkt += length;
3296 mask = mask & ~(TAG_EXISTS);
3297 if (length > 8)
3298 {
8a3fe4f8 3299 warning (_("ERROR RMT: 'exists' length too long."));
c906108c
SS
3300 retval = 0;
3301 break;
3302 }
3303 continue;
3304 }
3305 if (tag == TAG_THREADNAME)
3306 {
3307 pkt = unpack_string (pkt, &info->shortname[0], length);
3308 mask = mask & ~TAG_THREADNAME;
3309 continue;
3310 }
3311 if (tag == TAG_DISPLAY)
3312 {
3313 pkt = unpack_string (pkt, &info->display[0], length);
3314 mask = mask & ~TAG_DISPLAY;
3315 continue;
3316 }
3317 if (tag == TAG_MOREDISPLAY)
3318 {
3319 pkt = unpack_string (pkt, &info->more_display[0], length);
3320 mask = mask & ~TAG_MOREDISPLAY;
3321 continue;
3322 }
8a3fe4f8 3323 warning (_("ERROR RMT: unknown thread info tag."));
23860348 3324 break; /* Not a tag we know about. */
c906108c
SS
3325 }
3326 return retval;
3327}
3328
6b8edb51
PA
3329int
3330remote_target::remote_get_threadinfo (threadref *threadid,
3331 int fieldset,
3332 gdb_ext_thread_info *info)
c906108c 3333{
d01949b6 3334 struct remote_state *rs = get_remote_state ();
c906108c 3335 int result;
c906108c 3336
8d64371b 3337 pack_threadinfo_request (rs->buf.data (), fieldset, threadid);
2e9f7625 3338 putpkt (rs->buf);
8d64371b 3339 getpkt (&rs->buf, 0);
3084dd77
PA
3340
3341 if (rs->buf[0] == '\0')
3342 return 0;
3343
8d64371b 3344 result = remote_unpack_thread_info_response (&rs->buf[2],
23860348 3345 threadid, info);
c906108c
SS
3346 return result;
3347}
3348
c906108c
SS
3349/* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
3350
3351static char *
fba45db2
KB
3352pack_threadlist_request (char *pkt, int startflag, int threadcount,
3353 threadref *nextthread)
c906108c
SS
3354{
3355 *pkt++ = 'q'; /* info query packet */
3356 *pkt++ = 'L'; /* Process LIST or threadLIST request */
23860348 3357 pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */
c906108c
SS
3358 pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */
3359 pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */
3360 *pkt = '\0';
3361 return pkt;
3362}
3363
3364/* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
3365
6b8edb51
PA
3366int
3367remote_target::parse_threadlist_response (char *pkt, int result_limit,
3368 threadref *original_echo,
3369 threadref *resultlist,
3370 int *doneflag)
c906108c 3371{
d01949b6 3372 struct remote_state *rs = get_remote_state ();
c906108c
SS
3373 char *limit;
3374 int count, resultcount, done;
3375
3376 resultcount = 0;
3377 /* Assume the 'q' and 'M chars have been stripped. */
8d64371b 3378 limit = pkt + (rs->buf.size () - BUF_THREAD_ID_SIZE);
23860348 3379 /* done parse past here */
c906108c
SS
3380 pkt = unpack_byte (pkt, &count); /* count field */
3381 pkt = unpack_nibble (pkt, &done);
3382 /* The first threadid is the argument threadid. */
3383 pkt = unpack_threadid (pkt, original_echo); /* should match query packet */
3384 while ((count-- > 0) && (pkt < limit))
3385 {
3386 pkt = unpack_threadid (pkt, resultlist++);
3387 if (resultcount++ >= result_limit)
3388 break;
3389 }
3390 if (doneflag)
3391 *doneflag = done;
3392 return resultcount;
3393}
3394
6dc54d91
PA
3395/* Fetch the next batch of threads from the remote. Returns -1 if the
3396 qL packet is not supported, 0 on error and 1 on success. */
3397
6b8edb51
PA
3398int
3399remote_target::remote_get_threadlist (int startflag, threadref *nextthread,
3400 int result_limit, int *done, int *result_count,
3401 threadref *threadlist)
c906108c 3402{
d01949b6 3403 struct remote_state *rs = get_remote_state ();
c906108c
SS
3404 int result = 1;
3405
23860348 3406 /* Trancate result limit to be smaller than the packet size. */
3e43a32a
MS
3407 if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10)
3408 >= get_remote_packet_size ())
ea9c271d 3409 result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2;
c906108c 3410
8d64371b
TT
3411 pack_threadlist_request (rs->buf.data (), startflag, result_limit,
3412 nextthread);
6d820c5c 3413 putpkt (rs->buf);
8d64371b
TT
3414 getpkt (&rs->buf, 0);
3415 if (rs->buf[0] == '\0')
6dc54d91
PA
3416 {
3417 /* Packet not supported. */
3418 return -1;
3419 }
3420
3421 *result_count =
8d64371b 3422 parse_threadlist_response (&rs->buf[2], result_limit,
6dc54d91 3423 &rs->echo_nextthread, threadlist, done);
c906108c 3424
0d031856 3425 if (!threadmatch (&rs->echo_nextthread, nextthread))
c906108c 3426 {
23860348
MS
3427 /* FIXME: This is a good reason to drop the packet. */
3428 /* Possably, there is a duplicate response. */
c906108c
SS
3429 /* Possabilities :
3430 retransmit immediatly - race conditions
3431 retransmit after timeout - yes
3432 exit
3433 wait for packet, then exit
3434 */
8a3fe4f8 3435 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
23860348 3436 return 0; /* I choose simply exiting. */
c906108c
SS
3437 }
3438 if (*result_count <= 0)
3439 {
3440 if (*done != 1)
3441 {
8a3fe4f8 3442 warning (_("RMT ERROR : failed to get remote thread list."));
c906108c
SS
3443 result = 0;
3444 }
3445 return result; /* break; */
3446 }
3447 if (*result_count > result_limit)
3448 {
3449 *result_count = 0;
8a3fe4f8 3450 warning (_("RMT ERROR: threadlist response longer than requested."));
c906108c
SS
3451 return 0;
3452 }
3453 return result;
3454}
3455
6dc54d91
PA
3456/* Fetch the list of remote threads, with the qL packet, and call
3457 STEPFUNCTION for each thread found. Stops iterating and returns 1
3458 if STEPFUNCTION returns true. Stops iterating and returns 0 if the
3459 STEPFUNCTION returns false. If the packet is not supported,
3460 returns -1. */
c906108c 3461
6b8edb51
PA
3462int
3463remote_target::remote_threadlist_iterator (rmt_thread_action stepfunction,
3464 void *context, int looplimit)
c906108c 3465{
0d031856 3466 struct remote_state *rs = get_remote_state ();
c906108c
SS
3467 int done, i, result_count;
3468 int startflag = 1;
3469 int result = 1;
3470 int loopcount = 0;
c906108c
SS
3471
3472 done = 0;
3473 while (!done)
3474 {
3475 if (loopcount++ > looplimit)
3476 {
3477 result = 0;
8a3fe4f8 3478 warning (_("Remote fetch threadlist -infinite loop-."));
c906108c
SS
3479 break;
3480 }
6dc54d91
PA
3481 result = remote_get_threadlist (startflag, &rs->nextthread,
3482 MAXTHREADLISTRESULTS,
3483 &done, &result_count,
3484 rs->resultthreadlist);
3485 if (result <= 0)
3486 break;
23860348 3487 /* Clear for later iterations. */
c906108c
SS
3488 startflag = 0;
3489 /* Setup to resume next batch of thread references, set nextthread. */
3490 if (result_count >= 1)
0d031856
TT
3491 copy_threadref (&rs->nextthread,
3492 &rs->resultthreadlist[result_count - 1]);
c906108c
SS
3493 i = 0;
3494 while (result_count--)
6dc54d91
PA
3495 {
3496 if (!(*stepfunction) (&rs->resultthreadlist[i++], context))
3497 {
3498 result = 0;
3499 break;
3500 }
3501 }
c906108c
SS
3502 }
3503 return result;
3504}
3505
6dc54d91
PA
3506/* A thread found on the remote target. */
3507
21fe1c75 3508struct thread_item
6dc54d91 3509{
21fe1c75
SM
3510 explicit thread_item (ptid_t ptid_)
3511 : ptid (ptid_)
3512 {}
3513
3514 thread_item (thread_item &&other) = default;
3515 thread_item &operator= (thread_item &&other) = default;
3516
3517 DISABLE_COPY_AND_ASSIGN (thread_item);
3518
6dc54d91
PA
3519 /* The thread's PTID. */
3520 ptid_t ptid;
3521
21fe1c75
SM
3522 /* The thread's extra info. */
3523 std::string extra;
6dc54d91 3524
21fe1c75
SM
3525 /* The thread's name. */
3526 std::string name;
79efa585 3527
6dc54d91 3528 /* The core the thread was running on. -1 if not known. */
21fe1c75 3529 int core = -1;
f6327dcb
KB
3530
3531 /* The thread handle associated with the thread. */
21fe1c75 3532 gdb::byte_vector thread_handle;
21fe1c75 3533};
6dc54d91
PA
3534
3535/* Context passed around to the various methods listing remote
3536 threads. As new threads are found, they're added to the ITEMS
3537 vector. */
3538
3539struct threads_listing_context
3540{
21fe1c75
SM
3541 /* Return true if this object contains an entry for a thread with ptid
3542 PTID. */
6dc54d91 3543
21fe1c75
SM
3544 bool contains_thread (ptid_t ptid) const
3545 {
3546 auto match_ptid = [&] (const thread_item &item)
3547 {
3548 return item.ptid == ptid;
3549 };
80134cf5 3550
21fe1c75
SM
3551 auto it = std::find_if (this->items.begin (),
3552 this->items.end (),
3553 match_ptid);
80134cf5 3554
21fe1c75
SM
3555 return it != this->items.end ();
3556 }
80134cf5 3557
21fe1c75 3558 /* Remove the thread with ptid PTID. */
80134cf5 3559
21fe1c75
SM
3560 void remove_thread (ptid_t ptid)
3561 {
3562 auto match_ptid = [&] (const thread_item &item)
3563 {
3564 return item.ptid == ptid;
3565 };
cbb8991c 3566
21fe1c75
SM
3567 auto it = std::remove_if (this->items.begin (),
3568 this->items.end (),
3569 match_ptid);
cbb8991c 3570
21fe1c75
SM
3571 if (it != this->items.end ())
3572 this->items.erase (it);
3573 }
3574
3575 /* The threads found on the remote target. */
3576 std::vector<thread_item> items;
3577};
cbb8991c 3578
c906108c 3579static int
6dc54d91 3580remote_newthread_step (threadref *ref, void *data)
c906108c 3581{
19ba03f4
SM
3582 struct threads_listing_context *context
3583 = (struct threads_listing_context *) data;
21fe1c75
SM
3584 int pid = inferior_ptid.pid ();
3585 int lwp = threadref_to_int (ref);
3586 ptid_t ptid (pid, lwp);
6dc54d91 3587
21fe1c75 3588 context->items.emplace_back (ptid);
6dc54d91 3589
c906108c
SS
3590 return 1; /* continue iterator */
3591}
3592
3593#define CRAZY_MAX_THREADS 1000
3594
6b8edb51
PA
3595ptid_t
3596remote_target::remote_current_thread (ptid_t oldpid)
c906108c 3597{
d01949b6 3598 struct remote_state *rs = get_remote_state ();
c906108c
SS
3599
3600 putpkt ("qC");
8d64371b 3601 getpkt (&rs->buf, 0);
2e9f7625 3602 if (rs->buf[0] == 'Q' && rs->buf[1] == 'C')
c9f35b34 3603 {
256642e8 3604 const char *obuf;
c9f35b34
KB
3605 ptid_t result;
3606
3607 result = read_ptid (&rs->buf[2], &obuf);
3608 if (*obuf != '\0' && remote_debug)
3609 fprintf_unfiltered (gdb_stdlog,
3610 "warning: garbage in qC reply\n");
3611
3612 return result;
3613 }
c906108c
SS
3614 else
3615 return oldpid;
3616}
3617
6dc54d91 3618/* List remote threads using the deprecated qL packet. */
cce74817 3619
6b8edb51
PA
3620int
3621remote_target::remote_get_threads_with_ql (threads_listing_context *context)
c906108c 3622{
6dc54d91
PA
3623 if (remote_threadlist_iterator (remote_newthread_step, context,
3624 CRAZY_MAX_THREADS) >= 0)
3625 return 1;
3626
3627 return 0;
c906108c
SS
3628}
3629
dc146f7c
VP
3630#if defined(HAVE_LIBEXPAT)
3631
dc146f7c
VP
3632static void
3633start_thread (struct gdb_xml_parser *parser,
3634 const struct gdb_xml_element *element,
4d0fdd9b
SM
3635 void *user_data,
3636 std::vector<gdb_xml_value> &attributes)
dc146f7c 3637{
19ba03f4
SM
3638 struct threads_listing_context *data
3639 = (struct threads_listing_context *) user_data;
3d2c1d41 3640 struct gdb_xml_value *attr;
dc146f7c 3641
4d0fdd9b 3642 char *id = (char *) xml_find_attribute (attributes, "id")->value.get ();
21fe1c75
SM
3643 ptid_t ptid = read_ptid (id, NULL);
3644
3645 data->items.emplace_back (ptid);
3646 thread_item &item = data->items.back ();
dc146f7c 3647
3d2c1d41
PA
3648 attr = xml_find_attribute (attributes, "core");
3649 if (attr != NULL)
4d0fdd9b 3650 item.core = *(ULONGEST *) attr->value.get ();
dc146f7c 3651
79efa585 3652 attr = xml_find_attribute (attributes, "name");
21fe1c75 3653 if (attr != NULL)
4d0fdd9b 3654 item.name = (const char *) attr->value.get ();
79efa585 3655
f6327dcb
KB
3656 attr = xml_find_attribute (attributes, "handle");
3657 if (attr != NULL)
4d0fdd9b 3658 item.thread_handle = hex2bin ((const char *) attr->value.get ());
dc146f7c
VP
3659}
3660
3661static void
3662end_thread (struct gdb_xml_parser *parser,
3663 const struct gdb_xml_element *element,
3664 void *user_data, const char *body_text)
3665{
19ba03f4
SM
3666 struct threads_listing_context *data
3667 = (struct threads_listing_context *) user_data;
dc146f7c 3668
21fe1c75
SM
3669 if (body_text != NULL && *body_text != '\0')
3670 data->items.back ().extra = body_text;
dc146f7c
VP
3671}
3672
3673const struct gdb_xml_attribute thread_attributes[] = {
3674 { "id", GDB_XML_AF_NONE, NULL, NULL },
3675 { "core", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
79efa585 3676 { "name", GDB_XML_AF_OPTIONAL, NULL, NULL },
f6327dcb 3677 { "handle", GDB_XML_AF_OPTIONAL, NULL, NULL },
dc146f7c
VP
3678 { NULL, GDB_XML_AF_NONE, NULL, NULL }
3679};
3680
3681const struct gdb_xml_element thread_children[] = {
3682 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3683};
3684
3685const struct gdb_xml_element threads_children[] = {
3686 { "thread", thread_attributes, thread_children,
3687 GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL,
3688 start_thread, end_thread },
3689 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3690};
3691
3692const struct gdb_xml_element threads_elements[] = {
3693 { "threads", NULL, threads_children,
3694 GDB_XML_EF_NONE, NULL, NULL },
3695 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3696};
3697
3698#endif
3699
6dc54d91 3700/* List remote threads using qXfer:threads:read. */
9d1f7ab2 3701
6b8edb51
PA
3702int
3703remote_target::remote_get_threads_with_qxfer (threads_listing_context *context)
0f71a2f6 3704{
dc146f7c 3705#if defined(HAVE_LIBEXPAT)
4082afcc 3706 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
dc146f7c 3707 {
9018be22 3708 gdb::optional<gdb::char_vector> xml
6b8edb51 3709 = target_read_stralloc (this, TARGET_OBJECT_THREADS, NULL);
efc0eabd 3710
9018be22 3711 if (xml && (*xml)[0] != '\0')
dc146f7c 3712 {
6dc54d91 3713 gdb_xml_parse_quick (_("threads"), "threads.dtd",
9018be22 3714 threads_elements, xml->data (), context);
dc146f7c
VP
3715 }
3716
6dc54d91 3717 return 1;
dc146f7c
VP
3718 }
3719#endif
3720
6dc54d91
PA
3721 return 0;
3722}
3723
3724/* List remote threads using qfThreadInfo/qsThreadInfo. */
3725
6b8edb51
PA
3726int
3727remote_target::remote_get_threads_with_qthreadinfo (threads_listing_context *context)
6dc54d91
PA
3728{
3729 struct remote_state *rs = get_remote_state ();
3730
b80fafe3 3731 if (rs->use_threadinfo_query)
9d1f7ab2 3732 {
256642e8 3733 const char *bufp;
6dc54d91 3734
9d1f7ab2 3735 putpkt ("qfThreadInfo");
8d64371b
TT
3736 getpkt (&rs->buf, 0);
3737 bufp = rs->buf.data ();
9d1f7ab2 3738 if (bufp[0] != '\0') /* q packet recognized */
802188a7 3739 {
9d1f7ab2
MS
3740 while (*bufp++ == 'm') /* reply contains one or more TID */
3741 {
3742 do
3743 {
21fe1c75
SM
3744 ptid_t ptid = read_ptid (bufp, &bufp);
3745 context->items.emplace_back (ptid);
9d1f7ab2
MS
3746 }
3747 while (*bufp++ == ','); /* comma-separated list */
3748 putpkt ("qsThreadInfo");
8d64371b
TT
3749 getpkt (&rs->buf, 0);
3750 bufp = rs->buf.data ();
9d1f7ab2 3751 }
6dc54d91
PA
3752 return 1;
3753 }
3754 else
3755 {
3756 /* Packet not recognized. */
3757 rs->use_threadinfo_query = 0;
9d1f7ab2
MS
3758 }
3759 }
3760
6dc54d91
PA
3761 return 0;
3762}
3763
e8032dde 3764/* Implement the to_update_thread_list function for the remote
6dc54d91
PA
3765 targets. */
3766
f6ac5f3d
PA
3767void
3768remote_target::update_thread_list ()
6dc54d91 3769{
6dc54d91 3770 struct threads_listing_context context;
ab970af1 3771 int got_list = 0;
e8032dde 3772
6dc54d91
PA
3773 /* We have a few different mechanisms to fetch the thread list. Try
3774 them all, starting with the most preferred one first, falling
3775 back to older methods. */
6b8edb51
PA
3776 if (remote_get_threads_with_qxfer (&context)
3777 || remote_get_threads_with_qthreadinfo (&context)
3778 || remote_get_threads_with_ql (&context))
6dc54d91 3779 {
ab970af1
PA
3780 got_list = 1;
3781
21fe1c75 3782 if (context.items.empty ()
f6ac5f3d 3783 && remote_thread_always_alive (inferior_ptid))
7d1a114c
PA
3784 {
3785 /* Some targets don't really support threads, but still
3786 reply an (empty) thread list in response to the thread
3787 listing packets, instead of replying "packet not
3788 supported". Exit early so we don't delete the main
3789 thread. */
7d1a114c
PA
3790 return;
3791 }
3792
ab970af1
PA
3793 /* CONTEXT now holds the current thread list on the remote
3794 target end. Delete GDB-side threads no longer found on the
3795 target. */
08036331 3796 for (thread_info *tp : all_threads_safe ())
cbb8991c 3797 {
21fe1c75 3798 if (!context.contains_thread (tp->ptid))
ab970af1
PA
3799 {
3800 /* Not found. */
00431a78 3801 delete_thread (tp);
ab970af1 3802 }
cbb8991c
DB
3803 }
3804
3805 /* Remove any unreported fork child threads from CONTEXT so
3806 that we don't interfere with follow fork, which is where
3807 creation of such threads is handled. */
3808 remove_new_fork_children (&context);
74531fed 3809
ab970af1 3810 /* And now add threads we don't know about yet to our list. */
21fe1c75 3811 for (thread_item &item : context.items)
6dc54d91 3812 {
21fe1c75 3813 if (item.ptid != null_ptid)
6dc54d91 3814 {
6dc54d91 3815 /* In non-stop mode, we assume new found threads are
0d5b594f
PA
3816 executing until proven otherwise with a stop reply.
3817 In all-stop, we can only get here if all threads are
6dc54d91 3818 stopped. */
0d5b594f 3819 int executing = target_is_non_stop_p () ? 1 : 0;
6dc54d91 3820
21fe1c75 3821 remote_notice_new_inferior (item.ptid, executing);
6dc54d91 3822
08036331 3823 thread_info *tp = find_thread_ptid (item.ptid);
00431a78 3824 remote_thread_info *info = get_remote_thread_info (tp);
21fe1c75 3825 info->core = item.core;
7aabaf9d
SM
3826 info->extra = std::move (item.extra);
3827 info->name = std::move (item.name);
3828 info->thread_handle = std::move (item.thread_handle);
6dc54d91
PA
3829 }
3830 }
3831 }
3832
ab970af1
PA
3833 if (!got_list)
3834 {
3835 /* If no thread listing method is supported, then query whether
3836 each known thread is alive, one by one, with the T packet.
3837 If the target doesn't support threads at all, then this is a
3838 no-op. See remote_thread_alive. */
3839 prune_threads ();
3840 }
9d1f7ab2
MS
3841}
3842
802188a7 3843/*
9d1f7ab2
MS
3844 * Collect a descriptive string about the given thread.
3845 * The target may say anything it wants to about the thread
3846 * (typically info about its blocked / runnable state, name, etc.).
3847 * This string will appear in the info threads display.
802188a7 3848 *
9d1f7ab2
MS
3849 * Optional: targets are not required to implement this function.
3850 */
3851
f6ac5f3d
PA
3852const char *
3853remote_target::extra_thread_info (thread_info *tp)
9d1f7ab2 3854{
d01949b6 3855 struct remote_state *rs = get_remote_state ();
9d1f7ab2
MS
3856 int set;
3857 threadref id;
3858 struct gdb_ext_thread_info threadinfo;
9d1f7ab2 3859
5d93a237 3860 if (rs->remote_desc == 0) /* paranoia */
8e65ff28 3861 internal_error (__FILE__, __LINE__,
e2e0b3e5 3862 _("remote_threads_extra_info"));
9d1f7ab2 3863
d7e15655 3864 if (tp->ptid == magic_null_ptid
e38504b3 3865 || (tp->ptid.pid () != 0 && tp->ptid.lwp () == 0))
60e569b9
PA
3866 /* This is the main thread which was added by GDB. The remote
3867 server doesn't know about it. */
3868 return NULL;
3869
c76a8ea3
PA
3870 std::string &extra = get_remote_thread_info (tp)->extra;
3871
3872 /* If already have cached info, use it. */
3873 if (!extra.empty ())
3874 return extra.c_str ();
3875
4082afcc 3876 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
dc146f7c 3877 {
c76a8ea3
PA
3878 /* If we're using qXfer:threads:read, then the extra info is
3879 included in the XML. So if we didn't have anything cached,
3880 it's because there's really no extra info. */
3881 return NULL;
dc146f7c
VP
3882 }
3883
b80fafe3 3884 if (rs->use_threadextra_query)
9d1f7ab2 3885 {
8d64371b
TT
3886 char *b = rs->buf.data ();
3887 char *endb = b + get_remote_packet_size ();
82f73884
PA
3888
3889 xsnprintf (b, endb - b, "qThreadExtraInfo,");
3890 b += strlen (b);
3891 write_ptid (b, endb, tp->ptid);
3892
2e9f7625 3893 putpkt (rs->buf);
8d64371b 3894 getpkt (&rs->buf, 0);
2e9f7625 3895 if (rs->buf[0] != 0)
9d1f7ab2 3896 {
8d64371b
TT
3897 extra.resize (strlen (rs->buf.data ()) / 2);
3898 hex2bin (rs->buf.data (), (gdb_byte *) &extra[0], extra.size ());
c76a8ea3 3899 return extra.c_str ();
9d1f7ab2 3900 }
0f71a2f6 3901 }
9d1f7ab2
MS
3902
3903 /* If the above query fails, fall back to the old method. */
b80fafe3 3904 rs->use_threadextra_query = 0;
9d1f7ab2
MS
3905 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
3906 | TAG_MOREDISPLAY | TAG_DISPLAY;
e38504b3 3907 int_to_threadref (&id, tp->ptid.lwp ());
9d1f7ab2
MS
3908 if (remote_get_threadinfo (&id, set, &threadinfo))
3909 if (threadinfo.active)
0f71a2f6 3910 {
9d1f7ab2 3911 if (*threadinfo.shortname)
c76a8ea3 3912 string_appendf (extra, " Name: %s", threadinfo.shortname);
9d1f7ab2 3913 if (*threadinfo.display)
c76a8ea3
PA
3914 {
3915 if (!extra.empty ())
3916 extra += ',';
3917 string_appendf (extra, " State: %s", threadinfo.display);
3918 }
9d1f7ab2 3919 if (*threadinfo.more_display)
c5aa993b 3920 {
c76a8ea3
PA
3921 if (!extra.empty ())
3922 extra += ',';
3923 string_appendf (extra, " Priority: %s", threadinfo.more_display);
c5aa993b 3924 }
c76a8ea3 3925 return extra.c_str ();
0f71a2f6 3926 }
9d1f7ab2 3927 return NULL;
0f71a2f6 3928}
c906108c 3929\f
c5aa993b 3930
f6ac5f3d
PA
3931bool
3932remote_target::static_tracepoint_marker_at (CORE_ADDR addr,
3933 struct static_tracepoint_marker *marker)
0fb4aa4b
PA
3934{
3935 struct remote_state *rs = get_remote_state ();
8d64371b 3936 char *p = rs->buf.data ();
0fb4aa4b 3937
bba74b36 3938 xsnprintf (p, get_remote_packet_size (), "qTSTMat:");
0fb4aa4b
PA
3939 p += strlen (p);
3940 p += hexnumstr (p, addr);
3941 putpkt (rs->buf);
8d64371b
TT
3942 getpkt (&rs->buf, 0);
3943 p = rs->buf.data ();
0fb4aa4b
PA
3944
3945 if (*p == 'E')
3946 error (_("Remote failure reply: %s"), p);
3947
3948 if (*p++ == 'm')
3949 {
256642e8 3950 parse_static_tracepoint_marker_definition (p, NULL, marker);
5d9310c4 3951 return true;
0fb4aa4b
PA
3952 }
3953
5d9310c4 3954 return false;
0fb4aa4b
PA
3955}
3956
f6ac5f3d
PA
3957std::vector<static_tracepoint_marker>
3958remote_target::static_tracepoint_markers_by_strid (const char *strid)
0fb4aa4b
PA
3959{
3960 struct remote_state *rs = get_remote_state ();
5d9310c4 3961 std::vector<static_tracepoint_marker> markers;
256642e8 3962 const char *p;
5d9310c4 3963 static_tracepoint_marker marker;
0fb4aa4b
PA
3964
3965 /* Ask for a first packet of static tracepoint marker
3966 definition. */
3967 putpkt ("qTfSTM");
8d64371b
TT
3968 getpkt (&rs->buf, 0);
3969 p = rs->buf.data ();
0fb4aa4b
PA
3970 if (*p == 'E')
3971 error (_("Remote failure reply: %s"), p);
3972
0fb4aa4b
PA
3973 while (*p++ == 'm')
3974 {
0fb4aa4b
PA
3975 do
3976 {
5d9310c4 3977 parse_static_tracepoint_marker_definition (p, &p, &marker);
0fb4aa4b 3978
5d9310c4
SM
3979 if (strid == NULL || marker.str_id == strid)
3980 markers.push_back (std::move (marker));
0fb4aa4b
PA
3981 }
3982 while (*p++ == ','); /* comma-separated list */
3983 /* Ask for another packet of static tracepoint definition. */
3984 putpkt ("qTsSTM");
8d64371b
TT
3985 getpkt (&rs->buf, 0);
3986 p = rs->buf.data ();
0fb4aa4b
PA
3987 }
3988
0fb4aa4b
PA
3989 return markers;
3990}
3991
3992\f
10760264
JB
3993/* Implement the to_get_ada_task_ptid function for the remote targets. */
3994
f6ac5f3d
PA
3995ptid_t
3996remote_target::get_ada_task_ptid (long lwp, long thread)
10760264 3997{
e99b03dc 3998 return ptid_t (inferior_ptid.pid (), lwp, 0);
10760264
JB
3999}
4000\f
4001
24b06219 4002/* Restart the remote side; this is an extended protocol operation. */
c906108c 4003
6b8edb51
PA
4004void
4005remote_target::extended_remote_restart ()
c906108c 4006{
d01949b6 4007 struct remote_state *rs = get_remote_state ();
c906108c
SS
4008
4009 /* Send the restart command; for reasons I don't understand the
4010 remote side really expects a number after the "R". */
8d64371b 4011 xsnprintf (rs->buf.data (), get_remote_packet_size (), "R%x", 0);
6d820c5c 4012 putpkt (rs->buf);
c906108c 4013
ad9a8f3f 4014 remote_fileio_reset ();
c906108c
SS
4015}
4016\f
4017/* Clean up connection to a remote debugger. */
4018
f6ac5f3d
PA
4019void
4020remote_target::close ()
c906108c 4021{
048094ac 4022 /* Make sure we leave stdin registered in the event loop. */
f6ac5f3d 4023 terminal_ours ();
ce5ce7ed 4024
ce5ce7ed 4025 /* We don't have a connection to the remote stub anymore. Get rid
f67fd822
PM
4026 of all the inferiors and their threads we were controlling.
4027 Reset inferior_ptid to null_ptid first, as otherwise has_stack_frame
4028 will be unable to find the thread corresponding to (pid, 0, 0). */
0f2caa1b 4029 inferior_ptid = null_ptid;
f67fd822 4030 discard_all_inferiors ();
ce5ce7ed 4031
6b8edb51
PA
4032 trace_reset_local_state ();
4033
4034 delete this;
4035}
4036
4037remote_target::~remote_target ()
4038{
4039 struct remote_state *rs = get_remote_state ();
4040
4041 /* Check for NULL because we may get here with a partially
4042 constructed target/connection. */
4043 if (rs->remote_desc == nullptr)
4044 return;
4045
4046 serial_close (rs->remote_desc);
4047
4048 /* We are destroying the remote target, so we should discard
f48ff2a7 4049 everything of this target. */
6b8edb51 4050 discard_pending_stop_replies_in_queue ();
74531fed 4051
6b8edb51
PA
4052 if (rs->remote_async_inferior_event_token)
4053 delete_async_event_handler (&rs->remote_async_inferior_event_token);
722247f1 4054
97dfbadd 4055 delete rs->notif_state;
c906108c
SS
4056}
4057
23860348 4058/* Query the remote side for the text, data and bss offsets. */
c906108c 4059
6b8edb51
PA
4060void
4061remote_target::get_offsets ()
c906108c 4062{
d01949b6 4063 struct remote_state *rs = get_remote_state ();
2e9f7625 4064 char *buf;
085dd6e6 4065 char *ptr;
31d99776
DJ
4066 int lose, num_segments = 0, do_sections, do_segments;
4067 CORE_ADDR text_addr, data_addr, bss_addr, segments[2];
c906108c 4068 struct section_offsets *offs;
31d99776
DJ
4069 struct symfile_segment_data *data;
4070
4071 if (symfile_objfile == NULL)
4072 return;
c906108c
SS
4073
4074 putpkt ("qOffsets");
8d64371b
TT
4075 getpkt (&rs->buf, 0);
4076 buf = rs->buf.data ();
c906108c
SS
4077
4078 if (buf[0] == '\000')
4079 return; /* Return silently. Stub doesn't support
23860348 4080 this command. */
c906108c
SS
4081 if (buf[0] == 'E')
4082 {
8a3fe4f8 4083 warning (_("Remote failure reply: %s"), buf);
c906108c
SS
4084 return;
4085 }
4086
4087 /* Pick up each field in turn. This used to be done with scanf, but
4088 scanf will make trouble if CORE_ADDR size doesn't match
4089 conversion directives correctly. The following code will work
4090 with any size of CORE_ADDR. */
4091 text_addr = data_addr = bss_addr = 0;
4092 ptr = buf;
4093 lose = 0;
4094
61012eef 4095 if (startswith (ptr, "Text="))
c906108c
SS
4096 {
4097 ptr += 5;
4098 /* Don't use strtol, could lose on big values. */
4099 while (*ptr && *ptr != ';')
4100 text_addr = (text_addr << 4) + fromhex (*ptr++);
c906108c 4101
61012eef 4102 if (startswith (ptr, ";Data="))
31d99776
DJ
4103 {
4104 ptr += 6;
4105 while (*ptr && *ptr != ';')
4106 data_addr = (data_addr << 4) + fromhex (*ptr++);
4107 }
4108 else
4109 lose = 1;
4110
61012eef 4111 if (!lose && startswith (ptr, ";Bss="))
31d99776
DJ
4112 {
4113 ptr += 5;
4114 while (*ptr && *ptr != ';')
4115 bss_addr = (bss_addr << 4) + fromhex (*ptr++);
c906108c 4116
31d99776
DJ
4117 if (bss_addr != data_addr)
4118 warning (_("Target reported unsupported offsets: %s"), buf);
4119 }
4120 else
4121 lose = 1;
4122 }
61012eef 4123 else if (startswith (ptr, "TextSeg="))
c906108c 4124 {
31d99776
DJ
4125 ptr += 8;
4126 /* Don't use strtol, could lose on big values. */
c906108c 4127 while (*ptr && *ptr != ';')
31d99776
DJ
4128 text_addr = (text_addr << 4) + fromhex (*ptr++);
4129 num_segments = 1;
4130
61012eef 4131 if (startswith (ptr, ";DataSeg="))
31d99776
DJ
4132 {
4133 ptr += 9;
4134 while (*ptr && *ptr != ';')
4135 data_addr = (data_addr << 4) + fromhex (*ptr++);
4136 num_segments++;
4137 }
c906108c
SS
4138 }
4139 else
4140 lose = 1;
4141
4142 if (lose)
8a3fe4f8 4143 error (_("Malformed response to offset query, %s"), buf);
31d99776
DJ
4144 else if (*ptr != '\0')
4145 warning (_("Target reported unsupported offsets: %s"), buf);
c906108c 4146
802188a7 4147 offs = ((struct section_offsets *)
a39a16c4 4148 alloca (SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections)));
802188a7 4149 memcpy (offs, symfile_objfile->section_offsets,
a39a16c4 4150 SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections));
c906108c 4151
31d99776
DJ
4152 data = get_symfile_segment_data (symfile_objfile->obfd);
4153 do_segments = (data != NULL);
4154 do_sections = num_segments == 0;
c906108c 4155
28c32713 4156 if (num_segments > 0)
31d99776 4157 {
31d99776
DJ
4158 segments[0] = text_addr;
4159 segments[1] = data_addr;
4160 }
28c32713
JB
4161 /* If we have two segments, we can still try to relocate everything
4162 by assuming that the .text and .data offsets apply to the whole
4163 text and data segments. Convert the offsets given in the packet
4164 to base addresses for symfile_map_offsets_to_segments. */
4165 else if (data && data->num_segments == 2)
4166 {
4167 segments[0] = data->segment_bases[0] + text_addr;
4168 segments[1] = data->segment_bases[1] + data_addr;
4169 num_segments = 2;
4170 }
8d385431
DJ
4171 /* If the object file has only one segment, assume that it is text
4172 rather than data; main programs with no writable data are rare,
4173 but programs with no code are useless. Of course the code might
4174 have ended up in the data segment... to detect that we would need
4175 the permissions here. */
4176 else if (data && data->num_segments == 1)
4177 {
4178 segments[0] = data->segment_bases[0] + text_addr;
4179 num_segments = 1;
4180 }
28c32713
JB
4181 /* There's no way to relocate by segment. */
4182 else
4183 do_segments = 0;
31d99776
DJ
4184
4185 if (do_segments)
4186 {
4187 int ret = symfile_map_offsets_to_segments (symfile_objfile->obfd, data,
4188 offs, num_segments, segments);
4189
4190 if (ret == 0 && !do_sections)
3e43a32a
MS
4191 error (_("Can not handle qOffsets TextSeg "
4192 "response with this symbol file"));
31d99776
DJ
4193
4194 if (ret > 0)
4195 do_sections = 0;
4196 }
c906108c 4197
9ef895d6
DJ
4198 if (data)
4199 free_symfile_segment_data (data);
31d99776
DJ
4200
4201 if (do_sections)
4202 {
4203 offs->offsets[SECT_OFF_TEXT (symfile_objfile)] = text_addr;
4204
3e43a32a
MS
4205 /* This is a temporary kludge to force data and bss to use the
4206 same offsets because that's what nlmconv does now. The real
4207 solution requires changes to the stub and remote.c that I
4208 don't have time to do right now. */
31d99776
DJ
4209
4210 offs->offsets[SECT_OFF_DATA (symfile_objfile)] = data_addr;
4211 offs->offsets[SECT_OFF_BSS (symfile_objfile)] = data_addr;
4212 }
c906108c
SS
4213
4214 objfile_relocate (symfile_objfile, offs);
4215}
4216
9a7071a8 4217/* Send interrupt_sequence to remote target. */
6b8edb51
PA
4218
4219void
4220remote_target::send_interrupt_sequence ()
9a7071a8 4221{
5d93a237
TT
4222 struct remote_state *rs = get_remote_state ();
4223
9a7071a8 4224 if (interrupt_sequence_mode == interrupt_sequence_control_c)
c33e31fd 4225 remote_serial_write ("\x03", 1);
9a7071a8 4226 else if (interrupt_sequence_mode == interrupt_sequence_break)
5d93a237 4227 serial_send_break (rs->remote_desc);
9a7071a8
JB
4228 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
4229 {
5d93a237 4230 serial_send_break (rs->remote_desc);
c33e31fd 4231 remote_serial_write ("g", 1);
9a7071a8
JB
4232 }
4233 else
4234 internal_error (__FILE__, __LINE__,
4235 _("Invalid value for interrupt_sequence_mode: %s."),
4236 interrupt_sequence_mode);
4237}
4238
3405876a
PA
4239
4240/* If STOP_REPLY is a T stop reply, look for the "thread" register,
4241 and extract the PTID. Returns NULL_PTID if not found. */
4242
4243static ptid_t
4244stop_reply_extract_thread (char *stop_reply)
4245{
4246 if (stop_reply[0] == 'T' && strlen (stop_reply) > 3)
4247 {
256642e8 4248 const char *p;
3405876a
PA
4249
4250 /* Txx r:val ; r:val (...) */
4251 p = &stop_reply[3];
4252
4253 /* Look for "register" named "thread". */
4254 while (*p != '\0')
4255 {
256642e8 4256 const char *p1;
3405876a
PA
4257
4258 p1 = strchr (p, ':');
4259 if (p1 == NULL)
4260 return null_ptid;
4261
4262 if (strncmp (p, "thread", p1 - p) == 0)
4263 return read_ptid (++p1, &p);
4264
4265 p1 = strchr (p, ';');
4266 if (p1 == NULL)
4267 return null_ptid;
4268 p1++;
4269
4270 p = p1;
4271 }
4272 }
4273
4274 return null_ptid;
4275}
4276
b7ea362b
PA
4277/* Determine the remote side's current thread. If we have a stop
4278 reply handy (in WAIT_STATUS), maybe it's a T stop reply with a
4279 "thread" register we can extract the current thread from. If not,
4280 ask the remote which is the current thread with qC. The former
4281 method avoids a roundtrip. */
4282
6b8edb51
PA
4283ptid_t
4284remote_target::get_current_thread (char *wait_status)
b7ea362b 4285{
6a49a997 4286 ptid_t ptid = null_ptid;
b7ea362b
PA
4287
4288 /* Note we don't use remote_parse_stop_reply as that makes use of
4289 the target architecture, which we haven't yet fully determined at
4290 this point. */
4291 if (wait_status != NULL)
4292 ptid = stop_reply_extract_thread (wait_status);
d7e15655 4293 if (ptid == null_ptid)
b7ea362b
PA
4294 ptid = remote_current_thread (inferior_ptid);
4295
4296 return ptid;
4297}
4298
49c62f2e
PA
4299/* Query the remote target for which is the current thread/process,
4300 add it to our tables, and update INFERIOR_PTID. The caller is
4301 responsible for setting the state such that the remote end is ready
3405876a
PA
4302 to return the current thread.
4303
4304 This function is called after handling the '?' or 'vRun' packets,
4305 whose response is a stop reply from which we can also try
4306 extracting the thread. If the target doesn't support the explicit
4307 qC query, we infer the current thread from that stop reply, passed
4308 in in WAIT_STATUS, which may be NULL. */
49c62f2e 4309
6b8edb51
PA
4310void
4311remote_target::add_current_inferior_and_thread (char *wait_status)
49c62f2e
PA
4312{
4313 struct remote_state *rs = get_remote_state ();
9ab8741a 4314 bool fake_pid_p = false;
49c62f2e
PA
4315
4316 inferior_ptid = null_ptid;
4317
b7ea362b 4318 /* Now, if we have thread information, update inferior_ptid. */
87215ad1 4319 ptid_t curr_ptid = get_current_thread (wait_status);
3405876a 4320
87215ad1 4321 if (curr_ptid != null_ptid)
49c62f2e
PA
4322 {
4323 if (!remote_multi_process_p (rs))
9ab8741a 4324 fake_pid_p = true;
49c62f2e
PA
4325 }
4326 else
4327 {
4328 /* Without this, some commands which require an active target
4329 (such as kill) won't work. This variable serves (at least)
4330 double duty as both the pid of the target process (if it has
4331 such), and as a flag indicating that a target is active. */
87215ad1 4332 curr_ptid = magic_null_ptid;
9ab8741a 4333 fake_pid_p = true;
49c62f2e
PA
4334 }
4335
e99b03dc 4336 remote_add_inferior (fake_pid_p, curr_ptid.pid (), -1, 1);
49c62f2e 4337
87215ad1
SDJ
4338 /* Add the main thread and switch to it. Don't try reading
4339 registers yet, since we haven't fetched the target description
4340 yet. */
4341 thread_info *tp = add_thread_silent (curr_ptid);
4342 switch_to_thread_no_regs (tp);
49c62f2e
PA
4343}
4344
6efcd9a8
PA
4345/* Print info about a thread that was found already stopped on
4346 connection. */
4347
4348static void
4349print_one_stopped_thread (struct thread_info *thread)
4350{
4351 struct target_waitstatus *ws = &thread->suspend.waitstatus;
4352
00431a78 4353 switch_to_thread (thread);
f2ffa92b 4354 thread->suspend.stop_pc = get_frame_pc (get_current_frame ());
6efcd9a8
PA
4355 set_current_sal_from_frame (get_current_frame ());
4356
4357 thread->suspend.waitstatus_pending_p = 0;
4358
4359 if (ws->kind == TARGET_WAITKIND_STOPPED)
4360 {
4361 enum gdb_signal sig = ws->value.sig;
4362
4363 if (signal_print_state (sig))
76727919 4364 gdb::observers::signal_received.notify (sig);
6efcd9a8 4365 }
76727919 4366 gdb::observers::normal_stop.notify (NULL, 1);
6efcd9a8
PA
4367}
4368
221e1a37
PA
4369/* Process all initial stop replies the remote side sent in response
4370 to the ? packet. These indicate threads that were already stopped
4371 on initial connection. We mark these threads as stopped and print
4372 their current frame before giving the user the prompt. */
4373
6b8edb51
PA
4374void
4375remote_target::process_initial_stop_replies (int from_tty)
221e1a37
PA
4376{
4377 int pending_stop_replies = stop_reply_queue_length ();
6efcd9a8
PA
4378 struct thread_info *selected = NULL;
4379 struct thread_info *lowest_stopped = NULL;
4380 struct thread_info *first = NULL;
221e1a37
PA
4381
4382 /* Consume the initial pending events. */
4383 while (pending_stop_replies-- > 0)
4384 {
4385 ptid_t waiton_ptid = minus_one_ptid;
4386 ptid_t event_ptid;
4387 struct target_waitstatus ws;
4388 int ignore_event = 0;
4389
4390 memset (&ws, 0, sizeof (ws));
4391 event_ptid = target_wait (waiton_ptid, &ws, TARGET_WNOHANG);
4392 if (remote_debug)
4393 print_target_wait_results (waiton_ptid, event_ptid, &ws);
4394
4395 switch (ws.kind)
4396 {
4397 case TARGET_WAITKIND_IGNORE:
4398 case TARGET_WAITKIND_NO_RESUMED:
4399 case TARGET_WAITKIND_SIGNALLED:
4400 case TARGET_WAITKIND_EXITED:
4401 /* We shouldn't see these, but if we do, just ignore. */
4402 if (remote_debug)
4403 fprintf_unfiltered (gdb_stdlog, "remote: event ignored\n");
4404 ignore_event = 1;
4405 break;
4406
4407 case TARGET_WAITKIND_EXECD:
4408 xfree (ws.value.execd_pathname);
4409 break;
4410 default:
4411 break;
4412 }
4413
4414 if (ignore_event)
4415 continue;
4416
b926417a 4417 struct thread_info *evthread = find_thread_ptid (event_ptid);
221e1a37
PA
4418
4419 if (ws.kind == TARGET_WAITKIND_STOPPED)
4420 {
4421 enum gdb_signal sig = ws.value.sig;
4422
4423 /* Stubs traditionally report SIGTRAP as initial signal,
4424 instead of signal 0. Suppress it. */
4425 if (sig == GDB_SIGNAL_TRAP)
4426 sig = GDB_SIGNAL_0;
b926417a 4427 evthread->suspend.stop_signal = sig;
6efcd9a8
PA
4428 ws.value.sig = sig;
4429 }
221e1a37 4430
b926417a 4431 evthread->suspend.waitstatus = ws;
6efcd9a8
PA
4432
4433 if (ws.kind != TARGET_WAITKIND_STOPPED
4434 || ws.value.sig != GDB_SIGNAL_0)
b926417a 4435 evthread->suspend.waitstatus_pending_p = 1;
6efcd9a8
PA
4436
4437 set_executing (event_ptid, 0);
4438 set_running (event_ptid, 0);
b926417a 4439 get_remote_thread_info (evthread)->vcont_resumed = 0;
6efcd9a8
PA
4440 }
4441
4442 /* "Notice" the new inferiors before anything related to
4443 registers/memory. */
08036331 4444 for (inferior *inf : all_non_exited_inferiors ())
6efcd9a8 4445 {
6efcd9a8
PA
4446 inf->needs_setup = 1;
4447
4448 if (non_stop)
4449 {
08036331 4450 thread_info *thread = any_live_thread_of_inferior (inf);
00431a78 4451 notice_new_inferior (thread, thread->state == THREAD_RUNNING,
6efcd9a8
PA
4452 from_tty);
4453 }
4454 }
4455
4456 /* If all-stop on top of non-stop, pause all threads. Note this
4457 records the threads' stop pc, so must be done after "noticing"
4458 the inferiors. */
4459 if (!non_stop)
4460 {
4461 stop_all_threads ();
4462
4463 /* If all threads of an inferior were already stopped, we
4464 haven't setup the inferior yet. */
08036331 4465 for (inferior *inf : all_non_exited_inferiors ())
6efcd9a8 4466 {
6efcd9a8
PA
4467 if (inf->needs_setup)
4468 {
08036331 4469 thread_info *thread = any_live_thread_of_inferior (inf);
6efcd9a8
PA
4470 switch_to_thread_no_regs (thread);
4471 setup_inferior (0);
4472 }
4473 }
221e1a37 4474 }
6efcd9a8
PA
4475
4476 /* Now go over all threads that are stopped, and print their current
4477 frame. If all-stop, then if there's a signalled thread, pick
4478 that as current. */
08036331 4479 for (thread_info *thread : all_non_exited_threads ())
6efcd9a8 4480 {
6efcd9a8
PA
4481 if (first == NULL)
4482 first = thread;
4483
4484 if (!non_stop)
00431a78 4485 thread->set_running (false);
6efcd9a8
PA
4486 else if (thread->state != THREAD_STOPPED)
4487 continue;
4488
6efcd9a8
PA
4489 if (selected == NULL
4490 && thread->suspend.waitstatus_pending_p)
4491 selected = thread;
4492
5d5658a1
PA
4493 if (lowest_stopped == NULL
4494 || thread->inf->num < lowest_stopped->inf->num
4495 || thread->per_inf_num < lowest_stopped->per_inf_num)
6efcd9a8
PA
4496 lowest_stopped = thread;
4497
4498 if (non_stop)
4499 print_one_stopped_thread (thread);
4500 }
4501
4502 /* In all-stop, we only print the status of one thread, and leave
4503 others with their status pending. */
4504 if (!non_stop)
4505 {
08036331 4506 thread_info *thread = selected;
6efcd9a8
PA
4507 if (thread == NULL)
4508 thread = lowest_stopped;
4509 if (thread == NULL)
4510 thread = first;
4511
4512 print_one_stopped_thread (thread);
4513 }
4514
4515 /* For "info program". */
08036331 4516 thread_info *thread = inferior_thread ();
6efcd9a8
PA
4517 if (thread->state == THREAD_STOPPED)
4518 set_last_target_status (inferior_ptid, thread->suspend.waitstatus);
221e1a37
PA
4519}
4520
048094ac
PA
4521/* Start the remote connection and sync state. */
4522
f6ac5f3d
PA
4523void
4524remote_target::start_remote (int from_tty, int extended_p)
c906108c 4525{
c8d104ad
PA
4526 struct remote_state *rs = get_remote_state ();
4527 struct packet_config *noack_config;
2d717e4f 4528 char *wait_status = NULL;
8621d6a9 4529
048094ac
PA
4530 /* Signal other parts that we're going through the initial setup,
4531 and so things may not be stable yet. E.g., we don't try to
4532 install tracepoints until we've relocated symbols. Also, a
4533 Ctrl-C before we're connected and synced up can't interrupt the
4534 target. Instead, it offers to drop the (potentially wedged)
4535 connection. */
4536 rs->starting_up = 1;
4537
522002f9 4538 QUIT;
c906108c 4539
9a7071a8
JB
4540 if (interrupt_on_connect)
4541 send_interrupt_sequence ();
4542
57e12211 4543 /* Ack any packet which the remote side has already sent. */
048094ac 4544 remote_serial_write ("+", 1);
1e51243a 4545
c8d104ad
PA
4546 /* The first packet we send to the target is the optional "supported
4547 packets" request. If the target can answer this, it will tell us
4548 which later probes to skip. */
4549 remote_query_supported ();
4550
d914c394 4551 /* If the stub wants to get a QAllow, compose one and send it. */
4082afcc 4552 if (packet_support (PACKET_QAllow) != PACKET_DISABLE)
f6ac5f3d 4553 set_permissions ();
d914c394 4554
57809e5e
JK
4555 /* gdbserver < 7.7 (before its fix from 2013-12-11) did reply to any
4556 unknown 'v' packet with string "OK". "OK" gets interpreted by GDB
4557 as a reply to known packet. For packet "vFile:setfs:" it is an
4558 invalid reply and GDB would return error in
4559 remote_hostio_set_filesystem, making remote files access impossible.
4560 Disable "vFile:setfs:" in such case. Do not disable other 'v' packets as
4561 other "vFile" packets get correctly detected even on gdbserver < 7.7. */
4562 {
4563 const char v_mustreplyempty[] = "vMustReplyEmpty";
4564
4565 putpkt (v_mustreplyempty);
8d64371b
TT
4566 getpkt (&rs->buf, 0);
4567 if (strcmp (rs->buf.data (), "OK") == 0)
57809e5e 4568 remote_protocol_packets[PACKET_vFile_setfs].support = PACKET_DISABLE;
8d64371b 4569 else if (strcmp (rs->buf.data (), "") != 0)
57809e5e 4570 error (_("Remote replied unexpectedly to '%s': %s"), v_mustreplyempty,
8d64371b 4571 rs->buf.data ());
57809e5e
JK
4572 }
4573
c8d104ad
PA
4574 /* Next, we possibly activate noack mode.
4575
4576 If the QStartNoAckMode packet configuration is set to AUTO,
4577 enable noack mode if the stub reported a wish for it with
4578 qSupported.
4579
4580 If set to TRUE, then enable noack mode even if the stub didn't
4581 report it in qSupported. If the stub doesn't reply OK, the
4582 session ends with an error.
4583
4584 If FALSE, then don't activate noack mode, regardless of what the
4585 stub claimed should be the default with qSupported. */
4586
4587 noack_config = &remote_protocol_packets[PACKET_QStartNoAckMode];
4082afcc 4588 if (packet_config_support (noack_config) != PACKET_DISABLE)
c8d104ad
PA
4589 {
4590 putpkt ("QStartNoAckMode");
8d64371b 4591 getpkt (&rs->buf, 0);
c8d104ad
PA
4592 if (packet_ok (rs->buf, noack_config) == PACKET_OK)
4593 rs->noack_mode = 1;
4594 }
4595
04bd08de 4596 if (extended_p)
5fe04517
PA
4597 {
4598 /* Tell the remote that we are using the extended protocol. */
4599 putpkt ("!");
8d64371b 4600 getpkt (&rs->buf, 0);
5fe04517
PA
4601 }
4602
9b224c5e
PA
4603 /* Let the target know which signals it is allowed to pass down to
4604 the program. */
4605 update_signals_program_target ();
4606
d962ef82
DJ
4607 /* Next, if the target can specify a description, read it. We do
4608 this before anything involving memory or registers. */
4609 target_find_description ();
4610
6c95b8df
PA
4611 /* Next, now that we know something about the target, update the
4612 address spaces in the program spaces. */
4613 update_address_spaces ();
4614
50c71eaf
PA
4615 /* On OSs where the list of libraries is global to all
4616 processes, we fetch them early. */
f5656ead 4617 if (gdbarch_has_global_solist (target_gdbarch ()))
e696b3ad 4618 solib_add (NULL, from_tty, auto_solib_add);
50c71eaf 4619
6efcd9a8 4620 if (target_is_non_stop_p ())
74531fed 4621 {
4082afcc 4622 if (packet_support (PACKET_QNonStop) != PACKET_ENABLE)
3e43a32a
MS
4623 error (_("Non-stop mode requested, but remote "
4624 "does not support non-stop"));
74531fed
PA
4625
4626 putpkt ("QNonStop:1");
8d64371b 4627 getpkt (&rs->buf, 0);
74531fed 4628
8d64371b
TT
4629 if (strcmp (rs->buf.data (), "OK") != 0)
4630 error (_("Remote refused setting non-stop mode with: %s"),
4631 rs->buf.data ());
74531fed
PA
4632
4633 /* Find about threads and processes the stub is already
4634 controlling. We default to adding them in the running state.
4635 The '?' query below will then tell us about which threads are
4636 stopped. */
f6ac5f3d 4637 this->update_thread_list ();
74531fed 4638 }
4082afcc 4639 else if (packet_support (PACKET_QNonStop) == PACKET_ENABLE)
74531fed
PA
4640 {
4641 /* Don't assume that the stub can operate in all-stop mode.
e6f3fa52 4642 Request it explicitly. */
74531fed 4643 putpkt ("QNonStop:0");
8d64371b 4644 getpkt (&rs->buf, 0);
74531fed 4645
8d64371b
TT
4646 if (strcmp (rs->buf.data (), "OK") != 0)
4647 error (_("Remote refused setting all-stop mode with: %s"),
4648 rs->buf.data ());
74531fed
PA
4649 }
4650
a0743c90
YQ
4651 /* Upload TSVs regardless of whether the target is running or not. The
4652 remote stub, such as GDBserver, may have some predefined or builtin
4653 TSVs, even if the target is not running. */
f6ac5f3d 4654 if (get_trace_status (current_trace_status ()) != -1)
a0743c90
YQ
4655 {
4656 struct uploaded_tsv *uploaded_tsvs = NULL;
4657
f6ac5f3d 4658 upload_trace_state_variables (&uploaded_tsvs);
a0743c90
YQ
4659 merge_uploaded_trace_state_variables (&uploaded_tsvs);
4660 }
4661
2d717e4f
DJ
4662 /* Check whether the target is running now. */
4663 putpkt ("?");
8d64371b 4664 getpkt (&rs->buf, 0);
2d717e4f 4665
6efcd9a8 4666 if (!target_is_non_stop_p ())
2d717e4f 4667 {
74531fed 4668 if (rs->buf[0] == 'W' || rs->buf[0] == 'X')
2d717e4f 4669 {
04bd08de 4670 if (!extended_p)
74531fed 4671 error (_("The target is not running (try extended-remote?)"));
c35b1492
PA
4672
4673 /* We're connected, but not running. Drop out before we
4674 call start_remote. */
e278ad5b 4675 rs->starting_up = 0;
c35b1492 4676 return;
2d717e4f
DJ
4677 }
4678 else
74531fed 4679 {
74531fed 4680 /* Save the reply for later. */
8d64371b
TT
4681 wait_status = (char *) alloca (strlen (rs->buf.data ()) + 1);
4682 strcpy (wait_status, rs->buf.data ());
74531fed
PA
4683 }
4684
b7ea362b 4685 /* Fetch thread list. */
e8032dde 4686 target_update_thread_list ();
b7ea362b 4687
74531fed
PA
4688 /* Let the stub know that we want it to return the thread. */
4689 set_continue_thread (minus_one_ptid);
4690
b7ea362b
PA
4691 if (thread_count () == 0)
4692 {
4693 /* Target has no concept of threads at all. GDB treats
4694 non-threaded target as single-threaded; add a main
4695 thread. */
4696 add_current_inferior_and_thread (wait_status);
4697 }
4698 else
4699 {
4700 /* We have thread information; select the thread the target
4701 says should be current. If we're reconnecting to a
4702 multi-threaded program, this will ideally be the thread
4703 that last reported an event before GDB disconnected. */
4704 inferior_ptid = get_current_thread (wait_status);
d7e15655 4705 if (inferior_ptid == null_ptid)
b7ea362b
PA
4706 {
4707 /* Odd... The target was able to list threads, but not
4708 tell us which thread was current (no "thread"
4709 register in T stop reply?). Just pick the first
4710 thread in the thread list then. */
c9f35b34
KB
4711
4712 if (remote_debug)
4713 fprintf_unfiltered (gdb_stdlog,
4714 "warning: couldn't determine remote "
4715 "current thread; picking first in list.\n");
4716
08036331 4717 inferior_ptid = inferior_list->thread_list->ptid;
b7ea362b
PA
4718 }
4719 }
74531fed 4720
6e586cc5
YQ
4721 /* init_wait_for_inferior should be called before get_offsets in order
4722 to manage `inserted' flag in bp loc in a correct state.
4723 breakpoint_init_inferior, called from init_wait_for_inferior, set
4724 `inserted' flag to 0, while before breakpoint_re_set, called from
4725 start_remote, set `inserted' flag to 1. In the initialization of
4726 inferior, breakpoint_init_inferior should be called first, and then
4727 breakpoint_re_set can be called. If this order is broken, state of
4728 `inserted' flag is wrong, and cause some problems on breakpoint
4729 manipulation. */
4730 init_wait_for_inferior ();
4731
74531fed
PA
4732 get_offsets (); /* Get text, data & bss offsets. */
4733
d962ef82
DJ
4734 /* If we could not find a description using qXfer, and we know
4735 how to do it some other way, try again. This is not
4736 supported for non-stop; it could be, but it is tricky if
4737 there are no stopped threads when we connect. */
f6ac5f3d 4738 if (remote_read_description_p (this)
f5656ead 4739 && gdbarch_target_desc (target_gdbarch ()) == NULL)
d962ef82
DJ
4740 {
4741 target_clear_description ();
4742 target_find_description ();
4743 }
4744
74531fed
PA
4745 /* Use the previously fetched status. */
4746 gdb_assert (wait_status != NULL);
8d64371b 4747 strcpy (rs->buf.data (), wait_status);
74531fed
PA
4748 rs->cached_wait_status = 1;
4749
f6ac5f3d 4750 ::start_remote (from_tty); /* Initialize gdb process mechanisms. */
2d717e4f
DJ
4751 }
4752 else
4753 {
68c97600
PA
4754 /* Clear WFI global state. Do this before finding about new
4755 threads and inferiors, and setting the current inferior.
4756 Otherwise we would clear the proceed status of the current
4757 inferior when we want its stop_soon state to be preserved
4758 (see notice_new_inferior). */
4759 init_wait_for_inferior ();
4760
74531fed
PA
4761 /* In non-stop, we will either get an "OK", meaning that there
4762 are no stopped threads at this time; or, a regular stop
4763 reply. In the latter case, there may be more than one thread
4764 stopped --- we pull them all out using the vStopped
4765 mechanism. */
8d64371b 4766 if (strcmp (rs->buf.data (), "OK") != 0)
74531fed 4767 {
722247f1 4768 struct notif_client *notif = &notif_client_stop;
2d717e4f 4769
722247f1
YQ
4770 /* remote_notif_get_pending_replies acks this one, and gets
4771 the rest out. */
f48ff2a7 4772 rs->notif_state->pending_event[notif_client_stop.id]
8d64371b 4773 = remote_notif_parse (this, notif, rs->buf.data ());
722247f1 4774 remote_notif_get_pending_events (notif);
74531fed 4775 }
2d717e4f 4776
74531fed
PA
4777 if (thread_count () == 0)
4778 {
04bd08de 4779 if (!extended_p)
74531fed 4780 error (_("The target is not running (try extended-remote?)"));
82f73884 4781
c35b1492
PA
4782 /* We're connected, but not running. Drop out before we
4783 call start_remote. */
e278ad5b 4784 rs->starting_up = 0;
c35b1492
PA
4785 return;
4786 }
74531fed 4787
74531fed
PA
4788 /* In non-stop mode, any cached wait status will be stored in
4789 the stop reply queue. */
4790 gdb_assert (wait_status == NULL);
f0223081 4791
2455069d 4792 /* Report all signals during attach/startup. */
adc6a863 4793 pass_signals ({});
221e1a37
PA
4794
4795 /* If there are already stopped threads, mark them stopped and
4796 report their stops before giving the prompt to the user. */
6efcd9a8 4797 process_initial_stop_replies (from_tty);
221e1a37
PA
4798
4799 if (target_can_async_p ())
4800 target_async (1);
74531fed 4801 }
c8d104ad 4802
c8d104ad
PA
4803 /* If we connected to a live target, do some additional setup. */
4804 if (target_has_execution)
4805 {
f4ccffad 4806 if (symfile_objfile) /* No use without a symbol-file. */
36d25514 4807 remote_check_symbols ();
c8d104ad 4808 }
50c71eaf 4809
d5551862
SS
4810 /* Possibly the target has been engaged in a trace run started
4811 previously; find out where things are at. */
f6ac5f3d 4812 if (get_trace_status (current_trace_status ()) != -1)
d5551862 4813 {
00bf0b85 4814 struct uploaded_tp *uploaded_tps = NULL;
00bf0b85 4815
00bf0b85
SS
4816 if (current_trace_status ()->running)
4817 printf_filtered (_("Trace is already running on the target.\n"));
4818
f6ac5f3d 4819 upload_tracepoints (&uploaded_tps);
00bf0b85
SS
4820
4821 merge_uploaded_tracepoints (&uploaded_tps);
d5551862
SS
4822 }
4823
c0272db5
TW
4824 /* Possibly the target has been engaged in a btrace record started
4825 previously; find out where things are at. */
4826 remote_btrace_maybe_reopen ();
4827
1e51243a
PA
4828 /* The thread and inferior lists are now synchronized with the
4829 target, our symbols have been relocated, and we're merged the
4830 target's tracepoints with ours. We're done with basic start
4831 up. */
4832 rs->starting_up = 0;
4833
a25a5a45
PA
4834 /* Maybe breakpoints are global and need to be inserted now. */
4835 if (breakpoints_should_be_inserted_now ())
50c71eaf 4836 insert_breakpoints ();
c906108c
SS
4837}
4838
4839/* Open a connection to a remote debugger.
4840 NAME is the filename used for communication. */
4841
f6ac5f3d
PA
4842void
4843remote_target::open (const char *name, int from_tty)
c906108c 4844{
f6ac5f3d 4845 open_1 (name, from_tty, 0);
43ff13b4
JM
4846}
4847
c906108c
SS
4848/* Open a connection to a remote debugger using the extended
4849 remote gdb protocol. NAME is the filename used for communication. */
4850
f6ac5f3d
PA
4851void
4852extended_remote_target::open (const char *name, int from_tty)
c906108c 4853{
f6ac5f3d 4854 open_1 (name, from_tty, 1 /*extended_p */);
43ff13b4
JM
4855}
4856
ca4f7f8b
PA
4857/* Reset all packets back to "unknown support". Called when opening a
4858 new connection to a remote target. */
c906108c 4859
d471ea57 4860static void
ca4f7f8b 4861reset_all_packet_configs_support (void)
d471ea57
AC
4862{
4863 int i;
a744cf53 4864
444abaca 4865 for (i = 0; i < PACKET_MAX; i++)
4082afcc 4866 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
d471ea57
AC
4867}
4868
ca4f7f8b
PA
4869/* Initialize all packet configs. */
4870
4871static void
4872init_all_packet_configs (void)
4873{
4874 int i;
4875
4876 for (i = 0; i < PACKET_MAX; i++)
4877 {
4878 remote_protocol_packets[i].detect = AUTO_BOOLEAN_AUTO;
4879 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
4880 }
4881}
4882
23860348 4883/* Symbol look-up. */
dc8acb97 4884
6b8edb51
PA
4885void
4886remote_target::remote_check_symbols ()
dc8acb97 4887{
8d64371b 4888 char *tmp;
dc8acb97
MS
4889 int end;
4890
63154eca
PA
4891 /* The remote side has no concept of inferiors that aren't running
4892 yet, it only knows about running processes. If we're connected
4893 but our current inferior is not running, we should not invite the
4894 remote target to request symbol lookups related to its
4895 (unrelated) current process. */
4896 if (!target_has_execution)
4897 return;
4898
4082afcc 4899 if (packet_support (PACKET_qSymbol) == PACKET_DISABLE)
dc8acb97
MS
4900 return;
4901
63154eca
PA
4902 /* Make sure the remote is pointing at the right process. Note
4903 there's no way to select "no process". */
3c9c4b83
PA
4904 set_general_process ();
4905
6d820c5c
DJ
4906 /* Allocate a message buffer. We can't reuse the input buffer in RS,
4907 because we need both at the same time. */
66644cd3 4908 gdb::char_vector msg (get_remote_packet_size ());
8d64371b 4909 gdb::char_vector reply (get_remote_packet_size ());
6d820c5c 4910
23860348 4911 /* Invite target to request symbol lookups. */
dc8acb97
MS
4912
4913 putpkt ("qSymbol::");
8d64371b 4914 getpkt (&reply, 0);
28170b88 4915 packet_ok (reply, &remote_protocol_packets[PACKET_qSymbol]);
dc8acb97 4916
8d64371b 4917 while (startswith (reply.data (), "qSymbol:"))
dc8acb97 4918 {
77e371c0
TT
4919 struct bound_minimal_symbol sym;
4920
dc8acb97 4921 tmp = &reply[8];
66644cd3
AB
4922 end = hex2bin (tmp, reinterpret_cast <gdb_byte *> (msg.data ()),
4923 strlen (tmp) / 2);
dc8acb97 4924 msg[end] = '\0';
66644cd3 4925 sym = lookup_minimal_symbol (msg.data (), NULL, NULL);
3b7344d5 4926 if (sym.minsym == NULL)
66644cd3
AB
4927 xsnprintf (msg.data (), get_remote_packet_size (), "qSymbol::%s",
4928 &reply[8]);
dc8acb97 4929 else
2bbe3cc1 4930 {
f5656ead 4931 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
77e371c0 4932 CORE_ADDR sym_addr = BMSYMBOL_VALUE_ADDRESS (sym);
2bbe3cc1
DJ
4933
4934 /* If this is a function address, return the start of code
4935 instead of any data function descriptor. */
f5656ead 4936 sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
2bbe3cc1 4937 sym_addr,
8b88a78e 4938 current_top_target ());
2bbe3cc1 4939
66644cd3 4940 xsnprintf (msg.data (), get_remote_packet_size (), "qSymbol:%s:%s",
5af949e3 4941 phex_nz (sym_addr, addr_size), &reply[8]);
2bbe3cc1 4942 }
66644cd3
AB
4943
4944 putpkt (msg.data ());
8d64371b 4945 getpkt (&reply, 0);
dc8acb97
MS
4946 }
4947}
4948
9db8d71f 4949static struct serial *
baa336ce 4950remote_serial_open (const char *name)
9db8d71f
DJ
4951{
4952 static int udp_warning = 0;
4953
4954 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
4955 of in ser-tcp.c, because it is the remote protocol assuming that the
4956 serial connection is reliable and not the serial connection promising
4957 to be. */
61012eef 4958 if (!udp_warning && startswith (name, "udp:"))
9db8d71f 4959 {
3e43a32a
MS
4960 warning (_("The remote protocol may be unreliable over UDP.\n"
4961 "Some events may be lost, rendering further debugging "
4962 "impossible."));
9db8d71f
DJ
4963 udp_warning = 1;
4964 }
4965
4966 return serial_open (name);
4967}
4968
d914c394
SS
4969/* Inform the target of our permission settings. The permission flags
4970 work without this, but if the target knows the settings, it can do
4971 a couple things. First, it can add its own check, to catch cases
4972 that somehow manage to get by the permissions checks in target
4973 methods. Second, if the target is wired to disallow particular
4974 settings (for instance, a system in the field that is not set up to
4975 be able to stop at a breakpoint), it can object to any unavailable
4976 permissions. */
4977
4978void
f6ac5f3d 4979remote_target::set_permissions ()
d914c394
SS
4980{
4981 struct remote_state *rs = get_remote_state ();
4982
8d64371b 4983 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QAllow:"
bba74b36
YQ
4984 "WriteReg:%x;WriteMem:%x;"
4985 "InsertBreak:%x;InsertTrace:%x;"
4986 "InsertFastTrace:%x;Stop:%x",
4987 may_write_registers, may_write_memory,
4988 may_insert_breakpoints, may_insert_tracepoints,
4989 may_insert_fast_tracepoints, may_stop);
d914c394 4990 putpkt (rs->buf);
8d64371b 4991 getpkt (&rs->buf, 0);
d914c394
SS
4992
4993 /* If the target didn't like the packet, warn the user. Do not try
4994 to undo the user's settings, that would just be maddening. */
8d64371b
TT
4995 if (strcmp (rs->buf.data (), "OK") != 0)
4996 warning (_("Remote refused setting permissions with: %s"),
4997 rs->buf.data ());
d914c394
SS
4998}
4999
be2a5f71
DJ
5000/* This type describes each known response to the qSupported
5001 packet. */
5002struct protocol_feature
5003{
5004 /* The name of this protocol feature. */
5005 const char *name;
5006
5007 /* The default for this protocol feature. */
5008 enum packet_support default_support;
5009
5010 /* The function to call when this feature is reported, or after
5011 qSupported processing if the feature is not supported.
5012 The first argument points to this structure. The second
5013 argument indicates whether the packet requested support be
5014 enabled, disabled, or probed (or the default, if this function
5015 is being called at the end of processing and this feature was
5016 not reported). The third argument may be NULL; if not NULL, it
5017 is a NUL-terminated string taken from the packet following
5018 this feature's name and an equals sign. */
6b8edb51
PA
5019 void (*func) (remote_target *remote, const struct protocol_feature *,
5020 enum packet_support, const char *);
be2a5f71
DJ
5021
5022 /* The corresponding packet for this feature. Only used if
5023 FUNC is remote_supported_packet. */
5024 int packet;
5025};
5026
be2a5f71 5027static void
6b8edb51
PA
5028remote_supported_packet (remote_target *remote,
5029 const struct protocol_feature *feature,
be2a5f71
DJ
5030 enum packet_support support,
5031 const char *argument)
5032{
5033 if (argument)
5034 {
5035 warning (_("Remote qSupported response supplied an unexpected value for"
5036 " \"%s\"."), feature->name);
5037 return;
5038 }
5039
4082afcc 5040 remote_protocol_packets[feature->packet].support = support;
be2a5f71 5041}
be2a5f71 5042
6b8edb51
PA
5043void
5044remote_target::remote_packet_size (const protocol_feature *feature,
5045 enum packet_support support, const char *value)
be2a5f71
DJ
5046{
5047 struct remote_state *rs = get_remote_state ();
5048
5049 int packet_size;
5050 char *value_end;
5051
5052 if (support != PACKET_ENABLE)
5053 return;
5054
5055 if (value == NULL || *value == '\0')
5056 {
5057 warning (_("Remote target reported \"%s\" without a size."),
5058 feature->name);
5059 return;
5060 }
5061
5062 errno = 0;
5063 packet_size = strtol (value, &value_end, 16);
5064 if (errno != 0 || *value_end != '\0' || packet_size < 0)
5065 {
5066 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
5067 feature->name, value);
5068 return;
5069 }
5070
be2a5f71
DJ
5071 /* Record the new maximum packet size. */
5072 rs->explicit_packet_size = packet_size;
5073}
5074
6b8edb51
PA
5075void
5076remote_packet_size (remote_target *remote, const protocol_feature *feature,
5077 enum packet_support support, const char *value)
5078{
5079 remote->remote_packet_size (feature, support, value);
5080}
5081
dc473cfb 5082static const struct protocol_feature remote_protocol_features[] = {
0876f84a 5083 { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 },
40e57cf2 5084 { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet,
fd79ecee 5085 PACKET_qXfer_auxv },
c78fa86a
GB
5086 { "qXfer:exec-file:read", PACKET_DISABLE, remote_supported_packet,
5087 PACKET_qXfer_exec_file },
23181151
DJ
5088 { "qXfer:features:read", PACKET_DISABLE, remote_supported_packet,
5089 PACKET_qXfer_features },
cfa9d6d9
DJ
5090 { "qXfer:libraries:read", PACKET_DISABLE, remote_supported_packet,
5091 PACKET_qXfer_libraries },
2268b414
JK
5092 { "qXfer:libraries-svr4:read", PACKET_DISABLE, remote_supported_packet,
5093 PACKET_qXfer_libraries_svr4 },
ced63ec0 5094 { "augmented-libraries-svr4-read", PACKET_DISABLE,
4082afcc 5095 remote_supported_packet, PACKET_augmented_libraries_svr4_read_feature },
fd79ecee 5096 { "qXfer:memory-map:read", PACKET_DISABLE, remote_supported_packet,
89be2091 5097 PACKET_qXfer_memory_map },
4de6483e
UW
5098 { "qXfer:spu:read", PACKET_DISABLE, remote_supported_packet,
5099 PACKET_qXfer_spu_read },
5100 { "qXfer:spu:write", PACKET_DISABLE, remote_supported_packet,
5101 PACKET_qXfer_spu_write },
07e059b5
VP
5102 { "qXfer:osdata:read", PACKET_DISABLE, remote_supported_packet,
5103 PACKET_qXfer_osdata },
dc146f7c
VP
5104 { "qXfer:threads:read", PACKET_DISABLE, remote_supported_packet,
5105 PACKET_qXfer_threads },
b3b9301e
PA
5106 { "qXfer:traceframe-info:read", PACKET_DISABLE, remote_supported_packet,
5107 PACKET_qXfer_traceframe_info },
89be2091
DJ
5108 { "QPassSignals", PACKET_DISABLE, remote_supported_packet,
5109 PACKET_QPassSignals },
82075af2
JS
5110 { "QCatchSyscalls", PACKET_DISABLE, remote_supported_packet,
5111 PACKET_QCatchSyscalls },
9b224c5e
PA
5112 { "QProgramSignals", PACKET_DISABLE, remote_supported_packet,
5113 PACKET_QProgramSignals },
bc3b087d
SDJ
5114 { "QSetWorkingDir", PACKET_DISABLE, remote_supported_packet,
5115 PACKET_QSetWorkingDir },
aefd8b33
SDJ
5116 { "QStartupWithShell", PACKET_DISABLE, remote_supported_packet,
5117 PACKET_QStartupWithShell },
0a2dde4a
SDJ
5118 { "QEnvironmentHexEncoded", PACKET_DISABLE, remote_supported_packet,
5119 PACKET_QEnvironmentHexEncoded },
5120 { "QEnvironmentReset", PACKET_DISABLE, remote_supported_packet,
5121 PACKET_QEnvironmentReset },
5122 { "QEnvironmentUnset", PACKET_DISABLE, remote_supported_packet,
5123 PACKET_QEnvironmentUnset },
a6f3e723
SL
5124 { "QStartNoAckMode", PACKET_DISABLE, remote_supported_packet,
5125 PACKET_QStartNoAckMode },
4082afcc
PA
5126 { "multiprocess", PACKET_DISABLE, remote_supported_packet,
5127 PACKET_multiprocess_feature },
5128 { "QNonStop", PACKET_DISABLE, remote_supported_packet, PACKET_QNonStop },
4aa995e1
PA
5129 { "qXfer:siginfo:read", PACKET_DISABLE, remote_supported_packet,
5130 PACKET_qXfer_siginfo_read },
5131 { "qXfer:siginfo:write", PACKET_DISABLE, remote_supported_packet,
5132 PACKET_qXfer_siginfo_write },
4082afcc 5133 { "ConditionalTracepoints", PACKET_DISABLE, remote_supported_packet,
782b2b07 5134 PACKET_ConditionalTracepoints },
4082afcc 5135 { "ConditionalBreakpoints", PACKET_DISABLE, remote_supported_packet,
3788aec7 5136 PACKET_ConditionalBreakpoints },
4082afcc 5137 { "BreakpointCommands", PACKET_DISABLE, remote_supported_packet,
d3ce09f5 5138 PACKET_BreakpointCommands },
4082afcc 5139 { "FastTracepoints", PACKET_DISABLE, remote_supported_packet,
7a697b8d 5140 PACKET_FastTracepoints },
4082afcc 5141 { "StaticTracepoints", PACKET_DISABLE, remote_supported_packet,
0fb4aa4b 5142 PACKET_StaticTracepoints },
4082afcc 5143 {"InstallInTrace", PACKET_DISABLE, remote_supported_packet,
1e4d1764 5144 PACKET_InstallInTrace},
4082afcc
PA
5145 { "DisconnectedTracing", PACKET_DISABLE, remote_supported_packet,
5146 PACKET_DisconnectedTracing_feature },
40ab02ce
MS
5147 { "ReverseContinue", PACKET_DISABLE, remote_supported_packet,
5148 PACKET_bc },
5149 { "ReverseStep", PACKET_DISABLE, remote_supported_packet,
5150 PACKET_bs },
409873ef
SS
5151 { "TracepointSource", PACKET_DISABLE, remote_supported_packet,
5152 PACKET_TracepointSource },
d914c394
SS
5153 { "QAllow", PACKET_DISABLE, remote_supported_packet,
5154 PACKET_QAllow },
4082afcc
PA
5155 { "EnableDisableTracepoints", PACKET_DISABLE, remote_supported_packet,
5156 PACKET_EnableDisableTracepoints_feature },
78d85199
YQ
5157 { "qXfer:fdpic:read", PACKET_DISABLE, remote_supported_packet,
5158 PACKET_qXfer_fdpic },
169081d0
TG
5159 { "qXfer:uib:read", PACKET_DISABLE, remote_supported_packet,
5160 PACKET_qXfer_uib },
03583c20
UW
5161 { "QDisableRandomization", PACKET_DISABLE, remote_supported_packet,
5162 PACKET_QDisableRandomization },
d1feda86 5163 { "QAgent", PACKET_DISABLE, remote_supported_packet, PACKET_QAgent},
f6f899bf
HAQ
5164 { "QTBuffer:size", PACKET_DISABLE,
5165 remote_supported_packet, PACKET_QTBuffer_size},
4082afcc 5166 { "tracenz", PACKET_DISABLE, remote_supported_packet, PACKET_tracenz_feature },
9accd112
MM
5167 { "Qbtrace:off", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_off },
5168 { "Qbtrace:bts", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_bts },
b20a6524 5169 { "Qbtrace:pt", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_pt },
9accd112 5170 { "qXfer:btrace:read", PACKET_DISABLE, remote_supported_packet,
f4abbc16
MM
5171 PACKET_qXfer_btrace },
5172 { "qXfer:btrace-conf:read", PACKET_DISABLE, remote_supported_packet,
d33501a5
MM
5173 PACKET_qXfer_btrace_conf },
5174 { "Qbtrace-conf:bts:size", PACKET_DISABLE, remote_supported_packet,
f7e6eed5
PA
5175 PACKET_Qbtrace_conf_bts_size },
5176 { "swbreak", PACKET_DISABLE, remote_supported_packet, PACKET_swbreak_feature },
0a93529c 5177 { "hwbreak", PACKET_DISABLE, remote_supported_packet, PACKET_hwbreak_feature },
89245bc0
DB
5178 { "fork-events", PACKET_DISABLE, remote_supported_packet,
5179 PACKET_fork_event_feature },
5180 { "vfork-events", PACKET_DISABLE, remote_supported_packet,
5181 PACKET_vfork_event_feature },
94585166
DB
5182 { "exec-events", PACKET_DISABLE, remote_supported_packet,
5183 PACKET_exec_event_feature },
b20a6524 5184 { "Qbtrace-conf:pt:size", PACKET_DISABLE, remote_supported_packet,
750ce8d1 5185 PACKET_Qbtrace_conf_pt_size },
65706a29
PA
5186 { "vContSupported", PACKET_DISABLE, remote_supported_packet, PACKET_vContSupported },
5187 { "QThreadEvents", PACKET_DISABLE, remote_supported_packet, PACKET_QThreadEvents },
f2faf941 5188 { "no-resumed", PACKET_DISABLE, remote_supported_packet, PACKET_no_resumed },
be2a5f71
DJ
5189};
5190
c8d5aac9
L
5191static char *remote_support_xml;
5192
5193/* Register string appended to "xmlRegisters=" in qSupported query. */
5194
5195void
6e39997a 5196register_remote_support_xml (const char *xml)
c8d5aac9
L
5197{
5198#if defined(HAVE_LIBEXPAT)
5199 if (remote_support_xml == NULL)
c4f7c687 5200 remote_support_xml = concat ("xmlRegisters=", xml, (char *) NULL);
c8d5aac9
L
5201 else
5202 {
5203 char *copy = xstrdup (remote_support_xml + 13);
5204 char *p = strtok (copy, ",");
5205
5206 do
5207 {
5208 if (strcmp (p, xml) == 0)
5209 {
5210 /* already there */
5211 xfree (copy);
5212 return;
5213 }
5214 }
5215 while ((p = strtok (NULL, ",")) != NULL);
5216 xfree (copy);
5217
94b0dee1
PA
5218 remote_support_xml = reconcat (remote_support_xml,
5219 remote_support_xml, ",", xml,
5220 (char *) NULL);
c8d5aac9
L
5221 }
5222#endif
5223}
5224
69b6ecb0
TT
5225static void
5226remote_query_supported_append (std::string *msg, const char *append)
c8d5aac9 5227{
69b6ecb0
TT
5228 if (!msg->empty ())
5229 msg->append (";");
5230 msg->append (append);
c8d5aac9
L
5231}
5232
6b8edb51
PA
5233void
5234remote_target::remote_query_supported ()
be2a5f71
DJ
5235{
5236 struct remote_state *rs = get_remote_state ();
5237 char *next;
5238 int i;
5239 unsigned char seen [ARRAY_SIZE (remote_protocol_features)];
5240
5241 /* The packet support flags are handled differently for this packet
5242 than for most others. We treat an error, a disabled packet, and
5243 an empty response identically: any features which must be reported
5244 to be used will be automatically disabled. An empty buffer
5245 accomplishes this, since that is also the representation for a list
5246 containing no features. */
5247
5248 rs->buf[0] = 0;
4082afcc 5249 if (packet_support (PACKET_qSupported) != PACKET_DISABLE)
be2a5f71 5250 {
69b6ecb0 5251 std::string q;
c8d5aac9 5252
73b8c1fd 5253 if (packet_set_cmd_state (PACKET_multiprocess_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5254 remote_query_supported_append (&q, "multiprocess+");
c8d5aac9 5255
f7e6eed5 5256 if (packet_set_cmd_state (PACKET_swbreak_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5257 remote_query_supported_append (&q, "swbreak+");
f7e6eed5 5258 if (packet_set_cmd_state (PACKET_hwbreak_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5259 remote_query_supported_append (&q, "hwbreak+");
f7e6eed5 5260
69b6ecb0 5261 remote_query_supported_append (&q, "qRelocInsn+");
dde08ee1 5262
8020350c
DB
5263 if (packet_set_cmd_state (PACKET_fork_event_feature)
5264 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5265 remote_query_supported_append (&q, "fork-events+");
8020350c
DB
5266 if (packet_set_cmd_state (PACKET_vfork_event_feature)
5267 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5268 remote_query_supported_append (&q, "vfork-events+");
8020350c
DB
5269 if (packet_set_cmd_state (PACKET_exec_event_feature)
5270 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5271 remote_query_supported_append (&q, "exec-events+");
89245bc0 5272
750ce8d1 5273 if (packet_set_cmd_state (PACKET_vContSupported) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5274 remote_query_supported_append (&q, "vContSupported+");
750ce8d1 5275
65706a29 5276 if (packet_set_cmd_state (PACKET_QThreadEvents) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5277 remote_query_supported_append (&q, "QThreadEvents+");
65706a29 5278
f2faf941 5279 if (packet_set_cmd_state (PACKET_no_resumed) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5280 remote_query_supported_append (&q, "no-resumed+");
f2faf941 5281
b35d5edb
PA
5282 /* Keep this one last to work around a gdbserver <= 7.10 bug in
5283 the qSupported:xmlRegisters=i386 handling. */
7cc244de
PA
5284 if (remote_support_xml != NULL
5285 && packet_support (PACKET_qXfer_features) != PACKET_DISABLE)
69b6ecb0 5286 remote_query_supported_append (&q, remote_support_xml);
82f73884 5287
69b6ecb0
TT
5288 q = "qSupported:" + q;
5289 putpkt (q.c_str ());
94b0dee1 5290
8d64371b 5291 getpkt (&rs->buf, 0);
be2a5f71
DJ
5292
5293 /* If an error occured, warn, but do not return - just reset the
5294 buffer to empty and go on to disable features. */
5295 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported])
5296 == PACKET_ERROR)
5297 {
8d64371b 5298 warning (_("Remote failure reply: %s"), rs->buf.data ());
be2a5f71
DJ
5299 rs->buf[0] = 0;
5300 }
5301 }
5302
5303 memset (seen, 0, sizeof (seen));
5304
8d64371b 5305 next = rs->buf.data ();
be2a5f71
DJ
5306 while (*next)
5307 {
5308 enum packet_support is_supported;
5309 char *p, *end, *name_end, *value;
5310
5311 /* First separate out this item from the rest of the packet. If
5312 there's another item after this, we overwrite the separator
5313 (terminated strings are much easier to work with). */
5314 p = next;
5315 end = strchr (p, ';');
5316 if (end == NULL)
5317 {
5318 end = p + strlen (p);
5319 next = end;
5320 }
5321 else
5322 {
89be2091
DJ
5323 *end = '\0';
5324 next = end + 1;
5325
be2a5f71
DJ
5326 if (end == p)
5327 {
5328 warning (_("empty item in \"qSupported\" response"));
5329 continue;
5330 }
be2a5f71
DJ
5331 }
5332
5333 name_end = strchr (p, '=');
5334 if (name_end)
5335 {
5336 /* This is a name=value entry. */
5337 is_supported = PACKET_ENABLE;
5338 value = name_end + 1;
5339 *name_end = '\0';
5340 }
5341 else
5342 {
5343 value = NULL;
5344 switch (end[-1])
5345 {
5346 case '+':
5347 is_supported = PACKET_ENABLE;
5348 break;
5349
5350 case '-':
5351 is_supported = PACKET_DISABLE;
5352 break;
5353
5354 case '?':
5355 is_supported = PACKET_SUPPORT_UNKNOWN;
5356 break;
5357
5358 default:
3e43a32a
MS
5359 warning (_("unrecognized item \"%s\" "
5360 "in \"qSupported\" response"), p);
be2a5f71
DJ
5361 continue;
5362 }
5363 end[-1] = '\0';
5364 }
5365
5366 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
5367 if (strcmp (remote_protocol_features[i].name, p) == 0)
5368 {
5369 const struct protocol_feature *feature;
5370
5371 seen[i] = 1;
5372 feature = &remote_protocol_features[i];
6b8edb51 5373 feature->func (this, feature, is_supported, value);
be2a5f71
DJ
5374 break;
5375 }
5376 }
5377
5378 /* If we increased the packet size, make sure to increase the global
5379 buffer size also. We delay this until after parsing the entire
5380 qSupported packet, because this is the same buffer we were
5381 parsing. */
8d64371b
TT
5382 if (rs->buf.size () < rs->explicit_packet_size)
5383 rs->buf.resize (rs->explicit_packet_size);
be2a5f71
DJ
5384
5385 /* Handle the defaults for unmentioned features. */
5386 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
5387 if (!seen[i])
5388 {
5389 const struct protocol_feature *feature;
5390
5391 feature = &remote_protocol_features[i];
6b8edb51 5392 feature->func (this, feature, feature->default_support, NULL);
be2a5f71
DJ
5393 }
5394}
5395
048094ac
PA
5396/* Serial QUIT handler for the remote serial descriptor.
5397
5398 Defers handling a Ctrl-C until we're done with the current
5399 command/response packet sequence, unless:
5400
5401 - We're setting up the connection. Don't send a remote interrupt
5402 request, as we're not fully synced yet. Quit immediately
5403 instead.
5404
5405 - The target has been resumed in the foreground
223ffa71 5406 (target_terminal::is_ours is false) with a synchronous resume
048094ac
PA
5407 packet, and we're blocked waiting for the stop reply, thus a
5408 Ctrl-C should be immediately sent to the target.
5409
5410 - We get a second Ctrl-C while still within the same serial read or
5411 write. In that case the serial is seemingly wedged --- offer to
5412 quit/disconnect.
5413
5414 - We see a second Ctrl-C without target response, after having
5415 previously interrupted the target. In that case the target/stub
5416 is probably wedged --- offer to quit/disconnect.
5417*/
5418
6b8edb51
PA
5419void
5420remote_target::remote_serial_quit_handler ()
048094ac
PA
5421{
5422 struct remote_state *rs = get_remote_state ();
5423
5424 if (check_quit_flag ())
5425 {
5426 /* If we're starting up, we're not fully synced yet. Quit
5427 immediately. */
5428 if (rs->starting_up)
5429 quit ();
5430 else if (rs->got_ctrlc_during_io)
5431 {
5432 if (query (_("The target is not responding to GDB commands.\n"
5433 "Stop debugging it? ")))
5434 remote_unpush_and_throw ();
5435 }
5436 /* If ^C has already been sent once, offer to disconnect. */
223ffa71 5437 else if (!target_terminal::is_ours () && rs->ctrlc_pending_p)
048094ac
PA
5438 interrupt_query ();
5439 /* All-stop protocol, and blocked waiting for stop reply. Send
5440 an interrupt request. */
223ffa71 5441 else if (!target_terminal::is_ours () && rs->waiting_for_stop_reply)
e671cd59 5442 target_interrupt ();
048094ac
PA
5443 else
5444 rs->got_ctrlc_during_io = 1;
5445 }
5446}
5447
6b8edb51
PA
5448/* The remote_target that is current while the quit handler is
5449 overridden with remote_serial_quit_handler. */
5450static remote_target *curr_quit_handler_target;
5451
5452static void
5453remote_serial_quit_handler ()
5454{
5455 curr_quit_handler_target->remote_serial_quit_handler ();
5456}
5457
78a095c3
JK
5458/* Remove any of the remote.c targets from target stack. Upper targets depend
5459 on it so remove them first. */
5460
5461static void
5462remote_unpush_target (void)
5463{
915ef8b1 5464 pop_all_targets_at_and_above (process_stratum);
78a095c3 5465}
be2a5f71 5466
048094ac
PA
5467static void
5468remote_unpush_and_throw (void)
5469{
5470 remote_unpush_target ();
5471 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
5472}
5473
f6ac5f3d
PA
5474void
5475remote_target::open_1 (const char *name, int from_tty, int extended_p)
c906108c 5476{
6b8edb51 5477 remote_target *curr_remote = get_current_remote_target ();
a6f3e723 5478
c906108c 5479 if (name == 0)
8a3fe4f8 5480 error (_("To open a remote debug connection, you need to specify what\n"
22e04375 5481 "serial device is attached to the remote system\n"
8a3fe4f8 5482 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
c906108c 5483
2d717e4f 5484 /* If we're connected to a running target, target_preopen will kill it.
78a095c3
JK
5485 Ask this question first, before target_preopen has a chance to kill
5486 anything. */
6b8edb51 5487 if (curr_remote != NULL && !have_inferiors ())
2d717e4f 5488 {
78a095c3
JK
5489 if (from_tty
5490 && !query (_("Already connected to a remote target. Disconnect? ")))
2d717e4f
DJ
5491 error (_("Still connected."));
5492 }
5493
78a095c3 5494 /* Here the possibly existing remote target gets unpushed. */
c906108c
SS
5495 target_preopen (from_tty);
5496
ad9a8f3f 5497 remote_fileio_reset ();
1dd41f16
NS
5498 reopen_exec_file ();
5499 reread_symbols ();
5500
6b8edb51
PA
5501 remote_target *remote
5502 = (extended_p ? new extended_remote_target () : new remote_target ());
5503 target_ops_up target_holder (remote);
5504
5505 remote_state *rs = remote->get_remote_state ();
5506
5507 /* See FIXME above. */
5508 if (!target_async_permitted)
5509 rs->wait_forever_enabled_p = 1;
5510
5d93a237
TT
5511 rs->remote_desc = remote_serial_open (name);
5512 if (!rs->remote_desc)
c906108c
SS
5513 perror_with_name (name);
5514
5515 if (baud_rate != -1)
5516 {
5d93a237 5517 if (serial_setbaudrate (rs->remote_desc, baud_rate))
c906108c 5518 {
9b74d5d3
KB
5519 /* The requested speed could not be set. Error out to
5520 top level after closing remote_desc. Take care to
5521 set remote_desc to NULL to avoid closing remote_desc
5522 more than once. */
5d93a237
TT
5523 serial_close (rs->remote_desc);
5524 rs->remote_desc = NULL;
c906108c
SS
5525 perror_with_name (name);
5526 }
5527 }
5528
236af5e3 5529 serial_setparity (rs->remote_desc, serial_parity);
5d93a237 5530 serial_raw (rs->remote_desc);
c906108c
SS
5531
5532 /* If there is something sitting in the buffer we might take it as a
5533 response to a command, which would be bad. */
5d93a237 5534 serial_flush_input (rs->remote_desc);
c906108c
SS
5535
5536 if (from_tty)
5537 {
5538 puts_filtered ("Remote debugging using ");
5539 puts_filtered (name);
5540 puts_filtered ("\n");
5541 }
d9f719f1 5542
6b8edb51 5543 /* Switch to using the remote target now. */
dea57a62 5544 push_target (std::move (target_holder));
c906108c 5545
74531fed 5546 /* Register extra event sources in the event loop. */
6b8edb51 5547 rs->remote_async_inferior_event_token
74531fed 5548 = create_async_event_handler (remote_async_inferior_event_handler,
6b8edb51
PA
5549 remote);
5550 rs->notif_state = remote_notif_state_allocate (remote);
74531fed 5551
be2a5f71
DJ
5552 /* Reset the target state; these things will be queried either by
5553 remote_query_supported or as they are needed. */
ca4f7f8b 5554 reset_all_packet_configs_support ();
74531fed 5555 rs->cached_wait_status = 0;
be2a5f71 5556 rs->explicit_packet_size = 0;
a6f3e723 5557 rs->noack_mode = 0;
82f73884 5558 rs->extended = extended_p;
e24a49d8 5559 rs->waiting_for_stop_reply = 0;
3a29589a 5560 rs->ctrlc_pending_p = 0;
048094ac 5561 rs->got_ctrlc_during_io = 0;
802188a7 5562
47f8a51d
TT
5563 rs->general_thread = not_sent_ptid;
5564 rs->continue_thread = not_sent_ptid;
262e1174 5565 rs->remote_traceframe_number = -1;
c906108c 5566
3a00c802
PA
5567 rs->last_resume_exec_dir = EXEC_FORWARD;
5568
9d1f7ab2 5569 /* Probe for ability to use "ThreadInfo" query, as required. */
b80fafe3
TT
5570 rs->use_threadinfo_query = 1;
5571 rs->use_threadextra_query = 1;
9d1f7ab2 5572
dd194f6b 5573 rs->readahead_cache.invalidate ();
80152258 5574
c6ebd6cf 5575 if (target_async_permitted)
92d1e331 5576 {
92d1e331
DJ
5577 /* FIXME: cagney/1999-09-23: During the initial connection it is
5578 assumed that the target is already ready and able to respond to
0df8b418 5579 requests. Unfortunately remote_start_remote() eventually calls
92d1e331 5580 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
0df8b418 5581 around this. Eventually a mechanism that allows
92d1e331 5582 wait_for_inferior() to expect/get timeouts will be
23860348 5583 implemented. */
6b8edb51 5584 rs->wait_forever_enabled_p = 0;
92d1e331
DJ
5585 }
5586
23860348 5587 /* First delete any symbols previously loaded from shared libraries. */
f78f6cf1 5588 no_shared_libraries (NULL, 0);
f78f6cf1 5589
36918e70 5590 /* Start the remote connection. If error() or QUIT, discard this
165b8e33
AC
5591 target (we'd otherwise be in an inconsistent state) and then
5592 propogate the error on up the exception chain. This ensures that
5593 the caller doesn't stumble along blindly assuming that the
5594 function succeeded. The CLI doesn't have this problem but other
5595 UI's, such as MI do.
36918e70
AC
5596
5597 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
5598 this function should return an error indication letting the
ce2826aa 5599 caller restore the previous state. Unfortunately the command
36918e70
AC
5600 ``target remote'' is directly wired to this function making that
5601 impossible. On a positive note, the CLI side of this problem has
5602 been fixed - the function set_cmd_context() makes it possible for
5603 all the ``target ....'' commands to share a common callback
5604 function. See cli-dump.c. */
109c3e39 5605 {
2d717e4f 5606
a70b8144 5607 try
04bd08de 5608 {
6b8edb51 5609 remote->start_remote (from_tty, extended_p);
04bd08de 5610 }
230d2906 5611 catch (const gdb_exception &ex)
109c3e39 5612 {
c8d104ad
PA
5613 /* Pop the partially set up target - unless something else did
5614 already before throwing the exception. */
6b8edb51 5615 if (ex.error != TARGET_CLOSE_ERROR)
78a095c3 5616 remote_unpush_target ();
eedc3f4f 5617 throw;
109c3e39
AC
5618 }
5619 }
c906108c 5620
6b8edb51 5621 remote_btrace_reset (rs);
f4abbc16 5622
c6ebd6cf 5623 if (target_async_permitted)
6b8edb51 5624 rs->wait_forever_enabled_p = 1;
43ff13b4
JM
5625}
5626
de0d863e
DB
5627/* Detach the specified process. */
5628
6b8edb51
PA
5629void
5630remote_target::remote_detach_pid (int pid)
de0d863e
DB
5631{
5632 struct remote_state *rs = get_remote_state ();
5633
4c7333b3
PA
5634 /* This should not be necessary, but the handling for D;PID in
5635 GDBserver versions prior to 8.2 incorrectly assumes that the
5636 selected process points to the same process we're detaching,
5637 leading to misbehavior (and possibly GDBserver crashing) when it
5638 does not. Since it's easy and cheap, work around it by forcing
5639 GDBserver to select GDB's current process. */
5640 set_general_process ();
5641
de0d863e 5642 if (remote_multi_process_p (rs))
8d64371b 5643 xsnprintf (rs->buf.data (), get_remote_packet_size (), "D;%x", pid);
de0d863e 5644 else
8d64371b 5645 strcpy (rs->buf.data (), "D");
de0d863e
DB
5646
5647 putpkt (rs->buf);
8d64371b 5648 getpkt (&rs->buf, 0);
de0d863e
DB
5649
5650 if (rs->buf[0] == 'O' && rs->buf[1] == 'K')
5651 ;
5652 else if (rs->buf[0] == '\0')
5653 error (_("Remote doesn't know how to detach"));
5654 else
5655 error (_("Can't detach process."));
5656}
5657
5658/* This detaches a program to which we previously attached, using
5659 inferior_ptid to identify the process. After this is done, GDB
5660 can be used to debug some other program. We better not have left
5661 any breakpoints in the target program or it'll die when it hits
5662 one. */
c906108c 5663
6b8edb51 5664void
00431a78 5665remote_target::remote_detach_1 (inferior *inf, int from_tty)
c906108c 5666{
e99b03dc 5667 int pid = inferior_ptid.pid ();
d01949b6 5668 struct remote_state *rs = get_remote_state ();
de0d863e 5669 int is_fork_parent;
c906108c 5670
2d717e4f
DJ
5671 if (!target_has_execution)
5672 error (_("No process to detach from."));
5673
0f48b757 5674 target_announce_detach (from_tty);
7cee1e54 5675
c906108c 5676 /* Tell the remote target to detach. */
de0d863e 5677 remote_detach_pid (pid);
82f73884 5678
8020350c
DB
5679 /* Exit only if this is the only active inferior. */
5680 if (from_tty && !rs->extended && number_of_live_inferiors () == 1)
7cee1e54 5681 puts_filtered (_("Ending remote debugging.\n"));
82f73884 5682
00431a78
PA
5683 struct thread_info *tp = find_thread_ptid (inferior_ptid);
5684
de0d863e
DB
5685 /* Check to see if we are detaching a fork parent. Note that if we
5686 are detaching a fork child, tp == NULL. */
5687 is_fork_parent = (tp != NULL
5688 && tp->pending_follow.kind == TARGET_WAITKIND_FORKED);
5689
5690 /* If doing detach-on-fork, we don't mourn, because that will delete
5691 breakpoints that should be available for the followed inferior. */
5692 if (!is_fork_parent)
f67c0c91 5693 {
249b5733
PA
5694 /* Save the pid as a string before mourning, since that will
5695 unpush the remote target, and we need the string after. */
f2907e49 5696 std::string infpid = target_pid_to_str (ptid_t (pid));
f67c0c91
SDJ
5697
5698 target_mourn_inferior (inferior_ptid);
5699 if (print_inferior_events)
5700 printf_unfiltered (_("[Inferior %d (%s) detached]\n"),
5701 inf->num, infpid.c_str ());
5702 }
de0d863e
DB
5703 else
5704 {
5705 inferior_ptid = null_ptid;
00431a78 5706 detach_inferior (current_inferior ());
de0d863e 5707 }
2d717e4f
DJ
5708}
5709
f6ac5f3d
PA
5710void
5711remote_target::detach (inferior *inf, int from_tty)
2d717e4f 5712{
00431a78 5713 remote_detach_1 (inf, from_tty);
2d717e4f
DJ
5714}
5715
f6ac5f3d
PA
5716void
5717extended_remote_target::detach (inferior *inf, int from_tty)
2d717e4f 5718{
00431a78 5719 remote_detach_1 (inf, from_tty);
de0d863e
DB
5720}
5721
5722/* Target follow-fork function for remote targets. On entry, and
5723 at return, the current inferior is the fork parent.
5724
5725 Note that although this is currently only used for extended-remote,
5726 it is named remote_follow_fork in anticipation of using it for the
5727 remote target as well. */
5728
f6ac5f3d
PA
5729int
5730remote_target::follow_fork (int follow_child, int detach_fork)
de0d863e
DB
5731{
5732 struct remote_state *rs = get_remote_state ();
c269dbdb 5733 enum target_waitkind kind = inferior_thread ()->pending_follow.kind;
de0d863e 5734
c269dbdb
DB
5735 if ((kind == TARGET_WAITKIND_FORKED && remote_fork_event_p (rs))
5736 || (kind == TARGET_WAITKIND_VFORKED && remote_vfork_event_p (rs)))
de0d863e
DB
5737 {
5738 /* When following the parent and detaching the child, we detach
5739 the child here. For the case of following the child and
5740 detaching the parent, the detach is done in the target-
5741 independent follow fork code in infrun.c. We can't use
5742 target_detach when detaching an unfollowed child because
5743 the client side doesn't know anything about the child. */
5744 if (detach_fork && !follow_child)
5745 {
5746 /* Detach the fork child. */
5747 ptid_t child_ptid;
5748 pid_t child_pid;
5749
5750 child_ptid = inferior_thread ()->pending_follow.value.related_pid;
e99b03dc 5751 child_pid = child_ptid.pid ();
de0d863e
DB
5752
5753 remote_detach_pid (child_pid);
de0d863e
DB
5754 }
5755 }
5756 return 0;
c906108c
SS
5757}
5758
94585166
DB
5759/* Target follow-exec function for remote targets. Save EXECD_PATHNAME
5760 in the program space of the new inferior. On entry and at return the
5761 current inferior is the exec'ing inferior. INF is the new exec'd
5762 inferior, which may be the same as the exec'ing inferior unless
5763 follow-exec-mode is "new". */
5764
f6ac5f3d
PA
5765void
5766remote_target::follow_exec (struct inferior *inf, char *execd_pathname)
94585166
DB
5767{
5768 /* We know that this is a target file name, so if it has the "target:"
5769 prefix we strip it off before saving it in the program space. */
5770 if (is_target_filename (execd_pathname))
5771 execd_pathname += strlen (TARGET_SYSROOT_PREFIX);
5772
5773 set_pspace_remote_exec_file (inf->pspace, execd_pathname);
5774}
5775
6ad8ae5c
DJ
5776/* Same as remote_detach, but don't send the "D" packet; just disconnect. */
5777
f6ac5f3d
PA
5778void
5779remote_target::disconnect (const char *args, int from_tty)
43ff13b4 5780{
43ff13b4 5781 if (args)
2d717e4f 5782 error (_("Argument given to \"disconnect\" when remotely debugging."));
43ff13b4 5783
8020350c
DB
5784 /* Make sure we unpush even the extended remote targets. Calling
5785 target_mourn_inferior won't unpush, and remote_mourn won't
5786 unpush if there is more than one inferior left. */
f6ac5f3d 5787 unpush_target (this);
8020350c 5788 generic_mourn_inferior ();
2d717e4f 5789
43ff13b4
JM
5790 if (from_tty)
5791 puts_filtered ("Ending remote debugging.\n");
5792}
5793
2d717e4f
DJ
5794/* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
5795 be chatty about it. */
5796
f6ac5f3d
PA
5797void
5798extended_remote_target::attach (const char *args, int from_tty)
2d717e4f
DJ
5799{
5800 struct remote_state *rs = get_remote_state ();
be86555c 5801 int pid;
96ef3384 5802 char *wait_status = NULL;
2d717e4f 5803
74164c56 5804 pid = parse_pid_to_attach (args);
2d717e4f 5805
74164c56
JK
5806 /* Remote PID can be freely equal to getpid, do not check it here the same
5807 way as in other targets. */
2d717e4f 5808
4082afcc 5809 if (packet_support (PACKET_vAttach) == PACKET_DISABLE)
2d717e4f
DJ
5810 error (_("This target does not support attaching to a process"));
5811
7cee1e54
PA
5812 if (from_tty)
5813 {
5814 char *exec_file = get_exec_file (0);
5815
5816 if (exec_file)
5817 printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file,
a068643d 5818 target_pid_to_str (ptid_t (pid)).c_str ());
7cee1e54
PA
5819 else
5820 printf_unfiltered (_("Attaching to %s\n"),
a068643d 5821 target_pid_to_str (ptid_t (pid)).c_str ());
7cee1e54
PA
5822 }
5823
8d64371b 5824 xsnprintf (rs->buf.data (), get_remote_packet_size (), "vAttach;%x", pid);
2d717e4f 5825 putpkt (rs->buf);
8d64371b 5826 getpkt (&rs->buf, 0);
2d717e4f 5827
4082afcc
PA
5828 switch (packet_ok (rs->buf,
5829 &remote_protocol_packets[PACKET_vAttach]))
2d717e4f 5830 {
4082afcc 5831 case PACKET_OK:
6efcd9a8 5832 if (!target_is_non_stop_p ())
74531fed
PA
5833 {
5834 /* Save the reply for later. */
8d64371b
TT
5835 wait_status = (char *) alloca (strlen (rs->buf.data ()) + 1);
5836 strcpy (wait_status, rs->buf.data ());
74531fed 5837 }
8d64371b 5838 else if (strcmp (rs->buf.data (), "OK") != 0)
74531fed 5839 error (_("Attaching to %s failed with: %s"),
a068643d 5840 target_pid_to_str (ptid_t (pid)).c_str (),
8d64371b 5841 rs->buf.data ());
4082afcc
PA
5842 break;
5843 case PACKET_UNKNOWN:
5844 error (_("This target does not support attaching to a process"));
5845 default:
5846 error (_("Attaching to %s failed"),
a068643d 5847 target_pid_to_str (ptid_t (pid)).c_str ());
2d717e4f 5848 }
2d717e4f 5849
9ab8741a 5850 set_current_inferior (remote_add_inferior (false, pid, 1, 0));
bad34192 5851
f2907e49 5852 inferior_ptid = ptid_t (pid);
79d7f229 5853
6efcd9a8 5854 if (target_is_non_stop_p ())
bad34192
PA
5855 {
5856 struct thread_info *thread;
79d7f229 5857
bad34192 5858 /* Get list of threads. */
f6ac5f3d 5859 update_thread_list ();
82f73884 5860
00431a78 5861 thread = first_thread_of_inferior (current_inferior ());
bad34192
PA
5862 if (thread)
5863 inferior_ptid = thread->ptid;
5864 else
f2907e49 5865 inferior_ptid = ptid_t (pid);
bad34192
PA
5866
5867 /* Invalidate our notion of the remote current thread. */
47f8a51d 5868 record_currthread (rs, minus_one_ptid);
bad34192 5869 }
74531fed 5870 else
bad34192
PA
5871 {
5872 /* Now, if we have thread information, update inferior_ptid. */
5873 inferior_ptid = remote_current_thread (inferior_ptid);
5874
5875 /* Add the main thread to the thread list. */
00aecdcf
PA
5876 thread_info *thr = add_thread_silent (inferior_ptid);
5877 /* Don't consider the thread stopped until we've processed the
5878 saved stop reply. */
5879 set_executing (thr->ptid, true);
bad34192 5880 }
c0a2216e 5881
96ef3384
UW
5882 /* Next, if the target can specify a description, read it. We do
5883 this before anything involving memory or registers. */
5884 target_find_description ();
5885
6efcd9a8 5886 if (!target_is_non_stop_p ())
74531fed
PA
5887 {
5888 /* Use the previously fetched status. */
5889 gdb_assert (wait_status != NULL);
5890
5891 if (target_can_async_p ())
5892 {
722247f1 5893 struct notif_event *reply
6b8edb51 5894 = remote_notif_parse (this, &notif_client_stop, wait_status);
74531fed 5895
722247f1 5896 push_stop_reply ((struct stop_reply *) reply);
74531fed 5897
6a3753b3 5898 target_async (1);
74531fed
PA
5899 }
5900 else
5901 {
5902 gdb_assert (wait_status != NULL);
8d64371b 5903 strcpy (rs->buf.data (), wait_status);
74531fed
PA
5904 rs->cached_wait_status = 1;
5905 }
5906 }
5907 else
5908 gdb_assert (wait_status == NULL);
2d717e4f
DJ
5909}
5910
b9c1d481
AS
5911/* Implementation of the to_post_attach method. */
5912
f6ac5f3d
PA
5913void
5914extended_remote_target::post_attach (int pid)
b9c1d481 5915{
6efcd9a8
PA
5916 /* Get text, data & bss offsets. */
5917 get_offsets ();
5918
b9c1d481
AS
5919 /* In certain cases GDB might not have had the chance to start
5920 symbol lookup up until now. This could happen if the debugged
5921 binary is not using shared libraries, the vsyscall page is not
5922 present (on Linux) and the binary itself hadn't changed since the
5923 debugging process was started. */
5924 if (symfile_objfile != NULL)
5925 remote_check_symbols();
5926}
5927
c906108c 5928\f
506fb367
DJ
5929/* Check for the availability of vCont. This function should also check
5930 the response. */
c906108c 5931
6b8edb51
PA
5932void
5933remote_target::remote_vcont_probe ()
c906108c 5934{
6b8edb51 5935 remote_state *rs = get_remote_state ();
2e9f7625 5936 char *buf;
6d820c5c 5937
8d64371b 5938 strcpy (rs->buf.data (), "vCont?");
2e9f7625 5939 putpkt (rs->buf);
8d64371b
TT
5940 getpkt (&rs->buf, 0);
5941 buf = rs->buf.data ();
c906108c 5942
506fb367 5943 /* Make sure that the features we assume are supported. */
61012eef 5944 if (startswith (buf, "vCont"))
506fb367
DJ
5945 {
5946 char *p = &buf[5];
750ce8d1 5947 int support_c, support_C;
506fb367 5948
750ce8d1
YQ
5949 rs->supports_vCont.s = 0;
5950 rs->supports_vCont.S = 0;
506fb367
DJ
5951 support_c = 0;
5952 support_C = 0;
d458bd84 5953 rs->supports_vCont.t = 0;
c1e36e3e 5954 rs->supports_vCont.r = 0;
506fb367
DJ
5955 while (p && *p == ';')
5956 {
5957 p++;
5958 if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 5959 rs->supports_vCont.s = 1;
506fb367 5960 else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 5961 rs->supports_vCont.S = 1;
506fb367
DJ
5962 else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
5963 support_c = 1;
5964 else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
5965 support_C = 1;
74531fed 5966 else if (*p == 't' && (*(p + 1) == ';' || *(p + 1) == 0))
d458bd84 5967 rs->supports_vCont.t = 1;
c1e36e3e
PA
5968 else if (*p == 'r' && (*(p + 1) == ';' || *(p + 1) == 0))
5969 rs->supports_vCont.r = 1;
506fb367
DJ
5970
5971 p = strchr (p, ';');
5972 }
c906108c 5973
750ce8d1
YQ
5974 /* If c, and C are not all supported, we can't use vCont. Clearing
5975 BUF will make packet_ok disable the packet. */
5976 if (!support_c || !support_C)
506fb367
DJ
5977 buf[0] = 0;
5978 }
c906108c 5979
8d64371b 5980 packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCont]);
506fb367 5981}
c906108c 5982
0d8f58ca
PA
5983/* Helper function for building "vCont" resumptions. Write a
5984 resumption to P. ENDP points to one-passed-the-end of the buffer
5985 we're allowed to write to. Returns BUF+CHARACTERS_WRITTEN. The
5986 thread to be resumed is PTID; STEP and SIGGNAL indicate whether the
5987 resumed thread should be single-stepped and/or signalled. If PTID
5988 equals minus_one_ptid, then all threads are resumed; if PTID
5989 represents a process, then all threads of the process are resumed;
5990 the thread to be stepped and/or signalled is given in the global
5991 INFERIOR_PTID. */
5992
6b8edb51
PA
5993char *
5994remote_target::append_resumption (char *p, char *endp,
5995 ptid_t ptid, int step, gdb_signal siggnal)
0d8f58ca
PA
5996{
5997 struct remote_state *rs = get_remote_state ();
5998
a493e3e2 5999 if (step && siggnal != GDB_SIGNAL_0)
0d8f58ca 6000 p += xsnprintf (p, endp - p, ";S%02x", siggnal);
c1e36e3e
PA
6001 else if (step
6002 /* GDB is willing to range step. */
6003 && use_range_stepping
6004 /* Target supports range stepping. */
6005 && rs->supports_vCont.r
6006 /* We don't currently support range stepping multiple
6007 threads with a wildcard (though the protocol allows it,
6008 so stubs shouldn't make an active effort to forbid
6009 it). */
0e998d96 6010 && !(remote_multi_process_p (rs) && ptid.is_pid ()))
c1e36e3e
PA
6011 {
6012 struct thread_info *tp;
6013
d7e15655 6014 if (ptid == minus_one_ptid)
c1e36e3e
PA
6015 {
6016 /* If we don't know about the target thread's tid, then
6017 we're resuming magic_null_ptid (see caller). */
6018 tp = find_thread_ptid (magic_null_ptid);
6019 }
6020 else
6021 tp = find_thread_ptid (ptid);
6022 gdb_assert (tp != NULL);
6023
6024 if (tp->control.may_range_step)
6025 {
6026 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
6027
6028 p += xsnprintf (p, endp - p, ";r%s,%s",
6029 phex_nz (tp->control.step_range_start,
6030 addr_size),
6031 phex_nz (tp->control.step_range_end,
6032 addr_size));
6033 }
6034 else
6035 p += xsnprintf (p, endp - p, ";s");
6036 }
0d8f58ca
PA
6037 else if (step)
6038 p += xsnprintf (p, endp - p, ";s");
a493e3e2 6039 else if (siggnal != GDB_SIGNAL_0)
0d8f58ca
PA
6040 p += xsnprintf (p, endp - p, ";C%02x", siggnal);
6041 else
6042 p += xsnprintf (p, endp - p, ";c");
6043
0e998d96 6044 if (remote_multi_process_p (rs) && ptid.is_pid ())
0d8f58ca
PA
6045 {
6046 ptid_t nptid;
6047
6048 /* All (-1) threads of process. */
e99b03dc 6049 nptid = ptid_t (ptid.pid (), -1, 0);
0d8f58ca
PA
6050
6051 p += xsnprintf (p, endp - p, ":");
6052 p = write_ptid (p, endp, nptid);
6053 }
d7e15655 6054 else if (ptid != minus_one_ptid)
0d8f58ca
PA
6055 {
6056 p += xsnprintf (p, endp - p, ":");
6057 p = write_ptid (p, endp, ptid);
6058 }
6059
6060 return p;
6061}
6062
799a2abe
PA
6063/* Clear the thread's private info on resume. */
6064
6065static void
6066resume_clear_thread_private_info (struct thread_info *thread)
6067{
6068 if (thread->priv != NULL)
6069 {
7aabaf9d
SM
6070 remote_thread_info *priv = get_remote_thread_info (thread);
6071
6072 priv->stop_reason = TARGET_STOPPED_BY_NO_REASON;
6073 priv->watch_data_address = 0;
799a2abe
PA
6074 }
6075}
6076
e5ef252a
PA
6077/* Append a vCont continue-with-signal action for threads that have a
6078 non-zero stop signal. */
6079
6b8edb51
PA
6080char *
6081remote_target::append_pending_thread_resumptions (char *p, char *endp,
6082 ptid_t ptid)
e5ef252a 6083{
08036331
PA
6084 for (thread_info *thread : all_non_exited_threads (ptid))
6085 if (inferior_ptid != thread->ptid
70509625 6086 && thread->suspend.stop_signal != GDB_SIGNAL_0)
e5ef252a
PA
6087 {
6088 p = append_resumption (p, endp, thread->ptid,
6089 0, thread->suspend.stop_signal);
6090 thread->suspend.stop_signal = GDB_SIGNAL_0;
799a2abe 6091 resume_clear_thread_private_info (thread);
e5ef252a
PA
6092 }
6093
6094 return p;
6095}
6096
7b68ffbb
PA
6097/* Set the target running, using the packets that use Hc
6098 (c/s/C/S). */
6099
6b8edb51
PA
6100void
6101remote_target::remote_resume_with_hc (ptid_t ptid, int step,
6102 gdb_signal siggnal)
7b68ffbb
PA
6103{
6104 struct remote_state *rs = get_remote_state ();
7b68ffbb
PA
6105 char *buf;
6106
6107 rs->last_sent_signal = siggnal;
6108 rs->last_sent_step = step;
6109
6110 /* The c/s/C/S resume packets use Hc, so set the continue
6111 thread. */
d7e15655 6112 if (ptid == minus_one_ptid)
7b68ffbb
PA
6113 set_continue_thread (any_thread_ptid);
6114 else
6115 set_continue_thread (ptid);
6116
08036331 6117 for (thread_info *thread : all_non_exited_threads ())
7b68ffbb
PA
6118 resume_clear_thread_private_info (thread);
6119
8d64371b 6120 buf = rs->buf.data ();
6b8edb51 6121 if (::execution_direction == EXEC_REVERSE)
7b68ffbb
PA
6122 {
6123 /* We don't pass signals to the target in reverse exec mode. */
6124 if (info_verbose && siggnal != GDB_SIGNAL_0)
6125 warning (_(" - Can't pass signal %d to target in reverse: ignored."),
6126 siggnal);
6127
6128 if (step && packet_support (PACKET_bs) == PACKET_DISABLE)
6129 error (_("Remote reverse-step not supported."));
6130 if (!step && packet_support (PACKET_bc) == PACKET_DISABLE)
6131 error (_("Remote reverse-continue not supported."));
6132
6133 strcpy (buf, step ? "bs" : "bc");
6134 }
6135 else if (siggnal != GDB_SIGNAL_0)
6136 {
6137 buf[0] = step ? 'S' : 'C';
6138 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
6139 buf[2] = tohex (((int) siggnal) & 0xf);
6140 buf[3] = '\0';
6141 }
6142 else
6143 strcpy (buf, step ? "s" : "c");
6144
6145 putpkt (buf);
6146}
6147
506fb367
DJ
6148/* Resume the remote inferior by using a "vCont" packet. The thread
6149 to be resumed is PTID; STEP and SIGGNAL indicate whether the
79d7f229
PA
6150 resumed thread should be single-stepped and/or signalled. If PTID
6151 equals minus_one_ptid, then all threads are resumed; the thread to
6152 be stepped and/or signalled is given in the global INFERIOR_PTID.
6153 This function returns non-zero iff it resumes the inferior.
44eaed12 6154
7b68ffbb
PA
6155 This function issues a strict subset of all possible vCont commands
6156 at the moment. */
44eaed12 6157
6b8edb51
PA
6158int
6159remote_target::remote_resume_with_vcont (ptid_t ptid, int step,
6160 enum gdb_signal siggnal)
506fb367
DJ
6161{
6162 struct remote_state *rs = get_remote_state ();
82f73884
PA
6163 char *p;
6164 char *endp;
44eaed12 6165
7b68ffbb 6166 /* No reverse execution actions defined for vCont. */
6b8edb51 6167 if (::execution_direction == EXEC_REVERSE)
7b68ffbb
PA
6168 return 0;
6169
4082afcc 6170 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6b8edb51 6171 remote_vcont_probe ();
44eaed12 6172
4082afcc 6173 if (packet_support (PACKET_vCont) == PACKET_DISABLE)
6d820c5c 6174 return 0;
44eaed12 6175
8d64371b
TT
6176 p = rs->buf.data ();
6177 endp = p + get_remote_packet_size ();
82f73884 6178
506fb367
DJ
6179 /* If we could generate a wider range of packets, we'd have to worry
6180 about overflowing BUF. Should there be a generic
6181 "multi-part-packet" packet? */
6182
0d8f58ca
PA
6183 p += xsnprintf (p, endp - p, "vCont");
6184
d7e15655 6185 if (ptid == magic_null_ptid)
c906108c 6186 {
79d7f229
PA
6187 /* MAGIC_NULL_PTID means that we don't have any active threads,
6188 so we don't have any TID numbers the inferior will
6189 understand. Make sure to only send forms that do not specify
6190 a TID. */
a9cbf802 6191 append_resumption (p, endp, minus_one_ptid, step, siggnal);
506fb367 6192 }
d7e15655 6193 else if (ptid == minus_one_ptid || ptid.is_pid ())
506fb367 6194 {
0d8f58ca
PA
6195 /* Resume all threads (of all processes, or of a single
6196 process), with preference for INFERIOR_PTID. This assumes
6197 inferior_ptid belongs to the set of all threads we are about
6198 to resume. */
a493e3e2 6199 if (step || siggnal != GDB_SIGNAL_0)
82f73884 6200 {
0d8f58ca
PA
6201 /* Step inferior_ptid, with or without signal. */
6202 p = append_resumption (p, endp, inferior_ptid, step, siggnal);
82f73884 6203 }
0d8f58ca 6204
e5ef252a
PA
6205 /* Also pass down any pending signaled resumption for other
6206 threads not the current. */
6207 p = append_pending_thread_resumptions (p, endp, ptid);
6208
0d8f58ca 6209 /* And continue others without a signal. */
a493e3e2 6210 append_resumption (p, endp, ptid, /*step=*/ 0, GDB_SIGNAL_0);
c906108c
SS
6211 }
6212 else
506fb367
DJ
6213 {
6214 /* Scheduler locking; resume only PTID. */
a9cbf802 6215 append_resumption (p, endp, ptid, step, siggnal);
506fb367 6216 }
c906108c 6217
8d64371b 6218 gdb_assert (strlen (rs->buf.data ()) < get_remote_packet_size ());
82f73884 6219 putpkt (rs->buf);
506fb367 6220
6efcd9a8 6221 if (target_is_non_stop_p ())
74531fed
PA
6222 {
6223 /* In non-stop, the stub replies to vCont with "OK". The stop
6224 reply will be reported asynchronously by means of a `%Stop'
6225 notification. */
8d64371b
TT
6226 getpkt (&rs->buf, 0);
6227 if (strcmp (rs->buf.data (), "OK") != 0)
6228 error (_("Unexpected vCont reply in non-stop mode: %s"),
6229 rs->buf.data ());
74531fed
PA
6230 }
6231
506fb367 6232 return 1;
c906108c 6233}
43ff13b4 6234
506fb367
DJ
6235/* Tell the remote machine to resume. */
6236
f6ac5f3d
PA
6237void
6238remote_target::resume (ptid_t ptid, int step, enum gdb_signal siggnal)
43ff13b4 6239{
d01949b6 6240 struct remote_state *rs = get_remote_state ();
43ff13b4 6241
85ad3aaf
PA
6242 /* When connected in non-stop mode, the core resumes threads
6243 individually. Resuming remote threads directly in target_resume
6244 would thus result in sending one packet per thread. Instead, to
6245 minimize roundtrip latency, here we just store the resume
6246 request; the actual remote resumption will be done in
6247 target_commit_resume / remote_commit_resume, where we'll be able
6248 to do vCont action coalescing. */
f6ac5f3d 6249 if (target_is_non_stop_p () && ::execution_direction != EXEC_REVERSE)
85ad3aaf 6250 {
7aabaf9d 6251 remote_thread_info *remote_thr;
85ad3aaf 6252
d7e15655 6253 if (minus_one_ptid == ptid || ptid.is_pid ())
7aabaf9d 6254 remote_thr = get_remote_thread_info (inferior_ptid);
85ad3aaf 6255 else
7aabaf9d
SM
6256 remote_thr = get_remote_thread_info (ptid);
6257
85ad3aaf
PA
6258 remote_thr->last_resume_step = step;
6259 remote_thr->last_resume_sig = siggnal;
6260 return;
6261 }
6262
722247f1
YQ
6263 /* In all-stop, we can't mark REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN
6264 (explained in remote-notif.c:handle_notification) so
6265 remote_notif_process is not called. We need find a place where
6266 it is safe to start a 'vNotif' sequence. It is good to do it
6267 before resuming inferior, because inferior was stopped and no RSP
6268 traffic at that moment. */
6efcd9a8 6269 if (!target_is_non_stop_p ())
5965e028 6270 remote_notif_process (rs->notif_state, &notif_client_stop);
722247f1 6271
f6ac5f3d 6272 rs->last_resume_exec_dir = ::execution_direction;
3a00c802 6273
7b68ffbb
PA
6274 /* Prefer vCont, and fallback to s/c/S/C, which use Hc. */
6275 if (!remote_resume_with_vcont (ptid, step, siggnal))
6b8edb51 6276 remote_resume_with_hc (ptid, step, siggnal);
43ff13b4 6277
2acceee2 6278 /* We are about to start executing the inferior, let's register it
0df8b418
MS
6279 with the event loop. NOTE: this is the one place where all the
6280 execution commands end up. We could alternatively do this in each
23860348 6281 of the execution commands in infcmd.c. */
2acceee2
JM
6282 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
6283 into infcmd.c in order to allow inferior function calls to work
23860348 6284 NOT asynchronously. */
362646f5 6285 if (target_can_async_p ())
6a3753b3 6286 target_async (1);
e24a49d8
PA
6287
6288 /* We've just told the target to resume. The remote server will
6289 wait for the inferior to stop, and then send a stop reply. In
6290 the mean time, we can't start another command/query ourselves
74531fed
PA
6291 because the stub wouldn't be ready to process it. This applies
6292 only to the base all-stop protocol, however. In non-stop (which
6293 only supports vCont), the stub replies with an "OK", and is
6294 immediate able to process further serial input. */
6efcd9a8 6295 if (!target_is_non_stop_p ())
74531fed 6296 rs->waiting_for_stop_reply = 1;
43ff13b4 6297}
85ad3aaf 6298
85ad3aaf
PA
6299static int is_pending_fork_parent_thread (struct thread_info *thread);
6300
6301/* Private per-inferior info for target remote processes. */
6302
089354bb 6303struct remote_inferior : public private_inferior
85ad3aaf
PA
6304{
6305 /* Whether we can send a wildcard vCont for this process. */
089354bb 6306 bool may_wildcard_vcont = true;
85ad3aaf
PA
6307};
6308
089354bb
SM
6309/* Get the remote private inferior data associated to INF. */
6310
6311static remote_inferior *
6312get_remote_inferior (inferior *inf)
6313{
6314 if (inf->priv == NULL)
6315 inf->priv.reset (new remote_inferior);
6316
6317 return static_cast<remote_inferior *> (inf->priv.get ());
6318}
6319
f5db4863 6320/* Class used to track the construction of a vCont packet in the
85ad3aaf
PA
6321 outgoing packet buffer. This is used to send multiple vCont
6322 packets if we have more actions than would fit a single packet. */
6323
f5db4863 6324class vcont_builder
85ad3aaf 6325{
f5db4863 6326public:
6b8edb51
PA
6327 explicit vcont_builder (remote_target *remote)
6328 : m_remote (remote)
f5db4863
PA
6329 {
6330 restart ();
6331 }
6332
6333 void flush ();
6334 void push_action (ptid_t ptid, bool step, gdb_signal siggnal);
6335
6336private:
6337 void restart ();
6338
6b8edb51
PA
6339 /* The remote target. */
6340 remote_target *m_remote;
6341
85ad3aaf
PA
6342 /* Pointer to the first action. P points here if no action has been
6343 appended yet. */
f5db4863 6344 char *m_first_action;
85ad3aaf
PA
6345
6346 /* Where the next action will be appended. */
f5db4863 6347 char *m_p;
85ad3aaf
PA
6348
6349 /* The end of the buffer. Must never write past this. */
f5db4863 6350 char *m_endp;
85ad3aaf
PA
6351};
6352
6353/* Prepare the outgoing buffer for a new vCont packet. */
6354
f5db4863
PA
6355void
6356vcont_builder::restart ()
85ad3aaf 6357{
6b8edb51 6358 struct remote_state *rs = m_remote->get_remote_state ();
85ad3aaf 6359
8d64371b
TT
6360 m_p = rs->buf.data ();
6361 m_endp = m_p + m_remote->get_remote_packet_size ();
f5db4863
PA
6362 m_p += xsnprintf (m_p, m_endp - m_p, "vCont");
6363 m_first_action = m_p;
85ad3aaf
PA
6364}
6365
6366/* If the vCont packet being built has any action, send it to the
6367 remote end. */
6368
f5db4863
PA
6369void
6370vcont_builder::flush ()
85ad3aaf
PA
6371{
6372 struct remote_state *rs;
6373
f5db4863 6374 if (m_p == m_first_action)
85ad3aaf
PA
6375 return;
6376
6b8edb51
PA
6377 rs = m_remote->get_remote_state ();
6378 m_remote->putpkt (rs->buf);
8d64371b
TT
6379 m_remote->getpkt (&rs->buf, 0);
6380 if (strcmp (rs->buf.data (), "OK") != 0)
6381 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf.data ());
85ad3aaf
PA
6382}
6383
6384/* The largest action is range-stepping, with its two addresses. This
6385 is more than sufficient. If a new, bigger action is created, it'll
6386 quickly trigger a failed assertion in append_resumption (and we'll
6387 just bump this). */
6388#define MAX_ACTION_SIZE 200
6389
6390/* Append a new vCont action in the outgoing packet being built. If
6391 the action doesn't fit the packet along with previous actions, push
6392 what we've got so far to the remote end and start over a new vCont
6393 packet (with the new action). */
6394
f5db4863
PA
6395void
6396vcont_builder::push_action (ptid_t ptid, bool step, gdb_signal siggnal)
85ad3aaf
PA
6397{
6398 char buf[MAX_ACTION_SIZE + 1];
85ad3aaf 6399
6b8edb51
PA
6400 char *endp = m_remote->append_resumption (buf, buf + sizeof (buf),
6401 ptid, step, siggnal);
85ad3aaf
PA
6402
6403 /* Check whether this new action would fit in the vCont packet along
6404 with previous actions. If not, send what we've got so far and
6405 start a new vCont packet. */
f5db4863
PA
6406 size_t rsize = endp - buf;
6407 if (rsize > m_endp - m_p)
85ad3aaf 6408 {
f5db4863
PA
6409 flush ();
6410 restart ();
85ad3aaf
PA
6411
6412 /* Should now fit. */
f5db4863 6413 gdb_assert (rsize <= m_endp - m_p);
85ad3aaf
PA
6414 }
6415
f5db4863
PA
6416 memcpy (m_p, buf, rsize);
6417 m_p += rsize;
6418 *m_p = '\0';
85ad3aaf
PA
6419}
6420
6421/* to_commit_resume implementation. */
6422
f6ac5f3d
PA
6423void
6424remote_target::commit_resume ()
85ad3aaf 6425{
85ad3aaf
PA
6426 int any_process_wildcard;
6427 int may_global_wildcard_vcont;
85ad3aaf
PA
6428
6429 /* If connected in all-stop mode, we'd send the remote resume
6430 request directly from remote_resume. Likewise if
6431 reverse-debugging, as there are no defined vCont actions for
6432 reverse execution. */
f6ac5f3d 6433 if (!target_is_non_stop_p () || ::execution_direction == EXEC_REVERSE)
85ad3aaf
PA
6434 return;
6435
6436 /* Try to send wildcard actions ("vCont;c" or "vCont;c:pPID.-1")
6437 instead of resuming all threads of each process individually.
6438 However, if any thread of a process must remain halted, we can't
6439 send wildcard resumes and must send one action per thread.
6440
6441 Care must be taken to not resume threads/processes the server
6442 side already told us are stopped, but the core doesn't know about
6443 yet, because the events are still in the vStopped notification
6444 queue. For example:
6445
6446 #1 => vCont s:p1.1;c
6447 #2 <= OK
6448 #3 <= %Stopped T05 p1.1
6449 #4 => vStopped
6450 #5 <= T05 p1.2
6451 #6 => vStopped
6452 #7 <= OK
6453 #8 (infrun handles the stop for p1.1 and continues stepping)
6454 #9 => vCont s:p1.1;c
6455
6456 The last vCont above would resume thread p1.2 by mistake, because
6457 the server has no idea that the event for p1.2 had not been
6458 handled yet.
6459
6460 The server side must similarly ignore resume actions for the
6461 thread that has a pending %Stopped notification (and any other
6462 threads with events pending), until GDB acks the notification
6463 with vStopped. Otherwise, e.g., the following case is
6464 mishandled:
6465
6466 #1 => g (or any other packet)
6467 #2 <= [registers]
6468 #3 <= %Stopped T05 p1.2
6469 #4 => vCont s:p1.1;c
6470 #5 <= OK
6471
6472 Above, the server must not resume thread p1.2. GDB can't know
6473 that p1.2 stopped until it acks the %Stopped notification, and
6474 since from GDB's perspective all threads should be running, it
6475 sends a "c" action.
6476
6477 Finally, special care must also be given to handling fork/vfork
6478 events. A (v)fork event actually tells us that two processes
6479 stopped -- the parent and the child. Until we follow the fork,
6480 we must not resume the child. Therefore, if we have a pending
6481 fork follow, we must not send a global wildcard resume action
6482 (vCont;c). We can still send process-wide wildcards though. */
6483
6484 /* Start by assuming a global wildcard (vCont;c) is possible. */
6485 may_global_wildcard_vcont = 1;
6486
6487 /* And assume every process is individually wildcard-able too. */
08036331 6488 for (inferior *inf : all_non_exited_inferiors ())
85ad3aaf 6489 {
089354bb
SM
6490 remote_inferior *priv = get_remote_inferior (inf);
6491
6492 priv->may_wildcard_vcont = true;
85ad3aaf
PA
6493 }
6494
6495 /* Check for any pending events (not reported or processed yet) and
6496 disable process and global wildcard resumes appropriately. */
6497 check_pending_events_prevent_wildcard_vcont (&may_global_wildcard_vcont);
6498
08036331 6499 for (thread_info *tp : all_non_exited_threads ())
85ad3aaf
PA
6500 {
6501 /* If a thread of a process is not meant to be resumed, then we
6502 can't wildcard that process. */
6503 if (!tp->executing)
6504 {
089354bb 6505 get_remote_inferior (tp->inf)->may_wildcard_vcont = false;
85ad3aaf
PA
6506
6507 /* And if we can't wildcard a process, we can't wildcard
6508 everything either. */
6509 may_global_wildcard_vcont = 0;
6510 continue;
6511 }
6512
6513 /* If a thread is the parent of an unfollowed fork, then we
6514 can't do a global wildcard, as that would resume the fork
6515 child. */
6516 if (is_pending_fork_parent_thread (tp))
6517 may_global_wildcard_vcont = 0;
6518 }
6519
6520 /* Now let's build the vCont packet(s). Actions must be appended
6521 from narrower to wider scopes (thread -> process -> global). If
6522 we end up with too many actions for a single packet vcont_builder
6523 flushes the current vCont packet to the remote side and starts a
6524 new one. */
6b8edb51 6525 struct vcont_builder vcont_builder (this);
85ad3aaf
PA
6526
6527 /* Threads first. */
08036331 6528 for (thread_info *tp : all_non_exited_threads ())
85ad3aaf 6529 {
7aabaf9d 6530 remote_thread_info *remote_thr = get_remote_thread_info (tp);
85ad3aaf
PA
6531
6532 if (!tp->executing || remote_thr->vcont_resumed)
6533 continue;
6534
6535 gdb_assert (!thread_is_in_step_over_chain (tp));
6536
6537 if (!remote_thr->last_resume_step
6538 && remote_thr->last_resume_sig == GDB_SIGNAL_0
089354bb 6539 && get_remote_inferior (tp->inf)->may_wildcard_vcont)
85ad3aaf
PA
6540 {
6541 /* We'll send a wildcard resume instead. */
6542 remote_thr->vcont_resumed = 1;
6543 continue;
6544 }
6545
f5db4863 6546 vcont_builder.push_action (tp->ptid,
85ad3aaf
PA
6547 remote_thr->last_resume_step,
6548 remote_thr->last_resume_sig);
6549 remote_thr->vcont_resumed = 1;
6550 }
6551
6552 /* Now check whether we can send any process-wide wildcard. This is
6553 to avoid sending a global wildcard in the case nothing is
6554 supposed to be resumed. */
6555 any_process_wildcard = 0;
6556
08036331 6557 for (inferior *inf : all_non_exited_inferiors ())
85ad3aaf 6558 {
089354bb 6559 if (get_remote_inferior (inf)->may_wildcard_vcont)
85ad3aaf
PA
6560 {
6561 any_process_wildcard = 1;
6562 break;
6563 }
6564 }
6565
6566 if (any_process_wildcard)
6567 {
6568 /* If all processes are wildcard-able, then send a single "c"
6569 action, otherwise, send an "all (-1) threads of process"
6570 continue action for each running process, if any. */
6571 if (may_global_wildcard_vcont)
6572 {
f5db4863
PA
6573 vcont_builder.push_action (minus_one_ptid,
6574 false, GDB_SIGNAL_0);
85ad3aaf
PA
6575 }
6576 else
6577 {
08036331 6578 for (inferior *inf : all_non_exited_inferiors ())
85ad3aaf 6579 {
089354bb 6580 if (get_remote_inferior (inf)->may_wildcard_vcont)
85ad3aaf 6581 {
f2907e49 6582 vcont_builder.push_action (ptid_t (inf->pid),
f5db4863 6583 false, GDB_SIGNAL_0);
85ad3aaf
PA
6584 }
6585 }
6586 }
6587 }
6588
f5db4863 6589 vcont_builder.flush ();
85ad3aaf
PA
6590}
6591
c906108c 6592\f
43ff13b4 6593
74531fed
PA
6594/* Non-stop version of target_stop. Uses `vCont;t' to stop a remote
6595 thread, all threads of a remote process, or all threads of all
6596 processes. */
6597
6b8edb51
PA
6598void
6599remote_target::remote_stop_ns (ptid_t ptid)
74531fed
PA
6600{
6601 struct remote_state *rs = get_remote_state ();
8d64371b
TT
6602 char *p = rs->buf.data ();
6603 char *endp = p + get_remote_packet_size ();
74531fed 6604
4082afcc 6605 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6b8edb51 6606 remote_vcont_probe ();
74531fed 6607
d458bd84 6608 if (!rs->supports_vCont.t)
74531fed
PA
6609 error (_("Remote server does not support stopping threads"));
6610
d7e15655 6611 if (ptid == minus_one_ptid
0e998d96 6612 || (!remote_multi_process_p (rs) && ptid.is_pid ()))
74531fed
PA
6613 p += xsnprintf (p, endp - p, "vCont;t");
6614 else
6615 {
6616 ptid_t nptid;
6617
74531fed
PA
6618 p += xsnprintf (p, endp - p, "vCont;t:");
6619
0e998d96 6620 if (ptid.is_pid ())
74531fed 6621 /* All (-1) threads of process. */
e99b03dc 6622 nptid = ptid_t (ptid.pid (), -1, 0);
74531fed
PA
6623 else
6624 {
6625 /* Small optimization: if we already have a stop reply for
6626 this thread, no use in telling the stub we want this
6627 stopped. */
6628 if (peek_stop_reply (ptid))
6629 return;
6630
6631 nptid = ptid;
6632 }
6633
a9cbf802 6634 write_ptid (p, endp, nptid);
74531fed
PA
6635 }
6636
6637 /* In non-stop, we get an immediate OK reply. The stop reply will
6638 come in asynchronously by notification. */
6639 putpkt (rs->buf);
8d64371b
TT
6640 getpkt (&rs->buf, 0);
6641 if (strcmp (rs->buf.data (), "OK") != 0)
a068643d 6642 error (_("Stopping %s failed: %s"), target_pid_to_str (ptid).c_str (),
8d64371b 6643 rs->buf.data ());
74531fed
PA
6644}
6645
bfedc46a
PA
6646/* All-stop version of target_interrupt. Sends a break or a ^C to
6647 interrupt the remote target. It is undefined which thread of which
6648 process reports the interrupt. */
74531fed 6649
6b8edb51
PA
6650void
6651remote_target::remote_interrupt_as ()
74531fed
PA
6652{
6653 struct remote_state *rs = get_remote_state ();
6654
3a29589a
DJ
6655 rs->ctrlc_pending_p = 1;
6656
74531fed
PA
6657 /* If the inferior is stopped already, but the core didn't know
6658 about it yet, just ignore the request. The cached wait status
6659 will be collected in remote_wait. */
6660 if (rs->cached_wait_status)
6661 return;
6662
9a7071a8
JB
6663 /* Send interrupt_sequence to remote target. */
6664 send_interrupt_sequence ();
74531fed
PA
6665}
6666
de979965
PA
6667/* Non-stop version of target_interrupt. Uses `vCtrlC' to interrupt
6668 the remote target. It is undefined which thread of which process
e42de8c7
PA
6669 reports the interrupt. Throws an error if the packet is not
6670 supported by the server. */
de979965 6671
6b8edb51
PA
6672void
6673remote_target::remote_interrupt_ns ()
de979965
PA
6674{
6675 struct remote_state *rs = get_remote_state ();
8d64371b
TT
6676 char *p = rs->buf.data ();
6677 char *endp = p + get_remote_packet_size ();
de979965
PA
6678
6679 xsnprintf (p, endp - p, "vCtrlC");
6680
6681 /* In non-stop, we get an immediate OK reply. The stop reply will
6682 come in asynchronously by notification. */
6683 putpkt (rs->buf);
8d64371b 6684 getpkt (&rs->buf, 0);
de979965
PA
6685
6686 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCtrlC]))
6687 {
6688 case PACKET_OK:
6689 break;
6690 case PACKET_UNKNOWN:
e42de8c7 6691 error (_("No support for interrupting the remote target."));
de979965 6692 case PACKET_ERROR:
8d64371b 6693 error (_("Interrupting target failed: %s"), rs->buf.data ());
de979965 6694 }
de979965
PA
6695}
6696
bfedc46a 6697/* Implement the to_stop function for the remote targets. */
74531fed 6698
f6ac5f3d
PA
6699void
6700remote_target::stop (ptid_t ptid)
c906108c 6701{
7a292a7a 6702 if (remote_debug)
0f71a2f6 6703 fprintf_unfiltered (gdb_stdlog, "remote_stop called\n");
c906108c 6704
6efcd9a8 6705 if (target_is_non_stop_p ())
74531fed 6706 remote_stop_ns (ptid);
c906108c 6707 else
bfedc46a
PA
6708 {
6709 /* We don't currently have a way to transparently pause the
6710 remote target in all-stop mode. Interrupt it instead. */
de979965 6711 remote_interrupt_as ();
bfedc46a
PA
6712 }
6713}
6714
6715/* Implement the to_interrupt function for the remote targets. */
6716
f6ac5f3d
PA
6717void
6718remote_target::interrupt ()
bfedc46a
PA
6719{
6720 if (remote_debug)
6721 fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n");
6722
e42de8c7
PA
6723 if (target_is_non_stop_p ())
6724 remote_interrupt_ns ();
bfedc46a 6725 else
e42de8c7 6726 remote_interrupt_as ();
c906108c
SS
6727}
6728
93692b58
PA
6729/* Implement the to_pass_ctrlc function for the remote targets. */
6730
f6ac5f3d
PA
6731void
6732remote_target::pass_ctrlc ()
93692b58
PA
6733{
6734 struct remote_state *rs = get_remote_state ();
6735
6736 if (remote_debug)
6737 fprintf_unfiltered (gdb_stdlog, "remote_pass_ctrlc called\n");
6738
6739 /* If we're starting up, we're not fully synced yet. Quit
6740 immediately. */
6741 if (rs->starting_up)
6742 quit ();
6743 /* If ^C has already been sent once, offer to disconnect. */
6744 else if (rs->ctrlc_pending_p)
6745 interrupt_query ();
6746 else
e671cd59 6747 target_interrupt ();
93692b58
PA
6748}
6749
c906108c
SS
6750/* Ask the user what to do when an interrupt is received. */
6751
6b8edb51
PA
6752void
6753remote_target::interrupt_query ()
c906108c 6754{
abc56d60 6755 struct remote_state *rs = get_remote_state ();
c906108c 6756
abc56d60 6757 if (rs->waiting_for_stop_reply && rs->ctrlc_pending_p)
74531fed 6758 {
abc56d60
PA
6759 if (query (_("The target is not responding to interrupt requests.\n"
6760 "Stop debugging it? ")))
74531fed 6761 {
78a095c3 6762 remote_unpush_target ();
abc56d60 6763 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
74531fed
PA
6764 }
6765 }
abc56d60
PA
6766 else
6767 {
6768 if (query (_("Interrupted while waiting for the program.\n"
6769 "Give up waiting? ")))
6770 quit ();
6771 }
c906108c
SS
6772}
6773
6426a772
JM
6774/* Enable/disable target terminal ownership. Most targets can use
6775 terminal groups to control terminal ownership. Remote targets are
6776 different in that explicit transfer of ownership to/from GDB/target
23860348 6777 is required. */
6426a772 6778
f6ac5f3d
PA
6779void
6780remote_target::terminal_inferior ()
6426a772 6781{
6426a772
JM
6782 /* NOTE: At this point we could also register our selves as the
6783 recipient of all input. Any characters typed could then be
23860348 6784 passed on down to the target. */
6426a772
JM
6785}
6786
f6ac5f3d
PA
6787void
6788remote_target::terminal_ours ()
6426a772 6789{
6426a772
JM
6790}
6791
176a6961 6792static void
05be00a8 6793remote_console_output (const char *msg)
c906108c 6794{
05be00a8 6795 const char *p;
c906108c 6796
c5aa993b 6797 for (p = msg; p[0] && p[1]; p += 2)
c906108c
SS
6798 {
6799 char tb[2];
6800 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
a744cf53 6801
c906108c
SS
6802 tb[0] = c;
6803 tb[1] = 0;
43ff13b4 6804 fputs_unfiltered (tb, gdb_stdtarg);
c906108c 6805 }
00db5b94
PA
6806 gdb_flush (gdb_stdtarg);
6807}
74531fed 6808
32603266 6809struct stop_reply : public notif_event
74531fed 6810{
32603266 6811 ~stop_reply ();
74531fed 6812
722247f1 6813 /* The identifier of the thread about this event */
74531fed
PA
6814 ptid_t ptid;
6815
340e3c99 6816 /* The remote state this event is associated with. When the remote
bcc75809
YQ
6817 connection, represented by a remote_state object, is closed,
6818 all the associated stop_reply events should be released. */
6819 struct remote_state *rs;
6820
74531fed
PA
6821 struct target_waitstatus ws;
6822
5cd63fda
PA
6823 /* The architecture associated with the expedited registers. */
6824 gdbarch *arch;
6825
15148d6a
PA
6826 /* Expedited registers. This makes remote debugging a bit more
6827 efficient for those targets that provide critical registers as
6828 part of their normal status mechanism (as another roundtrip to
6829 fetch them is avoided). */
32603266 6830 std::vector<cached_reg_t> regcache;
74531fed 6831
f7e6eed5
PA
6832 enum target_stop_reason stop_reason;
6833
74531fed
PA
6834 CORE_ADDR watch_data_address;
6835
dc146f7c 6836 int core;
32603266 6837};
c906108c 6838
221e1a37
PA
6839/* Return the length of the stop reply queue. */
6840
6b8edb51
PA
6841int
6842remote_target::stop_reply_queue_length ()
221e1a37 6843{
6b8edb51 6844 remote_state *rs = get_remote_state ();
953edf2b 6845 return rs->stop_reply_queue.size ();
221e1a37
PA
6846}
6847
6b8edb51
PA
6848void
6849remote_notif_stop_parse (remote_target *remote,
bb277751 6850 struct notif_client *self, const char *buf,
722247f1
YQ
6851 struct notif_event *event)
6852{
6b8edb51 6853 remote->remote_parse_stop_reply (buf, (struct stop_reply *) event);
722247f1
YQ
6854}
6855
6856static void
6b8edb51 6857remote_notif_stop_ack (remote_target *remote,
bb277751 6858 struct notif_client *self, const char *buf,
722247f1
YQ
6859 struct notif_event *event)
6860{
6861 struct stop_reply *stop_reply = (struct stop_reply *) event;
6862
6863 /* acknowledge */
6b8edb51 6864 putpkt (remote, self->ack_command);
722247f1
YQ
6865
6866 if (stop_reply->ws.kind == TARGET_WAITKIND_IGNORE)
6b8edb51 6867 {
722247f1
YQ
6868 /* We got an unknown stop reply. */
6869 error (_("Unknown stop reply"));
6b8edb51 6870 }
722247f1 6871
6b8edb51 6872 remote->push_stop_reply (stop_reply);
722247f1
YQ
6873}
6874
6875static int
6b8edb51
PA
6876remote_notif_stop_can_get_pending_events (remote_target *remote,
6877 struct notif_client *self)
722247f1
YQ
6878{
6879 /* We can't get pending events in remote_notif_process for
6880 notification stop, and we have to do this in remote_wait_ns
6881 instead. If we fetch all queued events from stub, remote stub
6882 may exit and we have no chance to process them back in
6883 remote_wait_ns. */
6b8edb51
PA
6884 remote_state *rs = remote->get_remote_state ();
6885 mark_async_event_handler (rs->remote_async_inferior_event_token);
722247f1
YQ
6886 return 0;
6887}
6888
32603266 6889stop_reply::~stop_reply ()
722247f1 6890{
32603266
TT
6891 for (cached_reg_t &reg : regcache)
6892 xfree (reg.data);
722247f1
YQ
6893}
6894
32603266
TT
6895static notif_event_up
6896remote_notif_stop_alloc_reply ()
722247f1 6897{
32603266 6898 return notif_event_up (new struct stop_reply ());
722247f1
YQ
6899}
6900
6901/* A client of notification Stop. */
6902
6903struct notif_client notif_client_stop =
6904{
6905 "Stop",
6906 "vStopped",
6907 remote_notif_stop_parse,
6908 remote_notif_stop_ack,
6909 remote_notif_stop_can_get_pending_events,
6910 remote_notif_stop_alloc_reply,
f48ff2a7 6911 REMOTE_NOTIF_STOP,
722247f1
YQ
6912};
6913
85ad3aaf 6914/* Determine if THREAD_PTID is a pending fork parent thread. ARG contains
cbb8991c
DB
6915 the pid of the process that owns the threads we want to check, or
6916 -1 if we want to check all threads. */
6917
6918static int
6919is_pending_fork_parent (struct target_waitstatus *ws, int event_pid,
6920 ptid_t thread_ptid)
6921{
6922 if (ws->kind == TARGET_WAITKIND_FORKED
6923 || ws->kind == TARGET_WAITKIND_VFORKED)
6924 {
e99b03dc 6925 if (event_pid == -1 || event_pid == thread_ptid.pid ())
cbb8991c
DB
6926 return 1;
6927 }
6928
6929 return 0;
6930}
6931
85ad3aaf
PA
6932/* Return the thread's pending status used to determine whether the
6933 thread is a fork parent stopped at a fork event. */
6934
6935static struct target_waitstatus *
6936thread_pending_fork_status (struct thread_info *thread)
6937{
6938 if (thread->suspend.waitstatus_pending_p)
6939 return &thread->suspend.waitstatus;
6940 else
6941 return &thread->pending_follow;
6942}
6943
6944/* Determine if THREAD is a pending fork parent thread. */
6945
6946static int
6947is_pending_fork_parent_thread (struct thread_info *thread)
6948{
6949 struct target_waitstatus *ws = thread_pending_fork_status (thread);
6950 int pid = -1;
6951
6952 return is_pending_fork_parent (ws, pid, thread->ptid);
6953}
6954
cbb8991c
DB
6955/* If CONTEXT contains any fork child threads that have not been
6956 reported yet, remove them from the CONTEXT list. If such a
6957 thread exists it is because we are stopped at a fork catchpoint
6958 and have not yet called follow_fork, which will set up the
6959 host-side data structures for the new process. */
6960
6b8edb51
PA
6961void
6962remote_target::remove_new_fork_children (threads_listing_context *context)
cbb8991c 6963{
cbb8991c
DB
6964 int pid = -1;
6965 struct notif_client *notif = &notif_client_stop;
cbb8991c
DB
6966
6967 /* For any threads stopped at a fork event, remove the corresponding
6968 fork child threads from the CONTEXT list. */
08036331 6969 for (thread_info *thread : all_non_exited_threads ())
cbb8991c 6970 {
85ad3aaf 6971 struct target_waitstatus *ws = thread_pending_fork_status (thread);
cbb8991c
DB
6972
6973 if (is_pending_fork_parent (ws, pid, thread->ptid))
21fe1c75 6974 context->remove_thread (ws->value.related_pid);
cbb8991c
DB
6975 }
6976
6977 /* Check for any pending fork events (not reported or processed yet)
6978 in process PID and remove those fork child threads from the
6979 CONTEXT list as well. */
6980 remote_notif_get_pending_events (notif);
953edf2b
TT
6981 for (auto &event : get_remote_state ()->stop_reply_queue)
6982 if (event->ws.kind == TARGET_WAITKIND_FORKED
6983 || event->ws.kind == TARGET_WAITKIND_VFORKED
6984 || event->ws.kind == TARGET_WAITKIND_THREAD_EXITED)
6985 context->remove_thread (event->ws.value.related_pid);
85ad3aaf
PA
6986}
6987
6988/* Check whether any event pending in the vStopped queue would prevent
6989 a global or process wildcard vCont action. Clear
6990 *may_global_wildcard if we can't do a global wildcard (vCont;c),
6991 and clear the event inferior's may_wildcard_vcont flag if we can't
6992 do a process-wide wildcard resume (vCont;c:pPID.-1). */
6993
6b8edb51
PA
6994void
6995remote_target::check_pending_events_prevent_wildcard_vcont
6996 (int *may_global_wildcard)
85ad3aaf
PA
6997{
6998 struct notif_client *notif = &notif_client_stop;
6999
7000 remote_notif_get_pending_events (notif);
953edf2b
TT
7001 for (auto &event : get_remote_state ()->stop_reply_queue)
7002 {
7003 if (event->ws.kind == TARGET_WAITKIND_NO_RESUMED
7004 || event->ws.kind == TARGET_WAITKIND_NO_HISTORY)
7005 continue;
85ad3aaf 7006
953edf2b
TT
7007 if (event->ws.kind == TARGET_WAITKIND_FORKED
7008 || event->ws.kind == TARGET_WAITKIND_VFORKED)
7009 *may_global_wildcard = 0;
722247f1 7010
953edf2b 7011 struct inferior *inf = find_inferior_ptid (event->ptid);
722247f1 7012
953edf2b
TT
7013 /* This may be the first time we heard about this process.
7014 Regardless, we must not do a global wildcard resume, otherwise
7015 we'd resume this process too. */
7016 *may_global_wildcard = 0;
7017 if (inf != NULL)
7018 get_remote_inferior (inf)->may_wildcard_vcont = false;
722247f1 7019 }
722247f1
YQ
7020}
7021
f48ff2a7 7022/* Discard all pending stop replies of inferior INF. */
c906108c 7023
6b8edb51
PA
7024void
7025remote_target::discard_pending_stop_replies (struct inferior *inf)
c906108c 7026{
f48ff2a7
YQ
7027 struct stop_reply *reply;
7028 struct remote_state *rs = get_remote_state ();
7029 struct remote_notif_state *rns = rs->notif_state;
7030
7031 /* This function can be notified when an inferior exists. When the
7032 target is not remote, the notification state is NULL. */
7033 if (rs->remote_desc == NULL)
7034 return;
7035
7036 reply = (struct stop_reply *) rns->pending_event[notif_client_stop.id];
c906108c 7037
74531fed 7038 /* Discard the in-flight notification. */
e99b03dc 7039 if (reply != NULL && reply->ptid.pid () == inf->pid)
74531fed 7040 {
32603266 7041 delete reply;
f48ff2a7 7042 rns->pending_event[notif_client_stop.id] = NULL;
74531fed 7043 }
c906108c 7044
74531fed
PA
7045 /* Discard the stop replies we have already pulled with
7046 vStopped. */
953edf2b
TT
7047 auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7048 rs->stop_reply_queue.end (),
7049 [=] (const stop_reply_up &event)
7050 {
7051 return event->ptid.pid () == inf->pid;
7052 });
7053 rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
bcc75809
YQ
7054}
7055
7056/* Discard the stop replies for RS in stop_reply_queue. */
f48ff2a7 7057
6b8edb51
PA
7058void
7059remote_target::discard_pending_stop_replies_in_queue ()
f48ff2a7 7060{
6b8edb51 7061 remote_state *rs = get_remote_state ();
f48ff2a7 7062
f48ff2a7
YQ
7063 /* Discard the stop replies we have already pulled with
7064 vStopped. */
953edf2b
TT
7065 auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7066 rs->stop_reply_queue.end (),
7067 [=] (const stop_reply_up &event)
7068 {
7069 return event->rs == rs;
7070 });
7071 rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
74531fed 7072}
43ff13b4 7073
722247f1
YQ
7074/* Remove the first reply in 'stop_reply_queue' which matches
7075 PTID. */
2e9f7625 7076
6b8edb51
PA
7077struct stop_reply *
7078remote_target::remote_notif_remove_queued_reply (ptid_t ptid)
74531fed 7079{
953edf2b 7080 remote_state *rs = get_remote_state ();
722247f1 7081
953edf2b
TT
7082 auto iter = std::find_if (rs->stop_reply_queue.begin (),
7083 rs->stop_reply_queue.end (),
7084 [=] (const stop_reply_up &event)
7085 {
7086 return event->ptid.matches (ptid);
7087 });
7088 struct stop_reply *result;
7089 if (iter == rs->stop_reply_queue.end ())
7090 result = nullptr;
7091 else
7092 {
7093 result = iter->release ();
7094 rs->stop_reply_queue.erase (iter);
7095 }
722247f1 7096
722247f1
YQ
7097 if (notif_debug)
7098 fprintf_unfiltered (gdb_stdlog,
7099 "notif: discard queued event: 'Stop' in %s\n",
a068643d 7100 target_pid_to_str (ptid).c_str ());
a744cf53 7101
953edf2b 7102 return result;
74531fed 7103}
75c99385 7104
74531fed
PA
7105/* Look for a queued stop reply belonging to PTID. If one is found,
7106 remove it from the queue, and return it. Returns NULL if none is
7107 found. If there are still queued events left to process, tell the
7108 event loop to get back to target_wait soon. */
e24a49d8 7109
6b8edb51
PA
7110struct stop_reply *
7111remote_target::queued_stop_reply (ptid_t ptid)
74531fed 7112{
953edf2b 7113 remote_state *rs = get_remote_state ();
722247f1 7114 struct stop_reply *r = remote_notif_remove_queued_reply (ptid);
74531fed 7115
953edf2b 7116 if (!rs->stop_reply_queue.empty ())
6b8edb51 7117 {
6b8edb51
PA
7118 /* There's still at least an event left. */
7119 mark_async_event_handler (rs->remote_async_inferior_event_token);
7120 }
74531fed 7121
722247f1 7122 return r;
74531fed
PA
7123}
7124
7125/* Push a fully parsed stop reply in the stop reply queue. Since we
7126 know that we now have at least one queued event left to pass to the
7127 core side, tell the event loop to get back to target_wait soon. */
7128
6b8edb51
PA
7129void
7130remote_target::push_stop_reply (struct stop_reply *new_event)
74531fed 7131{
6b8edb51 7132 remote_state *rs = get_remote_state ();
953edf2b 7133 rs->stop_reply_queue.push_back (stop_reply_up (new_event));
74531fed 7134
722247f1
YQ
7135 if (notif_debug)
7136 fprintf_unfiltered (gdb_stdlog,
7137 "notif: push 'Stop' %s to queue %d\n",
a068643d 7138 target_pid_to_str (new_event->ptid).c_str (),
953edf2b 7139 int (rs->stop_reply_queue.size ()));
74531fed 7140
6b8edb51 7141 mark_async_event_handler (rs->remote_async_inferior_event_token);
74531fed
PA
7142}
7143
7144/* Returns true if we have a stop reply for PTID. */
7145
6b8edb51
PA
7146int
7147remote_target::peek_stop_reply (ptid_t ptid)
74531fed 7148{
6b8edb51 7149 remote_state *rs = get_remote_state ();
953edf2b
TT
7150 for (auto &event : rs->stop_reply_queue)
7151 if (ptid == event->ptid
7152 && event->ws.kind == TARGET_WAITKIND_STOPPED)
7153 return 1;
7154 return 0;
74531fed
PA
7155}
7156
26d56a93
SL
7157/* Helper for remote_parse_stop_reply. Return nonzero if the substring
7158 starting with P and ending with PEND matches PREFIX. */
7159
7160static int
7161strprefix (const char *p, const char *pend, const char *prefix)
7162{
7163 for ( ; p < pend; p++, prefix++)
7164 if (*p != *prefix)
7165 return 0;
7166 return *prefix == '\0';
7167}
7168
74531fed
PA
7169/* Parse the stop reply in BUF. Either the function succeeds, and the
7170 result is stored in EVENT, or throws an error. */
7171
6b8edb51 7172void
bb277751 7173remote_target::remote_parse_stop_reply (const char *buf, stop_reply *event)
74531fed 7174{
5cd63fda 7175 remote_arch_state *rsa = NULL;
74531fed 7176 ULONGEST addr;
256642e8 7177 const char *p;
94585166 7178 int skipregs = 0;
74531fed
PA
7179
7180 event->ptid = null_ptid;
bcc75809 7181 event->rs = get_remote_state ();
74531fed
PA
7182 event->ws.kind = TARGET_WAITKIND_IGNORE;
7183 event->ws.value.integer = 0;
f7e6eed5 7184 event->stop_reason = TARGET_STOPPED_BY_NO_REASON;
32603266 7185 event->regcache.clear ();
dc146f7c 7186 event->core = -1;
74531fed
PA
7187
7188 switch (buf[0])
7189 {
7190 case 'T': /* Status with PC, SP, FP, ... */
cea39f65
MS
7191 /* Expedited reply, containing Signal, {regno, reg} repeat. */
7192 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
7193 ss = signal number
7194 n... = register number
7195 r... = register contents
7196 */
7197
7198 p = &buf[3]; /* after Txx */
7199 while (*p)
7200 {
256642e8 7201 const char *p1;
cea39f65 7202 int fieldsize;
43ff13b4 7203
1f10ba14
PA
7204 p1 = strchr (p, ':');
7205 if (p1 == NULL)
7206 error (_("Malformed packet(a) (missing colon): %s\n\
7207Packet: '%s'\n"),
7208 p, buf);
7209 if (p == p1)
7210 error (_("Malformed packet(a) (missing register number): %s\n\
7211Packet: '%s'\n"),
7212 p, buf);
3c3bea1c 7213
1f10ba14
PA
7214 /* Some "registers" are actually extended stop information.
7215 Note if you're adding a new entry here: GDB 7.9 and
7216 earlier assume that all register "numbers" that start
7217 with an hex digit are real register numbers. Make sure
7218 the server only sends such a packet if it knows the
7219 client understands it. */
c8e38a49 7220
26d56a93 7221 if (strprefix (p, p1, "thread"))
1f10ba14 7222 event->ptid = read_ptid (++p1, &p);
82075af2
JS
7223 else if (strprefix (p, p1, "syscall_entry"))
7224 {
7225 ULONGEST sysno;
7226
7227 event->ws.kind = TARGET_WAITKIND_SYSCALL_ENTRY;
7228 p = unpack_varlen_hex (++p1, &sysno);
7229 event->ws.value.syscall_number = (int) sysno;
7230 }
7231 else if (strprefix (p, p1, "syscall_return"))
7232 {
7233 ULONGEST sysno;
7234
7235 event->ws.kind = TARGET_WAITKIND_SYSCALL_RETURN;
7236 p = unpack_varlen_hex (++p1, &sysno);
7237 event->ws.value.syscall_number = (int) sysno;
7238 }
26d56a93
SL
7239 else if (strprefix (p, p1, "watch")
7240 || strprefix (p, p1, "rwatch")
7241 || strprefix (p, p1, "awatch"))
cea39f65 7242 {
f7e6eed5 7243 event->stop_reason = TARGET_STOPPED_BY_WATCHPOINT;
1f10ba14
PA
7244 p = unpack_varlen_hex (++p1, &addr);
7245 event->watch_data_address = (CORE_ADDR) addr;
cea39f65 7246 }
26d56a93 7247 else if (strprefix (p, p1, "swbreak"))
f7e6eed5
PA
7248 {
7249 event->stop_reason = TARGET_STOPPED_BY_SW_BREAKPOINT;
7250
7251 /* Make sure the stub doesn't forget to indicate support
7252 with qSupported. */
7253 if (packet_support (PACKET_swbreak_feature) != PACKET_ENABLE)
7254 error (_("Unexpected swbreak stop reason"));
7255
7256 /* The value part is documented as "must be empty",
7257 though we ignore it, in case we ever decide to make
7258 use of it in a backward compatible way. */
8424cc97 7259 p = strchrnul (p1 + 1, ';');
f7e6eed5 7260 }
26d56a93 7261 else if (strprefix (p, p1, "hwbreak"))
f7e6eed5
PA
7262 {
7263 event->stop_reason = TARGET_STOPPED_BY_HW_BREAKPOINT;
7264
7265 /* Make sure the stub doesn't forget to indicate support
7266 with qSupported. */
7267 if (packet_support (PACKET_hwbreak_feature) != PACKET_ENABLE)
7268 error (_("Unexpected hwbreak stop reason"));
7269
7270 /* See above. */
8424cc97 7271 p = strchrnul (p1 + 1, ';');
f7e6eed5 7272 }
26d56a93 7273 else if (strprefix (p, p1, "library"))
cea39f65 7274 {
1f10ba14 7275 event->ws.kind = TARGET_WAITKIND_LOADED;
8424cc97 7276 p = strchrnul (p1 + 1, ';');
1f10ba14 7277 }
26d56a93 7278 else if (strprefix (p, p1, "replaylog"))
1f10ba14
PA
7279 {
7280 event->ws.kind = TARGET_WAITKIND_NO_HISTORY;
7281 /* p1 will indicate "begin" or "end", but it makes
7282 no difference for now, so ignore it. */
8424cc97 7283 p = strchrnul (p1 + 1, ';');
1f10ba14 7284 }
26d56a93 7285 else if (strprefix (p, p1, "core"))
1f10ba14
PA
7286 {
7287 ULONGEST c;
a744cf53 7288
1f10ba14
PA
7289 p = unpack_varlen_hex (++p1, &c);
7290 event->core = c;
cea39f65 7291 }
26d56a93 7292 else if (strprefix (p, p1, "fork"))
de0d863e
DB
7293 {
7294 event->ws.value.related_pid = read_ptid (++p1, &p);
7295 event->ws.kind = TARGET_WAITKIND_FORKED;
7296 }
26d56a93 7297 else if (strprefix (p, p1, "vfork"))
c269dbdb
DB
7298 {
7299 event->ws.value.related_pid = read_ptid (++p1, &p);
7300 event->ws.kind = TARGET_WAITKIND_VFORKED;
7301 }
26d56a93 7302 else if (strprefix (p, p1, "vforkdone"))
c269dbdb
DB
7303 {
7304 event->ws.kind = TARGET_WAITKIND_VFORK_DONE;
8424cc97 7305 p = strchrnul (p1 + 1, ';');
c269dbdb 7306 }
6ab24463 7307 else if (strprefix (p, p1, "exec"))
94585166
DB
7308 {
7309 ULONGEST ignored;
94585166
DB
7310 int pathlen;
7311
7312 /* Determine the length of the execd pathname. */
7313 p = unpack_varlen_hex (++p1, &ignored);
7314 pathlen = (p - p1) / 2;
7315
7316 /* Save the pathname for event reporting and for
7317 the next run command. */
c6321f19
TT
7318 gdb::unique_xmalloc_ptr<char[]> pathname
7319 ((char *) xmalloc (pathlen + 1));
7320 hex2bin (p1, (gdb_byte *) pathname.get (), pathlen);
94585166
DB
7321 pathname[pathlen] = '\0';
7322
7323 /* This is freed during event handling. */
c6321f19 7324 event->ws.value.execd_pathname = pathname.release ();
94585166
DB
7325 event->ws.kind = TARGET_WAITKIND_EXECD;
7326
7327 /* Skip the registers included in this packet, since
7328 they may be for an architecture different from the
7329 one used by the original program. */
7330 skipregs = 1;
7331 }
65706a29
PA
7332 else if (strprefix (p, p1, "create"))
7333 {
7334 event->ws.kind = TARGET_WAITKIND_THREAD_CREATED;
8424cc97 7335 p = strchrnul (p1 + 1, ';');
65706a29 7336 }
cea39f65
MS
7337 else
7338 {
1f10ba14 7339 ULONGEST pnum;
256642e8 7340 const char *p_temp;
1f10ba14 7341
94585166
DB
7342 if (skipregs)
7343 {
8424cc97 7344 p = strchrnul (p1 + 1, ';');
94585166
DB
7345 p++;
7346 continue;
7347 }
7348
1f10ba14
PA
7349 /* Maybe a real ``P'' register number. */
7350 p_temp = unpack_varlen_hex (p, &pnum);
7351 /* If the first invalid character is the colon, we got a
7352 register number. Otherwise, it's an unknown stop
7353 reason. */
7354 if (p_temp == p1)
7355 {
5cd63fda
PA
7356 /* If we haven't parsed the event's thread yet, find
7357 it now, in order to find the architecture of the
7358 reported expedited registers. */
7359 if (event->ptid == null_ptid)
7360 {
7361 const char *thr = strstr (p1 + 1, ";thread:");
7362 if (thr != NULL)
7363 event->ptid = read_ptid (thr + strlen (";thread:"),
7364 NULL);
7365 else
3cada740
PA
7366 {
7367 /* Either the current thread hasn't changed,
7368 or the inferior is not multi-threaded.
7369 The event must be for the thread we last
7370 set as (or learned as being) current. */
7371 event->ptid = event->rs->general_thread;
7372 }
5cd63fda
PA
7373 }
7374
7375 if (rsa == NULL)
7376 {
7377 inferior *inf = (event->ptid == null_ptid
7378 ? NULL
7379 : find_inferior_ptid (event->ptid));
7380 /* If this is the first time we learn anything
7381 about this process, skip the registers
7382 included in this packet, since we don't yet
7383 know which architecture to use to parse them.
7384 We'll determine the architecture later when
7385 we process the stop reply and retrieve the
7386 target description, via
7387 remote_notice_new_inferior ->
7388 post_create_inferior. */
7389 if (inf == NULL)
7390 {
7391 p = strchrnul (p1 + 1, ';');
7392 p++;
7393 continue;
7394 }
7395
7396 event->arch = inf->gdbarch;
9d6eea31 7397 rsa = event->rs->get_remote_arch_state (event->arch);
5cd63fda
PA
7398 }
7399
7400 packet_reg *reg
7401 = packet_reg_from_pnum (event->arch, rsa, pnum);
1f10ba14 7402 cached_reg_t cached_reg;
43ff13b4 7403
1f10ba14
PA
7404 if (reg == NULL)
7405 error (_("Remote sent bad register number %s: %s\n\
8a3fe4f8 7406Packet: '%s'\n"),
1f10ba14 7407 hex_string (pnum), p, buf);
c8e38a49 7408
1f10ba14 7409 cached_reg.num = reg->regnum;
d1dff226 7410 cached_reg.data = (gdb_byte *)
5cd63fda 7411 xmalloc (register_size (event->arch, reg->regnum));
4100683b 7412
1f10ba14
PA
7413 p = p1 + 1;
7414 fieldsize = hex2bin (p, cached_reg.data,
5cd63fda 7415 register_size (event->arch, reg->regnum));
1f10ba14 7416 p += 2 * fieldsize;
5cd63fda 7417 if (fieldsize < register_size (event->arch, reg->regnum))
1f10ba14 7418 warning (_("Remote reply is too short: %s"), buf);
74531fed 7419
32603266 7420 event->regcache.push_back (cached_reg);
1f10ba14
PA
7421 }
7422 else
7423 {
7424 /* Not a number. Silently skip unknown optional
7425 info. */
8424cc97 7426 p = strchrnul (p1 + 1, ';');
1f10ba14 7427 }
cea39f65 7428 }
c8e38a49 7429
cea39f65
MS
7430 if (*p != ';')
7431 error (_("Remote register badly formatted: %s\nhere: %s"),
7432 buf, p);
7433 ++p;
7434 }
5b5596ff
PA
7435
7436 if (event->ws.kind != TARGET_WAITKIND_IGNORE)
7437 break;
7438
c8e38a49
PA
7439 /* fall through */
7440 case 'S': /* Old style status, just signal only. */
3a09da41
PA
7441 {
7442 int sig;
7443
7444 event->ws.kind = TARGET_WAITKIND_STOPPED;
7445 sig = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
7446 if (GDB_SIGNAL_FIRST <= sig && sig < GDB_SIGNAL_LAST)
7447 event->ws.value.sig = (enum gdb_signal) sig;
7448 else
7449 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
7450 }
c8e38a49 7451 break;
65706a29
PA
7452 case 'w': /* Thread exited. */
7453 {
65706a29
PA
7454 ULONGEST value;
7455
7456 event->ws.kind = TARGET_WAITKIND_THREAD_EXITED;
7457 p = unpack_varlen_hex (&buf[1], &value);
7458 event->ws.value.integer = value;
7459 if (*p != ';')
7460 error (_("stop reply packet badly formatted: %s"), buf);
974eac9d 7461 event->ptid = read_ptid (++p, NULL);
65706a29
PA
7462 break;
7463 }
c8e38a49
PA
7464 case 'W': /* Target exited. */
7465 case 'X':
7466 {
c8e38a49
PA
7467 int pid;
7468 ULONGEST value;
82f73884 7469
c8e38a49
PA
7470 /* GDB used to accept only 2 hex chars here. Stubs should
7471 only send more if they detect GDB supports multi-process
7472 support. */
7473 p = unpack_varlen_hex (&buf[1], &value);
82f73884 7474
c8e38a49
PA
7475 if (buf[0] == 'W')
7476 {
7477 /* The remote process exited. */
74531fed
PA
7478 event->ws.kind = TARGET_WAITKIND_EXITED;
7479 event->ws.value.integer = value;
c8e38a49
PA
7480 }
7481 else
7482 {
7483 /* The remote process exited with a signal. */
74531fed 7484 event->ws.kind = TARGET_WAITKIND_SIGNALLED;
3a09da41
PA
7485 if (GDB_SIGNAL_FIRST <= value && value < GDB_SIGNAL_LAST)
7486 event->ws.value.sig = (enum gdb_signal) value;
7487 else
7488 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
c8e38a49 7489 }
82f73884 7490
c8e38a49 7491 /* If no process is specified, assume inferior_ptid. */
e99b03dc 7492 pid = inferior_ptid.pid ();
c8e38a49
PA
7493 if (*p == '\0')
7494 ;
7495 else if (*p == ';')
7496 {
7497 p++;
7498
0b24eb2d 7499 if (*p == '\0')
82f73884 7500 ;
61012eef 7501 else if (startswith (p, "process:"))
82f73884 7502 {
c8e38a49 7503 ULONGEST upid;
a744cf53 7504
c8e38a49
PA
7505 p += sizeof ("process:") - 1;
7506 unpack_varlen_hex (p, &upid);
7507 pid = upid;
82f73884
PA
7508 }
7509 else
7510 error (_("unknown stop reply packet: %s"), buf);
43ff13b4 7511 }
c8e38a49
PA
7512 else
7513 error (_("unknown stop reply packet: %s"), buf);
f2907e49 7514 event->ptid = ptid_t (pid);
74531fed
PA
7515 }
7516 break;
f2faf941
PA
7517 case 'N':
7518 event->ws.kind = TARGET_WAITKIND_NO_RESUMED;
7519 event->ptid = minus_one_ptid;
7520 break;
74531fed
PA
7521 }
7522
d7e15655 7523 if (target_is_non_stop_p () && event->ptid == null_ptid)
74531fed
PA
7524 error (_("No process or thread specified in stop reply: %s"), buf);
7525}
7526
722247f1
YQ
7527/* When the stub wants to tell GDB about a new notification reply, it
7528 sends a notification (%Stop, for example). Those can come it at
7529 any time, hence, we have to make sure that any pending
7530 putpkt/getpkt sequence we're making is finished, before querying
7531 the stub for more events with the corresponding ack command
7532 (vStopped, for example). E.g., if we started a vStopped sequence
7533 immediately upon receiving the notification, something like this
7534 could happen:
74531fed
PA
7535
7536 1.1) --> Hg 1
7537 1.2) <-- OK
7538 1.3) --> g
7539 1.4) <-- %Stop
7540 1.5) --> vStopped
7541 1.6) <-- (registers reply to step #1.3)
7542
7543 Obviously, the reply in step #1.6 would be unexpected to a vStopped
7544 query.
7545
796cb314 7546 To solve this, whenever we parse a %Stop notification successfully,
74531fed
PA
7547 we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
7548 doing whatever we were doing:
7549
7550 2.1) --> Hg 1
7551 2.2) <-- OK
7552 2.3) --> g
7553 2.4) <-- %Stop
7554 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
7555 2.5) <-- (registers reply to step #2.3)
7556
7557 Eventualy after step #2.5, we return to the event loop, which
7558 notices there's an event on the
7559 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
7560 associated callback --- the function below. At this point, we're
7561 always safe to start a vStopped sequence. :
7562
7563 2.6) --> vStopped
7564 2.7) <-- T05 thread:2
7565 2.8) --> vStopped
7566 2.9) --> OK
7567*/
7568
722247f1 7569void
6b8edb51 7570remote_target::remote_notif_get_pending_events (notif_client *nc)
74531fed
PA
7571{
7572 struct remote_state *rs = get_remote_state ();
74531fed 7573
f48ff2a7 7574 if (rs->notif_state->pending_event[nc->id] != NULL)
74531fed 7575 {
722247f1
YQ
7576 if (notif_debug)
7577 fprintf_unfiltered (gdb_stdlog,
7578 "notif: process: '%s' ack pending event\n",
7579 nc->name);
74531fed 7580
722247f1 7581 /* acknowledge */
8d64371b
TT
7582 nc->ack (this, nc, rs->buf.data (),
7583 rs->notif_state->pending_event[nc->id]);
f48ff2a7 7584 rs->notif_state->pending_event[nc->id] = NULL;
74531fed
PA
7585
7586 while (1)
7587 {
8d64371b
TT
7588 getpkt (&rs->buf, 0);
7589 if (strcmp (rs->buf.data (), "OK") == 0)
74531fed
PA
7590 break;
7591 else
8d64371b 7592 remote_notif_ack (this, nc, rs->buf.data ());
74531fed
PA
7593 }
7594 }
722247f1
YQ
7595 else
7596 {
7597 if (notif_debug)
7598 fprintf_unfiltered (gdb_stdlog,
7599 "notif: process: '%s' no pending reply\n",
7600 nc->name);
7601 }
74531fed
PA
7602}
7603
6b8edb51
PA
7604/* Wrapper around remote_target::remote_notif_get_pending_events to
7605 avoid having to export the whole remote_target class. */
7606
7607void
7608remote_notif_get_pending_events (remote_target *remote, notif_client *nc)
7609{
7610 remote->remote_notif_get_pending_events (nc);
7611}
7612
74531fed
PA
7613/* Called when it is decided that STOP_REPLY holds the info of the
7614 event that is to be returned to the core. This function always
7615 destroys STOP_REPLY. */
7616
6b8edb51
PA
7617ptid_t
7618remote_target::process_stop_reply (struct stop_reply *stop_reply,
7619 struct target_waitstatus *status)
74531fed
PA
7620{
7621 ptid_t ptid;
7622
7623 *status = stop_reply->ws;
7624 ptid = stop_reply->ptid;
7625
7626 /* If no thread/process was reported by the stub, assume the current
7627 inferior. */
d7e15655 7628 if (ptid == null_ptid)
74531fed
PA
7629 ptid = inferior_ptid;
7630
5f3563ea 7631 if (status->kind != TARGET_WAITKIND_EXITED
f2faf941
PA
7632 && status->kind != TARGET_WAITKIND_SIGNALLED
7633 && status->kind != TARGET_WAITKIND_NO_RESUMED)
74531fed 7634 {
5f3563ea 7635 /* Expedited registers. */
32603266 7636 if (!stop_reply->regcache.empty ())
5f3563ea 7637 {
217f1f79 7638 struct regcache *regcache
5cd63fda 7639 = get_thread_arch_regcache (ptid, stop_reply->arch);
5f3563ea 7640
32603266
TT
7641 for (cached_reg_t &reg : stop_reply->regcache)
7642 {
7643 regcache->raw_supply (reg.num, reg.data);
7644 xfree (reg.data);
7645 }
d1dff226 7646
32603266 7647 stop_reply->regcache.clear ();
5f3563ea 7648 }
74531fed 7649
1941c569 7650 remote_notice_new_inferior (ptid, 0);
7aabaf9d 7651 remote_thread_info *remote_thr = get_remote_thread_info (ptid);
799a2abe
PA
7652 remote_thr->core = stop_reply->core;
7653 remote_thr->stop_reason = stop_reply->stop_reason;
7654 remote_thr->watch_data_address = stop_reply->watch_data_address;
85ad3aaf 7655 remote_thr->vcont_resumed = 0;
74531fed
PA
7656 }
7657
32603266 7658 delete stop_reply;
74531fed
PA
7659 return ptid;
7660}
7661
7662/* The non-stop mode version of target_wait. */
7663
6b8edb51
PA
7664ptid_t
7665remote_target::wait_ns (ptid_t ptid, struct target_waitstatus *status, int options)
74531fed
PA
7666{
7667 struct remote_state *rs = get_remote_state ();
74531fed
PA
7668 struct stop_reply *stop_reply;
7669 int ret;
fee9eda9 7670 int is_notif = 0;
74531fed
PA
7671
7672 /* If in non-stop mode, get out of getpkt even if a
7673 notification is received. */
7674
8d64371b 7675 ret = getpkt_or_notif_sane (&rs->buf, 0 /* forever */, &is_notif);
74531fed
PA
7676 while (1)
7677 {
fee9eda9 7678 if (ret != -1 && !is_notif)
74531fed
PA
7679 switch (rs->buf[0])
7680 {
7681 case 'E': /* Error of some sort. */
7682 /* We're out of sync with the target now. Did it continue
7683 or not? We can't tell which thread it was in non-stop,
7684 so just ignore this. */
8d64371b 7685 warning (_("Remote failure reply: %s"), rs->buf.data ());
74531fed
PA
7686 break;
7687 case 'O': /* Console output. */
8d64371b 7688 remote_console_output (&rs->buf[1]);
74531fed
PA
7689 break;
7690 default:
8d64371b 7691 warning (_("Invalid remote reply: %s"), rs->buf.data ());
74531fed
PA
7692 break;
7693 }
7694
7695 /* Acknowledge a pending stop reply that may have arrived in the
7696 mean time. */
f48ff2a7 7697 if (rs->notif_state->pending_event[notif_client_stop.id] != NULL)
722247f1 7698 remote_notif_get_pending_events (&notif_client_stop);
74531fed
PA
7699
7700 /* If indeed we noticed a stop reply, we're done. */
7701 stop_reply = queued_stop_reply (ptid);
7702 if (stop_reply != NULL)
7703 return process_stop_reply (stop_reply, status);
7704
47608cb1 7705 /* Still no event. If we're just polling for an event, then
74531fed 7706 return to the event loop. */
47608cb1 7707 if (options & TARGET_WNOHANG)
74531fed
PA
7708 {
7709 status->kind = TARGET_WAITKIND_IGNORE;
7710 return minus_one_ptid;
7711 }
7712
47608cb1 7713 /* Otherwise do a blocking wait. */
8d64371b 7714 ret = getpkt_or_notif_sane (&rs->buf, 1 /* forever */, &is_notif);
74531fed
PA
7715 }
7716}
7717
7718/* Wait until the remote machine stops, then return, storing status in
7719 STATUS just as `wait' would. */
7720
6b8edb51
PA
7721ptid_t
7722remote_target::wait_as (ptid_t ptid, target_waitstatus *status, int options)
74531fed
PA
7723{
7724 struct remote_state *rs = get_remote_state ();
74531fed 7725 ptid_t event_ptid = null_ptid;
cea39f65 7726 char *buf;
74531fed
PA
7727 struct stop_reply *stop_reply;
7728
47608cb1
PA
7729 again:
7730
74531fed
PA
7731 status->kind = TARGET_WAITKIND_IGNORE;
7732 status->value.integer = 0;
7733
7734 stop_reply = queued_stop_reply (ptid);
7735 if (stop_reply != NULL)
7736 return process_stop_reply (stop_reply, status);
7737
7738 if (rs->cached_wait_status)
7739 /* Use the cached wait status, but only once. */
7740 rs->cached_wait_status = 0;
7741 else
7742 {
7743 int ret;
722247f1 7744 int is_notif;
567420d1 7745 int forever = ((options & TARGET_WNOHANG) == 0
6b8edb51 7746 && rs->wait_forever_enabled_p);
567420d1
PA
7747
7748 if (!rs->waiting_for_stop_reply)
7749 {
7750 status->kind = TARGET_WAITKIND_NO_RESUMED;
7751 return minus_one_ptid;
7752 }
74531fed 7753
74531fed
PA
7754 /* FIXME: cagney/1999-09-27: If we're in async mode we should
7755 _never_ wait for ever -> test on target_is_async_p().
7756 However, before we do that we need to ensure that the caller
7757 knows how to take the target into/out of async mode. */
8d64371b 7758 ret = getpkt_or_notif_sane (&rs->buf, forever, &is_notif);
722247f1
YQ
7759
7760 /* GDB gets a notification. Return to core as this event is
7761 not interesting. */
7762 if (ret != -1 && is_notif)
7763 return minus_one_ptid;
567420d1
PA
7764
7765 if (ret == -1 && (options & TARGET_WNOHANG) != 0)
7766 return minus_one_ptid;
74531fed
PA
7767 }
7768
8d64371b 7769 buf = rs->buf.data ();
74531fed 7770
3a29589a
DJ
7771 /* Assume that the target has acknowledged Ctrl-C unless we receive
7772 an 'F' or 'O' packet. */
7773 if (buf[0] != 'F' && buf[0] != 'O')
7774 rs->ctrlc_pending_p = 0;
7775
74531fed
PA
7776 switch (buf[0])
7777 {
7778 case 'E': /* Error of some sort. */
7779 /* We're out of sync with the target now. Did it continue or
7780 not? Not is more likely, so report a stop. */
29090fb6
LM
7781 rs->waiting_for_stop_reply = 0;
7782
74531fed
PA
7783 warning (_("Remote failure reply: %s"), buf);
7784 status->kind = TARGET_WAITKIND_STOPPED;
a493e3e2 7785 status->value.sig = GDB_SIGNAL_0;
74531fed
PA
7786 break;
7787 case 'F': /* File-I/O request. */
e42e5352
YQ
7788 /* GDB may access the inferior memory while handling the File-I/O
7789 request, but we don't want GDB accessing memory while waiting
7790 for a stop reply. See the comments in putpkt_binary. Set
7791 waiting_for_stop_reply to 0 temporarily. */
7792 rs->waiting_for_stop_reply = 0;
6b8edb51 7793 remote_fileio_request (this, buf, rs->ctrlc_pending_p);
3a29589a 7794 rs->ctrlc_pending_p = 0;
e42e5352
YQ
7795 /* GDB handled the File-I/O request, and the target is running
7796 again. Keep waiting for events. */
7797 rs->waiting_for_stop_reply = 1;
74531fed 7798 break;
f2faf941 7799 case 'N': case 'T': case 'S': case 'X': case 'W':
74531fed 7800 {
29090fb6
LM
7801 /* There is a stop reply to handle. */
7802 rs->waiting_for_stop_reply = 0;
7803
7804 stop_reply
6b8edb51
PA
7805 = (struct stop_reply *) remote_notif_parse (this,
7806 &notif_client_stop,
8d64371b 7807 rs->buf.data ());
74531fed 7808
74531fed 7809 event_ptid = process_stop_reply (stop_reply, status);
c8e38a49
PA
7810 break;
7811 }
7812 case 'O': /* Console output. */
7813 remote_console_output (buf + 1);
c8e38a49
PA
7814 break;
7815 case '\0':
b73be471 7816 if (rs->last_sent_signal != GDB_SIGNAL_0)
c8e38a49
PA
7817 {
7818 /* Zero length reply means that we tried 'S' or 'C' and the
7819 remote system doesn't support it. */
223ffa71 7820 target_terminal::ours_for_output ();
c8e38a49
PA
7821 printf_filtered
7822 ("Can't send signals to this remote system. %s not sent.\n",
b73be471
TT
7823 gdb_signal_to_name (rs->last_sent_signal));
7824 rs->last_sent_signal = GDB_SIGNAL_0;
223ffa71 7825 target_terminal::inferior ();
c8e38a49 7826
f5c4fcd9
TT
7827 strcpy (buf, rs->last_sent_step ? "s" : "c");
7828 putpkt (buf);
c8e38a49 7829 break;
43ff13b4 7830 }
86a73007 7831 /* fallthrough */
c8e38a49
PA
7832 default:
7833 warning (_("Invalid remote reply: %s"), buf);
c8e38a49 7834 break;
43ff13b4 7835 }
c8e38a49 7836
f2faf941
PA
7837 if (status->kind == TARGET_WAITKIND_NO_RESUMED)
7838 return minus_one_ptid;
7839 else if (status->kind == TARGET_WAITKIND_IGNORE)
47608cb1
PA
7840 {
7841 /* Nothing interesting happened. If we're doing a non-blocking
7842 poll, we're done. Otherwise, go back to waiting. */
7843 if (options & TARGET_WNOHANG)
7844 return minus_one_ptid;
7845 else
7846 goto again;
7847 }
74531fed
PA
7848 else if (status->kind != TARGET_WAITKIND_EXITED
7849 && status->kind != TARGET_WAITKIND_SIGNALLED)
82f73884 7850 {
d7e15655 7851 if (event_ptid != null_ptid)
47f8a51d 7852 record_currthread (rs, event_ptid);
82f73884
PA
7853 else
7854 event_ptid = inferior_ptid;
43ff13b4 7855 }
74531fed
PA
7856 else
7857 /* A process exit. Invalidate our notion of current thread. */
47f8a51d 7858 record_currthread (rs, minus_one_ptid);
79d7f229 7859
82f73884 7860 return event_ptid;
43ff13b4
JM
7861}
7862
74531fed
PA
7863/* Wait until the remote machine stops, then return, storing status in
7864 STATUS just as `wait' would. */
7865
f6ac5f3d
PA
7866ptid_t
7867remote_target::wait (ptid_t ptid, struct target_waitstatus *status, int options)
c8e38a49
PA
7868{
7869 ptid_t event_ptid;
7870
6efcd9a8 7871 if (target_is_non_stop_p ())
6b8edb51 7872 event_ptid = wait_ns (ptid, status, options);
74531fed 7873 else
6b8edb51 7874 event_ptid = wait_as (ptid, status, options);
c8e38a49 7875
d9d41e78 7876 if (target_is_async_p ())
c8e38a49 7877 {
6b8edb51
PA
7878 remote_state *rs = get_remote_state ();
7879
74531fed
PA
7880 /* If there are are events left in the queue tell the event loop
7881 to return here. */
953edf2b 7882 if (!rs->stop_reply_queue.empty ())
6b8edb51 7883 mark_async_event_handler (rs->remote_async_inferior_event_token);
c8e38a49 7884 }
c8e38a49
PA
7885
7886 return event_ptid;
7887}
7888
74ca34ce 7889/* Fetch a single register using a 'p' packet. */
c906108c 7890
6b8edb51
PA
7891int
7892remote_target::fetch_register_using_p (struct regcache *regcache,
7893 packet_reg *reg)
b96ec7ac 7894{
ac7936df 7895 struct gdbarch *gdbarch = regcache->arch ();
b96ec7ac 7896 struct remote_state *rs = get_remote_state ();
2e9f7625 7897 char *buf, *p;
9890e433 7898 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
b96ec7ac
AC
7899 int i;
7900
4082afcc 7901 if (packet_support (PACKET_p) == PACKET_DISABLE)
74ca34ce
DJ
7902 return 0;
7903
7904 if (reg->pnum == -1)
7905 return 0;
7906
8d64371b 7907 p = rs->buf.data ();
fcad0fa4 7908 *p++ = 'p';
74ca34ce 7909 p += hexnumstr (p, reg->pnum);
fcad0fa4 7910 *p++ = '\0';
1f4437a4 7911 putpkt (rs->buf);
8d64371b 7912 getpkt (&rs->buf, 0);
3f9a994c 7913
8d64371b 7914 buf = rs->buf.data ();
2e9f7625 7915
8d64371b 7916 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_p]))
74ca34ce
DJ
7917 {
7918 case PACKET_OK:
7919 break;
7920 case PACKET_UNKNOWN:
7921 return 0;
7922 case PACKET_ERROR:
27a9c0bf 7923 error (_("Could not fetch register \"%s\"; remote failure reply '%s'"),
ac7936df 7924 gdbarch_register_name (regcache->arch (),
27a9c0bf
MS
7925 reg->regnum),
7926 buf);
74ca34ce 7927 }
3f9a994c
JB
7928
7929 /* If this register is unfetchable, tell the regcache. */
7930 if (buf[0] == 'x')
8480adf2 7931 {
73e1c03f 7932 regcache->raw_supply (reg->regnum, NULL);
8480adf2 7933 return 1;
b96ec7ac 7934 }
b96ec7ac 7935
3f9a994c
JB
7936 /* Otherwise, parse and supply the value. */
7937 p = buf;
7938 i = 0;
7939 while (p[0] != 0)
7940 {
7941 if (p[1] == 0)
74ca34ce 7942 error (_("fetch_register_using_p: early buf termination"));
3f9a994c
JB
7943
7944 regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
7945 p += 2;
7946 }
73e1c03f 7947 regcache->raw_supply (reg->regnum, regp);
3f9a994c 7948 return 1;
b96ec7ac
AC
7949}
7950
74ca34ce
DJ
7951/* Fetch the registers included in the target's 'g' packet. */
7952
6b8edb51
PA
7953int
7954remote_target::send_g_packet ()
c906108c 7955{
d01949b6 7956 struct remote_state *rs = get_remote_state ();
cea39f65 7957 int buf_len;
c906108c 7958
8d64371b 7959 xsnprintf (rs->buf.data (), get_remote_packet_size (), "g");
b75abf5b 7960 putpkt (rs->buf);
8d64371b 7961 getpkt (&rs->buf, 0);
b75abf5b
AK
7962 if (packet_check_result (rs->buf) == PACKET_ERROR)
7963 error (_("Could not read registers; remote failure reply '%s'"),
8d64371b 7964 rs->buf.data ());
c906108c 7965
29709017
DJ
7966 /* We can get out of synch in various cases. If the first character
7967 in the buffer is not a hex character, assume that has happened
7968 and try to fetch another packet to read. */
7969 while ((rs->buf[0] < '0' || rs->buf[0] > '9')
7970 && (rs->buf[0] < 'A' || rs->buf[0] > 'F')
7971 && (rs->buf[0] < 'a' || rs->buf[0] > 'f')
7972 && rs->buf[0] != 'x') /* New: unavailable register value. */
7973 {
7974 if (remote_debug)
7975 fprintf_unfiltered (gdb_stdlog,
7976 "Bad register packet; fetching a new packet\n");
8d64371b 7977 getpkt (&rs->buf, 0);
29709017
DJ
7978 }
7979
8d64371b 7980 buf_len = strlen (rs->buf.data ());
74ca34ce
DJ
7981
7982 /* Sanity check the received packet. */
7983 if (buf_len % 2 != 0)
8d64371b 7984 error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf.data ());
29709017
DJ
7985
7986 return buf_len / 2;
7987}
7988
6b8edb51
PA
7989void
7990remote_target::process_g_packet (struct regcache *regcache)
29709017 7991{
ac7936df 7992 struct gdbarch *gdbarch = regcache->arch ();
29709017 7993 struct remote_state *rs = get_remote_state ();
9d6eea31 7994 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
29709017
DJ
7995 int i, buf_len;
7996 char *p;
7997 char *regs;
7998
8d64371b 7999 buf_len = strlen (rs->buf.data ());
29709017
DJ
8000
8001 /* Further sanity checks, with knowledge of the architecture. */
74ca34ce 8002 if (buf_len > 2 * rsa->sizeof_g_packet)
fc809827 8003 error (_("Remote 'g' packet reply is too long (expected %ld bytes, got %d "
8d64371b
TT
8004 "bytes): %s"),
8005 rsa->sizeof_g_packet, buf_len / 2,
8006 rs->buf.data ());
74ca34ce
DJ
8007
8008 /* Save the size of the packet sent to us by the target. It is used
8009 as a heuristic when determining the max size of packets that the
8010 target can safely receive. */
8011 if (rsa->actual_register_packet_size == 0)
8012 rsa->actual_register_packet_size = buf_len;
8013
8014 /* If this is smaller than we guessed the 'g' packet would be,
8015 update our records. A 'g' reply that doesn't include a register's
8016 value implies either that the register is not available, or that
8017 the 'p' packet must be used. */
8018 if (buf_len < 2 * rsa->sizeof_g_packet)
b323314b 8019 {
9dc193c3 8020 long sizeof_g_packet = buf_len / 2;
74ca34ce 8021
4a22f64d 8022 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
b96ec7ac 8023 {
9dc193c3
LF
8024 long offset = rsa->regs[i].offset;
8025 long reg_size = register_size (gdbarch, i);
8026
74ca34ce
DJ
8027 if (rsa->regs[i].pnum == -1)
8028 continue;
8029
9dc193c3 8030 if (offset >= sizeof_g_packet)
74ca34ce 8031 rsa->regs[i].in_g_packet = 0;
9dc193c3
LF
8032 else if (offset + reg_size > sizeof_g_packet)
8033 error (_("Truncated register %d in remote 'g' packet"), i);
b96ec7ac 8034 else
74ca34ce 8035 rsa->regs[i].in_g_packet = 1;
b96ec7ac 8036 }
9dc193c3
LF
8037
8038 /* Looks valid enough, we can assume this is the correct length
8039 for a 'g' packet. It's important not to adjust
8040 rsa->sizeof_g_packet if we have truncated registers otherwise
8041 this "if" won't be run the next time the method is called
8042 with a packet of the same size and one of the internal errors
8043 below will trigger instead. */
8044 rsa->sizeof_g_packet = sizeof_g_packet;
74ca34ce 8045 }
b323314b 8046
224c3ddb 8047 regs = (char *) alloca (rsa->sizeof_g_packet);
c906108c
SS
8048
8049 /* Unimplemented registers read as all bits zero. */
ea9c271d 8050 memset (regs, 0, rsa->sizeof_g_packet);
c906108c 8051
c906108c
SS
8052 /* Reply describes registers byte by byte, each byte encoded as two
8053 hex characters. Suck them all up, then supply them to the
8054 register cacheing/storage mechanism. */
8055
8d64371b 8056 p = rs->buf.data ();
ea9c271d 8057 for (i = 0; i < rsa->sizeof_g_packet; i++)
c906108c 8058 {
74ca34ce
DJ
8059 if (p[0] == 0 || p[1] == 0)
8060 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
8061 internal_error (__FILE__, __LINE__,
9b20d036 8062 _("unexpected end of 'g' packet reply"));
74ca34ce 8063
c906108c 8064 if (p[0] == 'x' && p[1] == 'x')
c5aa993b 8065 regs[i] = 0; /* 'x' */
c906108c
SS
8066 else
8067 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
8068 p += 2;
8069 }
8070
a744cf53
MS
8071 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
8072 {
8073 struct packet_reg *r = &rsa->regs[i];
9dc193c3 8074 long reg_size = register_size (gdbarch, i);
a744cf53
MS
8075
8076 if (r->in_g_packet)
8077 {
8d64371b 8078 if ((r->offset + reg_size) * 2 > strlen (rs->buf.data ()))
a744cf53
MS
8079 /* This shouldn't happen - we adjusted in_g_packet above. */
8080 internal_error (__FILE__, __LINE__,
9b20d036 8081 _("unexpected end of 'g' packet reply"));
a744cf53
MS
8082 else if (rs->buf[r->offset * 2] == 'x')
8083 {
8d64371b 8084 gdb_assert (r->offset * 2 < strlen (rs->buf.data ()));
a744cf53
MS
8085 /* The register isn't available, mark it as such (at
8086 the same time setting the value to zero). */
73e1c03f 8087 regcache->raw_supply (r->regnum, NULL);
a744cf53
MS
8088 }
8089 else
73e1c03f 8090 regcache->raw_supply (r->regnum, regs + r->offset);
a744cf53
MS
8091 }
8092 }
c906108c
SS
8093}
8094
6b8edb51
PA
8095void
8096remote_target::fetch_registers_using_g (struct regcache *regcache)
29709017
DJ
8097{
8098 send_g_packet ();
56be3814 8099 process_g_packet (regcache);
29709017
DJ
8100}
8101
e6e4e701
PA
8102/* Make the remote selected traceframe match GDB's selected
8103 traceframe. */
8104
6b8edb51
PA
8105void
8106remote_target::set_remote_traceframe ()
e6e4e701
PA
8107{
8108 int newnum;
262e1174 8109 struct remote_state *rs = get_remote_state ();
e6e4e701 8110
262e1174 8111 if (rs->remote_traceframe_number == get_traceframe_number ())
e6e4e701
PA
8112 return;
8113
8114 /* Avoid recursion, remote_trace_find calls us again. */
262e1174 8115 rs->remote_traceframe_number = get_traceframe_number ();
e6e4e701
PA
8116
8117 newnum = target_trace_find (tfind_number,
8118 get_traceframe_number (), 0, 0, NULL);
8119
8120 /* Should not happen. If it does, all bets are off. */
8121 if (newnum != get_traceframe_number ())
8122 warning (_("could not set remote traceframe"));
8123}
8124
f6ac5f3d
PA
8125void
8126remote_target::fetch_registers (struct regcache *regcache, int regnum)
74ca34ce 8127{
ac7936df 8128 struct gdbarch *gdbarch = regcache->arch ();
9d6eea31
PA
8129 struct remote_state *rs = get_remote_state ();
8130 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
74ca34ce
DJ
8131 int i;
8132
e6e4e701 8133 set_remote_traceframe ();
222312d3 8134 set_general_thread (regcache->ptid ());
74ca34ce
DJ
8135
8136 if (regnum >= 0)
8137 {
5cd63fda 8138 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
a744cf53 8139
74ca34ce
DJ
8140 gdb_assert (reg != NULL);
8141
8142 /* If this register might be in the 'g' packet, try that first -
8143 we are likely to read more than one register. If this is the
8144 first 'g' packet, we might be overly optimistic about its
8145 contents, so fall back to 'p'. */
8146 if (reg->in_g_packet)
8147 {
56be3814 8148 fetch_registers_using_g (regcache);
74ca34ce
DJ
8149 if (reg->in_g_packet)
8150 return;
8151 }
8152
56be3814 8153 if (fetch_register_using_p (regcache, reg))
74ca34ce
DJ
8154 return;
8155
8156 /* This register is not available. */
73e1c03f 8157 regcache->raw_supply (reg->regnum, NULL);
74ca34ce
DJ
8158
8159 return;
8160 }
8161
56be3814 8162 fetch_registers_using_g (regcache);
74ca34ce 8163
5cd63fda 8164 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
74ca34ce 8165 if (!rsa->regs[i].in_g_packet)
56be3814 8166 if (!fetch_register_using_p (regcache, &rsa->regs[i]))
74ca34ce
DJ
8167 {
8168 /* This register is not available. */
73e1c03f 8169 regcache->raw_supply (i, NULL);
74ca34ce
DJ
8170 }
8171}
8172
c906108c
SS
8173/* Prepare to store registers. Since we may send them all (using a
8174 'G' request), we have to read out the ones we don't want to change
8175 first. */
8176
f6ac5f3d
PA
8177void
8178remote_target::prepare_to_store (struct regcache *regcache)
c906108c 8179{
9d6eea31
PA
8180 struct remote_state *rs = get_remote_state ();
8181 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
cf0e1e0d 8182 int i;
cf0e1e0d 8183
c906108c 8184 /* Make sure the entire registers array is valid. */
4082afcc 8185 switch (packet_support (PACKET_P))
5a2468f5
JM
8186 {
8187 case PACKET_DISABLE:
8188 case PACKET_SUPPORT_UNKNOWN:
cf0e1e0d 8189 /* Make sure all the necessary registers are cached. */
ac7936df 8190 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
ea9c271d 8191 if (rsa->regs[i].in_g_packet)
0b47d985 8192 regcache->raw_update (rsa->regs[i].regnum);
5a2468f5
JM
8193 break;
8194 case PACKET_ENABLE:
8195 break;
8196 }
8197}
8198
ad10f812 8199/* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
23860348 8200 packet was not recognized. */
5a2468f5 8201
6b8edb51
PA
8202int
8203remote_target::store_register_using_P (const struct regcache *regcache,
8204 packet_reg *reg)
5a2468f5 8205{
ac7936df 8206 struct gdbarch *gdbarch = regcache->arch ();
d01949b6 8207 struct remote_state *rs = get_remote_state ();
5a2468f5 8208 /* Try storing a single register. */
8d64371b 8209 char *buf = rs->buf.data ();
9890e433 8210 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
5a2468f5 8211 char *p;
5a2468f5 8212
4082afcc 8213 if (packet_support (PACKET_P) == PACKET_DISABLE)
74ca34ce
DJ
8214 return 0;
8215
8216 if (reg->pnum == -1)
8217 return 0;
8218
ea9c271d 8219 xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
5a2468f5 8220 p = buf + strlen (buf);
34a79281 8221 regcache->raw_collect (reg->regnum, regp);
4a22f64d 8222 bin2hex (regp, p, register_size (gdbarch, reg->regnum));
1f4437a4 8223 putpkt (rs->buf);
8d64371b 8224 getpkt (&rs->buf, 0);
5a2468f5 8225
74ca34ce
DJ
8226 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P]))
8227 {
8228 case PACKET_OK:
8229 return 1;
8230 case PACKET_ERROR:
27a9c0bf 8231 error (_("Could not write register \"%s\"; remote failure reply '%s'"),
8d64371b 8232 gdbarch_register_name (gdbarch, reg->regnum), rs->buf.data ());
74ca34ce
DJ
8233 case PACKET_UNKNOWN:
8234 return 0;
8235 default:
8236 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
8237 }
c906108c
SS
8238}
8239
23860348
MS
8240/* Store register REGNUM, or all registers if REGNUM == -1, from the
8241 contents of the register cache buffer. FIXME: ignores errors. */
c906108c 8242
6b8edb51
PA
8243void
8244remote_target::store_registers_using_G (const struct regcache *regcache)
c906108c 8245{
d01949b6 8246 struct remote_state *rs = get_remote_state ();
9d6eea31 8247 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
cfd77fa1 8248 gdb_byte *regs;
c906108c
SS
8249 char *p;
8250
193cb69f
AC
8251 /* Extract all the registers in the regcache copying them into a
8252 local buffer. */
8253 {
b323314b 8254 int i;
a744cf53 8255
224c3ddb 8256 regs = (gdb_byte *) alloca (rsa->sizeof_g_packet);
ea9c271d 8257 memset (regs, 0, rsa->sizeof_g_packet);
ac7936df 8258 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
193cb69f 8259 {
ea9c271d 8260 struct packet_reg *r = &rsa->regs[i];
a744cf53 8261
b323314b 8262 if (r->in_g_packet)
34a79281 8263 regcache->raw_collect (r->regnum, regs + r->offset);
193cb69f
AC
8264 }
8265 }
c906108c
SS
8266
8267 /* Command describes registers byte by byte,
8268 each byte encoded as two hex characters. */
8d64371b 8269 p = rs->buf.data ();
193cb69f 8270 *p++ = 'G';
74ca34ce 8271 bin2hex (regs, p, rsa->sizeof_g_packet);
1f4437a4 8272 putpkt (rs->buf);
8d64371b 8273 getpkt (&rs->buf, 0);
1f4437a4 8274 if (packet_check_result (rs->buf) == PACKET_ERROR)
27a9c0bf 8275 error (_("Could not write registers; remote failure reply '%s'"),
8d64371b 8276 rs->buf.data ());
c906108c 8277}
74ca34ce
DJ
8278
8279/* Store register REGNUM, or all registers if REGNUM == -1, from the contents
8280 of the register cache buffer. FIXME: ignores errors. */
8281
f6ac5f3d
PA
8282void
8283remote_target::store_registers (struct regcache *regcache, int regnum)
74ca34ce 8284{
5cd63fda 8285 struct gdbarch *gdbarch = regcache->arch ();
9d6eea31
PA
8286 struct remote_state *rs = get_remote_state ();
8287 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
74ca34ce
DJ
8288 int i;
8289
e6e4e701 8290 set_remote_traceframe ();
222312d3 8291 set_general_thread (regcache->ptid ());
74ca34ce
DJ
8292
8293 if (regnum >= 0)
8294 {
5cd63fda 8295 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
a744cf53 8296
74ca34ce
DJ
8297 gdb_assert (reg != NULL);
8298
8299 /* Always prefer to store registers using the 'P' packet if
8300 possible; we often change only a small number of registers.
8301 Sometimes we change a larger number; we'd need help from a
8302 higher layer to know to use 'G'. */
56be3814 8303 if (store_register_using_P (regcache, reg))
74ca34ce
DJ
8304 return;
8305
8306 /* For now, don't complain if we have no way to write the
8307 register. GDB loses track of unavailable registers too
8308 easily. Some day, this may be an error. We don't have
0df8b418 8309 any way to read the register, either... */
74ca34ce
DJ
8310 if (!reg->in_g_packet)
8311 return;
8312
56be3814 8313 store_registers_using_G (regcache);
74ca34ce
DJ
8314 return;
8315 }
8316
56be3814 8317 store_registers_using_G (regcache);
74ca34ce 8318
5cd63fda 8319 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
74ca34ce 8320 if (!rsa->regs[i].in_g_packet)
56be3814 8321 if (!store_register_using_P (regcache, &rsa->regs[i]))
74ca34ce
DJ
8322 /* See above for why we do not issue an error here. */
8323 continue;
8324}
c906108c
SS
8325\f
8326
8327/* Return the number of hex digits in num. */
8328
8329static int
fba45db2 8330hexnumlen (ULONGEST num)
c906108c
SS
8331{
8332 int i;
8333
8334 for (i = 0; num != 0; i++)
8335 num >>= 4;
8336
325fac50 8337 return std::max (i, 1);
c906108c
SS
8338}
8339
2df3850c 8340/* Set BUF to the minimum number of hex digits representing NUM. */
c906108c
SS
8341
8342static int
fba45db2 8343hexnumstr (char *buf, ULONGEST num)
c906108c 8344{
c906108c 8345 int len = hexnumlen (num);
a744cf53 8346
2df3850c
JM
8347 return hexnumnstr (buf, num, len);
8348}
8349
c906108c 8350
2df3850c 8351/* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
c906108c 8352
2df3850c 8353static int
fba45db2 8354hexnumnstr (char *buf, ULONGEST num, int width)
2df3850c
JM
8355{
8356 int i;
8357
8358 buf[width] = '\0';
8359
8360 for (i = width - 1; i >= 0; i--)
c906108c 8361 {
c5aa993b 8362 buf[i] = "0123456789abcdef"[(num & 0xf)];
c906108c
SS
8363 num >>= 4;
8364 }
8365
2df3850c 8366 return width;
c906108c
SS
8367}
8368
23860348 8369/* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
c906108c
SS
8370
8371static CORE_ADDR
fba45db2 8372remote_address_masked (CORE_ADDR addr)
c906108c 8373{
883b9c6c 8374 unsigned int address_size = remote_address_size;
a744cf53 8375
911c95a5
UW
8376 /* If "remoteaddresssize" was not set, default to target address size. */
8377 if (!address_size)
f5656ead 8378 address_size = gdbarch_addr_bit (target_gdbarch ());
911c95a5
UW
8379
8380 if (address_size > 0
8381 && address_size < (sizeof (ULONGEST) * 8))
c906108c
SS
8382 {
8383 /* Only create a mask when that mask can safely be constructed
23860348 8384 in a ULONGEST variable. */
c906108c 8385 ULONGEST mask = 1;
a744cf53 8386
911c95a5 8387 mask = (mask << address_size) - 1;
c906108c
SS
8388 addr &= mask;
8389 }
8390 return addr;
8391}
8392
8393/* Determine whether the remote target supports binary downloading.
8394 This is accomplished by sending a no-op memory write of zero length
8395 to the target at the specified address. It does not suffice to send
23860348
MS
8396 the whole packet, since many stubs strip the eighth bit and
8397 subsequently compute a wrong checksum, which causes real havoc with
8398 remote_write_bytes.
7a292a7a 8399
96baa820 8400 NOTE: This can still lose if the serial line is not eight-bit
0df8b418 8401 clean. In cases like this, the user should clear "remote
23860348 8402 X-packet". */
96baa820 8403
6b8edb51
PA
8404void
8405remote_target::check_binary_download (CORE_ADDR addr)
c906108c 8406{
d01949b6 8407 struct remote_state *rs = get_remote_state ();
24b06219 8408
4082afcc 8409 switch (packet_support (PACKET_X))
c906108c 8410 {
96baa820
JM
8411 case PACKET_DISABLE:
8412 break;
8413 case PACKET_ENABLE:
8414 break;
8415 case PACKET_SUPPORT_UNKNOWN:
8416 {
96baa820 8417 char *p;
802188a7 8418
8d64371b 8419 p = rs->buf.data ();
96baa820
JM
8420 *p++ = 'X';
8421 p += hexnumstr (p, (ULONGEST) addr);
8422 *p++ = ',';
8423 p += hexnumstr (p, (ULONGEST) 0);
8424 *p++ = ':';
8425 *p = '\0';
802188a7 8426
8d64371b
TT
8427 putpkt_binary (rs->buf.data (), (int) (p - rs->buf.data ()));
8428 getpkt (&rs->buf, 0);
c906108c 8429
2e9f7625 8430 if (rs->buf[0] == '\0')
96baa820
JM
8431 {
8432 if (remote_debug)
8433 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
8434 "binary downloading NOT "
8435 "supported by target\n");
444abaca 8436 remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
96baa820
JM
8437 }
8438 else
8439 {
8440 if (remote_debug)
8441 fprintf_unfiltered (gdb_stdlog,
64b9b334 8442 "binary downloading supported by target\n");
444abaca 8443 remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
96baa820
JM
8444 }
8445 break;
8446 }
c906108c
SS
8447 }
8448}
8449
124e13d9
SM
8450/* Helper function to resize the payload in order to try to get a good
8451 alignment. We try to write an amount of data such that the next write will
8452 start on an address aligned on REMOTE_ALIGN_WRITES. */
8453
8454static int
8455align_for_efficient_write (int todo, CORE_ADDR memaddr)
8456{
8457 return ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr;
8458}
8459
c906108c
SS
8460/* Write memory data directly to the remote machine.
8461 This does not inform the data cache; the data cache uses this.
a76d924d 8462 HEADER is the starting part of the packet.
c906108c
SS
8463 MEMADDR is the address in the remote memory space.
8464 MYADDR is the address of the buffer in our space.
124e13d9
SM
8465 LEN_UNITS is the number of addressable units to write.
8466 UNIT_SIZE is the length in bytes of an addressable unit.
a76d924d
DJ
8467 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
8468 should send data as binary ('X'), or hex-encoded ('M').
8469
8470 The function creates packet of the form
8471 <HEADER><ADDRESS>,<LENGTH>:<DATA>
8472
124e13d9 8473 where encoding of <DATA> is terminated by PACKET_FORMAT.
a76d924d
DJ
8474
8475 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
8476 are omitted.
8477
9b409511 8478 Return the transferred status, error or OK (an
124e13d9
SM
8479 'enum target_xfer_status' value). Save the number of addressable units
8480 transferred in *XFERED_LEN_UNITS. Only transfer a single packet.
8481
8482 On a platform with an addressable memory size of 2 bytes (UNIT_SIZE == 2), an
8483 exchange between gdb and the stub could look like (?? in place of the
8484 checksum):
8485
8486 -> $m1000,4#??
8487 <- aaaabbbbccccdddd
8488
8489 -> $M1000,3:eeeeffffeeee#??
8490 <- OK
8491
8492 -> $m1000,4#??
8493 <- eeeeffffeeeedddd */
c906108c 8494
6b8edb51
PA
8495target_xfer_status
8496remote_target::remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
8497 const gdb_byte *myaddr,
8498 ULONGEST len_units,
8499 int unit_size,
8500 ULONGEST *xfered_len_units,
8501 char packet_format, int use_length)
c906108c 8502{
6d820c5c 8503 struct remote_state *rs = get_remote_state ();
cfd77fa1 8504 char *p;
a76d924d
DJ
8505 char *plen = NULL;
8506 int plenlen = 0;
124e13d9
SM
8507 int todo_units;
8508 int units_written;
8509 int payload_capacity_bytes;
8510 int payload_length_bytes;
a76d924d
DJ
8511
8512 if (packet_format != 'X' && packet_format != 'M')
8513 internal_error (__FILE__, __LINE__,
9b20d036 8514 _("remote_write_bytes_aux: bad packet format"));
c906108c 8515
124e13d9 8516 if (len_units == 0)
9b409511 8517 return TARGET_XFER_EOF;
b2182ed2 8518
124e13d9 8519 payload_capacity_bytes = get_memory_write_packet_size ();
2bc416ba 8520
6d820c5c
DJ
8521 /* The packet buffer will be large enough for the payload;
8522 get_memory_packet_size ensures this. */
a76d924d 8523 rs->buf[0] = '\0';
c906108c 8524
a257b5bb 8525 /* Compute the size of the actual payload by subtracting out the
0df8b418
MS
8526 packet header and footer overhead: "$M<memaddr>,<len>:...#nn". */
8527
124e13d9 8528 payload_capacity_bytes -= strlen ("$,:#NN");
a76d924d 8529 if (!use_length)
0df8b418 8530 /* The comma won't be used. */
124e13d9
SM
8531 payload_capacity_bytes += 1;
8532 payload_capacity_bytes -= strlen (header);
8533 payload_capacity_bytes -= hexnumlen (memaddr);
c906108c 8534
a76d924d 8535 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
917317f4 8536
8d64371b
TT
8537 strcat (rs->buf.data (), header);
8538 p = rs->buf.data () + strlen (header);
a76d924d
DJ
8539
8540 /* Compute a best guess of the number of bytes actually transfered. */
8541 if (packet_format == 'X')
c906108c 8542 {
23860348 8543 /* Best guess at number of bytes that will fit. */
325fac50
PA
8544 todo_units = std::min (len_units,
8545 (ULONGEST) payload_capacity_bytes / unit_size);
a76d924d 8546 if (use_length)
124e13d9 8547 payload_capacity_bytes -= hexnumlen (todo_units);
325fac50 8548 todo_units = std::min (todo_units, payload_capacity_bytes / unit_size);
a76d924d
DJ
8549 }
8550 else
8551 {
124e13d9 8552 /* Number of bytes that will fit. */
325fac50
PA
8553 todo_units
8554 = std::min (len_units,
8555 (ULONGEST) (payload_capacity_bytes / unit_size) / 2);
a76d924d 8556 if (use_length)
124e13d9 8557 payload_capacity_bytes -= hexnumlen (todo_units);
325fac50
PA
8558 todo_units = std::min (todo_units,
8559 (payload_capacity_bytes / unit_size) / 2);
917317f4 8560 }
a76d924d 8561
124e13d9 8562 if (todo_units <= 0)
3de11b2e 8563 internal_error (__FILE__, __LINE__,
405f8e94 8564 _("minimum packet size too small to write data"));
802188a7 8565
6765f3e5
DJ
8566 /* If we already need another packet, then try to align the end
8567 of this packet to a useful boundary. */
124e13d9
SM
8568 if (todo_units > 2 * REMOTE_ALIGN_WRITES && todo_units < len_units)
8569 todo_units = align_for_efficient_write (todo_units, memaddr);
6765f3e5 8570
a257b5bb 8571 /* Append "<memaddr>". */
917317f4
JM
8572 memaddr = remote_address_masked (memaddr);
8573 p += hexnumstr (p, (ULONGEST) memaddr);
a257b5bb 8574
a76d924d
DJ
8575 if (use_length)
8576 {
8577 /* Append ",". */
8578 *p++ = ',';
802188a7 8579
124e13d9
SM
8580 /* Append the length and retain its location and size. It may need to be
8581 adjusted once the packet body has been created. */
a76d924d 8582 plen = p;
124e13d9 8583 plenlen = hexnumstr (p, (ULONGEST) todo_units);
a76d924d
DJ
8584 p += plenlen;
8585 }
a257b5bb
AC
8586
8587 /* Append ":". */
917317f4
JM
8588 *p++ = ':';
8589 *p = '\0';
802188a7 8590
a257b5bb 8591 /* Append the packet body. */
a76d924d 8592 if (packet_format == 'X')
917317f4 8593 {
917317f4
JM
8594 /* Binary mode. Send target system values byte by byte, in
8595 increasing byte addresses. Only escape certain critical
8596 characters. */
124e13d9
SM
8597 payload_length_bytes =
8598 remote_escape_output (myaddr, todo_units, unit_size, (gdb_byte *) p,
8599 &units_written, payload_capacity_bytes);
6765f3e5 8600
124e13d9 8601 /* If not all TODO units fit, then we'll need another packet. Make
9b7194bc
DJ
8602 a second try to keep the end of the packet aligned. Don't do
8603 this if the packet is tiny. */
124e13d9 8604 if (units_written < todo_units && units_written > 2 * REMOTE_ALIGN_WRITES)
6765f3e5 8605 {
124e13d9
SM
8606 int new_todo_units;
8607
8608 new_todo_units = align_for_efficient_write (units_written, memaddr);
8609
8610 if (new_todo_units != units_written)
8611 payload_length_bytes =
8612 remote_escape_output (myaddr, new_todo_units, unit_size,
8613 (gdb_byte *) p, &units_written,
8614 payload_capacity_bytes);
6765f3e5
DJ
8615 }
8616
124e13d9
SM
8617 p += payload_length_bytes;
8618 if (use_length && units_written < todo_units)
c906108c 8619 {
802188a7 8620 /* Escape chars have filled up the buffer prematurely,
124e13d9 8621 and we have actually sent fewer units than planned.
917317f4
JM
8622 Fix-up the length field of the packet. Use the same
8623 number of characters as before. */
124e13d9
SM
8624 plen += hexnumnstr (plen, (ULONGEST) units_written,
8625 plenlen);
917317f4 8626 *plen = ':'; /* overwrite \0 from hexnumnstr() */
c906108c 8627 }
a76d924d
DJ
8628 }
8629 else
8630 {
917317f4
JM
8631 /* Normal mode: Send target system values byte by byte, in
8632 increasing byte addresses. Each byte is encoded as a two hex
8633 value. */
124e13d9
SM
8634 p += 2 * bin2hex (myaddr, p, todo_units * unit_size);
8635 units_written = todo_units;
c906108c 8636 }
802188a7 8637
8d64371b
TT
8638 putpkt_binary (rs->buf.data (), (int) (p - rs->buf.data ()));
8639 getpkt (&rs->buf, 0);
802188a7 8640
2e9f7625 8641 if (rs->buf[0] == 'E')
00d84524 8642 return TARGET_XFER_E_IO;
802188a7 8643
124e13d9
SM
8644 /* Return UNITS_WRITTEN, not TODO_UNITS, in case escape chars caused us to
8645 send fewer units than we'd planned. */
8646 *xfered_len_units = (ULONGEST) units_written;
92ffd475 8647 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
c906108c
SS
8648}
8649
a76d924d
DJ
8650/* Write memory data directly to the remote machine.
8651 This does not inform the data cache; the data cache uses this.
8652 MEMADDR is the address in the remote memory space.
8653 MYADDR is the address of the buffer in our space.
8654 LEN is the number of bytes.
8655
9b409511
YQ
8656 Return the transferred status, error or OK (an
8657 'enum target_xfer_status' value). Save the number of bytes
8658 transferred in *XFERED_LEN. Only transfer a single packet. */
a76d924d 8659
6b8edb51
PA
8660target_xfer_status
8661remote_target::remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr,
8662 ULONGEST len, int unit_size,
8663 ULONGEST *xfered_len)
a76d924d 8664{
a121b7c1 8665 const char *packet_format = NULL;
a76d924d
DJ
8666
8667 /* Check whether the target supports binary download. */
8668 check_binary_download (memaddr);
8669
4082afcc 8670 switch (packet_support (PACKET_X))
a76d924d
DJ
8671 {
8672 case PACKET_ENABLE:
8673 packet_format = "X";
8674 break;
8675 case PACKET_DISABLE:
8676 packet_format = "M";
8677 break;
8678 case PACKET_SUPPORT_UNKNOWN:
8679 internal_error (__FILE__, __LINE__,
8680 _("remote_write_bytes: bad internal state"));
8681 default:
8682 internal_error (__FILE__, __LINE__, _("bad switch"));
8683 }
8684
8685 return remote_write_bytes_aux (packet_format,
124e13d9 8686 memaddr, myaddr, len, unit_size, xfered_len,
9b409511 8687 packet_format[0], 1);
a76d924d
DJ
8688}
8689
9217e74e
YQ
8690/* Read memory data directly from the remote machine.
8691 This does not use the data cache; the data cache uses this.
8692 MEMADDR is the address in the remote memory space.
8693 MYADDR is the address of the buffer in our space.
124e13d9
SM
8694 LEN_UNITS is the number of addressable memory units to read..
8695 UNIT_SIZE is the length in bytes of an addressable unit.
9217e74e
YQ
8696
8697 Return the transferred status, error or OK (an
8698 'enum target_xfer_status' value). Save the number of bytes
124e13d9
SM
8699 transferred in *XFERED_LEN_UNITS.
8700
8701 See the comment of remote_write_bytes_aux for an example of
8702 memory read/write exchange between gdb and the stub. */
9217e74e 8703
6b8edb51
PA
8704target_xfer_status
8705remote_target::remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr,
8706 ULONGEST len_units,
8707 int unit_size, ULONGEST *xfered_len_units)
9217e74e
YQ
8708{
8709 struct remote_state *rs = get_remote_state ();
124e13d9 8710 int buf_size_bytes; /* Max size of packet output buffer. */
9217e74e 8711 char *p;
124e13d9
SM
8712 int todo_units;
8713 int decoded_bytes;
9217e74e 8714
124e13d9 8715 buf_size_bytes = get_memory_read_packet_size ();
9217e74e
YQ
8716 /* The packet buffer will be large enough for the payload;
8717 get_memory_packet_size ensures this. */
8718
124e13d9 8719 /* Number of units that will fit. */
325fac50
PA
8720 todo_units = std::min (len_units,
8721 (ULONGEST) (buf_size_bytes / unit_size) / 2);
9217e74e
YQ
8722
8723 /* Construct "m"<memaddr>","<len>". */
8724 memaddr = remote_address_masked (memaddr);
8d64371b 8725 p = rs->buf.data ();
9217e74e
YQ
8726 *p++ = 'm';
8727 p += hexnumstr (p, (ULONGEST) memaddr);
8728 *p++ = ',';
124e13d9 8729 p += hexnumstr (p, (ULONGEST) todo_units);
9217e74e
YQ
8730 *p = '\0';
8731 putpkt (rs->buf);
8d64371b 8732 getpkt (&rs->buf, 0);
9217e74e
YQ
8733 if (rs->buf[0] == 'E'
8734 && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2])
8735 && rs->buf[3] == '\0')
8736 return TARGET_XFER_E_IO;
8737 /* Reply describes memory byte by byte, each byte encoded as two hex
8738 characters. */
8d64371b 8739 p = rs->buf.data ();
124e13d9 8740 decoded_bytes = hex2bin (p, myaddr, todo_units * unit_size);
9217e74e 8741 /* Return what we have. Let higher layers handle partial reads. */
124e13d9 8742 *xfered_len_units = (ULONGEST) (decoded_bytes / unit_size);
92ffd475 8743 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
9217e74e
YQ
8744}
8745
b55fbac4
YQ
8746/* Using the set of read-only target sections of remote, read live
8747 read-only memory.
8acf9577
YQ
8748
8749 For interface/parameters/return description see target.h,
8750 to_xfer_partial. */
8751
6b8edb51
PA
8752target_xfer_status
8753remote_target::remote_xfer_live_readonly_partial (gdb_byte *readbuf,
8754 ULONGEST memaddr,
8755 ULONGEST len,
8756 int unit_size,
8757 ULONGEST *xfered_len)
8acf9577
YQ
8758{
8759 struct target_section *secp;
8760 struct target_section_table *table;
8761
6b8edb51 8762 secp = target_section_by_addr (this, memaddr);
8acf9577
YQ
8763 if (secp != NULL
8764 && (bfd_get_section_flags (secp->the_bfd_section->owner,
8765 secp->the_bfd_section)
8766 & SEC_READONLY))
8767 {
8768 struct target_section *p;
8769 ULONGEST memend = memaddr + len;
8770
6b8edb51 8771 table = target_get_section_table (this);
8acf9577
YQ
8772
8773 for (p = table->sections; p < table->sections_end; p++)
8774 {
8775 if (memaddr >= p->addr)
8776 {
8777 if (memend <= p->endaddr)
8778 {
8779 /* Entire transfer is within this section. */
124e13d9 8780 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 8781 xfered_len);
8acf9577
YQ
8782 }
8783 else if (memaddr >= p->endaddr)
8784 {
8785 /* This section ends before the transfer starts. */
8786 continue;
8787 }
8788 else
8789 {
8790 /* This section overlaps the transfer. Just do half. */
8791 len = p->endaddr - memaddr;
124e13d9 8792 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 8793 xfered_len);
8acf9577
YQ
8794 }
8795 }
8796 }
8797 }
8798
8799 return TARGET_XFER_EOF;
8800}
8801
9217e74e
YQ
8802/* Similar to remote_read_bytes_1, but it reads from the remote stub
8803 first if the requested memory is unavailable in traceframe.
8804 Otherwise, fall back to remote_read_bytes_1. */
c906108c 8805
6b8edb51
PA
8806target_xfer_status
8807remote_target::remote_read_bytes (CORE_ADDR memaddr,
8808 gdb_byte *myaddr, ULONGEST len, int unit_size,
8809 ULONGEST *xfered_len)
c906108c 8810{
6b6aa828 8811 if (len == 0)
96c4f946 8812 return TARGET_XFER_EOF;
b2182ed2 8813
8acf9577
YQ
8814 if (get_traceframe_number () != -1)
8815 {
a79b1bc6 8816 std::vector<mem_range> available;
8acf9577
YQ
8817
8818 /* If we fail to get the set of available memory, then the
8819 target does not support querying traceframe info, and so we
8820 attempt reading from the traceframe anyway (assuming the
8821 target implements the old QTro packet then). */
8822 if (traceframe_available_memory (&available, memaddr, len))
8823 {
a79b1bc6 8824 if (available.empty () || available[0].start != memaddr)
8acf9577
YQ
8825 {
8826 enum target_xfer_status res;
8827
8828 /* Don't read into the traceframe's available
8829 memory. */
a79b1bc6 8830 if (!available.empty ())
8acf9577
YQ
8831 {
8832 LONGEST oldlen = len;
8833
a79b1bc6 8834 len = available[0].start - memaddr;
8acf9577
YQ
8835 gdb_assert (len <= oldlen);
8836 }
8837
8acf9577 8838 /* This goes through the topmost target again. */
6b8edb51 8839 res = remote_xfer_live_readonly_partial (myaddr, memaddr,
124e13d9 8840 len, unit_size, xfered_len);
8acf9577
YQ
8841 if (res == TARGET_XFER_OK)
8842 return TARGET_XFER_OK;
8843 else
8844 {
8845 /* No use trying further, we know some memory starting
8846 at MEMADDR isn't available. */
8847 *xfered_len = len;
92ffd475
PC
8848 return (*xfered_len != 0) ?
8849 TARGET_XFER_UNAVAILABLE : TARGET_XFER_EOF;
8acf9577
YQ
8850 }
8851 }
8852
8853 /* Don't try to read more than how much is available, in
8854 case the target implements the deprecated QTro packet to
8855 cater for older GDBs (the target's knowledge of read-only
8856 sections may be outdated by now). */
a79b1bc6 8857 len = available[0].length;
8acf9577
YQ
8858 }
8859 }
8860
124e13d9 8861 return remote_read_bytes_1 (memaddr, myaddr, len, unit_size, xfered_len);
c906108c 8862}
74531fed 8863
c906108c 8864\f
c906108c 8865
a76d924d
DJ
8866/* Sends a packet with content determined by the printf format string
8867 FORMAT and the remaining arguments, then gets the reply. Returns
8868 whether the packet was a success, a failure, or unknown. */
8869
6b8edb51
PA
8870packet_result
8871remote_target::remote_send_printf (const char *format, ...)
a76d924d
DJ
8872{
8873 struct remote_state *rs = get_remote_state ();
8874 int max_size = get_remote_packet_size ();
a76d924d 8875 va_list ap;
a744cf53 8876
a76d924d
DJ
8877 va_start (ap, format);
8878
8879 rs->buf[0] = '\0';
8d64371b 8880 int size = vsnprintf (rs->buf.data (), max_size, format, ap);
33b031ce
GB
8881
8882 va_end (ap);
8883
8884 if (size >= max_size)
9b20d036 8885 internal_error (__FILE__, __LINE__, _("Too long remote packet."));
a76d924d
DJ
8886
8887 if (putpkt (rs->buf) < 0)
8888 error (_("Communication problem with target."));
8889
8890 rs->buf[0] = '\0';
8d64371b 8891 getpkt (&rs->buf, 0);
a76d924d
DJ
8892
8893 return packet_check_result (rs->buf);
8894}
8895
a76d924d
DJ
8896/* Flash writing can take quite some time. We'll set
8897 effectively infinite timeout for flash operations.
8898 In future, we'll need to decide on a better approach. */
8899static const int remote_flash_timeout = 1000;
8900
f6ac5f3d
PA
8901void
8902remote_target::flash_erase (ULONGEST address, LONGEST length)
a76d924d 8903{
f5656ead 8904 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
a76d924d 8905 enum packet_result ret;
2ec845e7
TT
8906 scoped_restore restore_timeout
8907 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
a76d924d
DJ
8908
8909 ret = remote_send_printf ("vFlashErase:%s,%s",
5af949e3 8910 phex (address, addr_size),
a76d924d
DJ
8911 phex (length, 4));
8912 switch (ret)
8913 {
8914 case PACKET_UNKNOWN:
8915 error (_("Remote target does not support flash erase"));
8916 case PACKET_ERROR:
8917 error (_("Error erasing flash with vFlashErase packet"));
8918 default:
8919 break;
8920 }
a76d924d
DJ
8921}
8922
6b8edb51
PA
8923target_xfer_status
8924remote_target::remote_flash_write (ULONGEST address,
8925 ULONGEST length, ULONGEST *xfered_len,
8926 const gdb_byte *data)
a76d924d 8927{
2ec845e7
TT
8928 scoped_restore restore_timeout
8929 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
8930 return remote_write_bytes_aux ("vFlashWrite:", address, data, length, 1,
8931 xfered_len,'X', 0);
a76d924d
DJ
8932}
8933
f6ac5f3d
PA
8934void
8935remote_target::flash_done ()
a76d924d 8936{
a76d924d 8937 int ret;
a76d924d 8938
2ec845e7
TT
8939 scoped_restore restore_timeout
8940 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
8941
a76d924d 8942 ret = remote_send_printf ("vFlashDone");
a76d924d
DJ
8943
8944 switch (ret)
8945 {
8946 case PACKET_UNKNOWN:
8947 error (_("Remote target does not support vFlashDone"));
8948 case PACKET_ERROR:
8949 error (_("Error finishing flash operation"));
8950 default:
8951 break;
8952 }
8953}
8954
f6ac5f3d
PA
8955void
8956remote_target::files_info ()
c906108c
SS
8957{
8958 puts_filtered ("Debugging a target over a serial line.\n");
8959}
8960\f
8961/* Stuff for dealing with the packets which are part of this protocol.
8962 See comment at top of file for details. */
8963
1927e618
PA
8964/* Close/unpush the remote target, and throw a TARGET_CLOSE_ERROR
8965 error to higher layers. Called when a serial error is detected.
8966 The exception message is STRING, followed by a colon and a blank,
d6cb50a2
JK
8967 the system error message for errno at function entry and final dot
8968 for output compatibility with throw_perror_with_name. */
1927e618
PA
8969
8970static void
8971unpush_and_perror (const char *string)
8972{
d6cb50a2 8973 int saved_errno = errno;
1927e618
PA
8974
8975 remote_unpush_target ();
d6cb50a2
JK
8976 throw_error (TARGET_CLOSE_ERROR, "%s: %s.", string,
8977 safe_strerror (saved_errno));
1927e618
PA
8978}
8979
048094ac
PA
8980/* Read a single character from the remote end. The current quit
8981 handler is overridden to avoid quitting in the middle of packet
8982 sequence, as that would break communication with the remote server.
8983 See remote_serial_quit_handler for more detail. */
c906108c 8984
6b8edb51
PA
8985int
8986remote_target::readchar (int timeout)
c906108c
SS
8987{
8988 int ch;
5d93a237 8989 struct remote_state *rs = get_remote_state ();
048094ac 8990
2ec845e7 8991 {
6b8edb51
PA
8992 scoped_restore restore_quit_target
8993 = make_scoped_restore (&curr_quit_handler_target, this);
2ec845e7 8994 scoped_restore restore_quit
6b8edb51 8995 = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
c906108c 8996
2ec845e7 8997 rs->got_ctrlc_during_io = 0;
c906108c 8998
2ec845e7 8999 ch = serial_readchar (rs->remote_desc, timeout);
048094ac 9000
2ec845e7
TT
9001 if (rs->got_ctrlc_during_io)
9002 set_quit_flag ();
9003 }
048094ac 9004
2acceee2 9005 if (ch >= 0)
0876f84a 9006 return ch;
2acceee2
JM
9007
9008 switch ((enum serial_rc) ch)
c906108c
SS
9009 {
9010 case SERIAL_EOF:
78a095c3 9011 remote_unpush_target ();
598d3636 9012 throw_error (TARGET_CLOSE_ERROR, _("Remote connection closed"));
2acceee2 9013 /* no return */
c906108c 9014 case SERIAL_ERROR:
1927e618
PA
9015 unpush_and_perror (_("Remote communication error. "
9016 "Target disconnected."));
2acceee2 9017 /* no return */
c906108c 9018 case SERIAL_TIMEOUT:
2acceee2 9019 break;
c906108c 9020 }
2acceee2 9021 return ch;
c906108c
SS
9022}
9023
c33e31fd 9024/* Wrapper for serial_write that closes the target and throws if
048094ac
PA
9025 writing fails. The current quit handler is overridden to avoid
9026 quitting in the middle of packet sequence, as that would break
9027 communication with the remote server. See
9028 remote_serial_quit_handler for more detail. */
c33e31fd 9029
6b8edb51
PA
9030void
9031remote_target::remote_serial_write (const char *str, int len)
c33e31fd 9032{
5d93a237 9033 struct remote_state *rs = get_remote_state ();
048094ac 9034
6b8edb51
PA
9035 scoped_restore restore_quit_target
9036 = make_scoped_restore (&curr_quit_handler_target, this);
2ec845e7 9037 scoped_restore restore_quit
6b8edb51 9038 = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
048094ac
PA
9039
9040 rs->got_ctrlc_during_io = 0;
5d93a237
TT
9041
9042 if (serial_write (rs->remote_desc, str, len))
c33e31fd 9043 {
1927e618
PA
9044 unpush_and_perror (_("Remote communication error. "
9045 "Target disconnected."));
c33e31fd 9046 }
048094ac
PA
9047
9048 if (rs->got_ctrlc_during_io)
9049 set_quit_flag ();
c33e31fd
PA
9050}
9051
b3ced9ba
PA
9052/* Return a string representing an escaped version of BUF, of len N.
9053 E.g. \n is converted to \\n, \t to \\t, etc. */
6e5abd65 9054
b3ced9ba 9055static std::string
6e5abd65
PA
9056escape_buffer (const char *buf, int n)
9057{
d7e74731 9058 string_file stb;
6e5abd65 9059
d7e74731
PA
9060 stb.putstrn (buf, n, '\\');
9061 return std::move (stb.string ());
6e5abd65
PA
9062}
9063
c906108c
SS
9064/* Display a null-terminated packet on stdout, for debugging, using C
9065 string notation. */
9066
9067static void
baa336ce 9068print_packet (const char *buf)
c906108c
SS
9069{
9070 puts_filtered ("\"");
43e526b9 9071 fputstr_filtered (buf, '"', gdb_stdout);
c906108c
SS
9072 puts_filtered ("\"");
9073}
9074
9075int
6b8edb51 9076remote_target::putpkt (const char *buf)
c906108c
SS
9077{
9078 return putpkt_binary (buf, strlen (buf));
9079}
9080
6b8edb51
PA
9081/* Wrapper around remote_target::putpkt to avoid exporting
9082 remote_target. */
9083
9084int
9085putpkt (remote_target *remote, const char *buf)
9086{
9087 return remote->putpkt (buf);
9088}
9089
c906108c 9090/* Send a packet to the remote machine, with error checking. The data
23860348 9091 of the packet is in BUF. The string in BUF can be at most
ea9c271d 9092 get_remote_packet_size () - 5 to account for the $, # and checksum,
23860348
MS
9093 and for a possible /0 if we are debugging (remote_debug) and want
9094 to print the sent packet as a string. */
c906108c 9095
6b8edb51
PA
9096int
9097remote_target::putpkt_binary (const char *buf, int cnt)
c906108c 9098{
2d717e4f 9099 struct remote_state *rs = get_remote_state ();
c906108c
SS
9100 int i;
9101 unsigned char csum = 0;
b80406ac
TT
9102 gdb::def_vector<char> data (cnt + 6);
9103 char *buf2 = data.data ();
085dd6e6 9104
c906108c
SS
9105 int ch;
9106 int tcount = 0;
9107 char *p;
9108
e24a49d8
PA
9109 /* Catch cases like trying to read memory or listing threads while
9110 we're waiting for a stop reply. The remote server wouldn't be
9111 ready to handle this request, so we'd hang and timeout. We don't
9112 have to worry about this in synchronous mode, because in that
9113 case it's not possible to issue a command while the target is
74531fed
PA
9114 running. This is not a problem in non-stop mode, because in that
9115 case, the stub is always ready to process serial input. */
6efcd9a8
PA
9116 if (!target_is_non_stop_p ()
9117 && target_is_async_p ()
9118 && rs->waiting_for_stop_reply)
9597b22a
DE
9119 {
9120 error (_("Cannot execute this command while the target is running.\n"
9121 "Use the \"interrupt\" command to stop the target\n"
9122 "and then try again."));
9123 }
e24a49d8 9124
2d717e4f
DJ
9125 /* We're sending out a new packet. Make sure we don't look at a
9126 stale cached response. */
9127 rs->cached_wait_status = 0;
9128
c906108c
SS
9129 /* Copy the packet into buffer BUF2, encapsulating it
9130 and giving it a checksum. */
9131
c906108c
SS
9132 p = buf2;
9133 *p++ = '$';
9134
9135 for (i = 0; i < cnt; i++)
9136 {
9137 csum += buf[i];
9138 *p++ = buf[i];
9139 }
9140 *p++ = '#';
9141 *p++ = tohex ((csum >> 4) & 0xf);
9142 *p++ = tohex (csum & 0xf);
9143
9144 /* Send it over and over until we get a positive ack. */
9145
9146 while (1)
9147 {
9148 int started_error_output = 0;
9149
9150 if (remote_debug)
9151 {
9152 *p = '\0';
b3ced9ba 9153
6f8976bf
YQ
9154 int len = (int) (p - buf2);
9155
9156 std::string str
9157 = escape_buffer (buf2, std::min (len, REMOTE_DEBUG_MAX_CHAR));
9158
9159 fprintf_unfiltered (gdb_stdlog, "Sending packet: %s", str.c_str ());
9160
567a3e54
SM
9161 if (len > REMOTE_DEBUG_MAX_CHAR)
9162 fprintf_unfiltered (gdb_stdlog, "[%d bytes omitted]",
9163 len - REMOTE_DEBUG_MAX_CHAR);
6f8976bf
YQ
9164
9165 fprintf_unfiltered (gdb_stdlog, "...");
b3ced9ba 9166
0f71a2f6 9167 gdb_flush (gdb_stdlog);
c906108c 9168 }
c33e31fd 9169 remote_serial_write (buf2, p - buf2);
c906108c 9170
a6f3e723
SL
9171 /* If this is a no acks version of the remote protocol, send the
9172 packet and move on. */
9173 if (rs->noack_mode)
9174 break;
9175
74531fed
PA
9176 /* Read until either a timeout occurs (-2) or '+' is read.
9177 Handle any notification that arrives in the mean time. */
c906108c
SS
9178 while (1)
9179 {
9180 ch = readchar (remote_timeout);
9181
c5aa993b 9182 if (remote_debug)
c906108c
SS
9183 {
9184 switch (ch)
9185 {
9186 case '+':
1216fa2c 9187 case '-':
c906108c
SS
9188 case SERIAL_TIMEOUT:
9189 case '$':
74531fed 9190 case '%':
c906108c
SS
9191 if (started_error_output)
9192 {
9193 putchar_unfiltered ('\n');
9194 started_error_output = 0;
9195 }
9196 }
9197 }
9198
9199 switch (ch)
9200 {
9201 case '+':
9202 if (remote_debug)
0f71a2f6 9203 fprintf_unfiltered (gdb_stdlog, "Ack\n");
c906108c 9204 return 1;
1216fa2c
AC
9205 case '-':
9206 if (remote_debug)
9207 fprintf_unfiltered (gdb_stdlog, "Nak\n");
a17d146e 9208 /* FALLTHROUGH */
c906108c 9209 case SERIAL_TIMEOUT:
c5aa993b 9210 tcount++;
c906108c 9211 if (tcount > 3)
b80406ac 9212 return 0;
23860348 9213 break; /* Retransmit buffer. */
c906108c
SS
9214 case '$':
9215 {
40e3f985 9216 if (remote_debug)
2bc416ba 9217 fprintf_unfiltered (gdb_stdlog,
23860348 9218 "Packet instead of Ack, ignoring it\n");
d6f7abdf
AC
9219 /* It's probably an old response sent because an ACK
9220 was lost. Gobble up the packet and ack it so it
9221 doesn't get retransmitted when we resend this
9222 packet. */
6d820c5c 9223 skip_frame ();
c33e31fd 9224 remote_serial_write ("+", 1);
23860348 9225 continue; /* Now, go look for +. */
c906108c 9226 }
74531fed
PA
9227
9228 case '%':
9229 {
9230 int val;
9231
9232 /* If we got a notification, handle it, and go back to looking
9233 for an ack. */
9234 /* We've found the start of a notification. Now
9235 collect the data. */
8d64371b 9236 val = read_frame (&rs->buf);
74531fed
PA
9237 if (val >= 0)
9238 {
9239 if (remote_debug)
9240 {
8d64371b 9241 std::string str = escape_buffer (rs->buf.data (), val);
6e5abd65 9242
6e5abd65
PA
9243 fprintf_unfiltered (gdb_stdlog,
9244 " Notification received: %s\n",
b3ced9ba 9245 str.c_str ());
74531fed 9246 }
8d64371b 9247 handle_notification (rs->notif_state, rs->buf.data ());
74531fed
PA
9248 /* We're in sync now, rewait for the ack. */
9249 tcount = 0;
9250 }
9251 else
9252 {
9253 if (remote_debug)
9254 {
9255 if (!started_error_output)
9256 {
9257 started_error_output = 1;
9258 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
9259 }
9260 fputc_unfiltered (ch & 0177, gdb_stdlog);
8d64371b 9261 fprintf_unfiltered (gdb_stdlog, "%s", rs->buf.data ());
74531fed
PA
9262 }
9263 }
9264 continue;
9265 }
9266 /* fall-through */
c906108c
SS
9267 default:
9268 if (remote_debug)
9269 {
9270 if (!started_error_output)
9271 {
9272 started_error_output = 1;
0f71a2f6 9273 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
c906108c 9274 }
0f71a2f6 9275 fputc_unfiltered (ch & 0177, gdb_stdlog);
c906108c
SS
9276 }
9277 continue;
9278 }
23860348 9279 break; /* Here to retransmit. */
c906108c
SS
9280 }
9281
9282#if 0
9283 /* This is wrong. If doing a long backtrace, the user should be
c5aa993b
JM
9284 able to get out next time we call QUIT, without anything as
9285 violent as interrupt_query. If we want to provide a way out of
9286 here without getting to the next QUIT, it should be based on
9287 hitting ^C twice as in remote_wait. */
c906108c
SS
9288 if (quit_flag)
9289 {
9290 quit_flag = 0;
9291 interrupt_query ();
9292 }
9293#endif
9294 }
a5c0808e 9295
a6f3e723 9296 return 0;
c906108c
SS
9297}
9298
6d820c5c
DJ
9299/* Come here after finding the start of a frame when we expected an
9300 ack. Do our best to discard the rest of this packet. */
9301
6b8edb51
PA
9302void
9303remote_target::skip_frame ()
6d820c5c
DJ
9304{
9305 int c;
9306
9307 while (1)
9308 {
9309 c = readchar (remote_timeout);
9310 switch (c)
9311 {
9312 case SERIAL_TIMEOUT:
9313 /* Nothing we can do. */
9314 return;
9315 case '#':
9316 /* Discard the two bytes of checksum and stop. */
9317 c = readchar (remote_timeout);
9318 if (c >= 0)
9319 c = readchar (remote_timeout);
9320
9321 return;
9322 case '*': /* Run length encoding. */
9323 /* Discard the repeat count. */
9324 c = readchar (remote_timeout);
9325 if (c < 0)
9326 return;
9327 break;
9328 default:
9329 /* A regular character. */
9330 break;
9331 }
9332 }
9333}
9334
c906108c 9335/* Come here after finding the start of the frame. Collect the rest
6d820c5c
DJ
9336 into *BUF, verifying the checksum, length, and handling run-length
9337 compression. NUL terminate the buffer. If there is not enough room,
8d64371b 9338 expand *BUF.
c906108c 9339
c2d11a7d
JM
9340 Returns -1 on error, number of characters in buffer (ignoring the
9341 trailing NULL) on success. (could be extended to return one of the
23860348 9342 SERIAL status indications). */
c2d11a7d 9343
6b8edb51 9344long
8d64371b 9345remote_target::read_frame (gdb::char_vector *buf_p)
c906108c
SS
9346{
9347 unsigned char csum;
c2d11a7d 9348 long bc;
c906108c 9349 int c;
8d64371b 9350 char *buf = buf_p->data ();
a6f3e723 9351 struct remote_state *rs = get_remote_state ();
c906108c
SS
9352
9353 csum = 0;
c2d11a7d 9354 bc = 0;
c906108c
SS
9355
9356 while (1)
9357 {
9358 c = readchar (remote_timeout);
c906108c
SS
9359 switch (c)
9360 {
9361 case SERIAL_TIMEOUT:
9362 if (remote_debug)
0f71a2f6 9363 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog);
c2d11a7d 9364 return -1;
c906108c
SS
9365 case '$':
9366 if (remote_debug)
0f71a2f6
JM
9367 fputs_filtered ("Saw new packet start in middle of old one\n",
9368 gdb_stdlog);
23860348 9369 return -1; /* Start a new packet, count retries. */
c906108c
SS
9370 case '#':
9371 {
9372 unsigned char pktcsum;
e1b09194
AC
9373 int check_0 = 0;
9374 int check_1 = 0;
c906108c 9375
c2d11a7d 9376 buf[bc] = '\0';
c906108c 9377
e1b09194
AC
9378 check_0 = readchar (remote_timeout);
9379 if (check_0 >= 0)
9380 check_1 = readchar (remote_timeout);
802188a7 9381
e1b09194
AC
9382 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
9383 {
9384 if (remote_debug)
2bc416ba 9385 fputs_filtered ("Timeout in checksum, retrying\n",
23860348 9386 gdb_stdlog);
e1b09194
AC
9387 return -1;
9388 }
9389 else if (check_0 < 0 || check_1 < 0)
40e3f985
FN
9390 {
9391 if (remote_debug)
2bc416ba 9392 fputs_filtered ("Communication error in checksum\n",
23860348 9393 gdb_stdlog);
40e3f985
FN
9394 return -1;
9395 }
c906108c 9396
a6f3e723
SL
9397 /* Don't recompute the checksum; with no ack packets we
9398 don't have any way to indicate a packet retransmission
9399 is necessary. */
9400 if (rs->noack_mode)
9401 return bc;
9402
e1b09194 9403 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
c906108c 9404 if (csum == pktcsum)
c2d11a7d 9405 return bc;
c906108c 9406
c5aa993b 9407 if (remote_debug)
c906108c 9408 {
b3ced9ba 9409 std::string str = escape_buffer (buf, bc);
6e5abd65 9410
6e5abd65 9411 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
9412 "Bad checksum, sentsum=0x%x, "
9413 "csum=0x%x, buf=%s\n",
b3ced9ba 9414 pktcsum, csum, str.c_str ());
c906108c 9415 }
c2d11a7d 9416 /* Number of characters in buffer ignoring trailing
23860348 9417 NULL. */
c2d11a7d 9418 return -1;
c906108c 9419 }
23860348 9420 case '*': /* Run length encoding. */
c2c6d25f
JM
9421 {
9422 int repeat;
c906108c 9423
a744cf53 9424 csum += c;
b4501125
AC
9425 c = readchar (remote_timeout);
9426 csum += c;
23860348 9427 repeat = c - ' ' + 3; /* Compute repeat count. */
c906108c 9428
23860348 9429 /* The character before ``*'' is repeated. */
c2d11a7d 9430
6d820c5c 9431 if (repeat > 0 && repeat <= 255 && bc > 0)
c2c6d25f 9432 {
8d64371b 9433 if (bc + repeat - 1 >= buf_p->size () - 1)
6d820c5c
DJ
9434 {
9435 /* Make some more room in the buffer. */
8d64371b
TT
9436 buf_p->resize (buf_p->size () + repeat);
9437 buf = buf_p->data ();
6d820c5c
DJ
9438 }
9439
c2d11a7d
JM
9440 memset (&buf[bc], buf[bc - 1], repeat);
9441 bc += repeat;
c2c6d25f
JM
9442 continue;
9443 }
9444
c2d11a7d 9445 buf[bc] = '\0';
6d820c5c 9446 printf_filtered (_("Invalid run length encoding: %s\n"), buf);
c2d11a7d 9447 return -1;
c2c6d25f 9448 }
c906108c 9449 default:
8d64371b 9450 if (bc >= buf_p->size () - 1)
c906108c 9451 {
6d820c5c 9452 /* Make some more room in the buffer. */
8d64371b
TT
9453 buf_p->resize (buf_p->size () * 2);
9454 buf = buf_p->data ();
c906108c
SS
9455 }
9456
6d820c5c
DJ
9457 buf[bc++] = c;
9458 csum += c;
9459 continue;
c906108c
SS
9460 }
9461 }
9462}
9463
ed2b7c17
TT
9464/* Set this to the maximum number of seconds to wait instead of waiting forever
9465 in target_wait(). If this timer times out, then it generates an error and
9466 the command is aborted. This replaces most of the need for timeouts in the
9467 GDB test suite, and makes it possible to distinguish between a hung target
9468 and one with slow communications. */
9469
9470static int watchdog = 0;
9471static void
9472show_watchdog (struct ui_file *file, int from_tty,
9473 struct cmd_list_element *c, const char *value)
9474{
9475 fprintf_filtered (file, _("Watchdog timer is %s.\n"), value);
9476}
9477
c906108c 9478/* Read a packet from the remote machine, with error checking, and
8d64371b
TT
9479 store it in *BUF. Resize *BUF if necessary to hold the result. If
9480 FOREVER, wait forever rather than timing out; this is used (in
9481 synchronous mode) to wait for a target that is is executing user
9482 code to stop. */
d9fcf2fb
JM
9483/* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
9484 don't have to change all the calls to getpkt to deal with the
9485 return value, because at the moment I don't know what the right
23860348 9486 thing to do it for those. */
6b8edb51 9487
c906108c 9488void
8d64371b 9489remote_target::getpkt (gdb::char_vector *buf, int forever)
d9fcf2fb 9490{
8d64371b 9491 getpkt_sane (buf, forever);
d9fcf2fb
JM
9492}
9493
9494
9495/* Read a packet from the remote machine, with error checking, and
8d64371b
TT
9496 store it in *BUF. Resize *BUF if necessary to hold the result. If
9497 FOREVER, wait forever rather than timing out; this is used (in
9498 synchronous mode) to wait for a target that is is executing user
9499 code to stop. If FOREVER == 0, this function is allowed to time
9500 out gracefully and return an indication of this to the caller.
9501 Otherwise return the number of bytes read. If EXPECTING_NOTIF,
9502 consider receiving a notification enough reason to return to the
9503 caller. *IS_NOTIF is an output boolean that indicates whether *BUF
9504 holds a notification or not (a regular packet). */
74531fed 9505
6b8edb51 9506int
8d64371b 9507remote_target::getpkt_or_notif_sane_1 (gdb::char_vector *buf,
6b8edb51
PA
9508 int forever, int expecting_notif,
9509 int *is_notif)
c906108c 9510{
2d717e4f 9511 struct remote_state *rs = get_remote_state ();
c906108c
SS
9512 int c;
9513 int tries;
9514 int timeout;
df4b58fe 9515 int val = -1;
c906108c 9516
2d717e4f
DJ
9517 /* We're reading a new response. Make sure we don't look at a
9518 previously cached response. */
9519 rs->cached_wait_status = 0;
9520
8d64371b 9521 strcpy (buf->data (), "timeout");
c906108c
SS
9522
9523 if (forever)
74531fed
PA
9524 timeout = watchdog > 0 ? watchdog : -1;
9525 else if (expecting_notif)
9526 timeout = 0; /* There should already be a char in the buffer. If
9527 not, bail out. */
c906108c
SS
9528 else
9529 timeout = remote_timeout;
9530
9531#define MAX_TRIES 3
9532
74531fed
PA
9533 /* Process any number of notifications, and then return when
9534 we get a packet. */
9535 for (;;)
c906108c 9536 {
d9c43928 9537 /* If we get a timeout or bad checksum, retry up to MAX_TRIES
74531fed
PA
9538 times. */
9539 for (tries = 1; tries <= MAX_TRIES; tries++)
c906108c 9540 {
74531fed
PA
9541 /* This can loop forever if the remote side sends us
9542 characters continuously, but if it pauses, we'll get
9543 SERIAL_TIMEOUT from readchar because of timeout. Then
9544 we'll count that as a retry.
9545
9546 Note that even when forever is set, we will only wait
9547 forever prior to the start of a packet. After that, we
9548 expect characters to arrive at a brisk pace. They should
9549 show up within remote_timeout intervals. */
9550 do
9551 c = readchar (timeout);
9552 while (c != SERIAL_TIMEOUT && c != '$' && c != '%');
c906108c
SS
9553
9554 if (c == SERIAL_TIMEOUT)
9555 {
74531fed
PA
9556 if (expecting_notif)
9557 return -1; /* Don't complain, it's normal to not get
9558 anything in this case. */
9559
23860348 9560 if (forever) /* Watchdog went off? Kill the target. */
c906108c 9561 {
78a095c3 9562 remote_unpush_target ();
598d3636
JK
9563 throw_error (TARGET_CLOSE_ERROR,
9564 _("Watchdog timeout has expired. "
9565 "Target detached."));
c906108c 9566 }
c906108c 9567 if (remote_debug)
0f71a2f6 9568 fputs_filtered ("Timed out.\n", gdb_stdlog);
c906108c 9569 }
74531fed
PA
9570 else
9571 {
9572 /* We've found the start of a packet or notification.
9573 Now collect the data. */
8d64371b 9574 val = read_frame (buf);
74531fed
PA
9575 if (val >= 0)
9576 break;
9577 }
9578
c33e31fd 9579 remote_serial_write ("-", 1);
c906108c 9580 }
c906108c 9581
74531fed
PA
9582 if (tries > MAX_TRIES)
9583 {
9584 /* We have tried hard enough, and just can't receive the
9585 packet/notification. Give up. */
9586 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
c906108c 9587
74531fed
PA
9588 /* Skip the ack char if we're in no-ack mode. */
9589 if (!rs->noack_mode)
c33e31fd 9590 remote_serial_write ("+", 1);
74531fed
PA
9591 return -1;
9592 }
c906108c 9593
74531fed
PA
9594 /* If we got an ordinary packet, return that to our caller. */
9595 if (c == '$')
c906108c
SS
9596 {
9597 if (remote_debug)
43e526b9 9598 {
6f8976bf 9599 std::string str
8d64371b 9600 = escape_buffer (buf->data (),
6f8976bf
YQ
9601 std::min (val, REMOTE_DEBUG_MAX_CHAR));
9602
9603 fprintf_unfiltered (gdb_stdlog, "Packet received: %s",
9604 str.c_str ());
9605
567a3e54
SM
9606 if (val > REMOTE_DEBUG_MAX_CHAR)
9607 fprintf_unfiltered (gdb_stdlog, "[%d bytes omitted]",
9608 val - REMOTE_DEBUG_MAX_CHAR);
6e5abd65 9609
6f8976bf 9610 fprintf_unfiltered (gdb_stdlog, "\n");
43e526b9 9611 }
a6f3e723
SL
9612
9613 /* Skip the ack char if we're in no-ack mode. */
9614 if (!rs->noack_mode)
c33e31fd 9615 remote_serial_write ("+", 1);
fee9eda9
YQ
9616 if (is_notif != NULL)
9617 *is_notif = 0;
0876f84a 9618 return val;
c906108c
SS
9619 }
9620
74531fed
PA
9621 /* If we got a notification, handle it, and go back to looking
9622 for a packet. */
9623 else
9624 {
9625 gdb_assert (c == '%');
9626
9627 if (remote_debug)
9628 {
8d64371b 9629 std::string str = escape_buffer (buf->data (), val);
6e5abd65 9630
6e5abd65
PA
9631 fprintf_unfiltered (gdb_stdlog,
9632 " Notification received: %s\n",
b3ced9ba 9633 str.c_str ());
74531fed 9634 }
fee9eda9
YQ
9635 if (is_notif != NULL)
9636 *is_notif = 1;
c906108c 9637
8d64371b 9638 handle_notification (rs->notif_state, buf->data ());
c906108c 9639
74531fed 9640 /* Notifications require no acknowledgement. */
a6f3e723 9641
74531fed 9642 if (expecting_notif)
fee9eda9 9643 return val;
74531fed
PA
9644 }
9645 }
9646}
9647
6b8edb51 9648int
8d64371b 9649remote_target::getpkt_sane (gdb::char_vector *buf, int forever)
74531fed 9650{
8d64371b 9651 return getpkt_or_notif_sane_1 (buf, forever, 0, NULL);
74531fed
PA
9652}
9653
6b8edb51 9654int
8d64371b 9655remote_target::getpkt_or_notif_sane (gdb::char_vector *buf, int forever,
6b8edb51 9656 int *is_notif)
74531fed 9657{
8d64371b 9658 return getpkt_or_notif_sane_1 (buf, forever, 1, is_notif);
c906108c 9659}
74531fed 9660
cbb8991c
DB
9661/* Kill any new fork children of process PID that haven't been
9662 processed by follow_fork. */
9663
6b8edb51
PA
9664void
9665remote_target::kill_new_fork_children (int pid)
cbb8991c 9666{
6b8edb51 9667 remote_state *rs = get_remote_state ();
cbb8991c 9668 struct notif_client *notif = &notif_client_stop;
cbb8991c
DB
9669
9670 /* Kill the fork child threads of any threads in process PID
9671 that are stopped at a fork event. */
08036331 9672 for (thread_info *thread : all_non_exited_threads ())
cbb8991c
DB
9673 {
9674 struct target_waitstatus *ws = &thread->pending_follow;
9675
9676 if (is_pending_fork_parent (ws, pid, thread->ptid))
9677 {
953edf2b 9678 int child_pid = ws->value.related_pid.pid ();
cbb8991c
DB
9679 int res;
9680
6b8edb51 9681 res = remote_vkill (child_pid);
cbb8991c
DB
9682 if (res != 0)
9683 error (_("Can't kill fork child process %d"), child_pid);
9684 }
9685 }
9686
9687 /* Check for any pending fork events (not reported or processed yet)
9688 in process PID and kill those fork child threads as well. */
9689 remote_notif_get_pending_events (notif);
953edf2b
TT
9690 for (auto &event : rs->stop_reply_queue)
9691 if (is_pending_fork_parent (&event->ws, pid, event->ptid))
9692 {
9693 int child_pid = event->ws.value.related_pid.pid ();
9694 int res;
9695
9696 res = remote_vkill (child_pid);
9697 if (res != 0)
9698 error (_("Can't kill fork child process %d"), child_pid);
9699 }
cbb8991c
DB
9700}
9701
c906108c 9702\f
8020350c
DB
9703/* Target hook to kill the current inferior. */
9704
f6ac5f3d
PA
9705void
9706remote_target::kill ()
43ff13b4 9707{
8020350c 9708 int res = -1;
e99b03dc 9709 int pid = inferior_ptid.pid ();
8020350c 9710 struct remote_state *rs = get_remote_state ();
0fdf84ca 9711
8020350c 9712 if (packet_support (PACKET_vKill) != PACKET_DISABLE)
0fdf84ca 9713 {
8020350c
DB
9714 /* If we're stopped while forking and we haven't followed yet,
9715 kill the child task. We need to do this before killing the
9716 parent task because if this is a vfork then the parent will
9717 be sleeping. */
6b8edb51 9718 kill_new_fork_children (pid);
8020350c 9719
6b8edb51 9720 res = remote_vkill (pid);
8020350c 9721 if (res == 0)
0fdf84ca 9722 {
bc1e6c81 9723 target_mourn_inferior (inferior_ptid);
0fdf84ca
PA
9724 return;
9725 }
8020350c 9726 }
0fdf84ca 9727
8020350c
DB
9728 /* If we are in 'target remote' mode and we are killing the only
9729 inferior, then we will tell gdbserver to exit and unpush the
9730 target. */
9731 if (res == -1 && !remote_multi_process_p (rs)
9732 && number_of_live_inferiors () == 1)
9733 {
9734 remote_kill_k ();
9735
9736 /* We've killed the remote end, we get to mourn it. If we are
9737 not in extended mode, mourning the inferior also unpushes
9738 remote_ops from the target stack, which closes the remote
9739 connection. */
bc1e6c81 9740 target_mourn_inferior (inferior_ptid);
8020350c
DB
9741
9742 return;
0fdf84ca 9743 }
43ff13b4 9744
8020350c 9745 error (_("Can't kill process"));
43ff13b4
JM
9746}
9747
8020350c
DB
9748/* Send a kill request to the target using the 'vKill' packet. */
9749
6b8edb51
PA
9750int
9751remote_target::remote_vkill (int pid)
82f73884 9752{
4082afcc 9753 if (packet_support (PACKET_vKill) == PACKET_DISABLE)
82f73884
PA
9754 return -1;
9755
6b8edb51
PA
9756 remote_state *rs = get_remote_state ();
9757
82f73884 9758 /* Tell the remote target to detach. */
8d64371b 9759 xsnprintf (rs->buf.data (), get_remote_packet_size (), "vKill;%x", pid);
82f73884 9760 putpkt (rs->buf);
8d64371b 9761 getpkt (&rs->buf, 0);
82f73884 9762
4082afcc
PA
9763 switch (packet_ok (rs->buf,
9764 &remote_protocol_packets[PACKET_vKill]))
9765 {
9766 case PACKET_OK:
9767 return 0;
9768 case PACKET_ERROR:
9769 return 1;
9770 case PACKET_UNKNOWN:
9771 return -1;
9772 default:
9773 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
9774 }
82f73884
PA
9775}
9776
8020350c
DB
9777/* Send a kill request to the target using the 'k' packet. */
9778
6b8edb51
PA
9779void
9780remote_target::remote_kill_k ()
82f73884 9781{
8020350c
DB
9782 /* Catch errors so the user can quit from gdb even when we
9783 aren't on speaking terms with the remote system. */
a70b8144 9784 try
82f73884 9785 {
82f73884 9786 putpkt ("k");
82f73884 9787 }
230d2906 9788 catch (const gdb_exception_error &ex)
8020350c
DB
9789 {
9790 if (ex.error == TARGET_CLOSE_ERROR)
9791 {
9792 /* If we got an (EOF) error that caused the target
9793 to go away, then we're done, that's what we wanted.
9794 "k" is susceptible to cause a premature EOF, given
9795 that the remote server isn't actually required to
9796 reply to "k", and it can happen that it doesn't
9797 even get to reply ACK to the "k". */
9798 return;
9799 }
82f73884 9800
8020350c
DB
9801 /* Otherwise, something went wrong. We didn't actually kill
9802 the target. Just propagate the exception, and let the
9803 user or higher layers decide what to do. */
eedc3f4f 9804 throw;
8020350c 9805 }
82f73884
PA
9806}
9807
f6ac5f3d
PA
9808void
9809remote_target::mourn_inferior ()
c906108c 9810{
8020350c 9811 struct remote_state *rs = get_remote_state ();
ce5ce7ed 9812
9607784a
PA
9813 /* We're no longer interested in notification events of an inferior
9814 that exited or was killed/detached. */
9815 discard_pending_stop_replies (current_inferior ());
9816
8020350c
DB
9817 /* In 'target remote' mode with one inferior, we close the connection. */
9818 if (!rs->extended && number_of_live_inferiors () <= 1)
9819 {
f6ac5f3d 9820 unpush_target (this);
c906108c 9821
8020350c
DB
9822 /* remote_close takes care of doing most of the clean up. */
9823 generic_mourn_inferior ();
9824 return;
9825 }
c906108c 9826
e24a49d8
PA
9827 /* In case we got here due to an error, but we're going to stay
9828 connected. */
9829 rs->waiting_for_stop_reply = 0;
9830
dc1981d7
PA
9831 /* If the current general thread belonged to the process we just
9832 detached from or has exited, the remote side current general
9833 thread becomes undefined. Considering a case like this:
9834
9835 - We just got here due to a detach.
9836 - The process that we're detaching from happens to immediately
9837 report a global breakpoint being hit in non-stop mode, in the
9838 same thread we had selected before.
9839 - GDB attaches to this process again.
9840 - This event happens to be the next event we handle.
9841
9842 GDB would consider that the current general thread didn't need to
9843 be set on the stub side (with Hg), since for all it knew,
9844 GENERAL_THREAD hadn't changed.
9845
9846 Notice that although in all-stop mode, the remote server always
9847 sets the current thread to the thread reporting the stop event,
9848 that doesn't happen in non-stop mode; in non-stop, the stub *must
9849 not* change the current thread when reporting a breakpoint hit,
9850 due to the decoupling of event reporting and event handling.
9851
9852 To keep things simple, we always invalidate our notion of the
9853 current thread. */
47f8a51d 9854 record_currthread (rs, minus_one_ptid);
dc1981d7 9855
8020350c 9856 /* Call common code to mark the inferior as not running. */
48aa3c27
PA
9857 generic_mourn_inferior ();
9858
d729566a 9859 if (!have_inferiors ())
2d717e4f 9860 {
82f73884
PA
9861 if (!remote_multi_process_p (rs))
9862 {
9863 /* Check whether the target is running now - some remote stubs
9864 automatically restart after kill. */
9865 putpkt ("?");
8d64371b 9866 getpkt (&rs->buf, 0);
82f73884
PA
9867
9868 if (rs->buf[0] == 'S' || rs->buf[0] == 'T')
9869 {
3e43a32a
MS
9870 /* Assume that the target has been restarted. Set
9871 inferior_ptid so that bits of core GDB realizes
9872 there's something here, e.g., so that the user can
9873 say "kill" again. */
82f73884
PA
9874 inferior_ptid = magic_null_ptid;
9875 }
82f73884 9876 }
2d717e4f
DJ
9877 }
9878}
c906108c 9879
57810aa7 9880bool
f6ac5f3d 9881extended_remote_target::supports_disable_randomization ()
03583c20 9882{
4082afcc 9883 return packet_support (PACKET_QDisableRandomization) == PACKET_ENABLE;
03583c20
UW
9884}
9885
6b8edb51
PA
9886void
9887remote_target::extended_remote_disable_randomization (int val)
03583c20
UW
9888{
9889 struct remote_state *rs = get_remote_state ();
9890 char *reply;
9891
8d64371b
TT
9892 xsnprintf (rs->buf.data (), get_remote_packet_size (),
9893 "QDisableRandomization:%x", val);
03583c20 9894 putpkt (rs->buf);
b6bb3468 9895 reply = remote_get_noisy_reply ();
03583c20
UW
9896 if (*reply == '\0')
9897 error (_("Target does not support QDisableRandomization."));
9898 if (strcmp (reply, "OK") != 0)
9899 error (_("Bogus QDisableRandomization reply from target: %s"), reply);
9900}
9901
6b8edb51
PA
9902int
9903remote_target::extended_remote_run (const std::string &args)
2d717e4f
DJ
9904{
9905 struct remote_state *rs = get_remote_state ();
2d717e4f 9906 int len;
94585166 9907 const char *remote_exec_file = get_remote_exec_file ();
c906108c 9908
2d717e4f
DJ
9909 /* If the user has disabled vRun support, or we have detected that
9910 support is not available, do not try it. */
4082afcc 9911 if (packet_support (PACKET_vRun) == PACKET_DISABLE)
2d717e4f 9912 return -1;
424163ea 9913
8d64371b
TT
9914 strcpy (rs->buf.data (), "vRun;");
9915 len = strlen (rs->buf.data ());
c906108c 9916
2d717e4f
DJ
9917 if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ())
9918 error (_("Remote file name too long for run packet"));
8d64371b 9919 len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf.data () + len,
9f1b45b0 9920 strlen (remote_exec_file));
2d717e4f 9921
7c5ded6a 9922 if (!args.empty ())
2d717e4f 9923 {
2d717e4f 9924 int i;
2d717e4f 9925
773a1edc 9926 gdb_argv argv (args.c_str ());
2d717e4f
DJ
9927 for (i = 0; argv[i] != NULL; i++)
9928 {
9929 if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ())
9930 error (_("Argument list too long for run packet"));
9931 rs->buf[len++] = ';';
8d64371b 9932 len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf.data () + len,
9f1b45b0 9933 strlen (argv[i]));
2d717e4f 9934 }
2d717e4f
DJ
9935 }
9936
9937 rs->buf[len++] = '\0';
9938
9939 putpkt (rs->buf);
8d64371b 9940 getpkt (&rs->buf, 0);
2d717e4f 9941
4082afcc 9942 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun]))
2d717e4f 9943 {
4082afcc 9944 case PACKET_OK:
3405876a 9945 /* We have a wait response. All is well. */
2d717e4f 9946 return 0;
4082afcc
PA
9947 case PACKET_UNKNOWN:
9948 return -1;
9949 case PACKET_ERROR:
2d717e4f
DJ
9950 if (remote_exec_file[0] == '\0')
9951 error (_("Running the default executable on the remote target failed; "
9952 "try \"set remote exec-file\"?"));
9953 else
9954 error (_("Running \"%s\" on the remote target failed"),
9955 remote_exec_file);
4082afcc
PA
9956 default:
9957 gdb_assert_not_reached (_("bad switch"));
2d717e4f 9958 }
c906108c
SS
9959}
9960
0a2dde4a
SDJ
9961/* Helper function to send set/unset environment packets. ACTION is
9962 either "set" or "unset". PACKET is either "QEnvironmentHexEncoded"
9963 or "QEnvironmentUnsetVariable". VALUE is the variable to be
9964 sent. */
9965
6b8edb51
PA
9966void
9967remote_target::send_environment_packet (const char *action,
9968 const char *packet,
9969 const char *value)
0a2dde4a 9970{
6b8edb51
PA
9971 remote_state *rs = get_remote_state ();
9972
0a2dde4a
SDJ
9973 /* Convert the environment variable to an hex string, which
9974 is the best format to be transmitted over the wire. */
9975 std::string encoded_value = bin2hex ((const gdb_byte *) value,
9976 strlen (value));
9977
8d64371b 9978 xsnprintf (rs->buf.data (), get_remote_packet_size (),
0a2dde4a
SDJ
9979 "%s:%s", packet, encoded_value.c_str ());
9980
9981 putpkt (rs->buf);
8d64371b
TT
9982 getpkt (&rs->buf, 0);
9983 if (strcmp (rs->buf.data (), "OK") != 0)
0a2dde4a
SDJ
9984 warning (_("Unable to %s environment variable '%s' on remote."),
9985 action, value);
9986}
9987
9988/* Helper function to handle the QEnvironment* packets. */
9989
6b8edb51
PA
9990void
9991remote_target::extended_remote_environment_support ()
0a2dde4a 9992{
6b8edb51
PA
9993 remote_state *rs = get_remote_state ();
9994
0a2dde4a
SDJ
9995 if (packet_support (PACKET_QEnvironmentReset) != PACKET_DISABLE)
9996 {
9997 putpkt ("QEnvironmentReset");
8d64371b
TT
9998 getpkt (&rs->buf, 0);
9999 if (strcmp (rs->buf.data (), "OK") != 0)
0a2dde4a
SDJ
10000 warning (_("Unable to reset environment on remote."));
10001 }
10002
10003 gdb_environ *e = &current_inferior ()->environment;
10004
10005 if (packet_support (PACKET_QEnvironmentHexEncoded) != PACKET_DISABLE)
10006 for (const std::string &el : e->user_set_env ())
6b8edb51 10007 send_environment_packet ("set", "QEnvironmentHexEncoded",
0a2dde4a
SDJ
10008 el.c_str ());
10009
10010 if (packet_support (PACKET_QEnvironmentUnset) != PACKET_DISABLE)
10011 for (const std::string &el : e->user_unset_env ())
6b8edb51 10012 send_environment_packet ("unset", "QEnvironmentUnset", el.c_str ());
0a2dde4a
SDJ
10013}
10014
bc3b087d
SDJ
10015/* Helper function to set the current working directory for the
10016 inferior in the remote target. */
10017
6b8edb51
PA
10018void
10019remote_target::extended_remote_set_inferior_cwd ()
bc3b087d
SDJ
10020{
10021 if (packet_support (PACKET_QSetWorkingDir) != PACKET_DISABLE)
10022 {
10023 const char *inferior_cwd = get_inferior_cwd ();
6b8edb51 10024 remote_state *rs = get_remote_state ();
bc3b087d
SDJ
10025
10026 if (inferior_cwd != NULL)
10027 {
10028 std::string hexpath = bin2hex ((const gdb_byte *) inferior_cwd,
10029 strlen (inferior_cwd));
10030
8d64371b 10031 xsnprintf (rs->buf.data (), get_remote_packet_size (),
bc3b087d
SDJ
10032 "QSetWorkingDir:%s", hexpath.c_str ());
10033 }
10034 else
10035 {
10036 /* An empty inferior_cwd means that the user wants us to
10037 reset the remote server's inferior's cwd. */
8d64371b 10038 xsnprintf (rs->buf.data (), get_remote_packet_size (),
bc3b087d
SDJ
10039 "QSetWorkingDir:");
10040 }
10041
10042 putpkt (rs->buf);
8d64371b 10043 getpkt (&rs->buf, 0);
bc3b087d
SDJ
10044 if (packet_ok (rs->buf,
10045 &remote_protocol_packets[PACKET_QSetWorkingDir])
10046 != PACKET_OK)
10047 error (_("\
10048Remote replied unexpectedly while setting the inferior's working\n\
10049directory: %s"),
8d64371b 10050 rs->buf.data ());
bc3b087d
SDJ
10051
10052 }
10053}
10054
2d717e4f
DJ
10055/* In the extended protocol we want to be able to do things like
10056 "run" and have them basically work as expected. So we need
10057 a special create_inferior function. We support changing the
10058 executable file and the command line arguments, but not the
10059 environment. */
10060
f6ac5f3d
PA
10061void
10062extended_remote_target::create_inferior (const char *exec_file,
10063 const std::string &args,
10064 char **env, int from_tty)
43ff13b4 10065{
3405876a
PA
10066 int run_worked;
10067 char *stop_reply;
10068 struct remote_state *rs = get_remote_state ();
94585166 10069 const char *remote_exec_file = get_remote_exec_file ();
3405876a 10070
43ff13b4 10071 /* If running asynchronously, register the target file descriptor
23860348 10072 with the event loop. */
75c99385 10073 if (target_can_async_p ())
6a3753b3 10074 target_async (1);
43ff13b4 10075
03583c20 10076 /* Disable address space randomization if requested (and supported). */
f6ac5f3d 10077 if (supports_disable_randomization ())
03583c20
UW
10078 extended_remote_disable_randomization (disable_randomization);
10079
aefd8b33
SDJ
10080 /* If startup-with-shell is on, we inform gdbserver to start the
10081 remote inferior using a shell. */
10082 if (packet_support (PACKET_QStartupWithShell) != PACKET_DISABLE)
10083 {
8d64371b 10084 xsnprintf (rs->buf.data (), get_remote_packet_size (),
aefd8b33
SDJ
10085 "QStartupWithShell:%d", startup_with_shell ? 1 : 0);
10086 putpkt (rs->buf);
8d64371b
TT
10087 getpkt (&rs->buf, 0);
10088 if (strcmp (rs->buf.data (), "OK") != 0)
aefd8b33
SDJ
10089 error (_("\
10090Remote replied unexpectedly while setting startup-with-shell: %s"),
8d64371b 10091 rs->buf.data ());
aefd8b33
SDJ
10092 }
10093
6b8edb51 10094 extended_remote_environment_support ();
0a2dde4a 10095
6b8edb51 10096 extended_remote_set_inferior_cwd ();
bc3b087d 10097
43ff13b4 10098 /* Now restart the remote server. */
3405876a
PA
10099 run_worked = extended_remote_run (args) != -1;
10100 if (!run_worked)
2d717e4f
DJ
10101 {
10102 /* vRun was not supported. Fail if we need it to do what the
10103 user requested. */
10104 if (remote_exec_file[0])
10105 error (_("Remote target does not support \"set remote exec-file\""));
7c5ded6a 10106 if (!args.empty ())
65e65158 10107 error (_("Remote target does not support \"set args\" or run ARGS"));
43ff13b4 10108
2d717e4f
DJ
10109 /* Fall back to "R". */
10110 extended_remote_restart ();
10111 }
424163ea 10112
3405876a 10113 /* vRun's success return is a stop reply. */
8d64371b 10114 stop_reply = run_worked ? rs->buf.data () : NULL;
3405876a 10115 add_current_inferior_and_thread (stop_reply);
c0a2216e 10116
2d717e4f
DJ
10117 /* Get updated offsets, if the stub uses qOffsets. */
10118 get_offsets ();
2d717e4f 10119}
c906108c 10120\f
c5aa993b 10121
b775012e
LM
10122/* Given a location's target info BP_TGT and the packet buffer BUF, output
10123 the list of conditions (in agent expression bytecode format), if any, the
10124 target needs to evaluate. The output is placed into the packet buffer
bba74b36 10125 started from BUF and ended at BUF_END. */
b775012e
LM
10126
10127static int
10128remote_add_target_side_condition (struct gdbarch *gdbarch,
bba74b36
YQ
10129 struct bp_target_info *bp_tgt, char *buf,
10130 char *buf_end)
b775012e 10131{
3cde5c42 10132 if (bp_tgt->conditions.empty ())
b775012e
LM
10133 return 0;
10134
10135 buf += strlen (buf);
bba74b36 10136 xsnprintf (buf, buf_end - buf, "%s", ";");
b775012e
LM
10137 buf++;
10138
83621223 10139 /* Send conditions to the target. */
d538e36d 10140 for (agent_expr *aexpr : bp_tgt->conditions)
b775012e 10141 {
bba74b36 10142 xsnprintf (buf, buf_end - buf, "X%x,", aexpr->len);
b775012e 10143 buf += strlen (buf);
3cde5c42 10144 for (int i = 0; i < aexpr->len; ++i)
b775012e
LM
10145 buf = pack_hex_byte (buf, aexpr->buf[i]);
10146 *buf = '\0';
10147 }
b775012e
LM
10148 return 0;
10149}
10150
d3ce09f5
SS
10151static void
10152remote_add_target_side_commands (struct gdbarch *gdbarch,
10153 struct bp_target_info *bp_tgt, char *buf)
10154{
3cde5c42 10155 if (bp_tgt->tcommands.empty ())
d3ce09f5
SS
10156 return;
10157
10158 buf += strlen (buf);
10159
10160 sprintf (buf, ";cmds:%x,", bp_tgt->persist);
10161 buf += strlen (buf);
10162
10163 /* Concatenate all the agent expressions that are commands into the
10164 cmds parameter. */
df97be55 10165 for (agent_expr *aexpr : bp_tgt->tcommands)
d3ce09f5
SS
10166 {
10167 sprintf (buf, "X%x,", aexpr->len);
10168 buf += strlen (buf);
3cde5c42 10169 for (int i = 0; i < aexpr->len; ++i)
d3ce09f5
SS
10170 buf = pack_hex_byte (buf, aexpr->buf[i]);
10171 *buf = '\0';
10172 }
d3ce09f5
SS
10173}
10174
8181d85f
DJ
10175/* Insert a breakpoint. On targets that have software breakpoint
10176 support, we ask the remote target to do the work; on targets
10177 which don't, we insert a traditional memory breakpoint. */
c906108c 10178
f6ac5f3d
PA
10179int
10180remote_target::insert_breakpoint (struct gdbarch *gdbarch,
10181 struct bp_target_info *bp_tgt)
c906108c 10182{
d471ea57
AC
10183 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
10184 If it succeeds, then set the support to PACKET_ENABLE. If it
10185 fails, and the user has explicitly requested the Z support then
23860348 10186 report an error, otherwise, mark it disabled and go on. */
802188a7 10187
4082afcc 10188 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 10189 {
0d5ed153 10190 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 10191 struct remote_state *rs;
bba74b36 10192 char *p, *endbuf;
4fff2411 10193
28439a30
PA
10194 /* Make sure the remote is pointing at the right process, if
10195 necessary. */
10196 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10197 set_general_process ();
10198
4fff2411 10199 rs = get_remote_state ();
8d64371b
TT
10200 p = rs->buf.data ();
10201 endbuf = p + get_remote_packet_size ();
802188a7 10202
96baa820
JM
10203 *(p++) = 'Z';
10204 *(p++) = '0';
10205 *(p++) = ',';
7c0f6dcc 10206 addr = (ULONGEST) remote_address_masked (addr);
8181d85f 10207 p += hexnumstr (p, addr);
579c6ad9 10208 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
802188a7 10209
f6ac5f3d 10210 if (supports_evaluation_of_breakpoint_conditions ())
bba74b36 10211 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 10212
f6ac5f3d 10213 if (can_run_breakpoint_commands ())
d3ce09f5
SS
10214 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10215
6d820c5c 10216 putpkt (rs->buf);
8d64371b 10217 getpkt (&rs->buf, 0);
96baa820 10218
6d820c5c 10219 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
96baa820 10220 {
d471ea57
AC
10221 case PACKET_ERROR:
10222 return -1;
10223 case PACKET_OK:
10224 return 0;
10225 case PACKET_UNKNOWN:
10226 break;
96baa820
JM
10227 }
10228 }
c906108c 10229
0000e5cc
PA
10230 /* If this breakpoint has target-side commands but this stub doesn't
10231 support Z0 packets, throw error. */
3cde5c42 10232 if (!bp_tgt->tcommands.empty ())
0000e5cc
PA
10233 throw_error (NOT_SUPPORTED_ERROR, _("\
10234Target doesn't support breakpoints that have target side commands."));
10235
f6ac5f3d 10236 return memory_insert_breakpoint (this, gdbarch, bp_tgt);
c906108c
SS
10237}
10238
f6ac5f3d
PA
10239int
10240remote_target::remove_breakpoint (struct gdbarch *gdbarch,
10241 struct bp_target_info *bp_tgt,
10242 enum remove_bp_reason reason)
c906108c 10243{
8181d85f 10244 CORE_ADDR addr = bp_tgt->placed_address;
d01949b6 10245 struct remote_state *rs = get_remote_state ();
96baa820 10246
4082afcc 10247 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 10248 {
8d64371b
TT
10249 char *p = rs->buf.data ();
10250 char *endbuf = p + get_remote_packet_size ();
802188a7 10251
28439a30
PA
10252 /* Make sure the remote is pointing at the right process, if
10253 necessary. */
10254 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10255 set_general_process ();
10256
96baa820
JM
10257 *(p++) = 'z';
10258 *(p++) = '0';
10259 *(p++) = ',';
10260
8181d85f
DJ
10261 addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
10262 p += hexnumstr (p, addr);
579c6ad9 10263 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
802188a7 10264
6d820c5c 10265 putpkt (rs->buf);
8d64371b 10266 getpkt (&rs->buf, 0);
96baa820 10267
6d820c5c 10268 return (rs->buf[0] == 'E');
96baa820
JM
10269 }
10270
f6ac5f3d 10271 return memory_remove_breakpoint (this, gdbarch, bp_tgt, reason);
c906108c
SS
10272}
10273
f486487f 10274static enum Z_packet_type
d471ea57
AC
10275watchpoint_to_Z_packet (int type)
10276{
10277 switch (type)
10278 {
10279 case hw_write:
bb858e6a 10280 return Z_PACKET_WRITE_WP;
d471ea57
AC
10281 break;
10282 case hw_read:
bb858e6a 10283 return Z_PACKET_READ_WP;
d471ea57
AC
10284 break;
10285 case hw_access:
bb858e6a 10286 return Z_PACKET_ACCESS_WP;
d471ea57
AC
10287 break;
10288 default:
8e65ff28 10289 internal_error (__FILE__, __LINE__,
e2e0b3e5 10290 _("hw_bp_to_z: bad watchpoint type %d"), type);
d471ea57
AC
10291 }
10292}
10293
f6ac5f3d
PA
10294int
10295remote_target::insert_watchpoint (CORE_ADDR addr, int len,
10296 enum target_hw_bp_type type, struct expression *cond)
96baa820 10297{
d01949b6 10298 struct remote_state *rs = get_remote_state ();
8d64371b 10299 char *endbuf = rs->buf.data () + get_remote_packet_size ();
e514a9d6 10300 char *p;
d471ea57 10301 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
96baa820 10302
4082afcc 10303 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
85d721b8 10304 return 1;
802188a7 10305
28439a30
PA
10306 /* Make sure the remote is pointing at the right process, if
10307 necessary. */
10308 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10309 set_general_process ();
10310
8d64371b
TT
10311 xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "Z%x,", packet);
10312 p = strchr (rs->buf.data (), '\0');
96baa820
JM
10313 addr = remote_address_masked (addr);
10314 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 10315 xsnprintf (p, endbuf - p, ",%x", len);
802188a7 10316
6d820c5c 10317 putpkt (rs->buf);
8d64371b 10318 getpkt (&rs->buf, 0);
96baa820 10319
6d820c5c 10320 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
10321 {
10322 case PACKET_ERROR:
d471ea57 10323 return -1;
85d721b8
PA
10324 case PACKET_UNKNOWN:
10325 return 1;
d471ea57
AC
10326 case PACKET_OK:
10327 return 0;
10328 }
8e65ff28 10329 internal_error (__FILE__, __LINE__,
e2e0b3e5 10330 _("remote_insert_watchpoint: reached end of function"));
96baa820
JM
10331}
10332
57810aa7 10333bool
f6ac5f3d
PA
10334remote_target::watchpoint_addr_within_range (CORE_ADDR addr,
10335 CORE_ADDR start, int length)
283002cf
MR
10336{
10337 CORE_ADDR diff = remote_address_masked (addr - start);
10338
10339 return diff < length;
10340}
10341
d471ea57 10342
f6ac5f3d
PA
10343int
10344remote_target::remove_watchpoint (CORE_ADDR addr, int len,
10345 enum target_hw_bp_type type, struct expression *cond)
96baa820 10346{
d01949b6 10347 struct remote_state *rs = get_remote_state ();
8d64371b 10348 char *endbuf = rs->buf.data () + get_remote_packet_size ();
e514a9d6 10349 char *p;
d471ea57
AC
10350 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
10351
4082afcc 10352 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
5cffb350 10353 return -1;
802188a7 10354
28439a30
PA
10355 /* Make sure the remote is pointing at the right process, if
10356 necessary. */
10357 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10358 set_general_process ();
10359
8d64371b
TT
10360 xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "z%x,", packet);
10361 p = strchr (rs->buf.data (), '\0');
96baa820
JM
10362 addr = remote_address_masked (addr);
10363 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 10364 xsnprintf (p, endbuf - p, ",%x", len);
6d820c5c 10365 putpkt (rs->buf);
8d64371b 10366 getpkt (&rs->buf, 0);
96baa820 10367
6d820c5c 10368 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
10369 {
10370 case PACKET_ERROR:
10371 case PACKET_UNKNOWN:
10372 return -1;
10373 case PACKET_OK:
10374 return 0;
10375 }
8e65ff28 10376 internal_error (__FILE__, __LINE__,
e2e0b3e5 10377 _("remote_remove_watchpoint: reached end of function"));
96baa820
JM
10378}
10379
3c3bea1c 10380
501eef12 10381int remote_hw_watchpoint_limit = -1;
480a3f21 10382int remote_hw_watchpoint_length_limit = -1;
501eef12 10383int remote_hw_breakpoint_limit = -1;
d471ea57 10384
f6ac5f3d
PA
10385int
10386remote_target::region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
480a3f21
PW
10387{
10388 if (remote_hw_watchpoint_length_limit == 0)
10389 return 0;
10390 else if (remote_hw_watchpoint_length_limit < 0)
10391 return 1;
10392 else if (len <= remote_hw_watchpoint_length_limit)
10393 return 1;
10394 else
10395 return 0;
10396}
10397
f6ac5f3d
PA
10398int
10399remote_target::can_use_hw_breakpoint (enum bptype type, int cnt, int ot)
96baa820 10400{
3c3bea1c
GS
10401 if (type == bp_hardware_breakpoint)
10402 {
10403 if (remote_hw_breakpoint_limit == 0)
10404 return 0;
501eef12
AC
10405 else if (remote_hw_breakpoint_limit < 0)
10406 return 1;
3c3bea1c
GS
10407 else if (cnt <= remote_hw_breakpoint_limit)
10408 return 1;
10409 }
10410 else
10411 {
10412 if (remote_hw_watchpoint_limit == 0)
10413 return 0;
501eef12
AC
10414 else if (remote_hw_watchpoint_limit < 0)
10415 return 1;
3c3bea1c
GS
10416 else if (ot)
10417 return -1;
10418 else if (cnt <= remote_hw_watchpoint_limit)
10419 return 1;
10420 }
10421 return -1;
10422}
10423
f7e6eed5
PA
10424/* The to_stopped_by_sw_breakpoint method of target remote. */
10425
57810aa7 10426bool
f6ac5f3d 10427remote_target::stopped_by_sw_breakpoint ()
f7e6eed5 10428{
799a2abe 10429 struct thread_info *thread = inferior_thread ();
f7e6eed5 10430
799a2abe 10431 return (thread->priv != NULL
7aabaf9d
SM
10432 && (get_remote_thread_info (thread)->stop_reason
10433 == TARGET_STOPPED_BY_SW_BREAKPOINT));
f7e6eed5
PA
10434}
10435
10436/* The to_supports_stopped_by_sw_breakpoint method of target
10437 remote. */
10438
57810aa7 10439bool
f6ac5f3d 10440remote_target::supports_stopped_by_sw_breakpoint ()
f7e6eed5 10441{
f7e6eed5
PA
10442 return (packet_support (PACKET_swbreak_feature) == PACKET_ENABLE);
10443}
10444
10445/* The to_stopped_by_hw_breakpoint method of target remote. */
10446
57810aa7 10447bool
f6ac5f3d 10448remote_target::stopped_by_hw_breakpoint ()
f7e6eed5 10449{
799a2abe 10450 struct thread_info *thread = inferior_thread ();
f7e6eed5 10451
799a2abe 10452 return (thread->priv != NULL
7aabaf9d
SM
10453 && (get_remote_thread_info (thread)->stop_reason
10454 == TARGET_STOPPED_BY_HW_BREAKPOINT));
f7e6eed5
PA
10455}
10456
10457/* The to_supports_stopped_by_hw_breakpoint method of target
10458 remote. */
10459
57810aa7 10460bool
f6ac5f3d 10461remote_target::supports_stopped_by_hw_breakpoint ()
f7e6eed5 10462{
f7e6eed5
PA
10463 return (packet_support (PACKET_hwbreak_feature) == PACKET_ENABLE);
10464}
10465
57810aa7 10466bool
f6ac5f3d 10467remote_target::stopped_by_watchpoint ()
3c3bea1c 10468{
799a2abe 10469 struct thread_info *thread = inferior_thread ();
ee154bee 10470
799a2abe 10471 return (thread->priv != NULL
7aabaf9d
SM
10472 && (get_remote_thread_info (thread)->stop_reason
10473 == TARGET_STOPPED_BY_WATCHPOINT));
3c3bea1c
GS
10474}
10475
57810aa7 10476bool
f6ac5f3d 10477remote_target::stopped_data_address (CORE_ADDR *addr_p)
3c3bea1c 10478{
799a2abe 10479 struct thread_info *thread = inferior_thread ();
a744cf53 10480
799a2abe 10481 if (thread->priv != NULL
7aabaf9d
SM
10482 && (get_remote_thread_info (thread)->stop_reason
10483 == TARGET_STOPPED_BY_WATCHPOINT))
4aa7a7f5 10484 {
7aabaf9d 10485 *addr_p = get_remote_thread_info (thread)->watch_data_address;
57810aa7 10486 return true;
4aa7a7f5
JJ
10487 }
10488
57810aa7 10489 return false;
3c3bea1c
GS
10490}
10491
10492
f6ac5f3d
PA
10493int
10494remote_target::insert_hw_breakpoint (struct gdbarch *gdbarch,
10495 struct bp_target_info *bp_tgt)
3c3bea1c 10496{
0d5ed153 10497 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 10498 struct remote_state *rs;
bba74b36 10499 char *p, *endbuf;
dd61ec5c 10500 char *message;
3c3bea1c 10501
4082afcc 10502 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 10503 return -1;
2bc416ba 10504
28439a30
PA
10505 /* Make sure the remote is pointing at the right process, if
10506 necessary. */
10507 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10508 set_general_process ();
10509
4fff2411 10510 rs = get_remote_state ();
8d64371b
TT
10511 p = rs->buf.data ();
10512 endbuf = p + get_remote_packet_size ();
4fff2411 10513
96baa820
JM
10514 *(p++) = 'Z';
10515 *(p++) = '1';
10516 *(p++) = ',';
802188a7 10517
0d5ed153 10518 addr = remote_address_masked (addr);
96baa820 10519 p += hexnumstr (p, (ULONGEST) addr);
579c6ad9 10520 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
96baa820 10521
f6ac5f3d 10522 if (supports_evaluation_of_breakpoint_conditions ())
bba74b36 10523 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 10524
f6ac5f3d 10525 if (can_run_breakpoint_commands ())
d3ce09f5
SS
10526 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10527
6d820c5c 10528 putpkt (rs->buf);
8d64371b 10529 getpkt (&rs->buf, 0);
96baa820 10530
6d820c5c 10531 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
10532 {
10533 case PACKET_ERROR:
dd61ec5c
MW
10534 if (rs->buf[1] == '.')
10535 {
8d64371b 10536 message = strchr (&rs->buf[2], '.');
dd61ec5c 10537 if (message)
0316657e 10538 error (_("Remote failure reply: %s"), message + 1);
dd61ec5c
MW
10539 }
10540 return -1;
d471ea57
AC
10541 case PACKET_UNKNOWN:
10542 return -1;
10543 case PACKET_OK:
10544 return 0;
10545 }
8e65ff28 10546 internal_error (__FILE__, __LINE__,
e2e0b3e5 10547 _("remote_insert_hw_breakpoint: reached end of function"));
96baa820
JM
10548}
10549
d471ea57 10550
f6ac5f3d
PA
10551int
10552remote_target::remove_hw_breakpoint (struct gdbarch *gdbarch,
10553 struct bp_target_info *bp_tgt)
96baa820 10554{
8181d85f 10555 CORE_ADDR addr;
d01949b6 10556 struct remote_state *rs = get_remote_state ();
8d64371b
TT
10557 char *p = rs->buf.data ();
10558 char *endbuf = p + get_remote_packet_size ();
c8189ed1 10559
4082afcc 10560 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 10561 return -1;
802188a7 10562
28439a30
PA
10563 /* Make sure the remote is pointing at the right process, if
10564 necessary. */
10565 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10566 set_general_process ();
10567
96baa820
JM
10568 *(p++) = 'z';
10569 *(p++) = '1';
10570 *(p++) = ',';
802188a7 10571
8181d85f 10572 addr = remote_address_masked (bp_tgt->placed_address);
96baa820 10573 p += hexnumstr (p, (ULONGEST) addr);
579c6ad9 10574 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
96baa820 10575
6d820c5c 10576 putpkt (rs->buf);
8d64371b 10577 getpkt (&rs->buf, 0);
802188a7 10578
6d820c5c 10579 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
10580 {
10581 case PACKET_ERROR:
10582 case PACKET_UNKNOWN:
10583 return -1;
10584 case PACKET_OK:
10585 return 0;
10586 }
8e65ff28 10587 internal_error (__FILE__, __LINE__,
e2e0b3e5 10588 _("remote_remove_hw_breakpoint: reached end of function"));
96baa820 10589}
96baa820 10590
4a5e7a5b
PA
10591/* Verify memory using the "qCRC:" request. */
10592
f6ac5f3d
PA
10593int
10594remote_target::verify_memory (const gdb_byte *data, CORE_ADDR lma, ULONGEST size)
4a5e7a5b
PA
10595{
10596 struct remote_state *rs = get_remote_state ();
10597 unsigned long host_crc, target_crc;
10598 char *tmp;
10599
936d2992
PA
10600 /* It doesn't make sense to use qCRC if the remote target is
10601 connected but not running. */
10602 if (target_has_execution && packet_support (PACKET_qCRC) != PACKET_DISABLE)
10603 {
10604 enum packet_result result;
28439a30 10605
936d2992
PA
10606 /* Make sure the remote is pointing at the right process. */
10607 set_general_process ();
4a5e7a5b 10608
936d2992 10609 /* FIXME: assumes lma can fit into long. */
8d64371b 10610 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qCRC:%lx,%lx",
936d2992
PA
10611 (long) lma, (long) size);
10612 putpkt (rs->buf);
4a5e7a5b 10613
936d2992
PA
10614 /* Be clever; compute the host_crc before waiting for target
10615 reply. */
10616 host_crc = xcrc32 (data, size, 0xffffffff);
10617
8d64371b 10618 getpkt (&rs->buf, 0);
4a5e7a5b 10619
936d2992
PA
10620 result = packet_ok (rs->buf,
10621 &remote_protocol_packets[PACKET_qCRC]);
10622 if (result == PACKET_ERROR)
10623 return -1;
10624 else if (result == PACKET_OK)
10625 {
10626 for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
10627 target_crc = target_crc * 16 + fromhex (*tmp);
4a5e7a5b 10628
936d2992
PA
10629 return (host_crc == target_crc);
10630 }
10631 }
4a5e7a5b 10632
f6ac5f3d 10633 return simple_verify_memory (this, data, lma, size);
4a5e7a5b
PA
10634}
10635
c906108c
SS
10636/* compare-sections command
10637
10638 With no arguments, compares each loadable section in the exec bfd
10639 with the same memory range on the target, and reports mismatches.
4a5e7a5b 10640 Useful for verifying the image on the target against the exec file. */
e514a9d6 10641
c906108c 10642static void
ac88e2de 10643compare_sections_command (const char *args, int from_tty)
c906108c
SS
10644{
10645 asection *s;
ce359b09 10646 const char *sectname;
c906108c
SS
10647 bfd_size_type size;
10648 bfd_vma lma;
10649 int matched = 0;
10650 int mismatched = 0;
4a5e7a5b 10651 int res;
95cf3b38 10652 int read_only = 0;
c906108c
SS
10653
10654 if (!exec_bfd)
8a3fe4f8 10655 error (_("command cannot be used without an exec file"));
c906108c 10656
95cf3b38
DT
10657 if (args != NULL && strcmp (args, "-r") == 0)
10658 {
10659 read_only = 1;
10660 args = NULL;
10661 }
10662
c5aa993b 10663 for (s = exec_bfd->sections; s; s = s->next)
c906108c
SS
10664 {
10665 if (!(s->flags & SEC_LOAD))
0df8b418 10666 continue; /* Skip non-loadable section. */
c906108c 10667
95cf3b38
DT
10668 if (read_only && (s->flags & SEC_READONLY) == 0)
10669 continue; /* Skip writeable sections */
10670
2c500098 10671 size = bfd_get_section_size (s);
c906108c 10672 if (size == 0)
0df8b418 10673 continue; /* Skip zero-length section. */
c906108c 10674
ce359b09 10675 sectname = bfd_get_section_name (exec_bfd, s);
c906108c 10676 if (args && strcmp (args, sectname) != 0)
0df8b418 10677 continue; /* Not the section selected by user. */
c906108c 10678
0df8b418 10679 matched = 1; /* Do this section. */
c906108c 10680 lma = s->lma;
c906108c 10681
b80406ac
TT
10682 gdb::byte_vector sectdata (size);
10683 bfd_get_section_contents (exec_bfd, s, sectdata.data (), 0, size);
c906108c 10684
b80406ac 10685 res = target_verify_memory (sectdata.data (), lma, size);
4a5e7a5b
PA
10686
10687 if (res == -1)
5af949e3 10688 error (_("target memory fault, section %s, range %s -- %s"), sectname,
f5656ead
TT
10689 paddress (target_gdbarch (), lma),
10690 paddress (target_gdbarch (), lma + size));
c906108c 10691
5af949e3 10692 printf_filtered ("Section %s, range %s -- %s: ", sectname,
f5656ead
TT
10693 paddress (target_gdbarch (), lma),
10694 paddress (target_gdbarch (), lma + size));
4a5e7a5b 10695 if (res)
c906108c
SS
10696 printf_filtered ("matched.\n");
10697 else
c5aa993b
JM
10698 {
10699 printf_filtered ("MIS-MATCHED!\n");
10700 mismatched++;
10701 }
c906108c
SS
10702 }
10703 if (mismatched > 0)
936d2992 10704 warning (_("One or more sections of the target image does not match\n\
8a3fe4f8 10705the loaded file\n"));
c906108c 10706 if (args && !matched)
a3f17187 10707 printf_filtered (_("No loaded section named '%s'.\n"), args);
c906108c
SS
10708}
10709
0e7f50da
UW
10710/* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
10711 into remote target. The number of bytes written to the remote
10712 target is returned, or -1 for error. */
10713
6b8edb51
PA
10714target_xfer_status
10715remote_target::remote_write_qxfer (const char *object_name,
10716 const char *annex, const gdb_byte *writebuf,
10717 ULONGEST offset, LONGEST len,
10718 ULONGEST *xfered_len,
10719 struct packet_config *packet)
0e7f50da
UW
10720{
10721 int i, buf_len;
10722 ULONGEST n;
0e7f50da
UW
10723 struct remote_state *rs = get_remote_state ();
10724 int max_size = get_memory_write_packet_size ();
10725
7cc244de 10726 if (packet_config_support (packet) == PACKET_DISABLE)
2ed4b548 10727 return TARGET_XFER_E_IO;
0e7f50da
UW
10728
10729 /* Insert header. */
8d64371b 10730 i = snprintf (rs->buf.data (), max_size,
0e7f50da
UW
10731 "qXfer:%s:write:%s:%s:",
10732 object_name, annex ? annex : "",
10733 phex_nz (offset, sizeof offset));
10734 max_size -= (i + 1);
10735
10736 /* Escape as much data as fits into rs->buf. */
10737 buf_len = remote_escape_output
8d64371b 10738 (writebuf, len, 1, (gdb_byte *) rs->buf.data () + i, &max_size, max_size);
0e7f50da 10739
8d64371b
TT
10740 if (putpkt_binary (rs->buf.data (), i + buf_len) < 0
10741 || getpkt_sane (&rs->buf, 0) < 0
0e7f50da 10742 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 10743 return TARGET_XFER_E_IO;
0e7f50da 10744
8d64371b 10745 unpack_varlen_hex (rs->buf.data (), &n);
9b409511
YQ
10746
10747 *xfered_len = n;
92ffd475 10748 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
0e7f50da
UW
10749}
10750
0876f84a
DJ
10751/* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
10752 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
10753 number of bytes read is returned, or 0 for EOF, or -1 for error.
10754 The number of bytes read may be less than LEN without indicating an
10755 EOF. PACKET is checked and updated to indicate whether the remote
10756 target supports this object. */
10757
6b8edb51
PA
10758target_xfer_status
10759remote_target::remote_read_qxfer (const char *object_name,
10760 const char *annex,
10761 gdb_byte *readbuf, ULONGEST offset,
10762 LONGEST len,
10763 ULONGEST *xfered_len,
10764 struct packet_config *packet)
0876f84a 10765{
0876f84a 10766 struct remote_state *rs = get_remote_state ();
0876f84a
DJ
10767 LONGEST i, n, packet_len;
10768
7cc244de 10769 if (packet_config_support (packet) == PACKET_DISABLE)
2ed4b548 10770 return TARGET_XFER_E_IO;
0876f84a
DJ
10771
10772 /* Check whether we've cached an end-of-object packet that matches
10773 this request. */
8e88304f 10774 if (rs->finished_object)
0876f84a 10775 {
8e88304f
TT
10776 if (strcmp (object_name, rs->finished_object) == 0
10777 && strcmp (annex ? annex : "", rs->finished_annex) == 0
10778 && offset == rs->finished_offset)
9b409511
YQ
10779 return TARGET_XFER_EOF;
10780
0876f84a
DJ
10781
10782 /* Otherwise, we're now reading something different. Discard
10783 the cache. */
8e88304f
TT
10784 xfree (rs->finished_object);
10785 xfree (rs->finished_annex);
10786 rs->finished_object = NULL;
10787 rs->finished_annex = NULL;
0876f84a
DJ
10788 }
10789
10790 /* Request only enough to fit in a single packet. The actual data
10791 may not, since we don't know how much of it will need to be escaped;
10792 the target is free to respond with slightly less data. We subtract
10793 five to account for the response type and the protocol frame. */
768adc05 10794 n = std::min<LONGEST> (get_remote_packet_size () - 5, len);
8d64371b
TT
10795 snprintf (rs->buf.data (), get_remote_packet_size () - 4,
10796 "qXfer:%s:read:%s:%s,%s",
0876f84a
DJ
10797 object_name, annex ? annex : "",
10798 phex_nz (offset, sizeof offset),
10799 phex_nz (n, sizeof n));
10800 i = putpkt (rs->buf);
10801 if (i < 0)
2ed4b548 10802 return TARGET_XFER_E_IO;
0876f84a
DJ
10803
10804 rs->buf[0] = '\0';
8d64371b 10805 packet_len = getpkt_sane (&rs->buf, 0);
0876f84a 10806 if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 10807 return TARGET_XFER_E_IO;
0876f84a
DJ
10808
10809 if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
8d64371b 10810 error (_("Unknown remote qXfer reply: %s"), rs->buf.data ());
0876f84a
DJ
10811
10812 /* 'm' means there is (or at least might be) more data after this
10813 batch. That does not make sense unless there's at least one byte
10814 of data in this reply. */
10815 if (rs->buf[0] == 'm' && packet_len == 1)
10816 error (_("Remote qXfer reply contained no data."));
10817
10818 /* Got some data. */
8d64371b 10819 i = remote_unescape_input ((gdb_byte *) rs->buf.data () + 1,
bc20a4af 10820 packet_len - 1, readbuf, n);
0876f84a
DJ
10821
10822 /* 'l' is an EOF marker, possibly including a final block of data,
0e7f50da
UW
10823 or possibly empty. If we have the final block of a non-empty
10824 object, record this fact to bypass a subsequent partial read. */
10825 if (rs->buf[0] == 'l' && offset + i > 0)
0876f84a 10826 {
8e88304f
TT
10827 rs->finished_object = xstrdup (object_name);
10828 rs->finished_annex = xstrdup (annex ? annex : "");
10829 rs->finished_offset = offset + i;
0876f84a
DJ
10830 }
10831
9b409511
YQ
10832 if (i == 0)
10833 return TARGET_XFER_EOF;
10834 else
10835 {
10836 *xfered_len = i;
10837 return TARGET_XFER_OK;
10838 }
0876f84a
DJ
10839}
10840
f6ac5f3d
PA
10841enum target_xfer_status
10842remote_target::xfer_partial (enum target_object object,
10843 const char *annex, gdb_byte *readbuf,
10844 const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
10845 ULONGEST *xfered_len)
c906108c 10846{
82f73884 10847 struct remote_state *rs;
c906108c 10848 int i;
6d820c5c 10849 char *p2;
1e3ff5ad 10850 char query_type;
124e13d9 10851 int unit_size = gdbarch_addressable_memory_unit_size (target_gdbarch ());
c906108c 10852
e6e4e701 10853 set_remote_traceframe ();
82f73884
PA
10854 set_general_thread (inferior_ptid);
10855
10856 rs = get_remote_state ();
10857
b2182ed2 10858 /* Handle memory using the standard memory routines. */
21e3b9b9
DJ
10859 if (object == TARGET_OBJECT_MEMORY)
10860 {
2d717e4f
DJ
10861 /* If the remote target is connected but not running, we should
10862 pass this request down to a lower stratum (e.g. the executable
10863 file). */
10864 if (!target_has_execution)
9b409511 10865 return TARGET_XFER_EOF;
2d717e4f 10866
21e3b9b9 10867 if (writebuf != NULL)
124e13d9
SM
10868 return remote_write_bytes (offset, writebuf, len, unit_size,
10869 xfered_len);
21e3b9b9 10870 else
6b8edb51 10871 return remote_read_bytes (offset, readbuf, len, unit_size,
124e13d9 10872 xfered_len);
21e3b9b9
DJ
10873 }
10874
0df8b418 10875 /* Handle SPU memory using qxfer packets. */
0e7f50da
UW
10876 if (object == TARGET_OBJECT_SPU)
10877 {
10878 if (readbuf)
f6ac5f3d 10879 return remote_read_qxfer ("spu", annex, readbuf, offset, len,
9b409511
YQ
10880 xfered_len, &remote_protocol_packets
10881 [PACKET_qXfer_spu_read]);
0e7f50da 10882 else
f6ac5f3d 10883 return remote_write_qxfer ("spu", annex, writebuf, offset, len,
9b409511
YQ
10884 xfered_len, &remote_protocol_packets
10885 [PACKET_qXfer_spu_write]);
0e7f50da
UW
10886 }
10887
4aa995e1
PA
10888 /* Handle extra signal info using qxfer packets. */
10889 if (object == TARGET_OBJECT_SIGNAL_INFO)
10890 {
10891 if (readbuf)
f6ac5f3d 10892 return remote_read_qxfer ("siginfo", annex, readbuf, offset, len,
9b409511 10893 xfered_len, &remote_protocol_packets
4aa995e1
PA
10894 [PACKET_qXfer_siginfo_read]);
10895 else
f6ac5f3d 10896 return remote_write_qxfer ("siginfo", annex,
9b409511 10897 writebuf, offset, len, xfered_len,
4aa995e1
PA
10898 &remote_protocol_packets
10899 [PACKET_qXfer_siginfo_write]);
10900 }
10901
0fb4aa4b
PA
10902 if (object == TARGET_OBJECT_STATIC_TRACE_DATA)
10903 {
10904 if (readbuf)
f6ac5f3d 10905 return remote_read_qxfer ("statictrace", annex,
9b409511 10906 readbuf, offset, len, xfered_len,
0fb4aa4b
PA
10907 &remote_protocol_packets
10908 [PACKET_qXfer_statictrace_read]);
10909 else
2ed4b548 10910 return TARGET_XFER_E_IO;
0fb4aa4b
PA
10911 }
10912
a76d924d
DJ
10913 /* Only handle flash writes. */
10914 if (writebuf != NULL)
10915 {
a76d924d
DJ
10916 switch (object)
10917 {
10918 case TARGET_OBJECT_FLASH:
6b8edb51 10919 return remote_flash_write (offset, len, xfered_len,
9b409511 10920 writebuf);
a76d924d
DJ
10921
10922 default:
2ed4b548 10923 return TARGET_XFER_E_IO;
a76d924d
DJ
10924 }
10925 }
4b8a223f 10926
1e3ff5ad
AC
10927 /* Map pre-existing objects onto letters. DO NOT do this for new
10928 objects!!! Instead specify new query packets. */
10929 switch (object)
c906108c 10930 {
1e3ff5ad
AC
10931 case TARGET_OBJECT_AVR:
10932 query_type = 'R';
10933 break;
802188a7
RM
10934
10935 case TARGET_OBJECT_AUXV:
0876f84a 10936 gdb_assert (annex == NULL);
f6ac5f3d 10937 return remote_read_qxfer ("auxv", annex, readbuf, offset, len,
9b409511 10938 xfered_len,
0876f84a 10939 &remote_protocol_packets[PACKET_qXfer_auxv]);
802188a7 10940
23181151
DJ
10941 case TARGET_OBJECT_AVAILABLE_FEATURES:
10942 return remote_read_qxfer
f6ac5f3d 10943 ("features", annex, readbuf, offset, len, xfered_len,
23181151
DJ
10944 &remote_protocol_packets[PACKET_qXfer_features]);
10945
cfa9d6d9
DJ
10946 case TARGET_OBJECT_LIBRARIES:
10947 return remote_read_qxfer
f6ac5f3d 10948 ("libraries", annex, readbuf, offset, len, xfered_len,
cfa9d6d9
DJ
10949 &remote_protocol_packets[PACKET_qXfer_libraries]);
10950
2268b414
JK
10951 case TARGET_OBJECT_LIBRARIES_SVR4:
10952 return remote_read_qxfer
f6ac5f3d 10953 ("libraries-svr4", annex, readbuf, offset, len, xfered_len,
2268b414
JK
10954 &remote_protocol_packets[PACKET_qXfer_libraries_svr4]);
10955
fd79ecee
DJ
10956 case TARGET_OBJECT_MEMORY_MAP:
10957 gdb_assert (annex == NULL);
f6ac5f3d 10958 return remote_read_qxfer ("memory-map", annex, readbuf, offset, len,
9b409511 10959 xfered_len,
fd79ecee
DJ
10960 &remote_protocol_packets[PACKET_qXfer_memory_map]);
10961
07e059b5
VP
10962 case TARGET_OBJECT_OSDATA:
10963 /* Should only get here if we're connected. */
5d93a237 10964 gdb_assert (rs->remote_desc);
07e059b5 10965 return remote_read_qxfer
f6ac5f3d 10966 ("osdata", annex, readbuf, offset, len, xfered_len,
07e059b5
VP
10967 &remote_protocol_packets[PACKET_qXfer_osdata]);
10968
dc146f7c
VP
10969 case TARGET_OBJECT_THREADS:
10970 gdb_assert (annex == NULL);
f6ac5f3d 10971 return remote_read_qxfer ("threads", annex, readbuf, offset, len,
9b409511 10972 xfered_len,
dc146f7c
VP
10973 &remote_protocol_packets[PACKET_qXfer_threads]);
10974
b3b9301e
PA
10975 case TARGET_OBJECT_TRACEFRAME_INFO:
10976 gdb_assert (annex == NULL);
10977 return remote_read_qxfer
f6ac5f3d 10978 ("traceframe-info", annex, readbuf, offset, len, xfered_len,
b3b9301e 10979 &remote_protocol_packets[PACKET_qXfer_traceframe_info]);
78d85199
YQ
10980
10981 case TARGET_OBJECT_FDPIC:
f6ac5f3d 10982 return remote_read_qxfer ("fdpic", annex, readbuf, offset, len,
9b409511 10983 xfered_len,
78d85199 10984 &remote_protocol_packets[PACKET_qXfer_fdpic]);
169081d0
TG
10985
10986 case TARGET_OBJECT_OPENVMS_UIB:
f6ac5f3d 10987 return remote_read_qxfer ("uib", annex, readbuf, offset, len,
9b409511 10988 xfered_len,
169081d0
TG
10989 &remote_protocol_packets[PACKET_qXfer_uib]);
10990
9accd112 10991 case TARGET_OBJECT_BTRACE:
f6ac5f3d 10992 return remote_read_qxfer ("btrace", annex, readbuf, offset, len,
9b409511 10993 xfered_len,
9accd112
MM
10994 &remote_protocol_packets[PACKET_qXfer_btrace]);
10995
f4abbc16 10996 case TARGET_OBJECT_BTRACE_CONF:
f6ac5f3d 10997 return remote_read_qxfer ("btrace-conf", annex, readbuf, offset,
f4abbc16
MM
10998 len, xfered_len,
10999 &remote_protocol_packets[PACKET_qXfer_btrace_conf]);
11000
c78fa86a 11001 case TARGET_OBJECT_EXEC_FILE:
f6ac5f3d 11002 return remote_read_qxfer ("exec-file", annex, readbuf, offset,
c78fa86a
GB
11003 len, xfered_len,
11004 &remote_protocol_packets[PACKET_qXfer_exec_file]);
11005
1e3ff5ad 11006 default:
2ed4b548 11007 return TARGET_XFER_E_IO;
c906108c
SS
11008 }
11009
0df8b418 11010 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
24b06219 11011 large enough let the caller deal with it. */
ea9c271d 11012 if (len < get_remote_packet_size ())
2ed4b548 11013 return TARGET_XFER_E_IO;
ea9c271d 11014 len = get_remote_packet_size ();
1e3ff5ad 11015
23860348 11016 /* Except for querying the minimum buffer size, target must be open. */
5d93a237 11017 if (!rs->remote_desc)
8a3fe4f8 11018 error (_("remote query is only available after target open"));
c906108c 11019
1e3ff5ad 11020 gdb_assert (annex != NULL);
4b8a223f 11021 gdb_assert (readbuf != NULL);
c906108c 11022
8d64371b 11023 p2 = rs->buf.data ();
c906108c
SS
11024 *p2++ = 'q';
11025 *p2++ = query_type;
11026
23860348
MS
11027 /* We used one buffer char for the remote protocol q command and
11028 another for the query type. As the remote protocol encapsulation
11029 uses 4 chars plus one extra in case we are debugging
11030 (remote_debug), we have PBUFZIZ - 7 left to pack the query
11031 string. */
c906108c 11032 i = 0;
ea9c271d 11033 while (annex[i] && (i < (get_remote_packet_size () - 8)))
c906108c 11034 {
1e3ff5ad
AC
11035 /* Bad caller may have sent forbidden characters. */
11036 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
11037 *p2++ = annex[i];
c906108c
SS
11038 i++;
11039 }
1e3ff5ad
AC
11040 *p2 = '\0';
11041 gdb_assert (annex[i] == '\0');
c906108c 11042
6d820c5c 11043 i = putpkt (rs->buf);
c5aa993b 11044 if (i < 0)
2ed4b548 11045 return TARGET_XFER_E_IO;
c906108c 11046
8d64371b
TT
11047 getpkt (&rs->buf, 0);
11048 strcpy ((char *) readbuf, rs->buf.data ());
c906108c 11049
9b409511 11050 *xfered_len = strlen ((char *) readbuf);
92ffd475 11051 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
c906108c
SS
11052}
11053
09c98b44
DB
11054/* Implementation of to_get_memory_xfer_limit. */
11055
f6ac5f3d
PA
11056ULONGEST
11057remote_target::get_memory_xfer_limit ()
09c98b44
DB
11058{
11059 return get_memory_write_packet_size ();
11060}
11061
f6ac5f3d
PA
11062int
11063remote_target::search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
11064 const gdb_byte *pattern, ULONGEST pattern_len,
11065 CORE_ADDR *found_addrp)
08388c79 11066{
f5656ead 11067 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
08388c79
DE
11068 struct remote_state *rs = get_remote_state ();
11069 int max_size = get_memory_write_packet_size ();
11070 struct packet_config *packet =
11071 &remote_protocol_packets[PACKET_qSearch_memory];
0df8b418
MS
11072 /* Number of packet bytes used to encode the pattern;
11073 this could be more than PATTERN_LEN due to escape characters. */
08388c79 11074 int escaped_pattern_len;
0df8b418 11075 /* Amount of pattern that was encodable in the packet. */
08388c79
DE
11076 int used_pattern_len;
11077 int i;
11078 int found;
11079 ULONGEST found_addr;
11080
7cc244de
PA
11081 /* Don't go to the target if we don't have to. This is done before
11082 checking packet_config_support to avoid the possibility that a
11083 success for this edge case means the facility works in
11084 general. */
08388c79
DE
11085 if (pattern_len > search_space_len)
11086 return 0;
11087 if (pattern_len == 0)
11088 {
11089 *found_addrp = start_addr;
11090 return 1;
11091 }
11092
11093 /* If we already know the packet isn't supported, fall back to the simple
11094 way of searching memory. */
11095
4082afcc 11096 if (packet_config_support (packet) == PACKET_DISABLE)
08388c79
DE
11097 {
11098 /* Target doesn't provided special support, fall back and use the
11099 standard support (copy memory and do the search here). */
f6ac5f3d 11100 return simple_search_memory (this, start_addr, search_space_len,
08388c79
DE
11101 pattern, pattern_len, found_addrp);
11102 }
11103
28439a30
PA
11104 /* Make sure the remote is pointing at the right process. */
11105 set_general_process ();
11106
08388c79 11107 /* Insert header. */
8d64371b 11108 i = snprintf (rs->buf.data (), max_size,
08388c79 11109 "qSearch:memory:%s;%s;",
5af949e3 11110 phex_nz (start_addr, addr_size),
08388c79
DE
11111 phex_nz (search_space_len, sizeof (search_space_len)));
11112 max_size -= (i + 1);
11113
11114 /* Escape as much data as fits into rs->buf. */
11115 escaped_pattern_len =
8d64371b
TT
11116 remote_escape_output (pattern, pattern_len, 1,
11117 (gdb_byte *) rs->buf.data () + i,
08388c79
DE
11118 &used_pattern_len, max_size);
11119
11120 /* Bail if the pattern is too large. */
11121 if (used_pattern_len != pattern_len)
9b20d036 11122 error (_("Pattern is too large to transmit to remote target."));
08388c79 11123
8d64371b
TT
11124 if (putpkt_binary (rs->buf.data (), i + escaped_pattern_len) < 0
11125 || getpkt_sane (&rs->buf, 0) < 0
08388c79
DE
11126 || packet_ok (rs->buf, packet) != PACKET_OK)
11127 {
11128 /* The request may not have worked because the command is not
11129 supported. If so, fall back to the simple way. */
7cc244de 11130 if (packet_config_support (packet) == PACKET_DISABLE)
08388c79 11131 {
f6ac5f3d 11132 return simple_search_memory (this, start_addr, search_space_len,
08388c79
DE
11133 pattern, pattern_len, found_addrp);
11134 }
11135 return -1;
11136 }
11137
11138 if (rs->buf[0] == '0')
11139 found = 0;
11140 else if (rs->buf[0] == '1')
11141 {
11142 found = 1;
11143 if (rs->buf[1] != ',')
8d64371b
TT
11144 error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ());
11145 unpack_varlen_hex (&rs->buf[2], &found_addr);
08388c79
DE
11146 *found_addrp = found_addr;
11147 }
11148 else
8d64371b 11149 error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ());
08388c79
DE
11150
11151 return found;
11152}
11153
f6ac5f3d
PA
11154void
11155remote_target::rcmd (const char *command, struct ui_file *outbuf)
96baa820 11156{
d01949b6 11157 struct remote_state *rs = get_remote_state ();
8d64371b 11158 char *p = rs->buf.data ();
96baa820 11159
5d93a237 11160 if (!rs->remote_desc)
8a3fe4f8 11161 error (_("remote rcmd is only available after target open"));
96baa820 11162
23860348 11163 /* Send a NULL command across as an empty command. */
7be570e7
JM
11164 if (command == NULL)
11165 command = "";
11166
23860348 11167 /* The query prefix. */
8d64371b
TT
11168 strcpy (rs->buf.data (), "qRcmd,");
11169 p = strchr (rs->buf.data (), '\0');
96baa820 11170
8d64371b 11171 if ((strlen (rs->buf.data ()) + strlen (command) * 2 + 8/*misc*/)
3e43a32a 11172 > get_remote_packet_size ())
8a3fe4f8 11173 error (_("\"monitor\" command ``%s'' is too long."), command);
96baa820 11174
23860348 11175 /* Encode the actual command. */
a30bf1f1 11176 bin2hex ((const gdb_byte *) command, p, strlen (command));
96baa820 11177
6d820c5c 11178 if (putpkt (rs->buf) < 0)
8a3fe4f8 11179 error (_("Communication problem with target."));
96baa820
JM
11180
11181 /* get/display the response */
11182 while (1)
11183 {
2e9f7625
DJ
11184 char *buf;
11185
00bf0b85 11186 /* XXX - see also remote_get_noisy_reply(). */
5b37825d 11187 QUIT; /* Allow user to bail out with ^C. */
2e9f7625 11188 rs->buf[0] = '\0';
8d64371b 11189 if (getpkt_sane (&rs->buf, 0) == -1)
5b37825d
PW
11190 {
11191 /* Timeout. Continue to (try to) read responses.
11192 This is better than stopping with an error, assuming the stub
11193 is still executing the (long) monitor command.
11194 If needed, the user can interrupt gdb using C-c, obtaining
11195 an effect similar to stop on timeout. */
11196 continue;
11197 }
8d64371b 11198 buf = rs->buf.data ();
96baa820 11199 if (buf[0] == '\0')
8a3fe4f8 11200 error (_("Target does not support this command."));
96baa820
JM
11201 if (buf[0] == 'O' && buf[1] != 'K')
11202 {
23860348 11203 remote_console_output (buf + 1); /* 'O' message from stub. */
96baa820
JM
11204 continue;
11205 }
11206 if (strcmp (buf, "OK") == 0)
11207 break;
7be570e7
JM
11208 if (strlen (buf) == 3 && buf[0] == 'E'
11209 && isdigit (buf[1]) && isdigit (buf[2]))
11210 {
8a3fe4f8 11211 error (_("Protocol error with Rcmd"));
7be570e7 11212 }
96baa820
JM
11213 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
11214 {
11215 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
a744cf53 11216
96baa820
JM
11217 fputc_unfiltered (c, outbuf);
11218 }
11219 break;
11220 }
11221}
11222
f6ac5f3d
PA
11223std::vector<mem_region>
11224remote_target::memory_map ()
fd79ecee 11225{
a664f67e 11226 std::vector<mem_region> result;
9018be22 11227 gdb::optional<gdb::char_vector> text
8b88a78e 11228 = target_read_stralloc (current_top_target (), TARGET_OBJECT_MEMORY_MAP, NULL);
fd79ecee
DJ
11229
11230 if (text)
9018be22 11231 result = parse_memory_map (text->data ());
fd79ecee
DJ
11232
11233 return result;
11234}
11235
c906108c 11236static void
ac88e2de 11237packet_command (const char *args, int from_tty)
c906108c 11238{
6b8edb51 11239 remote_target *remote = get_current_remote_target ();
c906108c 11240
6b8edb51 11241 if (remote == nullptr)
8a3fe4f8 11242 error (_("command can only be used with remote target"));
c906108c 11243
6b8edb51
PA
11244 remote->packet_command (args, from_tty);
11245}
11246
11247void
11248remote_target::packet_command (const char *args, int from_tty)
11249{
c5aa993b 11250 if (!args)
8a3fe4f8 11251 error (_("remote-packet command requires packet text as argument"));
c906108c
SS
11252
11253 puts_filtered ("sending: ");
11254 print_packet (args);
11255 puts_filtered ("\n");
11256 putpkt (args);
11257
6b8edb51
PA
11258 remote_state *rs = get_remote_state ();
11259
8d64371b 11260 getpkt (&rs->buf, 0);
c906108c 11261 puts_filtered ("received: ");
8d64371b 11262 print_packet (rs->buf.data ());
c906108c
SS
11263 puts_filtered ("\n");
11264}
11265
11266#if 0
23860348 11267/* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
c906108c 11268
a14ed312 11269static void display_thread_info (struct gdb_ext_thread_info *info);
c906108c 11270
a14ed312 11271static void threadset_test_cmd (char *cmd, int tty);
c906108c 11272
a14ed312 11273static void threadalive_test (char *cmd, int tty);
c906108c 11274
a14ed312 11275static void threadlist_test_cmd (char *cmd, int tty);
c906108c 11276
23860348 11277int get_and_display_threadinfo (threadref *ref);
c906108c 11278
a14ed312 11279static void threadinfo_test_cmd (char *cmd, int tty);
c906108c 11280
23860348 11281static int thread_display_step (threadref *ref, void *context);
c906108c 11282
a14ed312 11283static void threadlist_update_test_cmd (char *cmd, int tty);
c906108c 11284
a14ed312 11285static void init_remote_threadtests (void);
c906108c 11286
23860348 11287#define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
c906108c
SS
11288
11289static void
0b39b52e 11290threadset_test_cmd (const char *cmd, int tty)
c906108c
SS
11291{
11292 int sample_thread = SAMPLE_THREAD;
11293
a3f17187 11294 printf_filtered (_("Remote threadset test\n"));
79d7f229 11295 set_general_thread (sample_thread);
c906108c
SS
11296}
11297
11298
11299static void
0b39b52e 11300threadalive_test (const char *cmd, int tty)
c906108c
SS
11301{
11302 int sample_thread = SAMPLE_THREAD;
e99b03dc 11303 int pid = inferior_ptid.pid ();
fd79271b 11304 ptid_t ptid = ptid_t (pid, sample_thread, 0);
c906108c 11305
79d7f229 11306 if (remote_thread_alive (ptid))
c906108c
SS
11307 printf_filtered ("PASS: Thread alive test\n");
11308 else
11309 printf_filtered ("FAIL: Thread alive test\n");
11310}
11311
23860348 11312void output_threadid (char *title, threadref *ref);
c906108c
SS
11313
11314void
fba45db2 11315output_threadid (char *title, threadref *ref)
c906108c
SS
11316{
11317 char hexid[20];
11318
23860348 11319 pack_threadid (&hexid[0], ref); /* Convert threead id into hex. */
c906108c
SS
11320 hexid[16] = 0;
11321 printf_filtered ("%s %s\n", title, (&hexid[0]));
11322}
11323
11324static void
0b39b52e 11325threadlist_test_cmd (const char *cmd, int tty)
c906108c
SS
11326{
11327 int startflag = 1;
11328 threadref nextthread;
11329 int done, result_count;
11330 threadref threadlist[3];
11331
11332 printf_filtered ("Remote Threadlist test\n");
11333 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
11334 &result_count, &threadlist[0]))
11335 printf_filtered ("FAIL: threadlist test\n");
11336 else
11337 {
11338 threadref *scan = threadlist;
11339 threadref *limit = scan + result_count;
11340
11341 while (scan < limit)
11342 output_threadid (" thread ", scan++);
11343 }
11344}
11345
11346void
fba45db2 11347display_thread_info (struct gdb_ext_thread_info *info)
c906108c
SS
11348{
11349 output_threadid ("Threadid: ", &info->threadid);
11350 printf_filtered ("Name: %s\n ", info->shortname);
11351 printf_filtered ("State: %s\n", info->display);
11352 printf_filtered ("other: %s\n\n", info->more_display);
11353}
11354
11355int
fba45db2 11356get_and_display_threadinfo (threadref *ref)
c906108c
SS
11357{
11358 int result;
11359 int set;
11360 struct gdb_ext_thread_info threadinfo;
11361
11362 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
11363 | TAG_MOREDISPLAY | TAG_DISPLAY;
11364 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
11365 display_thread_info (&threadinfo);
11366 return result;
11367}
11368
11369static void
0b39b52e 11370threadinfo_test_cmd (const char *cmd, int tty)
c906108c
SS
11371{
11372 int athread = SAMPLE_THREAD;
11373 threadref thread;
11374 int set;
11375
11376 int_to_threadref (&thread, athread);
11377 printf_filtered ("Remote Threadinfo test\n");
11378 if (!get_and_display_threadinfo (&thread))
11379 printf_filtered ("FAIL cannot get thread info\n");
11380}
11381
11382static int
fba45db2 11383thread_display_step (threadref *ref, void *context)
c906108c
SS
11384{
11385 /* output_threadid(" threadstep ",ref); *//* simple test */
11386 return get_and_display_threadinfo (ref);
11387}
11388
11389static void
0b39b52e 11390threadlist_update_test_cmd (const char *cmd, int tty)
c906108c
SS
11391{
11392 printf_filtered ("Remote Threadlist update test\n");
11393 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
11394}
11395
11396static void
11397init_remote_threadtests (void)
11398{
3e43a32a
MS
11399 add_com ("tlist", class_obscure, threadlist_test_cmd,
11400 _("Fetch and print the remote list of "
11401 "thread identifiers, one pkt only"));
c906108c 11402 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
1bedd215 11403 _("Fetch and display info about one thread"));
c906108c 11404 add_com ("tset", class_obscure, threadset_test_cmd,
1bedd215 11405 _("Test setting to a different thread"));
c906108c 11406 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
1bedd215 11407 _("Iterate through updating all remote thread info"));
c906108c 11408 add_com ("talive", class_obscure, threadalive_test,
1bedd215 11409 _(" Remote thread alive test "));
c906108c
SS
11410}
11411
11412#endif /* 0 */
11413
a068643d 11414/* Convert a thread ID to a string. */
f3fb8c85 11415
a068643d 11416std::string
f6ac5f3d 11417remote_target::pid_to_str (ptid_t ptid)
f3fb8c85 11418{
82f73884 11419 struct remote_state *rs = get_remote_state ();
f3fb8c85 11420
d7e15655 11421 if (ptid == null_ptid)
7cee1e54 11422 return normal_pid_to_str (ptid);
0e998d96 11423 else if (ptid.is_pid ())
ecd0ada5
PA
11424 {
11425 /* Printing an inferior target id. */
11426
11427 /* When multi-process extensions are off, there's no way in the
11428 remote protocol to know the remote process id, if there's any
11429 at all. There's one exception --- when we're connected with
11430 target extended-remote, and we manually attached to a process
11431 with "attach PID". We don't record anywhere a flag that
11432 allows us to distinguish that case from the case of
11433 connecting with extended-remote and the stub already being
11434 attached to a process, and reporting yes to qAttached, hence
11435 no smart special casing here. */
11436 if (!remote_multi_process_p (rs))
a068643d 11437 return "Remote target";
ecd0ada5
PA
11438
11439 return normal_pid_to_str (ptid);
82f73884 11440 }
ecd0ada5 11441 else
79d7f229 11442 {
d7e15655 11443 if (magic_null_ptid == ptid)
a068643d 11444 return "Thread <main>";
8020350c 11445 else if (remote_multi_process_p (rs))
e38504b3 11446 if (ptid.lwp () == 0)
de0d863e
DB
11447 return normal_pid_to_str (ptid);
11448 else
a068643d
TT
11449 return string_printf ("Thread %d.%ld",
11450 ptid.pid (), ptid.lwp ());
ecd0ada5 11451 else
a068643d 11452 return string_printf ("Thread %ld", ptid.lwp ());
79d7f229 11453 }
f3fb8c85
MS
11454}
11455
38691318
KB
11456/* Get the address of the thread local variable in OBJFILE which is
11457 stored at OFFSET within the thread local storage for thread PTID. */
11458
f6ac5f3d
PA
11459CORE_ADDR
11460remote_target::get_thread_local_address (ptid_t ptid, CORE_ADDR lm,
11461 CORE_ADDR offset)
38691318 11462{
4082afcc 11463 if (packet_support (PACKET_qGetTLSAddr) != PACKET_DISABLE)
38691318
KB
11464 {
11465 struct remote_state *rs = get_remote_state ();
8d64371b
TT
11466 char *p = rs->buf.data ();
11467 char *endp = p + get_remote_packet_size ();
571dd617 11468 enum packet_result result;
38691318
KB
11469
11470 strcpy (p, "qGetTLSAddr:");
11471 p += strlen (p);
82f73884 11472 p = write_ptid (p, endp, ptid);
38691318
KB
11473 *p++ = ',';
11474 p += hexnumstr (p, offset);
11475 *p++ = ',';
11476 p += hexnumstr (p, lm);
11477 *p++ = '\0';
11478
6d820c5c 11479 putpkt (rs->buf);
8d64371b 11480 getpkt (&rs->buf, 0);
3e43a32a
MS
11481 result = packet_ok (rs->buf,
11482 &remote_protocol_packets[PACKET_qGetTLSAddr]);
571dd617 11483 if (result == PACKET_OK)
38691318 11484 {
b926417a 11485 ULONGEST addr;
38691318 11486
8d64371b 11487 unpack_varlen_hex (rs->buf.data (), &addr);
b926417a 11488 return addr;
38691318 11489 }
571dd617 11490 else if (result == PACKET_UNKNOWN)
109c3e39
AC
11491 throw_error (TLS_GENERIC_ERROR,
11492 _("Remote target doesn't support qGetTLSAddr packet"));
38691318 11493 else
109c3e39
AC
11494 throw_error (TLS_GENERIC_ERROR,
11495 _("Remote target failed to process qGetTLSAddr request"));
38691318
KB
11496 }
11497 else
109c3e39
AC
11498 throw_error (TLS_GENERIC_ERROR,
11499 _("TLS not supported or disabled on this target"));
38691318
KB
11500 /* Not reached. */
11501 return 0;
11502}
11503
711e434b
PM
11504/* Provide thread local base, i.e. Thread Information Block address.
11505 Returns 1 if ptid is found and thread_local_base is non zero. */
11506
57810aa7 11507bool
f6ac5f3d 11508remote_target::get_tib_address (ptid_t ptid, CORE_ADDR *addr)
711e434b 11509{
4082afcc 11510 if (packet_support (PACKET_qGetTIBAddr) != PACKET_DISABLE)
711e434b
PM
11511 {
11512 struct remote_state *rs = get_remote_state ();
8d64371b
TT
11513 char *p = rs->buf.data ();
11514 char *endp = p + get_remote_packet_size ();
711e434b
PM
11515 enum packet_result result;
11516
11517 strcpy (p, "qGetTIBAddr:");
11518 p += strlen (p);
11519 p = write_ptid (p, endp, ptid);
11520 *p++ = '\0';
11521
11522 putpkt (rs->buf);
8d64371b 11523 getpkt (&rs->buf, 0);
711e434b
PM
11524 result = packet_ok (rs->buf,
11525 &remote_protocol_packets[PACKET_qGetTIBAddr]);
11526 if (result == PACKET_OK)
11527 {
b926417a 11528 ULONGEST val;
8d64371b 11529 unpack_varlen_hex (rs->buf.data (), &val);
711e434b 11530 if (addr)
b926417a 11531 *addr = (CORE_ADDR) val;
57810aa7 11532 return true;
711e434b
PM
11533 }
11534 else if (result == PACKET_UNKNOWN)
11535 error (_("Remote target doesn't support qGetTIBAddr packet"));
11536 else
11537 error (_("Remote target failed to process qGetTIBAddr request"));
11538 }
11539 else
11540 error (_("qGetTIBAddr not supported or disabled on this target"));
11541 /* Not reached. */
57810aa7 11542 return false;
711e434b
PM
11543}
11544
29709017
DJ
11545/* Support for inferring a target description based on the current
11546 architecture and the size of a 'g' packet. While the 'g' packet
11547 can have any size (since optional registers can be left off the
11548 end), some sizes are easily recognizable given knowledge of the
11549 approximate architecture. */
11550
11551struct remote_g_packet_guess
11552{
eefce37f
TT
11553 remote_g_packet_guess (int bytes_, const struct target_desc *tdesc_)
11554 : bytes (bytes_),
11555 tdesc (tdesc_)
11556 {
11557 }
11558
29709017
DJ
11559 int bytes;
11560 const struct target_desc *tdesc;
11561};
29709017 11562
eefce37f 11563struct remote_g_packet_data : public allocate_on_obstack
29709017 11564{
eefce37f 11565 std::vector<remote_g_packet_guess> guesses;
29709017
DJ
11566};
11567
11568static struct gdbarch_data *remote_g_packet_data_handle;
11569
11570static void *
11571remote_g_packet_data_init (struct obstack *obstack)
11572{
eefce37f 11573 return new (obstack) remote_g_packet_data;
29709017
DJ
11574}
11575
11576void
11577register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes,
11578 const struct target_desc *tdesc)
11579{
11580 struct remote_g_packet_data *data
19ba03f4
SM
11581 = ((struct remote_g_packet_data *)
11582 gdbarch_data (gdbarch, remote_g_packet_data_handle));
29709017
DJ
11583
11584 gdb_assert (tdesc != NULL);
11585
eefce37f
TT
11586 for (const remote_g_packet_guess &guess : data->guesses)
11587 if (guess.bytes == bytes)
29709017 11588 internal_error (__FILE__, __LINE__,
9b20d036 11589 _("Duplicate g packet description added for size %d"),
29709017
DJ
11590 bytes);
11591
eefce37f 11592 data->guesses.emplace_back (bytes, tdesc);
29709017
DJ
11593}
11594
eefce37f
TT
11595/* Return true if remote_read_description would do anything on this target
11596 and architecture, false otherwise. */
d962ef82 11597
eefce37f 11598static bool
d962ef82
DJ
11599remote_read_description_p (struct target_ops *target)
11600{
11601 struct remote_g_packet_data *data
19ba03f4
SM
11602 = ((struct remote_g_packet_data *)
11603 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
d962ef82 11604
eefce37f 11605 return !data->guesses.empty ();
d962ef82
DJ
11606}
11607
f6ac5f3d
PA
11608const struct target_desc *
11609remote_target::read_description ()
29709017
DJ
11610{
11611 struct remote_g_packet_data *data
19ba03f4
SM
11612 = ((struct remote_g_packet_data *)
11613 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
29709017 11614
d962ef82
DJ
11615 /* Do not try this during initial connection, when we do not know
11616 whether there is a running but stopped thread. */
d7e15655 11617 if (!target_has_execution || inferior_ptid == null_ptid)
b6a8c27b 11618 return beneath ()->read_description ();
d962ef82 11619
eefce37f 11620 if (!data->guesses.empty ())
29709017 11621 {
29709017
DJ
11622 int bytes = send_g_packet ();
11623
eefce37f
TT
11624 for (const remote_g_packet_guess &guess : data->guesses)
11625 if (guess.bytes == bytes)
11626 return guess.tdesc;
29709017
DJ
11627
11628 /* We discard the g packet. A minor optimization would be to
11629 hold on to it, and fill the register cache once we have selected
11630 an architecture, but it's too tricky to do safely. */
11631 }
11632
b6a8c27b 11633 return beneath ()->read_description ();
29709017
DJ
11634}
11635
a6b151f1
DJ
11636/* Remote file transfer support. This is host-initiated I/O, not
11637 target-initiated; for target-initiated, see remote-fileio.c. */
11638
11639/* If *LEFT is at least the length of STRING, copy STRING to
11640 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11641 decrease *LEFT. Otherwise raise an error. */
11642
11643static void
a121b7c1 11644remote_buffer_add_string (char **buffer, int *left, const char *string)
a6b151f1
DJ
11645{
11646 int len = strlen (string);
11647
11648 if (len > *left)
11649 error (_("Packet too long for target."));
11650
11651 memcpy (*buffer, string, len);
11652 *buffer += len;
11653 *left -= len;
11654
11655 /* NUL-terminate the buffer as a convenience, if there is
11656 room. */
11657 if (*left)
11658 **buffer = '\0';
11659}
11660
11661/* If *LEFT is large enough, hex encode LEN bytes from BYTES into
11662 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11663 decrease *LEFT. Otherwise raise an error. */
11664
11665static void
11666remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes,
11667 int len)
11668{
11669 if (2 * len > *left)
11670 error (_("Packet too long for target."));
11671
11672 bin2hex (bytes, *buffer, len);
11673 *buffer += 2 * len;
11674 *left -= 2 * len;
11675
11676 /* NUL-terminate the buffer as a convenience, if there is
11677 room. */
11678 if (*left)
11679 **buffer = '\0';
11680}
11681
11682/* If *LEFT is large enough, convert VALUE to hex and add it to
11683 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11684 decrease *LEFT. Otherwise raise an error. */
11685
11686static void
11687remote_buffer_add_int (char **buffer, int *left, ULONGEST value)
11688{
11689 int len = hexnumlen (value);
11690
11691 if (len > *left)
11692 error (_("Packet too long for target."));
11693
11694 hexnumstr (*buffer, value);
11695 *buffer += len;
11696 *left -= len;
11697
11698 /* NUL-terminate the buffer as a convenience, if there is
11699 room. */
11700 if (*left)
11701 **buffer = '\0';
11702}
11703
11704/* Parse an I/O result packet from BUFFER. Set RETCODE to the return
11705 value, *REMOTE_ERRNO to the remote error number or zero if none
11706 was included, and *ATTACHMENT to point to the start of the annex
11707 if any. The length of the packet isn't needed here; there may
11708 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
11709
11710 Return 0 if the packet could be parsed, -1 if it could not. If
11711 -1 is returned, the other variables may not be initialized. */
11712
11713static int
11714remote_hostio_parse_result (char *buffer, int *retcode,
11715 int *remote_errno, char **attachment)
11716{
11717 char *p, *p2;
11718
11719 *remote_errno = 0;
11720 *attachment = NULL;
11721
11722 if (buffer[0] != 'F')
11723 return -1;
11724
11725 errno = 0;
11726 *retcode = strtol (&buffer[1], &p, 16);
11727 if (errno != 0 || p == &buffer[1])
11728 return -1;
11729
11730 /* Check for ",errno". */
11731 if (*p == ',')
11732 {
11733 errno = 0;
11734 *remote_errno = strtol (p + 1, &p2, 16);
11735 if (errno != 0 || p + 1 == p2)
11736 return -1;
11737 p = p2;
11738 }
11739
11740 /* Check for ";attachment". If there is no attachment, the
11741 packet should end here. */
11742 if (*p == ';')
11743 {
11744 *attachment = p + 1;
11745 return 0;
11746 }
11747 else if (*p == '\0')
11748 return 0;
11749 else
11750 return -1;
11751}
11752
11753/* Send a prepared I/O packet to the target and read its response.
11754 The prepared packet is in the global RS->BUF before this function
11755 is called, and the answer is there when we return.
11756
11757 COMMAND_BYTES is the length of the request to send, which may include
11758 binary data. WHICH_PACKET is the packet configuration to check
11759 before attempting a packet. If an error occurs, *REMOTE_ERRNO
11760 is set to the error number and -1 is returned. Otherwise the value
11761 returned by the function is returned.
11762
11763 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
11764 attachment is expected; an error will be reported if there's a
11765 mismatch. If one is found, *ATTACHMENT will be set to point into
11766 the packet buffer and *ATTACHMENT_LEN will be set to the
11767 attachment's length. */
11768
6b8edb51
PA
11769int
11770remote_target::remote_hostio_send_command (int command_bytes, int which_packet,
11771 int *remote_errno, char **attachment,
11772 int *attachment_len)
a6b151f1
DJ
11773{
11774 struct remote_state *rs = get_remote_state ();
11775 int ret, bytes_read;
11776 char *attachment_tmp;
11777
20db9c52 11778 if (packet_support (which_packet) == PACKET_DISABLE)
a6b151f1
DJ
11779 {
11780 *remote_errno = FILEIO_ENOSYS;
11781 return -1;
11782 }
11783
8d64371b
TT
11784 putpkt_binary (rs->buf.data (), command_bytes);
11785 bytes_read = getpkt_sane (&rs->buf, 0);
a6b151f1
DJ
11786
11787 /* If it timed out, something is wrong. Don't try to parse the
11788 buffer. */
11789 if (bytes_read < 0)
11790 {
11791 *remote_errno = FILEIO_EINVAL;
11792 return -1;
11793 }
11794
11795 switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet]))
11796 {
11797 case PACKET_ERROR:
11798 *remote_errno = FILEIO_EINVAL;
11799 return -1;
11800 case PACKET_UNKNOWN:
11801 *remote_errno = FILEIO_ENOSYS;
11802 return -1;
11803 case PACKET_OK:
11804 break;
11805 }
11806
8d64371b 11807 if (remote_hostio_parse_result (rs->buf.data (), &ret, remote_errno,
a6b151f1
DJ
11808 &attachment_tmp))
11809 {
11810 *remote_errno = FILEIO_EINVAL;
11811 return -1;
11812 }
11813
11814 /* Make sure we saw an attachment if and only if we expected one. */
11815 if ((attachment_tmp == NULL && attachment != NULL)
11816 || (attachment_tmp != NULL && attachment == NULL))
11817 {
11818 *remote_errno = FILEIO_EINVAL;
11819 return -1;
11820 }
11821
11822 /* If an attachment was found, it must point into the packet buffer;
11823 work out how many bytes there were. */
11824 if (attachment_tmp != NULL)
11825 {
11826 *attachment = attachment_tmp;
8d64371b 11827 *attachment_len = bytes_read - (*attachment - rs->buf.data ());
a6b151f1
DJ
11828 }
11829
11830 return ret;
11831}
11832
dd194f6b 11833/* See declaration.h. */
80152258 11834
dd194f6b
PA
11835void
11836readahead_cache::invalidate ()
80152258 11837{
dd194f6b 11838 this->fd = -1;
80152258
PA
11839}
11840
dd194f6b 11841/* See declaration.h. */
80152258 11842
dd194f6b
PA
11843void
11844readahead_cache::invalidate_fd (int fd)
80152258 11845{
dd194f6b
PA
11846 if (this->fd == fd)
11847 this->fd = -1;
80152258
PA
11848}
11849
15a201c8
GB
11850/* Set the filesystem remote_hostio functions that take FILENAME
11851 arguments will use. Return 0 on success, or -1 if an error
11852 occurs (and set *REMOTE_ERRNO). */
11853
6b8edb51
PA
11854int
11855remote_target::remote_hostio_set_filesystem (struct inferior *inf,
11856 int *remote_errno)
15a201c8
GB
11857{
11858 struct remote_state *rs = get_remote_state ();
11859 int required_pid = (inf == NULL || inf->fake_pid_p) ? 0 : inf->pid;
8d64371b 11860 char *p = rs->buf.data ();
15a201c8
GB
11861 int left = get_remote_packet_size () - 1;
11862 char arg[9];
11863 int ret;
11864
11865 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11866 return 0;
11867
11868 if (rs->fs_pid != -1 && required_pid == rs->fs_pid)
11869 return 0;
11870
11871 remote_buffer_add_string (&p, &left, "vFile:setfs:");
11872
11873 xsnprintf (arg, sizeof (arg), "%x", required_pid);
11874 remote_buffer_add_string (&p, &left, arg);
11875
8d64371b 11876 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_setfs,
15a201c8
GB
11877 remote_errno, NULL, NULL);
11878
11879 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11880 return 0;
11881
11882 if (ret == 0)
11883 rs->fs_pid = required_pid;
11884
11885 return ret;
11886}
11887
12e2a5fd 11888/* Implementation of to_fileio_open. */
a6b151f1 11889
6b8edb51
PA
11890int
11891remote_target::remote_hostio_open (inferior *inf, const char *filename,
11892 int flags, int mode, int warn_if_slow,
11893 int *remote_errno)
a6b151f1
DJ
11894{
11895 struct remote_state *rs = get_remote_state ();
8d64371b 11896 char *p = rs->buf.data ();
a6b151f1
DJ
11897 int left = get_remote_packet_size () - 1;
11898
4313b8c0
GB
11899 if (warn_if_slow)
11900 {
11901 static int warning_issued = 0;
11902
11903 printf_unfiltered (_("Reading %s from remote target...\n"),
11904 filename);
11905
11906 if (!warning_issued)
11907 {
11908 warning (_("File transfers from remote targets can be slow."
11909 " Use \"set sysroot\" to access files locally"
11910 " instead."));
11911 warning_issued = 1;
11912 }
11913 }
11914
15a201c8
GB
11915 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
11916 return -1;
11917
a6b151f1
DJ
11918 remote_buffer_add_string (&p, &left, "vFile:open:");
11919
11920 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
11921 strlen (filename));
11922 remote_buffer_add_string (&p, &left, ",");
11923
11924 remote_buffer_add_int (&p, &left, flags);
11925 remote_buffer_add_string (&p, &left, ",");
11926
11927 remote_buffer_add_int (&p, &left, mode);
11928
8d64371b 11929 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_open,
a6b151f1
DJ
11930 remote_errno, NULL, NULL);
11931}
11932
f6ac5f3d
PA
11933int
11934remote_target::fileio_open (struct inferior *inf, const char *filename,
11935 int flags, int mode, int warn_if_slow,
11936 int *remote_errno)
11937{
6b8edb51 11938 return remote_hostio_open (inf, filename, flags, mode, warn_if_slow,
f6ac5f3d
PA
11939 remote_errno);
11940}
11941
12e2a5fd 11942/* Implementation of to_fileio_pwrite. */
a6b151f1 11943
6b8edb51
PA
11944int
11945remote_target::remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
11946 ULONGEST offset, int *remote_errno)
a6b151f1
DJ
11947{
11948 struct remote_state *rs = get_remote_state ();
8d64371b 11949 char *p = rs->buf.data ();
a6b151f1
DJ
11950 int left = get_remote_packet_size ();
11951 int out_len;
11952
dd194f6b 11953 rs->readahead_cache.invalidate_fd (fd);
80152258 11954
a6b151f1
DJ
11955 remote_buffer_add_string (&p, &left, "vFile:pwrite:");
11956
11957 remote_buffer_add_int (&p, &left, fd);
11958 remote_buffer_add_string (&p, &left, ",");
11959
11960 remote_buffer_add_int (&p, &left, offset);
11961 remote_buffer_add_string (&p, &left, ",");
11962
124e13d9 11963 p += remote_escape_output (write_buf, len, 1, (gdb_byte *) p, &out_len,
8d64371b
TT
11964 (get_remote_packet_size ()
11965 - (p - rs->buf.data ())));
a6b151f1 11966
8d64371b 11967 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pwrite,
a6b151f1
DJ
11968 remote_errno, NULL, NULL);
11969}
11970
f6ac5f3d
PA
11971int
11972remote_target::fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
11973 ULONGEST offset, int *remote_errno)
11974{
6b8edb51 11975 return remote_hostio_pwrite (fd, write_buf, len, offset, remote_errno);
f6ac5f3d
PA
11976}
11977
80152258
PA
11978/* Helper for the implementation of to_fileio_pread. Read the file
11979 from the remote side with vFile:pread. */
a6b151f1 11980
6b8edb51
PA
11981int
11982remote_target::remote_hostio_pread_vFile (int fd, gdb_byte *read_buf, int len,
11983 ULONGEST offset, int *remote_errno)
a6b151f1
DJ
11984{
11985 struct remote_state *rs = get_remote_state ();
8d64371b 11986 char *p = rs->buf.data ();
a6b151f1
DJ
11987 char *attachment;
11988 int left = get_remote_packet_size ();
11989 int ret, attachment_len;
11990 int read_len;
11991
11992 remote_buffer_add_string (&p, &left, "vFile:pread:");
11993
11994 remote_buffer_add_int (&p, &left, fd);
11995 remote_buffer_add_string (&p, &left, ",");
11996
11997 remote_buffer_add_int (&p, &left, len);
11998 remote_buffer_add_string (&p, &left, ",");
11999
12000 remote_buffer_add_int (&p, &left, offset);
12001
8d64371b 12002 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pread,
a6b151f1
DJ
12003 remote_errno, &attachment,
12004 &attachment_len);
12005
12006 if (ret < 0)
12007 return ret;
12008
bc20a4af 12009 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
a6b151f1
DJ
12010 read_buf, len);
12011 if (read_len != ret)
12012 error (_("Read returned %d, but %d bytes."), ret, (int) read_len);
12013
12014 return ret;
12015}
12016
dd194f6b 12017/* See declaration.h. */
80152258 12018
dd194f6b
PA
12019int
12020readahead_cache::pread (int fd, gdb_byte *read_buf, size_t len,
12021 ULONGEST offset)
80152258 12022{
dd194f6b
PA
12023 if (this->fd == fd
12024 && this->offset <= offset
12025 && offset < this->offset + this->bufsize)
80152258 12026 {
dd194f6b 12027 ULONGEST max = this->offset + this->bufsize;
80152258
PA
12028
12029 if (offset + len > max)
12030 len = max - offset;
12031
dd194f6b 12032 memcpy (read_buf, this->buf + offset - this->offset, len);
80152258
PA
12033 return len;
12034 }
12035
12036 return 0;
12037}
12038
12039/* Implementation of to_fileio_pread. */
12040
6b8edb51
PA
12041int
12042remote_target::remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
12043 ULONGEST offset, int *remote_errno)
80152258
PA
12044{
12045 int ret;
12046 struct remote_state *rs = get_remote_state ();
dd194f6b 12047 readahead_cache *cache = &rs->readahead_cache;
80152258 12048
dd194f6b 12049 ret = cache->pread (fd, read_buf, len, offset);
80152258
PA
12050 if (ret > 0)
12051 {
12052 cache->hit_count++;
12053
12054 if (remote_debug)
12055 fprintf_unfiltered (gdb_stdlog, "readahead cache hit %s\n",
12056 pulongest (cache->hit_count));
12057 return ret;
12058 }
12059
12060 cache->miss_count++;
12061 if (remote_debug)
12062 fprintf_unfiltered (gdb_stdlog, "readahead cache miss %s\n",
12063 pulongest (cache->miss_count));
12064
12065 cache->fd = fd;
12066 cache->offset = offset;
12067 cache->bufsize = get_remote_packet_size ();
224c3ddb 12068 cache->buf = (gdb_byte *) xrealloc (cache->buf, cache->bufsize);
80152258 12069
6b8edb51 12070 ret = remote_hostio_pread_vFile (cache->fd, cache->buf, cache->bufsize,
80152258
PA
12071 cache->offset, remote_errno);
12072 if (ret <= 0)
12073 {
dd194f6b 12074 cache->invalidate_fd (fd);
80152258
PA
12075 return ret;
12076 }
12077
12078 cache->bufsize = ret;
dd194f6b 12079 return cache->pread (fd, read_buf, len, offset);
80152258
PA
12080}
12081
f6ac5f3d
PA
12082int
12083remote_target::fileio_pread (int fd, gdb_byte *read_buf, int len,
12084 ULONGEST offset, int *remote_errno)
12085{
6b8edb51 12086 return remote_hostio_pread (fd, read_buf, len, offset, remote_errno);
f6ac5f3d
PA
12087}
12088
12e2a5fd 12089/* Implementation of to_fileio_close. */
a6b151f1 12090
6b8edb51
PA
12091int
12092remote_target::remote_hostio_close (int fd, int *remote_errno)
a6b151f1
DJ
12093{
12094 struct remote_state *rs = get_remote_state ();
8d64371b 12095 char *p = rs->buf.data ();
a6b151f1
DJ
12096 int left = get_remote_packet_size () - 1;
12097
dd194f6b 12098 rs->readahead_cache.invalidate_fd (fd);
80152258 12099
a6b151f1
DJ
12100 remote_buffer_add_string (&p, &left, "vFile:close:");
12101
12102 remote_buffer_add_int (&p, &left, fd);
12103
8d64371b 12104 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_close,
a6b151f1
DJ
12105 remote_errno, NULL, NULL);
12106}
12107
f6ac5f3d
PA
12108int
12109remote_target::fileio_close (int fd, int *remote_errno)
12110{
6b8edb51 12111 return remote_hostio_close (fd, remote_errno);
f6ac5f3d
PA
12112}
12113
12e2a5fd 12114/* Implementation of to_fileio_unlink. */
a6b151f1 12115
6b8edb51
PA
12116int
12117remote_target::remote_hostio_unlink (inferior *inf, const char *filename,
12118 int *remote_errno)
a6b151f1
DJ
12119{
12120 struct remote_state *rs = get_remote_state ();
8d64371b 12121 char *p = rs->buf.data ();
a6b151f1
DJ
12122 int left = get_remote_packet_size () - 1;
12123
15a201c8
GB
12124 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
12125 return -1;
12126
a6b151f1
DJ
12127 remote_buffer_add_string (&p, &left, "vFile:unlink:");
12128
12129 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12130 strlen (filename));
12131
8d64371b 12132 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_unlink,
a6b151f1
DJ
12133 remote_errno, NULL, NULL);
12134}
12135
f6ac5f3d
PA
12136int
12137remote_target::fileio_unlink (struct inferior *inf, const char *filename,
12138 int *remote_errno)
12139{
6b8edb51 12140 return remote_hostio_unlink (inf, filename, remote_errno);
f6ac5f3d
PA
12141}
12142
12e2a5fd 12143/* Implementation of to_fileio_readlink. */
b9e7b9c3 12144
f6ac5f3d
PA
12145gdb::optional<std::string>
12146remote_target::fileio_readlink (struct inferior *inf, const char *filename,
12147 int *remote_errno)
b9e7b9c3
UW
12148{
12149 struct remote_state *rs = get_remote_state ();
8d64371b 12150 char *p = rs->buf.data ();
b9e7b9c3
UW
12151 char *attachment;
12152 int left = get_remote_packet_size ();
12153 int len, attachment_len;
12154 int read_len;
b9e7b9c3 12155
15a201c8 12156 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
e0d3522b 12157 return {};
15a201c8 12158
b9e7b9c3
UW
12159 remote_buffer_add_string (&p, &left, "vFile:readlink:");
12160
12161 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12162 strlen (filename));
12163
8d64371b 12164 len = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_readlink,
b9e7b9c3
UW
12165 remote_errno, &attachment,
12166 &attachment_len);
12167
12168 if (len < 0)
e0d3522b 12169 return {};
b9e7b9c3 12170
e0d3522b 12171 std::string ret (len, '\0');
b9e7b9c3 12172
bc20a4af 12173 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
e0d3522b 12174 (gdb_byte *) &ret[0], len);
b9e7b9c3
UW
12175 if (read_len != len)
12176 error (_("Readlink returned %d, but %d bytes."), len, read_len);
12177
b9e7b9c3
UW
12178 return ret;
12179}
12180
12e2a5fd 12181/* Implementation of to_fileio_fstat. */
0a93529c 12182
f6ac5f3d
PA
12183int
12184remote_target::fileio_fstat (int fd, struct stat *st, int *remote_errno)
0a93529c
GB
12185{
12186 struct remote_state *rs = get_remote_state ();
8d64371b 12187 char *p = rs->buf.data ();
0a93529c
GB
12188 int left = get_remote_packet_size ();
12189 int attachment_len, ret;
12190 char *attachment;
12191 struct fio_stat fst;
12192 int read_len;
12193
464b0089
GB
12194 remote_buffer_add_string (&p, &left, "vFile:fstat:");
12195
12196 remote_buffer_add_int (&p, &left, fd);
12197
8d64371b 12198 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_fstat,
464b0089
GB
12199 remote_errno, &attachment,
12200 &attachment_len);
12201 if (ret < 0)
0a93529c 12202 {
464b0089
GB
12203 if (*remote_errno != FILEIO_ENOSYS)
12204 return ret;
12205
0a93529c
GB
12206 /* Strictly we should return -1, ENOSYS here, but when
12207 "set sysroot remote:" was implemented in August 2008
12208 BFD's need for a stat function was sidestepped with
12209 this hack. This was not remedied until March 2015
12210 so we retain the previous behavior to avoid breaking
12211 compatibility.
12212
12213 Note that the memset is a March 2015 addition; older
12214 GDBs set st_size *and nothing else* so the structure
12215 would have garbage in all other fields. This might
12216 break something but retaining the previous behavior
12217 here would be just too wrong. */
12218
12219 memset (st, 0, sizeof (struct stat));
12220 st->st_size = INT_MAX;
12221 return 0;
12222 }
12223
0a93529c
GB
12224 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
12225 (gdb_byte *) &fst, sizeof (fst));
12226
12227 if (read_len != ret)
12228 error (_("vFile:fstat returned %d, but %d bytes."), ret, read_len);
12229
12230 if (read_len != sizeof (fst))
12231 error (_("vFile:fstat returned %d bytes, but expecting %d."),
12232 read_len, (int) sizeof (fst));
12233
12234 remote_fileio_to_host_stat (&fst, st);
12235
12236 return 0;
12237}
12238
12e2a5fd 12239/* Implementation of to_filesystem_is_local. */
e3dd7556 12240
57810aa7 12241bool
f6ac5f3d 12242remote_target::filesystem_is_local ()
e3dd7556
GB
12243{
12244 /* Valgrind GDB presents itself as a remote target but works
12245 on the local filesystem: it does not implement remote get
12246 and users are not expected to set a sysroot. To handle
12247 this case we treat the remote filesystem as local if the
12248 sysroot is exactly TARGET_SYSROOT_PREFIX and if the stub
12249 does not support vFile:open. */
a3be80c3 12250 if (strcmp (gdb_sysroot, TARGET_SYSROOT_PREFIX) == 0)
e3dd7556
GB
12251 {
12252 enum packet_support ps = packet_support (PACKET_vFile_open);
12253
12254 if (ps == PACKET_SUPPORT_UNKNOWN)
12255 {
12256 int fd, remote_errno;
12257
12258 /* Try opening a file to probe support. The supplied
12259 filename is irrelevant, we only care about whether
12260 the stub recognizes the packet or not. */
6b8edb51 12261 fd = remote_hostio_open (NULL, "just probing",
4313b8c0 12262 FILEIO_O_RDONLY, 0700, 0,
e3dd7556
GB
12263 &remote_errno);
12264
12265 if (fd >= 0)
6b8edb51 12266 remote_hostio_close (fd, &remote_errno);
e3dd7556
GB
12267
12268 ps = packet_support (PACKET_vFile_open);
12269 }
12270
12271 if (ps == PACKET_DISABLE)
12272 {
12273 static int warning_issued = 0;
12274
12275 if (!warning_issued)
12276 {
12277 warning (_("remote target does not support file"
12278 " transfer, attempting to access files"
12279 " from local filesystem."));
12280 warning_issued = 1;
12281 }
12282
57810aa7 12283 return true;
e3dd7556
GB
12284 }
12285 }
12286
57810aa7 12287 return false;
e3dd7556
GB
12288}
12289
a6b151f1
DJ
12290static int
12291remote_fileio_errno_to_host (int errnum)
12292{
12293 switch (errnum)
12294 {
12295 case FILEIO_EPERM:
12296 return EPERM;
12297 case FILEIO_ENOENT:
12298 return ENOENT;
12299 case FILEIO_EINTR:
12300 return EINTR;
12301 case FILEIO_EIO:
12302 return EIO;
12303 case FILEIO_EBADF:
12304 return EBADF;
12305 case FILEIO_EACCES:
12306 return EACCES;
12307 case FILEIO_EFAULT:
12308 return EFAULT;
12309 case FILEIO_EBUSY:
12310 return EBUSY;
12311 case FILEIO_EEXIST:
12312 return EEXIST;
12313 case FILEIO_ENODEV:
12314 return ENODEV;
12315 case FILEIO_ENOTDIR:
12316 return ENOTDIR;
12317 case FILEIO_EISDIR:
12318 return EISDIR;
12319 case FILEIO_EINVAL:
12320 return EINVAL;
12321 case FILEIO_ENFILE:
12322 return ENFILE;
12323 case FILEIO_EMFILE:
12324 return EMFILE;
12325 case FILEIO_EFBIG:
12326 return EFBIG;
12327 case FILEIO_ENOSPC:
12328 return ENOSPC;
12329 case FILEIO_ESPIPE:
12330 return ESPIPE;
12331 case FILEIO_EROFS:
12332 return EROFS;
12333 case FILEIO_ENOSYS:
12334 return ENOSYS;
12335 case FILEIO_ENAMETOOLONG:
12336 return ENAMETOOLONG;
12337 }
12338 return -1;
12339}
12340
12341static char *
12342remote_hostio_error (int errnum)
12343{
12344 int host_error = remote_fileio_errno_to_host (errnum);
12345
12346 if (host_error == -1)
12347 error (_("Unknown remote I/O error %d"), errnum);
12348 else
12349 error (_("Remote I/O error: %s"), safe_strerror (host_error));
12350}
12351
440b7aec
PA
12352/* A RAII wrapper around a remote file descriptor. */
12353
12354class scoped_remote_fd
a6b151f1 12355{
440b7aec 12356public:
6b8edb51
PA
12357 scoped_remote_fd (remote_target *remote, int fd)
12358 : m_remote (remote), m_fd (fd)
440b7aec
PA
12359 {
12360 }
a6b151f1 12361
440b7aec
PA
12362 ~scoped_remote_fd ()
12363 {
12364 if (m_fd != -1)
12365 {
12366 try
12367 {
12368 int remote_errno;
6b8edb51 12369 m_remote->remote_hostio_close (m_fd, &remote_errno);
440b7aec
PA
12370 }
12371 catch (...)
12372 {
12373 /* Swallow exception before it escapes the dtor. If
12374 something goes wrong, likely the connection is gone,
12375 and there's nothing else that can be done. */
12376 }
12377 }
12378 }
12379
12380 DISABLE_COPY_AND_ASSIGN (scoped_remote_fd);
12381
12382 /* Release ownership of the file descriptor, and return it. */
88a774b9 12383 ATTRIBUTE_UNUSED_RESULT int release () noexcept
440b7aec
PA
12384 {
12385 int fd = m_fd;
12386 m_fd = -1;
12387 return fd;
12388 }
12389
12390 /* Return the owned file descriptor. */
12391 int get () const noexcept
12392 {
12393 return m_fd;
12394 }
12395
12396private:
6b8edb51
PA
12397 /* The remote target. */
12398 remote_target *m_remote;
12399
440b7aec
PA
12400 /* The owned remote I/O file descriptor. */
12401 int m_fd;
12402};
a6b151f1
DJ
12403
12404void
12405remote_file_put (const char *local_file, const char *remote_file, int from_tty)
6b8edb51
PA
12406{
12407 remote_target *remote = get_current_remote_target ();
12408
12409 if (remote == nullptr)
12410 error (_("command can only be used with remote target"));
12411
12412 remote->remote_file_put (local_file, remote_file, from_tty);
12413}
12414
12415void
12416remote_target::remote_file_put (const char *local_file, const char *remote_file,
12417 int from_tty)
a6b151f1 12418{
440b7aec 12419 int retcode, remote_errno, bytes, io_size;
a6b151f1
DJ
12420 int bytes_in_buffer;
12421 int saw_eof;
12422 ULONGEST offset;
a6b151f1 12423
d419f42d 12424 gdb_file_up file = gdb_fopen_cloexec (local_file, "rb");
a6b151f1
DJ
12425 if (file == NULL)
12426 perror_with_name (local_file);
a6b151f1 12427
440b7aec 12428 scoped_remote_fd fd
6b8edb51
PA
12429 (this, remote_hostio_open (NULL,
12430 remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT
12431 | FILEIO_O_TRUNC),
12432 0700, 0, &remote_errno));
440b7aec 12433 if (fd.get () == -1)
a6b151f1
DJ
12434 remote_hostio_error (remote_errno);
12435
12436 /* Send up to this many bytes at once. They won't all fit in the
12437 remote packet limit, so we'll transfer slightly fewer. */
12438 io_size = get_remote_packet_size ();
5ca3b260 12439 gdb::byte_vector buffer (io_size);
a6b151f1 12440
a6b151f1
DJ
12441 bytes_in_buffer = 0;
12442 saw_eof = 0;
12443 offset = 0;
12444 while (bytes_in_buffer || !saw_eof)
12445 {
12446 if (!saw_eof)
12447 {
5ca3b260 12448 bytes = fread (buffer.data () + bytes_in_buffer, 1,
3e43a32a 12449 io_size - bytes_in_buffer,
d419f42d 12450 file.get ());
a6b151f1
DJ
12451 if (bytes == 0)
12452 {
d419f42d 12453 if (ferror (file.get ()))
a6b151f1
DJ
12454 error (_("Error reading %s."), local_file);
12455 else
12456 {
12457 /* EOF. Unless there is something still in the
12458 buffer from the last iteration, we are done. */
12459 saw_eof = 1;
12460 if (bytes_in_buffer == 0)
12461 break;
12462 }
12463 }
12464 }
12465 else
12466 bytes = 0;
12467
12468 bytes += bytes_in_buffer;
12469 bytes_in_buffer = 0;
12470
5ca3b260 12471 retcode = remote_hostio_pwrite (fd.get (), buffer.data (), bytes,
3e43a32a 12472 offset, &remote_errno);
a6b151f1
DJ
12473
12474 if (retcode < 0)
12475 remote_hostio_error (remote_errno);
12476 else if (retcode == 0)
12477 error (_("Remote write of %d bytes returned 0!"), bytes);
12478 else if (retcode < bytes)
12479 {
12480 /* Short write. Save the rest of the read data for the next
12481 write. */
12482 bytes_in_buffer = bytes - retcode;
5ca3b260 12483 memmove (buffer.data (), buffer.data () + retcode, bytes_in_buffer);
a6b151f1
DJ
12484 }
12485
12486 offset += retcode;
12487 }
12488
6b8edb51 12489 if (remote_hostio_close (fd.release (), &remote_errno))
a6b151f1
DJ
12490 remote_hostio_error (remote_errno);
12491
12492 if (from_tty)
12493 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file);
a6b151f1
DJ
12494}
12495
12496void
12497remote_file_get (const char *remote_file, const char *local_file, int from_tty)
6b8edb51
PA
12498{
12499 remote_target *remote = get_current_remote_target ();
12500
12501 if (remote == nullptr)
12502 error (_("command can only be used with remote target"));
12503
12504 remote->remote_file_get (remote_file, local_file, from_tty);
12505}
12506
12507void
12508remote_target::remote_file_get (const char *remote_file, const char *local_file,
12509 int from_tty)
a6b151f1 12510{
440b7aec 12511 int remote_errno, bytes, io_size;
a6b151f1 12512 ULONGEST offset;
a6b151f1 12513
440b7aec 12514 scoped_remote_fd fd
6b8edb51
PA
12515 (this, remote_hostio_open (NULL,
12516 remote_file, FILEIO_O_RDONLY, 0, 0,
12517 &remote_errno));
440b7aec 12518 if (fd.get () == -1)
a6b151f1
DJ
12519 remote_hostio_error (remote_errno);
12520
d419f42d 12521 gdb_file_up file = gdb_fopen_cloexec (local_file, "wb");
a6b151f1
DJ
12522 if (file == NULL)
12523 perror_with_name (local_file);
a6b151f1
DJ
12524
12525 /* Send up to this many bytes at once. They won't all fit in the
12526 remote packet limit, so we'll transfer slightly fewer. */
12527 io_size = get_remote_packet_size ();
5ca3b260 12528 gdb::byte_vector buffer (io_size);
a6b151f1 12529
a6b151f1
DJ
12530 offset = 0;
12531 while (1)
12532 {
5ca3b260 12533 bytes = remote_hostio_pread (fd.get (), buffer.data (), io_size, offset,
440b7aec 12534 &remote_errno);
a6b151f1
DJ
12535 if (bytes == 0)
12536 /* Success, but no bytes, means end-of-file. */
12537 break;
12538 if (bytes == -1)
12539 remote_hostio_error (remote_errno);
12540
12541 offset += bytes;
12542
5ca3b260 12543 bytes = fwrite (buffer.data (), 1, bytes, file.get ());
a6b151f1
DJ
12544 if (bytes == 0)
12545 perror_with_name (local_file);
12546 }
12547
6b8edb51 12548 if (remote_hostio_close (fd.release (), &remote_errno))
a6b151f1
DJ
12549 remote_hostio_error (remote_errno);
12550
12551 if (from_tty)
12552 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file);
a6b151f1
DJ
12553}
12554
12555void
12556remote_file_delete (const char *remote_file, int from_tty)
12557{
6b8edb51 12558 remote_target *remote = get_current_remote_target ();
a6b151f1 12559
6b8edb51 12560 if (remote == nullptr)
a6b151f1
DJ
12561 error (_("command can only be used with remote target"));
12562
6b8edb51
PA
12563 remote->remote_file_delete (remote_file, from_tty);
12564}
12565
12566void
12567remote_target::remote_file_delete (const char *remote_file, int from_tty)
12568{
12569 int retcode, remote_errno;
12570
12571 retcode = remote_hostio_unlink (NULL, remote_file, &remote_errno);
a6b151f1
DJ
12572 if (retcode == -1)
12573 remote_hostio_error (remote_errno);
12574
12575 if (from_tty)
12576 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file);
12577}
12578
12579static void
ac88e2de 12580remote_put_command (const char *args, int from_tty)
a6b151f1 12581{
d1a41061
PP
12582 if (args == NULL)
12583 error_no_arg (_("file to put"));
12584
773a1edc 12585 gdb_argv argv (args);
a6b151f1
DJ
12586 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12587 error (_("Invalid parameters to remote put"));
12588
12589 remote_file_put (argv[0], argv[1], from_tty);
a6b151f1
DJ
12590}
12591
12592static void
ac88e2de 12593remote_get_command (const char *args, int from_tty)
a6b151f1 12594{
d1a41061
PP
12595 if (args == NULL)
12596 error_no_arg (_("file to get"));
12597
773a1edc 12598 gdb_argv argv (args);
a6b151f1
DJ
12599 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12600 error (_("Invalid parameters to remote get"));
12601
12602 remote_file_get (argv[0], argv[1], from_tty);
a6b151f1
DJ
12603}
12604
12605static void
ac88e2de 12606remote_delete_command (const char *args, int from_tty)
a6b151f1 12607{
d1a41061
PP
12608 if (args == NULL)
12609 error_no_arg (_("file to delete"));
12610
773a1edc 12611 gdb_argv argv (args);
a6b151f1
DJ
12612 if (argv[0] == NULL || argv[1] != NULL)
12613 error (_("Invalid parameters to remote delete"));
12614
12615 remote_file_delete (argv[0], from_tty);
a6b151f1
DJ
12616}
12617
12618static void
981a3fb3 12619remote_command (const char *args, int from_tty)
a6b151f1 12620{
635c7e8a 12621 help_list (remote_cmdlist, "remote ", all_commands, gdb_stdout);
a6b151f1
DJ
12622}
12623
57810aa7 12624bool
f6ac5f3d 12625remote_target::can_execute_reverse ()
b2175913 12626{
4082afcc
PA
12627 if (packet_support (PACKET_bs) == PACKET_ENABLE
12628 || packet_support (PACKET_bc) == PACKET_ENABLE)
57810aa7 12629 return true;
40ab02ce 12630 else
57810aa7 12631 return false;
b2175913
MS
12632}
12633
57810aa7 12634bool
f6ac5f3d 12635remote_target::supports_non_stop ()
74531fed 12636{
57810aa7 12637 return true;
74531fed
PA
12638}
12639
57810aa7 12640bool
f6ac5f3d 12641remote_target::supports_disable_randomization ()
03583c20
UW
12642{
12643 /* Only supported in extended mode. */
57810aa7 12644 return false;
03583c20
UW
12645}
12646
57810aa7 12647bool
f6ac5f3d 12648remote_target::supports_multi_process ()
8a305172
PA
12649{
12650 struct remote_state *rs = get_remote_state ();
a744cf53 12651
8020350c 12652 return remote_multi_process_p (rs);
8a305172
PA
12653}
12654
70221824 12655static int
f6ac5f3d 12656remote_supports_cond_tracepoints ()
782b2b07 12657{
4082afcc 12658 return packet_support (PACKET_ConditionalTracepoints) == PACKET_ENABLE;
782b2b07
SS
12659}
12660
57810aa7 12661bool
f6ac5f3d 12662remote_target::supports_evaluation_of_breakpoint_conditions ()
3788aec7 12663{
4082afcc 12664 return packet_support (PACKET_ConditionalBreakpoints) == PACKET_ENABLE;
3788aec7
LM
12665}
12666
70221824 12667static int
f6ac5f3d 12668remote_supports_fast_tracepoints ()
7a697b8d 12669{
4082afcc 12670 return packet_support (PACKET_FastTracepoints) == PACKET_ENABLE;
7a697b8d
SS
12671}
12672
0fb4aa4b 12673static int
f6ac5f3d 12674remote_supports_static_tracepoints ()
0fb4aa4b 12675{
4082afcc 12676 return packet_support (PACKET_StaticTracepoints) == PACKET_ENABLE;
0fb4aa4b
PA
12677}
12678
1e4d1764 12679static int
f6ac5f3d 12680remote_supports_install_in_trace ()
1e4d1764 12681{
4082afcc 12682 return packet_support (PACKET_InstallInTrace) == PACKET_ENABLE;
1e4d1764
YQ
12683}
12684
57810aa7 12685bool
f6ac5f3d 12686remote_target::supports_enable_disable_tracepoint ()
d248b706 12687{
4082afcc
PA
12688 return (packet_support (PACKET_EnableDisableTracepoints_feature)
12689 == PACKET_ENABLE);
d248b706
KY
12690}
12691
57810aa7 12692bool
f6ac5f3d 12693remote_target::supports_string_tracing ()
3065dfb6 12694{
4082afcc 12695 return packet_support (PACKET_tracenz_feature) == PACKET_ENABLE;
3065dfb6
SS
12696}
12697
57810aa7 12698bool
f6ac5f3d 12699remote_target::can_run_breakpoint_commands ()
d3ce09f5 12700{
4082afcc 12701 return packet_support (PACKET_BreakpointCommands) == PACKET_ENABLE;
d3ce09f5
SS
12702}
12703
f6ac5f3d
PA
12704void
12705remote_target::trace_init ()
35b1e5cc 12706{
b6bb3468
PA
12707 struct remote_state *rs = get_remote_state ();
12708
35b1e5cc 12709 putpkt ("QTinit");
b6bb3468 12710 remote_get_noisy_reply ();
8d64371b 12711 if (strcmp (rs->buf.data (), "OK") != 0)
35b1e5cc
SS
12712 error (_("Target does not support this command."));
12713}
12714
409873ef
SS
12715/* Recursive routine to walk through command list including loops, and
12716 download packets for each command. */
12717
6b8edb51
PA
12718void
12719remote_target::remote_download_command_source (int num, ULONGEST addr,
12720 struct command_line *cmds)
409873ef
SS
12721{
12722 struct remote_state *rs = get_remote_state ();
12723 struct command_line *cmd;
12724
12725 for (cmd = cmds; cmd; cmd = cmd->next)
12726 {
0df8b418 12727 QUIT; /* Allow user to bail out with ^C. */
8d64371b 12728 strcpy (rs->buf.data (), "QTDPsrc:");
409873ef 12729 encode_source_string (num, addr, "cmd", cmd->line,
8d64371b
TT
12730 rs->buf.data () + strlen (rs->buf.data ()),
12731 rs->buf.size () - strlen (rs->buf.data ()));
409873ef 12732 putpkt (rs->buf);
b6bb3468 12733 remote_get_noisy_reply ();
8d64371b 12734 if (strcmp (rs->buf.data (), "OK"))
409873ef
SS
12735 warning (_("Target does not support source download."));
12736
12737 if (cmd->control_type == while_control
12738 || cmd->control_type == while_stepping_control)
12739 {
12973681 12740 remote_download_command_source (num, addr, cmd->body_list_0.get ());
409873ef 12741
0df8b418 12742 QUIT; /* Allow user to bail out with ^C. */
8d64371b 12743 strcpy (rs->buf.data (), "QTDPsrc:");
409873ef 12744 encode_source_string (num, addr, "cmd", "end",
8d64371b
TT
12745 rs->buf.data () + strlen (rs->buf.data ()),
12746 rs->buf.size () - strlen (rs->buf.data ()));
409873ef 12747 putpkt (rs->buf);
b6bb3468 12748 remote_get_noisy_reply ();
8d64371b 12749 if (strcmp (rs->buf.data (), "OK"))
409873ef
SS
12750 warning (_("Target does not support source download."));
12751 }
12752 }
12753}
12754
f6ac5f3d
PA
12755void
12756remote_target::download_tracepoint (struct bp_location *loc)
35b1e5cc
SS
12757{
12758 CORE_ADDR tpaddr;
409873ef 12759 char addrbuf[40];
b44ec619
SM
12760 std::vector<std::string> tdp_actions;
12761 std::vector<std::string> stepping_actions;
35b1e5cc 12762 char *pkt;
e8ba3115 12763 struct breakpoint *b = loc->owner;
d9b3f62e 12764 struct tracepoint *t = (struct tracepoint *) b;
b6bb3468 12765 struct remote_state *rs = get_remote_state ();
3df3a985 12766 int ret;
ff36536c 12767 const char *err_msg = _("Tracepoint packet too large for target.");
3df3a985
PFC
12768 size_t size_left;
12769
12770 /* We use a buffer other than rs->buf because we'll build strings
12771 across multiple statements, and other statements in between could
12772 modify rs->buf. */
12773 gdb::char_vector buf (get_remote_packet_size ());
35b1e5cc 12774
dc673c81 12775 encode_actions_rsp (loc, &tdp_actions, &stepping_actions);
e8ba3115
YQ
12776
12777 tpaddr = loc->address;
12778 sprintf_vma (addrbuf, tpaddr);
3df3a985
PFC
12779 ret = snprintf (buf.data (), buf.size (), "QTDP:%x:%s:%c:%lx:%x",
12780 b->number, addrbuf, /* address */
12781 (b->enable_state == bp_enabled ? 'E' : 'D'),
12782 t->step_count, t->pass_count);
12783
12784 if (ret < 0 || ret >= buf.size ())
a7f25a84 12785 error ("%s", err_msg);
3df3a985 12786
e8ba3115
YQ
12787 /* Fast tracepoints are mostly handled by the target, but we can
12788 tell the target how big of an instruction block should be moved
12789 around. */
12790 if (b->type == bp_fast_tracepoint)
12791 {
12792 /* Only test for support at download time; we may not know
12793 target capabilities at definition time. */
12794 if (remote_supports_fast_tracepoints ())
35b1e5cc 12795 {
6b940e6a
PL
12796 if (gdbarch_fast_tracepoint_valid_at (loc->gdbarch, tpaddr,
12797 NULL))
3df3a985
PFC
12798 {
12799 size_left = buf.size () - strlen (buf.data ());
12800 ret = snprintf (buf.data () + strlen (buf.data ()),
12801 size_left, ":F%x",
12802 gdb_insn_length (loc->gdbarch, tpaddr));
12803
12804 if (ret < 0 || ret >= size_left)
a7f25a84 12805 error ("%s", err_msg);
3df3a985 12806 }
35b1e5cc 12807 else
e8ba3115
YQ
12808 /* If it passed validation at definition but fails now,
12809 something is very wrong. */
12810 internal_error (__FILE__, __LINE__,
12811 _("Fast tracepoint not "
12812 "valid during download"));
35b1e5cc 12813 }
e8ba3115
YQ
12814 else
12815 /* Fast tracepoints are functionally identical to regular
12816 tracepoints, so don't take lack of support as a reason to
12817 give up on the trace run. */
12818 warning (_("Target does not support fast tracepoints, "
12819 "downloading %d as regular tracepoint"), b->number);
12820 }
12821 else if (b->type == bp_static_tracepoint)
12822 {
12823 /* Only test for support at download time; we may not know
12824 target capabilities at definition time. */
12825 if (remote_supports_static_tracepoints ())
0fb4aa4b 12826 {
e8ba3115 12827 struct static_tracepoint_marker marker;
0fb4aa4b 12828
e8ba3115 12829 if (target_static_tracepoint_marker_at (tpaddr, &marker))
3df3a985
PFC
12830 {
12831 size_left = buf.size () - strlen (buf.data ());
12832 ret = snprintf (buf.data () + strlen (buf.data ()),
12833 size_left, ":S");
12834
12835 if (ret < 0 || ret >= size_left)
a7f25a84 12836 error ("%s", err_msg);
3df3a985 12837 }
0fb4aa4b 12838 else
e8ba3115 12839 error (_("Static tracepoint not valid during download"));
0fb4aa4b 12840 }
e8ba3115
YQ
12841 else
12842 /* Fast tracepoints are functionally identical to regular
12843 tracepoints, so don't take lack of support as a reason
12844 to give up on the trace run. */
12845 error (_("Target does not support static tracepoints"));
12846 }
12847 /* If the tracepoint has a conditional, make it into an agent
12848 expression and append to the definition. */
12849 if (loc->cond)
12850 {
12851 /* Only test support at download time, we may not know target
12852 capabilities at definition time. */
12853 if (remote_supports_cond_tracepoints ())
35b1e5cc 12854 {
3df3a985
PFC
12855 agent_expr_up aexpr = gen_eval_for_expr (tpaddr,
12856 loc->cond.get ());
12857
12858 size_left = buf.size () - strlen (buf.data ());
12859
12860 ret = snprintf (buf.data () + strlen (buf.data ()),
12861 size_left, ":X%x,", aexpr->len);
12862
12863 if (ret < 0 || ret >= size_left)
a7f25a84 12864 error ("%s", err_msg);
3df3a985
PFC
12865
12866 size_left = buf.size () - strlen (buf.data ());
12867
12868 /* Two bytes to encode each aexpr byte, plus the terminating
12869 null byte. */
12870 if (aexpr->len * 2 + 1 > size_left)
a7f25a84 12871 error ("%s", err_msg);
3df3a985
PFC
12872
12873 pkt = buf.data () + strlen (buf.data ());
12874
b44ec619 12875 for (int ndx = 0; ndx < aexpr->len; ++ndx)
e8ba3115
YQ
12876 pkt = pack_hex_byte (pkt, aexpr->buf[ndx]);
12877 *pkt = '\0';
35b1e5cc 12878 }
e8ba3115
YQ
12879 else
12880 warning (_("Target does not support conditional tracepoints, "
12881 "ignoring tp %d cond"), b->number);
12882 }
35b1e5cc 12883
d9b3f62e 12884 if (b->commands || *default_collect)
3df3a985
PFC
12885 {
12886 size_left = buf.size () - strlen (buf.data ());
12887
12888 ret = snprintf (buf.data () + strlen (buf.data ()),
12889 size_left, "-");
12890
12891 if (ret < 0 || ret >= size_left)
a7f25a84 12892 error ("%s", err_msg);
3df3a985
PFC
12893 }
12894
12895 putpkt (buf.data ());
b6bb3468 12896 remote_get_noisy_reply ();
8d64371b 12897 if (strcmp (rs->buf.data (), "OK"))
e8ba3115 12898 error (_("Target does not support tracepoints."));
35b1e5cc 12899
e8ba3115 12900 /* do_single_steps (t); */
b44ec619
SM
12901 for (auto action_it = tdp_actions.begin ();
12902 action_it != tdp_actions.end (); action_it++)
e8ba3115 12903 {
b44ec619
SM
12904 QUIT; /* Allow user to bail out with ^C. */
12905
aa6f3694 12906 bool has_more = ((action_it + 1) != tdp_actions.end ()
b44ec619
SM
12907 || !stepping_actions.empty ());
12908
3df3a985
PFC
12909 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%c",
12910 b->number, addrbuf, /* address */
12911 action_it->c_str (),
12912 has_more ? '-' : 0);
12913
12914 if (ret < 0 || ret >= buf.size ())
a7f25a84 12915 error ("%s", err_msg);
3df3a985
PFC
12916
12917 putpkt (buf.data ());
b44ec619 12918 remote_get_noisy_reply ();
8d64371b 12919 if (strcmp (rs->buf.data (), "OK"))
b44ec619 12920 error (_("Error on target while setting tracepoints."));
e8ba3115 12921 }
409873ef 12922
05abfc39
PFC
12923 for (auto action_it = stepping_actions.begin ();
12924 action_it != stepping_actions.end (); action_it++)
12925 {
12926 QUIT; /* Allow user to bail out with ^C. */
12927
12928 bool is_first = action_it == stepping_actions.begin ();
aa6f3694 12929 bool has_more = (action_it + 1) != stepping_actions.end ();
05abfc39 12930
3df3a985
PFC
12931 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%s%s",
12932 b->number, addrbuf, /* address */
12933 is_first ? "S" : "",
12934 action_it->c_str (),
12935 has_more ? "-" : "");
12936
12937 if (ret < 0 || ret >= buf.size ())
a7f25a84 12938 error ("%s", err_msg);
3df3a985
PFC
12939
12940 putpkt (buf.data ());
05abfc39 12941 remote_get_noisy_reply ();
8d64371b 12942 if (strcmp (rs->buf.data (), "OK"))
05abfc39
PFC
12943 error (_("Error on target while setting tracepoints."));
12944 }
b44ec619 12945
4082afcc 12946 if (packet_support (PACKET_TracepointSource) == PACKET_ENABLE)
e8ba3115 12947 {
f00aae0f 12948 if (b->location != NULL)
409873ef 12949 {
3df3a985
PFC
12950 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
12951
12952 if (ret < 0 || ret >= buf.size ())
a7f25a84 12953 error ("%s", err_msg);
3df3a985 12954
f00aae0f 12955 encode_source_string (b->number, loc->address, "at",
d28cd78a 12956 event_location_to_string (b->location.get ()),
3df3a985
PFC
12957 buf.data () + strlen (buf.data ()),
12958 buf.size () - strlen (buf.data ()));
12959 putpkt (buf.data ());
b6bb3468 12960 remote_get_noisy_reply ();
8d64371b 12961 if (strcmp (rs->buf.data (), "OK"))
e8ba3115 12962 warning (_("Target does not support source download."));
409873ef 12963 }
e8ba3115
YQ
12964 if (b->cond_string)
12965 {
3df3a985
PFC
12966 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
12967
12968 if (ret < 0 || ret >= buf.size ())
a7f25a84 12969 error ("%s", err_msg);
3df3a985 12970
e8ba3115 12971 encode_source_string (b->number, loc->address,
3df3a985
PFC
12972 "cond", b->cond_string,
12973 buf.data () + strlen (buf.data ()),
12974 buf.size () - strlen (buf.data ()));
12975 putpkt (buf.data ());
b6bb3468 12976 remote_get_noisy_reply ();
8d64371b 12977 if (strcmp (rs->buf.data (), "OK"))
e8ba3115
YQ
12978 warning (_("Target does not support source download."));
12979 }
12980 remote_download_command_source (b->number, loc->address,
12981 breakpoint_commands (b));
35b1e5cc 12982 }
35b1e5cc
SS
12983}
12984
57810aa7 12985bool
f6ac5f3d 12986remote_target::can_download_tracepoint ()
1e4d1764 12987{
1e51243a
PA
12988 struct remote_state *rs = get_remote_state ();
12989 struct trace_status *ts;
12990 int status;
12991
12992 /* Don't try to install tracepoints until we've relocated our
12993 symbols, and fetched and merged the target's tracepoint list with
12994 ours. */
12995 if (rs->starting_up)
57810aa7 12996 return false;
1e51243a
PA
12997
12998 ts = current_trace_status ();
f6ac5f3d 12999 status = get_trace_status (ts);
1e4d1764
YQ
13000
13001 if (status == -1 || !ts->running_known || !ts->running)
57810aa7 13002 return false;
1e4d1764
YQ
13003
13004 /* If we are in a tracing experiment, but remote stub doesn't support
13005 installing tracepoint in trace, we have to return. */
13006 if (!remote_supports_install_in_trace ())
57810aa7 13007 return false;
1e4d1764 13008
57810aa7 13009 return true;
1e4d1764
YQ
13010}
13011
13012
f6ac5f3d
PA
13013void
13014remote_target::download_trace_state_variable (const trace_state_variable &tsv)
35b1e5cc
SS
13015{
13016 struct remote_state *rs = get_remote_state ();
00bf0b85 13017 char *p;
35b1e5cc 13018
8d64371b 13019 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDV:%x:%s:%x:",
c252925c
SM
13020 tsv.number, phex ((ULONGEST) tsv.initial_value, 8),
13021 tsv.builtin);
8d64371b
TT
13022 p = rs->buf.data () + strlen (rs->buf.data ());
13023 if ((p - rs->buf.data ()) + tsv.name.length () * 2
13024 >= get_remote_packet_size ())
00bf0b85 13025 error (_("Trace state variable name too long for tsv definition packet"));
c252925c 13026 p += 2 * bin2hex ((gdb_byte *) (tsv.name.data ()), p, tsv.name.length ());
00bf0b85 13027 *p++ = '\0';
35b1e5cc 13028 putpkt (rs->buf);
b6bb3468 13029 remote_get_noisy_reply ();
8d64371b 13030 if (rs->buf[0] == '\0')
ad91cd99 13031 error (_("Target does not support this command."));
8d64371b 13032 if (strcmp (rs->buf.data (), "OK") != 0)
ad91cd99 13033 error (_("Error on target while downloading trace state variable."));
35b1e5cc
SS
13034}
13035
f6ac5f3d
PA
13036void
13037remote_target::enable_tracepoint (struct bp_location *location)
d248b706
KY
13038{
13039 struct remote_state *rs = get_remote_state ();
13040 char addr_buf[40];
13041
13042 sprintf_vma (addr_buf, location->address);
8d64371b 13043 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTEnable:%x:%s",
bba74b36 13044 location->owner->number, addr_buf);
d248b706 13045 putpkt (rs->buf);
b6bb3468 13046 remote_get_noisy_reply ();
8d64371b 13047 if (rs->buf[0] == '\0')
d248b706 13048 error (_("Target does not support enabling tracepoints while a trace run is ongoing."));
8d64371b 13049 if (strcmp (rs->buf.data (), "OK") != 0)
d248b706
KY
13050 error (_("Error on target while enabling tracepoint."));
13051}
13052
f6ac5f3d
PA
13053void
13054remote_target::disable_tracepoint (struct bp_location *location)
d248b706
KY
13055{
13056 struct remote_state *rs = get_remote_state ();
13057 char addr_buf[40];
13058
13059 sprintf_vma (addr_buf, location->address);
8d64371b 13060 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDisable:%x:%s",
bba74b36 13061 location->owner->number, addr_buf);
d248b706 13062 putpkt (rs->buf);
b6bb3468 13063 remote_get_noisy_reply ();
8d64371b 13064 if (rs->buf[0] == '\0')
d248b706 13065 error (_("Target does not support disabling tracepoints while a trace run is ongoing."));
8d64371b 13066 if (strcmp (rs->buf.data (), "OK") != 0)
d248b706
KY
13067 error (_("Error on target while disabling tracepoint."));
13068}
13069
f6ac5f3d
PA
13070void
13071remote_target::trace_set_readonly_regions ()
35b1e5cc
SS
13072{
13073 asection *s;
81b9b86e 13074 bfd *abfd = NULL;
35b1e5cc 13075 bfd_size_type size;
608bcef2 13076 bfd_vma vma;
35b1e5cc 13077 int anysecs = 0;
c2fa21f1 13078 int offset = 0;
35b1e5cc
SS
13079
13080 if (!exec_bfd)
13081 return; /* No information to give. */
13082
b6bb3468
PA
13083 struct remote_state *rs = get_remote_state ();
13084
8d64371b
TT
13085 strcpy (rs->buf.data (), "QTro");
13086 offset = strlen (rs->buf.data ());
35b1e5cc
SS
13087 for (s = exec_bfd->sections; s; s = s->next)
13088 {
13089 char tmp1[40], tmp2[40];
c2fa21f1 13090 int sec_length;
35b1e5cc
SS
13091
13092 if ((s->flags & SEC_LOAD) == 0 ||
0df8b418 13093 /* (s->flags & SEC_CODE) == 0 || */
35b1e5cc
SS
13094 (s->flags & SEC_READONLY) == 0)
13095 continue;
13096
13097 anysecs = 1;
81b9b86e 13098 vma = bfd_get_section_vma (abfd, s);
35b1e5cc 13099 size = bfd_get_section_size (s);
608bcef2
HZ
13100 sprintf_vma (tmp1, vma);
13101 sprintf_vma (tmp2, vma + size);
c2fa21f1 13102 sec_length = 1 + strlen (tmp1) + 1 + strlen (tmp2);
8d64371b 13103 if (offset + sec_length + 1 > rs->buf.size ())
c2fa21f1 13104 {
4082afcc 13105 if (packet_support (PACKET_qXfer_traceframe_info) != PACKET_ENABLE)
864ac8a7 13106 warning (_("\
c2fa21f1
HZ
13107Too many sections for read-only sections definition packet."));
13108 break;
13109 }
8d64371b 13110 xsnprintf (rs->buf.data () + offset, rs->buf.size () - offset, ":%s,%s",
bba74b36 13111 tmp1, tmp2);
c2fa21f1 13112 offset += sec_length;
35b1e5cc
SS
13113 }
13114 if (anysecs)
13115 {
b6bb3468 13116 putpkt (rs->buf);
8d64371b 13117 getpkt (&rs->buf, 0);
35b1e5cc
SS
13118 }
13119}
13120
f6ac5f3d
PA
13121void
13122remote_target::trace_start ()
35b1e5cc 13123{
b6bb3468
PA
13124 struct remote_state *rs = get_remote_state ();
13125
35b1e5cc 13126 putpkt ("QTStart");
b6bb3468 13127 remote_get_noisy_reply ();
8d64371b 13128 if (rs->buf[0] == '\0')
ad91cd99 13129 error (_("Target does not support this command."));
8d64371b
TT
13130 if (strcmp (rs->buf.data (), "OK") != 0)
13131 error (_("Bogus reply from target: %s"), rs->buf.data ());
35b1e5cc
SS
13132}
13133
f6ac5f3d
PA
13134int
13135remote_target::get_trace_status (struct trace_status *ts)
35b1e5cc 13136{
953b98d1 13137 /* Initialize it just to avoid a GCC false warning. */
f652de6f 13138 char *p = NULL;
0df8b418 13139 /* FIXME we need to get register block size some other way. */
00bf0b85 13140 extern int trace_regblock_size;
bd3eecc3 13141 enum packet_result result;
b6bb3468 13142 struct remote_state *rs = get_remote_state ();
bd3eecc3 13143
4082afcc 13144 if (packet_support (PACKET_qTStatus) == PACKET_DISABLE)
bd3eecc3 13145 return -1;
a744cf53 13146
5cd63fda 13147 trace_regblock_size
9d6eea31 13148 = rs->get_remote_arch_state (target_gdbarch ())->sizeof_g_packet;
00bf0b85 13149
049dc89b
JK
13150 putpkt ("qTStatus");
13151
a70b8144 13152 try
67f41397 13153 {
b6bb3468 13154 p = remote_get_noisy_reply ();
67f41397 13155 }
230d2906 13156 catch (const gdb_exception_error &ex)
67f41397 13157 {
598d3636
JK
13158 if (ex.error != TARGET_CLOSE_ERROR)
13159 {
13160 exception_fprintf (gdb_stderr, ex, "qTStatus: ");
13161 return -1;
13162 }
eedc3f4f 13163 throw;
67f41397 13164 }
00bf0b85 13165
bd3eecc3
PA
13166 result = packet_ok (p, &remote_protocol_packets[PACKET_qTStatus]);
13167
00bf0b85 13168 /* If the remote target doesn't do tracing, flag it. */
bd3eecc3 13169 if (result == PACKET_UNKNOWN)
00bf0b85 13170 return -1;
35b1e5cc 13171
00bf0b85 13172 /* We're working with a live target. */
f5911ea1 13173 ts->filename = NULL;
00bf0b85 13174
00bf0b85 13175 if (*p++ != 'T')
8d64371b 13176 error (_("Bogus trace status reply from target: %s"), rs->buf.data ());
35b1e5cc 13177
84cebc4a
YQ
13178 /* Function 'parse_trace_status' sets default value of each field of
13179 'ts' at first, so we don't have to do it here. */
00bf0b85
SS
13180 parse_trace_status (p, ts);
13181
13182 return ts->running;
35b1e5cc
SS
13183}
13184
f6ac5f3d
PA
13185void
13186remote_target::get_tracepoint_status (struct breakpoint *bp,
13187 struct uploaded_tp *utp)
f196051f
SS
13188{
13189 struct remote_state *rs = get_remote_state ();
f196051f
SS
13190 char *reply;
13191 struct bp_location *loc;
13192 struct tracepoint *tp = (struct tracepoint *) bp;
bba74b36 13193 size_t size = get_remote_packet_size ();
f196051f
SS
13194
13195 if (tp)
13196 {
c1fc2657 13197 tp->hit_count = 0;
f196051f 13198 tp->traceframe_usage = 0;
c1fc2657 13199 for (loc = tp->loc; loc; loc = loc->next)
f196051f
SS
13200 {
13201 /* If the tracepoint was never downloaded, don't go asking for
13202 any status. */
13203 if (tp->number_on_target == 0)
13204 continue;
8d64371b 13205 xsnprintf (rs->buf.data (), size, "qTP:%x:%s", tp->number_on_target,
bba74b36 13206 phex_nz (loc->address, 0));
f196051f 13207 putpkt (rs->buf);
b6bb3468 13208 reply = remote_get_noisy_reply ();
f196051f
SS
13209 if (reply && *reply)
13210 {
13211 if (*reply == 'V')
13212 parse_tracepoint_status (reply + 1, bp, utp);
13213 }
13214 }
13215 }
13216 else if (utp)
13217 {
13218 utp->hit_count = 0;
13219 utp->traceframe_usage = 0;
8d64371b 13220 xsnprintf (rs->buf.data (), size, "qTP:%x:%s", utp->number,
bba74b36 13221 phex_nz (utp->addr, 0));
f196051f 13222 putpkt (rs->buf);
b6bb3468 13223 reply = remote_get_noisy_reply ();
f196051f
SS
13224 if (reply && *reply)
13225 {
13226 if (*reply == 'V')
13227 parse_tracepoint_status (reply + 1, bp, utp);
13228 }
13229 }
13230}
13231
f6ac5f3d
PA
13232void
13233remote_target::trace_stop ()
35b1e5cc 13234{
b6bb3468
PA
13235 struct remote_state *rs = get_remote_state ();
13236
35b1e5cc 13237 putpkt ("QTStop");
b6bb3468 13238 remote_get_noisy_reply ();
8d64371b 13239 if (rs->buf[0] == '\0')
ad91cd99 13240 error (_("Target does not support this command."));
8d64371b
TT
13241 if (strcmp (rs->buf.data (), "OK") != 0)
13242 error (_("Bogus reply from target: %s"), rs->buf.data ());
35b1e5cc
SS
13243}
13244
f6ac5f3d
PA
13245int
13246remote_target::trace_find (enum trace_find_type type, int num,
13247 CORE_ADDR addr1, CORE_ADDR addr2,
13248 int *tpp)
35b1e5cc
SS
13249{
13250 struct remote_state *rs = get_remote_state ();
8d64371b 13251 char *endbuf = rs->buf.data () + get_remote_packet_size ();
35b1e5cc
SS
13252 char *p, *reply;
13253 int target_frameno = -1, target_tracept = -1;
13254
e6e4e701
PA
13255 /* Lookups other than by absolute frame number depend on the current
13256 trace selected, so make sure it is correct on the remote end
13257 first. */
13258 if (type != tfind_number)
13259 set_remote_traceframe ();
13260
8d64371b 13261 p = rs->buf.data ();
35b1e5cc
SS
13262 strcpy (p, "QTFrame:");
13263 p = strchr (p, '\0');
13264 switch (type)
13265 {
13266 case tfind_number:
bba74b36 13267 xsnprintf (p, endbuf - p, "%x", num);
35b1e5cc
SS
13268 break;
13269 case tfind_pc:
bba74b36 13270 xsnprintf (p, endbuf - p, "pc:%s", phex_nz (addr1, 0));
35b1e5cc
SS
13271 break;
13272 case tfind_tp:
bba74b36 13273 xsnprintf (p, endbuf - p, "tdp:%x", num);
35b1e5cc
SS
13274 break;
13275 case tfind_range:
bba74b36
YQ
13276 xsnprintf (p, endbuf - p, "range:%s:%s", phex_nz (addr1, 0),
13277 phex_nz (addr2, 0));
35b1e5cc
SS
13278 break;
13279 case tfind_outside:
bba74b36
YQ
13280 xsnprintf (p, endbuf - p, "outside:%s:%s", phex_nz (addr1, 0),
13281 phex_nz (addr2, 0));
35b1e5cc
SS
13282 break;
13283 default:
9b20d036 13284 error (_("Unknown trace find type %d"), type);
35b1e5cc
SS
13285 }
13286
13287 putpkt (rs->buf);
b6bb3468 13288 reply = remote_get_noisy_reply ();
ad91cd99
PA
13289 if (*reply == '\0')
13290 error (_("Target does not support this command."));
35b1e5cc
SS
13291
13292 while (reply && *reply)
13293 switch (*reply)
13294 {
13295 case 'F':
f197e0f1
VP
13296 p = ++reply;
13297 target_frameno = (int) strtol (p, &reply, 16);
13298 if (reply == p)
13299 error (_("Unable to parse trace frame number"));
e6e4e701
PA
13300 /* Don't update our remote traceframe number cache on failure
13301 to select a remote traceframe. */
f197e0f1
VP
13302 if (target_frameno == -1)
13303 return -1;
35b1e5cc
SS
13304 break;
13305 case 'T':
f197e0f1
VP
13306 p = ++reply;
13307 target_tracept = (int) strtol (p, &reply, 16);
13308 if (reply == p)
13309 error (_("Unable to parse tracepoint number"));
35b1e5cc
SS
13310 break;
13311 case 'O': /* "OK"? */
13312 if (reply[1] == 'K' && reply[2] == '\0')
13313 reply += 2;
13314 else
13315 error (_("Bogus reply from target: %s"), reply);
13316 break;
13317 default:
13318 error (_("Bogus reply from target: %s"), reply);
13319 }
13320 if (tpp)
13321 *tpp = target_tracept;
e6e4e701 13322
262e1174 13323 rs->remote_traceframe_number = target_frameno;
35b1e5cc
SS
13324 return target_frameno;
13325}
13326
57810aa7 13327bool
f6ac5f3d 13328remote_target::get_trace_state_variable_value (int tsvnum, LONGEST *val)
35b1e5cc
SS
13329{
13330 struct remote_state *rs = get_remote_state ();
13331 char *reply;
13332 ULONGEST uval;
13333
e6e4e701
PA
13334 set_remote_traceframe ();
13335
8d64371b 13336 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTV:%x", tsvnum);
35b1e5cc 13337 putpkt (rs->buf);
b6bb3468 13338 reply = remote_get_noisy_reply ();
35b1e5cc
SS
13339 if (reply && *reply)
13340 {
13341 if (*reply == 'V')
13342 {
13343 unpack_varlen_hex (reply + 1, &uval);
13344 *val = (LONGEST) uval;
57810aa7 13345 return true;
35b1e5cc
SS
13346 }
13347 }
57810aa7 13348 return false;
35b1e5cc
SS
13349}
13350
f6ac5f3d
PA
13351int
13352remote_target::save_trace_data (const char *filename)
00bf0b85
SS
13353{
13354 struct remote_state *rs = get_remote_state ();
13355 char *p, *reply;
13356
8d64371b 13357 p = rs->buf.data ();
00bf0b85
SS
13358 strcpy (p, "QTSave:");
13359 p += strlen (p);
8d64371b
TT
13360 if ((p - rs->buf.data ()) + strlen (filename) * 2
13361 >= get_remote_packet_size ())
00bf0b85 13362 error (_("Remote file name too long for trace save packet"));
9f1b45b0 13363 p += 2 * bin2hex ((gdb_byte *) filename, p, strlen (filename));
00bf0b85
SS
13364 *p++ = '\0';
13365 putpkt (rs->buf);
b6bb3468 13366 reply = remote_get_noisy_reply ();
d6c5869f 13367 if (*reply == '\0')
ad91cd99
PA
13368 error (_("Target does not support this command."));
13369 if (strcmp (reply, "OK") != 0)
13370 error (_("Bogus reply from target: %s"), reply);
00bf0b85
SS
13371 return 0;
13372}
13373
13374/* This is basically a memory transfer, but needs to be its own packet
13375 because we don't know how the target actually organizes its trace
13376 memory, plus we want to be able to ask for as much as possible, but
13377 not be unhappy if we don't get as much as we ask for. */
13378
f6ac5f3d
PA
13379LONGEST
13380remote_target::get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len)
00bf0b85
SS
13381{
13382 struct remote_state *rs = get_remote_state ();
13383 char *reply;
13384 char *p;
13385 int rslt;
13386
8d64371b 13387 p = rs->buf.data ();
00bf0b85
SS
13388 strcpy (p, "qTBuffer:");
13389 p += strlen (p);
13390 p += hexnumstr (p, offset);
13391 *p++ = ',';
13392 p += hexnumstr (p, len);
13393 *p++ = '\0';
13394
13395 putpkt (rs->buf);
b6bb3468 13396 reply = remote_get_noisy_reply ();
00bf0b85
SS
13397 if (reply && *reply)
13398 {
13399 /* 'l' by itself means we're at the end of the buffer and
13400 there is nothing more to get. */
13401 if (*reply == 'l')
13402 return 0;
13403
13404 /* Convert the reply into binary. Limit the number of bytes to
13405 convert according to our passed-in buffer size, rather than
13406 what was returned in the packet; if the target is
13407 unexpectedly generous and gives us a bigger reply than we
13408 asked for, we don't want to crash. */
b6bb3468 13409 rslt = hex2bin (reply, buf, len);
00bf0b85
SS
13410 return rslt;
13411 }
13412
13413 /* Something went wrong, flag as an error. */
13414 return -1;
13415}
13416
f6ac5f3d
PA
13417void
13418remote_target::set_disconnected_tracing (int val)
35b1e5cc
SS
13419{
13420 struct remote_state *rs = get_remote_state ();
13421
4082afcc 13422 if (packet_support (PACKET_DisconnectedTracing_feature) == PACKET_ENABLE)
33da3f1c 13423 {
ad91cd99
PA
13424 char *reply;
13425
8d64371b
TT
13426 xsnprintf (rs->buf.data (), get_remote_packet_size (),
13427 "QTDisconnected:%x", val);
33da3f1c 13428 putpkt (rs->buf);
b6bb3468 13429 reply = remote_get_noisy_reply ();
ad91cd99 13430 if (*reply == '\0')
33da3f1c 13431 error (_("Target does not support this command."));
ad91cd99
PA
13432 if (strcmp (reply, "OK") != 0)
13433 error (_("Bogus reply from target: %s"), reply);
33da3f1c
SS
13434 }
13435 else if (val)
13436 warning (_("Target does not support disconnected tracing."));
35b1e5cc
SS
13437}
13438
f6ac5f3d
PA
13439int
13440remote_target::core_of_thread (ptid_t ptid)
dc146f7c
VP
13441{
13442 struct thread_info *info = find_thread_ptid (ptid);
a744cf53 13443
7aabaf9d
SM
13444 if (info != NULL && info->priv != NULL)
13445 return get_remote_thread_info (info)->core;
13446
dc146f7c
VP
13447 return -1;
13448}
13449
f6ac5f3d
PA
13450void
13451remote_target::set_circular_trace_buffer (int val)
4daf5ac0
SS
13452{
13453 struct remote_state *rs = get_remote_state ();
ad91cd99 13454 char *reply;
4daf5ac0 13455
8d64371b
TT
13456 xsnprintf (rs->buf.data (), get_remote_packet_size (),
13457 "QTBuffer:circular:%x", val);
4daf5ac0 13458 putpkt (rs->buf);
b6bb3468 13459 reply = remote_get_noisy_reply ();
ad91cd99 13460 if (*reply == '\0')
4daf5ac0 13461 error (_("Target does not support this command."));
ad91cd99
PA
13462 if (strcmp (reply, "OK") != 0)
13463 error (_("Bogus reply from target: %s"), reply);
4daf5ac0
SS
13464}
13465
f6ac5f3d
PA
13466traceframe_info_up
13467remote_target::traceframe_info ()
b3b9301e 13468{
9018be22 13469 gdb::optional<gdb::char_vector> text
8b88a78e 13470 = target_read_stralloc (current_top_target (), TARGET_OBJECT_TRACEFRAME_INFO,
b7b030ad 13471 NULL);
9018be22
SM
13472 if (text)
13473 return parse_traceframe_info (text->data ());
b3b9301e
PA
13474
13475 return NULL;
13476}
13477
405f8e94
SS
13478/* Handle the qTMinFTPILen packet. Returns the minimum length of
13479 instruction on which a fast tracepoint may be placed. Returns -1
13480 if the packet is not supported, and 0 if the minimum instruction
13481 length is unknown. */
13482
f6ac5f3d
PA
13483int
13484remote_target::get_min_fast_tracepoint_insn_len ()
405f8e94
SS
13485{
13486 struct remote_state *rs = get_remote_state ();
13487 char *reply;
13488
e886a173
PA
13489 /* If we're not debugging a process yet, the IPA can't be
13490 loaded. */
13491 if (!target_has_execution)
13492 return 0;
13493
13494 /* Make sure the remote is pointing at the right process. */
13495 set_general_process ();
13496
8d64371b 13497 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTMinFTPILen");
405f8e94 13498 putpkt (rs->buf);
b6bb3468 13499 reply = remote_get_noisy_reply ();
405f8e94
SS
13500 if (*reply == '\0')
13501 return -1;
13502 else
13503 {
13504 ULONGEST min_insn_len;
13505
13506 unpack_varlen_hex (reply, &min_insn_len);
13507
13508 return (int) min_insn_len;
13509 }
13510}
13511
f6ac5f3d
PA
13512void
13513remote_target::set_trace_buffer_size (LONGEST val)
f6f899bf 13514{
4082afcc 13515 if (packet_support (PACKET_QTBuffer_size) != PACKET_DISABLE)
f6f899bf
HAQ
13516 {
13517 struct remote_state *rs = get_remote_state ();
8d64371b
TT
13518 char *buf = rs->buf.data ();
13519 char *endbuf = buf + get_remote_packet_size ();
f6f899bf
HAQ
13520 enum packet_result result;
13521
13522 gdb_assert (val >= 0 || val == -1);
13523 buf += xsnprintf (buf, endbuf - buf, "QTBuffer:size:");
13524 /* Send -1 as literal "-1" to avoid host size dependency. */
13525 if (val < 0)
13526 {
13527 *buf++ = '-';
13528 buf += hexnumstr (buf, (ULONGEST) -val);
13529 }
13530 else
13531 buf += hexnumstr (buf, (ULONGEST) val);
13532
13533 putpkt (rs->buf);
b6bb3468 13534 remote_get_noisy_reply ();
f6f899bf
HAQ
13535 result = packet_ok (rs->buf,
13536 &remote_protocol_packets[PACKET_QTBuffer_size]);
13537
13538 if (result != PACKET_OK)
8d64371b 13539 warning (_("Bogus reply from target: %s"), rs->buf.data ());
f6f899bf
HAQ
13540 }
13541}
13542
57810aa7 13543bool
f6ac5f3d
PA
13544remote_target::set_trace_notes (const char *user, const char *notes,
13545 const char *stop_notes)
f196051f
SS
13546{
13547 struct remote_state *rs = get_remote_state ();
13548 char *reply;
8d64371b
TT
13549 char *buf = rs->buf.data ();
13550 char *endbuf = buf + get_remote_packet_size ();
f196051f
SS
13551 int nbytes;
13552
13553 buf += xsnprintf (buf, endbuf - buf, "QTNotes:");
13554 if (user)
13555 {
13556 buf += xsnprintf (buf, endbuf - buf, "user:");
9f1b45b0 13557 nbytes = bin2hex ((gdb_byte *) user, buf, strlen (user));
f196051f
SS
13558 buf += 2 * nbytes;
13559 *buf++ = ';';
13560 }
13561 if (notes)
13562 {
13563 buf += xsnprintf (buf, endbuf - buf, "notes:");
9f1b45b0 13564 nbytes = bin2hex ((gdb_byte *) notes, buf, strlen (notes));
f196051f
SS
13565 buf += 2 * nbytes;
13566 *buf++ = ';';
13567 }
13568 if (stop_notes)
13569 {
13570 buf += xsnprintf (buf, endbuf - buf, "tstop:");
9f1b45b0 13571 nbytes = bin2hex ((gdb_byte *) stop_notes, buf, strlen (stop_notes));
f196051f
SS
13572 buf += 2 * nbytes;
13573 *buf++ = ';';
13574 }
13575 /* Ensure the buffer is terminated. */
13576 *buf = '\0';
13577
13578 putpkt (rs->buf);
b6bb3468 13579 reply = remote_get_noisy_reply ();
f196051f 13580 if (*reply == '\0')
57810aa7 13581 return false;
f196051f
SS
13582
13583 if (strcmp (reply, "OK") != 0)
13584 error (_("Bogus reply from target: %s"), reply);
13585
57810aa7 13586 return true;
f196051f
SS
13587}
13588
57810aa7
PA
13589bool
13590remote_target::use_agent (bool use)
d1feda86 13591{
4082afcc 13592 if (packet_support (PACKET_QAgent) != PACKET_DISABLE)
d1feda86
YQ
13593 {
13594 struct remote_state *rs = get_remote_state ();
13595
13596 /* If the stub supports QAgent. */
8d64371b 13597 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QAgent:%d", use);
d1feda86 13598 putpkt (rs->buf);
8d64371b 13599 getpkt (&rs->buf, 0);
d1feda86 13600
8d64371b 13601 if (strcmp (rs->buf.data (), "OK") == 0)
d1feda86 13602 {
f6ac5f3d 13603 ::use_agent = use;
57810aa7 13604 return true;
d1feda86
YQ
13605 }
13606 }
13607
57810aa7 13608 return false;
d1feda86
YQ
13609}
13610
57810aa7 13611bool
f6ac5f3d 13612remote_target::can_use_agent ()
d1feda86 13613{
4082afcc 13614 return (packet_support (PACKET_QAgent) != PACKET_DISABLE);
d1feda86
YQ
13615}
13616
9accd112
MM
13617struct btrace_target_info
13618{
13619 /* The ptid of the traced thread. */
13620 ptid_t ptid;
f4abbc16
MM
13621
13622 /* The obtained branch trace configuration. */
13623 struct btrace_config conf;
9accd112
MM
13624};
13625
f4abbc16
MM
13626/* Reset our idea of our target's btrace configuration. */
13627
13628static void
6b8edb51 13629remote_btrace_reset (remote_state *rs)
f4abbc16 13630{
f4abbc16
MM
13631 memset (&rs->btrace_config, 0, sizeof (rs->btrace_config));
13632}
13633
f4abbc16
MM
13634/* Synchronize the configuration with the target. */
13635
6b8edb51
PA
13636void
13637remote_target::btrace_sync_conf (const btrace_config *conf)
f4abbc16 13638{
d33501a5
MM
13639 struct packet_config *packet;
13640 struct remote_state *rs;
13641 char *buf, *pos, *endbuf;
13642
13643 rs = get_remote_state ();
8d64371b 13644 buf = rs->buf.data ();
d33501a5
MM
13645 endbuf = buf + get_remote_packet_size ();
13646
13647 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_bts_size];
13648 if (packet_config_support (packet) == PACKET_ENABLE
13649 && conf->bts.size != rs->btrace_config.bts.size)
13650 {
13651 pos = buf;
13652 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13653 conf->bts.size);
13654
13655 putpkt (buf);
8d64371b 13656 getpkt (&rs->buf, 0);
d33501a5
MM
13657
13658 if (packet_ok (buf, packet) == PACKET_ERROR)
13659 {
13660 if (buf[0] == 'E' && buf[1] == '.')
13661 error (_("Failed to configure the BTS buffer size: %s"), buf + 2);
13662 else
13663 error (_("Failed to configure the BTS buffer size."));
13664 }
13665
13666 rs->btrace_config.bts.size = conf->bts.size;
13667 }
b20a6524
MM
13668
13669 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_pt_size];
13670 if (packet_config_support (packet) == PACKET_ENABLE
13671 && conf->pt.size != rs->btrace_config.pt.size)
13672 {
13673 pos = buf;
13674 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13675 conf->pt.size);
13676
13677 putpkt (buf);
8d64371b 13678 getpkt (&rs->buf, 0);
b20a6524
MM
13679
13680 if (packet_ok (buf, packet) == PACKET_ERROR)
13681 {
13682 if (buf[0] == 'E' && buf[1] == '.')
13683 error (_("Failed to configure the trace buffer size: %s"), buf + 2);
13684 else
13685 error (_("Failed to configure the trace buffer size."));
13686 }
13687
13688 rs->btrace_config.pt.size = conf->pt.size;
13689 }
f4abbc16
MM
13690}
13691
13692/* Read the current thread's btrace configuration from the target and
13693 store it into CONF. */
13694
13695static void
13696btrace_read_config (struct btrace_config *conf)
13697{
9018be22 13698 gdb::optional<gdb::char_vector> xml
8b88a78e 13699 = target_read_stralloc (current_top_target (), TARGET_OBJECT_BTRACE_CONF, "");
9018be22
SM
13700 if (xml)
13701 parse_xml_btrace_conf (conf, xml->data ());
f4abbc16
MM
13702}
13703
c0272db5
TW
13704/* Maybe reopen target btrace. */
13705
6b8edb51
PA
13706void
13707remote_target::remote_btrace_maybe_reopen ()
c0272db5
TW
13708{
13709 struct remote_state *rs = get_remote_state ();
c0272db5 13710 int btrace_target_pushed = 0;
15766370 13711#if !defined (HAVE_LIBIPT)
c0272db5 13712 int warned = 0;
15766370 13713#endif
c0272db5 13714
5ed8105e
PA
13715 scoped_restore_current_thread restore_thread;
13716
08036331 13717 for (thread_info *tp : all_non_exited_threads ())
c0272db5
TW
13718 {
13719 set_general_thread (tp->ptid);
13720
13721 memset (&rs->btrace_config, 0x00, sizeof (struct btrace_config));
13722 btrace_read_config (&rs->btrace_config);
13723
13724 if (rs->btrace_config.format == BTRACE_FORMAT_NONE)
13725 continue;
13726
13727#if !defined (HAVE_LIBIPT)
13728 if (rs->btrace_config.format == BTRACE_FORMAT_PT)
13729 {
13730 if (!warned)
13731 {
13732 warned = 1;
c4e12631
MM
13733 warning (_("Target is recording using Intel Processor Trace "
13734 "but support was disabled at compile time."));
c0272db5
TW
13735 }
13736
13737 continue;
13738 }
13739#endif /* !defined (HAVE_LIBIPT) */
13740
13741 /* Push target, once, but before anything else happens. This way our
13742 changes to the threads will be cleaned up by unpushing the target
13743 in case btrace_read_config () throws. */
13744 if (!btrace_target_pushed)
13745 {
13746 btrace_target_pushed = 1;
13747 record_btrace_push_target ();
13748 printf_filtered (_("Target is recording using %s.\n"),
13749 btrace_format_string (rs->btrace_config.format));
13750 }
13751
13752 tp->btrace.target = XCNEW (struct btrace_target_info);
13753 tp->btrace.target->ptid = tp->ptid;
13754 tp->btrace.target->conf = rs->btrace_config;
13755 }
c0272db5
TW
13756}
13757
9accd112
MM
13758/* Enable branch tracing. */
13759
f6ac5f3d
PA
13760struct btrace_target_info *
13761remote_target::enable_btrace (ptid_t ptid, const struct btrace_config *conf)
9accd112
MM
13762{
13763 struct btrace_target_info *tinfo = NULL;
b20a6524 13764 struct packet_config *packet = NULL;
9accd112 13765 struct remote_state *rs = get_remote_state ();
8d64371b
TT
13766 char *buf = rs->buf.data ();
13767 char *endbuf = buf + get_remote_packet_size ();
9accd112 13768
b20a6524
MM
13769 switch (conf->format)
13770 {
13771 case BTRACE_FORMAT_BTS:
13772 packet = &remote_protocol_packets[PACKET_Qbtrace_bts];
13773 break;
13774
13775 case BTRACE_FORMAT_PT:
13776 packet = &remote_protocol_packets[PACKET_Qbtrace_pt];
13777 break;
13778 }
13779
13780 if (packet == NULL || packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13781 error (_("Target does not support branch tracing."));
13782
f4abbc16
MM
13783 btrace_sync_conf (conf);
13784
9accd112
MM
13785 set_general_thread (ptid);
13786
13787 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
13788 putpkt (rs->buf);
8d64371b 13789 getpkt (&rs->buf, 0);
9accd112
MM
13790
13791 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
13792 {
13793 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
13794 error (_("Could not enable branch tracing for %s: %s"),
a068643d 13795 target_pid_to_str (ptid).c_str (), &rs->buf[2]);
9accd112
MM
13796 else
13797 error (_("Could not enable branch tracing for %s."),
a068643d 13798 target_pid_to_str (ptid).c_str ());
9accd112
MM
13799 }
13800
8d749320 13801 tinfo = XCNEW (struct btrace_target_info);
9accd112
MM
13802 tinfo->ptid = ptid;
13803
f4abbc16
MM
13804 /* If we fail to read the configuration, we lose some information, but the
13805 tracing itself is not impacted. */
a70b8144 13806 try
492d29ea
PA
13807 {
13808 btrace_read_config (&tinfo->conf);
13809 }
230d2906 13810 catch (const gdb_exception_error &err)
492d29ea
PA
13811 {
13812 if (err.message != NULL)
3d6e9d23 13813 warning ("%s", err.what ());
492d29ea 13814 }
f4abbc16 13815
9accd112
MM
13816 return tinfo;
13817}
13818
13819/* Disable branch tracing. */
13820
f6ac5f3d
PA
13821void
13822remote_target::disable_btrace (struct btrace_target_info *tinfo)
9accd112
MM
13823{
13824 struct packet_config *packet = &remote_protocol_packets[PACKET_Qbtrace_off];
13825 struct remote_state *rs = get_remote_state ();
8d64371b
TT
13826 char *buf = rs->buf.data ();
13827 char *endbuf = buf + get_remote_packet_size ();
9accd112 13828
4082afcc 13829 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13830 error (_("Target does not support branch tracing."));
13831
13832 set_general_thread (tinfo->ptid);
13833
13834 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
13835 putpkt (rs->buf);
8d64371b 13836 getpkt (&rs->buf, 0);
9accd112
MM
13837
13838 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
13839 {
13840 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
13841 error (_("Could not disable branch tracing for %s: %s"),
a068643d 13842 target_pid_to_str (tinfo->ptid).c_str (), &rs->buf[2]);
9accd112
MM
13843 else
13844 error (_("Could not disable branch tracing for %s."),
a068643d 13845 target_pid_to_str (tinfo->ptid).c_str ());
9accd112
MM
13846 }
13847
13848 xfree (tinfo);
13849}
13850
13851/* Teardown branch tracing. */
13852
f6ac5f3d
PA
13853void
13854remote_target::teardown_btrace (struct btrace_target_info *tinfo)
9accd112
MM
13855{
13856 /* We must not talk to the target during teardown. */
13857 xfree (tinfo);
13858}
13859
13860/* Read the branch trace. */
13861
f6ac5f3d
PA
13862enum btrace_error
13863remote_target::read_btrace (struct btrace_data *btrace,
13864 struct btrace_target_info *tinfo,
13865 enum btrace_read_type type)
9accd112
MM
13866{
13867 struct packet_config *packet = &remote_protocol_packets[PACKET_qXfer_btrace];
9accd112 13868 const char *annex;
9accd112 13869
4082afcc 13870 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13871 error (_("Target does not support branch tracing."));
13872
13873#if !defined(HAVE_LIBEXPAT)
13874 error (_("Cannot process branch tracing result. XML parsing not supported."));
13875#endif
13876
13877 switch (type)
13878 {
864089d2 13879 case BTRACE_READ_ALL:
9accd112
MM
13880 annex = "all";
13881 break;
864089d2 13882 case BTRACE_READ_NEW:
9accd112
MM
13883 annex = "new";
13884 break;
969c39fb
MM
13885 case BTRACE_READ_DELTA:
13886 annex = "delta";
13887 break;
9accd112
MM
13888 default:
13889 internal_error (__FILE__, __LINE__,
13890 _("Bad branch tracing read type: %u."),
13891 (unsigned int) type);
13892 }
13893
9018be22 13894 gdb::optional<gdb::char_vector> xml
8b88a78e 13895 = target_read_stralloc (current_top_target (), TARGET_OBJECT_BTRACE, annex);
9018be22 13896 if (!xml)
969c39fb 13897 return BTRACE_ERR_UNKNOWN;
9accd112 13898
9018be22 13899 parse_xml_btrace (btrace, xml->data ());
9accd112 13900
969c39fb 13901 return BTRACE_ERR_NONE;
9accd112
MM
13902}
13903
f6ac5f3d
PA
13904const struct btrace_config *
13905remote_target::btrace_conf (const struct btrace_target_info *tinfo)
f4abbc16
MM
13906{
13907 return &tinfo->conf;
13908}
13909
57810aa7 13910bool
f6ac5f3d 13911remote_target::augmented_libraries_svr4_read ()
ced63ec0 13912{
4082afcc
PA
13913 return (packet_support (PACKET_augmented_libraries_svr4_read_feature)
13914 == PACKET_ENABLE);
ced63ec0
GB
13915}
13916
9dd130a0
TT
13917/* Implementation of to_load. */
13918
f6ac5f3d
PA
13919void
13920remote_target::load (const char *name, int from_tty)
9dd130a0
TT
13921{
13922 generic_load (name, from_tty);
13923}
13924
c78fa86a
GB
13925/* Accepts an integer PID; returns a string representing a file that
13926 can be opened on the remote side to get the symbols for the child
13927 process. Returns NULL if the operation is not supported. */
13928
f6ac5f3d
PA
13929char *
13930remote_target::pid_to_exec_file (int pid)
c78fa86a 13931{
9018be22 13932 static gdb::optional<gdb::char_vector> filename;
835205d0
GB
13933 struct inferior *inf;
13934 char *annex = NULL;
c78fa86a
GB
13935
13936 if (packet_support (PACKET_qXfer_exec_file) != PACKET_ENABLE)
13937 return NULL;
13938
835205d0
GB
13939 inf = find_inferior_pid (pid);
13940 if (inf == NULL)
13941 internal_error (__FILE__, __LINE__,
13942 _("not currently attached to process %d"), pid);
13943
13944 if (!inf->fake_pid_p)
13945 {
13946 const int annex_size = 9;
13947
224c3ddb 13948 annex = (char *) alloca (annex_size);
835205d0
GB
13949 xsnprintf (annex, annex_size, "%x", pid);
13950 }
13951
8b88a78e 13952 filename = target_read_stralloc (current_top_target (),
c78fa86a
GB
13953 TARGET_OBJECT_EXEC_FILE, annex);
13954
9018be22 13955 return filename ? filename->data () : nullptr;
c78fa86a
GB
13956}
13957
750ce8d1
YQ
13958/* Implement the to_can_do_single_step target_ops method. */
13959
f6ac5f3d
PA
13960int
13961remote_target::can_do_single_step ()
750ce8d1
YQ
13962{
13963 /* We can only tell whether target supports single step or not by
13964 supported s and S vCont actions if the stub supports vContSupported
13965 feature. If the stub doesn't support vContSupported feature,
13966 we have conservatively to think target doesn't supports single
13967 step. */
13968 if (packet_support (PACKET_vContSupported) == PACKET_ENABLE)
13969 {
13970 struct remote_state *rs = get_remote_state ();
13971
13972 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6b8edb51 13973 remote_vcont_probe ();
750ce8d1
YQ
13974
13975 return rs->supports_vCont.s && rs->supports_vCont.S;
13976 }
13977 else
13978 return 0;
13979}
13980
3a00c802
PA
13981/* Implementation of the to_execution_direction method for the remote
13982 target. */
13983
f6ac5f3d
PA
13984enum exec_direction_kind
13985remote_target::execution_direction ()
3a00c802
PA
13986{
13987 struct remote_state *rs = get_remote_state ();
13988
13989 return rs->last_resume_exec_dir;
13990}
13991
f6327dcb
KB
13992/* Return pointer to the thread_info struct which corresponds to
13993 THREAD_HANDLE (having length HANDLE_LEN). */
13994
f6ac5f3d
PA
13995thread_info *
13996remote_target::thread_handle_to_thread_info (const gdb_byte *thread_handle,
13997 int handle_len,
13998 inferior *inf)
f6327dcb 13999{
08036331 14000 for (thread_info *tp : all_non_exited_threads ())
f6327dcb 14001 {
7aabaf9d 14002 remote_thread_info *priv = get_remote_thread_info (tp);
f6327dcb
KB
14003
14004 if (tp->inf == inf && priv != NULL)
14005 {
7aabaf9d 14006 if (handle_len != priv->thread_handle.size ())
f6327dcb 14007 error (_("Thread handle size mismatch: %d vs %zu (from remote)"),
7aabaf9d
SM
14008 handle_len, priv->thread_handle.size ());
14009 if (memcmp (thread_handle, priv->thread_handle.data (),
f6327dcb
KB
14010 handle_len) == 0)
14011 return tp;
14012 }
14013 }
14014
14015 return NULL;
14016}
14017
3d6c6204
KB
14018gdb::byte_vector
14019remote_target::thread_info_to_thread_handle (struct thread_info *tp)
14020{
14021 remote_thread_info *priv = get_remote_thread_info (tp);
14022 return priv->thread_handle;
14023}
14024
57810aa7 14025bool
f6ac5f3d 14026remote_target::can_async_p ()
6426a772 14027{
5d93a237
TT
14028 struct remote_state *rs = get_remote_state ();
14029
3015c064
SM
14030 /* We don't go async if the user has explicitly prevented it with the
14031 "maint set target-async" command. */
c6ebd6cf 14032 if (!target_async_permitted)
57810aa7 14033 return false;
75c99385 14034
23860348 14035 /* We're async whenever the serial device is. */
5d93a237 14036 return serial_can_async_p (rs->remote_desc);
6426a772
JM
14037}
14038
57810aa7 14039bool
f6ac5f3d 14040remote_target::is_async_p ()
6426a772 14041{
5d93a237
TT
14042 struct remote_state *rs = get_remote_state ();
14043
c6ebd6cf 14044 if (!target_async_permitted)
75c99385 14045 /* We only enable async when the user specifically asks for it. */
57810aa7 14046 return false;
75c99385 14047
23860348 14048 /* We're async whenever the serial device is. */
5d93a237 14049 return serial_is_async_p (rs->remote_desc);
6426a772
JM
14050}
14051
2acceee2
JM
14052/* Pass the SERIAL event on and up to the client. One day this code
14053 will be able to delay notifying the client of an event until the
23860348 14054 point where an entire packet has been received. */
2acceee2 14055
2acceee2
JM
14056static serial_event_ftype remote_async_serial_handler;
14057
6426a772 14058static void
819cc324 14059remote_async_serial_handler (struct serial *scb, void *context)
6426a772 14060{
2acceee2
JM
14061 /* Don't propogate error information up to the client. Instead let
14062 the client find out about the error by querying the target. */
6a3753b3 14063 inferior_event_handler (INF_REG_EVENT, NULL);
2acceee2
JM
14064}
14065
74531fed
PA
14066static void
14067remote_async_inferior_event_handler (gdb_client_data data)
14068{
6b8edb51 14069 inferior_event_handler (INF_REG_EVENT, data);
74531fed
PA
14070}
14071
f6ac5f3d
PA
14072void
14073remote_target::async (int enable)
2acceee2 14074{
5d93a237
TT
14075 struct remote_state *rs = get_remote_state ();
14076
6a3753b3 14077 if (enable)
2acceee2 14078 {
88b496c3 14079 serial_async (rs->remote_desc, remote_async_serial_handler, rs);
b7d2e916
PA
14080
14081 /* If there are pending events in the stop reply queue tell the
14082 event loop to process them. */
953edf2b 14083 if (!rs->stop_reply_queue.empty ())
6b8edb51 14084 mark_async_event_handler (rs->remote_async_inferior_event_token);
6efcd9a8
PA
14085 /* For simplicity, below we clear the pending events token
14086 without remembering whether it is marked, so here we always
14087 mark it. If there's actually no pending notification to
14088 process, this ends up being a no-op (other than a spurious
14089 event-loop wakeup). */
14090 if (target_is_non_stop_p ())
14091 mark_async_event_handler (rs->notif_state->get_pending_events_token);
2acceee2
JM
14092 }
14093 else
b7d2e916
PA
14094 {
14095 serial_async (rs->remote_desc, NULL, NULL);
6efcd9a8
PA
14096 /* If the core is disabling async, it doesn't want to be
14097 disturbed with target events. Clear all async event sources
14098 too. */
6b8edb51 14099 clear_async_event_handler (rs->remote_async_inferior_event_token);
6efcd9a8
PA
14100 if (target_is_non_stop_p ())
14101 clear_async_event_handler (rs->notif_state->get_pending_events_token);
b7d2e916 14102 }
6426a772
JM
14103}
14104
65706a29
PA
14105/* Implementation of the to_thread_events method. */
14106
f6ac5f3d
PA
14107void
14108remote_target::thread_events (int enable)
65706a29
PA
14109{
14110 struct remote_state *rs = get_remote_state ();
14111 size_t size = get_remote_packet_size ();
65706a29
PA
14112
14113 if (packet_support (PACKET_QThreadEvents) == PACKET_DISABLE)
14114 return;
14115
8d64371b 14116 xsnprintf (rs->buf.data (), size, "QThreadEvents:%x", enable ? 1 : 0);
65706a29 14117 putpkt (rs->buf);
8d64371b 14118 getpkt (&rs->buf, 0);
65706a29
PA
14119
14120 switch (packet_ok (rs->buf,
14121 &remote_protocol_packets[PACKET_QThreadEvents]))
14122 {
14123 case PACKET_OK:
8d64371b
TT
14124 if (strcmp (rs->buf.data (), "OK") != 0)
14125 error (_("Remote refused setting thread events: %s"), rs->buf.data ());
65706a29
PA
14126 break;
14127 case PACKET_ERROR:
8d64371b 14128 warning (_("Remote failure reply: %s"), rs->buf.data ());
65706a29
PA
14129 break;
14130 case PACKET_UNKNOWN:
14131 break;
14132 }
14133}
14134
5a2468f5 14135static void
981a3fb3 14136set_remote_cmd (const char *args, int from_tty)
5a2468f5 14137{
635c7e8a 14138 help_list (remote_set_cmdlist, "set remote ", all_commands, gdb_stdout);
5a2468f5
JM
14139}
14140
d471ea57 14141static void
981a3fb3 14142show_remote_cmd (const char *args, int from_tty)
d471ea57 14143{
37a105a1 14144 /* We can't just use cmd_show_list here, because we want to skip
427c3a89 14145 the redundant "show remote Z-packet" and the legacy aliases. */
37a105a1 14146 struct cmd_list_element *list = remote_show_cmdlist;
79a45e25 14147 struct ui_out *uiout = current_uiout;
37a105a1 14148
2e783024 14149 ui_out_emit_tuple tuple_emitter (uiout, "showlist");
37a105a1
DJ
14150 for (; list != NULL; list = list->next)
14151 if (strcmp (list->name, "Z-packet") == 0)
14152 continue;
427c3a89
DJ
14153 else if (list->type == not_set_cmd)
14154 /* Alias commands are exactly like the original, except they
14155 don't have the normal type. */
14156 continue;
14157 else
37a105a1 14158 {
2e783024 14159 ui_out_emit_tuple option_emitter (uiout, "option");
a744cf53 14160
112e8700
SM
14161 uiout->field_string ("name", list->name);
14162 uiout->text (": ");
427c3a89 14163 if (list->type == show_cmd)
f5c4fcd9 14164 do_show_command (NULL, from_tty, list);
427c3a89
DJ
14165 else
14166 cmd_func (list, NULL, from_tty);
37a105a1 14167 }
d471ea57 14168}
5a2468f5 14169
0f71a2f6 14170
23860348 14171/* Function to be called whenever a new objfile (shlib) is detected. */
dc8acb97
MS
14172static void
14173remote_new_objfile (struct objfile *objfile)
14174{
6b8edb51 14175 remote_target *remote = get_current_remote_target ();
5d93a237 14176
6b8edb51
PA
14177 if (remote != NULL) /* Have a remote connection. */
14178 remote->remote_check_symbols ();
dc8acb97
MS
14179}
14180
00bf0b85
SS
14181/* Pull all the tracepoints defined on the target and create local
14182 data structures representing them. We don't want to create real
14183 tracepoints yet, we don't want to mess up the user's existing
14184 collection. */
14185
f6ac5f3d
PA
14186int
14187remote_target::upload_tracepoints (struct uploaded_tp **utpp)
d5551862 14188{
00bf0b85
SS
14189 struct remote_state *rs = get_remote_state ();
14190 char *p;
d5551862 14191
00bf0b85
SS
14192 /* Ask for a first packet of tracepoint definition. */
14193 putpkt ("qTfP");
8d64371b
TT
14194 getpkt (&rs->buf, 0);
14195 p = rs->buf.data ();
00bf0b85 14196 while (*p && *p != 'l')
d5551862 14197 {
00bf0b85
SS
14198 parse_tracepoint_definition (p, utpp);
14199 /* Ask for another packet of tracepoint definition. */
14200 putpkt ("qTsP");
8d64371b
TT
14201 getpkt (&rs->buf, 0);
14202 p = rs->buf.data ();
d5551862 14203 }
00bf0b85 14204 return 0;
d5551862
SS
14205}
14206
f6ac5f3d
PA
14207int
14208remote_target::upload_trace_state_variables (struct uploaded_tsv **utsvp)
d5551862 14209{
00bf0b85 14210 struct remote_state *rs = get_remote_state ();
d5551862 14211 char *p;
d5551862 14212
00bf0b85
SS
14213 /* Ask for a first packet of variable definition. */
14214 putpkt ("qTfV");
8d64371b
TT
14215 getpkt (&rs->buf, 0);
14216 p = rs->buf.data ();
00bf0b85 14217 while (*p && *p != 'l')
d5551862 14218 {
00bf0b85
SS
14219 parse_tsv_definition (p, utsvp);
14220 /* Ask for another packet of variable definition. */
14221 putpkt ("qTsV");
8d64371b
TT
14222 getpkt (&rs->buf, 0);
14223 p = rs->buf.data ();
d5551862 14224 }
00bf0b85 14225 return 0;
d5551862
SS
14226}
14227
c1e36e3e
PA
14228/* The "set/show range-stepping" show hook. */
14229
14230static void
14231show_range_stepping (struct ui_file *file, int from_tty,
14232 struct cmd_list_element *c,
14233 const char *value)
14234{
14235 fprintf_filtered (file,
14236 _("Debugger's willingness to use range stepping "
14237 "is %s.\n"), value);
14238}
14239
6b8edb51
PA
14240/* Return true if the vCont;r action is supported by the remote
14241 stub. */
14242
14243bool
14244remote_target::vcont_r_supported ()
14245{
14246 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
14247 remote_vcont_probe ();
14248
14249 return (packet_support (PACKET_vCont) == PACKET_ENABLE
14250 && get_remote_state ()->supports_vCont.r);
14251}
14252
c1e36e3e
PA
14253/* The "set/show range-stepping" set hook. */
14254
14255static void
eb4c3f4a 14256set_range_stepping (const char *ignore_args, int from_tty,
c1e36e3e
PA
14257 struct cmd_list_element *c)
14258{
6b8edb51
PA
14259 /* When enabling, check whether range stepping is actually supported
14260 by the target, and warn if not. */
c1e36e3e
PA
14261 if (use_range_stepping)
14262 {
6b8edb51
PA
14263 remote_target *remote = get_current_remote_target ();
14264 if (remote == NULL
14265 || !remote->vcont_r_supported ())
14266 warning (_("Range stepping is not supported by the current target"));
c1e36e3e
PA
14267 }
14268}
14269
c906108c 14270void
fba45db2 14271_initialize_remote (void)
c906108c 14272{
9a7071a8 14273 struct cmd_list_element *cmd;
6f937416 14274 const char *cmd_name;
ea9c271d 14275
0f71a2f6 14276 /* architecture specific data */
29709017
DJ
14277 remote_g_packet_data_handle =
14278 gdbarch_data_register_pre_init (remote_g_packet_data_init);
d01949b6 14279
94585166
DB
14280 remote_pspace_data
14281 = register_program_space_data_with_cleanup (NULL,
14282 remote_pspace_data_cleanup);
14283
d9f719f1
PA
14284 add_target (remote_target_info, remote_target::open);
14285 add_target (extended_remote_target_info, extended_remote_target::open);
cce74817 14286
dc8acb97 14287 /* Hook into new objfile notification. */
76727919 14288 gdb::observers::new_objfile.attach (remote_new_objfile);
dc8acb97 14289
c906108c
SS
14290#if 0
14291 init_remote_threadtests ();
14292#endif
14293
23860348 14294 /* set/show remote ... */
d471ea57 14295
1bedd215 14296 add_prefix_cmd ("remote", class_maintenance, set_remote_cmd, _("\
5a2468f5
JM
14297Remote protocol specific variables\n\
14298Configure various remote-protocol specific variables such as\n\
1bedd215 14299the packets being used"),
cff3e48b 14300 &remote_set_cmdlist, "set remote ",
23860348 14301 0 /* allow-unknown */, &setlist);
1bedd215 14302 add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
5a2468f5
JM
14303Remote protocol specific variables\n\
14304Configure various remote-protocol specific variables such as\n\
1bedd215 14305the packets being used"),
cff3e48b 14306 &remote_show_cmdlist, "show remote ",
23860348 14307 0 /* allow-unknown */, &showlist);
5a2468f5 14308
1a966eab
AC
14309 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
14310Compare section data on target to the exec file.\n\
95cf3b38
DT
14311Argument is a single section name (default: all loaded sections).\n\
14312To compare only read-only loaded sections, specify the -r option."),
c906108c
SS
14313 &cmdlist);
14314
1a966eab
AC
14315 add_cmd ("packet", class_maintenance, packet_command, _("\
14316Send an arbitrary packet to a remote target.\n\
c906108c
SS
14317 maintenance packet TEXT\n\
14318If GDB is talking to an inferior via the GDB serial protocol, then\n\
14319this command sends the string TEXT to the inferior, and displays the\n\
14320response packet. GDB supplies the initial `$' character, and the\n\
1a966eab 14321terminating `#' character and checksum."),
c906108c
SS
14322 &maintenancelist);
14323
7915a72c
AC
14324 add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
14325Set whether to send break if interrupted."), _("\
14326Show whether to send break if interrupted."), _("\
14327If set, a break, instead of a cntrl-c, is sent to the remote target."),
9a7071a8 14328 set_remotebreak, show_remotebreak,
e707bbc2 14329 &setlist, &showlist);
9a7071a8
JB
14330 cmd_name = "remotebreak";
14331 cmd = lookup_cmd (&cmd_name, setlist, "", -1, 1);
14332 deprecate_cmd (cmd, "set remote interrupt-sequence");
14333 cmd_name = "remotebreak"; /* needed because lookup_cmd updates the pointer */
14334 cmd = lookup_cmd (&cmd_name, showlist, "", -1, 1);
14335 deprecate_cmd (cmd, "show remote interrupt-sequence");
14336
14337 add_setshow_enum_cmd ("interrupt-sequence", class_support,
3e43a32a
MS
14338 interrupt_sequence_modes, &interrupt_sequence_mode,
14339 _("\
9a7071a8
JB
14340Set interrupt sequence to remote target."), _("\
14341Show interrupt sequence to remote target."), _("\
14342Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."),
14343 NULL, show_interrupt_sequence,
14344 &remote_set_cmdlist,
14345 &remote_show_cmdlist);
14346
14347 add_setshow_boolean_cmd ("interrupt-on-connect", class_support,
14348 &interrupt_on_connect, _("\
14349Set whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
14350Show whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
14351If set, interrupt sequence is sent to remote target."),
14352 NULL, NULL,
14353 &remote_set_cmdlist, &remote_show_cmdlist);
c906108c 14354
23860348 14355 /* Install commands for configuring memory read/write packets. */
11cf8741 14356
1a966eab
AC
14357 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
14358Set the maximum number of bytes per memory write packet (deprecated)."),
11cf8741 14359 &setlist);
1a966eab
AC
14360 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
14361Show the maximum number of bytes per memory write packet (deprecated)."),
11cf8741
JM
14362 &showlist);
14363 add_cmd ("memory-write-packet-size", no_class,
1a966eab
AC
14364 set_memory_write_packet_size, _("\
14365Set the maximum number of bytes per memory-write packet.\n\
14366Specify the number of bytes in a packet or 0 (zero) for the\n\
14367default packet size. The actual limit is further reduced\n\
14368dependent on the target. Specify ``fixed'' to disable the\n\
14369further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
14370 &remote_set_cmdlist);
14371 add_cmd ("memory-read-packet-size", no_class,
1a966eab
AC
14372 set_memory_read_packet_size, _("\
14373Set the maximum number of bytes per memory-read packet.\n\
14374Specify the number of bytes in a packet or 0 (zero) for the\n\
14375default packet size. The actual limit is further reduced\n\
14376dependent on the target. Specify ``fixed'' to disable the\n\
14377further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
14378 &remote_set_cmdlist);
14379 add_cmd ("memory-write-packet-size", no_class,
14380 show_memory_write_packet_size,
1a966eab 14381 _("Show the maximum number of bytes per memory-write packet."),
11cf8741
JM
14382 &remote_show_cmdlist);
14383 add_cmd ("memory-read-packet-size", no_class,
14384 show_memory_read_packet_size,
1a966eab 14385 _("Show the maximum number of bytes per memory-read packet."),
11cf8741 14386 &remote_show_cmdlist);
c906108c 14387
055303e2 14388 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-limit", no_class,
7915a72c
AC
14389 &remote_hw_watchpoint_limit, _("\
14390Set the maximum number of target hardware watchpoints."), _("\
14391Show the maximum number of target hardware watchpoints."), _("\
055303e2
AB
14392Specify \"unlimited\" for unlimited hardware watchpoints."),
14393 NULL, show_hardware_watchpoint_limit,
14394 &remote_set_cmdlist,
14395 &remote_show_cmdlist);
14396 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-length-limit",
14397 no_class,
480a3f21
PW
14398 &remote_hw_watchpoint_length_limit, _("\
14399Set the maximum length (in bytes) of a target hardware watchpoint."), _("\
14400Show the maximum length (in bytes) of a target hardware watchpoint."), _("\
055303e2
AB
14401Specify \"unlimited\" to allow watchpoints of unlimited size."),
14402 NULL, show_hardware_watchpoint_length_limit,
480a3f21 14403 &remote_set_cmdlist, &remote_show_cmdlist);
055303e2 14404 add_setshow_zuinteger_unlimited_cmd ("hardware-breakpoint-limit", no_class,
7915a72c
AC
14405 &remote_hw_breakpoint_limit, _("\
14406Set the maximum number of target hardware breakpoints."), _("\
14407Show the maximum number of target hardware breakpoints."), _("\
055303e2
AB
14408Specify \"unlimited\" for unlimited hardware breakpoints."),
14409 NULL, show_hardware_breakpoint_limit,
b3f42336 14410 &remote_set_cmdlist, &remote_show_cmdlist);
501eef12 14411
1b493192
PA
14412 add_setshow_zuinteger_cmd ("remoteaddresssize", class_obscure,
14413 &remote_address_size, _("\
4d28ad1e
AC
14414Set the maximum size of the address (in bits) in a memory packet."), _("\
14415Show the maximum size of the address (in bits) in a memory packet."), NULL,
1b493192
PA
14416 NULL,
14417 NULL, /* FIXME: i18n: */
14418 &setlist, &showlist);
c906108c 14419
ca4f7f8b
PA
14420 init_all_packet_configs ();
14421
444abaca 14422 add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
bb572ddd 14423 "X", "binary-download", 1);
0f71a2f6 14424
444abaca 14425 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
bb572ddd 14426 "vCont", "verbose-resume", 0);
506fb367 14427
89be2091
DJ
14428 add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals],
14429 "QPassSignals", "pass-signals", 0);
14430
82075af2
JS
14431 add_packet_config_cmd (&remote_protocol_packets[PACKET_QCatchSyscalls],
14432 "QCatchSyscalls", "catch-syscalls", 0);
14433
9b224c5e
PA
14434 add_packet_config_cmd (&remote_protocol_packets[PACKET_QProgramSignals],
14435 "QProgramSignals", "program-signals", 0);
14436
bc3b087d
SDJ
14437 add_packet_config_cmd (&remote_protocol_packets[PACKET_QSetWorkingDir],
14438 "QSetWorkingDir", "set-working-dir", 0);
14439
aefd8b33
SDJ
14440 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartupWithShell],
14441 "QStartupWithShell", "startup-with-shell", 0);
14442
0a2dde4a
SDJ
14443 add_packet_config_cmd (&remote_protocol_packets
14444 [PACKET_QEnvironmentHexEncoded],
14445 "QEnvironmentHexEncoded", "environment-hex-encoded",
14446 0);
14447
14448 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentReset],
14449 "QEnvironmentReset", "environment-reset",
14450 0);
14451
14452 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentUnset],
14453 "QEnvironmentUnset", "environment-unset",
14454 0);
14455
444abaca 14456 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
bb572ddd 14457 "qSymbol", "symbol-lookup", 0);
dc8acb97 14458
444abaca 14459 add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
bb572ddd 14460 "P", "set-register", 1);
d471ea57 14461
444abaca 14462 add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
bb572ddd 14463 "p", "fetch-register", 1);
b96ec7ac 14464
444abaca 14465 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
bb572ddd 14466 "Z0", "software-breakpoint", 0);
d471ea57 14467
444abaca 14468 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
bb572ddd 14469 "Z1", "hardware-breakpoint", 0);
d471ea57 14470
444abaca 14471 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
bb572ddd 14472 "Z2", "write-watchpoint", 0);
d471ea57 14473
444abaca 14474 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
bb572ddd 14475 "Z3", "read-watchpoint", 0);
d471ea57 14476
444abaca 14477 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
bb572ddd 14478 "Z4", "access-watchpoint", 0);
d471ea57 14479
0876f84a
DJ
14480 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
14481 "qXfer:auxv:read", "read-aux-vector", 0);
802188a7 14482
c78fa86a
GB
14483 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_exec_file],
14484 "qXfer:exec-file:read", "pid-to-exec-file", 0);
14485
23181151
DJ
14486 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features],
14487 "qXfer:features:read", "target-features", 0);
14488
cfa9d6d9
DJ
14489 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries],
14490 "qXfer:libraries:read", "library-info", 0);
14491
2268b414
JK
14492 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries_svr4],
14493 "qXfer:libraries-svr4:read", "library-info-svr4", 0);
14494
fd79ecee
DJ
14495 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
14496 "qXfer:memory-map:read", "memory-map", 0);
14497
0e7f50da
UW
14498 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_read],
14499 "qXfer:spu:read", "read-spu-object", 0);
14500
14501 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_write],
14502 "qXfer:spu:write", "write-spu-object", 0);
14503
07e059b5
VP
14504 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata],
14505 "qXfer:osdata:read", "osdata", 0);
14506
dc146f7c
VP
14507 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_threads],
14508 "qXfer:threads:read", "threads", 0);
14509
4aa995e1
PA
14510 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read],
14511 "qXfer:siginfo:read", "read-siginfo-object", 0);
14512
14513 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write],
14514 "qXfer:siginfo:write", "write-siginfo-object", 0);
14515
b3b9301e
PA
14516 add_packet_config_cmd
14517 (&remote_protocol_packets[PACKET_qXfer_traceframe_info],
eb9fe518 14518 "qXfer:traceframe-info:read", "traceframe-info", 0);
b3b9301e 14519
169081d0
TG
14520 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_uib],
14521 "qXfer:uib:read", "unwind-info-block", 0);
14522
444abaca 14523 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
38691318 14524 "qGetTLSAddr", "get-thread-local-storage-address",
38691318
KB
14525 0);
14526
711e434b
PM
14527 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTIBAddr],
14528 "qGetTIBAddr", "get-thread-information-block-address",
14529 0);
14530
40ab02ce
MS
14531 add_packet_config_cmd (&remote_protocol_packets[PACKET_bc],
14532 "bc", "reverse-continue", 0);
14533
14534 add_packet_config_cmd (&remote_protocol_packets[PACKET_bs],
14535 "bs", "reverse-step", 0);
14536
be2a5f71
DJ
14537 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
14538 "qSupported", "supported-packets", 0);
14539
08388c79
DE
14540 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory],
14541 "qSearch:memory", "search-memory", 0);
14542
bd3eecc3
PA
14543 add_packet_config_cmd (&remote_protocol_packets[PACKET_qTStatus],
14544 "qTStatus", "trace-status", 0);
14545
15a201c8
GB
14546 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_setfs],
14547 "vFile:setfs", "hostio-setfs", 0);
14548
a6b151f1
DJ
14549 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open],
14550 "vFile:open", "hostio-open", 0);
14551
14552 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread],
14553 "vFile:pread", "hostio-pread", 0);
14554
14555 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite],
14556 "vFile:pwrite", "hostio-pwrite", 0);
14557
14558 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close],
14559 "vFile:close", "hostio-close", 0);
14560
14561 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink],
14562 "vFile:unlink", "hostio-unlink", 0);
14563
b9e7b9c3
UW
14564 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_readlink],
14565 "vFile:readlink", "hostio-readlink", 0);
14566
0a93529c
GB
14567 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_fstat],
14568 "vFile:fstat", "hostio-fstat", 0);
14569
2d717e4f
DJ
14570 add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach],
14571 "vAttach", "attach", 0);
14572
14573 add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun],
14574 "vRun", "run", 0);
14575
a6f3e723
SL
14576 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode],
14577 "QStartNoAckMode", "noack", 0);
14578
82f73884
PA
14579 add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill],
14580 "vKill", "kill", 0);
14581
0b16c5cf
PA
14582 add_packet_config_cmd (&remote_protocol_packets[PACKET_qAttached],
14583 "qAttached", "query-attached", 0);
14584
782b2b07 14585 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalTracepoints],
3e43a32a
MS
14586 "ConditionalTracepoints",
14587 "conditional-tracepoints", 0);
3788aec7
LM
14588
14589 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalBreakpoints],
14590 "ConditionalBreakpoints",
14591 "conditional-breakpoints", 0);
14592
d3ce09f5
SS
14593 add_packet_config_cmd (&remote_protocol_packets[PACKET_BreakpointCommands],
14594 "BreakpointCommands",
14595 "breakpoint-commands", 0);
14596
7a697b8d
SS
14597 add_packet_config_cmd (&remote_protocol_packets[PACKET_FastTracepoints],
14598 "FastTracepoints", "fast-tracepoints", 0);
782b2b07 14599
409873ef
SS
14600 add_packet_config_cmd (&remote_protocol_packets[PACKET_TracepointSource],
14601 "TracepointSource", "TracepointSource", 0);
14602
d914c394
SS
14603 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAllow],
14604 "QAllow", "allow", 0);
14605
0fb4aa4b
PA
14606 add_packet_config_cmd (&remote_protocol_packets[PACKET_StaticTracepoints],
14607 "StaticTracepoints", "static-tracepoints", 0);
14608
1e4d1764
YQ
14609 add_packet_config_cmd (&remote_protocol_packets[PACKET_InstallInTrace],
14610 "InstallInTrace", "install-in-trace", 0);
14611
0fb4aa4b
PA
14612 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_statictrace_read],
14613 "qXfer:statictrace:read", "read-sdata-object", 0);
14614
78d85199
YQ
14615 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_fdpic],
14616 "qXfer:fdpic:read", "read-fdpic-loadmap", 0);
14617
03583c20
UW
14618 add_packet_config_cmd (&remote_protocol_packets[PACKET_QDisableRandomization],
14619 "QDisableRandomization", "disable-randomization", 0);
14620
d1feda86
YQ
14621 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAgent],
14622 "QAgent", "agent", 0);
14623
f6f899bf
HAQ
14624 add_packet_config_cmd (&remote_protocol_packets[PACKET_QTBuffer_size],
14625 "QTBuffer:size", "trace-buffer-size", 0);
14626
9accd112
MM
14627 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_off],
14628 "Qbtrace:off", "disable-btrace", 0);
14629
14630 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_bts],
b20a6524
MM
14631 "Qbtrace:bts", "enable-btrace-bts", 0);
14632
14633 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_pt],
14634 "Qbtrace:pt", "enable-btrace-pt", 0);
9accd112
MM
14635
14636 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace],
14637 "qXfer:btrace", "read-btrace", 0);
14638
f4abbc16
MM
14639 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace_conf],
14640 "qXfer:btrace-conf", "read-btrace-conf", 0);
14641
d33501a5
MM
14642 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_bts_size],
14643 "Qbtrace-conf:bts:size", "btrace-conf-bts-size", 0);
14644
73b8c1fd
PA
14645 add_packet_config_cmd (&remote_protocol_packets[PACKET_multiprocess_feature],
14646 "multiprocess-feature", "multiprocess-feature", 0);
14647
f7e6eed5
PA
14648 add_packet_config_cmd (&remote_protocol_packets[PACKET_swbreak_feature],
14649 "swbreak-feature", "swbreak-feature", 0);
14650
14651 add_packet_config_cmd (&remote_protocol_packets[PACKET_hwbreak_feature],
14652 "hwbreak-feature", "hwbreak-feature", 0);
14653
89245bc0
DB
14654 add_packet_config_cmd (&remote_protocol_packets[PACKET_fork_event_feature],
14655 "fork-event-feature", "fork-event-feature", 0);
14656
14657 add_packet_config_cmd (&remote_protocol_packets[PACKET_vfork_event_feature],
14658 "vfork-event-feature", "vfork-event-feature", 0);
14659
b20a6524
MM
14660 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_pt_size],
14661 "Qbtrace-conf:pt:size", "btrace-conf-pt-size", 0);
14662
750ce8d1
YQ
14663 add_packet_config_cmd (&remote_protocol_packets[PACKET_vContSupported],
14664 "vContSupported", "verbose-resume-supported", 0);
14665
94585166
DB
14666 add_packet_config_cmd (&remote_protocol_packets[PACKET_exec_event_feature],
14667 "exec-event-feature", "exec-event-feature", 0);
14668
de979965
PA
14669 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCtrlC],
14670 "vCtrlC", "ctrl-c", 0);
14671
65706a29
PA
14672 add_packet_config_cmd (&remote_protocol_packets[PACKET_QThreadEvents],
14673 "QThreadEvents", "thread-events", 0);
14674
f2faf941
PA
14675 add_packet_config_cmd (&remote_protocol_packets[PACKET_no_resumed],
14676 "N stop reply", "no-resumed-stop-reply", 0);
14677
0b736949
DB
14678 /* Assert that we've registered "set remote foo-packet" commands
14679 for all packet configs. */
ca4f7f8b
PA
14680 {
14681 int i;
14682
14683 for (i = 0; i < PACKET_MAX; i++)
14684 {
14685 /* Ideally all configs would have a command associated. Some
14686 still don't though. */
14687 int excepted;
14688
14689 switch (i)
14690 {
14691 case PACKET_QNonStop:
ca4f7f8b
PA
14692 case PACKET_EnableDisableTracepoints_feature:
14693 case PACKET_tracenz_feature:
14694 case PACKET_DisconnectedTracing_feature:
14695 case PACKET_augmented_libraries_svr4_read_feature:
936d2992
PA
14696 case PACKET_qCRC:
14697 /* Additions to this list need to be well justified:
14698 pre-existing packets are OK; new packets are not. */
ca4f7f8b
PA
14699 excepted = 1;
14700 break;
14701 default:
14702 excepted = 0;
14703 break;
14704 }
14705
14706 /* This catches both forgetting to add a config command, and
14707 forgetting to remove a packet from the exception list. */
14708 gdb_assert (excepted == (remote_protocol_packets[i].name == NULL));
14709 }
14710 }
14711
37a105a1
DJ
14712 /* Keep the old ``set remote Z-packet ...'' working. Each individual
14713 Z sub-packet has its own set and show commands, but users may
14714 have sets to this variable in their .gdbinit files (or in their
14715 documentation). */
e9e68a56 14716 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
7915a72c
AC
14717 &remote_Z_packet_detect, _("\
14718Set use of remote protocol `Z' packets"), _("\
14719Show use of remote protocol `Z' packets "), _("\
3b64bf98 14720When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
7915a72c 14721packets."),
e9e68a56 14722 set_remote_protocol_Z_packet_cmd,
3e43a32a
MS
14723 show_remote_protocol_Z_packet_cmd,
14724 /* FIXME: i18n: Use of remote protocol
14725 `Z' packets is %s. */
e9e68a56 14726 &remote_set_cmdlist, &remote_show_cmdlist);
449092f6 14727
a6b151f1
DJ
14728 add_prefix_cmd ("remote", class_files, remote_command, _("\
14729Manipulate files on the remote system\n\
14730Transfer files to and from the remote target system."),
14731 &remote_cmdlist, "remote ",
14732 0 /* allow-unknown */, &cmdlist);
14733
14734 add_cmd ("put", class_files, remote_put_command,
14735 _("Copy a local file to the remote system."),
14736 &remote_cmdlist);
14737
14738 add_cmd ("get", class_files, remote_get_command,
14739 _("Copy a remote file to the local system."),
14740 &remote_cmdlist);
14741
14742 add_cmd ("delete", class_files, remote_delete_command,
14743 _("Delete a remote file."),
14744 &remote_cmdlist);
14745
2d717e4f 14746 add_setshow_string_noescape_cmd ("exec-file", class_files,
94585166 14747 &remote_exec_file_var, _("\
2d717e4f 14748Set the remote pathname for \"run\""), _("\
94585166
DB
14749Show the remote pathname for \"run\""), NULL,
14750 set_remote_exec_file,
14751 show_remote_exec_file,
14752 &remote_set_cmdlist,
14753 &remote_show_cmdlist);
2d717e4f 14754
c1e36e3e
PA
14755 add_setshow_boolean_cmd ("range-stepping", class_run,
14756 &use_range_stepping, _("\
14757Enable or disable range stepping."), _("\
14758Show whether target-assisted range stepping is enabled."), _("\
14759If on, and the target supports it, when stepping a source line, GDB\n\
14760tells the target to step the corresponding range of addresses itself instead\n\
14761of issuing multiple single-steps. This speeds up source level\n\
14762stepping. If off, GDB always issues single-steps, even if range\n\
14763stepping is supported by the target. The default is on."),
14764 set_range_stepping,
14765 show_range_stepping,
14766 &setlist,
14767 &showlist);
14768
ed2b7c17
TT
14769 add_setshow_zinteger_cmd ("watchdog", class_maintenance, &watchdog, _("\
14770Set watchdog timer."), _("\
14771Show watchdog timer."), _("\
14772When non-zero, this timeout is used instead of waiting forever for a target\n\
14773to finish a low-level step or continue operation. If the specified amount\n\
14774of time passes without a response from the target, an error occurs."),
14775 NULL,
14776 show_watchdog,
14777 &setlist, &showlist);
14778
449092f6
CV
14779 /* Eventually initialize fileio. See fileio.c */
14780 initialize_remote_fileio (remote_set_cmdlist, remote_show_cmdlist);
c906108c 14781}
This page took 3.817499 seconds and 4 git commands to generate.