Handle "show remote memory-write-packet-size" when not connected
[deliverable/binutils-gdb.git] / gdb / remote.c
CommitLineData
c906108c 1/* Remote target communications for serial-line targets in custom GDB protocol
8926118c 2
e2882c85 3 Copyright (C) 1988-2018 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"
c5aa993b 30/*#include "terminal.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"
614c279d 45#include "filestuff.h"
9c3d6531 46#include "rsp-low.h"
6b940e6a 47#include "disasm.h"
f00aae0f 48#include "location.h"
c906108c 49
438e1e42 50#include "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"
d1feda86 71#include "agent.h"
9accd112 72#include "btrace.h"
c0272db5 73#include "record-btrace.h"
325fac50 74#include <algorithm>
2ec845e7 75#include "common/scoped_restore.h"
0a2dde4a 76#include "environ.h"
f6327dcb 77#include "common/byte-vector.h"
9d6eea31 78#include <unordered_map>
35b1e5cc 79
f6ac5f3d
PA
80/* The remote target. */
81
d9f719f1
PA
82static const char remote_doc[] = N_("\
83Use a remote computer via a serial line, using a gdb-specific protocol.\n\
84Specify the serial device it is connected to\n\
85(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).");
86
87static const target_info remote_target_info = {
88 "remote",
89 N_("Remote serial target in gdb-specific protocol"),
90 remote_doc
91};
92
f6ac5f3d
PA
93class remote_target : public target_ops
94{
95public:
96 remote_target ()
97 {
98 to_stratum = process_stratum;
99 }
100
d9f719f1
PA
101 const target_info &info () const override
102 { return remote_target_info; }
f6ac5f3d
PA
103
104 thread_control_capabilities get_thread_control_capabilities () override
105 { return tc_schedlock; }
106
d9f719f1
PA
107 /* Open a remote connection. */
108 static void open (const char *, int);
109
f6ac5f3d
PA
110 void close () override;
111
112 void detach (inferior *, int) override;
113 void disconnect (const char *, int) override;
114
115 void commit_resume () override;
116 void resume (ptid_t, int, enum gdb_signal) override;
117 ptid_t wait (ptid_t, struct target_waitstatus *, int) override;
118
119 void fetch_registers (struct regcache *, int) override;
120 void store_registers (struct regcache *, int) override;
121 void prepare_to_store (struct regcache *) override;
122
123 void files_info () override;
124
125 int insert_breakpoint (struct gdbarch *, struct bp_target_info *) override;
126
127 int remove_breakpoint (struct gdbarch *, struct bp_target_info *,
128 enum remove_bp_reason) override;
129
130
57810aa7
PA
131 bool stopped_by_sw_breakpoint () override;
132 bool supports_stopped_by_sw_breakpoint () override;
f6ac5f3d 133
57810aa7 134 bool stopped_by_hw_breakpoint () override;
f6ac5f3d 135
57810aa7 136 bool supports_stopped_by_hw_breakpoint () override;
f6ac5f3d 137
57810aa7 138 bool stopped_by_watchpoint () override;
f6ac5f3d 139
57810aa7 140 bool stopped_data_address (CORE_ADDR *) override;
f6ac5f3d 141
57810aa7 142 bool watchpoint_addr_within_range (CORE_ADDR, CORE_ADDR, int) override;
f6ac5f3d
PA
143
144 int can_use_hw_breakpoint (enum bptype, int, int) override;
145
146 int insert_hw_breakpoint (struct gdbarch *, struct bp_target_info *) override;
147
148 int remove_hw_breakpoint (struct gdbarch *, struct bp_target_info *) override;
149
150 int region_ok_for_hw_watchpoint (CORE_ADDR, int) override;
151
152 int insert_watchpoint (CORE_ADDR, int, enum target_hw_bp_type,
153 struct expression *) override;
154
155 int remove_watchpoint (CORE_ADDR, int, enum target_hw_bp_type,
156 struct expression *) override;
157
158 void kill () override;
159
160 void load (const char *, int) override;
161
162 void mourn_inferior () override;
163
164 void pass_signals (int, unsigned char *) override;
165
166 int set_syscall_catchpoint (int, bool, int,
167 gdb::array_view<const int>) override;
168
169 void program_signals (int, unsigned char *) override;
170
57810aa7 171 bool thread_alive (ptid_t ptid) override;
f6ac5f3d
PA
172
173 const char *thread_name (struct thread_info *) override;
174
175 void update_thread_list () override;
176
177 const char *pid_to_str (ptid_t) override;
178
179 const char *extra_thread_info (struct thread_info *) override;
180
181 ptid_t get_ada_task_ptid (long lwp, long thread) override;
182
183 thread_info *thread_handle_to_thread_info (const gdb_byte *thread_handle,
184 int handle_len,
185 inferior *inf) override;
186
187 void stop (ptid_t) override;
188
189 void interrupt () override;
190
191 void pass_ctrlc () override;
192
193 enum target_xfer_status xfer_partial (enum target_object object,
194 const char *annex,
195 gdb_byte *readbuf,
196 const gdb_byte *writebuf,
197 ULONGEST offset, ULONGEST len,
198 ULONGEST *xfered_len) override;
199
200 ULONGEST get_memory_xfer_limit () override;
201
202 void rcmd (const char *command, struct ui_file *output) override;
203
204 char *pid_to_exec_file (int pid) override;
205
206 void log_command (const char *cmd) override
207 {
208 serial_log_command (this, cmd);
209 }
210
211 CORE_ADDR get_thread_local_address (ptid_t ptid,
212 CORE_ADDR load_module_addr,
213 CORE_ADDR offset) override;
214
57810aa7
PA
215 bool has_all_memory () override { return default_child_has_all_memory (); }
216 bool has_memory () override { return default_child_has_memory (); }
217 bool has_stack () override { return default_child_has_stack (); }
218 bool has_registers () override { return default_child_has_registers (); }
219 bool has_execution (ptid_t ptid) override { return default_child_has_execution (ptid); }
f6ac5f3d 220
57810aa7 221 bool can_execute_reverse () override;
f6ac5f3d
PA
222
223 std::vector<mem_region> memory_map () override;
224
225 void flash_erase (ULONGEST address, LONGEST length) override;
226
227 void flash_done () override;
228
229 const struct target_desc *read_description () override;
230
231 int search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
232 const gdb_byte *pattern, ULONGEST pattern_len,
233 CORE_ADDR *found_addrp) override;
234
57810aa7 235 bool can_async_p () override;
f6ac5f3d 236
57810aa7 237 bool is_async_p () override;
f6ac5f3d
PA
238
239 void async (int) override;
240
241 void thread_events (int) override;
242
243 int can_do_single_step () override;
244
245 void terminal_inferior () override;
246
247 void terminal_ours () override;
248
57810aa7 249 bool supports_non_stop () override;
f6ac5f3d 250
57810aa7 251 bool supports_multi_process () override;
f6ac5f3d 252
57810aa7 253 bool supports_disable_randomization () override;
f6ac5f3d 254
57810aa7 255 bool filesystem_is_local () override;
f6ac5f3d
PA
256
257
258 int fileio_open (struct inferior *inf, const char *filename,
259 int flags, int mode, int warn_if_slow,
260 int *target_errno) override;
261
262 int fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
263 ULONGEST offset, int *target_errno) override;
264
265 int fileio_pread (int fd, gdb_byte *read_buf, int len,
266 ULONGEST offset, int *target_errno) override;
267
268 int fileio_fstat (int fd, struct stat *sb, int *target_errno) override;
269
270 int fileio_close (int fd, int *target_errno) override;
271
272 int fileio_unlink (struct inferior *inf,
273 const char *filename,
274 int *target_errno) override;
275
276 gdb::optional<std::string>
277 fileio_readlink (struct inferior *inf,
278 const char *filename,
279 int *target_errno) override;
280
57810aa7 281 bool supports_enable_disable_tracepoint () override;
f6ac5f3d 282
57810aa7 283 bool supports_string_tracing () override;
f6ac5f3d 284
57810aa7 285 bool supports_evaluation_of_breakpoint_conditions () override;
f6ac5f3d 286
57810aa7 287 bool can_run_breakpoint_commands () override;
f6ac5f3d
PA
288
289 void trace_init () override;
290
291 void download_tracepoint (struct bp_location *location) override;
292
57810aa7 293 bool can_download_tracepoint () override;
f6ac5f3d
PA
294
295 void download_trace_state_variable (const trace_state_variable &tsv) override;
296
297 void enable_tracepoint (struct bp_location *location) override;
298
299 void disable_tracepoint (struct bp_location *location) override;
300
301 void trace_set_readonly_regions () override;
302
303 void trace_start () override;
304
305 int get_trace_status (struct trace_status *ts) override;
306
307 void get_tracepoint_status (struct breakpoint *tp, struct uploaded_tp *utp)
308 override;
309
310 void trace_stop () override;
311
312 int trace_find (enum trace_find_type type, int num,
313 CORE_ADDR addr1, CORE_ADDR addr2, int *tpp) override;
314
57810aa7 315 bool get_trace_state_variable_value (int tsv, LONGEST *val) override;
f6ac5f3d
PA
316
317 int save_trace_data (const char *filename) override;
318
319 int upload_tracepoints (struct uploaded_tp **utpp) override;
320
321 int upload_trace_state_variables (struct uploaded_tsv **utsvp) override;
322
323 LONGEST get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len) override;
324
325 int get_min_fast_tracepoint_insn_len () override;
326
327 void set_disconnected_tracing (int val) override;
328
329 void set_circular_trace_buffer (int val) override;
330
331 void set_trace_buffer_size (LONGEST val) override;
332
57810aa7
PA
333 bool set_trace_notes (const char *user, const char *notes,
334 const char *stopnotes) override;
f6ac5f3d
PA
335
336 int core_of_thread (ptid_t ptid) override;
337
338 int verify_memory (const gdb_byte *data,
339 CORE_ADDR memaddr, ULONGEST size) override;
340
341
57810aa7 342 bool get_tib_address (ptid_t ptid, CORE_ADDR *addr) override;
f6ac5f3d
PA
343
344 void set_permissions () override;
345
346 bool static_tracepoint_marker_at (CORE_ADDR,
347 struct static_tracepoint_marker *marker)
348 override;
349
350 std::vector<static_tracepoint_marker>
351 static_tracepoint_markers_by_strid (const char *id) override;
352
353 traceframe_info_up traceframe_info () override;
354
57810aa7
PA
355 bool use_agent (bool use) override;
356 bool can_use_agent () override;
f6ac5f3d
PA
357
358 struct btrace_target_info *enable_btrace (ptid_t ptid,
359 const struct btrace_config *conf) override;
360
361 void disable_btrace (struct btrace_target_info *tinfo) override;
362
363 void teardown_btrace (struct btrace_target_info *tinfo) override;
364
365 enum btrace_error read_btrace (struct btrace_data *data,
366 struct btrace_target_info *btinfo,
367 enum btrace_read_type type) override;
368
369 const struct btrace_config *btrace_conf (const struct btrace_target_info *) override;
57810aa7 370 bool augmented_libraries_svr4_read () override;
f6ac5f3d
PA
371 int follow_fork (int, int) override;
372 void follow_exec (struct inferior *, char *) override;
373 int insert_fork_catchpoint (int) override;
374 int remove_fork_catchpoint (int) override;
375 int insert_vfork_catchpoint (int) override;
376 int remove_vfork_catchpoint (int) override;
377 int insert_exec_catchpoint (int) override;
378 int remove_exec_catchpoint (int) override;
379 enum exec_direction_kind execution_direction () override;
380
381protected:
d9f719f1 382 static void open_1 (const char *name, int from_tty, int extended_p);
f6ac5f3d
PA
383 void start_remote (int from_tty, int extended_p);
384};
385
d9f719f1
PA
386static const target_info extended_remote_target_info = {
387 "extended-remote",
388 N_("Extended remote serial target in gdb-specific protocol"),
389 remote_doc
390};
391
f6ac5f3d
PA
392/* Set up the extended remote target by extending the standard remote
393 target and adding to it. */
394
395class extended_remote_target final : public remote_target
396{
397public:
d9f719f1
PA
398 const target_info &info () const override
399 { return extended_remote_target_info; }
f6ac5f3d 400
d9f719f1
PA
401 /* Open an extended-remote connection. */
402 static void open (const char *, int);
f6ac5f3d
PA
403
404 bool can_create_inferior () override { return true; }
405 void create_inferior (const char *, const std::string &,
406 char **, int) override;
407
408 void detach (inferior *, int) override;
409
410 bool can_attach () override { return true; }
411 void attach (const char *, int) override;
412
413 void post_attach (int) override;
57810aa7 414 bool supports_disable_randomization () override;
f6ac5f3d
PA
415};
416
94585166
DB
417/* Per-program-space data key. */
418static const struct program_space_data *remote_pspace_data;
419
420/* The variable registered as the control variable used by the
421 remote exec-file commands. While the remote exec-file setting is
422 per-program-space, the set/show machinery uses this as the
423 location of the remote exec-file value. */
424static char *remote_exec_file_var;
425
6765f3e5
DJ
426/* The size to align memory write packets, when practical. The protocol
427 does not guarantee any alignment, and gdb will generate short
428 writes and unaligned writes, but even as a best-effort attempt this
429 can improve bulk transfers. For instance, if a write is misaligned
430 relative to the target's data bus, the stub may need to make an extra
431 round trip fetching data from the target. This doesn't make a
432 huge difference, but it's easy to do, so we try to be helpful.
433
434 The alignment chosen is arbitrary; usually data bus width is
435 important here, not the possibly larger cache line size. */
436enum { REMOTE_ALIGN_WRITES = 16 };
437
23860348 438/* Prototypes for local functions. */
6d820c5c 439static int getpkt_sane (char **buf, long *sizeof_buf, int forever);
74531fed 440static int getpkt_or_notif_sane (char **buf, long *sizeof_buf,
fee9eda9 441 int forever, int *is_notif);
6426a772 442
cbb8991c
DB
443struct remote_state;
444
445static int remote_vkill (int pid, struct remote_state *rs);
446
8020350c
DB
447static void remote_kill_k (void);
448
a14ed312 449static int readchar (int timeout);
c906108c 450
c33e31fd
PA
451static void remote_serial_write (const char *str, int len);
452
a14ed312 453static void interrupt_query (void);
c906108c 454
d62a8ae2
SM
455static void set_general_thread (ptid_t ptid);
456static void set_continue_thread (ptid_t ptid);
c906108c 457
a14ed312 458static void get_offsets (void);
c906108c 459
6d820c5c
DJ
460static void skip_frame (void);
461
462static long read_frame (char **buf_p, long *sizeof_buf);
c906108c 463
a14ed312 464static int hexnumlen (ULONGEST num);
c906108c 465
a14ed312 466static int stubhex (int ch);
c906108c 467
a14ed312 468static int hexnumstr (char *, ULONGEST);
c906108c 469
a14ed312 470static int hexnumnstr (char *, ULONGEST, int);
2df3850c 471
a14ed312 472static CORE_ADDR remote_address_masked (CORE_ADDR);
c906108c 473
baa336ce 474static void print_packet (const char *);
c906108c 475
a14ed312 476static int stub_unpack_int (char *buff, int fieldlength);
c906108c 477
39f77062 478static ptid_t remote_current_thread (ptid_t oldptid);
c906108c 479
baa336ce 480static int putpkt_binary (const char *buf, int cnt);
c906108c 481
a14ed312 482static void check_binary_download (CORE_ADDR addr);
c906108c 483
5a2468f5 484struct packet_config;
5a2468f5 485
a14ed312 486static void show_packet_config_cmd (struct packet_config *config);
5a2468f5 487
bb572ddd
DJ
488static void show_remote_protocol_packet_cmd (struct ui_file *file,
489 int from_tty,
490 struct cmd_list_element *c,
491 const char *value);
492
82f73884 493static char *write_ptid (char *buf, const char *endbuf, ptid_t ptid);
256642e8 494static ptid_t read_ptid (const char *buf, const char **obuf);
82f73884 495
c8d104ad
PA
496static void remote_query_supported (void);
497
36d25514 498static void remote_check_symbols (void);
c8d104ad 499
74531fed 500struct stop_reply;
74531fed 501static void stop_reply_xfree (struct stop_reply *);
722247f1 502static void remote_parse_stop_reply (char *, struct stop_reply *);
74531fed 503static void push_stop_reply (struct stop_reply *);
bcc75809 504static void discard_pending_stop_replies_in_queue (struct remote_state *);
74531fed
PA
505static int peek_stop_reply (ptid_t ptid);
506
cbb8991c
DB
507struct threads_listing_context;
508static void remove_new_fork_children (struct threads_listing_context *);
509
74531fed 510static void remote_async_inferior_event_handler (gdb_client_data);
74531fed 511
d962ef82
DJ
512static int remote_read_description_p (struct target_ops *target);
513
176a6961 514static void remote_console_output (char *msg);
dde08ee1 515
f4abbc16
MM
516static void remote_btrace_reset (void);
517
c0272db5
TW
518static void remote_btrace_maybe_reopen (void);
519
221e1a37
PA
520static int stop_reply_queue_length (void);
521
048094ac
PA
522static void remote_unpush_and_throw (void);
523
b6bb3468
PA
524static struct remote_state *get_remote_state (void);
525
a6b151f1
DJ
526/* For "remote". */
527
528static struct cmd_list_element *remote_cmdlist;
529
bb572ddd
DJ
530/* For "set remote" and "show remote". */
531
532static struct cmd_list_element *remote_set_cmdlist;
533static struct cmd_list_element *remote_show_cmdlist;
534
d458bd84
PA
535/* Stub vCont actions support.
536
537 Each field is a boolean flag indicating whether the stub reports
538 support for the corresponding action. */
539
540struct vCont_action_support
541{
542 /* vCont;t */
de44f5a7 543 bool t = false;
c1e36e3e
PA
544
545 /* vCont;r */
de44f5a7 546 bool r = false;
750ce8d1
YQ
547
548 /* vCont;s */
de44f5a7 549 bool s = false;
750ce8d1
YQ
550
551 /* vCont;S */
de44f5a7 552 bool S = false;
d458bd84
PA
553};
554
c1e36e3e
PA
555/* Controls whether GDB is willing to use range stepping. */
556
557static int use_range_stepping = 1;
558
0d031856
TT
559#define OPAQUETHREADBYTES 8
560
561/* a 64 bit opaque identifier */
562typedef unsigned char threadref[OPAQUETHREADBYTES];
563
564/* About this many threadisds fit in a packet. */
565
566#define MAXTHREADLISTRESULTS 32
567
6f8976bf
YQ
568/* The max number of chars in debug output. The rest of chars are
569 omitted. */
570
571#define REMOTE_DEBUG_MAX_CHAR 512
572
80152258
PA
573/* Data for the vFile:pread readahead cache. */
574
575struct readahead_cache
576{
dd194f6b
PA
577 /* Invalidate the readahead cache. */
578 void invalidate ();
579
580 /* Invalidate the readahead cache if it is holding data for FD. */
581 void invalidate_fd (int fd);
582
583 /* Serve pread from the readahead cache. Returns number of bytes
584 read, or 0 if the request can't be served from the cache. */
585 int pread (int fd, gdb_byte *read_buf, size_t len, ULONGEST offset);
586
80152258
PA
587 /* The file descriptor for the file that is being cached. -1 if the
588 cache is invalid. */
de44f5a7 589 int fd = -1;
80152258
PA
590
591 /* The offset into the file that the cache buffer corresponds
592 to. */
de44f5a7 593 ULONGEST offset = 0;
80152258
PA
594
595 /* The buffer holding the cache contents. */
de44f5a7 596 gdb_byte *buf = nullptr;
80152258
PA
597 /* The buffer's size. We try to read as much as fits into a packet
598 at a time. */
de44f5a7 599 size_t bufsize = 0;
80152258
PA
600
601 /* Cache hit and miss counters. */
de44f5a7
PA
602 ULONGEST hit_count = 0;
603 ULONGEST miss_count = 0;
80152258
PA
604};
605
43c3a0e4
PA
606/* Description of the remote protocol for a given architecture. */
607
608struct packet_reg
609{
610 long offset; /* Offset into G packet. */
611 long regnum; /* GDB's internal register number. */
612 LONGEST pnum; /* Remote protocol register number. */
613 int in_g_packet; /* Always part of G packet. */
614 /* long size in bytes; == register_size (target_gdbarch (), regnum);
615 at present. */
616 /* char *name; == gdbarch_register_name (target_gdbarch (), regnum);
617 at present. */
618};
619
620struct remote_arch_state
621{
622 explicit remote_arch_state (struct gdbarch *gdbarch);
623
624 /* Description of the remote protocol registers. */
625 long sizeof_g_packet;
626
627 /* Description of the remote protocol registers indexed by REGNUM
628 (making an array gdbarch_num_regs in size). */
629 std::unique_ptr<packet_reg[]> regs;
630
631 /* This is the size (in chars) of the first response to the ``g''
632 packet. It is used as a heuristic when determining the maximum
633 size of memory-read and memory-write packets. A target will
634 typically only reserve a buffer large enough to hold the ``g''
635 packet. The size does not include packet overhead (headers and
636 trailers). */
637 long actual_register_packet_size;
638
639 /* This is the maximum size (in chars) of a non read/write packet.
640 It is also used as a cap on the size of read/write packets. */
641 long remote_packet_size;
642};
643
ea9c271d
DJ
644/* Description of the remote protocol state for the currently
645 connected target. This is per-target state, and independent of the
646 selected architecture. */
647
9d6eea31 648class remote_state
ea9c271d 649{
9d6eea31
PA
650public:
651
de44f5a7
PA
652 remote_state ();
653 ~remote_state ();
654
9d6eea31
PA
655 /* Get the remote arch state for GDBARCH. */
656 struct remote_arch_state *get_remote_arch_state (struct gdbarch *gdbarch);
657
658public: /* data */
659
ea9c271d
DJ
660 /* A buffer to use for incoming packets, and its current size. The
661 buffer is grown dynamically for larger incoming packets.
662 Outgoing packets may also be constructed in this buffer.
663 BUF_SIZE is always at least REMOTE_PACKET_SIZE;
664 REMOTE_PACKET_SIZE should be used to limit the length of outgoing
665 packets. */
666 char *buf;
667 long buf_size;
be2a5f71 668
1e51243a
PA
669 /* True if we're going through initial connection setup (finding out
670 about the remote side's threads, relocating symbols, etc.). */
de44f5a7 671 bool starting_up = false;
1e51243a 672
be2a5f71
DJ
673 /* If we negotiated packet size explicitly (and thus can bypass
674 heuristics for the largest packet size that will not overflow
675 a buffer in the stub), this will be set to that packet size.
676 Otherwise zero, meaning to use the guessed size. */
de44f5a7 677 long explicit_packet_size = 0;
2d717e4f
DJ
678
679 /* remote_wait is normally called when the target is running and
680 waits for a stop reply packet. But sometimes we need to call it
681 when the target is already stopped. We can send a "?" packet
682 and have remote_wait read the response. Or, if we already have
683 the response, we can stash it in BUF and tell remote_wait to
684 skip calling getpkt. This flag is set when BUF contains a
685 stop reply packet and the target is not waiting. */
de44f5a7 686 int cached_wait_status = 0;
a6f3e723
SL
687
688 /* True, if in no ack mode. That is, neither GDB nor the stub will
689 expect acks from each other. The connection is assumed to be
690 reliable. */
de44f5a7 691 bool noack_mode = false;
82f73884
PA
692
693 /* True if we're connected in extended remote mode. */
de44f5a7 694 bool extended = false;
82f73884 695
e24a49d8
PA
696 /* True if we resumed the target and we're waiting for the target to
697 stop. In the mean time, we can't start another command/query.
698 The remote server wouldn't be ready to process it, so we'd
699 timeout waiting for a reply that would never come and eventually
700 we'd close the connection. This can happen in asynchronous mode
701 because we allow GDB commands while the target is running. */
de44f5a7 702 bool waiting_for_stop_reply = false;
74531fed 703
d458bd84 704 /* The status of the stub support for the various vCont actions. */
de44f5a7 705 vCont_action_support supports_vCont;
782b2b07 706
de44f5a7 707 /* True if the user has pressed Ctrl-C, but the target hasn't
3a29589a 708 responded to that. */
de44f5a7 709 bool ctrlc_pending_p = false;
5d93a237 710
048094ac
PA
711 /* True if we saw a Ctrl-C while reading or writing from/to the
712 remote descriptor. At that point it is not safe to send a remote
713 interrupt packet, so we instead remember we saw the Ctrl-C and
714 process it once we're done with sending/receiving the current
715 packet, which should be shortly. If however that takes too long,
716 and the user presses Ctrl-C again, we offer to disconnect. */
de44f5a7 717 bool got_ctrlc_during_io = false;
048094ac 718
5d93a237
TT
719 /* Descriptor for I/O to remote machine. Initialize it to NULL so that
720 remote_open knows that we don't have a file open when the program
721 starts. */
de44f5a7 722 struct serial *remote_desc = nullptr;
47f8a51d
TT
723
724 /* These are the threads which we last sent to the remote system. The
725 TID member will be -1 for all or -2 for not sent yet. */
de44f5a7
PA
726 ptid_t general_thread = null_ptid;
727 ptid_t continue_thread = null_ptid;
262e1174
TT
728
729 /* This is the traceframe which we last selected on the remote system.
730 It will be -1 if no traceframe is selected. */
de44f5a7 731 int remote_traceframe_number = -1;
747dc59d 732
de44f5a7 733 char *last_pass_packet = nullptr;
5e4a05c4
TT
734
735 /* The last QProgramSignals packet sent to the target. We bypass
736 sending a new program signals list down to the target if the new
737 packet is exactly the same as the last we sent. IOW, we only let
738 the target know about program signals list changes. */
de44f5a7 739 char *last_program_signals_packet = nullptr;
b73be471 740
de44f5a7 741 gdb_signal last_sent_signal = GDB_SIGNAL_0;
280ceea3 742
de44f5a7 743 bool last_sent_step = false;
8e88304f 744
3a00c802 745 /* The execution direction of the last resume we got. */
de44f5a7 746 exec_direction_kind last_resume_exec_dir = EXEC_FORWARD;
3a00c802 747
de44f5a7
PA
748 char *finished_object = nullptr;
749 char *finished_annex = nullptr;
750 ULONGEST finished_offset = 0;
b80fafe3
TT
751
752 /* Should we try the 'ThreadInfo' query packet?
753
754 This variable (NOT available to the user: auto-detect only!)
755 determines whether GDB will use the new, simpler "ThreadInfo"
756 query or the older, more complex syntax for thread queries.
757 This is an auto-detect variable (set to true at each connect,
758 and set to false when the target fails to recognize it). */
de44f5a7
PA
759 bool use_threadinfo_query = false;
760 bool use_threadextra_query = false;
88b496c3 761
de44f5a7
PA
762 threadref echo_nextthread {};
763 threadref nextthread {};
764 threadref resultthreadlist[MAXTHREADLISTRESULTS] {};
5965e028
YQ
765
766 /* The state of remote notification. */
de44f5a7 767 struct remote_notif_state *notif_state = nullptr;
f4abbc16
MM
768
769 /* The branch trace configuration. */
de44f5a7 770 struct btrace_config btrace_config {};
15a201c8
GB
771
772 /* The argument to the last "vFile:setfs:" packet we sent, used
773 to avoid sending repeated unnecessary "vFile:setfs:" packets.
774 Initialized to -1 to indicate that no "vFile:setfs:" packet
775 has yet been sent. */
de44f5a7 776 int fs_pid = -1;
80152258
PA
777
778 /* A readahead cache for vFile:pread. Often, reading a binary
779 involves a sequence of small reads. E.g., when parsing an ELF
780 file. A readahead cache helps mostly the case of remote
781 debugging on a connection with higher latency, due to the
782 request/reply nature of the RSP. We only cache data for a single
783 file descriptor at a time. */
784 struct readahead_cache readahead_cache;
9d6eea31
PA
785
786private:
787 /* Mapping of remote protocol data for each gdbarch. Usually there
788 is only one entry here, though we may see more with stubs that
789 support multi-process. */
43c3a0e4 790 std::unordered_map<struct gdbarch *, remote_arch_state>
9d6eea31 791 m_arch_states;
ea9c271d
DJ
792};
793
7aabaf9d
SM
794/* Private data that we'll store in (struct thread_info)->priv. */
795struct remote_thread_info : public private_thread_info
dc146f7c 796{
7aabaf9d
SM
797 std::string extra;
798 std::string name;
799 int core = -1;
799a2abe 800
f6327dcb
KB
801 /* Thread handle, perhaps a pthread_t or thread_t value, stored as a
802 sequence of bytes. */
7aabaf9d 803 gdb::byte_vector thread_handle;
f6327dcb 804
799a2abe 805 /* Whether the target stopped for a breakpoint/watchpoint. */
7aabaf9d 806 enum target_stop_reason stop_reason = TARGET_STOPPED_BY_NO_REASON;
799a2abe
PA
807
808 /* This is set to the data address of the access causing the target
809 to stop for a watchpoint. */
7aabaf9d 810 CORE_ADDR watch_data_address = 0;
85ad3aaf
PA
811
812 /* Fields used by the vCont action coalescing implemented in
813 remote_resume / remote_commit_resume. remote_resume stores each
814 thread's last resume request in these fields, so that a later
815 remote_commit_resume knows which is the proper action for this
816 thread to include in the vCont packet. */
817
818 /* True if the last target_resume call for this thread was a step
819 request, false if a continue request. */
7aabaf9d 820 int last_resume_step = 0;
85ad3aaf
PA
821
822 /* The signal specified in the last target_resume call for this
823 thread. */
7aabaf9d 824 gdb_signal last_resume_sig = GDB_SIGNAL_0;
85ad3aaf
PA
825
826 /* Whether this thread was already vCont-resumed on the remote
827 side. */
7aabaf9d 828 int vcont_resumed = 0;
dc146f7c
VP
829};
830
de44f5a7
PA
831remote_state::remote_state ()
832{
833 /* The default buffer size is unimportant; it will be expanded
834 whenever a larger buffer is needed. */
835 this->buf_size = 400;
836 this->buf = (char *) xmalloc (this->buf_size);
837}
838
839remote_state::~remote_state ()
840{
841 xfree (this->last_pass_packet);
842 xfree (this->last_program_signals_packet);
843 xfree (this->buf);
844 xfree (this->finished_object);
845 xfree (this->finished_annex);
846}
847
ea9c271d
DJ
848/* This data could be associated with a target, but we do not always
849 have access to the current target when we need it, so for now it is
850 static. This will be fine for as long as only one target is in use
851 at a time. */
cf792862 852static struct remote_state *remote_state;
ea9c271d
DJ
853
854static struct remote_state *
0b83947e 855get_remote_state_raw (void)
ea9c271d 856{
cf792862
TT
857 return remote_state;
858}
859
35b1e5cc
SS
860/* Utility: generate error from an incoming stub packet. */
861static void
862trace_error (char *buf)
863{
864 if (*buf++ != 'E')
865 return; /* not an error msg */
866 switch (*buf)
867 {
868 case '1': /* malformed packet error */
869 if (*++buf == '0') /* general case: */
870 error (_("remote.c: error in outgoing packet."));
871 else
872 error (_("remote.c: error in outgoing packet at field #%ld."),
873 strtol (buf, NULL, 16));
35b1e5cc
SS
874 default:
875 error (_("Target returns error code '%s'."), buf);
876 }
877}
878
879/* Utility: wait for reply from stub, while accepting "O" packets. */
b6bb3468 880
35b1e5cc 881static char *
b6bb3468 882remote_get_noisy_reply ()
35b1e5cc 883{
b6bb3468
PA
884 struct remote_state *rs = get_remote_state ();
885
35b1e5cc
SS
886 do /* Loop on reply from remote stub. */
887 {
888 char *buf;
a744cf53 889
0df8b418 890 QUIT; /* Allow user to bail out with ^C. */
b6bb3468
PA
891 getpkt (&rs->buf, &rs->buf_size, 0);
892 buf = rs->buf;
ad91cd99 893 if (buf[0] == 'E')
35b1e5cc 894 trace_error (buf);
61012eef 895 else if (startswith (buf, "qRelocInsn:"))
dde08ee1
PA
896 {
897 ULONGEST ul;
898 CORE_ADDR from, to, org_to;
256642e8 899 const char *p, *pp;
dde08ee1 900 int adjusted_size = 0;
7556d4a4 901 int relocated = 0;
dde08ee1
PA
902
903 p = buf + strlen ("qRelocInsn:");
904 pp = unpack_varlen_hex (p, &ul);
905 if (*pp != ';')
cb91c06a 906 error (_("invalid qRelocInsn packet: %s"), buf);
dde08ee1
PA
907 from = ul;
908
909 p = pp + 1;
a9cbf802 910 unpack_varlen_hex (p, &ul);
dde08ee1
PA
911 to = ul;
912
913 org_to = to;
914
492d29ea 915 TRY
dde08ee1 916 {
f5656ead 917 gdbarch_relocate_instruction (target_gdbarch (), &to, from);
7556d4a4 918 relocated = 1;
dde08ee1 919 }
492d29ea 920 CATCH (ex, RETURN_MASK_ALL)
7556d4a4
PA
921 {
922 if (ex.error == MEMORY_ERROR)
923 {
924 /* Propagate memory errors silently back to the
925 target. The stub may have limited the range of
926 addresses we can write to, for example. */
927 }
928 else
929 {
930 /* Something unexpectedly bad happened. Be verbose
931 so we can tell what, and propagate the error back
932 to the stub, so it doesn't get stuck waiting for
933 a response. */
934 exception_fprintf (gdb_stderr, ex,
935 _("warning: relocating instruction: "));
936 }
937 putpkt ("E01");
938 }
492d29ea 939 END_CATCH
7556d4a4
PA
940
941 if (relocated)
dde08ee1
PA
942 {
943 adjusted_size = to - org_to;
944
b6bb3468 945 xsnprintf (buf, rs->buf_size, "qRelocInsn:%x", adjusted_size);
dde08ee1
PA
946 putpkt (buf);
947 }
dde08ee1 948 }
ad91cd99 949 else if (buf[0] == 'O' && buf[1] != 'K')
35b1e5cc
SS
950 remote_console_output (buf + 1); /* 'O' message from stub */
951 else
0df8b418 952 return buf; /* Here's the actual reply. */
35b1e5cc
SS
953 }
954 while (1);
955}
3c3bea1c 956
9d6eea31
PA
957struct remote_arch_state *
958remote_state::get_remote_arch_state (struct gdbarch *gdbarch)
d01949b6 959{
43c3a0e4
PA
960 remote_arch_state *rsa;
961
962 auto it = this->m_arch_states.find (gdbarch);
963 if (it == this->m_arch_states.end ())
9d6eea31 964 {
43c3a0e4
PA
965 auto p = this->m_arch_states.emplace (std::piecewise_construct,
966 std::forward_as_tuple (gdbarch),
967 std::forward_as_tuple (gdbarch));
968 rsa = &p.first->second;
9d6eea31
PA
969
970 /* Make sure that the packet buffer is plenty big enough for
971 this architecture. */
972 if (this->buf_size < rsa->remote_packet_size)
973 {
974 this->buf_size = 2 * rsa->remote_packet_size;
975 this->buf = (char *) xrealloc (this->buf, this->buf_size);
976 }
977 }
43c3a0e4
PA
978 else
979 rsa = &it->second;
980
981 return rsa;
d01949b6
AC
982}
983
0b83947e
DJ
984/* Fetch the global remote target state. */
985
986static struct remote_state *
987get_remote_state (void)
988{
9d6eea31
PA
989 struct remote_state *rs = get_remote_state_raw ();
990
0b83947e
DJ
991 /* Make sure that the remote architecture state has been
992 initialized, because doing so might reallocate rs->buf. Any
993 function which calls getpkt also needs to be mindful of changes
994 to rs->buf, but this call limits the number of places which run
995 into trouble. */
9d6eea31 996 rs->get_remote_arch_state (target_gdbarch ());
0b83947e 997
9d6eea31 998 return rs;
0b83947e
DJ
999}
1000
94585166
DB
1001/* Cleanup routine for the remote module's pspace data. */
1002
1003static void
1004remote_pspace_data_cleanup (struct program_space *pspace, void *arg)
1005{
19ba03f4 1006 char *remote_exec_file = (char *) arg;
94585166
DB
1007
1008 xfree (remote_exec_file);
1009}
1010
1011/* Fetch the remote exec-file from the current program space. */
1012
1013static const char *
1014get_remote_exec_file (void)
1015{
1016 char *remote_exec_file;
1017
19ba03f4
SM
1018 remote_exec_file
1019 = (char *) program_space_data (current_program_space,
1020 remote_pspace_data);
94585166
DB
1021 if (remote_exec_file == NULL)
1022 return "";
1023
1024 return remote_exec_file;
1025}
1026
1027/* Set the remote exec file for PSPACE. */
1028
1029static void
1030set_pspace_remote_exec_file (struct program_space *pspace,
1031 char *remote_exec_file)
1032{
19ba03f4 1033 char *old_file = (char *) program_space_data (pspace, remote_pspace_data);
94585166
DB
1034
1035 xfree (old_file);
1036 set_program_space_data (pspace, remote_pspace_data,
1037 xstrdup (remote_exec_file));
1038}
1039
1040/* The "set/show remote exec-file" set command hook. */
1041
1042static void
eb4c3f4a 1043set_remote_exec_file (const char *ignored, int from_tty,
94585166
DB
1044 struct cmd_list_element *c)
1045{
1046 gdb_assert (remote_exec_file_var != NULL);
1047 set_pspace_remote_exec_file (current_program_space, remote_exec_file_var);
1048}
1049
1050/* The "set/show remote exec-file" show command hook. */
1051
1052static void
1053show_remote_exec_file (struct ui_file *file, int from_tty,
1054 struct cmd_list_element *cmd, const char *value)
1055{
1056 fprintf_filtered (file, "%s\n", remote_exec_file_var);
1057}
1058
74ca34ce
DJ
1059static int
1060compare_pnums (const void *lhs_, const void *rhs_)
1061{
19ba03f4
SM
1062 const struct packet_reg * const *lhs
1063 = (const struct packet_reg * const *) lhs_;
1064 const struct packet_reg * const *rhs
1065 = (const struct packet_reg * const *) rhs_;
74ca34ce
DJ
1066
1067 if ((*lhs)->pnum < (*rhs)->pnum)
1068 return -1;
1069 else if ((*lhs)->pnum == (*rhs)->pnum)
1070 return 0;
1071 else
1072 return 1;
1073}
1074
c21236dc
PA
1075static int
1076map_regcache_remote_table (struct gdbarch *gdbarch, struct packet_reg *regs)
d01949b6 1077{
74ca34ce 1078 int regnum, num_remote_regs, offset;
74ca34ce 1079 struct packet_reg **remote_regs;
ea9c271d 1080
4a22f64d 1081 for (regnum = 0; regnum < gdbarch_num_regs (gdbarch); regnum++)
ad10f812 1082 {
c21236dc 1083 struct packet_reg *r = &regs[regnum];
baef701f 1084
4a22f64d 1085 if (register_size (gdbarch, regnum) == 0)
baef701f
DJ
1086 /* Do not try to fetch zero-sized (placeholder) registers. */
1087 r->pnum = -1;
1088 else
1089 r->pnum = gdbarch_remote_register_number (gdbarch, regnum);
1090
b323314b 1091 r->regnum = regnum;
74ca34ce
DJ
1092 }
1093
1094 /* Define the g/G packet format as the contents of each register
1095 with a remote protocol number, in order of ascending protocol
1096 number. */
1097
224c3ddb 1098 remote_regs = XALLOCAVEC (struct packet_reg *, gdbarch_num_regs (gdbarch));
f57d151a 1099 for (num_remote_regs = 0, regnum = 0;
4a22f64d 1100 regnum < gdbarch_num_regs (gdbarch);
f57d151a 1101 regnum++)
c21236dc
PA
1102 if (regs[regnum].pnum != -1)
1103 remote_regs[num_remote_regs++] = &regs[regnum];
7d58c67d 1104
74ca34ce
DJ
1105 qsort (remote_regs, num_remote_regs, sizeof (struct packet_reg *),
1106 compare_pnums);
1107
1108 for (regnum = 0, offset = 0; regnum < num_remote_regs; regnum++)
1109 {
1110 remote_regs[regnum]->in_g_packet = 1;
1111 remote_regs[regnum]->offset = offset;
4a22f64d 1112 offset += register_size (gdbarch, remote_regs[regnum]->regnum);
ad10f812
AC
1113 }
1114
c21236dc
PA
1115 return offset;
1116}
1117
1118/* Given the architecture described by GDBARCH, return the remote
1119 protocol register's number and the register's offset in the g/G
1120 packets of GDB register REGNUM, in PNUM and POFFSET respectively.
1121 If the target does not have a mapping for REGNUM, return false,
1122 otherwise, return true. */
1123
1124int
1125remote_register_number_and_offset (struct gdbarch *gdbarch, int regnum,
1126 int *pnum, int *poffset)
1127{
c21236dc
PA
1128 gdb_assert (regnum < gdbarch_num_regs (gdbarch));
1129
b80406ac 1130 std::vector<packet_reg> regs (gdbarch_num_regs (gdbarch));
c21236dc 1131
b80406ac 1132 map_regcache_remote_table (gdbarch, regs.data ());
c21236dc
PA
1133
1134 *pnum = regs[regnum].pnum;
1135 *poffset = regs[regnum].offset;
1136
c21236dc
PA
1137 return *pnum != -1;
1138}
1139
9d6eea31 1140remote_arch_state::remote_arch_state (struct gdbarch *gdbarch)
c21236dc 1141{
c21236dc
PA
1142 /* Use the architecture to build a regnum<->pnum table, which will be
1143 1:1 unless a feature set specifies otherwise. */
9d6eea31 1144 this->regs.reset (new packet_reg [gdbarch_num_regs (gdbarch)] ());
c21236dc 1145
74ca34ce
DJ
1146 /* Record the maximum possible size of the g packet - it may turn out
1147 to be smaller. */
9d6eea31
PA
1148 this->sizeof_g_packet
1149 = map_regcache_remote_table (gdbarch, this->regs.get ());
74ca34ce 1150
0df8b418 1151 /* Default maximum number of characters in a packet body. Many
d01949b6
AC
1152 remote stubs have a hardwired buffer size of 400 bytes
1153 (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
1154 as the maximum packet-size to ensure that the packet and an extra
1155 NUL character can always fit in the buffer. This stops GDB
1156 trashing stubs that try to squeeze an extra NUL into what is
ea9c271d 1157 already a full buffer (As of 1999-12-04 that was most stubs). */
9d6eea31 1158 this->remote_packet_size = 400 - 1;
d01949b6 1159
ea9c271d 1160 /* This one is filled in when a ``g'' packet is received. */
9d6eea31 1161 this->actual_register_packet_size = 0;
ea9c271d
DJ
1162
1163 /* Should rsa->sizeof_g_packet needs more space than the
0df8b418
MS
1164 default, adjust the size accordingly. Remember that each byte is
1165 encoded as two characters. 32 is the overhead for the packet
1166 header / footer. NOTE: cagney/1999-10-26: I suspect that 8
d01949b6 1167 (``$NN:G...#NN'') is a better guess, the below has been padded a
23860348 1168 little. */
9d6eea31
PA
1169 if (this->sizeof_g_packet > ((this->remote_packet_size - 32) / 2))
1170 this->remote_packet_size = (this->sizeof_g_packet * 2 + 32);
ea9c271d
DJ
1171}
1172
1173/* Return the current allowed size of a remote packet. This is
1174 inferred from the current architecture, and should be used to
1175 limit the length of outgoing packets. */
1176static long
1177get_remote_packet_size (void)
1178{
be2a5f71 1179 struct remote_state *rs = get_remote_state ();
9d6eea31 1180 remote_arch_state *rsa = rs->get_remote_arch_state (target_gdbarch ());
ea9c271d 1181
be2a5f71
DJ
1182 if (rs->explicit_packet_size)
1183 return rs->explicit_packet_size;
1184
ea9c271d 1185 return rsa->remote_packet_size;
d01949b6
AC
1186}
1187
ad10f812 1188static struct packet_reg *
5cd63fda
PA
1189packet_reg_from_regnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
1190 long regnum)
ad10f812 1191{
5cd63fda 1192 if (regnum < 0 && regnum >= gdbarch_num_regs (gdbarch))
b323314b
AC
1193 return NULL;
1194 else
ad10f812 1195 {
ea9c271d 1196 struct packet_reg *r = &rsa->regs[regnum];
a744cf53 1197
b323314b
AC
1198 gdb_assert (r->regnum == regnum);
1199 return r;
ad10f812 1200 }
ad10f812
AC
1201}
1202
1203static struct packet_reg *
5cd63fda
PA
1204packet_reg_from_pnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
1205 LONGEST pnum)
ad10f812 1206{
b323314b 1207 int i;
a744cf53 1208
5cd63fda 1209 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
ad10f812 1210 {
ea9c271d 1211 struct packet_reg *r = &rsa->regs[i];
a744cf53 1212
b323314b
AC
1213 if (r->pnum == pnum)
1214 return r;
ad10f812
AC
1215 }
1216 return NULL;
d01949b6
AC
1217}
1218
f6ac5f3d 1219static remote_target remote_ops;
c906108c 1220
f6ac5f3d 1221static extended_remote_target extended_remote_ops;
c906108c 1222
6426a772
JM
1223/* FIXME: cagney/1999-09-23: Even though getpkt was called with
1224 ``forever'' still use the normal timeout mechanism. This is
1225 currently used by the ASYNC code to guarentee that target reads
1226 during the initial connect always time-out. Once getpkt has been
1227 modified to return a timeout indication and, in turn
1228 remote_wait()/wait_for_inferior() have gained a timeout parameter
23860348 1229 this can go away. */
6426a772
JM
1230static int wait_forever_enabled_p = 1;
1231
9a7071a8
JB
1232/* Allow the user to specify what sequence to send to the remote
1233 when he requests a program interruption: Although ^C is usually
1234 what remote systems expect (this is the default, here), it is
1235 sometimes preferable to send a break. On other systems such
1236 as the Linux kernel, a break followed by g, which is Magic SysRq g
1237 is required in order to interrupt the execution. */
1238const char interrupt_sequence_control_c[] = "Ctrl-C";
1239const char interrupt_sequence_break[] = "BREAK";
1240const char interrupt_sequence_break_g[] = "BREAK-g";
40478521 1241static const char *const interrupt_sequence_modes[] =
9a7071a8
JB
1242 {
1243 interrupt_sequence_control_c,
1244 interrupt_sequence_break,
1245 interrupt_sequence_break_g,
1246 NULL
1247 };
1248static const char *interrupt_sequence_mode = interrupt_sequence_control_c;
1249
1250static void
1251show_interrupt_sequence (struct ui_file *file, int from_tty,
1252 struct cmd_list_element *c,
1253 const char *value)
1254{
1255 if (interrupt_sequence_mode == interrupt_sequence_control_c)
1256 fprintf_filtered (file,
1257 _("Send the ASCII ETX character (Ctrl-c) "
1258 "to the remote target to interrupt the "
1259 "execution of the program.\n"));
1260 else if (interrupt_sequence_mode == interrupt_sequence_break)
1261 fprintf_filtered (file,
1262 _("send a break signal to the remote target "
1263 "to interrupt the execution of the program.\n"));
1264 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
1265 fprintf_filtered (file,
1266 _("Send a break signal and 'g' a.k.a. Magic SysRq g to "
1267 "the remote target to interrupt the execution "
1268 "of Linux kernel.\n"));
1269 else
1270 internal_error (__FILE__, __LINE__,
1271 _("Invalid value for interrupt_sequence_mode: %s."),
1272 interrupt_sequence_mode);
1273}
6426a772 1274
9a7071a8
JB
1275/* This boolean variable specifies whether interrupt_sequence is sent
1276 to the remote target when gdb connects to it.
1277 This is mostly needed when you debug the Linux kernel: The Linux kernel
1278 expects BREAK g which is Magic SysRq g for connecting gdb. */
1279static int interrupt_on_connect = 0;
c906108c 1280
9a7071a8
JB
1281/* This variable is used to implement the "set/show remotebreak" commands.
1282 Since these commands are now deprecated in favor of "set/show remote
1283 interrupt-sequence", it no longer has any effect on the code. */
c906108c
SS
1284static int remote_break;
1285
9a7071a8 1286static void
eb4c3f4a 1287set_remotebreak (const char *args, int from_tty, struct cmd_list_element *c)
9a7071a8
JB
1288{
1289 if (remote_break)
1290 interrupt_sequence_mode = interrupt_sequence_break;
1291 else
1292 interrupt_sequence_mode = interrupt_sequence_control_c;
1293}
1294
1295static void
1296show_remotebreak (struct ui_file *file, int from_tty,
1297 struct cmd_list_element *c,
1298 const char *value)
1299{
1300}
1301
c906108c
SS
1302/* This variable sets the number of bits in an address that are to be
1303 sent in a memory ("M" or "m") packet. Normally, after stripping
0df8b418 1304 leading zeros, the entire address would be sent. This variable
c906108c
SS
1305 restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
1306 initial implementation of remote.c restricted the address sent in
1307 memory packets to ``host::sizeof long'' bytes - (typically 32
1308 bits). Consequently, for 64 bit targets, the upper 32 bits of an
1309 address was never sent. Since fixing this bug may cause a break in
1310 some remote targets this variable is principly provided to
23860348 1311 facilitate backward compatibility. */
c906108c 1312
883b9c6c 1313static unsigned int remote_address_size;
c906108c 1314
11cf8741 1315\f
11cf8741 1316/* User configurable variables for the number of characters in a
ea9c271d
DJ
1317 memory read/write packet. MIN (rsa->remote_packet_size,
1318 rsa->sizeof_g_packet) is the default. Some targets need smaller
24b06219 1319 values (fifo overruns, et.al.) and some users need larger values
ad10f812
AC
1320 (speed up transfers). The variables ``preferred_*'' (the user
1321 request), ``current_*'' (what was actually set) and ``forced_*''
23860348 1322 (Positive - a soft limit, negative - a hard limit). */
11cf8741
JM
1323
1324struct memory_packet_config
1325{
a121b7c1 1326 const char *name;
11cf8741
JM
1327 long size;
1328 int fixed_p;
1329};
1330
cc0be08f
PA
1331/* The default max memory-write-packet-size, when the setting is
1332 "fixed". The 16k is historical. (It came from older GDB's using
1333 alloca for buffers and the knowledge (folklore?) that some hosts
1334 don't cope very well with large alloca calls.) */
1335#define DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED 16384
a5c0808e
PA
1336
1337/* The minimum remote packet size for memory transfers. Ensures we
1338 can write at least one byte. */
1339#define MIN_MEMORY_PACKET_SIZE 20
1340
cc0be08f
PA
1341/* Get the memory packet size, assuming it is fixed. */
1342
1343static long
1344get_fixed_memory_packet_size (struct memory_packet_config *config)
1345{
1346 gdb_assert (config->fixed_p);
1347
1348 if (config->size <= 0)
1349 return DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED;
1350 else
1351 return config->size;
1352}
1353
11cf8741
JM
1354/* Compute the current size of a read/write packet. Since this makes
1355 use of ``actual_register_packet_size'' the computation is dynamic. */
1356
1357static long
1358get_memory_packet_size (struct memory_packet_config *config)
1359{
d01949b6 1360 struct remote_state *rs = get_remote_state ();
9d6eea31 1361 remote_arch_state *rsa = rs->get_remote_arch_state (target_gdbarch ());
ea9c271d 1362
11cf8741
JM
1363 long what_they_get;
1364 if (config->fixed_p)
cc0be08f 1365 what_they_get = get_fixed_memory_packet_size (config);
11cf8741
JM
1366 else
1367 {
ea9c271d 1368 what_they_get = get_remote_packet_size ();
23860348 1369 /* Limit the packet to the size specified by the user. */
11cf8741
JM
1370 if (config->size > 0
1371 && what_they_get > config->size)
1372 what_they_get = config->size;
be2a5f71
DJ
1373
1374 /* Limit it to the size of the targets ``g'' response unless we have
1375 permission from the stub to use a larger packet size. */
1376 if (rs->explicit_packet_size == 0
1377 && rsa->actual_register_packet_size > 0
1378 && what_they_get > rsa->actual_register_packet_size)
1379 what_they_get = rsa->actual_register_packet_size;
11cf8741 1380 }
a5c0808e
PA
1381 if (what_they_get < MIN_MEMORY_PACKET_SIZE)
1382 what_they_get = MIN_MEMORY_PACKET_SIZE;
6d820c5c
DJ
1383
1384 /* Make sure there is room in the global buffer for this packet
1385 (including its trailing NUL byte). */
1386 if (rs->buf_size < what_they_get + 1)
1387 {
1388 rs->buf_size = 2 * what_they_get;
224c3ddb 1389 rs->buf = (char *) xrealloc (rs->buf, 2 * what_they_get);
6d820c5c
DJ
1390 }
1391
11cf8741
JM
1392 return what_they_get;
1393}
1394
0df8b418 1395/* Update the size of a read/write packet. If they user wants
23860348 1396 something really big then do a sanity check. */
11cf8741
JM
1397
1398static void
ac88e2de 1399set_memory_packet_size (const char *args, struct memory_packet_config *config)
11cf8741
JM
1400{
1401 int fixed_p = config->fixed_p;
1402 long size = config->size;
a744cf53 1403
11cf8741 1404 if (args == NULL)
8a3fe4f8 1405 error (_("Argument required (integer, `fixed' or `limited')."));
11cf8741
JM
1406 else if (strcmp (args, "hard") == 0
1407 || strcmp (args, "fixed") == 0)
1408 fixed_p = 1;
1409 else if (strcmp (args, "soft") == 0
1410 || strcmp (args, "limit") == 0)
1411 fixed_p = 0;
1412 else
1413 {
1414 char *end;
a744cf53 1415
11cf8741
JM
1416 size = strtoul (args, &end, 0);
1417 if (args == end)
8a3fe4f8 1418 error (_("Invalid %s (bad syntax)."), config->name);
a5c0808e
PA
1419
1420 /* Instead of explicitly capping the size of a packet to or
1421 disallowing it, the user is allowed to set the size to
1422 something arbitrarily large. */
11cf8741 1423 }
a5c0808e 1424
23860348 1425 /* Extra checks? */
11cf8741
JM
1426 if (fixed_p && !config->fixed_p)
1427 {
cc0be08f
PA
1428 /* So that the query shows the correct value. */
1429 long query_size = (size <= 0
1430 ? DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED
1431 : size);
1432
e2e0b3e5
AC
1433 if (! query (_("The target may not be able to correctly handle a %s\n"
1434 "of %ld bytes. Change the packet size? "),
cc0be08f 1435 config->name, query_size))
8a3fe4f8 1436 error (_("Packet size not changed."));
11cf8741 1437 }
23860348 1438 /* Update the config. */
11cf8741
JM
1439 config->fixed_p = fixed_p;
1440 config->size = size;
1441}
1442
1443static void
1444show_memory_packet_size (struct memory_packet_config *config)
1445{
cc0be08f
PA
1446 if (config->size == 0)
1447 printf_filtered (_("The %s is 0 (default). "), config->name);
1448 else
1449 printf_filtered (_("The %s is %ld. "), config->name, config->size);
11cf8741 1450 if (config->fixed_p)
a3f17187 1451 printf_filtered (_("Packets are fixed at %ld bytes.\n"),
cc0be08f 1452 get_fixed_memory_packet_size (config));
11cf8741 1453 else
cc0be08f
PA
1454 {
1455 struct remote_state *rs = get_remote_state ();
1456
1457 if (rs->remote_desc != NULL)
1458 printf_filtered (_("Packets are limited to %ld bytes.\n"),
1459 get_memory_packet_size (config));
1460 else
1461 puts_filtered ("The actual limit will be further reduced "
1462 "dependent on the target.\n");
1463 }
11cf8741
JM
1464}
1465
1466static struct memory_packet_config memory_write_packet_config =
1467{
1468 "memory-write-packet-size",
1469};
1470
1471static void
ac88e2de 1472set_memory_write_packet_size (const char *args, int from_tty)
11cf8741
JM
1473{
1474 set_memory_packet_size (args, &memory_write_packet_config);
1475}
1476
1477static void
ac88e2de 1478show_memory_write_packet_size (const char *args, int from_tty)
11cf8741
JM
1479{
1480 show_memory_packet_size (&memory_write_packet_config);
1481}
1482
1483static long
1484get_memory_write_packet_size (void)
1485{
1486 return get_memory_packet_size (&memory_write_packet_config);
1487}
1488
1489static struct memory_packet_config memory_read_packet_config =
1490{
1491 "memory-read-packet-size",
1492};
1493
1494static void
ac88e2de 1495set_memory_read_packet_size (const char *args, int from_tty)
11cf8741
JM
1496{
1497 set_memory_packet_size (args, &memory_read_packet_config);
1498}
1499
1500static void
ac88e2de 1501show_memory_read_packet_size (const char *args, int from_tty)
11cf8741
JM
1502{
1503 show_memory_packet_size (&memory_read_packet_config);
1504}
1505
1506static long
1507get_memory_read_packet_size (void)
1508{
1509 long size = get_memory_packet_size (&memory_read_packet_config);
a744cf53 1510
11cf8741
JM
1511 /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
1512 extra buffer size argument before the memory read size can be
ea9c271d
DJ
1513 increased beyond this. */
1514 if (size > get_remote_packet_size ())
1515 size = get_remote_packet_size ();
11cf8741
JM
1516 return size;
1517}
1518
11cf8741 1519\f
5a2468f5 1520/* Generic configuration support for packets the stub optionally
0df8b418 1521 supports. Allows the user to specify the use of the packet as well
23860348 1522 as allowing GDB to auto-detect support in the remote stub. */
5a2468f5
JM
1523
1524enum packet_support
1525 {
1526 PACKET_SUPPORT_UNKNOWN = 0,
1527 PACKET_ENABLE,
1528 PACKET_DISABLE
1529 };
1530
5a2468f5
JM
1531struct packet_config
1532 {
bb572ddd
DJ
1533 const char *name;
1534 const char *title;
4082afcc
PA
1535
1536 /* If auto, GDB auto-detects support for this packet or feature,
1537 either through qSupported, or by trying the packet and looking
1538 at the response. If true, GDB assumes the target supports this
ca4f7f8b
PA
1539 packet. If false, the packet is disabled. Configs that don't
1540 have an associated command always have this set to auto. */
7f19b9a2 1541 enum auto_boolean detect;
4082afcc
PA
1542
1543 /* Does the target support this packet? */
5a2468f5
JM
1544 enum packet_support support;
1545 };
1546
d471ea57 1547/* Analyze a packet's return value and update the packet config
23860348 1548 accordingly. */
d471ea57
AC
1549
1550enum packet_result
1551{
1552 PACKET_ERROR,
1553 PACKET_OK,
1554 PACKET_UNKNOWN
1555};
1556
4082afcc
PA
1557static enum packet_support packet_config_support (struct packet_config *config);
1558static enum packet_support packet_support (int packet);
5a2468f5
JM
1559
1560static void
fba45db2 1561show_packet_config_cmd (struct packet_config *config)
5a2468f5 1562{
a121b7c1 1563 const char *support = "internal-error";
a744cf53 1564
4082afcc 1565 switch (packet_config_support (config))
5a2468f5
JM
1566 {
1567 case PACKET_ENABLE:
1568 support = "enabled";
1569 break;
1570 case PACKET_DISABLE:
1571 support = "disabled";
1572 break;
1573 case PACKET_SUPPORT_UNKNOWN:
1574 support = "unknown";
1575 break;
1576 }
1577 switch (config->detect)
1578 {
7f19b9a2 1579 case AUTO_BOOLEAN_AUTO:
3e43a32a
MS
1580 printf_filtered (_("Support for the `%s' packet "
1581 "is auto-detected, currently %s.\n"),
37a105a1 1582 config->name, support);
5a2468f5 1583 break;
7f19b9a2
AC
1584 case AUTO_BOOLEAN_TRUE:
1585 case AUTO_BOOLEAN_FALSE:
37a105a1
DJ
1586 printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
1587 config->name, support);
8e248173 1588 break;
5a2468f5
JM
1589 }
1590}
1591
1592static void
bb572ddd
DJ
1593add_packet_config_cmd (struct packet_config *config, const char *name,
1594 const char *title, int legacy)
d471ea57 1595{
5a2468f5
JM
1596 char *set_doc;
1597 char *show_doc;
d471ea57 1598 char *cmd_name;
3ed07be4 1599
5a2468f5
JM
1600 config->name = name;
1601 config->title = title;
b435e160
AC
1602 set_doc = xstrprintf ("Set use of remote protocol `%s' (%s) packet",
1603 name, title);
3e43a32a
MS
1604 show_doc = xstrprintf ("Show current use of remote "
1605 "protocol `%s' (%s) packet",
b435e160 1606 name, title);
d471ea57 1607 /* set/show TITLE-packet {auto,on,off} */
b435e160 1608 cmd_name = xstrprintf ("%s-packet", title);
e9e68a56 1609 add_setshow_auto_boolean_cmd (cmd_name, class_obscure,
3e43a32a
MS
1610 &config->detect, set_doc,
1611 show_doc, NULL, /* help_doc */
4082afcc 1612 NULL,
bb572ddd
DJ
1613 show_remote_protocol_packet_cmd,
1614 &remote_set_cmdlist, &remote_show_cmdlist);
1eefb858
TT
1615 /* The command code copies the documentation strings. */
1616 xfree (set_doc);
1617 xfree (show_doc);
23860348 1618 /* set/show remote NAME-packet {auto,on,off} -- legacy. */
d471ea57
AC
1619 if (legacy)
1620 {
1621 char *legacy_name;
a744cf53 1622
b435e160 1623 legacy_name = xstrprintf ("%s-packet", name);
d471ea57 1624 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
bb572ddd 1625 &remote_set_cmdlist);
d471ea57 1626 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
bb572ddd 1627 &remote_show_cmdlist);
d471ea57 1628 }
5a2468f5
JM
1629}
1630
d471ea57 1631static enum packet_result
a76d924d 1632packet_check_result (const char *buf)
5a2468f5 1633{
d471ea57 1634 if (buf[0] != '\0')
5a2468f5 1635 {
d471ea57 1636 /* The stub recognized the packet request. Check that the
23860348 1637 operation succeeded. */
a76d924d
DJ
1638 if (buf[0] == 'E'
1639 && isxdigit (buf[1]) && isxdigit (buf[2])
1640 && buf[3] == '\0')
1641 /* "Enn" - definitly an error. */
1642 return PACKET_ERROR;
1643
1644 /* Always treat "E." as an error. This will be used for
1645 more verbose error messages, such as E.memtypes. */
1646 if (buf[0] == 'E' && buf[1] == '.')
1647 return PACKET_ERROR;
1648
1649 /* The packet may or may not be OK. Just assume it is. */
1650 return PACKET_OK;
1651 }
1652 else
1653 /* The stub does not support the packet. */
1654 return PACKET_UNKNOWN;
1655}
1656
1657static enum packet_result
1658packet_ok (const char *buf, struct packet_config *config)
1659{
1660 enum packet_result result;
1661
4082afcc
PA
1662 if (config->detect != AUTO_BOOLEAN_TRUE
1663 && config->support == PACKET_DISABLE)
1664 internal_error (__FILE__, __LINE__,
1665 _("packet_ok: attempt to use a disabled packet"));
1666
a76d924d
DJ
1667 result = packet_check_result (buf);
1668 switch (result)
1669 {
1670 case PACKET_OK:
1671 case PACKET_ERROR:
1672 /* The stub recognized the packet request. */
4082afcc 1673 if (config->support == PACKET_SUPPORT_UNKNOWN)
d471ea57 1674 {
d471ea57
AC
1675 if (remote_debug)
1676 fprintf_unfiltered (gdb_stdlog,
4082afcc
PA
1677 "Packet %s (%s) is supported\n",
1678 config->name, config->title);
d471ea57 1679 config->support = PACKET_ENABLE;
d471ea57 1680 }
a76d924d
DJ
1681 break;
1682 case PACKET_UNKNOWN:
23860348 1683 /* The stub does not support the packet. */
4082afcc
PA
1684 if (config->detect == AUTO_BOOLEAN_AUTO
1685 && config->support == PACKET_ENABLE)
d471ea57 1686 {
4082afcc
PA
1687 /* If the stub previously indicated that the packet was
1688 supported then there is a protocol error. */
1689 error (_("Protocol error: %s (%s) conflicting enabled responses."),
1690 config->name, config->title);
1691 }
1692 else if (config->detect == AUTO_BOOLEAN_TRUE)
1693 {
1694 /* The user set it wrong. */
1695 error (_("Enabled packet %s (%s) not recognized by stub"),
1696 config->name, config->title);
d471ea57 1697 }
4082afcc
PA
1698
1699 if (remote_debug)
1700 fprintf_unfiltered (gdb_stdlog,
1701 "Packet %s (%s) is NOT supported\n",
1702 config->name, config->title);
1703 config->support = PACKET_DISABLE;
a76d924d 1704 break;
5a2468f5 1705 }
a76d924d
DJ
1706
1707 return result;
5a2468f5
JM
1708}
1709
444abaca
DJ
1710enum {
1711 PACKET_vCont = 0,
1712 PACKET_X,
1713 PACKET_qSymbol,
1714 PACKET_P,
1715 PACKET_p,
1716 PACKET_Z0,
1717 PACKET_Z1,
1718 PACKET_Z2,
1719 PACKET_Z3,
1720 PACKET_Z4,
15a201c8 1721 PACKET_vFile_setfs,
a6b151f1
DJ
1722 PACKET_vFile_open,
1723 PACKET_vFile_pread,
1724 PACKET_vFile_pwrite,
1725 PACKET_vFile_close,
1726 PACKET_vFile_unlink,
b9e7b9c3 1727 PACKET_vFile_readlink,
0a93529c 1728 PACKET_vFile_fstat,
0876f84a 1729 PACKET_qXfer_auxv,
23181151 1730 PACKET_qXfer_features,
c78fa86a 1731 PACKET_qXfer_exec_file,
cfa9d6d9 1732 PACKET_qXfer_libraries,
2268b414 1733 PACKET_qXfer_libraries_svr4,
fd79ecee 1734 PACKET_qXfer_memory_map,
0e7f50da
UW
1735 PACKET_qXfer_spu_read,
1736 PACKET_qXfer_spu_write,
07e059b5 1737 PACKET_qXfer_osdata,
dc146f7c 1738 PACKET_qXfer_threads,
0fb4aa4b 1739 PACKET_qXfer_statictrace_read,
b3b9301e 1740 PACKET_qXfer_traceframe_info,
169081d0 1741 PACKET_qXfer_uib,
711e434b 1742 PACKET_qGetTIBAddr,
444abaca 1743 PACKET_qGetTLSAddr,
be2a5f71 1744 PACKET_qSupported,
bd3eecc3 1745 PACKET_qTStatus,
89be2091 1746 PACKET_QPassSignals,
82075af2 1747 PACKET_QCatchSyscalls,
9b224c5e 1748 PACKET_QProgramSignals,
bc3b087d 1749 PACKET_QSetWorkingDir,
aefd8b33 1750 PACKET_QStartupWithShell,
0a2dde4a
SDJ
1751 PACKET_QEnvironmentHexEncoded,
1752 PACKET_QEnvironmentReset,
1753 PACKET_QEnvironmentUnset,
936d2992 1754 PACKET_qCRC,
08388c79 1755 PACKET_qSearch_memory,
2d717e4f
DJ
1756 PACKET_vAttach,
1757 PACKET_vRun,
a6f3e723 1758 PACKET_QStartNoAckMode,
82f73884 1759 PACKET_vKill,
4aa995e1
PA
1760 PACKET_qXfer_siginfo_read,
1761 PACKET_qXfer_siginfo_write,
0b16c5cf 1762 PACKET_qAttached,
4082afcc
PA
1763
1764 /* Support for conditional tracepoints. */
782b2b07 1765 PACKET_ConditionalTracepoints,
4082afcc
PA
1766
1767 /* Support for target-side breakpoint conditions. */
3788aec7 1768 PACKET_ConditionalBreakpoints,
4082afcc
PA
1769
1770 /* Support for target-side breakpoint commands. */
d3ce09f5 1771 PACKET_BreakpointCommands,
4082afcc
PA
1772
1773 /* Support for fast tracepoints. */
7a697b8d 1774 PACKET_FastTracepoints,
4082afcc
PA
1775
1776 /* Support for static tracepoints. */
0fb4aa4b 1777 PACKET_StaticTracepoints,
4082afcc
PA
1778
1779 /* Support for installing tracepoints while a trace experiment is
1780 running. */
1e4d1764 1781 PACKET_InstallInTrace,
4082afcc 1782
40ab02ce
MS
1783 PACKET_bc,
1784 PACKET_bs,
409873ef 1785 PACKET_TracepointSource,
d914c394 1786 PACKET_QAllow,
78d85199 1787 PACKET_qXfer_fdpic,
03583c20 1788 PACKET_QDisableRandomization,
d1feda86 1789 PACKET_QAgent,
f6f899bf 1790 PACKET_QTBuffer_size,
9accd112
MM
1791 PACKET_Qbtrace_off,
1792 PACKET_Qbtrace_bts,
b20a6524 1793 PACKET_Qbtrace_pt,
9accd112 1794 PACKET_qXfer_btrace,
4082afcc
PA
1795
1796 /* Support for the QNonStop packet. */
1797 PACKET_QNonStop,
1798
65706a29
PA
1799 /* Support for the QThreadEvents packet. */
1800 PACKET_QThreadEvents,
1801
4082afcc
PA
1802 /* Support for multi-process extensions. */
1803 PACKET_multiprocess_feature,
1804
1805 /* Support for enabling and disabling tracepoints while a trace
1806 experiment is running. */
1807 PACKET_EnableDisableTracepoints_feature,
1808
1809 /* Support for collecting strings using the tracenz bytecode. */
1810 PACKET_tracenz_feature,
1811
1812 /* Support for continuing to run a trace experiment while GDB is
1813 disconnected. */
1814 PACKET_DisconnectedTracing_feature,
1815
1816 /* Support for qXfer:libraries-svr4:read with a non-empty annex. */
1817 PACKET_augmented_libraries_svr4_read_feature,
1818
f4abbc16
MM
1819 /* Support for the qXfer:btrace-conf:read packet. */
1820 PACKET_qXfer_btrace_conf,
1821
d33501a5
MM
1822 /* Support for the Qbtrace-conf:bts:size packet. */
1823 PACKET_Qbtrace_conf_bts_size,
1824
f7e6eed5
PA
1825 /* Support for swbreak+ feature. */
1826 PACKET_swbreak_feature,
1827
1828 /* Support for hwbreak+ feature. */
1829 PACKET_hwbreak_feature,
1830
89245bc0
DB
1831 /* Support for fork events. */
1832 PACKET_fork_event_feature,
1833
1834 /* Support for vfork events. */
1835 PACKET_vfork_event_feature,
1836
b20a6524
MM
1837 /* Support for the Qbtrace-conf:pt:size packet. */
1838 PACKET_Qbtrace_conf_pt_size,
1839
94585166
DB
1840 /* Support for exec events. */
1841 PACKET_exec_event_feature,
1842
750ce8d1
YQ
1843 /* Support for query supported vCont actions. */
1844 PACKET_vContSupported,
1845
de979965
PA
1846 /* Support remote CTRL-C. */
1847 PACKET_vCtrlC,
1848
f2faf941
PA
1849 /* Support TARGET_WAITKIND_NO_RESUMED. */
1850 PACKET_no_resumed,
1851
444abaca
DJ
1852 PACKET_MAX
1853};
506fb367 1854
444abaca 1855static struct packet_config remote_protocol_packets[PACKET_MAX];
dc8acb97 1856
f7e6eed5
PA
1857/* Returns the packet's corresponding "set remote foo-packet" command
1858 state. See struct packet_config for more details. */
1859
1860static enum auto_boolean
1861packet_set_cmd_state (int packet)
1862{
1863 return remote_protocol_packets[packet].detect;
1864}
1865
4082afcc
PA
1866/* Returns whether a given packet or feature is supported. This takes
1867 into account the state of the corresponding "set remote foo-packet"
1868 command, which may be used to bypass auto-detection. */
dc8acb97 1869
4082afcc
PA
1870static enum packet_support
1871packet_config_support (struct packet_config *config)
1872{
1873 switch (config->detect)
444abaca 1874 {
4082afcc
PA
1875 case AUTO_BOOLEAN_TRUE:
1876 return PACKET_ENABLE;
1877 case AUTO_BOOLEAN_FALSE:
1878 return PACKET_DISABLE;
1879 case AUTO_BOOLEAN_AUTO:
1880 return config->support;
1881 default:
1882 gdb_assert_not_reached (_("bad switch"));
444abaca 1883 }
4082afcc
PA
1884}
1885
1886/* Same as packet_config_support, but takes the packet's enum value as
1887 argument. */
1888
1889static enum packet_support
1890packet_support (int packet)
1891{
1892 struct packet_config *config = &remote_protocol_packets[packet];
1893
1894 return packet_config_support (config);
dc8acb97
MS
1895}
1896
5a2468f5 1897static void
444abaca
DJ
1898show_remote_protocol_packet_cmd (struct ui_file *file, int from_tty,
1899 struct cmd_list_element *c,
1900 const char *value)
5a2468f5 1901{
444abaca 1902 struct packet_config *packet;
5a2468f5 1903
444abaca
DJ
1904 for (packet = remote_protocol_packets;
1905 packet < &remote_protocol_packets[PACKET_MAX];
1906 packet++)
1907 {
1908 if (&packet->detect == c->var)
1909 {
1910 show_packet_config_cmd (packet);
1911 return;
1912 }
1913 }
9b20d036 1914 internal_error (__FILE__, __LINE__, _("Could not find config for %s"),
444abaca 1915 c->name);
5a2468f5
JM
1916}
1917
d471ea57
AC
1918/* Should we try one of the 'Z' requests? */
1919
1920enum Z_packet_type
1921{
1922 Z_PACKET_SOFTWARE_BP,
1923 Z_PACKET_HARDWARE_BP,
1924 Z_PACKET_WRITE_WP,
1925 Z_PACKET_READ_WP,
1926 Z_PACKET_ACCESS_WP,
1927 NR_Z_PACKET_TYPES
1928};
96baa820 1929
d471ea57 1930/* For compatibility with older distributions. Provide a ``set remote
23860348 1931 Z-packet ...'' command that updates all the Z packet types. */
d471ea57 1932
7f19b9a2 1933static enum auto_boolean remote_Z_packet_detect;
96baa820
JM
1934
1935static void
eb4c3f4a 1936set_remote_protocol_Z_packet_cmd (const char *args, int from_tty,
fba45db2 1937 struct cmd_list_element *c)
96baa820 1938{
d471ea57 1939 int i;
a744cf53 1940
d471ea57 1941 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
4082afcc 1942 remote_protocol_packets[PACKET_Z0 + i].detect = remote_Z_packet_detect;
96baa820
JM
1943}
1944
1945static void
08546159
AC
1946show_remote_protocol_Z_packet_cmd (struct ui_file *file, int from_tty,
1947 struct cmd_list_element *c,
1948 const char *value)
96baa820 1949{
d471ea57 1950 int i;
a744cf53 1951
d471ea57
AC
1952 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
1953 {
444abaca 1954 show_packet_config_cmd (&remote_protocol_packets[PACKET_Z0 + i]);
d471ea57 1955 }
96baa820
JM
1956}
1957
4082afcc
PA
1958/* Returns true if the multi-process extensions are in effect. */
1959
1960static int
1961remote_multi_process_p (struct remote_state *rs)
1962{
1963 return packet_support (PACKET_multiprocess_feature) == PACKET_ENABLE;
1964}
1965
de0d863e
DB
1966/* Returns true if fork events are supported. */
1967
1968static int
1969remote_fork_event_p (struct remote_state *rs)
1970{
1971 return packet_support (PACKET_fork_event_feature) == PACKET_ENABLE;
1972}
1973
c269dbdb
DB
1974/* Returns true if vfork events are supported. */
1975
1976static int
1977remote_vfork_event_p (struct remote_state *rs)
1978{
1979 return packet_support (PACKET_vfork_event_feature) == PACKET_ENABLE;
1980}
1981
d46addbb
DB
1982/* Returns true if exec events are supported. */
1983
1984static int
1985remote_exec_event_p (struct remote_state *rs)
1986{
1987 return packet_support (PACKET_exec_event_feature) == PACKET_ENABLE;
1988}
1989
cbb8991c
DB
1990/* Insert fork catchpoint target routine. If fork events are enabled
1991 then return success, nothing more to do. */
1992
f6ac5f3d
PA
1993int
1994remote_target::insert_fork_catchpoint (int pid)
cbb8991c
DB
1995{
1996 struct remote_state *rs = get_remote_state ();
1997
1998 return !remote_fork_event_p (rs);
1999}
2000
2001/* Remove fork catchpoint target routine. Nothing to do, just
2002 return success. */
2003
f6ac5f3d
PA
2004int
2005remote_target::remove_fork_catchpoint (int pid)
cbb8991c
DB
2006{
2007 return 0;
2008}
2009
2010/* Insert vfork catchpoint target routine. If vfork events are enabled
2011 then return success, nothing more to do. */
2012
f6ac5f3d
PA
2013int
2014remote_target::insert_vfork_catchpoint (int pid)
cbb8991c
DB
2015{
2016 struct remote_state *rs = get_remote_state ();
2017
2018 return !remote_vfork_event_p (rs);
2019}
2020
2021/* Remove vfork catchpoint target routine. Nothing to do, just
2022 return success. */
2023
f6ac5f3d
PA
2024int
2025remote_target::remove_vfork_catchpoint (int pid)
cbb8991c
DB
2026{
2027 return 0;
2028}
2029
d46addbb
DB
2030/* Insert exec catchpoint target routine. If exec events are
2031 enabled, just return success. */
2032
f6ac5f3d
PA
2033int
2034remote_target::insert_exec_catchpoint (int pid)
d46addbb
DB
2035{
2036 struct remote_state *rs = get_remote_state ();
2037
2038 return !remote_exec_event_p (rs);
2039}
2040
2041/* Remove exec catchpoint target routine. Nothing to do, just
2042 return success. */
2043
f6ac5f3d
PA
2044int
2045remote_target::remove_exec_catchpoint (int pid)
d46addbb
DB
2046{
2047 return 0;
2048}
2049
74531fed
PA
2050\f
2051/* Asynchronous signal handle registered as event loop source for
2052 when we have pending events ready to be passed to the core. */
2053
2054static struct async_event_handler *remote_async_inferior_event_token;
2055
c906108c
SS
2056\f
2057
79d7f229
PA
2058static ptid_t magic_null_ptid;
2059static ptid_t not_sent_ptid;
2060static ptid_t any_thread_ptid;
2061
0b16c5cf
PA
2062/* Find out if the stub attached to PID (and hence GDB should offer to
2063 detach instead of killing it when bailing out). */
2064
2065static int
2066remote_query_attached (int pid)
2067{
2068 struct remote_state *rs = get_remote_state ();
bba74b36 2069 size_t size = get_remote_packet_size ();
0b16c5cf 2070
4082afcc 2071 if (packet_support (PACKET_qAttached) == PACKET_DISABLE)
0b16c5cf
PA
2072 return 0;
2073
2074 if (remote_multi_process_p (rs))
bba74b36 2075 xsnprintf (rs->buf, size, "qAttached:%x", pid);
0b16c5cf 2076 else
bba74b36 2077 xsnprintf (rs->buf, size, "qAttached");
0b16c5cf
PA
2078
2079 putpkt (rs->buf);
2080 getpkt (&rs->buf, &rs->buf_size, 0);
2081
2082 switch (packet_ok (rs->buf,
1554e9be 2083 &remote_protocol_packets[PACKET_qAttached]))
0b16c5cf
PA
2084 {
2085 case PACKET_OK:
2086 if (strcmp (rs->buf, "1") == 0)
2087 return 1;
2088 break;
2089 case PACKET_ERROR:
2090 warning (_("Remote failure reply: %s"), rs->buf);
2091 break;
2092 case PACKET_UNKNOWN:
2093 break;
2094 }
2095
2096 return 0;
2097}
2098
49c62f2e
PA
2099/* Add PID to GDB's inferior table. If FAKE_PID_P is true, then PID
2100 has been invented by GDB, instead of reported by the target. Since
2101 we can be connected to a remote system before before knowing about
2102 any inferior, mark the target with execution when we find the first
2103 inferior. If ATTACHED is 1, then we had just attached to this
2104 inferior. If it is 0, then we just created this inferior. If it
2105 is -1, then try querying the remote stub to find out if it had
1b6e6f5c
GB
2106 attached to the inferior or not. If TRY_OPEN_EXEC is true then
2107 attempt to open this inferior's executable as the main executable
2108 if no main executable is open already. */
1941c569
PA
2109
2110static struct inferior *
1b6e6f5c
GB
2111remote_add_inferior (int fake_pid_p, int pid, int attached,
2112 int try_open_exec)
1941c569 2113{
1941c569
PA
2114 struct inferior *inf;
2115
0b16c5cf
PA
2116 /* Check whether this process we're learning about is to be
2117 considered attached, or if is to be considered to have been
2118 spawned by the stub. */
2119 if (attached == -1)
2120 attached = remote_query_attached (pid);
2121
f5656ead 2122 if (gdbarch_has_global_solist (target_gdbarch ()))
6c95b8df
PA
2123 {
2124 /* If the target shares code across all inferiors, then every
2125 attach adds a new inferior. */
2126 inf = add_inferior (pid);
2127
2128 /* ... and every inferior is bound to the same program space.
2129 However, each inferior may still have its own address
2130 space. */
2131 inf->aspace = maybe_new_address_space ();
2132 inf->pspace = current_program_space;
2133 }
2134 else
2135 {
2136 /* In the traditional debugging scenario, there's a 1-1 match
2137 between program/address spaces. We simply bind the inferior
2138 to the program space's address space. */
2139 inf = current_inferior ();
2140 inferior_appeared (inf, pid);
2141 }
1941c569 2142
0b16c5cf 2143 inf->attach_flag = attached;
49c62f2e 2144 inf->fake_pid_p = fake_pid_p;
0b16c5cf 2145
1b6e6f5c
GB
2146 /* If no main executable is currently open then attempt to
2147 open the file that was executed to create this inferior. */
835205d0 2148 if (try_open_exec && get_exec_file (0) == NULL)
bb805577 2149 exec_file_locate_attach (pid, 0, 1);
1b6e6f5c 2150
1941c569
PA
2151 return inf;
2152}
2153
7aabaf9d 2154static remote_thread_info *get_remote_thread_info (thread_info *thread);
85ad3aaf 2155
1941c569
PA
2156/* Add thread PTID to GDB's thread list. Tag it as executing/running
2157 according to RUNNING. */
2158
c906108c 2159static void
0d5b594f 2160remote_add_thread (ptid_t ptid, int running, int executing)
c906108c 2161{
b7ea362b 2162 struct remote_state *rs = get_remote_state ();
85ad3aaf 2163 struct thread_info *thread;
b7ea362b
PA
2164
2165 /* GDB historically didn't pull threads in the initial connection
2166 setup. If the remote target doesn't even have a concept of
2167 threads (e.g., a bare-metal target), even if internally we
2168 consider that a single-threaded target, mentioning a new thread
2169 might be confusing to the user. Be silent then, preserving the
2170 age old behavior. */
2171 if (rs->starting_up)
85ad3aaf 2172 thread = add_thread_silent (ptid);
b7ea362b 2173 else
85ad3aaf 2174 thread = add_thread (ptid);
1941c569 2175
7aabaf9d 2176 get_remote_thread_info (thread)->vcont_resumed = executing;
0d5b594f 2177 set_executing (ptid, executing);
1941c569
PA
2178 set_running (ptid, running);
2179}
2180
2181/* Come here when we learn about a thread id from the remote target.
2182 It may be the first time we hear about such thread, so take the
2183 opportunity to add it to GDB's thread list. In case this is the
2184 first time we're noticing its corresponding inferior, add it to
0d5b594f
PA
2185 GDB's inferior list as well. EXECUTING indicates whether the
2186 thread is (internally) executing or stopped. */
1941c569
PA
2187
2188static void
0d5b594f 2189remote_notice_new_inferior (ptid_t currthread, int executing)
1941c569 2190{
0d5b594f
PA
2191 /* In non-stop mode, we assume new found threads are (externally)
2192 running until proven otherwise with a stop reply. In all-stop,
2193 we can only get here if all threads are stopped. */
2194 int running = target_is_non_stop_p () ? 1 : 0;
2195
c906108c
SS
2196 /* If this is a new thread, add it to GDB's thread list.
2197 If we leave it up to WFI to do this, bad things will happen. */
82f73884
PA
2198
2199 if (in_thread_list (currthread) && is_exited (currthread))
2200 {
2201 /* We're seeing an event on a thread id we knew had exited.
2202 This has to be a new thread reusing the old id. Add it. */
0d5b594f 2203 remote_add_thread (currthread, running, executing);
82f73884
PA
2204 return;
2205 }
2206
79d7f229 2207 if (!in_thread_list (currthread))
c0a2216e 2208 {
1941c569 2209 struct inferior *inf = NULL;
bad34192 2210 int pid = ptid_get_pid (currthread);
1941c569 2211
bad34192
PA
2212 if (ptid_is_pid (inferior_ptid)
2213 && pid == ptid_get_pid (inferior_ptid))
c0a2216e
PA
2214 {
2215 /* inferior_ptid has no thread member yet. This can happen
2216 with the vAttach -> remote_wait,"TAAthread:" path if the
2217 stub doesn't support qC. This is the first stop reported
2218 after an attach, so this is the main thread. Update the
2219 ptid in the thread list. */
bad34192
PA
2220 if (in_thread_list (pid_to_ptid (pid)))
2221 thread_change_ptid (inferior_ptid, currthread);
2222 else
2223 {
0d5b594f 2224 remote_add_thread (currthread, running, executing);
bad34192
PA
2225 inferior_ptid = currthread;
2226 }
dc146f7c 2227 return;
c0a2216e 2228 }
82f73884
PA
2229
2230 if (ptid_equal (magic_null_ptid, inferior_ptid))
c0a2216e
PA
2231 {
2232 /* inferior_ptid is not set yet. This can happen with the
2233 vRun -> remote_wait,"TAAthread:" path if the stub
2234 doesn't support qC. This is the first stop reported
2235 after an attach, so this is the main thread. Update the
2236 ptid in the thread list. */
dc146f7c 2237 thread_change_ptid (inferior_ptid, currthread);
82f73884 2238 return;
c0a2216e 2239 }
82f73884 2240
29c87f7f
PA
2241 /* When connecting to a target remote, or to a target
2242 extended-remote which already was debugging an inferior, we
2243 may not know about it yet. Add it before adding its child
2244 thread, so notifications are emitted in a sensible order. */
2245 if (!in_inferior_list (ptid_get_pid (currthread)))
49c62f2e
PA
2246 {
2247 struct remote_state *rs = get_remote_state ();
2248 int fake_pid_p = !remote_multi_process_p (rs);
2249
2250 inf = remote_add_inferior (fake_pid_p,
1b6e6f5c 2251 ptid_get_pid (currthread), -1, 1);
49c62f2e 2252 }
29c87f7f 2253
82f73884 2254 /* This is really a new thread. Add it. */
0d5b594f 2255 remote_add_thread (currthread, running, executing);
1941c569
PA
2256
2257 /* If we found a new inferior, let the common code do whatever
2258 it needs to with it (e.g., read shared libraries, insert
b7ea362b
PA
2259 breakpoints), unless we're just setting up an all-stop
2260 connection. */
1941c569 2261 if (inf != NULL)
b7ea362b
PA
2262 {
2263 struct remote_state *rs = get_remote_state ();
2264
6efcd9a8 2265 if (!rs->starting_up)
0d5b594f 2266 notice_new_inferior (currthread, executing, 0);
b7ea362b 2267 }
c0a2216e 2268 }
c906108c
SS
2269}
2270
85ad3aaf 2271/* Return THREAD's private thread data, creating it if necessary. */
dc146f7c 2272
7aabaf9d
SM
2273static remote_thread_info *
2274get_remote_thread_info (thread_info *thread)
dc146f7c 2275{
85ad3aaf 2276 gdb_assert (thread != NULL);
dc146f7c 2277
85ad3aaf 2278 if (thread->priv == NULL)
7aabaf9d 2279 thread->priv.reset (new remote_thread_info);
dc146f7c 2280
7aabaf9d 2281 return static_cast<remote_thread_info *> (thread->priv.get ());
85ad3aaf
PA
2282}
2283
2284/* Return PTID's private thread data, creating it if necessary. */
2285
7aabaf9d
SM
2286static remote_thread_info *
2287get_remote_thread_info (ptid_t ptid)
85ad3aaf
PA
2288{
2289 struct thread_info *info = find_thread_ptid (ptid);
2290
7aabaf9d 2291 return get_remote_thread_info (info);
dc146f7c
VP
2292}
2293
74531fed
PA
2294/* Call this function as a result of
2295 1) A halt indication (T packet) containing a thread id
2296 2) A direct query of currthread
0df8b418 2297 3) Successful execution of set thread */
74531fed
PA
2298
2299static void
47f8a51d 2300record_currthread (struct remote_state *rs, ptid_t currthread)
74531fed 2301{
47f8a51d 2302 rs->general_thread = currthread;
74531fed
PA
2303}
2304
89be2091
DJ
2305/* If 'QPassSignals' is supported, tell the remote stub what signals
2306 it can simply pass through to the inferior without reporting. */
2307
f6ac5f3d
PA
2308void
2309remote_target::pass_signals (int numsigs, unsigned char *pass_signals)
89be2091 2310{
4082afcc 2311 if (packet_support (PACKET_QPassSignals) != PACKET_DISABLE)
89be2091
DJ
2312 {
2313 char *pass_packet, *p;
89be2091 2314 int count = 0, i;
747dc59d 2315 struct remote_state *rs = get_remote_state ();
89be2091
DJ
2316
2317 gdb_assert (numsigs < 256);
2318 for (i = 0; i < numsigs; i++)
2319 {
2455069d 2320 if (pass_signals[i])
89be2091
DJ
2321 count++;
2322 }
224c3ddb 2323 pass_packet = (char *) xmalloc (count * 3 + strlen ("QPassSignals:") + 1);
89be2091
DJ
2324 strcpy (pass_packet, "QPassSignals:");
2325 p = pass_packet + strlen (pass_packet);
2326 for (i = 0; i < numsigs; i++)
2327 {
2455069d 2328 if (pass_signals[i])
89be2091
DJ
2329 {
2330 if (i >= 16)
2331 *p++ = tohex (i >> 4);
2332 *p++ = tohex (i & 15);
2333 if (count)
2334 *p++ = ';';
2335 else
2336 break;
2337 count--;
2338 }
2339 }
2340 *p = 0;
747dc59d 2341 if (!rs->last_pass_packet || strcmp (rs->last_pass_packet, pass_packet))
89be2091 2342 {
89be2091
DJ
2343 putpkt (pass_packet);
2344 getpkt (&rs->buf, &rs->buf_size, 0);
8dc5b319 2345 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QPassSignals]);
747dc59d
TT
2346 if (rs->last_pass_packet)
2347 xfree (rs->last_pass_packet);
2348 rs->last_pass_packet = pass_packet;
89be2091
DJ
2349 }
2350 else
2351 xfree (pass_packet);
2352 }
2353}
2354
82075af2
JS
2355/* If 'QCatchSyscalls' is supported, tell the remote stub
2356 to report syscalls to GDB. */
2357
f6ac5f3d
PA
2358int
2359remote_target::set_syscall_catchpoint (int pid, bool needed, int any_count,
2360 gdb::array_view<const int> syscall_counts)
82075af2 2361{
b80406ac 2362 const char *catch_packet;
82075af2
JS
2363 enum packet_result result;
2364 int n_sysno = 0;
2365
2366 if (packet_support (PACKET_QCatchSyscalls) == PACKET_DISABLE)
2367 {
2368 /* Not supported. */
2369 return 1;
2370 }
2371
649a140c 2372 if (needed && any_count == 0)
82075af2 2373 {
649a140c
PA
2374 /* Count how many syscalls are to be caught. */
2375 for (size_t i = 0; i < syscall_counts.size (); i++)
82075af2 2376 {
649a140c 2377 if (syscall_counts[i] != 0)
82075af2
JS
2378 n_sysno++;
2379 }
2380 }
2381
2382 if (remote_debug)
2383 {
2384 fprintf_unfiltered (gdb_stdlog,
2385 "remote_set_syscall_catchpoint "
2386 "pid %d needed %d any_count %d n_sysno %d\n",
2387 pid, needed, any_count, n_sysno);
2388 }
2389
1b81856f 2390 std::string built_packet;
82075af2
JS
2391 if (needed)
2392 {
2393 /* Prepare a packet with the sysno list, assuming max 8+1
2394 characters for a sysno. If the resulting packet size is too
2395 big, fallback on the non-selective packet. */
2396 const int maxpktsz = strlen ("QCatchSyscalls:1") + n_sysno * 9 + 1;
1b81856f
PA
2397 built_packet.reserve (maxpktsz);
2398 built_packet = "QCatchSyscalls:1";
649a140c 2399 if (any_count == 0)
82075af2 2400 {
649a140c
PA
2401 /* Add in each syscall to be caught. */
2402 for (size_t i = 0; i < syscall_counts.size (); i++)
82075af2 2403 {
649a140c
PA
2404 if (syscall_counts[i] != 0)
2405 string_appendf (built_packet, ";%zx", i);
82075af2
JS
2406 }
2407 }
1b81856f 2408 if (built_packet.size () > get_remote_packet_size ())
82075af2
JS
2409 {
2410 /* catch_packet too big. Fallback to less efficient
2411 non selective mode, with GDB doing the filtering. */
b80406ac 2412 catch_packet = "QCatchSyscalls:1";
82075af2 2413 }
b80406ac 2414 else
1b81856f 2415 catch_packet = built_packet.c_str ();
82075af2
JS
2416 }
2417 else
b80406ac 2418 catch_packet = "QCatchSyscalls:0";
82075af2 2419
b80406ac 2420 struct remote_state *rs = get_remote_state ();
82075af2 2421
b80406ac
TT
2422 putpkt (catch_packet);
2423 getpkt (&rs->buf, &rs->buf_size, 0);
2424 result = packet_ok (rs->buf, &remote_protocol_packets[PACKET_QCatchSyscalls]);
2425 if (result == PACKET_OK)
2426 return 0;
2427 else
2428 return -1;
82075af2
JS
2429}
2430
9b224c5e
PA
2431/* If 'QProgramSignals' is supported, tell the remote stub what
2432 signals it should pass through to the inferior when detaching. */
2433
f6ac5f3d
PA
2434void
2435remote_target::program_signals (int numsigs, unsigned char *signals)
9b224c5e 2436{
4082afcc 2437 if (packet_support (PACKET_QProgramSignals) != PACKET_DISABLE)
9b224c5e
PA
2438 {
2439 char *packet, *p;
2440 int count = 0, i;
5e4a05c4 2441 struct remote_state *rs = get_remote_state ();
9b224c5e
PA
2442
2443 gdb_assert (numsigs < 256);
2444 for (i = 0; i < numsigs; i++)
2445 {
2446 if (signals[i])
2447 count++;
2448 }
224c3ddb 2449 packet = (char *) xmalloc (count * 3 + strlen ("QProgramSignals:") + 1);
9b224c5e
PA
2450 strcpy (packet, "QProgramSignals:");
2451 p = packet + strlen (packet);
2452 for (i = 0; i < numsigs; i++)
2453 {
2454 if (signal_pass_state (i))
2455 {
2456 if (i >= 16)
2457 *p++ = tohex (i >> 4);
2458 *p++ = tohex (i & 15);
2459 if (count)
2460 *p++ = ';';
2461 else
2462 break;
2463 count--;
2464 }
2465 }
2466 *p = 0;
5e4a05c4
TT
2467 if (!rs->last_program_signals_packet
2468 || strcmp (rs->last_program_signals_packet, packet) != 0)
9b224c5e 2469 {
9b224c5e
PA
2470 putpkt (packet);
2471 getpkt (&rs->buf, &rs->buf_size, 0);
8dc5b319 2472 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QProgramSignals]);
5e4a05c4
TT
2473 xfree (rs->last_program_signals_packet);
2474 rs->last_program_signals_packet = packet;
9b224c5e
PA
2475 }
2476 else
2477 xfree (packet);
2478 }
2479}
2480
79d7f229
PA
2481/* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
2482 MINUS_ONE_PTID, set the thread to -1, so the stub returns the
2483 thread. If GEN is set, set the general thread, if not, then set
2484 the step/continue thread. */
c906108c 2485static void
d62a8ae2 2486set_thread (ptid_t ptid, int gen)
c906108c 2487{
d01949b6 2488 struct remote_state *rs = get_remote_state ();
47f8a51d 2489 ptid_t state = gen ? rs->general_thread : rs->continue_thread;
6d820c5c 2490 char *buf = rs->buf;
79d7f229 2491 char *endbuf = rs->buf + get_remote_packet_size ();
c906108c 2492
79d7f229 2493 if (ptid_equal (state, ptid))
c906108c
SS
2494 return;
2495
79d7f229
PA
2496 *buf++ = 'H';
2497 *buf++ = gen ? 'g' : 'c';
2498 if (ptid_equal (ptid, magic_null_ptid))
2499 xsnprintf (buf, endbuf - buf, "0");
2500 else if (ptid_equal (ptid, any_thread_ptid))
2501 xsnprintf (buf, endbuf - buf, "0");
2502 else if (ptid_equal (ptid, minus_one_ptid))
2503 xsnprintf (buf, endbuf - buf, "-1");
2504 else
82f73884 2505 write_ptid (buf, endbuf, ptid);
79d7f229 2506 putpkt (rs->buf);
6d820c5c 2507 getpkt (&rs->buf, &rs->buf_size, 0);
c906108c 2508 if (gen)
47f8a51d 2509 rs->general_thread = ptid;
c906108c 2510 else
47f8a51d 2511 rs->continue_thread = ptid;
c906108c 2512}
79d7f229
PA
2513
2514static void
d62a8ae2 2515set_general_thread (ptid_t ptid)
79d7f229
PA
2516{
2517 set_thread (ptid, 1);
2518}
2519
2520static void
d62a8ae2 2521set_continue_thread (ptid_t ptid)
79d7f229
PA
2522{
2523 set_thread (ptid, 0);
2524}
2525
3c9c4b83
PA
2526/* Change the remote current process. Which thread within the process
2527 ends up selected isn't important, as long as it is the same process
2528 as what INFERIOR_PTID points to.
2529
2530 This comes from that fact that there is no explicit notion of
2531 "selected process" in the protocol. The selected process for
2532 general operations is the process the selected general thread
2533 belongs to. */
2534
2535static void
2536set_general_process (void)
2537{
2538 struct remote_state *rs = get_remote_state ();
2539
2540 /* If the remote can't handle multiple processes, don't bother. */
8020350c 2541 if (!remote_multi_process_p (rs))
3c9c4b83
PA
2542 return;
2543
2544 /* We only need to change the remote current thread if it's pointing
2545 at some other process. */
47f8a51d 2546 if (ptid_get_pid (rs->general_thread) != ptid_get_pid (inferior_ptid))
3c9c4b83
PA
2547 set_general_thread (inferior_ptid);
2548}
2549
c906108c 2550\f
7d1a114c
PA
2551/* Return nonzero if this is the main thread that we made up ourselves
2552 to model non-threaded targets as single-threaded. */
c906108c
SS
2553
2554static int
f6ac5f3d 2555remote_thread_always_alive (ptid_t ptid)
c906108c 2556{
c0a2216e
PA
2557 if (ptid_equal (ptid, magic_null_ptid))
2558 /* The main thread is always alive. */
2559 return 1;
2560
ba348170 2561 if (ptid_get_pid (ptid) != 0 && ptid_get_lwp (ptid) == 0)
c0a2216e
PA
2562 /* The main thread is always alive. This can happen after a
2563 vAttach, if the remote side doesn't support
2564 multi-threading. */
2565 return 1;
2566
7d1a114c
PA
2567 return 0;
2568}
2569
2570/* Return nonzero if the thread PTID is still alive on the remote
2571 system. */
2572
57810aa7 2573bool
f6ac5f3d 2574remote_target::thread_alive (ptid_t ptid)
7d1a114c
PA
2575{
2576 struct remote_state *rs = get_remote_state ();
2577 char *p, *endp;
2578
2579 /* Check if this is a thread that we made up ourselves to model
2580 non-threaded targets as single-threaded. */
f6ac5f3d 2581 if (remote_thread_always_alive (ptid))
7d1a114c
PA
2582 return 1;
2583
82f73884
PA
2584 p = rs->buf;
2585 endp = rs->buf + get_remote_packet_size ();
2586
2587 *p++ = 'T';
2588 write_ptid (p, endp, ptid);
2589
2e9f7625 2590 putpkt (rs->buf);
6d820c5c 2591 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 2592 return (rs->buf[0] == 'O' && rs->buf[1] == 'K');
c906108c
SS
2593}
2594
79efa585
SM
2595/* Return a pointer to a thread name if we know it and NULL otherwise.
2596 The thread_info object owns the memory for the name. */
2597
f6ac5f3d
PA
2598const char *
2599remote_target::thread_name (struct thread_info *info)
79efa585
SM
2600{
2601 if (info->priv != NULL)
a9334058
SM
2602 {
2603 const std::string &name = get_remote_thread_info (info)->name;
2604 return !name.empty () ? name.c_str () : NULL;
2605 }
79efa585
SM
2606
2607 return NULL;
2608}
2609
c906108c
SS
2610/* About these extended threadlist and threadinfo packets. They are
2611 variable length packets but, the fields within them are often fixed
2612 length. They are redundent enough to send over UDP as is the
2613 remote protocol in general. There is a matching unit test module
2614 in libstub. */
2615
23860348 2616/* WARNING: This threadref data structure comes from the remote O.S.,
0df8b418 2617 libstub protocol encoding, and remote.c. It is not particularly
23860348 2618 changable. */
cce74817
JM
2619
2620/* Right now, the internal structure is int. We want it to be bigger.
0df8b418 2621 Plan to fix this. */
cce74817 2622
23860348 2623typedef int gdb_threadref; /* Internal GDB thread reference. */
cce74817 2624
9d1f7ab2 2625/* gdb_ext_thread_info is an internal GDB data structure which is
cfde0993 2626 equivalent to the reply of the remote threadinfo packet. */
cce74817
JM
2627
2628struct gdb_ext_thread_info
c5aa993b 2629 {
23860348 2630 threadref threadid; /* External form of thread reference. */
2bc416ba 2631 int active; /* Has state interesting to GDB?
23860348 2632 regs, stack. */
2bc416ba 2633 char display[256]; /* Brief state display, name,
cedea757 2634 blocked/suspended. */
23860348 2635 char shortname[32]; /* To be used to name threads. */
2bc416ba 2636 char more_display[256]; /* Long info, statistics, queue depth,
23860348 2637 whatever. */
c5aa993b 2638 };
cce74817
JM
2639
2640/* The volume of remote transfers can be limited by submitting
2641 a mask containing bits specifying the desired information.
2642 Use a union of these values as the 'selection' parameter to
0df8b418 2643 get_thread_info. FIXME: Make these TAG names more thread specific. */
cce74817
JM
2644
2645#define TAG_THREADID 1
2646#define TAG_EXISTS 2
2647#define TAG_DISPLAY 4
2648#define TAG_THREADNAME 8
c5aa993b 2649#define TAG_MOREDISPLAY 16
cce74817 2650
23860348 2651#define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
c906108c 2652
a14ed312 2653static char *unpack_nibble (char *buf, int *val);
cce74817 2654
a14ed312 2655static char *unpack_byte (char *buf, int *value);
cce74817 2656
a14ed312 2657static char *pack_int (char *buf, int value);
cce74817 2658
a14ed312 2659static char *unpack_int (char *buf, int *value);
cce74817 2660
a14ed312 2661static char *unpack_string (char *src, char *dest, int length);
cce74817 2662
23860348 2663static char *pack_threadid (char *pkt, threadref *id);
cce74817 2664
23860348 2665static char *unpack_threadid (char *inbuf, threadref *id);
cce74817 2666
23860348 2667void int_to_threadref (threadref *id, int value);
cce74817 2668
23860348 2669static int threadref_to_int (threadref *ref);
cce74817 2670
23860348 2671static void copy_threadref (threadref *dest, threadref *src);
cce74817 2672
23860348 2673static int threadmatch (threadref *dest, threadref *src);
cce74817 2674
2bc416ba 2675static char *pack_threadinfo_request (char *pkt, int mode,
23860348 2676 threadref *id);
cce74817 2677
a14ed312 2678static int remote_unpack_thread_info_response (char *pkt,
23860348 2679 threadref *expectedref,
a14ed312
KB
2680 struct gdb_ext_thread_info
2681 *info);
cce74817
JM
2682
2683
2bc416ba 2684static int remote_get_threadinfo (threadref *threadid,
23860348 2685 int fieldset, /*TAG mask */
a14ed312 2686 struct gdb_ext_thread_info *info);
cce74817 2687
a14ed312
KB
2688static char *pack_threadlist_request (char *pkt, int startflag,
2689 int threadcount,
23860348 2690 threadref *nextthread);
cce74817 2691
a14ed312
KB
2692static int parse_threadlist_response (char *pkt,
2693 int result_limit,
23860348 2694 threadref *original_echo,
2bc416ba 2695 threadref *resultlist,
23860348 2696 int *doneflag);
cce74817 2697
a14ed312 2698static int remote_get_threadlist (int startflag,
23860348 2699 threadref *nextthread,
a14ed312
KB
2700 int result_limit,
2701 int *done,
2bc416ba 2702 int *result_count,
23860348 2703 threadref *threadlist);
cce74817 2704
23860348 2705typedef int (*rmt_thread_action) (threadref *ref, void *context);
cce74817 2706
a14ed312
KB
2707static int remote_threadlist_iterator (rmt_thread_action stepfunction,
2708 void *context, int looplimit);
cce74817 2709
23860348 2710static int remote_newthread_step (threadref *ref, void *context);
cce74817 2711
82f73884
PA
2712
2713/* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the
2714 buffer we're allowed to write to. Returns
2715 BUF+CHARACTERS_WRITTEN. */
2716
2717static char *
2718write_ptid (char *buf, const char *endbuf, ptid_t ptid)
2719{
2720 int pid, tid;
2721 struct remote_state *rs = get_remote_state ();
2722
2723 if (remote_multi_process_p (rs))
2724 {
2725 pid = ptid_get_pid (ptid);
2726 if (pid < 0)
2727 buf += xsnprintf (buf, endbuf - buf, "p-%x.", -pid);
2728 else
2729 buf += xsnprintf (buf, endbuf - buf, "p%x.", pid);
2730 }
ba348170 2731 tid = ptid_get_lwp (ptid);
82f73884
PA
2732 if (tid < 0)
2733 buf += xsnprintf (buf, endbuf - buf, "-%x", -tid);
2734 else
2735 buf += xsnprintf (buf, endbuf - buf, "%x", tid);
2736
2737 return buf;
2738}
2739
256642e8
PA
2740/* Extract a PTID from BUF. If non-null, OBUF is set to one past the
2741 last parsed char. Returns null_ptid if no thread id is found, and
2742 throws an error if the thread id has an invalid format. */
82f73884
PA
2743
2744static ptid_t
256642e8 2745read_ptid (const char *buf, const char **obuf)
82f73884 2746{
256642e8
PA
2747 const char *p = buf;
2748 const char *pp;
82f73884 2749 ULONGEST pid = 0, tid = 0;
82f73884
PA
2750
2751 if (*p == 'p')
2752 {
2753 /* Multi-process ptid. */
2754 pp = unpack_varlen_hex (p + 1, &pid);
2755 if (*pp != '.')
b37520b6 2756 error (_("invalid remote ptid: %s"), p);
82f73884
PA
2757
2758 p = pp;
2759 pp = unpack_varlen_hex (p + 1, &tid);
2760 if (obuf)
2761 *obuf = pp;
ba348170 2762 return ptid_build (pid, tid, 0);
82f73884
PA
2763 }
2764
2765 /* No multi-process. Just a tid. */
2766 pp = unpack_varlen_hex (p, &tid);
2767
c9f35b34
KB
2768 /* Return null_ptid when no thread id is found. */
2769 if (p == pp)
2770 {
2771 if (obuf)
2772 *obuf = pp;
2773 return null_ptid;
2774 }
2775
82f73884 2776 /* Since the stub is not sending a process id, then default to
ca19bf23
PA
2777 what's in inferior_ptid, unless it's null at this point. If so,
2778 then since there's no way to know the pid of the reported
2779 threads, use the magic number. */
2780 if (ptid_equal (inferior_ptid, null_ptid))
2781 pid = ptid_get_pid (magic_null_ptid);
2782 else
2783 pid = ptid_get_pid (inferior_ptid);
82f73884
PA
2784
2785 if (obuf)
2786 *obuf = pp;
ba348170 2787 return ptid_build (pid, tid, 0);
82f73884
PA
2788}
2789
c906108c 2790static int
fba45db2 2791stubhex (int ch)
c906108c
SS
2792{
2793 if (ch >= 'a' && ch <= 'f')
2794 return ch - 'a' + 10;
2795 if (ch >= '0' && ch <= '9')
2796 return ch - '0';
2797 if (ch >= 'A' && ch <= 'F')
2798 return ch - 'A' + 10;
2799 return -1;
2800}
2801
2802static int
fba45db2 2803stub_unpack_int (char *buff, int fieldlength)
c906108c
SS
2804{
2805 int nibble;
2806 int retval = 0;
2807
2808 while (fieldlength)
2809 {
2810 nibble = stubhex (*buff++);
2811 retval |= nibble;
2812 fieldlength--;
2813 if (fieldlength)
2814 retval = retval << 4;
2815 }
2816 return retval;
2817}
2818
c906108c 2819static char *
fba45db2 2820unpack_nibble (char *buf, int *val)
c906108c 2821{
b7589f7d 2822 *val = fromhex (*buf++);
c906108c
SS
2823 return buf;
2824}
2825
c906108c 2826static char *
fba45db2 2827unpack_byte (char *buf, int *value)
c906108c
SS
2828{
2829 *value = stub_unpack_int (buf, 2);
2830 return buf + 2;
2831}
2832
2833static char *
fba45db2 2834pack_int (char *buf, int value)
c906108c
SS
2835{
2836 buf = pack_hex_byte (buf, (value >> 24) & 0xff);
2837 buf = pack_hex_byte (buf, (value >> 16) & 0xff);
2838 buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
2839 buf = pack_hex_byte (buf, (value & 0xff));
2840 return buf;
2841}
2842
2843static char *
fba45db2 2844unpack_int (char *buf, int *value)
c906108c
SS
2845{
2846 *value = stub_unpack_int (buf, 8);
2847 return buf + 8;
2848}
2849
23860348 2850#if 0 /* Currently unused, uncomment when needed. */
a14ed312 2851static char *pack_string (char *pkt, char *string);
c906108c
SS
2852
2853static char *
fba45db2 2854pack_string (char *pkt, char *string)
c906108c
SS
2855{
2856 char ch;
2857 int len;
2858
2859 len = strlen (string);
2860 if (len > 200)
23860348 2861 len = 200; /* Bigger than most GDB packets, junk??? */
c906108c
SS
2862 pkt = pack_hex_byte (pkt, len);
2863 while (len-- > 0)
2864 {
2865 ch = *string++;
2866 if ((ch == '\0') || (ch == '#'))
23860348 2867 ch = '*'; /* Protect encapsulation. */
c906108c
SS
2868 *pkt++ = ch;
2869 }
2870 return pkt;
2871}
2872#endif /* 0 (unused) */
2873
2874static char *
fba45db2 2875unpack_string (char *src, char *dest, int length)
c906108c
SS
2876{
2877 while (length--)
2878 *dest++ = *src++;
2879 *dest = '\0';
2880 return src;
2881}
2882
2883static char *
fba45db2 2884pack_threadid (char *pkt, threadref *id)
c906108c
SS
2885{
2886 char *limit;
2887 unsigned char *altid;
2888
2889 altid = (unsigned char *) id;
2890 limit = pkt + BUF_THREAD_ID_SIZE;
2891 while (pkt < limit)
2892 pkt = pack_hex_byte (pkt, *altid++);
2893 return pkt;
2894}
2895
2896
2897static char *
fba45db2 2898unpack_threadid (char *inbuf, threadref *id)
c906108c
SS
2899{
2900 char *altref;
2901 char *limit = inbuf + BUF_THREAD_ID_SIZE;
2902 int x, y;
2903
2904 altref = (char *) id;
2905
2906 while (inbuf < limit)
2907 {
2908 x = stubhex (*inbuf++);
2909 y = stubhex (*inbuf++);
2910 *altref++ = (x << 4) | y;
2911 }
2912 return inbuf;
2913}
2914
2915/* Externally, threadrefs are 64 bits but internally, they are still
0df8b418 2916 ints. This is due to a mismatch of specifications. We would like
c906108c
SS
2917 to use 64bit thread references internally. This is an adapter
2918 function. */
2919
2920void
fba45db2 2921int_to_threadref (threadref *id, int value)
c906108c
SS
2922{
2923 unsigned char *scan;
2924
2925 scan = (unsigned char *) id;
2926 {
2927 int i = 4;
2928 while (i--)
2929 *scan++ = 0;
2930 }
2931 *scan++ = (value >> 24) & 0xff;
2932 *scan++ = (value >> 16) & 0xff;
2933 *scan++ = (value >> 8) & 0xff;
2934 *scan++ = (value & 0xff);
2935}
2936
2937static int
fba45db2 2938threadref_to_int (threadref *ref)
c906108c
SS
2939{
2940 int i, value = 0;
2941 unsigned char *scan;
2942
cfd77fa1 2943 scan = *ref;
c906108c
SS
2944 scan += 4;
2945 i = 4;
2946 while (i-- > 0)
2947 value = (value << 8) | ((*scan++) & 0xff);
2948 return value;
2949}
2950
2951static void
fba45db2 2952copy_threadref (threadref *dest, threadref *src)
c906108c
SS
2953{
2954 int i;
2955 unsigned char *csrc, *cdest;
2956
2957 csrc = (unsigned char *) src;
2958 cdest = (unsigned char *) dest;
2959 i = 8;
2960 while (i--)
2961 *cdest++ = *csrc++;
2962}
2963
2964static int
fba45db2 2965threadmatch (threadref *dest, threadref *src)
c906108c 2966{
23860348 2967 /* Things are broken right now, so just assume we got a match. */
c906108c
SS
2968#if 0
2969 unsigned char *srcp, *destp;
2970 int i, result;
2971 srcp = (char *) src;
2972 destp = (char *) dest;
2973
2974 result = 1;
2975 while (i-- > 0)
2976 result &= (*srcp++ == *destp++) ? 1 : 0;
2977 return result;
2978#endif
2979 return 1;
2980}
2981
2982/*
c5aa993b
JM
2983 threadid:1, # always request threadid
2984 context_exists:2,
2985 display:4,
2986 unique_name:8,
2987 more_display:16
2988 */
c906108c
SS
2989
2990/* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
2991
2992static char *
fba45db2 2993pack_threadinfo_request (char *pkt, int mode, threadref *id)
c906108c 2994{
23860348
MS
2995 *pkt++ = 'q'; /* Info Query */
2996 *pkt++ = 'P'; /* process or thread info */
2997 pkt = pack_int (pkt, mode); /* mode */
c906108c 2998 pkt = pack_threadid (pkt, id); /* threadid */
23860348 2999 *pkt = '\0'; /* terminate */
c906108c
SS
3000 return pkt;
3001}
3002
23860348 3003/* These values tag the fields in a thread info response packet. */
c906108c 3004/* Tagging the fields allows us to request specific fields and to
23860348 3005 add more fields as time goes by. */
c906108c 3006
23860348 3007#define TAG_THREADID 1 /* Echo the thread identifier. */
c5aa993b 3008#define TAG_EXISTS 2 /* Is this process defined enough to
23860348 3009 fetch registers and its stack? */
c5aa993b 3010#define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
23860348 3011#define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
802188a7 3012#define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
23860348 3013 the process. */
c906108c
SS
3014
3015static int
fba45db2
KB
3016remote_unpack_thread_info_response (char *pkt, threadref *expectedref,
3017 struct gdb_ext_thread_info *info)
c906108c 3018{
d01949b6 3019 struct remote_state *rs = get_remote_state ();
c906108c 3020 int mask, length;
cfd77fa1 3021 int tag;
c906108c 3022 threadref ref;
6d820c5c 3023 char *limit = pkt + rs->buf_size; /* Plausible parsing limit. */
c906108c
SS
3024 int retval = 1;
3025
23860348 3026 /* info->threadid = 0; FIXME: implement zero_threadref. */
c906108c
SS
3027 info->active = 0;
3028 info->display[0] = '\0';
3029 info->shortname[0] = '\0';
3030 info->more_display[0] = '\0';
3031
23860348
MS
3032 /* Assume the characters indicating the packet type have been
3033 stripped. */
c906108c
SS
3034 pkt = unpack_int (pkt, &mask); /* arg mask */
3035 pkt = unpack_threadid (pkt, &ref);
3036
3037 if (mask == 0)
8a3fe4f8 3038 warning (_("Incomplete response to threadinfo request."));
c906108c 3039 if (!threadmatch (&ref, expectedref))
23860348 3040 { /* This is an answer to a different request. */
8a3fe4f8 3041 warning (_("ERROR RMT Thread info mismatch."));
c906108c
SS
3042 return 0;
3043 }
3044 copy_threadref (&info->threadid, &ref);
3045
23860348 3046 /* Loop on tagged fields , try to bail if somthing goes wrong. */
c906108c 3047
23860348
MS
3048 /* Packets are terminated with nulls. */
3049 while ((pkt < limit) && mask && *pkt)
c906108c
SS
3050 {
3051 pkt = unpack_int (pkt, &tag); /* tag */
23860348
MS
3052 pkt = unpack_byte (pkt, &length); /* length */
3053 if (!(tag & mask)) /* Tags out of synch with mask. */
c906108c 3054 {
8a3fe4f8 3055 warning (_("ERROR RMT: threadinfo tag mismatch."));
c906108c
SS
3056 retval = 0;
3057 break;
3058 }
3059 if (tag == TAG_THREADID)
3060 {
3061 if (length != 16)
3062 {
8a3fe4f8 3063 warning (_("ERROR RMT: length of threadid is not 16."));
c906108c
SS
3064 retval = 0;
3065 break;
3066 }
3067 pkt = unpack_threadid (pkt, &ref);
3068 mask = mask & ~TAG_THREADID;
3069 continue;
3070 }
3071 if (tag == TAG_EXISTS)
3072 {
3073 info->active = stub_unpack_int (pkt, length);
3074 pkt += length;
3075 mask = mask & ~(TAG_EXISTS);
3076 if (length > 8)
3077 {
8a3fe4f8 3078 warning (_("ERROR RMT: 'exists' length too long."));
c906108c
SS
3079 retval = 0;
3080 break;
3081 }
3082 continue;
3083 }
3084 if (tag == TAG_THREADNAME)
3085 {
3086 pkt = unpack_string (pkt, &info->shortname[0], length);
3087 mask = mask & ~TAG_THREADNAME;
3088 continue;
3089 }
3090 if (tag == TAG_DISPLAY)
3091 {
3092 pkt = unpack_string (pkt, &info->display[0], length);
3093 mask = mask & ~TAG_DISPLAY;
3094 continue;
3095 }
3096 if (tag == TAG_MOREDISPLAY)
3097 {
3098 pkt = unpack_string (pkt, &info->more_display[0], length);
3099 mask = mask & ~TAG_MOREDISPLAY;
3100 continue;
3101 }
8a3fe4f8 3102 warning (_("ERROR RMT: unknown thread info tag."));
23860348 3103 break; /* Not a tag we know about. */
c906108c
SS
3104 }
3105 return retval;
3106}
3107
3108static int
fba45db2
KB
3109remote_get_threadinfo (threadref *threadid, int fieldset, /* TAG mask */
3110 struct gdb_ext_thread_info *info)
c906108c 3111{
d01949b6 3112 struct remote_state *rs = get_remote_state ();
c906108c 3113 int result;
c906108c 3114
2e9f7625
DJ
3115 pack_threadinfo_request (rs->buf, fieldset, threadid);
3116 putpkt (rs->buf);
6d820c5c 3117 getpkt (&rs->buf, &rs->buf_size, 0);
3084dd77
PA
3118
3119 if (rs->buf[0] == '\0')
3120 return 0;
3121
2e9f7625 3122 result = remote_unpack_thread_info_response (rs->buf + 2,
23860348 3123 threadid, info);
c906108c
SS
3124 return result;
3125}
3126
c906108c
SS
3127/* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
3128
3129static char *
fba45db2
KB
3130pack_threadlist_request (char *pkt, int startflag, int threadcount,
3131 threadref *nextthread)
c906108c
SS
3132{
3133 *pkt++ = 'q'; /* info query packet */
3134 *pkt++ = 'L'; /* Process LIST or threadLIST request */
23860348 3135 pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */
c906108c
SS
3136 pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */
3137 pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */
3138 *pkt = '\0';
3139 return pkt;
3140}
3141
3142/* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
3143
3144static int
fba45db2
KB
3145parse_threadlist_response (char *pkt, int result_limit,
3146 threadref *original_echo, threadref *resultlist,
3147 int *doneflag)
c906108c 3148{
d01949b6 3149 struct remote_state *rs = get_remote_state ();
c906108c
SS
3150 char *limit;
3151 int count, resultcount, done;
3152
3153 resultcount = 0;
3154 /* Assume the 'q' and 'M chars have been stripped. */
6d820c5c 3155 limit = pkt + (rs->buf_size - BUF_THREAD_ID_SIZE);
23860348 3156 /* done parse past here */
c906108c
SS
3157 pkt = unpack_byte (pkt, &count); /* count field */
3158 pkt = unpack_nibble (pkt, &done);
3159 /* The first threadid is the argument threadid. */
3160 pkt = unpack_threadid (pkt, original_echo); /* should match query packet */
3161 while ((count-- > 0) && (pkt < limit))
3162 {
3163 pkt = unpack_threadid (pkt, resultlist++);
3164 if (resultcount++ >= result_limit)
3165 break;
3166 }
3167 if (doneflag)
3168 *doneflag = done;
3169 return resultcount;
3170}
3171
6dc54d91
PA
3172/* Fetch the next batch of threads from the remote. Returns -1 if the
3173 qL packet is not supported, 0 on error and 1 on success. */
3174
c906108c 3175static int
fba45db2
KB
3176remote_get_threadlist (int startflag, threadref *nextthread, int result_limit,
3177 int *done, int *result_count, threadref *threadlist)
c906108c 3178{
d01949b6 3179 struct remote_state *rs = get_remote_state ();
c906108c
SS
3180 int result = 1;
3181
23860348 3182 /* Trancate result limit to be smaller than the packet size. */
3e43a32a
MS
3183 if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10)
3184 >= get_remote_packet_size ())
ea9c271d 3185 result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2;
c906108c 3186
6d820c5c
DJ
3187 pack_threadlist_request (rs->buf, startflag, result_limit, nextthread);
3188 putpkt (rs->buf);
3189 getpkt (&rs->buf, &rs->buf_size, 0);
d8f2712d 3190 if (*rs->buf == '\0')
6dc54d91
PA
3191 {
3192 /* Packet not supported. */
3193 return -1;
3194 }
3195
3196 *result_count =
3197 parse_threadlist_response (rs->buf + 2, result_limit,
3198 &rs->echo_nextthread, threadlist, done);
c906108c 3199
0d031856 3200 if (!threadmatch (&rs->echo_nextthread, nextthread))
c906108c 3201 {
23860348
MS
3202 /* FIXME: This is a good reason to drop the packet. */
3203 /* Possably, there is a duplicate response. */
c906108c
SS
3204 /* Possabilities :
3205 retransmit immediatly - race conditions
3206 retransmit after timeout - yes
3207 exit
3208 wait for packet, then exit
3209 */
8a3fe4f8 3210 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
23860348 3211 return 0; /* I choose simply exiting. */
c906108c
SS
3212 }
3213 if (*result_count <= 0)
3214 {
3215 if (*done != 1)
3216 {
8a3fe4f8 3217 warning (_("RMT ERROR : failed to get remote thread list."));
c906108c
SS
3218 result = 0;
3219 }
3220 return result; /* break; */
3221 }
3222 if (*result_count > result_limit)
3223 {
3224 *result_count = 0;
8a3fe4f8 3225 warning (_("RMT ERROR: threadlist response longer than requested."));
c906108c
SS
3226 return 0;
3227 }
3228 return result;
3229}
3230
6dc54d91
PA
3231/* Fetch the list of remote threads, with the qL packet, and call
3232 STEPFUNCTION for each thread found. Stops iterating and returns 1
3233 if STEPFUNCTION returns true. Stops iterating and returns 0 if the
3234 STEPFUNCTION returns false. If the packet is not supported,
3235 returns -1. */
c906108c 3236
c906108c 3237static int
fba45db2
KB
3238remote_threadlist_iterator (rmt_thread_action stepfunction, void *context,
3239 int looplimit)
c906108c 3240{
0d031856 3241 struct remote_state *rs = get_remote_state ();
c906108c
SS
3242 int done, i, result_count;
3243 int startflag = 1;
3244 int result = 1;
3245 int loopcount = 0;
c906108c
SS
3246
3247 done = 0;
3248 while (!done)
3249 {
3250 if (loopcount++ > looplimit)
3251 {
3252 result = 0;
8a3fe4f8 3253 warning (_("Remote fetch threadlist -infinite loop-."));
c906108c
SS
3254 break;
3255 }
6dc54d91
PA
3256 result = remote_get_threadlist (startflag, &rs->nextthread,
3257 MAXTHREADLISTRESULTS,
3258 &done, &result_count,
3259 rs->resultthreadlist);
3260 if (result <= 0)
3261 break;
23860348 3262 /* Clear for later iterations. */
c906108c
SS
3263 startflag = 0;
3264 /* Setup to resume next batch of thread references, set nextthread. */
3265 if (result_count >= 1)
0d031856
TT
3266 copy_threadref (&rs->nextthread,
3267 &rs->resultthreadlist[result_count - 1]);
c906108c
SS
3268 i = 0;
3269 while (result_count--)
6dc54d91
PA
3270 {
3271 if (!(*stepfunction) (&rs->resultthreadlist[i++], context))
3272 {
3273 result = 0;
3274 break;
3275 }
3276 }
c906108c
SS
3277 }
3278 return result;
3279}
3280
6dc54d91
PA
3281/* A thread found on the remote target. */
3282
21fe1c75 3283struct thread_item
6dc54d91 3284{
21fe1c75
SM
3285 explicit thread_item (ptid_t ptid_)
3286 : ptid (ptid_)
3287 {}
3288
3289 thread_item (thread_item &&other) = default;
3290 thread_item &operator= (thread_item &&other) = default;
3291
3292 DISABLE_COPY_AND_ASSIGN (thread_item);
3293
6dc54d91
PA
3294 /* The thread's PTID. */
3295 ptid_t ptid;
3296
21fe1c75
SM
3297 /* The thread's extra info. */
3298 std::string extra;
6dc54d91 3299
21fe1c75
SM
3300 /* The thread's name. */
3301 std::string name;
79efa585 3302
6dc54d91 3303 /* The core the thread was running on. -1 if not known. */
21fe1c75 3304 int core = -1;
f6327dcb
KB
3305
3306 /* The thread handle associated with the thread. */
21fe1c75 3307 gdb::byte_vector thread_handle;
21fe1c75 3308};
6dc54d91
PA
3309
3310/* Context passed around to the various methods listing remote
3311 threads. As new threads are found, they're added to the ITEMS
3312 vector. */
3313
3314struct threads_listing_context
3315{
21fe1c75
SM
3316 /* Return true if this object contains an entry for a thread with ptid
3317 PTID. */
6dc54d91 3318
21fe1c75
SM
3319 bool contains_thread (ptid_t ptid) const
3320 {
3321 auto match_ptid = [&] (const thread_item &item)
3322 {
3323 return item.ptid == ptid;
3324 };
80134cf5 3325
21fe1c75
SM
3326 auto it = std::find_if (this->items.begin (),
3327 this->items.end (),
3328 match_ptid);
80134cf5 3329
21fe1c75
SM
3330 return it != this->items.end ();
3331 }
80134cf5 3332
21fe1c75 3333 /* Remove the thread with ptid PTID. */
80134cf5 3334
21fe1c75
SM
3335 void remove_thread (ptid_t ptid)
3336 {
3337 auto match_ptid = [&] (const thread_item &item)
3338 {
3339 return item.ptid == ptid;
3340 };
cbb8991c 3341
21fe1c75
SM
3342 auto it = std::remove_if (this->items.begin (),
3343 this->items.end (),
3344 match_ptid);
cbb8991c 3345
21fe1c75
SM
3346 if (it != this->items.end ())
3347 this->items.erase (it);
3348 }
3349
3350 /* The threads found on the remote target. */
3351 std::vector<thread_item> items;
3352};
cbb8991c 3353
c906108c 3354static int
6dc54d91 3355remote_newthread_step (threadref *ref, void *data)
c906108c 3356{
19ba03f4
SM
3357 struct threads_listing_context *context
3358 = (struct threads_listing_context *) data;
21fe1c75
SM
3359 int pid = inferior_ptid.pid ();
3360 int lwp = threadref_to_int (ref);
3361 ptid_t ptid (pid, lwp);
6dc54d91 3362
21fe1c75 3363 context->items.emplace_back (ptid);
6dc54d91 3364
c906108c
SS
3365 return 1; /* continue iterator */
3366}
3367
3368#define CRAZY_MAX_THREADS 1000
3369
39f77062
KB
3370static ptid_t
3371remote_current_thread (ptid_t oldpid)
c906108c 3372{
d01949b6 3373 struct remote_state *rs = get_remote_state ();
c906108c
SS
3374
3375 putpkt ("qC");
6d820c5c 3376 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 3377 if (rs->buf[0] == 'Q' && rs->buf[1] == 'C')
c9f35b34 3378 {
256642e8 3379 const char *obuf;
c9f35b34
KB
3380 ptid_t result;
3381
3382 result = read_ptid (&rs->buf[2], &obuf);
3383 if (*obuf != '\0' && remote_debug)
3384 fprintf_unfiltered (gdb_stdlog,
3385 "warning: garbage in qC reply\n");
3386
3387 return result;
3388 }
c906108c
SS
3389 else
3390 return oldpid;
3391}
3392
6dc54d91 3393/* List remote threads using the deprecated qL packet. */
cce74817 3394
6dc54d91
PA
3395static int
3396remote_get_threads_with_ql (struct target_ops *ops,
3397 struct threads_listing_context *context)
c906108c 3398{
6dc54d91
PA
3399 if (remote_threadlist_iterator (remote_newthread_step, context,
3400 CRAZY_MAX_THREADS) >= 0)
3401 return 1;
3402
3403 return 0;
c906108c
SS
3404}
3405
dc146f7c
VP
3406#if defined(HAVE_LIBEXPAT)
3407
dc146f7c
VP
3408static void
3409start_thread (struct gdb_xml_parser *parser,
3410 const struct gdb_xml_element *element,
4d0fdd9b
SM
3411 void *user_data,
3412 std::vector<gdb_xml_value> &attributes)
dc146f7c 3413{
19ba03f4
SM
3414 struct threads_listing_context *data
3415 = (struct threads_listing_context *) user_data;
3d2c1d41 3416 struct gdb_xml_value *attr;
dc146f7c 3417
4d0fdd9b 3418 char *id = (char *) xml_find_attribute (attributes, "id")->value.get ();
21fe1c75
SM
3419 ptid_t ptid = read_ptid (id, NULL);
3420
3421 data->items.emplace_back (ptid);
3422 thread_item &item = data->items.back ();
dc146f7c 3423
3d2c1d41
PA
3424 attr = xml_find_attribute (attributes, "core");
3425 if (attr != NULL)
4d0fdd9b 3426 item.core = *(ULONGEST *) attr->value.get ();
dc146f7c 3427
79efa585 3428 attr = xml_find_attribute (attributes, "name");
21fe1c75 3429 if (attr != NULL)
4d0fdd9b 3430 item.name = (const char *) attr->value.get ();
79efa585 3431
f6327dcb
KB
3432 attr = xml_find_attribute (attributes, "handle");
3433 if (attr != NULL)
4d0fdd9b 3434 item.thread_handle = hex2bin ((const char *) attr->value.get ());
dc146f7c
VP
3435}
3436
3437static void
3438end_thread (struct gdb_xml_parser *parser,
3439 const struct gdb_xml_element *element,
3440 void *user_data, const char *body_text)
3441{
19ba03f4
SM
3442 struct threads_listing_context *data
3443 = (struct threads_listing_context *) user_data;
dc146f7c 3444
21fe1c75
SM
3445 if (body_text != NULL && *body_text != '\0')
3446 data->items.back ().extra = body_text;
dc146f7c
VP
3447}
3448
3449const struct gdb_xml_attribute thread_attributes[] = {
3450 { "id", GDB_XML_AF_NONE, NULL, NULL },
3451 { "core", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
79efa585 3452 { "name", GDB_XML_AF_OPTIONAL, NULL, NULL },
f6327dcb 3453 { "handle", GDB_XML_AF_OPTIONAL, NULL, NULL },
dc146f7c
VP
3454 { NULL, GDB_XML_AF_NONE, NULL, NULL }
3455};
3456
3457const struct gdb_xml_element thread_children[] = {
3458 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3459};
3460
3461const struct gdb_xml_element threads_children[] = {
3462 { "thread", thread_attributes, thread_children,
3463 GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL,
3464 start_thread, end_thread },
3465 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3466};
3467
3468const struct gdb_xml_element threads_elements[] = {
3469 { "threads", NULL, threads_children,
3470 GDB_XML_EF_NONE, NULL, NULL },
3471 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3472};
3473
3474#endif
3475
6dc54d91 3476/* List remote threads using qXfer:threads:read. */
9d1f7ab2 3477
6dc54d91
PA
3478static int
3479remote_get_threads_with_qxfer (struct target_ops *ops,
3480 struct threads_listing_context *context)
0f71a2f6 3481{
dc146f7c 3482#if defined(HAVE_LIBEXPAT)
4082afcc 3483 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
dc146f7c 3484 {
9018be22 3485 gdb::optional<gdb::char_vector> xml
b7b030ad 3486 = target_read_stralloc (ops, TARGET_OBJECT_THREADS, NULL);
efc0eabd 3487
9018be22 3488 if (xml && (*xml)[0] != '\0')
dc146f7c 3489 {
6dc54d91 3490 gdb_xml_parse_quick (_("threads"), "threads.dtd",
9018be22 3491 threads_elements, xml->data (), context);
dc146f7c
VP
3492 }
3493
6dc54d91 3494 return 1;
dc146f7c
VP
3495 }
3496#endif
3497
6dc54d91
PA
3498 return 0;
3499}
3500
3501/* List remote threads using qfThreadInfo/qsThreadInfo. */
3502
3503static int
3504remote_get_threads_with_qthreadinfo (struct target_ops *ops,
3505 struct threads_listing_context *context)
3506{
3507 struct remote_state *rs = get_remote_state ();
3508
b80fafe3 3509 if (rs->use_threadinfo_query)
9d1f7ab2 3510 {
256642e8 3511 const char *bufp;
6dc54d91 3512
9d1f7ab2 3513 putpkt ("qfThreadInfo");
6d820c5c 3514 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 3515 bufp = rs->buf;
9d1f7ab2 3516 if (bufp[0] != '\0') /* q packet recognized */
802188a7 3517 {
9d1f7ab2
MS
3518 while (*bufp++ == 'm') /* reply contains one or more TID */
3519 {
3520 do
3521 {
21fe1c75
SM
3522 ptid_t ptid = read_ptid (bufp, &bufp);
3523 context->items.emplace_back (ptid);
9d1f7ab2
MS
3524 }
3525 while (*bufp++ == ','); /* comma-separated list */
3526 putpkt ("qsThreadInfo");
6d820c5c 3527 getpkt (&rs->buf, &rs->buf_size, 0);
6dc54d91 3528 bufp = rs->buf;
9d1f7ab2 3529 }
6dc54d91
PA
3530 return 1;
3531 }
3532 else
3533 {
3534 /* Packet not recognized. */
3535 rs->use_threadinfo_query = 0;
9d1f7ab2
MS
3536 }
3537 }
3538
6dc54d91
PA
3539 return 0;
3540}
3541
e8032dde 3542/* Implement the to_update_thread_list function for the remote
6dc54d91
PA
3543 targets. */
3544
f6ac5f3d
PA
3545void
3546remote_target::update_thread_list ()
6dc54d91 3547{
6dc54d91 3548 struct threads_listing_context context;
ab970af1 3549 int got_list = 0;
e8032dde 3550
6dc54d91
PA
3551 /* We have a few different mechanisms to fetch the thread list. Try
3552 them all, starting with the most preferred one first, falling
3553 back to older methods. */
f6ac5f3d
PA
3554 if (remote_get_threads_with_qxfer (this, &context)
3555 || remote_get_threads_with_qthreadinfo (this, &context)
3556 || remote_get_threads_with_ql (this, &context))
6dc54d91 3557 {
ab970af1
PA
3558 struct thread_info *tp, *tmp;
3559
3560 got_list = 1;
3561
21fe1c75 3562 if (context.items.empty ()
f6ac5f3d 3563 && remote_thread_always_alive (inferior_ptid))
7d1a114c
PA
3564 {
3565 /* Some targets don't really support threads, but still
3566 reply an (empty) thread list in response to the thread
3567 listing packets, instead of replying "packet not
3568 supported". Exit early so we don't delete the main
3569 thread. */
7d1a114c
PA
3570 return;
3571 }
3572
ab970af1
PA
3573 /* CONTEXT now holds the current thread list on the remote
3574 target end. Delete GDB-side threads no longer found on the
3575 target. */
8a06aea7 3576 ALL_THREADS_SAFE (tp, tmp)
cbb8991c 3577 {
21fe1c75 3578 if (!context.contains_thread (tp->ptid))
ab970af1
PA
3579 {
3580 /* Not found. */
3581 delete_thread (tp->ptid);
3582 }
cbb8991c
DB
3583 }
3584
3585 /* Remove any unreported fork child threads from CONTEXT so
3586 that we don't interfere with follow fork, which is where
3587 creation of such threads is handled. */
3588 remove_new_fork_children (&context);
74531fed 3589
ab970af1 3590 /* And now add threads we don't know about yet to our list. */
21fe1c75 3591 for (thread_item &item : context.items)
6dc54d91 3592 {
21fe1c75 3593 if (item.ptid != null_ptid)
6dc54d91 3594 {
6dc54d91 3595 /* In non-stop mode, we assume new found threads are
0d5b594f
PA
3596 executing until proven otherwise with a stop reply.
3597 In all-stop, we can only get here if all threads are
6dc54d91 3598 stopped. */
0d5b594f 3599 int executing = target_is_non_stop_p () ? 1 : 0;
6dc54d91 3600
21fe1c75 3601 remote_notice_new_inferior (item.ptid, executing);
6dc54d91 3602
7aabaf9d 3603 remote_thread_info *info = get_remote_thread_info (item.ptid);
21fe1c75 3604 info->core = item.core;
7aabaf9d
SM
3605 info->extra = std::move (item.extra);
3606 info->name = std::move (item.name);
3607 info->thread_handle = std::move (item.thread_handle);
6dc54d91
PA
3608 }
3609 }
3610 }
3611
ab970af1
PA
3612 if (!got_list)
3613 {
3614 /* If no thread listing method is supported, then query whether
3615 each known thread is alive, one by one, with the T packet.
3616 If the target doesn't support threads at all, then this is a
3617 no-op. See remote_thread_alive. */
3618 prune_threads ();
3619 }
9d1f7ab2
MS
3620}
3621
802188a7 3622/*
9d1f7ab2
MS
3623 * Collect a descriptive string about the given thread.
3624 * The target may say anything it wants to about the thread
3625 * (typically info about its blocked / runnable state, name, etc.).
3626 * This string will appear in the info threads display.
802188a7 3627 *
9d1f7ab2
MS
3628 * Optional: targets are not required to implement this function.
3629 */
3630
f6ac5f3d
PA
3631const char *
3632remote_target::extra_thread_info (thread_info *tp)
9d1f7ab2 3633{
d01949b6 3634 struct remote_state *rs = get_remote_state ();
9d1f7ab2
MS
3635 int result;
3636 int set;
3637 threadref id;
3638 struct gdb_ext_thread_info threadinfo;
23860348 3639 static char display_buf[100]; /* arbitrary... */
9d1f7ab2
MS
3640 int n = 0; /* position in display_buf */
3641
5d93a237 3642 if (rs->remote_desc == 0) /* paranoia */
8e65ff28 3643 internal_error (__FILE__, __LINE__,
e2e0b3e5 3644 _("remote_threads_extra_info"));
9d1f7ab2 3645
60e569b9 3646 if (ptid_equal (tp->ptid, magic_null_ptid)
ba348170 3647 || (ptid_get_pid (tp->ptid) != 0 && ptid_get_lwp (tp->ptid) == 0))
60e569b9
PA
3648 /* This is the main thread which was added by GDB. The remote
3649 server doesn't know about it. */
3650 return NULL;
3651
4082afcc 3652 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
dc146f7c
VP
3653 {
3654 struct thread_info *info = find_thread_ptid (tp->ptid);
a744cf53 3655
7aabaf9d 3656 if (info != NULL && info->priv != NULL)
a9334058
SM
3657 {
3658 const std::string &extra = get_remote_thread_info (info)->extra;
3659 return !extra.empty () ? extra.c_str () : NULL;
3660 }
dc146f7c
VP
3661 else
3662 return NULL;
3663 }
3664
b80fafe3 3665 if (rs->use_threadextra_query)
9d1f7ab2 3666 {
82f73884
PA
3667 char *b = rs->buf;
3668 char *endb = rs->buf + get_remote_packet_size ();
3669
3670 xsnprintf (b, endb - b, "qThreadExtraInfo,");
3671 b += strlen (b);
3672 write_ptid (b, endb, tp->ptid);
3673
2e9f7625 3674 putpkt (rs->buf);
6d820c5c 3675 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 3676 if (rs->buf[0] != 0)
9d1f7ab2 3677 {
325fac50 3678 n = std::min (strlen (rs->buf) / 2, sizeof (display_buf));
2e9f7625 3679 result = hex2bin (rs->buf, (gdb_byte *) display_buf, n);
30559e10 3680 display_buf [result] = '\0';
9d1f7ab2
MS
3681 return display_buf;
3682 }
0f71a2f6 3683 }
9d1f7ab2
MS
3684
3685 /* If the above query fails, fall back to the old method. */
b80fafe3 3686 rs->use_threadextra_query = 0;
9d1f7ab2
MS
3687 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
3688 | TAG_MOREDISPLAY | TAG_DISPLAY;
ba348170 3689 int_to_threadref (&id, ptid_get_lwp (tp->ptid));
9d1f7ab2
MS
3690 if (remote_get_threadinfo (&id, set, &threadinfo))
3691 if (threadinfo.active)
0f71a2f6 3692 {
9d1f7ab2 3693 if (*threadinfo.shortname)
2bc416ba 3694 n += xsnprintf (&display_buf[0], sizeof (display_buf) - n,
ecbc58df 3695 " Name: %s,", threadinfo.shortname);
9d1f7ab2 3696 if (*threadinfo.display)
2bc416ba 3697 n += xsnprintf (&display_buf[n], sizeof (display_buf) - n,
ecbc58df 3698 " State: %s,", threadinfo.display);
9d1f7ab2 3699 if (*threadinfo.more_display)
2bc416ba 3700 n += xsnprintf (&display_buf[n], sizeof (display_buf) - n,
ecbc58df 3701 " Priority: %s", threadinfo.more_display);
9d1f7ab2
MS
3702
3703 if (n > 0)
c5aa993b 3704 {
23860348 3705 /* For purely cosmetic reasons, clear up trailing commas. */
9d1f7ab2
MS
3706 if (',' == display_buf[n-1])
3707 display_buf[n-1] = ' ';
3708 return display_buf;
c5aa993b 3709 }
0f71a2f6 3710 }
9d1f7ab2 3711 return NULL;
0f71a2f6 3712}
c906108c 3713\f
c5aa993b 3714
f6ac5f3d
PA
3715bool
3716remote_target::static_tracepoint_marker_at (CORE_ADDR addr,
3717 struct static_tracepoint_marker *marker)
0fb4aa4b
PA
3718{
3719 struct remote_state *rs = get_remote_state ();
3720 char *p = rs->buf;
3721
bba74b36 3722 xsnprintf (p, get_remote_packet_size (), "qTSTMat:");
0fb4aa4b
PA
3723 p += strlen (p);
3724 p += hexnumstr (p, addr);
3725 putpkt (rs->buf);
3726 getpkt (&rs->buf, &rs->buf_size, 0);
3727 p = rs->buf;
3728
3729 if (*p == 'E')
3730 error (_("Remote failure reply: %s"), p);
3731
3732 if (*p++ == 'm')
3733 {
256642e8 3734 parse_static_tracepoint_marker_definition (p, NULL, marker);
5d9310c4 3735 return true;
0fb4aa4b
PA
3736 }
3737
5d9310c4 3738 return false;
0fb4aa4b
PA
3739}
3740
f6ac5f3d
PA
3741std::vector<static_tracepoint_marker>
3742remote_target::static_tracepoint_markers_by_strid (const char *strid)
0fb4aa4b
PA
3743{
3744 struct remote_state *rs = get_remote_state ();
5d9310c4 3745 std::vector<static_tracepoint_marker> markers;
256642e8 3746 const char *p;
5d9310c4 3747 static_tracepoint_marker marker;
0fb4aa4b
PA
3748
3749 /* Ask for a first packet of static tracepoint marker
3750 definition. */
3751 putpkt ("qTfSTM");
3752 getpkt (&rs->buf, &rs->buf_size, 0);
3753 p = rs->buf;
3754 if (*p == 'E')
3755 error (_("Remote failure reply: %s"), p);
3756
0fb4aa4b
PA
3757 while (*p++ == 'm')
3758 {
0fb4aa4b
PA
3759 do
3760 {
5d9310c4 3761 parse_static_tracepoint_marker_definition (p, &p, &marker);
0fb4aa4b 3762
5d9310c4
SM
3763 if (strid == NULL || marker.str_id == strid)
3764 markers.push_back (std::move (marker));
0fb4aa4b
PA
3765 }
3766 while (*p++ == ','); /* comma-separated list */
3767 /* Ask for another packet of static tracepoint definition. */
3768 putpkt ("qTsSTM");
3769 getpkt (&rs->buf, &rs->buf_size, 0);
3770 p = rs->buf;
3771 }
3772
0fb4aa4b
PA
3773 return markers;
3774}
3775
3776\f
10760264
JB
3777/* Implement the to_get_ada_task_ptid function for the remote targets. */
3778
f6ac5f3d
PA
3779ptid_t
3780remote_target::get_ada_task_ptid (long lwp, long thread)
10760264 3781{
ba348170 3782 return ptid_build (ptid_get_pid (inferior_ptid), lwp, 0);
10760264
JB
3783}
3784\f
3785
24b06219 3786/* Restart the remote side; this is an extended protocol operation. */
c906108c
SS
3787
3788static void
fba45db2 3789extended_remote_restart (void)
c906108c 3790{
d01949b6 3791 struct remote_state *rs = get_remote_state ();
c906108c
SS
3792
3793 /* Send the restart command; for reasons I don't understand the
3794 remote side really expects a number after the "R". */
ea9c271d 3795 xsnprintf (rs->buf, get_remote_packet_size (), "R%x", 0);
6d820c5c 3796 putpkt (rs->buf);
c906108c 3797
ad9a8f3f 3798 remote_fileio_reset ();
c906108c
SS
3799}
3800\f
3801/* Clean up connection to a remote debugger. */
3802
f6ac5f3d
PA
3803void
3804remote_target::close ()
c906108c 3805{
5d93a237
TT
3806 struct remote_state *rs = get_remote_state ();
3807
3808 if (rs->remote_desc == NULL)
d3fd5342
PA
3809 return; /* already closed */
3810
048094ac 3811 /* Make sure we leave stdin registered in the event loop. */
f6ac5f3d 3812 terminal_ours ();
ce5ce7ed 3813
5d93a237
TT
3814 serial_close (rs->remote_desc);
3815 rs->remote_desc = NULL;
ce5ce7ed
PA
3816
3817 /* We don't have a connection to the remote stub anymore. Get rid
f67fd822
PM
3818 of all the inferiors and their threads we were controlling.
3819 Reset inferior_ptid to null_ptid first, as otherwise has_stack_frame
3820 will be unable to find the thread corresponding to (pid, 0, 0). */
0f2caa1b 3821 inferior_ptid = null_ptid;
f67fd822 3822 discard_all_inferiors ();
ce5ce7ed 3823
f48ff2a7
YQ
3824 /* We are closing the remote target, so we should discard
3825 everything of this target. */
bcc75809 3826 discard_pending_stop_replies_in_queue (rs);
74531fed
PA
3827
3828 if (remote_async_inferior_event_token)
3829 delete_async_event_handler (&remote_async_inferior_event_token);
722247f1 3830
5965e028 3831 remote_notif_state_xfree (rs->notif_state);
aef525cb
YQ
3832
3833 trace_reset_local_state ();
c906108c
SS
3834}
3835
23860348 3836/* Query the remote side for the text, data and bss offsets. */
c906108c
SS
3837
3838static void
fba45db2 3839get_offsets (void)
c906108c 3840{
d01949b6 3841 struct remote_state *rs = get_remote_state ();
2e9f7625 3842 char *buf;
085dd6e6 3843 char *ptr;
31d99776
DJ
3844 int lose, num_segments = 0, do_sections, do_segments;
3845 CORE_ADDR text_addr, data_addr, bss_addr, segments[2];
c906108c 3846 struct section_offsets *offs;
31d99776
DJ
3847 struct symfile_segment_data *data;
3848
3849 if (symfile_objfile == NULL)
3850 return;
c906108c
SS
3851
3852 putpkt ("qOffsets");
6d820c5c 3853 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 3854 buf = rs->buf;
c906108c
SS
3855
3856 if (buf[0] == '\000')
3857 return; /* Return silently. Stub doesn't support
23860348 3858 this command. */
c906108c
SS
3859 if (buf[0] == 'E')
3860 {
8a3fe4f8 3861 warning (_("Remote failure reply: %s"), buf);
c906108c
SS
3862 return;
3863 }
3864
3865 /* Pick up each field in turn. This used to be done with scanf, but
3866 scanf will make trouble if CORE_ADDR size doesn't match
3867 conversion directives correctly. The following code will work
3868 with any size of CORE_ADDR. */
3869 text_addr = data_addr = bss_addr = 0;
3870 ptr = buf;
3871 lose = 0;
3872
61012eef 3873 if (startswith (ptr, "Text="))
c906108c
SS
3874 {
3875 ptr += 5;
3876 /* Don't use strtol, could lose on big values. */
3877 while (*ptr && *ptr != ';')
3878 text_addr = (text_addr << 4) + fromhex (*ptr++);
c906108c 3879
61012eef 3880 if (startswith (ptr, ";Data="))
31d99776
DJ
3881 {
3882 ptr += 6;
3883 while (*ptr && *ptr != ';')
3884 data_addr = (data_addr << 4) + fromhex (*ptr++);
3885 }
3886 else
3887 lose = 1;
3888
61012eef 3889 if (!lose && startswith (ptr, ";Bss="))
31d99776
DJ
3890 {
3891 ptr += 5;
3892 while (*ptr && *ptr != ';')
3893 bss_addr = (bss_addr << 4) + fromhex (*ptr++);
c906108c 3894
31d99776
DJ
3895 if (bss_addr != data_addr)
3896 warning (_("Target reported unsupported offsets: %s"), buf);
3897 }
3898 else
3899 lose = 1;
3900 }
61012eef 3901 else if (startswith (ptr, "TextSeg="))
c906108c 3902 {
31d99776
DJ
3903 ptr += 8;
3904 /* Don't use strtol, could lose on big values. */
c906108c 3905 while (*ptr && *ptr != ';')
31d99776
DJ
3906 text_addr = (text_addr << 4) + fromhex (*ptr++);
3907 num_segments = 1;
3908
61012eef 3909 if (startswith (ptr, ";DataSeg="))
31d99776
DJ
3910 {
3911 ptr += 9;
3912 while (*ptr && *ptr != ';')
3913 data_addr = (data_addr << 4) + fromhex (*ptr++);
3914 num_segments++;
3915 }
c906108c
SS
3916 }
3917 else
3918 lose = 1;
3919
3920 if (lose)
8a3fe4f8 3921 error (_("Malformed response to offset query, %s"), buf);
31d99776
DJ
3922 else if (*ptr != '\0')
3923 warning (_("Target reported unsupported offsets: %s"), buf);
c906108c 3924
802188a7 3925 offs = ((struct section_offsets *)
a39a16c4 3926 alloca (SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections)));
802188a7 3927 memcpy (offs, symfile_objfile->section_offsets,
a39a16c4 3928 SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections));
c906108c 3929
31d99776
DJ
3930 data = get_symfile_segment_data (symfile_objfile->obfd);
3931 do_segments = (data != NULL);
3932 do_sections = num_segments == 0;
c906108c 3933
28c32713 3934 if (num_segments > 0)
31d99776 3935 {
31d99776
DJ
3936 segments[0] = text_addr;
3937 segments[1] = data_addr;
3938 }
28c32713
JB
3939 /* If we have two segments, we can still try to relocate everything
3940 by assuming that the .text and .data offsets apply to the whole
3941 text and data segments. Convert the offsets given in the packet
3942 to base addresses for symfile_map_offsets_to_segments. */
3943 else if (data && data->num_segments == 2)
3944 {
3945 segments[0] = data->segment_bases[0] + text_addr;
3946 segments[1] = data->segment_bases[1] + data_addr;
3947 num_segments = 2;
3948 }
8d385431
DJ
3949 /* If the object file has only one segment, assume that it is text
3950 rather than data; main programs with no writable data are rare,
3951 but programs with no code are useless. Of course the code might
3952 have ended up in the data segment... to detect that we would need
3953 the permissions here. */
3954 else if (data && data->num_segments == 1)
3955 {
3956 segments[0] = data->segment_bases[0] + text_addr;
3957 num_segments = 1;
3958 }
28c32713
JB
3959 /* There's no way to relocate by segment. */
3960 else
3961 do_segments = 0;
31d99776
DJ
3962
3963 if (do_segments)
3964 {
3965 int ret = symfile_map_offsets_to_segments (symfile_objfile->obfd, data,
3966 offs, num_segments, segments);
3967
3968 if (ret == 0 && !do_sections)
3e43a32a
MS
3969 error (_("Can not handle qOffsets TextSeg "
3970 "response with this symbol file"));
31d99776
DJ
3971
3972 if (ret > 0)
3973 do_sections = 0;
3974 }
c906108c 3975
9ef895d6
DJ
3976 if (data)
3977 free_symfile_segment_data (data);
31d99776
DJ
3978
3979 if (do_sections)
3980 {
3981 offs->offsets[SECT_OFF_TEXT (symfile_objfile)] = text_addr;
3982
3e43a32a
MS
3983 /* This is a temporary kludge to force data and bss to use the
3984 same offsets because that's what nlmconv does now. The real
3985 solution requires changes to the stub and remote.c that I
3986 don't have time to do right now. */
31d99776
DJ
3987
3988 offs->offsets[SECT_OFF_DATA (symfile_objfile)] = data_addr;
3989 offs->offsets[SECT_OFF_BSS (symfile_objfile)] = data_addr;
3990 }
c906108c
SS
3991
3992 objfile_relocate (symfile_objfile, offs);
3993}
3994
9a7071a8
JB
3995/* Send interrupt_sequence to remote target. */
3996static void
eeae04df 3997send_interrupt_sequence (void)
9a7071a8 3998{
5d93a237
TT
3999 struct remote_state *rs = get_remote_state ();
4000
9a7071a8 4001 if (interrupt_sequence_mode == interrupt_sequence_control_c)
c33e31fd 4002 remote_serial_write ("\x03", 1);
9a7071a8 4003 else if (interrupt_sequence_mode == interrupt_sequence_break)
5d93a237 4004 serial_send_break (rs->remote_desc);
9a7071a8
JB
4005 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
4006 {
5d93a237 4007 serial_send_break (rs->remote_desc);
c33e31fd 4008 remote_serial_write ("g", 1);
9a7071a8
JB
4009 }
4010 else
4011 internal_error (__FILE__, __LINE__,
4012 _("Invalid value for interrupt_sequence_mode: %s."),
4013 interrupt_sequence_mode);
4014}
4015
3405876a
PA
4016
4017/* If STOP_REPLY is a T stop reply, look for the "thread" register,
4018 and extract the PTID. Returns NULL_PTID if not found. */
4019
4020static ptid_t
4021stop_reply_extract_thread (char *stop_reply)
4022{
4023 if (stop_reply[0] == 'T' && strlen (stop_reply) > 3)
4024 {
256642e8 4025 const char *p;
3405876a
PA
4026
4027 /* Txx r:val ; r:val (...) */
4028 p = &stop_reply[3];
4029
4030 /* Look for "register" named "thread". */
4031 while (*p != '\0')
4032 {
256642e8 4033 const char *p1;
3405876a
PA
4034
4035 p1 = strchr (p, ':');
4036 if (p1 == NULL)
4037 return null_ptid;
4038
4039 if (strncmp (p, "thread", p1 - p) == 0)
4040 return read_ptid (++p1, &p);
4041
4042 p1 = strchr (p, ';');
4043 if (p1 == NULL)
4044 return null_ptid;
4045 p1++;
4046
4047 p = p1;
4048 }
4049 }
4050
4051 return null_ptid;
4052}
4053
b7ea362b
PA
4054/* Determine the remote side's current thread. If we have a stop
4055 reply handy (in WAIT_STATUS), maybe it's a T stop reply with a
4056 "thread" register we can extract the current thread from. If not,
4057 ask the remote which is the current thread with qC. The former
4058 method avoids a roundtrip. */
4059
4060static ptid_t
4061get_current_thread (char *wait_status)
4062{
6a49a997 4063 ptid_t ptid = null_ptid;
b7ea362b
PA
4064
4065 /* Note we don't use remote_parse_stop_reply as that makes use of
4066 the target architecture, which we haven't yet fully determined at
4067 this point. */
4068 if (wait_status != NULL)
4069 ptid = stop_reply_extract_thread (wait_status);
4070 if (ptid_equal (ptid, null_ptid))
4071 ptid = remote_current_thread (inferior_ptid);
4072
4073 return ptid;
4074}
4075
49c62f2e
PA
4076/* Query the remote target for which is the current thread/process,
4077 add it to our tables, and update INFERIOR_PTID. The caller is
4078 responsible for setting the state such that the remote end is ready
3405876a
PA
4079 to return the current thread.
4080
4081 This function is called after handling the '?' or 'vRun' packets,
4082 whose response is a stop reply from which we can also try
4083 extracting the thread. If the target doesn't support the explicit
4084 qC query, we infer the current thread from that stop reply, passed
4085 in in WAIT_STATUS, which may be NULL. */
49c62f2e
PA
4086
4087static void
3405876a 4088add_current_inferior_and_thread (char *wait_status)
49c62f2e
PA
4089{
4090 struct remote_state *rs = get_remote_state ();
4091 int fake_pid_p = 0;
49c62f2e
PA
4092
4093 inferior_ptid = null_ptid;
4094
b7ea362b 4095 /* Now, if we have thread information, update inferior_ptid. */
87215ad1 4096 ptid_t curr_ptid = get_current_thread (wait_status);
3405876a 4097
87215ad1 4098 if (curr_ptid != null_ptid)
49c62f2e
PA
4099 {
4100 if (!remote_multi_process_p (rs))
4101 fake_pid_p = 1;
49c62f2e
PA
4102 }
4103 else
4104 {
4105 /* Without this, some commands which require an active target
4106 (such as kill) won't work. This variable serves (at least)
4107 double duty as both the pid of the target process (if it has
4108 such), and as a flag indicating that a target is active. */
87215ad1 4109 curr_ptid = magic_null_ptid;
49c62f2e
PA
4110 fake_pid_p = 1;
4111 }
4112
87215ad1 4113 remote_add_inferior (fake_pid_p, ptid_get_pid (curr_ptid), -1, 1);
49c62f2e 4114
87215ad1
SDJ
4115 /* Add the main thread and switch to it. Don't try reading
4116 registers yet, since we haven't fetched the target description
4117 yet. */
4118 thread_info *tp = add_thread_silent (curr_ptid);
4119 switch_to_thread_no_regs (tp);
49c62f2e
PA
4120}
4121
6efcd9a8
PA
4122/* Print info about a thread that was found already stopped on
4123 connection. */
4124
4125static void
4126print_one_stopped_thread (struct thread_info *thread)
4127{
4128 struct target_waitstatus *ws = &thread->suspend.waitstatus;
4129
4130 switch_to_thread (thread->ptid);
4131 stop_pc = get_frame_pc (get_current_frame ());
4132 set_current_sal_from_frame (get_current_frame ());
4133
4134 thread->suspend.waitstatus_pending_p = 0;
4135
4136 if (ws->kind == TARGET_WAITKIND_STOPPED)
4137 {
4138 enum gdb_signal sig = ws->value.sig;
4139
4140 if (signal_print_state (sig))
76727919 4141 gdb::observers::signal_received.notify (sig);
6efcd9a8 4142 }
76727919 4143 gdb::observers::normal_stop.notify (NULL, 1);
6efcd9a8
PA
4144}
4145
221e1a37
PA
4146/* Process all initial stop replies the remote side sent in response
4147 to the ? packet. These indicate threads that were already stopped
4148 on initial connection. We mark these threads as stopped and print
4149 their current frame before giving the user the prompt. */
4150
4151static void
6efcd9a8 4152process_initial_stop_replies (int from_tty)
221e1a37
PA
4153{
4154 int pending_stop_replies = stop_reply_queue_length ();
6efcd9a8
PA
4155 struct inferior *inf;
4156 struct thread_info *thread;
4157 struct thread_info *selected = NULL;
4158 struct thread_info *lowest_stopped = NULL;
4159 struct thread_info *first = NULL;
221e1a37
PA
4160
4161 /* Consume the initial pending events. */
4162 while (pending_stop_replies-- > 0)
4163 {
4164 ptid_t waiton_ptid = minus_one_ptid;
4165 ptid_t event_ptid;
4166 struct target_waitstatus ws;
4167 int ignore_event = 0;
6efcd9a8 4168 struct thread_info *thread;
221e1a37
PA
4169
4170 memset (&ws, 0, sizeof (ws));
4171 event_ptid = target_wait (waiton_ptid, &ws, TARGET_WNOHANG);
4172 if (remote_debug)
4173 print_target_wait_results (waiton_ptid, event_ptid, &ws);
4174
4175 switch (ws.kind)
4176 {
4177 case TARGET_WAITKIND_IGNORE:
4178 case TARGET_WAITKIND_NO_RESUMED:
4179 case TARGET_WAITKIND_SIGNALLED:
4180 case TARGET_WAITKIND_EXITED:
4181 /* We shouldn't see these, but if we do, just ignore. */
4182 if (remote_debug)
4183 fprintf_unfiltered (gdb_stdlog, "remote: event ignored\n");
4184 ignore_event = 1;
4185 break;
4186
4187 case TARGET_WAITKIND_EXECD:
4188 xfree (ws.value.execd_pathname);
4189 break;
4190 default:
4191 break;
4192 }
4193
4194 if (ignore_event)
4195 continue;
4196
6efcd9a8 4197 thread = find_thread_ptid (event_ptid);
221e1a37
PA
4198
4199 if (ws.kind == TARGET_WAITKIND_STOPPED)
4200 {
4201 enum gdb_signal sig = ws.value.sig;
4202
4203 /* Stubs traditionally report SIGTRAP as initial signal,
4204 instead of signal 0. Suppress it. */
4205 if (sig == GDB_SIGNAL_TRAP)
4206 sig = GDB_SIGNAL_0;
6efcd9a8
PA
4207 thread->suspend.stop_signal = sig;
4208 ws.value.sig = sig;
4209 }
221e1a37 4210
6efcd9a8
PA
4211 thread->suspend.waitstatus = ws;
4212
4213 if (ws.kind != TARGET_WAITKIND_STOPPED
4214 || ws.value.sig != GDB_SIGNAL_0)
4215 thread->suspend.waitstatus_pending_p = 1;
4216
4217 set_executing (event_ptid, 0);
4218 set_running (event_ptid, 0);
7aabaf9d 4219 get_remote_thread_info (thread)->vcont_resumed = 0;
6efcd9a8
PA
4220 }
4221
4222 /* "Notice" the new inferiors before anything related to
4223 registers/memory. */
4224 ALL_INFERIORS (inf)
4225 {
4226 if (inf->pid == 0)
4227 continue;
4228
4229 inf->needs_setup = 1;
4230
4231 if (non_stop)
4232 {
4233 thread = any_live_thread_of_process (inf->pid);
4234 notice_new_inferior (thread->ptid,
4235 thread->state == THREAD_RUNNING,
4236 from_tty);
4237 }
4238 }
4239
4240 /* If all-stop on top of non-stop, pause all threads. Note this
4241 records the threads' stop pc, so must be done after "noticing"
4242 the inferiors. */
4243 if (!non_stop)
4244 {
4245 stop_all_threads ();
4246
4247 /* If all threads of an inferior were already stopped, we
4248 haven't setup the inferior yet. */
4249 ALL_INFERIORS (inf)
4250 {
4251 if (inf->pid == 0)
4252 continue;
221e1a37 4253
6efcd9a8
PA
4254 if (inf->needs_setup)
4255 {
4256 thread = any_live_thread_of_process (inf->pid);
4257 switch_to_thread_no_regs (thread);
4258 setup_inferior (0);
4259 }
4260 }
221e1a37 4261 }
6efcd9a8
PA
4262
4263 /* Now go over all threads that are stopped, and print their current
4264 frame. If all-stop, then if there's a signalled thread, pick
4265 that as current. */
4266 ALL_NON_EXITED_THREADS (thread)
4267 {
6efcd9a8
PA
4268 if (first == NULL)
4269 first = thread;
4270
4271 if (!non_stop)
4272 set_running (thread->ptid, 0);
4273 else if (thread->state != THREAD_STOPPED)
4274 continue;
4275
6efcd9a8
PA
4276 if (selected == NULL
4277 && thread->suspend.waitstatus_pending_p)
4278 selected = thread;
4279
5d5658a1
PA
4280 if (lowest_stopped == NULL
4281 || thread->inf->num < lowest_stopped->inf->num
4282 || thread->per_inf_num < lowest_stopped->per_inf_num)
6efcd9a8
PA
4283 lowest_stopped = thread;
4284
4285 if (non_stop)
4286 print_one_stopped_thread (thread);
4287 }
4288
4289 /* In all-stop, we only print the status of one thread, and leave
4290 others with their status pending. */
4291 if (!non_stop)
4292 {
4293 thread = selected;
4294 if (thread == NULL)
4295 thread = lowest_stopped;
4296 if (thread == NULL)
4297 thread = first;
4298
4299 print_one_stopped_thread (thread);
4300 }
4301
4302 /* For "info program". */
4303 thread = inferior_thread ();
4304 if (thread->state == THREAD_STOPPED)
4305 set_last_target_status (inferior_ptid, thread->suspend.waitstatus);
221e1a37
PA
4306}
4307
048094ac
PA
4308/* Start the remote connection and sync state. */
4309
f6ac5f3d
PA
4310void
4311remote_target::start_remote (int from_tty, int extended_p)
c906108c 4312{
c8d104ad
PA
4313 struct remote_state *rs = get_remote_state ();
4314 struct packet_config *noack_config;
2d717e4f 4315 char *wait_status = NULL;
8621d6a9 4316
048094ac
PA
4317 /* Signal other parts that we're going through the initial setup,
4318 and so things may not be stable yet. E.g., we don't try to
4319 install tracepoints until we've relocated symbols. Also, a
4320 Ctrl-C before we're connected and synced up can't interrupt the
4321 target. Instead, it offers to drop the (potentially wedged)
4322 connection. */
4323 rs->starting_up = 1;
4324
522002f9 4325 QUIT;
c906108c 4326
9a7071a8
JB
4327 if (interrupt_on_connect)
4328 send_interrupt_sequence ();
4329
57e12211 4330 /* Ack any packet which the remote side has already sent. */
048094ac 4331 remote_serial_write ("+", 1);
1e51243a 4332
c8d104ad
PA
4333 /* The first packet we send to the target is the optional "supported
4334 packets" request. If the target can answer this, it will tell us
4335 which later probes to skip. */
4336 remote_query_supported ();
4337
d914c394 4338 /* If the stub wants to get a QAllow, compose one and send it. */
4082afcc 4339 if (packet_support (PACKET_QAllow) != PACKET_DISABLE)
f6ac5f3d 4340 set_permissions ();
d914c394 4341
57809e5e
JK
4342 /* gdbserver < 7.7 (before its fix from 2013-12-11) did reply to any
4343 unknown 'v' packet with string "OK". "OK" gets interpreted by GDB
4344 as a reply to known packet. For packet "vFile:setfs:" it is an
4345 invalid reply and GDB would return error in
4346 remote_hostio_set_filesystem, making remote files access impossible.
4347 Disable "vFile:setfs:" in such case. Do not disable other 'v' packets as
4348 other "vFile" packets get correctly detected even on gdbserver < 7.7. */
4349 {
4350 const char v_mustreplyempty[] = "vMustReplyEmpty";
4351
4352 putpkt (v_mustreplyempty);
4353 getpkt (&rs->buf, &rs->buf_size, 0);
4354 if (strcmp (rs->buf, "OK") == 0)
4355 remote_protocol_packets[PACKET_vFile_setfs].support = PACKET_DISABLE;
4356 else if (strcmp (rs->buf, "") != 0)
4357 error (_("Remote replied unexpectedly to '%s': %s"), v_mustreplyempty,
4358 rs->buf);
4359 }
4360
c8d104ad
PA
4361 /* Next, we possibly activate noack mode.
4362
4363 If the QStartNoAckMode packet configuration is set to AUTO,
4364 enable noack mode if the stub reported a wish for it with
4365 qSupported.
4366
4367 If set to TRUE, then enable noack mode even if the stub didn't
4368 report it in qSupported. If the stub doesn't reply OK, the
4369 session ends with an error.
4370
4371 If FALSE, then don't activate noack mode, regardless of what the
4372 stub claimed should be the default with qSupported. */
4373
4374 noack_config = &remote_protocol_packets[PACKET_QStartNoAckMode];
4082afcc 4375 if (packet_config_support (noack_config) != PACKET_DISABLE)
c8d104ad
PA
4376 {
4377 putpkt ("QStartNoAckMode");
4378 getpkt (&rs->buf, &rs->buf_size, 0);
4379 if (packet_ok (rs->buf, noack_config) == PACKET_OK)
4380 rs->noack_mode = 1;
4381 }
4382
04bd08de 4383 if (extended_p)
5fe04517
PA
4384 {
4385 /* Tell the remote that we are using the extended protocol. */
4386 putpkt ("!");
4387 getpkt (&rs->buf, &rs->buf_size, 0);
4388 }
4389
9b224c5e
PA
4390 /* Let the target know which signals it is allowed to pass down to
4391 the program. */
4392 update_signals_program_target ();
4393
d962ef82
DJ
4394 /* Next, if the target can specify a description, read it. We do
4395 this before anything involving memory or registers. */
4396 target_find_description ();
4397
6c95b8df
PA
4398 /* Next, now that we know something about the target, update the
4399 address spaces in the program spaces. */
4400 update_address_spaces ();
4401
50c71eaf
PA
4402 /* On OSs where the list of libraries is global to all
4403 processes, we fetch them early. */
f5656ead 4404 if (gdbarch_has_global_solist (target_gdbarch ()))
e696b3ad 4405 solib_add (NULL, from_tty, auto_solib_add);
50c71eaf 4406
6efcd9a8 4407 if (target_is_non_stop_p ())
74531fed 4408 {
4082afcc 4409 if (packet_support (PACKET_QNonStop) != PACKET_ENABLE)
3e43a32a
MS
4410 error (_("Non-stop mode requested, but remote "
4411 "does not support non-stop"));
74531fed
PA
4412
4413 putpkt ("QNonStop:1");
4414 getpkt (&rs->buf, &rs->buf_size, 0);
4415
4416 if (strcmp (rs->buf, "OK") != 0)
9b20d036 4417 error (_("Remote refused setting non-stop mode with: %s"), rs->buf);
74531fed
PA
4418
4419 /* Find about threads and processes the stub is already
4420 controlling. We default to adding them in the running state.
4421 The '?' query below will then tell us about which threads are
4422 stopped. */
f6ac5f3d 4423 this->update_thread_list ();
74531fed 4424 }
4082afcc 4425 else if (packet_support (PACKET_QNonStop) == PACKET_ENABLE)
74531fed
PA
4426 {
4427 /* Don't assume that the stub can operate in all-stop mode.
e6f3fa52 4428 Request it explicitly. */
74531fed
PA
4429 putpkt ("QNonStop:0");
4430 getpkt (&rs->buf, &rs->buf_size, 0);
4431
4432 if (strcmp (rs->buf, "OK") != 0)
9b20d036 4433 error (_("Remote refused setting all-stop mode with: %s"), rs->buf);
74531fed
PA
4434 }
4435
a0743c90
YQ
4436 /* Upload TSVs regardless of whether the target is running or not. The
4437 remote stub, such as GDBserver, may have some predefined or builtin
4438 TSVs, even if the target is not running. */
f6ac5f3d 4439 if (get_trace_status (current_trace_status ()) != -1)
a0743c90
YQ
4440 {
4441 struct uploaded_tsv *uploaded_tsvs = NULL;
4442
f6ac5f3d 4443 upload_trace_state_variables (&uploaded_tsvs);
a0743c90
YQ
4444 merge_uploaded_trace_state_variables (&uploaded_tsvs);
4445 }
4446
2d717e4f
DJ
4447 /* Check whether the target is running now. */
4448 putpkt ("?");
4449 getpkt (&rs->buf, &rs->buf_size, 0);
4450
6efcd9a8 4451 if (!target_is_non_stop_p ())
2d717e4f 4452 {
74531fed 4453 if (rs->buf[0] == 'W' || rs->buf[0] == 'X')
2d717e4f 4454 {
04bd08de 4455 if (!extended_p)
74531fed 4456 error (_("The target is not running (try extended-remote?)"));
c35b1492
PA
4457
4458 /* We're connected, but not running. Drop out before we
4459 call start_remote. */
e278ad5b 4460 rs->starting_up = 0;
c35b1492 4461 return;
2d717e4f
DJ
4462 }
4463 else
74531fed 4464 {
74531fed 4465 /* Save the reply for later. */
224c3ddb 4466 wait_status = (char *) alloca (strlen (rs->buf) + 1);
74531fed
PA
4467 strcpy (wait_status, rs->buf);
4468 }
4469
b7ea362b 4470 /* Fetch thread list. */
e8032dde 4471 target_update_thread_list ();
b7ea362b 4472
74531fed
PA
4473 /* Let the stub know that we want it to return the thread. */
4474 set_continue_thread (minus_one_ptid);
4475
b7ea362b
PA
4476 if (thread_count () == 0)
4477 {
4478 /* Target has no concept of threads at all. GDB treats
4479 non-threaded target as single-threaded; add a main
4480 thread. */
4481 add_current_inferior_and_thread (wait_status);
4482 }
4483 else
4484 {
4485 /* We have thread information; select the thread the target
4486 says should be current. If we're reconnecting to a
4487 multi-threaded program, this will ideally be the thread
4488 that last reported an event before GDB disconnected. */
4489 inferior_ptid = get_current_thread (wait_status);
4490 if (ptid_equal (inferior_ptid, null_ptid))
4491 {
4492 /* Odd... The target was able to list threads, but not
4493 tell us which thread was current (no "thread"
4494 register in T stop reply?). Just pick the first
4495 thread in the thread list then. */
c9f35b34
KB
4496
4497 if (remote_debug)
4498 fprintf_unfiltered (gdb_stdlog,
4499 "warning: couldn't determine remote "
4500 "current thread; picking first in list.\n");
4501
b7ea362b
PA
4502 inferior_ptid = thread_list->ptid;
4503 }
4504 }
74531fed 4505
6e586cc5
YQ
4506 /* init_wait_for_inferior should be called before get_offsets in order
4507 to manage `inserted' flag in bp loc in a correct state.
4508 breakpoint_init_inferior, called from init_wait_for_inferior, set
4509 `inserted' flag to 0, while before breakpoint_re_set, called from
4510 start_remote, set `inserted' flag to 1. In the initialization of
4511 inferior, breakpoint_init_inferior should be called first, and then
4512 breakpoint_re_set can be called. If this order is broken, state of
4513 `inserted' flag is wrong, and cause some problems on breakpoint
4514 manipulation. */
4515 init_wait_for_inferior ();
4516
74531fed
PA
4517 get_offsets (); /* Get text, data & bss offsets. */
4518
d962ef82
DJ
4519 /* If we could not find a description using qXfer, and we know
4520 how to do it some other way, try again. This is not
4521 supported for non-stop; it could be, but it is tricky if
4522 there are no stopped threads when we connect. */
f6ac5f3d 4523 if (remote_read_description_p (this)
f5656ead 4524 && gdbarch_target_desc (target_gdbarch ()) == NULL)
d962ef82
DJ
4525 {
4526 target_clear_description ();
4527 target_find_description ();
4528 }
4529
74531fed
PA
4530 /* Use the previously fetched status. */
4531 gdb_assert (wait_status != NULL);
4532 strcpy (rs->buf, wait_status);
4533 rs->cached_wait_status = 1;
4534
f6ac5f3d 4535 ::start_remote (from_tty); /* Initialize gdb process mechanisms. */
2d717e4f
DJ
4536 }
4537 else
4538 {
68c97600
PA
4539 /* Clear WFI global state. Do this before finding about new
4540 threads and inferiors, and setting the current inferior.
4541 Otherwise we would clear the proceed status of the current
4542 inferior when we want its stop_soon state to be preserved
4543 (see notice_new_inferior). */
4544 init_wait_for_inferior ();
4545
74531fed
PA
4546 /* In non-stop, we will either get an "OK", meaning that there
4547 are no stopped threads at this time; or, a regular stop
4548 reply. In the latter case, there may be more than one thread
4549 stopped --- we pull them all out using the vStopped
4550 mechanism. */
4551 if (strcmp (rs->buf, "OK") != 0)
4552 {
722247f1 4553 struct notif_client *notif = &notif_client_stop;
2d717e4f 4554
722247f1
YQ
4555 /* remote_notif_get_pending_replies acks this one, and gets
4556 the rest out. */
f48ff2a7 4557 rs->notif_state->pending_event[notif_client_stop.id]
722247f1
YQ
4558 = remote_notif_parse (notif, rs->buf);
4559 remote_notif_get_pending_events (notif);
74531fed 4560 }
2d717e4f 4561
74531fed
PA
4562 if (thread_count () == 0)
4563 {
04bd08de 4564 if (!extended_p)
74531fed 4565 error (_("The target is not running (try extended-remote?)"));
82f73884 4566
c35b1492
PA
4567 /* We're connected, but not running. Drop out before we
4568 call start_remote. */
e278ad5b 4569 rs->starting_up = 0;
c35b1492
PA
4570 return;
4571 }
74531fed 4572
74531fed
PA
4573 /* In non-stop mode, any cached wait status will be stored in
4574 the stop reply queue. */
4575 gdb_assert (wait_status == NULL);
f0223081 4576
2455069d 4577 /* Report all signals during attach/startup. */
f6ac5f3d 4578 pass_signals (0, NULL);
221e1a37
PA
4579
4580 /* If there are already stopped threads, mark them stopped and
4581 report their stops before giving the prompt to the user. */
6efcd9a8 4582 process_initial_stop_replies (from_tty);
221e1a37
PA
4583
4584 if (target_can_async_p ())
4585 target_async (1);
74531fed 4586 }
c8d104ad 4587
c8d104ad
PA
4588 /* If we connected to a live target, do some additional setup. */
4589 if (target_has_execution)
4590 {
f4ccffad 4591 if (symfile_objfile) /* No use without a symbol-file. */
36d25514 4592 remote_check_symbols ();
c8d104ad 4593 }
50c71eaf 4594
d5551862
SS
4595 /* Possibly the target has been engaged in a trace run started
4596 previously; find out where things are at. */
f6ac5f3d 4597 if (get_trace_status (current_trace_status ()) != -1)
d5551862 4598 {
00bf0b85 4599 struct uploaded_tp *uploaded_tps = NULL;
00bf0b85 4600
00bf0b85
SS
4601 if (current_trace_status ()->running)
4602 printf_filtered (_("Trace is already running on the target.\n"));
4603
f6ac5f3d 4604 upload_tracepoints (&uploaded_tps);
00bf0b85
SS
4605
4606 merge_uploaded_tracepoints (&uploaded_tps);
d5551862
SS
4607 }
4608
c0272db5
TW
4609 /* Possibly the target has been engaged in a btrace record started
4610 previously; find out where things are at. */
4611 remote_btrace_maybe_reopen ();
4612
1e51243a
PA
4613 /* The thread and inferior lists are now synchronized with the
4614 target, our symbols have been relocated, and we're merged the
4615 target's tracepoints with ours. We're done with basic start
4616 up. */
4617 rs->starting_up = 0;
4618
a25a5a45
PA
4619 /* Maybe breakpoints are global and need to be inserted now. */
4620 if (breakpoints_should_be_inserted_now ())
50c71eaf 4621 insert_breakpoints ();
c906108c
SS
4622}
4623
4624/* Open a connection to a remote debugger.
4625 NAME is the filename used for communication. */
4626
f6ac5f3d
PA
4627void
4628remote_target::open (const char *name, int from_tty)
c906108c 4629{
f6ac5f3d 4630 open_1 (name, from_tty, 0);
43ff13b4
JM
4631}
4632
c906108c
SS
4633/* Open a connection to a remote debugger using the extended
4634 remote gdb protocol. NAME is the filename used for communication. */
4635
f6ac5f3d
PA
4636void
4637extended_remote_target::open (const char *name, int from_tty)
c906108c 4638{
f6ac5f3d 4639 open_1 (name, from_tty, 1 /*extended_p */);
43ff13b4
JM
4640}
4641
ca4f7f8b
PA
4642/* Reset all packets back to "unknown support". Called when opening a
4643 new connection to a remote target. */
c906108c 4644
d471ea57 4645static void
ca4f7f8b 4646reset_all_packet_configs_support (void)
d471ea57
AC
4647{
4648 int i;
a744cf53 4649
444abaca 4650 for (i = 0; i < PACKET_MAX; i++)
4082afcc 4651 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
d471ea57
AC
4652}
4653
ca4f7f8b
PA
4654/* Initialize all packet configs. */
4655
4656static void
4657init_all_packet_configs (void)
4658{
4659 int i;
4660
4661 for (i = 0; i < PACKET_MAX; i++)
4662 {
4663 remote_protocol_packets[i].detect = AUTO_BOOLEAN_AUTO;
4664 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
4665 }
4666}
4667
23860348 4668/* Symbol look-up. */
dc8acb97
MS
4669
4670static void
36d25514 4671remote_check_symbols (void)
dc8acb97
MS
4672{
4673 char *msg, *reply, *tmp;
dc8acb97 4674 int end;
28170b88 4675 long reply_size;
a5c0808e 4676 struct cleanup *old_chain;
dc8acb97 4677
63154eca
PA
4678 /* The remote side has no concept of inferiors that aren't running
4679 yet, it only knows about running processes. If we're connected
4680 but our current inferior is not running, we should not invite the
4681 remote target to request symbol lookups related to its
4682 (unrelated) current process. */
4683 if (!target_has_execution)
4684 return;
4685
4082afcc 4686 if (packet_support (PACKET_qSymbol) == PACKET_DISABLE)
dc8acb97
MS
4687 return;
4688
63154eca
PA
4689 /* Make sure the remote is pointing at the right process. Note
4690 there's no way to select "no process". */
3c9c4b83
PA
4691 set_general_process ();
4692
6d820c5c
DJ
4693 /* Allocate a message buffer. We can't reuse the input buffer in RS,
4694 because we need both at the same time. */
224c3ddb 4695 msg = (char *) xmalloc (get_remote_packet_size ());
a5c0808e 4696 old_chain = make_cleanup (xfree, msg);
28170b88
MK
4697 reply = (char *) xmalloc (get_remote_packet_size ());
4698 make_cleanup (free_current_contents, &reply);
4699 reply_size = get_remote_packet_size ();
6d820c5c 4700
23860348 4701 /* Invite target to request symbol lookups. */
dc8acb97
MS
4702
4703 putpkt ("qSymbol::");
28170b88
MK
4704 getpkt (&reply, &reply_size, 0);
4705 packet_ok (reply, &remote_protocol_packets[PACKET_qSymbol]);
dc8acb97 4706
61012eef 4707 while (startswith (reply, "qSymbol:"))
dc8acb97 4708 {
77e371c0
TT
4709 struct bound_minimal_symbol sym;
4710
dc8acb97 4711 tmp = &reply[8];
cfd77fa1 4712 end = hex2bin (tmp, (gdb_byte *) msg, strlen (tmp) / 2);
dc8acb97
MS
4713 msg[end] = '\0';
4714 sym = lookup_minimal_symbol (msg, NULL, NULL);
3b7344d5 4715 if (sym.minsym == NULL)
ea9c271d 4716 xsnprintf (msg, get_remote_packet_size (), "qSymbol::%s", &reply[8]);
dc8acb97 4717 else
2bbe3cc1 4718 {
f5656ead 4719 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
77e371c0 4720 CORE_ADDR sym_addr = BMSYMBOL_VALUE_ADDRESS (sym);
2bbe3cc1
DJ
4721
4722 /* If this is a function address, return the start of code
4723 instead of any data function descriptor. */
f5656ead 4724 sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
2bbe3cc1 4725 sym_addr,
f6ac5f3d 4726 target_stack);
2bbe3cc1
DJ
4727
4728 xsnprintf (msg, get_remote_packet_size (), "qSymbol:%s:%s",
5af949e3 4729 phex_nz (sym_addr, addr_size), &reply[8]);
2bbe3cc1
DJ
4730 }
4731
dc8acb97 4732 putpkt (msg);
28170b88 4733 getpkt (&reply, &reply_size, 0);
dc8acb97 4734 }
a5c0808e
PA
4735
4736 do_cleanups (old_chain);
dc8acb97
MS
4737}
4738
9db8d71f 4739static struct serial *
baa336ce 4740remote_serial_open (const char *name)
9db8d71f
DJ
4741{
4742 static int udp_warning = 0;
4743
4744 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
4745 of in ser-tcp.c, because it is the remote protocol assuming that the
4746 serial connection is reliable and not the serial connection promising
4747 to be. */
61012eef 4748 if (!udp_warning && startswith (name, "udp:"))
9db8d71f 4749 {
3e43a32a
MS
4750 warning (_("The remote protocol may be unreliable over UDP.\n"
4751 "Some events may be lost, rendering further debugging "
4752 "impossible."));
9db8d71f
DJ
4753 udp_warning = 1;
4754 }
4755
4756 return serial_open (name);
4757}
4758
d914c394
SS
4759/* Inform the target of our permission settings. The permission flags
4760 work without this, but if the target knows the settings, it can do
4761 a couple things. First, it can add its own check, to catch cases
4762 that somehow manage to get by the permissions checks in target
4763 methods. Second, if the target is wired to disallow particular
4764 settings (for instance, a system in the field that is not set up to
4765 be able to stop at a breakpoint), it can object to any unavailable
4766 permissions. */
4767
4768void
f6ac5f3d 4769remote_target::set_permissions ()
d914c394
SS
4770{
4771 struct remote_state *rs = get_remote_state ();
4772
bba74b36
YQ
4773 xsnprintf (rs->buf, get_remote_packet_size (), "QAllow:"
4774 "WriteReg:%x;WriteMem:%x;"
4775 "InsertBreak:%x;InsertTrace:%x;"
4776 "InsertFastTrace:%x;Stop:%x",
4777 may_write_registers, may_write_memory,
4778 may_insert_breakpoints, may_insert_tracepoints,
4779 may_insert_fast_tracepoints, may_stop);
d914c394
SS
4780 putpkt (rs->buf);
4781 getpkt (&rs->buf, &rs->buf_size, 0);
4782
4783 /* If the target didn't like the packet, warn the user. Do not try
4784 to undo the user's settings, that would just be maddening. */
4785 if (strcmp (rs->buf, "OK") != 0)
7ea6d463 4786 warning (_("Remote refused setting permissions with: %s"), rs->buf);
d914c394
SS
4787}
4788
be2a5f71
DJ
4789/* This type describes each known response to the qSupported
4790 packet. */
4791struct protocol_feature
4792{
4793 /* The name of this protocol feature. */
4794 const char *name;
4795
4796 /* The default for this protocol feature. */
4797 enum packet_support default_support;
4798
4799 /* The function to call when this feature is reported, or after
4800 qSupported processing if the feature is not supported.
4801 The first argument points to this structure. The second
4802 argument indicates whether the packet requested support be
4803 enabled, disabled, or probed (or the default, if this function
4804 is being called at the end of processing and this feature was
4805 not reported). The third argument may be NULL; if not NULL, it
4806 is a NUL-terminated string taken from the packet following
4807 this feature's name and an equals sign. */
4808 void (*func) (const struct protocol_feature *, enum packet_support,
4809 const char *);
4810
4811 /* The corresponding packet for this feature. Only used if
4812 FUNC is remote_supported_packet. */
4813 int packet;
4814};
4815
be2a5f71
DJ
4816static void
4817remote_supported_packet (const struct protocol_feature *feature,
4818 enum packet_support support,
4819 const char *argument)
4820{
4821 if (argument)
4822 {
4823 warning (_("Remote qSupported response supplied an unexpected value for"
4824 " \"%s\"."), feature->name);
4825 return;
4826 }
4827
4082afcc 4828 remote_protocol_packets[feature->packet].support = support;
be2a5f71 4829}
be2a5f71
DJ
4830
4831static void
4832remote_packet_size (const struct protocol_feature *feature,
4833 enum packet_support support, const char *value)
4834{
4835 struct remote_state *rs = get_remote_state ();
4836
4837 int packet_size;
4838 char *value_end;
4839
4840 if (support != PACKET_ENABLE)
4841 return;
4842
4843 if (value == NULL || *value == '\0')
4844 {
4845 warning (_("Remote target reported \"%s\" without a size."),
4846 feature->name);
4847 return;
4848 }
4849
4850 errno = 0;
4851 packet_size = strtol (value, &value_end, 16);
4852 if (errno != 0 || *value_end != '\0' || packet_size < 0)
4853 {
4854 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
4855 feature->name, value);
4856 return;
4857 }
4858
be2a5f71
DJ
4859 /* Record the new maximum packet size. */
4860 rs->explicit_packet_size = packet_size;
4861}
4862
dc473cfb 4863static const struct protocol_feature remote_protocol_features[] = {
0876f84a 4864 { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 },
40e57cf2 4865 { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet,
fd79ecee 4866 PACKET_qXfer_auxv },
c78fa86a
GB
4867 { "qXfer:exec-file:read", PACKET_DISABLE, remote_supported_packet,
4868 PACKET_qXfer_exec_file },
23181151
DJ
4869 { "qXfer:features:read", PACKET_DISABLE, remote_supported_packet,
4870 PACKET_qXfer_features },
cfa9d6d9
DJ
4871 { "qXfer:libraries:read", PACKET_DISABLE, remote_supported_packet,
4872 PACKET_qXfer_libraries },
2268b414
JK
4873 { "qXfer:libraries-svr4:read", PACKET_DISABLE, remote_supported_packet,
4874 PACKET_qXfer_libraries_svr4 },
ced63ec0 4875 { "augmented-libraries-svr4-read", PACKET_DISABLE,
4082afcc 4876 remote_supported_packet, PACKET_augmented_libraries_svr4_read_feature },
fd79ecee 4877 { "qXfer:memory-map:read", PACKET_DISABLE, remote_supported_packet,
89be2091 4878 PACKET_qXfer_memory_map },
4de6483e
UW
4879 { "qXfer:spu:read", PACKET_DISABLE, remote_supported_packet,
4880 PACKET_qXfer_spu_read },
4881 { "qXfer:spu:write", PACKET_DISABLE, remote_supported_packet,
4882 PACKET_qXfer_spu_write },
07e059b5
VP
4883 { "qXfer:osdata:read", PACKET_DISABLE, remote_supported_packet,
4884 PACKET_qXfer_osdata },
dc146f7c
VP
4885 { "qXfer:threads:read", PACKET_DISABLE, remote_supported_packet,
4886 PACKET_qXfer_threads },
b3b9301e
PA
4887 { "qXfer:traceframe-info:read", PACKET_DISABLE, remote_supported_packet,
4888 PACKET_qXfer_traceframe_info },
89be2091
DJ
4889 { "QPassSignals", PACKET_DISABLE, remote_supported_packet,
4890 PACKET_QPassSignals },
82075af2
JS
4891 { "QCatchSyscalls", PACKET_DISABLE, remote_supported_packet,
4892 PACKET_QCatchSyscalls },
9b224c5e
PA
4893 { "QProgramSignals", PACKET_DISABLE, remote_supported_packet,
4894 PACKET_QProgramSignals },
bc3b087d
SDJ
4895 { "QSetWorkingDir", PACKET_DISABLE, remote_supported_packet,
4896 PACKET_QSetWorkingDir },
aefd8b33
SDJ
4897 { "QStartupWithShell", PACKET_DISABLE, remote_supported_packet,
4898 PACKET_QStartupWithShell },
0a2dde4a
SDJ
4899 { "QEnvironmentHexEncoded", PACKET_DISABLE, remote_supported_packet,
4900 PACKET_QEnvironmentHexEncoded },
4901 { "QEnvironmentReset", PACKET_DISABLE, remote_supported_packet,
4902 PACKET_QEnvironmentReset },
4903 { "QEnvironmentUnset", PACKET_DISABLE, remote_supported_packet,
4904 PACKET_QEnvironmentUnset },
a6f3e723
SL
4905 { "QStartNoAckMode", PACKET_DISABLE, remote_supported_packet,
4906 PACKET_QStartNoAckMode },
4082afcc
PA
4907 { "multiprocess", PACKET_DISABLE, remote_supported_packet,
4908 PACKET_multiprocess_feature },
4909 { "QNonStop", PACKET_DISABLE, remote_supported_packet, PACKET_QNonStop },
4aa995e1
PA
4910 { "qXfer:siginfo:read", PACKET_DISABLE, remote_supported_packet,
4911 PACKET_qXfer_siginfo_read },
4912 { "qXfer:siginfo:write", PACKET_DISABLE, remote_supported_packet,
4913 PACKET_qXfer_siginfo_write },
4082afcc 4914 { "ConditionalTracepoints", PACKET_DISABLE, remote_supported_packet,
782b2b07 4915 PACKET_ConditionalTracepoints },
4082afcc 4916 { "ConditionalBreakpoints", PACKET_DISABLE, remote_supported_packet,
3788aec7 4917 PACKET_ConditionalBreakpoints },
4082afcc 4918 { "BreakpointCommands", PACKET_DISABLE, remote_supported_packet,
d3ce09f5 4919 PACKET_BreakpointCommands },
4082afcc 4920 { "FastTracepoints", PACKET_DISABLE, remote_supported_packet,
7a697b8d 4921 PACKET_FastTracepoints },
4082afcc 4922 { "StaticTracepoints", PACKET_DISABLE, remote_supported_packet,
0fb4aa4b 4923 PACKET_StaticTracepoints },
4082afcc 4924 {"InstallInTrace", PACKET_DISABLE, remote_supported_packet,
1e4d1764 4925 PACKET_InstallInTrace},
4082afcc
PA
4926 { "DisconnectedTracing", PACKET_DISABLE, remote_supported_packet,
4927 PACKET_DisconnectedTracing_feature },
40ab02ce
MS
4928 { "ReverseContinue", PACKET_DISABLE, remote_supported_packet,
4929 PACKET_bc },
4930 { "ReverseStep", PACKET_DISABLE, remote_supported_packet,
4931 PACKET_bs },
409873ef
SS
4932 { "TracepointSource", PACKET_DISABLE, remote_supported_packet,
4933 PACKET_TracepointSource },
d914c394
SS
4934 { "QAllow", PACKET_DISABLE, remote_supported_packet,
4935 PACKET_QAllow },
4082afcc
PA
4936 { "EnableDisableTracepoints", PACKET_DISABLE, remote_supported_packet,
4937 PACKET_EnableDisableTracepoints_feature },
78d85199
YQ
4938 { "qXfer:fdpic:read", PACKET_DISABLE, remote_supported_packet,
4939 PACKET_qXfer_fdpic },
169081d0
TG
4940 { "qXfer:uib:read", PACKET_DISABLE, remote_supported_packet,
4941 PACKET_qXfer_uib },
03583c20
UW
4942 { "QDisableRandomization", PACKET_DISABLE, remote_supported_packet,
4943 PACKET_QDisableRandomization },
d1feda86 4944 { "QAgent", PACKET_DISABLE, remote_supported_packet, PACKET_QAgent},
f6f899bf
HAQ
4945 { "QTBuffer:size", PACKET_DISABLE,
4946 remote_supported_packet, PACKET_QTBuffer_size},
4082afcc 4947 { "tracenz", PACKET_DISABLE, remote_supported_packet, PACKET_tracenz_feature },
9accd112
MM
4948 { "Qbtrace:off", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_off },
4949 { "Qbtrace:bts", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_bts },
b20a6524 4950 { "Qbtrace:pt", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_pt },
9accd112 4951 { "qXfer:btrace:read", PACKET_DISABLE, remote_supported_packet,
f4abbc16
MM
4952 PACKET_qXfer_btrace },
4953 { "qXfer:btrace-conf:read", PACKET_DISABLE, remote_supported_packet,
d33501a5
MM
4954 PACKET_qXfer_btrace_conf },
4955 { "Qbtrace-conf:bts:size", PACKET_DISABLE, remote_supported_packet,
f7e6eed5
PA
4956 PACKET_Qbtrace_conf_bts_size },
4957 { "swbreak", PACKET_DISABLE, remote_supported_packet, PACKET_swbreak_feature },
0a93529c 4958 { "hwbreak", PACKET_DISABLE, remote_supported_packet, PACKET_hwbreak_feature },
89245bc0
DB
4959 { "fork-events", PACKET_DISABLE, remote_supported_packet,
4960 PACKET_fork_event_feature },
4961 { "vfork-events", PACKET_DISABLE, remote_supported_packet,
4962 PACKET_vfork_event_feature },
94585166
DB
4963 { "exec-events", PACKET_DISABLE, remote_supported_packet,
4964 PACKET_exec_event_feature },
b20a6524 4965 { "Qbtrace-conf:pt:size", PACKET_DISABLE, remote_supported_packet,
750ce8d1 4966 PACKET_Qbtrace_conf_pt_size },
65706a29
PA
4967 { "vContSupported", PACKET_DISABLE, remote_supported_packet, PACKET_vContSupported },
4968 { "QThreadEvents", PACKET_DISABLE, remote_supported_packet, PACKET_QThreadEvents },
f2faf941 4969 { "no-resumed", PACKET_DISABLE, remote_supported_packet, PACKET_no_resumed },
be2a5f71
DJ
4970};
4971
c8d5aac9
L
4972static char *remote_support_xml;
4973
4974/* Register string appended to "xmlRegisters=" in qSupported query. */
4975
4976void
6e39997a 4977register_remote_support_xml (const char *xml)
c8d5aac9
L
4978{
4979#if defined(HAVE_LIBEXPAT)
4980 if (remote_support_xml == NULL)
c4f7c687 4981 remote_support_xml = concat ("xmlRegisters=", xml, (char *) NULL);
c8d5aac9
L
4982 else
4983 {
4984 char *copy = xstrdup (remote_support_xml + 13);
4985 char *p = strtok (copy, ",");
4986
4987 do
4988 {
4989 if (strcmp (p, xml) == 0)
4990 {
4991 /* already there */
4992 xfree (copy);
4993 return;
4994 }
4995 }
4996 while ((p = strtok (NULL, ",")) != NULL);
4997 xfree (copy);
4998
94b0dee1
PA
4999 remote_support_xml = reconcat (remote_support_xml,
5000 remote_support_xml, ",", xml,
5001 (char *) NULL);
c8d5aac9
L
5002 }
5003#endif
5004}
5005
69b6ecb0
TT
5006static void
5007remote_query_supported_append (std::string *msg, const char *append)
c8d5aac9 5008{
69b6ecb0
TT
5009 if (!msg->empty ())
5010 msg->append (";");
5011 msg->append (append);
c8d5aac9
L
5012}
5013
be2a5f71
DJ
5014static void
5015remote_query_supported (void)
5016{
5017 struct remote_state *rs = get_remote_state ();
5018 char *next;
5019 int i;
5020 unsigned char seen [ARRAY_SIZE (remote_protocol_features)];
5021
5022 /* The packet support flags are handled differently for this packet
5023 than for most others. We treat an error, a disabled packet, and
5024 an empty response identically: any features which must be reported
5025 to be used will be automatically disabled. An empty buffer
5026 accomplishes this, since that is also the representation for a list
5027 containing no features. */
5028
5029 rs->buf[0] = 0;
4082afcc 5030 if (packet_support (PACKET_qSupported) != PACKET_DISABLE)
be2a5f71 5031 {
69b6ecb0 5032 std::string q;
c8d5aac9 5033
73b8c1fd 5034 if (packet_set_cmd_state (PACKET_multiprocess_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5035 remote_query_supported_append (&q, "multiprocess+");
c8d5aac9 5036
f7e6eed5 5037 if (packet_set_cmd_state (PACKET_swbreak_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5038 remote_query_supported_append (&q, "swbreak+");
f7e6eed5 5039 if (packet_set_cmd_state (PACKET_hwbreak_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5040 remote_query_supported_append (&q, "hwbreak+");
f7e6eed5 5041
69b6ecb0 5042 remote_query_supported_append (&q, "qRelocInsn+");
dde08ee1 5043
8020350c
DB
5044 if (packet_set_cmd_state (PACKET_fork_event_feature)
5045 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5046 remote_query_supported_append (&q, "fork-events+");
8020350c
DB
5047 if (packet_set_cmd_state (PACKET_vfork_event_feature)
5048 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5049 remote_query_supported_append (&q, "vfork-events+");
8020350c
DB
5050 if (packet_set_cmd_state (PACKET_exec_event_feature)
5051 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5052 remote_query_supported_append (&q, "exec-events+");
89245bc0 5053
750ce8d1 5054 if (packet_set_cmd_state (PACKET_vContSupported) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5055 remote_query_supported_append (&q, "vContSupported+");
750ce8d1 5056
65706a29 5057 if (packet_set_cmd_state (PACKET_QThreadEvents) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5058 remote_query_supported_append (&q, "QThreadEvents+");
65706a29 5059
f2faf941 5060 if (packet_set_cmd_state (PACKET_no_resumed) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5061 remote_query_supported_append (&q, "no-resumed+");
f2faf941 5062
b35d5edb
PA
5063 /* Keep this one last to work around a gdbserver <= 7.10 bug in
5064 the qSupported:xmlRegisters=i386 handling. */
7cc244de
PA
5065 if (remote_support_xml != NULL
5066 && packet_support (PACKET_qXfer_features) != PACKET_DISABLE)
69b6ecb0 5067 remote_query_supported_append (&q, remote_support_xml);
82f73884 5068
69b6ecb0
TT
5069 q = "qSupported:" + q;
5070 putpkt (q.c_str ());
94b0dee1 5071
be2a5f71
DJ
5072 getpkt (&rs->buf, &rs->buf_size, 0);
5073
5074 /* If an error occured, warn, but do not return - just reset the
5075 buffer to empty and go on to disable features. */
5076 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported])
5077 == PACKET_ERROR)
5078 {
5079 warning (_("Remote failure reply: %s"), rs->buf);
5080 rs->buf[0] = 0;
5081 }
5082 }
5083
5084 memset (seen, 0, sizeof (seen));
5085
5086 next = rs->buf;
5087 while (*next)
5088 {
5089 enum packet_support is_supported;
5090 char *p, *end, *name_end, *value;
5091
5092 /* First separate out this item from the rest of the packet. If
5093 there's another item after this, we overwrite the separator
5094 (terminated strings are much easier to work with). */
5095 p = next;
5096 end = strchr (p, ';');
5097 if (end == NULL)
5098 {
5099 end = p + strlen (p);
5100 next = end;
5101 }
5102 else
5103 {
89be2091
DJ
5104 *end = '\0';
5105 next = end + 1;
5106
be2a5f71
DJ
5107 if (end == p)
5108 {
5109 warning (_("empty item in \"qSupported\" response"));
5110 continue;
5111 }
be2a5f71
DJ
5112 }
5113
5114 name_end = strchr (p, '=');
5115 if (name_end)
5116 {
5117 /* This is a name=value entry. */
5118 is_supported = PACKET_ENABLE;
5119 value = name_end + 1;
5120 *name_end = '\0';
5121 }
5122 else
5123 {
5124 value = NULL;
5125 switch (end[-1])
5126 {
5127 case '+':
5128 is_supported = PACKET_ENABLE;
5129 break;
5130
5131 case '-':
5132 is_supported = PACKET_DISABLE;
5133 break;
5134
5135 case '?':
5136 is_supported = PACKET_SUPPORT_UNKNOWN;
5137 break;
5138
5139 default:
3e43a32a
MS
5140 warning (_("unrecognized item \"%s\" "
5141 "in \"qSupported\" response"), p);
be2a5f71
DJ
5142 continue;
5143 }
5144 end[-1] = '\0';
5145 }
5146
5147 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
5148 if (strcmp (remote_protocol_features[i].name, p) == 0)
5149 {
5150 const struct protocol_feature *feature;
5151
5152 seen[i] = 1;
5153 feature = &remote_protocol_features[i];
5154 feature->func (feature, is_supported, value);
5155 break;
5156 }
5157 }
5158
5159 /* If we increased the packet size, make sure to increase the global
5160 buffer size also. We delay this until after parsing the entire
5161 qSupported packet, because this is the same buffer we were
5162 parsing. */
5163 if (rs->buf_size < rs->explicit_packet_size)
5164 {
5165 rs->buf_size = rs->explicit_packet_size;
224c3ddb 5166 rs->buf = (char *) xrealloc (rs->buf, rs->buf_size);
be2a5f71
DJ
5167 }
5168
5169 /* Handle the defaults for unmentioned features. */
5170 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
5171 if (!seen[i])
5172 {
5173 const struct protocol_feature *feature;
5174
5175 feature = &remote_protocol_features[i];
5176 feature->func (feature, feature->default_support, NULL);
5177 }
5178}
5179
048094ac
PA
5180/* Serial QUIT handler for the remote serial descriptor.
5181
5182 Defers handling a Ctrl-C until we're done with the current
5183 command/response packet sequence, unless:
5184
5185 - We're setting up the connection. Don't send a remote interrupt
5186 request, as we're not fully synced yet. Quit immediately
5187 instead.
5188
5189 - The target has been resumed in the foreground
223ffa71 5190 (target_terminal::is_ours is false) with a synchronous resume
048094ac
PA
5191 packet, and we're blocked waiting for the stop reply, thus a
5192 Ctrl-C should be immediately sent to the target.
5193
5194 - We get a second Ctrl-C while still within the same serial read or
5195 write. In that case the serial is seemingly wedged --- offer to
5196 quit/disconnect.
5197
5198 - We see a second Ctrl-C without target response, after having
5199 previously interrupted the target. In that case the target/stub
5200 is probably wedged --- offer to quit/disconnect.
5201*/
5202
5203static void
5204remote_serial_quit_handler (void)
5205{
5206 struct remote_state *rs = get_remote_state ();
5207
5208 if (check_quit_flag ())
5209 {
5210 /* If we're starting up, we're not fully synced yet. Quit
5211 immediately. */
5212 if (rs->starting_up)
5213 quit ();
5214 else if (rs->got_ctrlc_during_io)
5215 {
5216 if (query (_("The target is not responding to GDB commands.\n"
5217 "Stop debugging it? ")))
5218 remote_unpush_and_throw ();
5219 }
5220 /* If ^C has already been sent once, offer to disconnect. */
223ffa71 5221 else if (!target_terminal::is_ours () && rs->ctrlc_pending_p)
048094ac
PA
5222 interrupt_query ();
5223 /* All-stop protocol, and blocked waiting for stop reply. Send
5224 an interrupt request. */
223ffa71 5225 else if (!target_terminal::is_ours () && rs->waiting_for_stop_reply)
e671cd59 5226 target_interrupt ();
048094ac
PA
5227 else
5228 rs->got_ctrlc_during_io = 1;
5229 }
5230}
5231
78a095c3
JK
5232/* Remove any of the remote.c targets from target stack. Upper targets depend
5233 on it so remove them first. */
5234
5235static void
5236remote_unpush_target (void)
5237{
915ef8b1 5238 pop_all_targets_at_and_above (process_stratum);
78a095c3 5239}
be2a5f71 5240
048094ac
PA
5241static void
5242remote_unpush_and_throw (void)
5243{
5244 remote_unpush_target ();
5245 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
5246}
5247
f6ac5f3d
PA
5248void
5249remote_target::open_1 (const char *name, int from_tty, int extended_p)
c906108c 5250{
d01949b6 5251 struct remote_state *rs = get_remote_state ();
a6f3e723 5252
c906108c 5253 if (name == 0)
8a3fe4f8 5254 error (_("To open a remote debug connection, you need to specify what\n"
22e04375 5255 "serial device is attached to the remote system\n"
8a3fe4f8 5256 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
c906108c 5257
23860348 5258 /* See FIXME above. */
c6ebd6cf 5259 if (!target_async_permitted)
92d1e331 5260 wait_forever_enabled_p = 1;
6426a772 5261
2d717e4f 5262 /* If we're connected to a running target, target_preopen will kill it.
78a095c3
JK
5263 Ask this question first, before target_preopen has a chance to kill
5264 anything. */
5d93a237 5265 if (rs->remote_desc != NULL && !have_inferiors ())
2d717e4f 5266 {
78a095c3
JK
5267 if (from_tty
5268 && !query (_("Already connected to a remote target. Disconnect? ")))
2d717e4f
DJ
5269 error (_("Still connected."));
5270 }
5271
78a095c3 5272 /* Here the possibly existing remote target gets unpushed. */
c906108c
SS
5273 target_preopen (from_tty);
5274
89be2091 5275 /* Make sure we send the passed signals list the next time we resume. */
747dc59d
TT
5276 xfree (rs->last_pass_packet);
5277 rs->last_pass_packet = NULL;
89be2091 5278
9b224c5e
PA
5279 /* Make sure we send the program signals list the next time we
5280 resume. */
5e4a05c4
TT
5281 xfree (rs->last_program_signals_packet);
5282 rs->last_program_signals_packet = NULL;
9b224c5e 5283
ad9a8f3f 5284 remote_fileio_reset ();
1dd41f16
NS
5285 reopen_exec_file ();
5286 reread_symbols ();
5287
5d93a237
TT
5288 rs->remote_desc = remote_serial_open (name);
5289 if (!rs->remote_desc)
c906108c
SS
5290 perror_with_name (name);
5291
5292 if (baud_rate != -1)
5293 {
5d93a237 5294 if (serial_setbaudrate (rs->remote_desc, baud_rate))
c906108c 5295 {
9b74d5d3
KB
5296 /* The requested speed could not be set. Error out to
5297 top level after closing remote_desc. Take care to
5298 set remote_desc to NULL to avoid closing remote_desc
5299 more than once. */
5d93a237
TT
5300 serial_close (rs->remote_desc);
5301 rs->remote_desc = NULL;
c906108c
SS
5302 perror_with_name (name);
5303 }
5304 }
5305
236af5e3 5306 serial_setparity (rs->remote_desc, serial_parity);
5d93a237 5307 serial_raw (rs->remote_desc);
c906108c
SS
5308
5309 /* If there is something sitting in the buffer we might take it as a
5310 response to a command, which would be bad. */
5d93a237 5311 serial_flush_input (rs->remote_desc);
c906108c
SS
5312
5313 if (from_tty)
5314 {
5315 puts_filtered ("Remote debugging using ");
5316 puts_filtered (name);
5317 puts_filtered ("\n");
5318 }
d9f719f1
PA
5319
5320 remote_target *target
5321 = extended_p ? &extended_remote_ops : &remote_ops;
5322 push_target (target); /* Switch to using remote target now. */
c906108c 5323
74531fed
PA
5324 /* Register extra event sources in the event loop. */
5325 remote_async_inferior_event_token
5326 = create_async_event_handler (remote_async_inferior_event_handler,
5327 NULL);
5965e028 5328 rs->notif_state = remote_notif_state_allocate ();
74531fed 5329
be2a5f71
DJ
5330 /* Reset the target state; these things will be queried either by
5331 remote_query_supported or as they are needed. */
ca4f7f8b 5332 reset_all_packet_configs_support ();
74531fed 5333 rs->cached_wait_status = 0;
be2a5f71 5334 rs->explicit_packet_size = 0;
a6f3e723 5335 rs->noack_mode = 0;
82f73884 5336 rs->extended = extended_p;
e24a49d8 5337 rs->waiting_for_stop_reply = 0;
3a29589a 5338 rs->ctrlc_pending_p = 0;
048094ac 5339 rs->got_ctrlc_during_io = 0;
802188a7 5340
47f8a51d
TT
5341 rs->general_thread = not_sent_ptid;
5342 rs->continue_thread = not_sent_ptid;
262e1174 5343 rs->remote_traceframe_number = -1;
c906108c 5344
3a00c802
PA
5345 rs->last_resume_exec_dir = EXEC_FORWARD;
5346
9d1f7ab2 5347 /* Probe for ability to use "ThreadInfo" query, as required. */
b80fafe3
TT
5348 rs->use_threadinfo_query = 1;
5349 rs->use_threadextra_query = 1;
9d1f7ab2 5350
dd194f6b 5351 rs->readahead_cache.invalidate ();
80152258 5352
c6ebd6cf 5353 if (target_async_permitted)
92d1e331 5354 {
92d1e331
DJ
5355 /* FIXME: cagney/1999-09-23: During the initial connection it is
5356 assumed that the target is already ready and able to respond to
0df8b418 5357 requests. Unfortunately remote_start_remote() eventually calls
92d1e331 5358 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
0df8b418 5359 around this. Eventually a mechanism that allows
92d1e331 5360 wait_for_inferior() to expect/get timeouts will be
23860348 5361 implemented. */
92d1e331
DJ
5362 wait_forever_enabled_p = 0;
5363 }
5364
23860348 5365 /* First delete any symbols previously loaded from shared libraries. */
f78f6cf1 5366 no_shared_libraries (NULL, 0);
f78f6cf1 5367
74531fed
PA
5368 /* Start afresh. */
5369 init_thread_list ();
5370
36918e70 5371 /* Start the remote connection. If error() or QUIT, discard this
165b8e33
AC
5372 target (we'd otherwise be in an inconsistent state) and then
5373 propogate the error on up the exception chain. This ensures that
5374 the caller doesn't stumble along blindly assuming that the
5375 function succeeded. The CLI doesn't have this problem but other
5376 UI's, such as MI do.
36918e70
AC
5377
5378 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
5379 this function should return an error indication letting the
ce2826aa 5380 caller restore the previous state. Unfortunately the command
36918e70
AC
5381 ``target remote'' is directly wired to this function making that
5382 impossible. On a positive note, the CLI side of this problem has
5383 been fixed - the function set_cmd_context() makes it possible for
5384 all the ``target ....'' commands to share a common callback
5385 function. See cli-dump.c. */
109c3e39 5386 {
2d717e4f 5387
492d29ea 5388 TRY
04bd08de 5389 {
d9f719f1 5390 target->start_remote (from_tty, extended_p);
04bd08de 5391 }
492d29ea 5392 CATCH (ex, RETURN_MASK_ALL)
109c3e39 5393 {
c8d104ad
PA
5394 /* Pop the partially set up target - unless something else did
5395 already before throwing the exception. */
5d93a237 5396 if (rs->remote_desc != NULL)
78a095c3 5397 remote_unpush_target ();
c6ebd6cf 5398 if (target_async_permitted)
109c3e39
AC
5399 wait_forever_enabled_p = 1;
5400 throw_exception (ex);
5401 }
492d29ea 5402 END_CATCH
109c3e39 5403 }
c906108c 5404
f4abbc16
MM
5405 remote_btrace_reset ();
5406
c6ebd6cf 5407 if (target_async_permitted)
92d1e331 5408 wait_forever_enabled_p = 1;
43ff13b4
JM
5409}
5410
de0d863e
DB
5411/* Detach the specified process. */
5412
5413static void
5414remote_detach_pid (int pid)
5415{
5416 struct remote_state *rs = get_remote_state ();
5417
5418 if (remote_multi_process_p (rs))
5419 xsnprintf (rs->buf, get_remote_packet_size (), "D;%x", pid);
5420 else
5421 strcpy (rs->buf, "D");
5422
5423 putpkt (rs->buf);
5424 getpkt (&rs->buf, &rs->buf_size, 0);
5425
5426 if (rs->buf[0] == 'O' && rs->buf[1] == 'K')
5427 ;
5428 else if (rs->buf[0] == '\0')
5429 error (_("Remote doesn't know how to detach"));
5430 else
5431 error (_("Can't detach process."));
5432}
5433
5434/* This detaches a program to which we previously attached, using
5435 inferior_ptid to identify the process. After this is done, GDB
5436 can be used to debug some other program. We better not have left
5437 any breakpoints in the target program or it'll die when it hits
5438 one. */
c906108c
SS
5439
5440static void
6e1e1966 5441remote_detach_1 (int from_tty, inferior *inf)
c906108c 5442{
82f73884 5443 int pid = ptid_get_pid (inferior_ptid);
d01949b6 5444 struct remote_state *rs = get_remote_state ();
de0d863e
DB
5445 struct thread_info *tp = find_thread_ptid (inferior_ptid);
5446 int is_fork_parent;
c906108c 5447
2d717e4f
DJ
5448 if (!target_has_execution)
5449 error (_("No process to detach from."));
5450
0f48b757 5451 target_announce_detach (from_tty);
7cee1e54 5452
c906108c 5453 /* Tell the remote target to detach. */
de0d863e 5454 remote_detach_pid (pid);
82f73884 5455
8020350c
DB
5456 /* Exit only if this is the only active inferior. */
5457 if (from_tty && !rs->extended && number_of_live_inferiors () == 1)
7cee1e54 5458 puts_filtered (_("Ending remote debugging.\n"));
82f73884 5459
de0d863e
DB
5460 /* Check to see if we are detaching a fork parent. Note that if we
5461 are detaching a fork child, tp == NULL. */
5462 is_fork_parent = (tp != NULL
5463 && tp->pending_follow.kind == TARGET_WAITKIND_FORKED);
5464
5465 /* If doing detach-on-fork, we don't mourn, because that will delete
5466 breakpoints that should be available for the followed inferior. */
5467 if (!is_fork_parent)
f67c0c91 5468 {
249b5733
PA
5469 /* Save the pid as a string before mourning, since that will
5470 unpush the remote target, and we need the string after. */
5471 std::string infpid = target_pid_to_str (pid_to_ptid (pid));
f67c0c91
SDJ
5472
5473 target_mourn_inferior (inferior_ptid);
5474 if (print_inferior_events)
5475 printf_unfiltered (_("[Inferior %d (%s) detached]\n"),
5476 inf->num, infpid.c_str ());
5477 }
de0d863e
DB
5478 else
5479 {
5480 inferior_ptid = null_ptid;
5481 detach_inferior (pid);
5482 }
2d717e4f
DJ
5483}
5484
f6ac5f3d
PA
5485void
5486remote_target::detach (inferior *inf, int from_tty)
2d717e4f 5487{
6e1e1966 5488 remote_detach_1 (from_tty, inf);
2d717e4f
DJ
5489}
5490
f6ac5f3d
PA
5491void
5492extended_remote_target::detach (inferior *inf, int from_tty)
2d717e4f 5493{
6e1e1966 5494 remote_detach_1 (from_tty, inf);
de0d863e
DB
5495}
5496
5497/* Target follow-fork function for remote targets. On entry, and
5498 at return, the current inferior is the fork parent.
5499
5500 Note that although this is currently only used for extended-remote,
5501 it is named remote_follow_fork in anticipation of using it for the
5502 remote target as well. */
5503
f6ac5f3d
PA
5504int
5505remote_target::follow_fork (int follow_child, int detach_fork)
de0d863e
DB
5506{
5507 struct remote_state *rs = get_remote_state ();
c269dbdb 5508 enum target_waitkind kind = inferior_thread ()->pending_follow.kind;
de0d863e 5509
c269dbdb
DB
5510 if ((kind == TARGET_WAITKIND_FORKED && remote_fork_event_p (rs))
5511 || (kind == TARGET_WAITKIND_VFORKED && remote_vfork_event_p (rs)))
de0d863e
DB
5512 {
5513 /* When following the parent and detaching the child, we detach
5514 the child here. For the case of following the child and
5515 detaching the parent, the detach is done in the target-
5516 independent follow fork code in infrun.c. We can't use
5517 target_detach when detaching an unfollowed child because
5518 the client side doesn't know anything about the child. */
5519 if (detach_fork && !follow_child)
5520 {
5521 /* Detach the fork child. */
5522 ptid_t child_ptid;
5523 pid_t child_pid;
5524
5525 child_ptid = inferior_thread ()->pending_follow.value.related_pid;
5526 child_pid = ptid_get_pid (child_ptid);
5527
5528 remote_detach_pid (child_pid);
de0d863e
DB
5529 }
5530 }
5531 return 0;
c906108c
SS
5532}
5533
94585166
DB
5534/* Target follow-exec function for remote targets. Save EXECD_PATHNAME
5535 in the program space of the new inferior. On entry and at return the
5536 current inferior is the exec'ing inferior. INF is the new exec'd
5537 inferior, which may be the same as the exec'ing inferior unless
5538 follow-exec-mode is "new". */
5539
f6ac5f3d
PA
5540void
5541remote_target::follow_exec (struct inferior *inf, char *execd_pathname)
94585166
DB
5542{
5543 /* We know that this is a target file name, so if it has the "target:"
5544 prefix we strip it off before saving it in the program space. */
5545 if (is_target_filename (execd_pathname))
5546 execd_pathname += strlen (TARGET_SYSROOT_PREFIX);
5547
5548 set_pspace_remote_exec_file (inf->pspace, execd_pathname);
5549}
5550
6ad8ae5c
DJ
5551/* Same as remote_detach, but don't send the "D" packet; just disconnect. */
5552
f6ac5f3d
PA
5553void
5554remote_target::disconnect (const char *args, int from_tty)
43ff13b4 5555{
43ff13b4 5556 if (args)
2d717e4f 5557 error (_("Argument given to \"disconnect\" when remotely debugging."));
43ff13b4 5558
8020350c
DB
5559 /* Make sure we unpush even the extended remote targets. Calling
5560 target_mourn_inferior won't unpush, and remote_mourn won't
5561 unpush if there is more than one inferior left. */
f6ac5f3d 5562 unpush_target (this);
8020350c 5563 generic_mourn_inferior ();
2d717e4f 5564
43ff13b4
JM
5565 if (from_tty)
5566 puts_filtered ("Ending remote debugging.\n");
5567}
5568
2d717e4f
DJ
5569/* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
5570 be chatty about it. */
5571
f6ac5f3d
PA
5572void
5573extended_remote_target::attach (const char *args, int from_tty)
2d717e4f
DJ
5574{
5575 struct remote_state *rs = get_remote_state ();
be86555c 5576 int pid;
96ef3384 5577 char *wait_status = NULL;
2d717e4f 5578
74164c56 5579 pid = parse_pid_to_attach (args);
2d717e4f 5580
74164c56
JK
5581 /* Remote PID can be freely equal to getpid, do not check it here the same
5582 way as in other targets. */
2d717e4f 5583
4082afcc 5584 if (packet_support (PACKET_vAttach) == PACKET_DISABLE)
2d717e4f
DJ
5585 error (_("This target does not support attaching to a process"));
5586
7cee1e54
PA
5587 if (from_tty)
5588 {
5589 char *exec_file = get_exec_file (0);
5590
5591 if (exec_file)
5592 printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file,
5593 target_pid_to_str (pid_to_ptid (pid)));
5594 else
5595 printf_unfiltered (_("Attaching to %s\n"),
5596 target_pid_to_str (pid_to_ptid (pid)));
5597
5598 gdb_flush (gdb_stdout);
5599 }
5600
bba74b36 5601 xsnprintf (rs->buf, get_remote_packet_size (), "vAttach;%x", pid);
2d717e4f
DJ
5602 putpkt (rs->buf);
5603 getpkt (&rs->buf, &rs->buf_size, 0);
5604
4082afcc
PA
5605 switch (packet_ok (rs->buf,
5606 &remote_protocol_packets[PACKET_vAttach]))
2d717e4f 5607 {
4082afcc 5608 case PACKET_OK:
6efcd9a8 5609 if (!target_is_non_stop_p ())
74531fed
PA
5610 {
5611 /* Save the reply for later. */
224c3ddb 5612 wait_status = (char *) alloca (strlen (rs->buf) + 1);
74531fed
PA
5613 strcpy (wait_status, rs->buf);
5614 }
5615 else if (strcmp (rs->buf, "OK") != 0)
5616 error (_("Attaching to %s failed with: %s"),
5617 target_pid_to_str (pid_to_ptid (pid)),
5618 rs->buf);
4082afcc
PA
5619 break;
5620 case PACKET_UNKNOWN:
5621 error (_("This target does not support attaching to a process"));
5622 default:
5623 error (_("Attaching to %s failed"),
5624 target_pid_to_str (pid_to_ptid (pid)));
2d717e4f 5625 }
2d717e4f 5626
1b6e6f5c 5627 set_current_inferior (remote_add_inferior (0, pid, 1, 0));
bad34192 5628
2d717e4f 5629 inferior_ptid = pid_to_ptid (pid);
79d7f229 5630
6efcd9a8 5631 if (target_is_non_stop_p ())
bad34192
PA
5632 {
5633 struct thread_info *thread;
79d7f229 5634
bad34192 5635 /* Get list of threads. */
f6ac5f3d 5636 update_thread_list ();
82f73884 5637
bad34192
PA
5638 thread = first_thread_of_process (pid);
5639 if (thread)
5640 inferior_ptid = thread->ptid;
5641 else
5642 inferior_ptid = pid_to_ptid (pid);
5643
5644 /* Invalidate our notion of the remote current thread. */
47f8a51d 5645 record_currthread (rs, minus_one_ptid);
bad34192 5646 }
74531fed 5647 else
bad34192
PA
5648 {
5649 /* Now, if we have thread information, update inferior_ptid. */
5650 inferior_ptid = remote_current_thread (inferior_ptid);
5651
5652 /* Add the main thread to the thread list. */
00aecdcf
PA
5653 thread_info *thr = add_thread_silent (inferior_ptid);
5654 /* Don't consider the thread stopped until we've processed the
5655 saved stop reply. */
5656 set_executing (thr->ptid, true);
bad34192 5657 }
c0a2216e 5658
96ef3384
UW
5659 /* Next, if the target can specify a description, read it. We do
5660 this before anything involving memory or registers. */
5661 target_find_description ();
5662
6efcd9a8 5663 if (!target_is_non_stop_p ())
74531fed
PA
5664 {
5665 /* Use the previously fetched status. */
5666 gdb_assert (wait_status != NULL);
5667
5668 if (target_can_async_p ())
5669 {
722247f1
YQ
5670 struct notif_event *reply
5671 = remote_notif_parse (&notif_client_stop, wait_status);
74531fed 5672
722247f1 5673 push_stop_reply ((struct stop_reply *) reply);
74531fed 5674
6a3753b3 5675 target_async (1);
74531fed
PA
5676 }
5677 else
5678 {
5679 gdb_assert (wait_status != NULL);
5680 strcpy (rs->buf, wait_status);
5681 rs->cached_wait_status = 1;
5682 }
5683 }
5684 else
5685 gdb_assert (wait_status == NULL);
2d717e4f
DJ
5686}
5687
b9c1d481
AS
5688/* Implementation of the to_post_attach method. */
5689
f6ac5f3d
PA
5690void
5691extended_remote_target::post_attach (int pid)
b9c1d481 5692{
6efcd9a8
PA
5693 /* Get text, data & bss offsets. */
5694 get_offsets ();
5695
b9c1d481
AS
5696 /* In certain cases GDB might not have had the chance to start
5697 symbol lookup up until now. This could happen if the debugged
5698 binary is not using shared libraries, the vsyscall page is not
5699 present (on Linux) and the binary itself hadn't changed since the
5700 debugging process was started. */
5701 if (symfile_objfile != NULL)
5702 remote_check_symbols();
5703}
5704
c906108c 5705\f
506fb367
DJ
5706/* Check for the availability of vCont. This function should also check
5707 the response. */
c906108c
SS
5708
5709static void
6d820c5c 5710remote_vcont_probe (struct remote_state *rs)
c906108c 5711{
2e9f7625 5712 char *buf;
6d820c5c 5713
2e9f7625
DJ
5714 strcpy (rs->buf, "vCont?");
5715 putpkt (rs->buf);
6d820c5c 5716 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 5717 buf = rs->buf;
c906108c 5718
506fb367 5719 /* Make sure that the features we assume are supported. */
61012eef 5720 if (startswith (buf, "vCont"))
506fb367
DJ
5721 {
5722 char *p = &buf[5];
750ce8d1 5723 int support_c, support_C;
506fb367 5724
750ce8d1
YQ
5725 rs->supports_vCont.s = 0;
5726 rs->supports_vCont.S = 0;
506fb367
DJ
5727 support_c = 0;
5728 support_C = 0;
d458bd84 5729 rs->supports_vCont.t = 0;
c1e36e3e 5730 rs->supports_vCont.r = 0;
506fb367
DJ
5731 while (p && *p == ';')
5732 {
5733 p++;
5734 if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 5735 rs->supports_vCont.s = 1;
506fb367 5736 else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 5737 rs->supports_vCont.S = 1;
506fb367
DJ
5738 else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
5739 support_c = 1;
5740 else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
5741 support_C = 1;
74531fed 5742 else if (*p == 't' && (*(p + 1) == ';' || *(p + 1) == 0))
d458bd84 5743 rs->supports_vCont.t = 1;
c1e36e3e
PA
5744 else if (*p == 'r' && (*(p + 1) == ';' || *(p + 1) == 0))
5745 rs->supports_vCont.r = 1;
506fb367
DJ
5746
5747 p = strchr (p, ';');
5748 }
c906108c 5749
750ce8d1
YQ
5750 /* If c, and C are not all supported, we can't use vCont. Clearing
5751 BUF will make packet_ok disable the packet. */
5752 if (!support_c || !support_C)
506fb367
DJ
5753 buf[0] = 0;
5754 }
c906108c 5755
444abaca 5756 packet_ok (buf, &remote_protocol_packets[PACKET_vCont]);
506fb367 5757}
c906108c 5758
0d8f58ca
PA
5759/* Helper function for building "vCont" resumptions. Write a
5760 resumption to P. ENDP points to one-passed-the-end of the buffer
5761 we're allowed to write to. Returns BUF+CHARACTERS_WRITTEN. The
5762 thread to be resumed is PTID; STEP and SIGGNAL indicate whether the
5763 resumed thread should be single-stepped and/or signalled. If PTID
5764 equals minus_one_ptid, then all threads are resumed; if PTID
5765 represents a process, then all threads of the process are resumed;
5766 the thread to be stepped and/or signalled is given in the global
5767 INFERIOR_PTID. */
5768
5769static char *
5770append_resumption (char *p, char *endp,
2ea28649 5771 ptid_t ptid, int step, enum gdb_signal siggnal)
0d8f58ca
PA
5772{
5773 struct remote_state *rs = get_remote_state ();
5774
a493e3e2 5775 if (step && siggnal != GDB_SIGNAL_0)
0d8f58ca 5776 p += xsnprintf (p, endp - p, ";S%02x", siggnal);
c1e36e3e
PA
5777 else if (step
5778 /* GDB is willing to range step. */
5779 && use_range_stepping
5780 /* Target supports range stepping. */
5781 && rs->supports_vCont.r
5782 /* We don't currently support range stepping multiple
5783 threads with a wildcard (though the protocol allows it,
5784 so stubs shouldn't make an active effort to forbid
5785 it). */
5786 && !(remote_multi_process_p (rs) && ptid_is_pid (ptid)))
5787 {
5788 struct thread_info *tp;
5789
5790 if (ptid_equal (ptid, minus_one_ptid))
5791 {
5792 /* If we don't know about the target thread's tid, then
5793 we're resuming magic_null_ptid (see caller). */
5794 tp = find_thread_ptid (magic_null_ptid);
5795 }
5796 else
5797 tp = find_thread_ptid (ptid);
5798 gdb_assert (tp != NULL);
5799
5800 if (tp->control.may_range_step)
5801 {
5802 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
5803
5804 p += xsnprintf (p, endp - p, ";r%s,%s",
5805 phex_nz (tp->control.step_range_start,
5806 addr_size),
5807 phex_nz (tp->control.step_range_end,
5808 addr_size));
5809 }
5810 else
5811 p += xsnprintf (p, endp - p, ";s");
5812 }
0d8f58ca
PA
5813 else if (step)
5814 p += xsnprintf (p, endp - p, ";s");
a493e3e2 5815 else if (siggnal != GDB_SIGNAL_0)
0d8f58ca
PA
5816 p += xsnprintf (p, endp - p, ";C%02x", siggnal);
5817 else
5818 p += xsnprintf (p, endp - p, ";c");
5819
5820 if (remote_multi_process_p (rs) && ptid_is_pid (ptid))
5821 {
5822 ptid_t nptid;
5823
5824 /* All (-1) threads of process. */
ba348170 5825 nptid = ptid_build (ptid_get_pid (ptid), -1, 0);
0d8f58ca
PA
5826
5827 p += xsnprintf (p, endp - p, ":");
5828 p = write_ptid (p, endp, nptid);
5829 }
5830 else if (!ptid_equal (ptid, minus_one_ptid))
5831 {
5832 p += xsnprintf (p, endp - p, ":");
5833 p = write_ptid (p, endp, ptid);
5834 }
5835
5836 return p;
5837}
5838
799a2abe
PA
5839/* Clear the thread's private info on resume. */
5840
5841static void
5842resume_clear_thread_private_info (struct thread_info *thread)
5843{
5844 if (thread->priv != NULL)
5845 {
7aabaf9d
SM
5846 remote_thread_info *priv = get_remote_thread_info (thread);
5847
5848 priv->stop_reason = TARGET_STOPPED_BY_NO_REASON;
5849 priv->watch_data_address = 0;
799a2abe
PA
5850 }
5851}
5852
e5ef252a
PA
5853/* Append a vCont continue-with-signal action for threads that have a
5854 non-zero stop signal. */
5855
5856static char *
5857append_pending_thread_resumptions (char *p, char *endp, ptid_t ptid)
5858{
5859 struct thread_info *thread;
5860
034f788c 5861 ALL_NON_EXITED_THREADS (thread)
e5ef252a
PA
5862 if (ptid_match (thread->ptid, ptid)
5863 && !ptid_equal (inferior_ptid, thread->ptid)
70509625 5864 && thread->suspend.stop_signal != GDB_SIGNAL_0)
e5ef252a
PA
5865 {
5866 p = append_resumption (p, endp, thread->ptid,
5867 0, thread->suspend.stop_signal);
5868 thread->suspend.stop_signal = GDB_SIGNAL_0;
799a2abe 5869 resume_clear_thread_private_info (thread);
e5ef252a
PA
5870 }
5871
5872 return p;
5873}
5874
7b68ffbb
PA
5875/* Set the target running, using the packets that use Hc
5876 (c/s/C/S). */
5877
5878static void
5879remote_resume_with_hc (struct target_ops *ops,
5880 ptid_t ptid, int step, enum gdb_signal siggnal)
5881{
5882 struct remote_state *rs = get_remote_state ();
5883 struct thread_info *thread;
5884 char *buf;
5885
5886 rs->last_sent_signal = siggnal;
5887 rs->last_sent_step = step;
5888
5889 /* The c/s/C/S resume packets use Hc, so set the continue
5890 thread. */
5891 if (ptid_equal (ptid, minus_one_ptid))
5892 set_continue_thread (any_thread_ptid);
5893 else
5894 set_continue_thread (ptid);
5895
5896 ALL_NON_EXITED_THREADS (thread)
5897 resume_clear_thread_private_info (thread);
5898
5899 buf = rs->buf;
5900 if (execution_direction == EXEC_REVERSE)
5901 {
5902 /* We don't pass signals to the target in reverse exec mode. */
5903 if (info_verbose && siggnal != GDB_SIGNAL_0)
5904 warning (_(" - Can't pass signal %d to target in reverse: ignored."),
5905 siggnal);
5906
5907 if (step && packet_support (PACKET_bs) == PACKET_DISABLE)
5908 error (_("Remote reverse-step not supported."));
5909 if (!step && packet_support (PACKET_bc) == PACKET_DISABLE)
5910 error (_("Remote reverse-continue not supported."));
5911
5912 strcpy (buf, step ? "bs" : "bc");
5913 }
5914 else if (siggnal != GDB_SIGNAL_0)
5915 {
5916 buf[0] = step ? 'S' : 'C';
5917 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
5918 buf[2] = tohex (((int) siggnal) & 0xf);
5919 buf[3] = '\0';
5920 }
5921 else
5922 strcpy (buf, step ? "s" : "c");
5923
5924 putpkt (buf);
5925}
5926
506fb367
DJ
5927/* Resume the remote inferior by using a "vCont" packet. The thread
5928 to be resumed is PTID; STEP and SIGGNAL indicate whether the
79d7f229
PA
5929 resumed thread should be single-stepped and/or signalled. If PTID
5930 equals minus_one_ptid, then all threads are resumed; the thread to
5931 be stepped and/or signalled is given in the global INFERIOR_PTID.
5932 This function returns non-zero iff it resumes the inferior.
44eaed12 5933
7b68ffbb
PA
5934 This function issues a strict subset of all possible vCont commands
5935 at the moment. */
44eaed12 5936
506fb367 5937static int
7b68ffbb 5938remote_resume_with_vcont (ptid_t ptid, int step, enum gdb_signal siggnal)
506fb367
DJ
5939{
5940 struct remote_state *rs = get_remote_state ();
82f73884
PA
5941 char *p;
5942 char *endp;
44eaed12 5943
7b68ffbb
PA
5944 /* No reverse execution actions defined for vCont. */
5945 if (execution_direction == EXEC_REVERSE)
5946 return 0;
5947
4082afcc 5948 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6d820c5c 5949 remote_vcont_probe (rs);
44eaed12 5950
4082afcc 5951 if (packet_support (PACKET_vCont) == PACKET_DISABLE)
6d820c5c 5952 return 0;
44eaed12 5953
82f73884
PA
5954 p = rs->buf;
5955 endp = rs->buf + get_remote_packet_size ();
5956
506fb367
DJ
5957 /* If we could generate a wider range of packets, we'd have to worry
5958 about overflowing BUF. Should there be a generic
5959 "multi-part-packet" packet? */
5960
0d8f58ca
PA
5961 p += xsnprintf (p, endp - p, "vCont");
5962
79d7f229 5963 if (ptid_equal (ptid, magic_null_ptid))
c906108c 5964 {
79d7f229
PA
5965 /* MAGIC_NULL_PTID means that we don't have any active threads,
5966 so we don't have any TID numbers the inferior will
5967 understand. Make sure to only send forms that do not specify
5968 a TID. */
a9cbf802 5969 append_resumption (p, endp, minus_one_ptid, step, siggnal);
506fb367 5970 }
0d8f58ca 5971 else if (ptid_equal (ptid, minus_one_ptid) || ptid_is_pid (ptid))
506fb367 5972 {
0d8f58ca
PA
5973 /* Resume all threads (of all processes, or of a single
5974 process), with preference for INFERIOR_PTID. This assumes
5975 inferior_ptid belongs to the set of all threads we are about
5976 to resume. */
a493e3e2 5977 if (step || siggnal != GDB_SIGNAL_0)
82f73884 5978 {
0d8f58ca
PA
5979 /* Step inferior_ptid, with or without signal. */
5980 p = append_resumption (p, endp, inferior_ptid, step, siggnal);
82f73884 5981 }
0d8f58ca 5982
e5ef252a
PA
5983 /* Also pass down any pending signaled resumption for other
5984 threads not the current. */
5985 p = append_pending_thread_resumptions (p, endp, ptid);
5986
0d8f58ca 5987 /* And continue others without a signal. */
a493e3e2 5988 append_resumption (p, endp, ptid, /*step=*/ 0, GDB_SIGNAL_0);
c906108c
SS
5989 }
5990 else
506fb367
DJ
5991 {
5992 /* Scheduler locking; resume only PTID. */
a9cbf802 5993 append_resumption (p, endp, ptid, step, siggnal);
506fb367 5994 }
c906108c 5995
82f73884
PA
5996 gdb_assert (strlen (rs->buf) < get_remote_packet_size ());
5997 putpkt (rs->buf);
506fb367 5998
6efcd9a8 5999 if (target_is_non_stop_p ())
74531fed
PA
6000 {
6001 /* In non-stop, the stub replies to vCont with "OK". The stop
6002 reply will be reported asynchronously by means of a `%Stop'
6003 notification. */
6004 getpkt (&rs->buf, &rs->buf_size, 0);
6005 if (strcmp (rs->buf, "OK") != 0)
6006 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf);
6007 }
6008
506fb367 6009 return 1;
c906108c 6010}
43ff13b4 6011
506fb367
DJ
6012/* Tell the remote machine to resume. */
6013
f6ac5f3d
PA
6014void
6015remote_target::resume (ptid_t ptid, int step, enum gdb_signal siggnal)
43ff13b4 6016{
d01949b6 6017 struct remote_state *rs = get_remote_state ();
43ff13b4 6018
85ad3aaf
PA
6019 /* When connected in non-stop mode, the core resumes threads
6020 individually. Resuming remote threads directly in target_resume
6021 would thus result in sending one packet per thread. Instead, to
6022 minimize roundtrip latency, here we just store the resume
6023 request; the actual remote resumption will be done in
6024 target_commit_resume / remote_commit_resume, where we'll be able
6025 to do vCont action coalescing. */
f6ac5f3d 6026 if (target_is_non_stop_p () && ::execution_direction != EXEC_REVERSE)
85ad3aaf 6027 {
7aabaf9d 6028 remote_thread_info *remote_thr;
85ad3aaf
PA
6029
6030 if (ptid_equal (minus_one_ptid, ptid) || ptid_is_pid (ptid))
7aabaf9d 6031 remote_thr = get_remote_thread_info (inferior_ptid);
85ad3aaf 6032 else
7aabaf9d
SM
6033 remote_thr = get_remote_thread_info (ptid);
6034
85ad3aaf
PA
6035 remote_thr->last_resume_step = step;
6036 remote_thr->last_resume_sig = siggnal;
6037 return;
6038 }
6039
722247f1
YQ
6040 /* In all-stop, we can't mark REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN
6041 (explained in remote-notif.c:handle_notification) so
6042 remote_notif_process is not called. We need find a place where
6043 it is safe to start a 'vNotif' sequence. It is good to do it
6044 before resuming inferior, because inferior was stopped and no RSP
6045 traffic at that moment. */
6efcd9a8 6046 if (!target_is_non_stop_p ())
5965e028 6047 remote_notif_process (rs->notif_state, &notif_client_stop);
722247f1 6048
f6ac5f3d 6049 rs->last_resume_exec_dir = ::execution_direction;
3a00c802 6050
7b68ffbb
PA
6051 /* Prefer vCont, and fallback to s/c/S/C, which use Hc. */
6052 if (!remote_resume_with_vcont (ptid, step, siggnal))
f6ac5f3d 6053 remote_resume_with_hc (this, ptid, step, siggnal);
43ff13b4 6054
2acceee2 6055 /* We are about to start executing the inferior, let's register it
0df8b418
MS
6056 with the event loop. NOTE: this is the one place where all the
6057 execution commands end up. We could alternatively do this in each
23860348 6058 of the execution commands in infcmd.c. */
2acceee2
JM
6059 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
6060 into infcmd.c in order to allow inferior function calls to work
23860348 6061 NOT asynchronously. */
362646f5 6062 if (target_can_async_p ())
6a3753b3 6063 target_async (1);
e24a49d8
PA
6064
6065 /* We've just told the target to resume. The remote server will
6066 wait for the inferior to stop, and then send a stop reply. In
6067 the mean time, we can't start another command/query ourselves
74531fed
PA
6068 because the stub wouldn't be ready to process it. This applies
6069 only to the base all-stop protocol, however. In non-stop (which
6070 only supports vCont), the stub replies with an "OK", and is
6071 immediate able to process further serial input. */
6efcd9a8 6072 if (!target_is_non_stop_p ())
74531fed 6073 rs->waiting_for_stop_reply = 1;
43ff13b4 6074}
85ad3aaf
PA
6075
6076static void check_pending_events_prevent_wildcard_vcont
6077 (int *may_global_wildcard_vcont);
6078static int is_pending_fork_parent_thread (struct thread_info *thread);
6079
6080/* Private per-inferior info for target remote processes. */
6081
089354bb 6082struct remote_inferior : public private_inferior
85ad3aaf
PA
6083{
6084 /* Whether we can send a wildcard vCont for this process. */
089354bb 6085 bool may_wildcard_vcont = true;
85ad3aaf
PA
6086};
6087
089354bb
SM
6088/* Get the remote private inferior data associated to INF. */
6089
6090static remote_inferior *
6091get_remote_inferior (inferior *inf)
6092{
6093 if (inf->priv == NULL)
6094 inf->priv.reset (new remote_inferior);
6095
6096 return static_cast<remote_inferior *> (inf->priv.get ());
6097}
6098
85ad3aaf
PA
6099/* Structure used to track the construction of a vCont packet in the
6100 outgoing packet buffer. This is used to send multiple vCont
6101 packets if we have more actions than would fit a single packet. */
6102
6103struct vcont_builder
6104{
6105 /* Pointer to the first action. P points here if no action has been
6106 appended yet. */
6107 char *first_action;
6108
6109 /* Where the next action will be appended. */
6110 char *p;
6111
6112 /* The end of the buffer. Must never write past this. */
6113 char *endp;
6114};
6115
6116/* Prepare the outgoing buffer for a new vCont packet. */
6117
6118static void
6119vcont_builder_restart (struct vcont_builder *builder)
6120{
6121 struct remote_state *rs = get_remote_state ();
6122
6123 builder->p = rs->buf;
6124 builder->endp = rs->buf + get_remote_packet_size ();
6125 builder->p += xsnprintf (builder->p, builder->endp - builder->p, "vCont");
6126 builder->first_action = builder->p;
6127}
6128
6129/* If the vCont packet being built has any action, send it to the
6130 remote end. */
6131
6132static void
6133vcont_builder_flush (struct vcont_builder *builder)
6134{
6135 struct remote_state *rs;
6136
6137 if (builder->p == builder->first_action)
6138 return;
6139
6140 rs = get_remote_state ();
6141 putpkt (rs->buf);
6142 getpkt (&rs->buf, &rs->buf_size, 0);
6143 if (strcmp (rs->buf, "OK") != 0)
6144 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf);
6145}
6146
6147/* The largest action is range-stepping, with its two addresses. This
6148 is more than sufficient. If a new, bigger action is created, it'll
6149 quickly trigger a failed assertion in append_resumption (and we'll
6150 just bump this). */
6151#define MAX_ACTION_SIZE 200
6152
6153/* Append a new vCont action in the outgoing packet being built. If
6154 the action doesn't fit the packet along with previous actions, push
6155 what we've got so far to the remote end and start over a new vCont
6156 packet (with the new action). */
6157
6158static void
6159vcont_builder_push_action (struct vcont_builder *builder,
6160 ptid_t ptid, int step, enum gdb_signal siggnal)
6161{
6162 char buf[MAX_ACTION_SIZE + 1];
6163 char *endp;
6164 size_t rsize;
6165
6166 endp = append_resumption (buf, buf + sizeof (buf),
6167 ptid, step, siggnal);
6168
6169 /* Check whether this new action would fit in the vCont packet along
6170 with previous actions. If not, send what we've got so far and
6171 start a new vCont packet. */
6172 rsize = endp - buf;
6173 if (rsize > builder->endp - builder->p)
6174 {
6175 vcont_builder_flush (builder);
6176 vcont_builder_restart (builder);
6177
6178 /* Should now fit. */
6179 gdb_assert (rsize <= builder->endp - builder->p);
6180 }
6181
6182 memcpy (builder->p, buf, rsize);
6183 builder->p += rsize;
6184 *builder->p = '\0';
6185}
6186
6187/* to_commit_resume implementation. */
6188
f6ac5f3d
PA
6189void
6190remote_target::commit_resume ()
85ad3aaf 6191{
85ad3aaf
PA
6192 struct inferior *inf;
6193 struct thread_info *tp;
6194 int any_process_wildcard;
6195 int may_global_wildcard_vcont;
6196 struct vcont_builder vcont_builder;
6197
6198 /* If connected in all-stop mode, we'd send the remote resume
6199 request directly from remote_resume. Likewise if
6200 reverse-debugging, as there are no defined vCont actions for
6201 reverse execution. */
f6ac5f3d 6202 if (!target_is_non_stop_p () || ::execution_direction == EXEC_REVERSE)
85ad3aaf
PA
6203 return;
6204
6205 /* Try to send wildcard actions ("vCont;c" or "vCont;c:pPID.-1")
6206 instead of resuming all threads of each process individually.
6207 However, if any thread of a process must remain halted, we can't
6208 send wildcard resumes and must send one action per thread.
6209
6210 Care must be taken to not resume threads/processes the server
6211 side already told us are stopped, but the core doesn't know about
6212 yet, because the events are still in the vStopped notification
6213 queue. For example:
6214
6215 #1 => vCont s:p1.1;c
6216 #2 <= OK
6217 #3 <= %Stopped T05 p1.1
6218 #4 => vStopped
6219 #5 <= T05 p1.2
6220 #6 => vStopped
6221 #7 <= OK
6222 #8 (infrun handles the stop for p1.1 and continues stepping)
6223 #9 => vCont s:p1.1;c
6224
6225 The last vCont above would resume thread p1.2 by mistake, because
6226 the server has no idea that the event for p1.2 had not been
6227 handled yet.
6228
6229 The server side must similarly ignore resume actions for the
6230 thread that has a pending %Stopped notification (and any other
6231 threads with events pending), until GDB acks the notification
6232 with vStopped. Otherwise, e.g., the following case is
6233 mishandled:
6234
6235 #1 => g (or any other packet)
6236 #2 <= [registers]
6237 #3 <= %Stopped T05 p1.2
6238 #4 => vCont s:p1.1;c
6239 #5 <= OK
6240
6241 Above, the server must not resume thread p1.2. GDB can't know
6242 that p1.2 stopped until it acks the %Stopped notification, and
6243 since from GDB's perspective all threads should be running, it
6244 sends a "c" action.
6245
6246 Finally, special care must also be given to handling fork/vfork
6247 events. A (v)fork event actually tells us that two processes
6248 stopped -- the parent and the child. Until we follow the fork,
6249 we must not resume the child. Therefore, if we have a pending
6250 fork follow, we must not send a global wildcard resume action
6251 (vCont;c). We can still send process-wide wildcards though. */
6252
6253 /* Start by assuming a global wildcard (vCont;c) is possible. */
6254 may_global_wildcard_vcont = 1;
6255
6256 /* And assume every process is individually wildcard-able too. */
6257 ALL_NON_EXITED_INFERIORS (inf)
6258 {
089354bb
SM
6259 remote_inferior *priv = get_remote_inferior (inf);
6260
6261 priv->may_wildcard_vcont = true;
85ad3aaf
PA
6262 }
6263
6264 /* Check for any pending events (not reported or processed yet) and
6265 disable process and global wildcard resumes appropriately. */
6266 check_pending_events_prevent_wildcard_vcont (&may_global_wildcard_vcont);
6267
6268 ALL_NON_EXITED_THREADS (tp)
6269 {
6270 /* If a thread of a process is not meant to be resumed, then we
6271 can't wildcard that process. */
6272 if (!tp->executing)
6273 {
089354bb 6274 get_remote_inferior (tp->inf)->may_wildcard_vcont = false;
85ad3aaf
PA
6275
6276 /* And if we can't wildcard a process, we can't wildcard
6277 everything either. */
6278 may_global_wildcard_vcont = 0;
6279 continue;
6280 }
6281
6282 /* If a thread is the parent of an unfollowed fork, then we
6283 can't do a global wildcard, as that would resume the fork
6284 child. */
6285 if (is_pending_fork_parent_thread (tp))
6286 may_global_wildcard_vcont = 0;
6287 }
6288
6289 /* Now let's build the vCont packet(s). Actions must be appended
6290 from narrower to wider scopes (thread -> process -> global). If
6291 we end up with too many actions for a single packet vcont_builder
6292 flushes the current vCont packet to the remote side and starts a
6293 new one. */
6294 vcont_builder_restart (&vcont_builder);
6295
6296 /* Threads first. */
6297 ALL_NON_EXITED_THREADS (tp)
6298 {
7aabaf9d 6299 remote_thread_info *remote_thr = get_remote_thread_info (tp);
85ad3aaf
PA
6300
6301 if (!tp->executing || remote_thr->vcont_resumed)
6302 continue;
6303
6304 gdb_assert (!thread_is_in_step_over_chain (tp));
6305
6306 if (!remote_thr->last_resume_step
6307 && remote_thr->last_resume_sig == GDB_SIGNAL_0
089354bb 6308 && get_remote_inferior (tp->inf)->may_wildcard_vcont)
85ad3aaf
PA
6309 {
6310 /* We'll send a wildcard resume instead. */
6311 remote_thr->vcont_resumed = 1;
6312 continue;
6313 }
6314
6315 vcont_builder_push_action (&vcont_builder, tp->ptid,
6316 remote_thr->last_resume_step,
6317 remote_thr->last_resume_sig);
6318 remote_thr->vcont_resumed = 1;
6319 }
6320
6321 /* Now check whether we can send any process-wide wildcard. This is
6322 to avoid sending a global wildcard in the case nothing is
6323 supposed to be resumed. */
6324 any_process_wildcard = 0;
6325
6326 ALL_NON_EXITED_INFERIORS (inf)
6327 {
089354bb 6328 if (get_remote_inferior (inf)->may_wildcard_vcont)
85ad3aaf
PA
6329 {
6330 any_process_wildcard = 1;
6331 break;
6332 }
6333 }
6334
6335 if (any_process_wildcard)
6336 {
6337 /* If all processes are wildcard-able, then send a single "c"
6338 action, otherwise, send an "all (-1) threads of process"
6339 continue action for each running process, if any. */
6340 if (may_global_wildcard_vcont)
6341 {
6342 vcont_builder_push_action (&vcont_builder, minus_one_ptid,
6343 0, GDB_SIGNAL_0);
6344 }
6345 else
6346 {
6347 ALL_NON_EXITED_INFERIORS (inf)
6348 {
089354bb 6349 if (get_remote_inferior (inf)->may_wildcard_vcont)
85ad3aaf
PA
6350 {
6351 vcont_builder_push_action (&vcont_builder,
6352 pid_to_ptid (inf->pid),
6353 0, GDB_SIGNAL_0);
6354 }
6355 }
6356 }
6357 }
6358
6359 vcont_builder_flush (&vcont_builder);
6360}
6361
c906108c 6362\f
43ff13b4 6363
74531fed
PA
6364/* Non-stop version of target_stop. Uses `vCont;t' to stop a remote
6365 thread, all threads of a remote process, or all threads of all
6366 processes. */
6367
6368static void
6369remote_stop_ns (ptid_t ptid)
6370{
6371 struct remote_state *rs = get_remote_state ();
6372 char *p = rs->buf;
6373 char *endp = rs->buf + get_remote_packet_size ();
74531fed 6374
4082afcc 6375 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
74531fed
PA
6376 remote_vcont_probe (rs);
6377
d458bd84 6378 if (!rs->supports_vCont.t)
74531fed
PA
6379 error (_("Remote server does not support stopping threads"));
6380
f91d3df5
PA
6381 if (ptid_equal (ptid, minus_one_ptid)
6382 || (!remote_multi_process_p (rs) && ptid_is_pid (ptid)))
74531fed
PA
6383 p += xsnprintf (p, endp - p, "vCont;t");
6384 else
6385 {
6386 ptid_t nptid;
6387
74531fed
PA
6388 p += xsnprintf (p, endp - p, "vCont;t:");
6389
6390 if (ptid_is_pid (ptid))
6391 /* All (-1) threads of process. */
ba348170 6392 nptid = ptid_build (ptid_get_pid (ptid), -1, 0);
74531fed
PA
6393 else
6394 {
6395 /* Small optimization: if we already have a stop reply for
6396 this thread, no use in telling the stub we want this
6397 stopped. */
6398 if (peek_stop_reply (ptid))
6399 return;
6400
6401 nptid = ptid;
6402 }
6403
a9cbf802 6404 write_ptid (p, endp, nptid);
74531fed
PA
6405 }
6406
6407 /* In non-stop, we get an immediate OK reply. The stop reply will
6408 come in asynchronously by notification. */
6409 putpkt (rs->buf);
6410 getpkt (&rs->buf, &rs->buf_size, 0);
6411 if (strcmp (rs->buf, "OK") != 0)
6412 error (_("Stopping %s failed: %s"), target_pid_to_str (ptid), rs->buf);
6413}
6414
bfedc46a
PA
6415/* All-stop version of target_interrupt. Sends a break or a ^C to
6416 interrupt the remote target. It is undefined which thread of which
6417 process reports the interrupt. */
74531fed
PA
6418
6419static void
de979965 6420remote_interrupt_as (void)
74531fed
PA
6421{
6422 struct remote_state *rs = get_remote_state ();
6423
3a29589a
DJ
6424 rs->ctrlc_pending_p = 1;
6425
74531fed
PA
6426 /* If the inferior is stopped already, but the core didn't know
6427 about it yet, just ignore the request. The cached wait status
6428 will be collected in remote_wait. */
6429 if (rs->cached_wait_status)
6430 return;
6431
9a7071a8
JB
6432 /* Send interrupt_sequence to remote target. */
6433 send_interrupt_sequence ();
74531fed
PA
6434}
6435
de979965
PA
6436/* Non-stop version of target_interrupt. Uses `vCtrlC' to interrupt
6437 the remote target. It is undefined which thread of which process
e42de8c7
PA
6438 reports the interrupt. Throws an error if the packet is not
6439 supported by the server. */
de979965 6440
e42de8c7 6441static void
de979965
PA
6442remote_interrupt_ns (void)
6443{
6444 struct remote_state *rs = get_remote_state ();
6445 char *p = rs->buf;
6446 char *endp = rs->buf + get_remote_packet_size ();
6447
6448 xsnprintf (p, endp - p, "vCtrlC");
6449
6450 /* In non-stop, we get an immediate OK reply. The stop reply will
6451 come in asynchronously by notification. */
6452 putpkt (rs->buf);
6453 getpkt (&rs->buf, &rs->buf_size, 0);
6454
6455 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCtrlC]))
6456 {
6457 case PACKET_OK:
6458 break;
6459 case PACKET_UNKNOWN:
e42de8c7 6460 error (_("No support for interrupting the remote target."));
de979965
PA
6461 case PACKET_ERROR:
6462 error (_("Interrupting target failed: %s"), rs->buf);
6463 }
de979965
PA
6464}
6465
bfedc46a 6466/* Implement the to_stop function for the remote targets. */
74531fed 6467
f6ac5f3d
PA
6468void
6469remote_target::stop (ptid_t ptid)
c906108c 6470{
7a292a7a 6471 if (remote_debug)
0f71a2f6 6472 fprintf_unfiltered (gdb_stdlog, "remote_stop called\n");
c906108c 6473
6efcd9a8 6474 if (target_is_non_stop_p ())
74531fed 6475 remote_stop_ns (ptid);
c906108c 6476 else
bfedc46a
PA
6477 {
6478 /* We don't currently have a way to transparently pause the
6479 remote target in all-stop mode. Interrupt it instead. */
de979965 6480 remote_interrupt_as ();
bfedc46a
PA
6481 }
6482}
6483
6484/* Implement the to_interrupt function for the remote targets. */
6485
f6ac5f3d
PA
6486void
6487remote_target::interrupt ()
bfedc46a
PA
6488{
6489 if (remote_debug)
6490 fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n");
6491
e42de8c7
PA
6492 if (target_is_non_stop_p ())
6493 remote_interrupt_ns ();
bfedc46a 6494 else
e42de8c7 6495 remote_interrupt_as ();
c906108c
SS
6496}
6497
93692b58
PA
6498/* Implement the to_pass_ctrlc function for the remote targets. */
6499
f6ac5f3d
PA
6500void
6501remote_target::pass_ctrlc ()
93692b58
PA
6502{
6503 struct remote_state *rs = get_remote_state ();
6504
6505 if (remote_debug)
6506 fprintf_unfiltered (gdb_stdlog, "remote_pass_ctrlc called\n");
6507
6508 /* If we're starting up, we're not fully synced yet. Quit
6509 immediately. */
6510 if (rs->starting_up)
6511 quit ();
6512 /* If ^C has already been sent once, offer to disconnect. */
6513 else if (rs->ctrlc_pending_p)
6514 interrupt_query ();
6515 else
e671cd59 6516 target_interrupt ();
93692b58
PA
6517}
6518
c906108c
SS
6519/* Ask the user what to do when an interrupt is received. */
6520
6521static void
fba45db2 6522interrupt_query (void)
c906108c 6523{
abc56d60 6524 struct remote_state *rs = get_remote_state ();
c906108c 6525
abc56d60 6526 if (rs->waiting_for_stop_reply && rs->ctrlc_pending_p)
74531fed 6527 {
abc56d60
PA
6528 if (query (_("The target is not responding to interrupt requests.\n"
6529 "Stop debugging it? ")))
74531fed 6530 {
78a095c3 6531 remote_unpush_target ();
abc56d60 6532 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
74531fed
PA
6533 }
6534 }
abc56d60
PA
6535 else
6536 {
6537 if (query (_("Interrupted while waiting for the program.\n"
6538 "Give up waiting? ")))
6539 quit ();
6540 }
c906108c
SS
6541}
6542
6426a772
JM
6543/* Enable/disable target terminal ownership. Most targets can use
6544 terminal groups to control terminal ownership. Remote targets are
6545 different in that explicit transfer of ownership to/from GDB/target
23860348 6546 is required. */
6426a772 6547
f6ac5f3d
PA
6548void
6549remote_target::terminal_inferior ()
6426a772 6550{
6426a772
JM
6551 /* NOTE: At this point we could also register our selves as the
6552 recipient of all input. Any characters typed could then be
23860348 6553 passed on down to the target. */
6426a772
JM
6554}
6555
f6ac5f3d
PA
6556void
6557remote_target::terminal_ours ()
6426a772 6558{
6426a772
JM
6559}
6560
176a6961 6561static void
917317f4 6562remote_console_output (char *msg)
c906108c
SS
6563{
6564 char *p;
6565
c5aa993b 6566 for (p = msg; p[0] && p[1]; p += 2)
c906108c
SS
6567 {
6568 char tb[2];
6569 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
a744cf53 6570
c906108c
SS
6571 tb[0] = c;
6572 tb[1] = 0;
43ff13b4 6573 fputs_unfiltered (tb, gdb_stdtarg);
c906108c 6574 }
00db5b94
PA
6575 gdb_flush (gdb_stdtarg);
6576}
74531fed 6577
74531fed
PA
6578DEF_VEC_O(cached_reg_t);
6579
722247f1 6580typedef struct stop_reply
74531fed 6581{
722247f1 6582 struct notif_event base;
74531fed 6583
722247f1 6584 /* The identifier of the thread about this event */
74531fed
PA
6585 ptid_t ptid;
6586
340e3c99 6587 /* The remote state this event is associated with. When the remote
bcc75809
YQ
6588 connection, represented by a remote_state object, is closed,
6589 all the associated stop_reply events should be released. */
6590 struct remote_state *rs;
6591
74531fed
PA
6592 struct target_waitstatus ws;
6593
5cd63fda
PA
6594 /* The architecture associated with the expedited registers. */
6595 gdbarch *arch;
6596
15148d6a
PA
6597 /* Expedited registers. This makes remote debugging a bit more
6598 efficient for those targets that provide critical registers as
6599 part of their normal status mechanism (as another roundtrip to
6600 fetch them is avoided). */
74531fed
PA
6601 VEC(cached_reg_t) *regcache;
6602
f7e6eed5
PA
6603 enum target_stop_reason stop_reason;
6604
74531fed
PA
6605 CORE_ADDR watch_data_address;
6606
dc146f7c 6607 int core;
722247f1 6608} *stop_reply_p;
a744cf53 6609
722247f1
YQ
6610DECLARE_QUEUE_P (stop_reply_p);
6611DEFINE_QUEUE_P (stop_reply_p);
6612/* The list of already fetched and acknowledged stop events. This
6613 queue is used for notification Stop, and other notifications
6614 don't need queue for their events, because the notification events
6615 of Stop can't be consumed immediately, so that events should be
6616 queued first, and be consumed by remote_wait_{ns,as} one per
6617 time. Other notifications can consume their events immediately,
6618 so queue is not needed for them. */
6619static QUEUE (stop_reply_p) *stop_reply_queue;
74531fed
PA
6620
6621static void
6622stop_reply_xfree (struct stop_reply *r)
6623{
f48ff2a7 6624 notif_event_xfree ((struct notif_event *) r);
c906108c
SS
6625}
6626
221e1a37
PA
6627/* Return the length of the stop reply queue. */
6628
6629static int
6630stop_reply_queue_length (void)
6631{
6632 return QUEUE_length (stop_reply_p, stop_reply_queue);
6633}
6634
722247f1
YQ
6635static void
6636remote_notif_stop_parse (struct notif_client *self, char *buf,
6637 struct notif_event *event)
6638{
6639 remote_parse_stop_reply (buf, (struct stop_reply *) event);
6640}
6641
6642static void
6643remote_notif_stop_ack (struct notif_client *self, char *buf,
6644 struct notif_event *event)
6645{
6646 struct stop_reply *stop_reply = (struct stop_reply *) event;
6647
6648 /* acknowledge */
f5c4fcd9 6649 putpkt (self->ack_command);
722247f1
YQ
6650
6651 if (stop_reply->ws.kind == TARGET_WAITKIND_IGNORE)
6652 /* We got an unknown stop reply. */
6653 error (_("Unknown stop reply"));
6654
6655 push_stop_reply (stop_reply);
6656}
6657
6658static int
6659remote_notif_stop_can_get_pending_events (struct notif_client *self)
6660{
6661 /* We can't get pending events in remote_notif_process for
6662 notification stop, and we have to do this in remote_wait_ns
6663 instead. If we fetch all queued events from stub, remote stub
6664 may exit and we have no chance to process them back in
6665 remote_wait_ns. */
6666 mark_async_event_handler (remote_async_inferior_event_token);
6667 return 0;
6668}
6669
6670static void
6671stop_reply_dtr (struct notif_event *event)
6672{
6673 struct stop_reply *r = (struct stop_reply *) event;
d1dff226
AH
6674 cached_reg_t *reg;
6675 int ix;
6676
6677 for (ix = 0;
6678 VEC_iterate (cached_reg_t, r->regcache, ix, reg);
6679 ix++)
6680 xfree (reg->data);
722247f1
YQ
6681
6682 VEC_free (cached_reg_t, r->regcache);
6683}
6684
6685static struct notif_event *
6686remote_notif_stop_alloc_reply (void)
6687{
8d749320
SM
6688 /* We cast to a pointer to the "base class". */
6689 struct notif_event *r = (struct notif_event *) XNEW (struct stop_reply);
722247f1
YQ
6690
6691 r->dtr = stop_reply_dtr;
6692
6693 return r;
6694}
6695
6696/* A client of notification Stop. */
6697
6698struct notif_client notif_client_stop =
6699{
6700 "Stop",
6701 "vStopped",
6702 remote_notif_stop_parse,
6703 remote_notif_stop_ack,
6704 remote_notif_stop_can_get_pending_events,
6705 remote_notif_stop_alloc_reply,
f48ff2a7 6706 REMOTE_NOTIF_STOP,
722247f1
YQ
6707};
6708
6709/* A parameter to pass data in and out. */
6710
6711struct queue_iter_param
6712{
6713 void *input;
6714 struct stop_reply *output;
6715};
6716
85ad3aaf 6717/* Determine if THREAD_PTID is a pending fork parent thread. ARG contains
cbb8991c
DB
6718 the pid of the process that owns the threads we want to check, or
6719 -1 if we want to check all threads. */
6720
6721static int
6722is_pending_fork_parent (struct target_waitstatus *ws, int event_pid,
6723 ptid_t thread_ptid)
6724{
6725 if (ws->kind == TARGET_WAITKIND_FORKED
6726 || ws->kind == TARGET_WAITKIND_VFORKED)
6727 {
6728 if (event_pid == -1 || event_pid == ptid_get_pid (thread_ptid))
6729 return 1;
6730 }
6731
6732 return 0;
6733}
6734
85ad3aaf
PA
6735/* Return the thread's pending status used to determine whether the
6736 thread is a fork parent stopped at a fork event. */
6737
6738static struct target_waitstatus *
6739thread_pending_fork_status (struct thread_info *thread)
6740{
6741 if (thread->suspend.waitstatus_pending_p)
6742 return &thread->suspend.waitstatus;
6743 else
6744 return &thread->pending_follow;
6745}
6746
6747/* Determine if THREAD is a pending fork parent thread. */
6748
6749static int
6750is_pending_fork_parent_thread (struct thread_info *thread)
6751{
6752 struct target_waitstatus *ws = thread_pending_fork_status (thread);
6753 int pid = -1;
6754
6755 return is_pending_fork_parent (ws, pid, thread->ptid);
6756}
6757
cbb8991c
DB
6758/* Check whether EVENT is a fork event, and if it is, remove the
6759 fork child from the context list passed in DATA. */
6760
6761static int
6762remove_child_of_pending_fork (QUEUE (stop_reply_p) *q,
6763 QUEUE_ITER (stop_reply_p) *iter,
6764 stop_reply_p event,
6765 void *data)
6766{
19ba03f4
SM
6767 struct queue_iter_param *param = (struct queue_iter_param *) data;
6768 struct threads_listing_context *context
6769 = (struct threads_listing_context *) param->input;
cbb8991c
DB
6770
6771 if (event->ws.kind == TARGET_WAITKIND_FORKED
65706a29
PA
6772 || event->ws.kind == TARGET_WAITKIND_VFORKED
6773 || event->ws.kind == TARGET_WAITKIND_THREAD_EXITED)
21fe1c75 6774 context->remove_thread (event->ws.value.related_pid);
cbb8991c
DB
6775
6776 return 1;
6777}
6778
6779/* If CONTEXT contains any fork child threads that have not been
6780 reported yet, remove them from the CONTEXT list. If such a
6781 thread exists it is because we are stopped at a fork catchpoint
6782 and have not yet called follow_fork, which will set up the
6783 host-side data structures for the new process. */
6784
6785static void
6786remove_new_fork_children (struct threads_listing_context *context)
6787{
6788 struct thread_info * thread;
6789 int pid = -1;
6790 struct notif_client *notif = &notif_client_stop;
6791 struct queue_iter_param param;
6792
6793 /* For any threads stopped at a fork event, remove the corresponding
6794 fork child threads from the CONTEXT list. */
6795 ALL_NON_EXITED_THREADS (thread)
6796 {
85ad3aaf 6797 struct target_waitstatus *ws = thread_pending_fork_status (thread);
cbb8991c
DB
6798
6799 if (is_pending_fork_parent (ws, pid, thread->ptid))
21fe1c75 6800 context->remove_thread (ws->value.related_pid);
cbb8991c
DB
6801 }
6802
6803 /* Check for any pending fork events (not reported or processed yet)
6804 in process PID and remove those fork child threads from the
6805 CONTEXT list as well. */
6806 remote_notif_get_pending_events (notif);
6807 param.input = context;
6808 param.output = NULL;
6809 QUEUE_iterate (stop_reply_p, stop_reply_queue,
6810 remove_child_of_pending_fork, &param);
6811}
6812
85ad3aaf
PA
6813/* Check whether EVENT would prevent a global or process wildcard
6814 vCont action. */
6815
6816static int
6817check_pending_event_prevents_wildcard_vcont_callback
6818 (QUEUE (stop_reply_p) *q,
6819 QUEUE_ITER (stop_reply_p) *iter,
6820 stop_reply_p event,
6821 void *data)
6822{
6823 struct inferior *inf;
6824 int *may_global_wildcard_vcont = (int *) data;
6825
6826 if (event->ws.kind == TARGET_WAITKIND_NO_RESUMED
6827 || event->ws.kind == TARGET_WAITKIND_NO_HISTORY)
6828 return 1;
6829
6830 if (event->ws.kind == TARGET_WAITKIND_FORKED
6831 || event->ws.kind == TARGET_WAITKIND_VFORKED)
6832 *may_global_wildcard_vcont = 0;
6833
6834 inf = find_inferior_ptid (event->ptid);
6835
6836 /* This may be the first time we heard about this process.
6837 Regardless, we must not do a global wildcard resume, otherwise
6838 we'd resume this process too. */
6839 *may_global_wildcard_vcont = 0;
6840 if (inf != NULL)
089354bb 6841 get_remote_inferior (inf)->may_wildcard_vcont = false;
85ad3aaf
PA
6842
6843 return 1;
6844}
6845
6846/* Check whether any event pending in the vStopped queue would prevent
6847 a global or process wildcard vCont action. Clear
6848 *may_global_wildcard if we can't do a global wildcard (vCont;c),
6849 and clear the event inferior's may_wildcard_vcont flag if we can't
6850 do a process-wide wildcard resume (vCont;c:pPID.-1). */
6851
6852static void
6853check_pending_events_prevent_wildcard_vcont (int *may_global_wildcard)
6854{
6855 struct notif_client *notif = &notif_client_stop;
6856
6857 remote_notif_get_pending_events (notif);
6858 QUEUE_iterate (stop_reply_p, stop_reply_queue,
6859 check_pending_event_prevents_wildcard_vcont_callback,
6860 may_global_wildcard);
6861}
6862
f48ff2a7
YQ
6863/* Remove stop replies in the queue if its pid is equal to the given
6864 inferior's pid. */
722247f1
YQ
6865
6866static int
f48ff2a7
YQ
6867remove_stop_reply_for_inferior (QUEUE (stop_reply_p) *q,
6868 QUEUE_ITER (stop_reply_p) *iter,
6869 stop_reply_p event,
6870 void *data)
722247f1 6871{
19ba03f4
SM
6872 struct queue_iter_param *param = (struct queue_iter_param *) data;
6873 struct inferior *inf = (struct inferior *) param->input;
722247f1 6874
f48ff2a7 6875 if (ptid_get_pid (event->ptid) == inf->pid)
722247f1
YQ
6876 {
6877 stop_reply_xfree (event);
6878 QUEUE_remove_elem (stop_reply_p, q, iter);
6879 }
6880
6881 return 1;
6882}
6883
f48ff2a7 6884/* Discard all pending stop replies of inferior INF. */
c906108c 6885
74531fed 6886static void
5f4cf0bb 6887discard_pending_stop_replies (struct inferior *inf)
c906108c 6888{
722247f1 6889 struct queue_iter_param param;
f48ff2a7
YQ
6890 struct stop_reply *reply;
6891 struct remote_state *rs = get_remote_state ();
6892 struct remote_notif_state *rns = rs->notif_state;
6893
6894 /* This function can be notified when an inferior exists. When the
6895 target is not remote, the notification state is NULL. */
6896 if (rs->remote_desc == NULL)
6897 return;
6898
6899 reply = (struct stop_reply *) rns->pending_event[notif_client_stop.id];
c906108c 6900
74531fed 6901 /* Discard the in-flight notification. */
f48ff2a7 6902 if (reply != NULL && ptid_get_pid (reply->ptid) == inf->pid)
74531fed 6903 {
722247f1 6904 stop_reply_xfree (reply);
f48ff2a7 6905 rns->pending_event[notif_client_stop.id] = NULL;
74531fed 6906 }
c906108c 6907
722247f1
YQ
6908 param.input = inf;
6909 param.output = NULL;
74531fed
PA
6910 /* Discard the stop replies we have already pulled with
6911 vStopped. */
722247f1 6912 QUEUE_iterate (stop_reply_p, stop_reply_queue,
f48ff2a7
YQ
6913 remove_stop_reply_for_inferior, &param);
6914}
6915
bcc75809
YQ
6916/* If its remote state is equal to the given remote state,
6917 remove EVENT from the stop reply queue. */
6918
6919static int
6920remove_stop_reply_of_remote_state (QUEUE (stop_reply_p) *q,
6921 QUEUE_ITER (stop_reply_p) *iter,
6922 stop_reply_p event,
6923 void *data)
6924{
19ba03f4
SM
6925 struct queue_iter_param *param = (struct queue_iter_param *) data;
6926 struct remote_state *rs = (struct remote_state *) param->input;
bcc75809
YQ
6927
6928 if (event->rs == rs)
6929 {
6930 stop_reply_xfree (event);
6931 QUEUE_remove_elem (stop_reply_p, q, iter);
6932 }
6933
6934 return 1;
6935}
6936
6937/* Discard the stop replies for RS in stop_reply_queue. */
f48ff2a7
YQ
6938
6939static void
bcc75809 6940discard_pending_stop_replies_in_queue (struct remote_state *rs)
f48ff2a7
YQ
6941{
6942 struct queue_iter_param param;
6943
bcc75809 6944 param.input = rs;
f48ff2a7
YQ
6945 param.output = NULL;
6946 /* Discard the stop replies we have already pulled with
6947 vStopped. */
6948 QUEUE_iterate (stop_reply_p, stop_reply_queue,
bcc75809 6949 remove_stop_reply_of_remote_state, &param);
722247f1 6950}
74531fed 6951
722247f1
YQ
6952/* A parameter to pass data in and out. */
6953
6954static int
6955remote_notif_remove_once_on_match (QUEUE (stop_reply_p) *q,
6956 QUEUE_ITER (stop_reply_p) *iter,
6957 stop_reply_p event,
6958 void *data)
6959{
19ba03f4
SM
6960 struct queue_iter_param *param = (struct queue_iter_param *) data;
6961 ptid_t *ptid = (ptid_t *) param->input;
722247f1
YQ
6962
6963 if (ptid_match (event->ptid, *ptid))
6964 {
6965 param->output = event;
6966 QUEUE_remove_elem (stop_reply_p, q, iter);
6967 return 0;
c8e38a49 6968 }
722247f1
YQ
6969
6970 return 1;
74531fed 6971}
43ff13b4 6972
722247f1
YQ
6973/* Remove the first reply in 'stop_reply_queue' which matches
6974 PTID. */
2e9f7625 6975
722247f1
YQ
6976static struct stop_reply *
6977remote_notif_remove_queued_reply (ptid_t ptid)
74531fed 6978{
722247f1
YQ
6979 struct queue_iter_param param;
6980
6981 param.input = &ptid;
6982 param.output = NULL;
6983
6984 QUEUE_iterate (stop_reply_p, stop_reply_queue,
6985 remote_notif_remove_once_on_match, &param);
6986 if (notif_debug)
6987 fprintf_unfiltered (gdb_stdlog,
6988 "notif: discard queued event: 'Stop' in %s\n",
6989 target_pid_to_str (ptid));
a744cf53 6990
722247f1 6991 return param.output;
74531fed 6992}
75c99385 6993
74531fed
PA
6994/* Look for a queued stop reply belonging to PTID. If one is found,
6995 remove it from the queue, and return it. Returns NULL if none is
6996 found. If there are still queued events left to process, tell the
6997 event loop to get back to target_wait soon. */
e24a49d8 6998
74531fed
PA
6999static struct stop_reply *
7000queued_stop_reply (ptid_t ptid)
7001{
722247f1 7002 struct stop_reply *r = remote_notif_remove_queued_reply (ptid);
74531fed 7003
722247f1 7004 if (!QUEUE_is_empty (stop_reply_p, stop_reply_queue))
74531fed
PA
7005 /* There's still at least an event left. */
7006 mark_async_event_handler (remote_async_inferior_event_token);
7007
722247f1 7008 return r;
74531fed
PA
7009}
7010
7011/* Push a fully parsed stop reply in the stop reply queue. Since we
7012 know that we now have at least one queued event left to pass to the
7013 core side, tell the event loop to get back to target_wait soon. */
7014
7015static void
7016push_stop_reply (struct stop_reply *new_event)
7017{
722247f1 7018 QUEUE_enque (stop_reply_p, stop_reply_queue, new_event);
74531fed 7019
722247f1
YQ
7020 if (notif_debug)
7021 fprintf_unfiltered (gdb_stdlog,
7022 "notif: push 'Stop' %s to queue %d\n",
7023 target_pid_to_str (new_event->ptid),
7024 QUEUE_length (stop_reply_p,
7025 stop_reply_queue));
74531fed
PA
7026
7027 mark_async_event_handler (remote_async_inferior_event_token);
7028}
7029
722247f1
YQ
7030static int
7031stop_reply_match_ptid_and_ws (QUEUE (stop_reply_p) *q,
7032 QUEUE_ITER (stop_reply_p) *iter,
7033 struct stop_reply *event,
7034 void *data)
7035{
19ba03f4 7036 ptid_t *ptid = (ptid_t *) data;
722247f1
YQ
7037
7038 return !(ptid_equal (*ptid, event->ptid)
7039 && event->ws.kind == TARGET_WAITKIND_STOPPED);
7040}
7041
74531fed
PA
7042/* Returns true if we have a stop reply for PTID. */
7043
7044static int
7045peek_stop_reply (ptid_t ptid)
7046{
722247f1
YQ
7047 return !QUEUE_iterate (stop_reply_p, stop_reply_queue,
7048 stop_reply_match_ptid_and_ws, &ptid);
74531fed
PA
7049}
7050
26d56a93
SL
7051/* Helper for remote_parse_stop_reply. Return nonzero if the substring
7052 starting with P and ending with PEND matches PREFIX. */
7053
7054static int
7055strprefix (const char *p, const char *pend, const char *prefix)
7056{
7057 for ( ; p < pend; p++, prefix++)
7058 if (*p != *prefix)
7059 return 0;
7060 return *prefix == '\0';
7061}
7062
74531fed
PA
7063/* Parse the stop reply in BUF. Either the function succeeds, and the
7064 result is stored in EVENT, or throws an error. */
7065
7066static void
7067remote_parse_stop_reply (char *buf, struct stop_reply *event)
7068{
5cd63fda 7069 remote_arch_state *rsa = NULL;
74531fed 7070 ULONGEST addr;
256642e8 7071 const char *p;
94585166 7072 int skipregs = 0;
74531fed
PA
7073
7074 event->ptid = null_ptid;
bcc75809 7075 event->rs = get_remote_state ();
74531fed
PA
7076 event->ws.kind = TARGET_WAITKIND_IGNORE;
7077 event->ws.value.integer = 0;
f7e6eed5 7078 event->stop_reason = TARGET_STOPPED_BY_NO_REASON;
74531fed 7079 event->regcache = NULL;
dc146f7c 7080 event->core = -1;
74531fed
PA
7081
7082 switch (buf[0])
7083 {
7084 case 'T': /* Status with PC, SP, FP, ... */
cea39f65
MS
7085 /* Expedited reply, containing Signal, {regno, reg} repeat. */
7086 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
7087 ss = signal number
7088 n... = register number
7089 r... = register contents
7090 */
7091
7092 p = &buf[3]; /* after Txx */
7093 while (*p)
7094 {
256642e8 7095 const char *p1;
cea39f65 7096 int fieldsize;
43ff13b4 7097
1f10ba14
PA
7098 p1 = strchr (p, ':');
7099 if (p1 == NULL)
7100 error (_("Malformed packet(a) (missing colon): %s\n\
7101Packet: '%s'\n"),
7102 p, buf);
7103 if (p == p1)
7104 error (_("Malformed packet(a) (missing register number): %s\n\
7105Packet: '%s'\n"),
7106 p, buf);
3c3bea1c 7107
1f10ba14
PA
7108 /* Some "registers" are actually extended stop information.
7109 Note if you're adding a new entry here: GDB 7.9 and
7110 earlier assume that all register "numbers" that start
7111 with an hex digit are real register numbers. Make sure
7112 the server only sends such a packet if it knows the
7113 client understands it. */
c8e38a49 7114
26d56a93 7115 if (strprefix (p, p1, "thread"))
1f10ba14 7116 event->ptid = read_ptid (++p1, &p);
82075af2
JS
7117 else if (strprefix (p, p1, "syscall_entry"))
7118 {
7119 ULONGEST sysno;
7120
7121 event->ws.kind = TARGET_WAITKIND_SYSCALL_ENTRY;
7122 p = unpack_varlen_hex (++p1, &sysno);
7123 event->ws.value.syscall_number = (int) sysno;
7124 }
7125 else if (strprefix (p, p1, "syscall_return"))
7126 {
7127 ULONGEST sysno;
7128
7129 event->ws.kind = TARGET_WAITKIND_SYSCALL_RETURN;
7130 p = unpack_varlen_hex (++p1, &sysno);
7131 event->ws.value.syscall_number = (int) sysno;
7132 }
26d56a93
SL
7133 else if (strprefix (p, p1, "watch")
7134 || strprefix (p, p1, "rwatch")
7135 || strprefix (p, p1, "awatch"))
cea39f65 7136 {
f7e6eed5 7137 event->stop_reason = TARGET_STOPPED_BY_WATCHPOINT;
1f10ba14
PA
7138 p = unpack_varlen_hex (++p1, &addr);
7139 event->watch_data_address = (CORE_ADDR) addr;
cea39f65 7140 }
26d56a93 7141 else if (strprefix (p, p1, "swbreak"))
f7e6eed5
PA
7142 {
7143 event->stop_reason = TARGET_STOPPED_BY_SW_BREAKPOINT;
7144
7145 /* Make sure the stub doesn't forget to indicate support
7146 with qSupported. */
7147 if (packet_support (PACKET_swbreak_feature) != PACKET_ENABLE)
7148 error (_("Unexpected swbreak stop reason"));
7149
7150 /* The value part is documented as "must be empty",
7151 though we ignore it, in case we ever decide to make
7152 use of it in a backward compatible way. */
8424cc97 7153 p = strchrnul (p1 + 1, ';');
f7e6eed5 7154 }
26d56a93 7155 else if (strprefix (p, p1, "hwbreak"))
f7e6eed5
PA
7156 {
7157 event->stop_reason = TARGET_STOPPED_BY_HW_BREAKPOINT;
7158
7159 /* Make sure the stub doesn't forget to indicate support
7160 with qSupported. */
7161 if (packet_support (PACKET_hwbreak_feature) != PACKET_ENABLE)
7162 error (_("Unexpected hwbreak stop reason"));
7163
7164 /* See above. */
8424cc97 7165 p = strchrnul (p1 + 1, ';');
f7e6eed5 7166 }
26d56a93 7167 else if (strprefix (p, p1, "library"))
cea39f65 7168 {
1f10ba14 7169 event->ws.kind = TARGET_WAITKIND_LOADED;
8424cc97 7170 p = strchrnul (p1 + 1, ';');
1f10ba14 7171 }
26d56a93 7172 else if (strprefix (p, p1, "replaylog"))
1f10ba14
PA
7173 {
7174 event->ws.kind = TARGET_WAITKIND_NO_HISTORY;
7175 /* p1 will indicate "begin" or "end", but it makes
7176 no difference for now, so ignore it. */
8424cc97 7177 p = strchrnul (p1 + 1, ';');
1f10ba14 7178 }
26d56a93 7179 else if (strprefix (p, p1, "core"))
1f10ba14
PA
7180 {
7181 ULONGEST c;
a744cf53 7182
1f10ba14
PA
7183 p = unpack_varlen_hex (++p1, &c);
7184 event->core = c;
cea39f65 7185 }
26d56a93 7186 else if (strprefix (p, p1, "fork"))
de0d863e
DB
7187 {
7188 event->ws.value.related_pid = read_ptid (++p1, &p);
7189 event->ws.kind = TARGET_WAITKIND_FORKED;
7190 }
26d56a93 7191 else if (strprefix (p, p1, "vfork"))
c269dbdb
DB
7192 {
7193 event->ws.value.related_pid = read_ptid (++p1, &p);
7194 event->ws.kind = TARGET_WAITKIND_VFORKED;
7195 }
26d56a93 7196 else if (strprefix (p, p1, "vforkdone"))
c269dbdb
DB
7197 {
7198 event->ws.kind = TARGET_WAITKIND_VFORK_DONE;
8424cc97 7199 p = strchrnul (p1 + 1, ';');
c269dbdb 7200 }
6ab24463 7201 else if (strprefix (p, p1, "exec"))
94585166
DB
7202 {
7203 ULONGEST ignored;
7204 char pathname[PATH_MAX];
7205 int pathlen;
7206
7207 /* Determine the length of the execd pathname. */
7208 p = unpack_varlen_hex (++p1, &ignored);
7209 pathlen = (p - p1) / 2;
7210
7211 /* Save the pathname for event reporting and for
7212 the next run command. */
7213 hex2bin (p1, (gdb_byte *) pathname, pathlen);
7214 pathname[pathlen] = '\0';
7215
7216 /* This is freed during event handling. */
7217 event->ws.value.execd_pathname = xstrdup (pathname);
7218 event->ws.kind = TARGET_WAITKIND_EXECD;
7219
7220 /* Skip the registers included in this packet, since
7221 they may be for an architecture different from the
7222 one used by the original program. */
7223 skipregs = 1;
7224 }
65706a29
PA
7225 else if (strprefix (p, p1, "create"))
7226 {
7227 event->ws.kind = TARGET_WAITKIND_THREAD_CREATED;
8424cc97 7228 p = strchrnul (p1 + 1, ';');
65706a29 7229 }
cea39f65
MS
7230 else
7231 {
1f10ba14 7232 ULONGEST pnum;
256642e8 7233 const char *p_temp;
1f10ba14 7234
94585166
DB
7235 if (skipregs)
7236 {
8424cc97 7237 p = strchrnul (p1 + 1, ';');
94585166
DB
7238 p++;
7239 continue;
7240 }
7241
1f10ba14
PA
7242 /* Maybe a real ``P'' register number. */
7243 p_temp = unpack_varlen_hex (p, &pnum);
7244 /* If the first invalid character is the colon, we got a
7245 register number. Otherwise, it's an unknown stop
7246 reason. */
7247 if (p_temp == p1)
7248 {
5cd63fda
PA
7249 /* If we haven't parsed the event's thread yet, find
7250 it now, in order to find the architecture of the
7251 reported expedited registers. */
7252 if (event->ptid == null_ptid)
7253 {
7254 const char *thr = strstr (p1 + 1, ";thread:");
7255 if (thr != NULL)
7256 event->ptid = read_ptid (thr + strlen (";thread:"),
7257 NULL);
7258 else
3cada740
PA
7259 {
7260 /* Either the current thread hasn't changed,
7261 or the inferior is not multi-threaded.
7262 The event must be for the thread we last
7263 set as (or learned as being) current. */
7264 event->ptid = event->rs->general_thread;
7265 }
5cd63fda
PA
7266 }
7267
7268 if (rsa == NULL)
7269 {
7270 inferior *inf = (event->ptid == null_ptid
7271 ? NULL
7272 : find_inferior_ptid (event->ptid));
7273 /* If this is the first time we learn anything
7274 about this process, skip the registers
7275 included in this packet, since we don't yet
7276 know which architecture to use to parse them.
7277 We'll determine the architecture later when
7278 we process the stop reply and retrieve the
7279 target description, via
7280 remote_notice_new_inferior ->
7281 post_create_inferior. */
7282 if (inf == NULL)
7283 {
7284 p = strchrnul (p1 + 1, ';');
7285 p++;
7286 continue;
7287 }
7288
7289 event->arch = inf->gdbarch;
9d6eea31 7290 rsa = event->rs->get_remote_arch_state (event->arch);
5cd63fda
PA
7291 }
7292
7293 packet_reg *reg
7294 = packet_reg_from_pnum (event->arch, rsa, pnum);
1f10ba14 7295 cached_reg_t cached_reg;
43ff13b4 7296
1f10ba14
PA
7297 if (reg == NULL)
7298 error (_("Remote sent bad register number %s: %s\n\
8a3fe4f8 7299Packet: '%s'\n"),
1f10ba14 7300 hex_string (pnum), p, buf);
c8e38a49 7301
1f10ba14 7302 cached_reg.num = reg->regnum;
d1dff226 7303 cached_reg.data = (gdb_byte *)
5cd63fda 7304 xmalloc (register_size (event->arch, reg->regnum));
4100683b 7305
1f10ba14
PA
7306 p = p1 + 1;
7307 fieldsize = hex2bin (p, cached_reg.data,
5cd63fda 7308 register_size (event->arch, reg->regnum));
1f10ba14 7309 p += 2 * fieldsize;
5cd63fda 7310 if (fieldsize < register_size (event->arch, reg->regnum))
1f10ba14 7311 warning (_("Remote reply is too short: %s"), buf);
74531fed 7312
1f10ba14
PA
7313 VEC_safe_push (cached_reg_t, event->regcache, &cached_reg);
7314 }
7315 else
7316 {
7317 /* Not a number. Silently skip unknown optional
7318 info. */
8424cc97 7319 p = strchrnul (p1 + 1, ';');
1f10ba14 7320 }
cea39f65 7321 }
c8e38a49 7322
cea39f65
MS
7323 if (*p != ';')
7324 error (_("Remote register badly formatted: %s\nhere: %s"),
7325 buf, p);
7326 ++p;
7327 }
5b5596ff
PA
7328
7329 if (event->ws.kind != TARGET_WAITKIND_IGNORE)
7330 break;
7331
c8e38a49
PA
7332 /* fall through */
7333 case 'S': /* Old style status, just signal only. */
3a09da41
PA
7334 {
7335 int sig;
7336
7337 event->ws.kind = TARGET_WAITKIND_STOPPED;
7338 sig = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
7339 if (GDB_SIGNAL_FIRST <= sig && sig < GDB_SIGNAL_LAST)
7340 event->ws.value.sig = (enum gdb_signal) sig;
7341 else
7342 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
7343 }
c8e38a49 7344 break;
65706a29
PA
7345 case 'w': /* Thread exited. */
7346 {
256642e8 7347 const char *p;
65706a29
PA
7348 ULONGEST value;
7349
7350 event->ws.kind = TARGET_WAITKIND_THREAD_EXITED;
7351 p = unpack_varlen_hex (&buf[1], &value);
7352 event->ws.value.integer = value;
7353 if (*p != ';')
7354 error (_("stop reply packet badly formatted: %s"), buf);
974eac9d 7355 event->ptid = read_ptid (++p, NULL);
65706a29
PA
7356 break;
7357 }
c8e38a49
PA
7358 case 'W': /* Target exited. */
7359 case 'X':
7360 {
256642e8 7361 const char *p;
c8e38a49
PA
7362 int pid;
7363 ULONGEST value;
82f73884 7364
c8e38a49
PA
7365 /* GDB used to accept only 2 hex chars here. Stubs should
7366 only send more if they detect GDB supports multi-process
7367 support. */
7368 p = unpack_varlen_hex (&buf[1], &value);
82f73884 7369
c8e38a49
PA
7370 if (buf[0] == 'W')
7371 {
7372 /* The remote process exited. */
74531fed
PA
7373 event->ws.kind = TARGET_WAITKIND_EXITED;
7374 event->ws.value.integer = value;
c8e38a49
PA
7375 }
7376 else
7377 {
7378 /* The remote process exited with a signal. */
74531fed 7379 event->ws.kind = TARGET_WAITKIND_SIGNALLED;
3a09da41
PA
7380 if (GDB_SIGNAL_FIRST <= value && value < GDB_SIGNAL_LAST)
7381 event->ws.value.sig = (enum gdb_signal) value;
7382 else
7383 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
c8e38a49 7384 }
82f73884 7385
c8e38a49
PA
7386 /* If no process is specified, assume inferior_ptid. */
7387 pid = ptid_get_pid (inferior_ptid);
7388 if (*p == '\0')
7389 ;
7390 else if (*p == ';')
7391 {
7392 p++;
7393
0b24eb2d 7394 if (*p == '\0')
82f73884 7395 ;
61012eef 7396 else if (startswith (p, "process:"))
82f73884 7397 {
c8e38a49 7398 ULONGEST upid;
a744cf53 7399
c8e38a49
PA
7400 p += sizeof ("process:") - 1;
7401 unpack_varlen_hex (p, &upid);
7402 pid = upid;
82f73884
PA
7403 }
7404 else
7405 error (_("unknown stop reply packet: %s"), buf);
43ff13b4 7406 }
c8e38a49
PA
7407 else
7408 error (_("unknown stop reply packet: %s"), buf);
74531fed
PA
7409 event->ptid = pid_to_ptid (pid);
7410 }
7411 break;
f2faf941
PA
7412 case 'N':
7413 event->ws.kind = TARGET_WAITKIND_NO_RESUMED;
7414 event->ptid = minus_one_ptid;
7415 break;
74531fed
PA
7416 }
7417
6efcd9a8 7418 if (target_is_non_stop_p () && ptid_equal (event->ptid, null_ptid))
74531fed
PA
7419 error (_("No process or thread specified in stop reply: %s"), buf);
7420}
7421
722247f1
YQ
7422/* When the stub wants to tell GDB about a new notification reply, it
7423 sends a notification (%Stop, for example). Those can come it at
7424 any time, hence, we have to make sure that any pending
7425 putpkt/getpkt sequence we're making is finished, before querying
7426 the stub for more events with the corresponding ack command
7427 (vStopped, for example). E.g., if we started a vStopped sequence
7428 immediately upon receiving the notification, something like this
7429 could happen:
74531fed
PA
7430
7431 1.1) --> Hg 1
7432 1.2) <-- OK
7433 1.3) --> g
7434 1.4) <-- %Stop
7435 1.5) --> vStopped
7436 1.6) <-- (registers reply to step #1.3)
7437
7438 Obviously, the reply in step #1.6 would be unexpected to a vStopped
7439 query.
7440
796cb314 7441 To solve this, whenever we parse a %Stop notification successfully,
74531fed
PA
7442 we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
7443 doing whatever we were doing:
7444
7445 2.1) --> Hg 1
7446 2.2) <-- OK
7447 2.3) --> g
7448 2.4) <-- %Stop
7449 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
7450 2.5) <-- (registers reply to step #2.3)
7451
7452 Eventualy after step #2.5, we return to the event loop, which
7453 notices there's an event on the
7454 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
7455 associated callback --- the function below. At this point, we're
7456 always safe to start a vStopped sequence. :
7457
7458 2.6) --> vStopped
7459 2.7) <-- T05 thread:2
7460 2.8) --> vStopped
7461 2.9) --> OK
7462*/
7463
722247f1
YQ
7464void
7465remote_notif_get_pending_events (struct notif_client *nc)
74531fed
PA
7466{
7467 struct remote_state *rs = get_remote_state ();
74531fed 7468
f48ff2a7 7469 if (rs->notif_state->pending_event[nc->id] != NULL)
74531fed 7470 {
722247f1
YQ
7471 if (notif_debug)
7472 fprintf_unfiltered (gdb_stdlog,
7473 "notif: process: '%s' ack pending event\n",
7474 nc->name);
74531fed 7475
722247f1 7476 /* acknowledge */
f48ff2a7
YQ
7477 nc->ack (nc, rs->buf, rs->notif_state->pending_event[nc->id]);
7478 rs->notif_state->pending_event[nc->id] = NULL;
74531fed
PA
7479
7480 while (1)
7481 {
7482 getpkt (&rs->buf, &rs->buf_size, 0);
7483 if (strcmp (rs->buf, "OK") == 0)
7484 break;
7485 else
722247f1 7486 remote_notif_ack (nc, rs->buf);
74531fed
PA
7487 }
7488 }
722247f1
YQ
7489 else
7490 {
7491 if (notif_debug)
7492 fprintf_unfiltered (gdb_stdlog,
7493 "notif: process: '%s' no pending reply\n",
7494 nc->name);
7495 }
74531fed
PA
7496}
7497
74531fed
PA
7498/* Called when it is decided that STOP_REPLY holds the info of the
7499 event that is to be returned to the core. This function always
7500 destroys STOP_REPLY. */
7501
7502static ptid_t
7503process_stop_reply (struct stop_reply *stop_reply,
7504 struct target_waitstatus *status)
7505{
7506 ptid_t ptid;
7507
7508 *status = stop_reply->ws;
7509 ptid = stop_reply->ptid;
7510
7511 /* If no thread/process was reported by the stub, assume the current
7512 inferior. */
7513 if (ptid_equal (ptid, null_ptid))
7514 ptid = inferior_ptid;
7515
5f3563ea 7516 if (status->kind != TARGET_WAITKIND_EXITED
f2faf941
PA
7517 && status->kind != TARGET_WAITKIND_SIGNALLED
7518 && status->kind != TARGET_WAITKIND_NO_RESUMED)
74531fed 7519 {
5f3563ea
PA
7520 /* Expedited registers. */
7521 if (stop_reply->regcache)
7522 {
217f1f79 7523 struct regcache *regcache
5cd63fda 7524 = get_thread_arch_regcache (ptid, stop_reply->arch);
5f3563ea
PA
7525 cached_reg_t *reg;
7526 int ix;
7527
7528 for (ix = 0;
d1dff226 7529 VEC_iterate (cached_reg_t, stop_reply->regcache, ix, reg);
5f3563ea 7530 ix++)
d1dff226 7531 {
217f1f79 7532 regcache_raw_supply (regcache, reg->num, reg->data);
d1dff226
AH
7533 xfree (reg->data);
7534 }
7535
5f3563ea
PA
7536 VEC_free (cached_reg_t, stop_reply->regcache);
7537 }
74531fed 7538
1941c569 7539 remote_notice_new_inferior (ptid, 0);
7aabaf9d 7540 remote_thread_info *remote_thr = get_remote_thread_info (ptid);
799a2abe
PA
7541 remote_thr->core = stop_reply->core;
7542 remote_thr->stop_reason = stop_reply->stop_reason;
7543 remote_thr->watch_data_address = stop_reply->watch_data_address;
85ad3aaf 7544 remote_thr->vcont_resumed = 0;
74531fed
PA
7545 }
7546
74531fed
PA
7547 stop_reply_xfree (stop_reply);
7548 return ptid;
7549}
7550
7551/* The non-stop mode version of target_wait. */
7552
7553static ptid_t
47608cb1 7554remote_wait_ns (ptid_t ptid, struct target_waitstatus *status, int options)
74531fed
PA
7555{
7556 struct remote_state *rs = get_remote_state ();
74531fed
PA
7557 struct stop_reply *stop_reply;
7558 int ret;
fee9eda9 7559 int is_notif = 0;
74531fed
PA
7560
7561 /* If in non-stop mode, get out of getpkt even if a
7562 notification is received. */
7563
7564 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
fee9eda9 7565 0 /* forever */, &is_notif);
74531fed
PA
7566 while (1)
7567 {
fee9eda9 7568 if (ret != -1 && !is_notif)
74531fed
PA
7569 switch (rs->buf[0])
7570 {
7571 case 'E': /* Error of some sort. */
7572 /* We're out of sync with the target now. Did it continue
7573 or not? We can't tell which thread it was in non-stop,
7574 so just ignore this. */
7575 warning (_("Remote failure reply: %s"), rs->buf);
7576 break;
7577 case 'O': /* Console output. */
7578 remote_console_output (rs->buf + 1);
7579 break;
7580 default:
7581 warning (_("Invalid remote reply: %s"), rs->buf);
7582 break;
7583 }
7584
7585 /* Acknowledge a pending stop reply that may have arrived in the
7586 mean time. */
f48ff2a7 7587 if (rs->notif_state->pending_event[notif_client_stop.id] != NULL)
722247f1 7588 remote_notif_get_pending_events (&notif_client_stop);
74531fed
PA
7589
7590 /* If indeed we noticed a stop reply, we're done. */
7591 stop_reply = queued_stop_reply (ptid);
7592 if (stop_reply != NULL)
7593 return process_stop_reply (stop_reply, status);
7594
47608cb1 7595 /* Still no event. If we're just polling for an event, then
74531fed 7596 return to the event loop. */
47608cb1 7597 if (options & TARGET_WNOHANG)
74531fed
PA
7598 {
7599 status->kind = TARGET_WAITKIND_IGNORE;
7600 return minus_one_ptid;
7601 }
7602
47608cb1 7603 /* Otherwise do a blocking wait. */
74531fed 7604 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
fee9eda9 7605 1 /* forever */, &is_notif);
74531fed
PA
7606 }
7607}
7608
7609/* Wait until the remote machine stops, then return, storing status in
7610 STATUS just as `wait' would. */
7611
7612static ptid_t
47608cb1 7613remote_wait_as (ptid_t ptid, struct target_waitstatus *status, int options)
74531fed
PA
7614{
7615 struct remote_state *rs = get_remote_state ();
74531fed 7616 ptid_t event_ptid = null_ptid;
cea39f65 7617 char *buf;
74531fed
PA
7618 struct stop_reply *stop_reply;
7619
47608cb1
PA
7620 again:
7621
74531fed
PA
7622 status->kind = TARGET_WAITKIND_IGNORE;
7623 status->value.integer = 0;
7624
7625 stop_reply = queued_stop_reply (ptid);
7626 if (stop_reply != NULL)
7627 return process_stop_reply (stop_reply, status);
7628
7629 if (rs->cached_wait_status)
7630 /* Use the cached wait status, but only once. */
7631 rs->cached_wait_status = 0;
7632 else
7633 {
7634 int ret;
722247f1 7635 int is_notif;
567420d1
PA
7636 int forever = ((options & TARGET_WNOHANG) == 0
7637 && wait_forever_enabled_p);
7638
7639 if (!rs->waiting_for_stop_reply)
7640 {
7641 status->kind = TARGET_WAITKIND_NO_RESUMED;
7642 return minus_one_ptid;
7643 }
74531fed 7644
74531fed
PA
7645 /* FIXME: cagney/1999-09-27: If we're in async mode we should
7646 _never_ wait for ever -> test on target_is_async_p().
7647 However, before we do that we need to ensure that the caller
7648 knows how to take the target into/out of async mode. */
722247f1 7649 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
567420d1 7650 forever, &is_notif);
722247f1
YQ
7651
7652 /* GDB gets a notification. Return to core as this event is
7653 not interesting. */
7654 if (ret != -1 && is_notif)
7655 return minus_one_ptid;
567420d1
PA
7656
7657 if (ret == -1 && (options & TARGET_WNOHANG) != 0)
7658 return minus_one_ptid;
74531fed
PA
7659 }
7660
7661 buf = rs->buf;
7662
3a29589a
DJ
7663 /* Assume that the target has acknowledged Ctrl-C unless we receive
7664 an 'F' or 'O' packet. */
7665 if (buf[0] != 'F' && buf[0] != 'O')
7666 rs->ctrlc_pending_p = 0;
7667
74531fed
PA
7668 switch (buf[0])
7669 {
7670 case 'E': /* Error of some sort. */
7671 /* We're out of sync with the target now. Did it continue or
7672 not? Not is more likely, so report a stop. */
29090fb6
LM
7673 rs->waiting_for_stop_reply = 0;
7674
74531fed
PA
7675 warning (_("Remote failure reply: %s"), buf);
7676 status->kind = TARGET_WAITKIND_STOPPED;
a493e3e2 7677 status->value.sig = GDB_SIGNAL_0;
74531fed
PA
7678 break;
7679 case 'F': /* File-I/O request. */
e42e5352
YQ
7680 /* GDB may access the inferior memory while handling the File-I/O
7681 request, but we don't want GDB accessing memory while waiting
7682 for a stop reply. See the comments in putpkt_binary. Set
7683 waiting_for_stop_reply to 0 temporarily. */
7684 rs->waiting_for_stop_reply = 0;
3a29589a
DJ
7685 remote_fileio_request (buf, rs->ctrlc_pending_p);
7686 rs->ctrlc_pending_p = 0;
e42e5352
YQ
7687 /* GDB handled the File-I/O request, and the target is running
7688 again. Keep waiting for events. */
7689 rs->waiting_for_stop_reply = 1;
74531fed 7690 break;
f2faf941 7691 case 'N': case 'T': case 'S': case 'X': case 'W':
74531fed 7692 {
29090fb6
LM
7693 struct stop_reply *stop_reply;
7694
7695 /* There is a stop reply to handle. */
7696 rs->waiting_for_stop_reply = 0;
7697
7698 stop_reply
722247f1
YQ
7699 = (struct stop_reply *) remote_notif_parse (&notif_client_stop,
7700 rs->buf);
74531fed 7701
74531fed 7702 event_ptid = process_stop_reply (stop_reply, status);
c8e38a49
PA
7703 break;
7704 }
7705 case 'O': /* Console output. */
7706 remote_console_output (buf + 1);
c8e38a49
PA
7707 break;
7708 case '\0':
b73be471 7709 if (rs->last_sent_signal != GDB_SIGNAL_0)
c8e38a49
PA
7710 {
7711 /* Zero length reply means that we tried 'S' or 'C' and the
7712 remote system doesn't support it. */
223ffa71 7713 target_terminal::ours_for_output ();
c8e38a49
PA
7714 printf_filtered
7715 ("Can't send signals to this remote system. %s not sent.\n",
b73be471
TT
7716 gdb_signal_to_name (rs->last_sent_signal));
7717 rs->last_sent_signal = GDB_SIGNAL_0;
223ffa71 7718 target_terminal::inferior ();
c8e38a49 7719
f5c4fcd9
TT
7720 strcpy (buf, rs->last_sent_step ? "s" : "c");
7721 putpkt (buf);
c8e38a49 7722 break;
43ff13b4 7723 }
86a73007 7724 /* fallthrough */
c8e38a49
PA
7725 default:
7726 warning (_("Invalid remote reply: %s"), buf);
c8e38a49 7727 break;
43ff13b4 7728 }
c8e38a49 7729
f2faf941
PA
7730 if (status->kind == TARGET_WAITKIND_NO_RESUMED)
7731 return minus_one_ptid;
7732 else if (status->kind == TARGET_WAITKIND_IGNORE)
47608cb1
PA
7733 {
7734 /* Nothing interesting happened. If we're doing a non-blocking
7735 poll, we're done. Otherwise, go back to waiting. */
7736 if (options & TARGET_WNOHANG)
7737 return minus_one_ptid;
7738 else
7739 goto again;
7740 }
74531fed
PA
7741 else if (status->kind != TARGET_WAITKIND_EXITED
7742 && status->kind != TARGET_WAITKIND_SIGNALLED)
82f73884
PA
7743 {
7744 if (!ptid_equal (event_ptid, null_ptid))
47f8a51d 7745 record_currthread (rs, event_ptid);
82f73884
PA
7746 else
7747 event_ptid = inferior_ptid;
43ff13b4 7748 }
74531fed
PA
7749 else
7750 /* A process exit. Invalidate our notion of current thread. */
47f8a51d 7751 record_currthread (rs, minus_one_ptid);
79d7f229 7752
82f73884 7753 return event_ptid;
43ff13b4
JM
7754}
7755
74531fed
PA
7756/* Wait until the remote machine stops, then return, storing status in
7757 STATUS just as `wait' would. */
7758
f6ac5f3d
PA
7759ptid_t
7760remote_target::wait (ptid_t ptid, struct target_waitstatus *status, int options)
c8e38a49
PA
7761{
7762 ptid_t event_ptid;
7763
6efcd9a8 7764 if (target_is_non_stop_p ())
47608cb1 7765 event_ptid = remote_wait_ns (ptid, status, options);
74531fed 7766 else
47608cb1 7767 event_ptid = remote_wait_as (ptid, status, options);
c8e38a49 7768
d9d41e78 7769 if (target_is_async_p ())
c8e38a49 7770 {
74531fed
PA
7771 /* If there are are events left in the queue tell the event loop
7772 to return here. */
722247f1 7773 if (!QUEUE_is_empty (stop_reply_p, stop_reply_queue))
74531fed 7774 mark_async_event_handler (remote_async_inferior_event_token);
c8e38a49 7775 }
c8e38a49
PA
7776
7777 return event_ptid;
7778}
7779
74ca34ce 7780/* Fetch a single register using a 'p' packet. */
c906108c 7781
b96ec7ac 7782static int
56be3814 7783fetch_register_using_p (struct regcache *regcache, struct packet_reg *reg)
b96ec7ac 7784{
ac7936df 7785 struct gdbarch *gdbarch = regcache->arch ();
b96ec7ac 7786 struct remote_state *rs = get_remote_state ();
2e9f7625 7787 char *buf, *p;
9890e433 7788 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
b96ec7ac
AC
7789 int i;
7790
4082afcc 7791 if (packet_support (PACKET_p) == PACKET_DISABLE)
74ca34ce
DJ
7792 return 0;
7793
7794 if (reg->pnum == -1)
7795 return 0;
7796
2e9f7625 7797 p = rs->buf;
fcad0fa4 7798 *p++ = 'p';
74ca34ce 7799 p += hexnumstr (p, reg->pnum);
fcad0fa4 7800 *p++ = '\0';
1f4437a4
MS
7801 putpkt (rs->buf);
7802 getpkt (&rs->buf, &rs->buf_size, 0);
3f9a994c 7803
2e9f7625
DJ
7804 buf = rs->buf;
7805
74ca34ce
DJ
7806 switch (packet_ok (buf, &remote_protocol_packets[PACKET_p]))
7807 {
7808 case PACKET_OK:
7809 break;
7810 case PACKET_UNKNOWN:
7811 return 0;
7812 case PACKET_ERROR:
27a9c0bf 7813 error (_("Could not fetch register \"%s\"; remote failure reply '%s'"),
ac7936df 7814 gdbarch_register_name (regcache->arch (),
27a9c0bf
MS
7815 reg->regnum),
7816 buf);
74ca34ce 7817 }
3f9a994c
JB
7818
7819 /* If this register is unfetchable, tell the regcache. */
7820 if (buf[0] == 'x')
8480adf2 7821 {
56be3814 7822 regcache_raw_supply (regcache, reg->regnum, NULL);
8480adf2 7823 return 1;
b96ec7ac 7824 }
b96ec7ac 7825
3f9a994c
JB
7826 /* Otherwise, parse and supply the value. */
7827 p = buf;
7828 i = 0;
7829 while (p[0] != 0)
7830 {
7831 if (p[1] == 0)
74ca34ce 7832 error (_("fetch_register_using_p: early buf termination"));
3f9a994c
JB
7833
7834 regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
7835 p += 2;
7836 }
56be3814 7837 regcache_raw_supply (regcache, reg->regnum, regp);
3f9a994c 7838 return 1;
b96ec7ac
AC
7839}
7840
74ca34ce
DJ
7841/* Fetch the registers included in the target's 'g' packet. */
7842
29709017
DJ
7843static int
7844send_g_packet (void)
c906108c 7845{
d01949b6 7846 struct remote_state *rs = get_remote_state ();
cea39f65 7847 int buf_len;
c906108c 7848
bba74b36 7849 xsnprintf (rs->buf, get_remote_packet_size (), "g");
b75abf5b
AK
7850 putpkt (rs->buf);
7851 getpkt (&rs->buf, &rs->buf_size, 0);
7852 if (packet_check_result (rs->buf) == PACKET_ERROR)
7853 error (_("Could not read registers; remote failure reply '%s'"),
7854 rs->buf);
c906108c 7855
29709017
DJ
7856 /* We can get out of synch in various cases. If the first character
7857 in the buffer is not a hex character, assume that has happened
7858 and try to fetch another packet to read. */
7859 while ((rs->buf[0] < '0' || rs->buf[0] > '9')
7860 && (rs->buf[0] < 'A' || rs->buf[0] > 'F')
7861 && (rs->buf[0] < 'a' || rs->buf[0] > 'f')
7862 && rs->buf[0] != 'x') /* New: unavailable register value. */
7863 {
7864 if (remote_debug)
7865 fprintf_unfiltered (gdb_stdlog,
7866 "Bad register packet; fetching a new packet\n");
7867 getpkt (&rs->buf, &rs->buf_size, 0);
7868 }
7869
74ca34ce
DJ
7870 buf_len = strlen (rs->buf);
7871
7872 /* Sanity check the received packet. */
7873 if (buf_len % 2 != 0)
7874 error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf);
29709017
DJ
7875
7876 return buf_len / 2;
7877}
7878
7879static void
56be3814 7880process_g_packet (struct regcache *regcache)
29709017 7881{
ac7936df 7882 struct gdbarch *gdbarch = regcache->arch ();
29709017 7883 struct remote_state *rs = get_remote_state ();
9d6eea31 7884 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
29709017
DJ
7885 int i, buf_len;
7886 char *p;
7887 char *regs;
7888
7889 buf_len = strlen (rs->buf);
7890
7891 /* Further sanity checks, with knowledge of the architecture. */
74ca34ce 7892 if (buf_len > 2 * rsa->sizeof_g_packet)
fc809827
SM
7893 error (_("Remote 'g' packet reply is too long (expected %ld bytes, got %d "
7894 "bytes): %s"), rsa->sizeof_g_packet, buf_len / 2, rs->buf);
74ca34ce
DJ
7895
7896 /* Save the size of the packet sent to us by the target. It is used
7897 as a heuristic when determining the max size of packets that the
7898 target can safely receive. */
7899 if (rsa->actual_register_packet_size == 0)
7900 rsa->actual_register_packet_size = buf_len;
7901
7902 /* If this is smaller than we guessed the 'g' packet would be,
7903 update our records. A 'g' reply that doesn't include a register's
7904 value implies either that the register is not available, or that
7905 the 'p' packet must be used. */
7906 if (buf_len < 2 * rsa->sizeof_g_packet)
b323314b 7907 {
9dc193c3 7908 long sizeof_g_packet = buf_len / 2;
74ca34ce 7909
4a22f64d 7910 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
b96ec7ac 7911 {
9dc193c3
LF
7912 long offset = rsa->regs[i].offset;
7913 long reg_size = register_size (gdbarch, i);
7914
74ca34ce
DJ
7915 if (rsa->regs[i].pnum == -1)
7916 continue;
7917
9dc193c3 7918 if (offset >= sizeof_g_packet)
74ca34ce 7919 rsa->regs[i].in_g_packet = 0;
9dc193c3
LF
7920 else if (offset + reg_size > sizeof_g_packet)
7921 error (_("Truncated register %d in remote 'g' packet"), i);
b96ec7ac 7922 else
74ca34ce 7923 rsa->regs[i].in_g_packet = 1;
b96ec7ac 7924 }
9dc193c3
LF
7925
7926 /* Looks valid enough, we can assume this is the correct length
7927 for a 'g' packet. It's important not to adjust
7928 rsa->sizeof_g_packet if we have truncated registers otherwise
7929 this "if" won't be run the next time the method is called
7930 with a packet of the same size and one of the internal errors
7931 below will trigger instead. */
7932 rsa->sizeof_g_packet = sizeof_g_packet;
74ca34ce 7933 }
b323314b 7934
224c3ddb 7935 regs = (char *) alloca (rsa->sizeof_g_packet);
c906108c
SS
7936
7937 /* Unimplemented registers read as all bits zero. */
ea9c271d 7938 memset (regs, 0, rsa->sizeof_g_packet);
c906108c 7939
c906108c
SS
7940 /* Reply describes registers byte by byte, each byte encoded as two
7941 hex characters. Suck them all up, then supply them to the
7942 register cacheing/storage mechanism. */
7943
74ca34ce 7944 p = rs->buf;
ea9c271d 7945 for (i = 0; i < rsa->sizeof_g_packet; i++)
c906108c 7946 {
74ca34ce
DJ
7947 if (p[0] == 0 || p[1] == 0)
7948 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
7949 internal_error (__FILE__, __LINE__,
9b20d036 7950 _("unexpected end of 'g' packet reply"));
74ca34ce 7951
c906108c 7952 if (p[0] == 'x' && p[1] == 'x')
c5aa993b 7953 regs[i] = 0; /* 'x' */
c906108c
SS
7954 else
7955 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
7956 p += 2;
7957 }
7958
a744cf53
MS
7959 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
7960 {
7961 struct packet_reg *r = &rsa->regs[i];
9dc193c3 7962 long reg_size = register_size (gdbarch, i);
a744cf53
MS
7963
7964 if (r->in_g_packet)
7965 {
9dc193c3 7966 if ((r->offset + reg_size) * 2 > strlen (rs->buf))
a744cf53
MS
7967 /* This shouldn't happen - we adjusted in_g_packet above. */
7968 internal_error (__FILE__, __LINE__,
9b20d036 7969 _("unexpected end of 'g' packet reply"));
a744cf53
MS
7970 else if (rs->buf[r->offset * 2] == 'x')
7971 {
7972 gdb_assert (r->offset * 2 < strlen (rs->buf));
7973 /* The register isn't available, mark it as such (at
7974 the same time setting the value to zero). */
7975 regcache_raw_supply (regcache, r->regnum, NULL);
7976 }
7977 else
7978 regcache_raw_supply (regcache, r->regnum,
7979 regs + r->offset);
7980 }
7981 }
c906108c
SS
7982}
7983
29709017 7984static void
56be3814 7985fetch_registers_using_g (struct regcache *regcache)
29709017
DJ
7986{
7987 send_g_packet ();
56be3814 7988 process_g_packet (regcache);
29709017
DJ
7989}
7990
e6e4e701
PA
7991/* Make the remote selected traceframe match GDB's selected
7992 traceframe. */
7993
7994static void
7995set_remote_traceframe (void)
7996{
7997 int newnum;
262e1174 7998 struct remote_state *rs = get_remote_state ();
e6e4e701 7999
262e1174 8000 if (rs->remote_traceframe_number == get_traceframe_number ())
e6e4e701
PA
8001 return;
8002
8003 /* Avoid recursion, remote_trace_find calls us again. */
262e1174 8004 rs->remote_traceframe_number = get_traceframe_number ();
e6e4e701
PA
8005
8006 newnum = target_trace_find (tfind_number,
8007 get_traceframe_number (), 0, 0, NULL);
8008
8009 /* Should not happen. If it does, all bets are off. */
8010 if (newnum != get_traceframe_number ())
8011 warning (_("could not set remote traceframe"));
8012}
8013
f6ac5f3d
PA
8014void
8015remote_target::fetch_registers (struct regcache *regcache, int regnum)
74ca34ce 8016{
ac7936df 8017 struct gdbarch *gdbarch = regcache->arch ();
9d6eea31
PA
8018 struct remote_state *rs = get_remote_state ();
8019 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
74ca34ce
DJ
8020 int i;
8021
e6e4e701 8022 set_remote_traceframe ();
bcc0c096 8023 set_general_thread (regcache_get_ptid (regcache));
74ca34ce
DJ
8024
8025 if (regnum >= 0)
8026 {
5cd63fda 8027 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
a744cf53 8028
74ca34ce
DJ
8029 gdb_assert (reg != NULL);
8030
8031 /* If this register might be in the 'g' packet, try that first -
8032 we are likely to read more than one register. If this is the
8033 first 'g' packet, we might be overly optimistic about its
8034 contents, so fall back to 'p'. */
8035 if (reg->in_g_packet)
8036 {
56be3814 8037 fetch_registers_using_g (regcache);
74ca34ce
DJ
8038 if (reg->in_g_packet)
8039 return;
8040 }
8041
56be3814 8042 if (fetch_register_using_p (regcache, reg))
74ca34ce
DJ
8043 return;
8044
8045 /* This register is not available. */
56be3814 8046 regcache_raw_supply (regcache, reg->regnum, NULL);
74ca34ce
DJ
8047
8048 return;
8049 }
8050
56be3814 8051 fetch_registers_using_g (regcache);
74ca34ce 8052
5cd63fda 8053 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
74ca34ce 8054 if (!rsa->regs[i].in_g_packet)
56be3814 8055 if (!fetch_register_using_p (regcache, &rsa->regs[i]))
74ca34ce
DJ
8056 {
8057 /* This register is not available. */
56be3814 8058 regcache_raw_supply (regcache, i, NULL);
74ca34ce
DJ
8059 }
8060}
8061
c906108c
SS
8062/* Prepare to store registers. Since we may send them all (using a
8063 'G' request), we have to read out the ones we don't want to change
8064 first. */
8065
f6ac5f3d
PA
8066void
8067remote_target::prepare_to_store (struct regcache *regcache)
c906108c 8068{
9d6eea31
PA
8069 struct remote_state *rs = get_remote_state ();
8070 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
cf0e1e0d 8071 int i;
cf0e1e0d 8072
c906108c 8073 /* Make sure the entire registers array is valid. */
4082afcc 8074 switch (packet_support (PACKET_P))
5a2468f5
JM
8075 {
8076 case PACKET_DISABLE:
8077 case PACKET_SUPPORT_UNKNOWN:
cf0e1e0d 8078 /* Make sure all the necessary registers are cached. */
ac7936df 8079 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
ea9c271d 8080 if (rsa->regs[i].in_g_packet)
8e368124 8081 regcache_raw_update (regcache, rsa->regs[i].regnum);
5a2468f5
JM
8082 break;
8083 case PACKET_ENABLE:
8084 break;
8085 }
8086}
8087
ad10f812 8088/* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
23860348 8089 packet was not recognized. */
5a2468f5
JM
8090
8091static int
1f4437a4
MS
8092store_register_using_P (const struct regcache *regcache,
8093 struct packet_reg *reg)
5a2468f5 8094{
ac7936df 8095 struct gdbarch *gdbarch = regcache->arch ();
d01949b6 8096 struct remote_state *rs = get_remote_state ();
5a2468f5 8097 /* Try storing a single register. */
6d820c5c 8098 char *buf = rs->buf;
9890e433 8099 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
5a2468f5 8100 char *p;
5a2468f5 8101
4082afcc 8102 if (packet_support (PACKET_P) == PACKET_DISABLE)
74ca34ce
DJ
8103 return 0;
8104
8105 if (reg->pnum == -1)
8106 return 0;
8107
ea9c271d 8108 xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
5a2468f5 8109 p = buf + strlen (buf);
56be3814 8110 regcache_raw_collect (regcache, reg->regnum, regp);
4a22f64d 8111 bin2hex (regp, p, register_size (gdbarch, reg->regnum));
1f4437a4
MS
8112 putpkt (rs->buf);
8113 getpkt (&rs->buf, &rs->buf_size, 0);
5a2468f5 8114
74ca34ce
DJ
8115 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P]))
8116 {
8117 case PACKET_OK:
8118 return 1;
8119 case PACKET_ERROR:
27a9c0bf
MS
8120 error (_("Could not write register \"%s\"; remote failure reply '%s'"),
8121 gdbarch_register_name (gdbarch, reg->regnum), rs->buf);
74ca34ce
DJ
8122 case PACKET_UNKNOWN:
8123 return 0;
8124 default:
8125 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
8126 }
c906108c
SS
8127}
8128
23860348
MS
8129/* Store register REGNUM, or all registers if REGNUM == -1, from the
8130 contents of the register cache buffer. FIXME: ignores errors. */
c906108c
SS
8131
8132static void
56be3814 8133store_registers_using_G (const struct regcache *regcache)
c906108c 8134{
d01949b6 8135 struct remote_state *rs = get_remote_state ();
9d6eea31 8136 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
cfd77fa1 8137 gdb_byte *regs;
c906108c
SS
8138 char *p;
8139
193cb69f
AC
8140 /* Extract all the registers in the regcache copying them into a
8141 local buffer. */
8142 {
b323314b 8143 int i;
a744cf53 8144
224c3ddb 8145 regs = (gdb_byte *) alloca (rsa->sizeof_g_packet);
ea9c271d 8146 memset (regs, 0, rsa->sizeof_g_packet);
ac7936df 8147 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
193cb69f 8148 {
ea9c271d 8149 struct packet_reg *r = &rsa->regs[i];
a744cf53 8150
b323314b 8151 if (r->in_g_packet)
56be3814 8152 regcache_raw_collect (regcache, r->regnum, regs + r->offset);
193cb69f
AC
8153 }
8154 }
c906108c
SS
8155
8156 /* Command describes registers byte by byte,
8157 each byte encoded as two hex characters. */
6d820c5c 8158 p = rs->buf;
193cb69f 8159 *p++ = 'G';
74ca34ce 8160 bin2hex (regs, p, rsa->sizeof_g_packet);
1f4437a4
MS
8161 putpkt (rs->buf);
8162 getpkt (&rs->buf, &rs->buf_size, 0);
8163 if (packet_check_result (rs->buf) == PACKET_ERROR)
27a9c0bf
MS
8164 error (_("Could not write registers; remote failure reply '%s'"),
8165 rs->buf);
c906108c 8166}
74ca34ce
DJ
8167
8168/* Store register REGNUM, or all registers if REGNUM == -1, from the contents
8169 of the register cache buffer. FIXME: ignores errors. */
8170
f6ac5f3d
PA
8171void
8172remote_target::store_registers (struct regcache *regcache, int regnum)
74ca34ce 8173{
5cd63fda 8174 struct gdbarch *gdbarch = regcache->arch ();
9d6eea31
PA
8175 struct remote_state *rs = get_remote_state ();
8176 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
74ca34ce
DJ
8177 int i;
8178
e6e4e701 8179 set_remote_traceframe ();
bcc0c096 8180 set_general_thread (regcache_get_ptid (regcache));
74ca34ce
DJ
8181
8182 if (regnum >= 0)
8183 {
5cd63fda 8184 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
a744cf53 8185
74ca34ce
DJ
8186 gdb_assert (reg != NULL);
8187
8188 /* Always prefer to store registers using the 'P' packet if
8189 possible; we often change only a small number of registers.
8190 Sometimes we change a larger number; we'd need help from a
8191 higher layer to know to use 'G'. */
56be3814 8192 if (store_register_using_P (regcache, reg))
74ca34ce
DJ
8193 return;
8194
8195 /* For now, don't complain if we have no way to write the
8196 register. GDB loses track of unavailable registers too
8197 easily. Some day, this may be an error. We don't have
0df8b418 8198 any way to read the register, either... */
74ca34ce
DJ
8199 if (!reg->in_g_packet)
8200 return;
8201
56be3814 8202 store_registers_using_G (regcache);
74ca34ce
DJ
8203 return;
8204 }
8205
56be3814 8206 store_registers_using_G (regcache);
74ca34ce 8207
5cd63fda 8208 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
74ca34ce 8209 if (!rsa->regs[i].in_g_packet)
56be3814 8210 if (!store_register_using_P (regcache, &rsa->regs[i]))
74ca34ce
DJ
8211 /* See above for why we do not issue an error here. */
8212 continue;
8213}
c906108c
SS
8214\f
8215
8216/* Return the number of hex digits in num. */
8217
8218static int
fba45db2 8219hexnumlen (ULONGEST num)
c906108c
SS
8220{
8221 int i;
8222
8223 for (i = 0; num != 0; i++)
8224 num >>= 4;
8225
325fac50 8226 return std::max (i, 1);
c906108c
SS
8227}
8228
2df3850c 8229/* Set BUF to the minimum number of hex digits representing NUM. */
c906108c
SS
8230
8231static int
fba45db2 8232hexnumstr (char *buf, ULONGEST num)
c906108c 8233{
c906108c 8234 int len = hexnumlen (num);
a744cf53 8235
2df3850c
JM
8236 return hexnumnstr (buf, num, len);
8237}
8238
c906108c 8239
2df3850c 8240/* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
c906108c 8241
2df3850c 8242static int
fba45db2 8243hexnumnstr (char *buf, ULONGEST num, int width)
2df3850c
JM
8244{
8245 int i;
8246
8247 buf[width] = '\0';
8248
8249 for (i = width - 1; i >= 0; i--)
c906108c 8250 {
c5aa993b 8251 buf[i] = "0123456789abcdef"[(num & 0xf)];
c906108c
SS
8252 num >>= 4;
8253 }
8254
2df3850c 8255 return width;
c906108c
SS
8256}
8257
23860348 8258/* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
c906108c
SS
8259
8260static CORE_ADDR
fba45db2 8261remote_address_masked (CORE_ADDR addr)
c906108c 8262{
883b9c6c 8263 unsigned int address_size = remote_address_size;
a744cf53 8264
911c95a5
UW
8265 /* If "remoteaddresssize" was not set, default to target address size. */
8266 if (!address_size)
f5656ead 8267 address_size = gdbarch_addr_bit (target_gdbarch ());
911c95a5
UW
8268
8269 if (address_size > 0
8270 && address_size < (sizeof (ULONGEST) * 8))
c906108c
SS
8271 {
8272 /* Only create a mask when that mask can safely be constructed
23860348 8273 in a ULONGEST variable. */
c906108c 8274 ULONGEST mask = 1;
a744cf53 8275
911c95a5 8276 mask = (mask << address_size) - 1;
c906108c
SS
8277 addr &= mask;
8278 }
8279 return addr;
8280}
8281
8282/* Determine whether the remote target supports binary downloading.
8283 This is accomplished by sending a no-op memory write of zero length
8284 to the target at the specified address. It does not suffice to send
23860348
MS
8285 the whole packet, since many stubs strip the eighth bit and
8286 subsequently compute a wrong checksum, which causes real havoc with
8287 remote_write_bytes.
7a292a7a 8288
96baa820 8289 NOTE: This can still lose if the serial line is not eight-bit
0df8b418 8290 clean. In cases like this, the user should clear "remote
23860348 8291 X-packet". */
96baa820 8292
c906108c 8293static void
fba45db2 8294check_binary_download (CORE_ADDR addr)
c906108c 8295{
d01949b6 8296 struct remote_state *rs = get_remote_state ();
24b06219 8297
4082afcc 8298 switch (packet_support (PACKET_X))
c906108c 8299 {
96baa820
JM
8300 case PACKET_DISABLE:
8301 break;
8302 case PACKET_ENABLE:
8303 break;
8304 case PACKET_SUPPORT_UNKNOWN:
8305 {
96baa820 8306 char *p;
802188a7 8307
2e9f7625 8308 p = rs->buf;
96baa820
JM
8309 *p++ = 'X';
8310 p += hexnumstr (p, (ULONGEST) addr);
8311 *p++ = ',';
8312 p += hexnumstr (p, (ULONGEST) 0);
8313 *p++ = ':';
8314 *p = '\0';
802188a7 8315
2e9f7625 8316 putpkt_binary (rs->buf, (int) (p - rs->buf));
6d820c5c 8317 getpkt (&rs->buf, &rs->buf_size, 0);
c906108c 8318
2e9f7625 8319 if (rs->buf[0] == '\0')
96baa820
JM
8320 {
8321 if (remote_debug)
8322 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
8323 "binary downloading NOT "
8324 "supported by target\n");
444abaca 8325 remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
96baa820
JM
8326 }
8327 else
8328 {
8329 if (remote_debug)
8330 fprintf_unfiltered (gdb_stdlog,
64b9b334 8331 "binary downloading supported by target\n");
444abaca 8332 remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
96baa820
JM
8333 }
8334 break;
8335 }
c906108c
SS
8336 }
8337}
8338
124e13d9
SM
8339/* Helper function to resize the payload in order to try to get a good
8340 alignment. We try to write an amount of data such that the next write will
8341 start on an address aligned on REMOTE_ALIGN_WRITES. */
8342
8343static int
8344align_for_efficient_write (int todo, CORE_ADDR memaddr)
8345{
8346 return ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr;
8347}
8348
c906108c
SS
8349/* Write memory data directly to the remote machine.
8350 This does not inform the data cache; the data cache uses this.
a76d924d 8351 HEADER is the starting part of the packet.
c906108c
SS
8352 MEMADDR is the address in the remote memory space.
8353 MYADDR is the address of the buffer in our space.
124e13d9
SM
8354 LEN_UNITS is the number of addressable units to write.
8355 UNIT_SIZE is the length in bytes of an addressable unit.
a76d924d
DJ
8356 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
8357 should send data as binary ('X'), or hex-encoded ('M').
8358
8359 The function creates packet of the form
8360 <HEADER><ADDRESS>,<LENGTH>:<DATA>
8361
124e13d9 8362 where encoding of <DATA> is terminated by PACKET_FORMAT.
a76d924d
DJ
8363
8364 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
8365 are omitted.
8366
9b409511 8367 Return the transferred status, error or OK (an
124e13d9
SM
8368 'enum target_xfer_status' value). Save the number of addressable units
8369 transferred in *XFERED_LEN_UNITS. Only transfer a single packet.
8370
8371 On a platform with an addressable memory size of 2 bytes (UNIT_SIZE == 2), an
8372 exchange between gdb and the stub could look like (?? in place of the
8373 checksum):
8374
8375 -> $m1000,4#??
8376 <- aaaabbbbccccdddd
8377
8378 -> $M1000,3:eeeeffffeeee#??
8379 <- OK
8380
8381 -> $m1000,4#??
8382 <- eeeeffffeeeedddd */
c906108c 8383
9b409511 8384static enum target_xfer_status
a76d924d 8385remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
124e13d9
SM
8386 const gdb_byte *myaddr, ULONGEST len_units,
8387 int unit_size, ULONGEST *xfered_len_units,
8388 char packet_format, int use_length)
c906108c 8389{
6d820c5c 8390 struct remote_state *rs = get_remote_state ();
cfd77fa1 8391 char *p;
a76d924d
DJ
8392 char *plen = NULL;
8393 int plenlen = 0;
124e13d9
SM
8394 int todo_units;
8395 int units_written;
8396 int payload_capacity_bytes;
8397 int payload_length_bytes;
a76d924d
DJ
8398
8399 if (packet_format != 'X' && packet_format != 'M')
8400 internal_error (__FILE__, __LINE__,
9b20d036 8401 _("remote_write_bytes_aux: bad packet format"));
c906108c 8402
124e13d9 8403 if (len_units == 0)
9b409511 8404 return TARGET_XFER_EOF;
b2182ed2 8405
124e13d9 8406 payload_capacity_bytes = get_memory_write_packet_size ();
2bc416ba 8407
6d820c5c
DJ
8408 /* The packet buffer will be large enough for the payload;
8409 get_memory_packet_size ensures this. */
a76d924d 8410 rs->buf[0] = '\0';
c906108c 8411
a257b5bb 8412 /* Compute the size of the actual payload by subtracting out the
0df8b418
MS
8413 packet header and footer overhead: "$M<memaddr>,<len>:...#nn". */
8414
124e13d9 8415 payload_capacity_bytes -= strlen ("$,:#NN");
a76d924d 8416 if (!use_length)
0df8b418 8417 /* The comma won't be used. */
124e13d9
SM
8418 payload_capacity_bytes += 1;
8419 payload_capacity_bytes -= strlen (header);
8420 payload_capacity_bytes -= hexnumlen (memaddr);
c906108c 8421
a76d924d 8422 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
917317f4 8423
a76d924d
DJ
8424 strcat (rs->buf, header);
8425 p = rs->buf + strlen (header);
8426
8427 /* Compute a best guess of the number of bytes actually transfered. */
8428 if (packet_format == 'X')
c906108c 8429 {
23860348 8430 /* Best guess at number of bytes that will fit. */
325fac50
PA
8431 todo_units = std::min (len_units,
8432 (ULONGEST) payload_capacity_bytes / unit_size);
a76d924d 8433 if (use_length)
124e13d9 8434 payload_capacity_bytes -= hexnumlen (todo_units);
325fac50 8435 todo_units = std::min (todo_units, payload_capacity_bytes / unit_size);
a76d924d
DJ
8436 }
8437 else
8438 {
124e13d9 8439 /* Number of bytes that will fit. */
325fac50
PA
8440 todo_units
8441 = std::min (len_units,
8442 (ULONGEST) (payload_capacity_bytes / unit_size) / 2);
a76d924d 8443 if (use_length)
124e13d9 8444 payload_capacity_bytes -= hexnumlen (todo_units);
325fac50
PA
8445 todo_units = std::min (todo_units,
8446 (payload_capacity_bytes / unit_size) / 2);
917317f4 8447 }
a76d924d 8448
124e13d9 8449 if (todo_units <= 0)
3de11b2e 8450 internal_error (__FILE__, __LINE__,
405f8e94 8451 _("minimum packet size too small to write data"));
802188a7 8452
6765f3e5
DJ
8453 /* If we already need another packet, then try to align the end
8454 of this packet to a useful boundary. */
124e13d9
SM
8455 if (todo_units > 2 * REMOTE_ALIGN_WRITES && todo_units < len_units)
8456 todo_units = align_for_efficient_write (todo_units, memaddr);
6765f3e5 8457
a257b5bb 8458 /* Append "<memaddr>". */
917317f4
JM
8459 memaddr = remote_address_masked (memaddr);
8460 p += hexnumstr (p, (ULONGEST) memaddr);
a257b5bb 8461
a76d924d
DJ
8462 if (use_length)
8463 {
8464 /* Append ",". */
8465 *p++ = ',';
802188a7 8466
124e13d9
SM
8467 /* Append the length and retain its location and size. It may need to be
8468 adjusted once the packet body has been created. */
a76d924d 8469 plen = p;
124e13d9 8470 plenlen = hexnumstr (p, (ULONGEST) todo_units);
a76d924d
DJ
8471 p += plenlen;
8472 }
a257b5bb
AC
8473
8474 /* Append ":". */
917317f4
JM
8475 *p++ = ':';
8476 *p = '\0';
802188a7 8477
a257b5bb 8478 /* Append the packet body. */
a76d924d 8479 if (packet_format == 'X')
917317f4 8480 {
917317f4
JM
8481 /* Binary mode. Send target system values byte by byte, in
8482 increasing byte addresses. Only escape certain critical
8483 characters. */
124e13d9
SM
8484 payload_length_bytes =
8485 remote_escape_output (myaddr, todo_units, unit_size, (gdb_byte *) p,
8486 &units_written, payload_capacity_bytes);
6765f3e5 8487
124e13d9 8488 /* If not all TODO units fit, then we'll need another packet. Make
9b7194bc
DJ
8489 a second try to keep the end of the packet aligned. Don't do
8490 this if the packet is tiny. */
124e13d9 8491 if (units_written < todo_units && units_written > 2 * REMOTE_ALIGN_WRITES)
6765f3e5 8492 {
124e13d9
SM
8493 int new_todo_units;
8494
8495 new_todo_units = align_for_efficient_write (units_written, memaddr);
8496
8497 if (new_todo_units != units_written)
8498 payload_length_bytes =
8499 remote_escape_output (myaddr, new_todo_units, unit_size,
8500 (gdb_byte *) p, &units_written,
8501 payload_capacity_bytes);
6765f3e5
DJ
8502 }
8503
124e13d9
SM
8504 p += payload_length_bytes;
8505 if (use_length && units_written < todo_units)
c906108c 8506 {
802188a7 8507 /* Escape chars have filled up the buffer prematurely,
124e13d9 8508 and we have actually sent fewer units than planned.
917317f4
JM
8509 Fix-up the length field of the packet. Use the same
8510 number of characters as before. */
124e13d9
SM
8511 plen += hexnumnstr (plen, (ULONGEST) units_written,
8512 plenlen);
917317f4 8513 *plen = ':'; /* overwrite \0 from hexnumnstr() */
c906108c 8514 }
a76d924d
DJ
8515 }
8516 else
8517 {
917317f4
JM
8518 /* Normal mode: Send target system values byte by byte, in
8519 increasing byte addresses. Each byte is encoded as a two hex
8520 value. */
124e13d9
SM
8521 p += 2 * bin2hex (myaddr, p, todo_units * unit_size);
8522 units_written = todo_units;
c906108c 8523 }
802188a7 8524
2e9f7625 8525 putpkt_binary (rs->buf, (int) (p - rs->buf));
6d820c5c 8526 getpkt (&rs->buf, &rs->buf_size, 0);
802188a7 8527
2e9f7625 8528 if (rs->buf[0] == 'E')
00d84524 8529 return TARGET_XFER_E_IO;
802188a7 8530
124e13d9
SM
8531 /* Return UNITS_WRITTEN, not TODO_UNITS, in case escape chars caused us to
8532 send fewer units than we'd planned. */
8533 *xfered_len_units = (ULONGEST) units_written;
92ffd475 8534 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
c906108c
SS
8535}
8536
a76d924d
DJ
8537/* Write memory data directly to the remote machine.
8538 This does not inform the data cache; the data cache uses this.
8539 MEMADDR is the address in the remote memory space.
8540 MYADDR is the address of the buffer in our space.
8541 LEN is the number of bytes.
8542
9b409511
YQ
8543 Return the transferred status, error or OK (an
8544 'enum target_xfer_status' value). Save the number of bytes
8545 transferred in *XFERED_LEN. Only transfer a single packet. */
a76d924d 8546
9b409511
YQ
8547static enum target_xfer_status
8548remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr, ULONGEST len,
124e13d9 8549 int unit_size, ULONGEST *xfered_len)
a76d924d 8550{
a121b7c1 8551 const char *packet_format = NULL;
a76d924d
DJ
8552
8553 /* Check whether the target supports binary download. */
8554 check_binary_download (memaddr);
8555
4082afcc 8556 switch (packet_support (PACKET_X))
a76d924d
DJ
8557 {
8558 case PACKET_ENABLE:
8559 packet_format = "X";
8560 break;
8561 case PACKET_DISABLE:
8562 packet_format = "M";
8563 break;
8564 case PACKET_SUPPORT_UNKNOWN:
8565 internal_error (__FILE__, __LINE__,
8566 _("remote_write_bytes: bad internal state"));
8567 default:
8568 internal_error (__FILE__, __LINE__, _("bad switch"));
8569 }
8570
8571 return remote_write_bytes_aux (packet_format,
124e13d9 8572 memaddr, myaddr, len, unit_size, xfered_len,
9b409511 8573 packet_format[0], 1);
a76d924d
DJ
8574}
8575
9217e74e
YQ
8576/* Read memory data directly from the remote machine.
8577 This does not use the data cache; the data cache uses this.
8578 MEMADDR is the address in the remote memory space.
8579 MYADDR is the address of the buffer in our space.
124e13d9
SM
8580 LEN_UNITS is the number of addressable memory units to read..
8581 UNIT_SIZE is the length in bytes of an addressable unit.
9217e74e
YQ
8582
8583 Return the transferred status, error or OK (an
8584 'enum target_xfer_status' value). Save the number of bytes
124e13d9
SM
8585 transferred in *XFERED_LEN_UNITS.
8586
8587 See the comment of remote_write_bytes_aux for an example of
8588 memory read/write exchange between gdb and the stub. */
9217e74e
YQ
8589
8590static enum target_xfer_status
124e13d9
SM
8591remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr, ULONGEST len_units,
8592 int unit_size, ULONGEST *xfered_len_units)
9217e74e
YQ
8593{
8594 struct remote_state *rs = get_remote_state ();
124e13d9 8595 int buf_size_bytes; /* Max size of packet output buffer. */
9217e74e 8596 char *p;
124e13d9
SM
8597 int todo_units;
8598 int decoded_bytes;
9217e74e 8599
124e13d9 8600 buf_size_bytes = get_memory_read_packet_size ();
9217e74e
YQ
8601 /* The packet buffer will be large enough for the payload;
8602 get_memory_packet_size ensures this. */
8603
124e13d9 8604 /* Number of units that will fit. */
325fac50
PA
8605 todo_units = std::min (len_units,
8606 (ULONGEST) (buf_size_bytes / unit_size) / 2);
9217e74e
YQ
8607
8608 /* Construct "m"<memaddr>","<len>". */
8609 memaddr = remote_address_masked (memaddr);
8610 p = rs->buf;
8611 *p++ = 'm';
8612 p += hexnumstr (p, (ULONGEST) memaddr);
8613 *p++ = ',';
124e13d9 8614 p += hexnumstr (p, (ULONGEST) todo_units);
9217e74e
YQ
8615 *p = '\0';
8616 putpkt (rs->buf);
8617 getpkt (&rs->buf, &rs->buf_size, 0);
8618 if (rs->buf[0] == 'E'
8619 && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2])
8620 && rs->buf[3] == '\0')
8621 return TARGET_XFER_E_IO;
8622 /* Reply describes memory byte by byte, each byte encoded as two hex
8623 characters. */
8624 p = rs->buf;
124e13d9 8625 decoded_bytes = hex2bin (p, myaddr, todo_units * unit_size);
9217e74e 8626 /* Return what we have. Let higher layers handle partial reads. */
124e13d9 8627 *xfered_len_units = (ULONGEST) (decoded_bytes / unit_size);
92ffd475 8628 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
9217e74e
YQ
8629}
8630
b55fbac4
YQ
8631/* Using the set of read-only target sections of remote, read live
8632 read-only memory.
8acf9577
YQ
8633
8634 For interface/parameters/return description see target.h,
8635 to_xfer_partial. */
8636
8637static enum target_xfer_status
b55fbac4
YQ
8638remote_xfer_live_readonly_partial (struct target_ops *ops, gdb_byte *readbuf,
8639 ULONGEST memaddr, ULONGEST len,
124e13d9 8640 int unit_size, ULONGEST *xfered_len)
8acf9577
YQ
8641{
8642 struct target_section *secp;
8643 struct target_section_table *table;
8644
8645 secp = target_section_by_addr (ops, memaddr);
8646 if (secp != NULL
8647 && (bfd_get_section_flags (secp->the_bfd_section->owner,
8648 secp->the_bfd_section)
8649 & SEC_READONLY))
8650 {
8651 struct target_section *p;
8652 ULONGEST memend = memaddr + len;
8653
8654 table = target_get_section_table (ops);
8655
8656 for (p = table->sections; p < table->sections_end; p++)
8657 {
8658 if (memaddr >= p->addr)
8659 {
8660 if (memend <= p->endaddr)
8661 {
8662 /* Entire transfer is within this section. */
124e13d9 8663 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 8664 xfered_len);
8acf9577
YQ
8665 }
8666 else if (memaddr >= p->endaddr)
8667 {
8668 /* This section ends before the transfer starts. */
8669 continue;
8670 }
8671 else
8672 {
8673 /* This section overlaps the transfer. Just do half. */
8674 len = p->endaddr - memaddr;
124e13d9 8675 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 8676 xfered_len);
8acf9577
YQ
8677 }
8678 }
8679 }
8680 }
8681
8682 return TARGET_XFER_EOF;
8683}
8684
9217e74e
YQ
8685/* Similar to remote_read_bytes_1, but it reads from the remote stub
8686 first if the requested memory is unavailable in traceframe.
8687 Otherwise, fall back to remote_read_bytes_1. */
c906108c 8688
9b409511 8689static enum target_xfer_status
8acf9577 8690remote_read_bytes (struct target_ops *ops, CORE_ADDR memaddr,
124e13d9
SM
8691 gdb_byte *myaddr, ULONGEST len, int unit_size,
8692 ULONGEST *xfered_len)
c906108c 8693{
6b6aa828 8694 if (len == 0)
96c4f946 8695 return TARGET_XFER_EOF;
b2182ed2 8696
8acf9577
YQ
8697 if (get_traceframe_number () != -1)
8698 {
a79b1bc6 8699 std::vector<mem_range> available;
8acf9577
YQ
8700
8701 /* If we fail to get the set of available memory, then the
8702 target does not support querying traceframe info, and so we
8703 attempt reading from the traceframe anyway (assuming the
8704 target implements the old QTro packet then). */
8705 if (traceframe_available_memory (&available, memaddr, len))
8706 {
a79b1bc6 8707 if (available.empty () || available[0].start != memaddr)
8acf9577
YQ
8708 {
8709 enum target_xfer_status res;
8710
8711 /* Don't read into the traceframe's available
8712 memory. */
a79b1bc6 8713 if (!available.empty ())
8acf9577
YQ
8714 {
8715 LONGEST oldlen = len;
8716
a79b1bc6 8717 len = available[0].start - memaddr;
8acf9577
YQ
8718 gdb_assert (len <= oldlen);
8719 }
8720
8acf9577 8721 /* This goes through the topmost target again. */
b55fbac4 8722 res = remote_xfer_live_readonly_partial (ops, myaddr, memaddr,
124e13d9 8723 len, unit_size, xfered_len);
8acf9577
YQ
8724 if (res == TARGET_XFER_OK)
8725 return TARGET_XFER_OK;
8726 else
8727 {
8728 /* No use trying further, we know some memory starting
8729 at MEMADDR isn't available. */
8730 *xfered_len = len;
92ffd475
PC
8731 return (*xfered_len != 0) ?
8732 TARGET_XFER_UNAVAILABLE : TARGET_XFER_EOF;
8acf9577
YQ
8733 }
8734 }
8735
8736 /* Don't try to read more than how much is available, in
8737 case the target implements the deprecated QTro packet to
8738 cater for older GDBs (the target's knowledge of read-only
8739 sections may be outdated by now). */
a79b1bc6 8740 len = available[0].length;
8acf9577
YQ
8741 }
8742 }
8743
124e13d9 8744 return remote_read_bytes_1 (memaddr, myaddr, len, unit_size, xfered_len);
c906108c 8745}
74531fed 8746
c906108c 8747\f
c906108c 8748
a76d924d
DJ
8749/* Sends a packet with content determined by the printf format string
8750 FORMAT and the remaining arguments, then gets the reply. Returns
8751 whether the packet was a success, a failure, or unknown. */
8752
77b64a49
PA
8753static enum packet_result remote_send_printf (const char *format, ...)
8754 ATTRIBUTE_PRINTF (1, 2);
8755
2c0b251b 8756static enum packet_result
a76d924d
DJ
8757remote_send_printf (const char *format, ...)
8758{
8759 struct remote_state *rs = get_remote_state ();
8760 int max_size = get_remote_packet_size ();
a76d924d 8761 va_list ap;
a744cf53 8762
a76d924d
DJ
8763 va_start (ap, format);
8764
8765 rs->buf[0] = '\0';
8766 if (vsnprintf (rs->buf, max_size, format, ap) >= max_size)
9b20d036 8767 internal_error (__FILE__, __LINE__, _("Too long remote packet."));
a76d924d
DJ
8768
8769 if (putpkt (rs->buf) < 0)
8770 error (_("Communication problem with target."));
8771
8772 rs->buf[0] = '\0';
8773 getpkt (&rs->buf, &rs->buf_size, 0);
8774
8775 return packet_check_result (rs->buf);
8776}
8777
a76d924d
DJ
8778/* Flash writing can take quite some time. We'll set
8779 effectively infinite timeout for flash operations.
8780 In future, we'll need to decide on a better approach. */
8781static const int remote_flash_timeout = 1000;
8782
f6ac5f3d
PA
8783void
8784remote_target::flash_erase (ULONGEST address, LONGEST length)
a76d924d 8785{
f5656ead 8786 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
a76d924d 8787 enum packet_result ret;
2ec845e7
TT
8788 scoped_restore restore_timeout
8789 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
a76d924d
DJ
8790
8791 ret = remote_send_printf ("vFlashErase:%s,%s",
5af949e3 8792 phex (address, addr_size),
a76d924d
DJ
8793 phex (length, 4));
8794 switch (ret)
8795 {
8796 case PACKET_UNKNOWN:
8797 error (_("Remote target does not support flash erase"));
8798 case PACKET_ERROR:
8799 error (_("Error erasing flash with vFlashErase packet"));
8800 default:
8801 break;
8802 }
a76d924d
DJ
8803}
8804
9b409511
YQ
8805static enum target_xfer_status
8806remote_flash_write (struct target_ops *ops, ULONGEST address,
8807 ULONGEST length, ULONGEST *xfered_len,
8808 const gdb_byte *data)
a76d924d 8809{
2ec845e7
TT
8810 scoped_restore restore_timeout
8811 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
8812 return remote_write_bytes_aux ("vFlashWrite:", address, data, length, 1,
8813 xfered_len,'X', 0);
a76d924d
DJ
8814}
8815
f6ac5f3d
PA
8816void
8817remote_target::flash_done ()
a76d924d 8818{
a76d924d 8819 int ret;
a76d924d 8820
2ec845e7
TT
8821 scoped_restore restore_timeout
8822 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
8823
a76d924d 8824 ret = remote_send_printf ("vFlashDone");
a76d924d
DJ
8825
8826 switch (ret)
8827 {
8828 case PACKET_UNKNOWN:
8829 error (_("Remote target does not support vFlashDone"));
8830 case PACKET_ERROR:
8831 error (_("Error finishing flash operation"));
8832 default:
8833 break;
8834 }
8835}
8836
f6ac5f3d
PA
8837void
8838remote_target::files_info ()
c906108c
SS
8839{
8840 puts_filtered ("Debugging a target over a serial line.\n");
8841}
8842\f
8843/* Stuff for dealing with the packets which are part of this protocol.
8844 See comment at top of file for details. */
8845
1927e618
PA
8846/* Close/unpush the remote target, and throw a TARGET_CLOSE_ERROR
8847 error to higher layers. Called when a serial error is detected.
8848 The exception message is STRING, followed by a colon and a blank,
d6cb50a2
JK
8849 the system error message for errno at function entry and final dot
8850 for output compatibility with throw_perror_with_name. */
1927e618
PA
8851
8852static void
8853unpush_and_perror (const char *string)
8854{
d6cb50a2 8855 int saved_errno = errno;
1927e618
PA
8856
8857 remote_unpush_target ();
d6cb50a2
JK
8858 throw_error (TARGET_CLOSE_ERROR, "%s: %s.", string,
8859 safe_strerror (saved_errno));
1927e618
PA
8860}
8861
048094ac
PA
8862/* Read a single character from the remote end. The current quit
8863 handler is overridden to avoid quitting in the middle of packet
8864 sequence, as that would break communication with the remote server.
8865 See remote_serial_quit_handler for more detail. */
c906108c
SS
8866
8867static int
fba45db2 8868readchar (int timeout)
c906108c
SS
8869{
8870 int ch;
5d93a237 8871 struct remote_state *rs = get_remote_state ();
048094ac 8872
2ec845e7
TT
8873 {
8874 scoped_restore restore_quit
8875 = make_scoped_restore (&quit_handler, remote_serial_quit_handler);
c906108c 8876
2ec845e7 8877 rs->got_ctrlc_during_io = 0;
c906108c 8878
2ec845e7 8879 ch = serial_readchar (rs->remote_desc, timeout);
048094ac 8880
2ec845e7
TT
8881 if (rs->got_ctrlc_during_io)
8882 set_quit_flag ();
8883 }
048094ac 8884
2acceee2 8885 if (ch >= 0)
0876f84a 8886 return ch;
2acceee2
JM
8887
8888 switch ((enum serial_rc) ch)
c906108c
SS
8889 {
8890 case SERIAL_EOF:
78a095c3 8891 remote_unpush_target ();
598d3636 8892 throw_error (TARGET_CLOSE_ERROR, _("Remote connection closed"));
2acceee2 8893 /* no return */
c906108c 8894 case SERIAL_ERROR:
1927e618
PA
8895 unpush_and_perror (_("Remote communication error. "
8896 "Target disconnected."));
2acceee2 8897 /* no return */
c906108c 8898 case SERIAL_TIMEOUT:
2acceee2 8899 break;
c906108c 8900 }
2acceee2 8901 return ch;
c906108c
SS
8902}
8903
c33e31fd 8904/* Wrapper for serial_write that closes the target and throws if
048094ac
PA
8905 writing fails. The current quit handler is overridden to avoid
8906 quitting in the middle of packet sequence, as that would break
8907 communication with the remote server. See
8908 remote_serial_quit_handler for more detail. */
c33e31fd
PA
8909
8910static void
8911remote_serial_write (const char *str, int len)
8912{
5d93a237 8913 struct remote_state *rs = get_remote_state ();
048094ac 8914
2ec845e7
TT
8915 scoped_restore restore_quit
8916 = make_scoped_restore (&quit_handler, remote_serial_quit_handler);
048094ac
PA
8917
8918 rs->got_ctrlc_during_io = 0;
5d93a237
TT
8919
8920 if (serial_write (rs->remote_desc, str, len))
c33e31fd 8921 {
1927e618
PA
8922 unpush_and_perror (_("Remote communication error. "
8923 "Target disconnected."));
c33e31fd 8924 }
048094ac
PA
8925
8926 if (rs->got_ctrlc_during_io)
8927 set_quit_flag ();
c33e31fd
PA
8928}
8929
b3ced9ba
PA
8930/* Return a string representing an escaped version of BUF, of len N.
8931 E.g. \n is converted to \\n, \t to \\t, etc. */
6e5abd65 8932
b3ced9ba 8933static std::string
6e5abd65
PA
8934escape_buffer (const char *buf, int n)
8935{
d7e74731 8936 string_file stb;
6e5abd65 8937
d7e74731
PA
8938 stb.putstrn (buf, n, '\\');
8939 return std::move (stb.string ());
6e5abd65
PA
8940}
8941
c906108c
SS
8942/* Display a null-terminated packet on stdout, for debugging, using C
8943 string notation. */
8944
8945static void
baa336ce 8946print_packet (const char *buf)
c906108c
SS
8947{
8948 puts_filtered ("\"");
43e526b9 8949 fputstr_filtered (buf, '"', gdb_stdout);
c906108c
SS
8950 puts_filtered ("\"");
8951}
8952
8953int
baa336ce 8954putpkt (const char *buf)
c906108c
SS
8955{
8956 return putpkt_binary (buf, strlen (buf));
8957}
8958
8959/* Send a packet to the remote machine, with error checking. The data
23860348 8960 of the packet is in BUF. The string in BUF can be at most
ea9c271d 8961 get_remote_packet_size () - 5 to account for the $, # and checksum,
23860348
MS
8962 and for a possible /0 if we are debugging (remote_debug) and want
8963 to print the sent packet as a string. */
c906108c
SS
8964
8965static int
baa336ce 8966putpkt_binary (const char *buf, int cnt)
c906108c 8967{
2d717e4f 8968 struct remote_state *rs = get_remote_state ();
c906108c
SS
8969 int i;
8970 unsigned char csum = 0;
b80406ac
TT
8971 gdb::def_vector<char> data (cnt + 6);
8972 char *buf2 = data.data ();
085dd6e6 8973
c906108c
SS
8974 int ch;
8975 int tcount = 0;
8976 char *p;
8977
e24a49d8
PA
8978 /* Catch cases like trying to read memory or listing threads while
8979 we're waiting for a stop reply. The remote server wouldn't be
8980 ready to handle this request, so we'd hang and timeout. We don't
8981 have to worry about this in synchronous mode, because in that
8982 case it's not possible to issue a command while the target is
74531fed
PA
8983 running. This is not a problem in non-stop mode, because in that
8984 case, the stub is always ready to process serial input. */
6efcd9a8
PA
8985 if (!target_is_non_stop_p ()
8986 && target_is_async_p ()
8987 && rs->waiting_for_stop_reply)
9597b22a
DE
8988 {
8989 error (_("Cannot execute this command while the target is running.\n"
8990 "Use the \"interrupt\" command to stop the target\n"
8991 "and then try again."));
8992 }
e24a49d8 8993
2d717e4f
DJ
8994 /* We're sending out a new packet. Make sure we don't look at a
8995 stale cached response. */
8996 rs->cached_wait_status = 0;
8997
c906108c
SS
8998 /* Copy the packet into buffer BUF2, encapsulating it
8999 and giving it a checksum. */
9000
c906108c
SS
9001 p = buf2;
9002 *p++ = '$';
9003
9004 for (i = 0; i < cnt; i++)
9005 {
9006 csum += buf[i];
9007 *p++ = buf[i];
9008 }
9009 *p++ = '#';
9010 *p++ = tohex ((csum >> 4) & 0xf);
9011 *p++ = tohex (csum & 0xf);
9012
9013 /* Send it over and over until we get a positive ack. */
9014
9015 while (1)
9016 {
9017 int started_error_output = 0;
9018
9019 if (remote_debug)
9020 {
9021 *p = '\0';
b3ced9ba 9022
6f8976bf
YQ
9023 int len = (int) (p - buf2);
9024
9025 std::string str
9026 = escape_buffer (buf2, std::min (len, REMOTE_DEBUG_MAX_CHAR));
9027
9028 fprintf_unfiltered (gdb_stdlog, "Sending packet: %s", str.c_str ());
9029
567a3e54
SM
9030 if (len > REMOTE_DEBUG_MAX_CHAR)
9031 fprintf_unfiltered (gdb_stdlog, "[%d bytes omitted]",
9032 len - REMOTE_DEBUG_MAX_CHAR);
6f8976bf
YQ
9033
9034 fprintf_unfiltered (gdb_stdlog, "...");
b3ced9ba 9035
0f71a2f6 9036 gdb_flush (gdb_stdlog);
c906108c 9037 }
c33e31fd 9038 remote_serial_write (buf2, p - buf2);
c906108c 9039
a6f3e723
SL
9040 /* If this is a no acks version of the remote protocol, send the
9041 packet and move on. */
9042 if (rs->noack_mode)
9043 break;
9044
74531fed
PA
9045 /* Read until either a timeout occurs (-2) or '+' is read.
9046 Handle any notification that arrives in the mean time. */
c906108c
SS
9047 while (1)
9048 {
9049 ch = readchar (remote_timeout);
9050
c5aa993b 9051 if (remote_debug)
c906108c
SS
9052 {
9053 switch (ch)
9054 {
9055 case '+':
1216fa2c 9056 case '-':
c906108c
SS
9057 case SERIAL_TIMEOUT:
9058 case '$':
74531fed 9059 case '%':
c906108c
SS
9060 if (started_error_output)
9061 {
9062 putchar_unfiltered ('\n');
9063 started_error_output = 0;
9064 }
9065 }
9066 }
9067
9068 switch (ch)
9069 {
9070 case '+':
9071 if (remote_debug)
0f71a2f6 9072 fprintf_unfiltered (gdb_stdlog, "Ack\n");
c906108c 9073 return 1;
1216fa2c
AC
9074 case '-':
9075 if (remote_debug)
9076 fprintf_unfiltered (gdb_stdlog, "Nak\n");
a17d146e 9077 /* FALLTHROUGH */
c906108c 9078 case SERIAL_TIMEOUT:
c5aa993b 9079 tcount++;
c906108c 9080 if (tcount > 3)
b80406ac 9081 return 0;
23860348 9082 break; /* Retransmit buffer. */
c906108c
SS
9083 case '$':
9084 {
40e3f985 9085 if (remote_debug)
2bc416ba 9086 fprintf_unfiltered (gdb_stdlog,
23860348 9087 "Packet instead of Ack, ignoring it\n");
d6f7abdf
AC
9088 /* It's probably an old response sent because an ACK
9089 was lost. Gobble up the packet and ack it so it
9090 doesn't get retransmitted when we resend this
9091 packet. */
6d820c5c 9092 skip_frame ();
c33e31fd 9093 remote_serial_write ("+", 1);
23860348 9094 continue; /* Now, go look for +. */
c906108c 9095 }
74531fed
PA
9096
9097 case '%':
9098 {
9099 int val;
9100
9101 /* If we got a notification, handle it, and go back to looking
9102 for an ack. */
9103 /* We've found the start of a notification. Now
9104 collect the data. */
9105 val = read_frame (&rs->buf, &rs->buf_size);
9106 if (val >= 0)
9107 {
9108 if (remote_debug)
9109 {
b3ced9ba 9110 std::string str = escape_buffer (rs->buf, val);
6e5abd65 9111
6e5abd65
PA
9112 fprintf_unfiltered (gdb_stdlog,
9113 " Notification received: %s\n",
b3ced9ba 9114 str.c_str ());
74531fed 9115 }
5965e028 9116 handle_notification (rs->notif_state, rs->buf);
74531fed
PA
9117 /* We're in sync now, rewait for the ack. */
9118 tcount = 0;
9119 }
9120 else
9121 {
9122 if (remote_debug)
9123 {
9124 if (!started_error_output)
9125 {
9126 started_error_output = 1;
9127 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
9128 }
9129 fputc_unfiltered (ch & 0177, gdb_stdlog);
9130 fprintf_unfiltered (gdb_stdlog, "%s", rs->buf);
9131 }
9132 }
9133 continue;
9134 }
9135 /* fall-through */
c906108c
SS
9136 default:
9137 if (remote_debug)
9138 {
9139 if (!started_error_output)
9140 {
9141 started_error_output = 1;
0f71a2f6 9142 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
c906108c 9143 }
0f71a2f6 9144 fputc_unfiltered (ch & 0177, gdb_stdlog);
c906108c
SS
9145 }
9146 continue;
9147 }
23860348 9148 break; /* Here to retransmit. */
c906108c
SS
9149 }
9150
9151#if 0
9152 /* This is wrong. If doing a long backtrace, the user should be
c5aa993b
JM
9153 able to get out next time we call QUIT, without anything as
9154 violent as interrupt_query. If we want to provide a way out of
9155 here without getting to the next QUIT, it should be based on
9156 hitting ^C twice as in remote_wait. */
c906108c
SS
9157 if (quit_flag)
9158 {
9159 quit_flag = 0;
9160 interrupt_query ();
9161 }
9162#endif
9163 }
a5c0808e 9164
a6f3e723 9165 return 0;
c906108c
SS
9166}
9167
6d820c5c
DJ
9168/* Come here after finding the start of a frame when we expected an
9169 ack. Do our best to discard the rest of this packet. */
9170
9171static void
9172skip_frame (void)
9173{
9174 int c;
9175
9176 while (1)
9177 {
9178 c = readchar (remote_timeout);
9179 switch (c)
9180 {
9181 case SERIAL_TIMEOUT:
9182 /* Nothing we can do. */
9183 return;
9184 case '#':
9185 /* Discard the two bytes of checksum and stop. */
9186 c = readchar (remote_timeout);
9187 if (c >= 0)
9188 c = readchar (remote_timeout);
9189
9190 return;
9191 case '*': /* Run length encoding. */
9192 /* Discard the repeat count. */
9193 c = readchar (remote_timeout);
9194 if (c < 0)
9195 return;
9196 break;
9197 default:
9198 /* A regular character. */
9199 break;
9200 }
9201 }
9202}
9203
c906108c 9204/* Come here after finding the start of the frame. Collect the rest
6d820c5c
DJ
9205 into *BUF, verifying the checksum, length, and handling run-length
9206 compression. NUL terminate the buffer. If there is not enough room,
9207 expand *BUF using xrealloc.
c906108c 9208
c2d11a7d
JM
9209 Returns -1 on error, number of characters in buffer (ignoring the
9210 trailing NULL) on success. (could be extended to return one of the
23860348 9211 SERIAL status indications). */
c2d11a7d
JM
9212
9213static long
6d820c5c
DJ
9214read_frame (char **buf_p,
9215 long *sizeof_buf)
c906108c
SS
9216{
9217 unsigned char csum;
c2d11a7d 9218 long bc;
c906108c 9219 int c;
6d820c5c 9220 char *buf = *buf_p;
a6f3e723 9221 struct remote_state *rs = get_remote_state ();
c906108c
SS
9222
9223 csum = 0;
c2d11a7d 9224 bc = 0;
c906108c
SS
9225
9226 while (1)
9227 {
9228 c = readchar (remote_timeout);
c906108c
SS
9229 switch (c)
9230 {
9231 case SERIAL_TIMEOUT:
9232 if (remote_debug)
0f71a2f6 9233 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog);
c2d11a7d 9234 return -1;
c906108c
SS
9235 case '$':
9236 if (remote_debug)
0f71a2f6
JM
9237 fputs_filtered ("Saw new packet start in middle of old one\n",
9238 gdb_stdlog);
23860348 9239 return -1; /* Start a new packet, count retries. */
c906108c
SS
9240 case '#':
9241 {
9242 unsigned char pktcsum;
e1b09194
AC
9243 int check_0 = 0;
9244 int check_1 = 0;
c906108c 9245
c2d11a7d 9246 buf[bc] = '\0';
c906108c 9247
e1b09194
AC
9248 check_0 = readchar (remote_timeout);
9249 if (check_0 >= 0)
9250 check_1 = readchar (remote_timeout);
802188a7 9251
e1b09194
AC
9252 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
9253 {
9254 if (remote_debug)
2bc416ba 9255 fputs_filtered ("Timeout in checksum, retrying\n",
23860348 9256 gdb_stdlog);
e1b09194
AC
9257 return -1;
9258 }
9259 else if (check_0 < 0 || check_1 < 0)
40e3f985
FN
9260 {
9261 if (remote_debug)
2bc416ba 9262 fputs_filtered ("Communication error in checksum\n",
23860348 9263 gdb_stdlog);
40e3f985
FN
9264 return -1;
9265 }
c906108c 9266
a6f3e723
SL
9267 /* Don't recompute the checksum; with no ack packets we
9268 don't have any way to indicate a packet retransmission
9269 is necessary. */
9270 if (rs->noack_mode)
9271 return bc;
9272
e1b09194 9273 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
c906108c 9274 if (csum == pktcsum)
c2d11a7d 9275 return bc;
c906108c 9276
c5aa993b 9277 if (remote_debug)
c906108c 9278 {
b3ced9ba 9279 std::string str = escape_buffer (buf, bc);
6e5abd65 9280
6e5abd65 9281 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
9282 "Bad checksum, sentsum=0x%x, "
9283 "csum=0x%x, buf=%s\n",
b3ced9ba 9284 pktcsum, csum, str.c_str ());
c906108c 9285 }
c2d11a7d 9286 /* Number of characters in buffer ignoring trailing
23860348 9287 NULL. */
c2d11a7d 9288 return -1;
c906108c 9289 }
23860348 9290 case '*': /* Run length encoding. */
c2c6d25f
JM
9291 {
9292 int repeat;
c906108c 9293
a744cf53 9294 csum += c;
b4501125
AC
9295 c = readchar (remote_timeout);
9296 csum += c;
23860348 9297 repeat = c - ' ' + 3; /* Compute repeat count. */
c906108c 9298
23860348 9299 /* The character before ``*'' is repeated. */
c2d11a7d 9300
6d820c5c 9301 if (repeat > 0 && repeat <= 255 && bc > 0)
c2c6d25f 9302 {
6d820c5c
DJ
9303 if (bc + repeat - 1 >= *sizeof_buf - 1)
9304 {
9305 /* Make some more room in the buffer. */
9306 *sizeof_buf += repeat;
224c3ddb 9307 *buf_p = (char *) xrealloc (*buf_p, *sizeof_buf);
6d820c5c
DJ
9308 buf = *buf_p;
9309 }
9310
c2d11a7d
JM
9311 memset (&buf[bc], buf[bc - 1], repeat);
9312 bc += repeat;
c2c6d25f
JM
9313 continue;
9314 }
9315
c2d11a7d 9316 buf[bc] = '\0';
6d820c5c 9317 printf_filtered (_("Invalid run length encoding: %s\n"), buf);
c2d11a7d 9318 return -1;
c2c6d25f 9319 }
c906108c 9320 default:
6d820c5c 9321 if (bc >= *sizeof_buf - 1)
c906108c 9322 {
6d820c5c
DJ
9323 /* Make some more room in the buffer. */
9324 *sizeof_buf *= 2;
224c3ddb 9325 *buf_p = (char *) xrealloc (*buf_p, *sizeof_buf);
6d820c5c 9326 buf = *buf_p;
c906108c
SS
9327 }
9328
6d820c5c
DJ
9329 buf[bc++] = c;
9330 csum += c;
9331 continue;
c906108c
SS
9332 }
9333 }
9334}
9335
9336/* Read a packet from the remote machine, with error checking, and
6d820c5c
DJ
9337 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
9338 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
9339 rather than timing out; this is used (in synchronous mode) to wait
9340 for a target that is is executing user code to stop. */
d9fcf2fb
JM
9341/* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
9342 don't have to change all the calls to getpkt to deal with the
9343 return value, because at the moment I don't know what the right
23860348 9344 thing to do it for those. */
c906108c 9345void
6d820c5c
DJ
9346getpkt (char **buf,
9347 long *sizeof_buf,
c2d11a7d 9348 int forever)
d9fcf2fb 9349{
54887903 9350 getpkt_sane (buf, sizeof_buf, forever);
d9fcf2fb
JM
9351}
9352
9353
9354/* Read a packet from the remote machine, with error checking, and
6d820c5c
DJ
9355 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
9356 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
9357 rather than timing out; this is used (in synchronous mode) to wait
9358 for a target that is is executing user code to stop. If FOREVER ==
9359 0, this function is allowed to time out gracefully and return an
74531fed
PA
9360 indication of this to the caller. Otherwise return the number of
9361 bytes read. If EXPECTING_NOTIF, consider receiving a notification
fee9eda9
YQ
9362 enough reason to return to the caller. *IS_NOTIF is an output
9363 boolean that indicates whether *BUF holds a notification or not
9364 (a regular packet). */
74531fed 9365
3172dc30 9366static int
74531fed 9367getpkt_or_notif_sane_1 (char **buf, long *sizeof_buf, int forever,
fee9eda9 9368 int expecting_notif, int *is_notif)
c906108c 9369{
2d717e4f 9370 struct remote_state *rs = get_remote_state ();
c906108c
SS
9371 int c;
9372 int tries;
9373 int timeout;
df4b58fe 9374 int val = -1;
c906108c 9375
2d717e4f
DJ
9376 /* We're reading a new response. Make sure we don't look at a
9377 previously cached response. */
9378 rs->cached_wait_status = 0;
9379
6d820c5c 9380 strcpy (*buf, "timeout");
c906108c
SS
9381
9382 if (forever)
74531fed
PA
9383 timeout = watchdog > 0 ? watchdog : -1;
9384 else if (expecting_notif)
9385 timeout = 0; /* There should already be a char in the buffer. If
9386 not, bail out. */
c906108c
SS
9387 else
9388 timeout = remote_timeout;
9389
9390#define MAX_TRIES 3
9391
74531fed
PA
9392 /* Process any number of notifications, and then return when
9393 we get a packet. */
9394 for (;;)
c906108c 9395 {
d9c43928 9396 /* If we get a timeout or bad checksum, retry up to MAX_TRIES
74531fed
PA
9397 times. */
9398 for (tries = 1; tries <= MAX_TRIES; tries++)
c906108c 9399 {
74531fed
PA
9400 /* This can loop forever if the remote side sends us
9401 characters continuously, but if it pauses, we'll get
9402 SERIAL_TIMEOUT from readchar because of timeout. Then
9403 we'll count that as a retry.
9404
9405 Note that even when forever is set, we will only wait
9406 forever prior to the start of a packet. After that, we
9407 expect characters to arrive at a brisk pace. They should
9408 show up within remote_timeout intervals. */
9409 do
9410 c = readchar (timeout);
9411 while (c != SERIAL_TIMEOUT && c != '$' && c != '%');
c906108c
SS
9412
9413 if (c == SERIAL_TIMEOUT)
9414 {
74531fed
PA
9415 if (expecting_notif)
9416 return -1; /* Don't complain, it's normal to not get
9417 anything in this case. */
9418
23860348 9419 if (forever) /* Watchdog went off? Kill the target. */
c906108c 9420 {
78a095c3 9421 remote_unpush_target ();
598d3636
JK
9422 throw_error (TARGET_CLOSE_ERROR,
9423 _("Watchdog timeout has expired. "
9424 "Target detached."));
c906108c 9425 }
c906108c 9426 if (remote_debug)
0f71a2f6 9427 fputs_filtered ("Timed out.\n", gdb_stdlog);
c906108c 9428 }
74531fed
PA
9429 else
9430 {
9431 /* We've found the start of a packet or notification.
9432 Now collect the data. */
9433 val = read_frame (buf, sizeof_buf);
9434 if (val >= 0)
9435 break;
9436 }
9437
c33e31fd 9438 remote_serial_write ("-", 1);
c906108c 9439 }
c906108c 9440
74531fed
PA
9441 if (tries > MAX_TRIES)
9442 {
9443 /* We have tried hard enough, and just can't receive the
9444 packet/notification. Give up. */
9445 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
c906108c 9446
74531fed
PA
9447 /* Skip the ack char if we're in no-ack mode. */
9448 if (!rs->noack_mode)
c33e31fd 9449 remote_serial_write ("+", 1);
74531fed
PA
9450 return -1;
9451 }
c906108c 9452
74531fed
PA
9453 /* If we got an ordinary packet, return that to our caller. */
9454 if (c == '$')
c906108c
SS
9455 {
9456 if (remote_debug)
43e526b9 9457 {
6f8976bf
YQ
9458 std::string str
9459 = escape_buffer (*buf,
9460 std::min (val, REMOTE_DEBUG_MAX_CHAR));
9461
9462 fprintf_unfiltered (gdb_stdlog, "Packet received: %s",
9463 str.c_str ());
9464
567a3e54
SM
9465 if (val > REMOTE_DEBUG_MAX_CHAR)
9466 fprintf_unfiltered (gdb_stdlog, "[%d bytes omitted]",
9467 val - REMOTE_DEBUG_MAX_CHAR);
6e5abd65 9468
6f8976bf 9469 fprintf_unfiltered (gdb_stdlog, "\n");
43e526b9 9470 }
a6f3e723
SL
9471
9472 /* Skip the ack char if we're in no-ack mode. */
9473 if (!rs->noack_mode)
c33e31fd 9474 remote_serial_write ("+", 1);
fee9eda9
YQ
9475 if (is_notif != NULL)
9476 *is_notif = 0;
0876f84a 9477 return val;
c906108c
SS
9478 }
9479
74531fed
PA
9480 /* If we got a notification, handle it, and go back to looking
9481 for a packet. */
9482 else
9483 {
9484 gdb_assert (c == '%');
9485
9486 if (remote_debug)
9487 {
b3ced9ba 9488 std::string str = escape_buffer (*buf, val);
6e5abd65 9489
6e5abd65
PA
9490 fprintf_unfiltered (gdb_stdlog,
9491 " Notification received: %s\n",
b3ced9ba 9492 str.c_str ());
74531fed 9493 }
fee9eda9
YQ
9494 if (is_notif != NULL)
9495 *is_notif = 1;
c906108c 9496
5965e028 9497 handle_notification (rs->notif_state, *buf);
c906108c 9498
74531fed 9499 /* Notifications require no acknowledgement. */
a6f3e723 9500
74531fed 9501 if (expecting_notif)
fee9eda9 9502 return val;
74531fed
PA
9503 }
9504 }
9505}
9506
9507static int
9508getpkt_sane (char **buf, long *sizeof_buf, int forever)
9509{
fee9eda9 9510 return getpkt_or_notif_sane_1 (buf, sizeof_buf, forever, 0, NULL);
74531fed
PA
9511}
9512
9513static int
fee9eda9
YQ
9514getpkt_or_notif_sane (char **buf, long *sizeof_buf, int forever,
9515 int *is_notif)
74531fed 9516{
fee9eda9
YQ
9517 return getpkt_or_notif_sane_1 (buf, sizeof_buf, forever, 1,
9518 is_notif);
c906108c 9519}
74531fed 9520
cbb8991c
DB
9521/* Check whether EVENT is a fork event for the process specified
9522 by the pid passed in DATA, and if it is, kill the fork child. */
9523
9524static int
9525kill_child_of_pending_fork (QUEUE (stop_reply_p) *q,
9526 QUEUE_ITER (stop_reply_p) *iter,
9527 stop_reply_p event,
9528 void *data)
9529{
19ba03f4 9530 struct queue_iter_param *param = (struct queue_iter_param *) data;
cbb8991c
DB
9531 int parent_pid = *(int *) param->input;
9532
9533 if (is_pending_fork_parent (&event->ws, parent_pid, event->ptid))
9534 {
9535 struct remote_state *rs = get_remote_state ();
9536 int child_pid = ptid_get_pid (event->ws.value.related_pid);
9537 int res;
9538
9539 res = remote_vkill (child_pid, rs);
9540 if (res != 0)
9541 error (_("Can't kill fork child process %d"), child_pid);
9542 }
9543
9544 return 1;
9545}
9546
9547/* Kill any new fork children of process PID that haven't been
9548 processed by follow_fork. */
9549
9550static void
9551kill_new_fork_children (int pid, struct remote_state *rs)
9552{
9553 struct thread_info *thread;
9554 struct notif_client *notif = &notif_client_stop;
9555 struct queue_iter_param param;
9556
9557 /* Kill the fork child threads of any threads in process PID
9558 that are stopped at a fork event. */
9559 ALL_NON_EXITED_THREADS (thread)
9560 {
9561 struct target_waitstatus *ws = &thread->pending_follow;
9562
9563 if (is_pending_fork_parent (ws, pid, thread->ptid))
9564 {
9565 struct remote_state *rs = get_remote_state ();
9566 int child_pid = ptid_get_pid (ws->value.related_pid);
9567 int res;
9568
9569 res = remote_vkill (child_pid, rs);
9570 if (res != 0)
9571 error (_("Can't kill fork child process %d"), child_pid);
9572 }
9573 }
9574
9575 /* Check for any pending fork events (not reported or processed yet)
9576 in process PID and kill those fork child threads as well. */
9577 remote_notif_get_pending_events (notif);
9578 param.input = &pid;
9579 param.output = NULL;
9580 QUEUE_iterate (stop_reply_p, stop_reply_queue,
9581 kill_child_of_pending_fork, &param);
9582}
9583
c906108c 9584\f
8020350c
DB
9585/* Target hook to kill the current inferior. */
9586
f6ac5f3d
PA
9587void
9588remote_target::kill ()
43ff13b4 9589{
8020350c
DB
9590 int res = -1;
9591 int pid = ptid_get_pid (inferior_ptid);
9592 struct remote_state *rs = get_remote_state ();
0fdf84ca 9593
8020350c 9594 if (packet_support (PACKET_vKill) != PACKET_DISABLE)
0fdf84ca 9595 {
8020350c
DB
9596 /* If we're stopped while forking and we haven't followed yet,
9597 kill the child task. We need to do this before killing the
9598 parent task because if this is a vfork then the parent will
9599 be sleeping. */
9600 kill_new_fork_children (pid, rs);
9601
9602 res = remote_vkill (pid, rs);
9603 if (res == 0)
0fdf84ca 9604 {
bc1e6c81 9605 target_mourn_inferior (inferior_ptid);
0fdf84ca
PA
9606 return;
9607 }
8020350c 9608 }
0fdf84ca 9609
8020350c
DB
9610 /* If we are in 'target remote' mode and we are killing the only
9611 inferior, then we will tell gdbserver to exit and unpush the
9612 target. */
9613 if (res == -1 && !remote_multi_process_p (rs)
9614 && number_of_live_inferiors () == 1)
9615 {
9616 remote_kill_k ();
9617
9618 /* We've killed the remote end, we get to mourn it. If we are
9619 not in extended mode, mourning the inferior also unpushes
9620 remote_ops from the target stack, which closes the remote
9621 connection. */
bc1e6c81 9622 target_mourn_inferior (inferior_ptid);
8020350c
DB
9623
9624 return;
0fdf84ca 9625 }
43ff13b4 9626
8020350c 9627 error (_("Can't kill process"));
43ff13b4
JM
9628}
9629
8020350c
DB
9630/* Send a kill request to the target using the 'vKill' packet. */
9631
82f73884
PA
9632static int
9633remote_vkill (int pid, struct remote_state *rs)
9634{
4082afcc 9635 if (packet_support (PACKET_vKill) == PACKET_DISABLE)
82f73884
PA
9636 return -1;
9637
9638 /* Tell the remote target to detach. */
bba74b36 9639 xsnprintf (rs->buf, get_remote_packet_size (), "vKill;%x", pid);
82f73884
PA
9640 putpkt (rs->buf);
9641 getpkt (&rs->buf, &rs->buf_size, 0);
9642
4082afcc
PA
9643 switch (packet_ok (rs->buf,
9644 &remote_protocol_packets[PACKET_vKill]))
9645 {
9646 case PACKET_OK:
9647 return 0;
9648 case PACKET_ERROR:
9649 return 1;
9650 case PACKET_UNKNOWN:
9651 return -1;
9652 default:
9653 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
9654 }
82f73884
PA
9655}
9656
8020350c
DB
9657/* Send a kill request to the target using the 'k' packet. */
9658
82f73884 9659static void
8020350c 9660remote_kill_k (void)
82f73884 9661{
8020350c
DB
9662 /* Catch errors so the user can quit from gdb even when we
9663 aren't on speaking terms with the remote system. */
9664 TRY
82f73884 9665 {
82f73884 9666 putpkt ("k");
82f73884 9667 }
8020350c
DB
9668 CATCH (ex, RETURN_MASK_ERROR)
9669 {
9670 if (ex.error == TARGET_CLOSE_ERROR)
9671 {
9672 /* If we got an (EOF) error that caused the target
9673 to go away, then we're done, that's what we wanted.
9674 "k" is susceptible to cause a premature EOF, given
9675 that the remote server isn't actually required to
9676 reply to "k", and it can happen that it doesn't
9677 even get to reply ACK to the "k". */
9678 return;
9679 }
82f73884 9680
8020350c
DB
9681 /* Otherwise, something went wrong. We didn't actually kill
9682 the target. Just propagate the exception, and let the
9683 user or higher layers decide what to do. */
9684 throw_exception (ex);
9685 }
9686 END_CATCH
82f73884
PA
9687}
9688
f6ac5f3d
PA
9689void
9690remote_target::mourn_inferior ()
c906108c 9691{
8020350c 9692 struct remote_state *rs = get_remote_state ();
ce5ce7ed 9693
9607784a
PA
9694 /* We're no longer interested in notification events of an inferior
9695 that exited or was killed/detached. */
9696 discard_pending_stop_replies (current_inferior ());
9697
8020350c
DB
9698 /* In 'target remote' mode with one inferior, we close the connection. */
9699 if (!rs->extended && number_of_live_inferiors () <= 1)
9700 {
f6ac5f3d 9701 unpush_target (this);
c906108c 9702
8020350c
DB
9703 /* remote_close takes care of doing most of the clean up. */
9704 generic_mourn_inferior ();
9705 return;
9706 }
c906108c 9707
e24a49d8
PA
9708 /* In case we got here due to an error, but we're going to stay
9709 connected. */
9710 rs->waiting_for_stop_reply = 0;
9711
dc1981d7
PA
9712 /* If the current general thread belonged to the process we just
9713 detached from or has exited, the remote side current general
9714 thread becomes undefined. Considering a case like this:
9715
9716 - We just got here due to a detach.
9717 - The process that we're detaching from happens to immediately
9718 report a global breakpoint being hit in non-stop mode, in the
9719 same thread we had selected before.
9720 - GDB attaches to this process again.
9721 - This event happens to be the next event we handle.
9722
9723 GDB would consider that the current general thread didn't need to
9724 be set on the stub side (with Hg), since for all it knew,
9725 GENERAL_THREAD hadn't changed.
9726
9727 Notice that although in all-stop mode, the remote server always
9728 sets the current thread to the thread reporting the stop event,
9729 that doesn't happen in non-stop mode; in non-stop, the stub *must
9730 not* change the current thread when reporting a breakpoint hit,
9731 due to the decoupling of event reporting and event handling.
9732
9733 To keep things simple, we always invalidate our notion of the
9734 current thread. */
47f8a51d 9735 record_currthread (rs, minus_one_ptid);
dc1981d7 9736
8020350c 9737 /* Call common code to mark the inferior as not running. */
48aa3c27
PA
9738 generic_mourn_inferior ();
9739
d729566a 9740 if (!have_inferiors ())
2d717e4f 9741 {
82f73884
PA
9742 if (!remote_multi_process_p (rs))
9743 {
9744 /* Check whether the target is running now - some remote stubs
9745 automatically restart after kill. */
9746 putpkt ("?");
9747 getpkt (&rs->buf, &rs->buf_size, 0);
9748
9749 if (rs->buf[0] == 'S' || rs->buf[0] == 'T')
9750 {
3e43a32a
MS
9751 /* Assume that the target has been restarted. Set
9752 inferior_ptid so that bits of core GDB realizes
9753 there's something here, e.g., so that the user can
9754 say "kill" again. */
82f73884
PA
9755 inferior_ptid = magic_null_ptid;
9756 }
82f73884 9757 }
2d717e4f
DJ
9758 }
9759}
c906108c 9760
57810aa7 9761bool
f6ac5f3d 9762extended_remote_target::supports_disable_randomization ()
03583c20 9763{
4082afcc 9764 return packet_support (PACKET_QDisableRandomization) == PACKET_ENABLE;
03583c20
UW
9765}
9766
9767static void
9768extended_remote_disable_randomization (int val)
9769{
9770 struct remote_state *rs = get_remote_state ();
9771 char *reply;
9772
bba74b36
YQ
9773 xsnprintf (rs->buf, get_remote_packet_size (), "QDisableRandomization:%x",
9774 val);
03583c20 9775 putpkt (rs->buf);
b6bb3468 9776 reply = remote_get_noisy_reply ();
03583c20
UW
9777 if (*reply == '\0')
9778 error (_("Target does not support QDisableRandomization."));
9779 if (strcmp (reply, "OK") != 0)
9780 error (_("Bogus QDisableRandomization reply from target: %s"), reply);
9781}
9782
2d717e4f 9783static int
7c5ded6a 9784extended_remote_run (const std::string &args)
2d717e4f
DJ
9785{
9786 struct remote_state *rs = get_remote_state ();
2d717e4f 9787 int len;
94585166 9788 const char *remote_exec_file = get_remote_exec_file ();
c906108c 9789
2d717e4f
DJ
9790 /* If the user has disabled vRun support, or we have detected that
9791 support is not available, do not try it. */
4082afcc 9792 if (packet_support (PACKET_vRun) == PACKET_DISABLE)
2d717e4f 9793 return -1;
424163ea 9794
2d717e4f
DJ
9795 strcpy (rs->buf, "vRun;");
9796 len = strlen (rs->buf);
c906108c 9797
2d717e4f
DJ
9798 if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ())
9799 error (_("Remote file name too long for run packet"));
9f1b45b0
TT
9800 len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf + len,
9801 strlen (remote_exec_file));
2d717e4f 9802
7c5ded6a 9803 if (!args.empty ())
2d717e4f 9804 {
2d717e4f 9805 int i;
2d717e4f 9806
773a1edc 9807 gdb_argv argv (args.c_str ());
2d717e4f
DJ
9808 for (i = 0; argv[i] != NULL; i++)
9809 {
9810 if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ())
9811 error (_("Argument list too long for run packet"));
9812 rs->buf[len++] = ';';
9f1b45b0
TT
9813 len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf + len,
9814 strlen (argv[i]));
2d717e4f 9815 }
2d717e4f
DJ
9816 }
9817
9818 rs->buf[len++] = '\0';
9819
9820 putpkt (rs->buf);
9821 getpkt (&rs->buf, &rs->buf_size, 0);
9822
4082afcc 9823 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun]))
2d717e4f 9824 {
4082afcc 9825 case PACKET_OK:
3405876a 9826 /* We have a wait response. All is well. */
2d717e4f 9827 return 0;
4082afcc
PA
9828 case PACKET_UNKNOWN:
9829 return -1;
9830 case PACKET_ERROR:
2d717e4f
DJ
9831 if (remote_exec_file[0] == '\0')
9832 error (_("Running the default executable on the remote target failed; "
9833 "try \"set remote exec-file\"?"));
9834 else
9835 error (_("Running \"%s\" on the remote target failed"),
9836 remote_exec_file);
4082afcc
PA
9837 default:
9838 gdb_assert_not_reached (_("bad switch"));
2d717e4f 9839 }
c906108c
SS
9840}
9841
0a2dde4a
SDJ
9842/* Helper function to send set/unset environment packets. ACTION is
9843 either "set" or "unset". PACKET is either "QEnvironmentHexEncoded"
9844 or "QEnvironmentUnsetVariable". VALUE is the variable to be
9845 sent. */
9846
9847static void
9848send_environment_packet (struct remote_state *rs,
9849 const char *action,
9850 const char *packet,
9851 const char *value)
9852{
9853 /* Convert the environment variable to an hex string, which
9854 is the best format to be transmitted over the wire. */
9855 std::string encoded_value = bin2hex ((const gdb_byte *) value,
9856 strlen (value));
9857
9858 xsnprintf (rs->buf, get_remote_packet_size (),
9859 "%s:%s", packet, encoded_value.c_str ());
9860
9861 putpkt (rs->buf);
9862 getpkt (&rs->buf, &rs->buf_size, 0);
9863 if (strcmp (rs->buf, "OK") != 0)
9864 warning (_("Unable to %s environment variable '%s' on remote."),
9865 action, value);
9866}
9867
9868/* Helper function to handle the QEnvironment* packets. */
9869
9870static void
9871extended_remote_environment_support (struct remote_state *rs)
9872{
9873 if (packet_support (PACKET_QEnvironmentReset) != PACKET_DISABLE)
9874 {
9875 putpkt ("QEnvironmentReset");
9876 getpkt (&rs->buf, &rs->buf_size, 0);
9877 if (strcmp (rs->buf, "OK") != 0)
9878 warning (_("Unable to reset environment on remote."));
9879 }
9880
9881 gdb_environ *e = &current_inferior ()->environment;
9882
9883 if (packet_support (PACKET_QEnvironmentHexEncoded) != PACKET_DISABLE)
9884 for (const std::string &el : e->user_set_env ())
9885 send_environment_packet (rs, "set", "QEnvironmentHexEncoded",
9886 el.c_str ());
9887
9888 if (packet_support (PACKET_QEnvironmentUnset) != PACKET_DISABLE)
9889 for (const std::string &el : e->user_unset_env ())
9890 send_environment_packet (rs, "unset", "QEnvironmentUnset", el.c_str ());
9891}
9892
bc3b087d
SDJ
9893/* Helper function to set the current working directory for the
9894 inferior in the remote target. */
9895
9896static void
9897extended_remote_set_inferior_cwd (struct remote_state *rs)
9898{
9899 if (packet_support (PACKET_QSetWorkingDir) != PACKET_DISABLE)
9900 {
9901 const char *inferior_cwd = get_inferior_cwd ();
9902
9903 if (inferior_cwd != NULL)
9904 {
9905 std::string hexpath = bin2hex ((const gdb_byte *) inferior_cwd,
9906 strlen (inferior_cwd));
9907
9908 xsnprintf (rs->buf, get_remote_packet_size (),
9909 "QSetWorkingDir:%s", hexpath.c_str ());
9910 }
9911 else
9912 {
9913 /* An empty inferior_cwd means that the user wants us to
9914 reset the remote server's inferior's cwd. */
9915 xsnprintf (rs->buf, get_remote_packet_size (),
9916 "QSetWorkingDir:");
9917 }
9918
9919 putpkt (rs->buf);
9920 getpkt (&rs->buf, &rs->buf_size, 0);
9921 if (packet_ok (rs->buf,
9922 &remote_protocol_packets[PACKET_QSetWorkingDir])
9923 != PACKET_OK)
9924 error (_("\
9925Remote replied unexpectedly while setting the inferior's working\n\
9926directory: %s"),
9927 rs->buf);
9928
9929 }
9930}
9931
2d717e4f
DJ
9932/* In the extended protocol we want to be able to do things like
9933 "run" and have them basically work as expected. So we need
9934 a special create_inferior function. We support changing the
9935 executable file and the command line arguments, but not the
9936 environment. */
9937
f6ac5f3d
PA
9938void
9939extended_remote_target::create_inferior (const char *exec_file,
9940 const std::string &args,
9941 char **env, int from_tty)
43ff13b4 9942{
3405876a
PA
9943 int run_worked;
9944 char *stop_reply;
9945 struct remote_state *rs = get_remote_state ();
94585166 9946 const char *remote_exec_file = get_remote_exec_file ();
3405876a 9947
43ff13b4 9948 /* If running asynchronously, register the target file descriptor
23860348 9949 with the event loop. */
75c99385 9950 if (target_can_async_p ())
6a3753b3 9951 target_async (1);
43ff13b4 9952
03583c20 9953 /* Disable address space randomization if requested (and supported). */
f6ac5f3d 9954 if (supports_disable_randomization ())
03583c20
UW
9955 extended_remote_disable_randomization (disable_randomization);
9956
aefd8b33
SDJ
9957 /* If startup-with-shell is on, we inform gdbserver to start the
9958 remote inferior using a shell. */
9959 if (packet_support (PACKET_QStartupWithShell) != PACKET_DISABLE)
9960 {
9961 xsnprintf (rs->buf, get_remote_packet_size (),
9962 "QStartupWithShell:%d", startup_with_shell ? 1 : 0);
9963 putpkt (rs->buf);
9964 getpkt (&rs->buf, &rs->buf_size, 0);
9965 if (strcmp (rs->buf, "OK") != 0)
9966 error (_("\
9967Remote replied unexpectedly while setting startup-with-shell: %s"),
9968 rs->buf);
9969 }
9970
0a2dde4a
SDJ
9971 extended_remote_environment_support (rs);
9972
bc3b087d
SDJ
9973 extended_remote_set_inferior_cwd (rs);
9974
43ff13b4 9975 /* Now restart the remote server. */
3405876a
PA
9976 run_worked = extended_remote_run (args) != -1;
9977 if (!run_worked)
2d717e4f
DJ
9978 {
9979 /* vRun was not supported. Fail if we need it to do what the
9980 user requested. */
9981 if (remote_exec_file[0])
9982 error (_("Remote target does not support \"set remote exec-file\""));
7c5ded6a 9983 if (!args.empty ())
2d717e4f 9984 error (_("Remote target does not support \"set args\" or run <ARGS>"));
43ff13b4 9985
2d717e4f
DJ
9986 /* Fall back to "R". */
9987 extended_remote_restart ();
9988 }
424163ea 9989
6c95b8df
PA
9990 if (!have_inferiors ())
9991 {
9992 /* Clean up from the last time we ran, before we mark the target
9993 running again. This will mark breakpoints uninserted, and
9994 get_offsets may insert breakpoints. */
9995 init_thread_list ();
9996 init_wait_for_inferior ();
9997 }
45280a52 9998
3405876a
PA
9999 /* vRun's success return is a stop reply. */
10000 stop_reply = run_worked ? rs->buf : NULL;
10001 add_current_inferior_and_thread (stop_reply);
c0a2216e 10002
2d717e4f
DJ
10003 /* Get updated offsets, if the stub uses qOffsets. */
10004 get_offsets ();
2d717e4f 10005}
c906108c 10006\f
c5aa993b 10007
b775012e
LM
10008/* Given a location's target info BP_TGT and the packet buffer BUF, output
10009 the list of conditions (in agent expression bytecode format), if any, the
10010 target needs to evaluate. The output is placed into the packet buffer
bba74b36 10011 started from BUF and ended at BUF_END. */
b775012e
LM
10012
10013static int
10014remote_add_target_side_condition (struct gdbarch *gdbarch,
bba74b36
YQ
10015 struct bp_target_info *bp_tgt, char *buf,
10016 char *buf_end)
b775012e 10017{
3cde5c42 10018 if (bp_tgt->conditions.empty ())
b775012e
LM
10019 return 0;
10020
10021 buf += strlen (buf);
bba74b36 10022 xsnprintf (buf, buf_end - buf, "%s", ";");
b775012e
LM
10023 buf++;
10024
83621223 10025 /* Send conditions to the target. */
d538e36d 10026 for (agent_expr *aexpr : bp_tgt->conditions)
b775012e 10027 {
bba74b36 10028 xsnprintf (buf, buf_end - buf, "X%x,", aexpr->len);
b775012e 10029 buf += strlen (buf);
3cde5c42 10030 for (int i = 0; i < aexpr->len; ++i)
b775012e
LM
10031 buf = pack_hex_byte (buf, aexpr->buf[i]);
10032 *buf = '\0';
10033 }
b775012e
LM
10034 return 0;
10035}
10036
d3ce09f5
SS
10037static void
10038remote_add_target_side_commands (struct gdbarch *gdbarch,
10039 struct bp_target_info *bp_tgt, char *buf)
10040{
3cde5c42 10041 if (bp_tgt->tcommands.empty ())
d3ce09f5
SS
10042 return;
10043
10044 buf += strlen (buf);
10045
10046 sprintf (buf, ";cmds:%x,", bp_tgt->persist);
10047 buf += strlen (buf);
10048
10049 /* Concatenate all the agent expressions that are commands into the
10050 cmds parameter. */
df97be55 10051 for (agent_expr *aexpr : bp_tgt->tcommands)
d3ce09f5
SS
10052 {
10053 sprintf (buf, "X%x,", aexpr->len);
10054 buf += strlen (buf);
3cde5c42 10055 for (int i = 0; i < aexpr->len; ++i)
d3ce09f5
SS
10056 buf = pack_hex_byte (buf, aexpr->buf[i]);
10057 *buf = '\0';
10058 }
d3ce09f5
SS
10059}
10060
8181d85f
DJ
10061/* Insert a breakpoint. On targets that have software breakpoint
10062 support, we ask the remote target to do the work; on targets
10063 which don't, we insert a traditional memory breakpoint. */
c906108c 10064
f6ac5f3d
PA
10065int
10066remote_target::insert_breakpoint (struct gdbarch *gdbarch,
10067 struct bp_target_info *bp_tgt)
c906108c 10068{
d471ea57
AC
10069 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
10070 If it succeeds, then set the support to PACKET_ENABLE. If it
10071 fails, and the user has explicitly requested the Z support then
23860348 10072 report an error, otherwise, mark it disabled and go on. */
802188a7 10073
4082afcc 10074 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 10075 {
0d5ed153 10076 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 10077 struct remote_state *rs;
bba74b36 10078 char *p, *endbuf;
4fff2411 10079
28439a30
PA
10080 /* Make sure the remote is pointing at the right process, if
10081 necessary. */
10082 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10083 set_general_process ();
10084
4fff2411
JZ
10085 rs = get_remote_state ();
10086 p = rs->buf;
bba74b36 10087 endbuf = rs->buf + get_remote_packet_size ();
802188a7 10088
96baa820
JM
10089 *(p++) = 'Z';
10090 *(p++) = '0';
10091 *(p++) = ',';
7c0f6dcc 10092 addr = (ULONGEST) remote_address_masked (addr);
8181d85f 10093 p += hexnumstr (p, addr);
579c6ad9 10094 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
802188a7 10095
f6ac5f3d 10096 if (supports_evaluation_of_breakpoint_conditions ())
bba74b36 10097 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 10098
f6ac5f3d 10099 if (can_run_breakpoint_commands ())
d3ce09f5
SS
10100 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10101
6d820c5c
DJ
10102 putpkt (rs->buf);
10103 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 10104
6d820c5c 10105 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
96baa820 10106 {
d471ea57
AC
10107 case PACKET_ERROR:
10108 return -1;
10109 case PACKET_OK:
10110 return 0;
10111 case PACKET_UNKNOWN:
10112 break;
96baa820
JM
10113 }
10114 }
c906108c 10115
0000e5cc
PA
10116 /* If this breakpoint has target-side commands but this stub doesn't
10117 support Z0 packets, throw error. */
3cde5c42 10118 if (!bp_tgt->tcommands.empty ())
0000e5cc
PA
10119 throw_error (NOT_SUPPORTED_ERROR, _("\
10120Target doesn't support breakpoints that have target side commands."));
10121
f6ac5f3d 10122 return memory_insert_breakpoint (this, gdbarch, bp_tgt);
c906108c
SS
10123}
10124
f6ac5f3d
PA
10125int
10126remote_target::remove_breakpoint (struct gdbarch *gdbarch,
10127 struct bp_target_info *bp_tgt,
10128 enum remove_bp_reason reason)
c906108c 10129{
8181d85f 10130 CORE_ADDR addr = bp_tgt->placed_address;
d01949b6 10131 struct remote_state *rs = get_remote_state ();
96baa820 10132
4082afcc 10133 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 10134 {
6d820c5c 10135 char *p = rs->buf;
bba74b36 10136 char *endbuf = rs->buf + get_remote_packet_size ();
802188a7 10137
28439a30
PA
10138 /* Make sure the remote is pointing at the right process, if
10139 necessary. */
10140 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10141 set_general_process ();
10142
96baa820
JM
10143 *(p++) = 'z';
10144 *(p++) = '0';
10145 *(p++) = ',';
10146
8181d85f
DJ
10147 addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
10148 p += hexnumstr (p, addr);
579c6ad9 10149 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
802188a7 10150
6d820c5c
DJ
10151 putpkt (rs->buf);
10152 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 10153
6d820c5c 10154 return (rs->buf[0] == 'E');
96baa820
JM
10155 }
10156
f6ac5f3d 10157 return memory_remove_breakpoint (this, gdbarch, bp_tgt, reason);
c906108c
SS
10158}
10159
f486487f 10160static enum Z_packet_type
d471ea57
AC
10161watchpoint_to_Z_packet (int type)
10162{
10163 switch (type)
10164 {
10165 case hw_write:
bb858e6a 10166 return Z_PACKET_WRITE_WP;
d471ea57
AC
10167 break;
10168 case hw_read:
bb858e6a 10169 return Z_PACKET_READ_WP;
d471ea57
AC
10170 break;
10171 case hw_access:
bb858e6a 10172 return Z_PACKET_ACCESS_WP;
d471ea57
AC
10173 break;
10174 default:
8e65ff28 10175 internal_error (__FILE__, __LINE__,
e2e0b3e5 10176 _("hw_bp_to_z: bad watchpoint type %d"), type);
d471ea57
AC
10177 }
10178}
10179
f6ac5f3d
PA
10180int
10181remote_target::insert_watchpoint (CORE_ADDR addr, int len,
10182 enum target_hw_bp_type type, struct expression *cond)
96baa820 10183{
d01949b6 10184 struct remote_state *rs = get_remote_state ();
bba74b36 10185 char *endbuf = rs->buf + get_remote_packet_size ();
e514a9d6 10186 char *p;
d471ea57 10187 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
96baa820 10188
4082afcc 10189 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
85d721b8 10190 return 1;
802188a7 10191
28439a30
PA
10192 /* Make sure the remote is pointing at the right process, if
10193 necessary. */
10194 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10195 set_general_process ();
10196
bba74b36 10197 xsnprintf (rs->buf, endbuf - rs->buf, "Z%x,", packet);
6d820c5c 10198 p = strchr (rs->buf, '\0');
96baa820
JM
10199 addr = remote_address_masked (addr);
10200 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 10201 xsnprintf (p, endbuf - p, ",%x", len);
802188a7 10202
6d820c5c
DJ
10203 putpkt (rs->buf);
10204 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 10205
6d820c5c 10206 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
10207 {
10208 case PACKET_ERROR:
d471ea57 10209 return -1;
85d721b8
PA
10210 case PACKET_UNKNOWN:
10211 return 1;
d471ea57
AC
10212 case PACKET_OK:
10213 return 0;
10214 }
8e65ff28 10215 internal_error (__FILE__, __LINE__,
e2e0b3e5 10216 _("remote_insert_watchpoint: reached end of function"));
96baa820
JM
10217}
10218
57810aa7 10219bool
f6ac5f3d
PA
10220remote_target::watchpoint_addr_within_range (CORE_ADDR addr,
10221 CORE_ADDR start, int length)
283002cf
MR
10222{
10223 CORE_ADDR diff = remote_address_masked (addr - start);
10224
10225 return diff < length;
10226}
10227
d471ea57 10228
f6ac5f3d
PA
10229int
10230remote_target::remove_watchpoint (CORE_ADDR addr, int len,
10231 enum target_hw_bp_type type, struct expression *cond)
96baa820 10232{
d01949b6 10233 struct remote_state *rs = get_remote_state ();
bba74b36 10234 char *endbuf = rs->buf + get_remote_packet_size ();
e514a9d6 10235 char *p;
d471ea57
AC
10236 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
10237
4082afcc 10238 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
5cffb350 10239 return -1;
802188a7 10240
28439a30
PA
10241 /* Make sure the remote is pointing at the right process, if
10242 necessary. */
10243 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10244 set_general_process ();
10245
bba74b36 10246 xsnprintf (rs->buf, endbuf - rs->buf, "z%x,", packet);
6d820c5c 10247 p = strchr (rs->buf, '\0');
96baa820
JM
10248 addr = remote_address_masked (addr);
10249 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 10250 xsnprintf (p, endbuf - p, ",%x", len);
6d820c5c
DJ
10251 putpkt (rs->buf);
10252 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 10253
6d820c5c 10254 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
10255 {
10256 case PACKET_ERROR:
10257 case PACKET_UNKNOWN:
10258 return -1;
10259 case PACKET_OK:
10260 return 0;
10261 }
8e65ff28 10262 internal_error (__FILE__, __LINE__,
e2e0b3e5 10263 _("remote_remove_watchpoint: reached end of function"));
96baa820
JM
10264}
10265
3c3bea1c 10266
501eef12 10267int remote_hw_watchpoint_limit = -1;
480a3f21 10268int remote_hw_watchpoint_length_limit = -1;
501eef12 10269int remote_hw_breakpoint_limit = -1;
d471ea57 10270
f6ac5f3d
PA
10271int
10272remote_target::region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
480a3f21
PW
10273{
10274 if (remote_hw_watchpoint_length_limit == 0)
10275 return 0;
10276 else if (remote_hw_watchpoint_length_limit < 0)
10277 return 1;
10278 else if (len <= remote_hw_watchpoint_length_limit)
10279 return 1;
10280 else
10281 return 0;
10282}
10283
f6ac5f3d
PA
10284int
10285remote_target::can_use_hw_breakpoint (enum bptype type, int cnt, int ot)
96baa820 10286{
3c3bea1c
GS
10287 if (type == bp_hardware_breakpoint)
10288 {
10289 if (remote_hw_breakpoint_limit == 0)
10290 return 0;
501eef12
AC
10291 else if (remote_hw_breakpoint_limit < 0)
10292 return 1;
3c3bea1c
GS
10293 else if (cnt <= remote_hw_breakpoint_limit)
10294 return 1;
10295 }
10296 else
10297 {
10298 if (remote_hw_watchpoint_limit == 0)
10299 return 0;
501eef12
AC
10300 else if (remote_hw_watchpoint_limit < 0)
10301 return 1;
3c3bea1c
GS
10302 else if (ot)
10303 return -1;
10304 else if (cnt <= remote_hw_watchpoint_limit)
10305 return 1;
10306 }
10307 return -1;
10308}
10309
f7e6eed5
PA
10310/* The to_stopped_by_sw_breakpoint method of target remote. */
10311
57810aa7 10312bool
f6ac5f3d 10313remote_target::stopped_by_sw_breakpoint ()
f7e6eed5 10314{
799a2abe 10315 struct thread_info *thread = inferior_thread ();
f7e6eed5 10316
799a2abe 10317 return (thread->priv != NULL
7aabaf9d
SM
10318 && (get_remote_thread_info (thread)->stop_reason
10319 == TARGET_STOPPED_BY_SW_BREAKPOINT));
f7e6eed5
PA
10320}
10321
10322/* The to_supports_stopped_by_sw_breakpoint method of target
10323 remote. */
10324
57810aa7 10325bool
f6ac5f3d 10326remote_target::supports_stopped_by_sw_breakpoint ()
f7e6eed5 10327{
f7e6eed5
PA
10328 return (packet_support (PACKET_swbreak_feature) == PACKET_ENABLE);
10329}
10330
10331/* The to_stopped_by_hw_breakpoint method of target remote. */
10332
57810aa7 10333bool
f6ac5f3d 10334remote_target::stopped_by_hw_breakpoint ()
f7e6eed5 10335{
799a2abe 10336 struct thread_info *thread = inferior_thread ();
f7e6eed5 10337
799a2abe 10338 return (thread->priv != NULL
7aabaf9d
SM
10339 && (get_remote_thread_info (thread)->stop_reason
10340 == TARGET_STOPPED_BY_HW_BREAKPOINT));
f7e6eed5
PA
10341}
10342
10343/* The to_supports_stopped_by_hw_breakpoint method of target
10344 remote. */
10345
57810aa7 10346bool
f6ac5f3d 10347remote_target::supports_stopped_by_hw_breakpoint ()
f7e6eed5 10348{
f7e6eed5
PA
10349 return (packet_support (PACKET_hwbreak_feature) == PACKET_ENABLE);
10350}
10351
57810aa7 10352bool
f6ac5f3d 10353remote_target::stopped_by_watchpoint ()
3c3bea1c 10354{
799a2abe 10355 struct thread_info *thread = inferior_thread ();
ee154bee 10356
799a2abe 10357 return (thread->priv != NULL
7aabaf9d
SM
10358 && (get_remote_thread_info (thread)->stop_reason
10359 == TARGET_STOPPED_BY_WATCHPOINT));
3c3bea1c
GS
10360}
10361
57810aa7 10362bool
f6ac5f3d 10363remote_target::stopped_data_address (CORE_ADDR *addr_p)
3c3bea1c 10364{
799a2abe 10365 struct thread_info *thread = inferior_thread ();
a744cf53 10366
799a2abe 10367 if (thread->priv != NULL
7aabaf9d
SM
10368 && (get_remote_thread_info (thread)->stop_reason
10369 == TARGET_STOPPED_BY_WATCHPOINT))
4aa7a7f5 10370 {
7aabaf9d 10371 *addr_p = get_remote_thread_info (thread)->watch_data_address;
57810aa7 10372 return true;
4aa7a7f5
JJ
10373 }
10374
57810aa7 10375 return false;
3c3bea1c
GS
10376}
10377
10378
f6ac5f3d
PA
10379int
10380remote_target::insert_hw_breakpoint (struct gdbarch *gdbarch,
10381 struct bp_target_info *bp_tgt)
3c3bea1c 10382{
0d5ed153 10383 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 10384 struct remote_state *rs;
bba74b36 10385 char *p, *endbuf;
dd61ec5c 10386 char *message;
3c3bea1c 10387
4082afcc 10388 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 10389 return -1;
2bc416ba 10390
28439a30
PA
10391 /* Make sure the remote is pointing at the right process, if
10392 necessary. */
10393 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10394 set_general_process ();
10395
4fff2411
JZ
10396 rs = get_remote_state ();
10397 p = rs->buf;
bba74b36 10398 endbuf = rs->buf + get_remote_packet_size ();
4fff2411 10399
96baa820
JM
10400 *(p++) = 'Z';
10401 *(p++) = '1';
10402 *(p++) = ',';
802188a7 10403
0d5ed153 10404 addr = remote_address_masked (addr);
96baa820 10405 p += hexnumstr (p, (ULONGEST) addr);
579c6ad9 10406 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
96baa820 10407
f6ac5f3d 10408 if (supports_evaluation_of_breakpoint_conditions ())
bba74b36 10409 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 10410
f6ac5f3d 10411 if (can_run_breakpoint_commands ())
d3ce09f5
SS
10412 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10413
6d820c5c
DJ
10414 putpkt (rs->buf);
10415 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 10416
6d820c5c 10417 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
10418 {
10419 case PACKET_ERROR:
dd61ec5c
MW
10420 if (rs->buf[1] == '.')
10421 {
10422 message = strchr (rs->buf + 2, '.');
10423 if (message)
0316657e 10424 error (_("Remote failure reply: %s"), message + 1);
dd61ec5c
MW
10425 }
10426 return -1;
d471ea57
AC
10427 case PACKET_UNKNOWN:
10428 return -1;
10429 case PACKET_OK:
10430 return 0;
10431 }
8e65ff28 10432 internal_error (__FILE__, __LINE__,
e2e0b3e5 10433 _("remote_insert_hw_breakpoint: reached end of function"));
96baa820
JM
10434}
10435
d471ea57 10436
f6ac5f3d
PA
10437int
10438remote_target::remove_hw_breakpoint (struct gdbarch *gdbarch,
10439 struct bp_target_info *bp_tgt)
96baa820 10440{
8181d85f 10441 CORE_ADDR addr;
d01949b6 10442 struct remote_state *rs = get_remote_state ();
6d820c5c 10443 char *p = rs->buf;
bba74b36 10444 char *endbuf = rs->buf + get_remote_packet_size ();
c8189ed1 10445
4082afcc 10446 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 10447 return -1;
802188a7 10448
28439a30
PA
10449 /* Make sure the remote is pointing at the right process, if
10450 necessary. */
10451 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10452 set_general_process ();
10453
96baa820
JM
10454 *(p++) = 'z';
10455 *(p++) = '1';
10456 *(p++) = ',';
802188a7 10457
8181d85f 10458 addr = remote_address_masked (bp_tgt->placed_address);
96baa820 10459 p += hexnumstr (p, (ULONGEST) addr);
579c6ad9 10460 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
96baa820 10461
6d820c5c
DJ
10462 putpkt (rs->buf);
10463 getpkt (&rs->buf, &rs->buf_size, 0);
802188a7 10464
6d820c5c 10465 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
10466 {
10467 case PACKET_ERROR:
10468 case PACKET_UNKNOWN:
10469 return -1;
10470 case PACKET_OK:
10471 return 0;
10472 }
8e65ff28 10473 internal_error (__FILE__, __LINE__,
e2e0b3e5 10474 _("remote_remove_hw_breakpoint: reached end of function"));
96baa820 10475}
96baa820 10476
4a5e7a5b
PA
10477/* Verify memory using the "qCRC:" request. */
10478
f6ac5f3d
PA
10479int
10480remote_target::verify_memory (const gdb_byte *data, CORE_ADDR lma, ULONGEST size)
4a5e7a5b
PA
10481{
10482 struct remote_state *rs = get_remote_state ();
10483 unsigned long host_crc, target_crc;
10484 char *tmp;
10485
936d2992
PA
10486 /* It doesn't make sense to use qCRC if the remote target is
10487 connected but not running. */
10488 if (target_has_execution && packet_support (PACKET_qCRC) != PACKET_DISABLE)
10489 {
10490 enum packet_result result;
28439a30 10491
936d2992
PA
10492 /* Make sure the remote is pointing at the right process. */
10493 set_general_process ();
4a5e7a5b 10494
936d2992
PA
10495 /* FIXME: assumes lma can fit into long. */
10496 xsnprintf (rs->buf, get_remote_packet_size (), "qCRC:%lx,%lx",
10497 (long) lma, (long) size);
10498 putpkt (rs->buf);
4a5e7a5b 10499
936d2992
PA
10500 /* Be clever; compute the host_crc before waiting for target
10501 reply. */
10502 host_crc = xcrc32 (data, size, 0xffffffff);
10503
10504 getpkt (&rs->buf, &rs->buf_size, 0);
4a5e7a5b 10505
936d2992
PA
10506 result = packet_ok (rs->buf,
10507 &remote_protocol_packets[PACKET_qCRC]);
10508 if (result == PACKET_ERROR)
10509 return -1;
10510 else if (result == PACKET_OK)
10511 {
10512 for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
10513 target_crc = target_crc * 16 + fromhex (*tmp);
4a5e7a5b 10514
936d2992
PA
10515 return (host_crc == target_crc);
10516 }
10517 }
4a5e7a5b 10518
f6ac5f3d 10519 return simple_verify_memory (this, data, lma, size);
4a5e7a5b
PA
10520}
10521
c906108c
SS
10522/* compare-sections command
10523
10524 With no arguments, compares each loadable section in the exec bfd
10525 with the same memory range on the target, and reports mismatches.
4a5e7a5b 10526 Useful for verifying the image on the target against the exec file. */
e514a9d6 10527
c906108c 10528static void
ac88e2de 10529compare_sections_command (const char *args, int from_tty)
c906108c
SS
10530{
10531 asection *s;
ce359b09 10532 const char *sectname;
c906108c
SS
10533 bfd_size_type size;
10534 bfd_vma lma;
10535 int matched = 0;
10536 int mismatched = 0;
4a5e7a5b 10537 int res;
95cf3b38 10538 int read_only = 0;
c906108c
SS
10539
10540 if (!exec_bfd)
8a3fe4f8 10541 error (_("command cannot be used without an exec file"));
c906108c 10542
95cf3b38
DT
10543 if (args != NULL && strcmp (args, "-r") == 0)
10544 {
10545 read_only = 1;
10546 args = NULL;
10547 }
10548
c5aa993b 10549 for (s = exec_bfd->sections; s; s = s->next)
c906108c
SS
10550 {
10551 if (!(s->flags & SEC_LOAD))
0df8b418 10552 continue; /* Skip non-loadable section. */
c906108c 10553
95cf3b38
DT
10554 if (read_only && (s->flags & SEC_READONLY) == 0)
10555 continue; /* Skip writeable sections */
10556
2c500098 10557 size = bfd_get_section_size (s);
c906108c 10558 if (size == 0)
0df8b418 10559 continue; /* Skip zero-length section. */
c906108c 10560
ce359b09 10561 sectname = bfd_get_section_name (exec_bfd, s);
c906108c 10562 if (args && strcmp (args, sectname) != 0)
0df8b418 10563 continue; /* Not the section selected by user. */
c906108c 10564
0df8b418 10565 matched = 1; /* Do this section. */
c906108c 10566 lma = s->lma;
c906108c 10567
b80406ac
TT
10568 gdb::byte_vector sectdata (size);
10569 bfd_get_section_contents (exec_bfd, s, sectdata.data (), 0, size);
c906108c 10570
b80406ac 10571 res = target_verify_memory (sectdata.data (), lma, size);
4a5e7a5b
PA
10572
10573 if (res == -1)
5af949e3 10574 error (_("target memory fault, section %s, range %s -- %s"), sectname,
f5656ead
TT
10575 paddress (target_gdbarch (), lma),
10576 paddress (target_gdbarch (), lma + size));
c906108c 10577
5af949e3 10578 printf_filtered ("Section %s, range %s -- %s: ", sectname,
f5656ead
TT
10579 paddress (target_gdbarch (), lma),
10580 paddress (target_gdbarch (), lma + size));
4a5e7a5b 10581 if (res)
c906108c
SS
10582 printf_filtered ("matched.\n");
10583 else
c5aa993b
JM
10584 {
10585 printf_filtered ("MIS-MATCHED!\n");
10586 mismatched++;
10587 }
c906108c
SS
10588 }
10589 if (mismatched > 0)
936d2992 10590 warning (_("One or more sections of the target image does not match\n\
8a3fe4f8 10591the loaded file\n"));
c906108c 10592 if (args && !matched)
a3f17187 10593 printf_filtered (_("No loaded section named '%s'.\n"), args);
c906108c
SS
10594}
10595
0e7f50da
UW
10596/* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
10597 into remote target. The number of bytes written to the remote
10598 target is returned, or -1 for error. */
10599
9b409511 10600static enum target_xfer_status
f6ac5f3d 10601remote_write_qxfer (const char *object_name,
0e7f50da 10602 const char *annex, const gdb_byte *writebuf,
9b409511 10603 ULONGEST offset, LONGEST len, ULONGEST *xfered_len,
0e7f50da
UW
10604 struct packet_config *packet)
10605{
10606 int i, buf_len;
10607 ULONGEST n;
0e7f50da
UW
10608 struct remote_state *rs = get_remote_state ();
10609 int max_size = get_memory_write_packet_size ();
10610
7cc244de 10611 if (packet_config_support (packet) == PACKET_DISABLE)
2ed4b548 10612 return TARGET_XFER_E_IO;
0e7f50da
UW
10613
10614 /* Insert header. */
10615 i = snprintf (rs->buf, max_size,
10616 "qXfer:%s:write:%s:%s:",
10617 object_name, annex ? annex : "",
10618 phex_nz (offset, sizeof offset));
10619 max_size -= (i + 1);
10620
10621 /* Escape as much data as fits into rs->buf. */
10622 buf_len = remote_escape_output
124e13d9 10623 (writebuf, len, 1, (gdb_byte *) rs->buf + i, &max_size, max_size);
0e7f50da
UW
10624
10625 if (putpkt_binary (rs->buf, i + buf_len) < 0
10626 || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0
10627 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 10628 return TARGET_XFER_E_IO;
0e7f50da
UW
10629
10630 unpack_varlen_hex (rs->buf, &n);
9b409511
YQ
10631
10632 *xfered_len = n;
92ffd475 10633 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
0e7f50da
UW
10634}
10635
0876f84a
DJ
10636/* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
10637 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
10638 number of bytes read is returned, or 0 for EOF, or -1 for error.
10639 The number of bytes read may be less than LEN without indicating an
10640 EOF. PACKET is checked and updated to indicate whether the remote
10641 target supports this object. */
10642
9b409511 10643static enum target_xfer_status
f6ac5f3d 10644remote_read_qxfer (const char *object_name,
0876f84a
DJ
10645 const char *annex,
10646 gdb_byte *readbuf, ULONGEST offset, LONGEST len,
9b409511 10647 ULONGEST *xfered_len,
0876f84a
DJ
10648 struct packet_config *packet)
10649{
0876f84a 10650 struct remote_state *rs = get_remote_state ();
0876f84a
DJ
10651 LONGEST i, n, packet_len;
10652
7cc244de 10653 if (packet_config_support (packet) == PACKET_DISABLE)
2ed4b548 10654 return TARGET_XFER_E_IO;
0876f84a
DJ
10655
10656 /* Check whether we've cached an end-of-object packet that matches
10657 this request. */
8e88304f 10658 if (rs->finished_object)
0876f84a 10659 {
8e88304f
TT
10660 if (strcmp (object_name, rs->finished_object) == 0
10661 && strcmp (annex ? annex : "", rs->finished_annex) == 0
10662 && offset == rs->finished_offset)
9b409511
YQ
10663 return TARGET_XFER_EOF;
10664
0876f84a
DJ
10665
10666 /* Otherwise, we're now reading something different. Discard
10667 the cache. */
8e88304f
TT
10668 xfree (rs->finished_object);
10669 xfree (rs->finished_annex);
10670 rs->finished_object = NULL;
10671 rs->finished_annex = NULL;
0876f84a
DJ
10672 }
10673
10674 /* Request only enough to fit in a single packet. The actual data
10675 may not, since we don't know how much of it will need to be escaped;
10676 the target is free to respond with slightly less data. We subtract
10677 five to account for the response type and the protocol frame. */
768adc05 10678 n = std::min<LONGEST> (get_remote_packet_size () - 5, len);
0876f84a
DJ
10679 snprintf (rs->buf, get_remote_packet_size () - 4, "qXfer:%s:read:%s:%s,%s",
10680 object_name, annex ? annex : "",
10681 phex_nz (offset, sizeof offset),
10682 phex_nz (n, sizeof n));
10683 i = putpkt (rs->buf);
10684 if (i < 0)
2ed4b548 10685 return TARGET_XFER_E_IO;
0876f84a
DJ
10686
10687 rs->buf[0] = '\0';
10688 packet_len = getpkt_sane (&rs->buf, &rs->buf_size, 0);
10689 if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 10690 return TARGET_XFER_E_IO;
0876f84a
DJ
10691
10692 if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
10693 error (_("Unknown remote qXfer reply: %s"), rs->buf);
10694
10695 /* 'm' means there is (or at least might be) more data after this
10696 batch. That does not make sense unless there's at least one byte
10697 of data in this reply. */
10698 if (rs->buf[0] == 'm' && packet_len == 1)
10699 error (_("Remote qXfer reply contained no data."));
10700
10701 /* Got some data. */
bc20a4af
PA
10702 i = remote_unescape_input ((gdb_byte *) rs->buf + 1,
10703 packet_len - 1, readbuf, n);
0876f84a
DJ
10704
10705 /* 'l' is an EOF marker, possibly including a final block of data,
0e7f50da
UW
10706 or possibly empty. If we have the final block of a non-empty
10707 object, record this fact to bypass a subsequent partial read. */
10708 if (rs->buf[0] == 'l' && offset + i > 0)
0876f84a 10709 {
8e88304f
TT
10710 rs->finished_object = xstrdup (object_name);
10711 rs->finished_annex = xstrdup (annex ? annex : "");
10712 rs->finished_offset = offset + i;
0876f84a
DJ
10713 }
10714
9b409511
YQ
10715 if (i == 0)
10716 return TARGET_XFER_EOF;
10717 else
10718 {
10719 *xfered_len = i;
10720 return TARGET_XFER_OK;
10721 }
0876f84a
DJ
10722}
10723
f6ac5f3d
PA
10724enum target_xfer_status
10725remote_target::xfer_partial (enum target_object object,
10726 const char *annex, gdb_byte *readbuf,
10727 const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
10728 ULONGEST *xfered_len)
c906108c 10729{
82f73884 10730 struct remote_state *rs;
c906108c 10731 int i;
6d820c5c 10732 char *p2;
1e3ff5ad 10733 char query_type;
124e13d9 10734 int unit_size = gdbarch_addressable_memory_unit_size (target_gdbarch ());
c906108c 10735
e6e4e701 10736 set_remote_traceframe ();
82f73884
PA
10737 set_general_thread (inferior_ptid);
10738
10739 rs = get_remote_state ();
10740
b2182ed2 10741 /* Handle memory using the standard memory routines. */
21e3b9b9
DJ
10742 if (object == TARGET_OBJECT_MEMORY)
10743 {
2d717e4f
DJ
10744 /* If the remote target is connected but not running, we should
10745 pass this request down to a lower stratum (e.g. the executable
10746 file). */
10747 if (!target_has_execution)
9b409511 10748 return TARGET_XFER_EOF;
2d717e4f 10749
21e3b9b9 10750 if (writebuf != NULL)
124e13d9
SM
10751 return remote_write_bytes (offset, writebuf, len, unit_size,
10752 xfered_len);
21e3b9b9 10753 else
f6ac5f3d 10754 return remote_read_bytes (this, offset, readbuf, len, unit_size,
124e13d9 10755 xfered_len);
21e3b9b9
DJ
10756 }
10757
0df8b418 10758 /* Handle SPU memory using qxfer packets. */
0e7f50da
UW
10759 if (object == TARGET_OBJECT_SPU)
10760 {
10761 if (readbuf)
f6ac5f3d 10762 return remote_read_qxfer ("spu", annex, readbuf, offset, len,
9b409511
YQ
10763 xfered_len, &remote_protocol_packets
10764 [PACKET_qXfer_spu_read]);
0e7f50da 10765 else
f6ac5f3d 10766 return remote_write_qxfer ("spu", annex, writebuf, offset, len,
9b409511
YQ
10767 xfered_len, &remote_protocol_packets
10768 [PACKET_qXfer_spu_write]);
0e7f50da
UW
10769 }
10770
4aa995e1
PA
10771 /* Handle extra signal info using qxfer packets. */
10772 if (object == TARGET_OBJECT_SIGNAL_INFO)
10773 {
10774 if (readbuf)
f6ac5f3d 10775 return remote_read_qxfer ("siginfo", annex, readbuf, offset, len,
9b409511 10776 xfered_len, &remote_protocol_packets
4aa995e1
PA
10777 [PACKET_qXfer_siginfo_read]);
10778 else
f6ac5f3d 10779 return remote_write_qxfer ("siginfo", annex,
9b409511 10780 writebuf, offset, len, xfered_len,
4aa995e1
PA
10781 &remote_protocol_packets
10782 [PACKET_qXfer_siginfo_write]);
10783 }
10784
0fb4aa4b
PA
10785 if (object == TARGET_OBJECT_STATIC_TRACE_DATA)
10786 {
10787 if (readbuf)
f6ac5f3d 10788 return remote_read_qxfer ("statictrace", annex,
9b409511 10789 readbuf, offset, len, xfered_len,
0fb4aa4b
PA
10790 &remote_protocol_packets
10791 [PACKET_qXfer_statictrace_read]);
10792 else
2ed4b548 10793 return TARGET_XFER_E_IO;
0fb4aa4b
PA
10794 }
10795
a76d924d
DJ
10796 /* Only handle flash writes. */
10797 if (writebuf != NULL)
10798 {
a76d924d
DJ
10799 switch (object)
10800 {
10801 case TARGET_OBJECT_FLASH:
f6ac5f3d 10802 return remote_flash_write (this, offset, len, xfered_len,
9b409511 10803 writebuf);
a76d924d
DJ
10804
10805 default:
2ed4b548 10806 return TARGET_XFER_E_IO;
a76d924d
DJ
10807 }
10808 }
4b8a223f 10809
1e3ff5ad
AC
10810 /* Map pre-existing objects onto letters. DO NOT do this for new
10811 objects!!! Instead specify new query packets. */
10812 switch (object)
c906108c 10813 {
1e3ff5ad
AC
10814 case TARGET_OBJECT_AVR:
10815 query_type = 'R';
10816 break;
802188a7
RM
10817
10818 case TARGET_OBJECT_AUXV:
0876f84a 10819 gdb_assert (annex == NULL);
f6ac5f3d 10820 return remote_read_qxfer ("auxv", annex, readbuf, offset, len,
9b409511 10821 xfered_len,
0876f84a 10822 &remote_protocol_packets[PACKET_qXfer_auxv]);
802188a7 10823
23181151
DJ
10824 case TARGET_OBJECT_AVAILABLE_FEATURES:
10825 return remote_read_qxfer
f6ac5f3d 10826 ("features", annex, readbuf, offset, len, xfered_len,
23181151
DJ
10827 &remote_protocol_packets[PACKET_qXfer_features]);
10828
cfa9d6d9
DJ
10829 case TARGET_OBJECT_LIBRARIES:
10830 return remote_read_qxfer
f6ac5f3d 10831 ("libraries", annex, readbuf, offset, len, xfered_len,
cfa9d6d9
DJ
10832 &remote_protocol_packets[PACKET_qXfer_libraries]);
10833
2268b414
JK
10834 case TARGET_OBJECT_LIBRARIES_SVR4:
10835 return remote_read_qxfer
f6ac5f3d 10836 ("libraries-svr4", annex, readbuf, offset, len, xfered_len,
2268b414
JK
10837 &remote_protocol_packets[PACKET_qXfer_libraries_svr4]);
10838
fd79ecee
DJ
10839 case TARGET_OBJECT_MEMORY_MAP:
10840 gdb_assert (annex == NULL);
f6ac5f3d 10841 return remote_read_qxfer ("memory-map", annex, readbuf, offset, len,
9b409511 10842 xfered_len,
fd79ecee
DJ
10843 &remote_protocol_packets[PACKET_qXfer_memory_map]);
10844
07e059b5
VP
10845 case TARGET_OBJECT_OSDATA:
10846 /* Should only get here if we're connected. */
5d93a237 10847 gdb_assert (rs->remote_desc);
07e059b5 10848 return remote_read_qxfer
f6ac5f3d 10849 ("osdata", annex, readbuf, offset, len, xfered_len,
07e059b5
VP
10850 &remote_protocol_packets[PACKET_qXfer_osdata]);
10851
dc146f7c
VP
10852 case TARGET_OBJECT_THREADS:
10853 gdb_assert (annex == NULL);
f6ac5f3d 10854 return remote_read_qxfer ("threads", annex, readbuf, offset, len,
9b409511 10855 xfered_len,
dc146f7c
VP
10856 &remote_protocol_packets[PACKET_qXfer_threads]);
10857
b3b9301e
PA
10858 case TARGET_OBJECT_TRACEFRAME_INFO:
10859 gdb_assert (annex == NULL);
10860 return remote_read_qxfer
f6ac5f3d 10861 ("traceframe-info", annex, readbuf, offset, len, xfered_len,
b3b9301e 10862 &remote_protocol_packets[PACKET_qXfer_traceframe_info]);
78d85199
YQ
10863
10864 case TARGET_OBJECT_FDPIC:
f6ac5f3d 10865 return remote_read_qxfer ("fdpic", annex, readbuf, offset, len,
9b409511 10866 xfered_len,
78d85199 10867 &remote_protocol_packets[PACKET_qXfer_fdpic]);
169081d0
TG
10868
10869 case TARGET_OBJECT_OPENVMS_UIB:
f6ac5f3d 10870 return remote_read_qxfer ("uib", annex, readbuf, offset, len,
9b409511 10871 xfered_len,
169081d0
TG
10872 &remote_protocol_packets[PACKET_qXfer_uib]);
10873
9accd112 10874 case TARGET_OBJECT_BTRACE:
f6ac5f3d 10875 return remote_read_qxfer ("btrace", annex, readbuf, offset, len,
9b409511 10876 xfered_len,
9accd112
MM
10877 &remote_protocol_packets[PACKET_qXfer_btrace]);
10878
f4abbc16 10879 case TARGET_OBJECT_BTRACE_CONF:
f6ac5f3d 10880 return remote_read_qxfer ("btrace-conf", annex, readbuf, offset,
f4abbc16
MM
10881 len, xfered_len,
10882 &remote_protocol_packets[PACKET_qXfer_btrace_conf]);
10883
c78fa86a 10884 case TARGET_OBJECT_EXEC_FILE:
f6ac5f3d 10885 return remote_read_qxfer ("exec-file", annex, readbuf, offset,
c78fa86a
GB
10886 len, xfered_len,
10887 &remote_protocol_packets[PACKET_qXfer_exec_file]);
10888
1e3ff5ad 10889 default:
2ed4b548 10890 return TARGET_XFER_E_IO;
c906108c
SS
10891 }
10892
0df8b418 10893 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
24b06219 10894 large enough let the caller deal with it. */
ea9c271d 10895 if (len < get_remote_packet_size ())
2ed4b548 10896 return TARGET_XFER_E_IO;
ea9c271d 10897 len = get_remote_packet_size ();
1e3ff5ad 10898
23860348 10899 /* Except for querying the minimum buffer size, target must be open. */
5d93a237 10900 if (!rs->remote_desc)
8a3fe4f8 10901 error (_("remote query is only available after target open"));
c906108c 10902
1e3ff5ad 10903 gdb_assert (annex != NULL);
4b8a223f 10904 gdb_assert (readbuf != NULL);
c906108c 10905
6d820c5c 10906 p2 = rs->buf;
c906108c
SS
10907 *p2++ = 'q';
10908 *p2++ = query_type;
10909
23860348
MS
10910 /* We used one buffer char for the remote protocol q command and
10911 another for the query type. As the remote protocol encapsulation
10912 uses 4 chars plus one extra in case we are debugging
10913 (remote_debug), we have PBUFZIZ - 7 left to pack the query
10914 string. */
c906108c 10915 i = 0;
ea9c271d 10916 while (annex[i] && (i < (get_remote_packet_size () - 8)))
c906108c 10917 {
1e3ff5ad
AC
10918 /* Bad caller may have sent forbidden characters. */
10919 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
10920 *p2++ = annex[i];
c906108c
SS
10921 i++;
10922 }
1e3ff5ad
AC
10923 *p2 = '\0';
10924 gdb_assert (annex[i] == '\0');
c906108c 10925
6d820c5c 10926 i = putpkt (rs->buf);
c5aa993b 10927 if (i < 0)
2ed4b548 10928 return TARGET_XFER_E_IO;
c906108c 10929
6d820c5c
DJ
10930 getpkt (&rs->buf, &rs->buf_size, 0);
10931 strcpy ((char *) readbuf, rs->buf);
c906108c 10932
9b409511 10933 *xfered_len = strlen ((char *) readbuf);
92ffd475 10934 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
c906108c
SS
10935}
10936
09c98b44
DB
10937/* Implementation of to_get_memory_xfer_limit. */
10938
f6ac5f3d
PA
10939ULONGEST
10940remote_target::get_memory_xfer_limit ()
09c98b44
DB
10941{
10942 return get_memory_write_packet_size ();
10943}
10944
f6ac5f3d
PA
10945int
10946remote_target::search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
10947 const gdb_byte *pattern, ULONGEST pattern_len,
10948 CORE_ADDR *found_addrp)
08388c79 10949{
f5656ead 10950 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
08388c79
DE
10951 struct remote_state *rs = get_remote_state ();
10952 int max_size = get_memory_write_packet_size ();
10953 struct packet_config *packet =
10954 &remote_protocol_packets[PACKET_qSearch_memory];
0df8b418
MS
10955 /* Number of packet bytes used to encode the pattern;
10956 this could be more than PATTERN_LEN due to escape characters. */
08388c79 10957 int escaped_pattern_len;
0df8b418 10958 /* Amount of pattern that was encodable in the packet. */
08388c79
DE
10959 int used_pattern_len;
10960 int i;
10961 int found;
10962 ULONGEST found_addr;
10963
7cc244de
PA
10964 /* Don't go to the target if we don't have to. This is done before
10965 checking packet_config_support to avoid the possibility that a
10966 success for this edge case means the facility works in
10967 general. */
08388c79
DE
10968 if (pattern_len > search_space_len)
10969 return 0;
10970 if (pattern_len == 0)
10971 {
10972 *found_addrp = start_addr;
10973 return 1;
10974 }
10975
10976 /* If we already know the packet isn't supported, fall back to the simple
10977 way of searching memory. */
10978
4082afcc 10979 if (packet_config_support (packet) == PACKET_DISABLE)
08388c79
DE
10980 {
10981 /* Target doesn't provided special support, fall back and use the
10982 standard support (copy memory and do the search here). */
f6ac5f3d 10983 return simple_search_memory (this, start_addr, search_space_len,
08388c79
DE
10984 pattern, pattern_len, found_addrp);
10985 }
10986
28439a30
PA
10987 /* Make sure the remote is pointing at the right process. */
10988 set_general_process ();
10989
08388c79
DE
10990 /* Insert header. */
10991 i = snprintf (rs->buf, max_size,
10992 "qSearch:memory:%s;%s;",
5af949e3 10993 phex_nz (start_addr, addr_size),
08388c79
DE
10994 phex_nz (search_space_len, sizeof (search_space_len)));
10995 max_size -= (i + 1);
10996
10997 /* Escape as much data as fits into rs->buf. */
10998 escaped_pattern_len =
124e13d9 10999 remote_escape_output (pattern, pattern_len, 1, (gdb_byte *) rs->buf + i,
08388c79
DE
11000 &used_pattern_len, max_size);
11001
11002 /* Bail if the pattern is too large. */
11003 if (used_pattern_len != pattern_len)
9b20d036 11004 error (_("Pattern is too large to transmit to remote target."));
08388c79
DE
11005
11006 if (putpkt_binary (rs->buf, i + escaped_pattern_len) < 0
11007 || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0
11008 || packet_ok (rs->buf, packet) != PACKET_OK)
11009 {
11010 /* The request may not have worked because the command is not
11011 supported. If so, fall back to the simple way. */
7cc244de 11012 if (packet_config_support (packet) == PACKET_DISABLE)
08388c79 11013 {
f6ac5f3d 11014 return simple_search_memory (this, start_addr, search_space_len,
08388c79
DE
11015 pattern, pattern_len, found_addrp);
11016 }
11017 return -1;
11018 }
11019
11020 if (rs->buf[0] == '0')
11021 found = 0;
11022 else if (rs->buf[0] == '1')
11023 {
11024 found = 1;
11025 if (rs->buf[1] != ',')
10e0fa18 11026 error (_("Unknown qSearch:memory reply: %s"), rs->buf);
08388c79
DE
11027 unpack_varlen_hex (rs->buf + 2, &found_addr);
11028 *found_addrp = found_addr;
11029 }
11030 else
10e0fa18 11031 error (_("Unknown qSearch:memory reply: %s"), rs->buf);
08388c79
DE
11032
11033 return found;
11034}
11035
f6ac5f3d
PA
11036void
11037remote_target::rcmd (const char *command, struct ui_file *outbuf)
96baa820 11038{
d01949b6 11039 struct remote_state *rs = get_remote_state ();
2e9f7625 11040 char *p = rs->buf;
96baa820 11041
5d93a237 11042 if (!rs->remote_desc)
8a3fe4f8 11043 error (_("remote rcmd is only available after target open"));
96baa820 11044
23860348 11045 /* Send a NULL command across as an empty command. */
7be570e7
JM
11046 if (command == NULL)
11047 command = "";
11048
23860348 11049 /* The query prefix. */
2e9f7625
DJ
11050 strcpy (rs->buf, "qRcmd,");
11051 p = strchr (rs->buf, '\0');
96baa820 11052
3e43a32a
MS
11053 if ((strlen (rs->buf) + strlen (command) * 2 + 8/*misc*/)
11054 > get_remote_packet_size ())
8a3fe4f8 11055 error (_("\"monitor\" command ``%s'' is too long."), command);
96baa820 11056
23860348 11057 /* Encode the actual command. */
a30bf1f1 11058 bin2hex ((const gdb_byte *) command, p, strlen (command));
96baa820 11059
6d820c5c 11060 if (putpkt (rs->buf) < 0)
8a3fe4f8 11061 error (_("Communication problem with target."));
96baa820
JM
11062
11063 /* get/display the response */
11064 while (1)
11065 {
2e9f7625
DJ
11066 char *buf;
11067
00bf0b85 11068 /* XXX - see also remote_get_noisy_reply(). */
5b37825d 11069 QUIT; /* Allow user to bail out with ^C. */
2e9f7625 11070 rs->buf[0] = '\0';
5b37825d
PW
11071 if (getpkt_sane (&rs->buf, &rs->buf_size, 0) == -1)
11072 {
11073 /* Timeout. Continue to (try to) read responses.
11074 This is better than stopping with an error, assuming the stub
11075 is still executing the (long) monitor command.
11076 If needed, the user can interrupt gdb using C-c, obtaining
11077 an effect similar to stop on timeout. */
11078 continue;
11079 }
2e9f7625 11080 buf = rs->buf;
96baa820 11081 if (buf[0] == '\0')
8a3fe4f8 11082 error (_("Target does not support this command."));
96baa820
JM
11083 if (buf[0] == 'O' && buf[1] != 'K')
11084 {
23860348 11085 remote_console_output (buf + 1); /* 'O' message from stub. */
96baa820
JM
11086 continue;
11087 }
11088 if (strcmp (buf, "OK") == 0)
11089 break;
7be570e7
JM
11090 if (strlen (buf) == 3 && buf[0] == 'E'
11091 && isdigit (buf[1]) && isdigit (buf[2]))
11092 {
8a3fe4f8 11093 error (_("Protocol error with Rcmd"));
7be570e7 11094 }
96baa820
JM
11095 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
11096 {
11097 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
a744cf53 11098
96baa820
JM
11099 fputc_unfiltered (c, outbuf);
11100 }
11101 break;
11102 }
11103}
11104
f6ac5f3d
PA
11105std::vector<mem_region>
11106remote_target::memory_map ()
fd79ecee 11107{
a664f67e 11108 std::vector<mem_region> result;
9018be22 11109 gdb::optional<gdb::char_vector> text
f6ac5f3d 11110 = target_read_stralloc (target_stack, TARGET_OBJECT_MEMORY_MAP, NULL);
fd79ecee
DJ
11111
11112 if (text)
9018be22 11113 result = parse_memory_map (text->data ());
fd79ecee
DJ
11114
11115 return result;
11116}
11117
c906108c 11118static void
ac88e2de 11119packet_command (const char *args, int from_tty)
c906108c 11120{
d01949b6 11121 struct remote_state *rs = get_remote_state ();
c906108c 11122
5d93a237 11123 if (!rs->remote_desc)
8a3fe4f8 11124 error (_("command can only be used with remote target"));
c906108c 11125
c5aa993b 11126 if (!args)
8a3fe4f8 11127 error (_("remote-packet command requires packet text as argument"));
c906108c
SS
11128
11129 puts_filtered ("sending: ");
11130 print_packet (args);
11131 puts_filtered ("\n");
11132 putpkt (args);
11133
6d820c5c 11134 getpkt (&rs->buf, &rs->buf_size, 0);
c906108c 11135 puts_filtered ("received: ");
6d820c5c 11136 print_packet (rs->buf);
c906108c
SS
11137 puts_filtered ("\n");
11138}
11139
11140#if 0
23860348 11141/* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
c906108c 11142
a14ed312 11143static void display_thread_info (struct gdb_ext_thread_info *info);
c906108c 11144
a14ed312 11145static void threadset_test_cmd (char *cmd, int tty);
c906108c 11146
a14ed312 11147static void threadalive_test (char *cmd, int tty);
c906108c 11148
a14ed312 11149static void threadlist_test_cmd (char *cmd, int tty);
c906108c 11150
23860348 11151int get_and_display_threadinfo (threadref *ref);
c906108c 11152
a14ed312 11153static void threadinfo_test_cmd (char *cmd, int tty);
c906108c 11154
23860348 11155static int thread_display_step (threadref *ref, void *context);
c906108c 11156
a14ed312 11157static void threadlist_update_test_cmd (char *cmd, int tty);
c906108c 11158
a14ed312 11159static void init_remote_threadtests (void);
c906108c 11160
23860348 11161#define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
c906108c
SS
11162
11163static void
0b39b52e 11164threadset_test_cmd (const char *cmd, int tty)
c906108c
SS
11165{
11166 int sample_thread = SAMPLE_THREAD;
11167
a3f17187 11168 printf_filtered (_("Remote threadset test\n"));
79d7f229 11169 set_general_thread (sample_thread);
c906108c
SS
11170}
11171
11172
11173static void
0b39b52e 11174threadalive_test (const char *cmd, int tty)
c906108c
SS
11175{
11176 int sample_thread = SAMPLE_THREAD;
79d7f229 11177 int pid = ptid_get_pid (inferior_ptid);
ba348170 11178 ptid_t ptid = ptid_build (pid, sample_thread, 0);
c906108c 11179
79d7f229 11180 if (remote_thread_alive (ptid))
c906108c
SS
11181 printf_filtered ("PASS: Thread alive test\n");
11182 else
11183 printf_filtered ("FAIL: Thread alive test\n");
11184}
11185
23860348 11186void output_threadid (char *title, threadref *ref);
c906108c
SS
11187
11188void
fba45db2 11189output_threadid (char *title, threadref *ref)
c906108c
SS
11190{
11191 char hexid[20];
11192
23860348 11193 pack_threadid (&hexid[0], ref); /* Convert threead id into hex. */
c906108c
SS
11194 hexid[16] = 0;
11195 printf_filtered ("%s %s\n", title, (&hexid[0]));
11196}
11197
11198static void
0b39b52e 11199threadlist_test_cmd (const char *cmd, int tty)
c906108c
SS
11200{
11201 int startflag = 1;
11202 threadref nextthread;
11203 int done, result_count;
11204 threadref threadlist[3];
11205
11206 printf_filtered ("Remote Threadlist test\n");
11207 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
11208 &result_count, &threadlist[0]))
11209 printf_filtered ("FAIL: threadlist test\n");
11210 else
11211 {
11212 threadref *scan = threadlist;
11213 threadref *limit = scan + result_count;
11214
11215 while (scan < limit)
11216 output_threadid (" thread ", scan++);
11217 }
11218}
11219
11220void
fba45db2 11221display_thread_info (struct gdb_ext_thread_info *info)
c906108c
SS
11222{
11223 output_threadid ("Threadid: ", &info->threadid);
11224 printf_filtered ("Name: %s\n ", info->shortname);
11225 printf_filtered ("State: %s\n", info->display);
11226 printf_filtered ("other: %s\n\n", info->more_display);
11227}
11228
11229int
fba45db2 11230get_and_display_threadinfo (threadref *ref)
c906108c
SS
11231{
11232 int result;
11233 int set;
11234 struct gdb_ext_thread_info threadinfo;
11235
11236 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
11237 | TAG_MOREDISPLAY | TAG_DISPLAY;
11238 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
11239 display_thread_info (&threadinfo);
11240 return result;
11241}
11242
11243static void
0b39b52e 11244threadinfo_test_cmd (const char *cmd, int tty)
c906108c
SS
11245{
11246 int athread = SAMPLE_THREAD;
11247 threadref thread;
11248 int set;
11249
11250 int_to_threadref (&thread, athread);
11251 printf_filtered ("Remote Threadinfo test\n");
11252 if (!get_and_display_threadinfo (&thread))
11253 printf_filtered ("FAIL cannot get thread info\n");
11254}
11255
11256static int
fba45db2 11257thread_display_step (threadref *ref, void *context)
c906108c
SS
11258{
11259 /* output_threadid(" threadstep ",ref); *//* simple test */
11260 return get_and_display_threadinfo (ref);
11261}
11262
11263static void
0b39b52e 11264threadlist_update_test_cmd (const char *cmd, int tty)
c906108c
SS
11265{
11266 printf_filtered ("Remote Threadlist update test\n");
11267 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
11268}
11269
11270static void
11271init_remote_threadtests (void)
11272{
3e43a32a
MS
11273 add_com ("tlist", class_obscure, threadlist_test_cmd,
11274 _("Fetch and print the remote list of "
11275 "thread identifiers, one pkt only"));
c906108c 11276 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
1bedd215 11277 _("Fetch and display info about one thread"));
c906108c 11278 add_com ("tset", class_obscure, threadset_test_cmd,
1bedd215 11279 _("Test setting to a different thread"));
c906108c 11280 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
1bedd215 11281 _("Iterate through updating all remote thread info"));
c906108c 11282 add_com ("talive", class_obscure, threadalive_test,
1bedd215 11283 _(" Remote thread alive test "));
c906108c
SS
11284}
11285
11286#endif /* 0 */
11287
f3fb8c85
MS
11288/* Convert a thread ID to a string. Returns the string in a static
11289 buffer. */
11290
f6ac5f3d
PA
11291const char *
11292remote_target::pid_to_str (ptid_t ptid)
f3fb8c85 11293{
79d7f229 11294 static char buf[64];
82f73884 11295 struct remote_state *rs = get_remote_state ();
f3fb8c85 11296
7cee1e54
PA
11297 if (ptid_equal (ptid, null_ptid))
11298 return normal_pid_to_str (ptid);
11299 else if (ptid_is_pid (ptid))
ecd0ada5
PA
11300 {
11301 /* Printing an inferior target id. */
11302
11303 /* When multi-process extensions are off, there's no way in the
11304 remote protocol to know the remote process id, if there's any
11305 at all. There's one exception --- when we're connected with
11306 target extended-remote, and we manually attached to a process
11307 with "attach PID". We don't record anywhere a flag that
11308 allows us to distinguish that case from the case of
11309 connecting with extended-remote and the stub already being
11310 attached to a process, and reporting yes to qAttached, hence
11311 no smart special casing here. */
11312 if (!remote_multi_process_p (rs))
11313 {
11314 xsnprintf (buf, sizeof buf, "Remote target");
11315 return buf;
11316 }
11317
11318 return normal_pid_to_str (ptid);
82f73884 11319 }
ecd0ada5 11320 else
79d7f229 11321 {
ecd0ada5
PA
11322 if (ptid_equal (magic_null_ptid, ptid))
11323 xsnprintf (buf, sizeof buf, "Thread <main>");
8020350c 11324 else if (remote_multi_process_p (rs))
de0d863e
DB
11325 if (ptid_get_lwp (ptid) == 0)
11326 return normal_pid_to_str (ptid);
11327 else
11328 xsnprintf (buf, sizeof buf, "Thread %d.%ld",
11329 ptid_get_pid (ptid), ptid_get_lwp (ptid));
ecd0ada5
PA
11330 else
11331 xsnprintf (buf, sizeof buf, "Thread %ld",
ba348170 11332 ptid_get_lwp (ptid));
79d7f229
PA
11333 return buf;
11334 }
f3fb8c85
MS
11335}
11336
38691318
KB
11337/* Get the address of the thread local variable in OBJFILE which is
11338 stored at OFFSET within the thread local storage for thread PTID. */
11339
f6ac5f3d
PA
11340CORE_ADDR
11341remote_target::get_thread_local_address (ptid_t ptid, CORE_ADDR lm,
11342 CORE_ADDR offset)
38691318 11343{
4082afcc 11344 if (packet_support (PACKET_qGetTLSAddr) != PACKET_DISABLE)
38691318
KB
11345 {
11346 struct remote_state *rs = get_remote_state ();
6d820c5c 11347 char *p = rs->buf;
82f73884 11348 char *endp = rs->buf + get_remote_packet_size ();
571dd617 11349 enum packet_result result;
38691318
KB
11350
11351 strcpy (p, "qGetTLSAddr:");
11352 p += strlen (p);
82f73884 11353 p = write_ptid (p, endp, ptid);
38691318
KB
11354 *p++ = ',';
11355 p += hexnumstr (p, offset);
11356 *p++ = ',';
11357 p += hexnumstr (p, lm);
11358 *p++ = '\0';
11359
6d820c5c
DJ
11360 putpkt (rs->buf);
11361 getpkt (&rs->buf, &rs->buf_size, 0);
3e43a32a
MS
11362 result = packet_ok (rs->buf,
11363 &remote_protocol_packets[PACKET_qGetTLSAddr]);
571dd617 11364 if (result == PACKET_OK)
38691318
KB
11365 {
11366 ULONGEST result;
11367
6d820c5c 11368 unpack_varlen_hex (rs->buf, &result);
38691318
KB
11369 return result;
11370 }
571dd617 11371 else if (result == PACKET_UNKNOWN)
109c3e39
AC
11372 throw_error (TLS_GENERIC_ERROR,
11373 _("Remote target doesn't support qGetTLSAddr packet"));
38691318 11374 else
109c3e39
AC
11375 throw_error (TLS_GENERIC_ERROR,
11376 _("Remote target failed to process qGetTLSAddr request"));
38691318
KB
11377 }
11378 else
109c3e39
AC
11379 throw_error (TLS_GENERIC_ERROR,
11380 _("TLS not supported or disabled on this target"));
38691318
KB
11381 /* Not reached. */
11382 return 0;
11383}
11384
711e434b
PM
11385/* Provide thread local base, i.e. Thread Information Block address.
11386 Returns 1 if ptid is found and thread_local_base is non zero. */
11387
57810aa7 11388bool
f6ac5f3d 11389remote_target::get_tib_address (ptid_t ptid, CORE_ADDR *addr)
711e434b 11390{
4082afcc 11391 if (packet_support (PACKET_qGetTIBAddr) != PACKET_DISABLE)
711e434b
PM
11392 {
11393 struct remote_state *rs = get_remote_state ();
11394 char *p = rs->buf;
11395 char *endp = rs->buf + get_remote_packet_size ();
11396 enum packet_result result;
11397
11398 strcpy (p, "qGetTIBAddr:");
11399 p += strlen (p);
11400 p = write_ptid (p, endp, ptid);
11401 *p++ = '\0';
11402
11403 putpkt (rs->buf);
11404 getpkt (&rs->buf, &rs->buf_size, 0);
11405 result = packet_ok (rs->buf,
11406 &remote_protocol_packets[PACKET_qGetTIBAddr]);
11407 if (result == PACKET_OK)
11408 {
11409 ULONGEST result;
11410
11411 unpack_varlen_hex (rs->buf, &result);
11412 if (addr)
11413 *addr = (CORE_ADDR) result;
57810aa7 11414 return true;
711e434b
PM
11415 }
11416 else if (result == PACKET_UNKNOWN)
11417 error (_("Remote target doesn't support qGetTIBAddr packet"));
11418 else
11419 error (_("Remote target failed to process qGetTIBAddr request"));
11420 }
11421 else
11422 error (_("qGetTIBAddr not supported or disabled on this target"));
11423 /* Not reached. */
57810aa7 11424 return false;
711e434b
PM
11425}
11426
29709017
DJ
11427/* Support for inferring a target description based on the current
11428 architecture and the size of a 'g' packet. While the 'g' packet
11429 can have any size (since optional registers can be left off the
11430 end), some sizes are easily recognizable given knowledge of the
11431 approximate architecture. */
11432
11433struct remote_g_packet_guess
11434{
11435 int bytes;
11436 const struct target_desc *tdesc;
11437};
11438typedef struct remote_g_packet_guess remote_g_packet_guess_s;
11439DEF_VEC_O(remote_g_packet_guess_s);
11440
11441struct remote_g_packet_data
11442{
11443 VEC(remote_g_packet_guess_s) *guesses;
11444};
11445
11446static struct gdbarch_data *remote_g_packet_data_handle;
11447
11448static void *
11449remote_g_packet_data_init (struct obstack *obstack)
11450{
11451 return OBSTACK_ZALLOC (obstack, struct remote_g_packet_data);
11452}
11453
11454void
11455register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes,
11456 const struct target_desc *tdesc)
11457{
11458 struct remote_g_packet_data *data
19ba03f4
SM
11459 = ((struct remote_g_packet_data *)
11460 gdbarch_data (gdbarch, remote_g_packet_data_handle));
29709017
DJ
11461 struct remote_g_packet_guess new_guess, *guess;
11462 int ix;
11463
11464 gdb_assert (tdesc != NULL);
11465
11466 for (ix = 0;
11467 VEC_iterate (remote_g_packet_guess_s, data->guesses, ix, guess);
11468 ix++)
11469 if (guess->bytes == bytes)
11470 internal_error (__FILE__, __LINE__,
9b20d036 11471 _("Duplicate g packet description added for size %d"),
29709017
DJ
11472 bytes);
11473
11474 new_guess.bytes = bytes;
11475 new_guess.tdesc = tdesc;
11476 VEC_safe_push (remote_g_packet_guess_s, data->guesses, &new_guess);
11477}
11478
d962ef82
DJ
11479/* Return 1 if remote_read_description would do anything on this target
11480 and architecture, 0 otherwise. */
11481
11482static int
11483remote_read_description_p (struct target_ops *target)
11484{
11485 struct remote_g_packet_data *data
19ba03f4
SM
11486 = ((struct remote_g_packet_data *)
11487 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
d962ef82
DJ
11488
11489 if (!VEC_empty (remote_g_packet_guess_s, data->guesses))
11490 return 1;
11491
11492 return 0;
11493}
11494
f6ac5f3d
PA
11495const struct target_desc *
11496remote_target::read_description ()
29709017
DJ
11497{
11498 struct remote_g_packet_data *data
19ba03f4
SM
11499 = ((struct remote_g_packet_data *)
11500 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
29709017 11501
d962ef82
DJ
11502 /* Do not try this during initial connection, when we do not know
11503 whether there is a running but stopped thread. */
11504 if (!target_has_execution || ptid_equal (inferior_ptid, null_ptid))
f6ac5f3d 11505 return beneath->read_description ();
d962ef82 11506
29709017
DJ
11507 if (!VEC_empty (remote_g_packet_guess_s, data->guesses))
11508 {
11509 struct remote_g_packet_guess *guess;
11510 int ix;
11511 int bytes = send_g_packet ();
11512
11513 for (ix = 0;
11514 VEC_iterate (remote_g_packet_guess_s, data->guesses, ix, guess);
11515 ix++)
11516 if (guess->bytes == bytes)
11517 return guess->tdesc;
11518
11519 /* We discard the g packet. A minor optimization would be to
11520 hold on to it, and fill the register cache once we have selected
11521 an architecture, but it's too tricky to do safely. */
11522 }
11523
f6ac5f3d 11524 return beneath->read_description ();
29709017
DJ
11525}
11526
a6b151f1
DJ
11527/* Remote file transfer support. This is host-initiated I/O, not
11528 target-initiated; for target-initiated, see remote-fileio.c. */
11529
11530/* If *LEFT is at least the length of STRING, copy STRING to
11531 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11532 decrease *LEFT. Otherwise raise an error. */
11533
11534static void
a121b7c1 11535remote_buffer_add_string (char **buffer, int *left, const char *string)
a6b151f1
DJ
11536{
11537 int len = strlen (string);
11538
11539 if (len > *left)
11540 error (_("Packet too long for target."));
11541
11542 memcpy (*buffer, string, len);
11543 *buffer += len;
11544 *left -= len;
11545
11546 /* NUL-terminate the buffer as a convenience, if there is
11547 room. */
11548 if (*left)
11549 **buffer = '\0';
11550}
11551
11552/* If *LEFT is large enough, hex encode LEN bytes from BYTES into
11553 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11554 decrease *LEFT. Otherwise raise an error. */
11555
11556static void
11557remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes,
11558 int len)
11559{
11560 if (2 * len > *left)
11561 error (_("Packet too long for target."));
11562
11563 bin2hex (bytes, *buffer, len);
11564 *buffer += 2 * len;
11565 *left -= 2 * len;
11566
11567 /* NUL-terminate the buffer as a convenience, if there is
11568 room. */
11569 if (*left)
11570 **buffer = '\0';
11571}
11572
11573/* If *LEFT is large enough, convert VALUE to hex and add it to
11574 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11575 decrease *LEFT. Otherwise raise an error. */
11576
11577static void
11578remote_buffer_add_int (char **buffer, int *left, ULONGEST value)
11579{
11580 int len = hexnumlen (value);
11581
11582 if (len > *left)
11583 error (_("Packet too long for target."));
11584
11585 hexnumstr (*buffer, value);
11586 *buffer += len;
11587 *left -= len;
11588
11589 /* NUL-terminate the buffer as a convenience, if there is
11590 room. */
11591 if (*left)
11592 **buffer = '\0';
11593}
11594
11595/* Parse an I/O result packet from BUFFER. Set RETCODE to the return
11596 value, *REMOTE_ERRNO to the remote error number or zero if none
11597 was included, and *ATTACHMENT to point to the start of the annex
11598 if any. The length of the packet isn't needed here; there may
11599 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
11600
11601 Return 0 if the packet could be parsed, -1 if it could not. If
11602 -1 is returned, the other variables may not be initialized. */
11603
11604static int
11605remote_hostio_parse_result (char *buffer, int *retcode,
11606 int *remote_errno, char **attachment)
11607{
11608 char *p, *p2;
11609
11610 *remote_errno = 0;
11611 *attachment = NULL;
11612
11613 if (buffer[0] != 'F')
11614 return -1;
11615
11616 errno = 0;
11617 *retcode = strtol (&buffer[1], &p, 16);
11618 if (errno != 0 || p == &buffer[1])
11619 return -1;
11620
11621 /* Check for ",errno". */
11622 if (*p == ',')
11623 {
11624 errno = 0;
11625 *remote_errno = strtol (p + 1, &p2, 16);
11626 if (errno != 0 || p + 1 == p2)
11627 return -1;
11628 p = p2;
11629 }
11630
11631 /* Check for ";attachment". If there is no attachment, the
11632 packet should end here. */
11633 if (*p == ';')
11634 {
11635 *attachment = p + 1;
11636 return 0;
11637 }
11638 else if (*p == '\0')
11639 return 0;
11640 else
11641 return -1;
11642}
11643
11644/* Send a prepared I/O packet to the target and read its response.
11645 The prepared packet is in the global RS->BUF before this function
11646 is called, and the answer is there when we return.
11647
11648 COMMAND_BYTES is the length of the request to send, which may include
11649 binary data. WHICH_PACKET is the packet configuration to check
11650 before attempting a packet. If an error occurs, *REMOTE_ERRNO
11651 is set to the error number and -1 is returned. Otherwise the value
11652 returned by the function is returned.
11653
11654 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
11655 attachment is expected; an error will be reported if there's a
11656 mismatch. If one is found, *ATTACHMENT will be set to point into
11657 the packet buffer and *ATTACHMENT_LEN will be set to the
11658 attachment's length. */
11659
11660static int
11661remote_hostio_send_command (int command_bytes, int which_packet,
11662 int *remote_errno, char **attachment,
11663 int *attachment_len)
11664{
11665 struct remote_state *rs = get_remote_state ();
11666 int ret, bytes_read;
11667 char *attachment_tmp;
11668
20db9c52 11669 if (packet_support (which_packet) == PACKET_DISABLE)
a6b151f1
DJ
11670 {
11671 *remote_errno = FILEIO_ENOSYS;
11672 return -1;
11673 }
11674
11675 putpkt_binary (rs->buf, command_bytes);
11676 bytes_read = getpkt_sane (&rs->buf, &rs->buf_size, 0);
11677
11678 /* If it timed out, something is wrong. Don't try to parse the
11679 buffer. */
11680 if (bytes_read < 0)
11681 {
11682 *remote_errno = FILEIO_EINVAL;
11683 return -1;
11684 }
11685
11686 switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet]))
11687 {
11688 case PACKET_ERROR:
11689 *remote_errno = FILEIO_EINVAL;
11690 return -1;
11691 case PACKET_UNKNOWN:
11692 *remote_errno = FILEIO_ENOSYS;
11693 return -1;
11694 case PACKET_OK:
11695 break;
11696 }
11697
11698 if (remote_hostio_parse_result (rs->buf, &ret, remote_errno,
11699 &attachment_tmp))
11700 {
11701 *remote_errno = FILEIO_EINVAL;
11702 return -1;
11703 }
11704
11705 /* Make sure we saw an attachment if and only if we expected one. */
11706 if ((attachment_tmp == NULL && attachment != NULL)
11707 || (attachment_tmp != NULL && attachment == NULL))
11708 {
11709 *remote_errno = FILEIO_EINVAL;
11710 return -1;
11711 }
11712
11713 /* If an attachment was found, it must point into the packet buffer;
11714 work out how many bytes there were. */
11715 if (attachment_tmp != NULL)
11716 {
11717 *attachment = attachment_tmp;
11718 *attachment_len = bytes_read - (*attachment - rs->buf);
11719 }
11720
11721 return ret;
11722}
11723
dd194f6b 11724/* See declaration.h. */
80152258 11725
dd194f6b
PA
11726void
11727readahead_cache::invalidate ()
80152258 11728{
dd194f6b 11729 this->fd = -1;
80152258
PA
11730}
11731
dd194f6b 11732/* See declaration.h. */
80152258 11733
dd194f6b
PA
11734void
11735readahead_cache::invalidate_fd (int fd)
80152258 11736{
dd194f6b
PA
11737 if (this->fd == fd)
11738 this->fd = -1;
80152258
PA
11739}
11740
15a201c8
GB
11741/* Set the filesystem remote_hostio functions that take FILENAME
11742 arguments will use. Return 0 on success, or -1 if an error
11743 occurs (and set *REMOTE_ERRNO). */
11744
11745static int
11746remote_hostio_set_filesystem (struct inferior *inf, int *remote_errno)
11747{
11748 struct remote_state *rs = get_remote_state ();
11749 int required_pid = (inf == NULL || inf->fake_pid_p) ? 0 : inf->pid;
11750 char *p = rs->buf;
11751 int left = get_remote_packet_size () - 1;
11752 char arg[9];
11753 int ret;
11754
11755 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11756 return 0;
11757
11758 if (rs->fs_pid != -1 && required_pid == rs->fs_pid)
11759 return 0;
11760
11761 remote_buffer_add_string (&p, &left, "vFile:setfs:");
11762
11763 xsnprintf (arg, sizeof (arg), "%x", required_pid);
11764 remote_buffer_add_string (&p, &left, arg);
11765
11766 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_setfs,
11767 remote_errno, NULL, NULL);
11768
11769 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11770 return 0;
11771
11772 if (ret == 0)
11773 rs->fs_pid = required_pid;
11774
11775 return ret;
11776}
11777
12e2a5fd 11778/* Implementation of to_fileio_open. */
a6b151f1
DJ
11779
11780static int
cd897586 11781remote_hostio_open (struct target_ops *self,
07c138c8 11782 struct inferior *inf, const char *filename,
4313b8c0
GB
11783 int flags, int mode, int warn_if_slow,
11784 int *remote_errno)
a6b151f1
DJ
11785{
11786 struct remote_state *rs = get_remote_state ();
11787 char *p = rs->buf;
11788 int left = get_remote_packet_size () - 1;
11789
4313b8c0
GB
11790 if (warn_if_slow)
11791 {
11792 static int warning_issued = 0;
11793
11794 printf_unfiltered (_("Reading %s from remote target...\n"),
11795 filename);
11796
11797 if (!warning_issued)
11798 {
11799 warning (_("File transfers from remote targets can be slow."
11800 " Use \"set sysroot\" to access files locally"
11801 " instead."));
11802 warning_issued = 1;
11803 }
11804 }
11805
15a201c8
GB
11806 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
11807 return -1;
11808
a6b151f1
DJ
11809 remote_buffer_add_string (&p, &left, "vFile:open:");
11810
11811 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
11812 strlen (filename));
11813 remote_buffer_add_string (&p, &left, ",");
11814
11815 remote_buffer_add_int (&p, &left, flags);
11816 remote_buffer_add_string (&p, &left, ",");
11817
11818 remote_buffer_add_int (&p, &left, mode);
11819
11820 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_open,
11821 remote_errno, NULL, NULL);
11822}
11823
f6ac5f3d
PA
11824int
11825remote_target::fileio_open (struct inferior *inf, const char *filename,
11826 int flags, int mode, int warn_if_slow,
11827 int *remote_errno)
11828{
11829 return remote_hostio_open (this, inf, filename, flags, mode, warn_if_slow,
11830 remote_errno);
11831}
11832
12e2a5fd 11833/* Implementation of to_fileio_pwrite. */
a6b151f1
DJ
11834
11835static int
0d866f62
TT
11836remote_hostio_pwrite (struct target_ops *self,
11837 int fd, const gdb_byte *write_buf, int len,
a6b151f1
DJ
11838 ULONGEST offset, int *remote_errno)
11839{
11840 struct remote_state *rs = get_remote_state ();
11841 char *p = rs->buf;
11842 int left = get_remote_packet_size ();
11843 int out_len;
11844
dd194f6b 11845 rs->readahead_cache.invalidate_fd (fd);
80152258 11846
a6b151f1
DJ
11847 remote_buffer_add_string (&p, &left, "vFile:pwrite:");
11848
11849 remote_buffer_add_int (&p, &left, fd);
11850 remote_buffer_add_string (&p, &left, ",");
11851
11852 remote_buffer_add_int (&p, &left, offset);
11853 remote_buffer_add_string (&p, &left, ",");
11854
124e13d9 11855 p += remote_escape_output (write_buf, len, 1, (gdb_byte *) p, &out_len,
a6b151f1
DJ
11856 get_remote_packet_size () - (p - rs->buf));
11857
11858 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_pwrite,
11859 remote_errno, NULL, NULL);
11860}
11861
f6ac5f3d
PA
11862int
11863remote_target::fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
11864 ULONGEST offset, int *remote_errno)
11865{
11866 return remote_hostio_pwrite (this, fd, write_buf, len, offset, remote_errno);
11867}
11868
80152258
PA
11869/* Helper for the implementation of to_fileio_pread. Read the file
11870 from the remote side with vFile:pread. */
a6b151f1
DJ
11871
11872static int
80152258
PA
11873remote_hostio_pread_vFile (struct target_ops *self,
11874 int fd, gdb_byte *read_buf, int len,
11875 ULONGEST offset, int *remote_errno)
a6b151f1
DJ
11876{
11877 struct remote_state *rs = get_remote_state ();
11878 char *p = rs->buf;
11879 char *attachment;
11880 int left = get_remote_packet_size ();
11881 int ret, attachment_len;
11882 int read_len;
11883
11884 remote_buffer_add_string (&p, &left, "vFile:pread:");
11885
11886 remote_buffer_add_int (&p, &left, fd);
11887 remote_buffer_add_string (&p, &left, ",");
11888
11889 remote_buffer_add_int (&p, &left, len);
11890 remote_buffer_add_string (&p, &left, ",");
11891
11892 remote_buffer_add_int (&p, &left, offset);
11893
11894 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_pread,
11895 remote_errno, &attachment,
11896 &attachment_len);
11897
11898 if (ret < 0)
11899 return ret;
11900
bc20a4af 11901 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
a6b151f1
DJ
11902 read_buf, len);
11903 if (read_len != ret)
11904 error (_("Read returned %d, but %d bytes."), ret, (int) read_len);
11905
11906 return ret;
11907}
11908
dd194f6b 11909/* See declaration.h. */
80152258 11910
dd194f6b
PA
11911int
11912readahead_cache::pread (int fd, gdb_byte *read_buf, size_t len,
11913 ULONGEST offset)
80152258 11914{
dd194f6b
PA
11915 if (this->fd == fd
11916 && this->offset <= offset
11917 && offset < this->offset + this->bufsize)
80152258 11918 {
dd194f6b 11919 ULONGEST max = this->offset + this->bufsize;
80152258
PA
11920
11921 if (offset + len > max)
11922 len = max - offset;
11923
dd194f6b 11924 memcpy (read_buf, this->buf + offset - this->offset, len);
80152258
PA
11925 return len;
11926 }
11927
11928 return 0;
11929}
11930
11931/* Implementation of to_fileio_pread. */
11932
11933static int
11934remote_hostio_pread (struct target_ops *self,
11935 int fd, gdb_byte *read_buf, int len,
11936 ULONGEST offset, int *remote_errno)
11937{
11938 int ret;
11939 struct remote_state *rs = get_remote_state ();
dd194f6b 11940 readahead_cache *cache = &rs->readahead_cache;
80152258 11941
dd194f6b 11942 ret = cache->pread (fd, read_buf, len, offset);
80152258
PA
11943 if (ret > 0)
11944 {
11945 cache->hit_count++;
11946
11947 if (remote_debug)
11948 fprintf_unfiltered (gdb_stdlog, "readahead cache hit %s\n",
11949 pulongest (cache->hit_count));
11950 return ret;
11951 }
11952
11953 cache->miss_count++;
11954 if (remote_debug)
11955 fprintf_unfiltered (gdb_stdlog, "readahead cache miss %s\n",
11956 pulongest (cache->miss_count));
11957
11958 cache->fd = fd;
11959 cache->offset = offset;
11960 cache->bufsize = get_remote_packet_size ();
224c3ddb 11961 cache->buf = (gdb_byte *) xrealloc (cache->buf, cache->bufsize);
80152258
PA
11962
11963 ret = remote_hostio_pread_vFile (self, cache->fd, cache->buf, cache->bufsize,
11964 cache->offset, remote_errno);
11965 if (ret <= 0)
11966 {
dd194f6b 11967 cache->invalidate_fd (fd);
80152258
PA
11968 return ret;
11969 }
11970
11971 cache->bufsize = ret;
dd194f6b 11972 return cache->pread (fd, read_buf, len, offset);
80152258
PA
11973}
11974
f6ac5f3d
PA
11975int
11976remote_target::fileio_pread (int fd, gdb_byte *read_buf, int len,
11977 ULONGEST offset, int *remote_errno)
11978{
11979 return remote_hostio_pread (this, fd, read_buf, len, offset, remote_errno);
11980}
11981
12e2a5fd 11982/* Implementation of to_fileio_close. */
a6b151f1
DJ
11983
11984static int
df39ea25 11985remote_hostio_close (struct target_ops *self, int fd, int *remote_errno)
a6b151f1
DJ
11986{
11987 struct remote_state *rs = get_remote_state ();
11988 char *p = rs->buf;
11989 int left = get_remote_packet_size () - 1;
11990
dd194f6b 11991 rs->readahead_cache.invalidate_fd (fd);
80152258 11992
a6b151f1
DJ
11993 remote_buffer_add_string (&p, &left, "vFile:close:");
11994
11995 remote_buffer_add_int (&p, &left, fd);
11996
11997 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_close,
11998 remote_errno, NULL, NULL);
11999}
12000
f6ac5f3d
PA
12001int
12002remote_target::fileio_close (int fd, int *remote_errno)
12003{
12004 return remote_hostio_close (this, fd, remote_errno);
12005}
12006
12e2a5fd 12007/* Implementation of to_fileio_unlink. */
a6b151f1
DJ
12008
12009static int
dbbca37d 12010remote_hostio_unlink (struct target_ops *self,
07c138c8
GB
12011 struct inferior *inf, const char *filename,
12012 int *remote_errno)
a6b151f1
DJ
12013{
12014 struct remote_state *rs = get_remote_state ();
12015 char *p = rs->buf;
12016 int left = get_remote_packet_size () - 1;
12017
15a201c8
GB
12018 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
12019 return -1;
12020
a6b151f1
DJ
12021 remote_buffer_add_string (&p, &left, "vFile:unlink:");
12022
12023 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12024 strlen (filename));
12025
12026 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_unlink,
12027 remote_errno, NULL, NULL);
12028}
12029
f6ac5f3d
PA
12030int
12031remote_target::fileio_unlink (struct inferior *inf, const char *filename,
12032 int *remote_errno)
12033{
12034 return remote_hostio_unlink (this, inf, filename, remote_errno);
12035}
12036
12e2a5fd 12037/* Implementation of to_fileio_readlink. */
b9e7b9c3 12038
f6ac5f3d
PA
12039gdb::optional<std::string>
12040remote_target::fileio_readlink (struct inferior *inf, const char *filename,
12041 int *remote_errno)
b9e7b9c3
UW
12042{
12043 struct remote_state *rs = get_remote_state ();
12044 char *p = rs->buf;
12045 char *attachment;
12046 int left = get_remote_packet_size ();
12047 int len, attachment_len;
12048 int read_len;
b9e7b9c3 12049
15a201c8 12050 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
e0d3522b 12051 return {};
15a201c8 12052
b9e7b9c3
UW
12053 remote_buffer_add_string (&p, &left, "vFile:readlink:");
12054
12055 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12056 strlen (filename));
12057
12058 len = remote_hostio_send_command (p - rs->buf, PACKET_vFile_readlink,
12059 remote_errno, &attachment,
12060 &attachment_len);
12061
12062 if (len < 0)
e0d3522b 12063 return {};
b9e7b9c3 12064
e0d3522b 12065 std::string ret (len, '\0');
b9e7b9c3 12066
bc20a4af 12067 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
e0d3522b 12068 (gdb_byte *) &ret[0], len);
b9e7b9c3
UW
12069 if (read_len != len)
12070 error (_("Readlink returned %d, but %d bytes."), len, read_len);
12071
b9e7b9c3
UW
12072 return ret;
12073}
12074
12e2a5fd 12075/* Implementation of to_fileio_fstat. */
0a93529c 12076
f6ac5f3d
PA
12077int
12078remote_target::fileio_fstat (int fd, struct stat *st, int *remote_errno)
0a93529c
GB
12079{
12080 struct remote_state *rs = get_remote_state ();
12081 char *p = rs->buf;
12082 int left = get_remote_packet_size ();
12083 int attachment_len, ret;
12084 char *attachment;
12085 struct fio_stat fst;
12086 int read_len;
12087
464b0089
GB
12088 remote_buffer_add_string (&p, &left, "vFile:fstat:");
12089
12090 remote_buffer_add_int (&p, &left, fd);
12091
12092 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_fstat,
12093 remote_errno, &attachment,
12094 &attachment_len);
12095 if (ret < 0)
0a93529c 12096 {
464b0089
GB
12097 if (*remote_errno != FILEIO_ENOSYS)
12098 return ret;
12099
0a93529c
GB
12100 /* Strictly we should return -1, ENOSYS here, but when
12101 "set sysroot remote:" was implemented in August 2008
12102 BFD's need for a stat function was sidestepped with
12103 this hack. This was not remedied until March 2015
12104 so we retain the previous behavior to avoid breaking
12105 compatibility.
12106
12107 Note that the memset is a March 2015 addition; older
12108 GDBs set st_size *and nothing else* so the structure
12109 would have garbage in all other fields. This might
12110 break something but retaining the previous behavior
12111 here would be just too wrong. */
12112
12113 memset (st, 0, sizeof (struct stat));
12114 st->st_size = INT_MAX;
12115 return 0;
12116 }
12117
0a93529c
GB
12118 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
12119 (gdb_byte *) &fst, sizeof (fst));
12120
12121 if (read_len != ret)
12122 error (_("vFile:fstat returned %d, but %d bytes."), ret, read_len);
12123
12124 if (read_len != sizeof (fst))
12125 error (_("vFile:fstat returned %d bytes, but expecting %d."),
12126 read_len, (int) sizeof (fst));
12127
12128 remote_fileio_to_host_stat (&fst, st);
12129
12130 return 0;
12131}
12132
12e2a5fd 12133/* Implementation of to_filesystem_is_local. */
e3dd7556 12134
57810aa7 12135bool
f6ac5f3d 12136remote_target::filesystem_is_local ()
e3dd7556
GB
12137{
12138 /* Valgrind GDB presents itself as a remote target but works
12139 on the local filesystem: it does not implement remote get
12140 and users are not expected to set a sysroot. To handle
12141 this case we treat the remote filesystem as local if the
12142 sysroot is exactly TARGET_SYSROOT_PREFIX and if the stub
12143 does not support vFile:open. */
a3be80c3 12144 if (strcmp (gdb_sysroot, TARGET_SYSROOT_PREFIX) == 0)
e3dd7556
GB
12145 {
12146 enum packet_support ps = packet_support (PACKET_vFile_open);
12147
12148 if (ps == PACKET_SUPPORT_UNKNOWN)
12149 {
12150 int fd, remote_errno;
12151
12152 /* Try opening a file to probe support. The supplied
12153 filename is irrelevant, we only care about whether
12154 the stub recognizes the packet or not. */
f6ac5f3d 12155 fd = remote_hostio_open (this, NULL, "just probing",
4313b8c0 12156 FILEIO_O_RDONLY, 0700, 0,
e3dd7556
GB
12157 &remote_errno);
12158
12159 if (fd >= 0)
f6ac5f3d 12160 remote_hostio_close (this, fd, &remote_errno);
e3dd7556
GB
12161
12162 ps = packet_support (PACKET_vFile_open);
12163 }
12164
12165 if (ps == PACKET_DISABLE)
12166 {
12167 static int warning_issued = 0;
12168
12169 if (!warning_issued)
12170 {
12171 warning (_("remote target does not support file"
12172 " transfer, attempting to access files"
12173 " from local filesystem."));
12174 warning_issued = 1;
12175 }
12176
57810aa7 12177 return true;
e3dd7556
GB
12178 }
12179 }
12180
57810aa7 12181 return false;
e3dd7556
GB
12182}
12183
a6b151f1
DJ
12184static int
12185remote_fileio_errno_to_host (int errnum)
12186{
12187 switch (errnum)
12188 {
12189 case FILEIO_EPERM:
12190 return EPERM;
12191 case FILEIO_ENOENT:
12192 return ENOENT;
12193 case FILEIO_EINTR:
12194 return EINTR;
12195 case FILEIO_EIO:
12196 return EIO;
12197 case FILEIO_EBADF:
12198 return EBADF;
12199 case FILEIO_EACCES:
12200 return EACCES;
12201 case FILEIO_EFAULT:
12202 return EFAULT;
12203 case FILEIO_EBUSY:
12204 return EBUSY;
12205 case FILEIO_EEXIST:
12206 return EEXIST;
12207 case FILEIO_ENODEV:
12208 return ENODEV;
12209 case FILEIO_ENOTDIR:
12210 return ENOTDIR;
12211 case FILEIO_EISDIR:
12212 return EISDIR;
12213 case FILEIO_EINVAL:
12214 return EINVAL;
12215 case FILEIO_ENFILE:
12216 return ENFILE;
12217 case FILEIO_EMFILE:
12218 return EMFILE;
12219 case FILEIO_EFBIG:
12220 return EFBIG;
12221 case FILEIO_ENOSPC:
12222 return ENOSPC;
12223 case FILEIO_ESPIPE:
12224 return ESPIPE;
12225 case FILEIO_EROFS:
12226 return EROFS;
12227 case FILEIO_ENOSYS:
12228 return ENOSYS;
12229 case FILEIO_ENAMETOOLONG:
12230 return ENAMETOOLONG;
12231 }
12232 return -1;
12233}
12234
12235static char *
12236remote_hostio_error (int errnum)
12237{
12238 int host_error = remote_fileio_errno_to_host (errnum);
12239
12240 if (host_error == -1)
12241 error (_("Unknown remote I/O error %d"), errnum);
12242 else
12243 error (_("Remote I/O error: %s"), safe_strerror (host_error));
12244}
12245
440b7aec
PA
12246/* A RAII wrapper around a remote file descriptor. */
12247
12248class scoped_remote_fd
a6b151f1 12249{
440b7aec
PA
12250public:
12251 explicit scoped_remote_fd (int fd)
12252 : m_fd (fd)
12253 {
12254 }
a6b151f1 12255
440b7aec
PA
12256 ~scoped_remote_fd ()
12257 {
12258 if (m_fd != -1)
12259 {
12260 try
12261 {
12262 int remote_errno;
12263 remote_hostio_close (find_target_at (process_stratum),
12264 m_fd, &remote_errno);
12265 }
12266 catch (...)
12267 {
12268 /* Swallow exception before it escapes the dtor. If
12269 something goes wrong, likely the connection is gone,
12270 and there's nothing else that can be done. */
12271 }
12272 }
12273 }
12274
12275 DISABLE_COPY_AND_ASSIGN (scoped_remote_fd);
12276
12277 /* Release ownership of the file descriptor, and return it. */
12278 int release () noexcept
12279 {
12280 int fd = m_fd;
12281 m_fd = -1;
12282 return fd;
12283 }
12284
12285 /* Return the owned file descriptor. */
12286 int get () const noexcept
12287 {
12288 return m_fd;
12289 }
12290
12291private:
12292 /* The owned remote I/O file descriptor. */
12293 int m_fd;
12294};
a6b151f1
DJ
12295
12296void
12297remote_file_put (const char *local_file, const char *remote_file, int from_tty)
12298{
440b7aec
PA
12299 struct cleanup *back_to;
12300 int retcode, remote_errno, bytes, io_size;
a6b151f1
DJ
12301 gdb_byte *buffer;
12302 int bytes_in_buffer;
12303 int saw_eof;
12304 ULONGEST offset;
5d93a237 12305 struct remote_state *rs = get_remote_state ();
a6b151f1 12306
5d93a237 12307 if (!rs->remote_desc)
a6b151f1
DJ
12308 error (_("command can only be used with remote target"));
12309
d419f42d 12310 gdb_file_up file = gdb_fopen_cloexec (local_file, "rb");
a6b151f1
DJ
12311 if (file == NULL)
12312 perror_with_name (local_file);
a6b151f1 12313
440b7aec
PA
12314 scoped_remote_fd fd
12315 (remote_hostio_open (find_target_at (process_stratum), NULL,
12316 remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT
12317 | FILEIO_O_TRUNC),
12318 0700, 0, &remote_errno));
12319 if (fd.get () == -1)
a6b151f1
DJ
12320 remote_hostio_error (remote_errno);
12321
12322 /* Send up to this many bytes at once. They won't all fit in the
12323 remote packet limit, so we'll transfer slightly fewer. */
12324 io_size = get_remote_packet_size ();
224c3ddb 12325 buffer = (gdb_byte *) xmalloc (io_size);
d419f42d 12326 back_to = make_cleanup (xfree, buffer);
a6b151f1 12327
a6b151f1
DJ
12328 bytes_in_buffer = 0;
12329 saw_eof = 0;
12330 offset = 0;
12331 while (bytes_in_buffer || !saw_eof)
12332 {
12333 if (!saw_eof)
12334 {
3e43a32a
MS
12335 bytes = fread (buffer + bytes_in_buffer, 1,
12336 io_size - bytes_in_buffer,
d419f42d 12337 file.get ());
a6b151f1
DJ
12338 if (bytes == 0)
12339 {
d419f42d 12340 if (ferror (file.get ()))
a6b151f1
DJ
12341 error (_("Error reading %s."), local_file);
12342 else
12343 {
12344 /* EOF. Unless there is something still in the
12345 buffer from the last iteration, we are done. */
12346 saw_eof = 1;
12347 if (bytes_in_buffer == 0)
12348 break;
12349 }
12350 }
12351 }
12352 else
12353 bytes = 0;
12354
12355 bytes += bytes_in_buffer;
12356 bytes_in_buffer = 0;
12357
0d866f62 12358 retcode = remote_hostio_pwrite (find_target_at (process_stratum),
440b7aec 12359 fd.get (), buffer, bytes,
3e43a32a 12360 offset, &remote_errno);
a6b151f1
DJ
12361
12362 if (retcode < 0)
12363 remote_hostio_error (remote_errno);
12364 else if (retcode == 0)
12365 error (_("Remote write of %d bytes returned 0!"), bytes);
12366 else if (retcode < bytes)
12367 {
12368 /* Short write. Save the rest of the read data for the next
12369 write. */
12370 bytes_in_buffer = bytes - retcode;
12371 memmove (buffer, buffer + retcode, bytes_in_buffer);
12372 }
12373
12374 offset += retcode;
12375 }
12376
440b7aec
PA
12377 if (remote_hostio_close (find_target_at (process_stratum),
12378 fd.release (), &remote_errno))
a6b151f1
DJ
12379 remote_hostio_error (remote_errno);
12380
12381 if (from_tty)
12382 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file);
12383 do_cleanups (back_to);
12384}
12385
12386void
12387remote_file_get (const char *remote_file, const char *local_file, int from_tty)
12388{
440b7aec
PA
12389 struct cleanup *back_to;
12390 int remote_errno, bytes, io_size;
a6b151f1
DJ
12391 gdb_byte *buffer;
12392 ULONGEST offset;
5d93a237 12393 struct remote_state *rs = get_remote_state ();
a6b151f1 12394
5d93a237 12395 if (!rs->remote_desc)
a6b151f1
DJ
12396 error (_("command can only be used with remote target"));
12397
440b7aec
PA
12398 scoped_remote_fd fd
12399 (remote_hostio_open (find_target_at (process_stratum), NULL,
12400 remote_file, FILEIO_O_RDONLY, 0, 0,
12401 &remote_errno));
12402 if (fd.get () == -1)
a6b151f1
DJ
12403 remote_hostio_error (remote_errno);
12404
d419f42d 12405 gdb_file_up file = gdb_fopen_cloexec (local_file, "wb");
a6b151f1
DJ
12406 if (file == NULL)
12407 perror_with_name (local_file);
a6b151f1
DJ
12408
12409 /* Send up to this many bytes at once. They won't all fit in the
12410 remote packet limit, so we'll transfer slightly fewer. */
12411 io_size = get_remote_packet_size ();
224c3ddb 12412 buffer = (gdb_byte *) xmalloc (io_size);
d419f42d 12413 back_to = make_cleanup (xfree, buffer);
a6b151f1 12414
a6b151f1
DJ
12415 offset = 0;
12416 while (1)
12417 {
a3be983c 12418 bytes = remote_hostio_pread (find_target_at (process_stratum),
440b7aec
PA
12419 fd.get (), buffer, io_size, offset,
12420 &remote_errno);
a6b151f1
DJ
12421 if (bytes == 0)
12422 /* Success, but no bytes, means end-of-file. */
12423 break;
12424 if (bytes == -1)
12425 remote_hostio_error (remote_errno);
12426
12427 offset += bytes;
12428
d419f42d 12429 bytes = fwrite (buffer, 1, bytes, file.get ());
a6b151f1
DJ
12430 if (bytes == 0)
12431 perror_with_name (local_file);
12432 }
12433
440b7aec
PA
12434 if (remote_hostio_close (find_target_at (process_stratum),
12435 fd.release (), &remote_errno))
a6b151f1
DJ
12436 remote_hostio_error (remote_errno);
12437
12438 if (from_tty)
12439 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file);
12440 do_cleanups (back_to);
12441}
12442
12443void
12444remote_file_delete (const char *remote_file, int from_tty)
12445{
12446 int retcode, remote_errno;
5d93a237 12447 struct remote_state *rs = get_remote_state ();
a6b151f1 12448
5d93a237 12449 if (!rs->remote_desc)
a6b151f1
DJ
12450 error (_("command can only be used with remote target"));
12451
dbbca37d 12452 retcode = remote_hostio_unlink (find_target_at (process_stratum),
07c138c8 12453 NULL, remote_file, &remote_errno);
a6b151f1
DJ
12454 if (retcode == -1)
12455 remote_hostio_error (remote_errno);
12456
12457 if (from_tty)
12458 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file);
12459}
12460
12461static void
ac88e2de 12462remote_put_command (const char *args, int from_tty)
a6b151f1 12463{
d1a41061
PP
12464 if (args == NULL)
12465 error_no_arg (_("file to put"));
12466
773a1edc 12467 gdb_argv argv (args);
a6b151f1
DJ
12468 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12469 error (_("Invalid parameters to remote put"));
12470
12471 remote_file_put (argv[0], argv[1], from_tty);
a6b151f1
DJ
12472}
12473
12474static void
ac88e2de 12475remote_get_command (const char *args, int from_tty)
a6b151f1 12476{
d1a41061
PP
12477 if (args == NULL)
12478 error_no_arg (_("file to get"));
12479
773a1edc 12480 gdb_argv argv (args);
a6b151f1
DJ
12481 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12482 error (_("Invalid parameters to remote get"));
12483
12484 remote_file_get (argv[0], argv[1], from_tty);
a6b151f1
DJ
12485}
12486
12487static void
ac88e2de 12488remote_delete_command (const char *args, int from_tty)
a6b151f1 12489{
d1a41061
PP
12490 if (args == NULL)
12491 error_no_arg (_("file to delete"));
12492
773a1edc 12493 gdb_argv argv (args);
a6b151f1
DJ
12494 if (argv[0] == NULL || argv[1] != NULL)
12495 error (_("Invalid parameters to remote delete"));
12496
12497 remote_file_delete (argv[0], from_tty);
a6b151f1
DJ
12498}
12499
12500static void
981a3fb3 12501remote_command (const char *args, int from_tty)
a6b151f1 12502{
635c7e8a 12503 help_list (remote_cmdlist, "remote ", all_commands, gdb_stdout);
a6b151f1
DJ
12504}
12505
57810aa7 12506bool
f6ac5f3d 12507remote_target::can_execute_reverse ()
b2175913 12508{
4082afcc
PA
12509 if (packet_support (PACKET_bs) == PACKET_ENABLE
12510 || packet_support (PACKET_bc) == PACKET_ENABLE)
57810aa7 12511 return true;
40ab02ce 12512 else
57810aa7 12513 return false;
b2175913
MS
12514}
12515
57810aa7 12516bool
f6ac5f3d 12517remote_target::supports_non_stop ()
74531fed 12518{
57810aa7 12519 return true;
74531fed
PA
12520}
12521
57810aa7 12522bool
f6ac5f3d 12523remote_target::supports_disable_randomization ()
03583c20
UW
12524{
12525 /* Only supported in extended mode. */
57810aa7 12526 return false;
03583c20
UW
12527}
12528
57810aa7 12529bool
f6ac5f3d 12530remote_target::supports_multi_process ()
8a305172
PA
12531{
12532 struct remote_state *rs = get_remote_state ();
a744cf53 12533
8020350c 12534 return remote_multi_process_p (rs);
8a305172
PA
12535}
12536
70221824 12537static int
f6ac5f3d 12538remote_supports_cond_tracepoints ()
782b2b07 12539{
4082afcc 12540 return packet_support (PACKET_ConditionalTracepoints) == PACKET_ENABLE;
782b2b07
SS
12541}
12542
57810aa7 12543bool
f6ac5f3d 12544remote_target::supports_evaluation_of_breakpoint_conditions ()
3788aec7 12545{
4082afcc 12546 return packet_support (PACKET_ConditionalBreakpoints) == PACKET_ENABLE;
3788aec7
LM
12547}
12548
70221824 12549static int
f6ac5f3d 12550remote_supports_fast_tracepoints ()
7a697b8d 12551{
4082afcc 12552 return packet_support (PACKET_FastTracepoints) == PACKET_ENABLE;
7a697b8d
SS
12553}
12554
0fb4aa4b 12555static int
f6ac5f3d 12556remote_supports_static_tracepoints ()
0fb4aa4b 12557{
4082afcc 12558 return packet_support (PACKET_StaticTracepoints) == PACKET_ENABLE;
0fb4aa4b
PA
12559}
12560
1e4d1764 12561static int
f6ac5f3d 12562remote_supports_install_in_trace ()
1e4d1764 12563{
4082afcc 12564 return packet_support (PACKET_InstallInTrace) == PACKET_ENABLE;
1e4d1764
YQ
12565}
12566
57810aa7 12567bool
f6ac5f3d 12568remote_target::supports_enable_disable_tracepoint ()
d248b706 12569{
4082afcc
PA
12570 return (packet_support (PACKET_EnableDisableTracepoints_feature)
12571 == PACKET_ENABLE);
d248b706
KY
12572}
12573
57810aa7 12574bool
f6ac5f3d 12575remote_target::supports_string_tracing ()
3065dfb6 12576{
4082afcc 12577 return packet_support (PACKET_tracenz_feature) == PACKET_ENABLE;
3065dfb6
SS
12578}
12579
57810aa7 12580bool
f6ac5f3d 12581remote_target::can_run_breakpoint_commands ()
d3ce09f5 12582{
4082afcc 12583 return packet_support (PACKET_BreakpointCommands) == PACKET_ENABLE;
d3ce09f5
SS
12584}
12585
f6ac5f3d
PA
12586void
12587remote_target::trace_init ()
35b1e5cc 12588{
b6bb3468
PA
12589 struct remote_state *rs = get_remote_state ();
12590
35b1e5cc 12591 putpkt ("QTinit");
b6bb3468
PA
12592 remote_get_noisy_reply ();
12593 if (strcmp (rs->buf, "OK") != 0)
35b1e5cc
SS
12594 error (_("Target does not support this command."));
12595}
12596
409873ef
SS
12597/* Recursive routine to walk through command list including loops, and
12598 download packets for each command. */
12599
12600static void
12601remote_download_command_source (int num, ULONGEST addr,
12602 struct command_line *cmds)
12603{
12604 struct remote_state *rs = get_remote_state ();
12605 struct command_line *cmd;
12606
12607 for (cmd = cmds; cmd; cmd = cmd->next)
12608 {
0df8b418 12609 QUIT; /* Allow user to bail out with ^C. */
409873ef
SS
12610 strcpy (rs->buf, "QTDPsrc:");
12611 encode_source_string (num, addr, "cmd", cmd->line,
12612 rs->buf + strlen (rs->buf),
12613 rs->buf_size - strlen (rs->buf));
12614 putpkt (rs->buf);
b6bb3468
PA
12615 remote_get_noisy_reply ();
12616 if (strcmp (rs->buf, "OK"))
409873ef
SS
12617 warning (_("Target does not support source download."));
12618
12619 if (cmd->control_type == while_control
12620 || cmd->control_type == while_stepping_control)
12621 {
12973681 12622 remote_download_command_source (num, addr, cmd->body_list_0.get ());
409873ef 12623
0df8b418 12624 QUIT; /* Allow user to bail out with ^C. */
409873ef
SS
12625 strcpy (rs->buf, "QTDPsrc:");
12626 encode_source_string (num, addr, "cmd", "end",
12627 rs->buf + strlen (rs->buf),
12628 rs->buf_size - strlen (rs->buf));
12629 putpkt (rs->buf);
b6bb3468
PA
12630 remote_get_noisy_reply ();
12631 if (strcmp (rs->buf, "OK"))
409873ef
SS
12632 warning (_("Target does not support source download."));
12633 }
12634 }
12635}
12636
f6ac5f3d
PA
12637void
12638remote_target::download_tracepoint (struct bp_location *loc)
35b1e5cc 12639{
bba74b36 12640#define BUF_SIZE 2048
e8ba3115 12641
35b1e5cc 12642 CORE_ADDR tpaddr;
409873ef 12643 char addrbuf[40];
bba74b36 12644 char buf[BUF_SIZE];
b44ec619
SM
12645 std::vector<std::string> tdp_actions;
12646 std::vector<std::string> stepping_actions;
35b1e5cc 12647 char *pkt;
e8ba3115 12648 struct breakpoint *b = loc->owner;
d9b3f62e 12649 struct tracepoint *t = (struct tracepoint *) b;
b6bb3468 12650 struct remote_state *rs = get_remote_state ();
35b1e5cc 12651
dc673c81 12652 encode_actions_rsp (loc, &tdp_actions, &stepping_actions);
e8ba3115
YQ
12653
12654 tpaddr = loc->address;
12655 sprintf_vma (addrbuf, tpaddr);
bba74b36
YQ
12656 xsnprintf (buf, BUF_SIZE, "QTDP:%x:%s:%c:%lx:%x", b->number,
12657 addrbuf, /* address */
12658 (b->enable_state == bp_enabled ? 'E' : 'D'),
12659 t->step_count, t->pass_count);
e8ba3115
YQ
12660 /* Fast tracepoints are mostly handled by the target, but we can
12661 tell the target how big of an instruction block should be moved
12662 around. */
12663 if (b->type == bp_fast_tracepoint)
12664 {
12665 /* Only test for support at download time; we may not know
12666 target capabilities at definition time. */
12667 if (remote_supports_fast_tracepoints ())
35b1e5cc 12668 {
6b940e6a
PL
12669 if (gdbarch_fast_tracepoint_valid_at (loc->gdbarch, tpaddr,
12670 NULL))
bba74b36 12671 xsnprintf (buf + strlen (buf), BUF_SIZE - strlen (buf), ":F%x",
6b940e6a 12672 gdb_insn_length (loc->gdbarch, tpaddr));
35b1e5cc 12673 else
e8ba3115
YQ
12674 /* If it passed validation at definition but fails now,
12675 something is very wrong. */
12676 internal_error (__FILE__, __LINE__,
12677 _("Fast tracepoint not "
12678 "valid during download"));
35b1e5cc 12679 }
e8ba3115
YQ
12680 else
12681 /* Fast tracepoints are functionally identical to regular
12682 tracepoints, so don't take lack of support as a reason to
12683 give up on the trace run. */
12684 warning (_("Target does not support fast tracepoints, "
12685 "downloading %d as regular tracepoint"), b->number);
12686 }
12687 else if (b->type == bp_static_tracepoint)
12688 {
12689 /* Only test for support at download time; we may not know
12690 target capabilities at definition time. */
12691 if (remote_supports_static_tracepoints ())
0fb4aa4b 12692 {
e8ba3115 12693 struct static_tracepoint_marker marker;
0fb4aa4b 12694
e8ba3115
YQ
12695 if (target_static_tracepoint_marker_at (tpaddr, &marker))
12696 strcat (buf, ":S");
0fb4aa4b 12697 else
e8ba3115 12698 error (_("Static tracepoint not valid during download"));
0fb4aa4b 12699 }
e8ba3115
YQ
12700 else
12701 /* Fast tracepoints are functionally identical to regular
12702 tracepoints, so don't take lack of support as a reason
12703 to give up on the trace run. */
12704 error (_("Target does not support static tracepoints"));
12705 }
12706 /* If the tracepoint has a conditional, make it into an agent
12707 expression and append to the definition. */
12708 if (loc->cond)
12709 {
12710 /* Only test support at download time, we may not know target
12711 capabilities at definition time. */
12712 if (remote_supports_cond_tracepoints ())
35b1e5cc 12713 {
833177a4 12714 agent_expr_up aexpr = gen_eval_for_expr (tpaddr, loc->cond.get ());
bba74b36
YQ
12715 xsnprintf (buf + strlen (buf), BUF_SIZE - strlen (buf), ":X%x,",
12716 aexpr->len);
e8ba3115 12717 pkt = buf + strlen (buf);
b44ec619 12718 for (int ndx = 0; ndx < aexpr->len; ++ndx)
e8ba3115
YQ
12719 pkt = pack_hex_byte (pkt, aexpr->buf[ndx]);
12720 *pkt = '\0';
35b1e5cc 12721 }
e8ba3115
YQ
12722 else
12723 warning (_("Target does not support conditional tracepoints, "
12724 "ignoring tp %d cond"), b->number);
12725 }
35b1e5cc 12726
d9b3f62e 12727 if (b->commands || *default_collect)
e8ba3115
YQ
12728 strcat (buf, "-");
12729 putpkt (buf);
b6bb3468
PA
12730 remote_get_noisy_reply ();
12731 if (strcmp (rs->buf, "OK"))
e8ba3115 12732 error (_("Target does not support tracepoints."));
35b1e5cc 12733
e8ba3115 12734 /* do_single_steps (t); */
b44ec619
SM
12735 for (auto action_it = tdp_actions.begin ();
12736 action_it != tdp_actions.end (); action_it++)
e8ba3115 12737 {
b44ec619
SM
12738 QUIT; /* Allow user to bail out with ^C. */
12739
12740 bool has_more = (action_it != tdp_actions.end ()
12741 || !stepping_actions.empty ());
12742
12743 xsnprintf (buf, BUF_SIZE, "QTDP:-%x:%s:%s%c",
12744 b->number, addrbuf, /* address */
12745 action_it->c_str (),
12746 has_more ? '-' : 0);
12747 putpkt (buf);
12748 remote_get_noisy_reply ();
12749 if (strcmp (rs->buf, "OK"))
12750 error (_("Error on target while setting tracepoints."));
e8ba3115 12751 }
409873ef 12752
b44ec619
SM
12753 for (auto action_it = stepping_actions.begin ();
12754 action_it != stepping_actions.end (); action_it++)
12755 {
12756 QUIT; /* Allow user to bail out with ^C. */
12757
12758 bool is_first = action_it == stepping_actions.begin ();
12759 bool has_more = action_it != stepping_actions.end ();
12760
12761 xsnprintf (buf, BUF_SIZE, "QTDP:-%x:%s:%s%s%s",
12762 b->number, addrbuf, /* address */
12763 is_first ? "S" : "",
12764 action_it->c_str (),
12765 has_more ? "-" : "");
12766 putpkt (buf);
12767 remote_get_noisy_reply ();
12768 if (strcmp (rs->buf, "OK"))
12769 error (_("Error on target while setting tracepoints."));
12770 }
12771
4082afcc 12772 if (packet_support (PACKET_TracepointSource) == PACKET_ENABLE)
e8ba3115 12773 {
f00aae0f 12774 if (b->location != NULL)
409873ef 12775 {
e8ba3115 12776 strcpy (buf, "QTDPsrc:");
f00aae0f 12777 encode_source_string (b->number, loc->address, "at",
d28cd78a 12778 event_location_to_string (b->location.get ()),
f00aae0f 12779 buf + strlen (buf), 2048 - strlen (buf));
e8ba3115 12780 putpkt (buf);
b6bb3468
PA
12781 remote_get_noisy_reply ();
12782 if (strcmp (rs->buf, "OK"))
e8ba3115 12783 warning (_("Target does not support source download."));
409873ef 12784 }
e8ba3115
YQ
12785 if (b->cond_string)
12786 {
12787 strcpy (buf, "QTDPsrc:");
12788 encode_source_string (b->number, loc->address,
12789 "cond", b->cond_string, buf + strlen (buf),
12790 2048 - strlen (buf));
12791 putpkt (buf);
b6bb3468
PA
12792 remote_get_noisy_reply ();
12793 if (strcmp (rs->buf, "OK"))
e8ba3115
YQ
12794 warning (_("Target does not support source download."));
12795 }
12796 remote_download_command_source (b->number, loc->address,
12797 breakpoint_commands (b));
35b1e5cc 12798 }
35b1e5cc
SS
12799}
12800
57810aa7 12801bool
f6ac5f3d 12802remote_target::can_download_tracepoint ()
1e4d1764 12803{
1e51243a
PA
12804 struct remote_state *rs = get_remote_state ();
12805 struct trace_status *ts;
12806 int status;
12807
12808 /* Don't try to install tracepoints until we've relocated our
12809 symbols, and fetched and merged the target's tracepoint list with
12810 ours. */
12811 if (rs->starting_up)
57810aa7 12812 return false;
1e51243a
PA
12813
12814 ts = current_trace_status ();
f6ac5f3d 12815 status = get_trace_status (ts);
1e4d1764
YQ
12816
12817 if (status == -1 || !ts->running_known || !ts->running)
57810aa7 12818 return false;
1e4d1764
YQ
12819
12820 /* If we are in a tracing experiment, but remote stub doesn't support
12821 installing tracepoint in trace, we have to return. */
12822 if (!remote_supports_install_in_trace ())
57810aa7 12823 return false;
1e4d1764 12824
57810aa7 12825 return true;
1e4d1764
YQ
12826}
12827
12828
f6ac5f3d
PA
12829void
12830remote_target::download_trace_state_variable (const trace_state_variable &tsv)
35b1e5cc
SS
12831{
12832 struct remote_state *rs = get_remote_state ();
00bf0b85 12833 char *p;
35b1e5cc 12834
bba74b36 12835 xsnprintf (rs->buf, get_remote_packet_size (), "QTDV:%x:%s:%x:",
c252925c
SM
12836 tsv.number, phex ((ULONGEST) tsv.initial_value, 8),
12837 tsv.builtin);
00bf0b85 12838 p = rs->buf + strlen (rs->buf);
c252925c 12839 if ((p - rs->buf) + tsv.name.length () * 2 >= get_remote_packet_size ())
00bf0b85 12840 error (_("Trace state variable name too long for tsv definition packet"));
c252925c 12841 p += 2 * bin2hex ((gdb_byte *) (tsv.name.data ()), p, tsv.name.length ());
00bf0b85 12842 *p++ = '\0';
35b1e5cc 12843 putpkt (rs->buf);
b6bb3468
PA
12844 remote_get_noisy_reply ();
12845 if (*rs->buf == '\0')
ad91cd99 12846 error (_("Target does not support this command."));
b6bb3468 12847 if (strcmp (rs->buf, "OK") != 0)
ad91cd99 12848 error (_("Error on target while downloading trace state variable."));
35b1e5cc
SS
12849}
12850
f6ac5f3d
PA
12851void
12852remote_target::enable_tracepoint (struct bp_location *location)
d248b706
KY
12853{
12854 struct remote_state *rs = get_remote_state ();
12855 char addr_buf[40];
12856
12857 sprintf_vma (addr_buf, location->address);
bba74b36
YQ
12858 xsnprintf (rs->buf, get_remote_packet_size (), "QTEnable:%x:%s",
12859 location->owner->number, addr_buf);
d248b706 12860 putpkt (rs->buf);
b6bb3468 12861 remote_get_noisy_reply ();
d248b706
KY
12862 if (*rs->buf == '\0')
12863 error (_("Target does not support enabling tracepoints while a trace run is ongoing."));
12864 if (strcmp (rs->buf, "OK") != 0)
12865 error (_("Error on target while enabling tracepoint."));
12866}
12867
f6ac5f3d
PA
12868void
12869remote_target::disable_tracepoint (struct bp_location *location)
d248b706
KY
12870{
12871 struct remote_state *rs = get_remote_state ();
12872 char addr_buf[40];
12873
12874 sprintf_vma (addr_buf, location->address);
bba74b36
YQ
12875 xsnprintf (rs->buf, get_remote_packet_size (), "QTDisable:%x:%s",
12876 location->owner->number, addr_buf);
d248b706 12877 putpkt (rs->buf);
b6bb3468 12878 remote_get_noisy_reply ();
d248b706
KY
12879 if (*rs->buf == '\0')
12880 error (_("Target does not support disabling tracepoints while a trace run is ongoing."));
12881 if (strcmp (rs->buf, "OK") != 0)
12882 error (_("Error on target while disabling tracepoint."));
12883}
12884
f6ac5f3d
PA
12885void
12886remote_target::trace_set_readonly_regions ()
35b1e5cc
SS
12887{
12888 asection *s;
81b9b86e 12889 bfd *abfd = NULL;
35b1e5cc 12890 bfd_size_type size;
608bcef2 12891 bfd_vma vma;
35b1e5cc 12892 int anysecs = 0;
c2fa21f1 12893 int offset = 0;
35b1e5cc
SS
12894
12895 if (!exec_bfd)
12896 return; /* No information to give. */
12897
b6bb3468
PA
12898 struct remote_state *rs = get_remote_state ();
12899
12900 strcpy (rs->buf, "QTro");
12901 offset = strlen (rs->buf);
35b1e5cc
SS
12902 for (s = exec_bfd->sections; s; s = s->next)
12903 {
12904 char tmp1[40], tmp2[40];
c2fa21f1 12905 int sec_length;
35b1e5cc
SS
12906
12907 if ((s->flags & SEC_LOAD) == 0 ||
0df8b418 12908 /* (s->flags & SEC_CODE) == 0 || */
35b1e5cc
SS
12909 (s->flags & SEC_READONLY) == 0)
12910 continue;
12911
12912 anysecs = 1;
81b9b86e 12913 vma = bfd_get_section_vma (abfd, s);
35b1e5cc 12914 size = bfd_get_section_size (s);
608bcef2
HZ
12915 sprintf_vma (tmp1, vma);
12916 sprintf_vma (tmp2, vma + size);
c2fa21f1 12917 sec_length = 1 + strlen (tmp1) + 1 + strlen (tmp2);
b6bb3468 12918 if (offset + sec_length + 1 > rs->buf_size)
c2fa21f1 12919 {
4082afcc 12920 if (packet_support (PACKET_qXfer_traceframe_info) != PACKET_ENABLE)
864ac8a7 12921 warning (_("\
c2fa21f1
HZ
12922Too many sections for read-only sections definition packet."));
12923 break;
12924 }
b6bb3468 12925 xsnprintf (rs->buf + offset, rs->buf_size - offset, ":%s,%s",
bba74b36 12926 tmp1, tmp2);
c2fa21f1 12927 offset += sec_length;
35b1e5cc
SS
12928 }
12929 if (anysecs)
12930 {
b6bb3468
PA
12931 putpkt (rs->buf);
12932 getpkt (&rs->buf, &rs->buf_size, 0);
35b1e5cc
SS
12933 }
12934}
12935
f6ac5f3d
PA
12936void
12937remote_target::trace_start ()
35b1e5cc 12938{
b6bb3468
PA
12939 struct remote_state *rs = get_remote_state ();
12940
35b1e5cc 12941 putpkt ("QTStart");
b6bb3468
PA
12942 remote_get_noisy_reply ();
12943 if (*rs->buf == '\0')
ad91cd99 12944 error (_("Target does not support this command."));
b6bb3468
PA
12945 if (strcmp (rs->buf, "OK") != 0)
12946 error (_("Bogus reply from target: %s"), rs->buf);
35b1e5cc
SS
12947}
12948
f6ac5f3d
PA
12949int
12950remote_target::get_trace_status (struct trace_status *ts)
35b1e5cc 12951{
953b98d1 12952 /* Initialize it just to avoid a GCC false warning. */
f652de6f 12953 char *p = NULL;
0df8b418 12954 /* FIXME we need to get register block size some other way. */
00bf0b85 12955 extern int trace_regblock_size;
bd3eecc3 12956 enum packet_result result;
b6bb3468 12957 struct remote_state *rs = get_remote_state ();
bd3eecc3 12958
4082afcc 12959 if (packet_support (PACKET_qTStatus) == PACKET_DISABLE)
bd3eecc3 12960 return -1;
a744cf53 12961
5cd63fda 12962 trace_regblock_size
9d6eea31 12963 = rs->get_remote_arch_state (target_gdbarch ())->sizeof_g_packet;
00bf0b85 12964
049dc89b
JK
12965 putpkt ("qTStatus");
12966
492d29ea 12967 TRY
67f41397 12968 {
b6bb3468 12969 p = remote_get_noisy_reply ();
67f41397 12970 }
492d29ea 12971 CATCH (ex, RETURN_MASK_ERROR)
67f41397 12972 {
598d3636
JK
12973 if (ex.error != TARGET_CLOSE_ERROR)
12974 {
12975 exception_fprintf (gdb_stderr, ex, "qTStatus: ");
12976 return -1;
12977 }
12978 throw_exception (ex);
67f41397 12979 }
492d29ea 12980 END_CATCH
00bf0b85 12981
bd3eecc3
PA
12982 result = packet_ok (p, &remote_protocol_packets[PACKET_qTStatus]);
12983
00bf0b85 12984 /* If the remote target doesn't do tracing, flag it. */
bd3eecc3 12985 if (result == PACKET_UNKNOWN)
00bf0b85 12986 return -1;
35b1e5cc 12987
00bf0b85 12988 /* We're working with a live target. */
f5911ea1 12989 ts->filename = NULL;
00bf0b85 12990
00bf0b85 12991 if (*p++ != 'T')
b6bb3468 12992 error (_("Bogus trace status reply from target: %s"), rs->buf);
35b1e5cc 12993
84cebc4a
YQ
12994 /* Function 'parse_trace_status' sets default value of each field of
12995 'ts' at first, so we don't have to do it here. */
00bf0b85
SS
12996 parse_trace_status (p, ts);
12997
12998 return ts->running;
35b1e5cc
SS
12999}
13000
f6ac5f3d
PA
13001void
13002remote_target::get_tracepoint_status (struct breakpoint *bp,
13003 struct uploaded_tp *utp)
f196051f
SS
13004{
13005 struct remote_state *rs = get_remote_state ();
f196051f
SS
13006 char *reply;
13007 struct bp_location *loc;
13008 struct tracepoint *tp = (struct tracepoint *) bp;
bba74b36 13009 size_t size = get_remote_packet_size ();
f196051f
SS
13010
13011 if (tp)
13012 {
c1fc2657 13013 tp->hit_count = 0;
f196051f 13014 tp->traceframe_usage = 0;
c1fc2657 13015 for (loc = tp->loc; loc; loc = loc->next)
f196051f
SS
13016 {
13017 /* If the tracepoint was never downloaded, don't go asking for
13018 any status. */
13019 if (tp->number_on_target == 0)
13020 continue;
bba74b36
YQ
13021 xsnprintf (rs->buf, size, "qTP:%x:%s", tp->number_on_target,
13022 phex_nz (loc->address, 0));
f196051f 13023 putpkt (rs->buf);
b6bb3468 13024 reply = remote_get_noisy_reply ();
f196051f
SS
13025 if (reply && *reply)
13026 {
13027 if (*reply == 'V')
13028 parse_tracepoint_status (reply + 1, bp, utp);
13029 }
13030 }
13031 }
13032 else if (utp)
13033 {
13034 utp->hit_count = 0;
13035 utp->traceframe_usage = 0;
bba74b36
YQ
13036 xsnprintf (rs->buf, size, "qTP:%x:%s", utp->number,
13037 phex_nz (utp->addr, 0));
f196051f 13038 putpkt (rs->buf);
b6bb3468 13039 reply = remote_get_noisy_reply ();
f196051f
SS
13040 if (reply && *reply)
13041 {
13042 if (*reply == 'V')
13043 parse_tracepoint_status (reply + 1, bp, utp);
13044 }
13045 }
13046}
13047
f6ac5f3d
PA
13048void
13049remote_target::trace_stop ()
35b1e5cc 13050{
b6bb3468
PA
13051 struct remote_state *rs = get_remote_state ();
13052
35b1e5cc 13053 putpkt ("QTStop");
b6bb3468
PA
13054 remote_get_noisy_reply ();
13055 if (*rs->buf == '\0')
ad91cd99 13056 error (_("Target does not support this command."));
b6bb3468
PA
13057 if (strcmp (rs->buf, "OK") != 0)
13058 error (_("Bogus reply from target: %s"), rs->buf);
35b1e5cc
SS
13059}
13060
f6ac5f3d
PA
13061int
13062remote_target::trace_find (enum trace_find_type type, int num,
13063 CORE_ADDR addr1, CORE_ADDR addr2,
13064 int *tpp)
35b1e5cc
SS
13065{
13066 struct remote_state *rs = get_remote_state ();
bba74b36 13067 char *endbuf = rs->buf + get_remote_packet_size ();
35b1e5cc
SS
13068 char *p, *reply;
13069 int target_frameno = -1, target_tracept = -1;
13070
e6e4e701
PA
13071 /* Lookups other than by absolute frame number depend on the current
13072 trace selected, so make sure it is correct on the remote end
13073 first. */
13074 if (type != tfind_number)
13075 set_remote_traceframe ();
13076
35b1e5cc
SS
13077 p = rs->buf;
13078 strcpy (p, "QTFrame:");
13079 p = strchr (p, '\0');
13080 switch (type)
13081 {
13082 case tfind_number:
bba74b36 13083 xsnprintf (p, endbuf - p, "%x", num);
35b1e5cc
SS
13084 break;
13085 case tfind_pc:
bba74b36 13086 xsnprintf (p, endbuf - p, "pc:%s", phex_nz (addr1, 0));
35b1e5cc
SS
13087 break;
13088 case tfind_tp:
bba74b36 13089 xsnprintf (p, endbuf - p, "tdp:%x", num);
35b1e5cc
SS
13090 break;
13091 case tfind_range:
bba74b36
YQ
13092 xsnprintf (p, endbuf - p, "range:%s:%s", phex_nz (addr1, 0),
13093 phex_nz (addr2, 0));
35b1e5cc
SS
13094 break;
13095 case tfind_outside:
bba74b36
YQ
13096 xsnprintf (p, endbuf - p, "outside:%s:%s", phex_nz (addr1, 0),
13097 phex_nz (addr2, 0));
35b1e5cc
SS
13098 break;
13099 default:
9b20d036 13100 error (_("Unknown trace find type %d"), type);
35b1e5cc
SS
13101 }
13102
13103 putpkt (rs->buf);
b6bb3468 13104 reply = remote_get_noisy_reply ();
ad91cd99
PA
13105 if (*reply == '\0')
13106 error (_("Target does not support this command."));
35b1e5cc
SS
13107
13108 while (reply && *reply)
13109 switch (*reply)
13110 {
13111 case 'F':
f197e0f1
VP
13112 p = ++reply;
13113 target_frameno = (int) strtol (p, &reply, 16);
13114 if (reply == p)
13115 error (_("Unable to parse trace frame number"));
e6e4e701
PA
13116 /* Don't update our remote traceframe number cache on failure
13117 to select a remote traceframe. */
f197e0f1
VP
13118 if (target_frameno == -1)
13119 return -1;
35b1e5cc
SS
13120 break;
13121 case 'T':
f197e0f1
VP
13122 p = ++reply;
13123 target_tracept = (int) strtol (p, &reply, 16);
13124 if (reply == p)
13125 error (_("Unable to parse tracepoint number"));
35b1e5cc
SS
13126 break;
13127 case 'O': /* "OK"? */
13128 if (reply[1] == 'K' && reply[2] == '\0')
13129 reply += 2;
13130 else
13131 error (_("Bogus reply from target: %s"), reply);
13132 break;
13133 default:
13134 error (_("Bogus reply from target: %s"), reply);
13135 }
13136 if (tpp)
13137 *tpp = target_tracept;
e6e4e701 13138
262e1174 13139 rs->remote_traceframe_number = target_frameno;
35b1e5cc
SS
13140 return target_frameno;
13141}
13142
57810aa7 13143bool
f6ac5f3d 13144remote_target::get_trace_state_variable_value (int tsvnum, LONGEST *val)
35b1e5cc
SS
13145{
13146 struct remote_state *rs = get_remote_state ();
13147 char *reply;
13148 ULONGEST uval;
13149
e6e4e701
PA
13150 set_remote_traceframe ();
13151
bba74b36 13152 xsnprintf (rs->buf, get_remote_packet_size (), "qTV:%x", tsvnum);
35b1e5cc 13153 putpkt (rs->buf);
b6bb3468 13154 reply = remote_get_noisy_reply ();
35b1e5cc
SS
13155 if (reply && *reply)
13156 {
13157 if (*reply == 'V')
13158 {
13159 unpack_varlen_hex (reply + 1, &uval);
13160 *val = (LONGEST) uval;
57810aa7 13161 return true;
35b1e5cc
SS
13162 }
13163 }
57810aa7 13164 return false;
35b1e5cc
SS
13165}
13166
f6ac5f3d
PA
13167int
13168remote_target::save_trace_data (const char *filename)
00bf0b85
SS
13169{
13170 struct remote_state *rs = get_remote_state ();
13171 char *p, *reply;
13172
13173 p = rs->buf;
13174 strcpy (p, "QTSave:");
13175 p += strlen (p);
13176 if ((p - rs->buf) + strlen (filename) * 2 >= get_remote_packet_size ())
13177 error (_("Remote file name too long for trace save packet"));
9f1b45b0 13178 p += 2 * bin2hex ((gdb_byte *) filename, p, strlen (filename));
00bf0b85
SS
13179 *p++ = '\0';
13180 putpkt (rs->buf);
b6bb3468 13181 reply = remote_get_noisy_reply ();
d6c5869f 13182 if (*reply == '\0')
ad91cd99
PA
13183 error (_("Target does not support this command."));
13184 if (strcmp (reply, "OK") != 0)
13185 error (_("Bogus reply from target: %s"), reply);
00bf0b85
SS
13186 return 0;
13187}
13188
13189/* This is basically a memory transfer, but needs to be its own packet
13190 because we don't know how the target actually organizes its trace
13191 memory, plus we want to be able to ask for as much as possible, but
13192 not be unhappy if we don't get as much as we ask for. */
13193
f6ac5f3d
PA
13194LONGEST
13195remote_target::get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len)
00bf0b85
SS
13196{
13197 struct remote_state *rs = get_remote_state ();
13198 char *reply;
13199 char *p;
13200 int rslt;
13201
13202 p = rs->buf;
13203 strcpy (p, "qTBuffer:");
13204 p += strlen (p);
13205 p += hexnumstr (p, offset);
13206 *p++ = ',';
13207 p += hexnumstr (p, len);
13208 *p++ = '\0';
13209
13210 putpkt (rs->buf);
b6bb3468 13211 reply = remote_get_noisy_reply ();
00bf0b85
SS
13212 if (reply && *reply)
13213 {
13214 /* 'l' by itself means we're at the end of the buffer and
13215 there is nothing more to get. */
13216 if (*reply == 'l')
13217 return 0;
13218
13219 /* Convert the reply into binary. Limit the number of bytes to
13220 convert according to our passed-in buffer size, rather than
13221 what was returned in the packet; if the target is
13222 unexpectedly generous and gives us a bigger reply than we
13223 asked for, we don't want to crash. */
b6bb3468 13224 rslt = hex2bin (reply, buf, len);
00bf0b85
SS
13225 return rslt;
13226 }
13227
13228 /* Something went wrong, flag as an error. */
13229 return -1;
13230}
13231
f6ac5f3d
PA
13232void
13233remote_target::set_disconnected_tracing (int val)
35b1e5cc
SS
13234{
13235 struct remote_state *rs = get_remote_state ();
13236
4082afcc 13237 if (packet_support (PACKET_DisconnectedTracing_feature) == PACKET_ENABLE)
33da3f1c 13238 {
ad91cd99
PA
13239 char *reply;
13240
bba74b36 13241 xsnprintf (rs->buf, get_remote_packet_size (), "QTDisconnected:%x", val);
33da3f1c 13242 putpkt (rs->buf);
b6bb3468 13243 reply = remote_get_noisy_reply ();
ad91cd99 13244 if (*reply == '\0')
33da3f1c 13245 error (_("Target does not support this command."));
ad91cd99
PA
13246 if (strcmp (reply, "OK") != 0)
13247 error (_("Bogus reply from target: %s"), reply);
33da3f1c
SS
13248 }
13249 else if (val)
13250 warning (_("Target does not support disconnected tracing."));
35b1e5cc
SS
13251}
13252
f6ac5f3d
PA
13253int
13254remote_target::core_of_thread (ptid_t ptid)
dc146f7c
VP
13255{
13256 struct thread_info *info = find_thread_ptid (ptid);
a744cf53 13257
7aabaf9d
SM
13258 if (info != NULL && info->priv != NULL)
13259 return get_remote_thread_info (info)->core;
13260
dc146f7c
VP
13261 return -1;
13262}
13263
f6ac5f3d
PA
13264void
13265remote_target::set_circular_trace_buffer (int val)
4daf5ac0
SS
13266{
13267 struct remote_state *rs = get_remote_state ();
ad91cd99 13268 char *reply;
4daf5ac0 13269
bba74b36 13270 xsnprintf (rs->buf, get_remote_packet_size (), "QTBuffer:circular:%x", val);
4daf5ac0 13271 putpkt (rs->buf);
b6bb3468 13272 reply = remote_get_noisy_reply ();
ad91cd99 13273 if (*reply == '\0')
4daf5ac0 13274 error (_("Target does not support this command."));
ad91cd99
PA
13275 if (strcmp (reply, "OK") != 0)
13276 error (_("Bogus reply from target: %s"), reply);
4daf5ac0
SS
13277}
13278
f6ac5f3d
PA
13279traceframe_info_up
13280remote_target::traceframe_info ()
b3b9301e 13281{
9018be22 13282 gdb::optional<gdb::char_vector> text
f6ac5f3d 13283 = target_read_stralloc (target_stack, TARGET_OBJECT_TRACEFRAME_INFO,
b7b030ad 13284 NULL);
9018be22
SM
13285 if (text)
13286 return parse_traceframe_info (text->data ());
b3b9301e
PA
13287
13288 return NULL;
13289}
13290
405f8e94
SS
13291/* Handle the qTMinFTPILen packet. Returns the minimum length of
13292 instruction on which a fast tracepoint may be placed. Returns -1
13293 if the packet is not supported, and 0 if the minimum instruction
13294 length is unknown. */
13295
f6ac5f3d
PA
13296int
13297remote_target::get_min_fast_tracepoint_insn_len ()
405f8e94
SS
13298{
13299 struct remote_state *rs = get_remote_state ();
13300 char *reply;
13301
e886a173
PA
13302 /* If we're not debugging a process yet, the IPA can't be
13303 loaded. */
13304 if (!target_has_execution)
13305 return 0;
13306
13307 /* Make sure the remote is pointing at the right process. */
13308 set_general_process ();
13309
bba74b36 13310 xsnprintf (rs->buf, get_remote_packet_size (), "qTMinFTPILen");
405f8e94 13311 putpkt (rs->buf);
b6bb3468 13312 reply = remote_get_noisy_reply ();
405f8e94
SS
13313 if (*reply == '\0')
13314 return -1;
13315 else
13316 {
13317 ULONGEST min_insn_len;
13318
13319 unpack_varlen_hex (reply, &min_insn_len);
13320
13321 return (int) min_insn_len;
13322 }
13323}
13324
f6ac5f3d
PA
13325void
13326remote_target::set_trace_buffer_size (LONGEST val)
f6f899bf 13327{
4082afcc 13328 if (packet_support (PACKET_QTBuffer_size) != PACKET_DISABLE)
f6f899bf
HAQ
13329 {
13330 struct remote_state *rs = get_remote_state ();
13331 char *buf = rs->buf;
13332 char *endbuf = rs->buf + get_remote_packet_size ();
13333 enum packet_result result;
13334
13335 gdb_assert (val >= 0 || val == -1);
13336 buf += xsnprintf (buf, endbuf - buf, "QTBuffer:size:");
13337 /* Send -1 as literal "-1" to avoid host size dependency. */
13338 if (val < 0)
13339 {
13340 *buf++ = '-';
13341 buf += hexnumstr (buf, (ULONGEST) -val);
13342 }
13343 else
13344 buf += hexnumstr (buf, (ULONGEST) val);
13345
13346 putpkt (rs->buf);
b6bb3468 13347 remote_get_noisy_reply ();
f6f899bf
HAQ
13348 result = packet_ok (rs->buf,
13349 &remote_protocol_packets[PACKET_QTBuffer_size]);
13350
13351 if (result != PACKET_OK)
13352 warning (_("Bogus reply from target: %s"), rs->buf);
13353 }
13354}
13355
57810aa7 13356bool
f6ac5f3d
PA
13357remote_target::set_trace_notes (const char *user, const char *notes,
13358 const char *stop_notes)
f196051f
SS
13359{
13360 struct remote_state *rs = get_remote_state ();
13361 char *reply;
13362 char *buf = rs->buf;
13363 char *endbuf = rs->buf + get_remote_packet_size ();
13364 int nbytes;
13365
13366 buf += xsnprintf (buf, endbuf - buf, "QTNotes:");
13367 if (user)
13368 {
13369 buf += xsnprintf (buf, endbuf - buf, "user:");
9f1b45b0 13370 nbytes = bin2hex ((gdb_byte *) user, buf, strlen (user));
f196051f
SS
13371 buf += 2 * nbytes;
13372 *buf++ = ';';
13373 }
13374 if (notes)
13375 {
13376 buf += xsnprintf (buf, endbuf - buf, "notes:");
9f1b45b0 13377 nbytes = bin2hex ((gdb_byte *) notes, buf, strlen (notes));
f196051f
SS
13378 buf += 2 * nbytes;
13379 *buf++ = ';';
13380 }
13381 if (stop_notes)
13382 {
13383 buf += xsnprintf (buf, endbuf - buf, "tstop:");
9f1b45b0 13384 nbytes = bin2hex ((gdb_byte *) stop_notes, buf, strlen (stop_notes));
f196051f
SS
13385 buf += 2 * nbytes;
13386 *buf++ = ';';
13387 }
13388 /* Ensure the buffer is terminated. */
13389 *buf = '\0';
13390
13391 putpkt (rs->buf);
b6bb3468 13392 reply = remote_get_noisy_reply ();
f196051f 13393 if (*reply == '\0')
57810aa7 13394 return false;
f196051f
SS
13395
13396 if (strcmp (reply, "OK") != 0)
13397 error (_("Bogus reply from target: %s"), reply);
13398
57810aa7 13399 return true;
f196051f
SS
13400}
13401
57810aa7
PA
13402bool
13403remote_target::use_agent (bool use)
d1feda86 13404{
4082afcc 13405 if (packet_support (PACKET_QAgent) != PACKET_DISABLE)
d1feda86
YQ
13406 {
13407 struct remote_state *rs = get_remote_state ();
13408
13409 /* If the stub supports QAgent. */
bba74b36 13410 xsnprintf (rs->buf, get_remote_packet_size (), "QAgent:%d", use);
d1feda86
YQ
13411 putpkt (rs->buf);
13412 getpkt (&rs->buf, &rs->buf_size, 0);
13413
13414 if (strcmp (rs->buf, "OK") == 0)
13415 {
f6ac5f3d 13416 ::use_agent = use;
57810aa7 13417 return true;
d1feda86
YQ
13418 }
13419 }
13420
57810aa7 13421 return false;
d1feda86
YQ
13422}
13423
57810aa7 13424bool
f6ac5f3d 13425remote_target::can_use_agent ()
d1feda86 13426{
4082afcc 13427 return (packet_support (PACKET_QAgent) != PACKET_DISABLE);
d1feda86
YQ
13428}
13429
9accd112
MM
13430struct btrace_target_info
13431{
13432 /* The ptid of the traced thread. */
13433 ptid_t ptid;
f4abbc16
MM
13434
13435 /* The obtained branch trace configuration. */
13436 struct btrace_config conf;
9accd112
MM
13437};
13438
f4abbc16
MM
13439/* Reset our idea of our target's btrace configuration. */
13440
13441static void
13442remote_btrace_reset (void)
13443{
13444 struct remote_state *rs = get_remote_state ();
13445
13446 memset (&rs->btrace_config, 0, sizeof (rs->btrace_config));
13447}
13448
f4abbc16
MM
13449/* Synchronize the configuration with the target. */
13450
13451static void
13452btrace_sync_conf (const struct btrace_config *conf)
13453{
d33501a5
MM
13454 struct packet_config *packet;
13455 struct remote_state *rs;
13456 char *buf, *pos, *endbuf;
13457
13458 rs = get_remote_state ();
13459 buf = rs->buf;
13460 endbuf = buf + get_remote_packet_size ();
13461
13462 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_bts_size];
13463 if (packet_config_support (packet) == PACKET_ENABLE
13464 && conf->bts.size != rs->btrace_config.bts.size)
13465 {
13466 pos = buf;
13467 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13468 conf->bts.size);
13469
13470 putpkt (buf);
13471 getpkt (&buf, &rs->buf_size, 0);
13472
13473 if (packet_ok (buf, packet) == PACKET_ERROR)
13474 {
13475 if (buf[0] == 'E' && buf[1] == '.')
13476 error (_("Failed to configure the BTS buffer size: %s"), buf + 2);
13477 else
13478 error (_("Failed to configure the BTS buffer size."));
13479 }
13480
13481 rs->btrace_config.bts.size = conf->bts.size;
13482 }
b20a6524
MM
13483
13484 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_pt_size];
13485 if (packet_config_support (packet) == PACKET_ENABLE
13486 && conf->pt.size != rs->btrace_config.pt.size)
13487 {
13488 pos = buf;
13489 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13490 conf->pt.size);
13491
13492 putpkt (buf);
13493 getpkt (&buf, &rs->buf_size, 0);
13494
13495 if (packet_ok (buf, packet) == PACKET_ERROR)
13496 {
13497 if (buf[0] == 'E' && buf[1] == '.')
13498 error (_("Failed to configure the trace buffer size: %s"), buf + 2);
13499 else
13500 error (_("Failed to configure the trace buffer size."));
13501 }
13502
13503 rs->btrace_config.pt.size = conf->pt.size;
13504 }
f4abbc16
MM
13505}
13506
13507/* Read the current thread's btrace configuration from the target and
13508 store it into CONF. */
13509
13510static void
13511btrace_read_config (struct btrace_config *conf)
13512{
9018be22 13513 gdb::optional<gdb::char_vector> xml
f6ac5f3d 13514 = target_read_stralloc (target_stack, TARGET_OBJECT_BTRACE_CONF, "");
9018be22
SM
13515 if (xml)
13516 parse_xml_btrace_conf (conf, xml->data ());
f4abbc16
MM
13517}
13518
c0272db5
TW
13519/* Maybe reopen target btrace. */
13520
13521static void
13522remote_btrace_maybe_reopen (void)
13523{
13524 struct remote_state *rs = get_remote_state ();
c0272db5
TW
13525 struct thread_info *tp;
13526 int btrace_target_pushed = 0;
13527 int warned = 0;
13528
5ed8105e
PA
13529 scoped_restore_current_thread restore_thread;
13530
c0272db5
TW
13531 ALL_NON_EXITED_THREADS (tp)
13532 {
13533 set_general_thread (tp->ptid);
13534
13535 memset (&rs->btrace_config, 0x00, sizeof (struct btrace_config));
13536 btrace_read_config (&rs->btrace_config);
13537
13538 if (rs->btrace_config.format == BTRACE_FORMAT_NONE)
13539 continue;
13540
13541#if !defined (HAVE_LIBIPT)
13542 if (rs->btrace_config.format == BTRACE_FORMAT_PT)
13543 {
13544 if (!warned)
13545 {
13546 warned = 1;
c4e12631
MM
13547 warning (_("Target is recording using Intel Processor Trace "
13548 "but support was disabled at compile time."));
c0272db5
TW
13549 }
13550
13551 continue;
13552 }
13553#endif /* !defined (HAVE_LIBIPT) */
13554
13555 /* Push target, once, but before anything else happens. This way our
13556 changes to the threads will be cleaned up by unpushing the target
13557 in case btrace_read_config () throws. */
13558 if (!btrace_target_pushed)
13559 {
13560 btrace_target_pushed = 1;
13561 record_btrace_push_target ();
13562 printf_filtered (_("Target is recording using %s.\n"),
13563 btrace_format_string (rs->btrace_config.format));
13564 }
13565
13566 tp->btrace.target = XCNEW (struct btrace_target_info);
13567 tp->btrace.target->ptid = tp->ptid;
13568 tp->btrace.target->conf = rs->btrace_config;
13569 }
c0272db5
TW
13570}
13571
9accd112
MM
13572/* Enable branch tracing. */
13573
f6ac5f3d
PA
13574struct btrace_target_info *
13575remote_target::enable_btrace (ptid_t ptid, const struct btrace_config *conf)
9accd112
MM
13576{
13577 struct btrace_target_info *tinfo = NULL;
b20a6524 13578 struct packet_config *packet = NULL;
9accd112
MM
13579 struct remote_state *rs = get_remote_state ();
13580 char *buf = rs->buf;
13581 char *endbuf = rs->buf + get_remote_packet_size ();
13582
b20a6524
MM
13583 switch (conf->format)
13584 {
13585 case BTRACE_FORMAT_BTS:
13586 packet = &remote_protocol_packets[PACKET_Qbtrace_bts];
13587 break;
13588
13589 case BTRACE_FORMAT_PT:
13590 packet = &remote_protocol_packets[PACKET_Qbtrace_pt];
13591 break;
13592 }
13593
13594 if (packet == NULL || packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13595 error (_("Target does not support branch tracing."));
13596
f4abbc16
MM
13597 btrace_sync_conf (conf);
13598
9accd112
MM
13599 set_general_thread (ptid);
13600
13601 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
13602 putpkt (rs->buf);
13603 getpkt (&rs->buf, &rs->buf_size, 0);
13604
13605 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
13606 {
13607 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
13608 error (_("Could not enable branch tracing for %s: %s"),
13609 target_pid_to_str (ptid), rs->buf + 2);
13610 else
13611 error (_("Could not enable branch tracing for %s."),
13612 target_pid_to_str (ptid));
13613 }
13614
8d749320 13615 tinfo = XCNEW (struct btrace_target_info);
9accd112
MM
13616 tinfo->ptid = ptid;
13617
f4abbc16
MM
13618 /* If we fail to read the configuration, we lose some information, but the
13619 tracing itself is not impacted. */
492d29ea
PA
13620 TRY
13621 {
13622 btrace_read_config (&tinfo->conf);
13623 }
13624 CATCH (err, RETURN_MASK_ERROR)
13625 {
13626 if (err.message != NULL)
13627 warning ("%s", err.message);
13628 }
13629 END_CATCH
f4abbc16 13630
9accd112
MM
13631 return tinfo;
13632}
13633
13634/* Disable branch tracing. */
13635
f6ac5f3d
PA
13636void
13637remote_target::disable_btrace (struct btrace_target_info *tinfo)
9accd112
MM
13638{
13639 struct packet_config *packet = &remote_protocol_packets[PACKET_Qbtrace_off];
13640 struct remote_state *rs = get_remote_state ();
13641 char *buf = rs->buf;
13642 char *endbuf = rs->buf + get_remote_packet_size ();
13643
4082afcc 13644 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13645 error (_("Target does not support branch tracing."));
13646
13647 set_general_thread (tinfo->ptid);
13648
13649 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
13650 putpkt (rs->buf);
13651 getpkt (&rs->buf, &rs->buf_size, 0);
13652
13653 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
13654 {
13655 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
13656 error (_("Could not disable branch tracing for %s: %s"),
13657 target_pid_to_str (tinfo->ptid), rs->buf + 2);
13658 else
13659 error (_("Could not disable branch tracing for %s."),
13660 target_pid_to_str (tinfo->ptid));
13661 }
13662
13663 xfree (tinfo);
13664}
13665
13666/* Teardown branch tracing. */
13667
f6ac5f3d
PA
13668void
13669remote_target::teardown_btrace (struct btrace_target_info *tinfo)
9accd112
MM
13670{
13671 /* We must not talk to the target during teardown. */
13672 xfree (tinfo);
13673}
13674
13675/* Read the branch trace. */
13676
f6ac5f3d
PA
13677enum btrace_error
13678remote_target::read_btrace (struct btrace_data *btrace,
13679 struct btrace_target_info *tinfo,
13680 enum btrace_read_type type)
9accd112
MM
13681{
13682 struct packet_config *packet = &remote_protocol_packets[PACKET_qXfer_btrace];
9accd112 13683 const char *annex;
9accd112 13684
4082afcc 13685 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13686 error (_("Target does not support branch tracing."));
13687
13688#if !defined(HAVE_LIBEXPAT)
13689 error (_("Cannot process branch tracing result. XML parsing not supported."));
13690#endif
13691
13692 switch (type)
13693 {
864089d2 13694 case BTRACE_READ_ALL:
9accd112
MM
13695 annex = "all";
13696 break;
864089d2 13697 case BTRACE_READ_NEW:
9accd112
MM
13698 annex = "new";
13699 break;
969c39fb
MM
13700 case BTRACE_READ_DELTA:
13701 annex = "delta";
13702 break;
9accd112
MM
13703 default:
13704 internal_error (__FILE__, __LINE__,
13705 _("Bad branch tracing read type: %u."),
13706 (unsigned int) type);
13707 }
13708
9018be22 13709 gdb::optional<gdb::char_vector> xml
f6ac5f3d 13710 = target_read_stralloc (target_stack, TARGET_OBJECT_BTRACE, annex);
9018be22 13711 if (!xml)
969c39fb 13712 return BTRACE_ERR_UNKNOWN;
9accd112 13713
9018be22 13714 parse_xml_btrace (btrace, xml->data ());
9accd112 13715
969c39fb 13716 return BTRACE_ERR_NONE;
9accd112
MM
13717}
13718
f6ac5f3d
PA
13719const struct btrace_config *
13720remote_target::btrace_conf (const struct btrace_target_info *tinfo)
f4abbc16
MM
13721{
13722 return &tinfo->conf;
13723}
13724
57810aa7 13725bool
f6ac5f3d 13726remote_target::augmented_libraries_svr4_read ()
ced63ec0 13727{
4082afcc
PA
13728 return (packet_support (PACKET_augmented_libraries_svr4_read_feature)
13729 == PACKET_ENABLE);
ced63ec0
GB
13730}
13731
9dd130a0
TT
13732/* Implementation of to_load. */
13733
f6ac5f3d
PA
13734void
13735remote_target::load (const char *name, int from_tty)
9dd130a0
TT
13736{
13737 generic_load (name, from_tty);
13738}
13739
c78fa86a
GB
13740/* Accepts an integer PID; returns a string representing a file that
13741 can be opened on the remote side to get the symbols for the child
13742 process. Returns NULL if the operation is not supported. */
13743
f6ac5f3d
PA
13744char *
13745remote_target::pid_to_exec_file (int pid)
c78fa86a 13746{
9018be22 13747 static gdb::optional<gdb::char_vector> filename;
835205d0
GB
13748 struct inferior *inf;
13749 char *annex = NULL;
c78fa86a
GB
13750
13751 if (packet_support (PACKET_qXfer_exec_file) != PACKET_ENABLE)
13752 return NULL;
13753
835205d0
GB
13754 inf = find_inferior_pid (pid);
13755 if (inf == NULL)
13756 internal_error (__FILE__, __LINE__,
13757 _("not currently attached to process %d"), pid);
13758
13759 if (!inf->fake_pid_p)
13760 {
13761 const int annex_size = 9;
13762
224c3ddb 13763 annex = (char *) alloca (annex_size);
835205d0
GB
13764 xsnprintf (annex, annex_size, "%x", pid);
13765 }
13766
f6ac5f3d 13767 filename = target_read_stralloc (target_stack,
c78fa86a
GB
13768 TARGET_OBJECT_EXEC_FILE, annex);
13769
9018be22 13770 return filename ? filename->data () : nullptr;
c78fa86a
GB
13771}
13772
750ce8d1
YQ
13773/* Implement the to_can_do_single_step target_ops method. */
13774
f6ac5f3d
PA
13775int
13776remote_target::can_do_single_step ()
750ce8d1
YQ
13777{
13778 /* We can only tell whether target supports single step or not by
13779 supported s and S vCont actions if the stub supports vContSupported
13780 feature. If the stub doesn't support vContSupported feature,
13781 we have conservatively to think target doesn't supports single
13782 step. */
13783 if (packet_support (PACKET_vContSupported) == PACKET_ENABLE)
13784 {
13785 struct remote_state *rs = get_remote_state ();
13786
13787 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
13788 remote_vcont_probe (rs);
13789
13790 return rs->supports_vCont.s && rs->supports_vCont.S;
13791 }
13792 else
13793 return 0;
13794}
13795
3a00c802
PA
13796/* Implementation of the to_execution_direction method for the remote
13797 target. */
13798
f6ac5f3d
PA
13799enum exec_direction_kind
13800remote_target::execution_direction ()
3a00c802
PA
13801{
13802 struct remote_state *rs = get_remote_state ();
13803
13804 return rs->last_resume_exec_dir;
13805}
13806
f6327dcb
KB
13807/* Return pointer to the thread_info struct which corresponds to
13808 THREAD_HANDLE (having length HANDLE_LEN). */
13809
f6ac5f3d
PA
13810thread_info *
13811remote_target::thread_handle_to_thread_info (const gdb_byte *thread_handle,
13812 int handle_len,
13813 inferior *inf)
f6327dcb
KB
13814{
13815 struct thread_info *tp;
13816
13817 ALL_NON_EXITED_THREADS (tp)
13818 {
7aabaf9d 13819 remote_thread_info *priv = get_remote_thread_info (tp);
f6327dcb
KB
13820
13821 if (tp->inf == inf && priv != NULL)
13822 {
7aabaf9d 13823 if (handle_len != priv->thread_handle.size ())
f6327dcb 13824 error (_("Thread handle size mismatch: %d vs %zu (from remote)"),
7aabaf9d
SM
13825 handle_len, priv->thread_handle.size ());
13826 if (memcmp (thread_handle, priv->thread_handle.data (),
f6327dcb
KB
13827 handle_len) == 0)
13828 return tp;
13829 }
13830 }
13831
13832 return NULL;
13833}
13834
57810aa7 13835bool
f6ac5f3d 13836remote_target::can_async_p ()
6426a772 13837{
5d93a237
TT
13838 struct remote_state *rs = get_remote_state ();
13839
3015c064
SM
13840 /* We don't go async if the user has explicitly prevented it with the
13841 "maint set target-async" command. */
c6ebd6cf 13842 if (!target_async_permitted)
57810aa7 13843 return false;
75c99385 13844
23860348 13845 /* We're async whenever the serial device is. */
5d93a237 13846 return serial_can_async_p (rs->remote_desc);
6426a772
JM
13847}
13848
57810aa7 13849bool
f6ac5f3d 13850remote_target::is_async_p ()
6426a772 13851{
5d93a237
TT
13852 struct remote_state *rs = get_remote_state ();
13853
c6ebd6cf 13854 if (!target_async_permitted)
75c99385 13855 /* We only enable async when the user specifically asks for it. */
57810aa7 13856 return false;
75c99385 13857
23860348 13858 /* We're async whenever the serial device is. */
5d93a237 13859 return serial_is_async_p (rs->remote_desc);
6426a772
JM
13860}
13861
2acceee2
JM
13862/* Pass the SERIAL event on and up to the client. One day this code
13863 will be able to delay notifying the client of an event until the
23860348 13864 point where an entire packet has been received. */
2acceee2 13865
2acceee2
JM
13866static serial_event_ftype remote_async_serial_handler;
13867
6426a772 13868static void
819cc324 13869remote_async_serial_handler (struct serial *scb, void *context)
6426a772 13870{
2acceee2
JM
13871 /* Don't propogate error information up to the client. Instead let
13872 the client find out about the error by querying the target. */
6a3753b3 13873 inferior_event_handler (INF_REG_EVENT, NULL);
2acceee2
JM
13874}
13875
74531fed
PA
13876static void
13877remote_async_inferior_event_handler (gdb_client_data data)
13878{
13879 inferior_event_handler (INF_REG_EVENT, NULL);
13880}
13881
f6ac5f3d
PA
13882void
13883remote_target::async (int enable)
2acceee2 13884{
5d93a237
TT
13885 struct remote_state *rs = get_remote_state ();
13886
6a3753b3 13887 if (enable)
2acceee2 13888 {
88b496c3 13889 serial_async (rs->remote_desc, remote_async_serial_handler, rs);
b7d2e916
PA
13890
13891 /* If there are pending events in the stop reply queue tell the
13892 event loop to process them. */
13893 if (!QUEUE_is_empty (stop_reply_p, stop_reply_queue))
13894 mark_async_event_handler (remote_async_inferior_event_token);
6efcd9a8
PA
13895 /* For simplicity, below we clear the pending events token
13896 without remembering whether it is marked, so here we always
13897 mark it. If there's actually no pending notification to
13898 process, this ends up being a no-op (other than a spurious
13899 event-loop wakeup). */
13900 if (target_is_non_stop_p ())
13901 mark_async_event_handler (rs->notif_state->get_pending_events_token);
2acceee2
JM
13902 }
13903 else
b7d2e916
PA
13904 {
13905 serial_async (rs->remote_desc, NULL, NULL);
6efcd9a8
PA
13906 /* If the core is disabling async, it doesn't want to be
13907 disturbed with target events. Clear all async event sources
13908 too. */
b7d2e916 13909 clear_async_event_handler (remote_async_inferior_event_token);
6efcd9a8
PA
13910 if (target_is_non_stop_p ())
13911 clear_async_event_handler (rs->notif_state->get_pending_events_token);
b7d2e916 13912 }
6426a772
JM
13913}
13914
65706a29
PA
13915/* Implementation of the to_thread_events method. */
13916
f6ac5f3d
PA
13917void
13918remote_target::thread_events (int enable)
65706a29
PA
13919{
13920 struct remote_state *rs = get_remote_state ();
13921 size_t size = get_remote_packet_size ();
65706a29
PA
13922
13923 if (packet_support (PACKET_QThreadEvents) == PACKET_DISABLE)
13924 return;
13925
13926 xsnprintf (rs->buf, size, "QThreadEvents:%x", enable ? 1 : 0);
13927 putpkt (rs->buf);
13928 getpkt (&rs->buf, &rs->buf_size, 0);
13929
13930 switch (packet_ok (rs->buf,
13931 &remote_protocol_packets[PACKET_QThreadEvents]))
13932 {
13933 case PACKET_OK:
13934 if (strcmp (rs->buf, "OK") != 0)
13935 error (_("Remote refused setting thread events: %s"), rs->buf);
13936 break;
13937 case PACKET_ERROR:
13938 warning (_("Remote failure reply: %s"), rs->buf);
13939 break;
13940 case PACKET_UNKNOWN:
13941 break;
13942 }
13943}
13944
5a2468f5 13945static void
981a3fb3 13946set_remote_cmd (const char *args, int from_tty)
5a2468f5 13947{
635c7e8a 13948 help_list (remote_set_cmdlist, "set remote ", all_commands, gdb_stdout);
5a2468f5
JM
13949}
13950
d471ea57 13951static void
981a3fb3 13952show_remote_cmd (const char *args, int from_tty)
d471ea57 13953{
37a105a1 13954 /* We can't just use cmd_show_list here, because we want to skip
427c3a89 13955 the redundant "show remote Z-packet" and the legacy aliases. */
37a105a1 13956 struct cmd_list_element *list = remote_show_cmdlist;
79a45e25 13957 struct ui_out *uiout = current_uiout;
37a105a1 13958
2e783024 13959 ui_out_emit_tuple tuple_emitter (uiout, "showlist");
37a105a1
DJ
13960 for (; list != NULL; list = list->next)
13961 if (strcmp (list->name, "Z-packet") == 0)
13962 continue;
427c3a89
DJ
13963 else if (list->type == not_set_cmd)
13964 /* Alias commands are exactly like the original, except they
13965 don't have the normal type. */
13966 continue;
13967 else
37a105a1 13968 {
2e783024 13969 ui_out_emit_tuple option_emitter (uiout, "option");
a744cf53 13970
112e8700
SM
13971 uiout->field_string ("name", list->name);
13972 uiout->text (": ");
427c3a89 13973 if (list->type == show_cmd)
f5c4fcd9 13974 do_show_command (NULL, from_tty, list);
427c3a89
DJ
13975 else
13976 cmd_func (list, NULL, from_tty);
37a105a1 13977 }
d471ea57 13978}
5a2468f5 13979
0f71a2f6 13980
23860348 13981/* Function to be called whenever a new objfile (shlib) is detected. */
dc8acb97
MS
13982static void
13983remote_new_objfile (struct objfile *objfile)
13984{
5d93a237
TT
13985 struct remote_state *rs = get_remote_state ();
13986
13987 if (rs->remote_desc != 0) /* Have a remote connection. */
36d25514 13988 remote_check_symbols ();
dc8acb97
MS
13989}
13990
00bf0b85
SS
13991/* Pull all the tracepoints defined on the target and create local
13992 data structures representing them. We don't want to create real
13993 tracepoints yet, we don't want to mess up the user's existing
13994 collection. */
13995
f6ac5f3d
PA
13996int
13997remote_target::upload_tracepoints (struct uploaded_tp **utpp)
d5551862 13998{
00bf0b85
SS
13999 struct remote_state *rs = get_remote_state ();
14000 char *p;
d5551862 14001
00bf0b85
SS
14002 /* Ask for a first packet of tracepoint definition. */
14003 putpkt ("qTfP");
14004 getpkt (&rs->buf, &rs->buf_size, 0);
14005 p = rs->buf;
14006 while (*p && *p != 'l')
d5551862 14007 {
00bf0b85
SS
14008 parse_tracepoint_definition (p, utpp);
14009 /* Ask for another packet of tracepoint definition. */
14010 putpkt ("qTsP");
14011 getpkt (&rs->buf, &rs->buf_size, 0);
14012 p = rs->buf;
d5551862 14013 }
00bf0b85 14014 return 0;
d5551862
SS
14015}
14016
f6ac5f3d
PA
14017int
14018remote_target::upload_trace_state_variables (struct uploaded_tsv **utsvp)
d5551862 14019{
00bf0b85 14020 struct remote_state *rs = get_remote_state ();
d5551862 14021 char *p;
d5551862 14022
00bf0b85
SS
14023 /* Ask for a first packet of variable definition. */
14024 putpkt ("qTfV");
d5551862
SS
14025 getpkt (&rs->buf, &rs->buf_size, 0);
14026 p = rs->buf;
00bf0b85 14027 while (*p && *p != 'l')
d5551862 14028 {
00bf0b85
SS
14029 parse_tsv_definition (p, utsvp);
14030 /* Ask for another packet of variable definition. */
14031 putpkt ("qTsV");
d5551862
SS
14032 getpkt (&rs->buf, &rs->buf_size, 0);
14033 p = rs->buf;
14034 }
00bf0b85 14035 return 0;
d5551862
SS
14036}
14037
c1e36e3e
PA
14038/* The "set/show range-stepping" show hook. */
14039
14040static void
14041show_range_stepping (struct ui_file *file, int from_tty,
14042 struct cmd_list_element *c,
14043 const char *value)
14044{
14045 fprintf_filtered (file,
14046 _("Debugger's willingness to use range stepping "
14047 "is %s.\n"), value);
14048}
14049
14050/* The "set/show range-stepping" set hook. */
14051
14052static void
eb4c3f4a 14053set_range_stepping (const char *ignore_args, int from_tty,
c1e36e3e
PA
14054 struct cmd_list_element *c)
14055{
5d93a237
TT
14056 struct remote_state *rs = get_remote_state ();
14057
c1e36e3e
PA
14058 /* Whene enabling, check whether range stepping is actually
14059 supported by the target, and warn if not. */
14060 if (use_range_stepping)
14061 {
5d93a237 14062 if (rs->remote_desc != NULL)
c1e36e3e 14063 {
4082afcc 14064 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
c1e36e3e
PA
14065 remote_vcont_probe (rs);
14066
4082afcc 14067 if (packet_support (PACKET_vCont) == PACKET_ENABLE
c1e36e3e
PA
14068 && rs->supports_vCont.r)
14069 return;
14070 }
14071
14072 warning (_("Range stepping is not supported by the current target"));
14073 }
14074}
14075
c906108c 14076void
fba45db2 14077_initialize_remote (void)
c906108c 14078{
9a7071a8 14079 struct cmd_list_element *cmd;
6f937416 14080 const char *cmd_name;
ea9c271d 14081
0f71a2f6 14082 /* architecture specific data */
29709017
DJ
14083 remote_g_packet_data_handle =
14084 gdbarch_data_register_pre_init (remote_g_packet_data_init);
d01949b6 14085
94585166
DB
14086 remote_pspace_data
14087 = register_program_space_data_with_cleanup (NULL,
14088 remote_pspace_data_cleanup);
14089
ea9c271d
DJ
14090 /* Initialize the per-target state. At the moment there is only one
14091 of these, not one per target. Only one target is active at a
cf792862 14092 time. */
de44f5a7 14093 remote_state = new struct remote_state ();
ea9c271d 14094
d9f719f1
PA
14095 add_target (remote_target_info, remote_target::open);
14096 add_target (extended_remote_target_info, extended_remote_target::open);
cce74817 14097
dc8acb97 14098 /* Hook into new objfile notification. */
76727919 14099 gdb::observers::new_objfile.attach (remote_new_objfile);
dc8acb97 14100
c906108c
SS
14101#if 0
14102 init_remote_threadtests ();
14103#endif
14104
722247f1 14105 stop_reply_queue = QUEUE_alloc (stop_reply_p, stop_reply_xfree);
23860348 14106 /* set/show remote ... */
d471ea57 14107
1bedd215 14108 add_prefix_cmd ("remote", class_maintenance, set_remote_cmd, _("\
5a2468f5
JM
14109Remote protocol specific variables\n\
14110Configure various remote-protocol specific variables such as\n\
1bedd215 14111the packets being used"),
cff3e48b 14112 &remote_set_cmdlist, "set remote ",
23860348 14113 0 /* allow-unknown */, &setlist);
1bedd215 14114 add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
5a2468f5
JM
14115Remote protocol specific variables\n\
14116Configure various remote-protocol specific variables such as\n\
1bedd215 14117the packets being used"),
cff3e48b 14118 &remote_show_cmdlist, "show remote ",
23860348 14119 0 /* allow-unknown */, &showlist);
5a2468f5 14120
1a966eab
AC
14121 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
14122Compare section data on target to the exec file.\n\
95cf3b38
DT
14123Argument is a single section name (default: all loaded sections).\n\
14124To compare only read-only loaded sections, specify the -r option."),
c906108c
SS
14125 &cmdlist);
14126
1a966eab
AC
14127 add_cmd ("packet", class_maintenance, packet_command, _("\
14128Send an arbitrary packet to a remote target.\n\
c906108c
SS
14129 maintenance packet TEXT\n\
14130If GDB is talking to an inferior via the GDB serial protocol, then\n\
14131this command sends the string TEXT to the inferior, and displays the\n\
14132response packet. GDB supplies the initial `$' character, and the\n\
1a966eab 14133terminating `#' character and checksum."),
c906108c
SS
14134 &maintenancelist);
14135
7915a72c
AC
14136 add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
14137Set whether to send break if interrupted."), _("\
14138Show whether to send break if interrupted."), _("\
14139If set, a break, instead of a cntrl-c, is sent to the remote target."),
9a7071a8 14140 set_remotebreak, show_remotebreak,
e707bbc2 14141 &setlist, &showlist);
9a7071a8
JB
14142 cmd_name = "remotebreak";
14143 cmd = lookup_cmd (&cmd_name, setlist, "", -1, 1);
14144 deprecate_cmd (cmd, "set remote interrupt-sequence");
14145 cmd_name = "remotebreak"; /* needed because lookup_cmd updates the pointer */
14146 cmd = lookup_cmd (&cmd_name, showlist, "", -1, 1);
14147 deprecate_cmd (cmd, "show remote interrupt-sequence");
14148
14149 add_setshow_enum_cmd ("interrupt-sequence", class_support,
3e43a32a
MS
14150 interrupt_sequence_modes, &interrupt_sequence_mode,
14151 _("\
9a7071a8
JB
14152Set interrupt sequence to remote target."), _("\
14153Show interrupt sequence to remote target."), _("\
14154Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."),
14155 NULL, show_interrupt_sequence,
14156 &remote_set_cmdlist,
14157 &remote_show_cmdlist);
14158
14159 add_setshow_boolean_cmd ("interrupt-on-connect", class_support,
14160 &interrupt_on_connect, _("\
14161Set whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
14162Show whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
14163If set, interrupt sequence is sent to remote target."),
14164 NULL, NULL,
14165 &remote_set_cmdlist, &remote_show_cmdlist);
c906108c 14166
23860348 14167 /* Install commands for configuring memory read/write packets. */
11cf8741 14168
1a966eab
AC
14169 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
14170Set the maximum number of bytes per memory write packet (deprecated)."),
11cf8741 14171 &setlist);
1a966eab
AC
14172 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
14173Show the maximum number of bytes per memory write packet (deprecated)."),
11cf8741
JM
14174 &showlist);
14175 add_cmd ("memory-write-packet-size", no_class,
1a966eab
AC
14176 set_memory_write_packet_size, _("\
14177Set the maximum number of bytes per memory-write packet.\n\
14178Specify the number of bytes in a packet or 0 (zero) for the\n\
14179default packet size. The actual limit is further reduced\n\
14180dependent on the target. Specify ``fixed'' to disable the\n\
14181further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
14182 &remote_set_cmdlist);
14183 add_cmd ("memory-read-packet-size", no_class,
1a966eab
AC
14184 set_memory_read_packet_size, _("\
14185Set the maximum number of bytes per memory-read packet.\n\
14186Specify the number of bytes in a packet or 0 (zero) for the\n\
14187default packet size. The actual limit is further reduced\n\
14188dependent on the target. Specify ``fixed'' to disable the\n\
14189further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
14190 &remote_set_cmdlist);
14191 add_cmd ("memory-write-packet-size", no_class,
14192 show_memory_write_packet_size,
1a966eab 14193 _("Show the maximum number of bytes per memory-write packet."),
11cf8741
JM
14194 &remote_show_cmdlist);
14195 add_cmd ("memory-read-packet-size", no_class,
14196 show_memory_read_packet_size,
1a966eab 14197 _("Show the maximum number of bytes per memory-read packet."),
11cf8741 14198 &remote_show_cmdlist);
c906108c 14199
b3f42336 14200 add_setshow_zinteger_cmd ("hardware-watchpoint-limit", no_class,
7915a72c
AC
14201 &remote_hw_watchpoint_limit, _("\
14202Set the maximum number of target hardware watchpoints."), _("\
14203Show the maximum number of target hardware watchpoints."), _("\
14204Specify a negative limit for unlimited."),
3e43a32a
MS
14205 NULL, NULL, /* FIXME: i18n: The maximum
14206 number of target hardware
14207 watchpoints is %s. */
b3f42336 14208 &remote_set_cmdlist, &remote_show_cmdlist);
480a3f21
PW
14209 add_setshow_zinteger_cmd ("hardware-watchpoint-length-limit", no_class,
14210 &remote_hw_watchpoint_length_limit, _("\
14211Set the maximum length (in bytes) of a target hardware watchpoint."), _("\
14212Show the maximum length (in bytes) of a target hardware watchpoint."), _("\
14213Specify a negative limit for unlimited."),
14214 NULL, NULL, /* FIXME: i18n: The maximum
14215 length (in bytes) of a target
14216 hardware watchpoint is %s. */
14217 &remote_set_cmdlist, &remote_show_cmdlist);
b3f42336 14218 add_setshow_zinteger_cmd ("hardware-breakpoint-limit", no_class,
7915a72c
AC
14219 &remote_hw_breakpoint_limit, _("\
14220Set the maximum number of target hardware breakpoints."), _("\
14221Show the maximum number of target hardware breakpoints."), _("\
14222Specify a negative limit for unlimited."),
3e43a32a
MS
14223 NULL, NULL, /* FIXME: i18n: The maximum
14224 number of target hardware
14225 breakpoints is %s. */
b3f42336 14226 &remote_set_cmdlist, &remote_show_cmdlist);
501eef12 14227
1b493192
PA
14228 add_setshow_zuinteger_cmd ("remoteaddresssize", class_obscure,
14229 &remote_address_size, _("\
4d28ad1e
AC
14230Set the maximum size of the address (in bits) in a memory packet."), _("\
14231Show the maximum size of the address (in bits) in a memory packet."), NULL,
1b493192
PA
14232 NULL,
14233 NULL, /* FIXME: i18n: */
14234 &setlist, &showlist);
c906108c 14235
ca4f7f8b
PA
14236 init_all_packet_configs ();
14237
444abaca 14238 add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
bb572ddd 14239 "X", "binary-download", 1);
0f71a2f6 14240
444abaca 14241 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
bb572ddd 14242 "vCont", "verbose-resume", 0);
506fb367 14243
89be2091
DJ
14244 add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals],
14245 "QPassSignals", "pass-signals", 0);
14246
82075af2
JS
14247 add_packet_config_cmd (&remote_protocol_packets[PACKET_QCatchSyscalls],
14248 "QCatchSyscalls", "catch-syscalls", 0);
14249
9b224c5e
PA
14250 add_packet_config_cmd (&remote_protocol_packets[PACKET_QProgramSignals],
14251 "QProgramSignals", "program-signals", 0);
14252
bc3b087d
SDJ
14253 add_packet_config_cmd (&remote_protocol_packets[PACKET_QSetWorkingDir],
14254 "QSetWorkingDir", "set-working-dir", 0);
14255
aefd8b33
SDJ
14256 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartupWithShell],
14257 "QStartupWithShell", "startup-with-shell", 0);
14258
0a2dde4a
SDJ
14259 add_packet_config_cmd (&remote_protocol_packets
14260 [PACKET_QEnvironmentHexEncoded],
14261 "QEnvironmentHexEncoded", "environment-hex-encoded",
14262 0);
14263
14264 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentReset],
14265 "QEnvironmentReset", "environment-reset",
14266 0);
14267
14268 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentUnset],
14269 "QEnvironmentUnset", "environment-unset",
14270 0);
14271
444abaca 14272 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
bb572ddd 14273 "qSymbol", "symbol-lookup", 0);
dc8acb97 14274
444abaca 14275 add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
bb572ddd 14276 "P", "set-register", 1);
d471ea57 14277
444abaca 14278 add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
bb572ddd 14279 "p", "fetch-register", 1);
b96ec7ac 14280
444abaca 14281 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
bb572ddd 14282 "Z0", "software-breakpoint", 0);
d471ea57 14283
444abaca 14284 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
bb572ddd 14285 "Z1", "hardware-breakpoint", 0);
d471ea57 14286
444abaca 14287 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
bb572ddd 14288 "Z2", "write-watchpoint", 0);
d471ea57 14289
444abaca 14290 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
bb572ddd 14291 "Z3", "read-watchpoint", 0);
d471ea57 14292
444abaca 14293 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
bb572ddd 14294 "Z4", "access-watchpoint", 0);
d471ea57 14295
0876f84a
DJ
14296 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
14297 "qXfer:auxv:read", "read-aux-vector", 0);
802188a7 14298
c78fa86a
GB
14299 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_exec_file],
14300 "qXfer:exec-file:read", "pid-to-exec-file", 0);
14301
23181151
DJ
14302 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features],
14303 "qXfer:features:read", "target-features", 0);
14304
cfa9d6d9
DJ
14305 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries],
14306 "qXfer:libraries:read", "library-info", 0);
14307
2268b414
JK
14308 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries_svr4],
14309 "qXfer:libraries-svr4:read", "library-info-svr4", 0);
14310
fd79ecee
DJ
14311 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
14312 "qXfer:memory-map:read", "memory-map", 0);
14313
0e7f50da
UW
14314 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_read],
14315 "qXfer:spu:read", "read-spu-object", 0);
14316
14317 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_write],
14318 "qXfer:spu:write", "write-spu-object", 0);
14319
07e059b5
VP
14320 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata],
14321 "qXfer:osdata:read", "osdata", 0);
14322
dc146f7c
VP
14323 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_threads],
14324 "qXfer:threads:read", "threads", 0);
14325
4aa995e1
PA
14326 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read],
14327 "qXfer:siginfo:read", "read-siginfo-object", 0);
14328
14329 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write],
14330 "qXfer:siginfo:write", "write-siginfo-object", 0);
14331
b3b9301e
PA
14332 add_packet_config_cmd
14333 (&remote_protocol_packets[PACKET_qXfer_traceframe_info],
eb9fe518 14334 "qXfer:traceframe-info:read", "traceframe-info", 0);
b3b9301e 14335
169081d0
TG
14336 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_uib],
14337 "qXfer:uib:read", "unwind-info-block", 0);
14338
444abaca 14339 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
38691318 14340 "qGetTLSAddr", "get-thread-local-storage-address",
38691318
KB
14341 0);
14342
711e434b
PM
14343 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTIBAddr],
14344 "qGetTIBAddr", "get-thread-information-block-address",
14345 0);
14346
40ab02ce
MS
14347 add_packet_config_cmd (&remote_protocol_packets[PACKET_bc],
14348 "bc", "reverse-continue", 0);
14349
14350 add_packet_config_cmd (&remote_protocol_packets[PACKET_bs],
14351 "bs", "reverse-step", 0);
14352
be2a5f71
DJ
14353 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
14354 "qSupported", "supported-packets", 0);
14355
08388c79
DE
14356 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory],
14357 "qSearch:memory", "search-memory", 0);
14358
bd3eecc3
PA
14359 add_packet_config_cmd (&remote_protocol_packets[PACKET_qTStatus],
14360 "qTStatus", "trace-status", 0);
14361
15a201c8
GB
14362 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_setfs],
14363 "vFile:setfs", "hostio-setfs", 0);
14364
a6b151f1
DJ
14365 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open],
14366 "vFile:open", "hostio-open", 0);
14367
14368 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread],
14369 "vFile:pread", "hostio-pread", 0);
14370
14371 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite],
14372 "vFile:pwrite", "hostio-pwrite", 0);
14373
14374 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close],
14375 "vFile:close", "hostio-close", 0);
14376
14377 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink],
14378 "vFile:unlink", "hostio-unlink", 0);
14379
b9e7b9c3
UW
14380 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_readlink],
14381 "vFile:readlink", "hostio-readlink", 0);
14382
0a93529c
GB
14383 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_fstat],
14384 "vFile:fstat", "hostio-fstat", 0);
14385
2d717e4f
DJ
14386 add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach],
14387 "vAttach", "attach", 0);
14388
14389 add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun],
14390 "vRun", "run", 0);
14391
a6f3e723
SL
14392 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode],
14393 "QStartNoAckMode", "noack", 0);
14394
82f73884
PA
14395 add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill],
14396 "vKill", "kill", 0);
14397
0b16c5cf
PA
14398 add_packet_config_cmd (&remote_protocol_packets[PACKET_qAttached],
14399 "qAttached", "query-attached", 0);
14400
782b2b07 14401 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalTracepoints],
3e43a32a
MS
14402 "ConditionalTracepoints",
14403 "conditional-tracepoints", 0);
3788aec7
LM
14404
14405 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalBreakpoints],
14406 "ConditionalBreakpoints",
14407 "conditional-breakpoints", 0);
14408
d3ce09f5
SS
14409 add_packet_config_cmd (&remote_protocol_packets[PACKET_BreakpointCommands],
14410 "BreakpointCommands",
14411 "breakpoint-commands", 0);
14412
7a697b8d
SS
14413 add_packet_config_cmd (&remote_protocol_packets[PACKET_FastTracepoints],
14414 "FastTracepoints", "fast-tracepoints", 0);
782b2b07 14415
409873ef
SS
14416 add_packet_config_cmd (&remote_protocol_packets[PACKET_TracepointSource],
14417 "TracepointSource", "TracepointSource", 0);
14418
d914c394
SS
14419 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAllow],
14420 "QAllow", "allow", 0);
14421
0fb4aa4b
PA
14422 add_packet_config_cmd (&remote_protocol_packets[PACKET_StaticTracepoints],
14423 "StaticTracepoints", "static-tracepoints", 0);
14424
1e4d1764
YQ
14425 add_packet_config_cmd (&remote_protocol_packets[PACKET_InstallInTrace],
14426 "InstallInTrace", "install-in-trace", 0);
14427
0fb4aa4b
PA
14428 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_statictrace_read],
14429 "qXfer:statictrace:read", "read-sdata-object", 0);
14430
78d85199
YQ
14431 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_fdpic],
14432 "qXfer:fdpic:read", "read-fdpic-loadmap", 0);
14433
03583c20
UW
14434 add_packet_config_cmd (&remote_protocol_packets[PACKET_QDisableRandomization],
14435 "QDisableRandomization", "disable-randomization", 0);
14436
d1feda86
YQ
14437 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAgent],
14438 "QAgent", "agent", 0);
14439
f6f899bf
HAQ
14440 add_packet_config_cmd (&remote_protocol_packets[PACKET_QTBuffer_size],
14441 "QTBuffer:size", "trace-buffer-size", 0);
14442
9accd112
MM
14443 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_off],
14444 "Qbtrace:off", "disable-btrace", 0);
14445
14446 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_bts],
b20a6524
MM
14447 "Qbtrace:bts", "enable-btrace-bts", 0);
14448
14449 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_pt],
14450 "Qbtrace:pt", "enable-btrace-pt", 0);
9accd112
MM
14451
14452 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace],
14453 "qXfer:btrace", "read-btrace", 0);
14454
f4abbc16
MM
14455 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace_conf],
14456 "qXfer:btrace-conf", "read-btrace-conf", 0);
14457
d33501a5
MM
14458 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_bts_size],
14459 "Qbtrace-conf:bts:size", "btrace-conf-bts-size", 0);
14460
73b8c1fd
PA
14461 add_packet_config_cmd (&remote_protocol_packets[PACKET_multiprocess_feature],
14462 "multiprocess-feature", "multiprocess-feature", 0);
14463
f7e6eed5
PA
14464 add_packet_config_cmd (&remote_protocol_packets[PACKET_swbreak_feature],
14465 "swbreak-feature", "swbreak-feature", 0);
14466
14467 add_packet_config_cmd (&remote_protocol_packets[PACKET_hwbreak_feature],
14468 "hwbreak-feature", "hwbreak-feature", 0);
14469
89245bc0
DB
14470 add_packet_config_cmd (&remote_protocol_packets[PACKET_fork_event_feature],
14471 "fork-event-feature", "fork-event-feature", 0);
14472
14473 add_packet_config_cmd (&remote_protocol_packets[PACKET_vfork_event_feature],
14474 "vfork-event-feature", "vfork-event-feature", 0);
14475
b20a6524
MM
14476 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_pt_size],
14477 "Qbtrace-conf:pt:size", "btrace-conf-pt-size", 0);
14478
750ce8d1
YQ
14479 add_packet_config_cmd (&remote_protocol_packets[PACKET_vContSupported],
14480 "vContSupported", "verbose-resume-supported", 0);
14481
94585166
DB
14482 add_packet_config_cmd (&remote_protocol_packets[PACKET_exec_event_feature],
14483 "exec-event-feature", "exec-event-feature", 0);
14484
de979965
PA
14485 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCtrlC],
14486 "vCtrlC", "ctrl-c", 0);
14487
65706a29
PA
14488 add_packet_config_cmd (&remote_protocol_packets[PACKET_QThreadEvents],
14489 "QThreadEvents", "thread-events", 0);
14490
f2faf941
PA
14491 add_packet_config_cmd (&remote_protocol_packets[PACKET_no_resumed],
14492 "N stop reply", "no-resumed-stop-reply", 0);
14493
0b736949
DB
14494 /* Assert that we've registered "set remote foo-packet" commands
14495 for all packet configs. */
ca4f7f8b
PA
14496 {
14497 int i;
14498
14499 for (i = 0; i < PACKET_MAX; i++)
14500 {
14501 /* Ideally all configs would have a command associated. Some
14502 still don't though. */
14503 int excepted;
14504
14505 switch (i)
14506 {
14507 case PACKET_QNonStop:
ca4f7f8b
PA
14508 case PACKET_EnableDisableTracepoints_feature:
14509 case PACKET_tracenz_feature:
14510 case PACKET_DisconnectedTracing_feature:
14511 case PACKET_augmented_libraries_svr4_read_feature:
936d2992
PA
14512 case PACKET_qCRC:
14513 /* Additions to this list need to be well justified:
14514 pre-existing packets are OK; new packets are not. */
ca4f7f8b
PA
14515 excepted = 1;
14516 break;
14517 default:
14518 excepted = 0;
14519 break;
14520 }
14521
14522 /* This catches both forgetting to add a config command, and
14523 forgetting to remove a packet from the exception list. */
14524 gdb_assert (excepted == (remote_protocol_packets[i].name == NULL));
14525 }
14526 }
14527
37a105a1
DJ
14528 /* Keep the old ``set remote Z-packet ...'' working. Each individual
14529 Z sub-packet has its own set and show commands, but users may
14530 have sets to this variable in their .gdbinit files (or in their
14531 documentation). */
e9e68a56 14532 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
7915a72c
AC
14533 &remote_Z_packet_detect, _("\
14534Set use of remote protocol `Z' packets"), _("\
14535Show use of remote protocol `Z' packets "), _("\
3b64bf98 14536When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
7915a72c 14537packets."),
e9e68a56 14538 set_remote_protocol_Z_packet_cmd,
3e43a32a
MS
14539 show_remote_protocol_Z_packet_cmd,
14540 /* FIXME: i18n: Use of remote protocol
14541 `Z' packets is %s. */
e9e68a56 14542 &remote_set_cmdlist, &remote_show_cmdlist);
449092f6 14543
a6b151f1
DJ
14544 add_prefix_cmd ("remote", class_files, remote_command, _("\
14545Manipulate files on the remote system\n\
14546Transfer files to and from the remote target system."),
14547 &remote_cmdlist, "remote ",
14548 0 /* allow-unknown */, &cmdlist);
14549
14550 add_cmd ("put", class_files, remote_put_command,
14551 _("Copy a local file to the remote system."),
14552 &remote_cmdlist);
14553
14554 add_cmd ("get", class_files, remote_get_command,
14555 _("Copy a remote file to the local system."),
14556 &remote_cmdlist);
14557
14558 add_cmd ("delete", class_files, remote_delete_command,
14559 _("Delete a remote file."),
14560 &remote_cmdlist);
14561
2d717e4f 14562 add_setshow_string_noescape_cmd ("exec-file", class_files,
94585166 14563 &remote_exec_file_var, _("\
2d717e4f 14564Set the remote pathname for \"run\""), _("\
94585166
DB
14565Show the remote pathname for \"run\""), NULL,
14566 set_remote_exec_file,
14567 show_remote_exec_file,
14568 &remote_set_cmdlist,
14569 &remote_show_cmdlist);
2d717e4f 14570
c1e36e3e
PA
14571 add_setshow_boolean_cmd ("range-stepping", class_run,
14572 &use_range_stepping, _("\
14573Enable or disable range stepping."), _("\
14574Show whether target-assisted range stepping is enabled."), _("\
14575If on, and the target supports it, when stepping a source line, GDB\n\
14576tells the target to step the corresponding range of addresses itself instead\n\
14577of issuing multiple single-steps. This speeds up source level\n\
14578stepping. If off, GDB always issues single-steps, even if range\n\
14579stepping is supported by the target. The default is on."),
14580 set_range_stepping,
14581 show_range_stepping,
14582 &setlist,
14583 &showlist);
14584
449092f6
CV
14585 /* Eventually initialize fileio. See fileio.c */
14586 initialize_remote_fileio (remote_set_cmdlist, remote_show_cmdlist);
79d7f229 14587
ba348170 14588 /* Take advantage of the fact that the TID field is not used, to tag
79d7f229 14589 special ptids with it set to != 0. */
ba348170
PA
14590 magic_null_ptid = ptid_build (42000, -1, 1);
14591 not_sent_ptid = ptid_build (42000, -2, 1);
14592 any_thread_ptid = ptid_build (42000, 0, 1);
c906108c 14593}
This page took 4.4114 seconds and 4 git commands to generate.