[PR build/24886] disable glibc mcheck support
[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"
268a13a5
TT
45#include "gdbsupport/filestuff.h"
46#include "gdbsupport/rsp-low.h"
6b940e6a 47#include "disasm.h"
f00aae0f 48#include "location.h"
c906108c 49
268a13a5 50#include "gdbsupport/gdb_sys_time.h"
c906108c 51
43ff13b4 52#include "event-loop.h"
c2c6d25f 53#include "event-top.h"
2acceee2 54#include "inf-loop.h"
43ff13b4 55
c906108c
SS
56#include <signal.h>
57#include "serial.h"
58
6240bebf
MS
59#include "gdbcore.h" /* for exec_bfd */
60
449092f6 61#include "remote-fileio.h"
a6b151f1 62#include "gdb/fileio.h"
53ce3c39 63#include <sys/stat.h>
dc146f7c 64#include "xml-support.h"
449092f6 65
fd79ecee
DJ
66#include "memory-map.h"
67
35b1e5cc
SS
68#include "tracepoint.h"
69#include "ax.h"
70#include "ax-gdb.h"
268a13a5 71#include "gdbsupport/agent.h"
9accd112 72#include "btrace.h"
c0272db5 73#include "record-btrace.h"
325fac50 74#include <algorithm>
268a13a5
TT
75#include "gdbsupport/scoped_restore.h"
76#include "gdbsupport/environ.h"
77#include "gdbsupport/byte-vector.h"
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 669 int follow_fork (int, int) override;
4ca51187 670 void follow_exec (struct inferior *, const char *) override;
f6ac5f3d
PA
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 971/* Per-program-space data key. */
7b4a314f
TT
972static const struct program_space_key<char, gdb::xfree_deleter<char>>
973 remote_pspace_data;
2d717e4f 974
3c69da40
PA
975/* The variable registered as the control variable used by the
976 remote exec-file commands. While the remote exec-file setting is
977 per-program-space, the set/show machinery uses this as the
978 location of the remote exec-file value. */
979static char *remote_exec_file_var;
a6f3e723 980
3c69da40
PA
981/* The size to align memory write packets, when practical. The protocol
982 does not guarantee any alignment, and gdb will generate short
983 writes and unaligned writes, but even as a best-effort attempt this
984 can improve bulk transfers. For instance, if a write is misaligned
985 relative to the target's data bus, the stub may need to make an extra
986 round trip fetching data from the target. This doesn't make a
987 huge difference, but it's easy to do, so we try to be helpful.
82f73884 988
3c69da40
PA
989 The alignment chosen is arbitrary; usually data bus width is
990 important here, not the possibly larger cache line size. */
991enum { REMOTE_ALIGN_WRITES = 16 };
82f73884 992
3c69da40 993/* Prototypes for local functions. */
74531fed 994
3c69da40 995static int hexnumlen (ULONGEST num);
782b2b07 996
3c69da40 997static int stubhex (int ch);
5d93a237 998
3c69da40 999static int hexnumstr (char *, ULONGEST);
048094ac 1000
3c69da40 1001static int hexnumnstr (char *, ULONGEST, int);
47f8a51d 1002
3c69da40 1003static CORE_ADDR remote_address_masked (CORE_ADDR);
262e1174 1004
3c69da40 1005static void print_packet (const char *);
747dc59d 1006
3c69da40 1007static int stub_unpack_int (char *buff, int fieldlength);
5e4a05c4 1008
3c69da40 1009struct packet_config;
b73be471 1010
3c69da40 1011static void show_packet_config_cmd (struct packet_config *config);
280ceea3 1012
3c69da40
PA
1013static void show_remote_protocol_packet_cmd (struct ui_file *file,
1014 int from_tty,
1015 struct cmd_list_element *c,
1016 const char *value);
8e88304f 1017
3c69da40 1018static ptid_t read_ptid (const char *buf, const char **obuf);
3a00c802 1019
3c69da40 1020static void remote_async_inferior_event_handler (gdb_client_data);
b80fafe3 1021
eefce37f 1022static bool remote_read_description_p (struct target_ops *target);
88b496c3 1023
05be00a8 1024static void remote_console_output (const char *msg);
5965e028 1025
3c69da40 1026static void remote_btrace_reset (remote_state *rs);
f4abbc16 1027
3c69da40 1028static void remote_unpush_and_throw (void);
15a201c8 1029
3c69da40 1030/* For "remote". */
80152258 1031
3c69da40 1032static struct cmd_list_element *remote_cmdlist;
9d6eea31 1033
3c69da40 1034/* For "set remote" and "show remote". */
6b8edb51 1035
3c69da40
PA
1036static struct cmd_list_element *remote_set_cmdlist;
1037static struct cmd_list_element *remote_show_cmdlist;
6b8edb51 1038
3c69da40 1039/* Controls whether GDB is willing to use range stepping. */
6b8edb51 1040
3c69da40
PA
1041static int use_range_stepping = 1;
1042
1043/* The max number of chars in debug output. The rest of chars are
1044 omitted. */
1045
1046#define REMOTE_DEBUG_MAX_CHAR 512
ea9c271d 1047
7aabaf9d
SM
1048/* Private data that we'll store in (struct thread_info)->priv. */
1049struct remote_thread_info : public private_thread_info
dc146f7c 1050{
7aabaf9d
SM
1051 std::string extra;
1052 std::string name;
1053 int core = -1;
799a2abe 1054
f6327dcb
KB
1055 /* Thread handle, perhaps a pthread_t or thread_t value, stored as a
1056 sequence of bytes. */
7aabaf9d 1057 gdb::byte_vector thread_handle;
f6327dcb 1058
799a2abe 1059 /* Whether the target stopped for a breakpoint/watchpoint. */
7aabaf9d 1060 enum target_stop_reason stop_reason = TARGET_STOPPED_BY_NO_REASON;
799a2abe
PA
1061
1062 /* This is set to the data address of the access causing the target
1063 to stop for a watchpoint. */
7aabaf9d 1064 CORE_ADDR watch_data_address = 0;
85ad3aaf
PA
1065
1066 /* Fields used by the vCont action coalescing implemented in
1067 remote_resume / remote_commit_resume. remote_resume stores each
1068 thread's last resume request in these fields, so that a later
1069 remote_commit_resume knows which is the proper action for this
1070 thread to include in the vCont packet. */
1071
1072 /* True if the last target_resume call for this thread was a step
1073 request, false if a continue request. */
7aabaf9d 1074 int last_resume_step = 0;
85ad3aaf
PA
1075
1076 /* The signal specified in the last target_resume call for this
1077 thread. */
7aabaf9d 1078 gdb_signal last_resume_sig = GDB_SIGNAL_0;
85ad3aaf
PA
1079
1080 /* Whether this thread was already vCont-resumed on the remote
1081 side. */
7aabaf9d 1082 int vcont_resumed = 0;
dc146f7c
VP
1083};
1084
de44f5a7 1085remote_state::remote_state ()
8d64371b 1086 : buf (400)
de44f5a7 1087{
de44f5a7
PA
1088}
1089
1090remote_state::~remote_state ()
1091{
1092 xfree (this->last_pass_packet);
1093 xfree (this->last_program_signals_packet);
de44f5a7
PA
1094 xfree (this->finished_object);
1095 xfree (this->finished_annex);
cf792862
TT
1096}
1097
35b1e5cc
SS
1098/* Utility: generate error from an incoming stub packet. */
1099static void
1100trace_error (char *buf)
1101{
1102 if (*buf++ != 'E')
1103 return; /* not an error msg */
1104 switch (*buf)
1105 {
1106 case '1': /* malformed packet error */
1107 if (*++buf == '0') /* general case: */
1108 error (_("remote.c: error in outgoing packet."));
1109 else
1110 error (_("remote.c: error in outgoing packet at field #%ld."),
1111 strtol (buf, NULL, 16));
35b1e5cc
SS
1112 default:
1113 error (_("Target returns error code '%s'."), buf);
1114 }
1115}
1116
1117/* Utility: wait for reply from stub, while accepting "O" packets. */
b6bb3468 1118
6b8edb51
PA
1119char *
1120remote_target::remote_get_noisy_reply ()
35b1e5cc 1121{
b6bb3468
PA
1122 struct remote_state *rs = get_remote_state ();
1123
35b1e5cc
SS
1124 do /* Loop on reply from remote stub. */
1125 {
1126 char *buf;
a744cf53 1127
0df8b418 1128 QUIT; /* Allow user to bail out with ^C. */
8d64371b
TT
1129 getpkt (&rs->buf, 0);
1130 buf = rs->buf.data ();
ad91cd99 1131 if (buf[0] == 'E')
35b1e5cc 1132 trace_error (buf);
61012eef 1133 else if (startswith (buf, "qRelocInsn:"))
dde08ee1
PA
1134 {
1135 ULONGEST ul;
1136 CORE_ADDR from, to, org_to;
256642e8 1137 const char *p, *pp;
dde08ee1 1138 int adjusted_size = 0;
7556d4a4 1139 int relocated = 0;
dde08ee1
PA
1140
1141 p = buf + strlen ("qRelocInsn:");
1142 pp = unpack_varlen_hex (p, &ul);
1143 if (*pp != ';')
cb91c06a 1144 error (_("invalid qRelocInsn packet: %s"), buf);
dde08ee1
PA
1145 from = ul;
1146
1147 p = pp + 1;
a9cbf802 1148 unpack_varlen_hex (p, &ul);
dde08ee1
PA
1149 to = ul;
1150
1151 org_to = to;
1152
a70b8144 1153 try
dde08ee1 1154 {
f5656ead 1155 gdbarch_relocate_instruction (target_gdbarch (), &to, from);
7556d4a4 1156 relocated = 1;
dde08ee1 1157 }
230d2906 1158 catch (const gdb_exception &ex)
7556d4a4
PA
1159 {
1160 if (ex.error == MEMORY_ERROR)
1161 {
1162 /* Propagate memory errors silently back to the
1163 target. The stub may have limited the range of
1164 addresses we can write to, for example. */
1165 }
1166 else
1167 {
1168 /* Something unexpectedly bad happened. Be verbose
1169 so we can tell what, and propagate the error back
1170 to the stub, so it doesn't get stuck waiting for
1171 a response. */
1172 exception_fprintf (gdb_stderr, ex,
1173 _("warning: relocating instruction: "));
1174 }
1175 putpkt ("E01");
1176 }
1177
1178 if (relocated)
dde08ee1
PA
1179 {
1180 adjusted_size = to - org_to;
1181
8d64371b 1182 xsnprintf (buf, rs->buf.size (), "qRelocInsn:%x", adjusted_size);
dde08ee1
PA
1183 putpkt (buf);
1184 }
dde08ee1 1185 }
ad91cd99 1186 else if (buf[0] == 'O' && buf[1] != 'K')
35b1e5cc
SS
1187 remote_console_output (buf + 1); /* 'O' message from stub */
1188 else
0df8b418 1189 return buf; /* Here's the actual reply. */
35b1e5cc
SS
1190 }
1191 while (1);
1192}
3c3bea1c 1193
9d6eea31
PA
1194struct remote_arch_state *
1195remote_state::get_remote_arch_state (struct gdbarch *gdbarch)
d01949b6 1196{
43c3a0e4
PA
1197 remote_arch_state *rsa;
1198
1199 auto it = this->m_arch_states.find (gdbarch);
1200 if (it == this->m_arch_states.end ())
9d6eea31 1201 {
43c3a0e4
PA
1202 auto p = this->m_arch_states.emplace (std::piecewise_construct,
1203 std::forward_as_tuple (gdbarch),
1204 std::forward_as_tuple (gdbarch));
1205 rsa = &p.first->second;
9d6eea31
PA
1206
1207 /* Make sure that the packet buffer is plenty big enough for
1208 this architecture. */
8d64371b
TT
1209 if (this->buf.size () < rsa->remote_packet_size)
1210 this->buf.resize (2 * rsa->remote_packet_size);
9d6eea31 1211 }
43c3a0e4
PA
1212 else
1213 rsa = &it->second;
1214
1215 return rsa;
d01949b6
AC
1216}
1217
0b83947e
DJ
1218/* Fetch the global remote target state. */
1219
6b8edb51
PA
1220remote_state *
1221remote_target::get_remote_state ()
0b83947e
DJ
1222{
1223 /* Make sure that the remote architecture state has been
1224 initialized, because doing so might reallocate rs->buf. Any
1225 function which calls getpkt also needs to be mindful of changes
1226 to rs->buf, but this call limits the number of places which run
1227 into trouble. */
3c69da40 1228 m_remote_state.get_remote_arch_state (target_gdbarch ());
0b83947e 1229
3c69da40 1230 return &m_remote_state;
0b83947e
DJ
1231}
1232
94585166
DB
1233/* Fetch the remote exec-file from the current program space. */
1234
1235static const char *
1236get_remote_exec_file (void)
1237{
1238 char *remote_exec_file;
1239
7b4a314f 1240 remote_exec_file = remote_pspace_data.get (current_program_space);
94585166
DB
1241 if (remote_exec_file == NULL)
1242 return "";
1243
1244 return remote_exec_file;
1245}
1246
1247/* Set the remote exec file for PSPACE. */
1248
1249static void
1250set_pspace_remote_exec_file (struct program_space *pspace,
7b4a314f 1251 const char *remote_exec_file)
94585166 1252{
7b4a314f 1253 char *old_file = remote_pspace_data.get (pspace);
94585166
DB
1254
1255 xfree (old_file);
7b4a314f 1256 remote_pspace_data.set (pspace, xstrdup (remote_exec_file));
94585166
DB
1257}
1258
1259/* The "set/show remote exec-file" set command hook. */
1260
1261static void
eb4c3f4a 1262set_remote_exec_file (const char *ignored, int from_tty,
94585166
DB
1263 struct cmd_list_element *c)
1264{
1265 gdb_assert (remote_exec_file_var != NULL);
1266 set_pspace_remote_exec_file (current_program_space, remote_exec_file_var);
1267}
1268
1269/* The "set/show remote exec-file" show command hook. */
1270
1271static void
1272show_remote_exec_file (struct ui_file *file, int from_tty,
1273 struct cmd_list_element *cmd, const char *value)
1274{
1275 fprintf_filtered (file, "%s\n", remote_exec_file_var);
1276}
1277
74ca34ce
DJ
1278static int
1279compare_pnums (const void *lhs_, const void *rhs_)
1280{
19ba03f4
SM
1281 const struct packet_reg * const *lhs
1282 = (const struct packet_reg * const *) lhs_;
1283 const struct packet_reg * const *rhs
1284 = (const struct packet_reg * const *) rhs_;
74ca34ce
DJ
1285
1286 if ((*lhs)->pnum < (*rhs)->pnum)
1287 return -1;
1288 else if ((*lhs)->pnum == (*rhs)->pnum)
1289 return 0;
1290 else
1291 return 1;
1292}
1293
c21236dc
PA
1294static int
1295map_regcache_remote_table (struct gdbarch *gdbarch, struct packet_reg *regs)
d01949b6 1296{
74ca34ce 1297 int regnum, num_remote_regs, offset;
74ca34ce 1298 struct packet_reg **remote_regs;
ea9c271d 1299
4a22f64d 1300 for (regnum = 0; regnum < gdbarch_num_regs (gdbarch); regnum++)
ad10f812 1301 {
c21236dc 1302 struct packet_reg *r = &regs[regnum];
baef701f 1303
4a22f64d 1304 if (register_size (gdbarch, regnum) == 0)
baef701f
DJ
1305 /* Do not try to fetch zero-sized (placeholder) registers. */
1306 r->pnum = -1;
1307 else
1308 r->pnum = gdbarch_remote_register_number (gdbarch, regnum);
1309
b323314b 1310 r->regnum = regnum;
74ca34ce
DJ
1311 }
1312
1313 /* Define the g/G packet format as the contents of each register
1314 with a remote protocol number, in order of ascending protocol
1315 number. */
1316
224c3ddb 1317 remote_regs = XALLOCAVEC (struct packet_reg *, gdbarch_num_regs (gdbarch));
f57d151a 1318 for (num_remote_regs = 0, regnum = 0;
4a22f64d 1319 regnum < gdbarch_num_regs (gdbarch);
f57d151a 1320 regnum++)
c21236dc
PA
1321 if (regs[regnum].pnum != -1)
1322 remote_regs[num_remote_regs++] = &regs[regnum];
7d58c67d 1323
74ca34ce
DJ
1324 qsort (remote_regs, num_remote_regs, sizeof (struct packet_reg *),
1325 compare_pnums);
1326
1327 for (regnum = 0, offset = 0; regnum < num_remote_regs; regnum++)
1328 {
1329 remote_regs[regnum]->in_g_packet = 1;
1330 remote_regs[regnum]->offset = offset;
4a22f64d 1331 offset += register_size (gdbarch, remote_regs[regnum]->regnum);
ad10f812
AC
1332 }
1333
c21236dc
PA
1334 return offset;
1335}
1336
1337/* Given the architecture described by GDBARCH, return the remote
1338 protocol register's number and the register's offset in the g/G
1339 packets of GDB register REGNUM, in PNUM and POFFSET respectively.
1340 If the target does not have a mapping for REGNUM, return false,
1341 otherwise, return true. */
1342
1343int
1344remote_register_number_and_offset (struct gdbarch *gdbarch, int regnum,
1345 int *pnum, int *poffset)
1346{
c21236dc
PA
1347 gdb_assert (regnum < gdbarch_num_regs (gdbarch));
1348
b80406ac 1349 std::vector<packet_reg> regs (gdbarch_num_regs (gdbarch));
c21236dc 1350
b80406ac 1351 map_regcache_remote_table (gdbarch, regs.data ());
c21236dc
PA
1352
1353 *pnum = regs[regnum].pnum;
1354 *poffset = regs[regnum].offset;
1355
c21236dc
PA
1356 return *pnum != -1;
1357}
1358
9d6eea31 1359remote_arch_state::remote_arch_state (struct gdbarch *gdbarch)
c21236dc 1360{
c21236dc
PA
1361 /* Use the architecture to build a regnum<->pnum table, which will be
1362 1:1 unless a feature set specifies otherwise. */
9d6eea31 1363 this->regs.reset (new packet_reg [gdbarch_num_regs (gdbarch)] ());
c21236dc 1364
74ca34ce
DJ
1365 /* Record the maximum possible size of the g packet - it may turn out
1366 to be smaller. */
9d6eea31
PA
1367 this->sizeof_g_packet
1368 = map_regcache_remote_table (gdbarch, this->regs.get ());
74ca34ce 1369
0df8b418 1370 /* Default maximum number of characters in a packet body. Many
d01949b6
AC
1371 remote stubs have a hardwired buffer size of 400 bytes
1372 (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
1373 as the maximum packet-size to ensure that the packet and an extra
1374 NUL character can always fit in the buffer. This stops GDB
1375 trashing stubs that try to squeeze an extra NUL into what is
ea9c271d 1376 already a full buffer (As of 1999-12-04 that was most stubs). */
9d6eea31 1377 this->remote_packet_size = 400 - 1;
d01949b6 1378
ea9c271d 1379 /* This one is filled in when a ``g'' packet is received. */
9d6eea31 1380 this->actual_register_packet_size = 0;
ea9c271d
DJ
1381
1382 /* Should rsa->sizeof_g_packet needs more space than the
0df8b418
MS
1383 default, adjust the size accordingly. Remember that each byte is
1384 encoded as two characters. 32 is the overhead for the packet
1385 header / footer. NOTE: cagney/1999-10-26: I suspect that 8
d01949b6 1386 (``$NN:G...#NN'') is a better guess, the below has been padded a
23860348 1387 little. */
9d6eea31
PA
1388 if (this->sizeof_g_packet > ((this->remote_packet_size - 32) / 2))
1389 this->remote_packet_size = (this->sizeof_g_packet * 2 + 32);
ea9c271d
DJ
1390}
1391
6b8edb51
PA
1392/* Get a pointer to the current remote target. If not connected to a
1393 remote target, return NULL. */
1394
1395static remote_target *
1396get_current_remote_target ()
1397{
1398 target_ops *proc_target = find_target_at (process_stratum);
1399 return dynamic_cast<remote_target *> (proc_target);
1400}
1401
ea9c271d
DJ
1402/* Return the current allowed size of a remote packet. This is
1403 inferred from the current architecture, and should be used to
1404 limit the length of outgoing packets. */
6b8edb51
PA
1405long
1406remote_target::get_remote_packet_size ()
ea9c271d 1407{
be2a5f71 1408 struct remote_state *rs = get_remote_state ();
9d6eea31 1409 remote_arch_state *rsa = rs->get_remote_arch_state (target_gdbarch ());
ea9c271d 1410
be2a5f71
DJ
1411 if (rs->explicit_packet_size)
1412 return rs->explicit_packet_size;
1413
ea9c271d 1414 return rsa->remote_packet_size;
d01949b6
AC
1415}
1416
ad10f812 1417static struct packet_reg *
5cd63fda
PA
1418packet_reg_from_regnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
1419 long regnum)
ad10f812 1420{
5cd63fda 1421 if (regnum < 0 && regnum >= gdbarch_num_regs (gdbarch))
b323314b
AC
1422 return NULL;
1423 else
ad10f812 1424 {
ea9c271d 1425 struct packet_reg *r = &rsa->regs[regnum];
a744cf53 1426
b323314b
AC
1427 gdb_assert (r->regnum == regnum);
1428 return r;
ad10f812 1429 }
ad10f812
AC
1430}
1431
1432static struct packet_reg *
5cd63fda
PA
1433packet_reg_from_pnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
1434 LONGEST pnum)
ad10f812 1435{
b323314b 1436 int i;
a744cf53 1437
5cd63fda 1438 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
ad10f812 1439 {
ea9c271d 1440 struct packet_reg *r = &rsa->regs[i];
a744cf53 1441
b323314b
AC
1442 if (r->pnum == pnum)
1443 return r;
ad10f812
AC
1444 }
1445 return NULL;
d01949b6
AC
1446}
1447
9a7071a8
JB
1448/* Allow the user to specify what sequence to send to the remote
1449 when he requests a program interruption: Although ^C is usually
1450 what remote systems expect (this is the default, here), it is
1451 sometimes preferable to send a break. On other systems such
1452 as the Linux kernel, a break followed by g, which is Magic SysRq g
1453 is required in order to interrupt the execution. */
1454const char interrupt_sequence_control_c[] = "Ctrl-C";
1455const char interrupt_sequence_break[] = "BREAK";
1456const char interrupt_sequence_break_g[] = "BREAK-g";
40478521 1457static const char *const interrupt_sequence_modes[] =
9a7071a8
JB
1458 {
1459 interrupt_sequence_control_c,
1460 interrupt_sequence_break,
1461 interrupt_sequence_break_g,
1462 NULL
1463 };
1464static const char *interrupt_sequence_mode = interrupt_sequence_control_c;
1465
1466static void
1467show_interrupt_sequence (struct ui_file *file, int from_tty,
1468 struct cmd_list_element *c,
1469 const char *value)
1470{
1471 if (interrupt_sequence_mode == interrupt_sequence_control_c)
1472 fprintf_filtered (file,
1473 _("Send the ASCII ETX character (Ctrl-c) "
1474 "to the remote target to interrupt the "
1475 "execution of the program.\n"));
1476 else if (interrupt_sequence_mode == interrupt_sequence_break)
1477 fprintf_filtered (file,
1478 _("send a break signal to the remote target "
1479 "to interrupt the execution of the program.\n"));
1480 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
1481 fprintf_filtered (file,
1482 _("Send a break signal and 'g' a.k.a. Magic SysRq g to "
1483 "the remote target to interrupt the execution "
1484 "of Linux kernel.\n"));
1485 else
1486 internal_error (__FILE__, __LINE__,
1487 _("Invalid value for interrupt_sequence_mode: %s."),
1488 interrupt_sequence_mode);
1489}
6426a772 1490
9a7071a8
JB
1491/* This boolean variable specifies whether interrupt_sequence is sent
1492 to the remote target when gdb connects to it.
1493 This is mostly needed when you debug the Linux kernel: The Linux kernel
1494 expects BREAK g which is Magic SysRq g for connecting gdb. */
1495static int interrupt_on_connect = 0;
c906108c 1496
9a7071a8
JB
1497/* This variable is used to implement the "set/show remotebreak" commands.
1498 Since these commands are now deprecated in favor of "set/show remote
1499 interrupt-sequence", it no longer has any effect on the code. */
c906108c
SS
1500static int remote_break;
1501
9a7071a8 1502static void
eb4c3f4a 1503set_remotebreak (const char *args, int from_tty, struct cmd_list_element *c)
9a7071a8
JB
1504{
1505 if (remote_break)
1506 interrupt_sequence_mode = interrupt_sequence_break;
1507 else
1508 interrupt_sequence_mode = interrupt_sequence_control_c;
1509}
1510
1511static void
1512show_remotebreak (struct ui_file *file, int from_tty,
1513 struct cmd_list_element *c,
1514 const char *value)
1515{
1516}
1517
c906108c
SS
1518/* This variable sets the number of bits in an address that are to be
1519 sent in a memory ("M" or "m") packet. Normally, after stripping
0df8b418 1520 leading zeros, the entire address would be sent. This variable
c906108c
SS
1521 restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
1522 initial implementation of remote.c restricted the address sent in
1523 memory packets to ``host::sizeof long'' bytes - (typically 32
1524 bits). Consequently, for 64 bit targets, the upper 32 bits of an
1525 address was never sent. Since fixing this bug may cause a break in
1526 some remote targets this variable is principly provided to
23860348 1527 facilitate backward compatibility. */
c906108c 1528
883b9c6c 1529static unsigned int remote_address_size;
c906108c 1530
11cf8741 1531\f
11cf8741 1532/* User configurable variables for the number of characters in a
ea9c271d
DJ
1533 memory read/write packet. MIN (rsa->remote_packet_size,
1534 rsa->sizeof_g_packet) is the default. Some targets need smaller
24b06219 1535 values (fifo overruns, et.al.) and some users need larger values
ad10f812
AC
1536 (speed up transfers). The variables ``preferred_*'' (the user
1537 request), ``current_*'' (what was actually set) and ``forced_*''
23860348 1538 (Positive - a soft limit, negative - a hard limit). */
11cf8741
JM
1539
1540struct memory_packet_config
1541{
a121b7c1 1542 const char *name;
11cf8741
JM
1543 long size;
1544 int fixed_p;
1545};
1546
cc0be08f
PA
1547/* The default max memory-write-packet-size, when the setting is
1548 "fixed". The 16k is historical. (It came from older GDB's using
1549 alloca for buffers and the knowledge (folklore?) that some hosts
1550 don't cope very well with large alloca calls.) */
1551#define DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED 16384
a5c0808e
PA
1552
1553/* The minimum remote packet size for memory transfers. Ensures we
1554 can write at least one byte. */
1555#define MIN_MEMORY_PACKET_SIZE 20
1556
cc0be08f
PA
1557/* Get the memory packet size, assuming it is fixed. */
1558
1559static long
1560get_fixed_memory_packet_size (struct memory_packet_config *config)
1561{
1562 gdb_assert (config->fixed_p);
1563
1564 if (config->size <= 0)
1565 return DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED;
1566 else
1567 return config->size;
1568}
1569
11cf8741
JM
1570/* Compute the current size of a read/write packet. Since this makes
1571 use of ``actual_register_packet_size'' the computation is dynamic. */
1572
6b8edb51
PA
1573long
1574remote_target::get_memory_packet_size (struct memory_packet_config *config)
11cf8741 1575{
d01949b6 1576 struct remote_state *rs = get_remote_state ();
9d6eea31 1577 remote_arch_state *rsa = rs->get_remote_arch_state (target_gdbarch ());
ea9c271d 1578
11cf8741
JM
1579 long what_they_get;
1580 if (config->fixed_p)
cc0be08f 1581 what_they_get = get_fixed_memory_packet_size (config);
11cf8741
JM
1582 else
1583 {
ea9c271d 1584 what_they_get = get_remote_packet_size ();
23860348 1585 /* Limit the packet to the size specified by the user. */
11cf8741
JM
1586 if (config->size > 0
1587 && what_they_get > config->size)
1588 what_they_get = config->size;
be2a5f71
DJ
1589
1590 /* Limit it to the size of the targets ``g'' response unless we have
1591 permission from the stub to use a larger packet size. */
1592 if (rs->explicit_packet_size == 0
1593 && rsa->actual_register_packet_size > 0
1594 && what_they_get > rsa->actual_register_packet_size)
1595 what_they_get = rsa->actual_register_packet_size;
11cf8741 1596 }
a5c0808e
PA
1597 if (what_they_get < MIN_MEMORY_PACKET_SIZE)
1598 what_they_get = MIN_MEMORY_PACKET_SIZE;
6d820c5c
DJ
1599
1600 /* Make sure there is room in the global buffer for this packet
1601 (including its trailing NUL byte). */
8d64371b
TT
1602 if (rs->buf.size () < what_they_get + 1)
1603 rs->buf.resize (2 * what_they_get);
6d820c5c 1604
11cf8741
JM
1605 return what_they_get;
1606}
1607
0df8b418 1608/* Update the size of a read/write packet. If they user wants
23860348 1609 something really big then do a sanity check. */
11cf8741
JM
1610
1611static void
ac88e2de 1612set_memory_packet_size (const char *args, struct memory_packet_config *config)
11cf8741
JM
1613{
1614 int fixed_p = config->fixed_p;
1615 long size = config->size;
a744cf53 1616
11cf8741 1617 if (args == NULL)
8a3fe4f8 1618 error (_("Argument required (integer, `fixed' or `limited')."));
11cf8741
JM
1619 else if (strcmp (args, "hard") == 0
1620 || strcmp (args, "fixed") == 0)
1621 fixed_p = 1;
1622 else if (strcmp (args, "soft") == 0
1623 || strcmp (args, "limit") == 0)
1624 fixed_p = 0;
1625 else
1626 {
1627 char *end;
a744cf53 1628
11cf8741
JM
1629 size = strtoul (args, &end, 0);
1630 if (args == end)
8a3fe4f8 1631 error (_("Invalid %s (bad syntax)."), config->name);
a5c0808e
PA
1632
1633 /* Instead of explicitly capping the size of a packet to or
1634 disallowing it, the user is allowed to set the size to
1635 something arbitrarily large. */
11cf8741 1636 }
a5c0808e 1637
23860348 1638 /* Extra checks? */
11cf8741
JM
1639 if (fixed_p && !config->fixed_p)
1640 {
cc0be08f
PA
1641 /* So that the query shows the correct value. */
1642 long query_size = (size <= 0
1643 ? DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED
1644 : size);
1645
e2e0b3e5
AC
1646 if (! query (_("The target may not be able to correctly handle a %s\n"
1647 "of %ld bytes. Change the packet size? "),
cc0be08f 1648 config->name, query_size))
8a3fe4f8 1649 error (_("Packet size not changed."));
11cf8741 1650 }
23860348 1651 /* Update the config. */
11cf8741
JM
1652 config->fixed_p = fixed_p;
1653 config->size = size;
1654}
1655
1656static void
1657show_memory_packet_size (struct memory_packet_config *config)
1658{
cc0be08f
PA
1659 if (config->size == 0)
1660 printf_filtered (_("The %s is 0 (default). "), config->name);
1661 else
1662 printf_filtered (_("The %s is %ld. "), config->name, config->size);
11cf8741 1663 if (config->fixed_p)
a3f17187 1664 printf_filtered (_("Packets are fixed at %ld bytes.\n"),
cc0be08f 1665 get_fixed_memory_packet_size (config));
11cf8741 1666 else
cc0be08f 1667 {
6b8edb51 1668 remote_target *remote = get_current_remote_target ();
cc0be08f 1669
6b8edb51 1670 if (remote != NULL)
cc0be08f 1671 printf_filtered (_("Packets are limited to %ld bytes.\n"),
6b8edb51 1672 remote->get_memory_packet_size (config));
cc0be08f
PA
1673 else
1674 puts_filtered ("The actual limit will be further reduced "
1675 "dependent on the target.\n");
1676 }
11cf8741
JM
1677}
1678
1679static struct memory_packet_config memory_write_packet_config =
1680{
1681 "memory-write-packet-size",
1682};
1683
1684static void
ac88e2de 1685set_memory_write_packet_size (const char *args, int from_tty)
11cf8741
JM
1686{
1687 set_memory_packet_size (args, &memory_write_packet_config);
1688}
1689
1690static void
ac88e2de 1691show_memory_write_packet_size (const char *args, int from_tty)
11cf8741
JM
1692{
1693 show_memory_packet_size (&memory_write_packet_config);
1694}
1695
055303e2
AB
1696/* Show the number of hardware watchpoints that can be used. */
1697
1698static void
1699show_hardware_watchpoint_limit (struct ui_file *file, int from_tty,
1700 struct cmd_list_element *c,
1701 const char *value)
1702{
1703 fprintf_filtered (file, _("The maximum number of target hardware "
1704 "watchpoints is %s.\n"), value);
1705}
1706
1707/* Show the length limit (in bytes) for hardware watchpoints. */
1708
1709static void
1710show_hardware_watchpoint_length_limit (struct ui_file *file, int from_tty,
1711 struct cmd_list_element *c,
1712 const char *value)
1713{
1714 fprintf_filtered (file, _("The maximum length (in bytes) of a target "
1715 "hardware watchpoint is %s.\n"), value);
1716}
1717
1718/* Show the number of hardware breakpoints that can be used. */
1719
1720static void
1721show_hardware_breakpoint_limit (struct ui_file *file, int from_tty,
1722 struct cmd_list_element *c,
1723 const char *value)
1724{
1725 fprintf_filtered (file, _("The maximum number of target hardware "
1726 "breakpoints is %s.\n"), value);
1727}
1728
6b8edb51
PA
1729long
1730remote_target::get_memory_write_packet_size ()
11cf8741
JM
1731{
1732 return get_memory_packet_size (&memory_write_packet_config);
1733}
1734
1735static struct memory_packet_config memory_read_packet_config =
1736{
1737 "memory-read-packet-size",
1738};
1739
1740static void
ac88e2de 1741set_memory_read_packet_size (const char *args, int from_tty)
11cf8741
JM
1742{
1743 set_memory_packet_size (args, &memory_read_packet_config);
1744}
1745
1746static void
ac88e2de 1747show_memory_read_packet_size (const char *args, int from_tty)
11cf8741
JM
1748{
1749 show_memory_packet_size (&memory_read_packet_config);
1750}
1751
6b8edb51
PA
1752long
1753remote_target::get_memory_read_packet_size ()
11cf8741
JM
1754{
1755 long size = get_memory_packet_size (&memory_read_packet_config);
a744cf53 1756
11cf8741
JM
1757 /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
1758 extra buffer size argument before the memory read size can be
ea9c271d
DJ
1759 increased beyond this. */
1760 if (size > get_remote_packet_size ())
1761 size = get_remote_packet_size ();
11cf8741
JM
1762 return size;
1763}
1764
11cf8741 1765\f
5a2468f5 1766
5a2468f5
JM
1767struct packet_config
1768 {
bb572ddd
DJ
1769 const char *name;
1770 const char *title;
4082afcc
PA
1771
1772 /* If auto, GDB auto-detects support for this packet or feature,
1773 either through qSupported, or by trying the packet and looking
1774 at the response. If true, GDB assumes the target supports this
ca4f7f8b
PA
1775 packet. If false, the packet is disabled. Configs that don't
1776 have an associated command always have this set to auto. */
7f19b9a2 1777 enum auto_boolean detect;
4082afcc
PA
1778
1779 /* Does the target support this packet? */
5a2468f5
JM
1780 enum packet_support support;
1781 };
1782
4082afcc
PA
1783static enum packet_support packet_config_support (struct packet_config *config);
1784static enum packet_support packet_support (int packet);
5a2468f5
JM
1785
1786static void
fba45db2 1787show_packet_config_cmd (struct packet_config *config)
5a2468f5 1788{
a121b7c1 1789 const char *support = "internal-error";
a744cf53 1790
4082afcc 1791 switch (packet_config_support (config))
5a2468f5
JM
1792 {
1793 case PACKET_ENABLE:
1794 support = "enabled";
1795 break;
1796 case PACKET_DISABLE:
1797 support = "disabled";
1798 break;
1799 case PACKET_SUPPORT_UNKNOWN:
1800 support = "unknown";
1801 break;
1802 }
1803 switch (config->detect)
1804 {
7f19b9a2 1805 case AUTO_BOOLEAN_AUTO:
3e43a32a
MS
1806 printf_filtered (_("Support for the `%s' packet "
1807 "is auto-detected, currently %s.\n"),
37a105a1 1808 config->name, support);
5a2468f5 1809 break;
7f19b9a2
AC
1810 case AUTO_BOOLEAN_TRUE:
1811 case AUTO_BOOLEAN_FALSE:
37a105a1
DJ
1812 printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
1813 config->name, support);
8e248173 1814 break;
5a2468f5
JM
1815 }
1816}
1817
1818static void
bb572ddd
DJ
1819add_packet_config_cmd (struct packet_config *config, const char *name,
1820 const char *title, int legacy)
d471ea57 1821{
5a2468f5
JM
1822 char *set_doc;
1823 char *show_doc;
d471ea57 1824 char *cmd_name;
3ed07be4 1825
5a2468f5
JM
1826 config->name = name;
1827 config->title = title;
b435e160
AC
1828 set_doc = xstrprintf ("Set use of remote protocol `%s' (%s) packet",
1829 name, title);
3e43a32a
MS
1830 show_doc = xstrprintf ("Show current use of remote "
1831 "protocol `%s' (%s) packet",
b435e160 1832 name, title);
d471ea57 1833 /* set/show TITLE-packet {auto,on,off} */
b435e160 1834 cmd_name = xstrprintf ("%s-packet", title);
e9e68a56 1835 add_setshow_auto_boolean_cmd (cmd_name, class_obscure,
3e43a32a
MS
1836 &config->detect, set_doc,
1837 show_doc, NULL, /* help_doc */
4082afcc 1838 NULL,
bb572ddd
DJ
1839 show_remote_protocol_packet_cmd,
1840 &remote_set_cmdlist, &remote_show_cmdlist);
1eefb858
TT
1841 /* The command code copies the documentation strings. */
1842 xfree (set_doc);
1843 xfree (show_doc);
23860348 1844 /* set/show remote NAME-packet {auto,on,off} -- legacy. */
d471ea57
AC
1845 if (legacy)
1846 {
1847 char *legacy_name;
a744cf53 1848
b435e160 1849 legacy_name = xstrprintf ("%s-packet", name);
d471ea57 1850 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
bb572ddd 1851 &remote_set_cmdlist);
d471ea57 1852 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
bb572ddd 1853 &remote_show_cmdlist);
d471ea57 1854 }
5a2468f5
JM
1855}
1856
d471ea57 1857static enum packet_result
a76d924d 1858packet_check_result (const char *buf)
5a2468f5 1859{
d471ea57 1860 if (buf[0] != '\0')
5a2468f5 1861 {
d471ea57 1862 /* The stub recognized the packet request. Check that the
23860348 1863 operation succeeded. */
a76d924d
DJ
1864 if (buf[0] == 'E'
1865 && isxdigit (buf[1]) && isxdigit (buf[2])
1866 && buf[3] == '\0')
1867 /* "Enn" - definitly an error. */
1868 return PACKET_ERROR;
1869
1870 /* Always treat "E." as an error. This will be used for
1871 more verbose error messages, such as E.memtypes. */
1872 if (buf[0] == 'E' && buf[1] == '.')
1873 return PACKET_ERROR;
1874
1875 /* The packet may or may not be OK. Just assume it is. */
1876 return PACKET_OK;
1877 }
1878 else
1879 /* The stub does not support the packet. */
1880 return PACKET_UNKNOWN;
1881}
1882
8d64371b
TT
1883static enum packet_result
1884packet_check_result (const gdb::char_vector &buf)
1885{
1886 return packet_check_result (buf.data ());
1887}
1888
a76d924d
DJ
1889static enum packet_result
1890packet_ok (const char *buf, struct packet_config *config)
1891{
1892 enum packet_result result;
1893
4082afcc
PA
1894 if (config->detect != AUTO_BOOLEAN_TRUE
1895 && config->support == PACKET_DISABLE)
1896 internal_error (__FILE__, __LINE__,
1897 _("packet_ok: attempt to use a disabled packet"));
1898
a76d924d
DJ
1899 result = packet_check_result (buf);
1900 switch (result)
1901 {
1902 case PACKET_OK:
1903 case PACKET_ERROR:
1904 /* The stub recognized the packet request. */
4082afcc 1905 if (config->support == PACKET_SUPPORT_UNKNOWN)
d471ea57 1906 {
d471ea57
AC
1907 if (remote_debug)
1908 fprintf_unfiltered (gdb_stdlog,
4082afcc
PA
1909 "Packet %s (%s) is supported\n",
1910 config->name, config->title);
d471ea57 1911 config->support = PACKET_ENABLE;
d471ea57 1912 }
a76d924d
DJ
1913 break;
1914 case PACKET_UNKNOWN:
23860348 1915 /* The stub does not support the packet. */
4082afcc
PA
1916 if (config->detect == AUTO_BOOLEAN_AUTO
1917 && config->support == PACKET_ENABLE)
d471ea57 1918 {
4082afcc
PA
1919 /* If the stub previously indicated that the packet was
1920 supported then there is a protocol error. */
1921 error (_("Protocol error: %s (%s) conflicting enabled responses."),
1922 config->name, config->title);
1923 }
1924 else if (config->detect == AUTO_BOOLEAN_TRUE)
1925 {
1926 /* The user set it wrong. */
1927 error (_("Enabled packet %s (%s) not recognized by stub"),
1928 config->name, config->title);
d471ea57 1929 }
4082afcc
PA
1930
1931 if (remote_debug)
1932 fprintf_unfiltered (gdb_stdlog,
1933 "Packet %s (%s) is NOT supported\n",
1934 config->name, config->title);
1935 config->support = PACKET_DISABLE;
a76d924d 1936 break;
5a2468f5 1937 }
a76d924d
DJ
1938
1939 return result;
5a2468f5
JM
1940}
1941
8d64371b
TT
1942static enum packet_result
1943packet_ok (const gdb::char_vector &buf, struct packet_config *config)
1944{
1945 return packet_ok (buf.data (), config);
1946}
1947
444abaca
DJ
1948enum {
1949 PACKET_vCont = 0,
1950 PACKET_X,
1951 PACKET_qSymbol,
1952 PACKET_P,
1953 PACKET_p,
1954 PACKET_Z0,
1955 PACKET_Z1,
1956 PACKET_Z2,
1957 PACKET_Z3,
1958 PACKET_Z4,
15a201c8 1959 PACKET_vFile_setfs,
a6b151f1
DJ
1960 PACKET_vFile_open,
1961 PACKET_vFile_pread,
1962 PACKET_vFile_pwrite,
1963 PACKET_vFile_close,
1964 PACKET_vFile_unlink,
b9e7b9c3 1965 PACKET_vFile_readlink,
0a93529c 1966 PACKET_vFile_fstat,
0876f84a 1967 PACKET_qXfer_auxv,
23181151 1968 PACKET_qXfer_features,
c78fa86a 1969 PACKET_qXfer_exec_file,
cfa9d6d9 1970 PACKET_qXfer_libraries,
2268b414 1971 PACKET_qXfer_libraries_svr4,
fd79ecee 1972 PACKET_qXfer_memory_map,
0e7f50da
UW
1973 PACKET_qXfer_spu_read,
1974 PACKET_qXfer_spu_write,
07e059b5 1975 PACKET_qXfer_osdata,
dc146f7c 1976 PACKET_qXfer_threads,
0fb4aa4b 1977 PACKET_qXfer_statictrace_read,
b3b9301e 1978 PACKET_qXfer_traceframe_info,
169081d0 1979 PACKET_qXfer_uib,
711e434b 1980 PACKET_qGetTIBAddr,
444abaca 1981 PACKET_qGetTLSAddr,
be2a5f71 1982 PACKET_qSupported,
bd3eecc3 1983 PACKET_qTStatus,
89be2091 1984 PACKET_QPassSignals,
82075af2 1985 PACKET_QCatchSyscalls,
9b224c5e 1986 PACKET_QProgramSignals,
bc3b087d 1987 PACKET_QSetWorkingDir,
aefd8b33 1988 PACKET_QStartupWithShell,
0a2dde4a
SDJ
1989 PACKET_QEnvironmentHexEncoded,
1990 PACKET_QEnvironmentReset,
1991 PACKET_QEnvironmentUnset,
936d2992 1992 PACKET_qCRC,
08388c79 1993 PACKET_qSearch_memory,
2d717e4f
DJ
1994 PACKET_vAttach,
1995 PACKET_vRun,
a6f3e723 1996 PACKET_QStartNoAckMode,
82f73884 1997 PACKET_vKill,
4aa995e1
PA
1998 PACKET_qXfer_siginfo_read,
1999 PACKET_qXfer_siginfo_write,
0b16c5cf 2000 PACKET_qAttached,
4082afcc
PA
2001
2002 /* Support for conditional tracepoints. */
782b2b07 2003 PACKET_ConditionalTracepoints,
4082afcc
PA
2004
2005 /* Support for target-side breakpoint conditions. */
3788aec7 2006 PACKET_ConditionalBreakpoints,
4082afcc
PA
2007
2008 /* Support for target-side breakpoint commands. */
d3ce09f5 2009 PACKET_BreakpointCommands,
4082afcc
PA
2010
2011 /* Support for fast tracepoints. */
7a697b8d 2012 PACKET_FastTracepoints,
4082afcc
PA
2013
2014 /* Support for static tracepoints. */
0fb4aa4b 2015 PACKET_StaticTracepoints,
4082afcc
PA
2016
2017 /* Support for installing tracepoints while a trace experiment is
2018 running. */
1e4d1764 2019 PACKET_InstallInTrace,
4082afcc 2020
40ab02ce
MS
2021 PACKET_bc,
2022 PACKET_bs,
409873ef 2023 PACKET_TracepointSource,
d914c394 2024 PACKET_QAllow,
78d85199 2025 PACKET_qXfer_fdpic,
03583c20 2026 PACKET_QDisableRandomization,
d1feda86 2027 PACKET_QAgent,
f6f899bf 2028 PACKET_QTBuffer_size,
9accd112
MM
2029 PACKET_Qbtrace_off,
2030 PACKET_Qbtrace_bts,
b20a6524 2031 PACKET_Qbtrace_pt,
9accd112 2032 PACKET_qXfer_btrace,
4082afcc
PA
2033
2034 /* Support for the QNonStop packet. */
2035 PACKET_QNonStop,
2036
65706a29
PA
2037 /* Support for the QThreadEvents packet. */
2038 PACKET_QThreadEvents,
2039
4082afcc
PA
2040 /* Support for multi-process extensions. */
2041 PACKET_multiprocess_feature,
2042
2043 /* Support for enabling and disabling tracepoints while a trace
2044 experiment is running. */
2045 PACKET_EnableDisableTracepoints_feature,
2046
2047 /* Support for collecting strings using the tracenz bytecode. */
2048 PACKET_tracenz_feature,
2049
2050 /* Support for continuing to run a trace experiment while GDB is
2051 disconnected. */
2052 PACKET_DisconnectedTracing_feature,
2053
2054 /* Support for qXfer:libraries-svr4:read with a non-empty annex. */
2055 PACKET_augmented_libraries_svr4_read_feature,
2056
f4abbc16
MM
2057 /* Support for the qXfer:btrace-conf:read packet. */
2058 PACKET_qXfer_btrace_conf,
2059
d33501a5
MM
2060 /* Support for the Qbtrace-conf:bts:size packet. */
2061 PACKET_Qbtrace_conf_bts_size,
2062
f7e6eed5
PA
2063 /* Support for swbreak+ feature. */
2064 PACKET_swbreak_feature,
2065
2066 /* Support for hwbreak+ feature. */
2067 PACKET_hwbreak_feature,
2068
89245bc0
DB
2069 /* Support for fork events. */
2070 PACKET_fork_event_feature,
2071
2072 /* Support for vfork events. */
2073 PACKET_vfork_event_feature,
2074
b20a6524
MM
2075 /* Support for the Qbtrace-conf:pt:size packet. */
2076 PACKET_Qbtrace_conf_pt_size,
2077
94585166
DB
2078 /* Support for exec events. */
2079 PACKET_exec_event_feature,
2080
750ce8d1
YQ
2081 /* Support for query supported vCont actions. */
2082 PACKET_vContSupported,
2083
de979965
PA
2084 /* Support remote CTRL-C. */
2085 PACKET_vCtrlC,
2086
f2faf941
PA
2087 /* Support TARGET_WAITKIND_NO_RESUMED. */
2088 PACKET_no_resumed,
2089
444abaca
DJ
2090 PACKET_MAX
2091};
506fb367 2092
444abaca 2093static struct packet_config remote_protocol_packets[PACKET_MAX];
dc8acb97 2094
f7e6eed5
PA
2095/* Returns the packet's corresponding "set remote foo-packet" command
2096 state. See struct packet_config for more details. */
2097
2098static enum auto_boolean
2099packet_set_cmd_state (int packet)
2100{
2101 return remote_protocol_packets[packet].detect;
2102}
2103
4082afcc
PA
2104/* Returns whether a given packet or feature is supported. This takes
2105 into account the state of the corresponding "set remote foo-packet"
2106 command, which may be used to bypass auto-detection. */
dc8acb97 2107
4082afcc
PA
2108static enum packet_support
2109packet_config_support (struct packet_config *config)
2110{
2111 switch (config->detect)
444abaca 2112 {
4082afcc
PA
2113 case AUTO_BOOLEAN_TRUE:
2114 return PACKET_ENABLE;
2115 case AUTO_BOOLEAN_FALSE:
2116 return PACKET_DISABLE;
2117 case AUTO_BOOLEAN_AUTO:
2118 return config->support;
2119 default:
2120 gdb_assert_not_reached (_("bad switch"));
444abaca 2121 }
4082afcc
PA
2122}
2123
2124/* Same as packet_config_support, but takes the packet's enum value as
2125 argument. */
2126
2127static enum packet_support
2128packet_support (int packet)
2129{
2130 struct packet_config *config = &remote_protocol_packets[packet];
2131
2132 return packet_config_support (config);
dc8acb97
MS
2133}
2134
5a2468f5 2135static void
444abaca
DJ
2136show_remote_protocol_packet_cmd (struct ui_file *file, int from_tty,
2137 struct cmd_list_element *c,
2138 const char *value)
5a2468f5 2139{
444abaca 2140 struct packet_config *packet;
5a2468f5 2141
444abaca
DJ
2142 for (packet = remote_protocol_packets;
2143 packet < &remote_protocol_packets[PACKET_MAX];
2144 packet++)
2145 {
2146 if (&packet->detect == c->var)
2147 {
2148 show_packet_config_cmd (packet);
2149 return;
2150 }
2151 }
9b20d036 2152 internal_error (__FILE__, __LINE__, _("Could not find config for %s"),
444abaca 2153 c->name);
5a2468f5
JM
2154}
2155
d471ea57
AC
2156/* Should we try one of the 'Z' requests? */
2157
2158enum Z_packet_type
2159{
2160 Z_PACKET_SOFTWARE_BP,
2161 Z_PACKET_HARDWARE_BP,
2162 Z_PACKET_WRITE_WP,
2163 Z_PACKET_READ_WP,
2164 Z_PACKET_ACCESS_WP,
2165 NR_Z_PACKET_TYPES
2166};
96baa820 2167
d471ea57 2168/* For compatibility with older distributions. Provide a ``set remote
23860348 2169 Z-packet ...'' command that updates all the Z packet types. */
d471ea57 2170
7f19b9a2 2171static enum auto_boolean remote_Z_packet_detect;
96baa820
JM
2172
2173static void
eb4c3f4a 2174set_remote_protocol_Z_packet_cmd (const char *args, int from_tty,
fba45db2 2175 struct cmd_list_element *c)
96baa820 2176{
d471ea57 2177 int i;
a744cf53 2178
d471ea57 2179 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
4082afcc 2180 remote_protocol_packets[PACKET_Z0 + i].detect = remote_Z_packet_detect;
96baa820
JM
2181}
2182
2183static void
08546159
AC
2184show_remote_protocol_Z_packet_cmd (struct ui_file *file, int from_tty,
2185 struct cmd_list_element *c,
2186 const char *value)
96baa820 2187{
d471ea57 2188 int i;
a744cf53 2189
d471ea57
AC
2190 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
2191 {
444abaca 2192 show_packet_config_cmd (&remote_protocol_packets[PACKET_Z0 + i]);
d471ea57 2193 }
96baa820
JM
2194}
2195
4082afcc
PA
2196/* Returns true if the multi-process extensions are in effect. */
2197
2198static int
2199remote_multi_process_p (struct remote_state *rs)
2200{
2201 return packet_support (PACKET_multiprocess_feature) == PACKET_ENABLE;
2202}
2203
de0d863e
DB
2204/* Returns true if fork events are supported. */
2205
2206static int
2207remote_fork_event_p (struct remote_state *rs)
2208{
2209 return packet_support (PACKET_fork_event_feature) == PACKET_ENABLE;
2210}
2211
c269dbdb
DB
2212/* Returns true if vfork events are supported. */
2213
2214static int
2215remote_vfork_event_p (struct remote_state *rs)
2216{
2217 return packet_support (PACKET_vfork_event_feature) == PACKET_ENABLE;
2218}
2219
d46addbb
DB
2220/* Returns true if exec events are supported. */
2221
2222static int
2223remote_exec_event_p (struct remote_state *rs)
2224{
2225 return packet_support (PACKET_exec_event_feature) == PACKET_ENABLE;
2226}
2227
cbb8991c
DB
2228/* Insert fork catchpoint target routine. If fork events are enabled
2229 then return success, nothing more to do. */
2230
f6ac5f3d
PA
2231int
2232remote_target::insert_fork_catchpoint (int pid)
cbb8991c
DB
2233{
2234 struct remote_state *rs = get_remote_state ();
2235
2236 return !remote_fork_event_p (rs);
2237}
2238
2239/* Remove fork catchpoint target routine. Nothing to do, just
2240 return success. */
2241
f6ac5f3d
PA
2242int
2243remote_target::remove_fork_catchpoint (int pid)
cbb8991c
DB
2244{
2245 return 0;
2246}
2247
2248/* Insert vfork catchpoint target routine. If vfork events are enabled
2249 then return success, nothing more to do. */
2250
f6ac5f3d
PA
2251int
2252remote_target::insert_vfork_catchpoint (int pid)
cbb8991c
DB
2253{
2254 struct remote_state *rs = get_remote_state ();
2255
2256 return !remote_vfork_event_p (rs);
2257}
2258
2259/* Remove vfork catchpoint target routine. Nothing to do, just
2260 return success. */
2261
f6ac5f3d
PA
2262int
2263remote_target::remove_vfork_catchpoint (int pid)
cbb8991c
DB
2264{
2265 return 0;
2266}
2267
d46addbb
DB
2268/* Insert exec catchpoint target routine. If exec events are
2269 enabled, just return success. */
2270
f6ac5f3d
PA
2271int
2272remote_target::insert_exec_catchpoint (int pid)
d46addbb
DB
2273{
2274 struct remote_state *rs = get_remote_state ();
2275
2276 return !remote_exec_event_p (rs);
2277}
2278
2279/* Remove exec catchpoint target routine. Nothing to do, just
2280 return success. */
2281
f6ac5f3d
PA
2282int
2283remote_target::remove_exec_catchpoint (int pid)
d46addbb
DB
2284{
2285 return 0;
2286}
2287
c906108c
SS
2288\f
2289
ffdd69cf
TT
2290/* Take advantage of the fact that the TID field is not used, to tag
2291 special ptids with it set to != 0. */
2292static const ptid_t magic_null_ptid (42000, -1, 1);
2293static const ptid_t not_sent_ptid (42000, -2, 1);
2294static const ptid_t any_thread_ptid (42000, 0, 1);
79d7f229 2295
0b16c5cf
PA
2296/* Find out if the stub attached to PID (and hence GDB should offer to
2297 detach instead of killing it when bailing out). */
2298
6b8edb51
PA
2299int
2300remote_target::remote_query_attached (int pid)
0b16c5cf
PA
2301{
2302 struct remote_state *rs = get_remote_state ();
bba74b36 2303 size_t size = get_remote_packet_size ();
0b16c5cf 2304
4082afcc 2305 if (packet_support (PACKET_qAttached) == PACKET_DISABLE)
0b16c5cf
PA
2306 return 0;
2307
2308 if (remote_multi_process_p (rs))
8d64371b 2309 xsnprintf (rs->buf.data (), size, "qAttached:%x", pid);
0b16c5cf 2310 else
8d64371b 2311 xsnprintf (rs->buf.data (), size, "qAttached");
0b16c5cf
PA
2312
2313 putpkt (rs->buf);
8d64371b 2314 getpkt (&rs->buf, 0);
0b16c5cf
PA
2315
2316 switch (packet_ok (rs->buf,
1554e9be 2317 &remote_protocol_packets[PACKET_qAttached]))
0b16c5cf
PA
2318 {
2319 case PACKET_OK:
8d64371b 2320 if (strcmp (rs->buf.data (), "1") == 0)
0b16c5cf
PA
2321 return 1;
2322 break;
2323 case PACKET_ERROR:
8d64371b 2324 warning (_("Remote failure reply: %s"), rs->buf.data ());
0b16c5cf
PA
2325 break;
2326 case PACKET_UNKNOWN:
2327 break;
2328 }
2329
2330 return 0;
2331}
2332
49c62f2e
PA
2333/* Add PID to GDB's inferior table. If FAKE_PID_P is true, then PID
2334 has been invented by GDB, instead of reported by the target. Since
2335 we can be connected to a remote system before before knowing about
2336 any inferior, mark the target with execution when we find the first
2337 inferior. If ATTACHED is 1, then we had just attached to this
2338 inferior. If it is 0, then we just created this inferior. If it
2339 is -1, then try querying the remote stub to find out if it had
1b6e6f5c
GB
2340 attached to the inferior or not. If TRY_OPEN_EXEC is true then
2341 attempt to open this inferior's executable as the main executable
2342 if no main executable is open already. */
1941c569 2343
6b8edb51 2344inferior *
9ab8741a 2345remote_target::remote_add_inferior (bool fake_pid_p, int pid, int attached,
6b8edb51 2346 int try_open_exec)
1941c569 2347{
1941c569
PA
2348 struct inferior *inf;
2349
0b16c5cf
PA
2350 /* Check whether this process we're learning about is to be
2351 considered attached, or if is to be considered to have been
2352 spawned by the stub. */
2353 if (attached == -1)
2354 attached = remote_query_attached (pid);
2355
f5656ead 2356 if (gdbarch_has_global_solist (target_gdbarch ()))
6c95b8df
PA
2357 {
2358 /* If the target shares code across all inferiors, then every
2359 attach adds a new inferior. */
2360 inf = add_inferior (pid);
2361
2362 /* ... and every inferior is bound to the same program space.
2363 However, each inferior may still have its own address
2364 space. */
2365 inf->aspace = maybe_new_address_space ();
2366 inf->pspace = current_program_space;
2367 }
2368 else
2369 {
2370 /* In the traditional debugging scenario, there's a 1-1 match
2371 between program/address spaces. We simply bind the inferior
2372 to the program space's address space. */
2373 inf = current_inferior ();
2374 inferior_appeared (inf, pid);
2375 }
1941c569 2376
0b16c5cf 2377 inf->attach_flag = attached;
49c62f2e 2378 inf->fake_pid_p = fake_pid_p;
0b16c5cf 2379
1b6e6f5c
GB
2380 /* If no main executable is currently open then attempt to
2381 open the file that was executed to create this inferior. */
835205d0 2382 if (try_open_exec && get_exec_file (0) == NULL)
bb805577 2383 exec_file_locate_attach (pid, 0, 1);
1b6e6f5c 2384
1941c569
PA
2385 return inf;
2386}
2387
7aabaf9d 2388static remote_thread_info *get_remote_thread_info (thread_info *thread);
00431a78 2389static remote_thread_info *get_remote_thread_info (ptid_t ptid);
85ad3aaf 2390
1941c569
PA
2391/* Add thread PTID to GDB's thread list. Tag it as executing/running
2392 according to RUNNING. */
2393
00431a78 2394thread_info *
6b8edb51 2395remote_target::remote_add_thread (ptid_t ptid, bool running, bool executing)
c906108c 2396{
b7ea362b 2397 struct remote_state *rs = get_remote_state ();
85ad3aaf 2398 struct thread_info *thread;
b7ea362b
PA
2399
2400 /* GDB historically didn't pull threads in the initial connection
2401 setup. If the remote target doesn't even have a concept of
2402 threads (e.g., a bare-metal target), even if internally we
2403 consider that a single-threaded target, mentioning a new thread
2404 might be confusing to the user. Be silent then, preserving the
2405 age old behavior. */
2406 if (rs->starting_up)
85ad3aaf 2407 thread = add_thread_silent (ptid);
b7ea362b 2408 else
85ad3aaf 2409 thread = add_thread (ptid);
1941c569 2410
7aabaf9d 2411 get_remote_thread_info (thread)->vcont_resumed = executing;
0d5b594f 2412 set_executing (ptid, executing);
1941c569 2413 set_running (ptid, running);
00431a78
PA
2414
2415 return thread;
1941c569
PA
2416}
2417
2418/* Come here when we learn about a thread id from the remote target.
2419 It may be the first time we hear about such thread, so take the
2420 opportunity to add it to GDB's thread list. In case this is the
2421 first time we're noticing its corresponding inferior, add it to
0d5b594f
PA
2422 GDB's inferior list as well. EXECUTING indicates whether the
2423 thread is (internally) executing or stopped. */
1941c569 2424
6b8edb51
PA
2425void
2426remote_target::remote_notice_new_inferior (ptid_t currthread, int executing)
1941c569 2427{
0d5b594f
PA
2428 /* In non-stop mode, we assume new found threads are (externally)
2429 running until proven otherwise with a stop reply. In all-stop,
2430 we can only get here if all threads are stopped. */
2431 int running = target_is_non_stop_p () ? 1 : 0;
2432
c906108c
SS
2433 /* If this is a new thread, add it to GDB's thread list.
2434 If we leave it up to WFI to do this, bad things will happen. */
82f73884 2435
00431a78
PA
2436 thread_info *tp = find_thread_ptid (currthread);
2437 if (tp != NULL && tp->state == THREAD_EXITED)
82f73884
PA
2438 {
2439 /* We're seeing an event on a thread id we knew had exited.
2440 This has to be a new thread reusing the old id. Add it. */
0d5b594f 2441 remote_add_thread (currthread, running, executing);
82f73884
PA
2442 return;
2443 }
2444
79d7f229 2445 if (!in_thread_list (currthread))
c0a2216e 2446 {
1941c569 2447 struct inferior *inf = NULL;
e99b03dc 2448 int pid = currthread.pid ();
1941c569 2449
0e998d96 2450 if (inferior_ptid.is_pid ()
e99b03dc 2451 && pid == inferior_ptid.pid ())
c0a2216e
PA
2452 {
2453 /* inferior_ptid has no thread member yet. This can happen
2454 with the vAttach -> remote_wait,"TAAthread:" path if the
2455 stub doesn't support qC. This is the first stop reported
2456 after an attach, so this is the main thread. Update the
2457 ptid in the thread list. */
f2907e49 2458 if (in_thread_list (ptid_t (pid)))
bad34192
PA
2459 thread_change_ptid (inferior_ptid, currthread);
2460 else
2461 {
0d5b594f 2462 remote_add_thread (currthread, running, executing);
bad34192
PA
2463 inferior_ptid = currthread;
2464 }
dc146f7c 2465 return;
c0a2216e 2466 }
82f73884 2467
d7e15655 2468 if (magic_null_ptid == inferior_ptid)
c0a2216e
PA
2469 {
2470 /* inferior_ptid is not set yet. This can happen with the
2471 vRun -> remote_wait,"TAAthread:" path if the stub
2472 doesn't support qC. This is the first stop reported
2473 after an attach, so this is the main thread. Update the
2474 ptid in the thread list. */
dc146f7c 2475 thread_change_ptid (inferior_ptid, currthread);
82f73884 2476 return;
c0a2216e 2477 }
82f73884 2478
29c87f7f
PA
2479 /* When connecting to a target remote, or to a target
2480 extended-remote which already was debugging an inferior, we
2481 may not know about it yet. Add it before adding its child
2482 thread, so notifications are emitted in a sensible order. */
e99b03dc 2483 if (find_inferior_pid (currthread.pid ()) == NULL)
49c62f2e
PA
2484 {
2485 struct remote_state *rs = get_remote_state ();
9ab8741a 2486 bool fake_pid_p = !remote_multi_process_p (rs);
49c62f2e
PA
2487
2488 inf = remote_add_inferior (fake_pid_p,
e99b03dc 2489 currthread.pid (), -1, 1);
49c62f2e 2490 }
29c87f7f 2491
82f73884 2492 /* This is really a new thread. Add it. */
00431a78
PA
2493 thread_info *new_thr
2494 = remote_add_thread (currthread, running, executing);
1941c569
PA
2495
2496 /* If we found a new inferior, let the common code do whatever
2497 it needs to with it (e.g., read shared libraries, insert
b7ea362b
PA
2498 breakpoints), unless we're just setting up an all-stop
2499 connection. */
1941c569 2500 if (inf != NULL)
b7ea362b
PA
2501 {
2502 struct remote_state *rs = get_remote_state ();
2503
6efcd9a8 2504 if (!rs->starting_up)
00431a78 2505 notice_new_inferior (new_thr, executing, 0);
b7ea362b 2506 }
c0a2216e 2507 }
c906108c
SS
2508}
2509
85ad3aaf 2510/* Return THREAD's private thread data, creating it if necessary. */
dc146f7c 2511
7aabaf9d
SM
2512static remote_thread_info *
2513get_remote_thread_info (thread_info *thread)
dc146f7c 2514{
85ad3aaf 2515 gdb_assert (thread != NULL);
dc146f7c 2516
85ad3aaf 2517 if (thread->priv == NULL)
7aabaf9d 2518 thread->priv.reset (new remote_thread_info);
dc146f7c 2519
7aabaf9d 2520 return static_cast<remote_thread_info *> (thread->priv.get ());
85ad3aaf
PA
2521}
2522
7aabaf9d
SM
2523static remote_thread_info *
2524get_remote_thread_info (ptid_t ptid)
85ad3aaf 2525{
00431a78
PA
2526 thread_info *thr = find_thread_ptid (ptid);
2527 return get_remote_thread_info (thr);
dc146f7c
VP
2528}
2529
74531fed
PA
2530/* Call this function as a result of
2531 1) A halt indication (T packet) containing a thread id
2532 2) A direct query of currthread
0df8b418 2533 3) Successful execution of set thread */
74531fed
PA
2534
2535static void
47f8a51d 2536record_currthread (struct remote_state *rs, ptid_t currthread)
74531fed 2537{
47f8a51d 2538 rs->general_thread = currthread;
74531fed
PA
2539}
2540
89be2091
DJ
2541/* If 'QPassSignals' is supported, tell the remote stub what signals
2542 it can simply pass through to the inferior without reporting. */
2543
f6ac5f3d 2544void
adc6a863 2545remote_target::pass_signals (gdb::array_view<const unsigned char> pass_signals)
89be2091 2546{
4082afcc 2547 if (packet_support (PACKET_QPassSignals) != PACKET_DISABLE)
89be2091
DJ
2548 {
2549 char *pass_packet, *p;
adc6a863 2550 int count = 0;
747dc59d 2551 struct remote_state *rs = get_remote_state ();
89be2091 2552
adc6a863
PA
2553 gdb_assert (pass_signals.size () < 256);
2554 for (size_t i = 0; i < pass_signals.size (); i++)
89be2091 2555 {
2455069d 2556 if (pass_signals[i])
89be2091
DJ
2557 count++;
2558 }
224c3ddb 2559 pass_packet = (char *) xmalloc (count * 3 + strlen ("QPassSignals:") + 1);
89be2091
DJ
2560 strcpy (pass_packet, "QPassSignals:");
2561 p = pass_packet + strlen (pass_packet);
adc6a863 2562 for (size_t i = 0; i < pass_signals.size (); i++)
89be2091 2563 {
2455069d 2564 if (pass_signals[i])
89be2091
DJ
2565 {
2566 if (i >= 16)
2567 *p++ = tohex (i >> 4);
2568 *p++ = tohex (i & 15);
2569 if (count)
2570 *p++ = ';';
2571 else
2572 break;
2573 count--;
2574 }
2575 }
2576 *p = 0;
747dc59d 2577 if (!rs->last_pass_packet || strcmp (rs->last_pass_packet, pass_packet))
89be2091 2578 {
89be2091 2579 putpkt (pass_packet);
8d64371b 2580 getpkt (&rs->buf, 0);
8dc5b319 2581 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QPassSignals]);
747dc59d
TT
2582 if (rs->last_pass_packet)
2583 xfree (rs->last_pass_packet);
2584 rs->last_pass_packet = pass_packet;
89be2091
DJ
2585 }
2586 else
2587 xfree (pass_packet);
2588 }
2589}
2590
82075af2
JS
2591/* If 'QCatchSyscalls' is supported, tell the remote stub
2592 to report syscalls to GDB. */
2593
f6ac5f3d
PA
2594int
2595remote_target::set_syscall_catchpoint (int pid, bool needed, int any_count,
2596 gdb::array_view<const int> syscall_counts)
82075af2 2597{
b80406ac 2598 const char *catch_packet;
82075af2
JS
2599 enum packet_result result;
2600 int n_sysno = 0;
2601
2602 if (packet_support (PACKET_QCatchSyscalls) == PACKET_DISABLE)
2603 {
2604 /* Not supported. */
2605 return 1;
2606 }
2607
649a140c 2608 if (needed && any_count == 0)
82075af2 2609 {
649a140c
PA
2610 /* Count how many syscalls are to be caught. */
2611 for (size_t i = 0; i < syscall_counts.size (); i++)
82075af2 2612 {
649a140c 2613 if (syscall_counts[i] != 0)
82075af2
JS
2614 n_sysno++;
2615 }
2616 }
2617
2618 if (remote_debug)
2619 {
2620 fprintf_unfiltered (gdb_stdlog,
2621 "remote_set_syscall_catchpoint "
2622 "pid %d needed %d any_count %d n_sysno %d\n",
2623 pid, needed, any_count, n_sysno);
2624 }
2625
1b81856f 2626 std::string built_packet;
82075af2
JS
2627 if (needed)
2628 {
2629 /* Prepare a packet with the sysno list, assuming max 8+1
2630 characters for a sysno. If the resulting packet size is too
2631 big, fallback on the non-selective packet. */
2632 const int maxpktsz = strlen ("QCatchSyscalls:1") + n_sysno * 9 + 1;
1b81856f
PA
2633 built_packet.reserve (maxpktsz);
2634 built_packet = "QCatchSyscalls:1";
649a140c 2635 if (any_count == 0)
82075af2 2636 {
649a140c
PA
2637 /* Add in each syscall to be caught. */
2638 for (size_t i = 0; i < syscall_counts.size (); i++)
82075af2 2639 {
649a140c
PA
2640 if (syscall_counts[i] != 0)
2641 string_appendf (built_packet, ";%zx", i);
82075af2
JS
2642 }
2643 }
1b81856f 2644 if (built_packet.size () > get_remote_packet_size ())
82075af2
JS
2645 {
2646 /* catch_packet too big. Fallback to less efficient
2647 non selective mode, with GDB doing the filtering. */
b80406ac 2648 catch_packet = "QCatchSyscalls:1";
82075af2 2649 }
b80406ac 2650 else
1b81856f 2651 catch_packet = built_packet.c_str ();
82075af2
JS
2652 }
2653 else
b80406ac 2654 catch_packet = "QCatchSyscalls:0";
82075af2 2655
b80406ac 2656 struct remote_state *rs = get_remote_state ();
82075af2 2657
b80406ac 2658 putpkt (catch_packet);
8d64371b 2659 getpkt (&rs->buf, 0);
b80406ac
TT
2660 result = packet_ok (rs->buf, &remote_protocol_packets[PACKET_QCatchSyscalls]);
2661 if (result == PACKET_OK)
2662 return 0;
2663 else
2664 return -1;
82075af2
JS
2665}
2666
9b224c5e
PA
2667/* If 'QProgramSignals' is supported, tell the remote stub what
2668 signals it should pass through to the inferior when detaching. */
2669
f6ac5f3d 2670void
adc6a863 2671remote_target::program_signals (gdb::array_view<const unsigned char> signals)
9b224c5e 2672{
4082afcc 2673 if (packet_support (PACKET_QProgramSignals) != PACKET_DISABLE)
9b224c5e
PA
2674 {
2675 char *packet, *p;
adc6a863 2676 int count = 0;
5e4a05c4 2677 struct remote_state *rs = get_remote_state ();
9b224c5e 2678
adc6a863
PA
2679 gdb_assert (signals.size () < 256);
2680 for (size_t i = 0; i < signals.size (); i++)
9b224c5e
PA
2681 {
2682 if (signals[i])
2683 count++;
2684 }
224c3ddb 2685 packet = (char *) xmalloc (count * 3 + strlen ("QProgramSignals:") + 1);
9b224c5e
PA
2686 strcpy (packet, "QProgramSignals:");
2687 p = packet + strlen (packet);
adc6a863 2688 for (size_t i = 0; i < signals.size (); i++)
9b224c5e
PA
2689 {
2690 if (signal_pass_state (i))
2691 {
2692 if (i >= 16)
2693 *p++ = tohex (i >> 4);
2694 *p++ = tohex (i & 15);
2695 if (count)
2696 *p++ = ';';
2697 else
2698 break;
2699 count--;
2700 }
2701 }
2702 *p = 0;
5e4a05c4
TT
2703 if (!rs->last_program_signals_packet
2704 || strcmp (rs->last_program_signals_packet, packet) != 0)
9b224c5e 2705 {
9b224c5e 2706 putpkt (packet);
8d64371b 2707 getpkt (&rs->buf, 0);
8dc5b319 2708 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QProgramSignals]);
5e4a05c4
TT
2709 xfree (rs->last_program_signals_packet);
2710 rs->last_program_signals_packet = packet;
9b224c5e
PA
2711 }
2712 else
2713 xfree (packet);
2714 }
2715}
2716
79d7f229
PA
2717/* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
2718 MINUS_ONE_PTID, set the thread to -1, so the stub returns the
2719 thread. If GEN is set, set the general thread, if not, then set
2720 the step/continue thread. */
6b8edb51
PA
2721void
2722remote_target::set_thread (ptid_t ptid, int gen)
c906108c 2723{
d01949b6 2724 struct remote_state *rs = get_remote_state ();
47f8a51d 2725 ptid_t state = gen ? rs->general_thread : rs->continue_thread;
8d64371b
TT
2726 char *buf = rs->buf.data ();
2727 char *endbuf = buf + get_remote_packet_size ();
c906108c 2728
d7e15655 2729 if (state == ptid)
c906108c
SS
2730 return;
2731
79d7f229
PA
2732 *buf++ = 'H';
2733 *buf++ = gen ? 'g' : 'c';
d7e15655 2734 if (ptid == magic_null_ptid)
79d7f229 2735 xsnprintf (buf, endbuf - buf, "0");
d7e15655 2736 else if (ptid == any_thread_ptid)
79d7f229 2737 xsnprintf (buf, endbuf - buf, "0");
d7e15655 2738 else if (ptid == minus_one_ptid)
79d7f229
PA
2739 xsnprintf (buf, endbuf - buf, "-1");
2740 else
82f73884 2741 write_ptid (buf, endbuf, ptid);
79d7f229 2742 putpkt (rs->buf);
8d64371b 2743 getpkt (&rs->buf, 0);
c906108c 2744 if (gen)
47f8a51d 2745 rs->general_thread = ptid;
c906108c 2746 else
47f8a51d 2747 rs->continue_thread = ptid;
c906108c 2748}
79d7f229 2749
6b8edb51
PA
2750void
2751remote_target::set_general_thread (ptid_t ptid)
79d7f229
PA
2752{
2753 set_thread (ptid, 1);
2754}
2755
6b8edb51
PA
2756void
2757remote_target::set_continue_thread (ptid_t ptid)
79d7f229
PA
2758{
2759 set_thread (ptid, 0);
2760}
2761
3c9c4b83
PA
2762/* Change the remote current process. Which thread within the process
2763 ends up selected isn't important, as long as it is the same process
2764 as what INFERIOR_PTID points to.
2765
2766 This comes from that fact that there is no explicit notion of
2767 "selected process" in the protocol. The selected process for
2768 general operations is the process the selected general thread
2769 belongs to. */
2770
6b8edb51
PA
2771void
2772remote_target::set_general_process ()
3c9c4b83
PA
2773{
2774 struct remote_state *rs = get_remote_state ();
2775
2776 /* If the remote can't handle multiple processes, don't bother. */
8020350c 2777 if (!remote_multi_process_p (rs))
3c9c4b83
PA
2778 return;
2779
2780 /* We only need to change the remote current thread if it's pointing
2781 at some other process. */
e99b03dc 2782 if (rs->general_thread.pid () != inferior_ptid.pid ())
3c9c4b83
PA
2783 set_general_thread (inferior_ptid);
2784}
2785
c906108c 2786\f
7d1a114c
PA
2787/* Return nonzero if this is the main thread that we made up ourselves
2788 to model non-threaded targets as single-threaded. */
c906108c
SS
2789
2790static int
f6ac5f3d 2791remote_thread_always_alive (ptid_t ptid)
c906108c 2792{
d7e15655 2793 if (ptid == magic_null_ptid)
c0a2216e
PA
2794 /* The main thread is always alive. */
2795 return 1;
2796
e38504b3 2797 if (ptid.pid () != 0 && ptid.lwp () == 0)
c0a2216e
PA
2798 /* The main thread is always alive. This can happen after a
2799 vAttach, if the remote side doesn't support
2800 multi-threading. */
2801 return 1;
2802
7d1a114c
PA
2803 return 0;
2804}
2805
2806/* Return nonzero if the thread PTID is still alive on the remote
2807 system. */
2808
57810aa7 2809bool
f6ac5f3d 2810remote_target::thread_alive (ptid_t ptid)
7d1a114c
PA
2811{
2812 struct remote_state *rs = get_remote_state ();
2813 char *p, *endp;
2814
2815 /* Check if this is a thread that we made up ourselves to model
2816 non-threaded targets as single-threaded. */
f6ac5f3d 2817 if (remote_thread_always_alive (ptid))
7d1a114c
PA
2818 return 1;
2819
8d64371b
TT
2820 p = rs->buf.data ();
2821 endp = p + get_remote_packet_size ();
82f73884
PA
2822
2823 *p++ = 'T';
2824 write_ptid (p, endp, ptid);
2825
2e9f7625 2826 putpkt (rs->buf);
8d64371b 2827 getpkt (&rs->buf, 0);
2e9f7625 2828 return (rs->buf[0] == 'O' && rs->buf[1] == 'K');
c906108c
SS
2829}
2830
79efa585
SM
2831/* Return a pointer to a thread name if we know it and NULL otherwise.
2832 The thread_info object owns the memory for the name. */
2833
f6ac5f3d
PA
2834const char *
2835remote_target::thread_name (struct thread_info *info)
79efa585
SM
2836{
2837 if (info->priv != NULL)
a9334058
SM
2838 {
2839 const std::string &name = get_remote_thread_info (info)->name;
2840 return !name.empty () ? name.c_str () : NULL;
2841 }
79efa585
SM
2842
2843 return NULL;
2844}
2845
c906108c
SS
2846/* About these extended threadlist and threadinfo packets. They are
2847 variable length packets but, the fields within them are often fixed
2848 length. They are redundent enough to send over UDP as is the
2849 remote protocol in general. There is a matching unit test module
2850 in libstub. */
2851
23860348 2852/* WARNING: This threadref data structure comes from the remote O.S.,
0df8b418 2853 libstub protocol encoding, and remote.c. It is not particularly
23860348 2854 changable. */
cce74817
JM
2855
2856/* Right now, the internal structure is int. We want it to be bigger.
0df8b418 2857 Plan to fix this. */
cce74817 2858
23860348 2859typedef int gdb_threadref; /* Internal GDB thread reference. */
cce74817 2860
9d1f7ab2 2861/* gdb_ext_thread_info is an internal GDB data structure which is
cfde0993 2862 equivalent to the reply of the remote threadinfo packet. */
cce74817
JM
2863
2864struct gdb_ext_thread_info
c5aa993b 2865 {
23860348 2866 threadref threadid; /* External form of thread reference. */
2bc416ba 2867 int active; /* Has state interesting to GDB?
23860348 2868 regs, stack. */
2bc416ba 2869 char display[256]; /* Brief state display, name,
cedea757 2870 blocked/suspended. */
23860348 2871 char shortname[32]; /* To be used to name threads. */
2bc416ba 2872 char more_display[256]; /* Long info, statistics, queue depth,
23860348 2873 whatever. */
c5aa993b 2874 };
cce74817
JM
2875
2876/* The volume of remote transfers can be limited by submitting
2877 a mask containing bits specifying the desired information.
2878 Use a union of these values as the 'selection' parameter to
0df8b418 2879 get_thread_info. FIXME: Make these TAG names more thread specific. */
cce74817
JM
2880
2881#define TAG_THREADID 1
2882#define TAG_EXISTS 2
2883#define TAG_DISPLAY 4
2884#define TAG_THREADNAME 8
c5aa993b 2885#define TAG_MOREDISPLAY 16
cce74817 2886
23860348 2887#define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
c906108c 2888
a14ed312 2889static char *unpack_nibble (char *buf, int *val);
cce74817 2890
a14ed312 2891static char *unpack_byte (char *buf, int *value);
cce74817 2892
a14ed312 2893static char *pack_int (char *buf, int value);
cce74817 2894
a14ed312 2895static char *unpack_int (char *buf, int *value);
cce74817 2896
a14ed312 2897static char *unpack_string (char *src, char *dest, int length);
cce74817 2898
23860348 2899static char *pack_threadid (char *pkt, threadref *id);
cce74817 2900
23860348 2901static char *unpack_threadid (char *inbuf, threadref *id);
cce74817 2902
23860348 2903void int_to_threadref (threadref *id, int value);
cce74817 2904
23860348 2905static int threadref_to_int (threadref *ref);
cce74817 2906
23860348 2907static void copy_threadref (threadref *dest, threadref *src);
cce74817 2908
23860348 2909static int threadmatch (threadref *dest, threadref *src);
cce74817 2910
2bc416ba 2911static char *pack_threadinfo_request (char *pkt, int mode,
23860348 2912 threadref *id);
cce74817 2913
a14ed312
KB
2914static char *pack_threadlist_request (char *pkt, int startflag,
2915 int threadcount,
23860348 2916 threadref *nextthread);
cce74817 2917
23860348 2918static int remote_newthread_step (threadref *ref, void *context);
cce74817 2919
82f73884
PA
2920
2921/* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the
2922 buffer we're allowed to write to. Returns
2923 BUF+CHARACTERS_WRITTEN. */
2924
6b8edb51
PA
2925char *
2926remote_target::write_ptid (char *buf, const char *endbuf, ptid_t ptid)
82f73884
PA
2927{
2928 int pid, tid;
2929 struct remote_state *rs = get_remote_state ();
2930
2931 if (remote_multi_process_p (rs))
2932 {
e99b03dc 2933 pid = ptid.pid ();
82f73884
PA
2934 if (pid < 0)
2935 buf += xsnprintf (buf, endbuf - buf, "p-%x.", -pid);
2936 else
2937 buf += xsnprintf (buf, endbuf - buf, "p%x.", pid);
2938 }
e38504b3 2939 tid = ptid.lwp ();
82f73884
PA
2940 if (tid < 0)
2941 buf += xsnprintf (buf, endbuf - buf, "-%x", -tid);
2942 else
2943 buf += xsnprintf (buf, endbuf - buf, "%x", tid);
2944
2945 return buf;
2946}
2947
256642e8
PA
2948/* Extract a PTID from BUF. If non-null, OBUF is set to one past the
2949 last parsed char. Returns null_ptid if no thread id is found, and
2950 throws an error if the thread id has an invalid format. */
82f73884
PA
2951
2952static ptid_t
256642e8 2953read_ptid (const char *buf, const char **obuf)
82f73884 2954{
256642e8
PA
2955 const char *p = buf;
2956 const char *pp;
82f73884 2957 ULONGEST pid = 0, tid = 0;
82f73884
PA
2958
2959 if (*p == 'p')
2960 {
2961 /* Multi-process ptid. */
2962 pp = unpack_varlen_hex (p + 1, &pid);
2963 if (*pp != '.')
b37520b6 2964 error (_("invalid remote ptid: %s"), p);
82f73884
PA
2965
2966 p = pp;
2967 pp = unpack_varlen_hex (p + 1, &tid);
2968 if (obuf)
2969 *obuf = pp;
fd79271b 2970 return ptid_t (pid, tid, 0);
82f73884
PA
2971 }
2972
2973 /* No multi-process. Just a tid. */
2974 pp = unpack_varlen_hex (p, &tid);
2975
c9f35b34
KB
2976 /* Return null_ptid when no thread id is found. */
2977 if (p == pp)
2978 {
2979 if (obuf)
2980 *obuf = pp;
2981 return null_ptid;
2982 }
2983
82f73884 2984 /* Since the stub is not sending a process id, then default to
ca19bf23
PA
2985 what's in inferior_ptid, unless it's null at this point. If so,
2986 then since there's no way to know the pid of the reported
2987 threads, use the magic number. */
d7e15655 2988 if (inferior_ptid == null_ptid)
e99b03dc 2989 pid = magic_null_ptid.pid ();
ca19bf23 2990 else
e99b03dc 2991 pid = inferior_ptid.pid ();
82f73884
PA
2992
2993 if (obuf)
2994 *obuf = pp;
fd79271b 2995 return ptid_t (pid, tid, 0);
82f73884
PA
2996}
2997
c906108c 2998static int
fba45db2 2999stubhex (int ch)
c906108c
SS
3000{
3001 if (ch >= 'a' && ch <= 'f')
3002 return ch - 'a' + 10;
3003 if (ch >= '0' && ch <= '9')
3004 return ch - '0';
3005 if (ch >= 'A' && ch <= 'F')
3006 return ch - 'A' + 10;
3007 return -1;
3008}
3009
3010static int
fba45db2 3011stub_unpack_int (char *buff, int fieldlength)
c906108c
SS
3012{
3013 int nibble;
3014 int retval = 0;
3015
3016 while (fieldlength)
3017 {
3018 nibble = stubhex (*buff++);
3019 retval |= nibble;
3020 fieldlength--;
3021 if (fieldlength)
3022 retval = retval << 4;
3023 }
3024 return retval;
3025}
3026
c906108c 3027static char *
fba45db2 3028unpack_nibble (char *buf, int *val)
c906108c 3029{
b7589f7d 3030 *val = fromhex (*buf++);
c906108c
SS
3031 return buf;
3032}
3033
c906108c 3034static char *
fba45db2 3035unpack_byte (char *buf, int *value)
c906108c
SS
3036{
3037 *value = stub_unpack_int (buf, 2);
3038 return buf + 2;
3039}
3040
3041static char *
fba45db2 3042pack_int (char *buf, int value)
c906108c
SS
3043{
3044 buf = pack_hex_byte (buf, (value >> 24) & 0xff);
3045 buf = pack_hex_byte (buf, (value >> 16) & 0xff);
3046 buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
3047 buf = pack_hex_byte (buf, (value & 0xff));
3048 return buf;
3049}
3050
3051static char *
fba45db2 3052unpack_int (char *buf, int *value)
c906108c
SS
3053{
3054 *value = stub_unpack_int (buf, 8);
3055 return buf + 8;
3056}
3057
23860348 3058#if 0 /* Currently unused, uncomment when needed. */
a14ed312 3059static char *pack_string (char *pkt, char *string);
c906108c
SS
3060
3061static char *
fba45db2 3062pack_string (char *pkt, char *string)
c906108c
SS
3063{
3064 char ch;
3065 int len;
3066
3067 len = strlen (string);
3068 if (len > 200)
23860348 3069 len = 200; /* Bigger than most GDB packets, junk??? */
c906108c
SS
3070 pkt = pack_hex_byte (pkt, len);
3071 while (len-- > 0)
3072 {
3073 ch = *string++;
3074 if ((ch == '\0') || (ch == '#'))
23860348 3075 ch = '*'; /* Protect encapsulation. */
c906108c
SS
3076 *pkt++ = ch;
3077 }
3078 return pkt;
3079}
3080#endif /* 0 (unused) */
3081
3082static char *
fba45db2 3083unpack_string (char *src, char *dest, int length)
c906108c
SS
3084{
3085 while (length--)
3086 *dest++ = *src++;
3087 *dest = '\0';
3088 return src;
3089}
3090
3091static char *
fba45db2 3092pack_threadid (char *pkt, threadref *id)
c906108c
SS
3093{
3094 char *limit;
3095 unsigned char *altid;
3096
3097 altid = (unsigned char *) id;
3098 limit = pkt + BUF_THREAD_ID_SIZE;
3099 while (pkt < limit)
3100 pkt = pack_hex_byte (pkt, *altid++);
3101 return pkt;
3102}
3103
3104
3105static char *
fba45db2 3106unpack_threadid (char *inbuf, threadref *id)
c906108c
SS
3107{
3108 char *altref;
3109 char *limit = inbuf + BUF_THREAD_ID_SIZE;
3110 int x, y;
3111
3112 altref = (char *) id;
3113
3114 while (inbuf < limit)
3115 {
3116 x = stubhex (*inbuf++);
3117 y = stubhex (*inbuf++);
3118 *altref++ = (x << 4) | y;
3119 }
3120 return inbuf;
3121}
3122
3123/* Externally, threadrefs are 64 bits but internally, they are still
0df8b418 3124 ints. This is due to a mismatch of specifications. We would like
c906108c
SS
3125 to use 64bit thread references internally. This is an adapter
3126 function. */
3127
3128void
fba45db2 3129int_to_threadref (threadref *id, int value)
c906108c
SS
3130{
3131 unsigned char *scan;
3132
3133 scan = (unsigned char *) id;
3134 {
3135 int i = 4;
3136 while (i--)
3137 *scan++ = 0;
3138 }
3139 *scan++ = (value >> 24) & 0xff;
3140 *scan++ = (value >> 16) & 0xff;
3141 *scan++ = (value >> 8) & 0xff;
3142 *scan++ = (value & 0xff);
3143}
3144
3145static int
fba45db2 3146threadref_to_int (threadref *ref)
c906108c
SS
3147{
3148 int i, value = 0;
3149 unsigned char *scan;
3150
cfd77fa1 3151 scan = *ref;
c906108c
SS
3152 scan += 4;
3153 i = 4;
3154 while (i-- > 0)
3155 value = (value << 8) | ((*scan++) & 0xff);
3156 return value;
3157}
3158
3159static void
fba45db2 3160copy_threadref (threadref *dest, threadref *src)
c906108c
SS
3161{
3162 int i;
3163 unsigned char *csrc, *cdest;
3164
3165 csrc = (unsigned char *) src;
3166 cdest = (unsigned char *) dest;
3167 i = 8;
3168 while (i--)
3169 *cdest++ = *csrc++;
3170}
3171
3172static int
fba45db2 3173threadmatch (threadref *dest, threadref *src)
c906108c 3174{
23860348 3175 /* Things are broken right now, so just assume we got a match. */
c906108c
SS
3176#if 0
3177 unsigned char *srcp, *destp;
3178 int i, result;
3179 srcp = (char *) src;
3180 destp = (char *) dest;
3181
3182 result = 1;
3183 while (i-- > 0)
3184 result &= (*srcp++ == *destp++) ? 1 : 0;
3185 return result;
3186#endif
3187 return 1;
3188}
3189
3190/*
c5aa993b
JM
3191 threadid:1, # always request threadid
3192 context_exists:2,
3193 display:4,
3194 unique_name:8,
3195 more_display:16
3196 */
c906108c
SS
3197
3198/* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
3199
3200static char *
fba45db2 3201pack_threadinfo_request (char *pkt, int mode, threadref *id)
c906108c 3202{
23860348
MS
3203 *pkt++ = 'q'; /* Info Query */
3204 *pkt++ = 'P'; /* process or thread info */
3205 pkt = pack_int (pkt, mode); /* mode */
c906108c 3206 pkt = pack_threadid (pkt, id); /* threadid */
23860348 3207 *pkt = '\0'; /* terminate */
c906108c
SS
3208 return pkt;
3209}
3210
23860348 3211/* These values tag the fields in a thread info response packet. */
c906108c 3212/* Tagging the fields allows us to request specific fields and to
23860348 3213 add more fields as time goes by. */
c906108c 3214
23860348 3215#define TAG_THREADID 1 /* Echo the thread identifier. */
c5aa993b 3216#define TAG_EXISTS 2 /* Is this process defined enough to
23860348 3217 fetch registers and its stack? */
c5aa993b 3218#define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
23860348 3219#define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
802188a7 3220#define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
23860348 3221 the process. */
c906108c 3222
6b8edb51
PA
3223int
3224remote_target::remote_unpack_thread_info_response (char *pkt,
3225 threadref *expectedref,
3226 gdb_ext_thread_info *info)
c906108c 3227{
d01949b6 3228 struct remote_state *rs = get_remote_state ();
c906108c 3229 int mask, length;
cfd77fa1 3230 int tag;
c906108c 3231 threadref ref;
8d64371b 3232 char *limit = pkt + rs->buf.size (); /* Plausible parsing limit. */
c906108c
SS
3233 int retval = 1;
3234
23860348 3235 /* info->threadid = 0; FIXME: implement zero_threadref. */
c906108c
SS
3236 info->active = 0;
3237 info->display[0] = '\0';
3238 info->shortname[0] = '\0';
3239 info->more_display[0] = '\0';
3240
23860348
MS
3241 /* Assume the characters indicating the packet type have been
3242 stripped. */
c906108c
SS
3243 pkt = unpack_int (pkt, &mask); /* arg mask */
3244 pkt = unpack_threadid (pkt, &ref);
3245
3246 if (mask == 0)
8a3fe4f8 3247 warning (_("Incomplete response to threadinfo request."));
c906108c 3248 if (!threadmatch (&ref, expectedref))
23860348 3249 { /* This is an answer to a different request. */
8a3fe4f8 3250 warning (_("ERROR RMT Thread info mismatch."));
c906108c
SS
3251 return 0;
3252 }
3253 copy_threadref (&info->threadid, &ref);
3254
23860348 3255 /* Loop on tagged fields , try to bail if somthing goes wrong. */
c906108c 3256
23860348
MS
3257 /* Packets are terminated with nulls. */
3258 while ((pkt < limit) && mask && *pkt)
c906108c
SS
3259 {
3260 pkt = unpack_int (pkt, &tag); /* tag */
23860348
MS
3261 pkt = unpack_byte (pkt, &length); /* length */
3262 if (!(tag & mask)) /* Tags out of synch with mask. */
c906108c 3263 {
8a3fe4f8 3264 warning (_("ERROR RMT: threadinfo tag mismatch."));
c906108c
SS
3265 retval = 0;
3266 break;
3267 }
3268 if (tag == TAG_THREADID)
3269 {
3270 if (length != 16)
3271 {
8a3fe4f8 3272 warning (_("ERROR RMT: length of threadid is not 16."));
c906108c
SS
3273 retval = 0;
3274 break;
3275 }
3276 pkt = unpack_threadid (pkt, &ref);
3277 mask = mask & ~TAG_THREADID;
3278 continue;
3279 }
3280 if (tag == TAG_EXISTS)
3281 {
3282 info->active = stub_unpack_int (pkt, length);
3283 pkt += length;
3284 mask = mask & ~(TAG_EXISTS);
3285 if (length > 8)
3286 {
8a3fe4f8 3287 warning (_("ERROR RMT: 'exists' length too long."));
c906108c
SS
3288 retval = 0;
3289 break;
3290 }
3291 continue;
3292 }
3293 if (tag == TAG_THREADNAME)
3294 {
3295 pkt = unpack_string (pkt, &info->shortname[0], length);
3296 mask = mask & ~TAG_THREADNAME;
3297 continue;
3298 }
3299 if (tag == TAG_DISPLAY)
3300 {
3301 pkt = unpack_string (pkt, &info->display[0], length);
3302 mask = mask & ~TAG_DISPLAY;
3303 continue;
3304 }
3305 if (tag == TAG_MOREDISPLAY)
3306 {
3307 pkt = unpack_string (pkt, &info->more_display[0], length);
3308 mask = mask & ~TAG_MOREDISPLAY;
3309 continue;
3310 }
8a3fe4f8 3311 warning (_("ERROR RMT: unknown thread info tag."));
23860348 3312 break; /* Not a tag we know about. */
c906108c
SS
3313 }
3314 return retval;
3315}
3316
6b8edb51
PA
3317int
3318remote_target::remote_get_threadinfo (threadref *threadid,
3319 int fieldset,
3320 gdb_ext_thread_info *info)
c906108c 3321{
d01949b6 3322 struct remote_state *rs = get_remote_state ();
c906108c 3323 int result;
c906108c 3324
8d64371b 3325 pack_threadinfo_request (rs->buf.data (), fieldset, threadid);
2e9f7625 3326 putpkt (rs->buf);
8d64371b 3327 getpkt (&rs->buf, 0);
3084dd77
PA
3328
3329 if (rs->buf[0] == '\0')
3330 return 0;
3331
8d64371b 3332 result = remote_unpack_thread_info_response (&rs->buf[2],
23860348 3333 threadid, info);
c906108c
SS
3334 return result;
3335}
3336
c906108c
SS
3337/* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
3338
3339static char *
fba45db2
KB
3340pack_threadlist_request (char *pkt, int startflag, int threadcount,
3341 threadref *nextthread)
c906108c
SS
3342{
3343 *pkt++ = 'q'; /* info query packet */
3344 *pkt++ = 'L'; /* Process LIST or threadLIST request */
23860348 3345 pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */
c906108c
SS
3346 pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */
3347 pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */
3348 *pkt = '\0';
3349 return pkt;
3350}
3351
3352/* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
3353
6b8edb51
PA
3354int
3355remote_target::parse_threadlist_response (char *pkt, int result_limit,
3356 threadref *original_echo,
3357 threadref *resultlist,
3358 int *doneflag)
c906108c 3359{
d01949b6 3360 struct remote_state *rs = get_remote_state ();
c906108c
SS
3361 char *limit;
3362 int count, resultcount, done;
3363
3364 resultcount = 0;
3365 /* Assume the 'q' and 'M chars have been stripped. */
8d64371b 3366 limit = pkt + (rs->buf.size () - BUF_THREAD_ID_SIZE);
23860348 3367 /* done parse past here */
c906108c
SS
3368 pkt = unpack_byte (pkt, &count); /* count field */
3369 pkt = unpack_nibble (pkt, &done);
3370 /* The first threadid is the argument threadid. */
3371 pkt = unpack_threadid (pkt, original_echo); /* should match query packet */
3372 while ((count-- > 0) && (pkt < limit))
3373 {
3374 pkt = unpack_threadid (pkt, resultlist++);
3375 if (resultcount++ >= result_limit)
3376 break;
3377 }
3378 if (doneflag)
3379 *doneflag = done;
3380 return resultcount;
3381}
3382
6dc54d91
PA
3383/* Fetch the next batch of threads from the remote. Returns -1 if the
3384 qL packet is not supported, 0 on error and 1 on success. */
3385
6b8edb51
PA
3386int
3387remote_target::remote_get_threadlist (int startflag, threadref *nextthread,
3388 int result_limit, int *done, int *result_count,
3389 threadref *threadlist)
c906108c 3390{
d01949b6 3391 struct remote_state *rs = get_remote_state ();
c906108c
SS
3392 int result = 1;
3393
23860348 3394 /* Trancate result limit to be smaller than the packet size. */
3e43a32a
MS
3395 if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10)
3396 >= get_remote_packet_size ())
ea9c271d 3397 result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2;
c906108c 3398
8d64371b
TT
3399 pack_threadlist_request (rs->buf.data (), startflag, result_limit,
3400 nextthread);
6d820c5c 3401 putpkt (rs->buf);
8d64371b
TT
3402 getpkt (&rs->buf, 0);
3403 if (rs->buf[0] == '\0')
6dc54d91
PA
3404 {
3405 /* Packet not supported. */
3406 return -1;
3407 }
3408
3409 *result_count =
8d64371b 3410 parse_threadlist_response (&rs->buf[2], result_limit,
6dc54d91 3411 &rs->echo_nextthread, threadlist, done);
c906108c 3412
0d031856 3413 if (!threadmatch (&rs->echo_nextthread, nextthread))
c906108c 3414 {
23860348
MS
3415 /* FIXME: This is a good reason to drop the packet. */
3416 /* Possably, there is a duplicate response. */
c906108c
SS
3417 /* Possabilities :
3418 retransmit immediatly - race conditions
3419 retransmit after timeout - yes
3420 exit
3421 wait for packet, then exit
3422 */
8a3fe4f8 3423 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
23860348 3424 return 0; /* I choose simply exiting. */
c906108c
SS
3425 }
3426 if (*result_count <= 0)
3427 {
3428 if (*done != 1)
3429 {
8a3fe4f8 3430 warning (_("RMT ERROR : failed to get remote thread list."));
c906108c
SS
3431 result = 0;
3432 }
3433 return result; /* break; */
3434 }
3435 if (*result_count > result_limit)
3436 {
3437 *result_count = 0;
8a3fe4f8 3438 warning (_("RMT ERROR: threadlist response longer than requested."));
c906108c
SS
3439 return 0;
3440 }
3441 return result;
3442}
3443
6dc54d91
PA
3444/* Fetch the list of remote threads, with the qL packet, and call
3445 STEPFUNCTION for each thread found. Stops iterating and returns 1
3446 if STEPFUNCTION returns true. Stops iterating and returns 0 if the
3447 STEPFUNCTION returns false. If the packet is not supported,
3448 returns -1. */
c906108c 3449
6b8edb51
PA
3450int
3451remote_target::remote_threadlist_iterator (rmt_thread_action stepfunction,
3452 void *context, int looplimit)
c906108c 3453{
0d031856 3454 struct remote_state *rs = get_remote_state ();
c906108c
SS
3455 int done, i, result_count;
3456 int startflag = 1;
3457 int result = 1;
3458 int loopcount = 0;
c906108c
SS
3459
3460 done = 0;
3461 while (!done)
3462 {
3463 if (loopcount++ > looplimit)
3464 {
3465 result = 0;
8a3fe4f8 3466 warning (_("Remote fetch threadlist -infinite loop-."));
c906108c
SS
3467 break;
3468 }
6dc54d91
PA
3469 result = remote_get_threadlist (startflag, &rs->nextthread,
3470 MAXTHREADLISTRESULTS,
3471 &done, &result_count,
3472 rs->resultthreadlist);
3473 if (result <= 0)
3474 break;
23860348 3475 /* Clear for later iterations. */
c906108c
SS
3476 startflag = 0;
3477 /* Setup to resume next batch of thread references, set nextthread. */
3478 if (result_count >= 1)
0d031856
TT
3479 copy_threadref (&rs->nextthread,
3480 &rs->resultthreadlist[result_count - 1]);
c906108c
SS
3481 i = 0;
3482 while (result_count--)
6dc54d91
PA
3483 {
3484 if (!(*stepfunction) (&rs->resultthreadlist[i++], context))
3485 {
3486 result = 0;
3487 break;
3488 }
3489 }
c906108c
SS
3490 }
3491 return result;
3492}
3493
6dc54d91
PA
3494/* A thread found on the remote target. */
3495
21fe1c75 3496struct thread_item
6dc54d91 3497{
21fe1c75
SM
3498 explicit thread_item (ptid_t ptid_)
3499 : ptid (ptid_)
3500 {}
3501
3502 thread_item (thread_item &&other) = default;
3503 thread_item &operator= (thread_item &&other) = default;
3504
3505 DISABLE_COPY_AND_ASSIGN (thread_item);
3506
6dc54d91
PA
3507 /* The thread's PTID. */
3508 ptid_t ptid;
3509
21fe1c75
SM
3510 /* The thread's extra info. */
3511 std::string extra;
6dc54d91 3512
21fe1c75
SM
3513 /* The thread's name. */
3514 std::string name;
79efa585 3515
6dc54d91 3516 /* The core the thread was running on. -1 if not known. */
21fe1c75 3517 int core = -1;
f6327dcb
KB
3518
3519 /* The thread handle associated with the thread. */
21fe1c75 3520 gdb::byte_vector thread_handle;
21fe1c75 3521};
6dc54d91
PA
3522
3523/* Context passed around to the various methods listing remote
3524 threads. As new threads are found, they're added to the ITEMS
3525 vector. */
3526
3527struct threads_listing_context
3528{
21fe1c75
SM
3529 /* Return true if this object contains an entry for a thread with ptid
3530 PTID. */
6dc54d91 3531
21fe1c75
SM
3532 bool contains_thread (ptid_t ptid) const
3533 {
3534 auto match_ptid = [&] (const thread_item &item)
3535 {
3536 return item.ptid == ptid;
3537 };
80134cf5 3538
21fe1c75
SM
3539 auto it = std::find_if (this->items.begin (),
3540 this->items.end (),
3541 match_ptid);
80134cf5 3542
21fe1c75
SM
3543 return it != this->items.end ();
3544 }
80134cf5 3545
21fe1c75 3546 /* Remove the thread with ptid PTID. */
80134cf5 3547
21fe1c75
SM
3548 void remove_thread (ptid_t ptid)
3549 {
3550 auto match_ptid = [&] (const thread_item &item)
3551 {
3552 return item.ptid == ptid;
3553 };
cbb8991c 3554
21fe1c75
SM
3555 auto it = std::remove_if (this->items.begin (),
3556 this->items.end (),
3557 match_ptid);
cbb8991c 3558
21fe1c75
SM
3559 if (it != this->items.end ())
3560 this->items.erase (it);
3561 }
3562
3563 /* The threads found on the remote target. */
3564 std::vector<thread_item> items;
3565};
cbb8991c 3566
c906108c 3567static int
6dc54d91 3568remote_newthread_step (threadref *ref, void *data)
c906108c 3569{
19ba03f4
SM
3570 struct threads_listing_context *context
3571 = (struct threads_listing_context *) data;
21fe1c75
SM
3572 int pid = inferior_ptid.pid ();
3573 int lwp = threadref_to_int (ref);
3574 ptid_t ptid (pid, lwp);
6dc54d91 3575
21fe1c75 3576 context->items.emplace_back (ptid);
6dc54d91 3577
c906108c
SS
3578 return 1; /* continue iterator */
3579}
3580
3581#define CRAZY_MAX_THREADS 1000
3582
6b8edb51
PA
3583ptid_t
3584remote_target::remote_current_thread (ptid_t oldpid)
c906108c 3585{
d01949b6 3586 struct remote_state *rs = get_remote_state ();
c906108c
SS
3587
3588 putpkt ("qC");
8d64371b 3589 getpkt (&rs->buf, 0);
2e9f7625 3590 if (rs->buf[0] == 'Q' && rs->buf[1] == 'C')
c9f35b34 3591 {
256642e8 3592 const char *obuf;
c9f35b34
KB
3593 ptid_t result;
3594
3595 result = read_ptid (&rs->buf[2], &obuf);
3596 if (*obuf != '\0' && remote_debug)
3597 fprintf_unfiltered (gdb_stdlog,
3598 "warning: garbage in qC reply\n");
3599
3600 return result;
3601 }
c906108c
SS
3602 else
3603 return oldpid;
3604}
3605
6dc54d91 3606/* List remote threads using the deprecated qL packet. */
cce74817 3607
6b8edb51
PA
3608int
3609remote_target::remote_get_threads_with_ql (threads_listing_context *context)
c906108c 3610{
6dc54d91
PA
3611 if (remote_threadlist_iterator (remote_newthread_step, context,
3612 CRAZY_MAX_THREADS) >= 0)
3613 return 1;
3614
3615 return 0;
c906108c
SS
3616}
3617
dc146f7c
VP
3618#if defined(HAVE_LIBEXPAT)
3619
dc146f7c
VP
3620static void
3621start_thread (struct gdb_xml_parser *parser,
3622 const struct gdb_xml_element *element,
4d0fdd9b
SM
3623 void *user_data,
3624 std::vector<gdb_xml_value> &attributes)
dc146f7c 3625{
19ba03f4
SM
3626 struct threads_listing_context *data
3627 = (struct threads_listing_context *) user_data;
3d2c1d41 3628 struct gdb_xml_value *attr;
dc146f7c 3629
4d0fdd9b 3630 char *id = (char *) xml_find_attribute (attributes, "id")->value.get ();
21fe1c75
SM
3631 ptid_t ptid = read_ptid (id, NULL);
3632
3633 data->items.emplace_back (ptid);
3634 thread_item &item = data->items.back ();
dc146f7c 3635
3d2c1d41
PA
3636 attr = xml_find_attribute (attributes, "core");
3637 if (attr != NULL)
4d0fdd9b 3638 item.core = *(ULONGEST *) attr->value.get ();
dc146f7c 3639
79efa585 3640 attr = xml_find_attribute (attributes, "name");
21fe1c75 3641 if (attr != NULL)
4d0fdd9b 3642 item.name = (const char *) attr->value.get ();
79efa585 3643
f6327dcb
KB
3644 attr = xml_find_attribute (attributes, "handle");
3645 if (attr != NULL)
4d0fdd9b 3646 item.thread_handle = hex2bin ((const char *) attr->value.get ());
dc146f7c
VP
3647}
3648
3649static void
3650end_thread (struct gdb_xml_parser *parser,
3651 const struct gdb_xml_element *element,
3652 void *user_data, const char *body_text)
3653{
19ba03f4
SM
3654 struct threads_listing_context *data
3655 = (struct threads_listing_context *) user_data;
dc146f7c 3656
21fe1c75
SM
3657 if (body_text != NULL && *body_text != '\0')
3658 data->items.back ().extra = body_text;
dc146f7c
VP
3659}
3660
3661const struct gdb_xml_attribute thread_attributes[] = {
3662 { "id", GDB_XML_AF_NONE, NULL, NULL },
3663 { "core", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
79efa585 3664 { "name", GDB_XML_AF_OPTIONAL, NULL, NULL },
f6327dcb 3665 { "handle", GDB_XML_AF_OPTIONAL, NULL, NULL },
dc146f7c
VP
3666 { NULL, GDB_XML_AF_NONE, NULL, NULL }
3667};
3668
3669const struct gdb_xml_element thread_children[] = {
3670 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3671};
3672
3673const struct gdb_xml_element threads_children[] = {
3674 { "thread", thread_attributes, thread_children,
3675 GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL,
3676 start_thread, end_thread },
3677 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3678};
3679
3680const struct gdb_xml_element threads_elements[] = {
3681 { "threads", NULL, threads_children,
3682 GDB_XML_EF_NONE, NULL, NULL },
3683 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3684};
3685
3686#endif
3687
6dc54d91 3688/* List remote threads using qXfer:threads:read. */
9d1f7ab2 3689
6b8edb51
PA
3690int
3691remote_target::remote_get_threads_with_qxfer (threads_listing_context *context)
0f71a2f6 3692{
dc146f7c 3693#if defined(HAVE_LIBEXPAT)
4082afcc 3694 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
dc146f7c 3695 {
9018be22 3696 gdb::optional<gdb::char_vector> xml
6b8edb51 3697 = target_read_stralloc (this, TARGET_OBJECT_THREADS, NULL);
efc0eabd 3698
9018be22 3699 if (xml && (*xml)[0] != '\0')
dc146f7c 3700 {
6dc54d91 3701 gdb_xml_parse_quick (_("threads"), "threads.dtd",
9018be22 3702 threads_elements, xml->data (), context);
dc146f7c
VP
3703 }
3704
6dc54d91 3705 return 1;
dc146f7c
VP
3706 }
3707#endif
3708
6dc54d91
PA
3709 return 0;
3710}
3711
3712/* List remote threads using qfThreadInfo/qsThreadInfo. */
3713
6b8edb51
PA
3714int
3715remote_target::remote_get_threads_with_qthreadinfo (threads_listing_context *context)
6dc54d91
PA
3716{
3717 struct remote_state *rs = get_remote_state ();
3718
b80fafe3 3719 if (rs->use_threadinfo_query)
9d1f7ab2 3720 {
256642e8 3721 const char *bufp;
6dc54d91 3722
9d1f7ab2 3723 putpkt ("qfThreadInfo");
8d64371b
TT
3724 getpkt (&rs->buf, 0);
3725 bufp = rs->buf.data ();
9d1f7ab2 3726 if (bufp[0] != '\0') /* q packet recognized */
802188a7 3727 {
9d1f7ab2
MS
3728 while (*bufp++ == 'm') /* reply contains one or more TID */
3729 {
3730 do
3731 {
21fe1c75
SM
3732 ptid_t ptid = read_ptid (bufp, &bufp);
3733 context->items.emplace_back (ptid);
9d1f7ab2
MS
3734 }
3735 while (*bufp++ == ','); /* comma-separated list */
3736 putpkt ("qsThreadInfo");
8d64371b
TT
3737 getpkt (&rs->buf, 0);
3738 bufp = rs->buf.data ();
9d1f7ab2 3739 }
6dc54d91
PA
3740 return 1;
3741 }
3742 else
3743 {
3744 /* Packet not recognized. */
3745 rs->use_threadinfo_query = 0;
9d1f7ab2
MS
3746 }
3747 }
3748
6dc54d91
PA
3749 return 0;
3750}
3751
e8032dde 3752/* Implement the to_update_thread_list function for the remote
6dc54d91
PA
3753 targets. */
3754
f6ac5f3d
PA
3755void
3756remote_target::update_thread_list ()
6dc54d91 3757{
6dc54d91 3758 struct threads_listing_context context;
ab970af1 3759 int got_list = 0;
e8032dde 3760
6dc54d91
PA
3761 /* We have a few different mechanisms to fetch the thread list. Try
3762 them all, starting with the most preferred one first, falling
3763 back to older methods. */
6b8edb51
PA
3764 if (remote_get_threads_with_qxfer (&context)
3765 || remote_get_threads_with_qthreadinfo (&context)
3766 || remote_get_threads_with_ql (&context))
6dc54d91 3767 {
ab970af1
PA
3768 got_list = 1;
3769
21fe1c75 3770 if (context.items.empty ()
f6ac5f3d 3771 && remote_thread_always_alive (inferior_ptid))
7d1a114c
PA
3772 {
3773 /* Some targets don't really support threads, but still
3774 reply an (empty) thread list in response to the thread
3775 listing packets, instead of replying "packet not
3776 supported". Exit early so we don't delete the main
3777 thread. */
7d1a114c
PA
3778 return;
3779 }
3780
ab970af1
PA
3781 /* CONTEXT now holds the current thread list on the remote
3782 target end. Delete GDB-side threads no longer found on the
3783 target. */
08036331 3784 for (thread_info *tp : all_threads_safe ())
cbb8991c 3785 {
21fe1c75 3786 if (!context.contains_thread (tp->ptid))
ab970af1
PA
3787 {
3788 /* Not found. */
00431a78 3789 delete_thread (tp);
ab970af1 3790 }
cbb8991c
DB
3791 }
3792
3793 /* Remove any unreported fork child threads from CONTEXT so
3794 that we don't interfere with follow fork, which is where
3795 creation of such threads is handled. */
3796 remove_new_fork_children (&context);
74531fed 3797
ab970af1 3798 /* And now add threads we don't know about yet to our list. */
21fe1c75 3799 for (thread_item &item : context.items)
6dc54d91 3800 {
21fe1c75 3801 if (item.ptid != null_ptid)
6dc54d91 3802 {
6dc54d91 3803 /* In non-stop mode, we assume new found threads are
0d5b594f
PA
3804 executing until proven otherwise with a stop reply.
3805 In all-stop, we can only get here if all threads are
6dc54d91 3806 stopped. */
0d5b594f 3807 int executing = target_is_non_stop_p () ? 1 : 0;
6dc54d91 3808
21fe1c75 3809 remote_notice_new_inferior (item.ptid, executing);
6dc54d91 3810
08036331 3811 thread_info *tp = find_thread_ptid (item.ptid);
00431a78 3812 remote_thread_info *info = get_remote_thread_info (tp);
21fe1c75 3813 info->core = item.core;
7aabaf9d
SM
3814 info->extra = std::move (item.extra);
3815 info->name = std::move (item.name);
3816 info->thread_handle = std::move (item.thread_handle);
6dc54d91
PA
3817 }
3818 }
3819 }
3820
ab970af1
PA
3821 if (!got_list)
3822 {
3823 /* If no thread listing method is supported, then query whether
3824 each known thread is alive, one by one, with the T packet.
3825 If the target doesn't support threads at all, then this is a
3826 no-op. See remote_thread_alive. */
3827 prune_threads ();
3828 }
9d1f7ab2
MS
3829}
3830
802188a7 3831/*
9d1f7ab2
MS
3832 * Collect a descriptive string about the given thread.
3833 * The target may say anything it wants to about the thread
3834 * (typically info about its blocked / runnable state, name, etc.).
3835 * This string will appear in the info threads display.
802188a7 3836 *
9d1f7ab2
MS
3837 * Optional: targets are not required to implement this function.
3838 */
3839
f6ac5f3d
PA
3840const char *
3841remote_target::extra_thread_info (thread_info *tp)
9d1f7ab2 3842{
d01949b6 3843 struct remote_state *rs = get_remote_state ();
9d1f7ab2
MS
3844 int set;
3845 threadref id;
3846 struct gdb_ext_thread_info threadinfo;
9d1f7ab2 3847
5d93a237 3848 if (rs->remote_desc == 0) /* paranoia */
8e65ff28 3849 internal_error (__FILE__, __LINE__,
e2e0b3e5 3850 _("remote_threads_extra_info"));
9d1f7ab2 3851
d7e15655 3852 if (tp->ptid == magic_null_ptid
e38504b3 3853 || (tp->ptid.pid () != 0 && tp->ptid.lwp () == 0))
60e569b9
PA
3854 /* This is the main thread which was added by GDB. The remote
3855 server doesn't know about it. */
3856 return NULL;
3857
c76a8ea3
PA
3858 std::string &extra = get_remote_thread_info (tp)->extra;
3859
3860 /* If already have cached info, use it. */
3861 if (!extra.empty ())
3862 return extra.c_str ();
3863
4082afcc 3864 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
dc146f7c 3865 {
c76a8ea3
PA
3866 /* If we're using qXfer:threads:read, then the extra info is
3867 included in the XML. So if we didn't have anything cached,
3868 it's because there's really no extra info. */
3869 return NULL;
dc146f7c
VP
3870 }
3871
b80fafe3 3872 if (rs->use_threadextra_query)
9d1f7ab2 3873 {
8d64371b
TT
3874 char *b = rs->buf.data ();
3875 char *endb = b + get_remote_packet_size ();
82f73884
PA
3876
3877 xsnprintf (b, endb - b, "qThreadExtraInfo,");
3878 b += strlen (b);
3879 write_ptid (b, endb, tp->ptid);
3880
2e9f7625 3881 putpkt (rs->buf);
8d64371b 3882 getpkt (&rs->buf, 0);
2e9f7625 3883 if (rs->buf[0] != 0)
9d1f7ab2 3884 {
8d64371b
TT
3885 extra.resize (strlen (rs->buf.data ()) / 2);
3886 hex2bin (rs->buf.data (), (gdb_byte *) &extra[0], extra.size ());
c76a8ea3 3887 return extra.c_str ();
9d1f7ab2 3888 }
0f71a2f6 3889 }
9d1f7ab2
MS
3890
3891 /* If the above query fails, fall back to the old method. */
b80fafe3 3892 rs->use_threadextra_query = 0;
9d1f7ab2
MS
3893 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
3894 | TAG_MOREDISPLAY | TAG_DISPLAY;
e38504b3 3895 int_to_threadref (&id, tp->ptid.lwp ());
9d1f7ab2
MS
3896 if (remote_get_threadinfo (&id, set, &threadinfo))
3897 if (threadinfo.active)
0f71a2f6 3898 {
9d1f7ab2 3899 if (*threadinfo.shortname)
c76a8ea3 3900 string_appendf (extra, " Name: %s", threadinfo.shortname);
9d1f7ab2 3901 if (*threadinfo.display)
c76a8ea3
PA
3902 {
3903 if (!extra.empty ())
3904 extra += ',';
3905 string_appendf (extra, " State: %s", threadinfo.display);
3906 }
9d1f7ab2 3907 if (*threadinfo.more_display)
c5aa993b 3908 {
c76a8ea3
PA
3909 if (!extra.empty ())
3910 extra += ',';
3911 string_appendf (extra, " Priority: %s", threadinfo.more_display);
c5aa993b 3912 }
c76a8ea3 3913 return extra.c_str ();
0f71a2f6 3914 }
9d1f7ab2 3915 return NULL;
0f71a2f6 3916}
c906108c 3917\f
c5aa993b 3918
f6ac5f3d
PA
3919bool
3920remote_target::static_tracepoint_marker_at (CORE_ADDR addr,
3921 struct static_tracepoint_marker *marker)
0fb4aa4b
PA
3922{
3923 struct remote_state *rs = get_remote_state ();
8d64371b 3924 char *p = rs->buf.data ();
0fb4aa4b 3925
bba74b36 3926 xsnprintf (p, get_remote_packet_size (), "qTSTMat:");
0fb4aa4b
PA
3927 p += strlen (p);
3928 p += hexnumstr (p, addr);
3929 putpkt (rs->buf);
8d64371b
TT
3930 getpkt (&rs->buf, 0);
3931 p = rs->buf.data ();
0fb4aa4b
PA
3932
3933 if (*p == 'E')
3934 error (_("Remote failure reply: %s"), p);
3935
3936 if (*p++ == 'm')
3937 {
256642e8 3938 parse_static_tracepoint_marker_definition (p, NULL, marker);
5d9310c4 3939 return true;
0fb4aa4b
PA
3940 }
3941
5d9310c4 3942 return false;
0fb4aa4b
PA
3943}
3944
f6ac5f3d
PA
3945std::vector<static_tracepoint_marker>
3946remote_target::static_tracepoint_markers_by_strid (const char *strid)
0fb4aa4b
PA
3947{
3948 struct remote_state *rs = get_remote_state ();
5d9310c4 3949 std::vector<static_tracepoint_marker> markers;
256642e8 3950 const char *p;
5d9310c4 3951 static_tracepoint_marker marker;
0fb4aa4b
PA
3952
3953 /* Ask for a first packet of static tracepoint marker
3954 definition. */
3955 putpkt ("qTfSTM");
8d64371b
TT
3956 getpkt (&rs->buf, 0);
3957 p = rs->buf.data ();
0fb4aa4b
PA
3958 if (*p == 'E')
3959 error (_("Remote failure reply: %s"), p);
3960
0fb4aa4b
PA
3961 while (*p++ == 'm')
3962 {
0fb4aa4b
PA
3963 do
3964 {
5d9310c4 3965 parse_static_tracepoint_marker_definition (p, &p, &marker);
0fb4aa4b 3966
5d9310c4
SM
3967 if (strid == NULL || marker.str_id == strid)
3968 markers.push_back (std::move (marker));
0fb4aa4b
PA
3969 }
3970 while (*p++ == ','); /* comma-separated list */
3971 /* Ask for another packet of static tracepoint definition. */
3972 putpkt ("qTsSTM");
8d64371b
TT
3973 getpkt (&rs->buf, 0);
3974 p = rs->buf.data ();
0fb4aa4b
PA
3975 }
3976
0fb4aa4b
PA
3977 return markers;
3978}
3979
3980\f
10760264
JB
3981/* Implement the to_get_ada_task_ptid function for the remote targets. */
3982
f6ac5f3d
PA
3983ptid_t
3984remote_target::get_ada_task_ptid (long lwp, long thread)
10760264 3985{
e99b03dc 3986 return ptid_t (inferior_ptid.pid (), lwp, 0);
10760264
JB
3987}
3988\f
3989
24b06219 3990/* Restart the remote side; this is an extended protocol operation. */
c906108c 3991
6b8edb51
PA
3992void
3993remote_target::extended_remote_restart ()
c906108c 3994{
d01949b6 3995 struct remote_state *rs = get_remote_state ();
c906108c
SS
3996
3997 /* Send the restart command; for reasons I don't understand the
3998 remote side really expects a number after the "R". */
8d64371b 3999 xsnprintf (rs->buf.data (), get_remote_packet_size (), "R%x", 0);
6d820c5c 4000 putpkt (rs->buf);
c906108c 4001
ad9a8f3f 4002 remote_fileio_reset ();
c906108c
SS
4003}
4004\f
4005/* Clean up connection to a remote debugger. */
4006
f6ac5f3d
PA
4007void
4008remote_target::close ()
c906108c 4009{
048094ac 4010 /* Make sure we leave stdin registered in the event loop. */
f6ac5f3d 4011 terminal_ours ();
ce5ce7ed 4012
ce5ce7ed 4013 /* We don't have a connection to the remote stub anymore. Get rid
f67fd822
PM
4014 of all the inferiors and their threads we were controlling.
4015 Reset inferior_ptid to null_ptid first, as otherwise has_stack_frame
4016 will be unable to find the thread corresponding to (pid, 0, 0). */
0f2caa1b 4017 inferior_ptid = null_ptid;
f67fd822 4018 discard_all_inferiors ();
ce5ce7ed 4019
6b8edb51
PA
4020 trace_reset_local_state ();
4021
4022 delete this;
4023}
4024
4025remote_target::~remote_target ()
4026{
4027 struct remote_state *rs = get_remote_state ();
4028
4029 /* Check for NULL because we may get here with a partially
4030 constructed target/connection. */
4031 if (rs->remote_desc == nullptr)
4032 return;
4033
4034 serial_close (rs->remote_desc);
4035
4036 /* We are destroying the remote target, so we should discard
f48ff2a7 4037 everything of this target. */
6b8edb51 4038 discard_pending_stop_replies_in_queue ();
74531fed 4039
6b8edb51
PA
4040 if (rs->remote_async_inferior_event_token)
4041 delete_async_event_handler (&rs->remote_async_inferior_event_token);
722247f1 4042
97dfbadd 4043 delete rs->notif_state;
c906108c
SS
4044}
4045
23860348 4046/* Query the remote side for the text, data and bss offsets. */
c906108c 4047
6b8edb51
PA
4048void
4049remote_target::get_offsets ()
c906108c 4050{
d01949b6 4051 struct remote_state *rs = get_remote_state ();
2e9f7625 4052 char *buf;
085dd6e6 4053 char *ptr;
31d99776
DJ
4054 int lose, num_segments = 0, do_sections, do_segments;
4055 CORE_ADDR text_addr, data_addr, bss_addr, segments[2];
c906108c 4056 struct section_offsets *offs;
31d99776
DJ
4057 struct symfile_segment_data *data;
4058
4059 if (symfile_objfile == NULL)
4060 return;
c906108c
SS
4061
4062 putpkt ("qOffsets");
8d64371b
TT
4063 getpkt (&rs->buf, 0);
4064 buf = rs->buf.data ();
c906108c
SS
4065
4066 if (buf[0] == '\000')
4067 return; /* Return silently. Stub doesn't support
23860348 4068 this command. */
c906108c
SS
4069 if (buf[0] == 'E')
4070 {
8a3fe4f8 4071 warning (_("Remote failure reply: %s"), buf);
c906108c
SS
4072 return;
4073 }
4074
4075 /* Pick up each field in turn. This used to be done with scanf, but
4076 scanf will make trouble if CORE_ADDR size doesn't match
4077 conversion directives correctly. The following code will work
4078 with any size of CORE_ADDR. */
4079 text_addr = data_addr = bss_addr = 0;
4080 ptr = buf;
4081 lose = 0;
4082
61012eef 4083 if (startswith (ptr, "Text="))
c906108c
SS
4084 {
4085 ptr += 5;
4086 /* Don't use strtol, could lose on big values. */
4087 while (*ptr && *ptr != ';')
4088 text_addr = (text_addr << 4) + fromhex (*ptr++);
c906108c 4089
61012eef 4090 if (startswith (ptr, ";Data="))
31d99776
DJ
4091 {
4092 ptr += 6;
4093 while (*ptr && *ptr != ';')
4094 data_addr = (data_addr << 4) + fromhex (*ptr++);
4095 }
4096 else
4097 lose = 1;
4098
61012eef 4099 if (!lose && startswith (ptr, ";Bss="))
31d99776
DJ
4100 {
4101 ptr += 5;
4102 while (*ptr && *ptr != ';')
4103 bss_addr = (bss_addr << 4) + fromhex (*ptr++);
c906108c 4104
31d99776
DJ
4105 if (bss_addr != data_addr)
4106 warning (_("Target reported unsupported offsets: %s"), buf);
4107 }
4108 else
4109 lose = 1;
4110 }
61012eef 4111 else if (startswith (ptr, "TextSeg="))
c906108c 4112 {
31d99776
DJ
4113 ptr += 8;
4114 /* Don't use strtol, could lose on big values. */
c906108c 4115 while (*ptr && *ptr != ';')
31d99776
DJ
4116 text_addr = (text_addr << 4) + fromhex (*ptr++);
4117 num_segments = 1;
4118
61012eef 4119 if (startswith (ptr, ";DataSeg="))
31d99776
DJ
4120 {
4121 ptr += 9;
4122 while (*ptr && *ptr != ';')
4123 data_addr = (data_addr << 4) + fromhex (*ptr++);
4124 num_segments++;
4125 }
c906108c
SS
4126 }
4127 else
4128 lose = 1;
4129
4130 if (lose)
8a3fe4f8 4131 error (_("Malformed response to offset query, %s"), buf);
31d99776
DJ
4132 else if (*ptr != '\0')
4133 warning (_("Target reported unsupported offsets: %s"), buf);
c906108c 4134
802188a7 4135 offs = ((struct section_offsets *)
a39a16c4 4136 alloca (SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections)));
802188a7 4137 memcpy (offs, symfile_objfile->section_offsets,
a39a16c4 4138 SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections));
c906108c 4139
31d99776
DJ
4140 data = get_symfile_segment_data (symfile_objfile->obfd);
4141 do_segments = (data != NULL);
4142 do_sections = num_segments == 0;
c906108c 4143
28c32713 4144 if (num_segments > 0)
31d99776 4145 {
31d99776
DJ
4146 segments[0] = text_addr;
4147 segments[1] = data_addr;
4148 }
28c32713
JB
4149 /* If we have two segments, we can still try to relocate everything
4150 by assuming that the .text and .data offsets apply to the whole
4151 text and data segments. Convert the offsets given in the packet
4152 to base addresses for symfile_map_offsets_to_segments. */
4153 else if (data && data->num_segments == 2)
4154 {
4155 segments[0] = data->segment_bases[0] + text_addr;
4156 segments[1] = data->segment_bases[1] + data_addr;
4157 num_segments = 2;
4158 }
8d385431
DJ
4159 /* If the object file has only one segment, assume that it is text
4160 rather than data; main programs with no writable data are rare,
4161 but programs with no code are useless. Of course the code might
4162 have ended up in the data segment... to detect that we would need
4163 the permissions here. */
4164 else if (data && data->num_segments == 1)
4165 {
4166 segments[0] = data->segment_bases[0] + text_addr;
4167 num_segments = 1;
4168 }
28c32713
JB
4169 /* There's no way to relocate by segment. */
4170 else
4171 do_segments = 0;
31d99776
DJ
4172
4173 if (do_segments)
4174 {
4175 int ret = symfile_map_offsets_to_segments (symfile_objfile->obfd, data,
4176 offs, num_segments, segments);
4177
4178 if (ret == 0 && !do_sections)
3e43a32a
MS
4179 error (_("Can not handle qOffsets TextSeg "
4180 "response with this symbol file"));
31d99776
DJ
4181
4182 if (ret > 0)
4183 do_sections = 0;
4184 }
c906108c 4185
9ef895d6
DJ
4186 if (data)
4187 free_symfile_segment_data (data);
31d99776
DJ
4188
4189 if (do_sections)
4190 {
4191 offs->offsets[SECT_OFF_TEXT (symfile_objfile)] = text_addr;
4192
3e43a32a
MS
4193 /* This is a temporary kludge to force data and bss to use the
4194 same offsets because that's what nlmconv does now. The real
4195 solution requires changes to the stub and remote.c that I
4196 don't have time to do right now. */
31d99776
DJ
4197
4198 offs->offsets[SECT_OFF_DATA (symfile_objfile)] = data_addr;
4199 offs->offsets[SECT_OFF_BSS (symfile_objfile)] = data_addr;
4200 }
c906108c
SS
4201
4202 objfile_relocate (symfile_objfile, offs);
4203}
4204
9a7071a8 4205/* Send interrupt_sequence to remote target. */
6b8edb51
PA
4206
4207void
4208remote_target::send_interrupt_sequence ()
9a7071a8 4209{
5d93a237
TT
4210 struct remote_state *rs = get_remote_state ();
4211
9a7071a8 4212 if (interrupt_sequence_mode == interrupt_sequence_control_c)
c33e31fd 4213 remote_serial_write ("\x03", 1);
9a7071a8 4214 else if (interrupt_sequence_mode == interrupt_sequence_break)
5d93a237 4215 serial_send_break (rs->remote_desc);
9a7071a8
JB
4216 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
4217 {
5d93a237 4218 serial_send_break (rs->remote_desc);
c33e31fd 4219 remote_serial_write ("g", 1);
9a7071a8
JB
4220 }
4221 else
4222 internal_error (__FILE__, __LINE__,
4223 _("Invalid value for interrupt_sequence_mode: %s."),
4224 interrupt_sequence_mode);
4225}
4226
3405876a
PA
4227
4228/* If STOP_REPLY is a T stop reply, look for the "thread" register,
4229 and extract the PTID. Returns NULL_PTID if not found. */
4230
4231static ptid_t
4232stop_reply_extract_thread (char *stop_reply)
4233{
4234 if (stop_reply[0] == 'T' && strlen (stop_reply) > 3)
4235 {
256642e8 4236 const char *p;
3405876a
PA
4237
4238 /* Txx r:val ; r:val (...) */
4239 p = &stop_reply[3];
4240
4241 /* Look for "register" named "thread". */
4242 while (*p != '\0')
4243 {
256642e8 4244 const char *p1;
3405876a
PA
4245
4246 p1 = strchr (p, ':');
4247 if (p1 == NULL)
4248 return null_ptid;
4249
4250 if (strncmp (p, "thread", p1 - p) == 0)
4251 return read_ptid (++p1, &p);
4252
4253 p1 = strchr (p, ';');
4254 if (p1 == NULL)
4255 return null_ptid;
4256 p1++;
4257
4258 p = p1;
4259 }
4260 }
4261
4262 return null_ptid;
4263}
4264
b7ea362b
PA
4265/* Determine the remote side's current thread. If we have a stop
4266 reply handy (in WAIT_STATUS), maybe it's a T stop reply with a
4267 "thread" register we can extract the current thread from. If not,
4268 ask the remote which is the current thread with qC. The former
4269 method avoids a roundtrip. */
4270
6b8edb51
PA
4271ptid_t
4272remote_target::get_current_thread (char *wait_status)
b7ea362b 4273{
6a49a997 4274 ptid_t ptid = null_ptid;
b7ea362b
PA
4275
4276 /* Note we don't use remote_parse_stop_reply as that makes use of
4277 the target architecture, which we haven't yet fully determined at
4278 this point. */
4279 if (wait_status != NULL)
4280 ptid = stop_reply_extract_thread (wait_status);
d7e15655 4281 if (ptid == null_ptid)
b7ea362b
PA
4282 ptid = remote_current_thread (inferior_ptid);
4283
4284 return ptid;
4285}
4286
49c62f2e
PA
4287/* Query the remote target for which is the current thread/process,
4288 add it to our tables, and update INFERIOR_PTID. The caller is
4289 responsible for setting the state such that the remote end is ready
3405876a
PA
4290 to return the current thread.
4291
4292 This function is called after handling the '?' or 'vRun' packets,
4293 whose response is a stop reply from which we can also try
4294 extracting the thread. If the target doesn't support the explicit
4295 qC query, we infer the current thread from that stop reply, passed
4296 in in WAIT_STATUS, which may be NULL. */
49c62f2e 4297
6b8edb51
PA
4298void
4299remote_target::add_current_inferior_and_thread (char *wait_status)
49c62f2e
PA
4300{
4301 struct remote_state *rs = get_remote_state ();
9ab8741a 4302 bool fake_pid_p = false;
49c62f2e
PA
4303
4304 inferior_ptid = null_ptid;
4305
b7ea362b 4306 /* Now, if we have thread information, update inferior_ptid. */
87215ad1 4307 ptid_t curr_ptid = get_current_thread (wait_status);
3405876a 4308
87215ad1 4309 if (curr_ptid != null_ptid)
49c62f2e
PA
4310 {
4311 if (!remote_multi_process_p (rs))
9ab8741a 4312 fake_pid_p = true;
49c62f2e
PA
4313 }
4314 else
4315 {
4316 /* Without this, some commands which require an active target
4317 (such as kill) won't work. This variable serves (at least)
4318 double duty as both the pid of the target process (if it has
4319 such), and as a flag indicating that a target is active. */
87215ad1 4320 curr_ptid = magic_null_ptid;
9ab8741a 4321 fake_pid_p = true;
49c62f2e
PA
4322 }
4323
e99b03dc 4324 remote_add_inferior (fake_pid_p, curr_ptid.pid (), -1, 1);
49c62f2e 4325
87215ad1
SDJ
4326 /* Add the main thread and switch to it. Don't try reading
4327 registers yet, since we haven't fetched the target description
4328 yet. */
4329 thread_info *tp = add_thread_silent (curr_ptid);
4330 switch_to_thread_no_regs (tp);
49c62f2e
PA
4331}
4332
6efcd9a8
PA
4333/* Print info about a thread that was found already stopped on
4334 connection. */
4335
4336static void
4337print_one_stopped_thread (struct thread_info *thread)
4338{
4339 struct target_waitstatus *ws = &thread->suspend.waitstatus;
4340
00431a78 4341 switch_to_thread (thread);
f2ffa92b 4342 thread->suspend.stop_pc = get_frame_pc (get_current_frame ());
6efcd9a8
PA
4343 set_current_sal_from_frame (get_current_frame ());
4344
4345 thread->suspend.waitstatus_pending_p = 0;
4346
4347 if (ws->kind == TARGET_WAITKIND_STOPPED)
4348 {
4349 enum gdb_signal sig = ws->value.sig;
4350
4351 if (signal_print_state (sig))
76727919 4352 gdb::observers::signal_received.notify (sig);
6efcd9a8 4353 }
76727919 4354 gdb::observers::normal_stop.notify (NULL, 1);
6efcd9a8
PA
4355}
4356
221e1a37
PA
4357/* Process all initial stop replies the remote side sent in response
4358 to the ? packet. These indicate threads that were already stopped
4359 on initial connection. We mark these threads as stopped and print
4360 their current frame before giving the user the prompt. */
4361
6b8edb51
PA
4362void
4363remote_target::process_initial_stop_replies (int from_tty)
221e1a37
PA
4364{
4365 int pending_stop_replies = stop_reply_queue_length ();
6efcd9a8
PA
4366 struct thread_info *selected = NULL;
4367 struct thread_info *lowest_stopped = NULL;
4368 struct thread_info *first = NULL;
221e1a37
PA
4369
4370 /* Consume the initial pending events. */
4371 while (pending_stop_replies-- > 0)
4372 {
4373 ptid_t waiton_ptid = minus_one_ptid;
4374 ptid_t event_ptid;
4375 struct target_waitstatus ws;
4376 int ignore_event = 0;
4377
4378 memset (&ws, 0, sizeof (ws));
4379 event_ptid = target_wait (waiton_ptid, &ws, TARGET_WNOHANG);
4380 if (remote_debug)
4381 print_target_wait_results (waiton_ptid, event_ptid, &ws);
4382
4383 switch (ws.kind)
4384 {
4385 case TARGET_WAITKIND_IGNORE:
4386 case TARGET_WAITKIND_NO_RESUMED:
4387 case TARGET_WAITKIND_SIGNALLED:
4388 case TARGET_WAITKIND_EXITED:
4389 /* We shouldn't see these, but if we do, just ignore. */
4390 if (remote_debug)
4391 fprintf_unfiltered (gdb_stdlog, "remote: event ignored\n");
4392 ignore_event = 1;
4393 break;
4394
4395 case TARGET_WAITKIND_EXECD:
4396 xfree (ws.value.execd_pathname);
4397 break;
4398 default:
4399 break;
4400 }
4401
4402 if (ignore_event)
4403 continue;
4404
b926417a 4405 struct thread_info *evthread = find_thread_ptid (event_ptid);
221e1a37
PA
4406
4407 if (ws.kind == TARGET_WAITKIND_STOPPED)
4408 {
4409 enum gdb_signal sig = ws.value.sig;
4410
4411 /* Stubs traditionally report SIGTRAP as initial signal,
4412 instead of signal 0. Suppress it. */
4413 if (sig == GDB_SIGNAL_TRAP)
4414 sig = GDB_SIGNAL_0;
b926417a 4415 evthread->suspend.stop_signal = sig;
6efcd9a8
PA
4416 ws.value.sig = sig;
4417 }
221e1a37 4418
b926417a 4419 evthread->suspend.waitstatus = ws;
6efcd9a8
PA
4420
4421 if (ws.kind != TARGET_WAITKIND_STOPPED
4422 || ws.value.sig != GDB_SIGNAL_0)
b926417a 4423 evthread->suspend.waitstatus_pending_p = 1;
6efcd9a8
PA
4424
4425 set_executing (event_ptid, 0);
4426 set_running (event_ptid, 0);
b926417a 4427 get_remote_thread_info (evthread)->vcont_resumed = 0;
6efcd9a8
PA
4428 }
4429
4430 /* "Notice" the new inferiors before anything related to
4431 registers/memory. */
08036331 4432 for (inferior *inf : all_non_exited_inferiors ())
6efcd9a8 4433 {
6efcd9a8
PA
4434 inf->needs_setup = 1;
4435
4436 if (non_stop)
4437 {
08036331 4438 thread_info *thread = any_live_thread_of_inferior (inf);
00431a78 4439 notice_new_inferior (thread, thread->state == THREAD_RUNNING,
6efcd9a8
PA
4440 from_tty);
4441 }
4442 }
4443
4444 /* If all-stop on top of non-stop, pause all threads. Note this
4445 records the threads' stop pc, so must be done after "noticing"
4446 the inferiors. */
4447 if (!non_stop)
4448 {
4449 stop_all_threads ();
4450
4451 /* If all threads of an inferior were already stopped, we
4452 haven't setup the inferior yet. */
08036331 4453 for (inferior *inf : all_non_exited_inferiors ())
6efcd9a8 4454 {
6efcd9a8
PA
4455 if (inf->needs_setup)
4456 {
08036331 4457 thread_info *thread = any_live_thread_of_inferior (inf);
6efcd9a8
PA
4458 switch_to_thread_no_regs (thread);
4459 setup_inferior (0);
4460 }
4461 }
221e1a37 4462 }
6efcd9a8
PA
4463
4464 /* Now go over all threads that are stopped, and print their current
4465 frame. If all-stop, then if there's a signalled thread, pick
4466 that as current. */
08036331 4467 for (thread_info *thread : all_non_exited_threads ())
6efcd9a8 4468 {
6efcd9a8
PA
4469 if (first == NULL)
4470 first = thread;
4471
4472 if (!non_stop)
00431a78 4473 thread->set_running (false);
6efcd9a8
PA
4474 else if (thread->state != THREAD_STOPPED)
4475 continue;
4476
6efcd9a8
PA
4477 if (selected == NULL
4478 && thread->suspend.waitstatus_pending_p)
4479 selected = thread;
4480
5d5658a1
PA
4481 if (lowest_stopped == NULL
4482 || thread->inf->num < lowest_stopped->inf->num
4483 || thread->per_inf_num < lowest_stopped->per_inf_num)
6efcd9a8
PA
4484 lowest_stopped = thread;
4485
4486 if (non_stop)
4487 print_one_stopped_thread (thread);
4488 }
4489
4490 /* In all-stop, we only print the status of one thread, and leave
4491 others with their status pending. */
4492 if (!non_stop)
4493 {
08036331 4494 thread_info *thread = selected;
6efcd9a8
PA
4495 if (thread == NULL)
4496 thread = lowest_stopped;
4497 if (thread == NULL)
4498 thread = first;
4499
4500 print_one_stopped_thread (thread);
4501 }
4502
4503 /* For "info program". */
08036331 4504 thread_info *thread = inferior_thread ();
6efcd9a8
PA
4505 if (thread->state == THREAD_STOPPED)
4506 set_last_target_status (inferior_ptid, thread->suspend.waitstatus);
221e1a37
PA
4507}
4508
048094ac
PA
4509/* Start the remote connection and sync state. */
4510
f6ac5f3d
PA
4511void
4512remote_target::start_remote (int from_tty, int extended_p)
c906108c 4513{
c8d104ad
PA
4514 struct remote_state *rs = get_remote_state ();
4515 struct packet_config *noack_config;
2d717e4f 4516 char *wait_status = NULL;
8621d6a9 4517
048094ac
PA
4518 /* Signal other parts that we're going through the initial setup,
4519 and so things may not be stable yet. E.g., we don't try to
4520 install tracepoints until we've relocated symbols. Also, a
4521 Ctrl-C before we're connected and synced up can't interrupt the
4522 target. Instead, it offers to drop the (potentially wedged)
4523 connection. */
4524 rs->starting_up = 1;
4525
522002f9 4526 QUIT;
c906108c 4527
9a7071a8
JB
4528 if (interrupt_on_connect)
4529 send_interrupt_sequence ();
4530
57e12211 4531 /* Ack any packet which the remote side has already sent. */
048094ac 4532 remote_serial_write ("+", 1);
1e51243a 4533
c8d104ad
PA
4534 /* The first packet we send to the target is the optional "supported
4535 packets" request. If the target can answer this, it will tell us
4536 which later probes to skip. */
4537 remote_query_supported ();
4538
d914c394 4539 /* If the stub wants to get a QAllow, compose one and send it. */
4082afcc 4540 if (packet_support (PACKET_QAllow) != PACKET_DISABLE)
f6ac5f3d 4541 set_permissions ();
d914c394 4542
57809e5e
JK
4543 /* gdbserver < 7.7 (before its fix from 2013-12-11) did reply to any
4544 unknown 'v' packet with string "OK". "OK" gets interpreted by GDB
4545 as a reply to known packet. For packet "vFile:setfs:" it is an
4546 invalid reply and GDB would return error in
4547 remote_hostio_set_filesystem, making remote files access impossible.
4548 Disable "vFile:setfs:" in such case. Do not disable other 'v' packets as
4549 other "vFile" packets get correctly detected even on gdbserver < 7.7. */
4550 {
4551 const char v_mustreplyempty[] = "vMustReplyEmpty";
4552
4553 putpkt (v_mustreplyempty);
8d64371b
TT
4554 getpkt (&rs->buf, 0);
4555 if (strcmp (rs->buf.data (), "OK") == 0)
57809e5e 4556 remote_protocol_packets[PACKET_vFile_setfs].support = PACKET_DISABLE;
8d64371b 4557 else if (strcmp (rs->buf.data (), "") != 0)
57809e5e 4558 error (_("Remote replied unexpectedly to '%s': %s"), v_mustreplyempty,
8d64371b 4559 rs->buf.data ());
57809e5e
JK
4560 }
4561
c8d104ad
PA
4562 /* Next, we possibly activate noack mode.
4563
4564 If the QStartNoAckMode packet configuration is set to AUTO,
4565 enable noack mode if the stub reported a wish for it with
4566 qSupported.
4567
4568 If set to TRUE, then enable noack mode even if the stub didn't
4569 report it in qSupported. If the stub doesn't reply OK, the
4570 session ends with an error.
4571
4572 If FALSE, then don't activate noack mode, regardless of what the
4573 stub claimed should be the default with qSupported. */
4574
4575 noack_config = &remote_protocol_packets[PACKET_QStartNoAckMode];
4082afcc 4576 if (packet_config_support (noack_config) != PACKET_DISABLE)
c8d104ad
PA
4577 {
4578 putpkt ("QStartNoAckMode");
8d64371b 4579 getpkt (&rs->buf, 0);
c8d104ad
PA
4580 if (packet_ok (rs->buf, noack_config) == PACKET_OK)
4581 rs->noack_mode = 1;
4582 }
4583
04bd08de 4584 if (extended_p)
5fe04517
PA
4585 {
4586 /* Tell the remote that we are using the extended protocol. */
4587 putpkt ("!");
8d64371b 4588 getpkt (&rs->buf, 0);
5fe04517
PA
4589 }
4590
9b224c5e
PA
4591 /* Let the target know which signals it is allowed to pass down to
4592 the program. */
4593 update_signals_program_target ();
4594
d962ef82
DJ
4595 /* Next, if the target can specify a description, read it. We do
4596 this before anything involving memory or registers. */
4597 target_find_description ();
4598
6c95b8df
PA
4599 /* Next, now that we know something about the target, update the
4600 address spaces in the program spaces. */
4601 update_address_spaces ();
4602
50c71eaf
PA
4603 /* On OSs where the list of libraries is global to all
4604 processes, we fetch them early. */
f5656ead 4605 if (gdbarch_has_global_solist (target_gdbarch ()))
e696b3ad 4606 solib_add (NULL, from_tty, auto_solib_add);
50c71eaf 4607
6efcd9a8 4608 if (target_is_non_stop_p ())
74531fed 4609 {
4082afcc 4610 if (packet_support (PACKET_QNonStop) != PACKET_ENABLE)
3e43a32a
MS
4611 error (_("Non-stop mode requested, but remote "
4612 "does not support non-stop"));
74531fed
PA
4613
4614 putpkt ("QNonStop:1");
8d64371b 4615 getpkt (&rs->buf, 0);
74531fed 4616
8d64371b
TT
4617 if (strcmp (rs->buf.data (), "OK") != 0)
4618 error (_("Remote refused setting non-stop mode with: %s"),
4619 rs->buf.data ());
74531fed
PA
4620
4621 /* Find about threads and processes the stub is already
4622 controlling. We default to adding them in the running state.
4623 The '?' query below will then tell us about which threads are
4624 stopped. */
f6ac5f3d 4625 this->update_thread_list ();
74531fed 4626 }
4082afcc 4627 else if (packet_support (PACKET_QNonStop) == PACKET_ENABLE)
74531fed
PA
4628 {
4629 /* Don't assume that the stub can operate in all-stop mode.
e6f3fa52 4630 Request it explicitly. */
74531fed 4631 putpkt ("QNonStop:0");
8d64371b 4632 getpkt (&rs->buf, 0);
74531fed 4633
8d64371b
TT
4634 if (strcmp (rs->buf.data (), "OK") != 0)
4635 error (_("Remote refused setting all-stop mode with: %s"),
4636 rs->buf.data ());
74531fed
PA
4637 }
4638
a0743c90
YQ
4639 /* Upload TSVs regardless of whether the target is running or not. The
4640 remote stub, such as GDBserver, may have some predefined or builtin
4641 TSVs, even if the target is not running. */
f6ac5f3d 4642 if (get_trace_status (current_trace_status ()) != -1)
a0743c90
YQ
4643 {
4644 struct uploaded_tsv *uploaded_tsvs = NULL;
4645
f6ac5f3d 4646 upload_trace_state_variables (&uploaded_tsvs);
a0743c90
YQ
4647 merge_uploaded_trace_state_variables (&uploaded_tsvs);
4648 }
4649
2d717e4f
DJ
4650 /* Check whether the target is running now. */
4651 putpkt ("?");
8d64371b 4652 getpkt (&rs->buf, 0);
2d717e4f 4653
6efcd9a8 4654 if (!target_is_non_stop_p ())
2d717e4f 4655 {
74531fed 4656 if (rs->buf[0] == 'W' || rs->buf[0] == 'X')
2d717e4f 4657 {
04bd08de 4658 if (!extended_p)
74531fed 4659 error (_("The target is not running (try extended-remote?)"));
c35b1492
PA
4660
4661 /* We're connected, but not running. Drop out before we
4662 call start_remote. */
e278ad5b 4663 rs->starting_up = 0;
c35b1492 4664 return;
2d717e4f
DJ
4665 }
4666 else
74531fed 4667 {
74531fed 4668 /* Save the reply for later. */
8d64371b
TT
4669 wait_status = (char *) alloca (strlen (rs->buf.data ()) + 1);
4670 strcpy (wait_status, rs->buf.data ());
74531fed
PA
4671 }
4672
b7ea362b 4673 /* Fetch thread list. */
e8032dde 4674 target_update_thread_list ();
b7ea362b 4675
74531fed
PA
4676 /* Let the stub know that we want it to return the thread. */
4677 set_continue_thread (minus_one_ptid);
4678
b7ea362b
PA
4679 if (thread_count () == 0)
4680 {
4681 /* Target has no concept of threads at all. GDB treats
4682 non-threaded target as single-threaded; add a main
4683 thread. */
4684 add_current_inferior_and_thread (wait_status);
4685 }
4686 else
4687 {
4688 /* We have thread information; select the thread the target
4689 says should be current. If we're reconnecting to a
4690 multi-threaded program, this will ideally be the thread
4691 that last reported an event before GDB disconnected. */
4692 inferior_ptid = get_current_thread (wait_status);
d7e15655 4693 if (inferior_ptid == null_ptid)
b7ea362b
PA
4694 {
4695 /* Odd... The target was able to list threads, but not
4696 tell us which thread was current (no "thread"
4697 register in T stop reply?). Just pick the first
4698 thread in the thread list then. */
c9f35b34
KB
4699
4700 if (remote_debug)
4701 fprintf_unfiltered (gdb_stdlog,
4702 "warning: couldn't determine remote "
4703 "current thread; picking first in list.\n");
4704
08036331 4705 inferior_ptid = inferior_list->thread_list->ptid;
b7ea362b
PA
4706 }
4707 }
74531fed 4708
6e586cc5
YQ
4709 /* init_wait_for_inferior should be called before get_offsets in order
4710 to manage `inserted' flag in bp loc in a correct state.
4711 breakpoint_init_inferior, called from init_wait_for_inferior, set
4712 `inserted' flag to 0, while before breakpoint_re_set, called from
4713 start_remote, set `inserted' flag to 1. In the initialization of
4714 inferior, breakpoint_init_inferior should be called first, and then
4715 breakpoint_re_set can be called. If this order is broken, state of
4716 `inserted' flag is wrong, and cause some problems on breakpoint
4717 manipulation. */
4718 init_wait_for_inferior ();
4719
74531fed
PA
4720 get_offsets (); /* Get text, data & bss offsets. */
4721
d962ef82
DJ
4722 /* If we could not find a description using qXfer, and we know
4723 how to do it some other way, try again. This is not
4724 supported for non-stop; it could be, but it is tricky if
4725 there are no stopped threads when we connect. */
f6ac5f3d 4726 if (remote_read_description_p (this)
f5656ead 4727 && gdbarch_target_desc (target_gdbarch ()) == NULL)
d962ef82
DJ
4728 {
4729 target_clear_description ();
4730 target_find_description ();
4731 }
4732
74531fed
PA
4733 /* Use the previously fetched status. */
4734 gdb_assert (wait_status != NULL);
8d64371b 4735 strcpy (rs->buf.data (), wait_status);
74531fed
PA
4736 rs->cached_wait_status = 1;
4737
f6ac5f3d 4738 ::start_remote (from_tty); /* Initialize gdb process mechanisms. */
2d717e4f
DJ
4739 }
4740 else
4741 {
68c97600
PA
4742 /* Clear WFI global state. Do this before finding about new
4743 threads and inferiors, and setting the current inferior.
4744 Otherwise we would clear the proceed status of the current
4745 inferior when we want its stop_soon state to be preserved
4746 (see notice_new_inferior). */
4747 init_wait_for_inferior ();
4748
74531fed
PA
4749 /* In non-stop, we will either get an "OK", meaning that there
4750 are no stopped threads at this time; or, a regular stop
4751 reply. In the latter case, there may be more than one thread
4752 stopped --- we pull them all out using the vStopped
4753 mechanism. */
8d64371b 4754 if (strcmp (rs->buf.data (), "OK") != 0)
74531fed 4755 {
722247f1 4756 struct notif_client *notif = &notif_client_stop;
2d717e4f 4757
722247f1
YQ
4758 /* remote_notif_get_pending_replies acks this one, and gets
4759 the rest out. */
f48ff2a7 4760 rs->notif_state->pending_event[notif_client_stop.id]
8d64371b 4761 = remote_notif_parse (this, notif, rs->buf.data ());
722247f1 4762 remote_notif_get_pending_events (notif);
74531fed 4763 }
2d717e4f 4764
74531fed
PA
4765 if (thread_count () == 0)
4766 {
04bd08de 4767 if (!extended_p)
74531fed 4768 error (_("The target is not running (try extended-remote?)"));
82f73884 4769
c35b1492
PA
4770 /* We're connected, but not running. Drop out before we
4771 call start_remote. */
e278ad5b 4772 rs->starting_up = 0;
c35b1492
PA
4773 return;
4774 }
74531fed 4775
74531fed
PA
4776 /* In non-stop mode, any cached wait status will be stored in
4777 the stop reply queue. */
4778 gdb_assert (wait_status == NULL);
f0223081 4779
2455069d 4780 /* Report all signals during attach/startup. */
adc6a863 4781 pass_signals ({});
221e1a37
PA
4782
4783 /* If there are already stopped threads, mark them stopped and
4784 report their stops before giving the prompt to the user. */
6efcd9a8 4785 process_initial_stop_replies (from_tty);
221e1a37
PA
4786
4787 if (target_can_async_p ())
4788 target_async (1);
74531fed 4789 }
c8d104ad 4790
c8d104ad
PA
4791 /* If we connected to a live target, do some additional setup. */
4792 if (target_has_execution)
4793 {
f4ccffad 4794 if (symfile_objfile) /* No use without a symbol-file. */
36d25514 4795 remote_check_symbols ();
c8d104ad 4796 }
50c71eaf 4797
d5551862
SS
4798 /* Possibly the target has been engaged in a trace run started
4799 previously; find out where things are at. */
f6ac5f3d 4800 if (get_trace_status (current_trace_status ()) != -1)
d5551862 4801 {
00bf0b85 4802 struct uploaded_tp *uploaded_tps = NULL;
00bf0b85 4803
00bf0b85
SS
4804 if (current_trace_status ()->running)
4805 printf_filtered (_("Trace is already running on the target.\n"));
4806
f6ac5f3d 4807 upload_tracepoints (&uploaded_tps);
00bf0b85
SS
4808
4809 merge_uploaded_tracepoints (&uploaded_tps);
d5551862
SS
4810 }
4811
c0272db5
TW
4812 /* Possibly the target has been engaged in a btrace record started
4813 previously; find out where things are at. */
4814 remote_btrace_maybe_reopen ();
4815
1e51243a
PA
4816 /* The thread and inferior lists are now synchronized with the
4817 target, our symbols have been relocated, and we're merged the
4818 target's tracepoints with ours. We're done with basic start
4819 up. */
4820 rs->starting_up = 0;
4821
a25a5a45
PA
4822 /* Maybe breakpoints are global and need to be inserted now. */
4823 if (breakpoints_should_be_inserted_now ())
50c71eaf 4824 insert_breakpoints ();
c906108c
SS
4825}
4826
4827/* Open a connection to a remote debugger.
4828 NAME is the filename used for communication. */
4829
f6ac5f3d
PA
4830void
4831remote_target::open (const char *name, int from_tty)
c906108c 4832{
f6ac5f3d 4833 open_1 (name, from_tty, 0);
43ff13b4
JM
4834}
4835
c906108c
SS
4836/* Open a connection to a remote debugger using the extended
4837 remote gdb protocol. NAME is the filename used for communication. */
4838
f6ac5f3d
PA
4839void
4840extended_remote_target::open (const char *name, int from_tty)
c906108c 4841{
f6ac5f3d 4842 open_1 (name, from_tty, 1 /*extended_p */);
43ff13b4
JM
4843}
4844
ca4f7f8b
PA
4845/* Reset all packets back to "unknown support". Called when opening a
4846 new connection to a remote target. */
c906108c 4847
d471ea57 4848static void
ca4f7f8b 4849reset_all_packet_configs_support (void)
d471ea57
AC
4850{
4851 int i;
a744cf53 4852
444abaca 4853 for (i = 0; i < PACKET_MAX; i++)
4082afcc 4854 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
d471ea57
AC
4855}
4856
ca4f7f8b
PA
4857/* Initialize all packet configs. */
4858
4859static void
4860init_all_packet_configs (void)
4861{
4862 int i;
4863
4864 for (i = 0; i < PACKET_MAX; i++)
4865 {
4866 remote_protocol_packets[i].detect = AUTO_BOOLEAN_AUTO;
4867 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
4868 }
4869}
4870
23860348 4871/* Symbol look-up. */
dc8acb97 4872
6b8edb51
PA
4873void
4874remote_target::remote_check_symbols ()
dc8acb97 4875{
8d64371b 4876 char *tmp;
dc8acb97
MS
4877 int end;
4878
63154eca
PA
4879 /* The remote side has no concept of inferiors that aren't running
4880 yet, it only knows about running processes. If we're connected
4881 but our current inferior is not running, we should not invite the
4882 remote target to request symbol lookups related to its
4883 (unrelated) current process. */
4884 if (!target_has_execution)
4885 return;
4886
4082afcc 4887 if (packet_support (PACKET_qSymbol) == PACKET_DISABLE)
dc8acb97
MS
4888 return;
4889
63154eca
PA
4890 /* Make sure the remote is pointing at the right process. Note
4891 there's no way to select "no process". */
3c9c4b83
PA
4892 set_general_process ();
4893
6d820c5c
DJ
4894 /* Allocate a message buffer. We can't reuse the input buffer in RS,
4895 because we need both at the same time. */
66644cd3 4896 gdb::char_vector msg (get_remote_packet_size ());
8d64371b 4897 gdb::char_vector reply (get_remote_packet_size ());
6d820c5c 4898
23860348 4899 /* Invite target to request symbol lookups. */
dc8acb97
MS
4900
4901 putpkt ("qSymbol::");
8d64371b 4902 getpkt (&reply, 0);
28170b88 4903 packet_ok (reply, &remote_protocol_packets[PACKET_qSymbol]);
dc8acb97 4904
8d64371b 4905 while (startswith (reply.data (), "qSymbol:"))
dc8acb97 4906 {
77e371c0
TT
4907 struct bound_minimal_symbol sym;
4908
dc8acb97 4909 tmp = &reply[8];
66644cd3
AB
4910 end = hex2bin (tmp, reinterpret_cast <gdb_byte *> (msg.data ()),
4911 strlen (tmp) / 2);
dc8acb97 4912 msg[end] = '\0';
66644cd3 4913 sym = lookup_minimal_symbol (msg.data (), NULL, NULL);
3b7344d5 4914 if (sym.minsym == NULL)
66644cd3
AB
4915 xsnprintf (msg.data (), get_remote_packet_size (), "qSymbol::%s",
4916 &reply[8]);
dc8acb97 4917 else
2bbe3cc1 4918 {
f5656ead 4919 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
77e371c0 4920 CORE_ADDR sym_addr = BMSYMBOL_VALUE_ADDRESS (sym);
2bbe3cc1
DJ
4921
4922 /* If this is a function address, return the start of code
4923 instead of any data function descriptor. */
f5656ead 4924 sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
2bbe3cc1 4925 sym_addr,
8b88a78e 4926 current_top_target ());
2bbe3cc1 4927
66644cd3 4928 xsnprintf (msg.data (), get_remote_packet_size (), "qSymbol:%s:%s",
5af949e3 4929 phex_nz (sym_addr, addr_size), &reply[8]);
2bbe3cc1 4930 }
66644cd3
AB
4931
4932 putpkt (msg.data ());
8d64371b 4933 getpkt (&reply, 0);
dc8acb97
MS
4934 }
4935}
4936
9db8d71f 4937static struct serial *
baa336ce 4938remote_serial_open (const char *name)
9db8d71f
DJ
4939{
4940 static int udp_warning = 0;
4941
4942 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
4943 of in ser-tcp.c, because it is the remote protocol assuming that the
4944 serial connection is reliable and not the serial connection promising
4945 to be. */
61012eef 4946 if (!udp_warning && startswith (name, "udp:"))
9db8d71f 4947 {
3e43a32a
MS
4948 warning (_("The remote protocol may be unreliable over UDP.\n"
4949 "Some events may be lost, rendering further debugging "
4950 "impossible."));
9db8d71f
DJ
4951 udp_warning = 1;
4952 }
4953
4954 return serial_open (name);
4955}
4956
d914c394
SS
4957/* Inform the target of our permission settings. The permission flags
4958 work without this, but if the target knows the settings, it can do
4959 a couple things. First, it can add its own check, to catch cases
4960 that somehow manage to get by the permissions checks in target
4961 methods. Second, if the target is wired to disallow particular
4962 settings (for instance, a system in the field that is not set up to
4963 be able to stop at a breakpoint), it can object to any unavailable
4964 permissions. */
4965
4966void
f6ac5f3d 4967remote_target::set_permissions ()
d914c394
SS
4968{
4969 struct remote_state *rs = get_remote_state ();
4970
8d64371b 4971 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QAllow:"
bba74b36
YQ
4972 "WriteReg:%x;WriteMem:%x;"
4973 "InsertBreak:%x;InsertTrace:%x;"
4974 "InsertFastTrace:%x;Stop:%x",
4975 may_write_registers, may_write_memory,
4976 may_insert_breakpoints, may_insert_tracepoints,
4977 may_insert_fast_tracepoints, may_stop);
d914c394 4978 putpkt (rs->buf);
8d64371b 4979 getpkt (&rs->buf, 0);
d914c394
SS
4980
4981 /* If the target didn't like the packet, warn the user. Do not try
4982 to undo the user's settings, that would just be maddening. */
8d64371b
TT
4983 if (strcmp (rs->buf.data (), "OK") != 0)
4984 warning (_("Remote refused setting permissions with: %s"),
4985 rs->buf.data ());
d914c394
SS
4986}
4987
be2a5f71
DJ
4988/* This type describes each known response to the qSupported
4989 packet. */
4990struct protocol_feature
4991{
4992 /* The name of this protocol feature. */
4993 const char *name;
4994
4995 /* The default for this protocol feature. */
4996 enum packet_support default_support;
4997
4998 /* The function to call when this feature is reported, or after
4999 qSupported processing if the feature is not supported.
5000 The first argument points to this structure. The second
5001 argument indicates whether the packet requested support be
5002 enabled, disabled, or probed (or the default, if this function
5003 is being called at the end of processing and this feature was
5004 not reported). The third argument may be NULL; if not NULL, it
5005 is a NUL-terminated string taken from the packet following
5006 this feature's name and an equals sign. */
6b8edb51
PA
5007 void (*func) (remote_target *remote, const struct protocol_feature *,
5008 enum packet_support, const char *);
be2a5f71
DJ
5009
5010 /* The corresponding packet for this feature. Only used if
5011 FUNC is remote_supported_packet. */
5012 int packet;
5013};
5014
be2a5f71 5015static void
6b8edb51
PA
5016remote_supported_packet (remote_target *remote,
5017 const struct protocol_feature *feature,
be2a5f71
DJ
5018 enum packet_support support,
5019 const char *argument)
5020{
5021 if (argument)
5022 {
5023 warning (_("Remote qSupported response supplied an unexpected value for"
5024 " \"%s\"."), feature->name);
5025 return;
5026 }
5027
4082afcc 5028 remote_protocol_packets[feature->packet].support = support;
be2a5f71 5029}
be2a5f71 5030
6b8edb51
PA
5031void
5032remote_target::remote_packet_size (const protocol_feature *feature,
5033 enum packet_support support, const char *value)
be2a5f71
DJ
5034{
5035 struct remote_state *rs = get_remote_state ();
5036
5037 int packet_size;
5038 char *value_end;
5039
5040 if (support != PACKET_ENABLE)
5041 return;
5042
5043 if (value == NULL || *value == '\0')
5044 {
5045 warning (_("Remote target reported \"%s\" without a size."),
5046 feature->name);
5047 return;
5048 }
5049
5050 errno = 0;
5051 packet_size = strtol (value, &value_end, 16);
5052 if (errno != 0 || *value_end != '\0' || packet_size < 0)
5053 {
5054 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
5055 feature->name, value);
5056 return;
5057 }
5058
be2a5f71
DJ
5059 /* Record the new maximum packet size. */
5060 rs->explicit_packet_size = packet_size;
5061}
5062
6b8edb51
PA
5063void
5064remote_packet_size (remote_target *remote, const protocol_feature *feature,
5065 enum packet_support support, const char *value)
5066{
5067 remote->remote_packet_size (feature, support, value);
5068}
5069
dc473cfb 5070static const struct protocol_feature remote_protocol_features[] = {
0876f84a 5071 { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 },
40e57cf2 5072 { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet,
fd79ecee 5073 PACKET_qXfer_auxv },
c78fa86a
GB
5074 { "qXfer:exec-file:read", PACKET_DISABLE, remote_supported_packet,
5075 PACKET_qXfer_exec_file },
23181151
DJ
5076 { "qXfer:features:read", PACKET_DISABLE, remote_supported_packet,
5077 PACKET_qXfer_features },
cfa9d6d9
DJ
5078 { "qXfer:libraries:read", PACKET_DISABLE, remote_supported_packet,
5079 PACKET_qXfer_libraries },
2268b414
JK
5080 { "qXfer:libraries-svr4:read", PACKET_DISABLE, remote_supported_packet,
5081 PACKET_qXfer_libraries_svr4 },
ced63ec0 5082 { "augmented-libraries-svr4-read", PACKET_DISABLE,
4082afcc 5083 remote_supported_packet, PACKET_augmented_libraries_svr4_read_feature },
fd79ecee 5084 { "qXfer:memory-map:read", PACKET_DISABLE, remote_supported_packet,
89be2091 5085 PACKET_qXfer_memory_map },
4de6483e
UW
5086 { "qXfer:spu:read", PACKET_DISABLE, remote_supported_packet,
5087 PACKET_qXfer_spu_read },
5088 { "qXfer:spu:write", PACKET_DISABLE, remote_supported_packet,
5089 PACKET_qXfer_spu_write },
07e059b5
VP
5090 { "qXfer:osdata:read", PACKET_DISABLE, remote_supported_packet,
5091 PACKET_qXfer_osdata },
dc146f7c
VP
5092 { "qXfer:threads:read", PACKET_DISABLE, remote_supported_packet,
5093 PACKET_qXfer_threads },
b3b9301e
PA
5094 { "qXfer:traceframe-info:read", PACKET_DISABLE, remote_supported_packet,
5095 PACKET_qXfer_traceframe_info },
89be2091
DJ
5096 { "QPassSignals", PACKET_DISABLE, remote_supported_packet,
5097 PACKET_QPassSignals },
82075af2
JS
5098 { "QCatchSyscalls", PACKET_DISABLE, remote_supported_packet,
5099 PACKET_QCatchSyscalls },
9b224c5e
PA
5100 { "QProgramSignals", PACKET_DISABLE, remote_supported_packet,
5101 PACKET_QProgramSignals },
bc3b087d
SDJ
5102 { "QSetWorkingDir", PACKET_DISABLE, remote_supported_packet,
5103 PACKET_QSetWorkingDir },
aefd8b33
SDJ
5104 { "QStartupWithShell", PACKET_DISABLE, remote_supported_packet,
5105 PACKET_QStartupWithShell },
0a2dde4a
SDJ
5106 { "QEnvironmentHexEncoded", PACKET_DISABLE, remote_supported_packet,
5107 PACKET_QEnvironmentHexEncoded },
5108 { "QEnvironmentReset", PACKET_DISABLE, remote_supported_packet,
5109 PACKET_QEnvironmentReset },
5110 { "QEnvironmentUnset", PACKET_DISABLE, remote_supported_packet,
5111 PACKET_QEnvironmentUnset },
a6f3e723
SL
5112 { "QStartNoAckMode", PACKET_DISABLE, remote_supported_packet,
5113 PACKET_QStartNoAckMode },
4082afcc
PA
5114 { "multiprocess", PACKET_DISABLE, remote_supported_packet,
5115 PACKET_multiprocess_feature },
5116 { "QNonStop", PACKET_DISABLE, remote_supported_packet, PACKET_QNonStop },
4aa995e1
PA
5117 { "qXfer:siginfo:read", PACKET_DISABLE, remote_supported_packet,
5118 PACKET_qXfer_siginfo_read },
5119 { "qXfer:siginfo:write", PACKET_DISABLE, remote_supported_packet,
5120 PACKET_qXfer_siginfo_write },
4082afcc 5121 { "ConditionalTracepoints", PACKET_DISABLE, remote_supported_packet,
782b2b07 5122 PACKET_ConditionalTracepoints },
4082afcc 5123 { "ConditionalBreakpoints", PACKET_DISABLE, remote_supported_packet,
3788aec7 5124 PACKET_ConditionalBreakpoints },
4082afcc 5125 { "BreakpointCommands", PACKET_DISABLE, remote_supported_packet,
d3ce09f5 5126 PACKET_BreakpointCommands },
4082afcc 5127 { "FastTracepoints", PACKET_DISABLE, remote_supported_packet,
7a697b8d 5128 PACKET_FastTracepoints },
4082afcc 5129 { "StaticTracepoints", PACKET_DISABLE, remote_supported_packet,
0fb4aa4b 5130 PACKET_StaticTracepoints },
4082afcc 5131 {"InstallInTrace", PACKET_DISABLE, remote_supported_packet,
1e4d1764 5132 PACKET_InstallInTrace},
4082afcc
PA
5133 { "DisconnectedTracing", PACKET_DISABLE, remote_supported_packet,
5134 PACKET_DisconnectedTracing_feature },
40ab02ce
MS
5135 { "ReverseContinue", PACKET_DISABLE, remote_supported_packet,
5136 PACKET_bc },
5137 { "ReverseStep", PACKET_DISABLE, remote_supported_packet,
5138 PACKET_bs },
409873ef
SS
5139 { "TracepointSource", PACKET_DISABLE, remote_supported_packet,
5140 PACKET_TracepointSource },
d914c394
SS
5141 { "QAllow", PACKET_DISABLE, remote_supported_packet,
5142 PACKET_QAllow },
4082afcc
PA
5143 { "EnableDisableTracepoints", PACKET_DISABLE, remote_supported_packet,
5144 PACKET_EnableDisableTracepoints_feature },
78d85199
YQ
5145 { "qXfer:fdpic:read", PACKET_DISABLE, remote_supported_packet,
5146 PACKET_qXfer_fdpic },
169081d0
TG
5147 { "qXfer:uib:read", PACKET_DISABLE, remote_supported_packet,
5148 PACKET_qXfer_uib },
03583c20
UW
5149 { "QDisableRandomization", PACKET_DISABLE, remote_supported_packet,
5150 PACKET_QDisableRandomization },
d1feda86 5151 { "QAgent", PACKET_DISABLE, remote_supported_packet, PACKET_QAgent},
f6f899bf
HAQ
5152 { "QTBuffer:size", PACKET_DISABLE,
5153 remote_supported_packet, PACKET_QTBuffer_size},
4082afcc 5154 { "tracenz", PACKET_DISABLE, remote_supported_packet, PACKET_tracenz_feature },
9accd112
MM
5155 { "Qbtrace:off", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_off },
5156 { "Qbtrace:bts", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_bts },
b20a6524 5157 { "Qbtrace:pt", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_pt },
9accd112 5158 { "qXfer:btrace:read", PACKET_DISABLE, remote_supported_packet,
f4abbc16
MM
5159 PACKET_qXfer_btrace },
5160 { "qXfer:btrace-conf:read", PACKET_DISABLE, remote_supported_packet,
d33501a5
MM
5161 PACKET_qXfer_btrace_conf },
5162 { "Qbtrace-conf:bts:size", PACKET_DISABLE, remote_supported_packet,
f7e6eed5
PA
5163 PACKET_Qbtrace_conf_bts_size },
5164 { "swbreak", PACKET_DISABLE, remote_supported_packet, PACKET_swbreak_feature },
0a93529c 5165 { "hwbreak", PACKET_DISABLE, remote_supported_packet, PACKET_hwbreak_feature },
89245bc0
DB
5166 { "fork-events", PACKET_DISABLE, remote_supported_packet,
5167 PACKET_fork_event_feature },
5168 { "vfork-events", PACKET_DISABLE, remote_supported_packet,
5169 PACKET_vfork_event_feature },
94585166
DB
5170 { "exec-events", PACKET_DISABLE, remote_supported_packet,
5171 PACKET_exec_event_feature },
b20a6524 5172 { "Qbtrace-conf:pt:size", PACKET_DISABLE, remote_supported_packet,
750ce8d1 5173 PACKET_Qbtrace_conf_pt_size },
65706a29
PA
5174 { "vContSupported", PACKET_DISABLE, remote_supported_packet, PACKET_vContSupported },
5175 { "QThreadEvents", PACKET_DISABLE, remote_supported_packet, PACKET_QThreadEvents },
f2faf941 5176 { "no-resumed", PACKET_DISABLE, remote_supported_packet, PACKET_no_resumed },
be2a5f71
DJ
5177};
5178
c8d5aac9
L
5179static char *remote_support_xml;
5180
5181/* Register string appended to "xmlRegisters=" in qSupported query. */
5182
5183void
6e39997a 5184register_remote_support_xml (const char *xml)
c8d5aac9
L
5185{
5186#if defined(HAVE_LIBEXPAT)
5187 if (remote_support_xml == NULL)
c4f7c687 5188 remote_support_xml = concat ("xmlRegisters=", xml, (char *) NULL);
c8d5aac9
L
5189 else
5190 {
5191 char *copy = xstrdup (remote_support_xml + 13);
5192 char *p = strtok (copy, ",");
5193
5194 do
5195 {
5196 if (strcmp (p, xml) == 0)
5197 {
5198 /* already there */
5199 xfree (copy);
5200 return;
5201 }
5202 }
5203 while ((p = strtok (NULL, ",")) != NULL);
5204 xfree (copy);
5205
94b0dee1
PA
5206 remote_support_xml = reconcat (remote_support_xml,
5207 remote_support_xml, ",", xml,
5208 (char *) NULL);
c8d5aac9
L
5209 }
5210#endif
5211}
5212
69b6ecb0
TT
5213static void
5214remote_query_supported_append (std::string *msg, const char *append)
c8d5aac9 5215{
69b6ecb0
TT
5216 if (!msg->empty ())
5217 msg->append (";");
5218 msg->append (append);
c8d5aac9
L
5219}
5220
6b8edb51
PA
5221void
5222remote_target::remote_query_supported ()
be2a5f71
DJ
5223{
5224 struct remote_state *rs = get_remote_state ();
5225 char *next;
5226 int i;
5227 unsigned char seen [ARRAY_SIZE (remote_protocol_features)];
5228
5229 /* The packet support flags are handled differently for this packet
5230 than for most others. We treat an error, a disabled packet, and
5231 an empty response identically: any features which must be reported
5232 to be used will be automatically disabled. An empty buffer
5233 accomplishes this, since that is also the representation for a list
5234 containing no features. */
5235
5236 rs->buf[0] = 0;
4082afcc 5237 if (packet_support (PACKET_qSupported) != PACKET_DISABLE)
be2a5f71 5238 {
69b6ecb0 5239 std::string q;
c8d5aac9 5240
73b8c1fd 5241 if (packet_set_cmd_state (PACKET_multiprocess_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5242 remote_query_supported_append (&q, "multiprocess+");
c8d5aac9 5243
f7e6eed5 5244 if (packet_set_cmd_state (PACKET_swbreak_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5245 remote_query_supported_append (&q, "swbreak+");
f7e6eed5 5246 if (packet_set_cmd_state (PACKET_hwbreak_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5247 remote_query_supported_append (&q, "hwbreak+");
f7e6eed5 5248
69b6ecb0 5249 remote_query_supported_append (&q, "qRelocInsn+");
dde08ee1 5250
8020350c
DB
5251 if (packet_set_cmd_state (PACKET_fork_event_feature)
5252 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5253 remote_query_supported_append (&q, "fork-events+");
8020350c
DB
5254 if (packet_set_cmd_state (PACKET_vfork_event_feature)
5255 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5256 remote_query_supported_append (&q, "vfork-events+");
8020350c
DB
5257 if (packet_set_cmd_state (PACKET_exec_event_feature)
5258 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5259 remote_query_supported_append (&q, "exec-events+");
89245bc0 5260
750ce8d1 5261 if (packet_set_cmd_state (PACKET_vContSupported) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5262 remote_query_supported_append (&q, "vContSupported+");
750ce8d1 5263
65706a29 5264 if (packet_set_cmd_state (PACKET_QThreadEvents) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5265 remote_query_supported_append (&q, "QThreadEvents+");
65706a29 5266
f2faf941 5267 if (packet_set_cmd_state (PACKET_no_resumed) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5268 remote_query_supported_append (&q, "no-resumed+");
f2faf941 5269
b35d5edb
PA
5270 /* Keep this one last to work around a gdbserver <= 7.10 bug in
5271 the qSupported:xmlRegisters=i386 handling. */
7cc244de
PA
5272 if (remote_support_xml != NULL
5273 && packet_support (PACKET_qXfer_features) != PACKET_DISABLE)
69b6ecb0 5274 remote_query_supported_append (&q, remote_support_xml);
82f73884 5275
69b6ecb0
TT
5276 q = "qSupported:" + q;
5277 putpkt (q.c_str ());
94b0dee1 5278
8d64371b 5279 getpkt (&rs->buf, 0);
be2a5f71
DJ
5280
5281 /* If an error occured, warn, but do not return - just reset the
5282 buffer to empty and go on to disable features. */
5283 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported])
5284 == PACKET_ERROR)
5285 {
8d64371b 5286 warning (_("Remote failure reply: %s"), rs->buf.data ());
be2a5f71
DJ
5287 rs->buf[0] = 0;
5288 }
5289 }
5290
5291 memset (seen, 0, sizeof (seen));
5292
8d64371b 5293 next = rs->buf.data ();
be2a5f71
DJ
5294 while (*next)
5295 {
5296 enum packet_support is_supported;
5297 char *p, *end, *name_end, *value;
5298
5299 /* First separate out this item from the rest of the packet. If
5300 there's another item after this, we overwrite the separator
5301 (terminated strings are much easier to work with). */
5302 p = next;
5303 end = strchr (p, ';');
5304 if (end == NULL)
5305 {
5306 end = p + strlen (p);
5307 next = end;
5308 }
5309 else
5310 {
89be2091
DJ
5311 *end = '\0';
5312 next = end + 1;
5313
be2a5f71
DJ
5314 if (end == p)
5315 {
5316 warning (_("empty item in \"qSupported\" response"));
5317 continue;
5318 }
be2a5f71
DJ
5319 }
5320
5321 name_end = strchr (p, '=');
5322 if (name_end)
5323 {
5324 /* This is a name=value entry. */
5325 is_supported = PACKET_ENABLE;
5326 value = name_end + 1;
5327 *name_end = '\0';
5328 }
5329 else
5330 {
5331 value = NULL;
5332 switch (end[-1])
5333 {
5334 case '+':
5335 is_supported = PACKET_ENABLE;
5336 break;
5337
5338 case '-':
5339 is_supported = PACKET_DISABLE;
5340 break;
5341
5342 case '?':
5343 is_supported = PACKET_SUPPORT_UNKNOWN;
5344 break;
5345
5346 default:
3e43a32a
MS
5347 warning (_("unrecognized item \"%s\" "
5348 "in \"qSupported\" response"), p);
be2a5f71
DJ
5349 continue;
5350 }
5351 end[-1] = '\0';
5352 }
5353
5354 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
5355 if (strcmp (remote_protocol_features[i].name, p) == 0)
5356 {
5357 const struct protocol_feature *feature;
5358
5359 seen[i] = 1;
5360 feature = &remote_protocol_features[i];
6b8edb51 5361 feature->func (this, feature, is_supported, value);
be2a5f71
DJ
5362 break;
5363 }
5364 }
5365
5366 /* If we increased the packet size, make sure to increase the global
5367 buffer size also. We delay this until after parsing the entire
5368 qSupported packet, because this is the same buffer we were
5369 parsing. */
8d64371b
TT
5370 if (rs->buf.size () < rs->explicit_packet_size)
5371 rs->buf.resize (rs->explicit_packet_size);
be2a5f71
DJ
5372
5373 /* Handle the defaults for unmentioned features. */
5374 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
5375 if (!seen[i])
5376 {
5377 const struct protocol_feature *feature;
5378
5379 feature = &remote_protocol_features[i];
6b8edb51 5380 feature->func (this, feature, feature->default_support, NULL);
be2a5f71
DJ
5381 }
5382}
5383
048094ac
PA
5384/* Serial QUIT handler for the remote serial descriptor.
5385
5386 Defers handling a Ctrl-C until we're done with the current
5387 command/response packet sequence, unless:
5388
5389 - We're setting up the connection. Don't send a remote interrupt
5390 request, as we're not fully synced yet. Quit immediately
5391 instead.
5392
5393 - The target has been resumed in the foreground
223ffa71 5394 (target_terminal::is_ours is false) with a synchronous resume
048094ac
PA
5395 packet, and we're blocked waiting for the stop reply, thus a
5396 Ctrl-C should be immediately sent to the target.
5397
5398 - We get a second Ctrl-C while still within the same serial read or
5399 write. In that case the serial is seemingly wedged --- offer to
5400 quit/disconnect.
5401
5402 - We see a second Ctrl-C without target response, after having
5403 previously interrupted the target. In that case the target/stub
5404 is probably wedged --- offer to quit/disconnect.
5405*/
5406
6b8edb51
PA
5407void
5408remote_target::remote_serial_quit_handler ()
048094ac
PA
5409{
5410 struct remote_state *rs = get_remote_state ();
5411
5412 if (check_quit_flag ())
5413 {
5414 /* If we're starting up, we're not fully synced yet. Quit
5415 immediately. */
5416 if (rs->starting_up)
5417 quit ();
5418 else if (rs->got_ctrlc_during_io)
5419 {
5420 if (query (_("The target is not responding to GDB commands.\n"
5421 "Stop debugging it? ")))
5422 remote_unpush_and_throw ();
5423 }
5424 /* If ^C has already been sent once, offer to disconnect. */
223ffa71 5425 else if (!target_terminal::is_ours () && rs->ctrlc_pending_p)
048094ac
PA
5426 interrupt_query ();
5427 /* All-stop protocol, and blocked waiting for stop reply. Send
5428 an interrupt request. */
223ffa71 5429 else if (!target_terminal::is_ours () && rs->waiting_for_stop_reply)
e671cd59 5430 target_interrupt ();
048094ac
PA
5431 else
5432 rs->got_ctrlc_during_io = 1;
5433 }
5434}
5435
6b8edb51
PA
5436/* The remote_target that is current while the quit handler is
5437 overridden with remote_serial_quit_handler. */
5438static remote_target *curr_quit_handler_target;
5439
5440static void
5441remote_serial_quit_handler ()
5442{
5443 curr_quit_handler_target->remote_serial_quit_handler ();
5444}
5445
78a095c3
JK
5446/* Remove any of the remote.c targets from target stack. Upper targets depend
5447 on it so remove them first. */
5448
5449static void
5450remote_unpush_target (void)
5451{
915ef8b1 5452 pop_all_targets_at_and_above (process_stratum);
78a095c3 5453}
be2a5f71 5454
048094ac
PA
5455static void
5456remote_unpush_and_throw (void)
5457{
5458 remote_unpush_target ();
5459 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
5460}
5461
f6ac5f3d
PA
5462void
5463remote_target::open_1 (const char *name, int from_tty, int extended_p)
c906108c 5464{
6b8edb51 5465 remote_target *curr_remote = get_current_remote_target ();
a6f3e723 5466
c906108c 5467 if (name == 0)
8a3fe4f8 5468 error (_("To open a remote debug connection, you need to specify what\n"
22e04375 5469 "serial device is attached to the remote system\n"
8a3fe4f8 5470 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
c906108c 5471
2d717e4f 5472 /* If we're connected to a running target, target_preopen will kill it.
78a095c3
JK
5473 Ask this question first, before target_preopen has a chance to kill
5474 anything. */
6b8edb51 5475 if (curr_remote != NULL && !have_inferiors ())
2d717e4f 5476 {
78a095c3
JK
5477 if (from_tty
5478 && !query (_("Already connected to a remote target. Disconnect? ")))
2d717e4f
DJ
5479 error (_("Still connected."));
5480 }
5481
78a095c3 5482 /* Here the possibly existing remote target gets unpushed. */
c906108c
SS
5483 target_preopen (from_tty);
5484
ad9a8f3f 5485 remote_fileio_reset ();
1dd41f16
NS
5486 reopen_exec_file ();
5487 reread_symbols ();
5488
6b8edb51
PA
5489 remote_target *remote
5490 = (extended_p ? new extended_remote_target () : new remote_target ());
5491 target_ops_up target_holder (remote);
5492
5493 remote_state *rs = remote->get_remote_state ();
5494
5495 /* See FIXME above. */
5496 if (!target_async_permitted)
5497 rs->wait_forever_enabled_p = 1;
5498
5d93a237
TT
5499 rs->remote_desc = remote_serial_open (name);
5500 if (!rs->remote_desc)
c906108c
SS
5501 perror_with_name (name);
5502
5503 if (baud_rate != -1)
5504 {
5d93a237 5505 if (serial_setbaudrate (rs->remote_desc, baud_rate))
c906108c 5506 {
9b74d5d3
KB
5507 /* The requested speed could not be set. Error out to
5508 top level after closing remote_desc. Take care to
5509 set remote_desc to NULL to avoid closing remote_desc
5510 more than once. */
5d93a237
TT
5511 serial_close (rs->remote_desc);
5512 rs->remote_desc = NULL;
c906108c
SS
5513 perror_with_name (name);
5514 }
5515 }
5516
236af5e3 5517 serial_setparity (rs->remote_desc, serial_parity);
5d93a237 5518 serial_raw (rs->remote_desc);
c906108c
SS
5519
5520 /* If there is something sitting in the buffer we might take it as a
5521 response to a command, which would be bad. */
5d93a237 5522 serial_flush_input (rs->remote_desc);
c906108c
SS
5523
5524 if (from_tty)
5525 {
5526 puts_filtered ("Remote debugging using ");
5527 puts_filtered (name);
5528 puts_filtered ("\n");
5529 }
d9f719f1 5530
6b8edb51 5531 /* Switch to using the remote target now. */
dea57a62 5532 push_target (std::move (target_holder));
c906108c 5533
74531fed 5534 /* Register extra event sources in the event loop. */
6b8edb51 5535 rs->remote_async_inferior_event_token
74531fed 5536 = create_async_event_handler (remote_async_inferior_event_handler,
6b8edb51
PA
5537 remote);
5538 rs->notif_state = remote_notif_state_allocate (remote);
74531fed 5539
be2a5f71
DJ
5540 /* Reset the target state; these things will be queried either by
5541 remote_query_supported or as they are needed. */
ca4f7f8b 5542 reset_all_packet_configs_support ();
74531fed 5543 rs->cached_wait_status = 0;
be2a5f71 5544 rs->explicit_packet_size = 0;
a6f3e723 5545 rs->noack_mode = 0;
82f73884 5546 rs->extended = extended_p;
e24a49d8 5547 rs->waiting_for_stop_reply = 0;
3a29589a 5548 rs->ctrlc_pending_p = 0;
048094ac 5549 rs->got_ctrlc_during_io = 0;
802188a7 5550
47f8a51d
TT
5551 rs->general_thread = not_sent_ptid;
5552 rs->continue_thread = not_sent_ptid;
262e1174 5553 rs->remote_traceframe_number = -1;
c906108c 5554
3a00c802
PA
5555 rs->last_resume_exec_dir = EXEC_FORWARD;
5556
9d1f7ab2 5557 /* Probe for ability to use "ThreadInfo" query, as required. */
b80fafe3
TT
5558 rs->use_threadinfo_query = 1;
5559 rs->use_threadextra_query = 1;
9d1f7ab2 5560
dd194f6b 5561 rs->readahead_cache.invalidate ();
80152258 5562
c6ebd6cf 5563 if (target_async_permitted)
92d1e331 5564 {
92d1e331
DJ
5565 /* FIXME: cagney/1999-09-23: During the initial connection it is
5566 assumed that the target is already ready and able to respond to
0df8b418 5567 requests. Unfortunately remote_start_remote() eventually calls
92d1e331 5568 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
0df8b418 5569 around this. Eventually a mechanism that allows
92d1e331 5570 wait_for_inferior() to expect/get timeouts will be
23860348 5571 implemented. */
6b8edb51 5572 rs->wait_forever_enabled_p = 0;
92d1e331
DJ
5573 }
5574
23860348 5575 /* First delete any symbols previously loaded from shared libraries. */
f78f6cf1 5576 no_shared_libraries (NULL, 0);
f78f6cf1 5577
36918e70 5578 /* Start the remote connection. If error() or QUIT, discard this
165b8e33
AC
5579 target (we'd otherwise be in an inconsistent state) and then
5580 propogate the error on up the exception chain. This ensures that
5581 the caller doesn't stumble along blindly assuming that the
5582 function succeeded. The CLI doesn't have this problem but other
5583 UI's, such as MI do.
36918e70
AC
5584
5585 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
5586 this function should return an error indication letting the
ce2826aa 5587 caller restore the previous state. Unfortunately the command
36918e70
AC
5588 ``target remote'' is directly wired to this function making that
5589 impossible. On a positive note, the CLI side of this problem has
5590 been fixed - the function set_cmd_context() makes it possible for
5591 all the ``target ....'' commands to share a common callback
5592 function. See cli-dump.c. */
109c3e39 5593 {
2d717e4f 5594
a70b8144 5595 try
04bd08de 5596 {
6b8edb51 5597 remote->start_remote (from_tty, extended_p);
04bd08de 5598 }
230d2906 5599 catch (const gdb_exception &ex)
109c3e39 5600 {
c8d104ad
PA
5601 /* Pop the partially set up target - unless something else did
5602 already before throwing the exception. */
6b8edb51 5603 if (ex.error != TARGET_CLOSE_ERROR)
78a095c3 5604 remote_unpush_target ();
eedc3f4f 5605 throw;
109c3e39
AC
5606 }
5607 }
c906108c 5608
6b8edb51 5609 remote_btrace_reset (rs);
f4abbc16 5610
c6ebd6cf 5611 if (target_async_permitted)
6b8edb51 5612 rs->wait_forever_enabled_p = 1;
43ff13b4
JM
5613}
5614
de0d863e
DB
5615/* Detach the specified process. */
5616
6b8edb51
PA
5617void
5618remote_target::remote_detach_pid (int pid)
de0d863e
DB
5619{
5620 struct remote_state *rs = get_remote_state ();
5621
4c7333b3
PA
5622 /* This should not be necessary, but the handling for D;PID in
5623 GDBserver versions prior to 8.2 incorrectly assumes that the
5624 selected process points to the same process we're detaching,
5625 leading to misbehavior (and possibly GDBserver crashing) when it
5626 does not. Since it's easy and cheap, work around it by forcing
5627 GDBserver to select GDB's current process. */
5628 set_general_process ();
5629
de0d863e 5630 if (remote_multi_process_p (rs))
8d64371b 5631 xsnprintf (rs->buf.data (), get_remote_packet_size (), "D;%x", pid);
de0d863e 5632 else
8d64371b 5633 strcpy (rs->buf.data (), "D");
de0d863e
DB
5634
5635 putpkt (rs->buf);
8d64371b 5636 getpkt (&rs->buf, 0);
de0d863e
DB
5637
5638 if (rs->buf[0] == 'O' && rs->buf[1] == 'K')
5639 ;
5640 else if (rs->buf[0] == '\0')
5641 error (_("Remote doesn't know how to detach"));
5642 else
5643 error (_("Can't detach process."));
5644}
5645
5646/* This detaches a program to which we previously attached, using
5647 inferior_ptid to identify the process. After this is done, GDB
5648 can be used to debug some other program. We better not have left
5649 any breakpoints in the target program or it'll die when it hits
5650 one. */
c906108c 5651
6b8edb51 5652void
00431a78 5653remote_target::remote_detach_1 (inferior *inf, int from_tty)
c906108c 5654{
e99b03dc 5655 int pid = inferior_ptid.pid ();
d01949b6 5656 struct remote_state *rs = get_remote_state ();
de0d863e 5657 int is_fork_parent;
c906108c 5658
2d717e4f
DJ
5659 if (!target_has_execution)
5660 error (_("No process to detach from."));
5661
0f48b757 5662 target_announce_detach (from_tty);
7cee1e54 5663
c906108c 5664 /* Tell the remote target to detach. */
de0d863e 5665 remote_detach_pid (pid);
82f73884 5666
8020350c
DB
5667 /* Exit only if this is the only active inferior. */
5668 if (from_tty && !rs->extended && number_of_live_inferiors () == 1)
7cee1e54 5669 puts_filtered (_("Ending remote debugging.\n"));
82f73884 5670
00431a78
PA
5671 struct thread_info *tp = find_thread_ptid (inferior_ptid);
5672
de0d863e
DB
5673 /* Check to see if we are detaching a fork parent. Note that if we
5674 are detaching a fork child, tp == NULL. */
5675 is_fork_parent = (tp != NULL
5676 && tp->pending_follow.kind == TARGET_WAITKIND_FORKED);
5677
5678 /* If doing detach-on-fork, we don't mourn, because that will delete
5679 breakpoints that should be available for the followed inferior. */
5680 if (!is_fork_parent)
f67c0c91 5681 {
249b5733
PA
5682 /* Save the pid as a string before mourning, since that will
5683 unpush the remote target, and we need the string after. */
f2907e49 5684 std::string infpid = target_pid_to_str (ptid_t (pid));
f67c0c91
SDJ
5685
5686 target_mourn_inferior (inferior_ptid);
5687 if (print_inferior_events)
5688 printf_unfiltered (_("[Inferior %d (%s) detached]\n"),
5689 inf->num, infpid.c_str ());
5690 }
de0d863e
DB
5691 else
5692 {
5693 inferior_ptid = null_ptid;
00431a78 5694 detach_inferior (current_inferior ());
de0d863e 5695 }
2d717e4f
DJ
5696}
5697
f6ac5f3d
PA
5698void
5699remote_target::detach (inferior *inf, int from_tty)
2d717e4f 5700{
00431a78 5701 remote_detach_1 (inf, from_tty);
2d717e4f
DJ
5702}
5703
f6ac5f3d
PA
5704void
5705extended_remote_target::detach (inferior *inf, int from_tty)
2d717e4f 5706{
00431a78 5707 remote_detach_1 (inf, from_tty);
de0d863e
DB
5708}
5709
5710/* Target follow-fork function for remote targets. On entry, and
5711 at return, the current inferior is the fork parent.
5712
5713 Note that although this is currently only used for extended-remote,
5714 it is named remote_follow_fork in anticipation of using it for the
5715 remote target as well. */
5716
f6ac5f3d
PA
5717int
5718remote_target::follow_fork (int follow_child, int detach_fork)
de0d863e
DB
5719{
5720 struct remote_state *rs = get_remote_state ();
c269dbdb 5721 enum target_waitkind kind = inferior_thread ()->pending_follow.kind;
de0d863e 5722
c269dbdb
DB
5723 if ((kind == TARGET_WAITKIND_FORKED && remote_fork_event_p (rs))
5724 || (kind == TARGET_WAITKIND_VFORKED && remote_vfork_event_p (rs)))
de0d863e
DB
5725 {
5726 /* When following the parent and detaching the child, we detach
5727 the child here. For the case of following the child and
5728 detaching the parent, the detach is done in the target-
5729 independent follow fork code in infrun.c. We can't use
5730 target_detach when detaching an unfollowed child because
5731 the client side doesn't know anything about the child. */
5732 if (detach_fork && !follow_child)
5733 {
5734 /* Detach the fork child. */
5735 ptid_t child_ptid;
5736 pid_t child_pid;
5737
5738 child_ptid = inferior_thread ()->pending_follow.value.related_pid;
e99b03dc 5739 child_pid = child_ptid.pid ();
de0d863e
DB
5740
5741 remote_detach_pid (child_pid);
de0d863e
DB
5742 }
5743 }
5744 return 0;
c906108c
SS
5745}
5746
94585166
DB
5747/* Target follow-exec function for remote targets. Save EXECD_PATHNAME
5748 in the program space of the new inferior. On entry and at return the
5749 current inferior is the exec'ing inferior. INF is the new exec'd
5750 inferior, which may be the same as the exec'ing inferior unless
5751 follow-exec-mode is "new". */
5752
f6ac5f3d 5753void
4ca51187 5754remote_target::follow_exec (struct inferior *inf, const char *execd_pathname)
94585166
DB
5755{
5756 /* We know that this is a target file name, so if it has the "target:"
5757 prefix we strip it off before saving it in the program space. */
5758 if (is_target_filename (execd_pathname))
5759 execd_pathname += strlen (TARGET_SYSROOT_PREFIX);
5760
5761 set_pspace_remote_exec_file (inf->pspace, execd_pathname);
5762}
5763
6ad8ae5c
DJ
5764/* Same as remote_detach, but don't send the "D" packet; just disconnect. */
5765
f6ac5f3d
PA
5766void
5767remote_target::disconnect (const char *args, int from_tty)
43ff13b4 5768{
43ff13b4 5769 if (args)
2d717e4f 5770 error (_("Argument given to \"disconnect\" when remotely debugging."));
43ff13b4 5771
8020350c
DB
5772 /* Make sure we unpush even the extended remote targets. Calling
5773 target_mourn_inferior won't unpush, and remote_mourn won't
5774 unpush if there is more than one inferior left. */
f6ac5f3d 5775 unpush_target (this);
8020350c 5776 generic_mourn_inferior ();
2d717e4f 5777
43ff13b4
JM
5778 if (from_tty)
5779 puts_filtered ("Ending remote debugging.\n");
5780}
5781
2d717e4f
DJ
5782/* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
5783 be chatty about it. */
5784
f6ac5f3d
PA
5785void
5786extended_remote_target::attach (const char *args, int from_tty)
2d717e4f
DJ
5787{
5788 struct remote_state *rs = get_remote_state ();
be86555c 5789 int pid;
96ef3384 5790 char *wait_status = NULL;
2d717e4f 5791
74164c56 5792 pid = parse_pid_to_attach (args);
2d717e4f 5793
74164c56
JK
5794 /* Remote PID can be freely equal to getpid, do not check it here the same
5795 way as in other targets. */
2d717e4f 5796
4082afcc 5797 if (packet_support (PACKET_vAttach) == PACKET_DISABLE)
2d717e4f
DJ
5798 error (_("This target does not support attaching to a process"));
5799
7cee1e54
PA
5800 if (from_tty)
5801 {
5802 char *exec_file = get_exec_file (0);
5803
5804 if (exec_file)
5805 printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file,
a068643d 5806 target_pid_to_str (ptid_t (pid)).c_str ());
7cee1e54
PA
5807 else
5808 printf_unfiltered (_("Attaching to %s\n"),
a068643d 5809 target_pid_to_str (ptid_t (pid)).c_str ());
7cee1e54
PA
5810 }
5811
8d64371b 5812 xsnprintf (rs->buf.data (), get_remote_packet_size (), "vAttach;%x", pid);
2d717e4f 5813 putpkt (rs->buf);
8d64371b 5814 getpkt (&rs->buf, 0);
2d717e4f 5815
4082afcc
PA
5816 switch (packet_ok (rs->buf,
5817 &remote_protocol_packets[PACKET_vAttach]))
2d717e4f 5818 {
4082afcc 5819 case PACKET_OK:
6efcd9a8 5820 if (!target_is_non_stop_p ())
74531fed
PA
5821 {
5822 /* Save the reply for later. */
8d64371b
TT
5823 wait_status = (char *) alloca (strlen (rs->buf.data ()) + 1);
5824 strcpy (wait_status, rs->buf.data ());
74531fed 5825 }
8d64371b 5826 else if (strcmp (rs->buf.data (), "OK") != 0)
74531fed 5827 error (_("Attaching to %s failed with: %s"),
a068643d 5828 target_pid_to_str (ptid_t (pid)).c_str (),
8d64371b 5829 rs->buf.data ());
4082afcc
PA
5830 break;
5831 case PACKET_UNKNOWN:
5832 error (_("This target does not support attaching to a process"));
5833 default:
5834 error (_("Attaching to %s failed"),
a068643d 5835 target_pid_to_str (ptid_t (pid)).c_str ());
2d717e4f 5836 }
2d717e4f 5837
9ab8741a 5838 set_current_inferior (remote_add_inferior (false, pid, 1, 0));
bad34192 5839
f2907e49 5840 inferior_ptid = ptid_t (pid);
79d7f229 5841
6efcd9a8 5842 if (target_is_non_stop_p ())
bad34192
PA
5843 {
5844 struct thread_info *thread;
79d7f229 5845
bad34192 5846 /* Get list of threads. */
f6ac5f3d 5847 update_thread_list ();
82f73884 5848
00431a78 5849 thread = first_thread_of_inferior (current_inferior ());
bad34192
PA
5850 if (thread)
5851 inferior_ptid = thread->ptid;
5852 else
f2907e49 5853 inferior_ptid = ptid_t (pid);
bad34192
PA
5854
5855 /* Invalidate our notion of the remote current thread. */
47f8a51d 5856 record_currthread (rs, minus_one_ptid);
bad34192 5857 }
74531fed 5858 else
bad34192
PA
5859 {
5860 /* Now, if we have thread information, update inferior_ptid. */
5861 inferior_ptid = remote_current_thread (inferior_ptid);
5862
5863 /* Add the main thread to the thread list. */
00aecdcf
PA
5864 thread_info *thr = add_thread_silent (inferior_ptid);
5865 /* Don't consider the thread stopped until we've processed the
5866 saved stop reply. */
5867 set_executing (thr->ptid, true);
bad34192 5868 }
c0a2216e 5869
96ef3384
UW
5870 /* Next, if the target can specify a description, read it. We do
5871 this before anything involving memory or registers. */
5872 target_find_description ();
5873
6efcd9a8 5874 if (!target_is_non_stop_p ())
74531fed
PA
5875 {
5876 /* Use the previously fetched status. */
5877 gdb_assert (wait_status != NULL);
5878
5879 if (target_can_async_p ())
5880 {
722247f1 5881 struct notif_event *reply
6b8edb51 5882 = remote_notif_parse (this, &notif_client_stop, wait_status);
74531fed 5883
722247f1 5884 push_stop_reply ((struct stop_reply *) reply);
74531fed 5885
6a3753b3 5886 target_async (1);
74531fed
PA
5887 }
5888 else
5889 {
5890 gdb_assert (wait_status != NULL);
8d64371b 5891 strcpy (rs->buf.data (), wait_status);
74531fed
PA
5892 rs->cached_wait_status = 1;
5893 }
5894 }
5895 else
5896 gdb_assert (wait_status == NULL);
2d717e4f
DJ
5897}
5898
b9c1d481
AS
5899/* Implementation of the to_post_attach method. */
5900
f6ac5f3d
PA
5901void
5902extended_remote_target::post_attach (int pid)
b9c1d481 5903{
6efcd9a8
PA
5904 /* Get text, data & bss offsets. */
5905 get_offsets ();
5906
b9c1d481
AS
5907 /* In certain cases GDB might not have had the chance to start
5908 symbol lookup up until now. This could happen if the debugged
5909 binary is not using shared libraries, the vsyscall page is not
5910 present (on Linux) and the binary itself hadn't changed since the
5911 debugging process was started. */
5912 if (symfile_objfile != NULL)
5913 remote_check_symbols();
5914}
5915
c906108c 5916\f
506fb367
DJ
5917/* Check for the availability of vCont. This function should also check
5918 the response. */
c906108c 5919
6b8edb51
PA
5920void
5921remote_target::remote_vcont_probe ()
c906108c 5922{
6b8edb51 5923 remote_state *rs = get_remote_state ();
2e9f7625 5924 char *buf;
6d820c5c 5925
8d64371b 5926 strcpy (rs->buf.data (), "vCont?");
2e9f7625 5927 putpkt (rs->buf);
8d64371b
TT
5928 getpkt (&rs->buf, 0);
5929 buf = rs->buf.data ();
c906108c 5930
506fb367 5931 /* Make sure that the features we assume are supported. */
61012eef 5932 if (startswith (buf, "vCont"))
506fb367
DJ
5933 {
5934 char *p = &buf[5];
750ce8d1 5935 int support_c, support_C;
506fb367 5936
750ce8d1
YQ
5937 rs->supports_vCont.s = 0;
5938 rs->supports_vCont.S = 0;
506fb367
DJ
5939 support_c = 0;
5940 support_C = 0;
d458bd84 5941 rs->supports_vCont.t = 0;
c1e36e3e 5942 rs->supports_vCont.r = 0;
506fb367
DJ
5943 while (p && *p == ';')
5944 {
5945 p++;
5946 if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 5947 rs->supports_vCont.s = 1;
506fb367 5948 else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 5949 rs->supports_vCont.S = 1;
506fb367
DJ
5950 else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
5951 support_c = 1;
5952 else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
5953 support_C = 1;
74531fed 5954 else if (*p == 't' && (*(p + 1) == ';' || *(p + 1) == 0))
d458bd84 5955 rs->supports_vCont.t = 1;
c1e36e3e
PA
5956 else if (*p == 'r' && (*(p + 1) == ';' || *(p + 1) == 0))
5957 rs->supports_vCont.r = 1;
506fb367
DJ
5958
5959 p = strchr (p, ';');
5960 }
c906108c 5961
750ce8d1
YQ
5962 /* If c, and C are not all supported, we can't use vCont. Clearing
5963 BUF will make packet_ok disable the packet. */
5964 if (!support_c || !support_C)
506fb367
DJ
5965 buf[0] = 0;
5966 }
c906108c 5967
8d64371b 5968 packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCont]);
506fb367 5969}
c906108c 5970
0d8f58ca
PA
5971/* Helper function for building "vCont" resumptions. Write a
5972 resumption to P. ENDP points to one-passed-the-end of the buffer
5973 we're allowed to write to. Returns BUF+CHARACTERS_WRITTEN. The
5974 thread to be resumed is PTID; STEP and SIGGNAL indicate whether the
5975 resumed thread should be single-stepped and/or signalled. If PTID
5976 equals minus_one_ptid, then all threads are resumed; if PTID
5977 represents a process, then all threads of the process are resumed;
5978 the thread to be stepped and/or signalled is given in the global
5979 INFERIOR_PTID. */
5980
6b8edb51
PA
5981char *
5982remote_target::append_resumption (char *p, char *endp,
5983 ptid_t ptid, int step, gdb_signal siggnal)
0d8f58ca
PA
5984{
5985 struct remote_state *rs = get_remote_state ();
5986
a493e3e2 5987 if (step && siggnal != GDB_SIGNAL_0)
0d8f58ca 5988 p += xsnprintf (p, endp - p, ";S%02x", siggnal);
c1e36e3e
PA
5989 else if (step
5990 /* GDB is willing to range step. */
5991 && use_range_stepping
5992 /* Target supports range stepping. */
5993 && rs->supports_vCont.r
5994 /* We don't currently support range stepping multiple
5995 threads with a wildcard (though the protocol allows it,
5996 so stubs shouldn't make an active effort to forbid
5997 it). */
0e998d96 5998 && !(remote_multi_process_p (rs) && ptid.is_pid ()))
c1e36e3e
PA
5999 {
6000 struct thread_info *tp;
6001
d7e15655 6002 if (ptid == minus_one_ptid)
c1e36e3e
PA
6003 {
6004 /* If we don't know about the target thread's tid, then
6005 we're resuming magic_null_ptid (see caller). */
6006 tp = find_thread_ptid (magic_null_ptid);
6007 }
6008 else
6009 tp = find_thread_ptid (ptid);
6010 gdb_assert (tp != NULL);
6011
6012 if (tp->control.may_range_step)
6013 {
6014 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
6015
6016 p += xsnprintf (p, endp - p, ";r%s,%s",
6017 phex_nz (tp->control.step_range_start,
6018 addr_size),
6019 phex_nz (tp->control.step_range_end,
6020 addr_size));
6021 }
6022 else
6023 p += xsnprintf (p, endp - p, ";s");
6024 }
0d8f58ca
PA
6025 else if (step)
6026 p += xsnprintf (p, endp - p, ";s");
a493e3e2 6027 else if (siggnal != GDB_SIGNAL_0)
0d8f58ca
PA
6028 p += xsnprintf (p, endp - p, ";C%02x", siggnal);
6029 else
6030 p += xsnprintf (p, endp - p, ";c");
6031
0e998d96 6032 if (remote_multi_process_p (rs) && ptid.is_pid ())
0d8f58ca
PA
6033 {
6034 ptid_t nptid;
6035
6036 /* All (-1) threads of process. */
e99b03dc 6037 nptid = ptid_t (ptid.pid (), -1, 0);
0d8f58ca
PA
6038
6039 p += xsnprintf (p, endp - p, ":");
6040 p = write_ptid (p, endp, nptid);
6041 }
d7e15655 6042 else if (ptid != minus_one_ptid)
0d8f58ca
PA
6043 {
6044 p += xsnprintf (p, endp - p, ":");
6045 p = write_ptid (p, endp, ptid);
6046 }
6047
6048 return p;
6049}
6050
799a2abe
PA
6051/* Clear the thread's private info on resume. */
6052
6053static void
6054resume_clear_thread_private_info (struct thread_info *thread)
6055{
6056 if (thread->priv != NULL)
6057 {
7aabaf9d
SM
6058 remote_thread_info *priv = get_remote_thread_info (thread);
6059
6060 priv->stop_reason = TARGET_STOPPED_BY_NO_REASON;
6061 priv->watch_data_address = 0;
799a2abe
PA
6062 }
6063}
6064
e5ef252a
PA
6065/* Append a vCont continue-with-signal action for threads that have a
6066 non-zero stop signal. */
6067
6b8edb51
PA
6068char *
6069remote_target::append_pending_thread_resumptions (char *p, char *endp,
6070 ptid_t ptid)
e5ef252a 6071{
08036331
PA
6072 for (thread_info *thread : all_non_exited_threads (ptid))
6073 if (inferior_ptid != thread->ptid
70509625 6074 && thread->suspend.stop_signal != GDB_SIGNAL_0)
e5ef252a
PA
6075 {
6076 p = append_resumption (p, endp, thread->ptid,
6077 0, thread->suspend.stop_signal);
6078 thread->suspend.stop_signal = GDB_SIGNAL_0;
799a2abe 6079 resume_clear_thread_private_info (thread);
e5ef252a
PA
6080 }
6081
6082 return p;
6083}
6084
7b68ffbb
PA
6085/* Set the target running, using the packets that use Hc
6086 (c/s/C/S). */
6087
6b8edb51
PA
6088void
6089remote_target::remote_resume_with_hc (ptid_t ptid, int step,
6090 gdb_signal siggnal)
7b68ffbb
PA
6091{
6092 struct remote_state *rs = get_remote_state ();
7b68ffbb
PA
6093 char *buf;
6094
6095 rs->last_sent_signal = siggnal;
6096 rs->last_sent_step = step;
6097
6098 /* The c/s/C/S resume packets use Hc, so set the continue
6099 thread. */
d7e15655 6100 if (ptid == minus_one_ptid)
7b68ffbb
PA
6101 set_continue_thread (any_thread_ptid);
6102 else
6103 set_continue_thread (ptid);
6104
08036331 6105 for (thread_info *thread : all_non_exited_threads ())
7b68ffbb
PA
6106 resume_clear_thread_private_info (thread);
6107
8d64371b 6108 buf = rs->buf.data ();
6b8edb51 6109 if (::execution_direction == EXEC_REVERSE)
7b68ffbb
PA
6110 {
6111 /* We don't pass signals to the target in reverse exec mode. */
6112 if (info_verbose && siggnal != GDB_SIGNAL_0)
6113 warning (_(" - Can't pass signal %d to target in reverse: ignored."),
6114 siggnal);
6115
6116 if (step && packet_support (PACKET_bs) == PACKET_DISABLE)
6117 error (_("Remote reverse-step not supported."));
6118 if (!step && packet_support (PACKET_bc) == PACKET_DISABLE)
6119 error (_("Remote reverse-continue not supported."));
6120
6121 strcpy (buf, step ? "bs" : "bc");
6122 }
6123 else if (siggnal != GDB_SIGNAL_0)
6124 {
6125 buf[0] = step ? 'S' : 'C';
6126 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
6127 buf[2] = tohex (((int) siggnal) & 0xf);
6128 buf[3] = '\0';
6129 }
6130 else
6131 strcpy (buf, step ? "s" : "c");
6132
6133 putpkt (buf);
6134}
6135
506fb367
DJ
6136/* Resume the remote inferior by using a "vCont" packet. The thread
6137 to be resumed is PTID; STEP and SIGGNAL indicate whether the
79d7f229
PA
6138 resumed thread should be single-stepped and/or signalled. If PTID
6139 equals minus_one_ptid, then all threads are resumed; the thread to
6140 be stepped and/or signalled is given in the global INFERIOR_PTID.
6141 This function returns non-zero iff it resumes the inferior.
44eaed12 6142
7b68ffbb
PA
6143 This function issues a strict subset of all possible vCont commands
6144 at the moment. */
44eaed12 6145
6b8edb51
PA
6146int
6147remote_target::remote_resume_with_vcont (ptid_t ptid, int step,
6148 enum gdb_signal siggnal)
506fb367
DJ
6149{
6150 struct remote_state *rs = get_remote_state ();
82f73884
PA
6151 char *p;
6152 char *endp;
44eaed12 6153
7b68ffbb 6154 /* No reverse execution actions defined for vCont. */
6b8edb51 6155 if (::execution_direction == EXEC_REVERSE)
7b68ffbb
PA
6156 return 0;
6157
4082afcc 6158 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6b8edb51 6159 remote_vcont_probe ();
44eaed12 6160
4082afcc 6161 if (packet_support (PACKET_vCont) == PACKET_DISABLE)
6d820c5c 6162 return 0;
44eaed12 6163
8d64371b
TT
6164 p = rs->buf.data ();
6165 endp = p + get_remote_packet_size ();
82f73884 6166
506fb367
DJ
6167 /* If we could generate a wider range of packets, we'd have to worry
6168 about overflowing BUF. Should there be a generic
6169 "multi-part-packet" packet? */
6170
0d8f58ca
PA
6171 p += xsnprintf (p, endp - p, "vCont");
6172
d7e15655 6173 if (ptid == magic_null_ptid)
c906108c 6174 {
79d7f229
PA
6175 /* MAGIC_NULL_PTID means that we don't have any active threads,
6176 so we don't have any TID numbers the inferior will
6177 understand. Make sure to only send forms that do not specify
6178 a TID. */
a9cbf802 6179 append_resumption (p, endp, minus_one_ptid, step, siggnal);
506fb367 6180 }
d7e15655 6181 else if (ptid == minus_one_ptid || ptid.is_pid ())
506fb367 6182 {
0d8f58ca
PA
6183 /* Resume all threads (of all processes, or of a single
6184 process), with preference for INFERIOR_PTID. This assumes
6185 inferior_ptid belongs to the set of all threads we are about
6186 to resume. */
a493e3e2 6187 if (step || siggnal != GDB_SIGNAL_0)
82f73884 6188 {
0d8f58ca
PA
6189 /* Step inferior_ptid, with or without signal. */
6190 p = append_resumption (p, endp, inferior_ptid, step, siggnal);
82f73884 6191 }
0d8f58ca 6192
e5ef252a
PA
6193 /* Also pass down any pending signaled resumption for other
6194 threads not the current. */
6195 p = append_pending_thread_resumptions (p, endp, ptid);
6196
0d8f58ca 6197 /* And continue others without a signal. */
a493e3e2 6198 append_resumption (p, endp, ptid, /*step=*/ 0, GDB_SIGNAL_0);
c906108c
SS
6199 }
6200 else
506fb367
DJ
6201 {
6202 /* Scheduler locking; resume only PTID. */
a9cbf802 6203 append_resumption (p, endp, ptid, step, siggnal);
506fb367 6204 }
c906108c 6205
8d64371b 6206 gdb_assert (strlen (rs->buf.data ()) < get_remote_packet_size ());
82f73884 6207 putpkt (rs->buf);
506fb367 6208
6efcd9a8 6209 if (target_is_non_stop_p ())
74531fed
PA
6210 {
6211 /* In non-stop, the stub replies to vCont with "OK". The stop
6212 reply will be reported asynchronously by means of a `%Stop'
6213 notification. */
8d64371b
TT
6214 getpkt (&rs->buf, 0);
6215 if (strcmp (rs->buf.data (), "OK") != 0)
6216 error (_("Unexpected vCont reply in non-stop mode: %s"),
6217 rs->buf.data ());
74531fed
PA
6218 }
6219
506fb367 6220 return 1;
c906108c 6221}
43ff13b4 6222
506fb367
DJ
6223/* Tell the remote machine to resume. */
6224
f6ac5f3d
PA
6225void
6226remote_target::resume (ptid_t ptid, int step, enum gdb_signal siggnal)
43ff13b4 6227{
d01949b6 6228 struct remote_state *rs = get_remote_state ();
43ff13b4 6229
85ad3aaf
PA
6230 /* When connected in non-stop mode, the core resumes threads
6231 individually. Resuming remote threads directly in target_resume
6232 would thus result in sending one packet per thread. Instead, to
6233 minimize roundtrip latency, here we just store the resume
6234 request; the actual remote resumption will be done in
6235 target_commit_resume / remote_commit_resume, where we'll be able
6236 to do vCont action coalescing. */
f6ac5f3d 6237 if (target_is_non_stop_p () && ::execution_direction != EXEC_REVERSE)
85ad3aaf 6238 {
7aabaf9d 6239 remote_thread_info *remote_thr;
85ad3aaf 6240
d7e15655 6241 if (minus_one_ptid == ptid || ptid.is_pid ())
7aabaf9d 6242 remote_thr = get_remote_thread_info (inferior_ptid);
85ad3aaf 6243 else
7aabaf9d
SM
6244 remote_thr = get_remote_thread_info (ptid);
6245
85ad3aaf
PA
6246 remote_thr->last_resume_step = step;
6247 remote_thr->last_resume_sig = siggnal;
6248 return;
6249 }
6250
722247f1
YQ
6251 /* In all-stop, we can't mark REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN
6252 (explained in remote-notif.c:handle_notification) so
6253 remote_notif_process is not called. We need find a place where
6254 it is safe to start a 'vNotif' sequence. It is good to do it
6255 before resuming inferior, because inferior was stopped and no RSP
6256 traffic at that moment. */
6efcd9a8 6257 if (!target_is_non_stop_p ())
5965e028 6258 remote_notif_process (rs->notif_state, &notif_client_stop);
722247f1 6259
f6ac5f3d 6260 rs->last_resume_exec_dir = ::execution_direction;
3a00c802 6261
7b68ffbb
PA
6262 /* Prefer vCont, and fallback to s/c/S/C, which use Hc. */
6263 if (!remote_resume_with_vcont (ptid, step, siggnal))
6b8edb51 6264 remote_resume_with_hc (ptid, step, siggnal);
43ff13b4 6265
2acceee2 6266 /* We are about to start executing the inferior, let's register it
0df8b418
MS
6267 with the event loop. NOTE: this is the one place where all the
6268 execution commands end up. We could alternatively do this in each
23860348 6269 of the execution commands in infcmd.c. */
2acceee2
JM
6270 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
6271 into infcmd.c in order to allow inferior function calls to work
23860348 6272 NOT asynchronously. */
362646f5 6273 if (target_can_async_p ())
6a3753b3 6274 target_async (1);
e24a49d8
PA
6275
6276 /* We've just told the target to resume. The remote server will
6277 wait for the inferior to stop, and then send a stop reply. In
6278 the mean time, we can't start another command/query ourselves
74531fed
PA
6279 because the stub wouldn't be ready to process it. This applies
6280 only to the base all-stop protocol, however. In non-stop (which
6281 only supports vCont), the stub replies with an "OK", and is
6282 immediate able to process further serial input. */
6efcd9a8 6283 if (!target_is_non_stop_p ())
74531fed 6284 rs->waiting_for_stop_reply = 1;
43ff13b4 6285}
85ad3aaf 6286
85ad3aaf
PA
6287static int is_pending_fork_parent_thread (struct thread_info *thread);
6288
6289/* Private per-inferior info for target remote processes. */
6290
089354bb 6291struct remote_inferior : public private_inferior
85ad3aaf
PA
6292{
6293 /* Whether we can send a wildcard vCont for this process. */
089354bb 6294 bool may_wildcard_vcont = true;
85ad3aaf
PA
6295};
6296
089354bb
SM
6297/* Get the remote private inferior data associated to INF. */
6298
6299static remote_inferior *
6300get_remote_inferior (inferior *inf)
6301{
6302 if (inf->priv == NULL)
6303 inf->priv.reset (new remote_inferior);
6304
6305 return static_cast<remote_inferior *> (inf->priv.get ());
6306}
6307
f5db4863 6308/* Class used to track the construction of a vCont packet in the
85ad3aaf
PA
6309 outgoing packet buffer. This is used to send multiple vCont
6310 packets if we have more actions than would fit a single packet. */
6311
f5db4863 6312class vcont_builder
85ad3aaf 6313{
f5db4863 6314public:
6b8edb51
PA
6315 explicit vcont_builder (remote_target *remote)
6316 : m_remote (remote)
f5db4863
PA
6317 {
6318 restart ();
6319 }
6320
6321 void flush ();
6322 void push_action (ptid_t ptid, bool step, gdb_signal siggnal);
6323
6324private:
6325 void restart ();
6326
6b8edb51
PA
6327 /* The remote target. */
6328 remote_target *m_remote;
6329
85ad3aaf
PA
6330 /* Pointer to the first action. P points here if no action has been
6331 appended yet. */
f5db4863 6332 char *m_first_action;
85ad3aaf
PA
6333
6334 /* Where the next action will be appended. */
f5db4863 6335 char *m_p;
85ad3aaf
PA
6336
6337 /* The end of the buffer. Must never write past this. */
f5db4863 6338 char *m_endp;
85ad3aaf
PA
6339};
6340
6341/* Prepare the outgoing buffer for a new vCont packet. */
6342
f5db4863
PA
6343void
6344vcont_builder::restart ()
85ad3aaf 6345{
6b8edb51 6346 struct remote_state *rs = m_remote->get_remote_state ();
85ad3aaf 6347
8d64371b
TT
6348 m_p = rs->buf.data ();
6349 m_endp = m_p + m_remote->get_remote_packet_size ();
f5db4863
PA
6350 m_p += xsnprintf (m_p, m_endp - m_p, "vCont");
6351 m_first_action = m_p;
85ad3aaf
PA
6352}
6353
6354/* If the vCont packet being built has any action, send it to the
6355 remote end. */
6356
f5db4863
PA
6357void
6358vcont_builder::flush ()
85ad3aaf
PA
6359{
6360 struct remote_state *rs;
6361
f5db4863 6362 if (m_p == m_first_action)
85ad3aaf
PA
6363 return;
6364
6b8edb51
PA
6365 rs = m_remote->get_remote_state ();
6366 m_remote->putpkt (rs->buf);
8d64371b
TT
6367 m_remote->getpkt (&rs->buf, 0);
6368 if (strcmp (rs->buf.data (), "OK") != 0)
6369 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf.data ());
85ad3aaf
PA
6370}
6371
6372/* The largest action is range-stepping, with its two addresses. This
6373 is more than sufficient. If a new, bigger action is created, it'll
6374 quickly trigger a failed assertion in append_resumption (and we'll
6375 just bump this). */
6376#define MAX_ACTION_SIZE 200
6377
6378/* Append a new vCont action in the outgoing packet being built. If
6379 the action doesn't fit the packet along with previous actions, push
6380 what we've got so far to the remote end and start over a new vCont
6381 packet (with the new action). */
6382
f5db4863
PA
6383void
6384vcont_builder::push_action (ptid_t ptid, bool step, gdb_signal siggnal)
85ad3aaf
PA
6385{
6386 char buf[MAX_ACTION_SIZE + 1];
85ad3aaf 6387
6b8edb51
PA
6388 char *endp = m_remote->append_resumption (buf, buf + sizeof (buf),
6389 ptid, step, siggnal);
85ad3aaf
PA
6390
6391 /* Check whether this new action would fit in the vCont packet along
6392 with previous actions. If not, send what we've got so far and
6393 start a new vCont packet. */
f5db4863
PA
6394 size_t rsize = endp - buf;
6395 if (rsize > m_endp - m_p)
85ad3aaf 6396 {
f5db4863
PA
6397 flush ();
6398 restart ();
85ad3aaf
PA
6399
6400 /* Should now fit. */
f5db4863 6401 gdb_assert (rsize <= m_endp - m_p);
85ad3aaf
PA
6402 }
6403
f5db4863
PA
6404 memcpy (m_p, buf, rsize);
6405 m_p += rsize;
6406 *m_p = '\0';
85ad3aaf
PA
6407}
6408
6409/* to_commit_resume implementation. */
6410
f6ac5f3d
PA
6411void
6412remote_target::commit_resume ()
85ad3aaf 6413{
85ad3aaf
PA
6414 int any_process_wildcard;
6415 int may_global_wildcard_vcont;
85ad3aaf
PA
6416
6417 /* If connected in all-stop mode, we'd send the remote resume
6418 request directly from remote_resume. Likewise if
6419 reverse-debugging, as there are no defined vCont actions for
6420 reverse execution. */
f6ac5f3d 6421 if (!target_is_non_stop_p () || ::execution_direction == EXEC_REVERSE)
85ad3aaf
PA
6422 return;
6423
6424 /* Try to send wildcard actions ("vCont;c" or "vCont;c:pPID.-1")
6425 instead of resuming all threads of each process individually.
6426 However, if any thread of a process must remain halted, we can't
6427 send wildcard resumes and must send one action per thread.
6428
6429 Care must be taken to not resume threads/processes the server
6430 side already told us are stopped, but the core doesn't know about
6431 yet, because the events are still in the vStopped notification
6432 queue. For example:
6433
6434 #1 => vCont s:p1.1;c
6435 #2 <= OK
6436 #3 <= %Stopped T05 p1.1
6437 #4 => vStopped
6438 #5 <= T05 p1.2
6439 #6 => vStopped
6440 #7 <= OK
6441 #8 (infrun handles the stop for p1.1 and continues stepping)
6442 #9 => vCont s:p1.1;c
6443
6444 The last vCont above would resume thread p1.2 by mistake, because
6445 the server has no idea that the event for p1.2 had not been
6446 handled yet.
6447
6448 The server side must similarly ignore resume actions for the
6449 thread that has a pending %Stopped notification (and any other
6450 threads with events pending), until GDB acks the notification
6451 with vStopped. Otherwise, e.g., the following case is
6452 mishandled:
6453
6454 #1 => g (or any other packet)
6455 #2 <= [registers]
6456 #3 <= %Stopped T05 p1.2
6457 #4 => vCont s:p1.1;c
6458 #5 <= OK
6459
6460 Above, the server must not resume thread p1.2. GDB can't know
6461 that p1.2 stopped until it acks the %Stopped notification, and
6462 since from GDB's perspective all threads should be running, it
6463 sends a "c" action.
6464
6465 Finally, special care must also be given to handling fork/vfork
6466 events. A (v)fork event actually tells us that two processes
6467 stopped -- the parent and the child. Until we follow the fork,
6468 we must not resume the child. Therefore, if we have a pending
6469 fork follow, we must not send a global wildcard resume action
6470 (vCont;c). We can still send process-wide wildcards though. */
6471
6472 /* Start by assuming a global wildcard (vCont;c) is possible. */
6473 may_global_wildcard_vcont = 1;
6474
6475 /* And assume every process is individually wildcard-able too. */
08036331 6476 for (inferior *inf : all_non_exited_inferiors ())
85ad3aaf 6477 {
089354bb
SM
6478 remote_inferior *priv = get_remote_inferior (inf);
6479
6480 priv->may_wildcard_vcont = true;
85ad3aaf
PA
6481 }
6482
6483 /* Check for any pending events (not reported or processed yet) and
6484 disable process and global wildcard resumes appropriately. */
6485 check_pending_events_prevent_wildcard_vcont (&may_global_wildcard_vcont);
6486
08036331 6487 for (thread_info *tp : all_non_exited_threads ())
85ad3aaf
PA
6488 {
6489 /* If a thread of a process is not meant to be resumed, then we
6490 can't wildcard that process. */
6491 if (!tp->executing)
6492 {
089354bb 6493 get_remote_inferior (tp->inf)->may_wildcard_vcont = false;
85ad3aaf
PA
6494
6495 /* And if we can't wildcard a process, we can't wildcard
6496 everything either. */
6497 may_global_wildcard_vcont = 0;
6498 continue;
6499 }
6500
6501 /* If a thread is the parent of an unfollowed fork, then we
6502 can't do a global wildcard, as that would resume the fork
6503 child. */
6504 if (is_pending_fork_parent_thread (tp))
6505 may_global_wildcard_vcont = 0;
6506 }
6507
6508 /* Now let's build the vCont packet(s). Actions must be appended
6509 from narrower to wider scopes (thread -> process -> global). If
6510 we end up with too many actions for a single packet vcont_builder
6511 flushes the current vCont packet to the remote side and starts a
6512 new one. */
6b8edb51 6513 struct vcont_builder vcont_builder (this);
85ad3aaf
PA
6514
6515 /* Threads first. */
08036331 6516 for (thread_info *tp : all_non_exited_threads ())
85ad3aaf 6517 {
7aabaf9d 6518 remote_thread_info *remote_thr = get_remote_thread_info (tp);
85ad3aaf
PA
6519
6520 if (!tp->executing || remote_thr->vcont_resumed)
6521 continue;
6522
6523 gdb_assert (!thread_is_in_step_over_chain (tp));
6524
6525 if (!remote_thr->last_resume_step
6526 && remote_thr->last_resume_sig == GDB_SIGNAL_0
089354bb 6527 && get_remote_inferior (tp->inf)->may_wildcard_vcont)
85ad3aaf
PA
6528 {
6529 /* We'll send a wildcard resume instead. */
6530 remote_thr->vcont_resumed = 1;
6531 continue;
6532 }
6533
f5db4863 6534 vcont_builder.push_action (tp->ptid,
85ad3aaf
PA
6535 remote_thr->last_resume_step,
6536 remote_thr->last_resume_sig);
6537 remote_thr->vcont_resumed = 1;
6538 }
6539
6540 /* Now check whether we can send any process-wide wildcard. This is
6541 to avoid sending a global wildcard in the case nothing is
6542 supposed to be resumed. */
6543 any_process_wildcard = 0;
6544
08036331 6545 for (inferior *inf : all_non_exited_inferiors ())
85ad3aaf 6546 {
089354bb 6547 if (get_remote_inferior (inf)->may_wildcard_vcont)
85ad3aaf
PA
6548 {
6549 any_process_wildcard = 1;
6550 break;
6551 }
6552 }
6553
6554 if (any_process_wildcard)
6555 {
6556 /* If all processes are wildcard-able, then send a single "c"
6557 action, otherwise, send an "all (-1) threads of process"
6558 continue action for each running process, if any. */
6559 if (may_global_wildcard_vcont)
6560 {
f5db4863
PA
6561 vcont_builder.push_action (minus_one_ptid,
6562 false, GDB_SIGNAL_0);
85ad3aaf
PA
6563 }
6564 else
6565 {
08036331 6566 for (inferior *inf : all_non_exited_inferiors ())
85ad3aaf 6567 {
089354bb 6568 if (get_remote_inferior (inf)->may_wildcard_vcont)
85ad3aaf 6569 {
f2907e49 6570 vcont_builder.push_action (ptid_t (inf->pid),
f5db4863 6571 false, GDB_SIGNAL_0);
85ad3aaf
PA
6572 }
6573 }
6574 }
6575 }
6576
f5db4863 6577 vcont_builder.flush ();
85ad3aaf
PA
6578}
6579
c906108c 6580\f
43ff13b4 6581
74531fed
PA
6582/* Non-stop version of target_stop. Uses `vCont;t' to stop a remote
6583 thread, all threads of a remote process, or all threads of all
6584 processes. */
6585
6b8edb51
PA
6586void
6587remote_target::remote_stop_ns (ptid_t ptid)
74531fed
PA
6588{
6589 struct remote_state *rs = get_remote_state ();
8d64371b
TT
6590 char *p = rs->buf.data ();
6591 char *endp = p + get_remote_packet_size ();
74531fed 6592
4082afcc 6593 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6b8edb51 6594 remote_vcont_probe ();
74531fed 6595
d458bd84 6596 if (!rs->supports_vCont.t)
74531fed
PA
6597 error (_("Remote server does not support stopping threads"));
6598
d7e15655 6599 if (ptid == minus_one_ptid
0e998d96 6600 || (!remote_multi_process_p (rs) && ptid.is_pid ()))
74531fed
PA
6601 p += xsnprintf (p, endp - p, "vCont;t");
6602 else
6603 {
6604 ptid_t nptid;
6605
74531fed
PA
6606 p += xsnprintf (p, endp - p, "vCont;t:");
6607
0e998d96 6608 if (ptid.is_pid ())
74531fed 6609 /* All (-1) threads of process. */
e99b03dc 6610 nptid = ptid_t (ptid.pid (), -1, 0);
74531fed
PA
6611 else
6612 {
6613 /* Small optimization: if we already have a stop reply for
6614 this thread, no use in telling the stub we want this
6615 stopped. */
6616 if (peek_stop_reply (ptid))
6617 return;
6618
6619 nptid = ptid;
6620 }
6621
a9cbf802 6622 write_ptid (p, endp, nptid);
74531fed
PA
6623 }
6624
6625 /* In non-stop, we get an immediate OK reply. The stop reply will
6626 come in asynchronously by notification. */
6627 putpkt (rs->buf);
8d64371b
TT
6628 getpkt (&rs->buf, 0);
6629 if (strcmp (rs->buf.data (), "OK") != 0)
a068643d 6630 error (_("Stopping %s failed: %s"), target_pid_to_str (ptid).c_str (),
8d64371b 6631 rs->buf.data ());
74531fed
PA
6632}
6633
bfedc46a
PA
6634/* All-stop version of target_interrupt. Sends a break or a ^C to
6635 interrupt the remote target. It is undefined which thread of which
6636 process reports the interrupt. */
74531fed 6637
6b8edb51
PA
6638void
6639remote_target::remote_interrupt_as ()
74531fed
PA
6640{
6641 struct remote_state *rs = get_remote_state ();
6642
3a29589a
DJ
6643 rs->ctrlc_pending_p = 1;
6644
74531fed
PA
6645 /* If the inferior is stopped already, but the core didn't know
6646 about it yet, just ignore the request. The cached wait status
6647 will be collected in remote_wait. */
6648 if (rs->cached_wait_status)
6649 return;
6650
9a7071a8
JB
6651 /* Send interrupt_sequence to remote target. */
6652 send_interrupt_sequence ();
74531fed
PA
6653}
6654
de979965
PA
6655/* Non-stop version of target_interrupt. Uses `vCtrlC' to interrupt
6656 the remote target. It is undefined which thread of which process
e42de8c7
PA
6657 reports the interrupt. Throws an error if the packet is not
6658 supported by the server. */
de979965 6659
6b8edb51
PA
6660void
6661remote_target::remote_interrupt_ns ()
de979965
PA
6662{
6663 struct remote_state *rs = get_remote_state ();
8d64371b
TT
6664 char *p = rs->buf.data ();
6665 char *endp = p + get_remote_packet_size ();
de979965
PA
6666
6667 xsnprintf (p, endp - p, "vCtrlC");
6668
6669 /* In non-stop, we get an immediate OK reply. The stop reply will
6670 come in asynchronously by notification. */
6671 putpkt (rs->buf);
8d64371b 6672 getpkt (&rs->buf, 0);
de979965
PA
6673
6674 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCtrlC]))
6675 {
6676 case PACKET_OK:
6677 break;
6678 case PACKET_UNKNOWN:
e42de8c7 6679 error (_("No support for interrupting the remote target."));
de979965 6680 case PACKET_ERROR:
8d64371b 6681 error (_("Interrupting target failed: %s"), rs->buf.data ());
de979965 6682 }
de979965
PA
6683}
6684
bfedc46a 6685/* Implement the to_stop function for the remote targets. */
74531fed 6686
f6ac5f3d
PA
6687void
6688remote_target::stop (ptid_t ptid)
c906108c 6689{
7a292a7a 6690 if (remote_debug)
0f71a2f6 6691 fprintf_unfiltered (gdb_stdlog, "remote_stop called\n");
c906108c 6692
6efcd9a8 6693 if (target_is_non_stop_p ())
74531fed 6694 remote_stop_ns (ptid);
c906108c 6695 else
bfedc46a
PA
6696 {
6697 /* We don't currently have a way to transparently pause the
6698 remote target in all-stop mode. Interrupt it instead. */
de979965 6699 remote_interrupt_as ();
bfedc46a
PA
6700 }
6701}
6702
6703/* Implement the to_interrupt function for the remote targets. */
6704
f6ac5f3d
PA
6705void
6706remote_target::interrupt ()
bfedc46a
PA
6707{
6708 if (remote_debug)
6709 fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n");
6710
e42de8c7
PA
6711 if (target_is_non_stop_p ())
6712 remote_interrupt_ns ();
bfedc46a 6713 else
e42de8c7 6714 remote_interrupt_as ();
c906108c
SS
6715}
6716
93692b58
PA
6717/* Implement the to_pass_ctrlc function for the remote targets. */
6718
f6ac5f3d
PA
6719void
6720remote_target::pass_ctrlc ()
93692b58
PA
6721{
6722 struct remote_state *rs = get_remote_state ();
6723
6724 if (remote_debug)
6725 fprintf_unfiltered (gdb_stdlog, "remote_pass_ctrlc called\n");
6726
6727 /* If we're starting up, we're not fully synced yet. Quit
6728 immediately. */
6729 if (rs->starting_up)
6730 quit ();
6731 /* If ^C has already been sent once, offer to disconnect. */
6732 else if (rs->ctrlc_pending_p)
6733 interrupt_query ();
6734 else
e671cd59 6735 target_interrupt ();
93692b58
PA
6736}
6737
c906108c
SS
6738/* Ask the user what to do when an interrupt is received. */
6739
6b8edb51
PA
6740void
6741remote_target::interrupt_query ()
c906108c 6742{
abc56d60 6743 struct remote_state *rs = get_remote_state ();
c906108c 6744
abc56d60 6745 if (rs->waiting_for_stop_reply && rs->ctrlc_pending_p)
74531fed 6746 {
abc56d60
PA
6747 if (query (_("The target is not responding to interrupt requests.\n"
6748 "Stop debugging it? ")))
74531fed 6749 {
78a095c3 6750 remote_unpush_target ();
abc56d60 6751 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
74531fed
PA
6752 }
6753 }
abc56d60
PA
6754 else
6755 {
6756 if (query (_("Interrupted while waiting for the program.\n"
6757 "Give up waiting? ")))
6758 quit ();
6759 }
c906108c
SS
6760}
6761
6426a772
JM
6762/* Enable/disable target terminal ownership. Most targets can use
6763 terminal groups to control terminal ownership. Remote targets are
6764 different in that explicit transfer of ownership to/from GDB/target
23860348 6765 is required. */
6426a772 6766
f6ac5f3d
PA
6767void
6768remote_target::terminal_inferior ()
6426a772 6769{
6426a772
JM
6770 /* NOTE: At this point we could also register our selves as the
6771 recipient of all input. Any characters typed could then be
23860348 6772 passed on down to the target. */
6426a772
JM
6773}
6774
f6ac5f3d
PA
6775void
6776remote_target::terminal_ours ()
6426a772 6777{
6426a772
JM
6778}
6779
176a6961 6780static void
05be00a8 6781remote_console_output (const char *msg)
c906108c 6782{
05be00a8 6783 const char *p;
c906108c 6784
c5aa993b 6785 for (p = msg; p[0] && p[1]; p += 2)
c906108c
SS
6786 {
6787 char tb[2];
6788 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
a744cf53 6789
c906108c
SS
6790 tb[0] = c;
6791 tb[1] = 0;
43ff13b4 6792 fputs_unfiltered (tb, gdb_stdtarg);
c906108c 6793 }
00db5b94
PA
6794 gdb_flush (gdb_stdtarg);
6795}
74531fed 6796
32603266 6797struct stop_reply : public notif_event
74531fed 6798{
32603266 6799 ~stop_reply ();
74531fed 6800
722247f1 6801 /* The identifier of the thread about this event */
74531fed
PA
6802 ptid_t ptid;
6803
340e3c99 6804 /* The remote state this event is associated with. When the remote
bcc75809
YQ
6805 connection, represented by a remote_state object, is closed,
6806 all the associated stop_reply events should be released. */
6807 struct remote_state *rs;
6808
74531fed
PA
6809 struct target_waitstatus ws;
6810
5cd63fda
PA
6811 /* The architecture associated with the expedited registers. */
6812 gdbarch *arch;
6813
15148d6a
PA
6814 /* Expedited registers. This makes remote debugging a bit more
6815 efficient for those targets that provide critical registers as
6816 part of their normal status mechanism (as another roundtrip to
6817 fetch them is avoided). */
32603266 6818 std::vector<cached_reg_t> regcache;
74531fed 6819
f7e6eed5
PA
6820 enum target_stop_reason stop_reason;
6821
74531fed
PA
6822 CORE_ADDR watch_data_address;
6823
dc146f7c 6824 int core;
32603266 6825};
c906108c 6826
221e1a37
PA
6827/* Return the length of the stop reply queue. */
6828
6b8edb51
PA
6829int
6830remote_target::stop_reply_queue_length ()
221e1a37 6831{
6b8edb51 6832 remote_state *rs = get_remote_state ();
953edf2b 6833 return rs->stop_reply_queue.size ();
221e1a37
PA
6834}
6835
6b8edb51
PA
6836void
6837remote_notif_stop_parse (remote_target *remote,
bb277751 6838 struct notif_client *self, const char *buf,
722247f1
YQ
6839 struct notif_event *event)
6840{
6b8edb51 6841 remote->remote_parse_stop_reply (buf, (struct stop_reply *) event);
722247f1
YQ
6842}
6843
6844static void
6b8edb51 6845remote_notif_stop_ack (remote_target *remote,
bb277751 6846 struct notif_client *self, const char *buf,
722247f1
YQ
6847 struct notif_event *event)
6848{
6849 struct stop_reply *stop_reply = (struct stop_reply *) event;
6850
6851 /* acknowledge */
6b8edb51 6852 putpkt (remote, self->ack_command);
722247f1
YQ
6853
6854 if (stop_reply->ws.kind == TARGET_WAITKIND_IGNORE)
6b8edb51 6855 {
722247f1
YQ
6856 /* We got an unknown stop reply. */
6857 error (_("Unknown stop reply"));
6b8edb51 6858 }
722247f1 6859
6b8edb51 6860 remote->push_stop_reply (stop_reply);
722247f1
YQ
6861}
6862
6863static int
6b8edb51
PA
6864remote_notif_stop_can_get_pending_events (remote_target *remote,
6865 struct notif_client *self)
722247f1
YQ
6866{
6867 /* We can't get pending events in remote_notif_process for
6868 notification stop, and we have to do this in remote_wait_ns
6869 instead. If we fetch all queued events from stub, remote stub
6870 may exit and we have no chance to process them back in
6871 remote_wait_ns. */
6b8edb51
PA
6872 remote_state *rs = remote->get_remote_state ();
6873 mark_async_event_handler (rs->remote_async_inferior_event_token);
722247f1
YQ
6874 return 0;
6875}
6876
32603266 6877stop_reply::~stop_reply ()
722247f1 6878{
32603266
TT
6879 for (cached_reg_t &reg : regcache)
6880 xfree (reg.data);
722247f1
YQ
6881}
6882
32603266
TT
6883static notif_event_up
6884remote_notif_stop_alloc_reply ()
722247f1 6885{
32603266 6886 return notif_event_up (new struct stop_reply ());
722247f1
YQ
6887}
6888
6889/* A client of notification Stop. */
6890
6891struct notif_client notif_client_stop =
6892{
6893 "Stop",
6894 "vStopped",
6895 remote_notif_stop_parse,
6896 remote_notif_stop_ack,
6897 remote_notif_stop_can_get_pending_events,
6898 remote_notif_stop_alloc_reply,
f48ff2a7 6899 REMOTE_NOTIF_STOP,
722247f1
YQ
6900};
6901
85ad3aaf 6902/* Determine if THREAD_PTID is a pending fork parent thread. ARG contains
cbb8991c
DB
6903 the pid of the process that owns the threads we want to check, or
6904 -1 if we want to check all threads. */
6905
6906static int
6907is_pending_fork_parent (struct target_waitstatus *ws, int event_pid,
6908 ptid_t thread_ptid)
6909{
6910 if (ws->kind == TARGET_WAITKIND_FORKED
6911 || ws->kind == TARGET_WAITKIND_VFORKED)
6912 {
e99b03dc 6913 if (event_pid == -1 || event_pid == thread_ptid.pid ())
cbb8991c
DB
6914 return 1;
6915 }
6916
6917 return 0;
6918}
6919
85ad3aaf
PA
6920/* Return the thread's pending status used to determine whether the
6921 thread is a fork parent stopped at a fork event. */
6922
6923static struct target_waitstatus *
6924thread_pending_fork_status (struct thread_info *thread)
6925{
6926 if (thread->suspend.waitstatus_pending_p)
6927 return &thread->suspend.waitstatus;
6928 else
6929 return &thread->pending_follow;
6930}
6931
6932/* Determine if THREAD is a pending fork parent thread. */
6933
6934static int
6935is_pending_fork_parent_thread (struct thread_info *thread)
6936{
6937 struct target_waitstatus *ws = thread_pending_fork_status (thread);
6938 int pid = -1;
6939
6940 return is_pending_fork_parent (ws, pid, thread->ptid);
6941}
6942
cbb8991c
DB
6943/* If CONTEXT contains any fork child threads that have not been
6944 reported yet, remove them from the CONTEXT list. If such a
6945 thread exists it is because we are stopped at a fork catchpoint
6946 and have not yet called follow_fork, which will set up the
6947 host-side data structures for the new process. */
6948
6b8edb51
PA
6949void
6950remote_target::remove_new_fork_children (threads_listing_context *context)
cbb8991c 6951{
cbb8991c
DB
6952 int pid = -1;
6953 struct notif_client *notif = &notif_client_stop;
cbb8991c
DB
6954
6955 /* For any threads stopped at a fork event, remove the corresponding
6956 fork child threads from the CONTEXT list. */
08036331 6957 for (thread_info *thread : all_non_exited_threads ())
cbb8991c 6958 {
85ad3aaf 6959 struct target_waitstatus *ws = thread_pending_fork_status (thread);
cbb8991c
DB
6960
6961 if (is_pending_fork_parent (ws, pid, thread->ptid))
21fe1c75 6962 context->remove_thread (ws->value.related_pid);
cbb8991c
DB
6963 }
6964
6965 /* Check for any pending fork events (not reported or processed yet)
6966 in process PID and remove those fork child threads from the
6967 CONTEXT list as well. */
6968 remote_notif_get_pending_events (notif);
953edf2b
TT
6969 for (auto &event : get_remote_state ()->stop_reply_queue)
6970 if (event->ws.kind == TARGET_WAITKIND_FORKED
6971 || event->ws.kind == TARGET_WAITKIND_VFORKED
6972 || event->ws.kind == TARGET_WAITKIND_THREAD_EXITED)
6973 context->remove_thread (event->ws.value.related_pid);
85ad3aaf
PA
6974}
6975
6976/* Check whether any event pending in the vStopped queue would prevent
6977 a global or process wildcard vCont action. Clear
6978 *may_global_wildcard if we can't do a global wildcard (vCont;c),
6979 and clear the event inferior's may_wildcard_vcont flag if we can't
6980 do a process-wide wildcard resume (vCont;c:pPID.-1). */
6981
6b8edb51
PA
6982void
6983remote_target::check_pending_events_prevent_wildcard_vcont
6984 (int *may_global_wildcard)
85ad3aaf
PA
6985{
6986 struct notif_client *notif = &notif_client_stop;
6987
6988 remote_notif_get_pending_events (notif);
953edf2b
TT
6989 for (auto &event : get_remote_state ()->stop_reply_queue)
6990 {
6991 if (event->ws.kind == TARGET_WAITKIND_NO_RESUMED
6992 || event->ws.kind == TARGET_WAITKIND_NO_HISTORY)
6993 continue;
85ad3aaf 6994
953edf2b
TT
6995 if (event->ws.kind == TARGET_WAITKIND_FORKED
6996 || event->ws.kind == TARGET_WAITKIND_VFORKED)
6997 *may_global_wildcard = 0;
722247f1 6998
953edf2b 6999 struct inferior *inf = find_inferior_ptid (event->ptid);
722247f1 7000
953edf2b
TT
7001 /* This may be the first time we heard about this process.
7002 Regardless, we must not do a global wildcard resume, otherwise
7003 we'd resume this process too. */
7004 *may_global_wildcard = 0;
7005 if (inf != NULL)
7006 get_remote_inferior (inf)->may_wildcard_vcont = false;
722247f1 7007 }
722247f1
YQ
7008}
7009
f48ff2a7 7010/* Discard all pending stop replies of inferior INF. */
c906108c 7011
6b8edb51
PA
7012void
7013remote_target::discard_pending_stop_replies (struct inferior *inf)
c906108c 7014{
f48ff2a7
YQ
7015 struct stop_reply *reply;
7016 struct remote_state *rs = get_remote_state ();
7017 struct remote_notif_state *rns = rs->notif_state;
7018
7019 /* This function can be notified when an inferior exists. When the
7020 target is not remote, the notification state is NULL. */
7021 if (rs->remote_desc == NULL)
7022 return;
7023
7024 reply = (struct stop_reply *) rns->pending_event[notif_client_stop.id];
c906108c 7025
74531fed 7026 /* Discard the in-flight notification. */
e99b03dc 7027 if (reply != NULL && reply->ptid.pid () == inf->pid)
74531fed 7028 {
32603266 7029 delete reply;
f48ff2a7 7030 rns->pending_event[notif_client_stop.id] = NULL;
74531fed 7031 }
c906108c 7032
74531fed
PA
7033 /* Discard the stop replies we have already pulled with
7034 vStopped. */
953edf2b
TT
7035 auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7036 rs->stop_reply_queue.end (),
7037 [=] (const stop_reply_up &event)
7038 {
7039 return event->ptid.pid () == inf->pid;
7040 });
7041 rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
bcc75809
YQ
7042}
7043
7044/* Discard the stop replies for RS in stop_reply_queue. */
f48ff2a7 7045
6b8edb51
PA
7046void
7047remote_target::discard_pending_stop_replies_in_queue ()
f48ff2a7 7048{
6b8edb51 7049 remote_state *rs = get_remote_state ();
f48ff2a7 7050
f48ff2a7
YQ
7051 /* Discard the stop replies we have already pulled with
7052 vStopped. */
953edf2b
TT
7053 auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7054 rs->stop_reply_queue.end (),
7055 [=] (const stop_reply_up &event)
7056 {
7057 return event->rs == rs;
7058 });
7059 rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
74531fed 7060}
43ff13b4 7061
722247f1
YQ
7062/* Remove the first reply in 'stop_reply_queue' which matches
7063 PTID. */
2e9f7625 7064
6b8edb51
PA
7065struct stop_reply *
7066remote_target::remote_notif_remove_queued_reply (ptid_t ptid)
74531fed 7067{
953edf2b 7068 remote_state *rs = get_remote_state ();
722247f1 7069
953edf2b
TT
7070 auto iter = std::find_if (rs->stop_reply_queue.begin (),
7071 rs->stop_reply_queue.end (),
7072 [=] (const stop_reply_up &event)
7073 {
7074 return event->ptid.matches (ptid);
7075 });
7076 struct stop_reply *result;
7077 if (iter == rs->stop_reply_queue.end ())
7078 result = nullptr;
7079 else
7080 {
7081 result = iter->release ();
7082 rs->stop_reply_queue.erase (iter);
7083 }
722247f1 7084
722247f1
YQ
7085 if (notif_debug)
7086 fprintf_unfiltered (gdb_stdlog,
7087 "notif: discard queued event: 'Stop' in %s\n",
a068643d 7088 target_pid_to_str (ptid).c_str ());
a744cf53 7089
953edf2b 7090 return result;
74531fed 7091}
75c99385 7092
74531fed
PA
7093/* Look for a queued stop reply belonging to PTID. If one is found,
7094 remove it from the queue, and return it. Returns NULL if none is
7095 found. If there are still queued events left to process, tell the
7096 event loop to get back to target_wait soon. */
e24a49d8 7097
6b8edb51
PA
7098struct stop_reply *
7099remote_target::queued_stop_reply (ptid_t ptid)
74531fed 7100{
953edf2b 7101 remote_state *rs = get_remote_state ();
722247f1 7102 struct stop_reply *r = remote_notif_remove_queued_reply (ptid);
74531fed 7103
953edf2b 7104 if (!rs->stop_reply_queue.empty ())
6b8edb51 7105 {
6b8edb51
PA
7106 /* There's still at least an event left. */
7107 mark_async_event_handler (rs->remote_async_inferior_event_token);
7108 }
74531fed 7109
722247f1 7110 return r;
74531fed
PA
7111}
7112
7113/* Push a fully parsed stop reply in the stop reply queue. Since we
7114 know that we now have at least one queued event left to pass to the
7115 core side, tell the event loop to get back to target_wait soon. */
7116
6b8edb51
PA
7117void
7118remote_target::push_stop_reply (struct stop_reply *new_event)
74531fed 7119{
6b8edb51 7120 remote_state *rs = get_remote_state ();
953edf2b 7121 rs->stop_reply_queue.push_back (stop_reply_up (new_event));
74531fed 7122
722247f1
YQ
7123 if (notif_debug)
7124 fprintf_unfiltered (gdb_stdlog,
7125 "notif: push 'Stop' %s to queue %d\n",
a068643d 7126 target_pid_to_str (new_event->ptid).c_str (),
953edf2b 7127 int (rs->stop_reply_queue.size ()));
74531fed 7128
6b8edb51 7129 mark_async_event_handler (rs->remote_async_inferior_event_token);
74531fed
PA
7130}
7131
7132/* Returns true if we have a stop reply for PTID. */
7133
6b8edb51
PA
7134int
7135remote_target::peek_stop_reply (ptid_t ptid)
74531fed 7136{
6b8edb51 7137 remote_state *rs = get_remote_state ();
953edf2b
TT
7138 for (auto &event : rs->stop_reply_queue)
7139 if (ptid == event->ptid
7140 && event->ws.kind == TARGET_WAITKIND_STOPPED)
7141 return 1;
7142 return 0;
74531fed
PA
7143}
7144
26d56a93
SL
7145/* Helper for remote_parse_stop_reply. Return nonzero if the substring
7146 starting with P and ending with PEND matches PREFIX. */
7147
7148static int
7149strprefix (const char *p, const char *pend, const char *prefix)
7150{
7151 for ( ; p < pend; p++, prefix++)
7152 if (*p != *prefix)
7153 return 0;
7154 return *prefix == '\0';
7155}
7156
74531fed
PA
7157/* Parse the stop reply in BUF. Either the function succeeds, and the
7158 result is stored in EVENT, or throws an error. */
7159
6b8edb51 7160void
bb277751 7161remote_target::remote_parse_stop_reply (const char *buf, stop_reply *event)
74531fed 7162{
5cd63fda 7163 remote_arch_state *rsa = NULL;
74531fed 7164 ULONGEST addr;
256642e8 7165 const char *p;
94585166 7166 int skipregs = 0;
74531fed
PA
7167
7168 event->ptid = null_ptid;
bcc75809 7169 event->rs = get_remote_state ();
74531fed
PA
7170 event->ws.kind = TARGET_WAITKIND_IGNORE;
7171 event->ws.value.integer = 0;
f7e6eed5 7172 event->stop_reason = TARGET_STOPPED_BY_NO_REASON;
32603266 7173 event->regcache.clear ();
dc146f7c 7174 event->core = -1;
74531fed
PA
7175
7176 switch (buf[0])
7177 {
7178 case 'T': /* Status with PC, SP, FP, ... */
cea39f65
MS
7179 /* Expedited reply, containing Signal, {regno, reg} repeat. */
7180 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
7181 ss = signal number
7182 n... = register number
7183 r... = register contents
7184 */
7185
7186 p = &buf[3]; /* after Txx */
7187 while (*p)
7188 {
256642e8 7189 const char *p1;
cea39f65 7190 int fieldsize;
43ff13b4 7191
1f10ba14
PA
7192 p1 = strchr (p, ':');
7193 if (p1 == NULL)
7194 error (_("Malformed packet(a) (missing colon): %s\n\
7195Packet: '%s'\n"),
7196 p, buf);
7197 if (p == p1)
7198 error (_("Malformed packet(a) (missing register number): %s\n\
7199Packet: '%s'\n"),
7200 p, buf);
3c3bea1c 7201
1f10ba14
PA
7202 /* Some "registers" are actually extended stop information.
7203 Note if you're adding a new entry here: GDB 7.9 and
7204 earlier assume that all register "numbers" that start
7205 with an hex digit are real register numbers. Make sure
7206 the server only sends such a packet if it knows the
7207 client understands it. */
c8e38a49 7208
26d56a93 7209 if (strprefix (p, p1, "thread"))
1f10ba14 7210 event->ptid = read_ptid (++p1, &p);
82075af2
JS
7211 else if (strprefix (p, p1, "syscall_entry"))
7212 {
7213 ULONGEST sysno;
7214
7215 event->ws.kind = TARGET_WAITKIND_SYSCALL_ENTRY;
7216 p = unpack_varlen_hex (++p1, &sysno);
7217 event->ws.value.syscall_number = (int) sysno;
7218 }
7219 else if (strprefix (p, p1, "syscall_return"))
7220 {
7221 ULONGEST sysno;
7222
7223 event->ws.kind = TARGET_WAITKIND_SYSCALL_RETURN;
7224 p = unpack_varlen_hex (++p1, &sysno);
7225 event->ws.value.syscall_number = (int) sysno;
7226 }
26d56a93
SL
7227 else if (strprefix (p, p1, "watch")
7228 || strprefix (p, p1, "rwatch")
7229 || strprefix (p, p1, "awatch"))
cea39f65 7230 {
f7e6eed5 7231 event->stop_reason = TARGET_STOPPED_BY_WATCHPOINT;
1f10ba14
PA
7232 p = unpack_varlen_hex (++p1, &addr);
7233 event->watch_data_address = (CORE_ADDR) addr;
cea39f65 7234 }
26d56a93 7235 else if (strprefix (p, p1, "swbreak"))
f7e6eed5
PA
7236 {
7237 event->stop_reason = TARGET_STOPPED_BY_SW_BREAKPOINT;
7238
7239 /* Make sure the stub doesn't forget to indicate support
7240 with qSupported. */
7241 if (packet_support (PACKET_swbreak_feature) != PACKET_ENABLE)
7242 error (_("Unexpected swbreak stop reason"));
7243
7244 /* The value part is documented as "must be empty",
7245 though we ignore it, in case we ever decide to make
7246 use of it in a backward compatible way. */
8424cc97 7247 p = strchrnul (p1 + 1, ';');
f7e6eed5 7248 }
26d56a93 7249 else if (strprefix (p, p1, "hwbreak"))
f7e6eed5
PA
7250 {
7251 event->stop_reason = TARGET_STOPPED_BY_HW_BREAKPOINT;
7252
7253 /* Make sure the stub doesn't forget to indicate support
7254 with qSupported. */
7255 if (packet_support (PACKET_hwbreak_feature) != PACKET_ENABLE)
7256 error (_("Unexpected hwbreak stop reason"));
7257
7258 /* See above. */
8424cc97 7259 p = strchrnul (p1 + 1, ';');
f7e6eed5 7260 }
26d56a93 7261 else if (strprefix (p, p1, "library"))
cea39f65 7262 {
1f10ba14 7263 event->ws.kind = TARGET_WAITKIND_LOADED;
8424cc97 7264 p = strchrnul (p1 + 1, ';');
1f10ba14 7265 }
26d56a93 7266 else if (strprefix (p, p1, "replaylog"))
1f10ba14
PA
7267 {
7268 event->ws.kind = TARGET_WAITKIND_NO_HISTORY;
7269 /* p1 will indicate "begin" or "end", but it makes
7270 no difference for now, so ignore it. */
8424cc97 7271 p = strchrnul (p1 + 1, ';');
1f10ba14 7272 }
26d56a93 7273 else if (strprefix (p, p1, "core"))
1f10ba14
PA
7274 {
7275 ULONGEST c;
a744cf53 7276
1f10ba14
PA
7277 p = unpack_varlen_hex (++p1, &c);
7278 event->core = c;
cea39f65 7279 }
26d56a93 7280 else if (strprefix (p, p1, "fork"))
de0d863e
DB
7281 {
7282 event->ws.value.related_pid = read_ptid (++p1, &p);
7283 event->ws.kind = TARGET_WAITKIND_FORKED;
7284 }
26d56a93 7285 else if (strprefix (p, p1, "vfork"))
c269dbdb
DB
7286 {
7287 event->ws.value.related_pid = read_ptid (++p1, &p);
7288 event->ws.kind = TARGET_WAITKIND_VFORKED;
7289 }
26d56a93 7290 else if (strprefix (p, p1, "vforkdone"))
c269dbdb
DB
7291 {
7292 event->ws.kind = TARGET_WAITKIND_VFORK_DONE;
8424cc97 7293 p = strchrnul (p1 + 1, ';');
c269dbdb 7294 }
6ab24463 7295 else if (strprefix (p, p1, "exec"))
94585166
DB
7296 {
7297 ULONGEST ignored;
94585166
DB
7298 int pathlen;
7299
7300 /* Determine the length of the execd pathname. */
7301 p = unpack_varlen_hex (++p1, &ignored);
7302 pathlen = (p - p1) / 2;
7303
7304 /* Save the pathname for event reporting and for
7305 the next run command. */
c6321f19
TT
7306 gdb::unique_xmalloc_ptr<char[]> pathname
7307 ((char *) xmalloc (pathlen + 1));
7308 hex2bin (p1, (gdb_byte *) pathname.get (), pathlen);
94585166
DB
7309 pathname[pathlen] = '\0';
7310
7311 /* This is freed during event handling. */
c6321f19 7312 event->ws.value.execd_pathname = pathname.release ();
94585166
DB
7313 event->ws.kind = TARGET_WAITKIND_EXECD;
7314
7315 /* Skip the registers included in this packet, since
7316 they may be for an architecture different from the
7317 one used by the original program. */
7318 skipregs = 1;
7319 }
65706a29
PA
7320 else if (strprefix (p, p1, "create"))
7321 {
7322 event->ws.kind = TARGET_WAITKIND_THREAD_CREATED;
8424cc97 7323 p = strchrnul (p1 + 1, ';');
65706a29 7324 }
cea39f65
MS
7325 else
7326 {
1f10ba14 7327 ULONGEST pnum;
256642e8 7328 const char *p_temp;
1f10ba14 7329
94585166
DB
7330 if (skipregs)
7331 {
8424cc97 7332 p = strchrnul (p1 + 1, ';');
94585166
DB
7333 p++;
7334 continue;
7335 }
7336
1f10ba14
PA
7337 /* Maybe a real ``P'' register number. */
7338 p_temp = unpack_varlen_hex (p, &pnum);
7339 /* If the first invalid character is the colon, we got a
7340 register number. Otherwise, it's an unknown stop
7341 reason. */
7342 if (p_temp == p1)
7343 {
5cd63fda
PA
7344 /* If we haven't parsed the event's thread yet, find
7345 it now, in order to find the architecture of the
7346 reported expedited registers. */
7347 if (event->ptid == null_ptid)
7348 {
7349 const char *thr = strstr (p1 + 1, ";thread:");
7350 if (thr != NULL)
7351 event->ptid = read_ptid (thr + strlen (";thread:"),
7352 NULL);
7353 else
3cada740
PA
7354 {
7355 /* Either the current thread hasn't changed,
7356 or the inferior is not multi-threaded.
7357 The event must be for the thread we last
7358 set as (or learned as being) current. */
7359 event->ptid = event->rs->general_thread;
7360 }
5cd63fda
PA
7361 }
7362
7363 if (rsa == NULL)
7364 {
7365 inferior *inf = (event->ptid == null_ptid
7366 ? NULL
7367 : find_inferior_ptid (event->ptid));
7368 /* If this is the first time we learn anything
7369 about this process, skip the registers
7370 included in this packet, since we don't yet
7371 know which architecture to use to parse them.
7372 We'll determine the architecture later when
7373 we process the stop reply and retrieve the
7374 target description, via
7375 remote_notice_new_inferior ->
7376 post_create_inferior. */
7377 if (inf == NULL)
7378 {
7379 p = strchrnul (p1 + 1, ';');
7380 p++;
7381 continue;
7382 }
7383
7384 event->arch = inf->gdbarch;
9d6eea31 7385 rsa = event->rs->get_remote_arch_state (event->arch);
5cd63fda
PA
7386 }
7387
7388 packet_reg *reg
7389 = packet_reg_from_pnum (event->arch, rsa, pnum);
1f10ba14 7390 cached_reg_t cached_reg;
43ff13b4 7391
1f10ba14
PA
7392 if (reg == NULL)
7393 error (_("Remote sent bad register number %s: %s\n\
8a3fe4f8 7394Packet: '%s'\n"),
1f10ba14 7395 hex_string (pnum), p, buf);
c8e38a49 7396
1f10ba14 7397 cached_reg.num = reg->regnum;
d1dff226 7398 cached_reg.data = (gdb_byte *)
5cd63fda 7399 xmalloc (register_size (event->arch, reg->regnum));
4100683b 7400
1f10ba14
PA
7401 p = p1 + 1;
7402 fieldsize = hex2bin (p, cached_reg.data,
5cd63fda 7403 register_size (event->arch, reg->regnum));
1f10ba14 7404 p += 2 * fieldsize;
5cd63fda 7405 if (fieldsize < register_size (event->arch, reg->regnum))
1f10ba14 7406 warning (_("Remote reply is too short: %s"), buf);
74531fed 7407
32603266 7408 event->regcache.push_back (cached_reg);
1f10ba14
PA
7409 }
7410 else
7411 {
7412 /* Not a number. Silently skip unknown optional
7413 info. */
8424cc97 7414 p = strchrnul (p1 + 1, ';');
1f10ba14 7415 }
cea39f65 7416 }
c8e38a49 7417
cea39f65
MS
7418 if (*p != ';')
7419 error (_("Remote register badly formatted: %s\nhere: %s"),
7420 buf, p);
7421 ++p;
7422 }
5b5596ff
PA
7423
7424 if (event->ws.kind != TARGET_WAITKIND_IGNORE)
7425 break;
7426
c8e38a49
PA
7427 /* fall through */
7428 case 'S': /* Old style status, just signal only. */
3a09da41
PA
7429 {
7430 int sig;
7431
7432 event->ws.kind = TARGET_WAITKIND_STOPPED;
7433 sig = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
7434 if (GDB_SIGNAL_FIRST <= sig && sig < GDB_SIGNAL_LAST)
7435 event->ws.value.sig = (enum gdb_signal) sig;
7436 else
7437 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
7438 }
c8e38a49 7439 break;
65706a29
PA
7440 case 'w': /* Thread exited. */
7441 {
65706a29
PA
7442 ULONGEST value;
7443
7444 event->ws.kind = TARGET_WAITKIND_THREAD_EXITED;
7445 p = unpack_varlen_hex (&buf[1], &value);
7446 event->ws.value.integer = value;
7447 if (*p != ';')
7448 error (_("stop reply packet badly formatted: %s"), buf);
974eac9d 7449 event->ptid = read_ptid (++p, NULL);
65706a29
PA
7450 break;
7451 }
c8e38a49
PA
7452 case 'W': /* Target exited. */
7453 case 'X':
7454 {
c8e38a49
PA
7455 int pid;
7456 ULONGEST value;
82f73884 7457
c8e38a49
PA
7458 /* GDB used to accept only 2 hex chars here. Stubs should
7459 only send more if they detect GDB supports multi-process
7460 support. */
7461 p = unpack_varlen_hex (&buf[1], &value);
82f73884 7462
c8e38a49
PA
7463 if (buf[0] == 'W')
7464 {
7465 /* The remote process exited. */
74531fed
PA
7466 event->ws.kind = TARGET_WAITKIND_EXITED;
7467 event->ws.value.integer = value;
c8e38a49
PA
7468 }
7469 else
7470 {
7471 /* The remote process exited with a signal. */
74531fed 7472 event->ws.kind = TARGET_WAITKIND_SIGNALLED;
3a09da41
PA
7473 if (GDB_SIGNAL_FIRST <= value && value < GDB_SIGNAL_LAST)
7474 event->ws.value.sig = (enum gdb_signal) value;
7475 else
7476 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
c8e38a49 7477 }
82f73884 7478
c8e38a49 7479 /* If no process is specified, assume inferior_ptid. */
e99b03dc 7480 pid = inferior_ptid.pid ();
c8e38a49
PA
7481 if (*p == '\0')
7482 ;
7483 else if (*p == ';')
7484 {
7485 p++;
7486
0b24eb2d 7487 if (*p == '\0')
82f73884 7488 ;
61012eef 7489 else if (startswith (p, "process:"))
82f73884 7490 {
c8e38a49 7491 ULONGEST upid;
a744cf53 7492
c8e38a49
PA
7493 p += sizeof ("process:") - 1;
7494 unpack_varlen_hex (p, &upid);
7495 pid = upid;
82f73884
PA
7496 }
7497 else
7498 error (_("unknown stop reply packet: %s"), buf);
43ff13b4 7499 }
c8e38a49
PA
7500 else
7501 error (_("unknown stop reply packet: %s"), buf);
f2907e49 7502 event->ptid = ptid_t (pid);
74531fed
PA
7503 }
7504 break;
f2faf941
PA
7505 case 'N':
7506 event->ws.kind = TARGET_WAITKIND_NO_RESUMED;
7507 event->ptid = minus_one_ptid;
7508 break;
74531fed
PA
7509 }
7510
d7e15655 7511 if (target_is_non_stop_p () && event->ptid == null_ptid)
74531fed
PA
7512 error (_("No process or thread specified in stop reply: %s"), buf);
7513}
7514
722247f1
YQ
7515/* When the stub wants to tell GDB about a new notification reply, it
7516 sends a notification (%Stop, for example). Those can come it at
7517 any time, hence, we have to make sure that any pending
7518 putpkt/getpkt sequence we're making is finished, before querying
7519 the stub for more events with the corresponding ack command
7520 (vStopped, for example). E.g., if we started a vStopped sequence
7521 immediately upon receiving the notification, something like this
7522 could happen:
74531fed
PA
7523
7524 1.1) --> Hg 1
7525 1.2) <-- OK
7526 1.3) --> g
7527 1.4) <-- %Stop
7528 1.5) --> vStopped
7529 1.6) <-- (registers reply to step #1.3)
7530
7531 Obviously, the reply in step #1.6 would be unexpected to a vStopped
7532 query.
7533
796cb314 7534 To solve this, whenever we parse a %Stop notification successfully,
74531fed
PA
7535 we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
7536 doing whatever we were doing:
7537
7538 2.1) --> Hg 1
7539 2.2) <-- OK
7540 2.3) --> g
7541 2.4) <-- %Stop
7542 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
7543 2.5) <-- (registers reply to step #2.3)
7544
7545 Eventualy after step #2.5, we return to the event loop, which
7546 notices there's an event on the
7547 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
7548 associated callback --- the function below. At this point, we're
7549 always safe to start a vStopped sequence. :
7550
7551 2.6) --> vStopped
7552 2.7) <-- T05 thread:2
7553 2.8) --> vStopped
7554 2.9) --> OK
7555*/
7556
722247f1 7557void
6b8edb51 7558remote_target::remote_notif_get_pending_events (notif_client *nc)
74531fed
PA
7559{
7560 struct remote_state *rs = get_remote_state ();
74531fed 7561
f48ff2a7 7562 if (rs->notif_state->pending_event[nc->id] != NULL)
74531fed 7563 {
722247f1
YQ
7564 if (notif_debug)
7565 fprintf_unfiltered (gdb_stdlog,
7566 "notif: process: '%s' ack pending event\n",
7567 nc->name);
74531fed 7568
722247f1 7569 /* acknowledge */
8d64371b
TT
7570 nc->ack (this, nc, rs->buf.data (),
7571 rs->notif_state->pending_event[nc->id]);
f48ff2a7 7572 rs->notif_state->pending_event[nc->id] = NULL;
74531fed
PA
7573
7574 while (1)
7575 {
8d64371b
TT
7576 getpkt (&rs->buf, 0);
7577 if (strcmp (rs->buf.data (), "OK") == 0)
74531fed
PA
7578 break;
7579 else
8d64371b 7580 remote_notif_ack (this, nc, rs->buf.data ());
74531fed
PA
7581 }
7582 }
722247f1
YQ
7583 else
7584 {
7585 if (notif_debug)
7586 fprintf_unfiltered (gdb_stdlog,
7587 "notif: process: '%s' no pending reply\n",
7588 nc->name);
7589 }
74531fed
PA
7590}
7591
6b8edb51
PA
7592/* Wrapper around remote_target::remote_notif_get_pending_events to
7593 avoid having to export the whole remote_target class. */
7594
7595void
7596remote_notif_get_pending_events (remote_target *remote, notif_client *nc)
7597{
7598 remote->remote_notif_get_pending_events (nc);
7599}
7600
74531fed
PA
7601/* Called when it is decided that STOP_REPLY holds the info of the
7602 event that is to be returned to the core. This function always
7603 destroys STOP_REPLY. */
7604
6b8edb51
PA
7605ptid_t
7606remote_target::process_stop_reply (struct stop_reply *stop_reply,
7607 struct target_waitstatus *status)
74531fed
PA
7608{
7609 ptid_t ptid;
7610
7611 *status = stop_reply->ws;
7612 ptid = stop_reply->ptid;
7613
7614 /* If no thread/process was reported by the stub, assume the current
7615 inferior. */
d7e15655 7616 if (ptid == null_ptid)
74531fed
PA
7617 ptid = inferior_ptid;
7618
5f3563ea 7619 if (status->kind != TARGET_WAITKIND_EXITED
f2faf941
PA
7620 && status->kind != TARGET_WAITKIND_SIGNALLED
7621 && status->kind != TARGET_WAITKIND_NO_RESUMED)
74531fed 7622 {
5f3563ea 7623 /* Expedited registers. */
32603266 7624 if (!stop_reply->regcache.empty ())
5f3563ea 7625 {
217f1f79 7626 struct regcache *regcache
5cd63fda 7627 = get_thread_arch_regcache (ptid, stop_reply->arch);
5f3563ea 7628
32603266
TT
7629 for (cached_reg_t &reg : stop_reply->regcache)
7630 {
7631 regcache->raw_supply (reg.num, reg.data);
7632 xfree (reg.data);
7633 }
d1dff226 7634
32603266 7635 stop_reply->regcache.clear ();
5f3563ea 7636 }
74531fed 7637
1941c569 7638 remote_notice_new_inferior (ptid, 0);
7aabaf9d 7639 remote_thread_info *remote_thr = get_remote_thread_info (ptid);
799a2abe
PA
7640 remote_thr->core = stop_reply->core;
7641 remote_thr->stop_reason = stop_reply->stop_reason;
7642 remote_thr->watch_data_address = stop_reply->watch_data_address;
85ad3aaf 7643 remote_thr->vcont_resumed = 0;
74531fed
PA
7644 }
7645
32603266 7646 delete stop_reply;
74531fed
PA
7647 return ptid;
7648}
7649
7650/* The non-stop mode version of target_wait. */
7651
6b8edb51
PA
7652ptid_t
7653remote_target::wait_ns (ptid_t ptid, struct target_waitstatus *status, int options)
74531fed
PA
7654{
7655 struct remote_state *rs = get_remote_state ();
74531fed
PA
7656 struct stop_reply *stop_reply;
7657 int ret;
fee9eda9 7658 int is_notif = 0;
74531fed
PA
7659
7660 /* If in non-stop mode, get out of getpkt even if a
7661 notification is received. */
7662
8d64371b 7663 ret = getpkt_or_notif_sane (&rs->buf, 0 /* forever */, &is_notif);
74531fed
PA
7664 while (1)
7665 {
fee9eda9 7666 if (ret != -1 && !is_notif)
74531fed
PA
7667 switch (rs->buf[0])
7668 {
7669 case 'E': /* Error of some sort. */
7670 /* We're out of sync with the target now. Did it continue
7671 or not? We can't tell which thread it was in non-stop,
7672 so just ignore this. */
8d64371b 7673 warning (_("Remote failure reply: %s"), rs->buf.data ());
74531fed
PA
7674 break;
7675 case 'O': /* Console output. */
8d64371b 7676 remote_console_output (&rs->buf[1]);
74531fed
PA
7677 break;
7678 default:
8d64371b 7679 warning (_("Invalid remote reply: %s"), rs->buf.data ());
74531fed
PA
7680 break;
7681 }
7682
7683 /* Acknowledge a pending stop reply that may have arrived in the
7684 mean time. */
f48ff2a7 7685 if (rs->notif_state->pending_event[notif_client_stop.id] != NULL)
722247f1 7686 remote_notif_get_pending_events (&notif_client_stop);
74531fed
PA
7687
7688 /* If indeed we noticed a stop reply, we're done. */
7689 stop_reply = queued_stop_reply (ptid);
7690 if (stop_reply != NULL)
7691 return process_stop_reply (stop_reply, status);
7692
47608cb1 7693 /* Still no event. If we're just polling for an event, then
74531fed 7694 return to the event loop. */
47608cb1 7695 if (options & TARGET_WNOHANG)
74531fed
PA
7696 {
7697 status->kind = TARGET_WAITKIND_IGNORE;
7698 return minus_one_ptid;
7699 }
7700
47608cb1 7701 /* Otherwise do a blocking wait. */
8d64371b 7702 ret = getpkt_or_notif_sane (&rs->buf, 1 /* forever */, &is_notif);
74531fed
PA
7703 }
7704}
7705
7706/* Wait until the remote machine stops, then return, storing status in
7707 STATUS just as `wait' would. */
7708
6b8edb51
PA
7709ptid_t
7710remote_target::wait_as (ptid_t ptid, target_waitstatus *status, int options)
74531fed
PA
7711{
7712 struct remote_state *rs = get_remote_state ();
74531fed 7713 ptid_t event_ptid = null_ptid;
cea39f65 7714 char *buf;
74531fed
PA
7715 struct stop_reply *stop_reply;
7716
47608cb1
PA
7717 again:
7718
74531fed
PA
7719 status->kind = TARGET_WAITKIND_IGNORE;
7720 status->value.integer = 0;
7721
7722 stop_reply = queued_stop_reply (ptid);
7723 if (stop_reply != NULL)
7724 return process_stop_reply (stop_reply, status);
7725
7726 if (rs->cached_wait_status)
7727 /* Use the cached wait status, but only once. */
7728 rs->cached_wait_status = 0;
7729 else
7730 {
7731 int ret;
722247f1 7732 int is_notif;
567420d1 7733 int forever = ((options & TARGET_WNOHANG) == 0
6b8edb51 7734 && rs->wait_forever_enabled_p);
567420d1
PA
7735
7736 if (!rs->waiting_for_stop_reply)
7737 {
7738 status->kind = TARGET_WAITKIND_NO_RESUMED;
7739 return minus_one_ptid;
7740 }
74531fed 7741
74531fed
PA
7742 /* FIXME: cagney/1999-09-27: If we're in async mode we should
7743 _never_ wait for ever -> test on target_is_async_p().
7744 However, before we do that we need to ensure that the caller
7745 knows how to take the target into/out of async mode. */
8d64371b 7746 ret = getpkt_or_notif_sane (&rs->buf, forever, &is_notif);
722247f1
YQ
7747
7748 /* GDB gets a notification. Return to core as this event is
7749 not interesting. */
7750 if (ret != -1 && is_notif)
7751 return minus_one_ptid;
567420d1
PA
7752
7753 if (ret == -1 && (options & TARGET_WNOHANG) != 0)
7754 return minus_one_ptid;
74531fed
PA
7755 }
7756
8d64371b 7757 buf = rs->buf.data ();
74531fed 7758
3a29589a
DJ
7759 /* Assume that the target has acknowledged Ctrl-C unless we receive
7760 an 'F' or 'O' packet. */
7761 if (buf[0] != 'F' && buf[0] != 'O')
7762 rs->ctrlc_pending_p = 0;
7763
74531fed
PA
7764 switch (buf[0])
7765 {
7766 case 'E': /* Error of some sort. */
7767 /* We're out of sync with the target now. Did it continue or
7768 not? Not is more likely, so report a stop. */
29090fb6
LM
7769 rs->waiting_for_stop_reply = 0;
7770
74531fed
PA
7771 warning (_("Remote failure reply: %s"), buf);
7772 status->kind = TARGET_WAITKIND_STOPPED;
a493e3e2 7773 status->value.sig = GDB_SIGNAL_0;
74531fed
PA
7774 break;
7775 case 'F': /* File-I/O request. */
e42e5352
YQ
7776 /* GDB may access the inferior memory while handling the File-I/O
7777 request, but we don't want GDB accessing memory while waiting
7778 for a stop reply. See the comments in putpkt_binary. Set
7779 waiting_for_stop_reply to 0 temporarily. */
7780 rs->waiting_for_stop_reply = 0;
6b8edb51 7781 remote_fileio_request (this, buf, rs->ctrlc_pending_p);
3a29589a 7782 rs->ctrlc_pending_p = 0;
e42e5352
YQ
7783 /* GDB handled the File-I/O request, and the target is running
7784 again. Keep waiting for events. */
7785 rs->waiting_for_stop_reply = 1;
74531fed 7786 break;
f2faf941 7787 case 'N': case 'T': case 'S': case 'X': case 'W':
74531fed 7788 {
29090fb6
LM
7789 /* There is a stop reply to handle. */
7790 rs->waiting_for_stop_reply = 0;
7791
7792 stop_reply
6b8edb51
PA
7793 = (struct stop_reply *) remote_notif_parse (this,
7794 &notif_client_stop,
8d64371b 7795 rs->buf.data ());
74531fed 7796
74531fed 7797 event_ptid = process_stop_reply (stop_reply, status);
c8e38a49
PA
7798 break;
7799 }
7800 case 'O': /* Console output. */
7801 remote_console_output (buf + 1);
c8e38a49
PA
7802 break;
7803 case '\0':
b73be471 7804 if (rs->last_sent_signal != GDB_SIGNAL_0)
c8e38a49
PA
7805 {
7806 /* Zero length reply means that we tried 'S' or 'C' and the
7807 remote system doesn't support it. */
223ffa71 7808 target_terminal::ours_for_output ();
c8e38a49
PA
7809 printf_filtered
7810 ("Can't send signals to this remote system. %s not sent.\n",
b73be471
TT
7811 gdb_signal_to_name (rs->last_sent_signal));
7812 rs->last_sent_signal = GDB_SIGNAL_0;
223ffa71 7813 target_terminal::inferior ();
c8e38a49 7814
f5c4fcd9
TT
7815 strcpy (buf, rs->last_sent_step ? "s" : "c");
7816 putpkt (buf);
c8e38a49 7817 break;
43ff13b4 7818 }
86a73007 7819 /* fallthrough */
c8e38a49
PA
7820 default:
7821 warning (_("Invalid remote reply: %s"), buf);
c8e38a49 7822 break;
43ff13b4 7823 }
c8e38a49 7824
f2faf941
PA
7825 if (status->kind == TARGET_WAITKIND_NO_RESUMED)
7826 return minus_one_ptid;
7827 else if (status->kind == TARGET_WAITKIND_IGNORE)
47608cb1
PA
7828 {
7829 /* Nothing interesting happened. If we're doing a non-blocking
7830 poll, we're done. Otherwise, go back to waiting. */
7831 if (options & TARGET_WNOHANG)
7832 return minus_one_ptid;
7833 else
7834 goto again;
7835 }
74531fed
PA
7836 else if (status->kind != TARGET_WAITKIND_EXITED
7837 && status->kind != TARGET_WAITKIND_SIGNALLED)
82f73884 7838 {
d7e15655 7839 if (event_ptid != null_ptid)
47f8a51d 7840 record_currthread (rs, event_ptid);
82f73884
PA
7841 else
7842 event_ptid = inferior_ptid;
43ff13b4 7843 }
74531fed
PA
7844 else
7845 /* A process exit. Invalidate our notion of current thread. */
47f8a51d 7846 record_currthread (rs, minus_one_ptid);
79d7f229 7847
82f73884 7848 return event_ptid;
43ff13b4
JM
7849}
7850
74531fed
PA
7851/* Wait until the remote machine stops, then return, storing status in
7852 STATUS just as `wait' would. */
7853
f6ac5f3d
PA
7854ptid_t
7855remote_target::wait (ptid_t ptid, struct target_waitstatus *status, int options)
c8e38a49
PA
7856{
7857 ptid_t event_ptid;
7858
6efcd9a8 7859 if (target_is_non_stop_p ())
6b8edb51 7860 event_ptid = wait_ns (ptid, status, options);
74531fed 7861 else
6b8edb51 7862 event_ptid = wait_as (ptid, status, options);
c8e38a49 7863
d9d41e78 7864 if (target_is_async_p ())
c8e38a49 7865 {
6b8edb51
PA
7866 remote_state *rs = get_remote_state ();
7867
74531fed
PA
7868 /* If there are are events left in the queue tell the event loop
7869 to return here. */
953edf2b 7870 if (!rs->stop_reply_queue.empty ())
6b8edb51 7871 mark_async_event_handler (rs->remote_async_inferior_event_token);
c8e38a49 7872 }
c8e38a49
PA
7873
7874 return event_ptid;
7875}
7876
74ca34ce 7877/* Fetch a single register using a 'p' packet. */
c906108c 7878
6b8edb51
PA
7879int
7880remote_target::fetch_register_using_p (struct regcache *regcache,
7881 packet_reg *reg)
b96ec7ac 7882{
ac7936df 7883 struct gdbarch *gdbarch = regcache->arch ();
b96ec7ac 7884 struct remote_state *rs = get_remote_state ();
2e9f7625 7885 char *buf, *p;
9890e433 7886 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
b96ec7ac
AC
7887 int i;
7888
4082afcc 7889 if (packet_support (PACKET_p) == PACKET_DISABLE)
74ca34ce
DJ
7890 return 0;
7891
7892 if (reg->pnum == -1)
7893 return 0;
7894
8d64371b 7895 p = rs->buf.data ();
fcad0fa4 7896 *p++ = 'p';
74ca34ce 7897 p += hexnumstr (p, reg->pnum);
fcad0fa4 7898 *p++ = '\0';
1f4437a4 7899 putpkt (rs->buf);
8d64371b 7900 getpkt (&rs->buf, 0);
3f9a994c 7901
8d64371b 7902 buf = rs->buf.data ();
2e9f7625 7903
8d64371b 7904 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_p]))
74ca34ce
DJ
7905 {
7906 case PACKET_OK:
7907 break;
7908 case PACKET_UNKNOWN:
7909 return 0;
7910 case PACKET_ERROR:
27a9c0bf 7911 error (_("Could not fetch register \"%s\"; remote failure reply '%s'"),
ac7936df 7912 gdbarch_register_name (regcache->arch (),
27a9c0bf
MS
7913 reg->regnum),
7914 buf);
74ca34ce 7915 }
3f9a994c
JB
7916
7917 /* If this register is unfetchable, tell the regcache. */
7918 if (buf[0] == 'x')
8480adf2 7919 {
73e1c03f 7920 regcache->raw_supply (reg->regnum, NULL);
8480adf2 7921 return 1;
b96ec7ac 7922 }
b96ec7ac 7923
3f9a994c
JB
7924 /* Otherwise, parse and supply the value. */
7925 p = buf;
7926 i = 0;
7927 while (p[0] != 0)
7928 {
7929 if (p[1] == 0)
74ca34ce 7930 error (_("fetch_register_using_p: early buf termination"));
3f9a994c
JB
7931
7932 regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
7933 p += 2;
7934 }
73e1c03f 7935 regcache->raw_supply (reg->regnum, regp);
3f9a994c 7936 return 1;
b96ec7ac
AC
7937}
7938
74ca34ce
DJ
7939/* Fetch the registers included in the target's 'g' packet. */
7940
6b8edb51
PA
7941int
7942remote_target::send_g_packet ()
c906108c 7943{
d01949b6 7944 struct remote_state *rs = get_remote_state ();
cea39f65 7945 int buf_len;
c906108c 7946
8d64371b 7947 xsnprintf (rs->buf.data (), get_remote_packet_size (), "g");
b75abf5b 7948 putpkt (rs->buf);
8d64371b 7949 getpkt (&rs->buf, 0);
b75abf5b
AK
7950 if (packet_check_result (rs->buf) == PACKET_ERROR)
7951 error (_("Could not read registers; remote failure reply '%s'"),
8d64371b 7952 rs->buf.data ());
c906108c 7953
29709017
DJ
7954 /* We can get out of synch in various cases. If the first character
7955 in the buffer is not a hex character, assume that has happened
7956 and try to fetch another packet to read. */
7957 while ((rs->buf[0] < '0' || rs->buf[0] > '9')
7958 && (rs->buf[0] < 'A' || rs->buf[0] > 'F')
7959 && (rs->buf[0] < 'a' || rs->buf[0] > 'f')
7960 && rs->buf[0] != 'x') /* New: unavailable register value. */
7961 {
7962 if (remote_debug)
7963 fprintf_unfiltered (gdb_stdlog,
7964 "Bad register packet; fetching a new packet\n");
8d64371b 7965 getpkt (&rs->buf, 0);
29709017
DJ
7966 }
7967
8d64371b 7968 buf_len = strlen (rs->buf.data ());
74ca34ce
DJ
7969
7970 /* Sanity check the received packet. */
7971 if (buf_len % 2 != 0)
8d64371b 7972 error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf.data ());
29709017
DJ
7973
7974 return buf_len / 2;
7975}
7976
6b8edb51
PA
7977void
7978remote_target::process_g_packet (struct regcache *regcache)
29709017 7979{
ac7936df 7980 struct gdbarch *gdbarch = regcache->arch ();
29709017 7981 struct remote_state *rs = get_remote_state ();
9d6eea31 7982 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
29709017
DJ
7983 int i, buf_len;
7984 char *p;
7985 char *regs;
7986
8d64371b 7987 buf_len = strlen (rs->buf.data ());
29709017
DJ
7988
7989 /* Further sanity checks, with knowledge of the architecture. */
74ca34ce 7990 if (buf_len > 2 * rsa->sizeof_g_packet)
fc809827 7991 error (_("Remote 'g' packet reply is too long (expected %ld bytes, got %d "
8d64371b
TT
7992 "bytes): %s"),
7993 rsa->sizeof_g_packet, buf_len / 2,
7994 rs->buf.data ());
74ca34ce
DJ
7995
7996 /* Save the size of the packet sent to us by the target. It is used
7997 as a heuristic when determining the max size of packets that the
7998 target can safely receive. */
7999 if (rsa->actual_register_packet_size == 0)
8000 rsa->actual_register_packet_size = buf_len;
8001
8002 /* If this is smaller than we guessed the 'g' packet would be,
8003 update our records. A 'g' reply that doesn't include a register's
8004 value implies either that the register is not available, or that
8005 the 'p' packet must be used. */
8006 if (buf_len < 2 * rsa->sizeof_g_packet)
b323314b 8007 {
9dc193c3 8008 long sizeof_g_packet = buf_len / 2;
74ca34ce 8009
4a22f64d 8010 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
b96ec7ac 8011 {
9dc193c3
LF
8012 long offset = rsa->regs[i].offset;
8013 long reg_size = register_size (gdbarch, i);
8014
74ca34ce
DJ
8015 if (rsa->regs[i].pnum == -1)
8016 continue;
8017
9dc193c3 8018 if (offset >= sizeof_g_packet)
74ca34ce 8019 rsa->regs[i].in_g_packet = 0;
9dc193c3
LF
8020 else if (offset + reg_size > sizeof_g_packet)
8021 error (_("Truncated register %d in remote 'g' packet"), i);
b96ec7ac 8022 else
74ca34ce 8023 rsa->regs[i].in_g_packet = 1;
b96ec7ac 8024 }
9dc193c3
LF
8025
8026 /* Looks valid enough, we can assume this is the correct length
8027 for a 'g' packet. It's important not to adjust
8028 rsa->sizeof_g_packet if we have truncated registers otherwise
8029 this "if" won't be run the next time the method is called
8030 with a packet of the same size and one of the internal errors
8031 below will trigger instead. */
8032 rsa->sizeof_g_packet = sizeof_g_packet;
74ca34ce 8033 }
b323314b 8034
224c3ddb 8035 regs = (char *) alloca (rsa->sizeof_g_packet);
c906108c
SS
8036
8037 /* Unimplemented registers read as all bits zero. */
ea9c271d 8038 memset (regs, 0, rsa->sizeof_g_packet);
c906108c 8039
c906108c
SS
8040 /* Reply describes registers byte by byte, each byte encoded as two
8041 hex characters. Suck them all up, then supply them to the
8042 register cacheing/storage mechanism. */
8043
8d64371b 8044 p = rs->buf.data ();
ea9c271d 8045 for (i = 0; i < rsa->sizeof_g_packet; i++)
c906108c 8046 {
74ca34ce
DJ
8047 if (p[0] == 0 || p[1] == 0)
8048 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
8049 internal_error (__FILE__, __LINE__,
9b20d036 8050 _("unexpected end of 'g' packet reply"));
74ca34ce 8051
c906108c 8052 if (p[0] == 'x' && p[1] == 'x')
c5aa993b 8053 regs[i] = 0; /* 'x' */
c906108c
SS
8054 else
8055 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
8056 p += 2;
8057 }
8058
a744cf53
MS
8059 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
8060 {
8061 struct packet_reg *r = &rsa->regs[i];
9dc193c3 8062 long reg_size = register_size (gdbarch, i);
a744cf53
MS
8063
8064 if (r->in_g_packet)
8065 {
8d64371b 8066 if ((r->offset + reg_size) * 2 > strlen (rs->buf.data ()))
a744cf53
MS
8067 /* This shouldn't happen - we adjusted in_g_packet above. */
8068 internal_error (__FILE__, __LINE__,
9b20d036 8069 _("unexpected end of 'g' packet reply"));
a744cf53
MS
8070 else if (rs->buf[r->offset * 2] == 'x')
8071 {
8d64371b 8072 gdb_assert (r->offset * 2 < strlen (rs->buf.data ()));
a744cf53
MS
8073 /* The register isn't available, mark it as such (at
8074 the same time setting the value to zero). */
73e1c03f 8075 regcache->raw_supply (r->regnum, NULL);
a744cf53
MS
8076 }
8077 else
73e1c03f 8078 regcache->raw_supply (r->regnum, regs + r->offset);
a744cf53
MS
8079 }
8080 }
c906108c
SS
8081}
8082
6b8edb51
PA
8083void
8084remote_target::fetch_registers_using_g (struct regcache *regcache)
29709017
DJ
8085{
8086 send_g_packet ();
56be3814 8087 process_g_packet (regcache);
29709017
DJ
8088}
8089
e6e4e701
PA
8090/* Make the remote selected traceframe match GDB's selected
8091 traceframe. */
8092
6b8edb51
PA
8093void
8094remote_target::set_remote_traceframe ()
e6e4e701
PA
8095{
8096 int newnum;
262e1174 8097 struct remote_state *rs = get_remote_state ();
e6e4e701 8098
262e1174 8099 if (rs->remote_traceframe_number == get_traceframe_number ())
e6e4e701
PA
8100 return;
8101
8102 /* Avoid recursion, remote_trace_find calls us again. */
262e1174 8103 rs->remote_traceframe_number = get_traceframe_number ();
e6e4e701
PA
8104
8105 newnum = target_trace_find (tfind_number,
8106 get_traceframe_number (), 0, 0, NULL);
8107
8108 /* Should not happen. If it does, all bets are off. */
8109 if (newnum != get_traceframe_number ())
8110 warning (_("could not set remote traceframe"));
8111}
8112
f6ac5f3d
PA
8113void
8114remote_target::fetch_registers (struct regcache *regcache, int regnum)
74ca34ce 8115{
ac7936df 8116 struct gdbarch *gdbarch = regcache->arch ();
9d6eea31
PA
8117 struct remote_state *rs = get_remote_state ();
8118 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
74ca34ce
DJ
8119 int i;
8120
e6e4e701 8121 set_remote_traceframe ();
222312d3 8122 set_general_thread (regcache->ptid ());
74ca34ce
DJ
8123
8124 if (regnum >= 0)
8125 {
5cd63fda 8126 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
a744cf53 8127
74ca34ce
DJ
8128 gdb_assert (reg != NULL);
8129
8130 /* If this register might be in the 'g' packet, try that first -
8131 we are likely to read more than one register. If this is the
8132 first 'g' packet, we might be overly optimistic about its
8133 contents, so fall back to 'p'. */
8134 if (reg->in_g_packet)
8135 {
56be3814 8136 fetch_registers_using_g (regcache);
74ca34ce
DJ
8137 if (reg->in_g_packet)
8138 return;
8139 }
8140
56be3814 8141 if (fetch_register_using_p (regcache, reg))
74ca34ce
DJ
8142 return;
8143
8144 /* This register is not available. */
73e1c03f 8145 regcache->raw_supply (reg->regnum, NULL);
74ca34ce
DJ
8146
8147 return;
8148 }
8149
56be3814 8150 fetch_registers_using_g (regcache);
74ca34ce 8151
5cd63fda 8152 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
74ca34ce 8153 if (!rsa->regs[i].in_g_packet)
56be3814 8154 if (!fetch_register_using_p (regcache, &rsa->regs[i]))
74ca34ce
DJ
8155 {
8156 /* This register is not available. */
73e1c03f 8157 regcache->raw_supply (i, NULL);
74ca34ce
DJ
8158 }
8159}
8160
c906108c
SS
8161/* Prepare to store registers. Since we may send them all (using a
8162 'G' request), we have to read out the ones we don't want to change
8163 first. */
8164
f6ac5f3d
PA
8165void
8166remote_target::prepare_to_store (struct regcache *regcache)
c906108c 8167{
9d6eea31
PA
8168 struct remote_state *rs = get_remote_state ();
8169 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
cf0e1e0d 8170 int i;
cf0e1e0d 8171
c906108c 8172 /* Make sure the entire registers array is valid. */
4082afcc 8173 switch (packet_support (PACKET_P))
5a2468f5
JM
8174 {
8175 case PACKET_DISABLE:
8176 case PACKET_SUPPORT_UNKNOWN:
cf0e1e0d 8177 /* Make sure all the necessary registers are cached. */
ac7936df 8178 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
ea9c271d 8179 if (rsa->regs[i].in_g_packet)
0b47d985 8180 regcache->raw_update (rsa->regs[i].regnum);
5a2468f5
JM
8181 break;
8182 case PACKET_ENABLE:
8183 break;
8184 }
8185}
8186
ad10f812 8187/* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
23860348 8188 packet was not recognized. */
5a2468f5 8189
6b8edb51
PA
8190int
8191remote_target::store_register_using_P (const struct regcache *regcache,
8192 packet_reg *reg)
5a2468f5 8193{
ac7936df 8194 struct gdbarch *gdbarch = regcache->arch ();
d01949b6 8195 struct remote_state *rs = get_remote_state ();
5a2468f5 8196 /* Try storing a single register. */
8d64371b 8197 char *buf = rs->buf.data ();
9890e433 8198 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
5a2468f5 8199 char *p;
5a2468f5 8200
4082afcc 8201 if (packet_support (PACKET_P) == PACKET_DISABLE)
74ca34ce
DJ
8202 return 0;
8203
8204 if (reg->pnum == -1)
8205 return 0;
8206
ea9c271d 8207 xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
5a2468f5 8208 p = buf + strlen (buf);
34a79281 8209 regcache->raw_collect (reg->regnum, regp);
4a22f64d 8210 bin2hex (regp, p, register_size (gdbarch, reg->regnum));
1f4437a4 8211 putpkt (rs->buf);
8d64371b 8212 getpkt (&rs->buf, 0);
5a2468f5 8213
74ca34ce
DJ
8214 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P]))
8215 {
8216 case PACKET_OK:
8217 return 1;
8218 case PACKET_ERROR:
27a9c0bf 8219 error (_("Could not write register \"%s\"; remote failure reply '%s'"),
8d64371b 8220 gdbarch_register_name (gdbarch, reg->regnum), rs->buf.data ());
74ca34ce
DJ
8221 case PACKET_UNKNOWN:
8222 return 0;
8223 default:
8224 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
8225 }
c906108c
SS
8226}
8227
23860348
MS
8228/* Store register REGNUM, or all registers if REGNUM == -1, from the
8229 contents of the register cache buffer. FIXME: ignores errors. */
c906108c 8230
6b8edb51
PA
8231void
8232remote_target::store_registers_using_G (const struct regcache *regcache)
c906108c 8233{
d01949b6 8234 struct remote_state *rs = get_remote_state ();
9d6eea31 8235 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
cfd77fa1 8236 gdb_byte *regs;
c906108c
SS
8237 char *p;
8238
193cb69f
AC
8239 /* Extract all the registers in the regcache copying them into a
8240 local buffer. */
8241 {
b323314b 8242 int i;
a744cf53 8243
224c3ddb 8244 regs = (gdb_byte *) alloca (rsa->sizeof_g_packet);
ea9c271d 8245 memset (regs, 0, rsa->sizeof_g_packet);
ac7936df 8246 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
193cb69f 8247 {
ea9c271d 8248 struct packet_reg *r = &rsa->regs[i];
a744cf53 8249
b323314b 8250 if (r->in_g_packet)
34a79281 8251 regcache->raw_collect (r->regnum, regs + r->offset);
193cb69f
AC
8252 }
8253 }
c906108c
SS
8254
8255 /* Command describes registers byte by byte,
8256 each byte encoded as two hex characters. */
8d64371b 8257 p = rs->buf.data ();
193cb69f 8258 *p++ = 'G';
74ca34ce 8259 bin2hex (regs, p, rsa->sizeof_g_packet);
1f4437a4 8260 putpkt (rs->buf);
8d64371b 8261 getpkt (&rs->buf, 0);
1f4437a4 8262 if (packet_check_result (rs->buf) == PACKET_ERROR)
27a9c0bf 8263 error (_("Could not write registers; remote failure reply '%s'"),
8d64371b 8264 rs->buf.data ());
c906108c 8265}
74ca34ce
DJ
8266
8267/* Store register REGNUM, or all registers if REGNUM == -1, from the contents
8268 of the register cache buffer. FIXME: ignores errors. */
8269
f6ac5f3d
PA
8270void
8271remote_target::store_registers (struct regcache *regcache, int regnum)
74ca34ce 8272{
5cd63fda 8273 struct gdbarch *gdbarch = regcache->arch ();
9d6eea31
PA
8274 struct remote_state *rs = get_remote_state ();
8275 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
74ca34ce
DJ
8276 int i;
8277
e6e4e701 8278 set_remote_traceframe ();
222312d3 8279 set_general_thread (regcache->ptid ());
74ca34ce
DJ
8280
8281 if (regnum >= 0)
8282 {
5cd63fda 8283 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
a744cf53 8284
74ca34ce
DJ
8285 gdb_assert (reg != NULL);
8286
8287 /* Always prefer to store registers using the 'P' packet if
8288 possible; we often change only a small number of registers.
8289 Sometimes we change a larger number; we'd need help from a
8290 higher layer to know to use 'G'. */
56be3814 8291 if (store_register_using_P (regcache, reg))
74ca34ce
DJ
8292 return;
8293
8294 /* For now, don't complain if we have no way to write the
8295 register. GDB loses track of unavailable registers too
8296 easily. Some day, this may be an error. We don't have
0df8b418 8297 any way to read the register, either... */
74ca34ce
DJ
8298 if (!reg->in_g_packet)
8299 return;
8300
56be3814 8301 store_registers_using_G (regcache);
74ca34ce
DJ
8302 return;
8303 }
8304
56be3814 8305 store_registers_using_G (regcache);
74ca34ce 8306
5cd63fda 8307 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
74ca34ce 8308 if (!rsa->regs[i].in_g_packet)
56be3814 8309 if (!store_register_using_P (regcache, &rsa->regs[i]))
74ca34ce
DJ
8310 /* See above for why we do not issue an error here. */
8311 continue;
8312}
c906108c
SS
8313\f
8314
8315/* Return the number of hex digits in num. */
8316
8317static int
fba45db2 8318hexnumlen (ULONGEST num)
c906108c
SS
8319{
8320 int i;
8321
8322 for (i = 0; num != 0; i++)
8323 num >>= 4;
8324
325fac50 8325 return std::max (i, 1);
c906108c
SS
8326}
8327
2df3850c 8328/* Set BUF to the minimum number of hex digits representing NUM. */
c906108c
SS
8329
8330static int
fba45db2 8331hexnumstr (char *buf, ULONGEST num)
c906108c 8332{
c906108c 8333 int len = hexnumlen (num);
a744cf53 8334
2df3850c
JM
8335 return hexnumnstr (buf, num, len);
8336}
8337
c906108c 8338
2df3850c 8339/* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
c906108c 8340
2df3850c 8341static int
fba45db2 8342hexnumnstr (char *buf, ULONGEST num, int width)
2df3850c
JM
8343{
8344 int i;
8345
8346 buf[width] = '\0';
8347
8348 for (i = width - 1; i >= 0; i--)
c906108c 8349 {
c5aa993b 8350 buf[i] = "0123456789abcdef"[(num & 0xf)];
c906108c
SS
8351 num >>= 4;
8352 }
8353
2df3850c 8354 return width;
c906108c
SS
8355}
8356
23860348 8357/* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
c906108c
SS
8358
8359static CORE_ADDR
fba45db2 8360remote_address_masked (CORE_ADDR addr)
c906108c 8361{
883b9c6c 8362 unsigned int address_size = remote_address_size;
a744cf53 8363
911c95a5
UW
8364 /* If "remoteaddresssize" was not set, default to target address size. */
8365 if (!address_size)
f5656ead 8366 address_size = gdbarch_addr_bit (target_gdbarch ());
911c95a5
UW
8367
8368 if (address_size > 0
8369 && address_size < (sizeof (ULONGEST) * 8))
c906108c
SS
8370 {
8371 /* Only create a mask when that mask can safely be constructed
23860348 8372 in a ULONGEST variable. */
c906108c 8373 ULONGEST mask = 1;
a744cf53 8374
911c95a5 8375 mask = (mask << address_size) - 1;
c906108c
SS
8376 addr &= mask;
8377 }
8378 return addr;
8379}
8380
8381/* Determine whether the remote target supports binary downloading.
8382 This is accomplished by sending a no-op memory write of zero length
8383 to the target at the specified address. It does not suffice to send
23860348
MS
8384 the whole packet, since many stubs strip the eighth bit and
8385 subsequently compute a wrong checksum, which causes real havoc with
8386 remote_write_bytes.
7a292a7a 8387
96baa820 8388 NOTE: This can still lose if the serial line is not eight-bit
0df8b418 8389 clean. In cases like this, the user should clear "remote
23860348 8390 X-packet". */
96baa820 8391
6b8edb51
PA
8392void
8393remote_target::check_binary_download (CORE_ADDR addr)
c906108c 8394{
d01949b6 8395 struct remote_state *rs = get_remote_state ();
24b06219 8396
4082afcc 8397 switch (packet_support (PACKET_X))
c906108c 8398 {
96baa820
JM
8399 case PACKET_DISABLE:
8400 break;
8401 case PACKET_ENABLE:
8402 break;
8403 case PACKET_SUPPORT_UNKNOWN:
8404 {
96baa820 8405 char *p;
802188a7 8406
8d64371b 8407 p = rs->buf.data ();
96baa820
JM
8408 *p++ = 'X';
8409 p += hexnumstr (p, (ULONGEST) addr);
8410 *p++ = ',';
8411 p += hexnumstr (p, (ULONGEST) 0);
8412 *p++ = ':';
8413 *p = '\0';
802188a7 8414
8d64371b
TT
8415 putpkt_binary (rs->buf.data (), (int) (p - rs->buf.data ()));
8416 getpkt (&rs->buf, 0);
c906108c 8417
2e9f7625 8418 if (rs->buf[0] == '\0')
96baa820
JM
8419 {
8420 if (remote_debug)
8421 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
8422 "binary downloading NOT "
8423 "supported by target\n");
444abaca 8424 remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
96baa820
JM
8425 }
8426 else
8427 {
8428 if (remote_debug)
8429 fprintf_unfiltered (gdb_stdlog,
64b9b334 8430 "binary downloading supported by target\n");
444abaca 8431 remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
96baa820
JM
8432 }
8433 break;
8434 }
c906108c
SS
8435 }
8436}
8437
124e13d9
SM
8438/* Helper function to resize the payload in order to try to get a good
8439 alignment. We try to write an amount of data such that the next write will
8440 start on an address aligned on REMOTE_ALIGN_WRITES. */
8441
8442static int
8443align_for_efficient_write (int todo, CORE_ADDR memaddr)
8444{
8445 return ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr;
8446}
8447
c906108c
SS
8448/* Write memory data directly to the remote machine.
8449 This does not inform the data cache; the data cache uses this.
a76d924d 8450 HEADER is the starting part of the packet.
c906108c
SS
8451 MEMADDR is the address in the remote memory space.
8452 MYADDR is the address of the buffer in our space.
124e13d9
SM
8453 LEN_UNITS is the number of addressable units to write.
8454 UNIT_SIZE is the length in bytes of an addressable unit.
a76d924d
DJ
8455 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
8456 should send data as binary ('X'), or hex-encoded ('M').
8457
8458 The function creates packet of the form
8459 <HEADER><ADDRESS>,<LENGTH>:<DATA>
8460
124e13d9 8461 where encoding of <DATA> is terminated by PACKET_FORMAT.
a76d924d
DJ
8462
8463 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
8464 are omitted.
8465
9b409511 8466 Return the transferred status, error or OK (an
124e13d9
SM
8467 'enum target_xfer_status' value). Save the number of addressable units
8468 transferred in *XFERED_LEN_UNITS. Only transfer a single packet.
8469
8470 On a platform with an addressable memory size of 2 bytes (UNIT_SIZE == 2), an
8471 exchange between gdb and the stub could look like (?? in place of the
8472 checksum):
8473
8474 -> $m1000,4#??
8475 <- aaaabbbbccccdddd
8476
8477 -> $M1000,3:eeeeffffeeee#??
8478 <- OK
8479
8480 -> $m1000,4#??
8481 <- eeeeffffeeeedddd */
c906108c 8482
6b8edb51
PA
8483target_xfer_status
8484remote_target::remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
8485 const gdb_byte *myaddr,
8486 ULONGEST len_units,
8487 int unit_size,
8488 ULONGEST *xfered_len_units,
8489 char packet_format, int use_length)
c906108c 8490{
6d820c5c 8491 struct remote_state *rs = get_remote_state ();
cfd77fa1 8492 char *p;
a76d924d
DJ
8493 char *plen = NULL;
8494 int plenlen = 0;
124e13d9
SM
8495 int todo_units;
8496 int units_written;
8497 int payload_capacity_bytes;
8498 int payload_length_bytes;
a76d924d
DJ
8499
8500 if (packet_format != 'X' && packet_format != 'M')
8501 internal_error (__FILE__, __LINE__,
9b20d036 8502 _("remote_write_bytes_aux: bad packet format"));
c906108c 8503
124e13d9 8504 if (len_units == 0)
9b409511 8505 return TARGET_XFER_EOF;
b2182ed2 8506
124e13d9 8507 payload_capacity_bytes = get_memory_write_packet_size ();
2bc416ba 8508
6d820c5c
DJ
8509 /* The packet buffer will be large enough for the payload;
8510 get_memory_packet_size ensures this. */
a76d924d 8511 rs->buf[0] = '\0';
c906108c 8512
a257b5bb 8513 /* Compute the size of the actual payload by subtracting out the
0df8b418
MS
8514 packet header and footer overhead: "$M<memaddr>,<len>:...#nn". */
8515
124e13d9 8516 payload_capacity_bytes -= strlen ("$,:#NN");
a76d924d 8517 if (!use_length)
0df8b418 8518 /* The comma won't be used. */
124e13d9
SM
8519 payload_capacity_bytes += 1;
8520 payload_capacity_bytes -= strlen (header);
8521 payload_capacity_bytes -= hexnumlen (memaddr);
c906108c 8522
a76d924d 8523 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
917317f4 8524
8d64371b
TT
8525 strcat (rs->buf.data (), header);
8526 p = rs->buf.data () + strlen (header);
a76d924d
DJ
8527
8528 /* Compute a best guess of the number of bytes actually transfered. */
8529 if (packet_format == 'X')
c906108c 8530 {
23860348 8531 /* Best guess at number of bytes that will fit. */
325fac50
PA
8532 todo_units = std::min (len_units,
8533 (ULONGEST) payload_capacity_bytes / unit_size);
a76d924d 8534 if (use_length)
124e13d9 8535 payload_capacity_bytes -= hexnumlen (todo_units);
325fac50 8536 todo_units = std::min (todo_units, payload_capacity_bytes / unit_size);
a76d924d
DJ
8537 }
8538 else
8539 {
124e13d9 8540 /* Number of bytes that will fit. */
325fac50
PA
8541 todo_units
8542 = std::min (len_units,
8543 (ULONGEST) (payload_capacity_bytes / unit_size) / 2);
a76d924d 8544 if (use_length)
124e13d9 8545 payload_capacity_bytes -= hexnumlen (todo_units);
325fac50
PA
8546 todo_units = std::min (todo_units,
8547 (payload_capacity_bytes / unit_size) / 2);
917317f4 8548 }
a76d924d 8549
124e13d9 8550 if (todo_units <= 0)
3de11b2e 8551 internal_error (__FILE__, __LINE__,
405f8e94 8552 _("minimum packet size too small to write data"));
802188a7 8553
6765f3e5
DJ
8554 /* If we already need another packet, then try to align the end
8555 of this packet to a useful boundary. */
124e13d9
SM
8556 if (todo_units > 2 * REMOTE_ALIGN_WRITES && todo_units < len_units)
8557 todo_units = align_for_efficient_write (todo_units, memaddr);
6765f3e5 8558
a257b5bb 8559 /* Append "<memaddr>". */
917317f4
JM
8560 memaddr = remote_address_masked (memaddr);
8561 p += hexnumstr (p, (ULONGEST) memaddr);
a257b5bb 8562
a76d924d
DJ
8563 if (use_length)
8564 {
8565 /* Append ",". */
8566 *p++ = ',';
802188a7 8567
124e13d9
SM
8568 /* Append the length and retain its location and size. It may need to be
8569 adjusted once the packet body has been created. */
a76d924d 8570 plen = p;
124e13d9 8571 plenlen = hexnumstr (p, (ULONGEST) todo_units);
a76d924d
DJ
8572 p += plenlen;
8573 }
a257b5bb
AC
8574
8575 /* Append ":". */
917317f4
JM
8576 *p++ = ':';
8577 *p = '\0';
802188a7 8578
a257b5bb 8579 /* Append the packet body. */
a76d924d 8580 if (packet_format == 'X')
917317f4 8581 {
917317f4
JM
8582 /* Binary mode. Send target system values byte by byte, in
8583 increasing byte addresses. Only escape certain critical
8584 characters. */
124e13d9
SM
8585 payload_length_bytes =
8586 remote_escape_output (myaddr, todo_units, unit_size, (gdb_byte *) p,
8587 &units_written, payload_capacity_bytes);
6765f3e5 8588
124e13d9 8589 /* If not all TODO units fit, then we'll need another packet. Make
9b7194bc
DJ
8590 a second try to keep the end of the packet aligned. Don't do
8591 this if the packet is tiny. */
124e13d9 8592 if (units_written < todo_units && units_written > 2 * REMOTE_ALIGN_WRITES)
6765f3e5 8593 {
124e13d9
SM
8594 int new_todo_units;
8595
8596 new_todo_units = align_for_efficient_write (units_written, memaddr);
8597
8598 if (new_todo_units != units_written)
8599 payload_length_bytes =
8600 remote_escape_output (myaddr, new_todo_units, unit_size,
8601 (gdb_byte *) p, &units_written,
8602 payload_capacity_bytes);
6765f3e5
DJ
8603 }
8604
124e13d9
SM
8605 p += payload_length_bytes;
8606 if (use_length && units_written < todo_units)
c906108c 8607 {
802188a7 8608 /* Escape chars have filled up the buffer prematurely,
124e13d9 8609 and we have actually sent fewer units than planned.
917317f4
JM
8610 Fix-up the length field of the packet. Use the same
8611 number of characters as before. */
124e13d9
SM
8612 plen += hexnumnstr (plen, (ULONGEST) units_written,
8613 plenlen);
917317f4 8614 *plen = ':'; /* overwrite \0 from hexnumnstr() */
c906108c 8615 }
a76d924d
DJ
8616 }
8617 else
8618 {
917317f4
JM
8619 /* Normal mode: Send target system values byte by byte, in
8620 increasing byte addresses. Each byte is encoded as a two hex
8621 value. */
124e13d9
SM
8622 p += 2 * bin2hex (myaddr, p, todo_units * unit_size);
8623 units_written = todo_units;
c906108c 8624 }
802188a7 8625
8d64371b
TT
8626 putpkt_binary (rs->buf.data (), (int) (p - rs->buf.data ()));
8627 getpkt (&rs->buf, 0);
802188a7 8628
2e9f7625 8629 if (rs->buf[0] == 'E')
00d84524 8630 return TARGET_XFER_E_IO;
802188a7 8631
124e13d9
SM
8632 /* Return UNITS_WRITTEN, not TODO_UNITS, in case escape chars caused us to
8633 send fewer units than we'd planned. */
8634 *xfered_len_units = (ULONGEST) units_written;
92ffd475 8635 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
c906108c
SS
8636}
8637
a76d924d
DJ
8638/* Write memory data directly to the remote machine.
8639 This does not inform the data cache; the data cache uses this.
8640 MEMADDR is the address in the remote memory space.
8641 MYADDR is the address of the buffer in our space.
8642 LEN is the number of bytes.
8643
9b409511
YQ
8644 Return the transferred status, error or OK (an
8645 'enum target_xfer_status' value). Save the number of bytes
8646 transferred in *XFERED_LEN. Only transfer a single packet. */
a76d924d 8647
6b8edb51
PA
8648target_xfer_status
8649remote_target::remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr,
8650 ULONGEST len, int unit_size,
8651 ULONGEST *xfered_len)
a76d924d 8652{
a121b7c1 8653 const char *packet_format = NULL;
a76d924d
DJ
8654
8655 /* Check whether the target supports binary download. */
8656 check_binary_download (memaddr);
8657
4082afcc 8658 switch (packet_support (PACKET_X))
a76d924d
DJ
8659 {
8660 case PACKET_ENABLE:
8661 packet_format = "X";
8662 break;
8663 case PACKET_DISABLE:
8664 packet_format = "M";
8665 break;
8666 case PACKET_SUPPORT_UNKNOWN:
8667 internal_error (__FILE__, __LINE__,
8668 _("remote_write_bytes: bad internal state"));
8669 default:
8670 internal_error (__FILE__, __LINE__, _("bad switch"));
8671 }
8672
8673 return remote_write_bytes_aux (packet_format,
124e13d9 8674 memaddr, myaddr, len, unit_size, xfered_len,
9b409511 8675 packet_format[0], 1);
a76d924d
DJ
8676}
8677
9217e74e
YQ
8678/* Read memory data directly from the remote machine.
8679 This does not use the data cache; the data cache uses this.
8680 MEMADDR is the address in the remote memory space.
8681 MYADDR is the address of the buffer in our space.
124e13d9
SM
8682 LEN_UNITS is the number of addressable memory units to read..
8683 UNIT_SIZE is the length in bytes of an addressable unit.
9217e74e
YQ
8684
8685 Return the transferred status, error or OK (an
8686 'enum target_xfer_status' value). Save the number of bytes
124e13d9
SM
8687 transferred in *XFERED_LEN_UNITS.
8688
8689 See the comment of remote_write_bytes_aux for an example of
8690 memory read/write exchange between gdb and the stub. */
9217e74e 8691
6b8edb51
PA
8692target_xfer_status
8693remote_target::remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr,
8694 ULONGEST len_units,
8695 int unit_size, ULONGEST *xfered_len_units)
9217e74e
YQ
8696{
8697 struct remote_state *rs = get_remote_state ();
124e13d9 8698 int buf_size_bytes; /* Max size of packet output buffer. */
9217e74e 8699 char *p;
124e13d9
SM
8700 int todo_units;
8701 int decoded_bytes;
9217e74e 8702
124e13d9 8703 buf_size_bytes = get_memory_read_packet_size ();
9217e74e
YQ
8704 /* The packet buffer will be large enough for the payload;
8705 get_memory_packet_size ensures this. */
8706
124e13d9 8707 /* Number of units that will fit. */
325fac50
PA
8708 todo_units = std::min (len_units,
8709 (ULONGEST) (buf_size_bytes / unit_size) / 2);
9217e74e
YQ
8710
8711 /* Construct "m"<memaddr>","<len>". */
8712 memaddr = remote_address_masked (memaddr);
8d64371b 8713 p = rs->buf.data ();
9217e74e
YQ
8714 *p++ = 'm';
8715 p += hexnumstr (p, (ULONGEST) memaddr);
8716 *p++ = ',';
124e13d9 8717 p += hexnumstr (p, (ULONGEST) todo_units);
9217e74e
YQ
8718 *p = '\0';
8719 putpkt (rs->buf);
8d64371b 8720 getpkt (&rs->buf, 0);
9217e74e
YQ
8721 if (rs->buf[0] == 'E'
8722 && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2])
8723 && rs->buf[3] == '\0')
8724 return TARGET_XFER_E_IO;
8725 /* Reply describes memory byte by byte, each byte encoded as two hex
8726 characters. */
8d64371b 8727 p = rs->buf.data ();
124e13d9 8728 decoded_bytes = hex2bin (p, myaddr, todo_units * unit_size);
9217e74e 8729 /* Return what we have. Let higher layers handle partial reads. */
124e13d9 8730 *xfered_len_units = (ULONGEST) (decoded_bytes / unit_size);
92ffd475 8731 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
9217e74e
YQ
8732}
8733
b55fbac4
YQ
8734/* Using the set of read-only target sections of remote, read live
8735 read-only memory.
8acf9577
YQ
8736
8737 For interface/parameters/return description see target.h,
8738 to_xfer_partial. */
8739
6b8edb51
PA
8740target_xfer_status
8741remote_target::remote_xfer_live_readonly_partial (gdb_byte *readbuf,
8742 ULONGEST memaddr,
8743 ULONGEST len,
8744 int unit_size,
8745 ULONGEST *xfered_len)
8acf9577
YQ
8746{
8747 struct target_section *secp;
8748 struct target_section_table *table;
8749
6b8edb51 8750 secp = target_section_by_addr (this, memaddr);
8acf9577
YQ
8751 if (secp != NULL
8752 && (bfd_get_section_flags (secp->the_bfd_section->owner,
8753 secp->the_bfd_section)
8754 & SEC_READONLY))
8755 {
8756 struct target_section *p;
8757 ULONGEST memend = memaddr + len;
8758
6b8edb51 8759 table = target_get_section_table (this);
8acf9577
YQ
8760
8761 for (p = table->sections; p < table->sections_end; p++)
8762 {
8763 if (memaddr >= p->addr)
8764 {
8765 if (memend <= p->endaddr)
8766 {
8767 /* Entire transfer is within this section. */
124e13d9 8768 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 8769 xfered_len);
8acf9577
YQ
8770 }
8771 else if (memaddr >= p->endaddr)
8772 {
8773 /* This section ends before the transfer starts. */
8774 continue;
8775 }
8776 else
8777 {
8778 /* This section overlaps the transfer. Just do half. */
8779 len = p->endaddr - memaddr;
124e13d9 8780 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 8781 xfered_len);
8acf9577
YQ
8782 }
8783 }
8784 }
8785 }
8786
8787 return TARGET_XFER_EOF;
8788}
8789
9217e74e
YQ
8790/* Similar to remote_read_bytes_1, but it reads from the remote stub
8791 first if the requested memory is unavailable in traceframe.
8792 Otherwise, fall back to remote_read_bytes_1. */
c906108c 8793
6b8edb51
PA
8794target_xfer_status
8795remote_target::remote_read_bytes (CORE_ADDR memaddr,
8796 gdb_byte *myaddr, ULONGEST len, int unit_size,
8797 ULONGEST *xfered_len)
c906108c 8798{
6b6aa828 8799 if (len == 0)
96c4f946 8800 return TARGET_XFER_EOF;
b2182ed2 8801
8acf9577
YQ
8802 if (get_traceframe_number () != -1)
8803 {
a79b1bc6 8804 std::vector<mem_range> available;
8acf9577
YQ
8805
8806 /* If we fail to get the set of available memory, then the
8807 target does not support querying traceframe info, and so we
8808 attempt reading from the traceframe anyway (assuming the
8809 target implements the old QTro packet then). */
8810 if (traceframe_available_memory (&available, memaddr, len))
8811 {
a79b1bc6 8812 if (available.empty () || available[0].start != memaddr)
8acf9577
YQ
8813 {
8814 enum target_xfer_status res;
8815
8816 /* Don't read into the traceframe's available
8817 memory. */
a79b1bc6 8818 if (!available.empty ())
8acf9577
YQ
8819 {
8820 LONGEST oldlen = len;
8821
a79b1bc6 8822 len = available[0].start - memaddr;
8acf9577
YQ
8823 gdb_assert (len <= oldlen);
8824 }
8825
8acf9577 8826 /* This goes through the topmost target again. */
6b8edb51 8827 res = remote_xfer_live_readonly_partial (myaddr, memaddr,
124e13d9 8828 len, unit_size, xfered_len);
8acf9577
YQ
8829 if (res == TARGET_XFER_OK)
8830 return TARGET_XFER_OK;
8831 else
8832 {
8833 /* No use trying further, we know some memory starting
8834 at MEMADDR isn't available. */
8835 *xfered_len = len;
92ffd475
PC
8836 return (*xfered_len != 0) ?
8837 TARGET_XFER_UNAVAILABLE : TARGET_XFER_EOF;
8acf9577
YQ
8838 }
8839 }
8840
8841 /* Don't try to read more than how much is available, in
8842 case the target implements the deprecated QTro packet to
8843 cater for older GDBs (the target's knowledge of read-only
8844 sections may be outdated by now). */
a79b1bc6 8845 len = available[0].length;
8acf9577
YQ
8846 }
8847 }
8848
124e13d9 8849 return remote_read_bytes_1 (memaddr, myaddr, len, unit_size, xfered_len);
c906108c 8850}
74531fed 8851
c906108c 8852\f
c906108c 8853
a76d924d
DJ
8854/* Sends a packet with content determined by the printf format string
8855 FORMAT and the remaining arguments, then gets the reply. Returns
8856 whether the packet was a success, a failure, or unknown. */
8857
6b8edb51
PA
8858packet_result
8859remote_target::remote_send_printf (const char *format, ...)
a76d924d
DJ
8860{
8861 struct remote_state *rs = get_remote_state ();
8862 int max_size = get_remote_packet_size ();
a76d924d 8863 va_list ap;
a744cf53 8864
a76d924d
DJ
8865 va_start (ap, format);
8866
8867 rs->buf[0] = '\0';
8d64371b 8868 int size = vsnprintf (rs->buf.data (), max_size, format, ap);
33b031ce
GB
8869
8870 va_end (ap);
8871
8872 if (size >= max_size)
9b20d036 8873 internal_error (__FILE__, __LINE__, _("Too long remote packet."));
a76d924d
DJ
8874
8875 if (putpkt (rs->buf) < 0)
8876 error (_("Communication problem with target."));
8877
8878 rs->buf[0] = '\0';
8d64371b 8879 getpkt (&rs->buf, 0);
a76d924d
DJ
8880
8881 return packet_check_result (rs->buf);
8882}
8883
a76d924d
DJ
8884/* Flash writing can take quite some time. We'll set
8885 effectively infinite timeout for flash operations.
8886 In future, we'll need to decide on a better approach. */
8887static const int remote_flash_timeout = 1000;
8888
f6ac5f3d
PA
8889void
8890remote_target::flash_erase (ULONGEST address, LONGEST length)
a76d924d 8891{
f5656ead 8892 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
a76d924d 8893 enum packet_result ret;
2ec845e7
TT
8894 scoped_restore restore_timeout
8895 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
a76d924d
DJ
8896
8897 ret = remote_send_printf ("vFlashErase:%s,%s",
5af949e3 8898 phex (address, addr_size),
a76d924d
DJ
8899 phex (length, 4));
8900 switch (ret)
8901 {
8902 case PACKET_UNKNOWN:
8903 error (_("Remote target does not support flash erase"));
8904 case PACKET_ERROR:
8905 error (_("Error erasing flash with vFlashErase packet"));
8906 default:
8907 break;
8908 }
a76d924d
DJ
8909}
8910
6b8edb51
PA
8911target_xfer_status
8912remote_target::remote_flash_write (ULONGEST address,
8913 ULONGEST length, ULONGEST *xfered_len,
8914 const gdb_byte *data)
a76d924d 8915{
2ec845e7
TT
8916 scoped_restore restore_timeout
8917 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
8918 return remote_write_bytes_aux ("vFlashWrite:", address, data, length, 1,
8919 xfered_len,'X', 0);
a76d924d
DJ
8920}
8921
f6ac5f3d
PA
8922void
8923remote_target::flash_done ()
a76d924d 8924{
a76d924d 8925 int ret;
a76d924d 8926
2ec845e7
TT
8927 scoped_restore restore_timeout
8928 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
8929
a76d924d 8930 ret = remote_send_printf ("vFlashDone");
a76d924d
DJ
8931
8932 switch (ret)
8933 {
8934 case PACKET_UNKNOWN:
8935 error (_("Remote target does not support vFlashDone"));
8936 case PACKET_ERROR:
8937 error (_("Error finishing flash operation"));
8938 default:
8939 break;
8940 }
8941}
8942
f6ac5f3d
PA
8943void
8944remote_target::files_info ()
c906108c
SS
8945{
8946 puts_filtered ("Debugging a target over a serial line.\n");
8947}
8948\f
8949/* Stuff for dealing with the packets which are part of this protocol.
8950 See comment at top of file for details. */
8951
1927e618
PA
8952/* Close/unpush the remote target, and throw a TARGET_CLOSE_ERROR
8953 error to higher layers. Called when a serial error is detected.
8954 The exception message is STRING, followed by a colon and a blank,
d6cb50a2
JK
8955 the system error message for errno at function entry and final dot
8956 for output compatibility with throw_perror_with_name. */
1927e618
PA
8957
8958static void
8959unpush_and_perror (const char *string)
8960{
d6cb50a2 8961 int saved_errno = errno;
1927e618
PA
8962
8963 remote_unpush_target ();
d6cb50a2
JK
8964 throw_error (TARGET_CLOSE_ERROR, "%s: %s.", string,
8965 safe_strerror (saved_errno));
1927e618
PA
8966}
8967
048094ac
PA
8968/* Read a single character from the remote end. The current quit
8969 handler is overridden to avoid quitting in the middle of packet
8970 sequence, as that would break communication with the remote server.
8971 See remote_serial_quit_handler for more detail. */
c906108c 8972
6b8edb51
PA
8973int
8974remote_target::readchar (int timeout)
c906108c
SS
8975{
8976 int ch;
5d93a237 8977 struct remote_state *rs = get_remote_state ();
048094ac 8978
2ec845e7 8979 {
6b8edb51
PA
8980 scoped_restore restore_quit_target
8981 = make_scoped_restore (&curr_quit_handler_target, this);
2ec845e7 8982 scoped_restore restore_quit
6b8edb51 8983 = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
c906108c 8984
2ec845e7 8985 rs->got_ctrlc_during_io = 0;
c906108c 8986
2ec845e7 8987 ch = serial_readchar (rs->remote_desc, timeout);
048094ac 8988
2ec845e7
TT
8989 if (rs->got_ctrlc_during_io)
8990 set_quit_flag ();
8991 }
048094ac 8992
2acceee2 8993 if (ch >= 0)
0876f84a 8994 return ch;
2acceee2
JM
8995
8996 switch ((enum serial_rc) ch)
c906108c
SS
8997 {
8998 case SERIAL_EOF:
78a095c3 8999 remote_unpush_target ();
598d3636 9000 throw_error (TARGET_CLOSE_ERROR, _("Remote connection closed"));
2acceee2 9001 /* no return */
c906108c 9002 case SERIAL_ERROR:
1927e618
PA
9003 unpush_and_perror (_("Remote communication error. "
9004 "Target disconnected."));
2acceee2 9005 /* no return */
c906108c 9006 case SERIAL_TIMEOUT:
2acceee2 9007 break;
c906108c 9008 }
2acceee2 9009 return ch;
c906108c
SS
9010}
9011
c33e31fd 9012/* Wrapper for serial_write that closes the target and throws if
048094ac
PA
9013 writing fails. The current quit handler is overridden to avoid
9014 quitting in the middle of packet sequence, as that would break
9015 communication with the remote server. See
9016 remote_serial_quit_handler for more detail. */
c33e31fd 9017
6b8edb51
PA
9018void
9019remote_target::remote_serial_write (const char *str, int len)
c33e31fd 9020{
5d93a237 9021 struct remote_state *rs = get_remote_state ();
048094ac 9022
6b8edb51
PA
9023 scoped_restore restore_quit_target
9024 = make_scoped_restore (&curr_quit_handler_target, this);
2ec845e7 9025 scoped_restore restore_quit
6b8edb51 9026 = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
048094ac
PA
9027
9028 rs->got_ctrlc_during_io = 0;
5d93a237
TT
9029
9030 if (serial_write (rs->remote_desc, str, len))
c33e31fd 9031 {
1927e618
PA
9032 unpush_and_perror (_("Remote communication error. "
9033 "Target disconnected."));
c33e31fd 9034 }
048094ac
PA
9035
9036 if (rs->got_ctrlc_during_io)
9037 set_quit_flag ();
c33e31fd
PA
9038}
9039
b3ced9ba
PA
9040/* Return a string representing an escaped version of BUF, of len N.
9041 E.g. \n is converted to \\n, \t to \\t, etc. */
6e5abd65 9042
b3ced9ba 9043static std::string
6e5abd65
PA
9044escape_buffer (const char *buf, int n)
9045{
d7e74731 9046 string_file stb;
6e5abd65 9047
d7e74731
PA
9048 stb.putstrn (buf, n, '\\');
9049 return std::move (stb.string ());
6e5abd65
PA
9050}
9051
c906108c
SS
9052/* Display a null-terminated packet on stdout, for debugging, using C
9053 string notation. */
9054
9055static void
baa336ce 9056print_packet (const char *buf)
c906108c
SS
9057{
9058 puts_filtered ("\"");
43e526b9 9059 fputstr_filtered (buf, '"', gdb_stdout);
c906108c
SS
9060 puts_filtered ("\"");
9061}
9062
9063int
6b8edb51 9064remote_target::putpkt (const char *buf)
c906108c
SS
9065{
9066 return putpkt_binary (buf, strlen (buf));
9067}
9068
6b8edb51
PA
9069/* Wrapper around remote_target::putpkt to avoid exporting
9070 remote_target. */
9071
9072int
9073putpkt (remote_target *remote, const char *buf)
9074{
9075 return remote->putpkt (buf);
9076}
9077
c906108c 9078/* Send a packet to the remote machine, with error checking. The data
23860348 9079 of the packet is in BUF. The string in BUF can be at most
ea9c271d 9080 get_remote_packet_size () - 5 to account for the $, # and checksum,
23860348
MS
9081 and for a possible /0 if we are debugging (remote_debug) and want
9082 to print the sent packet as a string. */
c906108c 9083
6b8edb51
PA
9084int
9085remote_target::putpkt_binary (const char *buf, int cnt)
c906108c 9086{
2d717e4f 9087 struct remote_state *rs = get_remote_state ();
c906108c
SS
9088 int i;
9089 unsigned char csum = 0;
b80406ac
TT
9090 gdb::def_vector<char> data (cnt + 6);
9091 char *buf2 = data.data ();
085dd6e6 9092
c906108c
SS
9093 int ch;
9094 int tcount = 0;
9095 char *p;
9096
e24a49d8
PA
9097 /* Catch cases like trying to read memory or listing threads while
9098 we're waiting for a stop reply. The remote server wouldn't be
9099 ready to handle this request, so we'd hang and timeout. We don't
9100 have to worry about this in synchronous mode, because in that
9101 case it's not possible to issue a command while the target is
74531fed
PA
9102 running. This is not a problem in non-stop mode, because in that
9103 case, the stub is always ready to process serial input. */
6efcd9a8
PA
9104 if (!target_is_non_stop_p ()
9105 && target_is_async_p ()
9106 && rs->waiting_for_stop_reply)
9597b22a
DE
9107 {
9108 error (_("Cannot execute this command while the target is running.\n"
9109 "Use the \"interrupt\" command to stop the target\n"
9110 "and then try again."));
9111 }
e24a49d8 9112
2d717e4f
DJ
9113 /* We're sending out a new packet. Make sure we don't look at a
9114 stale cached response. */
9115 rs->cached_wait_status = 0;
9116
c906108c
SS
9117 /* Copy the packet into buffer BUF2, encapsulating it
9118 and giving it a checksum. */
9119
c906108c
SS
9120 p = buf2;
9121 *p++ = '$';
9122
9123 for (i = 0; i < cnt; i++)
9124 {
9125 csum += buf[i];
9126 *p++ = buf[i];
9127 }
9128 *p++ = '#';
9129 *p++ = tohex ((csum >> 4) & 0xf);
9130 *p++ = tohex (csum & 0xf);
9131
9132 /* Send it over and over until we get a positive ack. */
9133
9134 while (1)
9135 {
9136 int started_error_output = 0;
9137
9138 if (remote_debug)
9139 {
9140 *p = '\0';
b3ced9ba 9141
6f8976bf
YQ
9142 int len = (int) (p - buf2);
9143
9144 std::string str
9145 = escape_buffer (buf2, std::min (len, REMOTE_DEBUG_MAX_CHAR));
9146
9147 fprintf_unfiltered (gdb_stdlog, "Sending packet: %s", str.c_str ());
9148
567a3e54
SM
9149 if (len > REMOTE_DEBUG_MAX_CHAR)
9150 fprintf_unfiltered (gdb_stdlog, "[%d bytes omitted]",
9151 len - REMOTE_DEBUG_MAX_CHAR);
6f8976bf
YQ
9152
9153 fprintf_unfiltered (gdb_stdlog, "...");
b3ced9ba 9154
0f71a2f6 9155 gdb_flush (gdb_stdlog);
c906108c 9156 }
c33e31fd 9157 remote_serial_write (buf2, p - buf2);
c906108c 9158
a6f3e723
SL
9159 /* If this is a no acks version of the remote protocol, send the
9160 packet and move on. */
9161 if (rs->noack_mode)
9162 break;
9163
74531fed
PA
9164 /* Read until either a timeout occurs (-2) or '+' is read.
9165 Handle any notification that arrives in the mean time. */
c906108c
SS
9166 while (1)
9167 {
9168 ch = readchar (remote_timeout);
9169
c5aa993b 9170 if (remote_debug)
c906108c
SS
9171 {
9172 switch (ch)
9173 {
9174 case '+':
1216fa2c 9175 case '-':
c906108c
SS
9176 case SERIAL_TIMEOUT:
9177 case '$':
74531fed 9178 case '%':
c906108c
SS
9179 if (started_error_output)
9180 {
9181 putchar_unfiltered ('\n');
9182 started_error_output = 0;
9183 }
9184 }
9185 }
9186
9187 switch (ch)
9188 {
9189 case '+':
9190 if (remote_debug)
0f71a2f6 9191 fprintf_unfiltered (gdb_stdlog, "Ack\n");
c906108c 9192 return 1;
1216fa2c
AC
9193 case '-':
9194 if (remote_debug)
9195 fprintf_unfiltered (gdb_stdlog, "Nak\n");
a17d146e 9196 /* FALLTHROUGH */
c906108c 9197 case SERIAL_TIMEOUT:
c5aa993b 9198 tcount++;
c906108c 9199 if (tcount > 3)
b80406ac 9200 return 0;
23860348 9201 break; /* Retransmit buffer. */
c906108c
SS
9202 case '$':
9203 {
40e3f985 9204 if (remote_debug)
2bc416ba 9205 fprintf_unfiltered (gdb_stdlog,
23860348 9206 "Packet instead of Ack, ignoring it\n");
d6f7abdf
AC
9207 /* It's probably an old response sent because an ACK
9208 was lost. Gobble up the packet and ack it so it
9209 doesn't get retransmitted when we resend this
9210 packet. */
6d820c5c 9211 skip_frame ();
c33e31fd 9212 remote_serial_write ("+", 1);
23860348 9213 continue; /* Now, go look for +. */
c906108c 9214 }
74531fed
PA
9215
9216 case '%':
9217 {
9218 int val;
9219
9220 /* If we got a notification, handle it, and go back to looking
9221 for an ack. */
9222 /* We've found the start of a notification. Now
9223 collect the data. */
8d64371b 9224 val = read_frame (&rs->buf);
74531fed
PA
9225 if (val >= 0)
9226 {
9227 if (remote_debug)
9228 {
8d64371b 9229 std::string str = escape_buffer (rs->buf.data (), val);
6e5abd65 9230
6e5abd65
PA
9231 fprintf_unfiltered (gdb_stdlog,
9232 " Notification received: %s\n",
b3ced9ba 9233 str.c_str ());
74531fed 9234 }
8d64371b 9235 handle_notification (rs->notif_state, rs->buf.data ());
74531fed
PA
9236 /* We're in sync now, rewait for the ack. */
9237 tcount = 0;
9238 }
9239 else
9240 {
9241 if (remote_debug)
9242 {
9243 if (!started_error_output)
9244 {
9245 started_error_output = 1;
9246 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
9247 }
9248 fputc_unfiltered (ch & 0177, gdb_stdlog);
8d64371b 9249 fprintf_unfiltered (gdb_stdlog, "%s", rs->buf.data ());
74531fed
PA
9250 }
9251 }
9252 continue;
9253 }
9254 /* fall-through */
c906108c
SS
9255 default:
9256 if (remote_debug)
9257 {
9258 if (!started_error_output)
9259 {
9260 started_error_output = 1;
0f71a2f6 9261 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
c906108c 9262 }
0f71a2f6 9263 fputc_unfiltered (ch & 0177, gdb_stdlog);
c906108c
SS
9264 }
9265 continue;
9266 }
23860348 9267 break; /* Here to retransmit. */
c906108c
SS
9268 }
9269
9270#if 0
9271 /* This is wrong. If doing a long backtrace, the user should be
c5aa993b
JM
9272 able to get out next time we call QUIT, without anything as
9273 violent as interrupt_query. If we want to provide a way out of
9274 here without getting to the next QUIT, it should be based on
9275 hitting ^C twice as in remote_wait. */
c906108c
SS
9276 if (quit_flag)
9277 {
9278 quit_flag = 0;
9279 interrupt_query ();
9280 }
9281#endif
9282 }
a5c0808e 9283
a6f3e723 9284 return 0;
c906108c
SS
9285}
9286
6d820c5c
DJ
9287/* Come here after finding the start of a frame when we expected an
9288 ack. Do our best to discard the rest of this packet. */
9289
6b8edb51
PA
9290void
9291remote_target::skip_frame ()
6d820c5c
DJ
9292{
9293 int c;
9294
9295 while (1)
9296 {
9297 c = readchar (remote_timeout);
9298 switch (c)
9299 {
9300 case SERIAL_TIMEOUT:
9301 /* Nothing we can do. */
9302 return;
9303 case '#':
9304 /* Discard the two bytes of checksum and stop. */
9305 c = readchar (remote_timeout);
9306 if (c >= 0)
9307 c = readchar (remote_timeout);
9308
9309 return;
9310 case '*': /* Run length encoding. */
9311 /* Discard the repeat count. */
9312 c = readchar (remote_timeout);
9313 if (c < 0)
9314 return;
9315 break;
9316 default:
9317 /* A regular character. */
9318 break;
9319 }
9320 }
9321}
9322
c906108c 9323/* Come here after finding the start of the frame. Collect the rest
6d820c5c
DJ
9324 into *BUF, verifying the checksum, length, and handling run-length
9325 compression. NUL terminate the buffer. If there is not enough room,
8d64371b 9326 expand *BUF.
c906108c 9327
c2d11a7d
JM
9328 Returns -1 on error, number of characters in buffer (ignoring the
9329 trailing NULL) on success. (could be extended to return one of the
23860348 9330 SERIAL status indications). */
c2d11a7d 9331
6b8edb51 9332long
8d64371b 9333remote_target::read_frame (gdb::char_vector *buf_p)
c906108c
SS
9334{
9335 unsigned char csum;
c2d11a7d 9336 long bc;
c906108c 9337 int c;
8d64371b 9338 char *buf = buf_p->data ();
a6f3e723 9339 struct remote_state *rs = get_remote_state ();
c906108c
SS
9340
9341 csum = 0;
c2d11a7d 9342 bc = 0;
c906108c
SS
9343
9344 while (1)
9345 {
9346 c = readchar (remote_timeout);
c906108c
SS
9347 switch (c)
9348 {
9349 case SERIAL_TIMEOUT:
9350 if (remote_debug)
0f71a2f6 9351 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog);
c2d11a7d 9352 return -1;
c906108c
SS
9353 case '$':
9354 if (remote_debug)
0f71a2f6
JM
9355 fputs_filtered ("Saw new packet start in middle of old one\n",
9356 gdb_stdlog);
23860348 9357 return -1; /* Start a new packet, count retries. */
c906108c
SS
9358 case '#':
9359 {
9360 unsigned char pktcsum;
e1b09194
AC
9361 int check_0 = 0;
9362 int check_1 = 0;
c906108c 9363
c2d11a7d 9364 buf[bc] = '\0';
c906108c 9365
e1b09194
AC
9366 check_0 = readchar (remote_timeout);
9367 if (check_0 >= 0)
9368 check_1 = readchar (remote_timeout);
802188a7 9369
e1b09194
AC
9370 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
9371 {
9372 if (remote_debug)
2bc416ba 9373 fputs_filtered ("Timeout in checksum, retrying\n",
23860348 9374 gdb_stdlog);
e1b09194
AC
9375 return -1;
9376 }
9377 else if (check_0 < 0 || check_1 < 0)
40e3f985
FN
9378 {
9379 if (remote_debug)
2bc416ba 9380 fputs_filtered ("Communication error in checksum\n",
23860348 9381 gdb_stdlog);
40e3f985
FN
9382 return -1;
9383 }
c906108c 9384
a6f3e723
SL
9385 /* Don't recompute the checksum; with no ack packets we
9386 don't have any way to indicate a packet retransmission
9387 is necessary. */
9388 if (rs->noack_mode)
9389 return bc;
9390
e1b09194 9391 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
c906108c 9392 if (csum == pktcsum)
c2d11a7d 9393 return bc;
c906108c 9394
c5aa993b 9395 if (remote_debug)
c906108c 9396 {
b3ced9ba 9397 std::string str = escape_buffer (buf, bc);
6e5abd65 9398
6e5abd65 9399 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
9400 "Bad checksum, sentsum=0x%x, "
9401 "csum=0x%x, buf=%s\n",
b3ced9ba 9402 pktcsum, csum, str.c_str ());
c906108c 9403 }
c2d11a7d 9404 /* Number of characters in buffer ignoring trailing
23860348 9405 NULL. */
c2d11a7d 9406 return -1;
c906108c 9407 }
23860348 9408 case '*': /* Run length encoding. */
c2c6d25f
JM
9409 {
9410 int repeat;
c906108c 9411
a744cf53 9412 csum += c;
b4501125
AC
9413 c = readchar (remote_timeout);
9414 csum += c;
23860348 9415 repeat = c - ' ' + 3; /* Compute repeat count. */
c906108c 9416
23860348 9417 /* The character before ``*'' is repeated. */
c2d11a7d 9418
6d820c5c 9419 if (repeat > 0 && repeat <= 255 && bc > 0)
c2c6d25f 9420 {
8d64371b 9421 if (bc + repeat - 1 >= buf_p->size () - 1)
6d820c5c
DJ
9422 {
9423 /* Make some more room in the buffer. */
8d64371b
TT
9424 buf_p->resize (buf_p->size () + repeat);
9425 buf = buf_p->data ();
6d820c5c
DJ
9426 }
9427
c2d11a7d
JM
9428 memset (&buf[bc], buf[bc - 1], repeat);
9429 bc += repeat;
c2c6d25f
JM
9430 continue;
9431 }
9432
c2d11a7d 9433 buf[bc] = '\0';
6d820c5c 9434 printf_filtered (_("Invalid run length encoding: %s\n"), buf);
c2d11a7d 9435 return -1;
c2c6d25f 9436 }
c906108c 9437 default:
8d64371b 9438 if (bc >= buf_p->size () - 1)
c906108c 9439 {
6d820c5c 9440 /* Make some more room in the buffer. */
8d64371b
TT
9441 buf_p->resize (buf_p->size () * 2);
9442 buf = buf_p->data ();
c906108c
SS
9443 }
9444
6d820c5c
DJ
9445 buf[bc++] = c;
9446 csum += c;
9447 continue;
c906108c
SS
9448 }
9449 }
9450}
9451
ed2b7c17
TT
9452/* Set this to the maximum number of seconds to wait instead of waiting forever
9453 in target_wait(). If this timer times out, then it generates an error and
9454 the command is aborted. This replaces most of the need for timeouts in the
9455 GDB test suite, and makes it possible to distinguish between a hung target
9456 and one with slow communications. */
9457
9458static int watchdog = 0;
9459static void
9460show_watchdog (struct ui_file *file, int from_tty,
9461 struct cmd_list_element *c, const char *value)
9462{
9463 fprintf_filtered (file, _("Watchdog timer is %s.\n"), value);
9464}
9465
c906108c 9466/* Read a packet from the remote machine, with error checking, and
8d64371b
TT
9467 store it in *BUF. Resize *BUF if necessary to hold the result. If
9468 FOREVER, wait forever rather than timing out; this is used (in
9469 synchronous mode) to wait for a target that is is executing user
9470 code to stop. */
d9fcf2fb
JM
9471/* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
9472 don't have to change all the calls to getpkt to deal with the
9473 return value, because at the moment I don't know what the right
23860348 9474 thing to do it for those. */
6b8edb51 9475
c906108c 9476void
8d64371b 9477remote_target::getpkt (gdb::char_vector *buf, int forever)
d9fcf2fb 9478{
8d64371b 9479 getpkt_sane (buf, forever);
d9fcf2fb
JM
9480}
9481
9482
9483/* Read a packet from the remote machine, with error checking, and
8d64371b
TT
9484 store it in *BUF. Resize *BUF if necessary to hold the result. If
9485 FOREVER, wait forever rather than timing out; this is used (in
9486 synchronous mode) to wait for a target that is is executing user
9487 code to stop. If FOREVER == 0, this function is allowed to time
9488 out gracefully and return an indication of this to the caller.
9489 Otherwise return the number of bytes read. If EXPECTING_NOTIF,
9490 consider receiving a notification enough reason to return to the
9491 caller. *IS_NOTIF is an output boolean that indicates whether *BUF
9492 holds a notification or not (a regular packet). */
74531fed 9493
6b8edb51 9494int
8d64371b 9495remote_target::getpkt_or_notif_sane_1 (gdb::char_vector *buf,
6b8edb51
PA
9496 int forever, int expecting_notif,
9497 int *is_notif)
c906108c 9498{
2d717e4f 9499 struct remote_state *rs = get_remote_state ();
c906108c
SS
9500 int c;
9501 int tries;
9502 int timeout;
df4b58fe 9503 int val = -1;
c906108c 9504
2d717e4f
DJ
9505 /* We're reading a new response. Make sure we don't look at a
9506 previously cached response. */
9507 rs->cached_wait_status = 0;
9508
8d64371b 9509 strcpy (buf->data (), "timeout");
c906108c
SS
9510
9511 if (forever)
74531fed
PA
9512 timeout = watchdog > 0 ? watchdog : -1;
9513 else if (expecting_notif)
9514 timeout = 0; /* There should already be a char in the buffer. If
9515 not, bail out. */
c906108c
SS
9516 else
9517 timeout = remote_timeout;
9518
9519#define MAX_TRIES 3
9520
74531fed
PA
9521 /* Process any number of notifications, and then return when
9522 we get a packet. */
9523 for (;;)
c906108c 9524 {
d9c43928 9525 /* If we get a timeout or bad checksum, retry up to MAX_TRIES
74531fed
PA
9526 times. */
9527 for (tries = 1; tries <= MAX_TRIES; tries++)
c906108c 9528 {
74531fed
PA
9529 /* This can loop forever if the remote side sends us
9530 characters continuously, but if it pauses, we'll get
9531 SERIAL_TIMEOUT from readchar because of timeout. Then
9532 we'll count that as a retry.
9533
9534 Note that even when forever is set, we will only wait
9535 forever prior to the start of a packet. After that, we
9536 expect characters to arrive at a brisk pace. They should
9537 show up within remote_timeout intervals. */
9538 do
9539 c = readchar (timeout);
9540 while (c != SERIAL_TIMEOUT && c != '$' && c != '%');
c906108c
SS
9541
9542 if (c == SERIAL_TIMEOUT)
9543 {
74531fed
PA
9544 if (expecting_notif)
9545 return -1; /* Don't complain, it's normal to not get
9546 anything in this case. */
9547
23860348 9548 if (forever) /* Watchdog went off? Kill the target. */
c906108c 9549 {
78a095c3 9550 remote_unpush_target ();
598d3636
JK
9551 throw_error (TARGET_CLOSE_ERROR,
9552 _("Watchdog timeout has expired. "
9553 "Target detached."));
c906108c 9554 }
c906108c 9555 if (remote_debug)
0f71a2f6 9556 fputs_filtered ("Timed out.\n", gdb_stdlog);
c906108c 9557 }
74531fed
PA
9558 else
9559 {
9560 /* We've found the start of a packet or notification.
9561 Now collect the data. */
8d64371b 9562 val = read_frame (buf);
74531fed
PA
9563 if (val >= 0)
9564 break;
9565 }
9566
c33e31fd 9567 remote_serial_write ("-", 1);
c906108c 9568 }
c906108c 9569
74531fed
PA
9570 if (tries > MAX_TRIES)
9571 {
9572 /* We have tried hard enough, and just can't receive the
9573 packet/notification. Give up. */
9574 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
c906108c 9575
74531fed
PA
9576 /* Skip the ack char if we're in no-ack mode. */
9577 if (!rs->noack_mode)
c33e31fd 9578 remote_serial_write ("+", 1);
74531fed
PA
9579 return -1;
9580 }
c906108c 9581
74531fed
PA
9582 /* If we got an ordinary packet, return that to our caller. */
9583 if (c == '$')
c906108c
SS
9584 {
9585 if (remote_debug)
43e526b9 9586 {
6f8976bf 9587 std::string str
8d64371b 9588 = escape_buffer (buf->data (),
6f8976bf
YQ
9589 std::min (val, REMOTE_DEBUG_MAX_CHAR));
9590
9591 fprintf_unfiltered (gdb_stdlog, "Packet received: %s",
9592 str.c_str ());
9593
567a3e54
SM
9594 if (val > REMOTE_DEBUG_MAX_CHAR)
9595 fprintf_unfiltered (gdb_stdlog, "[%d bytes omitted]",
9596 val - REMOTE_DEBUG_MAX_CHAR);
6e5abd65 9597
6f8976bf 9598 fprintf_unfiltered (gdb_stdlog, "\n");
43e526b9 9599 }
a6f3e723
SL
9600
9601 /* Skip the ack char if we're in no-ack mode. */
9602 if (!rs->noack_mode)
c33e31fd 9603 remote_serial_write ("+", 1);
fee9eda9
YQ
9604 if (is_notif != NULL)
9605 *is_notif = 0;
0876f84a 9606 return val;
c906108c
SS
9607 }
9608
74531fed
PA
9609 /* If we got a notification, handle it, and go back to looking
9610 for a packet. */
9611 else
9612 {
9613 gdb_assert (c == '%');
9614
9615 if (remote_debug)
9616 {
8d64371b 9617 std::string str = escape_buffer (buf->data (), val);
6e5abd65 9618
6e5abd65
PA
9619 fprintf_unfiltered (gdb_stdlog,
9620 " Notification received: %s\n",
b3ced9ba 9621 str.c_str ());
74531fed 9622 }
fee9eda9
YQ
9623 if (is_notif != NULL)
9624 *is_notif = 1;
c906108c 9625
8d64371b 9626 handle_notification (rs->notif_state, buf->data ());
c906108c 9627
74531fed 9628 /* Notifications require no acknowledgement. */
a6f3e723 9629
74531fed 9630 if (expecting_notif)
fee9eda9 9631 return val;
74531fed
PA
9632 }
9633 }
9634}
9635
6b8edb51 9636int
8d64371b 9637remote_target::getpkt_sane (gdb::char_vector *buf, int forever)
74531fed 9638{
8d64371b 9639 return getpkt_or_notif_sane_1 (buf, forever, 0, NULL);
74531fed
PA
9640}
9641
6b8edb51 9642int
8d64371b 9643remote_target::getpkt_or_notif_sane (gdb::char_vector *buf, int forever,
6b8edb51 9644 int *is_notif)
74531fed 9645{
8d64371b 9646 return getpkt_or_notif_sane_1 (buf, forever, 1, is_notif);
c906108c 9647}
74531fed 9648
cbb8991c
DB
9649/* Kill any new fork children of process PID that haven't been
9650 processed by follow_fork. */
9651
6b8edb51
PA
9652void
9653remote_target::kill_new_fork_children (int pid)
cbb8991c 9654{
6b8edb51 9655 remote_state *rs = get_remote_state ();
cbb8991c 9656 struct notif_client *notif = &notif_client_stop;
cbb8991c
DB
9657
9658 /* Kill the fork child threads of any threads in process PID
9659 that are stopped at a fork event. */
08036331 9660 for (thread_info *thread : all_non_exited_threads ())
cbb8991c
DB
9661 {
9662 struct target_waitstatus *ws = &thread->pending_follow;
9663
9664 if (is_pending_fork_parent (ws, pid, thread->ptid))
9665 {
953edf2b 9666 int child_pid = ws->value.related_pid.pid ();
cbb8991c
DB
9667 int res;
9668
6b8edb51 9669 res = remote_vkill (child_pid);
cbb8991c
DB
9670 if (res != 0)
9671 error (_("Can't kill fork child process %d"), child_pid);
9672 }
9673 }
9674
9675 /* Check for any pending fork events (not reported or processed yet)
9676 in process PID and kill those fork child threads as well. */
9677 remote_notif_get_pending_events (notif);
953edf2b
TT
9678 for (auto &event : rs->stop_reply_queue)
9679 if (is_pending_fork_parent (&event->ws, pid, event->ptid))
9680 {
9681 int child_pid = event->ws.value.related_pid.pid ();
9682 int res;
9683
9684 res = remote_vkill (child_pid);
9685 if (res != 0)
9686 error (_("Can't kill fork child process %d"), child_pid);
9687 }
cbb8991c
DB
9688}
9689
c906108c 9690\f
8020350c
DB
9691/* Target hook to kill the current inferior. */
9692
f6ac5f3d
PA
9693void
9694remote_target::kill ()
43ff13b4 9695{
8020350c 9696 int res = -1;
e99b03dc 9697 int pid = inferior_ptid.pid ();
8020350c 9698 struct remote_state *rs = get_remote_state ();
0fdf84ca 9699
8020350c 9700 if (packet_support (PACKET_vKill) != PACKET_DISABLE)
0fdf84ca 9701 {
8020350c
DB
9702 /* If we're stopped while forking and we haven't followed yet,
9703 kill the child task. We need to do this before killing the
9704 parent task because if this is a vfork then the parent will
9705 be sleeping. */
6b8edb51 9706 kill_new_fork_children (pid);
8020350c 9707
6b8edb51 9708 res = remote_vkill (pid);
8020350c 9709 if (res == 0)
0fdf84ca 9710 {
bc1e6c81 9711 target_mourn_inferior (inferior_ptid);
0fdf84ca
PA
9712 return;
9713 }
8020350c 9714 }
0fdf84ca 9715
8020350c
DB
9716 /* If we are in 'target remote' mode and we are killing the only
9717 inferior, then we will tell gdbserver to exit and unpush the
9718 target. */
9719 if (res == -1 && !remote_multi_process_p (rs)
9720 && number_of_live_inferiors () == 1)
9721 {
9722 remote_kill_k ();
9723
9724 /* We've killed the remote end, we get to mourn it. If we are
9725 not in extended mode, mourning the inferior also unpushes
9726 remote_ops from the target stack, which closes the remote
9727 connection. */
bc1e6c81 9728 target_mourn_inferior (inferior_ptid);
8020350c
DB
9729
9730 return;
0fdf84ca 9731 }
43ff13b4 9732
8020350c 9733 error (_("Can't kill process"));
43ff13b4
JM
9734}
9735
8020350c
DB
9736/* Send a kill request to the target using the 'vKill' packet. */
9737
6b8edb51
PA
9738int
9739remote_target::remote_vkill (int pid)
82f73884 9740{
4082afcc 9741 if (packet_support (PACKET_vKill) == PACKET_DISABLE)
82f73884
PA
9742 return -1;
9743
6b8edb51
PA
9744 remote_state *rs = get_remote_state ();
9745
82f73884 9746 /* Tell the remote target to detach. */
8d64371b 9747 xsnprintf (rs->buf.data (), get_remote_packet_size (), "vKill;%x", pid);
82f73884 9748 putpkt (rs->buf);
8d64371b 9749 getpkt (&rs->buf, 0);
82f73884 9750
4082afcc
PA
9751 switch (packet_ok (rs->buf,
9752 &remote_protocol_packets[PACKET_vKill]))
9753 {
9754 case PACKET_OK:
9755 return 0;
9756 case PACKET_ERROR:
9757 return 1;
9758 case PACKET_UNKNOWN:
9759 return -1;
9760 default:
9761 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
9762 }
82f73884
PA
9763}
9764
8020350c
DB
9765/* Send a kill request to the target using the 'k' packet. */
9766
6b8edb51
PA
9767void
9768remote_target::remote_kill_k ()
82f73884 9769{
8020350c
DB
9770 /* Catch errors so the user can quit from gdb even when we
9771 aren't on speaking terms with the remote system. */
a70b8144 9772 try
82f73884 9773 {
82f73884 9774 putpkt ("k");
82f73884 9775 }
230d2906 9776 catch (const gdb_exception_error &ex)
8020350c
DB
9777 {
9778 if (ex.error == TARGET_CLOSE_ERROR)
9779 {
9780 /* If we got an (EOF) error that caused the target
9781 to go away, then we're done, that's what we wanted.
9782 "k" is susceptible to cause a premature EOF, given
9783 that the remote server isn't actually required to
9784 reply to "k", and it can happen that it doesn't
9785 even get to reply ACK to the "k". */
9786 return;
9787 }
82f73884 9788
8020350c
DB
9789 /* Otherwise, something went wrong. We didn't actually kill
9790 the target. Just propagate the exception, and let the
9791 user or higher layers decide what to do. */
eedc3f4f 9792 throw;
8020350c 9793 }
82f73884
PA
9794}
9795
f6ac5f3d
PA
9796void
9797remote_target::mourn_inferior ()
c906108c 9798{
8020350c 9799 struct remote_state *rs = get_remote_state ();
ce5ce7ed 9800
9607784a
PA
9801 /* We're no longer interested in notification events of an inferior
9802 that exited or was killed/detached. */
9803 discard_pending_stop_replies (current_inferior ());
9804
8020350c
DB
9805 /* In 'target remote' mode with one inferior, we close the connection. */
9806 if (!rs->extended && number_of_live_inferiors () <= 1)
9807 {
f6ac5f3d 9808 unpush_target (this);
c906108c 9809
8020350c
DB
9810 /* remote_close takes care of doing most of the clean up. */
9811 generic_mourn_inferior ();
9812 return;
9813 }
c906108c 9814
e24a49d8
PA
9815 /* In case we got here due to an error, but we're going to stay
9816 connected. */
9817 rs->waiting_for_stop_reply = 0;
9818
dc1981d7
PA
9819 /* If the current general thread belonged to the process we just
9820 detached from or has exited, the remote side current general
9821 thread becomes undefined. Considering a case like this:
9822
9823 - We just got here due to a detach.
9824 - The process that we're detaching from happens to immediately
9825 report a global breakpoint being hit in non-stop mode, in the
9826 same thread we had selected before.
9827 - GDB attaches to this process again.
9828 - This event happens to be the next event we handle.
9829
9830 GDB would consider that the current general thread didn't need to
9831 be set on the stub side (with Hg), since for all it knew,
9832 GENERAL_THREAD hadn't changed.
9833
9834 Notice that although in all-stop mode, the remote server always
9835 sets the current thread to the thread reporting the stop event,
9836 that doesn't happen in non-stop mode; in non-stop, the stub *must
9837 not* change the current thread when reporting a breakpoint hit,
9838 due to the decoupling of event reporting and event handling.
9839
9840 To keep things simple, we always invalidate our notion of the
9841 current thread. */
47f8a51d 9842 record_currthread (rs, minus_one_ptid);
dc1981d7 9843
8020350c 9844 /* Call common code to mark the inferior as not running. */
48aa3c27
PA
9845 generic_mourn_inferior ();
9846
d729566a 9847 if (!have_inferiors ())
2d717e4f 9848 {
82f73884
PA
9849 if (!remote_multi_process_p (rs))
9850 {
9851 /* Check whether the target is running now - some remote stubs
9852 automatically restart after kill. */
9853 putpkt ("?");
8d64371b 9854 getpkt (&rs->buf, 0);
82f73884
PA
9855
9856 if (rs->buf[0] == 'S' || rs->buf[0] == 'T')
9857 {
3e43a32a
MS
9858 /* Assume that the target has been restarted. Set
9859 inferior_ptid so that bits of core GDB realizes
9860 there's something here, e.g., so that the user can
9861 say "kill" again. */
82f73884
PA
9862 inferior_ptid = magic_null_ptid;
9863 }
82f73884 9864 }
2d717e4f
DJ
9865 }
9866}
c906108c 9867
57810aa7 9868bool
f6ac5f3d 9869extended_remote_target::supports_disable_randomization ()
03583c20 9870{
4082afcc 9871 return packet_support (PACKET_QDisableRandomization) == PACKET_ENABLE;
03583c20
UW
9872}
9873
6b8edb51
PA
9874void
9875remote_target::extended_remote_disable_randomization (int val)
03583c20
UW
9876{
9877 struct remote_state *rs = get_remote_state ();
9878 char *reply;
9879
8d64371b
TT
9880 xsnprintf (rs->buf.data (), get_remote_packet_size (),
9881 "QDisableRandomization:%x", val);
03583c20 9882 putpkt (rs->buf);
b6bb3468 9883 reply = remote_get_noisy_reply ();
03583c20
UW
9884 if (*reply == '\0')
9885 error (_("Target does not support QDisableRandomization."));
9886 if (strcmp (reply, "OK") != 0)
9887 error (_("Bogus QDisableRandomization reply from target: %s"), reply);
9888}
9889
6b8edb51
PA
9890int
9891remote_target::extended_remote_run (const std::string &args)
2d717e4f
DJ
9892{
9893 struct remote_state *rs = get_remote_state ();
2d717e4f 9894 int len;
94585166 9895 const char *remote_exec_file = get_remote_exec_file ();
c906108c 9896
2d717e4f
DJ
9897 /* If the user has disabled vRun support, or we have detected that
9898 support is not available, do not try it. */
4082afcc 9899 if (packet_support (PACKET_vRun) == PACKET_DISABLE)
2d717e4f 9900 return -1;
424163ea 9901
8d64371b
TT
9902 strcpy (rs->buf.data (), "vRun;");
9903 len = strlen (rs->buf.data ());
c906108c 9904
2d717e4f
DJ
9905 if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ())
9906 error (_("Remote file name too long for run packet"));
8d64371b 9907 len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf.data () + len,
9f1b45b0 9908 strlen (remote_exec_file));
2d717e4f 9909
7c5ded6a 9910 if (!args.empty ())
2d717e4f 9911 {
2d717e4f 9912 int i;
2d717e4f 9913
773a1edc 9914 gdb_argv argv (args.c_str ());
2d717e4f
DJ
9915 for (i = 0; argv[i] != NULL; i++)
9916 {
9917 if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ())
9918 error (_("Argument list too long for run packet"));
9919 rs->buf[len++] = ';';
8d64371b 9920 len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf.data () + len,
9f1b45b0 9921 strlen (argv[i]));
2d717e4f 9922 }
2d717e4f
DJ
9923 }
9924
9925 rs->buf[len++] = '\0';
9926
9927 putpkt (rs->buf);
8d64371b 9928 getpkt (&rs->buf, 0);
2d717e4f 9929
4082afcc 9930 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun]))
2d717e4f 9931 {
4082afcc 9932 case PACKET_OK:
3405876a 9933 /* We have a wait response. All is well. */
2d717e4f 9934 return 0;
4082afcc
PA
9935 case PACKET_UNKNOWN:
9936 return -1;
9937 case PACKET_ERROR:
2d717e4f
DJ
9938 if (remote_exec_file[0] == '\0')
9939 error (_("Running the default executable on the remote target failed; "
9940 "try \"set remote exec-file\"?"));
9941 else
9942 error (_("Running \"%s\" on the remote target failed"),
9943 remote_exec_file);
4082afcc
PA
9944 default:
9945 gdb_assert_not_reached (_("bad switch"));
2d717e4f 9946 }
c906108c
SS
9947}
9948
0a2dde4a
SDJ
9949/* Helper function to send set/unset environment packets. ACTION is
9950 either "set" or "unset". PACKET is either "QEnvironmentHexEncoded"
9951 or "QEnvironmentUnsetVariable". VALUE is the variable to be
9952 sent. */
9953
6b8edb51
PA
9954void
9955remote_target::send_environment_packet (const char *action,
9956 const char *packet,
9957 const char *value)
0a2dde4a 9958{
6b8edb51
PA
9959 remote_state *rs = get_remote_state ();
9960
0a2dde4a
SDJ
9961 /* Convert the environment variable to an hex string, which
9962 is the best format to be transmitted over the wire. */
9963 std::string encoded_value = bin2hex ((const gdb_byte *) value,
9964 strlen (value));
9965
8d64371b 9966 xsnprintf (rs->buf.data (), get_remote_packet_size (),
0a2dde4a
SDJ
9967 "%s:%s", packet, encoded_value.c_str ());
9968
9969 putpkt (rs->buf);
8d64371b
TT
9970 getpkt (&rs->buf, 0);
9971 if (strcmp (rs->buf.data (), "OK") != 0)
0a2dde4a
SDJ
9972 warning (_("Unable to %s environment variable '%s' on remote."),
9973 action, value);
9974}
9975
9976/* Helper function to handle the QEnvironment* packets. */
9977
6b8edb51
PA
9978void
9979remote_target::extended_remote_environment_support ()
0a2dde4a 9980{
6b8edb51
PA
9981 remote_state *rs = get_remote_state ();
9982
0a2dde4a
SDJ
9983 if (packet_support (PACKET_QEnvironmentReset) != PACKET_DISABLE)
9984 {
9985 putpkt ("QEnvironmentReset");
8d64371b
TT
9986 getpkt (&rs->buf, 0);
9987 if (strcmp (rs->buf.data (), "OK") != 0)
0a2dde4a
SDJ
9988 warning (_("Unable to reset environment on remote."));
9989 }
9990
9991 gdb_environ *e = &current_inferior ()->environment;
9992
9993 if (packet_support (PACKET_QEnvironmentHexEncoded) != PACKET_DISABLE)
9994 for (const std::string &el : e->user_set_env ())
6b8edb51 9995 send_environment_packet ("set", "QEnvironmentHexEncoded",
0a2dde4a
SDJ
9996 el.c_str ());
9997
9998 if (packet_support (PACKET_QEnvironmentUnset) != PACKET_DISABLE)
9999 for (const std::string &el : e->user_unset_env ())
6b8edb51 10000 send_environment_packet ("unset", "QEnvironmentUnset", el.c_str ());
0a2dde4a
SDJ
10001}
10002
bc3b087d
SDJ
10003/* Helper function to set the current working directory for the
10004 inferior in the remote target. */
10005
6b8edb51
PA
10006void
10007remote_target::extended_remote_set_inferior_cwd ()
bc3b087d
SDJ
10008{
10009 if (packet_support (PACKET_QSetWorkingDir) != PACKET_DISABLE)
10010 {
10011 const char *inferior_cwd = get_inferior_cwd ();
6b8edb51 10012 remote_state *rs = get_remote_state ();
bc3b087d
SDJ
10013
10014 if (inferior_cwd != NULL)
10015 {
10016 std::string hexpath = bin2hex ((const gdb_byte *) inferior_cwd,
10017 strlen (inferior_cwd));
10018
8d64371b 10019 xsnprintf (rs->buf.data (), get_remote_packet_size (),
bc3b087d
SDJ
10020 "QSetWorkingDir:%s", hexpath.c_str ());
10021 }
10022 else
10023 {
10024 /* An empty inferior_cwd means that the user wants us to
10025 reset the remote server's inferior's cwd. */
8d64371b 10026 xsnprintf (rs->buf.data (), get_remote_packet_size (),
bc3b087d
SDJ
10027 "QSetWorkingDir:");
10028 }
10029
10030 putpkt (rs->buf);
8d64371b 10031 getpkt (&rs->buf, 0);
bc3b087d
SDJ
10032 if (packet_ok (rs->buf,
10033 &remote_protocol_packets[PACKET_QSetWorkingDir])
10034 != PACKET_OK)
10035 error (_("\
10036Remote replied unexpectedly while setting the inferior's working\n\
10037directory: %s"),
8d64371b 10038 rs->buf.data ());
bc3b087d
SDJ
10039
10040 }
10041}
10042
2d717e4f
DJ
10043/* In the extended protocol we want to be able to do things like
10044 "run" and have them basically work as expected. So we need
10045 a special create_inferior function. We support changing the
10046 executable file and the command line arguments, but not the
10047 environment. */
10048
f6ac5f3d
PA
10049void
10050extended_remote_target::create_inferior (const char *exec_file,
10051 const std::string &args,
10052 char **env, int from_tty)
43ff13b4 10053{
3405876a
PA
10054 int run_worked;
10055 char *stop_reply;
10056 struct remote_state *rs = get_remote_state ();
94585166 10057 const char *remote_exec_file = get_remote_exec_file ();
3405876a 10058
43ff13b4 10059 /* If running asynchronously, register the target file descriptor
23860348 10060 with the event loop. */
75c99385 10061 if (target_can_async_p ())
6a3753b3 10062 target_async (1);
43ff13b4 10063
03583c20 10064 /* Disable address space randomization if requested (and supported). */
f6ac5f3d 10065 if (supports_disable_randomization ())
03583c20
UW
10066 extended_remote_disable_randomization (disable_randomization);
10067
aefd8b33
SDJ
10068 /* If startup-with-shell is on, we inform gdbserver to start the
10069 remote inferior using a shell. */
10070 if (packet_support (PACKET_QStartupWithShell) != PACKET_DISABLE)
10071 {
8d64371b 10072 xsnprintf (rs->buf.data (), get_remote_packet_size (),
aefd8b33
SDJ
10073 "QStartupWithShell:%d", startup_with_shell ? 1 : 0);
10074 putpkt (rs->buf);
8d64371b
TT
10075 getpkt (&rs->buf, 0);
10076 if (strcmp (rs->buf.data (), "OK") != 0)
aefd8b33
SDJ
10077 error (_("\
10078Remote replied unexpectedly while setting startup-with-shell: %s"),
8d64371b 10079 rs->buf.data ());
aefd8b33
SDJ
10080 }
10081
6b8edb51 10082 extended_remote_environment_support ();
0a2dde4a 10083
6b8edb51 10084 extended_remote_set_inferior_cwd ();
bc3b087d 10085
43ff13b4 10086 /* Now restart the remote server. */
3405876a
PA
10087 run_worked = extended_remote_run (args) != -1;
10088 if (!run_worked)
2d717e4f
DJ
10089 {
10090 /* vRun was not supported. Fail if we need it to do what the
10091 user requested. */
10092 if (remote_exec_file[0])
10093 error (_("Remote target does not support \"set remote exec-file\""));
7c5ded6a 10094 if (!args.empty ())
65e65158 10095 error (_("Remote target does not support \"set args\" or run ARGS"));
43ff13b4 10096
2d717e4f
DJ
10097 /* Fall back to "R". */
10098 extended_remote_restart ();
10099 }
424163ea 10100
3405876a 10101 /* vRun's success return is a stop reply. */
8d64371b 10102 stop_reply = run_worked ? rs->buf.data () : NULL;
3405876a 10103 add_current_inferior_and_thread (stop_reply);
c0a2216e 10104
2d717e4f
DJ
10105 /* Get updated offsets, if the stub uses qOffsets. */
10106 get_offsets ();
2d717e4f 10107}
c906108c 10108\f
c5aa993b 10109
b775012e
LM
10110/* Given a location's target info BP_TGT and the packet buffer BUF, output
10111 the list of conditions (in agent expression bytecode format), if any, the
10112 target needs to evaluate. The output is placed into the packet buffer
bba74b36 10113 started from BUF and ended at BUF_END. */
b775012e
LM
10114
10115static int
10116remote_add_target_side_condition (struct gdbarch *gdbarch,
bba74b36
YQ
10117 struct bp_target_info *bp_tgt, char *buf,
10118 char *buf_end)
b775012e 10119{
3cde5c42 10120 if (bp_tgt->conditions.empty ())
b775012e
LM
10121 return 0;
10122
10123 buf += strlen (buf);
bba74b36 10124 xsnprintf (buf, buf_end - buf, "%s", ";");
b775012e
LM
10125 buf++;
10126
83621223 10127 /* Send conditions to the target. */
d538e36d 10128 for (agent_expr *aexpr : bp_tgt->conditions)
b775012e 10129 {
bba74b36 10130 xsnprintf (buf, buf_end - buf, "X%x,", aexpr->len);
b775012e 10131 buf += strlen (buf);
3cde5c42 10132 for (int i = 0; i < aexpr->len; ++i)
b775012e
LM
10133 buf = pack_hex_byte (buf, aexpr->buf[i]);
10134 *buf = '\0';
10135 }
b775012e
LM
10136 return 0;
10137}
10138
d3ce09f5
SS
10139static void
10140remote_add_target_side_commands (struct gdbarch *gdbarch,
10141 struct bp_target_info *bp_tgt, char *buf)
10142{
3cde5c42 10143 if (bp_tgt->tcommands.empty ())
d3ce09f5
SS
10144 return;
10145
10146 buf += strlen (buf);
10147
10148 sprintf (buf, ";cmds:%x,", bp_tgt->persist);
10149 buf += strlen (buf);
10150
10151 /* Concatenate all the agent expressions that are commands into the
10152 cmds parameter. */
df97be55 10153 for (agent_expr *aexpr : bp_tgt->tcommands)
d3ce09f5
SS
10154 {
10155 sprintf (buf, "X%x,", aexpr->len);
10156 buf += strlen (buf);
3cde5c42 10157 for (int i = 0; i < aexpr->len; ++i)
d3ce09f5
SS
10158 buf = pack_hex_byte (buf, aexpr->buf[i]);
10159 *buf = '\0';
10160 }
d3ce09f5
SS
10161}
10162
8181d85f
DJ
10163/* Insert a breakpoint. On targets that have software breakpoint
10164 support, we ask the remote target to do the work; on targets
10165 which don't, we insert a traditional memory breakpoint. */
c906108c 10166
f6ac5f3d
PA
10167int
10168remote_target::insert_breakpoint (struct gdbarch *gdbarch,
10169 struct bp_target_info *bp_tgt)
c906108c 10170{
d471ea57
AC
10171 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
10172 If it succeeds, then set the support to PACKET_ENABLE. If it
10173 fails, and the user has explicitly requested the Z support then
23860348 10174 report an error, otherwise, mark it disabled and go on. */
802188a7 10175
4082afcc 10176 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 10177 {
0d5ed153 10178 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 10179 struct remote_state *rs;
bba74b36 10180 char *p, *endbuf;
4fff2411 10181
28439a30
PA
10182 /* Make sure the remote is pointing at the right process, if
10183 necessary. */
10184 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10185 set_general_process ();
10186
4fff2411 10187 rs = get_remote_state ();
8d64371b
TT
10188 p = rs->buf.data ();
10189 endbuf = p + get_remote_packet_size ();
802188a7 10190
96baa820
JM
10191 *(p++) = 'Z';
10192 *(p++) = '0';
10193 *(p++) = ',';
7c0f6dcc 10194 addr = (ULONGEST) remote_address_masked (addr);
8181d85f 10195 p += hexnumstr (p, addr);
579c6ad9 10196 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
802188a7 10197
f6ac5f3d 10198 if (supports_evaluation_of_breakpoint_conditions ())
bba74b36 10199 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 10200
f6ac5f3d 10201 if (can_run_breakpoint_commands ())
d3ce09f5
SS
10202 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10203
6d820c5c 10204 putpkt (rs->buf);
8d64371b 10205 getpkt (&rs->buf, 0);
96baa820 10206
6d820c5c 10207 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
96baa820 10208 {
d471ea57
AC
10209 case PACKET_ERROR:
10210 return -1;
10211 case PACKET_OK:
10212 return 0;
10213 case PACKET_UNKNOWN:
10214 break;
96baa820
JM
10215 }
10216 }
c906108c 10217
0000e5cc
PA
10218 /* If this breakpoint has target-side commands but this stub doesn't
10219 support Z0 packets, throw error. */
3cde5c42 10220 if (!bp_tgt->tcommands.empty ())
0000e5cc
PA
10221 throw_error (NOT_SUPPORTED_ERROR, _("\
10222Target doesn't support breakpoints that have target side commands."));
10223
f6ac5f3d 10224 return memory_insert_breakpoint (this, gdbarch, bp_tgt);
c906108c
SS
10225}
10226
f6ac5f3d
PA
10227int
10228remote_target::remove_breakpoint (struct gdbarch *gdbarch,
10229 struct bp_target_info *bp_tgt,
10230 enum remove_bp_reason reason)
c906108c 10231{
8181d85f 10232 CORE_ADDR addr = bp_tgt->placed_address;
d01949b6 10233 struct remote_state *rs = get_remote_state ();
96baa820 10234
4082afcc 10235 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 10236 {
8d64371b
TT
10237 char *p = rs->buf.data ();
10238 char *endbuf = p + get_remote_packet_size ();
802188a7 10239
28439a30
PA
10240 /* Make sure the remote is pointing at the right process, if
10241 necessary. */
10242 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10243 set_general_process ();
10244
96baa820
JM
10245 *(p++) = 'z';
10246 *(p++) = '0';
10247 *(p++) = ',';
10248
8181d85f
DJ
10249 addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
10250 p += hexnumstr (p, addr);
579c6ad9 10251 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
802188a7 10252
6d820c5c 10253 putpkt (rs->buf);
8d64371b 10254 getpkt (&rs->buf, 0);
96baa820 10255
6d820c5c 10256 return (rs->buf[0] == 'E');
96baa820
JM
10257 }
10258
f6ac5f3d 10259 return memory_remove_breakpoint (this, gdbarch, bp_tgt, reason);
c906108c
SS
10260}
10261
f486487f 10262static enum Z_packet_type
d471ea57
AC
10263watchpoint_to_Z_packet (int type)
10264{
10265 switch (type)
10266 {
10267 case hw_write:
bb858e6a 10268 return Z_PACKET_WRITE_WP;
d471ea57
AC
10269 break;
10270 case hw_read:
bb858e6a 10271 return Z_PACKET_READ_WP;
d471ea57
AC
10272 break;
10273 case hw_access:
bb858e6a 10274 return Z_PACKET_ACCESS_WP;
d471ea57
AC
10275 break;
10276 default:
8e65ff28 10277 internal_error (__FILE__, __LINE__,
e2e0b3e5 10278 _("hw_bp_to_z: bad watchpoint type %d"), type);
d471ea57
AC
10279 }
10280}
10281
f6ac5f3d
PA
10282int
10283remote_target::insert_watchpoint (CORE_ADDR addr, int len,
10284 enum target_hw_bp_type type, struct expression *cond)
96baa820 10285{
d01949b6 10286 struct remote_state *rs = get_remote_state ();
8d64371b 10287 char *endbuf = rs->buf.data () + get_remote_packet_size ();
e514a9d6 10288 char *p;
d471ea57 10289 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
96baa820 10290
4082afcc 10291 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
85d721b8 10292 return 1;
802188a7 10293
28439a30
PA
10294 /* Make sure the remote is pointing at the right process, if
10295 necessary. */
10296 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10297 set_general_process ();
10298
8d64371b
TT
10299 xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "Z%x,", packet);
10300 p = strchr (rs->buf.data (), '\0');
96baa820
JM
10301 addr = remote_address_masked (addr);
10302 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 10303 xsnprintf (p, endbuf - p, ",%x", len);
802188a7 10304
6d820c5c 10305 putpkt (rs->buf);
8d64371b 10306 getpkt (&rs->buf, 0);
96baa820 10307
6d820c5c 10308 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
10309 {
10310 case PACKET_ERROR:
d471ea57 10311 return -1;
85d721b8
PA
10312 case PACKET_UNKNOWN:
10313 return 1;
d471ea57
AC
10314 case PACKET_OK:
10315 return 0;
10316 }
8e65ff28 10317 internal_error (__FILE__, __LINE__,
e2e0b3e5 10318 _("remote_insert_watchpoint: reached end of function"));
96baa820
JM
10319}
10320
57810aa7 10321bool
f6ac5f3d
PA
10322remote_target::watchpoint_addr_within_range (CORE_ADDR addr,
10323 CORE_ADDR start, int length)
283002cf
MR
10324{
10325 CORE_ADDR diff = remote_address_masked (addr - start);
10326
10327 return diff < length;
10328}
10329
d471ea57 10330
f6ac5f3d
PA
10331int
10332remote_target::remove_watchpoint (CORE_ADDR addr, int len,
10333 enum target_hw_bp_type type, struct expression *cond)
96baa820 10334{
d01949b6 10335 struct remote_state *rs = get_remote_state ();
8d64371b 10336 char *endbuf = rs->buf.data () + get_remote_packet_size ();
e514a9d6 10337 char *p;
d471ea57
AC
10338 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
10339
4082afcc 10340 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
5cffb350 10341 return -1;
802188a7 10342
28439a30
PA
10343 /* Make sure the remote is pointing at the right process, if
10344 necessary. */
10345 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10346 set_general_process ();
10347
8d64371b
TT
10348 xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "z%x,", packet);
10349 p = strchr (rs->buf.data (), '\0');
96baa820
JM
10350 addr = remote_address_masked (addr);
10351 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 10352 xsnprintf (p, endbuf - p, ",%x", len);
6d820c5c 10353 putpkt (rs->buf);
8d64371b 10354 getpkt (&rs->buf, 0);
96baa820 10355
6d820c5c 10356 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
10357 {
10358 case PACKET_ERROR:
10359 case PACKET_UNKNOWN:
10360 return -1;
10361 case PACKET_OK:
10362 return 0;
10363 }
8e65ff28 10364 internal_error (__FILE__, __LINE__,
e2e0b3e5 10365 _("remote_remove_watchpoint: reached end of function"));
96baa820
JM
10366}
10367
3c3bea1c 10368
60fcc1c3
TT
10369static int remote_hw_watchpoint_limit = -1;
10370static int remote_hw_watchpoint_length_limit = -1;
10371static int remote_hw_breakpoint_limit = -1;
d471ea57 10372
f6ac5f3d
PA
10373int
10374remote_target::region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
480a3f21
PW
10375{
10376 if (remote_hw_watchpoint_length_limit == 0)
10377 return 0;
10378 else if (remote_hw_watchpoint_length_limit < 0)
10379 return 1;
10380 else if (len <= remote_hw_watchpoint_length_limit)
10381 return 1;
10382 else
10383 return 0;
10384}
10385
f6ac5f3d
PA
10386int
10387remote_target::can_use_hw_breakpoint (enum bptype type, int cnt, int ot)
96baa820 10388{
3c3bea1c
GS
10389 if (type == bp_hardware_breakpoint)
10390 {
10391 if (remote_hw_breakpoint_limit == 0)
10392 return 0;
501eef12
AC
10393 else if (remote_hw_breakpoint_limit < 0)
10394 return 1;
3c3bea1c
GS
10395 else if (cnt <= remote_hw_breakpoint_limit)
10396 return 1;
10397 }
10398 else
10399 {
10400 if (remote_hw_watchpoint_limit == 0)
10401 return 0;
501eef12
AC
10402 else if (remote_hw_watchpoint_limit < 0)
10403 return 1;
3c3bea1c
GS
10404 else if (ot)
10405 return -1;
10406 else if (cnt <= remote_hw_watchpoint_limit)
10407 return 1;
10408 }
10409 return -1;
10410}
10411
f7e6eed5
PA
10412/* The to_stopped_by_sw_breakpoint method of target remote. */
10413
57810aa7 10414bool
f6ac5f3d 10415remote_target::stopped_by_sw_breakpoint ()
f7e6eed5 10416{
799a2abe 10417 struct thread_info *thread = inferior_thread ();
f7e6eed5 10418
799a2abe 10419 return (thread->priv != NULL
7aabaf9d
SM
10420 && (get_remote_thread_info (thread)->stop_reason
10421 == TARGET_STOPPED_BY_SW_BREAKPOINT));
f7e6eed5
PA
10422}
10423
10424/* The to_supports_stopped_by_sw_breakpoint method of target
10425 remote. */
10426
57810aa7 10427bool
f6ac5f3d 10428remote_target::supports_stopped_by_sw_breakpoint ()
f7e6eed5 10429{
f7e6eed5
PA
10430 return (packet_support (PACKET_swbreak_feature) == PACKET_ENABLE);
10431}
10432
10433/* The to_stopped_by_hw_breakpoint method of target remote. */
10434
57810aa7 10435bool
f6ac5f3d 10436remote_target::stopped_by_hw_breakpoint ()
f7e6eed5 10437{
799a2abe 10438 struct thread_info *thread = inferior_thread ();
f7e6eed5 10439
799a2abe 10440 return (thread->priv != NULL
7aabaf9d
SM
10441 && (get_remote_thread_info (thread)->stop_reason
10442 == TARGET_STOPPED_BY_HW_BREAKPOINT));
f7e6eed5
PA
10443}
10444
10445/* The to_supports_stopped_by_hw_breakpoint method of target
10446 remote. */
10447
57810aa7 10448bool
f6ac5f3d 10449remote_target::supports_stopped_by_hw_breakpoint ()
f7e6eed5 10450{
f7e6eed5
PA
10451 return (packet_support (PACKET_hwbreak_feature) == PACKET_ENABLE);
10452}
10453
57810aa7 10454bool
f6ac5f3d 10455remote_target::stopped_by_watchpoint ()
3c3bea1c 10456{
799a2abe 10457 struct thread_info *thread = inferior_thread ();
ee154bee 10458
799a2abe 10459 return (thread->priv != NULL
7aabaf9d
SM
10460 && (get_remote_thread_info (thread)->stop_reason
10461 == TARGET_STOPPED_BY_WATCHPOINT));
3c3bea1c
GS
10462}
10463
57810aa7 10464bool
f6ac5f3d 10465remote_target::stopped_data_address (CORE_ADDR *addr_p)
3c3bea1c 10466{
799a2abe 10467 struct thread_info *thread = inferior_thread ();
a744cf53 10468
799a2abe 10469 if (thread->priv != NULL
7aabaf9d
SM
10470 && (get_remote_thread_info (thread)->stop_reason
10471 == TARGET_STOPPED_BY_WATCHPOINT))
4aa7a7f5 10472 {
7aabaf9d 10473 *addr_p = get_remote_thread_info (thread)->watch_data_address;
57810aa7 10474 return true;
4aa7a7f5
JJ
10475 }
10476
57810aa7 10477 return false;
3c3bea1c
GS
10478}
10479
10480
f6ac5f3d
PA
10481int
10482remote_target::insert_hw_breakpoint (struct gdbarch *gdbarch,
10483 struct bp_target_info *bp_tgt)
3c3bea1c 10484{
0d5ed153 10485 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 10486 struct remote_state *rs;
bba74b36 10487 char *p, *endbuf;
dd61ec5c 10488 char *message;
3c3bea1c 10489
4082afcc 10490 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 10491 return -1;
2bc416ba 10492
28439a30
PA
10493 /* Make sure the remote is pointing at the right process, if
10494 necessary. */
10495 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10496 set_general_process ();
10497
4fff2411 10498 rs = get_remote_state ();
8d64371b
TT
10499 p = rs->buf.data ();
10500 endbuf = p + get_remote_packet_size ();
4fff2411 10501
96baa820
JM
10502 *(p++) = 'Z';
10503 *(p++) = '1';
10504 *(p++) = ',';
802188a7 10505
0d5ed153 10506 addr = remote_address_masked (addr);
96baa820 10507 p += hexnumstr (p, (ULONGEST) addr);
579c6ad9 10508 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
96baa820 10509
f6ac5f3d 10510 if (supports_evaluation_of_breakpoint_conditions ())
bba74b36 10511 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 10512
f6ac5f3d 10513 if (can_run_breakpoint_commands ())
d3ce09f5
SS
10514 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10515
6d820c5c 10516 putpkt (rs->buf);
8d64371b 10517 getpkt (&rs->buf, 0);
96baa820 10518
6d820c5c 10519 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
10520 {
10521 case PACKET_ERROR:
dd61ec5c
MW
10522 if (rs->buf[1] == '.')
10523 {
8d64371b 10524 message = strchr (&rs->buf[2], '.');
dd61ec5c 10525 if (message)
0316657e 10526 error (_("Remote failure reply: %s"), message + 1);
dd61ec5c
MW
10527 }
10528 return -1;
d471ea57
AC
10529 case PACKET_UNKNOWN:
10530 return -1;
10531 case PACKET_OK:
10532 return 0;
10533 }
8e65ff28 10534 internal_error (__FILE__, __LINE__,
e2e0b3e5 10535 _("remote_insert_hw_breakpoint: reached end of function"));
96baa820
JM
10536}
10537
d471ea57 10538
f6ac5f3d
PA
10539int
10540remote_target::remove_hw_breakpoint (struct gdbarch *gdbarch,
10541 struct bp_target_info *bp_tgt)
96baa820 10542{
8181d85f 10543 CORE_ADDR addr;
d01949b6 10544 struct remote_state *rs = get_remote_state ();
8d64371b
TT
10545 char *p = rs->buf.data ();
10546 char *endbuf = p + get_remote_packet_size ();
c8189ed1 10547
4082afcc 10548 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 10549 return -1;
802188a7 10550
28439a30
PA
10551 /* Make sure the remote is pointing at the right process, if
10552 necessary. */
10553 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10554 set_general_process ();
10555
96baa820
JM
10556 *(p++) = 'z';
10557 *(p++) = '1';
10558 *(p++) = ',';
802188a7 10559
8181d85f 10560 addr = remote_address_masked (bp_tgt->placed_address);
96baa820 10561 p += hexnumstr (p, (ULONGEST) addr);
579c6ad9 10562 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
96baa820 10563
6d820c5c 10564 putpkt (rs->buf);
8d64371b 10565 getpkt (&rs->buf, 0);
802188a7 10566
6d820c5c 10567 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
10568 {
10569 case PACKET_ERROR:
10570 case PACKET_UNKNOWN:
10571 return -1;
10572 case PACKET_OK:
10573 return 0;
10574 }
8e65ff28 10575 internal_error (__FILE__, __LINE__,
e2e0b3e5 10576 _("remote_remove_hw_breakpoint: reached end of function"));
96baa820 10577}
96baa820 10578
4a5e7a5b
PA
10579/* Verify memory using the "qCRC:" request. */
10580
f6ac5f3d
PA
10581int
10582remote_target::verify_memory (const gdb_byte *data, CORE_ADDR lma, ULONGEST size)
4a5e7a5b
PA
10583{
10584 struct remote_state *rs = get_remote_state ();
10585 unsigned long host_crc, target_crc;
10586 char *tmp;
10587
936d2992
PA
10588 /* It doesn't make sense to use qCRC if the remote target is
10589 connected but not running. */
10590 if (target_has_execution && packet_support (PACKET_qCRC) != PACKET_DISABLE)
10591 {
10592 enum packet_result result;
28439a30 10593
936d2992
PA
10594 /* Make sure the remote is pointing at the right process. */
10595 set_general_process ();
4a5e7a5b 10596
936d2992 10597 /* FIXME: assumes lma can fit into long. */
8d64371b 10598 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qCRC:%lx,%lx",
936d2992
PA
10599 (long) lma, (long) size);
10600 putpkt (rs->buf);
4a5e7a5b 10601
936d2992
PA
10602 /* Be clever; compute the host_crc before waiting for target
10603 reply. */
10604 host_crc = xcrc32 (data, size, 0xffffffff);
10605
8d64371b 10606 getpkt (&rs->buf, 0);
4a5e7a5b 10607
936d2992
PA
10608 result = packet_ok (rs->buf,
10609 &remote_protocol_packets[PACKET_qCRC]);
10610 if (result == PACKET_ERROR)
10611 return -1;
10612 else if (result == PACKET_OK)
10613 {
10614 for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
10615 target_crc = target_crc * 16 + fromhex (*tmp);
4a5e7a5b 10616
936d2992
PA
10617 return (host_crc == target_crc);
10618 }
10619 }
4a5e7a5b 10620
f6ac5f3d 10621 return simple_verify_memory (this, data, lma, size);
4a5e7a5b
PA
10622}
10623
c906108c
SS
10624/* compare-sections command
10625
10626 With no arguments, compares each loadable section in the exec bfd
10627 with the same memory range on the target, and reports mismatches.
4a5e7a5b 10628 Useful for verifying the image on the target against the exec file. */
e514a9d6 10629
c906108c 10630static void
ac88e2de 10631compare_sections_command (const char *args, int from_tty)
c906108c
SS
10632{
10633 asection *s;
ce359b09 10634 const char *sectname;
c906108c
SS
10635 bfd_size_type size;
10636 bfd_vma lma;
10637 int matched = 0;
10638 int mismatched = 0;
4a5e7a5b 10639 int res;
95cf3b38 10640 int read_only = 0;
c906108c
SS
10641
10642 if (!exec_bfd)
8a3fe4f8 10643 error (_("command cannot be used without an exec file"));
c906108c 10644
95cf3b38
DT
10645 if (args != NULL && strcmp (args, "-r") == 0)
10646 {
10647 read_only = 1;
10648 args = NULL;
10649 }
10650
c5aa993b 10651 for (s = exec_bfd->sections; s; s = s->next)
c906108c
SS
10652 {
10653 if (!(s->flags & SEC_LOAD))
0df8b418 10654 continue; /* Skip non-loadable section. */
c906108c 10655
95cf3b38
DT
10656 if (read_only && (s->flags & SEC_READONLY) == 0)
10657 continue; /* Skip writeable sections */
10658
2c500098 10659 size = bfd_get_section_size (s);
c906108c 10660 if (size == 0)
0df8b418 10661 continue; /* Skip zero-length section. */
c906108c 10662
ce359b09 10663 sectname = bfd_get_section_name (exec_bfd, s);
c906108c 10664 if (args && strcmp (args, sectname) != 0)
0df8b418 10665 continue; /* Not the section selected by user. */
c906108c 10666
0df8b418 10667 matched = 1; /* Do this section. */
c906108c 10668 lma = s->lma;
c906108c 10669
b80406ac
TT
10670 gdb::byte_vector sectdata (size);
10671 bfd_get_section_contents (exec_bfd, s, sectdata.data (), 0, size);
c906108c 10672
b80406ac 10673 res = target_verify_memory (sectdata.data (), lma, size);
4a5e7a5b
PA
10674
10675 if (res == -1)
5af949e3 10676 error (_("target memory fault, section %s, range %s -- %s"), sectname,
f5656ead
TT
10677 paddress (target_gdbarch (), lma),
10678 paddress (target_gdbarch (), lma + size));
c906108c 10679
5af949e3 10680 printf_filtered ("Section %s, range %s -- %s: ", sectname,
f5656ead
TT
10681 paddress (target_gdbarch (), lma),
10682 paddress (target_gdbarch (), lma + size));
4a5e7a5b 10683 if (res)
c906108c
SS
10684 printf_filtered ("matched.\n");
10685 else
c5aa993b
JM
10686 {
10687 printf_filtered ("MIS-MATCHED!\n");
10688 mismatched++;
10689 }
c906108c
SS
10690 }
10691 if (mismatched > 0)
936d2992 10692 warning (_("One or more sections of the target image does not match\n\
8a3fe4f8 10693the loaded file\n"));
c906108c 10694 if (args && !matched)
a3f17187 10695 printf_filtered (_("No loaded section named '%s'.\n"), args);
c906108c
SS
10696}
10697
0e7f50da
UW
10698/* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
10699 into remote target. The number of bytes written to the remote
10700 target is returned, or -1 for error. */
10701
6b8edb51
PA
10702target_xfer_status
10703remote_target::remote_write_qxfer (const char *object_name,
10704 const char *annex, const gdb_byte *writebuf,
10705 ULONGEST offset, LONGEST len,
10706 ULONGEST *xfered_len,
10707 struct packet_config *packet)
0e7f50da
UW
10708{
10709 int i, buf_len;
10710 ULONGEST n;
0e7f50da
UW
10711 struct remote_state *rs = get_remote_state ();
10712 int max_size = get_memory_write_packet_size ();
10713
7cc244de 10714 if (packet_config_support (packet) == PACKET_DISABLE)
2ed4b548 10715 return TARGET_XFER_E_IO;
0e7f50da
UW
10716
10717 /* Insert header. */
8d64371b 10718 i = snprintf (rs->buf.data (), max_size,
0e7f50da
UW
10719 "qXfer:%s:write:%s:%s:",
10720 object_name, annex ? annex : "",
10721 phex_nz (offset, sizeof offset));
10722 max_size -= (i + 1);
10723
10724 /* Escape as much data as fits into rs->buf. */
10725 buf_len = remote_escape_output
8d64371b 10726 (writebuf, len, 1, (gdb_byte *) rs->buf.data () + i, &max_size, max_size);
0e7f50da 10727
8d64371b
TT
10728 if (putpkt_binary (rs->buf.data (), i + buf_len) < 0
10729 || getpkt_sane (&rs->buf, 0) < 0
0e7f50da 10730 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 10731 return TARGET_XFER_E_IO;
0e7f50da 10732
8d64371b 10733 unpack_varlen_hex (rs->buf.data (), &n);
9b409511
YQ
10734
10735 *xfered_len = n;
92ffd475 10736 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
0e7f50da
UW
10737}
10738
0876f84a
DJ
10739/* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
10740 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
10741 number of bytes read is returned, or 0 for EOF, or -1 for error.
10742 The number of bytes read may be less than LEN without indicating an
10743 EOF. PACKET is checked and updated to indicate whether the remote
10744 target supports this object. */
10745
6b8edb51
PA
10746target_xfer_status
10747remote_target::remote_read_qxfer (const char *object_name,
10748 const char *annex,
10749 gdb_byte *readbuf, ULONGEST offset,
10750 LONGEST len,
10751 ULONGEST *xfered_len,
10752 struct packet_config *packet)
0876f84a 10753{
0876f84a 10754 struct remote_state *rs = get_remote_state ();
0876f84a
DJ
10755 LONGEST i, n, packet_len;
10756
7cc244de 10757 if (packet_config_support (packet) == PACKET_DISABLE)
2ed4b548 10758 return TARGET_XFER_E_IO;
0876f84a
DJ
10759
10760 /* Check whether we've cached an end-of-object packet that matches
10761 this request. */
8e88304f 10762 if (rs->finished_object)
0876f84a 10763 {
8e88304f
TT
10764 if (strcmp (object_name, rs->finished_object) == 0
10765 && strcmp (annex ? annex : "", rs->finished_annex) == 0
10766 && offset == rs->finished_offset)
9b409511
YQ
10767 return TARGET_XFER_EOF;
10768
0876f84a
DJ
10769
10770 /* Otherwise, we're now reading something different. Discard
10771 the cache. */
8e88304f
TT
10772 xfree (rs->finished_object);
10773 xfree (rs->finished_annex);
10774 rs->finished_object = NULL;
10775 rs->finished_annex = NULL;
0876f84a
DJ
10776 }
10777
10778 /* Request only enough to fit in a single packet. The actual data
10779 may not, since we don't know how much of it will need to be escaped;
10780 the target is free to respond with slightly less data. We subtract
10781 five to account for the response type and the protocol frame. */
768adc05 10782 n = std::min<LONGEST> (get_remote_packet_size () - 5, len);
8d64371b
TT
10783 snprintf (rs->buf.data (), get_remote_packet_size () - 4,
10784 "qXfer:%s:read:%s:%s,%s",
0876f84a
DJ
10785 object_name, annex ? annex : "",
10786 phex_nz (offset, sizeof offset),
10787 phex_nz (n, sizeof n));
10788 i = putpkt (rs->buf);
10789 if (i < 0)
2ed4b548 10790 return TARGET_XFER_E_IO;
0876f84a
DJ
10791
10792 rs->buf[0] = '\0';
8d64371b 10793 packet_len = getpkt_sane (&rs->buf, 0);
0876f84a 10794 if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 10795 return TARGET_XFER_E_IO;
0876f84a
DJ
10796
10797 if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
8d64371b 10798 error (_("Unknown remote qXfer reply: %s"), rs->buf.data ());
0876f84a
DJ
10799
10800 /* 'm' means there is (or at least might be) more data after this
10801 batch. That does not make sense unless there's at least one byte
10802 of data in this reply. */
10803 if (rs->buf[0] == 'm' && packet_len == 1)
10804 error (_("Remote qXfer reply contained no data."));
10805
10806 /* Got some data. */
8d64371b 10807 i = remote_unescape_input ((gdb_byte *) rs->buf.data () + 1,
bc20a4af 10808 packet_len - 1, readbuf, n);
0876f84a
DJ
10809
10810 /* 'l' is an EOF marker, possibly including a final block of data,
0e7f50da
UW
10811 or possibly empty. If we have the final block of a non-empty
10812 object, record this fact to bypass a subsequent partial read. */
10813 if (rs->buf[0] == 'l' && offset + i > 0)
0876f84a 10814 {
8e88304f
TT
10815 rs->finished_object = xstrdup (object_name);
10816 rs->finished_annex = xstrdup (annex ? annex : "");
10817 rs->finished_offset = offset + i;
0876f84a
DJ
10818 }
10819
9b409511
YQ
10820 if (i == 0)
10821 return TARGET_XFER_EOF;
10822 else
10823 {
10824 *xfered_len = i;
10825 return TARGET_XFER_OK;
10826 }
0876f84a
DJ
10827}
10828
f6ac5f3d
PA
10829enum target_xfer_status
10830remote_target::xfer_partial (enum target_object object,
10831 const char *annex, gdb_byte *readbuf,
10832 const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
10833 ULONGEST *xfered_len)
c906108c 10834{
82f73884 10835 struct remote_state *rs;
c906108c 10836 int i;
6d820c5c 10837 char *p2;
1e3ff5ad 10838 char query_type;
124e13d9 10839 int unit_size = gdbarch_addressable_memory_unit_size (target_gdbarch ());
c906108c 10840
e6e4e701 10841 set_remote_traceframe ();
82f73884
PA
10842 set_general_thread (inferior_ptid);
10843
10844 rs = get_remote_state ();
10845
b2182ed2 10846 /* Handle memory using the standard memory routines. */
21e3b9b9
DJ
10847 if (object == TARGET_OBJECT_MEMORY)
10848 {
2d717e4f
DJ
10849 /* If the remote target is connected but not running, we should
10850 pass this request down to a lower stratum (e.g. the executable
10851 file). */
10852 if (!target_has_execution)
9b409511 10853 return TARGET_XFER_EOF;
2d717e4f 10854
21e3b9b9 10855 if (writebuf != NULL)
124e13d9
SM
10856 return remote_write_bytes (offset, writebuf, len, unit_size,
10857 xfered_len);
21e3b9b9 10858 else
6b8edb51 10859 return remote_read_bytes (offset, readbuf, len, unit_size,
124e13d9 10860 xfered_len);
21e3b9b9
DJ
10861 }
10862
0df8b418 10863 /* Handle SPU memory using qxfer packets. */
0e7f50da
UW
10864 if (object == TARGET_OBJECT_SPU)
10865 {
10866 if (readbuf)
f6ac5f3d 10867 return remote_read_qxfer ("spu", annex, readbuf, offset, len,
9b409511
YQ
10868 xfered_len, &remote_protocol_packets
10869 [PACKET_qXfer_spu_read]);
0e7f50da 10870 else
f6ac5f3d 10871 return remote_write_qxfer ("spu", annex, writebuf, offset, len,
9b409511
YQ
10872 xfered_len, &remote_protocol_packets
10873 [PACKET_qXfer_spu_write]);
0e7f50da
UW
10874 }
10875
4aa995e1
PA
10876 /* Handle extra signal info using qxfer packets. */
10877 if (object == TARGET_OBJECT_SIGNAL_INFO)
10878 {
10879 if (readbuf)
f6ac5f3d 10880 return remote_read_qxfer ("siginfo", annex, readbuf, offset, len,
9b409511 10881 xfered_len, &remote_protocol_packets
4aa995e1
PA
10882 [PACKET_qXfer_siginfo_read]);
10883 else
f6ac5f3d 10884 return remote_write_qxfer ("siginfo", annex,
9b409511 10885 writebuf, offset, len, xfered_len,
4aa995e1
PA
10886 &remote_protocol_packets
10887 [PACKET_qXfer_siginfo_write]);
10888 }
10889
0fb4aa4b
PA
10890 if (object == TARGET_OBJECT_STATIC_TRACE_DATA)
10891 {
10892 if (readbuf)
f6ac5f3d 10893 return remote_read_qxfer ("statictrace", annex,
9b409511 10894 readbuf, offset, len, xfered_len,
0fb4aa4b
PA
10895 &remote_protocol_packets
10896 [PACKET_qXfer_statictrace_read]);
10897 else
2ed4b548 10898 return TARGET_XFER_E_IO;
0fb4aa4b
PA
10899 }
10900
a76d924d
DJ
10901 /* Only handle flash writes. */
10902 if (writebuf != NULL)
10903 {
a76d924d
DJ
10904 switch (object)
10905 {
10906 case TARGET_OBJECT_FLASH:
6b8edb51 10907 return remote_flash_write (offset, len, xfered_len,
9b409511 10908 writebuf);
a76d924d
DJ
10909
10910 default:
2ed4b548 10911 return TARGET_XFER_E_IO;
a76d924d
DJ
10912 }
10913 }
4b8a223f 10914
1e3ff5ad
AC
10915 /* Map pre-existing objects onto letters. DO NOT do this for new
10916 objects!!! Instead specify new query packets. */
10917 switch (object)
c906108c 10918 {
1e3ff5ad
AC
10919 case TARGET_OBJECT_AVR:
10920 query_type = 'R';
10921 break;
802188a7
RM
10922
10923 case TARGET_OBJECT_AUXV:
0876f84a 10924 gdb_assert (annex == NULL);
f6ac5f3d 10925 return remote_read_qxfer ("auxv", annex, readbuf, offset, len,
9b409511 10926 xfered_len,
0876f84a 10927 &remote_protocol_packets[PACKET_qXfer_auxv]);
802188a7 10928
23181151
DJ
10929 case TARGET_OBJECT_AVAILABLE_FEATURES:
10930 return remote_read_qxfer
f6ac5f3d 10931 ("features", annex, readbuf, offset, len, xfered_len,
23181151
DJ
10932 &remote_protocol_packets[PACKET_qXfer_features]);
10933
cfa9d6d9
DJ
10934 case TARGET_OBJECT_LIBRARIES:
10935 return remote_read_qxfer
f6ac5f3d 10936 ("libraries", annex, readbuf, offset, len, xfered_len,
cfa9d6d9
DJ
10937 &remote_protocol_packets[PACKET_qXfer_libraries]);
10938
2268b414
JK
10939 case TARGET_OBJECT_LIBRARIES_SVR4:
10940 return remote_read_qxfer
f6ac5f3d 10941 ("libraries-svr4", annex, readbuf, offset, len, xfered_len,
2268b414
JK
10942 &remote_protocol_packets[PACKET_qXfer_libraries_svr4]);
10943
fd79ecee
DJ
10944 case TARGET_OBJECT_MEMORY_MAP:
10945 gdb_assert (annex == NULL);
f6ac5f3d 10946 return remote_read_qxfer ("memory-map", annex, readbuf, offset, len,
9b409511 10947 xfered_len,
fd79ecee
DJ
10948 &remote_protocol_packets[PACKET_qXfer_memory_map]);
10949
07e059b5
VP
10950 case TARGET_OBJECT_OSDATA:
10951 /* Should only get here if we're connected. */
5d93a237 10952 gdb_assert (rs->remote_desc);
07e059b5 10953 return remote_read_qxfer
f6ac5f3d 10954 ("osdata", annex, readbuf, offset, len, xfered_len,
07e059b5
VP
10955 &remote_protocol_packets[PACKET_qXfer_osdata]);
10956
dc146f7c
VP
10957 case TARGET_OBJECT_THREADS:
10958 gdb_assert (annex == NULL);
f6ac5f3d 10959 return remote_read_qxfer ("threads", annex, readbuf, offset, len,
9b409511 10960 xfered_len,
dc146f7c
VP
10961 &remote_protocol_packets[PACKET_qXfer_threads]);
10962
b3b9301e
PA
10963 case TARGET_OBJECT_TRACEFRAME_INFO:
10964 gdb_assert (annex == NULL);
10965 return remote_read_qxfer
f6ac5f3d 10966 ("traceframe-info", annex, readbuf, offset, len, xfered_len,
b3b9301e 10967 &remote_protocol_packets[PACKET_qXfer_traceframe_info]);
78d85199
YQ
10968
10969 case TARGET_OBJECT_FDPIC:
f6ac5f3d 10970 return remote_read_qxfer ("fdpic", annex, readbuf, offset, len,
9b409511 10971 xfered_len,
78d85199 10972 &remote_protocol_packets[PACKET_qXfer_fdpic]);
169081d0
TG
10973
10974 case TARGET_OBJECT_OPENVMS_UIB:
f6ac5f3d 10975 return remote_read_qxfer ("uib", annex, readbuf, offset, len,
9b409511 10976 xfered_len,
169081d0
TG
10977 &remote_protocol_packets[PACKET_qXfer_uib]);
10978
9accd112 10979 case TARGET_OBJECT_BTRACE:
f6ac5f3d 10980 return remote_read_qxfer ("btrace", annex, readbuf, offset, len,
9b409511 10981 xfered_len,
9accd112
MM
10982 &remote_protocol_packets[PACKET_qXfer_btrace]);
10983
f4abbc16 10984 case TARGET_OBJECT_BTRACE_CONF:
f6ac5f3d 10985 return remote_read_qxfer ("btrace-conf", annex, readbuf, offset,
f4abbc16
MM
10986 len, xfered_len,
10987 &remote_protocol_packets[PACKET_qXfer_btrace_conf]);
10988
c78fa86a 10989 case TARGET_OBJECT_EXEC_FILE:
f6ac5f3d 10990 return remote_read_qxfer ("exec-file", annex, readbuf, offset,
c78fa86a
GB
10991 len, xfered_len,
10992 &remote_protocol_packets[PACKET_qXfer_exec_file]);
10993
1e3ff5ad 10994 default:
2ed4b548 10995 return TARGET_XFER_E_IO;
c906108c
SS
10996 }
10997
0df8b418 10998 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
24b06219 10999 large enough let the caller deal with it. */
ea9c271d 11000 if (len < get_remote_packet_size ())
2ed4b548 11001 return TARGET_XFER_E_IO;
ea9c271d 11002 len = get_remote_packet_size ();
1e3ff5ad 11003
23860348 11004 /* Except for querying the minimum buffer size, target must be open. */
5d93a237 11005 if (!rs->remote_desc)
8a3fe4f8 11006 error (_("remote query is only available after target open"));
c906108c 11007
1e3ff5ad 11008 gdb_assert (annex != NULL);
4b8a223f 11009 gdb_assert (readbuf != NULL);
c906108c 11010
8d64371b 11011 p2 = rs->buf.data ();
c906108c
SS
11012 *p2++ = 'q';
11013 *p2++ = query_type;
11014
23860348
MS
11015 /* We used one buffer char for the remote protocol q command and
11016 another for the query type. As the remote protocol encapsulation
11017 uses 4 chars plus one extra in case we are debugging
11018 (remote_debug), we have PBUFZIZ - 7 left to pack the query
11019 string. */
c906108c 11020 i = 0;
ea9c271d 11021 while (annex[i] && (i < (get_remote_packet_size () - 8)))
c906108c 11022 {
1e3ff5ad
AC
11023 /* Bad caller may have sent forbidden characters. */
11024 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
11025 *p2++ = annex[i];
c906108c
SS
11026 i++;
11027 }
1e3ff5ad
AC
11028 *p2 = '\0';
11029 gdb_assert (annex[i] == '\0');
c906108c 11030
6d820c5c 11031 i = putpkt (rs->buf);
c5aa993b 11032 if (i < 0)
2ed4b548 11033 return TARGET_XFER_E_IO;
c906108c 11034
8d64371b
TT
11035 getpkt (&rs->buf, 0);
11036 strcpy ((char *) readbuf, rs->buf.data ());
c906108c 11037
9b409511 11038 *xfered_len = strlen ((char *) readbuf);
92ffd475 11039 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
c906108c
SS
11040}
11041
09c98b44
DB
11042/* Implementation of to_get_memory_xfer_limit. */
11043
f6ac5f3d
PA
11044ULONGEST
11045remote_target::get_memory_xfer_limit ()
09c98b44
DB
11046{
11047 return get_memory_write_packet_size ();
11048}
11049
f6ac5f3d
PA
11050int
11051remote_target::search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
11052 const gdb_byte *pattern, ULONGEST pattern_len,
11053 CORE_ADDR *found_addrp)
08388c79 11054{
f5656ead 11055 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
08388c79
DE
11056 struct remote_state *rs = get_remote_state ();
11057 int max_size = get_memory_write_packet_size ();
11058 struct packet_config *packet =
11059 &remote_protocol_packets[PACKET_qSearch_memory];
0df8b418
MS
11060 /* Number of packet bytes used to encode the pattern;
11061 this could be more than PATTERN_LEN due to escape characters. */
08388c79 11062 int escaped_pattern_len;
0df8b418 11063 /* Amount of pattern that was encodable in the packet. */
08388c79
DE
11064 int used_pattern_len;
11065 int i;
11066 int found;
11067 ULONGEST found_addr;
11068
7cc244de
PA
11069 /* Don't go to the target if we don't have to. This is done before
11070 checking packet_config_support to avoid the possibility that a
11071 success for this edge case means the facility works in
11072 general. */
08388c79
DE
11073 if (pattern_len > search_space_len)
11074 return 0;
11075 if (pattern_len == 0)
11076 {
11077 *found_addrp = start_addr;
11078 return 1;
11079 }
11080
11081 /* If we already know the packet isn't supported, fall back to the simple
11082 way of searching memory. */
11083
4082afcc 11084 if (packet_config_support (packet) == PACKET_DISABLE)
08388c79
DE
11085 {
11086 /* Target doesn't provided special support, fall back and use the
11087 standard support (copy memory and do the search here). */
f6ac5f3d 11088 return simple_search_memory (this, start_addr, search_space_len,
08388c79
DE
11089 pattern, pattern_len, found_addrp);
11090 }
11091
28439a30
PA
11092 /* Make sure the remote is pointing at the right process. */
11093 set_general_process ();
11094
08388c79 11095 /* Insert header. */
8d64371b 11096 i = snprintf (rs->buf.data (), max_size,
08388c79 11097 "qSearch:memory:%s;%s;",
5af949e3 11098 phex_nz (start_addr, addr_size),
08388c79
DE
11099 phex_nz (search_space_len, sizeof (search_space_len)));
11100 max_size -= (i + 1);
11101
11102 /* Escape as much data as fits into rs->buf. */
11103 escaped_pattern_len =
8d64371b
TT
11104 remote_escape_output (pattern, pattern_len, 1,
11105 (gdb_byte *) rs->buf.data () + i,
08388c79
DE
11106 &used_pattern_len, max_size);
11107
11108 /* Bail if the pattern is too large. */
11109 if (used_pattern_len != pattern_len)
9b20d036 11110 error (_("Pattern is too large to transmit to remote target."));
08388c79 11111
8d64371b
TT
11112 if (putpkt_binary (rs->buf.data (), i + escaped_pattern_len) < 0
11113 || getpkt_sane (&rs->buf, 0) < 0
08388c79
DE
11114 || packet_ok (rs->buf, packet) != PACKET_OK)
11115 {
11116 /* The request may not have worked because the command is not
11117 supported. If so, fall back to the simple way. */
7cc244de 11118 if (packet_config_support (packet) == PACKET_DISABLE)
08388c79 11119 {
f6ac5f3d 11120 return simple_search_memory (this, start_addr, search_space_len,
08388c79
DE
11121 pattern, pattern_len, found_addrp);
11122 }
11123 return -1;
11124 }
11125
11126 if (rs->buf[0] == '0')
11127 found = 0;
11128 else if (rs->buf[0] == '1')
11129 {
11130 found = 1;
11131 if (rs->buf[1] != ',')
8d64371b
TT
11132 error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ());
11133 unpack_varlen_hex (&rs->buf[2], &found_addr);
08388c79
DE
11134 *found_addrp = found_addr;
11135 }
11136 else
8d64371b 11137 error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ());
08388c79
DE
11138
11139 return found;
11140}
11141
f6ac5f3d
PA
11142void
11143remote_target::rcmd (const char *command, struct ui_file *outbuf)
96baa820 11144{
d01949b6 11145 struct remote_state *rs = get_remote_state ();
8d64371b 11146 char *p = rs->buf.data ();
96baa820 11147
5d93a237 11148 if (!rs->remote_desc)
8a3fe4f8 11149 error (_("remote rcmd is only available after target open"));
96baa820 11150
23860348 11151 /* Send a NULL command across as an empty command. */
7be570e7
JM
11152 if (command == NULL)
11153 command = "";
11154
23860348 11155 /* The query prefix. */
8d64371b
TT
11156 strcpy (rs->buf.data (), "qRcmd,");
11157 p = strchr (rs->buf.data (), '\0');
96baa820 11158
8d64371b 11159 if ((strlen (rs->buf.data ()) + strlen (command) * 2 + 8/*misc*/)
3e43a32a 11160 > get_remote_packet_size ())
8a3fe4f8 11161 error (_("\"monitor\" command ``%s'' is too long."), command);
96baa820 11162
23860348 11163 /* Encode the actual command. */
a30bf1f1 11164 bin2hex ((const gdb_byte *) command, p, strlen (command));
96baa820 11165
6d820c5c 11166 if (putpkt (rs->buf) < 0)
8a3fe4f8 11167 error (_("Communication problem with target."));
96baa820
JM
11168
11169 /* get/display the response */
11170 while (1)
11171 {
2e9f7625
DJ
11172 char *buf;
11173
00bf0b85 11174 /* XXX - see also remote_get_noisy_reply(). */
5b37825d 11175 QUIT; /* Allow user to bail out with ^C. */
2e9f7625 11176 rs->buf[0] = '\0';
8d64371b 11177 if (getpkt_sane (&rs->buf, 0) == -1)
5b37825d
PW
11178 {
11179 /* Timeout. Continue to (try to) read responses.
11180 This is better than stopping with an error, assuming the stub
11181 is still executing the (long) monitor command.
11182 If needed, the user can interrupt gdb using C-c, obtaining
11183 an effect similar to stop on timeout. */
11184 continue;
11185 }
8d64371b 11186 buf = rs->buf.data ();
96baa820 11187 if (buf[0] == '\0')
8a3fe4f8 11188 error (_("Target does not support this command."));
96baa820
JM
11189 if (buf[0] == 'O' && buf[1] != 'K')
11190 {
23860348 11191 remote_console_output (buf + 1); /* 'O' message from stub. */
96baa820
JM
11192 continue;
11193 }
11194 if (strcmp (buf, "OK") == 0)
11195 break;
7be570e7
JM
11196 if (strlen (buf) == 3 && buf[0] == 'E'
11197 && isdigit (buf[1]) && isdigit (buf[2]))
11198 {
8a3fe4f8 11199 error (_("Protocol error with Rcmd"));
7be570e7 11200 }
96baa820
JM
11201 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
11202 {
11203 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
a744cf53 11204
96baa820
JM
11205 fputc_unfiltered (c, outbuf);
11206 }
11207 break;
11208 }
11209}
11210
f6ac5f3d
PA
11211std::vector<mem_region>
11212remote_target::memory_map ()
fd79ecee 11213{
a664f67e 11214 std::vector<mem_region> result;
9018be22 11215 gdb::optional<gdb::char_vector> text
8b88a78e 11216 = target_read_stralloc (current_top_target (), TARGET_OBJECT_MEMORY_MAP, NULL);
fd79ecee
DJ
11217
11218 if (text)
9018be22 11219 result = parse_memory_map (text->data ());
fd79ecee
DJ
11220
11221 return result;
11222}
11223
c906108c 11224static void
ac88e2de 11225packet_command (const char *args, int from_tty)
c906108c 11226{
6b8edb51 11227 remote_target *remote = get_current_remote_target ();
c906108c 11228
6b8edb51 11229 if (remote == nullptr)
8a3fe4f8 11230 error (_("command can only be used with remote target"));
c906108c 11231
6b8edb51
PA
11232 remote->packet_command (args, from_tty);
11233}
11234
11235void
11236remote_target::packet_command (const char *args, int from_tty)
11237{
c5aa993b 11238 if (!args)
8a3fe4f8 11239 error (_("remote-packet command requires packet text as argument"));
c906108c
SS
11240
11241 puts_filtered ("sending: ");
11242 print_packet (args);
11243 puts_filtered ("\n");
11244 putpkt (args);
11245
6b8edb51
PA
11246 remote_state *rs = get_remote_state ();
11247
8d64371b 11248 getpkt (&rs->buf, 0);
c906108c 11249 puts_filtered ("received: ");
8d64371b 11250 print_packet (rs->buf.data ());
c906108c
SS
11251 puts_filtered ("\n");
11252}
11253
11254#if 0
23860348 11255/* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
c906108c 11256
a14ed312 11257static void display_thread_info (struct gdb_ext_thread_info *info);
c906108c 11258
a14ed312 11259static void threadset_test_cmd (char *cmd, int tty);
c906108c 11260
a14ed312 11261static void threadalive_test (char *cmd, int tty);
c906108c 11262
a14ed312 11263static void threadlist_test_cmd (char *cmd, int tty);
c906108c 11264
23860348 11265int get_and_display_threadinfo (threadref *ref);
c906108c 11266
a14ed312 11267static void threadinfo_test_cmd (char *cmd, int tty);
c906108c 11268
23860348 11269static int thread_display_step (threadref *ref, void *context);
c906108c 11270
a14ed312 11271static void threadlist_update_test_cmd (char *cmd, int tty);
c906108c 11272
a14ed312 11273static void init_remote_threadtests (void);
c906108c 11274
23860348 11275#define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
c906108c
SS
11276
11277static void
0b39b52e 11278threadset_test_cmd (const char *cmd, int tty)
c906108c
SS
11279{
11280 int sample_thread = SAMPLE_THREAD;
11281
a3f17187 11282 printf_filtered (_("Remote threadset test\n"));
79d7f229 11283 set_general_thread (sample_thread);
c906108c
SS
11284}
11285
11286
11287static void
0b39b52e 11288threadalive_test (const char *cmd, int tty)
c906108c
SS
11289{
11290 int sample_thread = SAMPLE_THREAD;
e99b03dc 11291 int pid = inferior_ptid.pid ();
fd79271b 11292 ptid_t ptid = ptid_t (pid, sample_thread, 0);
c906108c 11293
79d7f229 11294 if (remote_thread_alive (ptid))
c906108c
SS
11295 printf_filtered ("PASS: Thread alive test\n");
11296 else
11297 printf_filtered ("FAIL: Thread alive test\n");
11298}
11299
23860348 11300void output_threadid (char *title, threadref *ref);
c906108c
SS
11301
11302void
fba45db2 11303output_threadid (char *title, threadref *ref)
c906108c
SS
11304{
11305 char hexid[20];
11306
23860348 11307 pack_threadid (&hexid[0], ref); /* Convert threead id into hex. */
c906108c
SS
11308 hexid[16] = 0;
11309 printf_filtered ("%s %s\n", title, (&hexid[0]));
11310}
11311
11312static void
0b39b52e 11313threadlist_test_cmd (const char *cmd, int tty)
c906108c
SS
11314{
11315 int startflag = 1;
11316 threadref nextthread;
11317 int done, result_count;
11318 threadref threadlist[3];
11319
11320 printf_filtered ("Remote Threadlist test\n");
11321 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
11322 &result_count, &threadlist[0]))
11323 printf_filtered ("FAIL: threadlist test\n");
11324 else
11325 {
11326 threadref *scan = threadlist;
11327 threadref *limit = scan + result_count;
11328
11329 while (scan < limit)
11330 output_threadid (" thread ", scan++);
11331 }
11332}
11333
11334void
fba45db2 11335display_thread_info (struct gdb_ext_thread_info *info)
c906108c
SS
11336{
11337 output_threadid ("Threadid: ", &info->threadid);
11338 printf_filtered ("Name: %s\n ", info->shortname);
11339 printf_filtered ("State: %s\n", info->display);
11340 printf_filtered ("other: %s\n\n", info->more_display);
11341}
11342
11343int
fba45db2 11344get_and_display_threadinfo (threadref *ref)
c906108c
SS
11345{
11346 int result;
11347 int set;
11348 struct gdb_ext_thread_info threadinfo;
11349
11350 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
11351 | TAG_MOREDISPLAY | TAG_DISPLAY;
11352 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
11353 display_thread_info (&threadinfo);
11354 return result;
11355}
11356
11357static void
0b39b52e 11358threadinfo_test_cmd (const char *cmd, int tty)
c906108c
SS
11359{
11360 int athread = SAMPLE_THREAD;
11361 threadref thread;
11362 int set;
11363
11364 int_to_threadref (&thread, athread);
11365 printf_filtered ("Remote Threadinfo test\n");
11366 if (!get_and_display_threadinfo (&thread))
11367 printf_filtered ("FAIL cannot get thread info\n");
11368}
11369
11370static int
fba45db2 11371thread_display_step (threadref *ref, void *context)
c906108c
SS
11372{
11373 /* output_threadid(" threadstep ",ref); *//* simple test */
11374 return get_and_display_threadinfo (ref);
11375}
11376
11377static void
0b39b52e 11378threadlist_update_test_cmd (const char *cmd, int tty)
c906108c
SS
11379{
11380 printf_filtered ("Remote Threadlist update test\n");
11381 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
11382}
11383
11384static void
11385init_remote_threadtests (void)
11386{
3e43a32a
MS
11387 add_com ("tlist", class_obscure, threadlist_test_cmd,
11388 _("Fetch and print the remote list of "
11389 "thread identifiers, one pkt only"));
c906108c 11390 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
1bedd215 11391 _("Fetch and display info about one thread"));
c906108c 11392 add_com ("tset", class_obscure, threadset_test_cmd,
1bedd215 11393 _("Test setting to a different thread"));
c906108c 11394 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
1bedd215 11395 _("Iterate through updating all remote thread info"));
c906108c 11396 add_com ("talive", class_obscure, threadalive_test,
1bedd215 11397 _(" Remote thread alive test "));
c906108c
SS
11398}
11399
11400#endif /* 0 */
11401
a068643d 11402/* Convert a thread ID to a string. */
f3fb8c85 11403
a068643d 11404std::string
f6ac5f3d 11405remote_target::pid_to_str (ptid_t ptid)
f3fb8c85 11406{
82f73884 11407 struct remote_state *rs = get_remote_state ();
f3fb8c85 11408
d7e15655 11409 if (ptid == null_ptid)
7cee1e54 11410 return normal_pid_to_str (ptid);
0e998d96 11411 else if (ptid.is_pid ())
ecd0ada5
PA
11412 {
11413 /* Printing an inferior target id. */
11414
11415 /* When multi-process extensions are off, there's no way in the
11416 remote protocol to know the remote process id, if there's any
11417 at all. There's one exception --- when we're connected with
11418 target extended-remote, and we manually attached to a process
11419 with "attach PID". We don't record anywhere a flag that
11420 allows us to distinguish that case from the case of
11421 connecting with extended-remote and the stub already being
11422 attached to a process, and reporting yes to qAttached, hence
11423 no smart special casing here. */
11424 if (!remote_multi_process_p (rs))
a068643d 11425 return "Remote target";
ecd0ada5
PA
11426
11427 return normal_pid_to_str (ptid);
82f73884 11428 }
ecd0ada5 11429 else
79d7f229 11430 {
d7e15655 11431 if (magic_null_ptid == ptid)
a068643d 11432 return "Thread <main>";
8020350c 11433 else if (remote_multi_process_p (rs))
e38504b3 11434 if (ptid.lwp () == 0)
de0d863e
DB
11435 return normal_pid_to_str (ptid);
11436 else
a068643d
TT
11437 return string_printf ("Thread %d.%ld",
11438 ptid.pid (), ptid.lwp ());
ecd0ada5 11439 else
a068643d 11440 return string_printf ("Thread %ld", ptid.lwp ());
79d7f229 11441 }
f3fb8c85
MS
11442}
11443
38691318
KB
11444/* Get the address of the thread local variable in OBJFILE which is
11445 stored at OFFSET within the thread local storage for thread PTID. */
11446
f6ac5f3d
PA
11447CORE_ADDR
11448remote_target::get_thread_local_address (ptid_t ptid, CORE_ADDR lm,
11449 CORE_ADDR offset)
38691318 11450{
4082afcc 11451 if (packet_support (PACKET_qGetTLSAddr) != PACKET_DISABLE)
38691318
KB
11452 {
11453 struct remote_state *rs = get_remote_state ();
8d64371b
TT
11454 char *p = rs->buf.data ();
11455 char *endp = p + get_remote_packet_size ();
571dd617 11456 enum packet_result result;
38691318
KB
11457
11458 strcpy (p, "qGetTLSAddr:");
11459 p += strlen (p);
82f73884 11460 p = write_ptid (p, endp, ptid);
38691318
KB
11461 *p++ = ',';
11462 p += hexnumstr (p, offset);
11463 *p++ = ',';
11464 p += hexnumstr (p, lm);
11465 *p++ = '\0';
11466
6d820c5c 11467 putpkt (rs->buf);
8d64371b 11468 getpkt (&rs->buf, 0);
3e43a32a
MS
11469 result = packet_ok (rs->buf,
11470 &remote_protocol_packets[PACKET_qGetTLSAddr]);
571dd617 11471 if (result == PACKET_OK)
38691318 11472 {
b926417a 11473 ULONGEST addr;
38691318 11474
8d64371b 11475 unpack_varlen_hex (rs->buf.data (), &addr);
b926417a 11476 return addr;
38691318 11477 }
571dd617 11478 else if (result == PACKET_UNKNOWN)
109c3e39
AC
11479 throw_error (TLS_GENERIC_ERROR,
11480 _("Remote target doesn't support qGetTLSAddr packet"));
38691318 11481 else
109c3e39
AC
11482 throw_error (TLS_GENERIC_ERROR,
11483 _("Remote target failed to process qGetTLSAddr request"));
38691318
KB
11484 }
11485 else
109c3e39
AC
11486 throw_error (TLS_GENERIC_ERROR,
11487 _("TLS not supported or disabled on this target"));
38691318
KB
11488 /* Not reached. */
11489 return 0;
11490}
11491
711e434b
PM
11492/* Provide thread local base, i.e. Thread Information Block address.
11493 Returns 1 if ptid is found and thread_local_base is non zero. */
11494
57810aa7 11495bool
f6ac5f3d 11496remote_target::get_tib_address (ptid_t ptid, CORE_ADDR *addr)
711e434b 11497{
4082afcc 11498 if (packet_support (PACKET_qGetTIBAddr) != PACKET_DISABLE)
711e434b
PM
11499 {
11500 struct remote_state *rs = get_remote_state ();
8d64371b
TT
11501 char *p = rs->buf.data ();
11502 char *endp = p + get_remote_packet_size ();
711e434b
PM
11503 enum packet_result result;
11504
11505 strcpy (p, "qGetTIBAddr:");
11506 p += strlen (p);
11507 p = write_ptid (p, endp, ptid);
11508 *p++ = '\0';
11509
11510 putpkt (rs->buf);
8d64371b 11511 getpkt (&rs->buf, 0);
711e434b
PM
11512 result = packet_ok (rs->buf,
11513 &remote_protocol_packets[PACKET_qGetTIBAddr]);
11514 if (result == PACKET_OK)
11515 {
b926417a 11516 ULONGEST val;
8d64371b 11517 unpack_varlen_hex (rs->buf.data (), &val);
711e434b 11518 if (addr)
b926417a 11519 *addr = (CORE_ADDR) val;
57810aa7 11520 return true;
711e434b
PM
11521 }
11522 else if (result == PACKET_UNKNOWN)
11523 error (_("Remote target doesn't support qGetTIBAddr packet"));
11524 else
11525 error (_("Remote target failed to process qGetTIBAddr request"));
11526 }
11527 else
11528 error (_("qGetTIBAddr not supported or disabled on this target"));
11529 /* Not reached. */
57810aa7 11530 return false;
711e434b
PM
11531}
11532
29709017
DJ
11533/* Support for inferring a target description based on the current
11534 architecture and the size of a 'g' packet. While the 'g' packet
11535 can have any size (since optional registers can be left off the
11536 end), some sizes are easily recognizable given knowledge of the
11537 approximate architecture. */
11538
11539struct remote_g_packet_guess
11540{
eefce37f
TT
11541 remote_g_packet_guess (int bytes_, const struct target_desc *tdesc_)
11542 : bytes (bytes_),
11543 tdesc (tdesc_)
11544 {
11545 }
11546
29709017
DJ
11547 int bytes;
11548 const struct target_desc *tdesc;
11549};
29709017 11550
eefce37f 11551struct remote_g_packet_data : public allocate_on_obstack
29709017 11552{
eefce37f 11553 std::vector<remote_g_packet_guess> guesses;
29709017
DJ
11554};
11555
11556static struct gdbarch_data *remote_g_packet_data_handle;
11557
11558static void *
11559remote_g_packet_data_init (struct obstack *obstack)
11560{
eefce37f 11561 return new (obstack) remote_g_packet_data;
29709017
DJ
11562}
11563
11564void
11565register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes,
11566 const struct target_desc *tdesc)
11567{
11568 struct remote_g_packet_data *data
19ba03f4
SM
11569 = ((struct remote_g_packet_data *)
11570 gdbarch_data (gdbarch, remote_g_packet_data_handle));
29709017
DJ
11571
11572 gdb_assert (tdesc != NULL);
11573
eefce37f
TT
11574 for (const remote_g_packet_guess &guess : data->guesses)
11575 if (guess.bytes == bytes)
29709017 11576 internal_error (__FILE__, __LINE__,
9b20d036 11577 _("Duplicate g packet description added for size %d"),
29709017
DJ
11578 bytes);
11579
eefce37f 11580 data->guesses.emplace_back (bytes, tdesc);
29709017
DJ
11581}
11582
eefce37f
TT
11583/* Return true if remote_read_description would do anything on this target
11584 and architecture, false otherwise. */
d962ef82 11585
eefce37f 11586static bool
d962ef82
DJ
11587remote_read_description_p (struct target_ops *target)
11588{
11589 struct remote_g_packet_data *data
19ba03f4
SM
11590 = ((struct remote_g_packet_data *)
11591 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
d962ef82 11592
eefce37f 11593 return !data->guesses.empty ();
d962ef82
DJ
11594}
11595
f6ac5f3d
PA
11596const struct target_desc *
11597remote_target::read_description ()
29709017
DJ
11598{
11599 struct remote_g_packet_data *data
19ba03f4
SM
11600 = ((struct remote_g_packet_data *)
11601 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
29709017 11602
d962ef82
DJ
11603 /* Do not try this during initial connection, when we do not know
11604 whether there is a running but stopped thread. */
d7e15655 11605 if (!target_has_execution || inferior_ptid == null_ptid)
b6a8c27b 11606 return beneath ()->read_description ();
d962ef82 11607
eefce37f 11608 if (!data->guesses.empty ())
29709017 11609 {
29709017
DJ
11610 int bytes = send_g_packet ();
11611
eefce37f
TT
11612 for (const remote_g_packet_guess &guess : data->guesses)
11613 if (guess.bytes == bytes)
11614 return guess.tdesc;
29709017
DJ
11615
11616 /* We discard the g packet. A minor optimization would be to
11617 hold on to it, and fill the register cache once we have selected
11618 an architecture, but it's too tricky to do safely. */
11619 }
11620
b6a8c27b 11621 return beneath ()->read_description ();
29709017
DJ
11622}
11623
a6b151f1
DJ
11624/* Remote file transfer support. This is host-initiated I/O, not
11625 target-initiated; for target-initiated, see remote-fileio.c. */
11626
11627/* If *LEFT is at least the length of STRING, copy STRING to
11628 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11629 decrease *LEFT. Otherwise raise an error. */
11630
11631static void
a121b7c1 11632remote_buffer_add_string (char **buffer, int *left, const char *string)
a6b151f1
DJ
11633{
11634 int len = strlen (string);
11635
11636 if (len > *left)
11637 error (_("Packet too long for target."));
11638
11639 memcpy (*buffer, string, len);
11640 *buffer += len;
11641 *left -= len;
11642
11643 /* NUL-terminate the buffer as a convenience, if there is
11644 room. */
11645 if (*left)
11646 **buffer = '\0';
11647}
11648
11649/* If *LEFT is large enough, hex encode LEN bytes from BYTES into
11650 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11651 decrease *LEFT. Otherwise raise an error. */
11652
11653static void
11654remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes,
11655 int len)
11656{
11657 if (2 * len > *left)
11658 error (_("Packet too long for target."));
11659
11660 bin2hex (bytes, *buffer, len);
11661 *buffer += 2 * len;
11662 *left -= 2 * len;
11663
11664 /* NUL-terminate the buffer as a convenience, if there is
11665 room. */
11666 if (*left)
11667 **buffer = '\0';
11668}
11669
11670/* If *LEFT is large enough, convert VALUE to hex and add it to
11671 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11672 decrease *LEFT. Otherwise raise an error. */
11673
11674static void
11675remote_buffer_add_int (char **buffer, int *left, ULONGEST value)
11676{
11677 int len = hexnumlen (value);
11678
11679 if (len > *left)
11680 error (_("Packet too long for target."));
11681
11682 hexnumstr (*buffer, value);
11683 *buffer += len;
11684 *left -= len;
11685
11686 /* NUL-terminate the buffer as a convenience, if there is
11687 room. */
11688 if (*left)
11689 **buffer = '\0';
11690}
11691
11692/* Parse an I/O result packet from BUFFER. Set RETCODE to the return
11693 value, *REMOTE_ERRNO to the remote error number or zero if none
11694 was included, and *ATTACHMENT to point to the start of the annex
11695 if any. The length of the packet isn't needed here; there may
11696 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
11697
11698 Return 0 if the packet could be parsed, -1 if it could not. If
11699 -1 is returned, the other variables may not be initialized. */
11700
11701static int
11702remote_hostio_parse_result (char *buffer, int *retcode,
11703 int *remote_errno, char **attachment)
11704{
11705 char *p, *p2;
11706
11707 *remote_errno = 0;
11708 *attachment = NULL;
11709
11710 if (buffer[0] != 'F')
11711 return -1;
11712
11713 errno = 0;
11714 *retcode = strtol (&buffer[1], &p, 16);
11715 if (errno != 0 || p == &buffer[1])
11716 return -1;
11717
11718 /* Check for ",errno". */
11719 if (*p == ',')
11720 {
11721 errno = 0;
11722 *remote_errno = strtol (p + 1, &p2, 16);
11723 if (errno != 0 || p + 1 == p2)
11724 return -1;
11725 p = p2;
11726 }
11727
11728 /* Check for ";attachment". If there is no attachment, the
11729 packet should end here. */
11730 if (*p == ';')
11731 {
11732 *attachment = p + 1;
11733 return 0;
11734 }
11735 else if (*p == '\0')
11736 return 0;
11737 else
11738 return -1;
11739}
11740
11741/* Send a prepared I/O packet to the target and read its response.
11742 The prepared packet is in the global RS->BUF before this function
11743 is called, and the answer is there when we return.
11744
11745 COMMAND_BYTES is the length of the request to send, which may include
11746 binary data. WHICH_PACKET is the packet configuration to check
11747 before attempting a packet. If an error occurs, *REMOTE_ERRNO
11748 is set to the error number and -1 is returned. Otherwise the value
11749 returned by the function is returned.
11750
11751 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
11752 attachment is expected; an error will be reported if there's a
11753 mismatch. If one is found, *ATTACHMENT will be set to point into
11754 the packet buffer and *ATTACHMENT_LEN will be set to the
11755 attachment's length. */
11756
6b8edb51
PA
11757int
11758remote_target::remote_hostio_send_command (int command_bytes, int which_packet,
11759 int *remote_errno, char **attachment,
11760 int *attachment_len)
a6b151f1
DJ
11761{
11762 struct remote_state *rs = get_remote_state ();
11763 int ret, bytes_read;
11764 char *attachment_tmp;
11765
20db9c52 11766 if (packet_support (which_packet) == PACKET_DISABLE)
a6b151f1
DJ
11767 {
11768 *remote_errno = FILEIO_ENOSYS;
11769 return -1;
11770 }
11771
8d64371b
TT
11772 putpkt_binary (rs->buf.data (), command_bytes);
11773 bytes_read = getpkt_sane (&rs->buf, 0);
a6b151f1
DJ
11774
11775 /* If it timed out, something is wrong. Don't try to parse the
11776 buffer. */
11777 if (bytes_read < 0)
11778 {
11779 *remote_errno = FILEIO_EINVAL;
11780 return -1;
11781 }
11782
11783 switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet]))
11784 {
11785 case PACKET_ERROR:
11786 *remote_errno = FILEIO_EINVAL;
11787 return -1;
11788 case PACKET_UNKNOWN:
11789 *remote_errno = FILEIO_ENOSYS;
11790 return -1;
11791 case PACKET_OK:
11792 break;
11793 }
11794
8d64371b 11795 if (remote_hostio_parse_result (rs->buf.data (), &ret, remote_errno,
a6b151f1
DJ
11796 &attachment_tmp))
11797 {
11798 *remote_errno = FILEIO_EINVAL;
11799 return -1;
11800 }
11801
11802 /* Make sure we saw an attachment if and only if we expected one. */
11803 if ((attachment_tmp == NULL && attachment != NULL)
11804 || (attachment_tmp != NULL && attachment == NULL))
11805 {
11806 *remote_errno = FILEIO_EINVAL;
11807 return -1;
11808 }
11809
11810 /* If an attachment was found, it must point into the packet buffer;
11811 work out how many bytes there were. */
11812 if (attachment_tmp != NULL)
11813 {
11814 *attachment = attachment_tmp;
8d64371b 11815 *attachment_len = bytes_read - (*attachment - rs->buf.data ());
a6b151f1
DJ
11816 }
11817
11818 return ret;
11819}
11820
dd194f6b 11821/* See declaration.h. */
80152258 11822
dd194f6b
PA
11823void
11824readahead_cache::invalidate ()
80152258 11825{
dd194f6b 11826 this->fd = -1;
80152258
PA
11827}
11828
dd194f6b 11829/* See declaration.h. */
80152258 11830
dd194f6b
PA
11831void
11832readahead_cache::invalidate_fd (int fd)
80152258 11833{
dd194f6b
PA
11834 if (this->fd == fd)
11835 this->fd = -1;
80152258
PA
11836}
11837
15a201c8
GB
11838/* Set the filesystem remote_hostio functions that take FILENAME
11839 arguments will use. Return 0 on success, or -1 if an error
11840 occurs (and set *REMOTE_ERRNO). */
11841
6b8edb51
PA
11842int
11843remote_target::remote_hostio_set_filesystem (struct inferior *inf,
11844 int *remote_errno)
15a201c8
GB
11845{
11846 struct remote_state *rs = get_remote_state ();
11847 int required_pid = (inf == NULL || inf->fake_pid_p) ? 0 : inf->pid;
8d64371b 11848 char *p = rs->buf.data ();
15a201c8
GB
11849 int left = get_remote_packet_size () - 1;
11850 char arg[9];
11851 int ret;
11852
11853 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11854 return 0;
11855
11856 if (rs->fs_pid != -1 && required_pid == rs->fs_pid)
11857 return 0;
11858
11859 remote_buffer_add_string (&p, &left, "vFile:setfs:");
11860
11861 xsnprintf (arg, sizeof (arg), "%x", required_pid);
11862 remote_buffer_add_string (&p, &left, arg);
11863
8d64371b 11864 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_setfs,
15a201c8
GB
11865 remote_errno, NULL, NULL);
11866
11867 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11868 return 0;
11869
11870 if (ret == 0)
11871 rs->fs_pid = required_pid;
11872
11873 return ret;
11874}
11875
12e2a5fd 11876/* Implementation of to_fileio_open. */
a6b151f1 11877
6b8edb51
PA
11878int
11879remote_target::remote_hostio_open (inferior *inf, const char *filename,
11880 int flags, int mode, int warn_if_slow,
11881 int *remote_errno)
a6b151f1
DJ
11882{
11883 struct remote_state *rs = get_remote_state ();
8d64371b 11884 char *p = rs->buf.data ();
a6b151f1
DJ
11885 int left = get_remote_packet_size () - 1;
11886
4313b8c0
GB
11887 if (warn_if_slow)
11888 {
11889 static int warning_issued = 0;
11890
11891 printf_unfiltered (_("Reading %s from remote target...\n"),
11892 filename);
11893
11894 if (!warning_issued)
11895 {
11896 warning (_("File transfers from remote targets can be slow."
11897 " Use \"set sysroot\" to access files locally"
11898 " instead."));
11899 warning_issued = 1;
11900 }
11901 }
11902
15a201c8
GB
11903 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
11904 return -1;
11905
a6b151f1
DJ
11906 remote_buffer_add_string (&p, &left, "vFile:open:");
11907
11908 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
11909 strlen (filename));
11910 remote_buffer_add_string (&p, &left, ",");
11911
11912 remote_buffer_add_int (&p, &left, flags);
11913 remote_buffer_add_string (&p, &left, ",");
11914
11915 remote_buffer_add_int (&p, &left, mode);
11916
8d64371b 11917 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_open,
a6b151f1
DJ
11918 remote_errno, NULL, NULL);
11919}
11920
f6ac5f3d
PA
11921int
11922remote_target::fileio_open (struct inferior *inf, const char *filename,
11923 int flags, int mode, int warn_if_slow,
11924 int *remote_errno)
11925{
6b8edb51 11926 return remote_hostio_open (inf, filename, flags, mode, warn_if_slow,
f6ac5f3d
PA
11927 remote_errno);
11928}
11929
12e2a5fd 11930/* Implementation of to_fileio_pwrite. */
a6b151f1 11931
6b8edb51
PA
11932int
11933remote_target::remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
11934 ULONGEST offset, int *remote_errno)
a6b151f1
DJ
11935{
11936 struct remote_state *rs = get_remote_state ();
8d64371b 11937 char *p = rs->buf.data ();
a6b151f1
DJ
11938 int left = get_remote_packet_size ();
11939 int out_len;
11940
dd194f6b 11941 rs->readahead_cache.invalidate_fd (fd);
80152258 11942
a6b151f1
DJ
11943 remote_buffer_add_string (&p, &left, "vFile:pwrite:");
11944
11945 remote_buffer_add_int (&p, &left, fd);
11946 remote_buffer_add_string (&p, &left, ",");
11947
11948 remote_buffer_add_int (&p, &left, offset);
11949 remote_buffer_add_string (&p, &left, ",");
11950
124e13d9 11951 p += remote_escape_output (write_buf, len, 1, (gdb_byte *) p, &out_len,
8d64371b
TT
11952 (get_remote_packet_size ()
11953 - (p - rs->buf.data ())));
a6b151f1 11954
8d64371b 11955 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pwrite,
a6b151f1
DJ
11956 remote_errno, NULL, NULL);
11957}
11958
f6ac5f3d
PA
11959int
11960remote_target::fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
11961 ULONGEST offset, int *remote_errno)
11962{
6b8edb51 11963 return remote_hostio_pwrite (fd, write_buf, len, offset, remote_errno);
f6ac5f3d
PA
11964}
11965
80152258
PA
11966/* Helper for the implementation of to_fileio_pread. Read the file
11967 from the remote side with vFile:pread. */
a6b151f1 11968
6b8edb51
PA
11969int
11970remote_target::remote_hostio_pread_vFile (int fd, gdb_byte *read_buf, int len,
11971 ULONGEST offset, int *remote_errno)
a6b151f1
DJ
11972{
11973 struct remote_state *rs = get_remote_state ();
8d64371b 11974 char *p = rs->buf.data ();
a6b151f1
DJ
11975 char *attachment;
11976 int left = get_remote_packet_size ();
11977 int ret, attachment_len;
11978 int read_len;
11979
11980 remote_buffer_add_string (&p, &left, "vFile:pread:");
11981
11982 remote_buffer_add_int (&p, &left, fd);
11983 remote_buffer_add_string (&p, &left, ",");
11984
11985 remote_buffer_add_int (&p, &left, len);
11986 remote_buffer_add_string (&p, &left, ",");
11987
11988 remote_buffer_add_int (&p, &left, offset);
11989
8d64371b 11990 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pread,
a6b151f1
DJ
11991 remote_errno, &attachment,
11992 &attachment_len);
11993
11994 if (ret < 0)
11995 return ret;
11996
bc20a4af 11997 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
a6b151f1
DJ
11998 read_buf, len);
11999 if (read_len != ret)
12000 error (_("Read returned %d, but %d bytes."), ret, (int) read_len);
12001
12002 return ret;
12003}
12004
dd194f6b 12005/* See declaration.h. */
80152258 12006
dd194f6b
PA
12007int
12008readahead_cache::pread (int fd, gdb_byte *read_buf, size_t len,
12009 ULONGEST offset)
80152258 12010{
dd194f6b
PA
12011 if (this->fd == fd
12012 && this->offset <= offset
12013 && offset < this->offset + this->bufsize)
80152258 12014 {
dd194f6b 12015 ULONGEST max = this->offset + this->bufsize;
80152258
PA
12016
12017 if (offset + len > max)
12018 len = max - offset;
12019
dd194f6b 12020 memcpy (read_buf, this->buf + offset - this->offset, len);
80152258
PA
12021 return len;
12022 }
12023
12024 return 0;
12025}
12026
12027/* Implementation of to_fileio_pread. */
12028
6b8edb51
PA
12029int
12030remote_target::remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
12031 ULONGEST offset, int *remote_errno)
80152258
PA
12032{
12033 int ret;
12034 struct remote_state *rs = get_remote_state ();
dd194f6b 12035 readahead_cache *cache = &rs->readahead_cache;
80152258 12036
dd194f6b 12037 ret = cache->pread (fd, read_buf, len, offset);
80152258
PA
12038 if (ret > 0)
12039 {
12040 cache->hit_count++;
12041
12042 if (remote_debug)
12043 fprintf_unfiltered (gdb_stdlog, "readahead cache hit %s\n",
12044 pulongest (cache->hit_count));
12045 return ret;
12046 }
12047
12048 cache->miss_count++;
12049 if (remote_debug)
12050 fprintf_unfiltered (gdb_stdlog, "readahead cache miss %s\n",
12051 pulongest (cache->miss_count));
12052
12053 cache->fd = fd;
12054 cache->offset = offset;
12055 cache->bufsize = get_remote_packet_size ();
224c3ddb 12056 cache->buf = (gdb_byte *) xrealloc (cache->buf, cache->bufsize);
80152258 12057
6b8edb51 12058 ret = remote_hostio_pread_vFile (cache->fd, cache->buf, cache->bufsize,
80152258
PA
12059 cache->offset, remote_errno);
12060 if (ret <= 0)
12061 {
dd194f6b 12062 cache->invalidate_fd (fd);
80152258
PA
12063 return ret;
12064 }
12065
12066 cache->bufsize = ret;
dd194f6b 12067 return cache->pread (fd, read_buf, len, offset);
80152258
PA
12068}
12069
f6ac5f3d
PA
12070int
12071remote_target::fileio_pread (int fd, gdb_byte *read_buf, int len,
12072 ULONGEST offset, int *remote_errno)
12073{
6b8edb51 12074 return remote_hostio_pread (fd, read_buf, len, offset, remote_errno);
f6ac5f3d
PA
12075}
12076
12e2a5fd 12077/* Implementation of to_fileio_close. */
a6b151f1 12078
6b8edb51
PA
12079int
12080remote_target::remote_hostio_close (int fd, int *remote_errno)
a6b151f1
DJ
12081{
12082 struct remote_state *rs = get_remote_state ();
8d64371b 12083 char *p = rs->buf.data ();
a6b151f1
DJ
12084 int left = get_remote_packet_size () - 1;
12085
dd194f6b 12086 rs->readahead_cache.invalidate_fd (fd);
80152258 12087
a6b151f1
DJ
12088 remote_buffer_add_string (&p, &left, "vFile:close:");
12089
12090 remote_buffer_add_int (&p, &left, fd);
12091
8d64371b 12092 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_close,
a6b151f1
DJ
12093 remote_errno, NULL, NULL);
12094}
12095
f6ac5f3d
PA
12096int
12097remote_target::fileio_close (int fd, int *remote_errno)
12098{
6b8edb51 12099 return remote_hostio_close (fd, remote_errno);
f6ac5f3d
PA
12100}
12101
12e2a5fd 12102/* Implementation of to_fileio_unlink. */
a6b151f1 12103
6b8edb51
PA
12104int
12105remote_target::remote_hostio_unlink (inferior *inf, const char *filename,
12106 int *remote_errno)
a6b151f1
DJ
12107{
12108 struct remote_state *rs = get_remote_state ();
8d64371b 12109 char *p = rs->buf.data ();
a6b151f1
DJ
12110 int left = get_remote_packet_size () - 1;
12111
15a201c8
GB
12112 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
12113 return -1;
12114
a6b151f1
DJ
12115 remote_buffer_add_string (&p, &left, "vFile:unlink:");
12116
12117 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12118 strlen (filename));
12119
8d64371b 12120 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_unlink,
a6b151f1
DJ
12121 remote_errno, NULL, NULL);
12122}
12123
f6ac5f3d
PA
12124int
12125remote_target::fileio_unlink (struct inferior *inf, const char *filename,
12126 int *remote_errno)
12127{
6b8edb51 12128 return remote_hostio_unlink (inf, filename, remote_errno);
f6ac5f3d
PA
12129}
12130
12e2a5fd 12131/* Implementation of to_fileio_readlink. */
b9e7b9c3 12132
f6ac5f3d
PA
12133gdb::optional<std::string>
12134remote_target::fileio_readlink (struct inferior *inf, const char *filename,
12135 int *remote_errno)
b9e7b9c3
UW
12136{
12137 struct remote_state *rs = get_remote_state ();
8d64371b 12138 char *p = rs->buf.data ();
b9e7b9c3
UW
12139 char *attachment;
12140 int left = get_remote_packet_size ();
12141 int len, attachment_len;
12142 int read_len;
b9e7b9c3 12143
15a201c8 12144 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
e0d3522b 12145 return {};
15a201c8 12146
b9e7b9c3
UW
12147 remote_buffer_add_string (&p, &left, "vFile:readlink:");
12148
12149 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12150 strlen (filename));
12151
8d64371b 12152 len = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_readlink,
b9e7b9c3
UW
12153 remote_errno, &attachment,
12154 &attachment_len);
12155
12156 if (len < 0)
e0d3522b 12157 return {};
b9e7b9c3 12158
e0d3522b 12159 std::string ret (len, '\0');
b9e7b9c3 12160
bc20a4af 12161 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
e0d3522b 12162 (gdb_byte *) &ret[0], len);
b9e7b9c3
UW
12163 if (read_len != len)
12164 error (_("Readlink returned %d, but %d bytes."), len, read_len);
12165
b9e7b9c3
UW
12166 return ret;
12167}
12168
12e2a5fd 12169/* Implementation of to_fileio_fstat. */
0a93529c 12170
f6ac5f3d
PA
12171int
12172remote_target::fileio_fstat (int fd, struct stat *st, int *remote_errno)
0a93529c
GB
12173{
12174 struct remote_state *rs = get_remote_state ();
8d64371b 12175 char *p = rs->buf.data ();
0a93529c
GB
12176 int left = get_remote_packet_size ();
12177 int attachment_len, ret;
12178 char *attachment;
12179 struct fio_stat fst;
12180 int read_len;
12181
464b0089
GB
12182 remote_buffer_add_string (&p, &left, "vFile:fstat:");
12183
12184 remote_buffer_add_int (&p, &left, fd);
12185
8d64371b 12186 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_fstat,
464b0089
GB
12187 remote_errno, &attachment,
12188 &attachment_len);
12189 if (ret < 0)
0a93529c 12190 {
464b0089
GB
12191 if (*remote_errno != FILEIO_ENOSYS)
12192 return ret;
12193
0a93529c
GB
12194 /* Strictly we should return -1, ENOSYS here, but when
12195 "set sysroot remote:" was implemented in August 2008
12196 BFD's need for a stat function was sidestepped with
12197 this hack. This was not remedied until March 2015
12198 so we retain the previous behavior to avoid breaking
12199 compatibility.
12200
12201 Note that the memset is a March 2015 addition; older
12202 GDBs set st_size *and nothing else* so the structure
12203 would have garbage in all other fields. This might
12204 break something but retaining the previous behavior
12205 here would be just too wrong. */
12206
12207 memset (st, 0, sizeof (struct stat));
12208 st->st_size = INT_MAX;
12209 return 0;
12210 }
12211
0a93529c
GB
12212 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
12213 (gdb_byte *) &fst, sizeof (fst));
12214
12215 if (read_len != ret)
12216 error (_("vFile:fstat returned %d, but %d bytes."), ret, read_len);
12217
12218 if (read_len != sizeof (fst))
12219 error (_("vFile:fstat returned %d bytes, but expecting %d."),
12220 read_len, (int) sizeof (fst));
12221
12222 remote_fileio_to_host_stat (&fst, st);
12223
12224 return 0;
12225}
12226
12e2a5fd 12227/* Implementation of to_filesystem_is_local. */
e3dd7556 12228
57810aa7 12229bool
f6ac5f3d 12230remote_target::filesystem_is_local ()
e3dd7556
GB
12231{
12232 /* Valgrind GDB presents itself as a remote target but works
12233 on the local filesystem: it does not implement remote get
12234 and users are not expected to set a sysroot. To handle
12235 this case we treat the remote filesystem as local if the
12236 sysroot is exactly TARGET_SYSROOT_PREFIX and if the stub
12237 does not support vFile:open. */
a3be80c3 12238 if (strcmp (gdb_sysroot, TARGET_SYSROOT_PREFIX) == 0)
e3dd7556
GB
12239 {
12240 enum packet_support ps = packet_support (PACKET_vFile_open);
12241
12242 if (ps == PACKET_SUPPORT_UNKNOWN)
12243 {
12244 int fd, remote_errno;
12245
12246 /* Try opening a file to probe support. The supplied
12247 filename is irrelevant, we only care about whether
12248 the stub recognizes the packet or not. */
6b8edb51 12249 fd = remote_hostio_open (NULL, "just probing",
4313b8c0 12250 FILEIO_O_RDONLY, 0700, 0,
e3dd7556
GB
12251 &remote_errno);
12252
12253 if (fd >= 0)
6b8edb51 12254 remote_hostio_close (fd, &remote_errno);
e3dd7556
GB
12255
12256 ps = packet_support (PACKET_vFile_open);
12257 }
12258
12259 if (ps == PACKET_DISABLE)
12260 {
12261 static int warning_issued = 0;
12262
12263 if (!warning_issued)
12264 {
12265 warning (_("remote target does not support file"
12266 " transfer, attempting to access files"
12267 " from local filesystem."));
12268 warning_issued = 1;
12269 }
12270
57810aa7 12271 return true;
e3dd7556
GB
12272 }
12273 }
12274
57810aa7 12275 return false;
e3dd7556
GB
12276}
12277
a6b151f1
DJ
12278static int
12279remote_fileio_errno_to_host (int errnum)
12280{
12281 switch (errnum)
12282 {
12283 case FILEIO_EPERM:
12284 return EPERM;
12285 case FILEIO_ENOENT:
12286 return ENOENT;
12287 case FILEIO_EINTR:
12288 return EINTR;
12289 case FILEIO_EIO:
12290 return EIO;
12291 case FILEIO_EBADF:
12292 return EBADF;
12293 case FILEIO_EACCES:
12294 return EACCES;
12295 case FILEIO_EFAULT:
12296 return EFAULT;
12297 case FILEIO_EBUSY:
12298 return EBUSY;
12299 case FILEIO_EEXIST:
12300 return EEXIST;
12301 case FILEIO_ENODEV:
12302 return ENODEV;
12303 case FILEIO_ENOTDIR:
12304 return ENOTDIR;
12305 case FILEIO_EISDIR:
12306 return EISDIR;
12307 case FILEIO_EINVAL:
12308 return EINVAL;
12309 case FILEIO_ENFILE:
12310 return ENFILE;
12311 case FILEIO_EMFILE:
12312 return EMFILE;
12313 case FILEIO_EFBIG:
12314 return EFBIG;
12315 case FILEIO_ENOSPC:
12316 return ENOSPC;
12317 case FILEIO_ESPIPE:
12318 return ESPIPE;
12319 case FILEIO_EROFS:
12320 return EROFS;
12321 case FILEIO_ENOSYS:
12322 return ENOSYS;
12323 case FILEIO_ENAMETOOLONG:
12324 return ENAMETOOLONG;
12325 }
12326 return -1;
12327}
12328
12329static char *
12330remote_hostio_error (int errnum)
12331{
12332 int host_error = remote_fileio_errno_to_host (errnum);
12333
12334 if (host_error == -1)
12335 error (_("Unknown remote I/O error %d"), errnum);
12336 else
12337 error (_("Remote I/O error: %s"), safe_strerror (host_error));
12338}
12339
440b7aec
PA
12340/* A RAII wrapper around a remote file descriptor. */
12341
12342class scoped_remote_fd
a6b151f1 12343{
440b7aec 12344public:
6b8edb51
PA
12345 scoped_remote_fd (remote_target *remote, int fd)
12346 : m_remote (remote), m_fd (fd)
440b7aec
PA
12347 {
12348 }
a6b151f1 12349
440b7aec
PA
12350 ~scoped_remote_fd ()
12351 {
12352 if (m_fd != -1)
12353 {
12354 try
12355 {
12356 int remote_errno;
6b8edb51 12357 m_remote->remote_hostio_close (m_fd, &remote_errno);
440b7aec
PA
12358 }
12359 catch (...)
12360 {
12361 /* Swallow exception before it escapes the dtor. If
12362 something goes wrong, likely the connection is gone,
12363 and there's nothing else that can be done. */
12364 }
12365 }
12366 }
12367
12368 DISABLE_COPY_AND_ASSIGN (scoped_remote_fd);
12369
12370 /* Release ownership of the file descriptor, and return it. */
88a774b9 12371 ATTRIBUTE_UNUSED_RESULT int release () noexcept
440b7aec
PA
12372 {
12373 int fd = m_fd;
12374 m_fd = -1;
12375 return fd;
12376 }
12377
12378 /* Return the owned file descriptor. */
12379 int get () const noexcept
12380 {
12381 return m_fd;
12382 }
12383
12384private:
6b8edb51
PA
12385 /* The remote target. */
12386 remote_target *m_remote;
12387
440b7aec
PA
12388 /* The owned remote I/O file descriptor. */
12389 int m_fd;
12390};
a6b151f1
DJ
12391
12392void
12393remote_file_put (const char *local_file, const char *remote_file, int from_tty)
6b8edb51
PA
12394{
12395 remote_target *remote = get_current_remote_target ();
12396
12397 if (remote == nullptr)
12398 error (_("command can only be used with remote target"));
12399
12400 remote->remote_file_put (local_file, remote_file, from_tty);
12401}
12402
12403void
12404remote_target::remote_file_put (const char *local_file, const char *remote_file,
12405 int from_tty)
a6b151f1 12406{
440b7aec 12407 int retcode, remote_errno, bytes, io_size;
a6b151f1
DJ
12408 int bytes_in_buffer;
12409 int saw_eof;
12410 ULONGEST offset;
a6b151f1 12411
d419f42d 12412 gdb_file_up file = gdb_fopen_cloexec (local_file, "rb");
a6b151f1
DJ
12413 if (file == NULL)
12414 perror_with_name (local_file);
a6b151f1 12415
440b7aec 12416 scoped_remote_fd fd
6b8edb51
PA
12417 (this, remote_hostio_open (NULL,
12418 remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT
12419 | FILEIO_O_TRUNC),
12420 0700, 0, &remote_errno));
440b7aec 12421 if (fd.get () == -1)
a6b151f1
DJ
12422 remote_hostio_error (remote_errno);
12423
12424 /* Send up to this many bytes at once. They won't all fit in the
12425 remote packet limit, so we'll transfer slightly fewer. */
12426 io_size = get_remote_packet_size ();
5ca3b260 12427 gdb::byte_vector buffer (io_size);
a6b151f1 12428
a6b151f1
DJ
12429 bytes_in_buffer = 0;
12430 saw_eof = 0;
12431 offset = 0;
12432 while (bytes_in_buffer || !saw_eof)
12433 {
12434 if (!saw_eof)
12435 {
5ca3b260 12436 bytes = fread (buffer.data () + bytes_in_buffer, 1,
3e43a32a 12437 io_size - bytes_in_buffer,
d419f42d 12438 file.get ());
a6b151f1
DJ
12439 if (bytes == 0)
12440 {
d419f42d 12441 if (ferror (file.get ()))
a6b151f1
DJ
12442 error (_("Error reading %s."), local_file);
12443 else
12444 {
12445 /* EOF. Unless there is something still in the
12446 buffer from the last iteration, we are done. */
12447 saw_eof = 1;
12448 if (bytes_in_buffer == 0)
12449 break;
12450 }
12451 }
12452 }
12453 else
12454 bytes = 0;
12455
12456 bytes += bytes_in_buffer;
12457 bytes_in_buffer = 0;
12458
5ca3b260 12459 retcode = remote_hostio_pwrite (fd.get (), buffer.data (), bytes,
3e43a32a 12460 offset, &remote_errno);
a6b151f1
DJ
12461
12462 if (retcode < 0)
12463 remote_hostio_error (remote_errno);
12464 else if (retcode == 0)
12465 error (_("Remote write of %d bytes returned 0!"), bytes);
12466 else if (retcode < bytes)
12467 {
12468 /* Short write. Save the rest of the read data for the next
12469 write. */
12470 bytes_in_buffer = bytes - retcode;
5ca3b260 12471 memmove (buffer.data (), buffer.data () + retcode, bytes_in_buffer);
a6b151f1
DJ
12472 }
12473
12474 offset += retcode;
12475 }
12476
6b8edb51 12477 if (remote_hostio_close (fd.release (), &remote_errno))
a6b151f1
DJ
12478 remote_hostio_error (remote_errno);
12479
12480 if (from_tty)
12481 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file);
a6b151f1
DJ
12482}
12483
12484void
12485remote_file_get (const char *remote_file, const char *local_file, int from_tty)
6b8edb51
PA
12486{
12487 remote_target *remote = get_current_remote_target ();
12488
12489 if (remote == nullptr)
12490 error (_("command can only be used with remote target"));
12491
12492 remote->remote_file_get (remote_file, local_file, from_tty);
12493}
12494
12495void
12496remote_target::remote_file_get (const char *remote_file, const char *local_file,
12497 int from_tty)
a6b151f1 12498{
440b7aec 12499 int remote_errno, bytes, io_size;
a6b151f1 12500 ULONGEST offset;
a6b151f1 12501
440b7aec 12502 scoped_remote_fd fd
6b8edb51
PA
12503 (this, remote_hostio_open (NULL,
12504 remote_file, FILEIO_O_RDONLY, 0, 0,
12505 &remote_errno));
440b7aec 12506 if (fd.get () == -1)
a6b151f1
DJ
12507 remote_hostio_error (remote_errno);
12508
d419f42d 12509 gdb_file_up file = gdb_fopen_cloexec (local_file, "wb");
a6b151f1
DJ
12510 if (file == NULL)
12511 perror_with_name (local_file);
a6b151f1
DJ
12512
12513 /* Send up to this many bytes at once. They won't all fit in the
12514 remote packet limit, so we'll transfer slightly fewer. */
12515 io_size = get_remote_packet_size ();
5ca3b260 12516 gdb::byte_vector buffer (io_size);
a6b151f1 12517
a6b151f1
DJ
12518 offset = 0;
12519 while (1)
12520 {
5ca3b260 12521 bytes = remote_hostio_pread (fd.get (), buffer.data (), io_size, offset,
440b7aec 12522 &remote_errno);
a6b151f1
DJ
12523 if (bytes == 0)
12524 /* Success, but no bytes, means end-of-file. */
12525 break;
12526 if (bytes == -1)
12527 remote_hostio_error (remote_errno);
12528
12529 offset += bytes;
12530
5ca3b260 12531 bytes = fwrite (buffer.data (), 1, bytes, file.get ());
a6b151f1
DJ
12532 if (bytes == 0)
12533 perror_with_name (local_file);
12534 }
12535
6b8edb51 12536 if (remote_hostio_close (fd.release (), &remote_errno))
a6b151f1
DJ
12537 remote_hostio_error (remote_errno);
12538
12539 if (from_tty)
12540 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file);
a6b151f1
DJ
12541}
12542
12543void
12544remote_file_delete (const char *remote_file, int from_tty)
12545{
6b8edb51 12546 remote_target *remote = get_current_remote_target ();
a6b151f1 12547
6b8edb51 12548 if (remote == nullptr)
a6b151f1
DJ
12549 error (_("command can only be used with remote target"));
12550
6b8edb51
PA
12551 remote->remote_file_delete (remote_file, from_tty);
12552}
12553
12554void
12555remote_target::remote_file_delete (const char *remote_file, int from_tty)
12556{
12557 int retcode, remote_errno;
12558
12559 retcode = remote_hostio_unlink (NULL, remote_file, &remote_errno);
a6b151f1
DJ
12560 if (retcode == -1)
12561 remote_hostio_error (remote_errno);
12562
12563 if (from_tty)
12564 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file);
12565}
12566
12567static void
ac88e2de 12568remote_put_command (const char *args, int from_tty)
a6b151f1 12569{
d1a41061
PP
12570 if (args == NULL)
12571 error_no_arg (_("file to put"));
12572
773a1edc 12573 gdb_argv argv (args);
a6b151f1
DJ
12574 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12575 error (_("Invalid parameters to remote put"));
12576
12577 remote_file_put (argv[0], argv[1], from_tty);
a6b151f1
DJ
12578}
12579
12580static void
ac88e2de 12581remote_get_command (const char *args, int from_tty)
a6b151f1 12582{
d1a41061
PP
12583 if (args == NULL)
12584 error_no_arg (_("file to get"));
12585
773a1edc 12586 gdb_argv argv (args);
a6b151f1
DJ
12587 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12588 error (_("Invalid parameters to remote get"));
12589
12590 remote_file_get (argv[0], argv[1], from_tty);
a6b151f1
DJ
12591}
12592
12593static void
ac88e2de 12594remote_delete_command (const char *args, int from_tty)
a6b151f1 12595{
d1a41061
PP
12596 if (args == NULL)
12597 error_no_arg (_("file to delete"));
12598
773a1edc 12599 gdb_argv argv (args);
a6b151f1
DJ
12600 if (argv[0] == NULL || argv[1] != NULL)
12601 error (_("Invalid parameters to remote delete"));
12602
12603 remote_file_delete (argv[0], from_tty);
a6b151f1
DJ
12604}
12605
12606static void
981a3fb3 12607remote_command (const char *args, int from_tty)
a6b151f1 12608{
635c7e8a 12609 help_list (remote_cmdlist, "remote ", all_commands, gdb_stdout);
a6b151f1
DJ
12610}
12611
57810aa7 12612bool
f6ac5f3d 12613remote_target::can_execute_reverse ()
b2175913 12614{
4082afcc
PA
12615 if (packet_support (PACKET_bs) == PACKET_ENABLE
12616 || packet_support (PACKET_bc) == PACKET_ENABLE)
57810aa7 12617 return true;
40ab02ce 12618 else
57810aa7 12619 return false;
b2175913
MS
12620}
12621
57810aa7 12622bool
f6ac5f3d 12623remote_target::supports_non_stop ()
74531fed 12624{
57810aa7 12625 return true;
74531fed
PA
12626}
12627
57810aa7 12628bool
f6ac5f3d 12629remote_target::supports_disable_randomization ()
03583c20
UW
12630{
12631 /* Only supported in extended mode. */
57810aa7 12632 return false;
03583c20
UW
12633}
12634
57810aa7 12635bool
f6ac5f3d 12636remote_target::supports_multi_process ()
8a305172
PA
12637{
12638 struct remote_state *rs = get_remote_state ();
a744cf53 12639
8020350c 12640 return remote_multi_process_p (rs);
8a305172
PA
12641}
12642
70221824 12643static int
f6ac5f3d 12644remote_supports_cond_tracepoints ()
782b2b07 12645{
4082afcc 12646 return packet_support (PACKET_ConditionalTracepoints) == PACKET_ENABLE;
782b2b07
SS
12647}
12648
57810aa7 12649bool
f6ac5f3d 12650remote_target::supports_evaluation_of_breakpoint_conditions ()
3788aec7 12651{
4082afcc 12652 return packet_support (PACKET_ConditionalBreakpoints) == PACKET_ENABLE;
3788aec7
LM
12653}
12654
70221824 12655static int
f6ac5f3d 12656remote_supports_fast_tracepoints ()
7a697b8d 12657{
4082afcc 12658 return packet_support (PACKET_FastTracepoints) == PACKET_ENABLE;
7a697b8d
SS
12659}
12660
0fb4aa4b 12661static int
f6ac5f3d 12662remote_supports_static_tracepoints ()
0fb4aa4b 12663{
4082afcc 12664 return packet_support (PACKET_StaticTracepoints) == PACKET_ENABLE;
0fb4aa4b
PA
12665}
12666
1e4d1764 12667static int
f6ac5f3d 12668remote_supports_install_in_trace ()
1e4d1764 12669{
4082afcc 12670 return packet_support (PACKET_InstallInTrace) == PACKET_ENABLE;
1e4d1764
YQ
12671}
12672
57810aa7 12673bool
f6ac5f3d 12674remote_target::supports_enable_disable_tracepoint ()
d248b706 12675{
4082afcc
PA
12676 return (packet_support (PACKET_EnableDisableTracepoints_feature)
12677 == PACKET_ENABLE);
d248b706
KY
12678}
12679
57810aa7 12680bool
f6ac5f3d 12681remote_target::supports_string_tracing ()
3065dfb6 12682{
4082afcc 12683 return packet_support (PACKET_tracenz_feature) == PACKET_ENABLE;
3065dfb6
SS
12684}
12685
57810aa7 12686bool
f6ac5f3d 12687remote_target::can_run_breakpoint_commands ()
d3ce09f5 12688{
4082afcc 12689 return packet_support (PACKET_BreakpointCommands) == PACKET_ENABLE;
d3ce09f5
SS
12690}
12691
f6ac5f3d
PA
12692void
12693remote_target::trace_init ()
35b1e5cc 12694{
b6bb3468
PA
12695 struct remote_state *rs = get_remote_state ();
12696
35b1e5cc 12697 putpkt ("QTinit");
b6bb3468 12698 remote_get_noisy_reply ();
8d64371b 12699 if (strcmp (rs->buf.data (), "OK") != 0)
35b1e5cc
SS
12700 error (_("Target does not support this command."));
12701}
12702
409873ef
SS
12703/* Recursive routine to walk through command list including loops, and
12704 download packets for each command. */
12705
6b8edb51
PA
12706void
12707remote_target::remote_download_command_source (int num, ULONGEST addr,
12708 struct command_line *cmds)
409873ef
SS
12709{
12710 struct remote_state *rs = get_remote_state ();
12711 struct command_line *cmd;
12712
12713 for (cmd = cmds; cmd; cmd = cmd->next)
12714 {
0df8b418 12715 QUIT; /* Allow user to bail out with ^C. */
8d64371b 12716 strcpy (rs->buf.data (), "QTDPsrc:");
409873ef 12717 encode_source_string (num, addr, "cmd", cmd->line,
8d64371b
TT
12718 rs->buf.data () + strlen (rs->buf.data ()),
12719 rs->buf.size () - strlen (rs->buf.data ()));
409873ef 12720 putpkt (rs->buf);
b6bb3468 12721 remote_get_noisy_reply ();
8d64371b 12722 if (strcmp (rs->buf.data (), "OK"))
409873ef
SS
12723 warning (_("Target does not support source download."));
12724
12725 if (cmd->control_type == while_control
12726 || cmd->control_type == while_stepping_control)
12727 {
12973681 12728 remote_download_command_source (num, addr, cmd->body_list_0.get ());
409873ef 12729
0df8b418 12730 QUIT; /* Allow user to bail out with ^C. */
8d64371b 12731 strcpy (rs->buf.data (), "QTDPsrc:");
409873ef 12732 encode_source_string (num, addr, "cmd", "end",
8d64371b
TT
12733 rs->buf.data () + strlen (rs->buf.data ()),
12734 rs->buf.size () - strlen (rs->buf.data ()));
409873ef 12735 putpkt (rs->buf);
b6bb3468 12736 remote_get_noisy_reply ();
8d64371b 12737 if (strcmp (rs->buf.data (), "OK"))
409873ef
SS
12738 warning (_("Target does not support source download."));
12739 }
12740 }
12741}
12742
f6ac5f3d
PA
12743void
12744remote_target::download_tracepoint (struct bp_location *loc)
35b1e5cc
SS
12745{
12746 CORE_ADDR tpaddr;
409873ef 12747 char addrbuf[40];
b44ec619
SM
12748 std::vector<std::string> tdp_actions;
12749 std::vector<std::string> stepping_actions;
35b1e5cc 12750 char *pkt;
e8ba3115 12751 struct breakpoint *b = loc->owner;
d9b3f62e 12752 struct tracepoint *t = (struct tracepoint *) b;
b6bb3468 12753 struct remote_state *rs = get_remote_state ();
3df3a985 12754 int ret;
ff36536c 12755 const char *err_msg = _("Tracepoint packet too large for target.");
3df3a985
PFC
12756 size_t size_left;
12757
12758 /* We use a buffer other than rs->buf because we'll build strings
12759 across multiple statements, and other statements in between could
12760 modify rs->buf. */
12761 gdb::char_vector buf (get_remote_packet_size ());
35b1e5cc 12762
dc673c81 12763 encode_actions_rsp (loc, &tdp_actions, &stepping_actions);
e8ba3115
YQ
12764
12765 tpaddr = loc->address;
12766 sprintf_vma (addrbuf, tpaddr);
3df3a985
PFC
12767 ret = snprintf (buf.data (), buf.size (), "QTDP:%x:%s:%c:%lx:%x",
12768 b->number, addrbuf, /* address */
12769 (b->enable_state == bp_enabled ? 'E' : 'D'),
12770 t->step_count, t->pass_count);
12771
12772 if (ret < 0 || ret >= buf.size ())
a7f25a84 12773 error ("%s", err_msg);
3df3a985 12774
e8ba3115
YQ
12775 /* Fast tracepoints are mostly handled by the target, but we can
12776 tell the target how big of an instruction block should be moved
12777 around. */
12778 if (b->type == bp_fast_tracepoint)
12779 {
12780 /* Only test for support at download time; we may not know
12781 target capabilities at definition time. */
12782 if (remote_supports_fast_tracepoints ())
35b1e5cc 12783 {
6b940e6a
PL
12784 if (gdbarch_fast_tracepoint_valid_at (loc->gdbarch, tpaddr,
12785 NULL))
3df3a985
PFC
12786 {
12787 size_left = buf.size () - strlen (buf.data ());
12788 ret = snprintf (buf.data () + strlen (buf.data ()),
12789 size_left, ":F%x",
12790 gdb_insn_length (loc->gdbarch, tpaddr));
12791
12792 if (ret < 0 || ret >= size_left)
a7f25a84 12793 error ("%s", err_msg);
3df3a985 12794 }
35b1e5cc 12795 else
e8ba3115
YQ
12796 /* If it passed validation at definition but fails now,
12797 something is very wrong. */
12798 internal_error (__FILE__, __LINE__,
12799 _("Fast tracepoint not "
12800 "valid during download"));
35b1e5cc 12801 }
e8ba3115
YQ
12802 else
12803 /* Fast tracepoints are functionally identical to regular
12804 tracepoints, so don't take lack of support as a reason to
12805 give up on the trace run. */
12806 warning (_("Target does not support fast tracepoints, "
12807 "downloading %d as regular tracepoint"), b->number);
12808 }
12809 else if (b->type == bp_static_tracepoint)
12810 {
12811 /* Only test for support at download time; we may not know
12812 target capabilities at definition time. */
12813 if (remote_supports_static_tracepoints ())
0fb4aa4b 12814 {
e8ba3115 12815 struct static_tracepoint_marker marker;
0fb4aa4b 12816
e8ba3115 12817 if (target_static_tracepoint_marker_at (tpaddr, &marker))
3df3a985
PFC
12818 {
12819 size_left = buf.size () - strlen (buf.data ());
12820 ret = snprintf (buf.data () + strlen (buf.data ()),
12821 size_left, ":S");
12822
12823 if (ret < 0 || ret >= size_left)
a7f25a84 12824 error ("%s", err_msg);
3df3a985 12825 }
0fb4aa4b 12826 else
e8ba3115 12827 error (_("Static tracepoint not valid during download"));
0fb4aa4b 12828 }
e8ba3115
YQ
12829 else
12830 /* Fast tracepoints are functionally identical to regular
12831 tracepoints, so don't take lack of support as a reason
12832 to give up on the trace run. */
12833 error (_("Target does not support static tracepoints"));
12834 }
12835 /* If the tracepoint has a conditional, make it into an agent
12836 expression and append to the definition. */
12837 if (loc->cond)
12838 {
12839 /* Only test support at download time, we may not know target
12840 capabilities at definition time. */
12841 if (remote_supports_cond_tracepoints ())
35b1e5cc 12842 {
3df3a985
PFC
12843 agent_expr_up aexpr = gen_eval_for_expr (tpaddr,
12844 loc->cond.get ());
12845
12846 size_left = buf.size () - strlen (buf.data ());
12847
12848 ret = snprintf (buf.data () + strlen (buf.data ()),
12849 size_left, ":X%x,", aexpr->len);
12850
12851 if (ret < 0 || ret >= size_left)
a7f25a84 12852 error ("%s", err_msg);
3df3a985
PFC
12853
12854 size_left = buf.size () - strlen (buf.data ());
12855
12856 /* Two bytes to encode each aexpr byte, plus the terminating
12857 null byte. */
12858 if (aexpr->len * 2 + 1 > size_left)
a7f25a84 12859 error ("%s", err_msg);
3df3a985
PFC
12860
12861 pkt = buf.data () + strlen (buf.data ());
12862
b44ec619 12863 for (int ndx = 0; ndx < aexpr->len; ++ndx)
e8ba3115
YQ
12864 pkt = pack_hex_byte (pkt, aexpr->buf[ndx]);
12865 *pkt = '\0';
35b1e5cc 12866 }
e8ba3115
YQ
12867 else
12868 warning (_("Target does not support conditional tracepoints, "
12869 "ignoring tp %d cond"), b->number);
12870 }
35b1e5cc 12871
d9b3f62e 12872 if (b->commands || *default_collect)
3df3a985
PFC
12873 {
12874 size_left = buf.size () - strlen (buf.data ());
12875
12876 ret = snprintf (buf.data () + strlen (buf.data ()),
12877 size_left, "-");
12878
12879 if (ret < 0 || ret >= size_left)
a7f25a84 12880 error ("%s", err_msg);
3df3a985
PFC
12881 }
12882
12883 putpkt (buf.data ());
b6bb3468 12884 remote_get_noisy_reply ();
8d64371b 12885 if (strcmp (rs->buf.data (), "OK"))
e8ba3115 12886 error (_("Target does not support tracepoints."));
35b1e5cc 12887
e8ba3115 12888 /* do_single_steps (t); */
b44ec619
SM
12889 for (auto action_it = tdp_actions.begin ();
12890 action_it != tdp_actions.end (); action_it++)
e8ba3115 12891 {
b44ec619
SM
12892 QUIT; /* Allow user to bail out with ^C. */
12893
aa6f3694 12894 bool has_more = ((action_it + 1) != tdp_actions.end ()
b44ec619
SM
12895 || !stepping_actions.empty ());
12896
3df3a985
PFC
12897 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%c",
12898 b->number, addrbuf, /* address */
12899 action_it->c_str (),
12900 has_more ? '-' : 0);
12901
12902 if (ret < 0 || ret >= buf.size ())
a7f25a84 12903 error ("%s", err_msg);
3df3a985
PFC
12904
12905 putpkt (buf.data ());
b44ec619 12906 remote_get_noisy_reply ();
8d64371b 12907 if (strcmp (rs->buf.data (), "OK"))
b44ec619 12908 error (_("Error on target while setting tracepoints."));
e8ba3115 12909 }
409873ef 12910
05abfc39
PFC
12911 for (auto action_it = stepping_actions.begin ();
12912 action_it != stepping_actions.end (); action_it++)
12913 {
12914 QUIT; /* Allow user to bail out with ^C. */
12915
12916 bool is_first = action_it == stepping_actions.begin ();
aa6f3694 12917 bool has_more = (action_it + 1) != stepping_actions.end ();
05abfc39 12918
3df3a985
PFC
12919 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%s%s",
12920 b->number, addrbuf, /* address */
12921 is_first ? "S" : "",
12922 action_it->c_str (),
12923 has_more ? "-" : "");
12924
12925 if (ret < 0 || ret >= buf.size ())
a7f25a84 12926 error ("%s", err_msg);
3df3a985
PFC
12927
12928 putpkt (buf.data ());
05abfc39 12929 remote_get_noisy_reply ();
8d64371b 12930 if (strcmp (rs->buf.data (), "OK"))
05abfc39
PFC
12931 error (_("Error on target while setting tracepoints."));
12932 }
b44ec619 12933
4082afcc 12934 if (packet_support (PACKET_TracepointSource) == PACKET_ENABLE)
e8ba3115 12935 {
f00aae0f 12936 if (b->location != NULL)
409873ef 12937 {
3df3a985
PFC
12938 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
12939
12940 if (ret < 0 || ret >= buf.size ())
a7f25a84 12941 error ("%s", err_msg);
3df3a985 12942
f00aae0f 12943 encode_source_string (b->number, loc->address, "at",
d28cd78a 12944 event_location_to_string (b->location.get ()),
3df3a985
PFC
12945 buf.data () + strlen (buf.data ()),
12946 buf.size () - strlen (buf.data ()));
12947 putpkt (buf.data ());
b6bb3468 12948 remote_get_noisy_reply ();
8d64371b 12949 if (strcmp (rs->buf.data (), "OK"))
e8ba3115 12950 warning (_("Target does not support source download."));
409873ef 12951 }
e8ba3115
YQ
12952 if (b->cond_string)
12953 {
3df3a985
PFC
12954 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
12955
12956 if (ret < 0 || ret >= buf.size ())
a7f25a84 12957 error ("%s", err_msg);
3df3a985 12958
e8ba3115 12959 encode_source_string (b->number, loc->address,
3df3a985
PFC
12960 "cond", b->cond_string,
12961 buf.data () + strlen (buf.data ()),
12962 buf.size () - strlen (buf.data ()));
12963 putpkt (buf.data ());
b6bb3468 12964 remote_get_noisy_reply ();
8d64371b 12965 if (strcmp (rs->buf.data (), "OK"))
e8ba3115
YQ
12966 warning (_("Target does not support source download."));
12967 }
12968 remote_download_command_source (b->number, loc->address,
12969 breakpoint_commands (b));
35b1e5cc 12970 }
35b1e5cc
SS
12971}
12972
57810aa7 12973bool
f6ac5f3d 12974remote_target::can_download_tracepoint ()
1e4d1764 12975{
1e51243a
PA
12976 struct remote_state *rs = get_remote_state ();
12977 struct trace_status *ts;
12978 int status;
12979
12980 /* Don't try to install tracepoints until we've relocated our
12981 symbols, and fetched and merged the target's tracepoint list with
12982 ours. */
12983 if (rs->starting_up)
57810aa7 12984 return false;
1e51243a
PA
12985
12986 ts = current_trace_status ();
f6ac5f3d 12987 status = get_trace_status (ts);
1e4d1764
YQ
12988
12989 if (status == -1 || !ts->running_known || !ts->running)
57810aa7 12990 return false;
1e4d1764
YQ
12991
12992 /* If we are in a tracing experiment, but remote stub doesn't support
12993 installing tracepoint in trace, we have to return. */
12994 if (!remote_supports_install_in_trace ())
57810aa7 12995 return false;
1e4d1764 12996
57810aa7 12997 return true;
1e4d1764
YQ
12998}
12999
13000
f6ac5f3d
PA
13001void
13002remote_target::download_trace_state_variable (const trace_state_variable &tsv)
35b1e5cc
SS
13003{
13004 struct remote_state *rs = get_remote_state ();
00bf0b85 13005 char *p;
35b1e5cc 13006
8d64371b 13007 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDV:%x:%s:%x:",
c252925c
SM
13008 tsv.number, phex ((ULONGEST) tsv.initial_value, 8),
13009 tsv.builtin);
8d64371b
TT
13010 p = rs->buf.data () + strlen (rs->buf.data ());
13011 if ((p - rs->buf.data ()) + tsv.name.length () * 2
13012 >= get_remote_packet_size ())
00bf0b85 13013 error (_("Trace state variable name too long for tsv definition packet"));
c252925c 13014 p += 2 * bin2hex ((gdb_byte *) (tsv.name.data ()), p, tsv.name.length ());
00bf0b85 13015 *p++ = '\0';
35b1e5cc 13016 putpkt (rs->buf);
b6bb3468 13017 remote_get_noisy_reply ();
8d64371b 13018 if (rs->buf[0] == '\0')
ad91cd99 13019 error (_("Target does not support this command."));
8d64371b 13020 if (strcmp (rs->buf.data (), "OK") != 0)
ad91cd99 13021 error (_("Error on target while downloading trace state variable."));
35b1e5cc
SS
13022}
13023
f6ac5f3d
PA
13024void
13025remote_target::enable_tracepoint (struct bp_location *location)
d248b706
KY
13026{
13027 struct remote_state *rs = get_remote_state ();
13028 char addr_buf[40];
13029
13030 sprintf_vma (addr_buf, location->address);
8d64371b 13031 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTEnable:%x:%s",
bba74b36 13032 location->owner->number, addr_buf);
d248b706 13033 putpkt (rs->buf);
b6bb3468 13034 remote_get_noisy_reply ();
8d64371b 13035 if (rs->buf[0] == '\0')
d248b706 13036 error (_("Target does not support enabling tracepoints while a trace run is ongoing."));
8d64371b 13037 if (strcmp (rs->buf.data (), "OK") != 0)
d248b706
KY
13038 error (_("Error on target while enabling tracepoint."));
13039}
13040
f6ac5f3d
PA
13041void
13042remote_target::disable_tracepoint (struct bp_location *location)
d248b706
KY
13043{
13044 struct remote_state *rs = get_remote_state ();
13045 char addr_buf[40];
13046
13047 sprintf_vma (addr_buf, location->address);
8d64371b 13048 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDisable:%x:%s",
bba74b36 13049 location->owner->number, addr_buf);
d248b706 13050 putpkt (rs->buf);
b6bb3468 13051 remote_get_noisy_reply ();
8d64371b 13052 if (rs->buf[0] == '\0')
d248b706 13053 error (_("Target does not support disabling tracepoints while a trace run is ongoing."));
8d64371b 13054 if (strcmp (rs->buf.data (), "OK") != 0)
d248b706
KY
13055 error (_("Error on target while disabling tracepoint."));
13056}
13057
f6ac5f3d
PA
13058void
13059remote_target::trace_set_readonly_regions ()
35b1e5cc
SS
13060{
13061 asection *s;
81b9b86e 13062 bfd *abfd = NULL;
35b1e5cc 13063 bfd_size_type size;
608bcef2 13064 bfd_vma vma;
35b1e5cc 13065 int anysecs = 0;
c2fa21f1 13066 int offset = 0;
35b1e5cc
SS
13067
13068 if (!exec_bfd)
13069 return; /* No information to give. */
13070
b6bb3468
PA
13071 struct remote_state *rs = get_remote_state ();
13072
8d64371b
TT
13073 strcpy (rs->buf.data (), "QTro");
13074 offset = strlen (rs->buf.data ());
35b1e5cc
SS
13075 for (s = exec_bfd->sections; s; s = s->next)
13076 {
13077 char tmp1[40], tmp2[40];
c2fa21f1 13078 int sec_length;
35b1e5cc
SS
13079
13080 if ((s->flags & SEC_LOAD) == 0 ||
0df8b418 13081 /* (s->flags & SEC_CODE) == 0 || */
35b1e5cc
SS
13082 (s->flags & SEC_READONLY) == 0)
13083 continue;
13084
13085 anysecs = 1;
81b9b86e 13086 vma = bfd_get_section_vma (abfd, s);
35b1e5cc 13087 size = bfd_get_section_size (s);
608bcef2
HZ
13088 sprintf_vma (tmp1, vma);
13089 sprintf_vma (tmp2, vma + size);
c2fa21f1 13090 sec_length = 1 + strlen (tmp1) + 1 + strlen (tmp2);
8d64371b 13091 if (offset + sec_length + 1 > rs->buf.size ())
c2fa21f1 13092 {
4082afcc 13093 if (packet_support (PACKET_qXfer_traceframe_info) != PACKET_ENABLE)
864ac8a7 13094 warning (_("\
c2fa21f1
HZ
13095Too many sections for read-only sections definition packet."));
13096 break;
13097 }
8d64371b 13098 xsnprintf (rs->buf.data () + offset, rs->buf.size () - offset, ":%s,%s",
bba74b36 13099 tmp1, tmp2);
c2fa21f1 13100 offset += sec_length;
35b1e5cc
SS
13101 }
13102 if (anysecs)
13103 {
b6bb3468 13104 putpkt (rs->buf);
8d64371b 13105 getpkt (&rs->buf, 0);
35b1e5cc
SS
13106 }
13107}
13108
f6ac5f3d
PA
13109void
13110remote_target::trace_start ()
35b1e5cc 13111{
b6bb3468
PA
13112 struct remote_state *rs = get_remote_state ();
13113
35b1e5cc 13114 putpkt ("QTStart");
b6bb3468 13115 remote_get_noisy_reply ();
8d64371b 13116 if (rs->buf[0] == '\0')
ad91cd99 13117 error (_("Target does not support this command."));
8d64371b
TT
13118 if (strcmp (rs->buf.data (), "OK") != 0)
13119 error (_("Bogus reply from target: %s"), rs->buf.data ());
35b1e5cc
SS
13120}
13121
f6ac5f3d
PA
13122int
13123remote_target::get_trace_status (struct trace_status *ts)
35b1e5cc 13124{
953b98d1 13125 /* Initialize it just to avoid a GCC false warning. */
f652de6f 13126 char *p = NULL;
0df8b418 13127 /* FIXME we need to get register block size some other way. */
00bf0b85 13128 extern int trace_regblock_size;
bd3eecc3 13129 enum packet_result result;
b6bb3468 13130 struct remote_state *rs = get_remote_state ();
bd3eecc3 13131
4082afcc 13132 if (packet_support (PACKET_qTStatus) == PACKET_DISABLE)
bd3eecc3 13133 return -1;
a744cf53 13134
5cd63fda 13135 trace_regblock_size
9d6eea31 13136 = rs->get_remote_arch_state (target_gdbarch ())->sizeof_g_packet;
00bf0b85 13137
049dc89b
JK
13138 putpkt ("qTStatus");
13139
a70b8144 13140 try
67f41397 13141 {
b6bb3468 13142 p = remote_get_noisy_reply ();
67f41397 13143 }
230d2906 13144 catch (const gdb_exception_error &ex)
67f41397 13145 {
598d3636
JK
13146 if (ex.error != TARGET_CLOSE_ERROR)
13147 {
13148 exception_fprintf (gdb_stderr, ex, "qTStatus: ");
13149 return -1;
13150 }
eedc3f4f 13151 throw;
67f41397 13152 }
00bf0b85 13153
bd3eecc3
PA
13154 result = packet_ok (p, &remote_protocol_packets[PACKET_qTStatus]);
13155
00bf0b85 13156 /* If the remote target doesn't do tracing, flag it. */
bd3eecc3 13157 if (result == PACKET_UNKNOWN)
00bf0b85 13158 return -1;
35b1e5cc 13159
00bf0b85 13160 /* We're working with a live target. */
f5911ea1 13161 ts->filename = NULL;
00bf0b85 13162
00bf0b85 13163 if (*p++ != 'T')
8d64371b 13164 error (_("Bogus trace status reply from target: %s"), rs->buf.data ());
35b1e5cc 13165
84cebc4a
YQ
13166 /* Function 'parse_trace_status' sets default value of each field of
13167 'ts' at first, so we don't have to do it here. */
00bf0b85
SS
13168 parse_trace_status (p, ts);
13169
13170 return ts->running;
35b1e5cc
SS
13171}
13172
f6ac5f3d
PA
13173void
13174remote_target::get_tracepoint_status (struct breakpoint *bp,
13175 struct uploaded_tp *utp)
f196051f
SS
13176{
13177 struct remote_state *rs = get_remote_state ();
f196051f
SS
13178 char *reply;
13179 struct bp_location *loc;
13180 struct tracepoint *tp = (struct tracepoint *) bp;
bba74b36 13181 size_t size = get_remote_packet_size ();
f196051f
SS
13182
13183 if (tp)
13184 {
c1fc2657 13185 tp->hit_count = 0;
f196051f 13186 tp->traceframe_usage = 0;
c1fc2657 13187 for (loc = tp->loc; loc; loc = loc->next)
f196051f
SS
13188 {
13189 /* If the tracepoint was never downloaded, don't go asking for
13190 any status. */
13191 if (tp->number_on_target == 0)
13192 continue;
8d64371b 13193 xsnprintf (rs->buf.data (), size, "qTP:%x:%s", tp->number_on_target,
bba74b36 13194 phex_nz (loc->address, 0));
f196051f 13195 putpkt (rs->buf);
b6bb3468 13196 reply = remote_get_noisy_reply ();
f196051f
SS
13197 if (reply && *reply)
13198 {
13199 if (*reply == 'V')
13200 parse_tracepoint_status (reply + 1, bp, utp);
13201 }
13202 }
13203 }
13204 else if (utp)
13205 {
13206 utp->hit_count = 0;
13207 utp->traceframe_usage = 0;
8d64371b 13208 xsnprintf (rs->buf.data (), size, "qTP:%x:%s", utp->number,
bba74b36 13209 phex_nz (utp->addr, 0));
f196051f 13210 putpkt (rs->buf);
b6bb3468 13211 reply = remote_get_noisy_reply ();
f196051f
SS
13212 if (reply && *reply)
13213 {
13214 if (*reply == 'V')
13215 parse_tracepoint_status (reply + 1, bp, utp);
13216 }
13217 }
13218}
13219
f6ac5f3d
PA
13220void
13221remote_target::trace_stop ()
35b1e5cc 13222{
b6bb3468
PA
13223 struct remote_state *rs = get_remote_state ();
13224
35b1e5cc 13225 putpkt ("QTStop");
b6bb3468 13226 remote_get_noisy_reply ();
8d64371b 13227 if (rs->buf[0] == '\0')
ad91cd99 13228 error (_("Target does not support this command."));
8d64371b
TT
13229 if (strcmp (rs->buf.data (), "OK") != 0)
13230 error (_("Bogus reply from target: %s"), rs->buf.data ());
35b1e5cc
SS
13231}
13232
f6ac5f3d
PA
13233int
13234remote_target::trace_find (enum trace_find_type type, int num,
13235 CORE_ADDR addr1, CORE_ADDR addr2,
13236 int *tpp)
35b1e5cc
SS
13237{
13238 struct remote_state *rs = get_remote_state ();
8d64371b 13239 char *endbuf = rs->buf.data () + get_remote_packet_size ();
35b1e5cc
SS
13240 char *p, *reply;
13241 int target_frameno = -1, target_tracept = -1;
13242
e6e4e701
PA
13243 /* Lookups other than by absolute frame number depend on the current
13244 trace selected, so make sure it is correct on the remote end
13245 first. */
13246 if (type != tfind_number)
13247 set_remote_traceframe ();
13248
8d64371b 13249 p = rs->buf.data ();
35b1e5cc
SS
13250 strcpy (p, "QTFrame:");
13251 p = strchr (p, '\0');
13252 switch (type)
13253 {
13254 case tfind_number:
bba74b36 13255 xsnprintf (p, endbuf - p, "%x", num);
35b1e5cc
SS
13256 break;
13257 case tfind_pc:
bba74b36 13258 xsnprintf (p, endbuf - p, "pc:%s", phex_nz (addr1, 0));
35b1e5cc
SS
13259 break;
13260 case tfind_tp:
bba74b36 13261 xsnprintf (p, endbuf - p, "tdp:%x", num);
35b1e5cc
SS
13262 break;
13263 case tfind_range:
bba74b36
YQ
13264 xsnprintf (p, endbuf - p, "range:%s:%s", phex_nz (addr1, 0),
13265 phex_nz (addr2, 0));
35b1e5cc
SS
13266 break;
13267 case tfind_outside:
bba74b36
YQ
13268 xsnprintf (p, endbuf - p, "outside:%s:%s", phex_nz (addr1, 0),
13269 phex_nz (addr2, 0));
35b1e5cc
SS
13270 break;
13271 default:
9b20d036 13272 error (_("Unknown trace find type %d"), type);
35b1e5cc
SS
13273 }
13274
13275 putpkt (rs->buf);
b6bb3468 13276 reply = remote_get_noisy_reply ();
ad91cd99
PA
13277 if (*reply == '\0')
13278 error (_("Target does not support this command."));
35b1e5cc
SS
13279
13280 while (reply && *reply)
13281 switch (*reply)
13282 {
13283 case 'F':
f197e0f1
VP
13284 p = ++reply;
13285 target_frameno = (int) strtol (p, &reply, 16);
13286 if (reply == p)
13287 error (_("Unable to parse trace frame number"));
e6e4e701
PA
13288 /* Don't update our remote traceframe number cache on failure
13289 to select a remote traceframe. */
f197e0f1
VP
13290 if (target_frameno == -1)
13291 return -1;
35b1e5cc
SS
13292 break;
13293 case 'T':
f197e0f1
VP
13294 p = ++reply;
13295 target_tracept = (int) strtol (p, &reply, 16);
13296 if (reply == p)
13297 error (_("Unable to parse tracepoint number"));
35b1e5cc
SS
13298 break;
13299 case 'O': /* "OK"? */
13300 if (reply[1] == 'K' && reply[2] == '\0')
13301 reply += 2;
13302 else
13303 error (_("Bogus reply from target: %s"), reply);
13304 break;
13305 default:
13306 error (_("Bogus reply from target: %s"), reply);
13307 }
13308 if (tpp)
13309 *tpp = target_tracept;
e6e4e701 13310
262e1174 13311 rs->remote_traceframe_number = target_frameno;
35b1e5cc
SS
13312 return target_frameno;
13313}
13314
57810aa7 13315bool
f6ac5f3d 13316remote_target::get_trace_state_variable_value (int tsvnum, LONGEST *val)
35b1e5cc
SS
13317{
13318 struct remote_state *rs = get_remote_state ();
13319 char *reply;
13320 ULONGEST uval;
13321
e6e4e701
PA
13322 set_remote_traceframe ();
13323
8d64371b 13324 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTV:%x", tsvnum);
35b1e5cc 13325 putpkt (rs->buf);
b6bb3468 13326 reply = remote_get_noisy_reply ();
35b1e5cc
SS
13327 if (reply && *reply)
13328 {
13329 if (*reply == 'V')
13330 {
13331 unpack_varlen_hex (reply + 1, &uval);
13332 *val = (LONGEST) uval;
57810aa7 13333 return true;
35b1e5cc
SS
13334 }
13335 }
57810aa7 13336 return false;
35b1e5cc
SS
13337}
13338
f6ac5f3d
PA
13339int
13340remote_target::save_trace_data (const char *filename)
00bf0b85
SS
13341{
13342 struct remote_state *rs = get_remote_state ();
13343 char *p, *reply;
13344
8d64371b 13345 p = rs->buf.data ();
00bf0b85
SS
13346 strcpy (p, "QTSave:");
13347 p += strlen (p);
8d64371b
TT
13348 if ((p - rs->buf.data ()) + strlen (filename) * 2
13349 >= get_remote_packet_size ())
00bf0b85 13350 error (_("Remote file name too long for trace save packet"));
9f1b45b0 13351 p += 2 * bin2hex ((gdb_byte *) filename, p, strlen (filename));
00bf0b85
SS
13352 *p++ = '\0';
13353 putpkt (rs->buf);
b6bb3468 13354 reply = remote_get_noisy_reply ();
d6c5869f 13355 if (*reply == '\0')
ad91cd99
PA
13356 error (_("Target does not support this command."));
13357 if (strcmp (reply, "OK") != 0)
13358 error (_("Bogus reply from target: %s"), reply);
00bf0b85
SS
13359 return 0;
13360}
13361
13362/* This is basically a memory transfer, but needs to be its own packet
13363 because we don't know how the target actually organizes its trace
13364 memory, plus we want to be able to ask for as much as possible, but
13365 not be unhappy if we don't get as much as we ask for. */
13366
f6ac5f3d
PA
13367LONGEST
13368remote_target::get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len)
00bf0b85
SS
13369{
13370 struct remote_state *rs = get_remote_state ();
13371 char *reply;
13372 char *p;
13373 int rslt;
13374
8d64371b 13375 p = rs->buf.data ();
00bf0b85
SS
13376 strcpy (p, "qTBuffer:");
13377 p += strlen (p);
13378 p += hexnumstr (p, offset);
13379 *p++ = ',';
13380 p += hexnumstr (p, len);
13381 *p++ = '\0';
13382
13383 putpkt (rs->buf);
b6bb3468 13384 reply = remote_get_noisy_reply ();
00bf0b85
SS
13385 if (reply && *reply)
13386 {
13387 /* 'l' by itself means we're at the end of the buffer and
13388 there is nothing more to get. */
13389 if (*reply == 'l')
13390 return 0;
13391
13392 /* Convert the reply into binary. Limit the number of bytes to
13393 convert according to our passed-in buffer size, rather than
13394 what was returned in the packet; if the target is
13395 unexpectedly generous and gives us a bigger reply than we
13396 asked for, we don't want to crash. */
b6bb3468 13397 rslt = hex2bin (reply, buf, len);
00bf0b85
SS
13398 return rslt;
13399 }
13400
13401 /* Something went wrong, flag as an error. */
13402 return -1;
13403}
13404
f6ac5f3d
PA
13405void
13406remote_target::set_disconnected_tracing (int val)
35b1e5cc
SS
13407{
13408 struct remote_state *rs = get_remote_state ();
13409
4082afcc 13410 if (packet_support (PACKET_DisconnectedTracing_feature) == PACKET_ENABLE)
33da3f1c 13411 {
ad91cd99
PA
13412 char *reply;
13413
8d64371b
TT
13414 xsnprintf (rs->buf.data (), get_remote_packet_size (),
13415 "QTDisconnected:%x", val);
33da3f1c 13416 putpkt (rs->buf);
b6bb3468 13417 reply = remote_get_noisy_reply ();
ad91cd99 13418 if (*reply == '\0')
33da3f1c 13419 error (_("Target does not support this command."));
ad91cd99
PA
13420 if (strcmp (reply, "OK") != 0)
13421 error (_("Bogus reply from target: %s"), reply);
33da3f1c
SS
13422 }
13423 else if (val)
13424 warning (_("Target does not support disconnected tracing."));
35b1e5cc
SS
13425}
13426
f6ac5f3d
PA
13427int
13428remote_target::core_of_thread (ptid_t ptid)
dc146f7c
VP
13429{
13430 struct thread_info *info = find_thread_ptid (ptid);
a744cf53 13431
7aabaf9d
SM
13432 if (info != NULL && info->priv != NULL)
13433 return get_remote_thread_info (info)->core;
13434
dc146f7c
VP
13435 return -1;
13436}
13437
f6ac5f3d
PA
13438void
13439remote_target::set_circular_trace_buffer (int val)
4daf5ac0
SS
13440{
13441 struct remote_state *rs = get_remote_state ();
ad91cd99 13442 char *reply;
4daf5ac0 13443
8d64371b
TT
13444 xsnprintf (rs->buf.data (), get_remote_packet_size (),
13445 "QTBuffer:circular:%x", val);
4daf5ac0 13446 putpkt (rs->buf);
b6bb3468 13447 reply = remote_get_noisy_reply ();
ad91cd99 13448 if (*reply == '\0')
4daf5ac0 13449 error (_("Target does not support this command."));
ad91cd99
PA
13450 if (strcmp (reply, "OK") != 0)
13451 error (_("Bogus reply from target: %s"), reply);
4daf5ac0
SS
13452}
13453
f6ac5f3d
PA
13454traceframe_info_up
13455remote_target::traceframe_info ()
b3b9301e 13456{
9018be22 13457 gdb::optional<gdb::char_vector> text
8b88a78e 13458 = target_read_stralloc (current_top_target (), TARGET_OBJECT_TRACEFRAME_INFO,
b7b030ad 13459 NULL);
9018be22
SM
13460 if (text)
13461 return parse_traceframe_info (text->data ());
b3b9301e
PA
13462
13463 return NULL;
13464}
13465
405f8e94
SS
13466/* Handle the qTMinFTPILen packet. Returns the minimum length of
13467 instruction on which a fast tracepoint may be placed. Returns -1
13468 if the packet is not supported, and 0 if the minimum instruction
13469 length is unknown. */
13470
f6ac5f3d
PA
13471int
13472remote_target::get_min_fast_tracepoint_insn_len ()
405f8e94
SS
13473{
13474 struct remote_state *rs = get_remote_state ();
13475 char *reply;
13476
e886a173
PA
13477 /* If we're not debugging a process yet, the IPA can't be
13478 loaded. */
13479 if (!target_has_execution)
13480 return 0;
13481
13482 /* Make sure the remote is pointing at the right process. */
13483 set_general_process ();
13484
8d64371b 13485 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTMinFTPILen");
405f8e94 13486 putpkt (rs->buf);
b6bb3468 13487 reply = remote_get_noisy_reply ();
405f8e94
SS
13488 if (*reply == '\0')
13489 return -1;
13490 else
13491 {
13492 ULONGEST min_insn_len;
13493
13494 unpack_varlen_hex (reply, &min_insn_len);
13495
13496 return (int) min_insn_len;
13497 }
13498}
13499
f6ac5f3d
PA
13500void
13501remote_target::set_trace_buffer_size (LONGEST val)
f6f899bf 13502{
4082afcc 13503 if (packet_support (PACKET_QTBuffer_size) != PACKET_DISABLE)
f6f899bf
HAQ
13504 {
13505 struct remote_state *rs = get_remote_state ();
8d64371b
TT
13506 char *buf = rs->buf.data ();
13507 char *endbuf = buf + get_remote_packet_size ();
f6f899bf
HAQ
13508 enum packet_result result;
13509
13510 gdb_assert (val >= 0 || val == -1);
13511 buf += xsnprintf (buf, endbuf - buf, "QTBuffer:size:");
13512 /* Send -1 as literal "-1" to avoid host size dependency. */
13513 if (val < 0)
13514 {
13515 *buf++ = '-';
13516 buf += hexnumstr (buf, (ULONGEST) -val);
13517 }
13518 else
13519 buf += hexnumstr (buf, (ULONGEST) val);
13520
13521 putpkt (rs->buf);
b6bb3468 13522 remote_get_noisy_reply ();
f6f899bf
HAQ
13523 result = packet_ok (rs->buf,
13524 &remote_protocol_packets[PACKET_QTBuffer_size]);
13525
13526 if (result != PACKET_OK)
8d64371b 13527 warning (_("Bogus reply from target: %s"), rs->buf.data ());
f6f899bf
HAQ
13528 }
13529}
13530
57810aa7 13531bool
f6ac5f3d
PA
13532remote_target::set_trace_notes (const char *user, const char *notes,
13533 const char *stop_notes)
f196051f
SS
13534{
13535 struct remote_state *rs = get_remote_state ();
13536 char *reply;
8d64371b
TT
13537 char *buf = rs->buf.data ();
13538 char *endbuf = buf + get_remote_packet_size ();
f196051f
SS
13539 int nbytes;
13540
13541 buf += xsnprintf (buf, endbuf - buf, "QTNotes:");
13542 if (user)
13543 {
13544 buf += xsnprintf (buf, endbuf - buf, "user:");
9f1b45b0 13545 nbytes = bin2hex ((gdb_byte *) user, buf, strlen (user));
f196051f
SS
13546 buf += 2 * nbytes;
13547 *buf++ = ';';
13548 }
13549 if (notes)
13550 {
13551 buf += xsnprintf (buf, endbuf - buf, "notes:");
9f1b45b0 13552 nbytes = bin2hex ((gdb_byte *) notes, buf, strlen (notes));
f196051f
SS
13553 buf += 2 * nbytes;
13554 *buf++ = ';';
13555 }
13556 if (stop_notes)
13557 {
13558 buf += xsnprintf (buf, endbuf - buf, "tstop:");
9f1b45b0 13559 nbytes = bin2hex ((gdb_byte *) stop_notes, buf, strlen (stop_notes));
f196051f
SS
13560 buf += 2 * nbytes;
13561 *buf++ = ';';
13562 }
13563 /* Ensure the buffer is terminated. */
13564 *buf = '\0';
13565
13566 putpkt (rs->buf);
b6bb3468 13567 reply = remote_get_noisy_reply ();
f196051f 13568 if (*reply == '\0')
57810aa7 13569 return false;
f196051f
SS
13570
13571 if (strcmp (reply, "OK") != 0)
13572 error (_("Bogus reply from target: %s"), reply);
13573
57810aa7 13574 return true;
f196051f
SS
13575}
13576
57810aa7
PA
13577bool
13578remote_target::use_agent (bool use)
d1feda86 13579{
4082afcc 13580 if (packet_support (PACKET_QAgent) != PACKET_DISABLE)
d1feda86
YQ
13581 {
13582 struct remote_state *rs = get_remote_state ();
13583
13584 /* If the stub supports QAgent. */
8d64371b 13585 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QAgent:%d", use);
d1feda86 13586 putpkt (rs->buf);
8d64371b 13587 getpkt (&rs->buf, 0);
d1feda86 13588
8d64371b 13589 if (strcmp (rs->buf.data (), "OK") == 0)
d1feda86 13590 {
f6ac5f3d 13591 ::use_agent = use;
57810aa7 13592 return true;
d1feda86
YQ
13593 }
13594 }
13595
57810aa7 13596 return false;
d1feda86
YQ
13597}
13598
57810aa7 13599bool
f6ac5f3d 13600remote_target::can_use_agent ()
d1feda86 13601{
4082afcc 13602 return (packet_support (PACKET_QAgent) != PACKET_DISABLE);
d1feda86
YQ
13603}
13604
9accd112
MM
13605struct btrace_target_info
13606{
13607 /* The ptid of the traced thread. */
13608 ptid_t ptid;
f4abbc16
MM
13609
13610 /* The obtained branch trace configuration. */
13611 struct btrace_config conf;
9accd112
MM
13612};
13613
f4abbc16
MM
13614/* Reset our idea of our target's btrace configuration. */
13615
13616static void
6b8edb51 13617remote_btrace_reset (remote_state *rs)
f4abbc16 13618{
f4abbc16
MM
13619 memset (&rs->btrace_config, 0, sizeof (rs->btrace_config));
13620}
13621
f4abbc16
MM
13622/* Synchronize the configuration with the target. */
13623
6b8edb51
PA
13624void
13625remote_target::btrace_sync_conf (const btrace_config *conf)
f4abbc16 13626{
d33501a5
MM
13627 struct packet_config *packet;
13628 struct remote_state *rs;
13629 char *buf, *pos, *endbuf;
13630
13631 rs = get_remote_state ();
8d64371b 13632 buf = rs->buf.data ();
d33501a5
MM
13633 endbuf = buf + get_remote_packet_size ();
13634
13635 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_bts_size];
13636 if (packet_config_support (packet) == PACKET_ENABLE
13637 && conf->bts.size != rs->btrace_config.bts.size)
13638 {
13639 pos = buf;
13640 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13641 conf->bts.size);
13642
13643 putpkt (buf);
8d64371b 13644 getpkt (&rs->buf, 0);
d33501a5
MM
13645
13646 if (packet_ok (buf, packet) == PACKET_ERROR)
13647 {
13648 if (buf[0] == 'E' && buf[1] == '.')
13649 error (_("Failed to configure the BTS buffer size: %s"), buf + 2);
13650 else
13651 error (_("Failed to configure the BTS buffer size."));
13652 }
13653
13654 rs->btrace_config.bts.size = conf->bts.size;
13655 }
b20a6524
MM
13656
13657 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_pt_size];
13658 if (packet_config_support (packet) == PACKET_ENABLE
13659 && conf->pt.size != rs->btrace_config.pt.size)
13660 {
13661 pos = buf;
13662 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13663 conf->pt.size);
13664
13665 putpkt (buf);
8d64371b 13666 getpkt (&rs->buf, 0);
b20a6524
MM
13667
13668 if (packet_ok (buf, packet) == PACKET_ERROR)
13669 {
13670 if (buf[0] == 'E' && buf[1] == '.')
13671 error (_("Failed to configure the trace buffer size: %s"), buf + 2);
13672 else
13673 error (_("Failed to configure the trace buffer size."));
13674 }
13675
13676 rs->btrace_config.pt.size = conf->pt.size;
13677 }
f4abbc16
MM
13678}
13679
13680/* Read the current thread's btrace configuration from the target and
13681 store it into CONF. */
13682
13683static void
13684btrace_read_config (struct btrace_config *conf)
13685{
9018be22 13686 gdb::optional<gdb::char_vector> xml
8b88a78e 13687 = target_read_stralloc (current_top_target (), TARGET_OBJECT_BTRACE_CONF, "");
9018be22
SM
13688 if (xml)
13689 parse_xml_btrace_conf (conf, xml->data ());
f4abbc16
MM
13690}
13691
c0272db5
TW
13692/* Maybe reopen target btrace. */
13693
6b8edb51
PA
13694void
13695remote_target::remote_btrace_maybe_reopen ()
c0272db5
TW
13696{
13697 struct remote_state *rs = get_remote_state ();
c0272db5 13698 int btrace_target_pushed = 0;
15766370 13699#if !defined (HAVE_LIBIPT)
c0272db5 13700 int warned = 0;
15766370 13701#endif
c0272db5 13702
5ed8105e
PA
13703 scoped_restore_current_thread restore_thread;
13704
08036331 13705 for (thread_info *tp : all_non_exited_threads ())
c0272db5
TW
13706 {
13707 set_general_thread (tp->ptid);
13708
13709 memset (&rs->btrace_config, 0x00, sizeof (struct btrace_config));
13710 btrace_read_config (&rs->btrace_config);
13711
13712 if (rs->btrace_config.format == BTRACE_FORMAT_NONE)
13713 continue;
13714
13715#if !defined (HAVE_LIBIPT)
13716 if (rs->btrace_config.format == BTRACE_FORMAT_PT)
13717 {
13718 if (!warned)
13719 {
13720 warned = 1;
c4e12631
MM
13721 warning (_("Target is recording using Intel Processor Trace "
13722 "but support was disabled at compile time."));
c0272db5
TW
13723 }
13724
13725 continue;
13726 }
13727#endif /* !defined (HAVE_LIBIPT) */
13728
13729 /* Push target, once, but before anything else happens. This way our
13730 changes to the threads will be cleaned up by unpushing the target
13731 in case btrace_read_config () throws. */
13732 if (!btrace_target_pushed)
13733 {
13734 btrace_target_pushed = 1;
13735 record_btrace_push_target ();
13736 printf_filtered (_("Target is recording using %s.\n"),
13737 btrace_format_string (rs->btrace_config.format));
13738 }
13739
13740 tp->btrace.target = XCNEW (struct btrace_target_info);
13741 tp->btrace.target->ptid = tp->ptid;
13742 tp->btrace.target->conf = rs->btrace_config;
13743 }
c0272db5
TW
13744}
13745
9accd112
MM
13746/* Enable branch tracing. */
13747
f6ac5f3d
PA
13748struct btrace_target_info *
13749remote_target::enable_btrace (ptid_t ptid, const struct btrace_config *conf)
9accd112
MM
13750{
13751 struct btrace_target_info *tinfo = NULL;
b20a6524 13752 struct packet_config *packet = NULL;
9accd112 13753 struct remote_state *rs = get_remote_state ();
8d64371b
TT
13754 char *buf = rs->buf.data ();
13755 char *endbuf = buf + get_remote_packet_size ();
9accd112 13756
b20a6524
MM
13757 switch (conf->format)
13758 {
13759 case BTRACE_FORMAT_BTS:
13760 packet = &remote_protocol_packets[PACKET_Qbtrace_bts];
13761 break;
13762
13763 case BTRACE_FORMAT_PT:
13764 packet = &remote_protocol_packets[PACKET_Qbtrace_pt];
13765 break;
13766 }
13767
13768 if (packet == NULL || packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13769 error (_("Target does not support branch tracing."));
13770
f4abbc16
MM
13771 btrace_sync_conf (conf);
13772
9accd112
MM
13773 set_general_thread (ptid);
13774
13775 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
13776 putpkt (rs->buf);
8d64371b 13777 getpkt (&rs->buf, 0);
9accd112
MM
13778
13779 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
13780 {
13781 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
13782 error (_("Could not enable branch tracing for %s: %s"),
a068643d 13783 target_pid_to_str (ptid).c_str (), &rs->buf[2]);
9accd112
MM
13784 else
13785 error (_("Could not enable branch tracing for %s."),
a068643d 13786 target_pid_to_str (ptid).c_str ());
9accd112
MM
13787 }
13788
8d749320 13789 tinfo = XCNEW (struct btrace_target_info);
9accd112
MM
13790 tinfo->ptid = ptid;
13791
f4abbc16
MM
13792 /* If we fail to read the configuration, we lose some information, but the
13793 tracing itself is not impacted. */
a70b8144 13794 try
492d29ea
PA
13795 {
13796 btrace_read_config (&tinfo->conf);
13797 }
230d2906 13798 catch (const gdb_exception_error &err)
492d29ea
PA
13799 {
13800 if (err.message != NULL)
3d6e9d23 13801 warning ("%s", err.what ());
492d29ea 13802 }
f4abbc16 13803
9accd112
MM
13804 return tinfo;
13805}
13806
13807/* Disable branch tracing. */
13808
f6ac5f3d
PA
13809void
13810remote_target::disable_btrace (struct btrace_target_info *tinfo)
9accd112
MM
13811{
13812 struct packet_config *packet = &remote_protocol_packets[PACKET_Qbtrace_off];
13813 struct remote_state *rs = get_remote_state ();
8d64371b
TT
13814 char *buf = rs->buf.data ();
13815 char *endbuf = buf + get_remote_packet_size ();
9accd112 13816
4082afcc 13817 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13818 error (_("Target does not support branch tracing."));
13819
13820 set_general_thread (tinfo->ptid);
13821
13822 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
13823 putpkt (rs->buf);
8d64371b 13824 getpkt (&rs->buf, 0);
9accd112
MM
13825
13826 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
13827 {
13828 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
13829 error (_("Could not disable branch tracing for %s: %s"),
a068643d 13830 target_pid_to_str (tinfo->ptid).c_str (), &rs->buf[2]);
9accd112
MM
13831 else
13832 error (_("Could not disable branch tracing for %s."),
a068643d 13833 target_pid_to_str (tinfo->ptid).c_str ());
9accd112
MM
13834 }
13835
13836 xfree (tinfo);
13837}
13838
13839/* Teardown branch tracing. */
13840
f6ac5f3d
PA
13841void
13842remote_target::teardown_btrace (struct btrace_target_info *tinfo)
9accd112
MM
13843{
13844 /* We must not talk to the target during teardown. */
13845 xfree (tinfo);
13846}
13847
13848/* Read the branch trace. */
13849
f6ac5f3d
PA
13850enum btrace_error
13851remote_target::read_btrace (struct btrace_data *btrace,
13852 struct btrace_target_info *tinfo,
13853 enum btrace_read_type type)
9accd112
MM
13854{
13855 struct packet_config *packet = &remote_protocol_packets[PACKET_qXfer_btrace];
9accd112 13856 const char *annex;
9accd112 13857
4082afcc 13858 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13859 error (_("Target does not support branch tracing."));
13860
13861#if !defined(HAVE_LIBEXPAT)
13862 error (_("Cannot process branch tracing result. XML parsing not supported."));
13863#endif
13864
13865 switch (type)
13866 {
864089d2 13867 case BTRACE_READ_ALL:
9accd112
MM
13868 annex = "all";
13869 break;
864089d2 13870 case BTRACE_READ_NEW:
9accd112
MM
13871 annex = "new";
13872 break;
969c39fb
MM
13873 case BTRACE_READ_DELTA:
13874 annex = "delta";
13875 break;
9accd112
MM
13876 default:
13877 internal_error (__FILE__, __LINE__,
13878 _("Bad branch tracing read type: %u."),
13879 (unsigned int) type);
13880 }
13881
9018be22 13882 gdb::optional<gdb::char_vector> xml
8b88a78e 13883 = target_read_stralloc (current_top_target (), TARGET_OBJECT_BTRACE, annex);
9018be22 13884 if (!xml)
969c39fb 13885 return BTRACE_ERR_UNKNOWN;
9accd112 13886
9018be22 13887 parse_xml_btrace (btrace, xml->data ());
9accd112 13888
969c39fb 13889 return BTRACE_ERR_NONE;
9accd112
MM
13890}
13891
f6ac5f3d
PA
13892const struct btrace_config *
13893remote_target::btrace_conf (const struct btrace_target_info *tinfo)
f4abbc16
MM
13894{
13895 return &tinfo->conf;
13896}
13897
57810aa7 13898bool
f6ac5f3d 13899remote_target::augmented_libraries_svr4_read ()
ced63ec0 13900{
4082afcc
PA
13901 return (packet_support (PACKET_augmented_libraries_svr4_read_feature)
13902 == PACKET_ENABLE);
ced63ec0
GB
13903}
13904
9dd130a0
TT
13905/* Implementation of to_load. */
13906
f6ac5f3d
PA
13907void
13908remote_target::load (const char *name, int from_tty)
9dd130a0
TT
13909{
13910 generic_load (name, from_tty);
13911}
13912
c78fa86a
GB
13913/* Accepts an integer PID; returns a string representing a file that
13914 can be opened on the remote side to get the symbols for the child
13915 process. Returns NULL if the operation is not supported. */
13916
f6ac5f3d
PA
13917char *
13918remote_target::pid_to_exec_file (int pid)
c78fa86a 13919{
9018be22 13920 static gdb::optional<gdb::char_vector> filename;
835205d0
GB
13921 struct inferior *inf;
13922 char *annex = NULL;
c78fa86a
GB
13923
13924 if (packet_support (PACKET_qXfer_exec_file) != PACKET_ENABLE)
13925 return NULL;
13926
835205d0
GB
13927 inf = find_inferior_pid (pid);
13928 if (inf == NULL)
13929 internal_error (__FILE__, __LINE__,
13930 _("not currently attached to process %d"), pid);
13931
13932 if (!inf->fake_pid_p)
13933 {
13934 const int annex_size = 9;
13935
224c3ddb 13936 annex = (char *) alloca (annex_size);
835205d0
GB
13937 xsnprintf (annex, annex_size, "%x", pid);
13938 }
13939
8b88a78e 13940 filename = target_read_stralloc (current_top_target (),
c78fa86a
GB
13941 TARGET_OBJECT_EXEC_FILE, annex);
13942
9018be22 13943 return filename ? filename->data () : nullptr;
c78fa86a
GB
13944}
13945
750ce8d1
YQ
13946/* Implement the to_can_do_single_step target_ops method. */
13947
f6ac5f3d
PA
13948int
13949remote_target::can_do_single_step ()
750ce8d1
YQ
13950{
13951 /* We can only tell whether target supports single step or not by
13952 supported s and S vCont actions if the stub supports vContSupported
13953 feature. If the stub doesn't support vContSupported feature,
13954 we have conservatively to think target doesn't supports single
13955 step. */
13956 if (packet_support (PACKET_vContSupported) == PACKET_ENABLE)
13957 {
13958 struct remote_state *rs = get_remote_state ();
13959
13960 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6b8edb51 13961 remote_vcont_probe ();
750ce8d1
YQ
13962
13963 return rs->supports_vCont.s && rs->supports_vCont.S;
13964 }
13965 else
13966 return 0;
13967}
13968
3a00c802
PA
13969/* Implementation of the to_execution_direction method for the remote
13970 target. */
13971
f6ac5f3d
PA
13972enum exec_direction_kind
13973remote_target::execution_direction ()
3a00c802
PA
13974{
13975 struct remote_state *rs = get_remote_state ();
13976
13977 return rs->last_resume_exec_dir;
13978}
13979
f6327dcb
KB
13980/* Return pointer to the thread_info struct which corresponds to
13981 THREAD_HANDLE (having length HANDLE_LEN). */
13982
f6ac5f3d
PA
13983thread_info *
13984remote_target::thread_handle_to_thread_info (const gdb_byte *thread_handle,
13985 int handle_len,
13986 inferior *inf)
f6327dcb 13987{
08036331 13988 for (thread_info *tp : all_non_exited_threads ())
f6327dcb 13989 {
7aabaf9d 13990 remote_thread_info *priv = get_remote_thread_info (tp);
f6327dcb
KB
13991
13992 if (tp->inf == inf && priv != NULL)
13993 {
7aabaf9d 13994 if (handle_len != priv->thread_handle.size ())
f6327dcb 13995 error (_("Thread handle size mismatch: %d vs %zu (from remote)"),
7aabaf9d
SM
13996 handle_len, priv->thread_handle.size ());
13997 if (memcmp (thread_handle, priv->thread_handle.data (),
f6327dcb
KB
13998 handle_len) == 0)
13999 return tp;
14000 }
14001 }
14002
14003 return NULL;
14004}
14005
3d6c6204
KB
14006gdb::byte_vector
14007remote_target::thread_info_to_thread_handle (struct thread_info *tp)
14008{
14009 remote_thread_info *priv = get_remote_thread_info (tp);
14010 return priv->thread_handle;
14011}
14012
57810aa7 14013bool
f6ac5f3d 14014remote_target::can_async_p ()
6426a772 14015{
5d93a237
TT
14016 struct remote_state *rs = get_remote_state ();
14017
3015c064
SM
14018 /* We don't go async if the user has explicitly prevented it with the
14019 "maint set target-async" command. */
c6ebd6cf 14020 if (!target_async_permitted)
57810aa7 14021 return false;
75c99385 14022
23860348 14023 /* We're async whenever the serial device is. */
5d93a237 14024 return serial_can_async_p (rs->remote_desc);
6426a772
JM
14025}
14026
57810aa7 14027bool
f6ac5f3d 14028remote_target::is_async_p ()
6426a772 14029{
5d93a237
TT
14030 struct remote_state *rs = get_remote_state ();
14031
c6ebd6cf 14032 if (!target_async_permitted)
75c99385 14033 /* We only enable async when the user specifically asks for it. */
57810aa7 14034 return false;
75c99385 14035
23860348 14036 /* We're async whenever the serial device is. */
5d93a237 14037 return serial_is_async_p (rs->remote_desc);
6426a772
JM
14038}
14039
2acceee2
JM
14040/* Pass the SERIAL event on and up to the client. One day this code
14041 will be able to delay notifying the client of an event until the
23860348 14042 point where an entire packet has been received. */
2acceee2 14043
2acceee2
JM
14044static serial_event_ftype remote_async_serial_handler;
14045
6426a772 14046static void
819cc324 14047remote_async_serial_handler (struct serial *scb, void *context)
6426a772 14048{
2acceee2
JM
14049 /* Don't propogate error information up to the client. Instead let
14050 the client find out about the error by querying the target. */
6a3753b3 14051 inferior_event_handler (INF_REG_EVENT, NULL);
2acceee2
JM
14052}
14053
74531fed
PA
14054static void
14055remote_async_inferior_event_handler (gdb_client_data data)
14056{
6b8edb51 14057 inferior_event_handler (INF_REG_EVENT, data);
74531fed
PA
14058}
14059
f6ac5f3d
PA
14060void
14061remote_target::async (int enable)
2acceee2 14062{
5d93a237
TT
14063 struct remote_state *rs = get_remote_state ();
14064
6a3753b3 14065 if (enable)
2acceee2 14066 {
88b496c3 14067 serial_async (rs->remote_desc, remote_async_serial_handler, rs);
b7d2e916
PA
14068
14069 /* If there are pending events in the stop reply queue tell the
14070 event loop to process them. */
953edf2b 14071 if (!rs->stop_reply_queue.empty ())
6b8edb51 14072 mark_async_event_handler (rs->remote_async_inferior_event_token);
6efcd9a8
PA
14073 /* For simplicity, below we clear the pending events token
14074 without remembering whether it is marked, so here we always
14075 mark it. If there's actually no pending notification to
14076 process, this ends up being a no-op (other than a spurious
14077 event-loop wakeup). */
14078 if (target_is_non_stop_p ())
14079 mark_async_event_handler (rs->notif_state->get_pending_events_token);
2acceee2
JM
14080 }
14081 else
b7d2e916
PA
14082 {
14083 serial_async (rs->remote_desc, NULL, NULL);
6efcd9a8
PA
14084 /* If the core is disabling async, it doesn't want to be
14085 disturbed with target events. Clear all async event sources
14086 too. */
6b8edb51 14087 clear_async_event_handler (rs->remote_async_inferior_event_token);
6efcd9a8
PA
14088 if (target_is_non_stop_p ())
14089 clear_async_event_handler (rs->notif_state->get_pending_events_token);
b7d2e916 14090 }
6426a772
JM
14091}
14092
65706a29
PA
14093/* Implementation of the to_thread_events method. */
14094
f6ac5f3d
PA
14095void
14096remote_target::thread_events (int enable)
65706a29
PA
14097{
14098 struct remote_state *rs = get_remote_state ();
14099 size_t size = get_remote_packet_size ();
65706a29
PA
14100
14101 if (packet_support (PACKET_QThreadEvents) == PACKET_DISABLE)
14102 return;
14103
8d64371b 14104 xsnprintf (rs->buf.data (), size, "QThreadEvents:%x", enable ? 1 : 0);
65706a29 14105 putpkt (rs->buf);
8d64371b 14106 getpkt (&rs->buf, 0);
65706a29
PA
14107
14108 switch (packet_ok (rs->buf,
14109 &remote_protocol_packets[PACKET_QThreadEvents]))
14110 {
14111 case PACKET_OK:
8d64371b
TT
14112 if (strcmp (rs->buf.data (), "OK") != 0)
14113 error (_("Remote refused setting thread events: %s"), rs->buf.data ());
65706a29
PA
14114 break;
14115 case PACKET_ERROR:
8d64371b 14116 warning (_("Remote failure reply: %s"), rs->buf.data ());
65706a29
PA
14117 break;
14118 case PACKET_UNKNOWN:
14119 break;
14120 }
14121}
14122
5a2468f5 14123static void
981a3fb3 14124set_remote_cmd (const char *args, int from_tty)
5a2468f5 14125{
635c7e8a 14126 help_list (remote_set_cmdlist, "set remote ", all_commands, gdb_stdout);
5a2468f5
JM
14127}
14128
d471ea57 14129static void
981a3fb3 14130show_remote_cmd (const char *args, int from_tty)
d471ea57 14131{
37a105a1 14132 /* We can't just use cmd_show_list here, because we want to skip
427c3a89 14133 the redundant "show remote Z-packet" and the legacy aliases. */
37a105a1 14134 struct cmd_list_element *list = remote_show_cmdlist;
79a45e25 14135 struct ui_out *uiout = current_uiout;
37a105a1 14136
2e783024 14137 ui_out_emit_tuple tuple_emitter (uiout, "showlist");
37a105a1
DJ
14138 for (; list != NULL; list = list->next)
14139 if (strcmp (list->name, "Z-packet") == 0)
14140 continue;
427c3a89
DJ
14141 else if (list->type == not_set_cmd)
14142 /* Alias commands are exactly like the original, except they
14143 don't have the normal type. */
14144 continue;
14145 else
37a105a1 14146 {
2e783024 14147 ui_out_emit_tuple option_emitter (uiout, "option");
a744cf53 14148
112e8700
SM
14149 uiout->field_string ("name", list->name);
14150 uiout->text (": ");
427c3a89 14151 if (list->type == show_cmd)
f5c4fcd9 14152 do_show_command (NULL, from_tty, list);
427c3a89
DJ
14153 else
14154 cmd_func (list, NULL, from_tty);
37a105a1 14155 }
d471ea57 14156}
5a2468f5 14157
0f71a2f6 14158
23860348 14159/* Function to be called whenever a new objfile (shlib) is detected. */
dc8acb97
MS
14160static void
14161remote_new_objfile (struct objfile *objfile)
14162{
6b8edb51 14163 remote_target *remote = get_current_remote_target ();
5d93a237 14164
6b8edb51
PA
14165 if (remote != NULL) /* Have a remote connection. */
14166 remote->remote_check_symbols ();
dc8acb97
MS
14167}
14168
00bf0b85
SS
14169/* Pull all the tracepoints defined on the target and create local
14170 data structures representing them. We don't want to create real
14171 tracepoints yet, we don't want to mess up the user's existing
14172 collection. */
14173
f6ac5f3d
PA
14174int
14175remote_target::upload_tracepoints (struct uploaded_tp **utpp)
d5551862 14176{
00bf0b85
SS
14177 struct remote_state *rs = get_remote_state ();
14178 char *p;
d5551862 14179
00bf0b85
SS
14180 /* Ask for a first packet of tracepoint definition. */
14181 putpkt ("qTfP");
8d64371b
TT
14182 getpkt (&rs->buf, 0);
14183 p = rs->buf.data ();
00bf0b85 14184 while (*p && *p != 'l')
d5551862 14185 {
00bf0b85
SS
14186 parse_tracepoint_definition (p, utpp);
14187 /* Ask for another packet of tracepoint definition. */
14188 putpkt ("qTsP");
8d64371b
TT
14189 getpkt (&rs->buf, 0);
14190 p = rs->buf.data ();
d5551862 14191 }
00bf0b85 14192 return 0;
d5551862
SS
14193}
14194
f6ac5f3d
PA
14195int
14196remote_target::upload_trace_state_variables (struct uploaded_tsv **utsvp)
d5551862 14197{
00bf0b85 14198 struct remote_state *rs = get_remote_state ();
d5551862 14199 char *p;
d5551862 14200
00bf0b85
SS
14201 /* Ask for a first packet of variable definition. */
14202 putpkt ("qTfV");
8d64371b
TT
14203 getpkt (&rs->buf, 0);
14204 p = rs->buf.data ();
00bf0b85 14205 while (*p && *p != 'l')
d5551862 14206 {
00bf0b85
SS
14207 parse_tsv_definition (p, utsvp);
14208 /* Ask for another packet of variable definition. */
14209 putpkt ("qTsV");
8d64371b
TT
14210 getpkt (&rs->buf, 0);
14211 p = rs->buf.data ();
d5551862 14212 }
00bf0b85 14213 return 0;
d5551862
SS
14214}
14215
c1e36e3e
PA
14216/* The "set/show range-stepping" show hook. */
14217
14218static void
14219show_range_stepping (struct ui_file *file, int from_tty,
14220 struct cmd_list_element *c,
14221 const char *value)
14222{
14223 fprintf_filtered (file,
14224 _("Debugger's willingness to use range stepping "
14225 "is %s.\n"), value);
14226}
14227
6b8edb51
PA
14228/* Return true if the vCont;r action is supported by the remote
14229 stub. */
14230
14231bool
14232remote_target::vcont_r_supported ()
14233{
14234 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
14235 remote_vcont_probe ();
14236
14237 return (packet_support (PACKET_vCont) == PACKET_ENABLE
14238 && get_remote_state ()->supports_vCont.r);
14239}
14240
c1e36e3e
PA
14241/* The "set/show range-stepping" set hook. */
14242
14243static void
eb4c3f4a 14244set_range_stepping (const char *ignore_args, int from_tty,
c1e36e3e
PA
14245 struct cmd_list_element *c)
14246{
6b8edb51
PA
14247 /* When enabling, check whether range stepping is actually supported
14248 by the target, and warn if not. */
c1e36e3e
PA
14249 if (use_range_stepping)
14250 {
6b8edb51
PA
14251 remote_target *remote = get_current_remote_target ();
14252 if (remote == NULL
14253 || !remote->vcont_r_supported ())
14254 warning (_("Range stepping is not supported by the current target"));
c1e36e3e
PA
14255 }
14256}
14257
c906108c 14258void
fba45db2 14259_initialize_remote (void)
c906108c 14260{
9a7071a8 14261 struct cmd_list_element *cmd;
6f937416 14262 const char *cmd_name;
ea9c271d 14263
0f71a2f6 14264 /* architecture specific data */
29709017
DJ
14265 remote_g_packet_data_handle =
14266 gdbarch_data_register_pre_init (remote_g_packet_data_init);
d01949b6 14267
d9f719f1
PA
14268 add_target (remote_target_info, remote_target::open);
14269 add_target (extended_remote_target_info, extended_remote_target::open);
cce74817 14270
dc8acb97 14271 /* Hook into new objfile notification. */
76727919 14272 gdb::observers::new_objfile.attach (remote_new_objfile);
dc8acb97 14273
c906108c
SS
14274#if 0
14275 init_remote_threadtests ();
14276#endif
14277
23860348 14278 /* set/show remote ... */
d471ea57 14279
1bedd215 14280 add_prefix_cmd ("remote", class_maintenance, set_remote_cmd, _("\
5a2468f5
JM
14281Remote protocol specific variables\n\
14282Configure various remote-protocol specific variables such as\n\
1bedd215 14283the packets being used"),
cff3e48b 14284 &remote_set_cmdlist, "set remote ",
23860348 14285 0 /* allow-unknown */, &setlist);
1bedd215 14286 add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
5a2468f5
JM
14287Remote protocol specific variables\n\
14288Configure various remote-protocol specific variables such as\n\
1bedd215 14289the packets being used"),
cff3e48b 14290 &remote_show_cmdlist, "show remote ",
23860348 14291 0 /* allow-unknown */, &showlist);
5a2468f5 14292
1a966eab
AC
14293 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
14294Compare section data on target to the exec file.\n\
95cf3b38
DT
14295Argument is a single section name (default: all loaded sections).\n\
14296To compare only read-only loaded sections, specify the -r option."),
c906108c
SS
14297 &cmdlist);
14298
1a966eab
AC
14299 add_cmd ("packet", class_maintenance, packet_command, _("\
14300Send an arbitrary packet to a remote target.\n\
c906108c
SS
14301 maintenance packet TEXT\n\
14302If GDB is talking to an inferior via the GDB serial protocol, then\n\
14303this command sends the string TEXT to the inferior, and displays the\n\
14304response packet. GDB supplies the initial `$' character, and the\n\
1a966eab 14305terminating `#' character and checksum."),
c906108c
SS
14306 &maintenancelist);
14307
7915a72c
AC
14308 add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
14309Set whether to send break if interrupted."), _("\
14310Show whether to send break if interrupted."), _("\
14311If set, a break, instead of a cntrl-c, is sent to the remote target."),
9a7071a8 14312 set_remotebreak, show_remotebreak,
e707bbc2 14313 &setlist, &showlist);
9a7071a8
JB
14314 cmd_name = "remotebreak";
14315 cmd = lookup_cmd (&cmd_name, setlist, "", -1, 1);
14316 deprecate_cmd (cmd, "set remote interrupt-sequence");
14317 cmd_name = "remotebreak"; /* needed because lookup_cmd updates the pointer */
14318 cmd = lookup_cmd (&cmd_name, showlist, "", -1, 1);
14319 deprecate_cmd (cmd, "show remote interrupt-sequence");
14320
14321 add_setshow_enum_cmd ("interrupt-sequence", class_support,
3e43a32a
MS
14322 interrupt_sequence_modes, &interrupt_sequence_mode,
14323 _("\
9a7071a8
JB
14324Set interrupt sequence to remote target."), _("\
14325Show interrupt sequence to remote target."), _("\
14326Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."),
14327 NULL, show_interrupt_sequence,
14328 &remote_set_cmdlist,
14329 &remote_show_cmdlist);
14330
14331 add_setshow_boolean_cmd ("interrupt-on-connect", class_support,
14332 &interrupt_on_connect, _("\
14333Set whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
14334Show whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
14335If set, interrupt sequence is sent to remote target."),
14336 NULL, NULL,
14337 &remote_set_cmdlist, &remote_show_cmdlist);
c906108c 14338
23860348 14339 /* Install commands for configuring memory read/write packets. */
11cf8741 14340
1a966eab
AC
14341 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
14342Set the maximum number of bytes per memory write packet (deprecated)."),
11cf8741 14343 &setlist);
1a966eab
AC
14344 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
14345Show the maximum number of bytes per memory write packet (deprecated)."),
11cf8741
JM
14346 &showlist);
14347 add_cmd ("memory-write-packet-size", no_class,
1a966eab
AC
14348 set_memory_write_packet_size, _("\
14349Set the maximum number of bytes per memory-write packet.\n\
14350Specify the number of bytes in a packet or 0 (zero) for the\n\
14351default packet size. The actual limit is further reduced\n\
14352dependent on the target. Specify ``fixed'' to disable the\n\
14353further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
14354 &remote_set_cmdlist);
14355 add_cmd ("memory-read-packet-size", no_class,
1a966eab
AC
14356 set_memory_read_packet_size, _("\
14357Set the maximum number of bytes per memory-read packet.\n\
14358Specify the number of bytes in a packet or 0 (zero) for the\n\
14359default packet size. The actual limit is further reduced\n\
14360dependent on the target. Specify ``fixed'' to disable the\n\
14361further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
14362 &remote_set_cmdlist);
14363 add_cmd ("memory-write-packet-size", no_class,
14364 show_memory_write_packet_size,
1a966eab 14365 _("Show the maximum number of bytes per memory-write packet."),
11cf8741
JM
14366 &remote_show_cmdlist);
14367 add_cmd ("memory-read-packet-size", no_class,
14368 show_memory_read_packet_size,
1a966eab 14369 _("Show the maximum number of bytes per memory-read packet."),
11cf8741 14370 &remote_show_cmdlist);
c906108c 14371
055303e2 14372 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-limit", no_class,
7915a72c
AC
14373 &remote_hw_watchpoint_limit, _("\
14374Set the maximum number of target hardware watchpoints."), _("\
14375Show the maximum number of target hardware watchpoints."), _("\
055303e2
AB
14376Specify \"unlimited\" for unlimited hardware watchpoints."),
14377 NULL, show_hardware_watchpoint_limit,
14378 &remote_set_cmdlist,
14379 &remote_show_cmdlist);
14380 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-length-limit",
14381 no_class,
480a3f21
PW
14382 &remote_hw_watchpoint_length_limit, _("\
14383Set the maximum length (in bytes) of a target hardware watchpoint."), _("\
14384Show the maximum length (in bytes) of a target hardware watchpoint."), _("\
055303e2
AB
14385Specify \"unlimited\" to allow watchpoints of unlimited size."),
14386 NULL, show_hardware_watchpoint_length_limit,
480a3f21 14387 &remote_set_cmdlist, &remote_show_cmdlist);
055303e2 14388 add_setshow_zuinteger_unlimited_cmd ("hardware-breakpoint-limit", no_class,
7915a72c
AC
14389 &remote_hw_breakpoint_limit, _("\
14390Set the maximum number of target hardware breakpoints."), _("\
14391Show the maximum number of target hardware breakpoints."), _("\
055303e2
AB
14392Specify \"unlimited\" for unlimited hardware breakpoints."),
14393 NULL, show_hardware_breakpoint_limit,
b3f42336 14394 &remote_set_cmdlist, &remote_show_cmdlist);
501eef12 14395
1b493192
PA
14396 add_setshow_zuinteger_cmd ("remoteaddresssize", class_obscure,
14397 &remote_address_size, _("\
4d28ad1e
AC
14398Set the maximum size of the address (in bits) in a memory packet."), _("\
14399Show the maximum size of the address (in bits) in a memory packet."), NULL,
1b493192
PA
14400 NULL,
14401 NULL, /* FIXME: i18n: */
14402 &setlist, &showlist);
c906108c 14403
ca4f7f8b
PA
14404 init_all_packet_configs ();
14405
444abaca 14406 add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
bb572ddd 14407 "X", "binary-download", 1);
0f71a2f6 14408
444abaca 14409 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
bb572ddd 14410 "vCont", "verbose-resume", 0);
506fb367 14411
89be2091
DJ
14412 add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals],
14413 "QPassSignals", "pass-signals", 0);
14414
82075af2
JS
14415 add_packet_config_cmd (&remote_protocol_packets[PACKET_QCatchSyscalls],
14416 "QCatchSyscalls", "catch-syscalls", 0);
14417
9b224c5e
PA
14418 add_packet_config_cmd (&remote_protocol_packets[PACKET_QProgramSignals],
14419 "QProgramSignals", "program-signals", 0);
14420
bc3b087d
SDJ
14421 add_packet_config_cmd (&remote_protocol_packets[PACKET_QSetWorkingDir],
14422 "QSetWorkingDir", "set-working-dir", 0);
14423
aefd8b33
SDJ
14424 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartupWithShell],
14425 "QStartupWithShell", "startup-with-shell", 0);
14426
0a2dde4a
SDJ
14427 add_packet_config_cmd (&remote_protocol_packets
14428 [PACKET_QEnvironmentHexEncoded],
14429 "QEnvironmentHexEncoded", "environment-hex-encoded",
14430 0);
14431
14432 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentReset],
14433 "QEnvironmentReset", "environment-reset",
14434 0);
14435
14436 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentUnset],
14437 "QEnvironmentUnset", "environment-unset",
14438 0);
14439
444abaca 14440 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
bb572ddd 14441 "qSymbol", "symbol-lookup", 0);
dc8acb97 14442
444abaca 14443 add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
bb572ddd 14444 "P", "set-register", 1);
d471ea57 14445
444abaca 14446 add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
bb572ddd 14447 "p", "fetch-register", 1);
b96ec7ac 14448
444abaca 14449 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
bb572ddd 14450 "Z0", "software-breakpoint", 0);
d471ea57 14451
444abaca 14452 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
bb572ddd 14453 "Z1", "hardware-breakpoint", 0);
d471ea57 14454
444abaca 14455 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
bb572ddd 14456 "Z2", "write-watchpoint", 0);
d471ea57 14457
444abaca 14458 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
bb572ddd 14459 "Z3", "read-watchpoint", 0);
d471ea57 14460
444abaca 14461 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
bb572ddd 14462 "Z4", "access-watchpoint", 0);
d471ea57 14463
0876f84a
DJ
14464 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
14465 "qXfer:auxv:read", "read-aux-vector", 0);
802188a7 14466
c78fa86a
GB
14467 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_exec_file],
14468 "qXfer:exec-file:read", "pid-to-exec-file", 0);
14469
23181151
DJ
14470 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features],
14471 "qXfer:features:read", "target-features", 0);
14472
cfa9d6d9
DJ
14473 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries],
14474 "qXfer:libraries:read", "library-info", 0);
14475
2268b414
JK
14476 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries_svr4],
14477 "qXfer:libraries-svr4:read", "library-info-svr4", 0);
14478
fd79ecee
DJ
14479 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
14480 "qXfer:memory-map:read", "memory-map", 0);
14481
0e7f50da
UW
14482 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_read],
14483 "qXfer:spu:read", "read-spu-object", 0);
14484
14485 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_write],
14486 "qXfer:spu:write", "write-spu-object", 0);
14487
07e059b5
VP
14488 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata],
14489 "qXfer:osdata:read", "osdata", 0);
14490
dc146f7c
VP
14491 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_threads],
14492 "qXfer:threads:read", "threads", 0);
14493
4aa995e1
PA
14494 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read],
14495 "qXfer:siginfo:read", "read-siginfo-object", 0);
14496
14497 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write],
14498 "qXfer:siginfo:write", "write-siginfo-object", 0);
14499
b3b9301e
PA
14500 add_packet_config_cmd
14501 (&remote_protocol_packets[PACKET_qXfer_traceframe_info],
eb9fe518 14502 "qXfer:traceframe-info:read", "traceframe-info", 0);
b3b9301e 14503
169081d0
TG
14504 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_uib],
14505 "qXfer:uib:read", "unwind-info-block", 0);
14506
444abaca 14507 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
38691318 14508 "qGetTLSAddr", "get-thread-local-storage-address",
38691318
KB
14509 0);
14510
711e434b
PM
14511 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTIBAddr],
14512 "qGetTIBAddr", "get-thread-information-block-address",
14513 0);
14514
40ab02ce
MS
14515 add_packet_config_cmd (&remote_protocol_packets[PACKET_bc],
14516 "bc", "reverse-continue", 0);
14517
14518 add_packet_config_cmd (&remote_protocol_packets[PACKET_bs],
14519 "bs", "reverse-step", 0);
14520
be2a5f71
DJ
14521 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
14522 "qSupported", "supported-packets", 0);
14523
08388c79
DE
14524 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory],
14525 "qSearch:memory", "search-memory", 0);
14526
bd3eecc3
PA
14527 add_packet_config_cmd (&remote_protocol_packets[PACKET_qTStatus],
14528 "qTStatus", "trace-status", 0);
14529
15a201c8
GB
14530 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_setfs],
14531 "vFile:setfs", "hostio-setfs", 0);
14532
a6b151f1
DJ
14533 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open],
14534 "vFile:open", "hostio-open", 0);
14535
14536 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread],
14537 "vFile:pread", "hostio-pread", 0);
14538
14539 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite],
14540 "vFile:pwrite", "hostio-pwrite", 0);
14541
14542 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close],
14543 "vFile:close", "hostio-close", 0);
14544
14545 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink],
14546 "vFile:unlink", "hostio-unlink", 0);
14547
b9e7b9c3
UW
14548 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_readlink],
14549 "vFile:readlink", "hostio-readlink", 0);
14550
0a93529c
GB
14551 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_fstat],
14552 "vFile:fstat", "hostio-fstat", 0);
14553
2d717e4f
DJ
14554 add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach],
14555 "vAttach", "attach", 0);
14556
14557 add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun],
14558 "vRun", "run", 0);
14559
a6f3e723
SL
14560 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode],
14561 "QStartNoAckMode", "noack", 0);
14562
82f73884
PA
14563 add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill],
14564 "vKill", "kill", 0);
14565
0b16c5cf
PA
14566 add_packet_config_cmd (&remote_protocol_packets[PACKET_qAttached],
14567 "qAttached", "query-attached", 0);
14568
782b2b07 14569 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalTracepoints],
3e43a32a
MS
14570 "ConditionalTracepoints",
14571 "conditional-tracepoints", 0);
3788aec7
LM
14572
14573 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalBreakpoints],
14574 "ConditionalBreakpoints",
14575 "conditional-breakpoints", 0);
14576
d3ce09f5
SS
14577 add_packet_config_cmd (&remote_protocol_packets[PACKET_BreakpointCommands],
14578 "BreakpointCommands",
14579 "breakpoint-commands", 0);
14580
7a697b8d
SS
14581 add_packet_config_cmd (&remote_protocol_packets[PACKET_FastTracepoints],
14582 "FastTracepoints", "fast-tracepoints", 0);
782b2b07 14583
409873ef
SS
14584 add_packet_config_cmd (&remote_protocol_packets[PACKET_TracepointSource],
14585 "TracepointSource", "TracepointSource", 0);
14586
d914c394
SS
14587 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAllow],
14588 "QAllow", "allow", 0);
14589
0fb4aa4b
PA
14590 add_packet_config_cmd (&remote_protocol_packets[PACKET_StaticTracepoints],
14591 "StaticTracepoints", "static-tracepoints", 0);
14592
1e4d1764
YQ
14593 add_packet_config_cmd (&remote_protocol_packets[PACKET_InstallInTrace],
14594 "InstallInTrace", "install-in-trace", 0);
14595
0fb4aa4b
PA
14596 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_statictrace_read],
14597 "qXfer:statictrace:read", "read-sdata-object", 0);
14598
78d85199
YQ
14599 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_fdpic],
14600 "qXfer:fdpic:read", "read-fdpic-loadmap", 0);
14601
03583c20
UW
14602 add_packet_config_cmd (&remote_protocol_packets[PACKET_QDisableRandomization],
14603 "QDisableRandomization", "disable-randomization", 0);
14604
d1feda86
YQ
14605 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAgent],
14606 "QAgent", "agent", 0);
14607
f6f899bf
HAQ
14608 add_packet_config_cmd (&remote_protocol_packets[PACKET_QTBuffer_size],
14609 "QTBuffer:size", "trace-buffer-size", 0);
14610
9accd112
MM
14611 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_off],
14612 "Qbtrace:off", "disable-btrace", 0);
14613
14614 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_bts],
b20a6524
MM
14615 "Qbtrace:bts", "enable-btrace-bts", 0);
14616
14617 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_pt],
14618 "Qbtrace:pt", "enable-btrace-pt", 0);
9accd112
MM
14619
14620 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace],
14621 "qXfer:btrace", "read-btrace", 0);
14622
f4abbc16
MM
14623 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace_conf],
14624 "qXfer:btrace-conf", "read-btrace-conf", 0);
14625
d33501a5
MM
14626 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_bts_size],
14627 "Qbtrace-conf:bts:size", "btrace-conf-bts-size", 0);
14628
73b8c1fd
PA
14629 add_packet_config_cmd (&remote_protocol_packets[PACKET_multiprocess_feature],
14630 "multiprocess-feature", "multiprocess-feature", 0);
14631
f7e6eed5
PA
14632 add_packet_config_cmd (&remote_protocol_packets[PACKET_swbreak_feature],
14633 "swbreak-feature", "swbreak-feature", 0);
14634
14635 add_packet_config_cmd (&remote_protocol_packets[PACKET_hwbreak_feature],
14636 "hwbreak-feature", "hwbreak-feature", 0);
14637
89245bc0
DB
14638 add_packet_config_cmd (&remote_protocol_packets[PACKET_fork_event_feature],
14639 "fork-event-feature", "fork-event-feature", 0);
14640
14641 add_packet_config_cmd (&remote_protocol_packets[PACKET_vfork_event_feature],
14642 "vfork-event-feature", "vfork-event-feature", 0);
14643
b20a6524
MM
14644 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_pt_size],
14645 "Qbtrace-conf:pt:size", "btrace-conf-pt-size", 0);
14646
750ce8d1
YQ
14647 add_packet_config_cmd (&remote_protocol_packets[PACKET_vContSupported],
14648 "vContSupported", "verbose-resume-supported", 0);
14649
94585166
DB
14650 add_packet_config_cmd (&remote_protocol_packets[PACKET_exec_event_feature],
14651 "exec-event-feature", "exec-event-feature", 0);
14652
de979965
PA
14653 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCtrlC],
14654 "vCtrlC", "ctrl-c", 0);
14655
65706a29
PA
14656 add_packet_config_cmd (&remote_protocol_packets[PACKET_QThreadEvents],
14657 "QThreadEvents", "thread-events", 0);
14658
f2faf941
PA
14659 add_packet_config_cmd (&remote_protocol_packets[PACKET_no_resumed],
14660 "N stop reply", "no-resumed-stop-reply", 0);
14661
0b736949
DB
14662 /* Assert that we've registered "set remote foo-packet" commands
14663 for all packet configs. */
ca4f7f8b
PA
14664 {
14665 int i;
14666
14667 for (i = 0; i < PACKET_MAX; i++)
14668 {
14669 /* Ideally all configs would have a command associated. Some
14670 still don't though. */
14671 int excepted;
14672
14673 switch (i)
14674 {
14675 case PACKET_QNonStop:
ca4f7f8b
PA
14676 case PACKET_EnableDisableTracepoints_feature:
14677 case PACKET_tracenz_feature:
14678 case PACKET_DisconnectedTracing_feature:
14679 case PACKET_augmented_libraries_svr4_read_feature:
936d2992
PA
14680 case PACKET_qCRC:
14681 /* Additions to this list need to be well justified:
14682 pre-existing packets are OK; new packets are not. */
ca4f7f8b
PA
14683 excepted = 1;
14684 break;
14685 default:
14686 excepted = 0;
14687 break;
14688 }
14689
14690 /* This catches both forgetting to add a config command, and
14691 forgetting to remove a packet from the exception list. */
14692 gdb_assert (excepted == (remote_protocol_packets[i].name == NULL));
14693 }
14694 }
14695
37a105a1
DJ
14696 /* Keep the old ``set remote Z-packet ...'' working. Each individual
14697 Z sub-packet has its own set and show commands, but users may
14698 have sets to this variable in their .gdbinit files (or in their
14699 documentation). */
e9e68a56 14700 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
7915a72c
AC
14701 &remote_Z_packet_detect, _("\
14702Set use of remote protocol `Z' packets"), _("\
14703Show use of remote protocol `Z' packets "), _("\
3b64bf98 14704When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
7915a72c 14705packets."),
e9e68a56 14706 set_remote_protocol_Z_packet_cmd,
3e43a32a
MS
14707 show_remote_protocol_Z_packet_cmd,
14708 /* FIXME: i18n: Use of remote protocol
14709 `Z' packets is %s. */
e9e68a56 14710 &remote_set_cmdlist, &remote_show_cmdlist);
449092f6 14711
a6b151f1
DJ
14712 add_prefix_cmd ("remote", class_files, remote_command, _("\
14713Manipulate files on the remote system\n\
14714Transfer files to and from the remote target system."),
14715 &remote_cmdlist, "remote ",
14716 0 /* allow-unknown */, &cmdlist);
14717
14718 add_cmd ("put", class_files, remote_put_command,
14719 _("Copy a local file to the remote system."),
14720 &remote_cmdlist);
14721
14722 add_cmd ("get", class_files, remote_get_command,
14723 _("Copy a remote file to the local system."),
14724 &remote_cmdlist);
14725
14726 add_cmd ("delete", class_files, remote_delete_command,
14727 _("Delete a remote file."),
14728 &remote_cmdlist);
14729
2d717e4f 14730 add_setshow_string_noescape_cmd ("exec-file", class_files,
94585166 14731 &remote_exec_file_var, _("\
2d717e4f 14732Set the remote pathname for \"run\""), _("\
94585166
DB
14733Show the remote pathname for \"run\""), NULL,
14734 set_remote_exec_file,
14735 show_remote_exec_file,
14736 &remote_set_cmdlist,
14737 &remote_show_cmdlist);
2d717e4f 14738
c1e36e3e
PA
14739 add_setshow_boolean_cmd ("range-stepping", class_run,
14740 &use_range_stepping, _("\
14741Enable or disable range stepping."), _("\
14742Show whether target-assisted range stepping is enabled."), _("\
14743If on, and the target supports it, when stepping a source line, GDB\n\
14744tells the target to step the corresponding range of addresses itself instead\n\
14745of issuing multiple single-steps. This speeds up source level\n\
14746stepping. If off, GDB always issues single-steps, even if range\n\
14747stepping is supported by the target. The default is on."),
14748 set_range_stepping,
14749 show_range_stepping,
14750 &setlist,
14751 &showlist);
14752
ed2b7c17
TT
14753 add_setshow_zinteger_cmd ("watchdog", class_maintenance, &watchdog, _("\
14754Set watchdog timer."), _("\
14755Show watchdog timer."), _("\
14756When non-zero, this timeout is used instead of waiting forever for a target\n\
14757to finish a low-level step or continue operation. If the specified amount\n\
14758of time passes without a response from the target, an error occurs."),
14759 NULL,
14760 show_watchdog,
14761 &setlist, &showlist);
14762
449092f6
CV
14763 /* Eventually initialize fileio. See fileio.c */
14764 initialize_remote_fileio (remote_set_cmdlist, remote_show_cmdlist);
c906108c 14765}
This page took 3.700177 seconds and 4 git commands to generate.