Change displaced_step_clear_cleanup to a forward_scope_exit
[deliverable/binutils-gdb.git] / gdb / remote.c
CommitLineData
c906108c 1/* Remote target communications for serial-line targets in custom GDB protocol
8926118c 2
42a4f53d 3 Copyright (C) 1988-2019 Free Software Foundation, Inc.
c906108c 4
c5aa993b
JM
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
c5aa993b
JM
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c5aa993b 19
23860348 20/* See the GDB User Guide for details of the GDB remote protocol. */
c5aa993b 21
c906108c 22#include "defs.h"
c906108c
SS
23#include <ctype.h>
24#include <fcntl.h>
c906108c 25#include "inferior.h"
45741a9c 26#include "infrun.h"
c906108c
SS
27#include "bfd.h"
28#include "symfile.h"
29#include "target.h"
3b3dac9b 30#include "process-stratum-target.h"
c906108c
SS
31#include "gdbcmd.h"
32#include "objfiles.h"
33#include "gdb-stabs.h"
34#include "gdbthread.h"
c2c6d25f 35#include "remote.h"
722247f1 36#include "remote-notif.h"
4e052eda 37#include "regcache.h"
fd0407d6 38#include "value.h"
76727919 39#include "observable.h"
a77053c2 40#include "solib.h"
37a105a1
DJ
41#include "cli/cli-decode.h"
42#include "cli/cli-setshow.h"
424163ea 43#include "target-descriptions.h"
a4453b7e 44#include "gdb_bfd.h"
0747795c
TT
45#include "common/filestuff.h"
46#include "common/rsp-low.h"
6b940e6a 47#include "disasm.h"
f00aae0f 48#include "location.h"
c906108c 49
0747795c 50#include "common/gdb_sys_time.h"
c906108c 51
43ff13b4 52#include "event-loop.h"
c2c6d25f 53#include "event-top.h"
2acceee2 54#include "inf-loop.h"
43ff13b4 55
c906108c
SS
56#include <signal.h>
57#include "serial.h"
58
6240bebf
MS
59#include "gdbcore.h" /* for exec_bfd */
60
449092f6 61#include "remote-fileio.h"
a6b151f1 62#include "gdb/fileio.h"
53ce3c39 63#include <sys/stat.h>
dc146f7c 64#include "xml-support.h"
449092f6 65
fd79ecee
DJ
66#include "memory-map.h"
67
35b1e5cc
SS
68#include "tracepoint.h"
69#include "ax.h"
70#include "ax-gdb.h"
0747795c 71#include "common/agent.h"
9accd112 72#include "btrace.h"
c0272db5 73#include "record-btrace.h"
325fac50 74#include <algorithm>
2ec845e7 75#include "common/scoped_restore.h"
0747795c 76#include "common/environ.h"
f6327dcb 77#include "common/byte-vector.h"
9d6eea31 78#include <unordered_map>
35b1e5cc 79
f6ac5f3d
PA
80/* The remote target. */
81
d9f719f1
PA
82static const char remote_doc[] = N_("\
83Use a remote computer via a serial line, using a gdb-specific protocol.\n\
84Specify the serial device it is connected to\n\
85(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).");
86
6b8edb51
PA
87#define OPAQUETHREADBYTES 8
88
89/* a 64 bit opaque identifier */
90typedef unsigned char threadref[OPAQUETHREADBYTES];
91
92struct gdb_ext_thread_info;
93struct threads_listing_context;
94typedef int (*rmt_thread_action) (threadref *ref, void *context);
95struct protocol_feature;
96struct packet_reg;
97
98struct stop_reply;
953edf2b 99static void stop_reply_xfree (struct stop_reply *);
6b8edb51 100
953edf2b
TT
101struct stop_reply_deleter
102{
103 void operator() (stop_reply *r) const
104 {
105 stop_reply_xfree (r);
106 }
107};
108
109typedef std::unique_ptr<stop_reply, stop_reply_deleter> stop_reply_up;
6b8edb51
PA
110
111/* Generic configuration support for packets the stub optionally
112 supports. Allows the user to specify the use of the packet as well
113 as allowing GDB to auto-detect support in the remote stub. */
114
115enum packet_support
116 {
117 PACKET_SUPPORT_UNKNOWN = 0,
118 PACKET_ENABLE,
119 PACKET_DISABLE
120 };
121
122/* Analyze a packet's return value and update the packet config
123 accordingly. */
124
125enum packet_result
126{
127 PACKET_ERROR,
128 PACKET_OK,
129 PACKET_UNKNOWN
130};
131
132struct threads_listing_context;
3c69da40
PA
133
134/* Stub vCont actions support.
135
136 Each field is a boolean flag indicating whether the stub reports
137 support for the corresponding action. */
138
139struct vCont_action_support
140{
141 /* vCont;t */
142 bool t = false;
143
144 /* vCont;r */
145 bool r = false;
146
147 /* vCont;s */
148 bool s = false;
149
150 /* vCont;S */
151 bool S = false;
152};
153
154/* About this many threadisds fit in a packet. */
155
156#define MAXTHREADLISTRESULTS 32
157
158/* Data for the vFile:pread readahead cache. */
159
160struct readahead_cache
161{
162 /* Invalidate the readahead cache. */
163 void invalidate ();
164
165 /* Invalidate the readahead cache if it is holding data for FD. */
166 void invalidate_fd (int fd);
167
168 /* Serve pread from the readahead cache. Returns number of bytes
169 read, or 0 if the request can't be served from the cache. */
170 int pread (int fd, gdb_byte *read_buf, size_t len, ULONGEST offset);
171
172 /* The file descriptor for the file that is being cached. -1 if the
173 cache is invalid. */
174 int fd = -1;
175
176 /* The offset into the file that the cache buffer corresponds
177 to. */
178 ULONGEST offset = 0;
179
180 /* The buffer holding the cache contents. */
181 gdb_byte *buf = nullptr;
182 /* The buffer's size. We try to read as much as fits into a packet
183 at a time. */
184 size_t bufsize = 0;
185
186 /* Cache hit and miss counters. */
187 ULONGEST hit_count = 0;
188 ULONGEST miss_count = 0;
189};
190
191/* Description of the remote protocol for a given architecture. */
192
193struct packet_reg
194{
195 long offset; /* Offset into G packet. */
196 long regnum; /* GDB's internal register number. */
197 LONGEST pnum; /* Remote protocol register number. */
198 int in_g_packet; /* Always part of G packet. */
199 /* long size in bytes; == register_size (target_gdbarch (), regnum);
200 at present. */
201 /* char *name; == gdbarch_register_name (target_gdbarch (), regnum);
202 at present. */
203};
204
205struct remote_arch_state
206{
207 explicit remote_arch_state (struct gdbarch *gdbarch);
208
209 /* Description of the remote protocol registers. */
210 long sizeof_g_packet;
211
212 /* Description of the remote protocol registers indexed by REGNUM
213 (making an array gdbarch_num_regs in size). */
214 std::unique_ptr<packet_reg[]> regs;
215
216 /* This is the size (in chars) of the first response to the ``g''
217 packet. It is used as a heuristic when determining the maximum
218 size of memory-read and memory-write packets. A target will
219 typically only reserve a buffer large enough to hold the ``g''
220 packet. The size does not include packet overhead (headers and
221 trailers). */
222 long actual_register_packet_size;
223
224 /* This is the maximum size (in chars) of a non read/write packet.
225 It is also used as a cap on the size of read/write packets. */
226 long remote_packet_size;
227};
228
229/* Description of the remote protocol state for the currently
230 connected target. This is per-target state, and independent of the
231 selected architecture. */
232
233class remote_state
234{
235public:
236
237 remote_state ();
238 ~remote_state ();
239
240 /* Get the remote arch state for GDBARCH. */
241 struct remote_arch_state *get_remote_arch_state (struct gdbarch *gdbarch);
242
243public: /* data */
244
245 /* A buffer to use for incoming packets, and its current size. The
246 buffer is grown dynamically for larger incoming packets.
247 Outgoing packets may also be constructed in this buffer.
8d64371b 248 The size of the buffer is always at least REMOTE_PACKET_SIZE;
3c69da40
PA
249 REMOTE_PACKET_SIZE should be used to limit the length of outgoing
250 packets. */
8d64371b 251 gdb::char_vector buf;
3c69da40
PA
252
253 /* True if we're going through initial connection setup (finding out
254 about the remote side's threads, relocating symbols, etc.). */
255 bool starting_up = false;
256
257 /* If we negotiated packet size explicitly (and thus can bypass
258 heuristics for the largest packet size that will not overflow
259 a buffer in the stub), this will be set to that packet size.
260 Otherwise zero, meaning to use the guessed size. */
261 long explicit_packet_size = 0;
262
263 /* remote_wait is normally called when the target is running and
264 waits for a stop reply packet. But sometimes we need to call it
265 when the target is already stopped. We can send a "?" packet
266 and have remote_wait read the response. Or, if we already have
267 the response, we can stash it in BUF and tell remote_wait to
268 skip calling getpkt. This flag is set when BUF contains a
269 stop reply packet and the target is not waiting. */
270 int cached_wait_status = 0;
271
272 /* True, if in no ack mode. That is, neither GDB nor the stub will
273 expect acks from each other. The connection is assumed to be
274 reliable. */
275 bool noack_mode = false;
276
277 /* True if we're connected in extended remote mode. */
278 bool extended = false;
279
280 /* True if we resumed the target and we're waiting for the target to
281 stop. In the mean time, we can't start another command/query.
282 The remote server wouldn't be ready to process it, so we'd
283 timeout waiting for a reply that would never come and eventually
284 we'd close the connection. This can happen in asynchronous mode
285 because we allow GDB commands while the target is running. */
286 bool waiting_for_stop_reply = false;
287
288 /* The status of the stub support for the various vCont actions. */
289 vCont_action_support supports_vCont;
290
291 /* True if the user has pressed Ctrl-C, but the target hasn't
292 responded to that. */
293 bool ctrlc_pending_p = false;
294
295 /* True if we saw a Ctrl-C while reading or writing from/to the
296 remote descriptor. At that point it is not safe to send a remote
297 interrupt packet, so we instead remember we saw the Ctrl-C and
298 process it once we're done with sending/receiving the current
299 packet, which should be shortly. If however that takes too long,
300 and the user presses Ctrl-C again, we offer to disconnect. */
301 bool got_ctrlc_during_io = false;
302
303 /* Descriptor for I/O to remote machine. Initialize it to NULL so that
304 remote_open knows that we don't have a file open when the program
305 starts. */
306 struct serial *remote_desc = nullptr;
307
308 /* These are the threads which we last sent to the remote system. The
309 TID member will be -1 for all or -2 for not sent yet. */
310 ptid_t general_thread = null_ptid;
311 ptid_t continue_thread = null_ptid;
312
313 /* This is the traceframe which we last selected on the remote system.
314 It will be -1 if no traceframe is selected. */
315 int remote_traceframe_number = -1;
316
317 char *last_pass_packet = nullptr;
318
319 /* The last QProgramSignals packet sent to the target. We bypass
320 sending a new program signals list down to the target if the new
321 packet is exactly the same as the last we sent. IOW, we only let
322 the target know about program signals list changes. */
323 char *last_program_signals_packet = nullptr;
324
325 gdb_signal last_sent_signal = GDB_SIGNAL_0;
326
327 bool last_sent_step = false;
328
329 /* The execution direction of the last resume we got. */
330 exec_direction_kind last_resume_exec_dir = EXEC_FORWARD;
331
332 char *finished_object = nullptr;
333 char *finished_annex = nullptr;
334 ULONGEST finished_offset = 0;
335
336 /* Should we try the 'ThreadInfo' query packet?
337
338 This variable (NOT available to the user: auto-detect only!)
339 determines whether GDB will use the new, simpler "ThreadInfo"
340 query or the older, more complex syntax for thread queries.
341 This is an auto-detect variable (set to true at each connect,
342 and set to false when the target fails to recognize it). */
343 bool use_threadinfo_query = false;
344 bool use_threadextra_query = false;
345
346 threadref echo_nextthread {};
347 threadref nextthread {};
348 threadref resultthreadlist[MAXTHREADLISTRESULTS] {};
349
350 /* The state of remote notification. */
351 struct remote_notif_state *notif_state = nullptr;
352
353 /* The branch trace configuration. */
354 struct btrace_config btrace_config {};
355
356 /* The argument to the last "vFile:setfs:" packet we sent, used
357 to avoid sending repeated unnecessary "vFile:setfs:" packets.
358 Initialized to -1 to indicate that no "vFile:setfs:" packet
359 has yet been sent. */
360 int fs_pid = -1;
361
362 /* A readahead cache for vFile:pread. Often, reading a binary
363 involves a sequence of small reads. E.g., when parsing an ELF
364 file. A readahead cache helps mostly the case of remote
365 debugging on a connection with higher latency, due to the
366 request/reply nature of the RSP. We only cache data for a single
367 file descriptor at a time. */
368 struct readahead_cache readahead_cache;
369
370 /* The list of already fetched and acknowledged stop events. This
371 queue is used for notification Stop, and other notifications
372 don't need queue for their events, because the notification
373 events of Stop can't be consumed immediately, so that events
374 should be queued first, and be consumed by remote_wait_{ns,as}
375 one per time. Other notifications can consume their events
376 immediately, so queue is not needed for them. */
953edf2b 377 std::vector<stop_reply_up> stop_reply_queue;
3c69da40
PA
378
379 /* Asynchronous signal handle registered as event loop source for
380 when we have pending events ready to be passed to the core. */
381 struct async_event_handler *remote_async_inferior_event_token = nullptr;
382
383 /* FIXME: cagney/1999-09-23: Even though getpkt was called with
384 ``forever'' still use the normal timeout mechanism. This is
385 currently used by the ASYNC code to guarentee that target reads
386 during the initial connect always time-out. Once getpkt has been
387 modified to return a timeout indication and, in turn
388 remote_wait()/wait_for_inferior() have gained a timeout parameter
389 this can go away. */
390 int wait_forever_enabled_p = 1;
391
392private:
393 /* Mapping of remote protocol data for each gdbarch. Usually there
394 is only one entry here, though we may see more with stubs that
395 support multi-process. */
396 std::unordered_map<struct gdbarch *, remote_arch_state>
397 m_arch_states;
398};
6b8edb51 399
d9f719f1
PA
400static const target_info remote_target_info = {
401 "remote",
402 N_("Remote serial target in gdb-specific protocol"),
403 remote_doc
404};
405
3b3dac9b 406class remote_target : public process_stratum_target
f6ac5f3d
PA
407{
408public:
3b3dac9b 409 remote_target () = default;
6b8edb51 410 ~remote_target () override;
f6ac5f3d 411
d9f719f1
PA
412 const target_info &info () const override
413 { return remote_target_info; }
f6ac5f3d
PA
414
415 thread_control_capabilities get_thread_control_capabilities () override
416 { return tc_schedlock; }
417
d9f719f1
PA
418 /* Open a remote connection. */
419 static void open (const char *, int);
420
f6ac5f3d
PA
421 void close () override;
422
423 void detach (inferior *, int) override;
424 void disconnect (const char *, int) override;
425
426 void commit_resume () override;
427 void resume (ptid_t, int, enum gdb_signal) override;
428 ptid_t wait (ptid_t, struct target_waitstatus *, int) override;
429
430 void fetch_registers (struct regcache *, int) override;
431 void store_registers (struct regcache *, int) override;
432 void prepare_to_store (struct regcache *) override;
433
434 void files_info () override;
435
436 int insert_breakpoint (struct gdbarch *, struct bp_target_info *) override;
437
438 int remove_breakpoint (struct gdbarch *, struct bp_target_info *,
439 enum remove_bp_reason) override;
440
441
57810aa7
PA
442 bool stopped_by_sw_breakpoint () override;
443 bool supports_stopped_by_sw_breakpoint () override;
f6ac5f3d 444
57810aa7 445 bool stopped_by_hw_breakpoint () override;
f6ac5f3d 446
57810aa7 447 bool supports_stopped_by_hw_breakpoint () override;
f6ac5f3d 448
57810aa7 449 bool stopped_by_watchpoint () override;
f6ac5f3d 450
57810aa7 451 bool stopped_data_address (CORE_ADDR *) override;
f6ac5f3d 452
57810aa7 453 bool watchpoint_addr_within_range (CORE_ADDR, CORE_ADDR, int) override;
f6ac5f3d
PA
454
455 int can_use_hw_breakpoint (enum bptype, int, int) override;
456
457 int insert_hw_breakpoint (struct gdbarch *, struct bp_target_info *) override;
458
459 int remove_hw_breakpoint (struct gdbarch *, struct bp_target_info *) override;
460
461 int region_ok_for_hw_watchpoint (CORE_ADDR, int) override;
462
463 int insert_watchpoint (CORE_ADDR, int, enum target_hw_bp_type,
464 struct expression *) override;
465
466 int remove_watchpoint (CORE_ADDR, int, enum target_hw_bp_type,
467 struct expression *) override;
468
469 void kill () override;
470
471 void load (const char *, int) override;
472
473 void mourn_inferior () override;
474
adc6a863 475 void pass_signals (gdb::array_view<const unsigned char>) override;
f6ac5f3d
PA
476
477 int set_syscall_catchpoint (int, bool, int,
478 gdb::array_view<const int>) override;
479
adc6a863 480 void program_signals (gdb::array_view<const unsigned char>) override;
f6ac5f3d 481
57810aa7 482 bool thread_alive (ptid_t ptid) override;
f6ac5f3d
PA
483
484 const char *thread_name (struct thread_info *) override;
485
486 void update_thread_list () override;
487
488 const char *pid_to_str (ptid_t) override;
489
490 const char *extra_thread_info (struct thread_info *) override;
491
492 ptid_t get_ada_task_ptid (long lwp, long thread) override;
493
494 thread_info *thread_handle_to_thread_info (const gdb_byte *thread_handle,
495 int handle_len,
496 inferior *inf) override;
497
498 void stop (ptid_t) override;
499
500 void interrupt () override;
501
502 void pass_ctrlc () override;
503
504 enum target_xfer_status xfer_partial (enum target_object object,
505 const char *annex,
506 gdb_byte *readbuf,
507 const gdb_byte *writebuf,
508 ULONGEST offset, ULONGEST len,
509 ULONGEST *xfered_len) override;
510
511 ULONGEST get_memory_xfer_limit () override;
512
513 void rcmd (const char *command, struct ui_file *output) override;
514
515 char *pid_to_exec_file (int pid) override;
516
517 void log_command (const char *cmd) override
518 {
519 serial_log_command (this, cmd);
520 }
521
522 CORE_ADDR get_thread_local_address (ptid_t ptid,
523 CORE_ADDR load_module_addr,
524 CORE_ADDR offset) override;
525
57810aa7 526 bool can_execute_reverse () override;
f6ac5f3d
PA
527
528 std::vector<mem_region> memory_map () override;
529
530 void flash_erase (ULONGEST address, LONGEST length) override;
531
532 void flash_done () override;
533
534 const struct target_desc *read_description () override;
535
536 int search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
537 const gdb_byte *pattern, ULONGEST pattern_len,
538 CORE_ADDR *found_addrp) override;
539
57810aa7 540 bool can_async_p () override;
f6ac5f3d 541
57810aa7 542 bool is_async_p () override;
f6ac5f3d
PA
543
544 void async (int) override;
545
546 void thread_events (int) override;
547
548 int can_do_single_step () override;
549
550 void terminal_inferior () override;
551
552 void terminal_ours () override;
553
57810aa7 554 bool supports_non_stop () override;
f6ac5f3d 555
57810aa7 556 bool supports_multi_process () override;
f6ac5f3d 557
57810aa7 558 bool supports_disable_randomization () override;
f6ac5f3d 559
57810aa7 560 bool filesystem_is_local () override;
f6ac5f3d
PA
561
562
563 int fileio_open (struct inferior *inf, const char *filename,
564 int flags, int mode, int warn_if_slow,
565 int *target_errno) override;
566
567 int fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
568 ULONGEST offset, int *target_errno) override;
569
570 int fileio_pread (int fd, gdb_byte *read_buf, int len,
571 ULONGEST offset, int *target_errno) override;
572
573 int fileio_fstat (int fd, struct stat *sb, int *target_errno) override;
574
575 int fileio_close (int fd, int *target_errno) override;
576
577 int fileio_unlink (struct inferior *inf,
578 const char *filename,
579 int *target_errno) override;
580
581 gdb::optional<std::string>
582 fileio_readlink (struct inferior *inf,
583 const char *filename,
584 int *target_errno) override;
585
57810aa7 586 bool supports_enable_disable_tracepoint () override;
f6ac5f3d 587
57810aa7 588 bool supports_string_tracing () override;
f6ac5f3d 589
57810aa7 590 bool supports_evaluation_of_breakpoint_conditions () override;
f6ac5f3d 591
57810aa7 592 bool can_run_breakpoint_commands () override;
f6ac5f3d
PA
593
594 void trace_init () override;
595
596 void download_tracepoint (struct bp_location *location) override;
597
57810aa7 598 bool can_download_tracepoint () override;
f6ac5f3d
PA
599
600 void download_trace_state_variable (const trace_state_variable &tsv) override;
601
602 void enable_tracepoint (struct bp_location *location) override;
603
604 void disable_tracepoint (struct bp_location *location) override;
605
606 void trace_set_readonly_regions () override;
607
608 void trace_start () override;
609
610 int get_trace_status (struct trace_status *ts) override;
611
612 void get_tracepoint_status (struct breakpoint *tp, struct uploaded_tp *utp)
613 override;
614
615 void trace_stop () override;
616
617 int trace_find (enum trace_find_type type, int num,
618 CORE_ADDR addr1, CORE_ADDR addr2, int *tpp) override;
619
57810aa7 620 bool get_trace_state_variable_value (int tsv, LONGEST *val) override;
f6ac5f3d
PA
621
622 int save_trace_data (const char *filename) override;
623
624 int upload_tracepoints (struct uploaded_tp **utpp) override;
625
626 int upload_trace_state_variables (struct uploaded_tsv **utsvp) override;
627
628 LONGEST get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len) override;
629
630 int get_min_fast_tracepoint_insn_len () override;
631
632 void set_disconnected_tracing (int val) override;
633
634 void set_circular_trace_buffer (int val) override;
635
636 void set_trace_buffer_size (LONGEST val) override;
637
57810aa7
PA
638 bool set_trace_notes (const char *user, const char *notes,
639 const char *stopnotes) override;
f6ac5f3d
PA
640
641 int core_of_thread (ptid_t ptid) override;
642
643 int verify_memory (const gdb_byte *data,
644 CORE_ADDR memaddr, ULONGEST size) override;
645
646
57810aa7 647 bool get_tib_address (ptid_t ptid, CORE_ADDR *addr) override;
f6ac5f3d
PA
648
649 void set_permissions () override;
650
651 bool static_tracepoint_marker_at (CORE_ADDR,
652 struct static_tracepoint_marker *marker)
653 override;
654
655 std::vector<static_tracepoint_marker>
656 static_tracepoint_markers_by_strid (const char *id) override;
657
658 traceframe_info_up traceframe_info () override;
659
57810aa7
PA
660 bool use_agent (bool use) override;
661 bool can_use_agent () override;
f6ac5f3d
PA
662
663 struct btrace_target_info *enable_btrace (ptid_t ptid,
664 const struct btrace_config *conf) override;
665
666 void disable_btrace (struct btrace_target_info *tinfo) override;
667
668 void teardown_btrace (struct btrace_target_info *tinfo) override;
669
670 enum btrace_error read_btrace (struct btrace_data *data,
671 struct btrace_target_info *btinfo,
672 enum btrace_read_type type) override;
673
674 const struct btrace_config *btrace_conf (const struct btrace_target_info *) override;
57810aa7 675 bool augmented_libraries_svr4_read () override;
f6ac5f3d
PA
676 int follow_fork (int, int) override;
677 void follow_exec (struct inferior *, char *) override;
678 int insert_fork_catchpoint (int) override;
679 int remove_fork_catchpoint (int) override;
680 int insert_vfork_catchpoint (int) override;
681 int remove_vfork_catchpoint (int) override;
682 int insert_exec_catchpoint (int) override;
683 int remove_exec_catchpoint (int) override;
684 enum exec_direction_kind execution_direction () override;
685
6b8edb51
PA
686public: /* Remote specific methods. */
687
688 void remote_download_command_source (int num, ULONGEST addr,
689 struct command_line *cmds);
690
691 void remote_file_put (const char *local_file, const char *remote_file,
692 int from_tty);
693 void remote_file_get (const char *remote_file, const char *local_file,
694 int from_tty);
695 void remote_file_delete (const char *remote_file, int from_tty);
696
697 int remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
698 ULONGEST offset, int *remote_errno);
699 int remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
700 ULONGEST offset, int *remote_errno);
701 int remote_hostio_pread_vFile (int fd, gdb_byte *read_buf, int len,
702 ULONGEST offset, int *remote_errno);
703
704 int remote_hostio_send_command (int command_bytes, int which_packet,
705 int *remote_errno, char **attachment,
706 int *attachment_len);
707 int remote_hostio_set_filesystem (struct inferior *inf,
708 int *remote_errno);
709 /* We should get rid of this and use fileio_open directly. */
710 int remote_hostio_open (struct inferior *inf, const char *filename,
711 int flags, int mode, int warn_if_slow,
712 int *remote_errno);
713 int remote_hostio_close (int fd, int *remote_errno);
714
715 int remote_hostio_unlink (inferior *inf, const char *filename,
716 int *remote_errno);
717
718 struct remote_state *get_remote_state ();
719
720 long get_remote_packet_size (void);
721 long get_memory_packet_size (struct memory_packet_config *config);
722
723 long get_memory_write_packet_size ();
724 long get_memory_read_packet_size ();
725
726 char *append_pending_thread_resumptions (char *p, char *endp,
727 ptid_t ptid);
d9f719f1 728 static void open_1 (const char *name, int from_tty, int extended_p);
f6ac5f3d 729 void start_remote (int from_tty, int extended_p);
00431a78 730 void remote_detach_1 (struct inferior *inf, int from_tty);
6b8edb51
PA
731
732 char *append_resumption (char *p, char *endp,
733 ptid_t ptid, int step, gdb_signal siggnal);
734 int remote_resume_with_vcont (ptid_t ptid, int step,
735 gdb_signal siggnal);
736
737 void add_current_inferior_and_thread (char *wait_status);
738
739 ptid_t wait_ns (ptid_t ptid, struct target_waitstatus *status,
740 int options);
741 ptid_t wait_as (ptid_t ptid, target_waitstatus *status,
742 int options);
743
744 ptid_t process_stop_reply (struct stop_reply *stop_reply,
745 target_waitstatus *status);
746
747 void remote_notice_new_inferior (ptid_t currthread, int executing);
748
749 void process_initial_stop_replies (int from_tty);
750
00431a78 751 thread_info *remote_add_thread (ptid_t ptid, bool running, bool executing);
6b8edb51
PA
752
753 void btrace_sync_conf (const btrace_config *conf);
754
755 void remote_btrace_maybe_reopen ();
756
757 void remove_new_fork_children (threads_listing_context *context);
758 void kill_new_fork_children (int pid);
759 void discard_pending_stop_replies (struct inferior *inf);
760 int stop_reply_queue_length ();
761
762 void check_pending_events_prevent_wildcard_vcont
763 (int *may_global_wildcard_vcont);
764
765 void discard_pending_stop_replies_in_queue ();
766 struct stop_reply *remote_notif_remove_queued_reply (ptid_t ptid);
767 struct stop_reply *queued_stop_reply (ptid_t ptid);
768 int peek_stop_reply (ptid_t ptid);
bb277751 769 void remote_parse_stop_reply (const char *buf, stop_reply *event);
6b8edb51
PA
770
771 void remote_stop_ns (ptid_t ptid);
772 void remote_interrupt_as ();
773 void remote_interrupt_ns ();
774
775 char *remote_get_noisy_reply ();
776 int remote_query_attached (int pid);
777 inferior *remote_add_inferior (int fake_pid_p, int pid, int attached,
778 int try_open_exec);
779
780 ptid_t remote_current_thread (ptid_t oldpid);
781 ptid_t get_current_thread (char *wait_status);
782
783 void set_thread (ptid_t ptid, int gen);
784 void set_general_thread (ptid_t ptid);
785 void set_continue_thread (ptid_t ptid);
786 void set_general_process ();
787
788 char *write_ptid (char *buf, const char *endbuf, ptid_t ptid);
789
790 int remote_unpack_thread_info_response (char *pkt, threadref *expectedref,
791 gdb_ext_thread_info *info);
792 int remote_get_threadinfo (threadref *threadid, int fieldset,
793 gdb_ext_thread_info *info);
794
795 int parse_threadlist_response (char *pkt, int result_limit,
796 threadref *original_echo,
797 threadref *resultlist,
798 int *doneflag);
799 int remote_get_threadlist (int startflag, threadref *nextthread,
800 int result_limit, int *done, int *result_count,
801 threadref *threadlist);
802
803 int remote_threadlist_iterator (rmt_thread_action stepfunction,
804 void *context, int looplimit);
805
806 int remote_get_threads_with_ql (threads_listing_context *context);
807 int remote_get_threads_with_qxfer (threads_listing_context *context);
808 int remote_get_threads_with_qthreadinfo (threads_listing_context *context);
809
810 void extended_remote_restart ();
811
812 void get_offsets ();
813
814 void remote_check_symbols ();
815
816 void remote_supported_packet (const struct protocol_feature *feature,
817 enum packet_support support,
818 const char *argument);
819
820 void remote_query_supported ();
821
822 void remote_packet_size (const protocol_feature *feature,
823 packet_support support, const char *value);
824
825 void remote_serial_quit_handler ();
826
827 void remote_detach_pid (int pid);
828
829 void remote_vcont_probe ();
830
831 void remote_resume_with_hc (ptid_t ptid, int step,
832 gdb_signal siggnal);
833
834 void send_interrupt_sequence ();
835 void interrupt_query ();
836
837 void remote_notif_get_pending_events (notif_client *nc);
838
839 int fetch_register_using_p (struct regcache *regcache,
840 packet_reg *reg);
841 int send_g_packet ();
842 void process_g_packet (struct regcache *regcache);
843 void fetch_registers_using_g (struct regcache *regcache);
844 int store_register_using_P (const struct regcache *regcache,
845 packet_reg *reg);
846 void store_registers_using_G (const struct regcache *regcache);
847
848 void set_remote_traceframe ();
849
850 void check_binary_download (CORE_ADDR addr);
851
852 target_xfer_status remote_write_bytes_aux (const char *header,
853 CORE_ADDR memaddr,
854 const gdb_byte *myaddr,
855 ULONGEST len_units,
856 int unit_size,
857 ULONGEST *xfered_len_units,
858 char packet_format,
859 int use_length);
860
861 target_xfer_status remote_write_bytes (CORE_ADDR memaddr,
862 const gdb_byte *myaddr, ULONGEST len,
863 int unit_size, ULONGEST *xfered_len);
864
865 target_xfer_status remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr,
866 ULONGEST len_units,
867 int unit_size, ULONGEST *xfered_len_units);
868
869 target_xfer_status remote_xfer_live_readonly_partial (gdb_byte *readbuf,
870 ULONGEST memaddr,
871 ULONGEST len,
872 int unit_size,
873 ULONGEST *xfered_len);
874
875 target_xfer_status remote_read_bytes (CORE_ADDR memaddr,
876 gdb_byte *myaddr, ULONGEST len,
877 int unit_size,
878 ULONGEST *xfered_len);
879
880 packet_result remote_send_printf (const char *format, ...)
881 ATTRIBUTE_PRINTF (2, 3);
882
883 target_xfer_status remote_flash_write (ULONGEST address,
884 ULONGEST length, ULONGEST *xfered_len,
885 const gdb_byte *data);
886
887 int readchar (int timeout);
888
889 void remote_serial_write (const char *str, int len);
890
891 int putpkt (const char *buf);
892 int putpkt_binary (const char *buf, int cnt);
893
8d64371b
TT
894 int putpkt (const gdb::char_vector &buf)
895 {
896 return putpkt (buf.data ());
897 }
898
6b8edb51 899 void skip_frame ();
8d64371b
TT
900 long read_frame (gdb::char_vector *buf_p);
901 void getpkt (gdb::char_vector *buf, int forever);
902 int getpkt_or_notif_sane_1 (gdb::char_vector *buf, int forever,
6b8edb51 903 int expecting_notif, int *is_notif);
8d64371b
TT
904 int getpkt_sane (gdb::char_vector *buf, int forever);
905 int getpkt_or_notif_sane (gdb::char_vector *buf, int forever,
6b8edb51
PA
906 int *is_notif);
907 int remote_vkill (int pid);
908 void remote_kill_k ();
909
910 void extended_remote_disable_randomization (int val);
911 int extended_remote_run (const std::string &args);
912
913 void send_environment_packet (const char *action,
914 const char *packet,
915 const char *value);
916
917 void extended_remote_environment_support ();
3c69da40 918 void extended_remote_set_inferior_cwd ();
80152258 919
3c69da40
PA
920 target_xfer_status remote_write_qxfer (const char *object_name,
921 const char *annex,
922 const gdb_byte *writebuf,
923 ULONGEST offset, LONGEST len,
924 ULONGEST *xfered_len,
925 struct packet_config *packet);
43c3a0e4 926
3c69da40
PA
927 target_xfer_status remote_read_qxfer (const char *object_name,
928 const char *annex,
929 gdb_byte *readbuf, ULONGEST offset,
930 LONGEST len,
931 ULONGEST *xfered_len,
932 struct packet_config *packet);
43c3a0e4 933
3c69da40 934 void push_stop_reply (struct stop_reply *new_event);
43c3a0e4 935
3c69da40 936 bool vcont_r_supported ();
43c3a0e4 937
3c69da40 938 void packet_command (const char *args, int from_tty);
43c3a0e4 939
3c69da40 940private: /* data fields */
43c3a0e4 941
3c69da40
PA
942 /* The remote state. Don't reference this directly. Use the
943 get_remote_state method instead. */
944 remote_state m_remote_state;
43c3a0e4
PA
945};
946
3c69da40
PA
947static const target_info extended_remote_target_info = {
948 "extended-remote",
949 N_("Extended remote serial target in gdb-specific protocol"),
950 remote_doc
951};
ea9c271d 952
3c69da40
PA
953/* Set up the extended remote target by extending the standard remote
954 target and adding to it. */
955
956class extended_remote_target final : public remote_target
ea9c271d 957{
9d6eea31 958public:
3c69da40
PA
959 const target_info &info () const override
960 { return extended_remote_target_info; }
9d6eea31 961
3c69da40
PA
962 /* Open an extended-remote connection. */
963 static void open (const char *, int);
de44f5a7 964
3c69da40
PA
965 bool can_create_inferior () override { return true; }
966 void create_inferior (const char *, const std::string &,
967 char **, int) override;
9d6eea31 968
3c69da40 969 void detach (inferior *, int) override;
9d6eea31 970
3c69da40
PA
971 bool can_attach () override { return true; }
972 void attach (const char *, int) override;
be2a5f71 973
3c69da40
PA
974 void post_attach (int) override;
975 bool supports_disable_randomization () override;
976};
1e51243a 977
3c69da40
PA
978/* Per-program-space data key. */
979static const struct program_space_data *remote_pspace_data;
2d717e4f 980
3c69da40
PA
981/* The variable registered as the control variable used by the
982 remote exec-file commands. While the remote exec-file setting is
983 per-program-space, the set/show machinery uses this as the
984 location of the remote exec-file value. */
985static char *remote_exec_file_var;
a6f3e723 986
3c69da40
PA
987/* The size to align memory write packets, when practical. The protocol
988 does not guarantee any alignment, and gdb will generate short
989 writes and unaligned writes, but even as a best-effort attempt this
990 can improve bulk transfers. For instance, if a write is misaligned
991 relative to the target's data bus, the stub may need to make an extra
992 round trip fetching data from the target. This doesn't make a
993 huge difference, but it's easy to do, so we try to be helpful.
82f73884 994
3c69da40
PA
995 The alignment chosen is arbitrary; usually data bus width is
996 important here, not the possibly larger cache line size. */
997enum { REMOTE_ALIGN_WRITES = 16 };
82f73884 998
3c69da40 999/* Prototypes for local functions. */
74531fed 1000
3c69da40 1001static int hexnumlen (ULONGEST num);
782b2b07 1002
3c69da40 1003static int stubhex (int ch);
5d93a237 1004
3c69da40 1005static int hexnumstr (char *, ULONGEST);
048094ac 1006
3c69da40 1007static int hexnumnstr (char *, ULONGEST, int);
47f8a51d 1008
3c69da40 1009static CORE_ADDR remote_address_masked (CORE_ADDR);
262e1174 1010
3c69da40 1011static void print_packet (const char *);
747dc59d 1012
3c69da40 1013static int stub_unpack_int (char *buff, int fieldlength);
5e4a05c4 1014
3c69da40 1015struct packet_config;
b73be471 1016
3c69da40 1017static void show_packet_config_cmd (struct packet_config *config);
280ceea3 1018
3c69da40
PA
1019static void show_remote_protocol_packet_cmd (struct ui_file *file,
1020 int from_tty,
1021 struct cmd_list_element *c,
1022 const char *value);
8e88304f 1023
3c69da40 1024static ptid_t read_ptid (const char *buf, const char **obuf);
3a00c802 1025
3c69da40 1026static void remote_async_inferior_event_handler (gdb_client_data);
b80fafe3 1027
eefce37f 1028static bool remote_read_description_p (struct target_ops *target);
88b496c3 1029
05be00a8 1030static void remote_console_output (const char *msg);
5965e028 1031
3c69da40 1032static void remote_btrace_reset (remote_state *rs);
f4abbc16 1033
3c69da40 1034static void remote_unpush_and_throw (void);
15a201c8 1035
3c69da40 1036/* For "remote". */
80152258 1037
3c69da40 1038static struct cmd_list_element *remote_cmdlist;
9d6eea31 1039
3c69da40 1040/* For "set remote" and "show remote". */
6b8edb51 1041
3c69da40
PA
1042static struct cmd_list_element *remote_set_cmdlist;
1043static struct cmd_list_element *remote_show_cmdlist;
6b8edb51 1044
3c69da40 1045/* Controls whether GDB is willing to use range stepping. */
6b8edb51 1046
3c69da40
PA
1047static int use_range_stepping = 1;
1048
1049/* The max number of chars in debug output. The rest of chars are
1050 omitted. */
1051
1052#define REMOTE_DEBUG_MAX_CHAR 512
ea9c271d 1053
7aabaf9d
SM
1054/* Private data that we'll store in (struct thread_info)->priv. */
1055struct remote_thread_info : public private_thread_info
dc146f7c 1056{
7aabaf9d
SM
1057 std::string extra;
1058 std::string name;
1059 int core = -1;
799a2abe 1060
f6327dcb
KB
1061 /* Thread handle, perhaps a pthread_t or thread_t value, stored as a
1062 sequence of bytes. */
7aabaf9d 1063 gdb::byte_vector thread_handle;
f6327dcb 1064
799a2abe 1065 /* Whether the target stopped for a breakpoint/watchpoint. */
7aabaf9d 1066 enum target_stop_reason stop_reason = TARGET_STOPPED_BY_NO_REASON;
799a2abe
PA
1067
1068 /* This is set to the data address of the access causing the target
1069 to stop for a watchpoint. */
7aabaf9d 1070 CORE_ADDR watch_data_address = 0;
85ad3aaf
PA
1071
1072 /* Fields used by the vCont action coalescing implemented in
1073 remote_resume / remote_commit_resume. remote_resume stores each
1074 thread's last resume request in these fields, so that a later
1075 remote_commit_resume knows which is the proper action for this
1076 thread to include in the vCont packet. */
1077
1078 /* True if the last target_resume call for this thread was a step
1079 request, false if a continue request. */
7aabaf9d 1080 int last_resume_step = 0;
85ad3aaf
PA
1081
1082 /* The signal specified in the last target_resume call for this
1083 thread. */
7aabaf9d 1084 gdb_signal last_resume_sig = GDB_SIGNAL_0;
85ad3aaf
PA
1085
1086 /* Whether this thread was already vCont-resumed on the remote
1087 side. */
7aabaf9d 1088 int vcont_resumed = 0;
dc146f7c
VP
1089};
1090
de44f5a7 1091remote_state::remote_state ()
8d64371b 1092 : buf (400)
de44f5a7 1093{
de44f5a7
PA
1094}
1095
1096remote_state::~remote_state ()
1097{
1098 xfree (this->last_pass_packet);
1099 xfree (this->last_program_signals_packet);
de44f5a7
PA
1100 xfree (this->finished_object);
1101 xfree (this->finished_annex);
cf792862
TT
1102}
1103
35b1e5cc
SS
1104/* Utility: generate error from an incoming stub packet. */
1105static void
1106trace_error (char *buf)
1107{
1108 if (*buf++ != 'E')
1109 return; /* not an error msg */
1110 switch (*buf)
1111 {
1112 case '1': /* malformed packet error */
1113 if (*++buf == '0') /* general case: */
1114 error (_("remote.c: error in outgoing packet."));
1115 else
1116 error (_("remote.c: error in outgoing packet at field #%ld."),
1117 strtol (buf, NULL, 16));
35b1e5cc
SS
1118 default:
1119 error (_("Target returns error code '%s'."), buf);
1120 }
1121}
1122
1123/* Utility: wait for reply from stub, while accepting "O" packets. */
b6bb3468 1124
6b8edb51
PA
1125char *
1126remote_target::remote_get_noisy_reply ()
35b1e5cc 1127{
b6bb3468
PA
1128 struct remote_state *rs = get_remote_state ();
1129
35b1e5cc
SS
1130 do /* Loop on reply from remote stub. */
1131 {
1132 char *buf;
a744cf53 1133
0df8b418 1134 QUIT; /* Allow user to bail out with ^C. */
8d64371b
TT
1135 getpkt (&rs->buf, 0);
1136 buf = rs->buf.data ();
ad91cd99 1137 if (buf[0] == 'E')
35b1e5cc 1138 trace_error (buf);
61012eef 1139 else if (startswith (buf, "qRelocInsn:"))
dde08ee1
PA
1140 {
1141 ULONGEST ul;
1142 CORE_ADDR from, to, org_to;
256642e8 1143 const char *p, *pp;
dde08ee1 1144 int adjusted_size = 0;
7556d4a4 1145 int relocated = 0;
dde08ee1
PA
1146
1147 p = buf + strlen ("qRelocInsn:");
1148 pp = unpack_varlen_hex (p, &ul);
1149 if (*pp != ';')
cb91c06a 1150 error (_("invalid qRelocInsn packet: %s"), buf);
dde08ee1
PA
1151 from = ul;
1152
1153 p = pp + 1;
a9cbf802 1154 unpack_varlen_hex (p, &ul);
dde08ee1
PA
1155 to = ul;
1156
1157 org_to = to;
1158
492d29ea 1159 TRY
dde08ee1 1160 {
f5656ead 1161 gdbarch_relocate_instruction (target_gdbarch (), &to, from);
7556d4a4 1162 relocated = 1;
dde08ee1 1163 }
492d29ea 1164 CATCH (ex, RETURN_MASK_ALL)
7556d4a4
PA
1165 {
1166 if (ex.error == MEMORY_ERROR)
1167 {
1168 /* Propagate memory errors silently back to the
1169 target. The stub may have limited the range of
1170 addresses we can write to, for example. */
1171 }
1172 else
1173 {
1174 /* Something unexpectedly bad happened. Be verbose
1175 so we can tell what, and propagate the error back
1176 to the stub, so it doesn't get stuck waiting for
1177 a response. */
1178 exception_fprintf (gdb_stderr, ex,
1179 _("warning: relocating instruction: "));
1180 }
1181 putpkt ("E01");
1182 }
492d29ea 1183 END_CATCH
7556d4a4
PA
1184
1185 if (relocated)
dde08ee1
PA
1186 {
1187 adjusted_size = to - org_to;
1188
8d64371b 1189 xsnprintf (buf, rs->buf.size (), "qRelocInsn:%x", adjusted_size);
dde08ee1
PA
1190 putpkt (buf);
1191 }
dde08ee1 1192 }
ad91cd99 1193 else if (buf[0] == 'O' && buf[1] != 'K')
35b1e5cc
SS
1194 remote_console_output (buf + 1); /* 'O' message from stub */
1195 else
0df8b418 1196 return buf; /* Here's the actual reply. */
35b1e5cc
SS
1197 }
1198 while (1);
1199}
3c3bea1c 1200
9d6eea31
PA
1201struct remote_arch_state *
1202remote_state::get_remote_arch_state (struct gdbarch *gdbarch)
d01949b6 1203{
43c3a0e4
PA
1204 remote_arch_state *rsa;
1205
1206 auto it = this->m_arch_states.find (gdbarch);
1207 if (it == this->m_arch_states.end ())
9d6eea31 1208 {
43c3a0e4
PA
1209 auto p = this->m_arch_states.emplace (std::piecewise_construct,
1210 std::forward_as_tuple (gdbarch),
1211 std::forward_as_tuple (gdbarch));
1212 rsa = &p.first->second;
9d6eea31
PA
1213
1214 /* Make sure that the packet buffer is plenty big enough for
1215 this architecture. */
8d64371b
TT
1216 if (this->buf.size () < rsa->remote_packet_size)
1217 this->buf.resize (2 * rsa->remote_packet_size);
9d6eea31 1218 }
43c3a0e4
PA
1219 else
1220 rsa = &it->second;
1221
1222 return rsa;
d01949b6
AC
1223}
1224
0b83947e
DJ
1225/* Fetch the global remote target state. */
1226
6b8edb51
PA
1227remote_state *
1228remote_target::get_remote_state ()
0b83947e
DJ
1229{
1230 /* Make sure that the remote architecture state has been
1231 initialized, because doing so might reallocate rs->buf. Any
1232 function which calls getpkt also needs to be mindful of changes
1233 to rs->buf, but this call limits the number of places which run
1234 into trouble. */
3c69da40 1235 m_remote_state.get_remote_arch_state (target_gdbarch ());
0b83947e 1236
3c69da40 1237 return &m_remote_state;
0b83947e
DJ
1238}
1239
94585166
DB
1240/* Cleanup routine for the remote module's pspace data. */
1241
1242static void
1243remote_pspace_data_cleanup (struct program_space *pspace, void *arg)
1244{
19ba03f4 1245 char *remote_exec_file = (char *) arg;
94585166
DB
1246
1247 xfree (remote_exec_file);
1248}
1249
1250/* Fetch the remote exec-file from the current program space. */
1251
1252static const char *
1253get_remote_exec_file (void)
1254{
1255 char *remote_exec_file;
1256
19ba03f4
SM
1257 remote_exec_file
1258 = (char *) program_space_data (current_program_space,
1259 remote_pspace_data);
94585166
DB
1260 if (remote_exec_file == NULL)
1261 return "";
1262
1263 return remote_exec_file;
1264}
1265
1266/* Set the remote exec file for PSPACE. */
1267
1268static void
1269set_pspace_remote_exec_file (struct program_space *pspace,
1270 char *remote_exec_file)
1271{
19ba03f4 1272 char *old_file = (char *) program_space_data (pspace, remote_pspace_data);
94585166
DB
1273
1274 xfree (old_file);
1275 set_program_space_data (pspace, remote_pspace_data,
1276 xstrdup (remote_exec_file));
1277}
1278
1279/* The "set/show remote exec-file" set command hook. */
1280
1281static void
eb4c3f4a 1282set_remote_exec_file (const char *ignored, int from_tty,
94585166
DB
1283 struct cmd_list_element *c)
1284{
1285 gdb_assert (remote_exec_file_var != NULL);
1286 set_pspace_remote_exec_file (current_program_space, remote_exec_file_var);
1287}
1288
1289/* The "set/show remote exec-file" show command hook. */
1290
1291static void
1292show_remote_exec_file (struct ui_file *file, int from_tty,
1293 struct cmd_list_element *cmd, const char *value)
1294{
1295 fprintf_filtered (file, "%s\n", remote_exec_file_var);
1296}
1297
74ca34ce
DJ
1298static int
1299compare_pnums (const void *lhs_, const void *rhs_)
1300{
19ba03f4
SM
1301 const struct packet_reg * const *lhs
1302 = (const struct packet_reg * const *) lhs_;
1303 const struct packet_reg * const *rhs
1304 = (const struct packet_reg * const *) rhs_;
74ca34ce
DJ
1305
1306 if ((*lhs)->pnum < (*rhs)->pnum)
1307 return -1;
1308 else if ((*lhs)->pnum == (*rhs)->pnum)
1309 return 0;
1310 else
1311 return 1;
1312}
1313
c21236dc
PA
1314static int
1315map_regcache_remote_table (struct gdbarch *gdbarch, struct packet_reg *regs)
d01949b6 1316{
74ca34ce 1317 int regnum, num_remote_regs, offset;
74ca34ce 1318 struct packet_reg **remote_regs;
ea9c271d 1319
4a22f64d 1320 for (regnum = 0; regnum < gdbarch_num_regs (gdbarch); regnum++)
ad10f812 1321 {
c21236dc 1322 struct packet_reg *r = &regs[regnum];
baef701f 1323
4a22f64d 1324 if (register_size (gdbarch, regnum) == 0)
baef701f
DJ
1325 /* Do not try to fetch zero-sized (placeholder) registers. */
1326 r->pnum = -1;
1327 else
1328 r->pnum = gdbarch_remote_register_number (gdbarch, regnum);
1329
b323314b 1330 r->regnum = regnum;
74ca34ce
DJ
1331 }
1332
1333 /* Define the g/G packet format as the contents of each register
1334 with a remote protocol number, in order of ascending protocol
1335 number. */
1336
224c3ddb 1337 remote_regs = XALLOCAVEC (struct packet_reg *, gdbarch_num_regs (gdbarch));
f57d151a 1338 for (num_remote_regs = 0, regnum = 0;
4a22f64d 1339 regnum < gdbarch_num_regs (gdbarch);
f57d151a 1340 regnum++)
c21236dc
PA
1341 if (regs[regnum].pnum != -1)
1342 remote_regs[num_remote_regs++] = &regs[regnum];
7d58c67d 1343
74ca34ce
DJ
1344 qsort (remote_regs, num_remote_regs, sizeof (struct packet_reg *),
1345 compare_pnums);
1346
1347 for (regnum = 0, offset = 0; regnum < num_remote_regs; regnum++)
1348 {
1349 remote_regs[regnum]->in_g_packet = 1;
1350 remote_regs[regnum]->offset = offset;
4a22f64d 1351 offset += register_size (gdbarch, remote_regs[regnum]->regnum);
ad10f812
AC
1352 }
1353
c21236dc
PA
1354 return offset;
1355}
1356
1357/* Given the architecture described by GDBARCH, return the remote
1358 protocol register's number and the register's offset in the g/G
1359 packets of GDB register REGNUM, in PNUM and POFFSET respectively.
1360 If the target does not have a mapping for REGNUM, return false,
1361 otherwise, return true. */
1362
1363int
1364remote_register_number_and_offset (struct gdbarch *gdbarch, int regnum,
1365 int *pnum, int *poffset)
1366{
c21236dc
PA
1367 gdb_assert (regnum < gdbarch_num_regs (gdbarch));
1368
b80406ac 1369 std::vector<packet_reg> regs (gdbarch_num_regs (gdbarch));
c21236dc 1370
b80406ac 1371 map_regcache_remote_table (gdbarch, regs.data ());
c21236dc
PA
1372
1373 *pnum = regs[regnum].pnum;
1374 *poffset = regs[regnum].offset;
1375
c21236dc
PA
1376 return *pnum != -1;
1377}
1378
9d6eea31 1379remote_arch_state::remote_arch_state (struct gdbarch *gdbarch)
c21236dc 1380{
c21236dc
PA
1381 /* Use the architecture to build a regnum<->pnum table, which will be
1382 1:1 unless a feature set specifies otherwise. */
9d6eea31 1383 this->regs.reset (new packet_reg [gdbarch_num_regs (gdbarch)] ());
c21236dc 1384
74ca34ce
DJ
1385 /* Record the maximum possible size of the g packet - it may turn out
1386 to be smaller. */
9d6eea31
PA
1387 this->sizeof_g_packet
1388 = map_regcache_remote_table (gdbarch, this->regs.get ());
74ca34ce 1389
0df8b418 1390 /* Default maximum number of characters in a packet body. Many
d01949b6
AC
1391 remote stubs have a hardwired buffer size of 400 bytes
1392 (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
1393 as the maximum packet-size to ensure that the packet and an extra
1394 NUL character can always fit in the buffer. This stops GDB
1395 trashing stubs that try to squeeze an extra NUL into what is
ea9c271d 1396 already a full buffer (As of 1999-12-04 that was most stubs). */
9d6eea31 1397 this->remote_packet_size = 400 - 1;
d01949b6 1398
ea9c271d 1399 /* This one is filled in when a ``g'' packet is received. */
9d6eea31 1400 this->actual_register_packet_size = 0;
ea9c271d
DJ
1401
1402 /* Should rsa->sizeof_g_packet needs more space than the
0df8b418
MS
1403 default, adjust the size accordingly. Remember that each byte is
1404 encoded as two characters. 32 is the overhead for the packet
1405 header / footer. NOTE: cagney/1999-10-26: I suspect that 8
d01949b6 1406 (``$NN:G...#NN'') is a better guess, the below has been padded a
23860348 1407 little. */
9d6eea31
PA
1408 if (this->sizeof_g_packet > ((this->remote_packet_size - 32) / 2))
1409 this->remote_packet_size = (this->sizeof_g_packet * 2 + 32);
ea9c271d
DJ
1410}
1411
6b8edb51
PA
1412/* Get a pointer to the current remote target. If not connected to a
1413 remote target, return NULL. */
1414
1415static remote_target *
1416get_current_remote_target ()
1417{
1418 target_ops *proc_target = find_target_at (process_stratum);
1419 return dynamic_cast<remote_target *> (proc_target);
1420}
1421
ea9c271d
DJ
1422/* Return the current allowed size of a remote packet. This is
1423 inferred from the current architecture, and should be used to
1424 limit the length of outgoing packets. */
6b8edb51
PA
1425long
1426remote_target::get_remote_packet_size ()
ea9c271d 1427{
be2a5f71 1428 struct remote_state *rs = get_remote_state ();
9d6eea31 1429 remote_arch_state *rsa = rs->get_remote_arch_state (target_gdbarch ());
ea9c271d 1430
be2a5f71
DJ
1431 if (rs->explicit_packet_size)
1432 return rs->explicit_packet_size;
1433
ea9c271d 1434 return rsa->remote_packet_size;
d01949b6
AC
1435}
1436
ad10f812 1437static struct packet_reg *
5cd63fda
PA
1438packet_reg_from_regnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
1439 long regnum)
ad10f812 1440{
5cd63fda 1441 if (regnum < 0 && regnum >= gdbarch_num_regs (gdbarch))
b323314b
AC
1442 return NULL;
1443 else
ad10f812 1444 {
ea9c271d 1445 struct packet_reg *r = &rsa->regs[regnum];
a744cf53 1446
b323314b
AC
1447 gdb_assert (r->regnum == regnum);
1448 return r;
ad10f812 1449 }
ad10f812
AC
1450}
1451
1452static struct packet_reg *
5cd63fda
PA
1453packet_reg_from_pnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
1454 LONGEST pnum)
ad10f812 1455{
b323314b 1456 int i;
a744cf53 1457
5cd63fda 1458 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
ad10f812 1459 {
ea9c271d 1460 struct packet_reg *r = &rsa->regs[i];
a744cf53 1461
b323314b
AC
1462 if (r->pnum == pnum)
1463 return r;
ad10f812
AC
1464 }
1465 return NULL;
d01949b6
AC
1466}
1467
9a7071a8
JB
1468/* Allow the user to specify what sequence to send to the remote
1469 when he requests a program interruption: Although ^C is usually
1470 what remote systems expect (this is the default, here), it is
1471 sometimes preferable to send a break. On other systems such
1472 as the Linux kernel, a break followed by g, which is Magic SysRq g
1473 is required in order to interrupt the execution. */
1474const char interrupt_sequence_control_c[] = "Ctrl-C";
1475const char interrupt_sequence_break[] = "BREAK";
1476const char interrupt_sequence_break_g[] = "BREAK-g";
40478521 1477static const char *const interrupt_sequence_modes[] =
9a7071a8
JB
1478 {
1479 interrupt_sequence_control_c,
1480 interrupt_sequence_break,
1481 interrupt_sequence_break_g,
1482 NULL
1483 };
1484static const char *interrupt_sequence_mode = interrupt_sequence_control_c;
1485
1486static void
1487show_interrupt_sequence (struct ui_file *file, int from_tty,
1488 struct cmd_list_element *c,
1489 const char *value)
1490{
1491 if (interrupt_sequence_mode == interrupt_sequence_control_c)
1492 fprintf_filtered (file,
1493 _("Send the ASCII ETX character (Ctrl-c) "
1494 "to the remote target to interrupt the "
1495 "execution of the program.\n"));
1496 else if (interrupt_sequence_mode == interrupt_sequence_break)
1497 fprintf_filtered (file,
1498 _("send a break signal to the remote target "
1499 "to interrupt the execution of the program.\n"));
1500 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
1501 fprintf_filtered (file,
1502 _("Send a break signal and 'g' a.k.a. Magic SysRq g to "
1503 "the remote target to interrupt the execution "
1504 "of Linux kernel.\n"));
1505 else
1506 internal_error (__FILE__, __LINE__,
1507 _("Invalid value for interrupt_sequence_mode: %s."),
1508 interrupt_sequence_mode);
1509}
6426a772 1510
9a7071a8
JB
1511/* This boolean variable specifies whether interrupt_sequence is sent
1512 to the remote target when gdb connects to it.
1513 This is mostly needed when you debug the Linux kernel: The Linux kernel
1514 expects BREAK g which is Magic SysRq g for connecting gdb. */
1515static int interrupt_on_connect = 0;
c906108c 1516
9a7071a8
JB
1517/* This variable is used to implement the "set/show remotebreak" commands.
1518 Since these commands are now deprecated in favor of "set/show remote
1519 interrupt-sequence", it no longer has any effect on the code. */
c906108c
SS
1520static int remote_break;
1521
9a7071a8 1522static void
eb4c3f4a 1523set_remotebreak (const char *args, int from_tty, struct cmd_list_element *c)
9a7071a8
JB
1524{
1525 if (remote_break)
1526 interrupt_sequence_mode = interrupt_sequence_break;
1527 else
1528 interrupt_sequence_mode = interrupt_sequence_control_c;
1529}
1530
1531static void
1532show_remotebreak (struct ui_file *file, int from_tty,
1533 struct cmd_list_element *c,
1534 const char *value)
1535{
1536}
1537
c906108c
SS
1538/* This variable sets the number of bits in an address that are to be
1539 sent in a memory ("M" or "m") packet. Normally, after stripping
0df8b418 1540 leading zeros, the entire address would be sent. This variable
c906108c
SS
1541 restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
1542 initial implementation of remote.c restricted the address sent in
1543 memory packets to ``host::sizeof long'' bytes - (typically 32
1544 bits). Consequently, for 64 bit targets, the upper 32 bits of an
1545 address was never sent. Since fixing this bug may cause a break in
1546 some remote targets this variable is principly provided to
23860348 1547 facilitate backward compatibility. */
c906108c 1548
883b9c6c 1549static unsigned int remote_address_size;
c906108c 1550
11cf8741 1551\f
11cf8741 1552/* User configurable variables for the number of characters in a
ea9c271d
DJ
1553 memory read/write packet. MIN (rsa->remote_packet_size,
1554 rsa->sizeof_g_packet) is the default. Some targets need smaller
24b06219 1555 values (fifo overruns, et.al.) and some users need larger values
ad10f812
AC
1556 (speed up transfers). The variables ``preferred_*'' (the user
1557 request), ``current_*'' (what was actually set) and ``forced_*''
23860348 1558 (Positive - a soft limit, negative - a hard limit). */
11cf8741
JM
1559
1560struct memory_packet_config
1561{
a121b7c1 1562 const char *name;
11cf8741
JM
1563 long size;
1564 int fixed_p;
1565};
1566
cc0be08f
PA
1567/* The default max memory-write-packet-size, when the setting is
1568 "fixed". The 16k is historical. (It came from older GDB's using
1569 alloca for buffers and the knowledge (folklore?) that some hosts
1570 don't cope very well with large alloca calls.) */
1571#define DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED 16384
a5c0808e
PA
1572
1573/* The minimum remote packet size for memory transfers. Ensures we
1574 can write at least one byte. */
1575#define MIN_MEMORY_PACKET_SIZE 20
1576
cc0be08f
PA
1577/* Get the memory packet size, assuming it is fixed. */
1578
1579static long
1580get_fixed_memory_packet_size (struct memory_packet_config *config)
1581{
1582 gdb_assert (config->fixed_p);
1583
1584 if (config->size <= 0)
1585 return DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED;
1586 else
1587 return config->size;
1588}
1589
11cf8741
JM
1590/* Compute the current size of a read/write packet. Since this makes
1591 use of ``actual_register_packet_size'' the computation is dynamic. */
1592
6b8edb51
PA
1593long
1594remote_target::get_memory_packet_size (struct memory_packet_config *config)
11cf8741 1595{
d01949b6 1596 struct remote_state *rs = get_remote_state ();
9d6eea31 1597 remote_arch_state *rsa = rs->get_remote_arch_state (target_gdbarch ());
ea9c271d 1598
11cf8741
JM
1599 long what_they_get;
1600 if (config->fixed_p)
cc0be08f 1601 what_they_get = get_fixed_memory_packet_size (config);
11cf8741
JM
1602 else
1603 {
ea9c271d 1604 what_they_get = get_remote_packet_size ();
23860348 1605 /* Limit the packet to the size specified by the user. */
11cf8741
JM
1606 if (config->size > 0
1607 && what_they_get > config->size)
1608 what_they_get = config->size;
be2a5f71
DJ
1609
1610 /* Limit it to the size of the targets ``g'' response unless we have
1611 permission from the stub to use a larger packet size. */
1612 if (rs->explicit_packet_size == 0
1613 && rsa->actual_register_packet_size > 0
1614 && what_they_get > rsa->actual_register_packet_size)
1615 what_they_get = rsa->actual_register_packet_size;
11cf8741 1616 }
a5c0808e
PA
1617 if (what_they_get < MIN_MEMORY_PACKET_SIZE)
1618 what_they_get = MIN_MEMORY_PACKET_SIZE;
6d820c5c
DJ
1619
1620 /* Make sure there is room in the global buffer for this packet
1621 (including its trailing NUL byte). */
8d64371b
TT
1622 if (rs->buf.size () < what_they_get + 1)
1623 rs->buf.resize (2 * what_they_get);
6d820c5c 1624
11cf8741
JM
1625 return what_they_get;
1626}
1627
0df8b418 1628/* Update the size of a read/write packet. If they user wants
23860348 1629 something really big then do a sanity check. */
11cf8741
JM
1630
1631static void
ac88e2de 1632set_memory_packet_size (const char *args, struct memory_packet_config *config)
11cf8741
JM
1633{
1634 int fixed_p = config->fixed_p;
1635 long size = config->size;
a744cf53 1636
11cf8741 1637 if (args == NULL)
8a3fe4f8 1638 error (_("Argument required (integer, `fixed' or `limited')."));
11cf8741
JM
1639 else if (strcmp (args, "hard") == 0
1640 || strcmp (args, "fixed") == 0)
1641 fixed_p = 1;
1642 else if (strcmp (args, "soft") == 0
1643 || strcmp (args, "limit") == 0)
1644 fixed_p = 0;
1645 else
1646 {
1647 char *end;
a744cf53 1648
11cf8741
JM
1649 size = strtoul (args, &end, 0);
1650 if (args == end)
8a3fe4f8 1651 error (_("Invalid %s (bad syntax)."), config->name);
a5c0808e
PA
1652
1653 /* Instead of explicitly capping the size of a packet to or
1654 disallowing it, the user is allowed to set the size to
1655 something arbitrarily large. */
11cf8741 1656 }
a5c0808e 1657
23860348 1658 /* Extra checks? */
11cf8741
JM
1659 if (fixed_p && !config->fixed_p)
1660 {
cc0be08f
PA
1661 /* So that the query shows the correct value. */
1662 long query_size = (size <= 0
1663 ? DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED
1664 : size);
1665
e2e0b3e5
AC
1666 if (! query (_("The target may not be able to correctly handle a %s\n"
1667 "of %ld bytes. Change the packet size? "),
cc0be08f 1668 config->name, query_size))
8a3fe4f8 1669 error (_("Packet size not changed."));
11cf8741 1670 }
23860348 1671 /* Update the config. */
11cf8741
JM
1672 config->fixed_p = fixed_p;
1673 config->size = size;
1674}
1675
1676static void
1677show_memory_packet_size (struct memory_packet_config *config)
1678{
cc0be08f
PA
1679 if (config->size == 0)
1680 printf_filtered (_("The %s is 0 (default). "), config->name);
1681 else
1682 printf_filtered (_("The %s is %ld. "), config->name, config->size);
11cf8741 1683 if (config->fixed_p)
a3f17187 1684 printf_filtered (_("Packets are fixed at %ld bytes.\n"),
cc0be08f 1685 get_fixed_memory_packet_size (config));
11cf8741 1686 else
cc0be08f 1687 {
6b8edb51 1688 remote_target *remote = get_current_remote_target ();
cc0be08f 1689
6b8edb51 1690 if (remote != NULL)
cc0be08f 1691 printf_filtered (_("Packets are limited to %ld bytes.\n"),
6b8edb51 1692 remote->get_memory_packet_size (config));
cc0be08f
PA
1693 else
1694 puts_filtered ("The actual limit will be further reduced "
1695 "dependent on the target.\n");
1696 }
11cf8741
JM
1697}
1698
1699static struct memory_packet_config memory_write_packet_config =
1700{
1701 "memory-write-packet-size",
1702};
1703
1704static void
ac88e2de 1705set_memory_write_packet_size (const char *args, int from_tty)
11cf8741
JM
1706{
1707 set_memory_packet_size (args, &memory_write_packet_config);
1708}
1709
1710static void
ac88e2de 1711show_memory_write_packet_size (const char *args, int from_tty)
11cf8741
JM
1712{
1713 show_memory_packet_size (&memory_write_packet_config);
1714}
1715
055303e2
AB
1716/* Show the number of hardware watchpoints that can be used. */
1717
1718static void
1719show_hardware_watchpoint_limit (struct ui_file *file, int from_tty,
1720 struct cmd_list_element *c,
1721 const char *value)
1722{
1723 fprintf_filtered (file, _("The maximum number of target hardware "
1724 "watchpoints is %s.\n"), value);
1725}
1726
1727/* Show the length limit (in bytes) for hardware watchpoints. */
1728
1729static void
1730show_hardware_watchpoint_length_limit (struct ui_file *file, int from_tty,
1731 struct cmd_list_element *c,
1732 const char *value)
1733{
1734 fprintf_filtered (file, _("The maximum length (in bytes) of a target "
1735 "hardware watchpoint is %s.\n"), value);
1736}
1737
1738/* Show the number of hardware breakpoints that can be used. */
1739
1740static void
1741show_hardware_breakpoint_limit (struct ui_file *file, int from_tty,
1742 struct cmd_list_element *c,
1743 const char *value)
1744{
1745 fprintf_filtered (file, _("The maximum number of target hardware "
1746 "breakpoints is %s.\n"), value);
1747}
1748
6b8edb51
PA
1749long
1750remote_target::get_memory_write_packet_size ()
11cf8741
JM
1751{
1752 return get_memory_packet_size (&memory_write_packet_config);
1753}
1754
1755static struct memory_packet_config memory_read_packet_config =
1756{
1757 "memory-read-packet-size",
1758};
1759
1760static void
ac88e2de 1761set_memory_read_packet_size (const char *args, int from_tty)
11cf8741
JM
1762{
1763 set_memory_packet_size (args, &memory_read_packet_config);
1764}
1765
1766static void
ac88e2de 1767show_memory_read_packet_size (const char *args, int from_tty)
11cf8741
JM
1768{
1769 show_memory_packet_size (&memory_read_packet_config);
1770}
1771
6b8edb51
PA
1772long
1773remote_target::get_memory_read_packet_size ()
11cf8741
JM
1774{
1775 long size = get_memory_packet_size (&memory_read_packet_config);
a744cf53 1776
11cf8741
JM
1777 /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
1778 extra buffer size argument before the memory read size can be
ea9c271d
DJ
1779 increased beyond this. */
1780 if (size > get_remote_packet_size ())
1781 size = get_remote_packet_size ();
11cf8741
JM
1782 return size;
1783}
1784
11cf8741 1785\f
5a2468f5 1786
5a2468f5
JM
1787struct packet_config
1788 {
bb572ddd
DJ
1789 const char *name;
1790 const char *title;
4082afcc
PA
1791
1792 /* If auto, GDB auto-detects support for this packet or feature,
1793 either through qSupported, or by trying the packet and looking
1794 at the response. If true, GDB assumes the target supports this
ca4f7f8b
PA
1795 packet. If false, the packet is disabled. Configs that don't
1796 have an associated command always have this set to auto. */
7f19b9a2 1797 enum auto_boolean detect;
4082afcc
PA
1798
1799 /* Does the target support this packet? */
5a2468f5
JM
1800 enum packet_support support;
1801 };
1802
4082afcc
PA
1803static enum packet_support packet_config_support (struct packet_config *config);
1804static enum packet_support packet_support (int packet);
5a2468f5
JM
1805
1806static void
fba45db2 1807show_packet_config_cmd (struct packet_config *config)
5a2468f5 1808{
a121b7c1 1809 const char *support = "internal-error";
a744cf53 1810
4082afcc 1811 switch (packet_config_support (config))
5a2468f5
JM
1812 {
1813 case PACKET_ENABLE:
1814 support = "enabled";
1815 break;
1816 case PACKET_DISABLE:
1817 support = "disabled";
1818 break;
1819 case PACKET_SUPPORT_UNKNOWN:
1820 support = "unknown";
1821 break;
1822 }
1823 switch (config->detect)
1824 {
7f19b9a2 1825 case AUTO_BOOLEAN_AUTO:
3e43a32a
MS
1826 printf_filtered (_("Support for the `%s' packet "
1827 "is auto-detected, currently %s.\n"),
37a105a1 1828 config->name, support);
5a2468f5 1829 break;
7f19b9a2
AC
1830 case AUTO_BOOLEAN_TRUE:
1831 case AUTO_BOOLEAN_FALSE:
37a105a1
DJ
1832 printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
1833 config->name, support);
8e248173 1834 break;
5a2468f5
JM
1835 }
1836}
1837
1838static void
bb572ddd
DJ
1839add_packet_config_cmd (struct packet_config *config, const char *name,
1840 const char *title, int legacy)
d471ea57 1841{
5a2468f5
JM
1842 char *set_doc;
1843 char *show_doc;
d471ea57 1844 char *cmd_name;
3ed07be4 1845
5a2468f5
JM
1846 config->name = name;
1847 config->title = title;
b435e160
AC
1848 set_doc = xstrprintf ("Set use of remote protocol `%s' (%s) packet",
1849 name, title);
3e43a32a
MS
1850 show_doc = xstrprintf ("Show current use of remote "
1851 "protocol `%s' (%s) packet",
b435e160 1852 name, title);
d471ea57 1853 /* set/show TITLE-packet {auto,on,off} */
b435e160 1854 cmd_name = xstrprintf ("%s-packet", title);
e9e68a56 1855 add_setshow_auto_boolean_cmd (cmd_name, class_obscure,
3e43a32a
MS
1856 &config->detect, set_doc,
1857 show_doc, NULL, /* help_doc */
4082afcc 1858 NULL,
bb572ddd
DJ
1859 show_remote_protocol_packet_cmd,
1860 &remote_set_cmdlist, &remote_show_cmdlist);
1eefb858
TT
1861 /* The command code copies the documentation strings. */
1862 xfree (set_doc);
1863 xfree (show_doc);
23860348 1864 /* set/show remote NAME-packet {auto,on,off} -- legacy. */
d471ea57
AC
1865 if (legacy)
1866 {
1867 char *legacy_name;
a744cf53 1868
b435e160 1869 legacy_name = xstrprintf ("%s-packet", name);
d471ea57 1870 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
bb572ddd 1871 &remote_set_cmdlist);
d471ea57 1872 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
bb572ddd 1873 &remote_show_cmdlist);
d471ea57 1874 }
5a2468f5
JM
1875}
1876
d471ea57 1877static enum packet_result
a76d924d 1878packet_check_result (const char *buf)
5a2468f5 1879{
d471ea57 1880 if (buf[0] != '\0')
5a2468f5 1881 {
d471ea57 1882 /* The stub recognized the packet request. Check that the
23860348 1883 operation succeeded. */
a76d924d
DJ
1884 if (buf[0] == 'E'
1885 && isxdigit (buf[1]) && isxdigit (buf[2])
1886 && buf[3] == '\0')
1887 /* "Enn" - definitly an error. */
1888 return PACKET_ERROR;
1889
1890 /* Always treat "E." as an error. This will be used for
1891 more verbose error messages, such as E.memtypes. */
1892 if (buf[0] == 'E' && buf[1] == '.')
1893 return PACKET_ERROR;
1894
1895 /* The packet may or may not be OK. Just assume it is. */
1896 return PACKET_OK;
1897 }
1898 else
1899 /* The stub does not support the packet. */
1900 return PACKET_UNKNOWN;
1901}
1902
8d64371b
TT
1903static enum packet_result
1904packet_check_result (const gdb::char_vector &buf)
1905{
1906 return packet_check_result (buf.data ());
1907}
1908
a76d924d
DJ
1909static enum packet_result
1910packet_ok (const char *buf, struct packet_config *config)
1911{
1912 enum packet_result result;
1913
4082afcc
PA
1914 if (config->detect != AUTO_BOOLEAN_TRUE
1915 && config->support == PACKET_DISABLE)
1916 internal_error (__FILE__, __LINE__,
1917 _("packet_ok: attempt to use a disabled packet"));
1918
a76d924d
DJ
1919 result = packet_check_result (buf);
1920 switch (result)
1921 {
1922 case PACKET_OK:
1923 case PACKET_ERROR:
1924 /* The stub recognized the packet request. */
4082afcc 1925 if (config->support == PACKET_SUPPORT_UNKNOWN)
d471ea57 1926 {
d471ea57
AC
1927 if (remote_debug)
1928 fprintf_unfiltered (gdb_stdlog,
4082afcc
PA
1929 "Packet %s (%s) is supported\n",
1930 config->name, config->title);
d471ea57 1931 config->support = PACKET_ENABLE;
d471ea57 1932 }
a76d924d
DJ
1933 break;
1934 case PACKET_UNKNOWN:
23860348 1935 /* The stub does not support the packet. */
4082afcc
PA
1936 if (config->detect == AUTO_BOOLEAN_AUTO
1937 && config->support == PACKET_ENABLE)
d471ea57 1938 {
4082afcc
PA
1939 /* If the stub previously indicated that the packet was
1940 supported then there is a protocol error. */
1941 error (_("Protocol error: %s (%s) conflicting enabled responses."),
1942 config->name, config->title);
1943 }
1944 else if (config->detect == AUTO_BOOLEAN_TRUE)
1945 {
1946 /* The user set it wrong. */
1947 error (_("Enabled packet %s (%s) not recognized by stub"),
1948 config->name, config->title);
d471ea57 1949 }
4082afcc
PA
1950
1951 if (remote_debug)
1952 fprintf_unfiltered (gdb_stdlog,
1953 "Packet %s (%s) is NOT supported\n",
1954 config->name, config->title);
1955 config->support = PACKET_DISABLE;
a76d924d 1956 break;
5a2468f5 1957 }
a76d924d
DJ
1958
1959 return result;
5a2468f5
JM
1960}
1961
8d64371b
TT
1962static enum packet_result
1963packet_ok (const gdb::char_vector &buf, struct packet_config *config)
1964{
1965 return packet_ok (buf.data (), config);
1966}
1967
444abaca
DJ
1968enum {
1969 PACKET_vCont = 0,
1970 PACKET_X,
1971 PACKET_qSymbol,
1972 PACKET_P,
1973 PACKET_p,
1974 PACKET_Z0,
1975 PACKET_Z1,
1976 PACKET_Z2,
1977 PACKET_Z3,
1978 PACKET_Z4,
15a201c8 1979 PACKET_vFile_setfs,
a6b151f1
DJ
1980 PACKET_vFile_open,
1981 PACKET_vFile_pread,
1982 PACKET_vFile_pwrite,
1983 PACKET_vFile_close,
1984 PACKET_vFile_unlink,
b9e7b9c3 1985 PACKET_vFile_readlink,
0a93529c 1986 PACKET_vFile_fstat,
0876f84a 1987 PACKET_qXfer_auxv,
23181151 1988 PACKET_qXfer_features,
c78fa86a 1989 PACKET_qXfer_exec_file,
cfa9d6d9 1990 PACKET_qXfer_libraries,
2268b414 1991 PACKET_qXfer_libraries_svr4,
fd79ecee 1992 PACKET_qXfer_memory_map,
0e7f50da
UW
1993 PACKET_qXfer_spu_read,
1994 PACKET_qXfer_spu_write,
07e059b5 1995 PACKET_qXfer_osdata,
dc146f7c 1996 PACKET_qXfer_threads,
0fb4aa4b 1997 PACKET_qXfer_statictrace_read,
b3b9301e 1998 PACKET_qXfer_traceframe_info,
169081d0 1999 PACKET_qXfer_uib,
711e434b 2000 PACKET_qGetTIBAddr,
444abaca 2001 PACKET_qGetTLSAddr,
be2a5f71 2002 PACKET_qSupported,
bd3eecc3 2003 PACKET_qTStatus,
89be2091 2004 PACKET_QPassSignals,
82075af2 2005 PACKET_QCatchSyscalls,
9b224c5e 2006 PACKET_QProgramSignals,
bc3b087d 2007 PACKET_QSetWorkingDir,
aefd8b33 2008 PACKET_QStartupWithShell,
0a2dde4a
SDJ
2009 PACKET_QEnvironmentHexEncoded,
2010 PACKET_QEnvironmentReset,
2011 PACKET_QEnvironmentUnset,
936d2992 2012 PACKET_qCRC,
08388c79 2013 PACKET_qSearch_memory,
2d717e4f
DJ
2014 PACKET_vAttach,
2015 PACKET_vRun,
a6f3e723 2016 PACKET_QStartNoAckMode,
82f73884 2017 PACKET_vKill,
4aa995e1
PA
2018 PACKET_qXfer_siginfo_read,
2019 PACKET_qXfer_siginfo_write,
0b16c5cf 2020 PACKET_qAttached,
4082afcc
PA
2021
2022 /* Support for conditional tracepoints. */
782b2b07 2023 PACKET_ConditionalTracepoints,
4082afcc
PA
2024
2025 /* Support for target-side breakpoint conditions. */
3788aec7 2026 PACKET_ConditionalBreakpoints,
4082afcc
PA
2027
2028 /* Support for target-side breakpoint commands. */
d3ce09f5 2029 PACKET_BreakpointCommands,
4082afcc
PA
2030
2031 /* Support for fast tracepoints. */
7a697b8d 2032 PACKET_FastTracepoints,
4082afcc
PA
2033
2034 /* Support for static tracepoints. */
0fb4aa4b 2035 PACKET_StaticTracepoints,
4082afcc
PA
2036
2037 /* Support for installing tracepoints while a trace experiment is
2038 running. */
1e4d1764 2039 PACKET_InstallInTrace,
4082afcc 2040
40ab02ce
MS
2041 PACKET_bc,
2042 PACKET_bs,
409873ef 2043 PACKET_TracepointSource,
d914c394 2044 PACKET_QAllow,
78d85199 2045 PACKET_qXfer_fdpic,
03583c20 2046 PACKET_QDisableRandomization,
d1feda86 2047 PACKET_QAgent,
f6f899bf 2048 PACKET_QTBuffer_size,
9accd112
MM
2049 PACKET_Qbtrace_off,
2050 PACKET_Qbtrace_bts,
b20a6524 2051 PACKET_Qbtrace_pt,
9accd112 2052 PACKET_qXfer_btrace,
4082afcc
PA
2053
2054 /* Support for the QNonStop packet. */
2055 PACKET_QNonStop,
2056
65706a29
PA
2057 /* Support for the QThreadEvents packet. */
2058 PACKET_QThreadEvents,
2059
4082afcc
PA
2060 /* Support for multi-process extensions. */
2061 PACKET_multiprocess_feature,
2062
2063 /* Support for enabling and disabling tracepoints while a trace
2064 experiment is running. */
2065 PACKET_EnableDisableTracepoints_feature,
2066
2067 /* Support for collecting strings using the tracenz bytecode. */
2068 PACKET_tracenz_feature,
2069
2070 /* Support for continuing to run a trace experiment while GDB is
2071 disconnected. */
2072 PACKET_DisconnectedTracing_feature,
2073
2074 /* Support for qXfer:libraries-svr4:read with a non-empty annex. */
2075 PACKET_augmented_libraries_svr4_read_feature,
2076
f4abbc16
MM
2077 /* Support for the qXfer:btrace-conf:read packet. */
2078 PACKET_qXfer_btrace_conf,
2079
d33501a5
MM
2080 /* Support for the Qbtrace-conf:bts:size packet. */
2081 PACKET_Qbtrace_conf_bts_size,
2082
f7e6eed5
PA
2083 /* Support for swbreak+ feature. */
2084 PACKET_swbreak_feature,
2085
2086 /* Support for hwbreak+ feature. */
2087 PACKET_hwbreak_feature,
2088
89245bc0
DB
2089 /* Support for fork events. */
2090 PACKET_fork_event_feature,
2091
2092 /* Support for vfork events. */
2093 PACKET_vfork_event_feature,
2094
b20a6524
MM
2095 /* Support for the Qbtrace-conf:pt:size packet. */
2096 PACKET_Qbtrace_conf_pt_size,
2097
94585166
DB
2098 /* Support for exec events. */
2099 PACKET_exec_event_feature,
2100
750ce8d1
YQ
2101 /* Support for query supported vCont actions. */
2102 PACKET_vContSupported,
2103
de979965
PA
2104 /* Support remote CTRL-C. */
2105 PACKET_vCtrlC,
2106
f2faf941
PA
2107 /* Support TARGET_WAITKIND_NO_RESUMED. */
2108 PACKET_no_resumed,
2109
444abaca
DJ
2110 PACKET_MAX
2111};
506fb367 2112
444abaca 2113static struct packet_config remote_protocol_packets[PACKET_MAX];
dc8acb97 2114
f7e6eed5
PA
2115/* Returns the packet's corresponding "set remote foo-packet" command
2116 state. See struct packet_config for more details. */
2117
2118static enum auto_boolean
2119packet_set_cmd_state (int packet)
2120{
2121 return remote_protocol_packets[packet].detect;
2122}
2123
4082afcc
PA
2124/* Returns whether a given packet or feature is supported. This takes
2125 into account the state of the corresponding "set remote foo-packet"
2126 command, which may be used to bypass auto-detection. */
dc8acb97 2127
4082afcc
PA
2128static enum packet_support
2129packet_config_support (struct packet_config *config)
2130{
2131 switch (config->detect)
444abaca 2132 {
4082afcc
PA
2133 case AUTO_BOOLEAN_TRUE:
2134 return PACKET_ENABLE;
2135 case AUTO_BOOLEAN_FALSE:
2136 return PACKET_DISABLE;
2137 case AUTO_BOOLEAN_AUTO:
2138 return config->support;
2139 default:
2140 gdb_assert_not_reached (_("bad switch"));
444abaca 2141 }
4082afcc
PA
2142}
2143
2144/* Same as packet_config_support, but takes the packet's enum value as
2145 argument. */
2146
2147static enum packet_support
2148packet_support (int packet)
2149{
2150 struct packet_config *config = &remote_protocol_packets[packet];
2151
2152 return packet_config_support (config);
dc8acb97
MS
2153}
2154
5a2468f5 2155static void
444abaca
DJ
2156show_remote_protocol_packet_cmd (struct ui_file *file, int from_tty,
2157 struct cmd_list_element *c,
2158 const char *value)
5a2468f5 2159{
444abaca 2160 struct packet_config *packet;
5a2468f5 2161
444abaca
DJ
2162 for (packet = remote_protocol_packets;
2163 packet < &remote_protocol_packets[PACKET_MAX];
2164 packet++)
2165 {
2166 if (&packet->detect == c->var)
2167 {
2168 show_packet_config_cmd (packet);
2169 return;
2170 }
2171 }
9b20d036 2172 internal_error (__FILE__, __LINE__, _("Could not find config for %s"),
444abaca 2173 c->name);
5a2468f5
JM
2174}
2175
d471ea57
AC
2176/* Should we try one of the 'Z' requests? */
2177
2178enum Z_packet_type
2179{
2180 Z_PACKET_SOFTWARE_BP,
2181 Z_PACKET_HARDWARE_BP,
2182 Z_PACKET_WRITE_WP,
2183 Z_PACKET_READ_WP,
2184 Z_PACKET_ACCESS_WP,
2185 NR_Z_PACKET_TYPES
2186};
96baa820 2187
d471ea57 2188/* For compatibility with older distributions. Provide a ``set remote
23860348 2189 Z-packet ...'' command that updates all the Z packet types. */
d471ea57 2190
7f19b9a2 2191static enum auto_boolean remote_Z_packet_detect;
96baa820
JM
2192
2193static void
eb4c3f4a 2194set_remote_protocol_Z_packet_cmd (const char *args, int from_tty,
fba45db2 2195 struct cmd_list_element *c)
96baa820 2196{
d471ea57 2197 int i;
a744cf53 2198
d471ea57 2199 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
4082afcc 2200 remote_protocol_packets[PACKET_Z0 + i].detect = remote_Z_packet_detect;
96baa820
JM
2201}
2202
2203static void
08546159
AC
2204show_remote_protocol_Z_packet_cmd (struct ui_file *file, int from_tty,
2205 struct cmd_list_element *c,
2206 const char *value)
96baa820 2207{
d471ea57 2208 int i;
a744cf53 2209
d471ea57
AC
2210 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
2211 {
444abaca 2212 show_packet_config_cmd (&remote_protocol_packets[PACKET_Z0 + i]);
d471ea57 2213 }
96baa820
JM
2214}
2215
4082afcc
PA
2216/* Returns true if the multi-process extensions are in effect. */
2217
2218static int
2219remote_multi_process_p (struct remote_state *rs)
2220{
2221 return packet_support (PACKET_multiprocess_feature) == PACKET_ENABLE;
2222}
2223
de0d863e
DB
2224/* Returns true if fork events are supported. */
2225
2226static int
2227remote_fork_event_p (struct remote_state *rs)
2228{
2229 return packet_support (PACKET_fork_event_feature) == PACKET_ENABLE;
2230}
2231
c269dbdb
DB
2232/* Returns true if vfork events are supported. */
2233
2234static int
2235remote_vfork_event_p (struct remote_state *rs)
2236{
2237 return packet_support (PACKET_vfork_event_feature) == PACKET_ENABLE;
2238}
2239
d46addbb
DB
2240/* Returns true if exec events are supported. */
2241
2242static int
2243remote_exec_event_p (struct remote_state *rs)
2244{
2245 return packet_support (PACKET_exec_event_feature) == PACKET_ENABLE;
2246}
2247
cbb8991c
DB
2248/* Insert fork catchpoint target routine. If fork events are enabled
2249 then return success, nothing more to do. */
2250
f6ac5f3d
PA
2251int
2252remote_target::insert_fork_catchpoint (int pid)
cbb8991c
DB
2253{
2254 struct remote_state *rs = get_remote_state ();
2255
2256 return !remote_fork_event_p (rs);
2257}
2258
2259/* Remove fork catchpoint target routine. Nothing to do, just
2260 return success. */
2261
f6ac5f3d
PA
2262int
2263remote_target::remove_fork_catchpoint (int pid)
cbb8991c
DB
2264{
2265 return 0;
2266}
2267
2268/* Insert vfork catchpoint target routine. If vfork events are enabled
2269 then return success, nothing more to do. */
2270
f6ac5f3d
PA
2271int
2272remote_target::insert_vfork_catchpoint (int pid)
cbb8991c
DB
2273{
2274 struct remote_state *rs = get_remote_state ();
2275
2276 return !remote_vfork_event_p (rs);
2277}
2278
2279/* Remove vfork catchpoint target routine. Nothing to do, just
2280 return success. */
2281
f6ac5f3d
PA
2282int
2283remote_target::remove_vfork_catchpoint (int pid)
cbb8991c
DB
2284{
2285 return 0;
2286}
2287
d46addbb
DB
2288/* Insert exec catchpoint target routine. If exec events are
2289 enabled, just return success. */
2290
f6ac5f3d
PA
2291int
2292remote_target::insert_exec_catchpoint (int pid)
d46addbb
DB
2293{
2294 struct remote_state *rs = get_remote_state ();
2295
2296 return !remote_exec_event_p (rs);
2297}
2298
2299/* Remove exec catchpoint target routine. Nothing to do, just
2300 return success. */
2301
f6ac5f3d
PA
2302int
2303remote_target::remove_exec_catchpoint (int pid)
d46addbb
DB
2304{
2305 return 0;
2306}
2307
c906108c
SS
2308\f
2309
79d7f229
PA
2310static ptid_t magic_null_ptid;
2311static ptid_t not_sent_ptid;
2312static ptid_t any_thread_ptid;
2313
0b16c5cf
PA
2314/* Find out if the stub attached to PID (and hence GDB should offer to
2315 detach instead of killing it when bailing out). */
2316
6b8edb51
PA
2317int
2318remote_target::remote_query_attached (int pid)
0b16c5cf
PA
2319{
2320 struct remote_state *rs = get_remote_state ();
bba74b36 2321 size_t size = get_remote_packet_size ();
0b16c5cf 2322
4082afcc 2323 if (packet_support (PACKET_qAttached) == PACKET_DISABLE)
0b16c5cf
PA
2324 return 0;
2325
2326 if (remote_multi_process_p (rs))
8d64371b 2327 xsnprintf (rs->buf.data (), size, "qAttached:%x", pid);
0b16c5cf 2328 else
8d64371b 2329 xsnprintf (rs->buf.data (), size, "qAttached");
0b16c5cf
PA
2330
2331 putpkt (rs->buf);
8d64371b 2332 getpkt (&rs->buf, 0);
0b16c5cf
PA
2333
2334 switch (packet_ok (rs->buf,
1554e9be 2335 &remote_protocol_packets[PACKET_qAttached]))
0b16c5cf
PA
2336 {
2337 case PACKET_OK:
8d64371b 2338 if (strcmp (rs->buf.data (), "1") == 0)
0b16c5cf
PA
2339 return 1;
2340 break;
2341 case PACKET_ERROR:
8d64371b 2342 warning (_("Remote failure reply: %s"), rs->buf.data ());
0b16c5cf
PA
2343 break;
2344 case PACKET_UNKNOWN:
2345 break;
2346 }
2347
2348 return 0;
2349}
2350
49c62f2e
PA
2351/* Add PID to GDB's inferior table. If FAKE_PID_P is true, then PID
2352 has been invented by GDB, instead of reported by the target. Since
2353 we can be connected to a remote system before before knowing about
2354 any inferior, mark the target with execution when we find the first
2355 inferior. If ATTACHED is 1, then we had just attached to this
2356 inferior. If it is 0, then we just created this inferior. If it
2357 is -1, then try querying the remote stub to find out if it had
1b6e6f5c
GB
2358 attached to the inferior or not. If TRY_OPEN_EXEC is true then
2359 attempt to open this inferior's executable as the main executable
2360 if no main executable is open already. */
1941c569 2361
6b8edb51
PA
2362inferior *
2363remote_target::remote_add_inferior (int fake_pid_p, int pid, int attached,
2364 int try_open_exec)
1941c569 2365{
1941c569
PA
2366 struct inferior *inf;
2367
0b16c5cf
PA
2368 /* Check whether this process we're learning about is to be
2369 considered attached, or if is to be considered to have been
2370 spawned by the stub. */
2371 if (attached == -1)
2372 attached = remote_query_attached (pid);
2373
f5656ead 2374 if (gdbarch_has_global_solist (target_gdbarch ()))
6c95b8df
PA
2375 {
2376 /* If the target shares code across all inferiors, then every
2377 attach adds a new inferior. */
2378 inf = add_inferior (pid);
2379
2380 /* ... and every inferior is bound to the same program space.
2381 However, each inferior may still have its own address
2382 space. */
2383 inf->aspace = maybe_new_address_space ();
2384 inf->pspace = current_program_space;
2385 }
2386 else
2387 {
2388 /* In the traditional debugging scenario, there's a 1-1 match
2389 between program/address spaces. We simply bind the inferior
2390 to the program space's address space. */
2391 inf = current_inferior ();
2392 inferior_appeared (inf, pid);
2393 }
1941c569 2394
0b16c5cf 2395 inf->attach_flag = attached;
49c62f2e 2396 inf->fake_pid_p = fake_pid_p;
0b16c5cf 2397
1b6e6f5c
GB
2398 /* If no main executable is currently open then attempt to
2399 open the file that was executed to create this inferior. */
835205d0 2400 if (try_open_exec && get_exec_file (0) == NULL)
bb805577 2401 exec_file_locate_attach (pid, 0, 1);
1b6e6f5c 2402
1941c569
PA
2403 return inf;
2404}
2405
7aabaf9d 2406static remote_thread_info *get_remote_thread_info (thread_info *thread);
00431a78 2407static remote_thread_info *get_remote_thread_info (ptid_t ptid);
85ad3aaf 2408
1941c569
PA
2409/* Add thread PTID to GDB's thread list. Tag it as executing/running
2410 according to RUNNING. */
2411
00431a78 2412thread_info *
6b8edb51 2413remote_target::remote_add_thread (ptid_t ptid, bool running, bool executing)
c906108c 2414{
b7ea362b 2415 struct remote_state *rs = get_remote_state ();
85ad3aaf 2416 struct thread_info *thread;
b7ea362b
PA
2417
2418 /* GDB historically didn't pull threads in the initial connection
2419 setup. If the remote target doesn't even have a concept of
2420 threads (e.g., a bare-metal target), even if internally we
2421 consider that a single-threaded target, mentioning a new thread
2422 might be confusing to the user. Be silent then, preserving the
2423 age old behavior. */
2424 if (rs->starting_up)
85ad3aaf 2425 thread = add_thread_silent (ptid);
b7ea362b 2426 else
85ad3aaf 2427 thread = add_thread (ptid);
1941c569 2428
7aabaf9d 2429 get_remote_thread_info (thread)->vcont_resumed = executing;
0d5b594f 2430 set_executing (ptid, executing);
1941c569 2431 set_running (ptid, running);
00431a78
PA
2432
2433 return thread;
1941c569
PA
2434}
2435
2436/* Come here when we learn about a thread id from the remote target.
2437 It may be the first time we hear about such thread, so take the
2438 opportunity to add it to GDB's thread list. In case this is the
2439 first time we're noticing its corresponding inferior, add it to
0d5b594f
PA
2440 GDB's inferior list as well. EXECUTING indicates whether the
2441 thread is (internally) executing or stopped. */
1941c569 2442
6b8edb51
PA
2443void
2444remote_target::remote_notice_new_inferior (ptid_t currthread, int executing)
1941c569 2445{
0d5b594f
PA
2446 /* In non-stop mode, we assume new found threads are (externally)
2447 running until proven otherwise with a stop reply. In all-stop,
2448 we can only get here if all threads are stopped. */
2449 int running = target_is_non_stop_p () ? 1 : 0;
2450
c906108c
SS
2451 /* If this is a new thread, add it to GDB's thread list.
2452 If we leave it up to WFI to do this, bad things will happen. */
82f73884 2453
00431a78
PA
2454 thread_info *tp = find_thread_ptid (currthread);
2455 if (tp != NULL && tp->state == THREAD_EXITED)
82f73884
PA
2456 {
2457 /* We're seeing an event on a thread id we knew had exited.
2458 This has to be a new thread reusing the old id. Add it. */
0d5b594f 2459 remote_add_thread (currthread, running, executing);
82f73884
PA
2460 return;
2461 }
2462
79d7f229 2463 if (!in_thread_list (currthread))
c0a2216e 2464 {
1941c569 2465 struct inferior *inf = NULL;
e99b03dc 2466 int pid = currthread.pid ();
1941c569 2467
0e998d96 2468 if (inferior_ptid.is_pid ()
e99b03dc 2469 && pid == inferior_ptid.pid ())
c0a2216e
PA
2470 {
2471 /* inferior_ptid has no thread member yet. This can happen
2472 with the vAttach -> remote_wait,"TAAthread:" path if the
2473 stub doesn't support qC. This is the first stop reported
2474 after an attach, so this is the main thread. Update the
2475 ptid in the thread list. */
f2907e49 2476 if (in_thread_list (ptid_t (pid)))
bad34192
PA
2477 thread_change_ptid (inferior_ptid, currthread);
2478 else
2479 {
0d5b594f 2480 remote_add_thread (currthread, running, executing);
bad34192
PA
2481 inferior_ptid = currthread;
2482 }
dc146f7c 2483 return;
c0a2216e 2484 }
82f73884 2485
d7e15655 2486 if (magic_null_ptid == inferior_ptid)
c0a2216e
PA
2487 {
2488 /* inferior_ptid is not set yet. This can happen with the
2489 vRun -> remote_wait,"TAAthread:" path if the stub
2490 doesn't support qC. This is the first stop reported
2491 after an attach, so this is the main thread. Update the
2492 ptid in the thread list. */
dc146f7c 2493 thread_change_ptid (inferior_ptid, currthread);
82f73884 2494 return;
c0a2216e 2495 }
82f73884 2496
29c87f7f
PA
2497 /* When connecting to a target remote, or to a target
2498 extended-remote which already was debugging an inferior, we
2499 may not know about it yet. Add it before adding its child
2500 thread, so notifications are emitted in a sensible order. */
e99b03dc 2501 if (find_inferior_pid (currthread.pid ()) == NULL)
49c62f2e
PA
2502 {
2503 struct remote_state *rs = get_remote_state ();
2504 int fake_pid_p = !remote_multi_process_p (rs);
2505
2506 inf = remote_add_inferior (fake_pid_p,
e99b03dc 2507 currthread.pid (), -1, 1);
49c62f2e 2508 }
29c87f7f 2509
82f73884 2510 /* This is really a new thread. Add it. */
00431a78
PA
2511 thread_info *new_thr
2512 = remote_add_thread (currthread, running, executing);
1941c569
PA
2513
2514 /* If we found a new inferior, let the common code do whatever
2515 it needs to with it (e.g., read shared libraries, insert
b7ea362b
PA
2516 breakpoints), unless we're just setting up an all-stop
2517 connection. */
1941c569 2518 if (inf != NULL)
b7ea362b
PA
2519 {
2520 struct remote_state *rs = get_remote_state ();
2521
6efcd9a8 2522 if (!rs->starting_up)
00431a78 2523 notice_new_inferior (new_thr, executing, 0);
b7ea362b 2524 }
c0a2216e 2525 }
c906108c
SS
2526}
2527
85ad3aaf 2528/* Return THREAD's private thread data, creating it if necessary. */
dc146f7c 2529
7aabaf9d
SM
2530static remote_thread_info *
2531get_remote_thread_info (thread_info *thread)
dc146f7c 2532{
85ad3aaf 2533 gdb_assert (thread != NULL);
dc146f7c 2534
85ad3aaf 2535 if (thread->priv == NULL)
7aabaf9d 2536 thread->priv.reset (new remote_thread_info);
dc146f7c 2537
7aabaf9d 2538 return static_cast<remote_thread_info *> (thread->priv.get ());
85ad3aaf
PA
2539}
2540
7aabaf9d
SM
2541static remote_thread_info *
2542get_remote_thread_info (ptid_t ptid)
85ad3aaf 2543{
00431a78
PA
2544 thread_info *thr = find_thread_ptid (ptid);
2545 return get_remote_thread_info (thr);
dc146f7c
VP
2546}
2547
74531fed
PA
2548/* Call this function as a result of
2549 1) A halt indication (T packet) containing a thread id
2550 2) A direct query of currthread
0df8b418 2551 3) Successful execution of set thread */
74531fed
PA
2552
2553static void
47f8a51d 2554record_currthread (struct remote_state *rs, ptid_t currthread)
74531fed 2555{
47f8a51d 2556 rs->general_thread = currthread;
74531fed
PA
2557}
2558
89be2091
DJ
2559/* If 'QPassSignals' is supported, tell the remote stub what signals
2560 it can simply pass through to the inferior without reporting. */
2561
f6ac5f3d 2562void
adc6a863 2563remote_target::pass_signals (gdb::array_view<const unsigned char> pass_signals)
89be2091 2564{
4082afcc 2565 if (packet_support (PACKET_QPassSignals) != PACKET_DISABLE)
89be2091
DJ
2566 {
2567 char *pass_packet, *p;
adc6a863 2568 int count = 0;
747dc59d 2569 struct remote_state *rs = get_remote_state ();
89be2091 2570
adc6a863
PA
2571 gdb_assert (pass_signals.size () < 256);
2572 for (size_t i = 0; i < pass_signals.size (); i++)
89be2091 2573 {
2455069d 2574 if (pass_signals[i])
89be2091
DJ
2575 count++;
2576 }
224c3ddb 2577 pass_packet = (char *) xmalloc (count * 3 + strlen ("QPassSignals:") + 1);
89be2091
DJ
2578 strcpy (pass_packet, "QPassSignals:");
2579 p = pass_packet + strlen (pass_packet);
adc6a863 2580 for (size_t i = 0; i < pass_signals.size (); i++)
89be2091 2581 {
2455069d 2582 if (pass_signals[i])
89be2091
DJ
2583 {
2584 if (i >= 16)
2585 *p++ = tohex (i >> 4);
2586 *p++ = tohex (i & 15);
2587 if (count)
2588 *p++ = ';';
2589 else
2590 break;
2591 count--;
2592 }
2593 }
2594 *p = 0;
747dc59d 2595 if (!rs->last_pass_packet || strcmp (rs->last_pass_packet, pass_packet))
89be2091 2596 {
89be2091 2597 putpkt (pass_packet);
8d64371b 2598 getpkt (&rs->buf, 0);
8dc5b319 2599 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QPassSignals]);
747dc59d
TT
2600 if (rs->last_pass_packet)
2601 xfree (rs->last_pass_packet);
2602 rs->last_pass_packet = pass_packet;
89be2091
DJ
2603 }
2604 else
2605 xfree (pass_packet);
2606 }
2607}
2608
82075af2
JS
2609/* If 'QCatchSyscalls' is supported, tell the remote stub
2610 to report syscalls to GDB. */
2611
f6ac5f3d
PA
2612int
2613remote_target::set_syscall_catchpoint (int pid, bool needed, int any_count,
2614 gdb::array_view<const int> syscall_counts)
82075af2 2615{
b80406ac 2616 const char *catch_packet;
82075af2
JS
2617 enum packet_result result;
2618 int n_sysno = 0;
2619
2620 if (packet_support (PACKET_QCatchSyscalls) == PACKET_DISABLE)
2621 {
2622 /* Not supported. */
2623 return 1;
2624 }
2625
649a140c 2626 if (needed && any_count == 0)
82075af2 2627 {
649a140c
PA
2628 /* Count how many syscalls are to be caught. */
2629 for (size_t i = 0; i < syscall_counts.size (); i++)
82075af2 2630 {
649a140c 2631 if (syscall_counts[i] != 0)
82075af2
JS
2632 n_sysno++;
2633 }
2634 }
2635
2636 if (remote_debug)
2637 {
2638 fprintf_unfiltered (gdb_stdlog,
2639 "remote_set_syscall_catchpoint "
2640 "pid %d needed %d any_count %d n_sysno %d\n",
2641 pid, needed, any_count, n_sysno);
2642 }
2643
1b81856f 2644 std::string built_packet;
82075af2
JS
2645 if (needed)
2646 {
2647 /* Prepare a packet with the sysno list, assuming max 8+1
2648 characters for a sysno. If the resulting packet size is too
2649 big, fallback on the non-selective packet. */
2650 const int maxpktsz = strlen ("QCatchSyscalls:1") + n_sysno * 9 + 1;
1b81856f
PA
2651 built_packet.reserve (maxpktsz);
2652 built_packet = "QCatchSyscalls:1";
649a140c 2653 if (any_count == 0)
82075af2 2654 {
649a140c
PA
2655 /* Add in each syscall to be caught. */
2656 for (size_t i = 0; i < syscall_counts.size (); i++)
82075af2 2657 {
649a140c
PA
2658 if (syscall_counts[i] != 0)
2659 string_appendf (built_packet, ";%zx", i);
82075af2
JS
2660 }
2661 }
1b81856f 2662 if (built_packet.size () > get_remote_packet_size ())
82075af2
JS
2663 {
2664 /* catch_packet too big. Fallback to less efficient
2665 non selective mode, with GDB doing the filtering. */
b80406ac 2666 catch_packet = "QCatchSyscalls:1";
82075af2 2667 }
b80406ac 2668 else
1b81856f 2669 catch_packet = built_packet.c_str ();
82075af2
JS
2670 }
2671 else
b80406ac 2672 catch_packet = "QCatchSyscalls:0";
82075af2 2673
b80406ac 2674 struct remote_state *rs = get_remote_state ();
82075af2 2675
b80406ac 2676 putpkt (catch_packet);
8d64371b 2677 getpkt (&rs->buf, 0);
b80406ac
TT
2678 result = packet_ok (rs->buf, &remote_protocol_packets[PACKET_QCatchSyscalls]);
2679 if (result == PACKET_OK)
2680 return 0;
2681 else
2682 return -1;
82075af2
JS
2683}
2684
9b224c5e
PA
2685/* If 'QProgramSignals' is supported, tell the remote stub what
2686 signals it should pass through to the inferior when detaching. */
2687
f6ac5f3d 2688void
adc6a863 2689remote_target::program_signals (gdb::array_view<const unsigned char> signals)
9b224c5e 2690{
4082afcc 2691 if (packet_support (PACKET_QProgramSignals) != PACKET_DISABLE)
9b224c5e
PA
2692 {
2693 char *packet, *p;
adc6a863 2694 int count = 0;
5e4a05c4 2695 struct remote_state *rs = get_remote_state ();
9b224c5e 2696
adc6a863
PA
2697 gdb_assert (signals.size () < 256);
2698 for (size_t i = 0; i < signals.size (); i++)
9b224c5e
PA
2699 {
2700 if (signals[i])
2701 count++;
2702 }
224c3ddb 2703 packet = (char *) xmalloc (count * 3 + strlen ("QProgramSignals:") + 1);
9b224c5e
PA
2704 strcpy (packet, "QProgramSignals:");
2705 p = packet + strlen (packet);
adc6a863 2706 for (size_t i = 0; i < signals.size (); i++)
9b224c5e
PA
2707 {
2708 if (signal_pass_state (i))
2709 {
2710 if (i >= 16)
2711 *p++ = tohex (i >> 4);
2712 *p++ = tohex (i & 15);
2713 if (count)
2714 *p++ = ';';
2715 else
2716 break;
2717 count--;
2718 }
2719 }
2720 *p = 0;
5e4a05c4
TT
2721 if (!rs->last_program_signals_packet
2722 || strcmp (rs->last_program_signals_packet, packet) != 0)
9b224c5e 2723 {
9b224c5e 2724 putpkt (packet);
8d64371b 2725 getpkt (&rs->buf, 0);
8dc5b319 2726 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QProgramSignals]);
5e4a05c4
TT
2727 xfree (rs->last_program_signals_packet);
2728 rs->last_program_signals_packet = packet;
9b224c5e
PA
2729 }
2730 else
2731 xfree (packet);
2732 }
2733}
2734
79d7f229
PA
2735/* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
2736 MINUS_ONE_PTID, set the thread to -1, so the stub returns the
2737 thread. If GEN is set, set the general thread, if not, then set
2738 the step/continue thread. */
6b8edb51
PA
2739void
2740remote_target::set_thread (ptid_t ptid, int gen)
c906108c 2741{
d01949b6 2742 struct remote_state *rs = get_remote_state ();
47f8a51d 2743 ptid_t state = gen ? rs->general_thread : rs->continue_thread;
8d64371b
TT
2744 char *buf = rs->buf.data ();
2745 char *endbuf = buf + get_remote_packet_size ();
c906108c 2746
d7e15655 2747 if (state == ptid)
c906108c
SS
2748 return;
2749
79d7f229
PA
2750 *buf++ = 'H';
2751 *buf++ = gen ? 'g' : 'c';
d7e15655 2752 if (ptid == magic_null_ptid)
79d7f229 2753 xsnprintf (buf, endbuf - buf, "0");
d7e15655 2754 else if (ptid == any_thread_ptid)
79d7f229 2755 xsnprintf (buf, endbuf - buf, "0");
d7e15655 2756 else if (ptid == minus_one_ptid)
79d7f229
PA
2757 xsnprintf (buf, endbuf - buf, "-1");
2758 else
82f73884 2759 write_ptid (buf, endbuf, ptid);
79d7f229 2760 putpkt (rs->buf);
8d64371b 2761 getpkt (&rs->buf, 0);
c906108c 2762 if (gen)
47f8a51d 2763 rs->general_thread = ptid;
c906108c 2764 else
47f8a51d 2765 rs->continue_thread = ptid;
c906108c 2766}
79d7f229 2767
6b8edb51
PA
2768void
2769remote_target::set_general_thread (ptid_t ptid)
79d7f229
PA
2770{
2771 set_thread (ptid, 1);
2772}
2773
6b8edb51
PA
2774void
2775remote_target::set_continue_thread (ptid_t ptid)
79d7f229
PA
2776{
2777 set_thread (ptid, 0);
2778}
2779
3c9c4b83
PA
2780/* Change the remote current process. Which thread within the process
2781 ends up selected isn't important, as long as it is the same process
2782 as what INFERIOR_PTID points to.
2783
2784 This comes from that fact that there is no explicit notion of
2785 "selected process" in the protocol. The selected process for
2786 general operations is the process the selected general thread
2787 belongs to. */
2788
6b8edb51
PA
2789void
2790remote_target::set_general_process ()
3c9c4b83
PA
2791{
2792 struct remote_state *rs = get_remote_state ();
2793
2794 /* If the remote can't handle multiple processes, don't bother. */
8020350c 2795 if (!remote_multi_process_p (rs))
3c9c4b83
PA
2796 return;
2797
2798 /* We only need to change the remote current thread if it's pointing
2799 at some other process. */
e99b03dc 2800 if (rs->general_thread.pid () != inferior_ptid.pid ())
3c9c4b83
PA
2801 set_general_thread (inferior_ptid);
2802}
2803
c906108c 2804\f
7d1a114c
PA
2805/* Return nonzero if this is the main thread that we made up ourselves
2806 to model non-threaded targets as single-threaded. */
c906108c
SS
2807
2808static int
f6ac5f3d 2809remote_thread_always_alive (ptid_t ptid)
c906108c 2810{
d7e15655 2811 if (ptid == magic_null_ptid)
c0a2216e
PA
2812 /* The main thread is always alive. */
2813 return 1;
2814
e38504b3 2815 if (ptid.pid () != 0 && ptid.lwp () == 0)
c0a2216e
PA
2816 /* The main thread is always alive. This can happen after a
2817 vAttach, if the remote side doesn't support
2818 multi-threading. */
2819 return 1;
2820
7d1a114c
PA
2821 return 0;
2822}
2823
2824/* Return nonzero if the thread PTID is still alive on the remote
2825 system. */
2826
57810aa7 2827bool
f6ac5f3d 2828remote_target::thread_alive (ptid_t ptid)
7d1a114c
PA
2829{
2830 struct remote_state *rs = get_remote_state ();
2831 char *p, *endp;
2832
2833 /* Check if this is a thread that we made up ourselves to model
2834 non-threaded targets as single-threaded. */
f6ac5f3d 2835 if (remote_thread_always_alive (ptid))
7d1a114c
PA
2836 return 1;
2837
8d64371b
TT
2838 p = rs->buf.data ();
2839 endp = p + get_remote_packet_size ();
82f73884
PA
2840
2841 *p++ = 'T';
2842 write_ptid (p, endp, ptid);
2843
2e9f7625 2844 putpkt (rs->buf);
8d64371b 2845 getpkt (&rs->buf, 0);
2e9f7625 2846 return (rs->buf[0] == 'O' && rs->buf[1] == 'K');
c906108c
SS
2847}
2848
79efa585
SM
2849/* Return a pointer to a thread name if we know it and NULL otherwise.
2850 The thread_info object owns the memory for the name. */
2851
f6ac5f3d
PA
2852const char *
2853remote_target::thread_name (struct thread_info *info)
79efa585
SM
2854{
2855 if (info->priv != NULL)
a9334058
SM
2856 {
2857 const std::string &name = get_remote_thread_info (info)->name;
2858 return !name.empty () ? name.c_str () : NULL;
2859 }
79efa585
SM
2860
2861 return NULL;
2862}
2863
c906108c
SS
2864/* About these extended threadlist and threadinfo packets. They are
2865 variable length packets but, the fields within them are often fixed
2866 length. They are redundent enough to send over UDP as is the
2867 remote protocol in general. There is a matching unit test module
2868 in libstub. */
2869
23860348 2870/* WARNING: This threadref data structure comes from the remote O.S.,
0df8b418 2871 libstub protocol encoding, and remote.c. It is not particularly
23860348 2872 changable. */
cce74817
JM
2873
2874/* Right now, the internal structure is int. We want it to be bigger.
0df8b418 2875 Plan to fix this. */
cce74817 2876
23860348 2877typedef int gdb_threadref; /* Internal GDB thread reference. */
cce74817 2878
9d1f7ab2 2879/* gdb_ext_thread_info is an internal GDB data structure which is
cfde0993 2880 equivalent to the reply of the remote threadinfo packet. */
cce74817
JM
2881
2882struct gdb_ext_thread_info
c5aa993b 2883 {
23860348 2884 threadref threadid; /* External form of thread reference. */
2bc416ba 2885 int active; /* Has state interesting to GDB?
23860348 2886 regs, stack. */
2bc416ba 2887 char display[256]; /* Brief state display, name,
cedea757 2888 blocked/suspended. */
23860348 2889 char shortname[32]; /* To be used to name threads. */
2bc416ba 2890 char more_display[256]; /* Long info, statistics, queue depth,
23860348 2891 whatever. */
c5aa993b 2892 };
cce74817
JM
2893
2894/* The volume of remote transfers can be limited by submitting
2895 a mask containing bits specifying the desired information.
2896 Use a union of these values as the 'selection' parameter to
0df8b418 2897 get_thread_info. FIXME: Make these TAG names more thread specific. */
cce74817
JM
2898
2899#define TAG_THREADID 1
2900#define TAG_EXISTS 2
2901#define TAG_DISPLAY 4
2902#define TAG_THREADNAME 8
c5aa993b 2903#define TAG_MOREDISPLAY 16
cce74817 2904
23860348 2905#define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
c906108c 2906
a14ed312 2907static char *unpack_nibble (char *buf, int *val);
cce74817 2908
a14ed312 2909static char *unpack_byte (char *buf, int *value);
cce74817 2910
a14ed312 2911static char *pack_int (char *buf, int value);
cce74817 2912
a14ed312 2913static char *unpack_int (char *buf, int *value);
cce74817 2914
a14ed312 2915static char *unpack_string (char *src, char *dest, int length);
cce74817 2916
23860348 2917static char *pack_threadid (char *pkt, threadref *id);
cce74817 2918
23860348 2919static char *unpack_threadid (char *inbuf, threadref *id);
cce74817 2920
23860348 2921void int_to_threadref (threadref *id, int value);
cce74817 2922
23860348 2923static int threadref_to_int (threadref *ref);
cce74817 2924
23860348 2925static void copy_threadref (threadref *dest, threadref *src);
cce74817 2926
23860348 2927static int threadmatch (threadref *dest, threadref *src);
cce74817 2928
2bc416ba 2929static char *pack_threadinfo_request (char *pkt, int mode,
23860348 2930 threadref *id);
cce74817 2931
a14ed312
KB
2932static char *pack_threadlist_request (char *pkt, int startflag,
2933 int threadcount,
23860348 2934 threadref *nextthread);
cce74817 2935
23860348 2936static int remote_newthread_step (threadref *ref, void *context);
cce74817 2937
82f73884
PA
2938
2939/* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the
2940 buffer we're allowed to write to. Returns
2941 BUF+CHARACTERS_WRITTEN. */
2942
6b8edb51
PA
2943char *
2944remote_target::write_ptid (char *buf, const char *endbuf, ptid_t ptid)
82f73884
PA
2945{
2946 int pid, tid;
2947 struct remote_state *rs = get_remote_state ();
2948
2949 if (remote_multi_process_p (rs))
2950 {
e99b03dc 2951 pid = ptid.pid ();
82f73884
PA
2952 if (pid < 0)
2953 buf += xsnprintf (buf, endbuf - buf, "p-%x.", -pid);
2954 else
2955 buf += xsnprintf (buf, endbuf - buf, "p%x.", pid);
2956 }
e38504b3 2957 tid = ptid.lwp ();
82f73884
PA
2958 if (tid < 0)
2959 buf += xsnprintf (buf, endbuf - buf, "-%x", -tid);
2960 else
2961 buf += xsnprintf (buf, endbuf - buf, "%x", tid);
2962
2963 return buf;
2964}
2965
256642e8
PA
2966/* Extract a PTID from BUF. If non-null, OBUF is set to one past the
2967 last parsed char. Returns null_ptid if no thread id is found, and
2968 throws an error if the thread id has an invalid format. */
82f73884
PA
2969
2970static ptid_t
256642e8 2971read_ptid (const char *buf, const char **obuf)
82f73884 2972{
256642e8
PA
2973 const char *p = buf;
2974 const char *pp;
82f73884 2975 ULONGEST pid = 0, tid = 0;
82f73884
PA
2976
2977 if (*p == 'p')
2978 {
2979 /* Multi-process ptid. */
2980 pp = unpack_varlen_hex (p + 1, &pid);
2981 if (*pp != '.')
b37520b6 2982 error (_("invalid remote ptid: %s"), p);
82f73884
PA
2983
2984 p = pp;
2985 pp = unpack_varlen_hex (p + 1, &tid);
2986 if (obuf)
2987 *obuf = pp;
fd79271b 2988 return ptid_t (pid, tid, 0);
82f73884
PA
2989 }
2990
2991 /* No multi-process. Just a tid. */
2992 pp = unpack_varlen_hex (p, &tid);
2993
c9f35b34
KB
2994 /* Return null_ptid when no thread id is found. */
2995 if (p == pp)
2996 {
2997 if (obuf)
2998 *obuf = pp;
2999 return null_ptid;
3000 }
3001
82f73884 3002 /* Since the stub is not sending a process id, then default to
ca19bf23
PA
3003 what's in inferior_ptid, unless it's null at this point. If so,
3004 then since there's no way to know the pid of the reported
3005 threads, use the magic number. */
d7e15655 3006 if (inferior_ptid == null_ptid)
e99b03dc 3007 pid = magic_null_ptid.pid ();
ca19bf23 3008 else
e99b03dc 3009 pid = inferior_ptid.pid ();
82f73884
PA
3010
3011 if (obuf)
3012 *obuf = pp;
fd79271b 3013 return ptid_t (pid, tid, 0);
82f73884
PA
3014}
3015
c906108c 3016static int
fba45db2 3017stubhex (int ch)
c906108c
SS
3018{
3019 if (ch >= 'a' && ch <= 'f')
3020 return ch - 'a' + 10;
3021 if (ch >= '0' && ch <= '9')
3022 return ch - '0';
3023 if (ch >= 'A' && ch <= 'F')
3024 return ch - 'A' + 10;
3025 return -1;
3026}
3027
3028static int
fba45db2 3029stub_unpack_int (char *buff, int fieldlength)
c906108c
SS
3030{
3031 int nibble;
3032 int retval = 0;
3033
3034 while (fieldlength)
3035 {
3036 nibble = stubhex (*buff++);
3037 retval |= nibble;
3038 fieldlength--;
3039 if (fieldlength)
3040 retval = retval << 4;
3041 }
3042 return retval;
3043}
3044
c906108c 3045static char *
fba45db2 3046unpack_nibble (char *buf, int *val)
c906108c 3047{
b7589f7d 3048 *val = fromhex (*buf++);
c906108c
SS
3049 return buf;
3050}
3051
c906108c 3052static char *
fba45db2 3053unpack_byte (char *buf, int *value)
c906108c
SS
3054{
3055 *value = stub_unpack_int (buf, 2);
3056 return buf + 2;
3057}
3058
3059static char *
fba45db2 3060pack_int (char *buf, int value)
c906108c
SS
3061{
3062 buf = pack_hex_byte (buf, (value >> 24) & 0xff);
3063 buf = pack_hex_byte (buf, (value >> 16) & 0xff);
3064 buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
3065 buf = pack_hex_byte (buf, (value & 0xff));
3066 return buf;
3067}
3068
3069static char *
fba45db2 3070unpack_int (char *buf, int *value)
c906108c
SS
3071{
3072 *value = stub_unpack_int (buf, 8);
3073 return buf + 8;
3074}
3075
23860348 3076#if 0 /* Currently unused, uncomment when needed. */
a14ed312 3077static char *pack_string (char *pkt, char *string);
c906108c
SS
3078
3079static char *
fba45db2 3080pack_string (char *pkt, char *string)
c906108c
SS
3081{
3082 char ch;
3083 int len;
3084
3085 len = strlen (string);
3086 if (len > 200)
23860348 3087 len = 200; /* Bigger than most GDB packets, junk??? */
c906108c
SS
3088 pkt = pack_hex_byte (pkt, len);
3089 while (len-- > 0)
3090 {
3091 ch = *string++;
3092 if ((ch == '\0') || (ch == '#'))
23860348 3093 ch = '*'; /* Protect encapsulation. */
c906108c
SS
3094 *pkt++ = ch;
3095 }
3096 return pkt;
3097}
3098#endif /* 0 (unused) */
3099
3100static char *
fba45db2 3101unpack_string (char *src, char *dest, int length)
c906108c
SS
3102{
3103 while (length--)
3104 *dest++ = *src++;
3105 *dest = '\0';
3106 return src;
3107}
3108
3109static char *
fba45db2 3110pack_threadid (char *pkt, threadref *id)
c906108c
SS
3111{
3112 char *limit;
3113 unsigned char *altid;
3114
3115 altid = (unsigned char *) id;
3116 limit = pkt + BUF_THREAD_ID_SIZE;
3117 while (pkt < limit)
3118 pkt = pack_hex_byte (pkt, *altid++);
3119 return pkt;
3120}
3121
3122
3123static char *
fba45db2 3124unpack_threadid (char *inbuf, threadref *id)
c906108c
SS
3125{
3126 char *altref;
3127 char *limit = inbuf + BUF_THREAD_ID_SIZE;
3128 int x, y;
3129
3130 altref = (char *) id;
3131
3132 while (inbuf < limit)
3133 {
3134 x = stubhex (*inbuf++);
3135 y = stubhex (*inbuf++);
3136 *altref++ = (x << 4) | y;
3137 }
3138 return inbuf;
3139}
3140
3141/* Externally, threadrefs are 64 bits but internally, they are still
0df8b418 3142 ints. This is due to a mismatch of specifications. We would like
c906108c
SS
3143 to use 64bit thread references internally. This is an adapter
3144 function. */
3145
3146void
fba45db2 3147int_to_threadref (threadref *id, int value)
c906108c
SS
3148{
3149 unsigned char *scan;
3150
3151 scan = (unsigned char *) id;
3152 {
3153 int i = 4;
3154 while (i--)
3155 *scan++ = 0;
3156 }
3157 *scan++ = (value >> 24) & 0xff;
3158 *scan++ = (value >> 16) & 0xff;
3159 *scan++ = (value >> 8) & 0xff;
3160 *scan++ = (value & 0xff);
3161}
3162
3163static int
fba45db2 3164threadref_to_int (threadref *ref)
c906108c
SS
3165{
3166 int i, value = 0;
3167 unsigned char *scan;
3168
cfd77fa1 3169 scan = *ref;
c906108c
SS
3170 scan += 4;
3171 i = 4;
3172 while (i-- > 0)
3173 value = (value << 8) | ((*scan++) & 0xff);
3174 return value;
3175}
3176
3177static void
fba45db2 3178copy_threadref (threadref *dest, threadref *src)
c906108c
SS
3179{
3180 int i;
3181 unsigned char *csrc, *cdest;
3182
3183 csrc = (unsigned char *) src;
3184 cdest = (unsigned char *) dest;
3185 i = 8;
3186 while (i--)
3187 *cdest++ = *csrc++;
3188}
3189
3190static int
fba45db2 3191threadmatch (threadref *dest, threadref *src)
c906108c 3192{
23860348 3193 /* Things are broken right now, so just assume we got a match. */
c906108c
SS
3194#if 0
3195 unsigned char *srcp, *destp;
3196 int i, result;
3197 srcp = (char *) src;
3198 destp = (char *) dest;
3199
3200 result = 1;
3201 while (i-- > 0)
3202 result &= (*srcp++ == *destp++) ? 1 : 0;
3203 return result;
3204#endif
3205 return 1;
3206}
3207
3208/*
c5aa993b
JM
3209 threadid:1, # always request threadid
3210 context_exists:2,
3211 display:4,
3212 unique_name:8,
3213 more_display:16
3214 */
c906108c
SS
3215
3216/* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
3217
3218static char *
fba45db2 3219pack_threadinfo_request (char *pkt, int mode, threadref *id)
c906108c 3220{
23860348
MS
3221 *pkt++ = 'q'; /* Info Query */
3222 *pkt++ = 'P'; /* process or thread info */
3223 pkt = pack_int (pkt, mode); /* mode */
c906108c 3224 pkt = pack_threadid (pkt, id); /* threadid */
23860348 3225 *pkt = '\0'; /* terminate */
c906108c
SS
3226 return pkt;
3227}
3228
23860348 3229/* These values tag the fields in a thread info response packet. */
c906108c 3230/* Tagging the fields allows us to request specific fields and to
23860348 3231 add more fields as time goes by. */
c906108c 3232
23860348 3233#define TAG_THREADID 1 /* Echo the thread identifier. */
c5aa993b 3234#define TAG_EXISTS 2 /* Is this process defined enough to
23860348 3235 fetch registers and its stack? */
c5aa993b 3236#define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
23860348 3237#define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
802188a7 3238#define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
23860348 3239 the process. */
c906108c 3240
6b8edb51
PA
3241int
3242remote_target::remote_unpack_thread_info_response (char *pkt,
3243 threadref *expectedref,
3244 gdb_ext_thread_info *info)
c906108c 3245{
d01949b6 3246 struct remote_state *rs = get_remote_state ();
c906108c 3247 int mask, length;
cfd77fa1 3248 int tag;
c906108c 3249 threadref ref;
8d64371b 3250 char *limit = pkt + rs->buf.size (); /* Plausible parsing limit. */
c906108c
SS
3251 int retval = 1;
3252
23860348 3253 /* info->threadid = 0; FIXME: implement zero_threadref. */
c906108c
SS
3254 info->active = 0;
3255 info->display[0] = '\0';
3256 info->shortname[0] = '\0';
3257 info->more_display[0] = '\0';
3258
23860348
MS
3259 /* Assume the characters indicating the packet type have been
3260 stripped. */
c906108c
SS
3261 pkt = unpack_int (pkt, &mask); /* arg mask */
3262 pkt = unpack_threadid (pkt, &ref);
3263
3264 if (mask == 0)
8a3fe4f8 3265 warning (_("Incomplete response to threadinfo request."));
c906108c 3266 if (!threadmatch (&ref, expectedref))
23860348 3267 { /* This is an answer to a different request. */
8a3fe4f8 3268 warning (_("ERROR RMT Thread info mismatch."));
c906108c
SS
3269 return 0;
3270 }
3271 copy_threadref (&info->threadid, &ref);
3272
23860348 3273 /* Loop on tagged fields , try to bail if somthing goes wrong. */
c906108c 3274
23860348
MS
3275 /* Packets are terminated with nulls. */
3276 while ((pkt < limit) && mask && *pkt)
c906108c
SS
3277 {
3278 pkt = unpack_int (pkt, &tag); /* tag */
23860348
MS
3279 pkt = unpack_byte (pkt, &length); /* length */
3280 if (!(tag & mask)) /* Tags out of synch with mask. */
c906108c 3281 {
8a3fe4f8 3282 warning (_("ERROR RMT: threadinfo tag mismatch."));
c906108c
SS
3283 retval = 0;
3284 break;
3285 }
3286 if (tag == TAG_THREADID)
3287 {
3288 if (length != 16)
3289 {
8a3fe4f8 3290 warning (_("ERROR RMT: length of threadid is not 16."));
c906108c
SS
3291 retval = 0;
3292 break;
3293 }
3294 pkt = unpack_threadid (pkt, &ref);
3295 mask = mask & ~TAG_THREADID;
3296 continue;
3297 }
3298 if (tag == TAG_EXISTS)
3299 {
3300 info->active = stub_unpack_int (pkt, length);
3301 pkt += length;
3302 mask = mask & ~(TAG_EXISTS);
3303 if (length > 8)
3304 {
8a3fe4f8 3305 warning (_("ERROR RMT: 'exists' length too long."));
c906108c
SS
3306 retval = 0;
3307 break;
3308 }
3309 continue;
3310 }
3311 if (tag == TAG_THREADNAME)
3312 {
3313 pkt = unpack_string (pkt, &info->shortname[0], length);
3314 mask = mask & ~TAG_THREADNAME;
3315 continue;
3316 }
3317 if (tag == TAG_DISPLAY)
3318 {
3319 pkt = unpack_string (pkt, &info->display[0], length);
3320 mask = mask & ~TAG_DISPLAY;
3321 continue;
3322 }
3323 if (tag == TAG_MOREDISPLAY)
3324 {
3325 pkt = unpack_string (pkt, &info->more_display[0], length);
3326 mask = mask & ~TAG_MOREDISPLAY;
3327 continue;
3328 }
8a3fe4f8 3329 warning (_("ERROR RMT: unknown thread info tag."));
23860348 3330 break; /* Not a tag we know about. */
c906108c
SS
3331 }
3332 return retval;
3333}
3334
6b8edb51
PA
3335int
3336remote_target::remote_get_threadinfo (threadref *threadid,
3337 int fieldset,
3338 gdb_ext_thread_info *info)
c906108c 3339{
d01949b6 3340 struct remote_state *rs = get_remote_state ();
c906108c 3341 int result;
c906108c 3342
8d64371b 3343 pack_threadinfo_request (rs->buf.data (), fieldset, threadid);
2e9f7625 3344 putpkt (rs->buf);
8d64371b 3345 getpkt (&rs->buf, 0);
3084dd77
PA
3346
3347 if (rs->buf[0] == '\0')
3348 return 0;
3349
8d64371b 3350 result = remote_unpack_thread_info_response (&rs->buf[2],
23860348 3351 threadid, info);
c906108c
SS
3352 return result;
3353}
3354
c906108c
SS
3355/* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
3356
3357static char *
fba45db2
KB
3358pack_threadlist_request (char *pkt, int startflag, int threadcount,
3359 threadref *nextthread)
c906108c
SS
3360{
3361 *pkt++ = 'q'; /* info query packet */
3362 *pkt++ = 'L'; /* Process LIST or threadLIST request */
23860348 3363 pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */
c906108c
SS
3364 pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */
3365 pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */
3366 *pkt = '\0';
3367 return pkt;
3368}
3369
3370/* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
3371
6b8edb51
PA
3372int
3373remote_target::parse_threadlist_response (char *pkt, int result_limit,
3374 threadref *original_echo,
3375 threadref *resultlist,
3376 int *doneflag)
c906108c 3377{
d01949b6 3378 struct remote_state *rs = get_remote_state ();
c906108c
SS
3379 char *limit;
3380 int count, resultcount, done;
3381
3382 resultcount = 0;
3383 /* Assume the 'q' and 'M chars have been stripped. */
8d64371b 3384 limit = pkt + (rs->buf.size () - BUF_THREAD_ID_SIZE);
23860348 3385 /* done parse past here */
c906108c
SS
3386 pkt = unpack_byte (pkt, &count); /* count field */
3387 pkt = unpack_nibble (pkt, &done);
3388 /* The first threadid is the argument threadid. */
3389 pkt = unpack_threadid (pkt, original_echo); /* should match query packet */
3390 while ((count-- > 0) && (pkt < limit))
3391 {
3392 pkt = unpack_threadid (pkt, resultlist++);
3393 if (resultcount++ >= result_limit)
3394 break;
3395 }
3396 if (doneflag)
3397 *doneflag = done;
3398 return resultcount;
3399}
3400
6dc54d91
PA
3401/* Fetch the next batch of threads from the remote. Returns -1 if the
3402 qL packet is not supported, 0 on error and 1 on success. */
3403
6b8edb51
PA
3404int
3405remote_target::remote_get_threadlist (int startflag, threadref *nextthread,
3406 int result_limit, int *done, int *result_count,
3407 threadref *threadlist)
c906108c 3408{
d01949b6 3409 struct remote_state *rs = get_remote_state ();
c906108c
SS
3410 int result = 1;
3411
23860348 3412 /* Trancate result limit to be smaller than the packet size. */
3e43a32a
MS
3413 if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10)
3414 >= get_remote_packet_size ())
ea9c271d 3415 result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2;
c906108c 3416
8d64371b
TT
3417 pack_threadlist_request (rs->buf.data (), startflag, result_limit,
3418 nextthread);
6d820c5c 3419 putpkt (rs->buf);
8d64371b
TT
3420 getpkt (&rs->buf, 0);
3421 if (rs->buf[0] == '\0')
6dc54d91
PA
3422 {
3423 /* Packet not supported. */
3424 return -1;
3425 }
3426
3427 *result_count =
8d64371b 3428 parse_threadlist_response (&rs->buf[2], result_limit,
6dc54d91 3429 &rs->echo_nextthread, threadlist, done);
c906108c 3430
0d031856 3431 if (!threadmatch (&rs->echo_nextthread, nextthread))
c906108c 3432 {
23860348
MS
3433 /* FIXME: This is a good reason to drop the packet. */
3434 /* Possably, there is a duplicate response. */
c906108c
SS
3435 /* Possabilities :
3436 retransmit immediatly - race conditions
3437 retransmit after timeout - yes
3438 exit
3439 wait for packet, then exit
3440 */
8a3fe4f8 3441 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
23860348 3442 return 0; /* I choose simply exiting. */
c906108c
SS
3443 }
3444 if (*result_count <= 0)
3445 {
3446 if (*done != 1)
3447 {
8a3fe4f8 3448 warning (_("RMT ERROR : failed to get remote thread list."));
c906108c
SS
3449 result = 0;
3450 }
3451 return result; /* break; */
3452 }
3453 if (*result_count > result_limit)
3454 {
3455 *result_count = 0;
8a3fe4f8 3456 warning (_("RMT ERROR: threadlist response longer than requested."));
c906108c
SS
3457 return 0;
3458 }
3459 return result;
3460}
3461
6dc54d91
PA
3462/* Fetch the list of remote threads, with the qL packet, and call
3463 STEPFUNCTION for each thread found. Stops iterating and returns 1
3464 if STEPFUNCTION returns true. Stops iterating and returns 0 if the
3465 STEPFUNCTION returns false. If the packet is not supported,
3466 returns -1. */
c906108c 3467
6b8edb51
PA
3468int
3469remote_target::remote_threadlist_iterator (rmt_thread_action stepfunction,
3470 void *context, int looplimit)
c906108c 3471{
0d031856 3472 struct remote_state *rs = get_remote_state ();
c906108c
SS
3473 int done, i, result_count;
3474 int startflag = 1;
3475 int result = 1;
3476 int loopcount = 0;
c906108c
SS
3477
3478 done = 0;
3479 while (!done)
3480 {
3481 if (loopcount++ > looplimit)
3482 {
3483 result = 0;
8a3fe4f8 3484 warning (_("Remote fetch threadlist -infinite loop-."));
c906108c
SS
3485 break;
3486 }
6dc54d91
PA
3487 result = remote_get_threadlist (startflag, &rs->nextthread,
3488 MAXTHREADLISTRESULTS,
3489 &done, &result_count,
3490 rs->resultthreadlist);
3491 if (result <= 0)
3492 break;
23860348 3493 /* Clear for later iterations. */
c906108c
SS
3494 startflag = 0;
3495 /* Setup to resume next batch of thread references, set nextthread. */
3496 if (result_count >= 1)
0d031856
TT
3497 copy_threadref (&rs->nextthread,
3498 &rs->resultthreadlist[result_count - 1]);
c906108c
SS
3499 i = 0;
3500 while (result_count--)
6dc54d91
PA
3501 {
3502 if (!(*stepfunction) (&rs->resultthreadlist[i++], context))
3503 {
3504 result = 0;
3505 break;
3506 }
3507 }
c906108c
SS
3508 }
3509 return result;
3510}
3511
6dc54d91
PA
3512/* A thread found on the remote target. */
3513
21fe1c75 3514struct thread_item
6dc54d91 3515{
21fe1c75
SM
3516 explicit thread_item (ptid_t ptid_)
3517 : ptid (ptid_)
3518 {}
3519
3520 thread_item (thread_item &&other) = default;
3521 thread_item &operator= (thread_item &&other) = default;
3522
3523 DISABLE_COPY_AND_ASSIGN (thread_item);
3524
6dc54d91
PA
3525 /* The thread's PTID. */
3526 ptid_t ptid;
3527
21fe1c75
SM
3528 /* The thread's extra info. */
3529 std::string extra;
6dc54d91 3530
21fe1c75
SM
3531 /* The thread's name. */
3532 std::string name;
79efa585 3533
6dc54d91 3534 /* The core the thread was running on. -1 if not known. */
21fe1c75 3535 int core = -1;
f6327dcb
KB
3536
3537 /* The thread handle associated with the thread. */
21fe1c75 3538 gdb::byte_vector thread_handle;
21fe1c75 3539};
6dc54d91
PA
3540
3541/* Context passed around to the various methods listing remote
3542 threads. As new threads are found, they're added to the ITEMS
3543 vector. */
3544
3545struct threads_listing_context
3546{
21fe1c75
SM
3547 /* Return true if this object contains an entry for a thread with ptid
3548 PTID. */
6dc54d91 3549
21fe1c75
SM
3550 bool contains_thread (ptid_t ptid) const
3551 {
3552 auto match_ptid = [&] (const thread_item &item)
3553 {
3554 return item.ptid == ptid;
3555 };
80134cf5 3556
21fe1c75
SM
3557 auto it = std::find_if (this->items.begin (),
3558 this->items.end (),
3559 match_ptid);
80134cf5 3560
21fe1c75
SM
3561 return it != this->items.end ();
3562 }
80134cf5 3563
21fe1c75 3564 /* Remove the thread with ptid PTID. */
80134cf5 3565
21fe1c75
SM
3566 void remove_thread (ptid_t ptid)
3567 {
3568 auto match_ptid = [&] (const thread_item &item)
3569 {
3570 return item.ptid == ptid;
3571 };
cbb8991c 3572
21fe1c75
SM
3573 auto it = std::remove_if (this->items.begin (),
3574 this->items.end (),
3575 match_ptid);
cbb8991c 3576
21fe1c75
SM
3577 if (it != this->items.end ())
3578 this->items.erase (it);
3579 }
3580
3581 /* The threads found on the remote target. */
3582 std::vector<thread_item> items;
3583};
cbb8991c 3584
c906108c 3585static int
6dc54d91 3586remote_newthread_step (threadref *ref, void *data)
c906108c 3587{
19ba03f4
SM
3588 struct threads_listing_context *context
3589 = (struct threads_listing_context *) data;
21fe1c75
SM
3590 int pid = inferior_ptid.pid ();
3591 int lwp = threadref_to_int (ref);
3592 ptid_t ptid (pid, lwp);
6dc54d91 3593
21fe1c75 3594 context->items.emplace_back (ptid);
6dc54d91 3595
c906108c
SS
3596 return 1; /* continue iterator */
3597}
3598
3599#define CRAZY_MAX_THREADS 1000
3600
6b8edb51
PA
3601ptid_t
3602remote_target::remote_current_thread (ptid_t oldpid)
c906108c 3603{
d01949b6 3604 struct remote_state *rs = get_remote_state ();
c906108c
SS
3605
3606 putpkt ("qC");
8d64371b 3607 getpkt (&rs->buf, 0);
2e9f7625 3608 if (rs->buf[0] == 'Q' && rs->buf[1] == 'C')
c9f35b34 3609 {
256642e8 3610 const char *obuf;
c9f35b34
KB
3611 ptid_t result;
3612
3613 result = read_ptid (&rs->buf[2], &obuf);
3614 if (*obuf != '\0' && remote_debug)
3615 fprintf_unfiltered (gdb_stdlog,
3616 "warning: garbage in qC reply\n");
3617
3618 return result;
3619 }
c906108c
SS
3620 else
3621 return oldpid;
3622}
3623
6dc54d91 3624/* List remote threads using the deprecated qL packet. */
cce74817 3625
6b8edb51
PA
3626int
3627remote_target::remote_get_threads_with_ql (threads_listing_context *context)
c906108c 3628{
6dc54d91
PA
3629 if (remote_threadlist_iterator (remote_newthread_step, context,
3630 CRAZY_MAX_THREADS) >= 0)
3631 return 1;
3632
3633 return 0;
c906108c
SS
3634}
3635
dc146f7c
VP
3636#if defined(HAVE_LIBEXPAT)
3637
dc146f7c
VP
3638static void
3639start_thread (struct gdb_xml_parser *parser,
3640 const struct gdb_xml_element *element,
4d0fdd9b
SM
3641 void *user_data,
3642 std::vector<gdb_xml_value> &attributes)
dc146f7c 3643{
19ba03f4
SM
3644 struct threads_listing_context *data
3645 = (struct threads_listing_context *) user_data;
3d2c1d41 3646 struct gdb_xml_value *attr;
dc146f7c 3647
4d0fdd9b 3648 char *id = (char *) xml_find_attribute (attributes, "id")->value.get ();
21fe1c75
SM
3649 ptid_t ptid = read_ptid (id, NULL);
3650
3651 data->items.emplace_back (ptid);
3652 thread_item &item = data->items.back ();
dc146f7c 3653
3d2c1d41
PA
3654 attr = xml_find_attribute (attributes, "core");
3655 if (attr != NULL)
4d0fdd9b 3656 item.core = *(ULONGEST *) attr->value.get ();
dc146f7c 3657
79efa585 3658 attr = xml_find_attribute (attributes, "name");
21fe1c75 3659 if (attr != NULL)
4d0fdd9b 3660 item.name = (const char *) attr->value.get ();
79efa585 3661
f6327dcb
KB
3662 attr = xml_find_attribute (attributes, "handle");
3663 if (attr != NULL)
4d0fdd9b 3664 item.thread_handle = hex2bin ((const char *) attr->value.get ());
dc146f7c
VP
3665}
3666
3667static void
3668end_thread (struct gdb_xml_parser *parser,
3669 const struct gdb_xml_element *element,
3670 void *user_data, const char *body_text)
3671{
19ba03f4
SM
3672 struct threads_listing_context *data
3673 = (struct threads_listing_context *) user_data;
dc146f7c 3674
21fe1c75
SM
3675 if (body_text != NULL && *body_text != '\0')
3676 data->items.back ().extra = body_text;
dc146f7c
VP
3677}
3678
3679const struct gdb_xml_attribute thread_attributes[] = {
3680 { "id", GDB_XML_AF_NONE, NULL, NULL },
3681 { "core", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
79efa585 3682 { "name", GDB_XML_AF_OPTIONAL, NULL, NULL },
f6327dcb 3683 { "handle", GDB_XML_AF_OPTIONAL, NULL, NULL },
dc146f7c
VP
3684 { NULL, GDB_XML_AF_NONE, NULL, NULL }
3685};
3686
3687const struct gdb_xml_element thread_children[] = {
3688 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3689};
3690
3691const struct gdb_xml_element threads_children[] = {
3692 { "thread", thread_attributes, thread_children,
3693 GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL,
3694 start_thread, end_thread },
3695 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3696};
3697
3698const struct gdb_xml_element threads_elements[] = {
3699 { "threads", NULL, threads_children,
3700 GDB_XML_EF_NONE, NULL, NULL },
3701 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3702};
3703
3704#endif
3705
6dc54d91 3706/* List remote threads using qXfer:threads:read. */
9d1f7ab2 3707
6b8edb51
PA
3708int
3709remote_target::remote_get_threads_with_qxfer (threads_listing_context *context)
0f71a2f6 3710{
dc146f7c 3711#if defined(HAVE_LIBEXPAT)
4082afcc 3712 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
dc146f7c 3713 {
9018be22 3714 gdb::optional<gdb::char_vector> xml
6b8edb51 3715 = target_read_stralloc (this, TARGET_OBJECT_THREADS, NULL);
efc0eabd 3716
9018be22 3717 if (xml && (*xml)[0] != '\0')
dc146f7c 3718 {
6dc54d91 3719 gdb_xml_parse_quick (_("threads"), "threads.dtd",
9018be22 3720 threads_elements, xml->data (), context);
dc146f7c
VP
3721 }
3722
6dc54d91 3723 return 1;
dc146f7c
VP
3724 }
3725#endif
3726
6dc54d91
PA
3727 return 0;
3728}
3729
3730/* List remote threads using qfThreadInfo/qsThreadInfo. */
3731
6b8edb51
PA
3732int
3733remote_target::remote_get_threads_with_qthreadinfo (threads_listing_context *context)
6dc54d91
PA
3734{
3735 struct remote_state *rs = get_remote_state ();
3736
b80fafe3 3737 if (rs->use_threadinfo_query)
9d1f7ab2 3738 {
256642e8 3739 const char *bufp;
6dc54d91 3740
9d1f7ab2 3741 putpkt ("qfThreadInfo");
8d64371b
TT
3742 getpkt (&rs->buf, 0);
3743 bufp = rs->buf.data ();
9d1f7ab2 3744 if (bufp[0] != '\0') /* q packet recognized */
802188a7 3745 {
9d1f7ab2
MS
3746 while (*bufp++ == 'm') /* reply contains one or more TID */
3747 {
3748 do
3749 {
21fe1c75
SM
3750 ptid_t ptid = read_ptid (bufp, &bufp);
3751 context->items.emplace_back (ptid);
9d1f7ab2
MS
3752 }
3753 while (*bufp++ == ','); /* comma-separated list */
3754 putpkt ("qsThreadInfo");
8d64371b
TT
3755 getpkt (&rs->buf, 0);
3756 bufp = rs->buf.data ();
9d1f7ab2 3757 }
6dc54d91
PA
3758 return 1;
3759 }
3760 else
3761 {
3762 /* Packet not recognized. */
3763 rs->use_threadinfo_query = 0;
9d1f7ab2
MS
3764 }
3765 }
3766
6dc54d91
PA
3767 return 0;
3768}
3769
e8032dde 3770/* Implement the to_update_thread_list function for the remote
6dc54d91
PA
3771 targets. */
3772
f6ac5f3d
PA
3773void
3774remote_target::update_thread_list ()
6dc54d91 3775{
6dc54d91 3776 struct threads_listing_context context;
ab970af1 3777 int got_list = 0;
e8032dde 3778
6dc54d91
PA
3779 /* We have a few different mechanisms to fetch the thread list. Try
3780 them all, starting with the most preferred one first, falling
3781 back to older methods. */
6b8edb51
PA
3782 if (remote_get_threads_with_qxfer (&context)
3783 || remote_get_threads_with_qthreadinfo (&context)
3784 || remote_get_threads_with_ql (&context))
6dc54d91 3785 {
ab970af1
PA
3786 got_list = 1;
3787
21fe1c75 3788 if (context.items.empty ()
f6ac5f3d 3789 && remote_thread_always_alive (inferior_ptid))
7d1a114c
PA
3790 {
3791 /* Some targets don't really support threads, but still
3792 reply an (empty) thread list in response to the thread
3793 listing packets, instead of replying "packet not
3794 supported". Exit early so we don't delete the main
3795 thread. */
7d1a114c
PA
3796 return;
3797 }
3798
ab970af1
PA
3799 /* CONTEXT now holds the current thread list on the remote
3800 target end. Delete GDB-side threads no longer found on the
3801 target. */
08036331 3802 for (thread_info *tp : all_threads_safe ())
cbb8991c 3803 {
21fe1c75 3804 if (!context.contains_thread (tp->ptid))
ab970af1
PA
3805 {
3806 /* Not found. */
00431a78 3807 delete_thread (tp);
ab970af1 3808 }
cbb8991c
DB
3809 }
3810
3811 /* Remove any unreported fork child threads from CONTEXT so
3812 that we don't interfere with follow fork, which is where
3813 creation of such threads is handled. */
3814 remove_new_fork_children (&context);
74531fed 3815
ab970af1 3816 /* And now add threads we don't know about yet to our list. */
21fe1c75 3817 for (thread_item &item : context.items)
6dc54d91 3818 {
21fe1c75 3819 if (item.ptid != null_ptid)
6dc54d91 3820 {
6dc54d91 3821 /* In non-stop mode, we assume new found threads are
0d5b594f
PA
3822 executing until proven otherwise with a stop reply.
3823 In all-stop, we can only get here if all threads are
6dc54d91 3824 stopped. */
0d5b594f 3825 int executing = target_is_non_stop_p () ? 1 : 0;
6dc54d91 3826
21fe1c75 3827 remote_notice_new_inferior (item.ptid, executing);
6dc54d91 3828
08036331 3829 thread_info *tp = find_thread_ptid (item.ptid);
00431a78 3830 remote_thread_info *info = get_remote_thread_info (tp);
21fe1c75 3831 info->core = item.core;
7aabaf9d
SM
3832 info->extra = std::move (item.extra);
3833 info->name = std::move (item.name);
3834 info->thread_handle = std::move (item.thread_handle);
6dc54d91
PA
3835 }
3836 }
3837 }
3838
ab970af1
PA
3839 if (!got_list)
3840 {
3841 /* If no thread listing method is supported, then query whether
3842 each known thread is alive, one by one, with the T packet.
3843 If the target doesn't support threads at all, then this is a
3844 no-op. See remote_thread_alive. */
3845 prune_threads ();
3846 }
9d1f7ab2
MS
3847}
3848
802188a7 3849/*
9d1f7ab2
MS
3850 * Collect a descriptive string about the given thread.
3851 * The target may say anything it wants to about the thread
3852 * (typically info about its blocked / runnable state, name, etc.).
3853 * This string will appear in the info threads display.
802188a7 3854 *
9d1f7ab2
MS
3855 * Optional: targets are not required to implement this function.
3856 */
3857
f6ac5f3d
PA
3858const char *
3859remote_target::extra_thread_info (thread_info *tp)
9d1f7ab2 3860{
d01949b6 3861 struct remote_state *rs = get_remote_state ();
9d1f7ab2
MS
3862 int set;
3863 threadref id;
3864 struct gdb_ext_thread_info threadinfo;
9d1f7ab2 3865
5d93a237 3866 if (rs->remote_desc == 0) /* paranoia */
8e65ff28 3867 internal_error (__FILE__, __LINE__,
e2e0b3e5 3868 _("remote_threads_extra_info"));
9d1f7ab2 3869
d7e15655 3870 if (tp->ptid == magic_null_ptid
e38504b3 3871 || (tp->ptid.pid () != 0 && tp->ptid.lwp () == 0))
60e569b9
PA
3872 /* This is the main thread which was added by GDB. The remote
3873 server doesn't know about it. */
3874 return NULL;
3875
c76a8ea3
PA
3876 std::string &extra = get_remote_thread_info (tp)->extra;
3877
3878 /* If already have cached info, use it. */
3879 if (!extra.empty ())
3880 return extra.c_str ();
3881
4082afcc 3882 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
dc146f7c 3883 {
c76a8ea3
PA
3884 /* If we're using qXfer:threads:read, then the extra info is
3885 included in the XML. So if we didn't have anything cached,
3886 it's because there's really no extra info. */
3887 return NULL;
dc146f7c
VP
3888 }
3889
b80fafe3 3890 if (rs->use_threadextra_query)
9d1f7ab2 3891 {
8d64371b
TT
3892 char *b = rs->buf.data ();
3893 char *endb = b + get_remote_packet_size ();
82f73884
PA
3894
3895 xsnprintf (b, endb - b, "qThreadExtraInfo,");
3896 b += strlen (b);
3897 write_ptid (b, endb, tp->ptid);
3898
2e9f7625 3899 putpkt (rs->buf);
8d64371b 3900 getpkt (&rs->buf, 0);
2e9f7625 3901 if (rs->buf[0] != 0)
9d1f7ab2 3902 {
8d64371b
TT
3903 extra.resize (strlen (rs->buf.data ()) / 2);
3904 hex2bin (rs->buf.data (), (gdb_byte *) &extra[0], extra.size ());
c76a8ea3 3905 return extra.c_str ();
9d1f7ab2 3906 }
0f71a2f6 3907 }
9d1f7ab2
MS
3908
3909 /* If the above query fails, fall back to the old method. */
b80fafe3 3910 rs->use_threadextra_query = 0;
9d1f7ab2
MS
3911 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
3912 | TAG_MOREDISPLAY | TAG_DISPLAY;
e38504b3 3913 int_to_threadref (&id, tp->ptid.lwp ());
9d1f7ab2
MS
3914 if (remote_get_threadinfo (&id, set, &threadinfo))
3915 if (threadinfo.active)
0f71a2f6 3916 {
9d1f7ab2 3917 if (*threadinfo.shortname)
c76a8ea3 3918 string_appendf (extra, " Name: %s", threadinfo.shortname);
9d1f7ab2 3919 if (*threadinfo.display)
c76a8ea3
PA
3920 {
3921 if (!extra.empty ())
3922 extra += ',';
3923 string_appendf (extra, " State: %s", threadinfo.display);
3924 }
9d1f7ab2 3925 if (*threadinfo.more_display)
c5aa993b 3926 {
c76a8ea3
PA
3927 if (!extra.empty ())
3928 extra += ',';
3929 string_appendf (extra, " Priority: %s", threadinfo.more_display);
c5aa993b 3930 }
c76a8ea3 3931 return extra.c_str ();
0f71a2f6 3932 }
9d1f7ab2 3933 return NULL;
0f71a2f6 3934}
c906108c 3935\f
c5aa993b 3936
f6ac5f3d
PA
3937bool
3938remote_target::static_tracepoint_marker_at (CORE_ADDR addr,
3939 struct static_tracepoint_marker *marker)
0fb4aa4b
PA
3940{
3941 struct remote_state *rs = get_remote_state ();
8d64371b 3942 char *p = rs->buf.data ();
0fb4aa4b 3943
bba74b36 3944 xsnprintf (p, get_remote_packet_size (), "qTSTMat:");
0fb4aa4b
PA
3945 p += strlen (p);
3946 p += hexnumstr (p, addr);
3947 putpkt (rs->buf);
8d64371b
TT
3948 getpkt (&rs->buf, 0);
3949 p = rs->buf.data ();
0fb4aa4b
PA
3950
3951 if (*p == 'E')
3952 error (_("Remote failure reply: %s"), p);
3953
3954 if (*p++ == 'm')
3955 {
256642e8 3956 parse_static_tracepoint_marker_definition (p, NULL, marker);
5d9310c4 3957 return true;
0fb4aa4b
PA
3958 }
3959
5d9310c4 3960 return false;
0fb4aa4b
PA
3961}
3962
f6ac5f3d
PA
3963std::vector<static_tracepoint_marker>
3964remote_target::static_tracepoint_markers_by_strid (const char *strid)
0fb4aa4b
PA
3965{
3966 struct remote_state *rs = get_remote_state ();
5d9310c4 3967 std::vector<static_tracepoint_marker> markers;
256642e8 3968 const char *p;
5d9310c4 3969 static_tracepoint_marker marker;
0fb4aa4b
PA
3970
3971 /* Ask for a first packet of static tracepoint marker
3972 definition. */
3973 putpkt ("qTfSTM");
8d64371b
TT
3974 getpkt (&rs->buf, 0);
3975 p = rs->buf.data ();
0fb4aa4b
PA
3976 if (*p == 'E')
3977 error (_("Remote failure reply: %s"), p);
3978
0fb4aa4b
PA
3979 while (*p++ == 'm')
3980 {
0fb4aa4b
PA
3981 do
3982 {
5d9310c4 3983 parse_static_tracepoint_marker_definition (p, &p, &marker);
0fb4aa4b 3984
5d9310c4
SM
3985 if (strid == NULL || marker.str_id == strid)
3986 markers.push_back (std::move (marker));
0fb4aa4b
PA
3987 }
3988 while (*p++ == ','); /* comma-separated list */
3989 /* Ask for another packet of static tracepoint definition. */
3990 putpkt ("qTsSTM");
8d64371b
TT
3991 getpkt (&rs->buf, 0);
3992 p = rs->buf.data ();
0fb4aa4b
PA
3993 }
3994
0fb4aa4b
PA
3995 return markers;
3996}
3997
3998\f
10760264
JB
3999/* Implement the to_get_ada_task_ptid function for the remote targets. */
4000
f6ac5f3d
PA
4001ptid_t
4002remote_target::get_ada_task_ptid (long lwp, long thread)
10760264 4003{
e99b03dc 4004 return ptid_t (inferior_ptid.pid (), lwp, 0);
10760264
JB
4005}
4006\f
4007
24b06219 4008/* Restart the remote side; this is an extended protocol operation. */
c906108c 4009
6b8edb51
PA
4010void
4011remote_target::extended_remote_restart ()
c906108c 4012{
d01949b6 4013 struct remote_state *rs = get_remote_state ();
c906108c
SS
4014
4015 /* Send the restart command; for reasons I don't understand the
4016 remote side really expects a number after the "R". */
8d64371b 4017 xsnprintf (rs->buf.data (), get_remote_packet_size (), "R%x", 0);
6d820c5c 4018 putpkt (rs->buf);
c906108c 4019
ad9a8f3f 4020 remote_fileio_reset ();
c906108c
SS
4021}
4022\f
4023/* Clean up connection to a remote debugger. */
4024
f6ac5f3d
PA
4025void
4026remote_target::close ()
c906108c 4027{
048094ac 4028 /* Make sure we leave stdin registered in the event loop. */
f6ac5f3d 4029 terminal_ours ();
ce5ce7ed 4030
ce5ce7ed 4031 /* We don't have a connection to the remote stub anymore. Get rid
f67fd822
PM
4032 of all the inferiors and their threads we were controlling.
4033 Reset inferior_ptid to null_ptid first, as otherwise has_stack_frame
4034 will be unable to find the thread corresponding to (pid, 0, 0). */
0f2caa1b 4035 inferior_ptid = null_ptid;
f67fd822 4036 discard_all_inferiors ();
ce5ce7ed 4037
6b8edb51
PA
4038 trace_reset_local_state ();
4039
4040 delete this;
4041}
4042
4043remote_target::~remote_target ()
4044{
4045 struct remote_state *rs = get_remote_state ();
4046
4047 /* Check for NULL because we may get here with a partially
4048 constructed target/connection. */
4049 if (rs->remote_desc == nullptr)
4050 return;
4051
4052 serial_close (rs->remote_desc);
4053
4054 /* We are destroying the remote target, so we should discard
f48ff2a7 4055 everything of this target. */
6b8edb51 4056 discard_pending_stop_replies_in_queue ();
74531fed 4057
6b8edb51
PA
4058 if (rs->remote_async_inferior_event_token)
4059 delete_async_event_handler (&rs->remote_async_inferior_event_token);
722247f1 4060
5965e028 4061 remote_notif_state_xfree (rs->notif_state);
c906108c
SS
4062}
4063
23860348 4064/* Query the remote side for the text, data and bss offsets. */
c906108c 4065
6b8edb51
PA
4066void
4067remote_target::get_offsets ()
c906108c 4068{
d01949b6 4069 struct remote_state *rs = get_remote_state ();
2e9f7625 4070 char *buf;
085dd6e6 4071 char *ptr;
31d99776
DJ
4072 int lose, num_segments = 0, do_sections, do_segments;
4073 CORE_ADDR text_addr, data_addr, bss_addr, segments[2];
c906108c 4074 struct section_offsets *offs;
31d99776
DJ
4075 struct symfile_segment_data *data;
4076
4077 if (symfile_objfile == NULL)
4078 return;
c906108c
SS
4079
4080 putpkt ("qOffsets");
8d64371b
TT
4081 getpkt (&rs->buf, 0);
4082 buf = rs->buf.data ();
c906108c
SS
4083
4084 if (buf[0] == '\000')
4085 return; /* Return silently. Stub doesn't support
23860348 4086 this command. */
c906108c
SS
4087 if (buf[0] == 'E')
4088 {
8a3fe4f8 4089 warning (_("Remote failure reply: %s"), buf);
c906108c
SS
4090 return;
4091 }
4092
4093 /* Pick up each field in turn. This used to be done with scanf, but
4094 scanf will make trouble if CORE_ADDR size doesn't match
4095 conversion directives correctly. The following code will work
4096 with any size of CORE_ADDR. */
4097 text_addr = data_addr = bss_addr = 0;
4098 ptr = buf;
4099 lose = 0;
4100
61012eef 4101 if (startswith (ptr, "Text="))
c906108c
SS
4102 {
4103 ptr += 5;
4104 /* Don't use strtol, could lose on big values. */
4105 while (*ptr && *ptr != ';')
4106 text_addr = (text_addr << 4) + fromhex (*ptr++);
c906108c 4107
61012eef 4108 if (startswith (ptr, ";Data="))
31d99776
DJ
4109 {
4110 ptr += 6;
4111 while (*ptr && *ptr != ';')
4112 data_addr = (data_addr << 4) + fromhex (*ptr++);
4113 }
4114 else
4115 lose = 1;
4116
61012eef 4117 if (!lose && startswith (ptr, ";Bss="))
31d99776
DJ
4118 {
4119 ptr += 5;
4120 while (*ptr && *ptr != ';')
4121 bss_addr = (bss_addr << 4) + fromhex (*ptr++);
c906108c 4122
31d99776
DJ
4123 if (bss_addr != data_addr)
4124 warning (_("Target reported unsupported offsets: %s"), buf);
4125 }
4126 else
4127 lose = 1;
4128 }
61012eef 4129 else if (startswith (ptr, "TextSeg="))
c906108c 4130 {
31d99776
DJ
4131 ptr += 8;
4132 /* Don't use strtol, could lose on big values. */
c906108c 4133 while (*ptr && *ptr != ';')
31d99776
DJ
4134 text_addr = (text_addr << 4) + fromhex (*ptr++);
4135 num_segments = 1;
4136
61012eef 4137 if (startswith (ptr, ";DataSeg="))
31d99776
DJ
4138 {
4139 ptr += 9;
4140 while (*ptr && *ptr != ';')
4141 data_addr = (data_addr << 4) + fromhex (*ptr++);
4142 num_segments++;
4143 }
c906108c
SS
4144 }
4145 else
4146 lose = 1;
4147
4148 if (lose)
8a3fe4f8 4149 error (_("Malformed response to offset query, %s"), buf);
31d99776
DJ
4150 else if (*ptr != '\0')
4151 warning (_("Target reported unsupported offsets: %s"), buf);
c906108c 4152
802188a7 4153 offs = ((struct section_offsets *)
a39a16c4 4154 alloca (SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections)));
802188a7 4155 memcpy (offs, symfile_objfile->section_offsets,
a39a16c4 4156 SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections));
c906108c 4157
31d99776
DJ
4158 data = get_symfile_segment_data (symfile_objfile->obfd);
4159 do_segments = (data != NULL);
4160 do_sections = num_segments == 0;
c906108c 4161
28c32713 4162 if (num_segments > 0)
31d99776 4163 {
31d99776
DJ
4164 segments[0] = text_addr;
4165 segments[1] = data_addr;
4166 }
28c32713
JB
4167 /* If we have two segments, we can still try to relocate everything
4168 by assuming that the .text and .data offsets apply to the whole
4169 text and data segments. Convert the offsets given in the packet
4170 to base addresses for symfile_map_offsets_to_segments. */
4171 else if (data && data->num_segments == 2)
4172 {
4173 segments[0] = data->segment_bases[0] + text_addr;
4174 segments[1] = data->segment_bases[1] + data_addr;
4175 num_segments = 2;
4176 }
8d385431
DJ
4177 /* If the object file has only one segment, assume that it is text
4178 rather than data; main programs with no writable data are rare,
4179 but programs with no code are useless. Of course the code might
4180 have ended up in the data segment... to detect that we would need
4181 the permissions here. */
4182 else if (data && data->num_segments == 1)
4183 {
4184 segments[0] = data->segment_bases[0] + text_addr;
4185 num_segments = 1;
4186 }
28c32713
JB
4187 /* There's no way to relocate by segment. */
4188 else
4189 do_segments = 0;
31d99776
DJ
4190
4191 if (do_segments)
4192 {
4193 int ret = symfile_map_offsets_to_segments (symfile_objfile->obfd, data,
4194 offs, num_segments, segments);
4195
4196 if (ret == 0 && !do_sections)
3e43a32a
MS
4197 error (_("Can not handle qOffsets TextSeg "
4198 "response with this symbol file"));
31d99776
DJ
4199
4200 if (ret > 0)
4201 do_sections = 0;
4202 }
c906108c 4203
9ef895d6
DJ
4204 if (data)
4205 free_symfile_segment_data (data);
31d99776
DJ
4206
4207 if (do_sections)
4208 {
4209 offs->offsets[SECT_OFF_TEXT (symfile_objfile)] = text_addr;
4210
3e43a32a
MS
4211 /* This is a temporary kludge to force data and bss to use the
4212 same offsets because that's what nlmconv does now. The real
4213 solution requires changes to the stub and remote.c that I
4214 don't have time to do right now. */
31d99776
DJ
4215
4216 offs->offsets[SECT_OFF_DATA (symfile_objfile)] = data_addr;
4217 offs->offsets[SECT_OFF_BSS (symfile_objfile)] = data_addr;
4218 }
c906108c
SS
4219
4220 objfile_relocate (symfile_objfile, offs);
4221}
4222
9a7071a8 4223/* Send interrupt_sequence to remote target. */
6b8edb51
PA
4224
4225void
4226remote_target::send_interrupt_sequence ()
9a7071a8 4227{
5d93a237
TT
4228 struct remote_state *rs = get_remote_state ();
4229
9a7071a8 4230 if (interrupt_sequence_mode == interrupt_sequence_control_c)
c33e31fd 4231 remote_serial_write ("\x03", 1);
9a7071a8 4232 else if (interrupt_sequence_mode == interrupt_sequence_break)
5d93a237 4233 serial_send_break (rs->remote_desc);
9a7071a8
JB
4234 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
4235 {
5d93a237 4236 serial_send_break (rs->remote_desc);
c33e31fd 4237 remote_serial_write ("g", 1);
9a7071a8
JB
4238 }
4239 else
4240 internal_error (__FILE__, __LINE__,
4241 _("Invalid value for interrupt_sequence_mode: %s."),
4242 interrupt_sequence_mode);
4243}
4244
3405876a
PA
4245
4246/* If STOP_REPLY is a T stop reply, look for the "thread" register,
4247 and extract the PTID. Returns NULL_PTID if not found. */
4248
4249static ptid_t
4250stop_reply_extract_thread (char *stop_reply)
4251{
4252 if (stop_reply[0] == 'T' && strlen (stop_reply) > 3)
4253 {
256642e8 4254 const char *p;
3405876a
PA
4255
4256 /* Txx r:val ; r:val (...) */
4257 p = &stop_reply[3];
4258
4259 /* Look for "register" named "thread". */
4260 while (*p != '\0')
4261 {
256642e8 4262 const char *p1;
3405876a
PA
4263
4264 p1 = strchr (p, ':');
4265 if (p1 == NULL)
4266 return null_ptid;
4267
4268 if (strncmp (p, "thread", p1 - p) == 0)
4269 return read_ptid (++p1, &p);
4270
4271 p1 = strchr (p, ';');
4272 if (p1 == NULL)
4273 return null_ptid;
4274 p1++;
4275
4276 p = p1;
4277 }
4278 }
4279
4280 return null_ptid;
4281}
4282
b7ea362b
PA
4283/* Determine the remote side's current thread. If we have a stop
4284 reply handy (in WAIT_STATUS), maybe it's a T stop reply with a
4285 "thread" register we can extract the current thread from. If not,
4286 ask the remote which is the current thread with qC. The former
4287 method avoids a roundtrip. */
4288
6b8edb51
PA
4289ptid_t
4290remote_target::get_current_thread (char *wait_status)
b7ea362b 4291{
6a49a997 4292 ptid_t ptid = null_ptid;
b7ea362b
PA
4293
4294 /* Note we don't use remote_parse_stop_reply as that makes use of
4295 the target architecture, which we haven't yet fully determined at
4296 this point. */
4297 if (wait_status != NULL)
4298 ptid = stop_reply_extract_thread (wait_status);
d7e15655 4299 if (ptid == null_ptid)
b7ea362b
PA
4300 ptid = remote_current_thread (inferior_ptid);
4301
4302 return ptid;
4303}
4304
49c62f2e
PA
4305/* Query the remote target for which is the current thread/process,
4306 add it to our tables, and update INFERIOR_PTID. The caller is
4307 responsible for setting the state such that the remote end is ready
3405876a
PA
4308 to return the current thread.
4309
4310 This function is called after handling the '?' or 'vRun' packets,
4311 whose response is a stop reply from which we can also try
4312 extracting the thread. If the target doesn't support the explicit
4313 qC query, we infer the current thread from that stop reply, passed
4314 in in WAIT_STATUS, which may be NULL. */
49c62f2e 4315
6b8edb51
PA
4316void
4317remote_target::add_current_inferior_and_thread (char *wait_status)
49c62f2e
PA
4318{
4319 struct remote_state *rs = get_remote_state ();
4320 int fake_pid_p = 0;
49c62f2e
PA
4321
4322 inferior_ptid = null_ptid;
4323
b7ea362b 4324 /* Now, if we have thread information, update inferior_ptid. */
87215ad1 4325 ptid_t curr_ptid = get_current_thread (wait_status);
3405876a 4326
87215ad1 4327 if (curr_ptid != null_ptid)
49c62f2e
PA
4328 {
4329 if (!remote_multi_process_p (rs))
4330 fake_pid_p = 1;
49c62f2e
PA
4331 }
4332 else
4333 {
4334 /* Without this, some commands which require an active target
4335 (such as kill) won't work. This variable serves (at least)
4336 double duty as both the pid of the target process (if it has
4337 such), and as a flag indicating that a target is active. */
87215ad1 4338 curr_ptid = magic_null_ptid;
49c62f2e
PA
4339 fake_pid_p = 1;
4340 }
4341
e99b03dc 4342 remote_add_inferior (fake_pid_p, curr_ptid.pid (), -1, 1);
49c62f2e 4343
87215ad1
SDJ
4344 /* Add the main thread and switch to it. Don't try reading
4345 registers yet, since we haven't fetched the target description
4346 yet. */
4347 thread_info *tp = add_thread_silent (curr_ptid);
4348 switch_to_thread_no_regs (tp);
49c62f2e
PA
4349}
4350
6efcd9a8
PA
4351/* Print info about a thread that was found already stopped on
4352 connection. */
4353
4354static void
4355print_one_stopped_thread (struct thread_info *thread)
4356{
4357 struct target_waitstatus *ws = &thread->suspend.waitstatus;
4358
00431a78 4359 switch_to_thread (thread);
f2ffa92b 4360 thread->suspend.stop_pc = get_frame_pc (get_current_frame ());
6efcd9a8
PA
4361 set_current_sal_from_frame (get_current_frame ());
4362
4363 thread->suspend.waitstatus_pending_p = 0;
4364
4365 if (ws->kind == TARGET_WAITKIND_STOPPED)
4366 {
4367 enum gdb_signal sig = ws->value.sig;
4368
4369 if (signal_print_state (sig))
76727919 4370 gdb::observers::signal_received.notify (sig);
6efcd9a8 4371 }
76727919 4372 gdb::observers::normal_stop.notify (NULL, 1);
6efcd9a8
PA
4373}
4374
221e1a37
PA
4375/* Process all initial stop replies the remote side sent in response
4376 to the ? packet. These indicate threads that were already stopped
4377 on initial connection. We mark these threads as stopped and print
4378 their current frame before giving the user the prompt. */
4379
6b8edb51
PA
4380void
4381remote_target::process_initial_stop_replies (int from_tty)
221e1a37
PA
4382{
4383 int pending_stop_replies = stop_reply_queue_length ();
6efcd9a8
PA
4384 struct thread_info *selected = NULL;
4385 struct thread_info *lowest_stopped = NULL;
4386 struct thread_info *first = NULL;
221e1a37
PA
4387
4388 /* Consume the initial pending events. */
4389 while (pending_stop_replies-- > 0)
4390 {
4391 ptid_t waiton_ptid = minus_one_ptid;
4392 ptid_t event_ptid;
4393 struct target_waitstatus ws;
4394 int ignore_event = 0;
4395
4396 memset (&ws, 0, sizeof (ws));
4397 event_ptid = target_wait (waiton_ptid, &ws, TARGET_WNOHANG);
4398 if (remote_debug)
4399 print_target_wait_results (waiton_ptid, event_ptid, &ws);
4400
4401 switch (ws.kind)
4402 {
4403 case TARGET_WAITKIND_IGNORE:
4404 case TARGET_WAITKIND_NO_RESUMED:
4405 case TARGET_WAITKIND_SIGNALLED:
4406 case TARGET_WAITKIND_EXITED:
4407 /* We shouldn't see these, but if we do, just ignore. */
4408 if (remote_debug)
4409 fprintf_unfiltered (gdb_stdlog, "remote: event ignored\n");
4410 ignore_event = 1;
4411 break;
4412
4413 case TARGET_WAITKIND_EXECD:
4414 xfree (ws.value.execd_pathname);
4415 break;
4416 default:
4417 break;
4418 }
4419
4420 if (ignore_event)
4421 continue;
4422
b926417a 4423 struct thread_info *evthread = find_thread_ptid (event_ptid);
221e1a37
PA
4424
4425 if (ws.kind == TARGET_WAITKIND_STOPPED)
4426 {
4427 enum gdb_signal sig = ws.value.sig;
4428
4429 /* Stubs traditionally report SIGTRAP as initial signal,
4430 instead of signal 0. Suppress it. */
4431 if (sig == GDB_SIGNAL_TRAP)
4432 sig = GDB_SIGNAL_0;
b926417a 4433 evthread->suspend.stop_signal = sig;
6efcd9a8
PA
4434 ws.value.sig = sig;
4435 }
221e1a37 4436
b926417a 4437 evthread->suspend.waitstatus = ws;
6efcd9a8
PA
4438
4439 if (ws.kind != TARGET_WAITKIND_STOPPED
4440 || ws.value.sig != GDB_SIGNAL_0)
b926417a 4441 evthread->suspend.waitstatus_pending_p = 1;
6efcd9a8
PA
4442
4443 set_executing (event_ptid, 0);
4444 set_running (event_ptid, 0);
b926417a 4445 get_remote_thread_info (evthread)->vcont_resumed = 0;
6efcd9a8
PA
4446 }
4447
4448 /* "Notice" the new inferiors before anything related to
4449 registers/memory. */
08036331 4450 for (inferior *inf : all_non_exited_inferiors ())
6efcd9a8 4451 {
6efcd9a8
PA
4452 inf->needs_setup = 1;
4453
4454 if (non_stop)
4455 {
08036331 4456 thread_info *thread = any_live_thread_of_inferior (inf);
00431a78 4457 notice_new_inferior (thread, thread->state == THREAD_RUNNING,
6efcd9a8
PA
4458 from_tty);
4459 }
4460 }
4461
4462 /* If all-stop on top of non-stop, pause all threads. Note this
4463 records the threads' stop pc, so must be done after "noticing"
4464 the inferiors. */
4465 if (!non_stop)
4466 {
4467 stop_all_threads ();
4468
4469 /* If all threads of an inferior were already stopped, we
4470 haven't setup the inferior yet. */
08036331 4471 for (inferior *inf : all_non_exited_inferiors ())
6efcd9a8 4472 {
6efcd9a8
PA
4473 if (inf->needs_setup)
4474 {
08036331 4475 thread_info *thread = any_live_thread_of_inferior (inf);
6efcd9a8
PA
4476 switch_to_thread_no_regs (thread);
4477 setup_inferior (0);
4478 }
4479 }
221e1a37 4480 }
6efcd9a8
PA
4481
4482 /* Now go over all threads that are stopped, and print their current
4483 frame. If all-stop, then if there's a signalled thread, pick
4484 that as current. */
08036331 4485 for (thread_info *thread : all_non_exited_threads ())
6efcd9a8 4486 {
6efcd9a8
PA
4487 if (first == NULL)
4488 first = thread;
4489
4490 if (!non_stop)
00431a78 4491 thread->set_running (false);
6efcd9a8
PA
4492 else if (thread->state != THREAD_STOPPED)
4493 continue;
4494
6efcd9a8
PA
4495 if (selected == NULL
4496 && thread->suspend.waitstatus_pending_p)
4497 selected = thread;
4498
5d5658a1
PA
4499 if (lowest_stopped == NULL
4500 || thread->inf->num < lowest_stopped->inf->num
4501 || thread->per_inf_num < lowest_stopped->per_inf_num)
6efcd9a8
PA
4502 lowest_stopped = thread;
4503
4504 if (non_stop)
4505 print_one_stopped_thread (thread);
4506 }
4507
4508 /* In all-stop, we only print the status of one thread, and leave
4509 others with their status pending. */
4510 if (!non_stop)
4511 {
08036331 4512 thread_info *thread = selected;
6efcd9a8
PA
4513 if (thread == NULL)
4514 thread = lowest_stopped;
4515 if (thread == NULL)
4516 thread = first;
4517
4518 print_one_stopped_thread (thread);
4519 }
4520
4521 /* For "info program". */
08036331 4522 thread_info *thread = inferior_thread ();
6efcd9a8
PA
4523 if (thread->state == THREAD_STOPPED)
4524 set_last_target_status (inferior_ptid, thread->suspend.waitstatus);
221e1a37
PA
4525}
4526
048094ac
PA
4527/* Start the remote connection and sync state. */
4528
f6ac5f3d
PA
4529void
4530remote_target::start_remote (int from_tty, int extended_p)
c906108c 4531{
c8d104ad
PA
4532 struct remote_state *rs = get_remote_state ();
4533 struct packet_config *noack_config;
2d717e4f 4534 char *wait_status = NULL;
8621d6a9 4535
048094ac
PA
4536 /* Signal other parts that we're going through the initial setup,
4537 and so things may not be stable yet. E.g., we don't try to
4538 install tracepoints until we've relocated symbols. Also, a
4539 Ctrl-C before we're connected and synced up can't interrupt the
4540 target. Instead, it offers to drop the (potentially wedged)
4541 connection. */
4542 rs->starting_up = 1;
4543
522002f9 4544 QUIT;
c906108c 4545
9a7071a8
JB
4546 if (interrupt_on_connect)
4547 send_interrupt_sequence ();
4548
57e12211 4549 /* Ack any packet which the remote side has already sent. */
048094ac 4550 remote_serial_write ("+", 1);
1e51243a 4551
c8d104ad
PA
4552 /* The first packet we send to the target is the optional "supported
4553 packets" request. If the target can answer this, it will tell us
4554 which later probes to skip. */
4555 remote_query_supported ();
4556
d914c394 4557 /* If the stub wants to get a QAllow, compose one and send it. */
4082afcc 4558 if (packet_support (PACKET_QAllow) != PACKET_DISABLE)
f6ac5f3d 4559 set_permissions ();
d914c394 4560
57809e5e
JK
4561 /* gdbserver < 7.7 (before its fix from 2013-12-11) did reply to any
4562 unknown 'v' packet with string "OK". "OK" gets interpreted by GDB
4563 as a reply to known packet. For packet "vFile:setfs:" it is an
4564 invalid reply and GDB would return error in
4565 remote_hostio_set_filesystem, making remote files access impossible.
4566 Disable "vFile:setfs:" in such case. Do not disable other 'v' packets as
4567 other "vFile" packets get correctly detected even on gdbserver < 7.7. */
4568 {
4569 const char v_mustreplyempty[] = "vMustReplyEmpty";
4570
4571 putpkt (v_mustreplyempty);
8d64371b
TT
4572 getpkt (&rs->buf, 0);
4573 if (strcmp (rs->buf.data (), "OK") == 0)
57809e5e 4574 remote_protocol_packets[PACKET_vFile_setfs].support = PACKET_DISABLE;
8d64371b 4575 else if (strcmp (rs->buf.data (), "") != 0)
57809e5e 4576 error (_("Remote replied unexpectedly to '%s': %s"), v_mustreplyempty,
8d64371b 4577 rs->buf.data ());
57809e5e
JK
4578 }
4579
c8d104ad
PA
4580 /* Next, we possibly activate noack mode.
4581
4582 If the QStartNoAckMode packet configuration is set to AUTO,
4583 enable noack mode if the stub reported a wish for it with
4584 qSupported.
4585
4586 If set to TRUE, then enable noack mode even if the stub didn't
4587 report it in qSupported. If the stub doesn't reply OK, the
4588 session ends with an error.
4589
4590 If FALSE, then don't activate noack mode, regardless of what the
4591 stub claimed should be the default with qSupported. */
4592
4593 noack_config = &remote_protocol_packets[PACKET_QStartNoAckMode];
4082afcc 4594 if (packet_config_support (noack_config) != PACKET_DISABLE)
c8d104ad
PA
4595 {
4596 putpkt ("QStartNoAckMode");
8d64371b 4597 getpkt (&rs->buf, 0);
c8d104ad
PA
4598 if (packet_ok (rs->buf, noack_config) == PACKET_OK)
4599 rs->noack_mode = 1;
4600 }
4601
04bd08de 4602 if (extended_p)
5fe04517
PA
4603 {
4604 /* Tell the remote that we are using the extended protocol. */
4605 putpkt ("!");
8d64371b 4606 getpkt (&rs->buf, 0);
5fe04517
PA
4607 }
4608
9b224c5e
PA
4609 /* Let the target know which signals it is allowed to pass down to
4610 the program. */
4611 update_signals_program_target ();
4612
d962ef82
DJ
4613 /* Next, if the target can specify a description, read it. We do
4614 this before anything involving memory or registers. */
4615 target_find_description ();
4616
6c95b8df
PA
4617 /* Next, now that we know something about the target, update the
4618 address spaces in the program spaces. */
4619 update_address_spaces ();
4620
50c71eaf
PA
4621 /* On OSs where the list of libraries is global to all
4622 processes, we fetch them early. */
f5656ead 4623 if (gdbarch_has_global_solist (target_gdbarch ()))
e696b3ad 4624 solib_add (NULL, from_tty, auto_solib_add);
50c71eaf 4625
6efcd9a8 4626 if (target_is_non_stop_p ())
74531fed 4627 {
4082afcc 4628 if (packet_support (PACKET_QNonStop) != PACKET_ENABLE)
3e43a32a
MS
4629 error (_("Non-stop mode requested, but remote "
4630 "does not support non-stop"));
74531fed
PA
4631
4632 putpkt ("QNonStop:1");
8d64371b 4633 getpkt (&rs->buf, 0);
74531fed 4634
8d64371b
TT
4635 if (strcmp (rs->buf.data (), "OK") != 0)
4636 error (_("Remote refused setting non-stop mode with: %s"),
4637 rs->buf.data ());
74531fed
PA
4638
4639 /* Find about threads and processes the stub is already
4640 controlling. We default to adding them in the running state.
4641 The '?' query below will then tell us about which threads are
4642 stopped. */
f6ac5f3d 4643 this->update_thread_list ();
74531fed 4644 }
4082afcc 4645 else if (packet_support (PACKET_QNonStop) == PACKET_ENABLE)
74531fed
PA
4646 {
4647 /* Don't assume that the stub can operate in all-stop mode.
e6f3fa52 4648 Request it explicitly. */
74531fed 4649 putpkt ("QNonStop:0");
8d64371b 4650 getpkt (&rs->buf, 0);
74531fed 4651
8d64371b
TT
4652 if (strcmp (rs->buf.data (), "OK") != 0)
4653 error (_("Remote refused setting all-stop mode with: %s"),
4654 rs->buf.data ());
74531fed
PA
4655 }
4656
a0743c90
YQ
4657 /* Upload TSVs regardless of whether the target is running or not. The
4658 remote stub, such as GDBserver, may have some predefined or builtin
4659 TSVs, even if the target is not running. */
f6ac5f3d 4660 if (get_trace_status (current_trace_status ()) != -1)
a0743c90
YQ
4661 {
4662 struct uploaded_tsv *uploaded_tsvs = NULL;
4663
f6ac5f3d 4664 upload_trace_state_variables (&uploaded_tsvs);
a0743c90
YQ
4665 merge_uploaded_trace_state_variables (&uploaded_tsvs);
4666 }
4667
2d717e4f
DJ
4668 /* Check whether the target is running now. */
4669 putpkt ("?");
8d64371b 4670 getpkt (&rs->buf, 0);
2d717e4f 4671
6efcd9a8 4672 if (!target_is_non_stop_p ())
2d717e4f 4673 {
74531fed 4674 if (rs->buf[0] == 'W' || rs->buf[0] == 'X')
2d717e4f 4675 {
04bd08de 4676 if (!extended_p)
74531fed 4677 error (_("The target is not running (try extended-remote?)"));
c35b1492
PA
4678
4679 /* We're connected, but not running. Drop out before we
4680 call start_remote. */
e278ad5b 4681 rs->starting_up = 0;
c35b1492 4682 return;
2d717e4f
DJ
4683 }
4684 else
74531fed 4685 {
74531fed 4686 /* Save the reply for later. */
8d64371b
TT
4687 wait_status = (char *) alloca (strlen (rs->buf.data ()) + 1);
4688 strcpy (wait_status, rs->buf.data ());
74531fed
PA
4689 }
4690
b7ea362b 4691 /* Fetch thread list. */
e8032dde 4692 target_update_thread_list ();
b7ea362b 4693
74531fed
PA
4694 /* Let the stub know that we want it to return the thread. */
4695 set_continue_thread (minus_one_ptid);
4696
b7ea362b
PA
4697 if (thread_count () == 0)
4698 {
4699 /* Target has no concept of threads at all. GDB treats
4700 non-threaded target as single-threaded; add a main
4701 thread. */
4702 add_current_inferior_and_thread (wait_status);
4703 }
4704 else
4705 {
4706 /* We have thread information; select the thread the target
4707 says should be current. If we're reconnecting to a
4708 multi-threaded program, this will ideally be the thread
4709 that last reported an event before GDB disconnected. */
4710 inferior_ptid = get_current_thread (wait_status);
d7e15655 4711 if (inferior_ptid == null_ptid)
b7ea362b
PA
4712 {
4713 /* Odd... The target was able to list threads, but not
4714 tell us which thread was current (no "thread"
4715 register in T stop reply?). Just pick the first
4716 thread in the thread list then. */
c9f35b34
KB
4717
4718 if (remote_debug)
4719 fprintf_unfiltered (gdb_stdlog,
4720 "warning: couldn't determine remote "
4721 "current thread; picking first in list.\n");
4722
08036331 4723 inferior_ptid = inferior_list->thread_list->ptid;
b7ea362b
PA
4724 }
4725 }
74531fed 4726
6e586cc5
YQ
4727 /* init_wait_for_inferior should be called before get_offsets in order
4728 to manage `inserted' flag in bp loc in a correct state.
4729 breakpoint_init_inferior, called from init_wait_for_inferior, set
4730 `inserted' flag to 0, while before breakpoint_re_set, called from
4731 start_remote, set `inserted' flag to 1. In the initialization of
4732 inferior, breakpoint_init_inferior should be called first, and then
4733 breakpoint_re_set can be called. If this order is broken, state of
4734 `inserted' flag is wrong, and cause some problems on breakpoint
4735 manipulation. */
4736 init_wait_for_inferior ();
4737
74531fed
PA
4738 get_offsets (); /* Get text, data & bss offsets. */
4739
d962ef82
DJ
4740 /* If we could not find a description using qXfer, and we know
4741 how to do it some other way, try again. This is not
4742 supported for non-stop; it could be, but it is tricky if
4743 there are no stopped threads when we connect. */
f6ac5f3d 4744 if (remote_read_description_p (this)
f5656ead 4745 && gdbarch_target_desc (target_gdbarch ()) == NULL)
d962ef82
DJ
4746 {
4747 target_clear_description ();
4748 target_find_description ();
4749 }
4750
74531fed
PA
4751 /* Use the previously fetched status. */
4752 gdb_assert (wait_status != NULL);
8d64371b 4753 strcpy (rs->buf.data (), wait_status);
74531fed
PA
4754 rs->cached_wait_status = 1;
4755
f6ac5f3d 4756 ::start_remote (from_tty); /* Initialize gdb process mechanisms. */
2d717e4f
DJ
4757 }
4758 else
4759 {
68c97600
PA
4760 /* Clear WFI global state. Do this before finding about new
4761 threads and inferiors, and setting the current inferior.
4762 Otherwise we would clear the proceed status of the current
4763 inferior when we want its stop_soon state to be preserved
4764 (see notice_new_inferior). */
4765 init_wait_for_inferior ();
4766
74531fed
PA
4767 /* In non-stop, we will either get an "OK", meaning that there
4768 are no stopped threads at this time; or, a regular stop
4769 reply. In the latter case, there may be more than one thread
4770 stopped --- we pull them all out using the vStopped
4771 mechanism. */
8d64371b 4772 if (strcmp (rs->buf.data (), "OK") != 0)
74531fed 4773 {
722247f1 4774 struct notif_client *notif = &notif_client_stop;
2d717e4f 4775
722247f1
YQ
4776 /* remote_notif_get_pending_replies acks this one, and gets
4777 the rest out. */
f48ff2a7 4778 rs->notif_state->pending_event[notif_client_stop.id]
8d64371b 4779 = remote_notif_parse (this, notif, rs->buf.data ());
722247f1 4780 remote_notif_get_pending_events (notif);
74531fed 4781 }
2d717e4f 4782
74531fed
PA
4783 if (thread_count () == 0)
4784 {
04bd08de 4785 if (!extended_p)
74531fed 4786 error (_("The target is not running (try extended-remote?)"));
82f73884 4787
c35b1492
PA
4788 /* We're connected, but not running. Drop out before we
4789 call start_remote. */
e278ad5b 4790 rs->starting_up = 0;
c35b1492
PA
4791 return;
4792 }
74531fed 4793
74531fed
PA
4794 /* In non-stop mode, any cached wait status will be stored in
4795 the stop reply queue. */
4796 gdb_assert (wait_status == NULL);
f0223081 4797
2455069d 4798 /* Report all signals during attach/startup. */
adc6a863 4799 pass_signals ({});
221e1a37
PA
4800
4801 /* If there are already stopped threads, mark them stopped and
4802 report their stops before giving the prompt to the user. */
6efcd9a8 4803 process_initial_stop_replies (from_tty);
221e1a37
PA
4804
4805 if (target_can_async_p ())
4806 target_async (1);
74531fed 4807 }
c8d104ad 4808
c8d104ad
PA
4809 /* If we connected to a live target, do some additional setup. */
4810 if (target_has_execution)
4811 {
f4ccffad 4812 if (symfile_objfile) /* No use without a symbol-file. */
36d25514 4813 remote_check_symbols ();
c8d104ad 4814 }
50c71eaf 4815
d5551862
SS
4816 /* Possibly the target has been engaged in a trace run started
4817 previously; find out where things are at. */
f6ac5f3d 4818 if (get_trace_status (current_trace_status ()) != -1)
d5551862 4819 {
00bf0b85 4820 struct uploaded_tp *uploaded_tps = NULL;
00bf0b85 4821
00bf0b85
SS
4822 if (current_trace_status ()->running)
4823 printf_filtered (_("Trace is already running on the target.\n"));
4824
f6ac5f3d 4825 upload_tracepoints (&uploaded_tps);
00bf0b85
SS
4826
4827 merge_uploaded_tracepoints (&uploaded_tps);
d5551862
SS
4828 }
4829
c0272db5
TW
4830 /* Possibly the target has been engaged in a btrace record started
4831 previously; find out where things are at. */
4832 remote_btrace_maybe_reopen ();
4833
1e51243a
PA
4834 /* The thread and inferior lists are now synchronized with the
4835 target, our symbols have been relocated, and we're merged the
4836 target's tracepoints with ours. We're done with basic start
4837 up. */
4838 rs->starting_up = 0;
4839
a25a5a45
PA
4840 /* Maybe breakpoints are global and need to be inserted now. */
4841 if (breakpoints_should_be_inserted_now ())
50c71eaf 4842 insert_breakpoints ();
c906108c
SS
4843}
4844
4845/* Open a connection to a remote debugger.
4846 NAME is the filename used for communication. */
4847
f6ac5f3d
PA
4848void
4849remote_target::open (const char *name, int from_tty)
c906108c 4850{
f6ac5f3d 4851 open_1 (name, from_tty, 0);
43ff13b4
JM
4852}
4853
c906108c
SS
4854/* Open a connection to a remote debugger using the extended
4855 remote gdb protocol. NAME is the filename used for communication. */
4856
f6ac5f3d
PA
4857void
4858extended_remote_target::open (const char *name, int from_tty)
c906108c 4859{
f6ac5f3d 4860 open_1 (name, from_tty, 1 /*extended_p */);
43ff13b4
JM
4861}
4862
ca4f7f8b
PA
4863/* Reset all packets back to "unknown support". Called when opening a
4864 new connection to a remote target. */
c906108c 4865
d471ea57 4866static void
ca4f7f8b 4867reset_all_packet_configs_support (void)
d471ea57
AC
4868{
4869 int i;
a744cf53 4870
444abaca 4871 for (i = 0; i < PACKET_MAX; i++)
4082afcc 4872 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
d471ea57
AC
4873}
4874
ca4f7f8b
PA
4875/* Initialize all packet configs. */
4876
4877static void
4878init_all_packet_configs (void)
4879{
4880 int i;
4881
4882 for (i = 0; i < PACKET_MAX; i++)
4883 {
4884 remote_protocol_packets[i].detect = AUTO_BOOLEAN_AUTO;
4885 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
4886 }
4887}
4888
23860348 4889/* Symbol look-up. */
dc8acb97 4890
6b8edb51
PA
4891void
4892remote_target::remote_check_symbols ()
dc8acb97 4893{
8d64371b 4894 char *tmp;
dc8acb97
MS
4895 int end;
4896
63154eca
PA
4897 /* The remote side has no concept of inferiors that aren't running
4898 yet, it only knows about running processes. If we're connected
4899 but our current inferior is not running, we should not invite the
4900 remote target to request symbol lookups related to its
4901 (unrelated) current process. */
4902 if (!target_has_execution)
4903 return;
4904
4082afcc 4905 if (packet_support (PACKET_qSymbol) == PACKET_DISABLE)
dc8acb97
MS
4906 return;
4907
63154eca
PA
4908 /* Make sure the remote is pointing at the right process. Note
4909 there's no way to select "no process". */
3c9c4b83
PA
4910 set_general_process ();
4911
6d820c5c
DJ
4912 /* Allocate a message buffer. We can't reuse the input buffer in RS,
4913 because we need both at the same time. */
66644cd3 4914 gdb::char_vector msg (get_remote_packet_size ());
8d64371b 4915 gdb::char_vector reply (get_remote_packet_size ());
6d820c5c 4916
23860348 4917 /* Invite target to request symbol lookups. */
dc8acb97
MS
4918
4919 putpkt ("qSymbol::");
8d64371b 4920 getpkt (&reply, 0);
28170b88 4921 packet_ok (reply, &remote_protocol_packets[PACKET_qSymbol]);
dc8acb97 4922
8d64371b 4923 while (startswith (reply.data (), "qSymbol:"))
dc8acb97 4924 {
77e371c0
TT
4925 struct bound_minimal_symbol sym;
4926
dc8acb97 4927 tmp = &reply[8];
66644cd3
AB
4928 end = hex2bin (tmp, reinterpret_cast <gdb_byte *> (msg.data ()),
4929 strlen (tmp) / 2);
dc8acb97 4930 msg[end] = '\0';
66644cd3 4931 sym = lookup_minimal_symbol (msg.data (), NULL, NULL);
3b7344d5 4932 if (sym.minsym == NULL)
66644cd3
AB
4933 xsnprintf (msg.data (), get_remote_packet_size (), "qSymbol::%s",
4934 &reply[8]);
dc8acb97 4935 else
2bbe3cc1 4936 {
f5656ead 4937 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
77e371c0 4938 CORE_ADDR sym_addr = BMSYMBOL_VALUE_ADDRESS (sym);
2bbe3cc1
DJ
4939
4940 /* If this is a function address, return the start of code
4941 instead of any data function descriptor. */
f5656ead 4942 sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
2bbe3cc1 4943 sym_addr,
8b88a78e 4944 current_top_target ());
2bbe3cc1 4945
66644cd3 4946 xsnprintf (msg.data (), get_remote_packet_size (), "qSymbol:%s:%s",
5af949e3 4947 phex_nz (sym_addr, addr_size), &reply[8]);
2bbe3cc1 4948 }
66644cd3
AB
4949
4950 putpkt (msg.data ());
8d64371b 4951 getpkt (&reply, 0);
dc8acb97
MS
4952 }
4953}
4954
9db8d71f 4955static struct serial *
baa336ce 4956remote_serial_open (const char *name)
9db8d71f
DJ
4957{
4958 static int udp_warning = 0;
4959
4960 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
4961 of in ser-tcp.c, because it is the remote protocol assuming that the
4962 serial connection is reliable and not the serial connection promising
4963 to be. */
61012eef 4964 if (!udp_warning && startswith (name, "udp:"))
9db8d71f 4965 {
3e43a32a
MS
4966 warning (_("The remote protocol may be unreliable over UDP.\n"
4967 "Some events may be lost, rendering further debugging "
4968 "impossible."));
9db8d71f
DJ
4969 udp_warning = 1;
4970 }
4971
4972 return serial_open (name);
4973}
4974
d914c394
SS
4975/* Inform the target of our permission settings. The permission flags
4976 work without this, but if the target knows the settings, it can do
4977 a couple things. First, it can add its own check, to catch cases
4978 that somehow manage to get by the permissions checks in target
4979 methods. Second, if the target is wired to disallow particular
4980 settings (for instance, a system in the field that is not set up to
4981 be able to stop at a breakpoint), it can object to any unavailable
4982 permissions. */
4983
4984void
f6ac5f3d 4985remote_target::set_permissions ()
d914c394
SS
4986{
4987 struct remote_state *rs = get_remote_state ();
4988
8d64371b 4989 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QAllow:"
bba74b36
YQ
4990 "WriteReg:%x;WriteMem:%x;"
4991 "InsertBreak:%x;InsertTrace:%x;"
4992 "InsertFastTrace:%x;Stop:%x",
4993 may_write_registers, may_write_memory,
4994 may_insert_breakpoints, may_insert_tracepoints,
4995 may_insert_fast_tracepoints, may_stop);
d914c394 4996 putpkt (rs->buf);
8d64371b 4997 getpkt (&rs->buf, 0);
d914c394
SS
4998
4999 /* If the target didn't like the packet, warn the user. Do not try
5000 to undo the user's settings, that would just be maddening. */
8d64371b
TT
5001 if (strcmp (rs->buf.data (), "OK") != 0)
5002 warning (_("Remote refused setting permissions with: %s"),
5003 rs->buf.data ());
d914c394
SS
5004}
5005
be2a5f71
DJ
5006/* This type describes each known response to the qSupported
5007 packet. */
5008struct protocol_feature
5009{
5010 /* The name of this protocol feature. */
5011 const char *name;
5012
5013 /* The default for this protocol feature. */
5014 enum packet_support default_support;
5015
5016 /* The function to call when this feature is reported, or after
5017 qSupported processing if the feature is not supported.
5018 The first argument points to this structure. The second
5019 argument indicates whether the packet requested support be
5020 enabled, disabled, or probed (or the default, if this function
5021 is being called at the end of processing and this feature was
5022 not reported). The third argument may be NULL; if not NULL, it
5023 is a NUL-terminated string taken from the packet following
5024 this feature's name and an equals sign. */
6b8edb51
PA
5025 void (*func) (remote_target *remote, const struct protocol_feature *,
5026 enum packet_support, const char *);
be2a5f71
DJ
5027
5028 /* The corresponding packet for this feature. Only used if
5029 FUNC is remote_supported_packet. */
5030 int packet;
5031};
5032
be2a5f71 5033static void
6b8edb51
PA
5034remote_supported_packet (remote_target *remote,
5035 const struct protocol_feature *feature,
be2a5f71
DJ
5036 enum packet_support support,
5037 const char *argument)
5038{
5039 if (argument)
5040 {
5041 warning (_("Remote qSupported response supplied an unexpected value for"
5042 " \"%s\"."), feature->name);
5043 return;
5044 }
5045
4082afcc 5046 remote_protocol_packets[feature->packet].support = support;
be2a5f71 5047}
be2a5f71 5048
6b8edb51
PA
5049void
5050remote_target::remote_packet_size (const protocol_feature *feature,
5051 enum packet_support support, const char *value)
be2a5f71
DJ
5052{
5053 struct remote_state *rs = get_remote_state ();
5054
5055 int packet_size;
5056 char *value_end;
5057
5058 if (support != PACKET_ENABLE)
5059 return;
5060
5061 if (value == NULL || *value == '\0')
5062 {
5063 warning (_("Remote target reported \"%s\" without a size."),
5064 feature->name);
5065 return;
5066 }
5067
5068 errno = 0;
5069 packet_size = strtol (value, &value_end, 16);
5070 if (errno != 0 || *value_end != '\0' || packet_size < 0)
5071 {
5072 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
5073 feature->name, value);
5074 return;
5075 }
5076
be2a5f71
DJ
5077 /* Record the new maximum packet size. */
5078 rs->explicit_packet_size = packet_size;
5079}
5080
6b8edb51
PA
5081void
5082remote_packet_size (remote_target *remote, const protocol_feature *feature,
5083 enum packet_support support, const char *value)
5084{
5085 remote->remote_packet_size (feature, support, value);
5086}
5087
dc473cfb 5088static const struct protocol_feature remote_protocol_features[] = {
0876f84a 5089 { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 },
40e57cf2 5090 { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet,
fd79ecee 5091 PACKET_qXfer_auxv },
c78fa86a
GB
5092 { "qXfer:exec-file:read", PACKET_DISABLE, remote_supported_packet,
5093 PACKET_qXfer_exec_file },
23181151
DJ
5094 { "qXfer:features:read", PACKET_DISABLE, remote_supported_packet,
5095 PACKET_qXfer_features },
cfa9d6d9
DJ
5096 { "qXfer:libraries:read", PACKET_DISABLE, remote_supported_packet,
5097 PACKET_qXfer_libraries },
2268b414
JK
5098 { "qXfer:libraries-svr4:read", PACKET_DISABLE, remote_supported_packet,
5099 PACKET_qXfer_libraries_svr4 },
ced63ec0 5100 { "augmented-libraries-svr4-read", PACKET_DISABLE,
4082afcc 5101 remote_supported_packet, PACKET_augmented_libraries_svr4_read_feature },
fd79ecee 5102 { "qXfer:memory-map:read", PACKET_DISABLE, remote_supported_packet,
89be2091 5103 PACKET_qXfer_memory_map },
4de6483e
UW
5104 { "qXfer:spu:read", PACKET_DISABLE, remote_supported_packet,
5105 PACKET_qXfer_spu_read },
5106 { "qXfer:spu:write", PACKET_DISABLE, remote_supported_packet,
5107 PACKET_qXfer_spu_write },
07e059b5
VP
5108 { "qXfer:osdata:read", PACKET_DISABLE, remote_supported_packet,
5109 PACKET_qXfer_osdata },
dc146f7c
VP
5110 { "qXfer:threads:read", PACKET_DISABLE, remote_supported_packet,
5111 PACKET_qXfer_threads },
b3b9301e
PA
5112 { "qXfer:traceframe-info:read", PACKET_DISABLE, remote_supported_packet,
5113 PACKET_qXfer_traceframe_info },
89be2091
DJ
5114 { "QPassSignals", PACKET_DISABLE, remote_supported_packet,
5115 PACKET_QPassSignals },
82075af2
JS
5116 { "QCatchSyscalls", PACKET_DISABLE, remote_supported_packet,
5117 PACKET_QCatchSyscalls },
9b224c5e
PA
5118 { "QProgramSignals", PACKET_DISABLE, remote_supported_packet,
5119 PACKET_QProgramSignals },
bc3b087d
SDJ
5120 { "QSetWorkingDir", PACKET_DISABLE, remote_supported_packet,
5121 PACKET_QSetWorkingDir },
aefd8b33
SDJ
5122 { "QStartupWithShell", PACKET_DISABLE, remote_supported_packet,
5123 PACKET_QStartupWithShell },
0a2dde4a
SDJ
5124 { "QEnvironmentHexEncoded", PACKET_DISABLE, remote_supported_packet,
5125 PACKET_QEnvironmentHexEncoded },
5126 { "QEnvironmentReset", PACKET_DISABLE, remote_supported_packet,
5127 PACKET_QEnvironmentReset },
5128 { "QEnvironmentUnset", PACKET_DISABLE, remote_supported_packet,
5129 PACKET_QEnvironmentUnset },
a6f3e723
SL
5130 { "QStartNoAckMode", PACKET_DISABLE, remote_supported_packet,
5131 PACKET_QStartNoAckMode },
4082afcc
PA
5132 { "multiprocess", PACKET_DISABLE, remote_supported_packet,
5133 PACKET_multiprocess_feature },
5134 { "QNonStop", PACKET_DISABLE, remote_supported_packet, PACKET_QNonStop },
4aa995e1
PA
5135 { "qXfer:siginfo:read", PACKET_DISABLE, remote_supported_packet,
5136 PACKET_qXfer_siginfo_read },
5137 { "qXfer:siginfo:write", PACKET_DISABLE, remote_supported_packet,
5138 PACKET_qXfer_siginfo_write },
4082afcc 5139 { "ConditionalTracepoints", PACKET_DISABLE, remote_supported_packet,
782b2b07 5140 PACKET_ConditionalTracepoints },
4082afcc 5141 { "ConditionalBreakpoints", PACKET_DISABLE, remote_supported_packet,
3788aec7 5142 PACKET_ConditionalBreakpoints },
4082afcc 5143 { "BreakpointCommands", PACKET_DISABLE, remote_supported_packet,
d3ce09f5 5144 PACKET_BreakpointCommands },
4082afcc 5145 { "FastTracepoints", PACKET_DISABLE, remote_supported_packet,
7a697b8d 5146 PACKET_FastTracepoints },
4082afcc 5147 { "StaticTracepoints", PACKET_DISABLE, remote_supported_packet,
0fb4aa4b 5148 PACKET_StaticTracepoints },
4082afcc 5149 {"InstallInTrace", PACKET_DISABLE, remote_supported_packet,
1e4d1764 5150 PACKET_InstallInTrace},
4082afcc
PA
5151 { "DisconnectedTracing", PACKET_DISABLE, remote_supported_packet,
5152 PACKET_DisconnectedTracing_feature },
40ab02ce
MS
5153 { "ReverseContinue", PACKET_DISABLE, remote_supported_packet,
5154 PACKET_bc },
5155 { "ReverseStep", PACKET_DISABLE, remote_supported_packet,
5156 PACKET_bs },
409873ef
SS
5157 { "TracepointSource", PACKET_DISABLE, remote_supported_packet,
5158 PACKET_TracepointSource },
d914c394
SS
5159 { "QAllow", PACKET_DISABLE, remote_supported_packet,
5160 PACKET_QAllow },
4082afcc
PA
5161 { "EnableDisableTracepoints", PACKET_DISABLE, remote_supported_packet,
5162 PACKET_EnableDisableTracepoints_feature },
78d85199
YQ
5163 { "qXfer:fdpic:read", PACKET_DISABLE, remote_supported_packet,
5164 PACKET_qXfer_fdpic },
169081d0
TG
5165 { "qXfer:uib:read", PACKET_DISABLE, remote_supported_packet,
5166 PACKET_qXfer_uib },
03583c20
UW
5167 { "QDisableRandomization", PACKET_DISABLE, remote_supported_packet,
5168 PACKET_QDisableRandomization },
d1feda86 5169 { "QAgent", PACKET_DISABLE, remote_supported_packet, PACKET_QAgent},
f6f899bf
HAQ
5170 { "QTBuffer:size", PACKET_DISABLE,
5171 remote_supported_packet, PACKET_QTBuffer_size},
4082afcc 5172 { "tracenz", PACKET_DISABLE, remote_supported_packet, PACKET_tracenz_feature },
9accd112
MM
5173 { "Qbtrace:off", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_off },
5174 { "Qbtrace:bts", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_bts },
b20a6524 5175 { "Qbtrace:pt", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_pt },
9accd112 5176 { "qXfer:btrace:read", PACKET_DISABLE, remote_supported_packet,
f4abbc16
MM
5177 PACKET_qXfer_btrace },
5178 { "qXfer:btrace-conf:read", PACKET_DISABLE, remote_supported_packet,
d33501a5
MM
5179 PACKET_qXfer_btrace_conf },
5180 { "Qbtrace-conf:bts:size", PACKET_DISABLE, remote_supported_packet,
f7e6eed5
PA
5181 PACKET_Qbtrace_conf_bts_size },
5182 { "swbreak", PACKET_DISABLE, remote_supported_packet, PACKET_swbreak_feature },
0a93529c 5183 { "hwbreak", PACKET_DISABLE, remote_supported_packet, PACKET_hwbreak_feature },
89245bc0
DB
5184 { "fork-events", PACKET_DISABLE, remote_supported_packet,
5185 PACKET_fork_event_feature },
5186 { "vfork-events", PACKET_DISABLE, remote_supported_packet,
5187 PACKET_vfork_event_feature },
94585166
DB
5188 { "exec-events", PACKET_DISABLE, remote_supported_packet,
5189 PACKET_exec_event_feature },
b20a6524 5190 { "Qbtrace-conf:pt:size", PACKET_DISABLE, remote_supported_packet,
750ce8d1 5191 PACKET_Qbtrace_conf_pt_size },
65706a29
PA
5192 { "vContSupported", PACKET_DISABLE, remote_supported_packet, PACKET_vContSupported },
5193 { "QThreadEvents", PACKET_DISABLE, remote_supported_packet, PACKET_QThreadEvents },
f2faf941 5194 { "no-resumed", PACKET_DISABLE, remote_supported_packet, PACKET_no_resumed },
be2a5f71
DJ
5195};
5196
c8d5aac9
L
5197static char *remote_support_xml;
5198
5199/* Register string appended to "xmlRegisters=" in qSupported query. */
5200
5201void
6e39997a 5202register_remote_support_xml (const char *xml)
c8d5aac9
L
5203{
5204#if defined(HAVE_LIBEXPAT)
5205 if (remote_support_xml == NULL)
c4f7c687 5206 remote_support_xml = concat ("xmlRegisters=", xml, (char *) NULL);
c8d5aac9
L
5207 else
5208 {
5209 char *copy = xstrdup (remote_support_xml + 13);
5210 char *p = strtok (copy, ",");
5211
5212 do
5213 {
5214 if (strcmp (p, xml) == 0)
5215 {
5216 /* already there */
5217 xfree (copy);
5218 return;
5219 }
5220 }
5221 while ((p = strtok (NULL, ",")) != NULL);
5222 xfree (copy);
5223
94b0dee1
PA
5224 remote_support_xml = reconcat (remote_support_xml,
5225 remote_support_xml, ",", xml,
5226 (char *) NULL);
c8d5aac9
L
5227 }
5228#endif
5229}
5230
69b6ecb0
TT
5231static void
5232remote_query_supported_append (std::string *msg, const char *append)
c8d5aac9 5233{
69b6ecb0
TT
5234 if (!msg->empty ())
5235 msg->append (";");
5236 msg->append (append);
c8d5aac9
L
5237}
5238
6b8edb51
PA
5239void
5240remote_target::remote_query_supported ()
be2a5f71
DJ
5241{
5242 struct remote_state *rs = get_remote_state ();
5243 char *next;
5244 int i;
5245 unsigned char seen [ARRAY_SIZE (remote_protocol_features)];
5246
5247 /* The packet support flags are handled differently for this packet
5248 than for most others. We treat an error, a disabled packet, and
5249 an empty response identically: any features which must be reported
5250 to be used will be automatically disabled. An empty buffer
5251 accomplishes this, since that is also the representation for a list
5252 containing no features. */
5253
5254 rs->buf[0] = 0;
4082afcc 5255 if (packet_support (PACKET_qSupported) != PACKET_DISABLE)
be2a5f71 5256 {
69b6ecb0 5257 std::string q;
c8d5aac9 5258
73b8c1fd 5259 if (packet_set_cmd_state (PACKET_multiprocess_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5260 remote_query_supported_append (&q, "multiprocess+");
c8d5aac9 5261
f7e6eed5 5262 if (packet_set_cmd_state (PACKET_swbreak_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5263 remote_query_supported_append (&q, "swbreak+");
f7e6eed5 5264 if (packet_set_cmd_state (PACKET_hwbreak_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5265 remote_query_supported_append (&q, "hwbreak+");
f7e6eed5 5266
69b6ecb0 5267 remote_query_supported_append (&q, "qRelocInsn+");
dde08ee1 5268
8020350c
DB
5269 if (packet_set_cmd_state (PACKET_fork_event_feature)
5270 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5271 remote_query_supported_append (&q, "fork-events+");
8020350c
DB
5272 if (packet_set_cmd_state (PACKET_vfork_event_feature)
5273 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5274 remote_query_supported_append (&q, "vfork-events+");
8020350c
DB
5275 if (packet_set_cmd_state (PACKET_exec_event_feature)
5276 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5277 remote_query_supported_append (&q, "exec-events+");
89245bc0 5278
750ce8d1 5279 if (packet_set_cmd_state (PACKET_vContSupported) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5280 remote_query_supported_append (&q, "vContSupported+");
750ce8d1 5281
65706a29 5282 if (packet_set_cmd_state (PACKET_QThreadEvents) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5283 remote_query_supported_append (&q, "QThreadEvents+");
65706a29 5284
f2faf941 5285 if (packet_set_cmd_state (PACKET_no_resumed) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5286 remote_query_supported_append (&q, "no-resumed+");
f2faf941 5287
b35d5edb
PA
5288 /* Keep this one last to work around a gdbserver <= 7.10 bug in
5289 the qSupported:xmlRegisters=i386 handling. */
7cc244de
PA
5290 if (remote_support_xml != NULL
5291 && packet_support (PACKET_qXfer_features) != PACKET_DISABLE)
69b6ecb0 5292 remote_query_supported_append (&q, remote_support_xml);
82f73884 5293
69b6ecb0
TT
5294 q = "qSupported:" + q;
5295 putpkt (q.c_str ());
94b0dee1 5296
8d64371b 5297 getpkt (&rs->buf, 0);
be2a5f71
DJ
5298
5299 /* If an error occured, warn, but do not return - just reset the
5300 buffer to empty and go on to disable features. */
5301 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported])
5302 == PACKET_ERROR)
5303 {
8d64371b 5304 warning (_("Remote failure reply: %s"), rs->buf.data ());
be2a5f71
DJ
5305 rs->buf[0] = 0;
5306 }
5307 }
5308
5309 memset (seen, 0, sizeof (seen));
5310
8d64371b 5311 next = rs->buf.data ();
be2a5f71
DJ
5312 while (*next)
5313 {
5314 enum packet_support is_supported;
5315 char *p, *end, *name_end, *value;
5316
5317 /* First separate out this item from the rest of the packet. If
5318 there's another item after this, we overwrite the separator
5319 (terminated strings are much easier to work with). */
5320 p = next;
5321 end = strchr (p, ';');
5322 if (end == NULL)
5323 {
5324 end = p + strlen (p);
5325 next = end;
5326 }
5327 else
5328 {
89be2091
DJ
5329 *end = '\0';
5330 next = end + 1;
5331
be2a5f71
DJ
5332 if (end == p)
5333 {
5334 warning (_("empty item in \"qSupported\" response"));
5335 continue;
5336 }
be2a5f71
DJ
5337 }
5338
5339 name_end = strchr (p, '=');
5340 if (name_end)
5341 {
5342 /* This is a name=value entry. */
5343 is_supported = PACKET_ENABLE;
5344 value = name_end + 1;
5345 *name_end = '\0';
5346 }
5347 else
5348 {
5349 value = NULL;
5350 switch (end[-1])
5351 {
5352 case '+':
5353 is_supported = PACKET_ENABLE;
5354 break;
5355
5356 case '-':
5357 is_supported = PACKET_DISABLE;
5358 break;
5359
5360 case '?':
5361 is_supported = PACKET_SUPPORT_UNKNOWN;
5362 break;
5363
5364 default:
3e43a32a
MS
5365 warning (_("unrecognized item \"%s\" "
5366 "in \"qSupported\" response"), p);
be2a5f71
DJ
5367 continue;
5368 }
5369 end[-1] = '\0';
5370 }
5371
5372 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
5373 if (strcmp (remote_protocol_features[i].name, p) == 0)
5374 {
5375 const struct protocol_feature *feature;
5376
5377 seen[i] = 1;
5378 feature = &remote_protocol_features[i];
6b8edb51 5379 feature->func (this, feature, is_supported, value);
be2a5f71
DJ
5380 break;
5381 }
5382 }
5383
5384 /* If we increased the packet size, make sure to increase the global
5385 buffer size also. We delay this until after parsing the entire
5386 qSupported packet, because this is the same buffer we were
5387 parsing. */
8d64371b
TT
5388 if (rs->buf.size () < rs->explicit_packet_size)
5389 rs->buf.resize (rs->explicit_packet_size);
be2a5f71
DJ
5390
5391 /* Handle the defaults for unmentioned features. */
5392 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
5393 if (!seen[i])
5394 {
5395 const struct protocol_feature *feature;
5396
5397 feature = &remote_protocol_features[i];
6b8edb51 5398 feature->func (this, feature, feature->default_support, NULL);
be2a5f71
DJ
5399 }
5400}
5401
048094ac
PA
5402/* Serial QUIT handler for the remote serial descriptor.
5403
5404 Defers handling a Ctrl-C until we're done with the current
5405 command/response packet sequence, unless:
5406
5407 - We're setting up the connection. Don't send a remote interrupt
5408 request, as we're not fully synced yet. Quit immediately
5409 instead.
5410
5411 - The target has been resumed in the foreground
223ffa71 5412 (target_terminal::is_ours is false) with a synchronous resume
048094ac
PA
5413 packet, and we're blocked waiting for the stop reply, thus a
5414 Ctrl-C should be immediately sent to the target.
5415
5416 - We get a second Ctrl-C while still within the same serial read or
5417 write. In that case the serial is seemingly wedged --- offer to
5418 quit/disconnect.
5419
5420 - We see a second Ctrl-C without target response, after having
5421 previously interrupted the target. In that case the target/stub
5422 is probably wedged --- offer to quit/disconnect.
5423*/
5424
6b8edb51
PA
5425void
5426remote_target::remote_serial_quit_handler ()
048094ac
PA
5427{
5428 struct remote_state *rs = get_remote_state ();
5429
5430 if (check_quit_flag ())
5431 {
5432 /* If we're starting up, we're not fully synced yet. Quit
5433 immediately. */
5434 if (rs->starting_up)
5435 quit ();
5436 else if (rs->got_ctrlc_during_io)
5437 {
5438 if (query (_("The target is not responding to GDB commands.\n"
5439 "Stop debugging it? ")))
5440 remote_unpush_and_throw ();
5441 }
5442 /* If ^C has already been sent once, offer to disconnect. */
223ffa71 5443 else if (!target_terminal::is_ours () && rs->ctrlc_pending_p)
048094ac
PA
5444 interrupt_query ();
5445 /* All-stop protocol, and blocked waiting for stop reply. Send
5446 an interrupt request. */
223ffa71 5447 else if (!target_terminal::is_ours () && rs->waiting_for_stop_reply)
e671cd59 5448 target_interrupt ();
048094ac
PA
5449 else
5450 rs->got_ctrlc_during_io = 1;
5451 }
5452}
5453
6b8edb51
PA
5454/* The remote_target that is current while the quit handler is
5455 overridden with remote_serial_quit_handler. */
5456static remote_target *curr_quit_handler_target;
5457
5458static void
5459remote_serial_quit_handler ()
5460{
5461 curr_quit_handler_target->remote_serial_quit_handler ();
5462}
5463
78a095c3
JK
5464/* Remove any of the remote.c targets from target stack. Upper targets depend
5465 on it so remove them first. */
5466
5467static void
5468remote_unpush_target (void)
5469{
915ef8b1 5470 pop_all_targets_at_and_above (process_stratum);
78a095c3 5471}
be2a5f71 5472
048094ac
PA
5473static void
5474remote_unpush_and_throw (void)
5475{
5476 remote_unpush_target ();
5477 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
5478}
5479
f6ac5f3d
PA
5480void
5481remote_target::open_1 (const char *name, int from_tty, int extended_p)
c906108c 5482{
6b8edb51 5483 remote_target *curr_remote = get_current_remote_target ();
a6f3e723 5484
c906108c 5485 if (name == 0)
8a3fe4f8 5486 error (_("To open a remote debug connection, you need to specify what\n"
22e04375 5487 "serial device is attached to the remote system\n"
8a3fe4f8 5488 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
c906108c 5489
2d717e4f 5490 /* If we're connected to a running target, target_preopen will kill it.
78a095c3
JK
5491 Ask this question first, before target_preopen has a chance to kill
5492 anything. */
6b8edb51 5493 if (curr_remote != NULL && !have_inferiors ())
2d717e4f 5494 {
78a095c3
JK
5495 if (from_tty
5496 && !query (_("Already connected to a remote target. Disconnect? ")))
2d717e4f
DJ
5497 error (_("Still connected."));
5498 }
5499
78a095c3 5500 /* Here the possibly existing remote target gets unpushed. */
c906108c
SS
5501 target_preopen (from_tty);
5502
ad9a8f3f 5503 remote_fileio_reset ();
1dd41f16
NS
5504 reopen_exec_file ();
5505 reread_symbols ();
5506
6b8edb51
PA
5507 remote_target *remote
5508 = (extended_p ? new extended_remote_target () : new remote_target ());
5509 target_ops_up target_holder (remote);
5510
5511 remote_state *rs = remote->get_remote_state ();
5512
5513 /* See FIXME above. */
5514 if (!target_async_permitted)
5515 rs->wait_forever_enabled_p = 1;
5516
5d93a237
TT
5517 rs->remote_desc = remote_serial_open (name);
5518 if (!rs->remote_desc)
c906108c
SS
5519 perror_with_name (name);
5520
5521 if (baud_rate != -1)
5522 {
5d93a237 5523 if (serial_setbaudrate (rs->remote_desc, baud_rate))
c906108c 5524 {
9b74d5d3
KB
5525 /* The requested speed could not be set. Error out to
5526 top level after closing remote_desc. Take care to
5527 set remote_desc to NULL to avoid closing remote_desc
5528 more than once. */
5d93a237
TT
5529 serial_close (rs->remote_desc);
5530 rs->remote_desc = NULL;
c906108c
SS
5531 perror_with_name (name);
5532 }
5533 }
5534
236af5e3 5535 serial_setparity (rs->remote_desc, serial_parity);
5d93a237 5536 serial_raw (rs->remote_desc);
c906108c
SS
5537
5538 /* If there is something sitting in the buffer we might take it as a
5539 response to a command, which would be bad. */
5d93a237 5540 serial_flush_input (rs->remote_desc);
c906108c
SS
5541
5542 if (from_tty)
5543 {
5544 puts_filtered ("Remote debugging using ");
5545 puts_filtered (name);
5546 puts_filtered ("\n");
5547 }
d9f719f1 5548
6b8edb51 5549 /* Switch to using the remote target now. */
dea57a62 5550 push_target (std::move (target_holder));
c906108c 5551
74531fed 5552 /* Register extra event sources in the event loop. */
6b8edb51 5553 rs->remote_async_inferior_event_token
74531fed 5554 = create_async_event_handler (remote_async_inferior_event_handler,
6b8edb51
PA
5555 remote);
5556 rs->notif_state = remote_notif_state_allocate (remote);
74531fed 5557
be2a5f71
DJ
5558 /* Reset the target state; these things will be queried either by
5559 remote_query_supported or as they are needed. */
ca4f7f8b 5560 reset_all_packet_configs_support ();
74531fed 5561 rs->cached_wait_status = 0;
be2a5f71 5562 rs->explicit_packet_size = 0;
a6f3e723 5563 rs->noack_mode = 0;
82f73884 5564 rs->extended = extended_p;
e24a49d8 5565 rs->waiting_for_stop_reply = 0;
3a29589a 5566 rs->ctrlc_pending_p = 0;
048094ac 5567 rs->got_ctrlc_during_io = 0;
802188a7 5568
47f8a51d
TT
5569 rs->general_thread = not_sent_ptid;
5570 rs->continue_thread = not_sent_ptid;
262e1174 5571 rs->remote_traceframe_number = -1;
c906108c 5572
3a00c802
PA
5573 rs->last_resume_exec_dir = EXEC_FORWARD;
5574
9d1f7ab2 5575 /* Probe for ability to use "ThreadInfo" query, as required. */
b80fafe3
TT
5576 rs->use_threadinfo_query = 1;
5577 rs->use_threadextra_query = 1;
9d1f7ab2 5578
dd194f6b 5579 rs->readahead_cache.invalidate ();
80152258 5580
c6ebd6cf 5581 if (target_async_permitted)
92d1e331 5582 {
92d1e331
DJ
5583 /* FIXME: cagney/1999-09-23: During the initial connection it is
5584 assumed that the target is already ready and able to respond to
0df8b418 5585 requests. Unfortunately remote_start_remote() eventually calls
92d1e331 5586 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
0df8b418 5587 around this. Eventually a mechanism that allows
92d1e331 5588 wait_for_inferior() to expect/get timeouts will be
23860348 5589 implemented. */
6b8edb51 5590 rs->wait_forever_enabled_p = 0;
92d1e331
DJ
5591 }
5592
23860348 5593 /* First delete any symbols previously loaded from shared libraries. */
f78f6cf1 5594 no_shared_libraries (NULL, 0);
f78f6cf1 5595
36918e70 5596 /* Start the remote connection. If error() or QUIT, discard this
165b8e33
AC
5597 target (we'd otherwise be in an inconsistent state) and then
5598 propogate the error on up the exception chain. This ensures that
5599 the caller doesn't stumble along blindly assuming that the
5600 function succeeded. The CLI doesn't have this problem but other
5601 UI's, such as MI do.
36918e70
AC
5602
5603 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
5604 this function should return an error indication letting the
ce2826aa 5605 caller restore the previous state. Unfortunately the command
36918e70
AC
5606 ``target remote'' is directly wired to this function making that
5607 impossible. On a positive note, the CLI side of this problem has
5608 been fixed - the function set_cmd_context() makes it possible for
5609 all the ``target ....'' commands to share a common callback
5610 function. See cli-dump.c. */
109c3e39 5611 {
2d717e4f 5612
492d29ea 5613 TRY
04bd08de 5614 {
6b8edb51 5615 remote->start_remote (from_tty, extended_p);
04bd08de 5616 }
492d29ea 5617 CATCH (ex, RETURN_MASK_ALL)
109c3e39 5618 {
c8d104ad
PA
5619 /* Pop the partially set up target - unless something else did
5620 already before throwing the exception. */
6b8edb51 5621 if (ex.error != TARGET_CLOSE_ERROR)
78a095c3 5622 remote_unpush_target ();
109c3e39
AC
5623 throw_exception (ex);
5624 }
492d29ea 5625 END_CATCH
109c3e39 5626 }
c906108c 5627
6b8edb51 5628 remote_btrace_reset (rs);
f4abbc16 5629
c6ebd6cf 5630 if (target_async_permitted)
6b8edb51 5631 rs->wait_forever_enabled_p = 1;
43ff13b4
JM
5632}
5633
de0d863e
DB
5634/* Detach the specified process. */
5635
6b8edb51
PA
5636void
5637remote_target::remote_detach_pid (int pid)
de0d863e
DB
5638{
5639 struct remote_state *rs = get_remote_state ();
5640
4c7333b3
PA
5641 /* This should not be necessary, but the handling for D;PID in
5642 GDBserver versions prior to 8.2 incorrectly assumes that the
5643 selected process points to the same process we're detaching,
5644 leading to misbehavior (and possibly GDBserver crashing) when it
5645 does not. Since it's easy and cheap, work around it by forcing
5646 GDBserver to select GDB's current process. */
5647 set_general_process ();
5648
de0d863e 5649 if (remote_multi_process_p (rs))
8d64371b 5650 xsnprintf (rs->buf.data (), get_remote_packet_size (), "D;%x", pid);
de0d863e 5651 else
8d64371b 5652 strcpy (rs->buf.data (), "D");
de0d863e
DB
5653
5654 putpkt (rs->buf);
8d64371b 5655 getpkt (&rs->buf, 0);
de0d863e
DB
5656
5657 if (rs->buf[0] == 'O' && rs->buf[1] == 'K')
5658 ;
5659 else if (rs->buf[0] == '\0')
5660 error (_("Remote doesn't know how to detach"));
5661 else
5662 error (_("Can't detach process."));
5663}
5664
5665/* This detaches a program to which we previously attached, using
5666 inferior_ptid to identify the process. After this is done, GDB
5667 can be used to debug some other program. We better not have left
5668 any breakpoints in the target program or it'll die when it hits
5669 one. */
c906108c 5670
6b8edb51 5671void
00431a78 5672remote_target::remote_detach_1 (inferior *inf, int from_tty)
c906108c 5673{
e99b03dc 5674 int pid = inferior_ptid.pid ();
d01949b6 5675 struct remote_state *rs = get_remote_state ();
de0d863e 5676 int is_fork_parent;
c906108c 5677
2d717e4f
DJ
5678 if (!target_has_execution)
5679 error (_("No process to detach from."));
5680
0f48b757 5681 target_announce_detach (from_tty);
7cee1e54 5682
c906108c 5683 /* Tell the remote target to detach. */
de0d863e 5684 remote_detach_pid (pid);
82f73884 5685
8020350c
DB
5686 /* Exit only if this is the only active inferior. */
5687 if (from_tty && !rs->extended && number_of_live_inferiors () == 1)
7cee1e54 5688 puts_filtered (_("Ending remote debugging.\n"));
82f73884 5689
00431a78
PA
5690 struct thread_info *tp = find_thread_ptid (inferior_ptid);
5691
de0d863e
DB
5692 /* Check to see if we are detaching a fork parent. Note that if we
5693 are detaching a fork child, tp == NULL. */
5694 is_fork_parent = (tp != NULL
5695 && tp->pending_follow.kind == TARGET_WAITKIND_FORKED);
5696
5697 /* If doing detach-on-fork, we don't mourn, because that will delete
5698 breakpoints that should be available for the followed inferior. */
5699 if (!is_fork_parent)
f67c0c91 5700 {
249b5733
PA
5701 /* Save the pid as a string before mourning, since that will
5702 unpush the remote target, and we need the string after. */
f2907e49 5703 std::string infpid = target_pid_to_str (ptid_t (pid));
f67c0c91
SDJ
5704
5705 target_mourn_inferior (inferior_ptid);
5706 if (print_inferior_events)
5707 printf_unfiltered (_("[Inferior %d (%s) detached]\n"),
5708 inf->num, infpid.c_str ());
5709 }
de0d863e
DB
5710 else
5711 {
5712 inferior_ptid = null_ptid;
00431a78 5713 detach_inferior (current_inferior ());
de0d863e 5714 }
2d717e4f
DJ
5715}
5716
f6ac5f3d
PA
5717void
5718remote_target::detach (inferior *inf, int from_tty)
2d717e4f 5719{
00431a78 5720 remote_detach_1 (inf, from_tty);
2d717e4f
DJ
5721}
5722
f6ac5f3d
PA
5723void
5724extended_remote_target::detach (inferior *inf, int from_tty)
2d717e4f 5725{
00431a78 5726 remote_detach_1 (inf, from_tty);
de0d863e
DB
5727}
5728
5729/* Target follow-fork function for remote targets. On entry, and
5730 at return, the current inferior is the fork parent.
5731
5732 Note that although this is currently only used for extended-remote,
5733 it is named remote_follow_fork in anticipation of using it for the
5734 remote target as well. */
5735
f6ac5f3d
PA
5736int
5737remote_target::follow_fork (int follow_child, int detach_fork)
de0d863e
DB
5738{
5739 struct remote_state *rs = get_remote_state ();
c269dbdb 5740 enum target_waitkind kind = inferior_thread ()->pending_follow.kind;
de0d863e 5741
c269dbdb
DB
5742 if ((kind == TARGET_WAITKIND_FORKED && remote_fork_event_p (rs))
5743 || (kind == TARGET_WAITKIND_VFORKED && remote_vfork_event_p (rs)))
de0d863e
DB
5744 {
5745 /* When following the parent and detaching the child, we detach
5746 the child here. For the case of following the child and
5747 detaching the parent, the detach is done in the target-
5748 independent follow fork code in infrun.c. We can't use
5749 target_detach when detaching an unfollowed child because
5750 the client side doesn't know anything about the child. */
5751 if (detach_fork && !follow_child)
5752 {
5753 /* Detach the fork child. */
5754 ptid_t child_ptid;
5755 pid_t child_pid;
5756
5757 child_ptid = inferior_thread ()->pending_follow.value.related_pid;
e99b03dc 5758 child_pid = child_ptid.pid ();
de0d863e
DB
5759
5760 remote_detach_pid (child_pid);
de0d863e
DB
5761 }
5762 }
5763 return 0;
c906108c
SS
5764}
5765
94585166
DB
5766/* Target follow-exec function for remote targets. Save EXECD_PATHNAME
5767 in the program space of the new inferior. On entry and at return the
5768 current inferior is the exec'ing inferior. INF is the new exec'd
5769 inferior, which may be the same as the exec'ing inferior unless
5770 follow-exec-mode is "new". */
5771
f6ac5f3d
PA
5772void
5773remote_target::follow_exec (struct inferior *inf, char *execd_pathname)
94585166
DB
5774{
5775 /* We know that this is a target file name, so if it has the "target:"
5776 prefix we strip it off before saving it in the program space. */
5777 if (is_target_filename (execd_pathname))
5778 execd_pathname += strlen (TARGET_SYSROOT_PREFIX);
5779
5780 set_pspace_remote_exec_file (inf->pspace, execd_pathname);
5781}
5782
6ad8ae5c
DJ
5783/* Same as remote_detach, but don't send the "D" packet; just disconnect. */
5784
f6ac5f3d
PA
5785void
5786remote_target::disconnect (const char *args, int from_tty)
43ff13b4 5787{
43ff13b4 5788 if (args)
2d717e4f 5789 error (_("Argument given to \"disconnect\" when remotely debugging."));
43ff13b4 5790
8020350c
DB
5791 /* Make sure we unpush even the extended remote targets. Calling
5792 target_mourn_inferior won't unpush, and remote_mourn won't
5793 unpush if there is more than one inferior left. */
f6ac5f3d 5794 unpush_target (this);
8020350c 5795 generic_mourn_inferior ();
2d717e4f 5796
43ff13b4
JM
5797 if (from_tty)
5798 puts_filtered ("Ending remote debugging.\n");
5799}
5800
2d717e4f
DJ
5801/* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
5802 be chatty about it. */
5803
f6ac5f3d
PA
5804void
5805extended_remote_target::attach (const char *args, int from_tty)
2d717e4f
DJ
5806{
5807 struct remote_state *rs = get_remote_state ();
be86555c 5808 int pid;
96ef3384 5809 char *wait_status = NULL;
2d717e4f 5810
74164c56 5811 pid = parse_pid_to_attach (args);
2d717e4f 5812
74164c56
JK
5813 /* Remote PID can be freely equal to getpid, do not check it here the same
5814 way as in other targets. */
2d717e4f 5815
4082afcc 5816 if (packet_support (PACKET_vAttach) == PACKET_DISABLE)
2d717e4f
DJ
5817 error (_("This target does not support attaching to a process"));
5818
7cee1e54
PA
5819 if (from_tty)
5820 {
5821 char *exec_file = get_exec_file (0);
5822
5823 if (exec_file)
5824 printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file,
f2907e49 5825 target_pid_to_str (ptid_t (pid)));
7cee1e54
PA
5826 else
5827 printf_unfiltered (_("Attaching to %s\n"),
f2907e49 5828 target_pid_to_str (ptid_t (pid)));
7cee1e54
PA
5829 }
5830
8d64371b 5831 xsnprintf (rs->buf.data (), get_remote_packet_size (), "vAttach;%x", pid);
2d717e4f 5832 putpkt (rs->buf);
8d64371b 5833 getpkt (&rs->buf, 0);
2d717e4f 5834
4082afcc
PA
5835 switch (packet_ok (rs->buf,
5836 &remote_protocol_packets[PACKET_vAttach]))
2d717e4f 5837 {
4082afcc 5838 case PACKET_OK:
6efcd9a8 5839 if (!target_is_non_stop_p ())
74531fed
PA
5840 {
5841 /* Save the reply for later. */
8d64371b
TT
5842 wait_status = (char *) alloca (strlen (rs->buf.data ()) + 1);
5843 strcpy (wait_status, rs->buf.data ());
74531fed 5844 }
8d64371b 5845 else if (strcmp (rs->buf.data (), "OK") != 0)
74531fed 5846 error (_("Attaching to %s failed with: %s"),
f2907e49 5847 target_pid_to_str (ptid_t (pid)),
8d64371b 5848 rs->buf.data ());
4082afcc
PA
5849 break;
5850 case PACKET_UNKNOWN:
5851 error (_("This target does not support attaching to a process"));
5852 default:
5853 error (_("Attaching to %s failed"),
f2907e49 5854 target_pid_to_str (ptid_t (pid)));
2d717e4f 5855 }
2d717e4f 5856
1b6e6f5c 5857 set_current_inferior (remote_add_inferior (0, pid, 1, 0));
bad34192 5858
f2907e49 5859 inferior_ptid = ptid_t (pid);
79d7f229 5860
6efcd9a8 5861 if (target_is_non_stop_p ())
bad34192
PA
5862 {
5863 struct thread_info *thread;
79d7f229 5864
bad34192 5865 /* Get list of threads. */
f6ac5f3d 5866 update_thread_list ();
82f73884 5867
00431a78 5868 thread = first_thread_of_inferior (current_inferior ());
bad34192
PA
5869 if (thread)
5870 inferior_ptid = thread->ptid;
5871 else
f2907e49 5872 inferior_ptid = ptid_t (pid);
bad34192
PA
5873
5874 /* Invalidate our notion of the remote current thread. */
47f8a51d 5875 record_currthread (rs, minus_one_ptid);
bad34192 5876 }
74531fed 5877 else
bad34192
PA
5878 {
5879 /* Now, if we have thread information, update inferior_ptid. */
5880 inferior_ptid = remote_current_thread (inferior_ptid);
5881
5882 /* Add the main thread to the thread list. */
00aecdcf
PA
5883 thread_info *thr = add_thread_silent (inferior_ptid);
5884 /* Don't consider the thread stopped until we've processed the
5885 saved stop reply. */
5886 set_executing (thr->ptid, true);
bad34192 5887 }
c0a2216e 5888
96ef3384
UW
5889 /* Next, if the target can specify a description, read it. We do
5890 this before anything involving memory or registers. */
5891 target_find_description ();
5892
6efcd9a8 5893 if (!target_is_non_stop_p ())
74531fed
PA
5894 {
5895 /* Use the previously fetched status. */
5896 gdb_assert (wait_status != NULL);
5897
5898 if (target_can_async_p ())
5899 {
722247f1 5900 struct notif_event *reply
6b8edb51 5901 = remote_notif_parse (this, &notif_client_stop, wait_status);
74531fed 5902
722247f1 5903 push_stop_reply ((struct stop_reply *) reply);
74531fed 5904
6a3753b3 5905 target_async (1);
74531fed
PA
5906 }
5907 else
5908 {
5909 gdb_assert (wait_status != NULL);
8d64371b 5910 strcpy (rs->buf.data (), wait_status);
74531fed
PA
5911 rs->cached_wait_status = 1;
5912 }
5913 }
5914 else
5915 gdb_assert (wait_status == NULL);
2d717e4f
DJ
5916}
5917
b9c1d481
AS
5918/* Implementation of the to_post_attach method. */
5919
f6ac5f3d
PA
5920void
5921extended_remote_target::post_attach (int pid)
b9c1d481 5922{
6efcd9a8
PA
5923 /* Get text, data & bss offsets. */
5924 get_offsets ();
5925
b9c1d481
AS
5926 /* In certain cases GDB might not have had the chance to start
5927 symbol lookup up until now. This could happen if the debugged
5928 binary is not using shared libraries, the vsyscall page is not
5929 present (on Linux) and the binary itself hadn't changed since the
5930 debugging process was started. */
5931 if (symfile_objfile != NULL)
5932 remote_check_symbols();
5933}
5934
c906108c 5935\f
506fb367
DJ
5936/* Check for the availability of vCont. This function should also check
5937 the response. */
c906108c 5938
6b8edb51
PA
5939void
5940remote_target::remote_vcont_probe ()
c906108c 5941{
6b8edb51 5942 remote_state *rs = get_remote_state ();
2e9f7625 5943 char *buf;
6d820c5c 5944
8d64371b 5945 strcpy (rs->buf.data (), "vCont?");
2e9f7625 5946 putpkt (rs->buf);
8d64371b
TT
5947 getpkt (&rs->buf, 0);
5948 buf = rs->buf.data ();
c906108c 5949
506fb367 5950 /* Make sure that the features we assume are supported. */
61012eef 5951 if (startswith (buf, "vCont"))
506fb367
DJ
5952 {
5953 char *p = &buf[5];
750ce8d1 5954 int support_c, support_C;
506fb367 5955
750ce8d1
YQ
5956 rs->supports_vCont.s = 0;
5957 rs->supports_vCont.S = 0;
506fb367
DJ
5958 support_c = 0;
5959 support_C = 0;
d458bd84 5960 rs->supports_vCont.t = 0;
c1e36e3e 5961 rs->supports_vCont.r = 0;
506fb367
DJ
5962 while (p && *p == ';')
5963 {
5964 p++;
5965 if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 5966 rs->supports_vCont.s = 1;
506fb367 5967 else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 5968 rs->supports_vCont.S = 1;
506fb367
DJ
5969 else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
5970 support_c = 1;
5971 else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
5972 support_C = 1;
74531fed 5973 else if (*p == 't' && (*(p + 1) == ';' || *(p + 1) == 0))
d458bd84 5974 rs->supports_vCont.t = 1;
c1e36e3e
PA
5975 else if (*p == 'r' && (*(p + 1) == ';' || *(p + 1) == 0))
5976 rs->supports_vCont.r = 1;
506fb367
DJ
5977
5978 p = strchr (p, ';');
5979 }
c906108c 5980
750ce8d1
YQ
5981 /* If c, and C are not all supported, we can't use vCont. Clearing
5982 BUF will make packet_ok disable the packet. */
5983 if (!support_c || !support_C)
506fb367
DJ
5984 buf[0] = 0;
5985 }
c906108c 5986
8d64371b 5987 packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCont]);
506fb367 5988}
c906108c 5989
0d8f58ca
PA
5990/* Helper function for building "vCont" resumptions. Write a
5991 resumption to P. ENDP points to one-passed-the-end of the buffer
5992 we're allowed to write to. Returns BUF+CHARACTERS_WRITTEN. The
5993 thread to be resumed is PTID; STEP and SIGGNAL indicate whether the
5994 resumed thread should be single-stepped and/or signalled. If PTID
5995 equals minus_one_ptid, then all threads are resumed; if PTID
5996 represents a process, then all threads of the process are resumed;
5997 the thread to be stepped and/or signalled is given in the global
5998 INFERIOR_PTID. */
5999
6b8edb51
PA
6000char *
6001remote_target::append_resumption (char *p, char *endp,
6002 ptid_t ptid, int step, gdb_signal siggnal)
0d8f58ca
PA
6003{
6004 struct remote_state *rs = get_remote_state ();
6005
a493e3e2 6006 if (step && siggnal != GDB_SIGNAL_0)
0d8f58ca 6007 p += xsnprintf (p, endp - p, ";S%02x", siggnal);
c1e36e3e
PA
6008 else if (step
6009 /* GDB is willing to range step. */
6010 && use_range_stepping
6011 /* Target supports range stepping. */
6012 && rs->supports_vCont.r
6013 /* We don't currently support range stepping multiple
6014 threads with a wildcard (though the protocol allows it,
6015 so stubs shouldn't make an active effort to forbid
6016 it). */
0e998d96 6017 && !(remote_multi_process_p (rs) && ptid.is_pid ()))
c1e36e3e
PA
6018 {
6019 struct thread_info *tp;
6020
d7e15655 6021 if (ptid == minus_one_ptid)
c1e36e3e
PA
6022 {
6023 /* If we don't know about the target thread's tid, then
6024 we're resuming magic_null_ptid (see caller). */
6025 tp = find_thread_ptid (magic_null_ptid);
6026 }
6027 else
6028 tp = find_thread_ptid (ptid);
6029 gdb_assert (tp != NULL);
6030
6031 if (tp->control.may_range_step)
6032 {
6033 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
6034
6035 p += xsnprintf (p, endp - p, ";r%s,%s",
6036 phex_nz (tp->control.step_range_start,
6037 addr_size),
6038 phex_nz (tp->control.step_range_end,
6039 addr_size));
6040 }
6041 else
6042 p += xsnprintf (p, endp - p, ";s");
6043 }
0d8f58ca
PA
6044 else if (step)
6045 p += xsnprintf (p, endp - p, ";s");
a493e3e2 6046 else if (siggnal != GDB_SIGNAL_0)
0d8f58ca
PA
6047 p += xsnprintf (p, endp - p, ";C%02x", siggnal);
6048 else
6049 p += xsnprintf (p, endp - p, ";c");
6050
0e998d96 6051 if (remote_multi_process_p (rs) && ptid.is_pid ())
0d8f58ca
PA
6052 {
6053 ptid_t nptid;
6054
6055 /* All (-1) threads of process. */
e99b03dc 6056 nptid = ptid_t (ptid.pid (), -1, 0);
0d8f58ca
PA
6057
6058 p += xsnprintf (p, endp - p, ":");
6059 p = write_ptid (p, endp, nptid);
6060 }
d7e15655 6061 else if (ptid != minus_one_ptid)
0d8f58ca
PA
6062 {
6063 p += xsnprintf (p, endp - p, ":");
6064 p = write_ptid (p, endp, ptid);
6065 }
6066
6067 return p;
6068}
6069
799a2abe
PA
6070/* Clear the thread's private info on resume. */
6071
6072static void
6073resume_clear_thread_private_info (struct thread_info *thread)
6074{
6075 if (thread->priv != NULL)
6076 {
7aabaf9d
SM
6077 remote_thread_info *priv = get_remote_thread_info (thread);
6078
6079 priv->stop_reason = TARGET_STOPPED_BY_NO_REASON;
6080 priv->watch_data_address = 0;
799a2abe
PA
6081 }
6082}
6083
e5ef252a
PA
6084/* Append a vCont continue-with-signal action for threads that have a
6085 non-zero stop signal. */
6086
6b8edb51
PA
6087char *
6088remote_target::append_pending_thread_resumptions (char *p, char *endp,
6089 ptid_t ptid)
e5ef252a 6090{
08036331
PA
6091 for (thread_info *thread : all_non_exited_threads (ptid))
6092 if (inferior_ptid != thread->ptid
70509625 6093 && thread->suspend.stop_signal != GDB_SIGNAL_0)
e5ef252a
PA
6094 {
6095 p = append_resumption (p, endp, thread->ptid,
6096 0, thread->suspend.stop_signal);
6097 thread->suspend.stop_signal = GDB_SIGNAL_0;
799a2abe 6098 resume_clear_thread_private_info (thread);
e5ef252a
PA
6099 }
6100
6101 return p;
6102}
6103
7b68ffbb
PA
6104/* Set the target running, using the packets that use Hc
6105 (c/s/C/S). */
6106
6b8edb51
PA
6107void
6108remote_target::remote_resume_with_hc (ptid_t ptid, int step,
6109 gdb_signal siggnal)
7b68ffbb
PA
6110{
6111 struct remote_state *rs = get_remote_state ();
7b68ffbb
PA
6112 char *buf;
6113
6114 rs->last_sent_signal = siggnal;
6115 rs->last_sent_step = step;
6116
6117 /* The c/s/C/S resume packets use Hc, so set the continue
6118 thread. */
d7e15655 6119 if (ptid == minus_one_ptid)
7b68ffbb
PA
6120 set_continue_thread (any_thread_ptid);
6121 else
6122 set_continue_thread (ptid);
6123
08036331 6124 for (thread_info *thread : all_non_exited_threads ())
7b68ffbb
PA
6125 resume_clear_thread_private_info (thread);
6126
8d64371b 6127 buf = rs->buf.data ();
6b8edb51 6128 if (::execution_direction == EXEC_REVERSE)
7b68ffbb
PA
6129 {
6130 /* We don't pass signals to the target in reverse exec mode. */
6131 if (info_verbose && siggnal != GDB_SIGNAL_0)
6132 warning (_(" - Can't pass signal %d to target in reverse: ignored."),
6133 siggnal);
6134
6135 if (step && packet_support (PACKET_bs) == PACKET_DISABLE)
6136 error (_("Remote reverse-step not supported."));
6137 if (!step && packet_support (PACKET_bc) == PACKET_DISABLE)
6138 error (_("Remote reverse-continue not supported."));
6139
6140 strcpy (buf, step ? "bs" : "bc");
6141 }
6142 else if (siggnal != GDB_SIGNAL_0)
6143 {
6144 buf[0] = step ? 'S' : 'C';
6145 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
6146 buf[2] = tohex (((int) siggnal) & 0xf);
6147 buf[3] = '\0';
6148 }
6149 else
6150 strcpy (buf, step ? "s" : "c");
6151
6152 putpkt (buf);
6153}
6154
506fb367
DJ
6155/* Resume the remote inferior by using a "vCont" packet. The thread
6156 to be resumed is PTID; STEP and SIGGNAL indicate whether the
79d7f229
PA
6157 resumed thread should be single-stepped and/or signalled. If PTID
6158 equals minus_one_ptid, then all threads are resumed; the thread to
6159 be stepped and/or signalled is given in the global INFERIOR_PTID.
6160 This function returns non-zero iff it resumes the inferior.
44eaed12 6161
7b68ffbb
PA
6162 This function issues a strict subset of all possible vCont commands
6163 at the moment. */
44eaed12 6164
6b8edb51
PA
6165int
6166remote_target::remote_resume_with_vcont (ptid_t ptid, int step,
6167 enum gdb_signal siggnal)
506fb367
DJ
6168{
6169 struct remote_state *rs = get_remote_state ();
82f73884
PA
6170 char *p;
6171 char *endp;
44eaed12 6172
7b68ffbb 6173 /* No reverse execution actions defined for vCont. */
6b8edb51 6174 if (::execution_direction == EXEC_REVERSE)
7b68ffbb
PA
6175 return 0;
6176
4082afcc 6177 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6b8edb51 6178 remote_vcont_probe ();
44eaed12 6179
4082afcc 6180 if (packet_support (PACKET_vCont) == PACKET_DISABLE)
6d820c5c 6181 return 0;
44eaed12 6182
8d64371b
TT
6183 p = rs->buf.data ();
6184 endp = p + get_remote_packet_size ();
82f73884 6185
506fb367
DJ
6186 /* If we could generate a wider range of packets, we'd have to worry
6187 about overflowing BUF. Should there be a generic
6188 "multi-part-packet" packet? */
6189
0d8f58ca
PA
6190 p += xsnprintf (p, endp - p, "vCont");
6191
d7e15655 6192 if (ptid == magic_null_ptid)
c906108c 6193 {
79d7f229
PA
6194 /* MAGIC_NULL_PTID means that we don't have any active threads,
6195 so we don't have any TID numbers the inferior will
6196 understand. Make sure to only send forms that do not specify
6197 a TID. */
a9cbf802 6198 append_resumption (p, endp, minus_one_ptid, step, siggnal);
506fb367 6199 }
d7e15655 6200 else if (ptid == minus_one_ptid || ptid.is_pid ())
506fb367 6201 {
0d8f58ca
PA
6202 /* Resume all threads (of all processes, or of a single
6203 process), with preference for INFERIOR_PTID. This assumes
6204 inferior_ptid belongs to the set of all threads we are about
6205 to resume. */
a493e3e2 6206 if (step || siggnal != GDB_SIGNAL_0)
82f73884 6207 {
0d8f58ca
PA
6208 /* Step inferior_ptid, with or without signal. */
6209 p = append_resumption (p, endp, inferior_ptid, step, siggnal);
82f73884 6210 }
0d8f58ca 6211
e5ef252a
PA
6212 /* Also pass down any pending signaled resumption for other
6213 threads not the current. */
6214 p = append_pending_thread_resumptions (p, endp, ptid);
6215
0d8f58ca 6216 /* And continue others without a signal. */
a493e3e2 6217 append_resumption (p, endp, ptid, /*step=*/ 0, GDB_SIGNAL_0);
c906108c
SS
6218 }
6219 else
506fb367
DJ
6220 {
6221 /* Scheduler locking; resume only PTID. */
a9cbf802 6222 append_resumption (p, endp, ptid, step, siggnal);
506fb367 6223 }
c906108c 6224
8d64371b 6225 gdb_assert (strlen (rs->buf.data ()) < get_remote_packet_size ());
82f73884 6226 putpkt (rs->buf);
506fb367 6227
6efcd9a8 6228 if (target_is_non_stop_p ())
74531fed
PA
6229 {
6230 /* In non-stop, the stub replies to vCont with "OK". The stop
6231 reply will be reported asynchronously by means of a `%Stop'
6232 notification. */
8d64371b
TT
6233 getpkt (&rs->buf, 0);
6234 if (strcmp (rs->buf.data (), "OK") != 0)
6235 error (_("Unexpected vCont reply in non-stop mode: %s"),
6236 rs->buf.data ());
74531fed
PA
6237 }
6238
506fb367 6239 return 1;
c906108c 6240}
43ff13b4 6241
506fb367
DJ
6242/* Tell the remote machine to resume. */
6243
f6ac5f3d
PA
6244void
6245remote_target::resume (ptid_t ptid, int step, enum gdb_signal siggnal)
43ff13b4 6246{
d01949b6 6247 struct remote_state *rs = get_remote_state ();
43ff13b4 6248
85ad3aaf
PA
6249 /* When connected in non-stop mode, the core resumes threads
6250 individually. Resuming remote threads directly in target_resume
6251 would thus result in sending one packet per thread. Instead, to
6252 minimize roundtrip latency, here we just store the resume
6253 request; the actual remote resumption will be done in
6254 target_commit_resume / remote_commit_resume, where we'll be able
6255 to do vCont action coalescing. */
f6ac5f3d 6256 if (target_is_non_stop_p () && ::execution_direction != EXEC_REVERSE)
85ad3aaf 6257 {
7aabaf9d 6258 remote_thread_info *remote_thr;
85ad3aaf 6259
d7e15655 6260 if (minus_one_ptid == ptid || ptid.is_pid ())
7aabaf9d 6261 remote_thr = get_remote_thread_info (inferior_ptid);
85ad3aaf 6262 else
7aabaf9d
SM
6263 remote_thr = get_remote_thread_info (ptid);
6264
85ad3aaf
PA
6265 remote_thr->last_resume_step = step;
6266 remote_thr->last_resume_sig = siggnal;
6267 return;
6268 }
6269
722247f1
YQ
6270 /* In all-stop, we can't mark REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN
6271 (explained in remote-notif.c:handle_notification) so
6272 remote_notif_process is not called. We need find a place where
6273 it is safe to start a 'vNotif' sequence. It is good to do it
6274 before resuming inferior, because inferior was stopped and no RSP
6275 traffic at that moment. */
6efcd9a8 6276 if (!target_is_non_stop_p ())
5965e028 6277 remote_notif_process (rs->notif_state, &notif_client_stop);
722247f1 6278
f6ac5f3d 6279 rs->last_resume_exec_dir = ::execution_direction;
3a00c802 6280
7b68ffbb
PA
6281 /* Prefer vCont, and fallback to s/c/S/C, which use Hc. */
6282 if (!remote_resume_with_vcont (ptid, step, siggnal))
6b8edb51 6283 remote_resume_with_hc (ptid, step, siggnal);
43ff13b4 6284
2acceee2 6285 /* We are about to start executing the inferior, let's register it
0df8b418
MS
6286 with the event loop. NOTE: this is the one place where all the
6287 execution commands end up. We could alternatively do this in each
23860348 6288 of the execution commands in infcmd.c. */
2acceee2
JM
6289 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
6290 into infcmd.c in order to allow inferior function calls to work
23860348 6291 NOT asynchronously. */
362646f5 6292 if (target_can_async_p ())
6a3753b3 6293 target_async (1);
e24a49d8
PA
6294
6295 /* We've just told the target to resume. The remote server will
6296 wait for the inferior to stop, and then send a stop reply. In
6297 the mean time, we can't start another command/query ourselves
74531fed
PA
6298 because the stub wouldn't be ready to process it. This applies
6299 only to the base all-stop protocol, however. In non-stop (which
6300 only supports vCont), the stub replies with an "OK", and is
6301 immediate able to process further serial input. */
6efcd9a8 6302 if (!target_is_non_stop_p ())
74531fed 6303 rs->waiting_for_stop_reply = 1;
43ff13b4 6304}
85ad3aaf 6305
85ad3aaf
PA
6306static int is_pending_fork_parent_thread (struct thread_info *thread);
6307
6308/* Private per-inferior info for target remote processes. */
6309
089354bb 6310struct remote_inferior : public private_inferior
85ad3aaf
PA
6311{
6312 /* Whether we can send a wildcard vCont for this process. */
089354bb 6313 bool may_wildcard_vcont = true;
85ad3aaf
PA
6314};
6315
089354bb
SM
6316/* Get the remote private inferior data associated to INF. */
6317
6318static remote_inferior *
6319get_remote_inferior (inferior *inf)
6320{
6321 if (inf->priv == NULL)
6322 inf->priv.reset (new remote_inferior);
6323
6324 return static_cast<remote_inferior *> (inf->priv.get ());
6325}
6326
f5db4863 6327/* Class used to track the construction of a vCont packet in the
85ad3aaf
PA
6328 outgoing packet buffer. This is used to send multiple vCont
6329 packets if we have more actions than would fit a single packet. */
6330
f5db4863 6331class vcont_builder
85ad3aaf 6332{
f5db4863 6333public:
6b8edb51
PA
6334 explicit vcont_builder (remote_target *remote)
6335 : m_remote (remote)
f5db4863
PA
6336 {
6337 restart ();
6338 }
6339
6340 void flush ();
6341 void push_action (ptid_t ptid, bool step, gdb_signal siggnal);
6342
6343private:
6344 void restart ();
6345
6b8edb51
PA
6346 /* The remote target. */
6347 remote_target *m_remote;
6348
85ad3aaf
PA
6349 /* Pointer to the first action. P points here if no action has been
6350 appended yet. */
f5db4863 6351 char *m_first_action;
85ad3aaf
PA
6352
6353 /* Where the next action will be appended. */
f5db4863 6354 char *m_p;
85ad3aaf
PA
6355
6356 /* The end of the buffer. Must never write past this. */
f5db4863 6357 char *m_endp;
85ad3aaf
PA
6358};
6359
6360/* Prepare the outgoing buffer for a new vCont packet. */
6361
f5db4863
PA
6362void
6363vcont_builder::restart ()
85ad3aaf 6364{
6b8edb51 6365 struct remote_state *rs = m_remote->get_remote_state ();
85ad3aaf 6366
8d64371b
TT
6367 m_p = rs->buf.data ();
6368 m_endp = m_p + m_remote->get_remote_packet_size ();
f5db4863
PA
6369 m_p += xsnprintf (m_p, m_endp - m_p, "vCont");
6370 m_first_action = m_p;
85ad3aaf
PA
6371}
6372
6373/* If the vCont packet being built has any action, send it to the
6374 remote end. */
6375
f5db4863
PA
6376void
6377vcont_builder::flush ()
85ad3aaf
PA
6378{
6379 struct remote_state *rs;
6380
f5db4863 6381 if (m_p == m_first_action)
85ad3aaf
PA
6382 return;
6383
6b8edb51
PA
6384 rs = m_remote->get_remote_state ();
6385 m_remote->putpkt (rs->buf);
8d64371b
TT
6386 m_remote->getpkt (&rs->buf, 0);
6387 if (strcmp (rs->buf.data (), "OK") != 0)
6388 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf.data ());
85ad3aaf
PA
6389}
6390
6391/* The largest action is range-stepping, with its two addresses. This
6392 is more than sufficient. If a new, bigger action is created, it'll
6393 quickly trigger a failed assertion in append_resumption (and we'll
6394 just bump this). */
6395#define MAX_ACTION_SIZE 200
6396
6397/* Append a new vCont action in the outgoing packet being built. If
6398 the action doesn't fit the packet along with previous actions, push
6399 what we've got so far to the remote end and start over a new vCont
6400 packet (with the new action). */
6401
f5db4863
PA
6402void
6403vcont_builder::push_action (ptid_t ptid, bool step, gdb_signal siggnal)
85ad3aaf
PA
6404{
6405 char buf[MAX_ACTION_SIZE + 1];
85ad3aaf 6406
6b8edb51
PA
6407 char *endp = m_remote->append_resumption (buf, buf + sizeof (buf),
6408 ptid, step, siggnal);
85ad3aaf
PA
6409
6410 /* Check whether this new action would fit in the vCont packet along
6411 with previous actions. If not, send what we've got so far and
6412 start a new vCont packet. */
f5db4863
PA
6413 size_t rsize = endp - buf;
6414 if (rsize > m_endp - m_p)
85ad3aaf 6415 {
f5db4863
PA
6416 flush ();
6417 restart ();
85ad3aaf
PA
6418
6419 /* Should now fit. */
f5db4863 6420 gdb_assert (rsize <= m_endp - m_p);
85ad3aaf
PA
6421 }
6422
f5db4863
PA
6423 memcpy (m_p, buf, rsize);
6424 m_p += rsize;
6425 *m_p = '\0';
85ad3aaf
PA
6426}
6427
6428/* to_commit_resume implementation. */
6429
f6ac5f3d
PA
6430void
6431remote_target::commit_resume ()
85ad3aaf 6432{
85ad3aaf
PA
6433 int any_process_wildcard;
6434 int may_global_wildcard_vcont;
85ad3aaf
PA
6435
6436 /* If connected in all-stop mode, we'd send the remote resume
6437 request directly from remote_resume. Likewise if
6438 reverse-debugging, as there are no defined vCont actions for
6439 reverse execution. */
f6ac5f3d 6440 if (!target_is_non_stop_p () || ::execution_direction == EXEC_REVERSE)
85ad3aaf
PA
6441 return;
6442
6443 /* Try to send wildcard actions ("vCont;c" or "vCont;c:pPID.-1")
6444 instead of resuming all threads of each process individually.
6445 However, if any thread of a process must remain halted, we can't
6446 send wildcard resumes and must send one action per thread.
6447
6448 Care must be taken to not resume threads/processes the server
6449 side already told us are stopped, but the core doesn't know about
6450 yet, because the events are still in the vStopped notification
6451 queue. For example:
6452
6453 #1 => vCont s:p1.1;c
6454 #2 <= OK
6455 #3 <= %Stopped T05 p1.1
6456 #4 => vStopped
6457 #5 <= T05 p1.2
6458 #6 => vStopped
6459 #7 <= OK
6460 #8 (infrun handles the stop for p1.1 and continues stepping)
6461 #9 => vCont s:p1.1;c
6462
6463 The last vCont above would resume thread p1.2 by mistake, because
6464 the server has no idea that the event for p1.2 had not been
6465 handled yet.
6466
6467 The server side must similarly ignore resume actions for the
6468 thread that has a pending %Stopped notification (and any other
6469 threads with events pending), until GDB acks the notification
6470 with vStopped. Otherwise, e.g., the following case is
6471 mishandled:
6472
6473 #1 => g (or any other packet)
6474 #2 <= [registers]
6475 #3 <= %Stopped T05 p1.2
6476 #4 => vCont s:p1.1;c
6477 #5 <= OK
6478
6479 Above, the server must not resume thread p1.2. GDB can't know
6480 that p1.2 stopped until it acks the %Stopped notification, and
6481 since from GDB's perspective all threads should be running, it
6482 sends a "c" action.
6483
6484 Finally, special care must also be given to handling fork/vfork
6485 events. A (v)fork event actually tells us that two processes
6486 stopped -- the parent and the child. Until we follow the fork,
6487 we must not resume the child. Therefore, if we have a pending
6488 fork follow, we must not send a global wildcard resume action
6489 (vCont;c). We can still send process-wide wildcards though. */
6490
6491 /* Start by assuming a global wildcard (vCont;c) is possible. */
6492 may_global_wildcard_vcont = 1;
6493
6494 /* And assume every process is individually wildcard-able too. */
08036331 6495 for (inferior *inf : all_non_exited_inferiors ())
85ad3aaf 6496 {
089354bb
SM
6497 remote_inferior *priv = get_remote_inferior (inf);
6498
6499 priv->may_wildcard_vcont = true;
85ad3aaf
PA
6500 }
6501
6502 /* Check for any pending events (not reported or processed yet) and
6503 disable process and global wildcard resumes appropriately. */
6504 check_pending_events_prevent_wildcard_vcont (&may_global_wildcard_vcont);
6505
08036331 6506 for (thread_info *tp : all_non_exited_threads ())
85ad3aaf
PA
6507 {
6508 /* If a thread of a process is not meant to be resumed, then we
6509 can't wildcard that process. */
6510 if (!tp->executing)
6511 {
089354bb 6512 get_remote_inferior (tp->inf)->may_wildcard_vcont = false;
85ad3aaf
PA
6513
6514 /* And if we can't wildcard a process, we can't wildcard
6515 everything either. */
6516 may_global_wildcard_vcont = 0;
6517 continue;
6518 }
6519
6520 /* If a thread is the parent of an unfollowed fork, then we
6521 can't do a global wildcard, as that would resume the fork
6522 child. */
6523 if (is_pending_fork_parent_thread (tp))
6524 may_global_wildcard_vcont = 0;
6525 }
6526
6527 /* Now let's build the vCont packet(s). Actions must be appended
6528 from narrower to wider scopes (thread -> process -> global). If
6529 we end up with too many actions for a single packet vcont_builder
6530 flushes the current vCont packet to the remote side and starts a
6531 new one. */
6b8edb51 6532 struct vcont_builder vcont_builder (this);
85ad3aaf
PA
6533
6534 /* Threads first. */
08036331 6535 for (thread_info *tp : all_non_exited_threads ())
85ad3aaf 6536 {
7aabaf9d 6537 remote_thread_info *remote_thr = get_remote_thread_info (tp);
85ad3aaf
PA
6538
6539 if (!tp->executing || remote_thr->vcont_resumed)
6540 continue;
6541
6542 gdb_assert (!thread_is_in_step_over_chain (tp));
6543
6544 if (!remote_thr->last_resume_step
6545 && remote_thr->last_resume_sig == GDB_SIGNAL_0
089354bb 6546 && get_remote_inferior (tp->inf)->may_wildcard_vcont)
85ad3aaf
PA
6547 {
6548 /* We'll send a wildcard resume instead. */
6549 remote_thr->vcont_resumed = 1;
6550 continue;
6551 }
6552
f5db4863 6553 vcont_builder.push_action (tp->ptid,
85ad3aaf
PA
6554 remote_thr->last_resume_step,
6555 remote_thr->last_resume_sig);
6556 remote_thr->vcont_resumed = 1;
6557 }
6558
6559 /* Now check whether we can send any process-wide wildcard. This is
6560 to avoid sending a global wildcard in the case nothing is
6561 supposed to be resumed. */
6562 any_process_wildcard = 0;
6563
08036331 6564 for (inferior *inf : all_non_exited_inferiors ())
85ad3aaf 6565 {
089354bb 6566 if (get_remote_inferior (inf)->may_wildcard_vcont)
85ad3aaf
PA
6567 {
6568 any_process_wildcard = 1;
6569 break;
6570 }
6571 }
6572
6573 if (any_process_wildcard)
6574 {
6575 /* If all processes are wildcard-able, then send a single "c"
6576 action, otherwise, send an "all (-1) threads of process"
6577 continue action for each running process, if any. */
6578 if (may_global_wildcard_vcont)
6579 {
f5db4863
PA
6580 vcont_builder.push_action (minus_one_ptid,
6581 false, GDB_SIGNAL_0);
85ad3aaf
PA
6582 }
6583 else
6584 {
08036331 6585 for (inferior *inf : all_non_exited_inferiors ())
85ad3aaf 6586 {
089354bb 6587 if (get_remote_inferior (inf)->may_wildcard_vcont)
85ad3aaf 6588 {
f2907e49 6589 vcont_builder.push_action (ptid_t (inf->pid),
f5db4863 6590 false, GDB_SIGNAL_0);
85ad3aaf
PA
6591 }
6592 }
6593 }
6594 }
6595
f5db4863 6596 vcont_builder.flush ();
85ad3aaf
PA
6597}
6598
c906108c 6599\f
43ff13b4 6600
74531fed
PA
6601/* Non-stop version of target_stop. Uses `vCont;t' to stop a remote
6602 thread, all threads of a remote process, or all threads of all
6603 processes. */
6604
6b8edb51
PA
6605void
6606remote_target::remote_stop_ns (ptid_t ptid)
74531fed
PA
6607{
6608 struct remote_state *rs = get_remote_state ();
8d64371b
TT
6609 char *p = rs->buf.data ();
6610 char *endp = p + get_remote_packet_size ();
74531fed 6611
4082afcc 6612 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6b8edb51 6613 remote_vcont_probe ();
74531fed 6614
d458bd84 6615 if (!rs->supports_vCont.t)
74531fed
PA
6616 error (_("Remote server does not support stopping threads"));
6617
d7e15655 6618 if (ptid == minus_one_ptid
0e998d96 6619 || (!remote_multi_process_p (rs) && ptid.is_pid ()))
74531fed
PA
6620 p += xsnprintf (p, endp - p, "vCont;t");
6621 else
6622 {
6623 ptid_t nptid;
6624
74531fed
PA
6625 p += xsnprintf (p, endp - p, "vCont;t:");
6626
0e998d96 6627 if (ptid.is_pid ())
74531fed 6628 /* All (-1) threads of process. */
e99b03dc 6629 nptid = ptid_t (ptid.pid (), -1, 0);
74531fed
PA
6630 else
6631 {
6632 /* Small optimization: if we already have a stop reply for
6633 this thread, no use in telling the stub we want this
6634 stopped. */
6635 if (peek_stop_reply (ptid))
6636 return;
6637
6638 nptid = ptid;
6639 }
6640
a9cbf802 6641 write_ptid (p, endp, nptid);
74531fed
PA
6642 }
6643
6644 /* In non-stop, we get an immediate OK reply. The stop reply will
6645 come in asynchronously by notification. */
6646 putpkt (rs->buf);
8d64371b
TT
6647 getpkt (&rs->buf, 0);
6648 if (strcmp (rs->buf.data (), "OK") != 0)
6649 error (_("Stopping %s failed: %s"), target_pid_to_str (ptid),
6650 rs->buf.data ());
74531fed
PA
6651}
6652
bfedc46a
PA
6653/* All-stop version of target_interrupt. Sends a break or a ^C to
6654 interrupt the remote target. It is undefined which thread of which
6655 process reports the interrupt. */
74531fed 6656
6b8edb51
PA
6657void
6658remote_target::remote_interrupt_as ()
74531fed
PA
6659{
6660 struct remote_state *rs = get_remote_state ();
6661
3a29589a
DJ
6662 rs->ctrlc_pending_p = 1;
6663
74531fed
PA
6664 /* If the inferior is stopped already, but the core didn't know
6665 about it yet, just ignore the request. The cached wait status
6666 will be collected in remote_wait. */
6667 if (rs->cached_wait_status)
6668 return;
6669
9a7071a8
JB
6670 /* Send interrupt_sequence to remote target. */
6671 send_interrupt_sequence ();
74531fed
PA
6672}
6673
de979965
PA
6674/* Non-stop version of target_interrupt. Uses `vCtrlC' to interrupt
6675 the remote target. It is undefined which thread of which process
e42de8c7
PA
6676 reports the interrupt. Throws an error if the packet is not
6677 supported by the server. */
de979965 6678
6b8edb51
PA
6679void
6680remote_target::remote_interrupt_ns ()
de979965
PA
6681{
6682 struct remote_state *rs = get_remote_state ();
8d64371b
TT
6683 char *p = rs->buf.data ();
6684 char *endp = p + get_remote_packet_size ();
de979965
PA
6685
6686 xsnprintf (p, endp - p, "vCtrlC");
6687
6688 /* In non-stop, we get an immediate OK reply. The stop reply will
6689 come in asynchronously by notification. */
6690 putpkt (rs->buf);
8d64371b 6691 getpkt (&rs->buf, 0);
de979965
PA
6692
6693 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCtrlC]))
6694 {
6695 case PACKET_OK:
6696 break;
6697 case PACKET_UNKNOWN:
e42de8c7 6698 error (_("No support for interrupting the remote target."));
de979965 6699 case PACKET_ERROR:
8d64371b 6700 error (_("Interrupting target failed: %s"), rs->buf.data ());
de979965 6701 }
de979965
PA
6702}
6703
bfedc46a 6704/* Implement the to_stop function for the remote targets. */
74531fed 6705
f6ac5f3d
PA
6706void
6707remote_target::stop (ptid_t ptid)
c906108c 6708{
7a292a7a 6709 if (remote_debug)
0f71a2f6 6710 fprintf_unfiltered (gdb_stdlog, "remote_stop called\n");
c906108c 6711
6efcd9a8 6712 if (target_is_non_stop_p ())
74531fed 6713 remote_stop_ns (ptid);
c906108c 6714 else
bfedc46a
PA
6715 {
6716 /* We don't currently have a way to transparently pause the
6717 remote target in all-stop mode. Interrupt it instead. */
de979965 6718 remote_interrupt_as ();
bfedc46a
PA
6719 }
6720}
6721
6722/* Implement the to_interrupt function for the remote targets. */
6723
f6ac5f3d
PA
6724void
6725remote_target::interrupt ()
bfedc46a
PA
6726{
6727 if (remote_debug)
6728 fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n");
6729
e42de8c7
PA
6730 if (target_is_non_stop_p ())
6731 remote_interrupt_ns ();
bfedc46a 6732 else
e42de8c7 6733 remote_interrupt_as ();
c906108c
SS
6734}
6735
93692b58
PA
6736/* Implement the to_pass_ctrlc function for the remote targets. */
6737
f6ac5f3d
PA
6738void
6739remote_target::pass_ctrlc ()
93692b58
PA
6740{
6741 struct remote_state *rs = get_remote_state ();
6742
6743 if (remote_debug)
6744 fprintf_unfiltered (gdb_stdlog, "remote_pass_ctrlc called\n");
6745
6746 /* If we're starting up, we're not fully synced yet. Quit
6747 immediately. */
6748 if (rs->starting_up)
6749 quit ();
6750 /* If ^C has already been sent once, offer to disconnect. */
6751 else if (rs->ctrlc_pending_p)
6752 interrupt_query ();
6753 else
e671cd59 6754 target_interrupt ();
93692b58
PA
6755}
6756
c906108c
SS
6757/* Ask the user what to do when an interrupt is received. */
6758
6b8edb51
PA
6759void
6760remote_target::interrupt_query ()
c906108c 6761{
abc56d60 6762 struct remote_state *rs = get_remote_state ();
c906108c 6763
abc56d60 6764 if (rs->waiting_for_stop_reply && rs->ctrlc_pending_p)
74531fed 6765 {
abc56d60
PA
6766 if (query (_("The target is not responding to interrupt requests.\n"
6767 "Stop debugging it? ")))
74531fed 6768 {
78a095c3 6769 remote_unpush_target ();
abc56d60 6770 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
74531fed
PA
6771 }
6772 }
abc56d60
PA
6773 else
6774 {
6775 if (query (_("Interrupted while waiting for the program.\n"
6776 "Give up waiting? ")))
6777 quit ();
6778 }
c906108c
SS
6779}
6780
6426a772
JM
6781/* Enable/disable target terminal ownership. Most targets can use
6782 terminal groups to control terminal ownership. Remote targets are
6783 different in that explicit transfer of ownership to/from GDB/target
23860348 6784 is required. */
6426a772 6785
f6ac5f3d
PA
6786void
6787remote_target::terminal_inferior ()
6426a772 6788{
6426a772
JM
6789 /* NOTE: At this point we could also register our selves as the
6790 recipient of all input. Any characters typed could then be
23860348 6791 passed on down to the target. */
6426a772
JM
6792}
6793
f6ac5f3d
PA
6794void
6795remote_target::terminal_ours ()
6426a772 6796{
6426a772
JM
6797}
6798
176a6961 6799static void
05be00a8 6800remote_console_output (const char *msg)
c906108c 6801{
05be00a8 6802 const char *p;
c906108c 6803
c5aa993b 6804 for (p = msg; p[0] && p[1]; p += 2)
c906108c
SS
6805 {
6806 char tb[2];
6807 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
a744cf53 6808
c906108c
SS
6809 tb[0] = c;
6810 tb[1] = 0;
43ff13b4 6811 fputs_unfiltered (tb, gdb_stdtarg);
c906108c 6812 }
00db5b94
PA
6813 gdb_flush (gdb_stdtarg);
6814}
74531fed 6815
74531fed
PA
6816DEF_VEC_O(cached_reg_t);
6817
722247f1 6818typedef struct stop_reply
74531fed 6819{
722247f1 6820 struct notif_event base;
74531fed 6821
722247f1 6822 /* The identifier of the thread about this event */
74531fed
PA
6823 ptid_t ptid;
6824
340e3c99 6825 /* The remote state this event is associated with. When the remote
bcc75809
YQ
6826 connection, represented by a remote_state object, is closed,
6827 all the associated stop_reply events should be released. */
6828 struct remote_state *rs;
6829
74531fed
PA
6830 struct target_waitstatus ws;
6831
5cd63fda
PA
6832 /* The architecture associated with the expedited registers. */
6833 gdbarch *arch;
6834
15148d6a
PA
6835 /* Expedited registers. This makes remote debugging a bit more
6836 efficient for those targets that provide critical registers as
6837 part of their normal status mechanism (as another roundtrip to
6838 fetch them is avoided). */
74531fed
PA
6839 VEC(cached_reg_t) *regcache;
6840
f7e6eed5
PA
6841 enum target_stop_reason stop_reason;
6842
74531fed
PA
6843 CORE_ADDR watch_data_address;
6844
dc146f7c 6845 int core;
722247f1 6846} *stop_reply_p;
a744cf53 6847
74531fed
PA
6848static void
6849stop_reply_xfree (struct stop_reply *r)
6850{
f48ff2a7 6851 notif_event_xfree ((struct notif_event *) r);
c906108c
SS
6852}
6853
221e1a37
PA
6854/* Return the length of the stop reply queue. */
6855
6b8edb51
PA
6856int
6857remote_target::stop_reply_queue_length ()
221e1a37 6858{
6b8edb51 6859 remote_state *rs = get_remote_state ();
953edf2b 6860 return rs->stop_reply_queue.size ();
221e1a37
PA
6861}
6862
6b8edb51
PA
6863void
6864remote_notif_stop_parse (remote_target *remote,
bb277751 6865 struct notif_client *self, const char *buf,
722247f1
YQ
6866 struct notif_event *event)
6867{
6b8edb51 6868 remote->remote_parse_stop_reply (buf, (struct stop_reply *) event);
722247f1
YQ
6869}
6870
6871static void
6b8edb51 6872remote_notif_stop_ack (remote_target *remote,
bb277751 6873 struct notif_client *self, const char *buf,
722247f1
YQ
6874 struct notif_event *event)
6875{
6876 struct stop_reply *stop_reply = (struct stop_reply *) event;
6877
6878 /* acknowledge */
6b8edb51 6879 putpkt (remote, self->ack_command);
722247f1
YQ
6880
6881 if (stop_reply->ws.kind == TARGET_WAITKIND_IGNORE)
6b8edb51 6882 {
722247f1
YQ
6883 /* We got an unknown stop reply. */
6884 error (_("Unknown stop reply"));
6b8edb51 6885 }
722247f1 6886
6b8edb51 6887 remote->push_stop_reply (stop_reply);
722247f1
YQ
6888}
6889
6890static int
6b8edb51
PA
6891remote_notif_stop_can_get_pending_events (remote_target *remote,
6892 struct notif_client *self)
722247f1
YQ
6893{
6894 /* We can't get pending events in remote_notif_process for
6895 notification stop, and we have to do this in remote_wait_ns
6896 instead. If we fetch all queued events from stub, remote stub
6897 may exit and we have no chance to process them back in
6898 remote_wait_ns. */
6b8edb51
PA
6899 remote_state *rs = remote->get_remote_state ();
6900 mark_async_event_handler (rs->remote_async_inferior_event_token);
722247f1
YQ
6901 return 0;
6902}
6903
6904static void
6905stop_reply_dtr (struct notif_event *event)
6906{
6907 struct stop_reply *r = (struct stop_reply *) event;
d1dff226
AH
6908 cached_reg_t *reg;
6909 int ix;
6910
6911 for (ix = 0;
6912 VEC_iterate (cached_reg_t, r->regcache, ix, reg);
6913 ix++)
6914 xfree (reg->data);
722247f1
YQ
6915
6916 VEC_free (cached_reg_t, r->regcache);
6917}
6918
6919static struct notif_event *
6920remote_notif_stop_alloc_reply (void)
6921{
8d749320
SM
6922 /* We cast to a pointer to the "base class". */
6923 struct notif_event *r = (struct notif_event *) XNEW (struct stop_reply);
722247f1
YQ
6924
6925 r->dtr = stop_reply_dtr;
6926
6927 return r;
6928}
6929
6930/* A client of notification Stop. */
6931
6932struct notif_client notif_client_stop =
6933{
6934 "Stop",
6935 "vStopped",
6936 remote_notif_stop_parse,
6937 remote_notif_stop_ack,
6938 remote_notif_stop_can_get_pending_events,
6939 remote_notif_stop_alloc_reply,
f48ff2a7 6940 REMOTE_NOTIF_STOP,
722247f1
YQ
6941};
6942
85ad3aaf 6943/* Determine if THREAD_PTID is a pending fork parent thread. ARG contains
cbb8991c
DB
6944 the pid of the process that owns the threads we want to check, or
6945 -1 if we want to check all threads. */
6946
6947static int
6948is_pending_fork_parent (struct target_waitstatus *ws, int event_pid,
6949 ptid_t thread_ptid)
6950{
6951 if (ws->kind == TARGET_WAITKIND_FORKED
6952 || ws->kind == TARGET_WAITKIND_VFORKED)
6953 {
e99b03dc 6954 if (event_pid == -1 || event_pid == thread_ptid.pid ())
cbb8991c
DB
6955 return 1;
6956 }
6957
6958 return 0;
6959}
6960
85ad3aaf
PA
6961/* Return the thread's pending status used to determine whether the
6962 thread is a fork parent stopped at a fork event. */
6963
6964static struct target_waitstatus *
6965thread_pending_fork_status (struct thread_info *thread)
6966{
6967 if (thread->suspend.waitstatus_pending_p)
6968 return &thread->suspend.waitstatus;
6969 else
6970 return &thread->pending_follow;
6971}
6972
6973/* Determine if THREAD is a pending fork parent thread. */
6974
6975static int
6976is_pending_fork_parent_thread (struct thread_info *thread)
6977{
6978 struct target_waitstatus *ws = thread_pending_fork_status (thread);
6979 int pid = -1;
6980
6981 return is_pending_fork_parent (ws, pid, thread->ptid);
6982}
6983
cbb8991c
DB
6984/* If CONTEXT contains any fork child threads that have not been
6985 reported yet, remove them from the CONTEXT list. If such a
6986 thread exists it is because we are stopped at a fork catchpoint
6987 and have not yet called follow_fork, which will set up the
6988 host-side data structures for the new process. */
6989
6b8edb51
PA
6990void
6991remote_target::remove_new_fork_children (threads_listing_context *context)
cbb8991c 6992{
cbb8991c
DB
6993 int pid = -1;
6994 struct notif_client *notif = &notif_client_stop;
cbb8991c
DB
6995
6996 /* For any threads stopped at a fork event, remove the corresponding
6997 fork child threads from the CONTEXT list. */
08036331 6998 for (thread_info *thread : all_non_exited_threads ())
cbb8991c 6999 {
85ad3aaf 7000 struct target_waitstatus *ws = thread_pending_fork_status (thread);
cbb8991c
DB
7001
7002 if (is_pending_fork_parent (ws, pid, thread->ptid))
21fe1c75 7003 context->remove_thread (ws->value.related_pid);
cbb8991c
DB
7004 }
7005
7006 /* Check for any pending fork events (not reported or processed yet)
7007 in process PID and remove those fork child threads from the
7008 CONTEXT list as well. */
7009 remote_notif_get_pending_events (notif);
953edf2b
TT
7010 for (auto &event : get_remote_state ()->stop_reply_queue)
7011 if (event->ws.kind == TARGET_WAITKIND_FORKED
7012 || event->ws.kind == TARGET_WAITKIND_VFORKED
7013 || event->ws.kind == TARGET_WAITKIND_THREAD_EXITED)
7014 context->remove_thread (event->ws.value.related_pid);
85ad3aaf
PA
7015}
7016
7017/* Check whether any event pending in the vStopped queue would prevent
7018 a global or process wildcard vCont action. Clear
7019 *may_global_wildcard if we can't do a global wildcard (vCont;c),
7020 and clear the event inferior's may_wildcard_vcont flag if we can't
7021 do a process-wide wildcard resume (vCont;c:pPID.-1). */
7022
6b8edb51
PA
7023void
7024remote_target::check_pending_events_prevent_wildcard_vcont
7025 (int *may_global_wildcard)
85ad3aaf
PA
7026{
7027 struct notif_client *notif = &notif_client_stop;
7028
7029 remote_notif_get_pending_events (notif);
953edf2b
TT
7030 for (auto &event : get_remote_state ()->stop_reply_queue)
7031 {
7032 if (event->ws.kind == TARGET_WAITKIND_NO_RESUMED
7033 || event->ws.kind == TARGET_WAITKIND_NO_HISTORY)
7034 continue;
85ad3aaf 7035
953edf2b
TT
7036 if (event->ws.kind == TARGET_WAITKIND_FORKED
7037 || event->ws.kind == TARGET_WAITKIND_VFORKED)
7038 *may_global_wildcard = 0;
722247f1 7039
953edf2b 7040 struct inferior *inf = find_inferior_ptid (event->ptid);
722247f1 7041
953edf2b
TT
7042 /* This may be the first time we heard about this process.
7043 Regardless, we must not do a global wildcard resume, otherwise
7044 we'd resume this process too. */
7045 *may_global_wildcard = 0;
7046 if (inf != NULL)
7047 get_remote_inferior (inf)->may_wildcard_vcont = false;
722247f1 7048 }
722247f1
YQ
7049}
7050
f48ff2a7 7051/* Discard all pending stop replies of inferior INF. */
c906108c 7052
6b8edb51
PA
7053void
7054remote_target::discard_pending_stop_replies (struct inferior *inf)
c906108c 7055{
f48ff2a7
YQ
7056 struct stop_reply *reply;
7057 struct remote_state *rs = get_remote_state ();
7058 struct remote_notif_state *rns = rs->notif_state;
7059
7060 /* This function can be notified when an inferior exists. When the
7061 target is not remote, the notification state is NULL. */
7062 if (rs->remote_desc == NULL)
7063 return;
7064
7065 reply = (struct stop_reply *) rns->pending_event[notif_client_stop.id];
c906108c 7066
74531fed 7067 /* Discard the in-flight notification. */
e99b03dc 7068 if (reply != NULL && reply->ptid.pid () == inf->pid)
74531fed 7069 {
722247f1 7070 stop_reply_xfree (reply);
f48ff2a7 7071 rns->pending_event[notif_client_stop.id] = NULL;
74531fed 7072 }
c906108c 7073
74531fed
PA
7074 /* Discard the stop replies we have already pulled with
7075 vStopped. */
953edf2b
TT
7076 auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7077 rs->stop_reply_queue.end (),
7078 [=] (const stop_reply_up &event)
7079 {
7080 return event->ptid.pid () == inf->pid;
7081 });
7082 rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
bcc75809
YQ
7083}
7084
7085/* Discard the stop replies for RS in stop_reply_queue. */
f48ff2a7 7086
6b8edb51
PA
7087void
7088remote_target::discard_pending_stop_replies_in_queue ()
f48ff2a7 7089{
6b8edb51 7090 remote_state *rs = get_remote_state ();
f48ff2a7 7091
f48ff2a7
YQ
7092 /* Discard the stop replies we have already pulled with
7093 vStopped. */
953edf2b
TT
7094 auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7095 rs->stop_reply_queue.end (),
7096 [=] (const stop_reply_up &event)
7097 {
7098 return event->rs == rs;
7099 });
7100 rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
74531fed 7101}
43ff13b4 7102
722247f1
YQ
7103/* Remove the first reply in 'stop_reply_queue' which matches
7104 PTID. */
2e9f7625 7105
6b8edb51
PA
7106struct stop_reply *
7107remote_target::remote_notif_remove_queued_reply (ptid_t ptid)
74531fed 7108{
953edf2b 7109 remote_state *rs = get_remote_state ();
722247f1 7110
953edf2b
TT
7111 auto iter = std::find_if (rs->stop_reply_queue.begin (),
7112 rs->stop_reply_queue.end (),
7113 [=] (const stop_reply_up &event)
7114 {
7115 return event->ptid.matches (ptid);
7116 });
7117 struct stop_reply *result;
7118 if (iter == rs->stop_reply_queue.end ())
7119 result = nullptr;
7120 else
7121 {
7122 result = iter->release ();
7123 rs->stop_reply_queue.erase (iter);
7124 }
722247f1 7125
722247f1
YQ
7126 if (notif_debug)
7127 fprintf_unfiltered (gdb_stdlog,
7128 "notif: discard queued event: 'Stop' in %s\n",
7129 target_pid_to_str (ptid));
a744cf53 7130
953edf2b 7131 return result;
74531fed 7132}
75c99385 7133
74531fed
PA
7134/* Look for a queued stop reply belonging to PTID. If one is found,
7135 remove it from the queue, and return it. Returns NULL if none is
7136 found. If there are still queued events left to process, tell the
7137 event loop to get back to target_wait soon. */
e24a49d8 7138
6b8edb51
PA
7139struct stop_reply *
7140remote_target::queued_stop_reply (ptid_t ptid)
74531fed 7141{
953edf2b 7142 remote_state *rs = get_remote_state ();
722247f1 7143 struct stop_reply *r = remote_notif_remove_queued_reply (ptid);
74531fed 7144
953edf2b 7145 if (!rs->stop_reply_queue.empty ())
6b8edb51 7146 {
6b8edb51
PA
7147 /* There's still at least an event left. */
7148 mark_async_event_handler (rs->remote_async_inferior_event_token);
7149 }
74531fed 7150
722247f1 7151 return r;
74531fed
PA
7152}
7153
7154/* Push a fully parsed stop reply in the stop reply queue. Since we
7155 know that we now have at least one queued event left to pass to the
7156 core side, tell the event loop to get back to target_wait soon. */
7157
6b8edb51
PA
7158void
7159remote_target::push_stop_reply (struct stop_reply *new_event)
74531fed 7160{
6b8edb51 7161 remote_state *rs = get_remote_state ();
953edf2b 7162 rs->stop_reply_queue.push_back (stop_reply_up (new_event));
74531fed 7163
722247f1
YQ
7164 if (notif_debug)
7165 fprintf_unfiltered (gdb_stdlog,
7166 "notif: push 'Stop' %s to queue %d\n",
7167 target_pid_to_str (new_event->ptid),
953edf2b 7168 int (rs->stop_reply_queue.size ()));
74531fed 7169
6b8edb51 7170 mark_async_event_handler (rs->remote_async_inferior_event_token);
74531fed
PA
7171}
7172
7173/* Returns true if we have a stop reply for PTID. */
7174
6b8edb51
PA
7175int
7176remote_target::peek_stop_reply (ptid_t ptid)
74531fed 7177{
6b8edb51 7178 remote_state *rs = get_remote_state ();
953edf2b
TT
7179 for (auto &event : rs->stop_reply_queue)
7180 if (ptid == event->ptid
7181 && event->ws.kind == TARGET_WAITKIND_STOPPED)
7182 return 1;
7183 return 0;
74531fed
PA
7184}
7185
26d56a93
SL
7186/* Helper for remote_parse_stop_reply. Return nonzero if the substring
7187 starting with P and ending with PEND matches PREFIX. */
7188
7189static int
7190strprefix (const char *p, const char *pend, const char *prefix)
7191{
7192 for ( ; p < pend; p++, prefix++)
7193 if (*p != *prefix)
7194 return 0;
7195 return *prefix == '\0';
7196}
7197
74531fed
PA
7198/* Parse the stop reply in BUF. Either the function succeeds, and the
7199 result is stored in EVENT, or throws an error. */
7200
6b8edb51 7201void
bb277751 7202remote_target::remote_parse_stop_reply (const char *buf, stop_reply *event)
74531fed 7203{
5cd63fda 7204 remote_arch_state *rsa = NULL;
74531fed 7205 ULONGEST addr;
256642e8 7206 const char *p;
94585166 7207 int skipregs = 0;
74531fed
PA
7208
7209 event->ptid = null_ptid;
bcc75809 7210 event->rs = get_remote_state ();
74531fed
PA
7211 event->ws.kind = TARGET_WAITKIND_IGNORE;
7212 event->ws.value.integer = 0;
f7e6eed5 7213 event->stop_reason = TARGET_STOPPED_BY_NO_REASON;
74531fed 7214 event->regcache = NULL;
dc146f7c 7215 event->core = -1;
74531fed
PA
7216
7217 switch (buf[0])
7218 {
7219 case 'T': /* Status with PC, SP, FP, ... */
cea39f65
MS
7220 /* Expedited reply, containing Signal, {regno, reg} repeat. */
7221 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
7222 ss = signal number
7223 n... = register number
7224 r... = register contents
7225 */
7226
7227 p = &buf[3]; /* after Txx */
7228 while (*p)
7229 {
256642e8 7230 const char *p1;
cea39f65 7231 int fieldsize;
43ff13b4 7232
1f10ba14
PA
7233 p1 = strchr (p, ':');
7234 if (p1 == NULL)
7235 error (_("Malformed packet(a) (missing colon): %s\n\
7236Packet: '%s'\n"),
7237 p, buf);
7238 if (p == p1)
7239 error (_("Malformed packet(a) (missing register number): %s\n\
7240Packet: '%s'\n"),
7241 p, buf);
3c3bea1c 7242
1f10ba14
PA
7243 /* Some "registers" are actually extended stop information.
7244 Note if you're adding a new entry here: GDB 7.9 and
7245 earlier assume that all register "numbers" that start
7246 with an hex digit are real register numbers. Make sure
7247 the server only sends such a packet if it knows the
7248 client understands it. */
c8e38a49 7249
26d56a93 7250 if (strprefix (p, p1, "thread"))
1f10ba14 7251 event->ptid = read_ptid (++p1, &p);
82075af2
JS
7252 else if (strprefix (p, p1, "syscall_entry"))
7253 {
7254 ULONGEST sysno;
7255
7256 event->ws.kind = TARGET_WAITKIND_SYSCALL_ENTRY;
7257 p = unpack_varlen_hex (++p1, &sysno);
7258 event->ws.value.syscall_number = (int) sysno;
7259 }
7260 else if (strprefix (p, p1, "syscall_return"))
7261 {
7262 ULONGEST sysno;
7263
7264 event->ws.kind = TARGET_WAITKIND_SYSCALL_RETURN;
7265 p = unpack_varlen_hex (++p1, &sysno);
7266 event->ws.value.syscall_number = (int) sysno;
7267 }
26d56a93
SL
7268 else if (strprefix (p, p1, "watch")
7269 || strprefix (p, p1, "rwatch")
7270 || strprefix (p, p1, "awatch"))
cea39f65 7271 {
f7e6eed5 7272 event->stop_reason = TARGET_STOPPED_BY_WATCHPOINT;
1f10ba14
PA
7273 p = unpack_varlen_hex (++p1, &addr);
7274 event->watch_data_address = (CORE_ADDR) addr;
cea39f65 7275 }
26d56a93 7276 else if (strprefix (p, p1, "swbreak"))
f7e6eed5
PA
7277 {
7278 event->stop_reason = TARGET_STOPPED_BY_SW_BREAKPOINT;
7279
7280 /* Make sure the stub doesn't forget to indicate support
7281 with qSupported. */
7282 if (packet_support (PACKET_swbreak_feature) != PACKET_ENABLE)
7283 error (_("Unexpected swbreak stop reason"));
7284
7285 /* The value part is documented as "must be empty",
7286 though we ignore it, in case we ever decide to make
7287 use of it in a backward compatible way. */
8424cc97 7288 p = strchrnul (p1 + 1, ';');
f7e6eed5 7289 }
26d56a93 7290 else if (strprefix (p, p1, "hwbreak"))
f7e6eed5
PA
7291 {
7292 event->stop_reason = TARGET_STOPPED_BY_HW_BREAKPOINT;
7293
7294 /* Make sure the stub doesn't forget to indicate support
7295 with qSupported. */
7296 if (packet_support (PACKET_hwbreak_feature) != PACKET_ENABLE)
7297 error (_("Unexpected hwbreak stop reason"));
7298
7299 /* See above. */
8424cc97 7300 p = strchrnul (p1 + 1, ';');
f7e6eed5 7301 }
26d56a93 7302 else if (strprefix (p, p1, "library"))
cea39f65 7303 {
1f10ba14 7304 event->ws.kind = TARGET_WAITKIND_LOADED;
8424cc97 7305 p = strchrnul (p1 + 1, ';');
1f10ba14 7306 }
26d56a93 7307 else if (strprefix (p, p1, "replaylog"))
1f10ba14
PA
7308 {
7309 event->ws.kind = TARGET_WAITKIND_NO_HISTORY;
7310 /* p1 will indicate "begin" or "end", but it makes
7311 no difference for now, so ignore it. */
8424cc97 7312 p = strchrnul (p1 + 1, ';');
1f10ba14 7313 }
26d56a93 7314 else if (strprefix (p, p1, "core"))
1f10ba14
PA
7315 {
7316 ULONGEST c;
a744cf53 7317
1f10ba14
PA
7318 p = unpack_varlen_hex (++p1, &c);
7319 event->core = c;
cea39f65 7320 }
26d56a93 7321 else if (strprefix (p, p1, "fork"))
de0d863e
DB
7322 {
7323 event->ws.value.related_pid = read_ptid (++p1, &p);
7324 event->ws.kind = TARGET_WAITKIND_FORKED;
7325 }
26d56a93 7326 else if (strprefix (p, p1, "vfork"))
c269dbdb
DB
7327 {
7328 event->ws.value.related_pid = read_ptid (++p1, &p);
7329 event->ws.kind = TARGET_WAITKIND_VFORKED;
7330 }
26d56a93 7331 else if (strprefix (p, p1, "vforkdone"))
c269dbdb
DB
7332 {
7333 event->ws.kind = TARGET_WAITKIND_VFORK_DONE;
8424cc97 7334 p = strchrnul (p1 + 1, ';');
c269dbdb 7335 }
6ab24463 7336 else if (strprefix (p, p1, "exec"))
94585166
DB
7337 {
7338 ULONGEST ignored;
94585166
DB
7339 int pathlen;
7340
7341 /* Determine the length of the execd pathname. */
7342 p = unpack_varlen_hex (++p1, &ignored);
7343 pathlen = (p - p1) / 2;
7344
7345 /* Save the pathname for event reporting and for
7346 the next run command. */
b671c7fb
TS
7347 char *pathname = (char *) xmalloc (pathlen + 1);
7348 struct cleanup *old_chain = make_cleanup (xfree, pathname);
94585166
DB
7349 hex2bin (p1, (gdb_byte *) pathname, pathlen);
7350 pathname[pathlen] = '\0';
b671c7fb 7351 discard_cleanups (old_chain);
94585166
DB
7352
7353 /* This is freed during event handling. */
b671c7fb 7354 event->ws.value.execd_pathname = pathname;
94585166
DB
7355 event->ws.kind = TARGET_WAITKIND_EXECD;
7356
7357 /* Skip the registers included in this packet, since
7358 they may be for an architecture different from the
7359 one used by the original program. */
7360 skipregs = 1;
7361 }
65706a29
PA
7362 else if (strprefix (p, p1, "create"))
7363 {
7364 event->ws.kind = TARGET_WAITKIND_THREAD_CREATED;
8424cc97 7365 p = strchrnul (p1 + 1, ';');
65706a29 7366 }
cea39f65
MS
7367 else
7368 {
1f10ba14 7369 ULONGEST pnum;
256642e8 7370 const char *p_temp;
1f10ba14 7371
94585166
DB
7372 if (skipregs)
7373 {
8424cc97 7374 p = strchrnul (p1 + 1, ';');
94585166
DB
7375 p++;
7376 continue;
7377 }
7378
1f10ba14
PA
7379 /* Maybe a real ``P'' register number. */
7380 p_temp = unpack_varlen_hex (p, &pnum);
7381 /* If the first invalid character is the colon, we got a
7382 register number. Otherwise, it's an unknown stop
7383 reason. */
7384 if (p_temp == p1)
7385 {
5cd63fda
PA
7386 /* If we haven't parsed the event's thread yet, find
7387 it now, in order to find the architecture of the
7388 reported expedited registers. */
7389 if (event->ptid == null_ptid)
7390 {
7391 const char *thr = strstr (p1 + 1, ";thread:");
7392 if (thr != NULL)
7393 event->ptid = read_ptid (thr + strlen (";thread:"),
7394 NULL);
7395 else
3cada740
PA
7396 {
7397 /* Either the current thread hasn't changed,
7398 or the inferior is not multi-threaded.
7399 The event must be for the thread we last
7400 set as (or learned as being) current. */
7401 event->ptid = event->rs->general_thread;
7402 }
5cd63fda
PA
7403 }
7404
7405 if (rsa == NULL)
7406 {
7407 inferior *inf = (event->ptid == null_ptid
7408 ? NULL
7409 : find_inferior_ptid (event->ptid));
7410 /* If this is the first time we learn anything
7411 about this process, skip the registers
7412 included in this packet, since we don't yet
7413 know which architecture to use to parse them.
7414 We'll determine the architecture later when
7415 we process the stop reply and retrieve the
7416 target description, via
7417 remote_notice_new_inferior ->
7418 post_create_inferior. */
7419 if (inf == NULL)
7420 {
7421 p = strchrnul (p1 + 1, ';');
7422 p++;
7423 continue;
7424 }
7425
7426 event->arch = inf->gdbarch;
9d6eea31 7427 rsa = event->rs->get_remote_arch_state (event->arch);
5cd63fda
PA
7428 }
7429
7430 packet_reg *reg
7431 = packet_reg_from_pnum (event->arch, rsa, pnum);
1f10ba14 7432 cached_reg_t cached_reg;
43ff13b4 7433
1f10ba14
PA
7434 if (reg == NULL)
7435 error (_("Remote sent bad register number %s: %s\n\
8a3fe4f8 7436Packet: '%s'\n"),
1f10ba14 7437 hex_string (pnum), p, buf);
c8e38a49 7438
1f10ba14 7439 cached_reg.num = reg->regnum;
d1dff226 7440 cached_reg.data = (gdb_byte *)
5cd63fda 7441 xmalloc (register_size (event->arch, reg->regnum));
4100683b 7442
1f10ba14
PA
7443 p = p1 + 1;
7444 fieldsize = hex2bin (p, cached_reg.data,
5cd63fda 7445 register_size (event->arch, reg->regnum));
1f10ba14 7446 p += 2 * fieldsize;
5cd63fda 7447 if (fieldsize < register_size (event->arch, reg->regnum))
1f10ba14 7448 warning (_("Remote reply is too short: %s"), buf);
74531fed 7449
1f10ba14
PA
7450 VEC_safe_push (cached_reg_t, event->regcache, &cached_reg);
7451 }
7452 else
7453 {
7454 /* Not a number. Silently skip unknown optional
7455 info. */
8424cc97 7456 p = strchrnul (p1 + 1, ';');
1f10ba14 7457 }
cea39f65 7458 }
c8e38a49 7459
cea39f65
MS
7460 if (*p != ';')
7461 error (_("Remote register badly formatted: %s\nhere: %s"),
7462 buf, p);
7463 ++p;
7464 }
5b5596ff
PA
7465
7466 if (event->ws.kind != TARGET_WAITKIND_IGNORE)
7467 break;
7468
c8e38a49
PA
7469 /* fall through */
7470 case 'S': /* Old style status, just signal only. */
3a09da41
PA
7471 {
7472 int sig;
7473
7474 event->ws.kind = TARGET_WAITKIND_STOPPED;
7475 sig = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
7476 if (GDB_SIGNAL_FIRST <= sig && sig < GDB_SIGNAL_LAST)
7477 event->ws.value.sig = (enum gdb_signal) sig;
7478 else
7479 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
7480 }
c8e38a49 7481 break;
65706a29
PA
7482 case 'w': /* Thread exited. */
7483 {
65706a29
PA
7484 ULONGEST value;
7485
7486 event->ws.kind = TARGET_WAITKIND_THREAD_EXITED;
7487 p = unpack_varlen_hex (&buf[1], &value);
7488 event->ws.value.integer = value;
7489 if (*p != ';')
7490 error (_("stop reply packet badly formatted: %s"), buf);
974eac9d 7491 event->ptid = read_ptid (++p, NULL);
65706a29
PA
7492 break;
7493 }
c8e38a49
PA
7494 case 'W': /* Target exited. */
7495 case 'X':
7496 {
c8e38a49
PA
7497 int pid;
7498 ULONGEST value;
82f73884 7499
c8e38a49
PA
7500 /* GDB used to accept only 2 hex chars here. Stubs should
7501 only send more if they detect GDB supports multi-process
7502 support. */
7503 p = unpack_varlen_hex (&buf[1], &value);
82f73884 7504
c8e38a49
PA
7505 if (buf[0] == 'W')
7506 {
7507 /* The remote process exited. */
74531fed
PA
7508 event->ws.kind = TARGET_WAITKIND_EXITED;
7509 event->ws.value.integer = value;
c8e38a49
PA
7510 }
7511 else
7512 {
7513 /* The remote process exited with a signal. */
74531fed 7514 event->ws.kind = TARGET_WAITKIND_SIGNALLED;
3a09da41
PA
7515 if (GDB_SIGNAL_FIRST <= value && value < GDB_SIGNAL_LAST)
7516 event->ws.value.sig = (enum gdb_signal) value;
7517 else
7518 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
c8e38a49 7519 }
82f73884 7520
c8e38a49 7521 /* If no process is specified, assume inferior_ptid. */
e99b03dc 7522 pid = inferior_ptid.pid ();
c8e38a49
PA
7523 if (*p == '\0')
7524 ;
7525 else if (*p == ';')
7526 {
7527 p++;
7528
0b24eb2d 7529 if (*p == '\0')
82f73884 7530 ;
61012eef 7531 else if (startswith (p, "process:"))
82f73884 7532 {
c8e38a49 7533 ULONGEST upid;
a744cf53 7534
c8e38a49
PA
7535 p += sizeof ("process:") - 1;
7536 unpack_varlen_hex (p, &upid);
7537 pid = upid;
82f73884
PA
7538 }
7539 else
7540 error (_("unknown stop reply packet: %s"), buf);
43ff13b4 7541 }
c8e38a49
PA
7542 else
7543 error (_("unknown stop reply packet: %s"), buf);
f2907e49 7544 event->ptid = ptid_t (pid);
74531fed
PA
7545 }
7546 break;
f2faf941
PA
7547 case 'N':
7548 event->ws.kind = TARGET_WAITKIND_NO_RESUMED;
7549 event->ptid = minus_one_ptid;
7550 break;
74531fed
PA
7551 }
7552
d7e15655 7553 if (target_is_non_stop_p () && event->ptid == null_ptid)
74531fed
PA
7554 error (_("No process or thread specified in stop reply: %s"), buf);
7555}
7556
722247f1
YQ
7557/* When the stub wants to tell GDB about a new notification reply, it
7558 sends a notification (%Stop, for example). Those can come it at
7559 any time, hence, we have to make sure that any pending
7560 putpkt/getpkt sequence we're making is finished, before querying
7561 the stub for more events with the corresponding ack command
7562 (vStopped, for example). E.g., if we started a vStopped sequence
7563 immediately upon receiving the notification, something like this
7564 could happen:
74531fed
PA
7565
7566 1.1) --> Hg 1
7567 1.2) <-- OK
7568 1.3) --> g
7569 1.4) <-- %Stop
7570 1.5) --> vStopped
7571 1.6) <-- (registers reply to step #1.3)
7572
7573 Obviously, the reply in step #1.6 would be unexpected to a vStopped
7574 query.
7575
796cb314 7576 To solve this, whenever we parse a %Stop notification successfully,
74531fed
PA
7577 we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
7578 doing whatever we were doing:
7579
7580 2.1) --> Hg 1
7581 2.2) <-- OK
7582 2.3) --> g
7583 2.4) <-- %Stop
7584 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
7585 2.5) <-- (registers reply to step #2.3)
7586
7587 Eventualy after step #2.5, we return to the event loop, which
7588 notices there's an event on the
7589 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
7590 associated callback --- the function below. At this point, we're
7591 always safe to start a vStopped sequence. :
7592
7593 2.6) --> vStopped
7594 2.7) <-- T05 thread:2
7595 2.8) --> vStopped
7596 2.9) --> OK
7597*/
7598
722247f1 7599void
6b8edb51 7600remote_target::remote_notif_get_pending_events (notif_client *nc)
74531fed
PA
7601{
7602 struct remote_state *rs = get_remote_state ();
74531fed 7603
f48ff2a7 7604 if (rs->notif_state->pending_event[nc->id] != NULL)
74531fed 7605 {
722247f1
YQ
7606 if (notif_debug)
7607 fprintf_unfiltered (gdb_stdlog,
7608 "notif: process: '%s' ack pending event\n",
7609 nc->name);
74531fed 7610
722247f1 7611 /* acknowledge */
8d64371b
TT
7612 nc->ack (this, nc, rs->buf.data (),
7613 rs->notif_state->pending_event[nc->id]);
f48ff2a7 7614 rs->notif_state->pending_event[nc->id] = NULL;
74531fed
PA
7615
7616 while (1)
7617 {
8d64371b
TT
7618 getpkt (&rs->buf, 0);
7619 if (strcmp (rs->buf.data (), "OK") == 0)
74531fed
PA
7620 break;
7621 else
8d64371b 7622 remote_notif_ack (this, nc, rs->buf.data ());
74531fed
PA
7623 }
7624 }
722247f1
YQ
7625 else
7626 {
7627 if (notif_debug)
7628 fprintf_unfiltered (gdb_stdlog,
7629 "notif: process: '%s' no pending reply\n",
7630 nc->name);
7631 }
74531fed
PA
7632}
7633
6b8edb51
PA
7634/* Wrapper around remote_target::remote_notif_get_pending_events to
7635 avoid having to export the whole remote_target class. */
7636
7637void
7638remote_notif_get_pending_events (remote_target *remote, notif_client *nc)
7639{
7640 remote->remote_notif_get_pending_events (nc);
7641}
7642
74531fed
PA
7643/* Called when it is decided that STOP_REPLY holds the info of the
7644 event that is to be returned to the core. This function always
7645 destroys STOP_REPLY. */
7646
6b8edb51
PA
7647ptid_t
7648remote_target::process_stop_reply (struct stop_reply *stop_reply,
7649 struct target_waitstatus *status)
74531fed
PA
7650{
7651 ptid_t ptid;
7652
7653 *status = stop_reply->ws;
7654 ptid = stop_reply->ptid;
7655
7656 /* If no thread/process was reported by the stub, assume the current
7657 inferior. */
d7e15655 7658 if (ptid == null_ptid)
74531fed
PA
7659 ptid = inferior_ptid;
7660
5f3563ea 7661 if (status->kind != TARGET_WAITKIND_EXITED
f2faf941
PA
7662 && status->kind != TARGET_WAITKIND_SIGNALLED
7663 && status->kind != TARGET_WAITKIND_NO_RESUMED)
74531fed 7664 {
5f3563ea
PA
7665 /* Expedited registers. */
7666 if (stop_reply->regcache)
7667 {
217f1f79 7668 struct regcache *regcache
5cd63fda 7669 = get_thread_arch_regcache (ptid, stop_reply->arch);
5f3563ea
PA
7670 cached_reg_t *reg;
7671 int ix;
7672
7673 for (ix = 0;
d1dff226 7674 VEC_iterate (cached_reg_t, stop_reply->regcache, ix, reg);
5f3563ea 7675 ix++)
d1dff226 7676 {
73e1c03f 7677 regcache->raw_supply (reg->num, reg->data);
d1dff226
AH
7678 xfree (reg->data);
7679 }
7680
5f3563ea
PA
7681 VEC_free (cached_reg_t, stop_reply->regcache);
7682 }
74531fed 7683
1941c569 7684 remote_notice_new_inferior (ptid, 0);
7aabaf9d 7685 remote_thread_info *remote_thr = get_remote_thread_info (ptid);
799a2abe
PA
7686 remote_thr->core = stop_reply->core;
7687 remote_thr->stop_reason = stop_reply->stop_reason;
7688 remote_thr->watch_data_address = stop_reply->watch_data_address;
85ad3aaf 7689 remote_thr->vcont_resumed = 0;
74531fed
PA
7690 }
7691
74531fed
PA
7692 stop_reply_xfree (stop_reply);
7693 return ptid;
7694}
7695
7696/* The non-stop mode version of target_wait. */
7697
6b8edb51
PA
7698ptid_t
7699remote_target::wait_ns (ptid_t ptid, struct target_waitstatus *status, int options)
74531fed
PA
7700{
7701 struct remote_state *rs = get_remote_state ();
74531fed
PA
7702 struct stop_reply *stop_reply;
7703 int ret;
fee9eda9 7704 int is_notif = 0;
74531fed
PA
7705
7706 /* If in non-stop mode, get out of getpkt even if a
7707 notification is received. */
7708
8d64371b 7709 ret = getpkt_or_notif_sane (&rs->buf, 0 /* forever */, &is_notif);
74531fed
PA
7710 while (1)
7711 {
fee9eda9 7712 if (ret != -1 && !is_notif)
74531fed
PA
7713 switch (rs->buf[0])
7714 {
7715 case 'E': /* Error of some sort. */
7716 /* We're out of sync with the target now. Did it continue
7717 or not? We can't tell which thread it was in non-stop,
7718 so just ignore this. */
8d64371b 7719 warning (_("Remote failure reply: %s"), rs->buf.data ());
74531fed
PA
7720 break;
7721 case 'O': /* Console output. */
8d64371b 7722 remote_console_output (&rs->buf[1]);
74531fed
PA
7723 break;
7724 default:
8d64371b 7725 warning (_("Invalid remote reply: %s"), rs->buf.data ());
74531fed
PA
7726 break;
7727 }
7728
7729 /* Acknowledge a pending stop reply that may have arrived in the
7730 mean time. */
f48ff2a7 7731 if (rs->notif_state->pending_event[notif_client_stop.id] != NULL)
722247f1 7732 remote_notif_get_pending_events (&notif_client_stop);
74531fed
PA
7733
7734 /* If indeed we noticed a stop reply, we're done. */
7735 stop_reply = queued_stop_reply (ptid);
7736 if (stop_reply != NULL)
7737 return process_stop_reply (stop_reply, status);
7738
47608cb1 7739 /* Still no event. If we're just polling for an event, then
74531fed 7740 return to the event loop. */
47608cb1 7741 if (options & TARGET_WNOHANG)
74531fed
PA
7742 {
7743 status->kind = TARGET_WAITKIND_IGNORE;
7744 return minus_one_ptid;
7745 }
7746
47608cb1 7747 /* Otherwise do a blocking wait. */
8d64371b 7748 ret = getpkt_or_notif_sane (&rs->buf, 1 /* forever */, &is_notif);
74531fed
PA
7749 }
7750}
7751
7752/* Wait until the remote machine stops, then return, storing status in
7753 STATUS just as `wait' would. */
7754
6b8edb51
PA
7755ptid_t
7756remote_target::wait_as (ptid_t ptid, target_waitstatus *status, int options)
74531fed
PA
7757{
7758 struct remote_state *rs = get_remote_state ();
74531fed 7759 ptid_t event_ptid = null_ptid;
cea39f65 7760 char *buf;
74531fed
PA
7761 struct stop_reply *stop_reply;
7762
47608cb1
PA
7763 again:
7764
74531fed
PA
7765 status->kind = TARGET_WAITKIND_IGNORE;
7766 status->value.integer = 0;
7767
7768 stop_reply = queued_stop_reply (ptid);
7769 if (stop_reply != NULL)
7770 return process_stop_reply (stop_reply, status);
7771
7772 if (rs->cached_wait_status)
7773 /* Use the cached wait status, but only once. */
7774 rs->cached_wait_status = 0;
7775 else
7776 {
7777 int ret;
722247f1 7778 int is_notif;
567420d1 7779 int forever = ((options & TARGET_WNOHANG) == 0
6b8edb51 7780 && rs->wait_forever_enabled_p);
567420d1
PA
7781
7782 if (!rs->waiting_for_stop_reply)
7783 {
7784 status->kind = TARGET_WAITKIND_NO_RESUMED;
7785 return minus_one_ptid;
7786 }
74531fed 7787
74531fed
PA
7788 /* FIXME: cagney/1999-09-27: If we're in async mode we should
7789 _never_ wait for ever -> test on target_is_async_p().
7790 However, before we do that we need to ensure that the caller
7791 knows how to take the target into/out of async mode. */
8d64371b 7792 ret = getpkt_or_notif_sane (&rs->buf, forever, &is_notif);
722247f1
YQ
7793
7794 /* GDB gets a notification. Return to core as this event is
7795 not interesting. */
7796 if (ret != -1 && is_notif)
7797 return minus_one_ptid;
567420d1
PA
7798
7799 if (ret == -1 && (options & TARGET_WNOHANG) != 0)
7800 return minus_one_ptid;
74531fed
PA
7801 }
7802
8d64371b 7803 buf = rs->buf.data ();
74531fed 7804
3a29589a
DJ
7805 /* Assume that the target has acknowledged Ctrl-C unless we receive
7806 an 'F' or 'O' packet. */
7807 if (buf[0] != 'F' && buf[0] != 'O')
7808 rs->ctrlc_pending_p = 0;
7809
74531fed
PA
7810 switch (buf[0])
7811 {
7812 case 'E': /* Error of some sort. */
7813 /* We're out of sync with the target now. Did it continue or
7814 not? Not is more likely, so report a stop. */
29090fb6
LM
7815 rs->waiting_for_stop_reply = 0;
7816
74531fed
PA
7817 warning (_("Remote failure reply: %s"), buf);
7818 status->kind = TARGET_WAITKIND_STOPPED;
a493e3e2 7819 status->value.sig = GDB_SIGNAL_0;
74531fed
PA
7820 break;
7821 case 'F': /* File-I/O request. */
e42e5352
YQ
7822 /* GDB may access the inferior memory while handling the File-I/O
7823 request, but we don't want GDB accessing memory while waiting
7824 for a stop reply. See the comments in putpkt_binary. Set
7825 waiting_for_stop_reply to 0 temporarily. */
7826 rs->waiting_for_stop_reply = 0;
6b8edb51 7827 remote_fileio_request (this, buf, rs->ctrlc_pending_p);
3a29589a 7828 rs->ctrlc_pending_p = 0;
e42e5352
YQ
7829 /* GDB handled the File-I/O request, and the target is running
7830 again. Keep waiting for events. */
7831 rs->waiting_for_stop_reply = 1;
74531fed 7832 break;
f2faf941 7833 case 'N': case 'T': case 'S': case 'X': case 'W':
74531fed 7834 {
29090fb6
LM
7835 /* There is a stop reply to handle. */
7836 rs->waiting_for_stop_reply = 0;
7837
7838 stop_reply
6b8edb51
PA
7839 = (struct stop_reply *) remote_notif_parse (this,
7840 &notif_client_stop,
8d64371b 7841 rs->buf.data ());
74531fed 7842
74531fed 7843 event_ptid = process_stop_reply (stop_reply, status);
c8e38a49
PA
7844 break;
7845 }
7846 case 'O': /* Console output. */
7847 remote_console_output (buf + 1);
c8e38a49
PA
7848 break;
7849 case '\0':
b73be471 7850 if (rs->last_sent_signal != GDB_SIGNAL_0)
c8e38a49
PA
7851 {
7852 /* Zero length reply means that we tried 'S' or 'C' and the
7853 remote system doesn't support it. */
223ffa71 7854 target_terminal::ours_for_output ();
c8e38a49
PA
7855 printf_filtered
7856 ("Can't send signals to this remote system. %s not sent.\n",
b73be471
TT
7857 gdb_signal_to_name (rs->last_sent_signal));
7858 rs->last_sent_signal = GDB_SIGNAL_0;
223ffa71 7859 target_terminal::inferior ();
c8e38a49 7860
f5c4fcd9
TT
7861 strcpy (buf, rs->last_sent_step ? "s" : "c");
7862 putpkt (buf);
c8e38a49 7863 break;
43ff13b4 7864 }
86a73007 7865 /* fallthrough */
c8e38a49
PA
7866 default:
7867 warning (_("Invalid remote reply: %s"), buf);
c8e38a49 7868 break;
43ff13b4 7869 }
c8e38a49 7870
f2faf941
PA
7871 if (status->kind == TARGET_WAITKIND_NO_RESUMED)
7872 return minus_one_ptid;
7873 else if (status->kind == TARGET_WAITKIND_IGNORE)
47608cb1
PA
7874 {
7875 /* Nothing interesting happened. If we're doing a non-blocking
7876 poll, we're done. Otherwise, go back to waiting. */
7877 if (options & TARGET_WNOHANG)
7878 return minus_one_ptid;
7879 else
7880 goto again;
7881 }
74531fed
PA
7882 else if (status->kind != TARGET_WAITKIND_EXITED
7883 && status->kind != TARGET_WAITKIND_SIGNALLED)
82f73884 7884 {
d7e15655 7885 if (event_ptid != null_ptid)
47f8a51d 7886 record_currthread (rs, event_ptid);
82f73884
PA
7887 else
7888 event_ptid = inferior_ptid;
43ff13b4 7889 }
74531fed
PA
7890 else
7891 /* A process exit. Invalidate our notion of current thread. */
47f8a51d 7892 record_currthread (rs, minus_one_ptid);
79d7f229 7893
82f73884 7894 return event_ptid;
43ff13b4
JM
7895}
7896
74531fed
PA
7897/* Wait until the remote machine stops, then return, storing status in
7898 STATUS just as `wait' would. */
7899
f6ac5f3d
PA
7900ptid_t
7901remote_target::wait (ptid_t ptid, struct target_waitstatus *status, int options)
c8e38a49
PA
7902{
7903 ptid_t event_ptid;
7904
6efcd9a8 7905 if (target_is_non_stop_p ())
6b8edb51 7906 event_ptid = wait_ns (ptid, status, options);
74531fed 7907 else
6b8edb51 7908 event_ptid = wait_as (ptid, status, options);
c8e38a49 7909
d9d41e78 7910 if (target_is_async_p ())
c8e38a49 7911 {
6b8edb51
PA
7912 remote_state *rs = get_remote_state ();
7913
74531fed
PA
7914 /* If there are are events left in the queue tell the event loop
7915 to return here. */
953edf2b 7916 if (!rs->stop_reply_queue.empty ())
6b8edb51 7917 mark_async_event_handler (rs->remote_async_inferior_event_token);
c8e38a49 7918 }
c8e38a49
PA
7919
7920 return event_ptid;
7921}
7922
74ca34ce 7923/* Fetch a single register using a 'p' packet. */
c906108c 7924
6b8edb51
PA
7925int
7926remote_target::fetch_register_using_p (struct regcache *regcache,
7927 packet_reg *reg)
b96ec7ac 7928{
ac7936df 7929 struct gdbarch *gdbarch = regcache->arch ();
b96ec7ac 7930 struct remote_state *rs = get_remote_state ();
2e9f7625 7931 char *buf, *p;
9890e433 7932 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
b96ec7ac
AC
7933 int i;
7934
4082afcc 7935 if (packet_support (PACKET_p) == PACKET_DISABLE)
74ca34ce
DJ
7936 return 0;
7937
7938 if (reg->pnum == -1)
7939 return 0;
7940
8d64371b 7941 p = rs->buf.data ();
fcad0fa4 7942 *p++ = 'p';
74ca34ce 7943 p += hexnumstr (p, reg->pnum);
fcad0fa4 7944 *p++ = '\0';
1f4437a4 7945 putpkt (rs->buf);
8d64371b 7946 getpkt (&rs->buf, 0);
3f9a994c 7947
8d64371b 7948 buf = rs->buf.data ();
2e9f7625 7949
8d64371b 7950 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_p]))
74ca34ce
DJ
7951 {
7952 case PACKET_OK:
7953 break;
7954 case PACKET_UNKNOWN:
7955 return 0;
7956 case PACKET_ERROR:
27a9c0bf 7957 error (_("Could not fetch register \"%s\"; remote failure reply '%s'"),
ac7936df 7958 gdbarch_register_name (regcache->arch (),
27a9c0bf
MS
7959 reg->regnum),
7960 buf);
74ca34ce 7961 }
3f9a994c
JB
7962
7963 /* If this register is unfetchable, tell the regcache. */
7964 if (buf[0] == 'x')
8480adf2 7965 {
73e1c03f 7966 regcache->raw_supply (reg->regnum, NULL);
8480adf2 7967 return 1;
b96ec7ac 7968 }
b96ec7ac 7969
3f9a994c
JB
7970 /* Otherwise, parse and supply the value. */
7971 p = buf;
7972 i = 0;
7973 while (p[0] != 0)
7974 {
7975 if (p[1] == 0)
74ca34ce 7976 error (_("fetch_register_using_p: early buf termination"));
3f9a994c
JB
7977
7978 regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
7979 p += 2;
7980 }
73e1c03f 7981 regcache->raw_supply (reg->regnum, regp);
3f9a994c 7982 return 1;
b96ec7ac
AC
7983}
7984
74ca34ce
DJ
7985/* Fetch the registers included in the target's 'g' packet. */
7986
6b8edb51
PA
7987int
7988remote_target::send_g_packet ()
c906108c 7989{
d01949b6 7990 struct remote_state *rs = get_remote_state ();
cea39f65 7991 int buf_len;
c906108c 7992
8d64371b 7993 xsnprintf (rs->buf.data (), get_remote_packet_size (), "g");
b75abf5b 7994 putpkt (rs->buf);
8d64371b 7995 getpkt (&rs->buf, 0);
b75abf5b
AK
7996 if (packet_check_result (rs->buf) == PACKET_ERROR)
7997 error (_("Could not read registers; remote failure reply '%s'"),
8d64371b 7998 rs->buf.data ());
c906108c 7999
29709017
DJ
8000 /* We can get out of synch in various cases. If the first character
8001 in the buffer is not a hex character, assume that has happened
8002 and try to fetch another packet to read. */
8003 while ((rs->buf[0] < '0' || rs->buf[0] > '9')
8004 && (rs->buf[0] < 'A' || rs->buf[0] > 'F')
8005 && (rs->buf[0] < 'a' || rs->buf[0] > 'f')
8006 && rs->buf[0] != 'x') /* New: unavailable register value. */
8007 {
8008 if (remote_debug)
8009 fprintf_unfiltered (gdb_stdlog,
8010 "Bad register packet; fetching a new packet\n");
8d64371b 8011 getpkt (&rs->buf, 0);
29709017
DJ
8012 }
8013
8d64371b 8014 buf_len = strlen (rs->buf.data ());
74ca34ce
DJ
8015
8016 /* Sanity check the received packet. */
8017 if (buf_len % 2 != 0)
8d64371b 8018 error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf.data ());
29709017
DJ
8019
8020 return buf_len / 2;
8021}
8022
6b8edb51
PA
8023void
8024remote_target::process_g_packet (struct regcache *regcache)
29709017 8025{
ac7936df 8026 struct gdbarch *gdbarch = regcache->arch ();
29709017 8027 struct remote_state *rs = get_remote_state ();
9d6eea31 8028 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
29709017
DJ
8029 int i, buf_len;
8030 char *p;
8031 char *regs;
8032
8d64371b 8033 buf_len = strlen (rs->buf.data ());
29709017
DJ
8034
8035 /* Further sanity checks, with knowledge of the architecture. */
74ca34ce 8036 if (buf_len > 2 * rsa->sizeof_g_packet)
fc809827 8037 error (_("Remote 'g' packet reply is too long (expected %ld bytes, got %d "
8d64371b
TT
8038 "bytes): %s"),
8039 rsa->sizeof_g_packet, buf_len / 2,
8040 rs->buf.data ());
74ca34ce
DJ
8041
8042 /* Save the size of the packet sent to us by the target. It is used
8043 as a heuristic when determining the max size of packets that the
8044 target can safely receive. */
8045 if (rsa->actual_register_packet_size == 0)
8046 rsa->actual_register_packet_size = buf_len;
8047
8048 /* If this is smaller than we guessed the 'g' packet would be,
8049 update our records. A 'g' reply that doesn't include a register's
8050 value implies either that the register is not available, or that
8051 the 'p' packet must be used. */
8052 if (buf_len < 2 * rsa->sizeof_g_packet)
b323314b 8053 {
9dc193c3 8054 long sizeof_g_packet = buf_len / 2;
74ca34ce 8055
4a22f64d 8056 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
b96ec7ac 8057 {
9dc193c3
LF
8058 long offset = rsa->regs[i].offset;
8059 long reg_size = register_size (gdbarch, i);
8060
74ca34ce
DJ
8061 if (rsa->regs[i].pnum == -1)
8062 continue;
8063
9dc193c3 8064 if (offset >= sizeof_g_packet)
74ca34ce 8065 rsa->regs[i].in_g_packet = 0;
9dc193c3
LF
8066 else if (offset + reg_size > sizeof_g_packet)
8067 error (_("Truncated register %d in remote 'g' packet"), i);
b96ec7ac 8068 else
74ca34ce 8069 rsa->regs[i].in_g_packet = 1;
b96ec7ac 8070 }
9dc193c3
LF
8071
8072 /* Looks valid enough, we can assume this is the correct length
8073 for a 'g' packet. It's important not to adjust
8074 rsa->sizeof_g_packet if we have truncated registers otherwise
8075 this "if" won't be run the next time the method is called
8076 with a packet of the same size and one of the internal errors
8077 below will trigger instead. */
8078 rsa->sizeof_g_packet = sizeof_g_packet;
74ca34ce 8079 }
b323314b 8080
224c3ddb 8081 regs = (char *) alloca (rsa->sizeof_g_packet);
c906108c
SS
8082
8083 /* Unimplemented registers read as all bits zero. */
ea9c271d 8084 memset (regs, 0, rsa->sizeof_g_packet);
c906108c 8085
c906108c
SS
8086 /* Reply describes registers byte by byte, each byte encoded as two
8087 hex characters. Suck them all up, then supply them to the
8088 register cacheing/storage mechanism. */
8089
8d64371b 8090 p = rs->buf.data ();
ea9c271d 8091 for (i = 0; i < rsa->sizeof_g_packet; i++)
c906108c 8092 {
74ca34ce
DJ
8093 if (p[0] == 0 || p[1] == 0)
8094 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
8095 internal_error (__FILE__, __LINE__,
9b20d036 8096 _("unexpected end of 'g' packet reply"));
74ca34ce 8097
c906108c 8098 if (p[0] == 'x' && p[1] == 'x')
c5aa993b 8099 regs[i] = 0; /* 'x' */
c906108c
SS
8100 else
8101 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
8102 p += 2;
8103 }
8104
a744cf53
MS
8105 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
8106 {
8107 struct packet_reg *r = &rsa->regs[i];
9dc193c3 8108 long reg_size = register_size (gdbarch, i);
a744cf53
MS
8109
8110 if (r->in_g_packet)
8111 {
8d64371b 8112 if ((r->offset + reg_size) * 2 > strlen (rs->buf.data ()))
a744cf53
MS
8113 /* This shouldn't happen - we adjusted in_g_packet above. */
8114 internal_error (__FILE__, __LINE__,
9b20d036 8115 _("unexpected end of 'g' packet reply"));
a744cf53
MS
8116 else if (rs->buf[r->offset * 2] == 'x')
8117 {
8d64371b 8118 gdb_assert (r->offset * 2 < strlen (rs->buf.data ()));
a744cf53
MS
8119 /* The register isn't available, mark it as such (at
8120 the same time setting the value to zero). */
73e1c03f 8121 regcache->raw_supply (r->regnum, NULL);
a744cf53
MS
8122 }
8123 else
73e1c03f 8124 regcache->raw_supply (r->regnum, regs + r->offset);
a744cf53
MS
8125 }
8126 }
c906108c
SS
8127}
8128
6b8edb51
PA
8129void
8130remote_target::fetch_registers_using_g (struct regcache *regcache)
29709017
DJ
8131{
8132 send_g_packet ();
56be3814 8133 process_g_packet (regcache);
29709017
DJ
8134}
8135
e6e4e701
PA
8136/* Make the remote selected traceframe match GDB's selected
8137 traceframe. */
8138
6b8edb51
PA
8139void
8140remote_target::set_remote_traceframe ()
e6e4e701
PA
8141{
8142 int newnum;
262e1174 8143 struct remote_state *rs = get_remote_state ();
e6e4e701 8144
262e1174 8145 if (rs->remote_traceframe_number == get_traceframe_number ())
e6e4e701
PA
8146 return;
8147
8148 /* Avoid recursion, remote_trace_find calls us again. */
262e1174 8149 rs->remote_traceframe_number = get_traceframe_number ();
e6e4e701
PA
8150
8151 newnum = target_trace_find (tfind_number,
8152 get_traceframe_number (), 0, 0, NULL);
8153
8154 /* Should not happen. If it does, all bets are off. */
8155 if (newnum != get_traceframe_number ())
8156 warning (_("could not set remote traceframe"));
8157}
8158
f6ac5f3d
PA
8159void
8160remote_target::fetch_registers (struct regcache *regcache, int regnum)
74ca34ce 8161{
ac7936df 8162 struct gdbarch *gdbarch = regcache->arch ();
9d6eea31
PA
8163 struct remote_state *rs = get_remote_state ();
8164 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
74ca34ce
DJ
8165 int i;
8166
e6e4e701 8167 set_remote_traceframe ();
222312d3 8168 set_general_thread (regcache->ptid ());
74ca34ce
DJ
8169
8170 if (regnum >= 0)
8171 {
5cd63fda 8172 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
a744cf53 8173
74ca34ce
DJ
8174 gdb_assert (reg != NULL);
8175
8176 /* If this register might be in the 'g' packet, try that first -
8177 we are likely to read more than one register. If this is the
8178 first 'g' packet, we might be overly optimistic about its
8179 contents, so fall back to 'p'. */
8180 if (reg->in_g_packet)
8181 {
56be3814 8182 fetch_registers_using_g (regcache);
74ca34ce
DJ
8183 if (reg->in_g_packet)
8184 return;
8185 }
8186
56be3814 8187 if (fetch_register_using_p (regcache, reg))
74ca34ce
DJ
8188 return;
8189
8190 /* This register is not available. */
73e1c03f 8191 regcache->raw_supply (reg->regnum, NULL);
74ca34ce
DJ
8192
8193 return;
8194 }
8195
56be3814 8196 fetch_registers_using_g (regcache);
74ca34ce 8197
5cd63fda 8198 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
74ca34ce 8199 if (!rsa->regs[i].in_g_packet)
56be3814 8200 if (!fetch_register_using_p (regcache, &rsa->regs[i]))
74ca34ce
DJ
8201 {
8202 /* This register is not available. */
73e1c03f 8203 regcache->raw_supply (i, NULL);
74ca34ce
DJ
8204 }
8205}
8206
c906108c
SS
8207/* Prepare to store registers. Since we may send them all (using a
8208 'G' request), we have to read out the ones we don't want to change
8209 first. */
8210
f6ac5f3d
PA
8211void
8212remote_target::prepare_to_store (struct regcache *regcache)
c906108c 8213{
9d6eea31
PA
8214 struct remote_state *rs = get_remote_state ();
8215 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
cf0e1e0d 8216 int i;
cf0e1e0d 8217
c906108c 8218 /* Make sure the entire registers array is valid. */
4082afcc 8219 switch (packet_support (PACKET_P))
5a2468f5
JM
8220 {
8221 case PACKET_DISABLE:
8222 case PACKET_SUPPORT_UNKNOWN:
cf0e1e0d 8223 /* Make sure all the necessary registers are cached. */
ac7936df 8224 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
ea9c271d 8225 if (rsa->regs[i].in_g_packet)
0b47d985 8226 regcache->raw_update (rsa->regs[i].regnum);
5a2468f5
JM
8227 break;
8228 case PACKET_ENABLE:
8229 break;
8230 }
8231}
8232
ad10f812 8233/* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
23860348 8234 packet was not recognized. */
5a2468f5 8235
6b8edb51
PA
8236int
8237remote_target::store_register_using_P (const struct regcache *regcache,
8238 packet_reg *reg)
5a2468f5 8239{
ac7936df 8240 struct gdbarch *gdbarch = regcache->arch ();
d01949b6 8241 struct remote_state *rs = get_remote_state ();
5a2468f5 8242 /* Try storing a single register. */
8d64371b 8243 char *buf = rs->buf.data ();
9890e433 8244 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
5a2468f5 8245 char *p;
5a2468f5 8246
4082afcc 8247 if (packet_support (PACKET_P) == PACKET_DISABLE)
74ca34ce
DJ
8248 return 0;
8249
8250 if (reg->pnum == -1)
8251 return 0;
8252
ea9c271d 8253 xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
5a2468f5 8254 p = buf + strlen (buf);
34a79281 8255 regcache->raw_collect (reg->regnum, regp);
4a22f64d 8256 bin2hex (regp, p, register_size (gdbarch, reg->regnum));
1f4437a4 8257 putpkt (rs->buf);
8d64371b 8258 getpkt (&rs->buf, 0);
5a2468f5 8259
74ca34ce
DJ
8260 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P]))
8261 {
8262 case PACKET_OK:
8263 return 1;
8264 case PACKET_ERROR:
27a9c0bf 8265 error (_("Could not write register \"%s\"; remote failure reply '%s'"),
8d64371b 8266 gdbarch_register_name (gdbarch, reg->regnum), rs->buf.data ());
74ca34ce
DJ
8267 case PACKET_UNKNOWN:
8268 return 0;
8269 default:
8270 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
8271 }
c906108c
SS
8272}
8273
23860348
MS
8274/* Store register REGNUM, or all registers if REGNUM == -1, from the
8275 contents of the register cache buffer. FIXME: ignores errors. */
c906108c 8276
6b8edb51
PA
8277void
8278remote_target::store_registers_using_G (const struct regcache *regcache)
c906108c 8279{
d01949b6 8280 struct remote_state *rs = get_remote_state ();
9d6eea31 8281 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
cfd77fa1 8282 gdb_byte *regs;
c906108c
SS
8283 char *p;
8284
193cb69f
AC
8285 /* Extract all the registers in the regcache copying them into a
8286 local buffer. */
8287 {
b323314b 8288 int i;
a744cf53 8289
224c3ddb 8290 regs = (gdb_byte *) alloca (rsa->sizeof_g_packet);
ea9c271d 8291 memset (regs, 0, rsa->sizeof_g_packet);
ac7936df 8292 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
193cb69f 8293 {
ea9c271d 8294 struct packet_reg *r = &rsa->regs[i];
a744cf53 8295
b323314b 8296 if (r->in_g_packet)
34a79281 8297 regcache->raw_collect (r->regnum, regs + r->offset);
193cb69f
AC
8298 }
8299 }
c906108c
SS
8300
8301 /* Command describes registers byte by byte,
8302 each byte encoded as two hex characters. */
8d64371b 8303 p = rs->buf.data ();
193cb69f 8304 *p++ = 'G';
74ca34ce 8305 bin2hex (regs, p, rsa->sizeof_g_packet);
1f4437a4 8306 putpkt (rs->buf);
8d64371b 8307 getpkt (&rs->buf, 0);
1f4437a4 8308 if (packet_check_result (rs->buf) == PACKET_ERROR)
27a9c0bf 8309 error (_("Could not write registers; remote failure reply '%s'"),
8d64371b 8310 rs->buf.data ());
c906108c 8311}
74ca34ce
DJ
8312
8313/* Store register REGNUM, or all registers if REGNUM == -1, from the contents
8314 of the register cache buffer. FIXME: ignores errors. */
8315
f6ac5f3d
PA
8316void
8317remote_target::store_registers (struct regcache *regcache, int regnum)
74ca34ce 8318{
5cd63fda 8319 struct gdbarch *gdbarch = regcache->arch ();
9d6eea31
PA
8320 struct remote_state *rs = get_remote_state ();
8321 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
74ca34ce
DJ
8322 int i;
8323
e6e4e701 8324 set_remote_traceframe ();
222312d3 8325 set_general_thread (regcache->ptid ());
74ca34ce
DJ
8326
8327 if (regnum >= 0)
8328 {
5cd63fda 8329 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
a744cf53 8330
74ca34ce
DJ
8331 gdb_assert (reg != NULL);
8332
8333 /* Always prefer to store registers using the 'P' packet if
8334 possible; we often change only a small number of registers.
8335 Sometimes we change a larger number; we'd need help from a
8336 higher layer to know to use 'G'. */
56be3814 8337 if (store_register_using_P (regcache, reg))
74ca34ce
DJ
8338 return;
8339
8340 /* For now, don't complain if we have no way to write the
8341 register. GDB loses track of unavailable registers too
8342 easily. Some day, this may be an error. We don't have
0df8b418 8343 any way to read the register, either... */
74ca34ce
DJ
8344 if (!reg->in_g_packet)
8345 return;
8346
56be3814 8347 store_registers_using_G (regcache);
74ca34ce
DJ
8348 return;
8349 }
8350
56be3814 8351 store_registers_using_G (regcache);
74ca34ce 8352
5cd63fda 8353 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
74ca34ce 8354 if (!rsa->regs[i].in_g_packet)
56be3814 8355 if (!store_register_using_P (regcache, &rsa->regs[i]))
74ca34ce
DJ
8356 /* See above for why we do not issue an error here. */
8357 continue;
8358}
c906108c
SS
8359\f
8360
8361/* Return the number of hex digits in num. */
8362
8363static int
fba45db2 8364hexnumlen (ULONGEST num)
c906108c
SS
8365{
8366 int i;
8367
8368 for (i = 0; num != 0; i++)
8369 num >>= 4;
8370
325fac50 8371 return std::max (i, 1);
c906108c
SS
8372}
8373
2df3850c 8374/* Set BUF to the minimum number of hex digits representing NUM. */
c906108c
SS
8375
8376static int
fba45db2 8377hexnumstr (char *buf, ULONGEST num)
c906108c 8378{
c906108c 8379 int len = hexnumlen (num);
a744cf53 8380
2df3850c
JM
8381 return hexnumnstr (buf, num, len);
8382}
8383
c906108c 8384
2df3850c 8385/* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
c906108c 8386
2df3850c 8387static int
fba45db2 8388hexnumnstr (char *buf, ULONGEST num, int width)
2df3850c
JM
8389{
8390 int i;
8391
8392 buf[width] = '\0';
8393
8394 for (i = width - 1; i >= 0; i--)
c906108c 8395 {
c5aa993b 8396 buf[i] = "0123456789abcdef"[(num & 0xf)];
c906108c
SS
8397 num >>= 4;
8398 }
8399
2df3850c 8400 return width;
c906108c
SS
8401}
8402
23860348 8403/* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
c906108c
SS
8404
8405static CORE_ADDR
fba45db2 8406remote_address_masked (CORE_ADDR addr)
c906108c 8407{
883b9c6c 8408 unsigned int address_size = remote_address_size;
a744cf53 8409
911c95a5
UW
8410 /* If "remoteaddresssize" was not set, default to target address size. */
8411 if (!address_size)
f5656ead 8412 address_size = gdbarch_addr_bit (target_gdbarch ());
911c95a5
UW
8413
8414 if (address_size > 0
8415 && address_size < (sizeof (ULONGEST) * 8))
c906108c
SS
8416 {
8417 /* Only create a mask when that mask can safely be constructed
23860348 8418 in a ULONGEST variable. */
c906108c 8419 ULONGEST mask = 1;
a744cf53 8420
911c95a5 8421 mask = (mask << address_size) - 1;
c906108c
SS
8422 addr &= mask;
8423 }
8424 return addr;
8425}
8426
8427/* Determine whether the remote target supports binary downloading.
8428 This is accomplished by sending a no-op memory write of zero length
8429 to the target at the specified address. It does not suffice to send
23860348
MS
8430 the whole packet, since many stubs strip the eighth bit and
8431 subsequently compute a wrong checksum, which causes real havoc with
8432 remote_write_bytes.
7a292a7a 8433
96baa820 8434 NOTE: This can still lose if the serial line is not eight-bit
0df8b418 8435 clean. In cases like this, the user should clear "remote
23860348 8436 X-packet". */
96baa820 8437
6b8edb51
PA
8438void
8439remote_target::check_binary_download (CORE_ADDR addr)
c906108c 8440{
d01949b6 8441 struct remote_state *rs = get_remote_state ();
24b06219 8442
4082afcc 8443 switch (packet_support (PACKET_X))
c906108c 8444 {
96baa820
JM
8445 case PACKET_DISABLE:
8446 break;
8447 case PACKET_ENABLE:
8448 break;
8449 case PACKET_SUPPORT_UNKNOWN:
8450 {
96baa820 8451 char *p;
802188a7 8452
8d64371b 8453 p = rs->buf.data ();
96baa820
JM
8454 *p++ = 'X';
8455 p += hexnumstr (p, (ULONGEST) addr);
8456 *p++ = ',';
8457 p += hexnumstr (p, (ULONGEST) 0);
8458 *p++ = ':';
8459 *p = '\0';
802188a7 8460
8d64371b
TT
8461 putpkt_binary (rs->buf.data (), (int) (p - rs->buf.data ()));
8462 getpkt (&rs->buf, 0);
c906108c 8463
2e9f7625 8464 if (rs->buf[0] == '\0')
96baa820
JM
8465 {
8466 if (remote_debug)
8467 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
8468 "binary downloading NOT "
8469 "supported by target\n");
444abaca 8470 remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
96baa820
JM
8471 }
8472 else
8473 {
8474 if (remote_debug)
8475 fprintf_unfiltered (gdb_stdlog,
64b9b334 8476 "binary downloading supported by target\n");
444abaca 8477 remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
96baa820
JM
8478 }
8479 break;
8480 }
c906108c
SS
8481 }
8482}
8483
124e13d9
SM
8484/* Helper function to resize the payload in order to try to get a good
8485 alignment. We try to write an amount of data such that the next write will
8486 start on an address aligned on REMOTE_ALIGN_WRITES. */
8487
8488static int
8489align_for_efficient_write (int todo, CORE_ADDR memaddr)
8490{
8491 return ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr;
8492}
8493
c906108c
SS
8494/* Write memory data directly to the remote machine.
8495 This does not inform the data cache; the data cache uses this.
a76d924d 8496 HEADER is the starting part of the packet.
c906108c
SS
8497 MEMADDR is the address in the remote memory space.
8498 MYADDR is the address of the buffer in our space.
124e13d9
SM
8499 LEN_UNITS is the number of addressable units to write.
8500 UNIT_SIZE is the length in bytes of an addressable unit.
a76d924d
DJ
8501 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
8502 should send data as binary ('X'), or hex-encoded ('M').
8503
8504 The function creates packet of the form
8505 <HEADER><ADDRESS>,<LENGTH>:<DATA>
8506
124e13d9 8507 where encoding of <DATA> is terminated by PACKET_FORMAT.
a76d924d
DJ
8508
8509 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
8510 are omitted.
8511
9b409511 8512 Return the transferred status, error or OK (an
124e13d9
SM
8513 'enum target_xfer_status' value). Save the number of addressable units
8514 transferred in *XFERED_LEN_UNITS. Only transfer a single packet.
8515
8516 On a platform with an addressable memory size of 2 bytes (UNIT_SIZE == 2), an
8517 exchange between gdb and the stub could look like (?? in place of the
8518 checksum):
8519
8520 -> $m1000,4#??
8521 <- aaaabbbbccccdddd
8522
8523 -> $M1000,3:eeeeffffeeee#??
8524 <- OK
8525
8526 -> $m1000,4#??
8527 <- eeeeffffeeeedddd */
c906108c 8528
6b8edb51
PA
8529target_xfer_status
8530remote_target::remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
8531 const gdb_byte *myaddr,
8532 ULONGEST len_units,
8533 int unit_size,
8534 ULONGEST *xfered_len_units,
8535 char packet_format, int use_length)
c906108c 8536{
6d820c5c 8537 struct remote_state *rs = get_remote_state ();
cfd77fa1 8538 char *p;
a76d924d
DJ
8539 char *plen = NULL;
8540 int plenlen = 0;
124e13d9
SM
8541 int todo_units;
8542 int units_written;
8543 int payload_capacity_bytes;
8544 int payload_length_bytes;
a76d924d
DJ
8545
8546 if (packet_format != 'X' && packet_format != 'M')
8547 internal_error (__FILE__, __LINE__,
9b20d036 8548 _("remote_write_bytes_aux: bad packet format"));
c906108c 8549
124e13d9 8550 if (len_units == 0)
9b409511 8551 return TARGET_XFER_EOF;
b2182ed2 8552
124e13d9 8553 payload_capacity_bytes = get_memory_write_packet_size ();
2bc416ba 8554
6d820c5c
DJ
8555 /* The packet buffer will be large enough for the payload;
8556 get_memory_packet_size ensures this. */
a76d924d 8557 rs->buf[0] = '\0';
c906108c 8558
a257b5bb 8559 /* Compute the size of the actual payload by subtracting out the
0df8b418
MS
8560 packet header and footer overhead: "$M<memaddr>,<len>:...#nn". */
8561
124e13d9 8562 payload_capacity_bytes -= strlen ("$,:#NN");
a76d924d 8563 if (!use_length)
0df8b418 8564 /* The comma won't be used. */
124e13d9
SM
8565 payload_capacity_bytes += 1;
8566 payload_capacity_bytes -= strlen (header);
8567 payload_capacity_bytes -= hexnumlen (memaddr);
c906108c 8568
a76d924d 8569 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
917317f4 8570
8d64371b
TT
8571 strcat (rs->buf.data (), header);
8572 p = rs->buf.data () + strlen (header);
a76d924d
DJ
8573
8574 /* Compute a best guess of the number of bytes actually transfered. */
8575 if (packet_format == 'X')
c906108c 8576 {
23860348 8577 /* Best guess at number of bytes that will fit. */
325fac50
PA
8578 todo_units = std::min (len_units,
8579 (ULONGEST) payload_capacity_bytes / unit_size);
a76d924d 8580 if (use_length)
124e13d9 8581 payload_capacity_bytes -= hexnumlen (todo_units);
325fac50 8582 todo_units = std::min (todo_units, payload_capacity_bytes / unit_size);
a76d924d
DJ
8583 }
8584 else
8585 {
124e13d9 8586 /* Number of bytes that will fit. */
325fac50
PA
8587 todo_units
8588 = std::min (len_units,
8589 (ULONGEST) (payload_capacity_bytes / unit_size) / 2);
a76d924d 8590 if (use_length)
124e13d9 8591 payload_capacity_bytes -= hexnumlen (todo_units);
325fac50
PA
8592 todo_units = std::min (todo_units,
8593 (payload_capacity_bytes / unit_size) / 2);
917317f4 8594 }
a76d924d 8595
124e13d9 8596 if (todo_units <= 0)
3de11b2e 8597 internal_error (__FILE__, __LINE__,
405f8e94 8598 _("minimum packet size too small to write data"));
802188a7 8599
6765f3e5
DJ
8600 /* If we already need another packet, then try to align the end
8601 of this packet to a useful boundary. */
124e13d9
SM
8602 if (todo_units > 2 * REMOTE_ALIGN_WRITES && todo_units < len_units)
8603 todo_units = align_for_efficient_write (todo_units, memaddr);
6765f3e5 8604
a257b5bb 8605 /* Append "<memaddr>". */
917317f4
JM
8606 memaddr = remote_address_masked (memaddr);
8607 p += hexnumstr (p, (ULONGEST) memaddr);
a257b5bb 8608
a76d924d
DJ
8609 if (use_length)
8610 {
8611 /* Append ",". */
8612 *p++ = ',';
802188a7 8613
124e13d9
SM
8614 /* Append the length and retain its location and size. It may need to be
8615 adjusted once the packet body has been created. */
a76d924d 8616 plen = p;
124e13d9 8617 plenlen = hexnumstr (p, (ULONGEST) todo_units);
a76d924d
DJ
8618 p += plenlen;
8619 }
a257b5bb
AC
8620
8621 /* Append ":". */
917317f4
JM
8622 *p++ = ':';
8623 *p = '\0';
802188a7 8624
a257b5bb 8625 /* Append the packet body. */
a76d924d 8626 if (packet_format == 'X')
917317f4 8627 {
917317f4
JM
8628 /* Binary mode. Send target system values byte by byte, in
8629 increasing byte addresses. Only escape certain critical
8630 characters. */
124e13d9
SM
8631 payload_length_bytes =
8632 remote_escape_output (myaddr, todo_units, unit_size, (gdb_byte *) p,
8633 &units_written, payload_capacity_bytes);
6765f3e5 8634
124e13d9 8635 /* If not all TODO units fit, then we'll need another packet. Make
9b7194bc
DJ
8636 a second try to keep the end of the packet aligned. Don't do
8637 this if the packet is tiny. */
124e13d9 8638 if (units_written < todo_units && units_written > 2 * REMOTE_ALIGN_WRITES)
6765f3e5 8639 {
124e13d9
SM
8640 int new_todo_units;
8641
8642 new_todo_units = align_for_efficient_write (units_written, memaddr);
8643
8644 if (new_todo_units != units_written)
8645 payload_length_bytes =
8646 remote_escape_output (myaddr, new_todo_units, unit_size,
8647 (gdb_byte *) p, &units_written,
8648 payload_capacity_bytes);
6765f3e5
DJ
8649 }
8650
124e13d9
SM
8651 p += payload_length_bytes;
8652 if (use_length && units_written < todo_units)
c906108c 8653 {
802188a7 8654 /* Escape chars have filled up the buffer prematurely,
124e13d9 8655 and we have actually sent fewer units than planned.
917317f4
JM
8656 Fix-up the length field of the packet. Use the same
8657 number of characters as before. */
124e13d9
SM
8658 plen += hexnumnstr (plen, (ULONGEST) units_written,
8659 plenlen);
917317f4 8660 *plen = ':'; /* overwrite \0 from hexnumnstr() */
c906108c 8661 }
a76d924d
DJ
8662 }
8663 else
8664 {
917317f4
JM
8665 /* Normal mode: Send target system values byte by byte, in
8666 increasing byte addresses. Each byte is encoded as a two hex
8667 value. */
124e13d9
SM
8668 p += 2 * bin2hex (myaddr, p, todo_units * unit_size);
8669 units_written = todo_units;
c906108c 8670 }
802188a7 8671
8d64371b
TT
8672 putpkt_binary (rs->buf.data (), (int) (p - rs->buf.data ()));
8673 getpkt (&rs->buf, 0);
802188a7 8674
2e9f7625 8675 if (rs->buf[0] == 'E')
00d84524 8676 return TARGET_XFER_E_IO;
802188a7 8677
124e13d9
SM
8678 /* Return UNITS_WRITTEN, not TODO_UNITS, in case escape chars caused us to
8679 send fewer units than we'd planned. */
8680 *xfered_len_units = (ULONGEST) units_written;
92ffd475 8681 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
c906108c
SS
8682}
8683
a76d924d
DJ
8684/* Write memory data directly to the remote machine.
8685 This does not inform the data cache; the data cache uses this.
8686 MEMADDR is the address in the remote memory space.
8687 MYADDR is the address of the buffer in our space.
8688 LEN is the number of bytes.
8689
9b409511
YQ
8690 Return the transferred status, error or OK (an
8691 'enum target_xfer_status' value). Save the number of bytes
8692 transferred in *XFERED_LEN. Only transfer a single packet. */
a76d924d 8693
6b8edb51
PA
8694target_xfer_status
8695remote_target::remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr,
8696 ULONGEST len, int unit_size,
8697 ULONGEST *xfered_len)
a76d924d 8698{
a121b7c1 8699 const char *packet_format = NULL;
a76d924d
DJ
8700
8701 /* Check whether the target supports binary download. */
8702 check_binary_download (memaddr);
8703
4082afcc 8704 switch (packet_support (PACKET_X))
a76d924d
DJ
8705 {
8706 case PACKET_ENABLE:
8707 packet_format = "X";
8708 break;
8709 case PACKET_DISABLE:
8710 packet_format = "M";
8711 break;
8712 case PACKET_SUPPORT_UNKNOWN:
8713 internal_error (__FILE__, __LINE__,
8714 _("remote_write_bytes: bad internal state"));
8715 default:
8716 internal_error (__FILE__, __LINE__, _("bad switch"));
8717 }
8718
8719 return remote_write_bytes_aux (packet_format,
124e13d9 8720 memaddr, myaddr, len, unit_size, xfered_len,
9b409511 8721 packet_format[0], 1);
a76d924d
DJ
8722}
8723
9217e74e
YQ
8724/* Read memory data directly from the remote machine.
8725 This does not use the data cache; the data cache uses this.
8726 MEMADDR is the address in the remote memory space.
8727 MYADDR is the address of the buffer in our space.
124e13d9
SM
8728 LEN_UNITS is the number of addressable memory units to read..
8729 UNIT_SIZE is the length in bytes of an addressable unit.
9217e74e
YQ
8730
8731 Return the transferred status, error or OK (an
8732 'enum target_xfer_status' value). Save the number of bytes
124e13d9
SM
8733 transferred in *XFERED_LEN_UNITS.
8734
8735 See the comment of remote_write_bytes_aux for an example of
8736 memory read/write exchange between gdb and the stub. */
9217e74e 8737
6b8edb51
PA
8738target_xfer_status
8739remote_target::remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr,
8740 ULONGEST len_units,
8741 int unit_size, ULONGEST *xfered_len_units)
9217e74e
YQ
8742{
8743 struct remote_state *rs = get_remote_state ();
124e13d9 8744 int buf_size_bytes; /* Max size of packet output buffer. */
9217e74e 8745 char *p;
124e13d9
SM
8746 int todo_units;
8747 int decoded_bytes;
9217e74e 8748
124e13d9 8749 buf_size_bytes = get_memory_read_packet_size ();
9217e74e
YQ
8750 /* The packet buffer will be large enough for the payload;
8751 get_memory_packet_size ensures this. */
8752
124e13d9 8753 /* Number of units that will fit. */
325fac50
PA
8754 todo_units = std::min (len_units,
8755 (ULONGEST) (buf_size_bytes / unit_size) / 2);
9217e74e
YQ
8756
8757 /* Construct "m"<memaddr>","<len>". */
8758 memaddr = remote_address_masked (memaddr);
8d64371b 8759 p = rs->buf.data ();
9217e74e
YQ
8760 *p++ = 'm';
8761 p += hexnumstr (p, (ULONGEST) memaddr);
8762 *p++ = ',';
124e13d9 8763 p += hexnumstr (p, (ULONGEST) todo_units);
9217e74e
YQ
8764 *p = '\0';
8765 putpkt (rs->buf);
8d64371b 8766 getpkt (&rs->buf, 0);
9217e74e
YQ
8767 if (rs->buf[0] == 'E'
8768 && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2])
8769 && rs->buf[3] == '\0')
8770 return TARGET_XFER_E_IO;
8771 /* Reply describes memory byte by byte, each byte encoded as two hex
8772 characters. */
8d64371b 8773 p = rs->buf.data ();
124e13d9 8774 decoded_bytes = hex2bin (p, myaddr, todo_units * unit_size);
9217e74e 8775 /* Return what we have. Let higher layers handle partial reads. */
124e13d9 8776 *xfered_len_units = (ULONGEST) (decoded_bytes / unit_size);
92ffd475 8777 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
9217e74e
YQ
8778}
8779
b55fbac4
YQ
8780/* Using the set of read-only target sections of remote, read live
8781 read-only memory.
8acf9577
YQ
8782
8783 For interface/parameters/return description see target.h,
8784 to_xfer_partial. */
8785
6b8edb51
PA
8786target_xfer_status
8787remote_target::remote_xfer_live_readonly_partial (gdb_byte *readbuf,
8788 ULONGEST memaddr,
8789 ULONGEST len,
8790 int unit_size,
8791 ULONGEST *xfered_len)
8acf9577
YQ
8792{
8793 struct target_section *secp;
8794 struct target_section_table *table;
8795
6b8edb51 8796 secp = target_section_by_addr (this, memaddr);
8acf9577
YQ
8797 if (secp != NULL
8798 && (bfd_get_section_flags (secp->the_bfd_section->owner,
8799 secp->the_bfd_section)
8800 & SEC_READONLY))
8801 {
8802 struct target_section *p;
8803 ULONGEST memend = memaddr + len;
8804
6b8edb51 8805 table = target_get_section_table (this);
8acf9577
YQ
8806
8807 for (p = table->sections; p < table->sections_end; p++)
8808 {
8809 if (memaddr >= p->addr)
8810 {
8811 if (memend <= p->endaddr)
8812 {
8813 /* Entire transfer is within this section. */
124e13d9 8814 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 8815 xfered_len);
8acf9577
YQ
8816 }
8817 else if (memaddr >= p->endaddr)
8818 {
8819 /* This section ends before the transfer starts. */
8820 continue;
8821 }
8822 else
8823 {
8824 /* This section overlaps the transfer. Just do half. */
8825 len = p->endaddr - memaddr;
124e13d9 8826 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 8827 xfered_len);
8acf9577
YQ
8828 }
8829 }
8830 }
8831 }
8832
8833 return TARGET_XFER_EOF;
8834}
8835
9217e74e
YQ
8836/* Similar to remote_read_bytes_1, but it reads from the remote stub
8837 first if the requested memory is unavailable in traceframe.
8838 Otherwise, fall back to remote_read_bytes_1. */
c906108c 8839
6b8edb51
PA
8840target_xfer_status
8841remote_target::remote_read_bytes (CORE_ADDR memaddr,
8842 gdb_byte *myaddr, ULONGEST len, int unit_size,
8843 ULONGEST *xfered_len)
c906108c 8844{
6b6aa828 8845 if (len == 0)
96c4f946 8846 return TARGET_XFER_EOF;
b2182ed2 8847
8acf9577
YQ
8848 if (get_traceframe_number () != -1)
8849 {
a79b1bc6 8850 std::vector<mem_range> available;
8acf9577
YQ
8851
8852 /* If we fail to get the set of available memory, then the
8853 target does not support querying traceframe info, and so we
8854 attempt reading from the traceframe anyway (assuming the
8855 target implements the old QTro packet then). */
8856 if (traceframe_available_memory (&available, memaddr, len))
8857 {
a79b1bc6 8858 if (available.empty () || available[0].start != memaddr)
8acf9577
YQ
8859 {
8860 enum target_xfer_status res;
8861
8862 /* Don't read into the traceframe's available
8863 memory. */
a79b1bc6 8864 if (!available.empty ())
8acf9577
YQ
8865 {
8866 LONGEST oldlen = len;
8867
a79b1bc6 8868 len = available[0].start - memaddr;
8acf9577
YQ
8869 gdb_assert (len <= oldlen);
8870 }
8871
8acf9577 8872 /* This goes through the topmost target again. */
6b8edb51 8873 res = remote_xfer_live_readonly_partial (myaddr, memaddr,
124e13d9 8874 len, unit_size, xfered_len);
8acf9577
YQ
8875 if (res == TARGET_XFER_OK)
8876 return TARGET_XFER_OK;
8877 else
8878 {
8879 /* No use trying further, we know some memory starting
8880 at MEMADDR isn't available. */
8881 *xfered_len = len;
92ffd475
PC
8882 return (*xfered_len != 0) ?
8883 TARGET_XFER_UNAVAILABLE : TARGET_XFER_EOF;
8acf9577
YQ
8884 }
8885 }
8886
8887 /* Don't try to read more than how much is available, in
8888 case the target implements the deprecated QTro packet to
8889 cater for older GDBs (the target's knowledge of read-only
8890 sections may be outdated by now). */
a79b1bc6 8891 len = available[0].length;
8acf9577
YQ
8892 }
8893 }
8894
124e13d9 8895 return remote_read_bytes_1 (memaddr, myaddr, len, unit_size, xfered_len);
c906108c 8896}
74531fed 8897
c906108c 8898\f
c906108c 8899
a76d924d
DJ
8900/* Sends a packet with content determined by the printf format string
8901 FORMAT and the remaining arguments, then gets the reply. Returns
8902 whether the packet was a success, a failure, or unknown. */
8903
6b8edb51
PA
8904packet_result
8905remote_target::remote_send_printf (const char *format, ...)
a76d924d
DJ
8906{
8907 struct remote_state *rs = get_remote_state ();
8908 int max_size = get_remote_packet_size ();
a76d924d 8909 va_list ap;
a744cf53 8910
a76d924d
DJ
8911 va_start (ap, format);
8912
8913 rs->buf[0] = '\0';
8d64371b 8914 int size = vsnprintf (rs->buf.data (), max_size, format, ap);
33b031ce
GB
8915
8916 va_end (ap);
8917
8918 if (size >= max_size)
9b20d036 8919 internal_error (__FILE__, __LINE__, _("Too long remote packet."));
a76d924d
DJ
8920
8921 if (putpkt (rs->buf) < 0)
8922 error (_("Communication problem with target."));
8923
8924 rs->buf[0] = '\0';
8d64371b 8925 getpkt (&rs->buf, 0);
a76d924d
DJ
8926
8927 return packet_check_result (rs->buf);
8928}
8929
a76d924d
DJ
8930/* Flash writing can take quite some time. We'll set
8931 effectively infinite timeout for flash operations.
8932 In future, we'll need to decide on a better approach. */
8933static const int remote_flash_timeout = 1000;
8934
f6ac5f3d
PA
8935void
8936remote_target::flash_erase (ULONGEST address, LONGEST length)
a76d924d 8937{
f5656ead 8938 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
a76d924d 8939 enum packet_result ret;
2ec845e7
TT
8940 scoped_restore restore_timeout
8941 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
a76d924d
DJ
8942
8943 ret = remote_send_printf ("vFlashErase:%s,%s",
5af949e3 8944 phex (address, addr_size),
a76d924d
DJ
8945 phex (length, 4));
8946 switch (ret)
8947 {
8948 case PACKET_UNKNOWN:
8949 error (_("Remote target does not support flash erase"));
8950 case PACKET_ERROR:
8951 error (_("Error erasing flash with vFlashErase packet"));
8952 default:
8953 break;
8954 }
a76d924d
DJ
8955}
8956
6b8edb51
PA
8957target_xfer_status
8958remote_target::remote_flash_write (ULONGEST address,
8959 ULONGEST length, ULONGEST *xfered_len,
8960 const gdb_byte *data)
a76d924d 8961{
2ec845e7
TT
8962 scoped_restore restore_timeout
8963 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
8964 return remote_write_bytes_aux ("vFlashWrite:", address, data, length, 1,
8965 xfered_len,'X', 0);
a76d924d
DJ
8966}
8967
f6ac5f3d
PA
8968void
8969remote_target::flash_done ()
a76d924d 8970{
a76d924d 8971 int ret;
a76d924d 8972
2ec845e7
TT
8973 scoped_restore restore_timeout
8974 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
8975
a76d924d 8976 ret = remote_send_printf ("vFlashDone");
a76d924d
DJ
8977
8978 switch (ret)
8979 {
8980 case PACKET_UNKNOWN:
8981 error (_("Remote target does not support vFlashDone"));
8982 case PACKET_ERROR:
8983 error (_("Error finishing flash operation"));
8984 default:
8985 break;
8986 }
8987}
8988
f6ac5f3d
PA
8989void
8990remote_target::files_info ()
c906108c
SS
8991{
8992 puts_filtered ("Debugging a target over a serial line.\n");
8993}
8994\f
8995/* Stuff for dealing with the packets which are part of this protocol.
8996 See comment at top of file for details. */
8997
1927e618
PA
8998/* Close/unpush the remote target, and throw a TARGET_CLOSE_ERROR
8999 error to higher layers. Called when a serial error is detected.
9000 The exception message is STRING, followed by a colon and a blank,
d6cb50a2
JK
9001 the system error message for errno at function entry and final dot
9002 for output compatibility with throw_perror_with_name. */
1927e618
PA
9003
9004static void
9005unpush_and_perror (const char *string)
9006{
d6cb50a2 9007 int saved_errno = errno;
1927e618
PA
9008
9009 remote_unpush_target ();
d6cb50a2
JK
9010 throw_error (TARGET_CLOSE_ERROR, "%s: %s.", string,
9011 safe_strerror (saved_errno));
1927e618
PA
9012}
9013
048094ac
PA
9014/* Read a single character from the remote end. The current quit
9015 handler is overridden to avoid quitting in the middle of packet
9016 sequence, as that would break communication with the remote server.
9017 See remote_serial_quit_handler for more detail. */
c906108c 9018
6b8edb51
PA
9019int
9020remote_target::readchar (int timeout)
c906108c
SS
9021{
9022 int ch;
5d93a237 9023 struct remote_state *rs = get_remote_state ();
048094ac 9024
2ec845e7 9025 {
6b8edb51
PA
9026 scoped_restore restore_quit_target
9027 = make_scoped_restore (&curr_quit_handler_target, this);
2ec845e7 9028 scoped_restore restore_quit
6b8edb51 9029 = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
c906108c 9030
2ec845e7 9031 rs->got_ctrlc_during_io = 0;
c906108c 9032
2ec845e7 9033 ch = serial_readchar (rs->remote_desc, timeout);
048094ac 9034
2ec845e7
TT
9035 if (rs->got_ctrlc_during_io)
9036 set_quit_flag ();
9037 }
048094ac 9038
2acceee2 9039 if (ch >= 0)
0876f84a 9040 return ch;
2acceee2
JM
9041
9042 switch ((enum serial_rc) ch)
c906108c
SS
9043 {
9044 case SERIAL_EOF:
78a095c3 9045 remote_unpush_target ();
598d3636 9046 throw_error (TARGET_CLOSE_ERROR, _("Remote connection closed"));
2acceee2 9047 /* no return */
c906108c 9048 case SERIAL_ERROR:
1927e618
PA
9049 unpush_and_perror (_("Remote communication error. "
9050 "Target disconnected."));
2acceee2 9051 /* no return */
c906108c 9052 case SERIAL_TIMEOUT:
2acceee2 9053 break;
c906108c 9054 }
2acceee2 9055 return ch;
c906108c
SS
9056}
9057
c33e31fd 9058/* Wrapper for serial_write that closes the target and throws if
048094ac
PA
9059 writing fails. The current quit handler is overridden to avoid
9060 quitting in the middle of packet sequence, as that would break
9061 communication with the remote server. See
9062 remote_serial_quit_handler for more detail. */
c33e31fd 9063
6b8edb51
PA
9064void
9065remote_target::remote_serial_write (const char *str, int len)
c33e31fd 9066{
5d93a237 9067 struct remote_state *rs = get_remote_state ();
048094ac 9068
6b8edb51
PA
9069 scoped_restore restore_quit_target
9070 = make_scoped_restore (&curr_quit_handler_target, this);
2ec845e7 9071 scoped_restore restore_quit
6b8edb51 9072 = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
048094ac
PA
9073
9074 rs->got_ctrlc_during_io = 0;
5d93a237
TT
9075
9076 if (serial_write (rs->remote_desc, str, len))
c33e31fd 9077 {
1927e618
PA
9078 unpush_and_perror (_("Remote communication error. "
9079 "Target disconnected."));
c33e31fd 9080 }
048094ac
PA
9081
9082 if (rs->got_ctrlc_during_io)
9083 set_quit_flag ();
c33e31fd
PA
9084}
9085
b3ced9ba
PA
9086/* Return a string representing an escaped version of BUF, of len N.
9087 E.g. \n is converted to \\n, \t to \\t, etc. */
6e5abd65 9088
b3ced9ba 9089static std::string
6e5abd65
PA
9090escape_buffer (const char *buf, int n)
9091{
d7e74731 9092 string_file stb;
6e5abd65 9093
d7e74731
PA
9094 stb.putstrn (buf, n, '\\');
9095 return std::move (stb.string ());
6e5abd65
PA
9096}
9097
c906108c
SS
9098/* Display a null-terminated packet on stdout, for debugging, using C
9099 string notation. */
9100
9101static void
baa336ce 9102print_packet (const char *buf)
c906108c
SS
9103{
9104 puts_filtered ("\"");
43e526b9 9105 fputstr_filtered (buf, '"', gdb_stdout);
c906108c
SS
9106 puts_filtered ("\"");
9107}
9108
9109int
6b8edb51 9110remote_target::putpkt (const char *buf)
c906108c
SS
9111{
9112 return putpkt_binary (buf, strlen (buf));
9113}
9114
6b8edb51
PA
9115/* Wrapper around remote_target::putpkt to avoid exporting
9116 remote_target. */
9117
9118int
9119putpkt (remote_target *remote, const char *buf)
9120{
9121 return remote->putpkt (buf);
9122}
9123
c906108c 9124/* Send a packet to the remote machine, with error checking. The data
23860348 9125 of the packet is in BUF. The string in BUF can be at most
ea9c271d 9126 get_remote_packet_size () - 5 to account for the $, # and checksum,
23860348
MS
9127 and for a possible /0 if we are debugging (remote_debug) and want
9128 to print the sent packet as a string. */
c906108c 9129
6b8edb51
PA
9130int
9131remote_target::putpkt_binary (const char *buf, int cnt)
c906108c 9132{
2d717e4f 9133 struct remote_state *rs = get_remote_state ();
c906108c
SS
9134 int i;
9135 unsigned char csum = 0;
b80406ac
TT
9136 gdb::def_vector<char> data (cnt + 6);
9137 char *buf2 = data.data ();
085dd6e6 9138
c906108c
SS
9139 int ch;
9140 int tcount = 0;
9141 char *p;
9142
e24a49d8
PA
9143 /* Catch cases like trying to read memory or listing threads while
9144 we're waiting for a stop reply. The remote server wouldn't be
9145 ready to handle this request, so we'd hang and timeout. We don't
9146 have to worry about this in synchronous mode, because in that
9147 case it's not possible to issue a command while the target is
74531fed
PA
9148 running. This is not a problem in non-stop mode, because in that
9149 case, the stub is always ready to process serial input. */
6efcd9a8
PA
9150 if (!target_is_non_stop_p ()
9151 && target_is_async_p ()
9152 && rs->waiting_for_stop_reply)
9597b22a
DE
9153 {
9154 error (_("Cannot execute this command while the target is running.\n"
9155 "Use the \"interrupt\" command to stop the target\n"
9156 "and then try again."));
9157 }
e24a49d8 9158
2d717e4f
DJ
9159 /* We're sending out a new packet. Make sure we don't look at a
9160 stale cached response. */
9161 rs->cached_wait_status = 0;
9162
c906108c
SS
9163 /* Copy the packet into buffer BUF2, encapsulating it
9164 and giving it a checksum. */
9165
c906108c
SS
9166 p = buf2;
9167 *p++ = '$';
9168
9169 for (i = 0; i < cnt; i++)
9170 {
9171 csum += buf[i];
9172 *p++ = buf[i];
9173 }
9174 *p++ = '#';
9175 *p++ = tohex ((csum >> 4) & 0xf);
9176 *p++ = tohex (csum & 0xf);
9177
9178 /* Send it over and over until we get a positive ack. */
9179
9180 while (1)
9181 {
9182 int started_error_output = 0;
9183
9184 if (remote_debug)
9185 {
9186 *p = '\0';
b3ced9ba 9187
6f8976bf
YQ
9188 int len = (int) (p - buf2);
9189
9190 std::string str
9191 = escape_buffer (buf2, std::min (len, REMOTE_DEBUG_MAX_CHAR));
9192
9193 fprintf_unfiltered (gdb_stdlog, "Sending packet: %s", str.c_str ());
9194
567a3e54
SM
9195 if (len > REMOTE_DEBUG_MAX_CHAR)
9196 fprintf_unfiltered (gdb_stdlog, "[%d bytes omitted]",
9197 len - REMOTE_DEBUG_MAX_CHAR);
6f8976bf
YQ
9198
9199 fprintf_unfiltered (gdb_stdlog, "...");
b3ced9ba 9200
0f71a2f6 9201 gdb_flush (gdb_stdlog);
c906108c 9202 }
c33e31fd 9203 remote_serial_write (buf2, p - buf2);
c906108c 9204
a6f3e723
SL
9205 /* If this is a no acks version of the remote protocol, send the
9206 packet and move on. */
9207 if (rs->noack_mode)
9208 break;
9209
74531fed
PA
9210 /* Read until either a timeout occurs (-2) or '+' is read.
9211 Handle any notification that arrives in the mean time. */
c906108c
SS
9212 while (1)
9213 {
9214 ch = readchar (remote_timeout);
9215
c5aa993b 9216 if (remote_debug)
c906108c
SS
9217 {
9218 switch (ch)
9219 {
9220 case '+':
1216fa2c 9221 case '-':
c906108c
SS
9222 case SERIAL_TIMEOUT:
9223 case '$':
74531fed 9224 case '%':
c906108c
SS
9225 if (started_error_output)
9226 {
9227 putchar_unfiltered ('\n');
9228 started_error_output = 0;
9229 }
9230 }
9231 }
9232
9233 switch (ch)
9234 {
9235 case '+':
9236 if (remote_debug)
0f71a2f6 9237 fprintf_unfiltered (gdb_stdlog, "Ack\n");
c906108c 9238 return 1;
1216fa2c
AC
9239 case '-':
9240 if (remote_debug)
9241 fprintf_unfiltered (gdb_stdlog, "Nak\n");
a17d146e 9242 /* FALLTHROUGH */
c906108c 9243 case SERIAL_TIMEOUT:
c5aa993b 9244 tcount++;
c906108c 9245 if (tcount > 3)
b80406ac 9246 return 0;
23860348 9247 break; /* Retransmit buffer. */
c906108c
SS
9248 case '$':
9249 {
40e3f985 9250 if (remote_debug)
2bc416ba 9251 fprintf_unfiltered (gdb_stdlog,
23860348 9252 "Packet instead of Ack, ignoring it\n");
d6f7abdf
AC
9253 /* It's probably an old response sent because an ACK
9254 was lost. Gobble up the packet and ack it so it
9255 doesn't get retransmitted when we resend this
9256 packet. */
6d820c5c 9257 skip_frame ();
c33e31fd 9258 remote_serial_write ("+", 1);
23860348 9259 continue; /* Now, go look for +. */
c906108c 9260 }
74531fed
PA
9261
9262 case '%':
9263 {
9264 int val;
9265
9266 /* If we got a notification, handle it, and go back to looking
9267 for an ack. */
9268 /* We've found the start of a notification. Now
9269 collect the data. */
8d64371b 9270 val = read_frame (&rs->buf);
74531fed
PA
9271 if (val >= 0)
9272 {
9273 if (remote_debug)
9274 {
8d64371b 9275 std::string str = escape_buffer (rs->buf.data (), val);
6e5abd65 9276
6e5abd65
PA
9277 fprintf_unfiltered (gdb_stdlog,
9278 " Notification received: %s\n",
b3ced9ba 9279 str.c_str ());
74531fed 9280 }
8d64371b 9281 handle_notification (rs->notif_state, rs->buf.data ());
74531fed
PA
9282 /* We're in sync now, rewait for the ack. */
9283 tcount = 0;
9284 }
9285 else
9286 {
9287 if (remote_debug)
9288 {
9289 if (!started_error_output)
9290 {
9291 started_error_output = 1;
9292 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
9293 }
9294 fputc_unfiltered (ch & 0177, gdb_stdlog);
8d64371b 9295 fprintf_unfiltered (gdb_stdlog, "%s", rs->buf.data ());
74531fed
PA
9296 }
9297 }
9298 continue;
9299 }
9300 /* fall-through */
c906108c
SS
9301 default:
9302 if (remote_debug)
9303 {
9304 if (!started_error_output)
9305 {
9306 started_error_output = 1;
0f71a2f6 9307 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
c906108c 9308 }
0f71a2f6 9309 fputc_unfiltered (ch & 0177, gdb_stdlog);
c906108c
SS
9310 }
9311 continue;
9312 }
23860348 9313 break; /* Here to retransmit. */
c906108c
SS
9314 }
9315
9316#if 0
9317 /* This is wrong. If doing a long backtrace, the user should be
c5aa993b
JM
9318 able to get out next time we call QUIT, without anything as
9319 violent as interrupt_query. If we want to provide a way out of
9320 here without getting to the next QUIT, it should be based on
9321 hitting ^C twice as in remote_wait. */
c906108c
SS
9322 if (quit_flag)
9323 {
9324 quit_flag = 0;
9325 interrupt_query ();
9326 }
9327#endif
9328 }
a5c0808e 9329
a6f3e723 9330 return 0;
c906108c
SS
9331}
9332
6d820c5c
DJ
9333/* Come here after finding the start of a frame when we expected an
9334 ack. Do our best to discard the rest of this packet. */
9335
6b8edb51
PA
9336void
9337remote_target::skip_frame ()
6d820c5c
DJ
9338{
9339 int c;
9340
9341 while (1)
9342 {
9343 c = readchar (remote_timeout);
9344 switch (c)
9345 {
9346 case SERIAL_TIMEOUT:
9347 /* Nothing we can do. */
9348 return;
9349 case '#':
9350 /* Discard the two bytes of checksum and stop. */
9351 c = readchar (remote_timeout);
9352 if (c >= 0)
9353 c = readchar (remote_timeout);
9354
9355 return;
9356 case '*': /* Run length encoding. */
9357 /* Discard the repeat count. */
9358 c = readchar (remote_timeout);
9359 if (c < 0)
9360 return;
9361 break;
9362 default:
9363 /* A regular character. */
9364 break;
9365 }
9366 }
9367}
9368
c906108c 9369/* Come here after finding the start of the frame. Collect the rest
6d820c5c
DJ
9370 into *BUF, verifying the checksum, length, and handling run-length
9371 compression. NUL terminate the buffer. If there is not enough room,
8d64371b 9372 expand *BUF.
c906108c 9373
c2d11a7d
JM
9374 Returns -1 on error, number of characters in buffer (ignoring the
9375 trailing NULL) on success. (could be extended to return one of the
23860348 9376 SERIAL status indications). */
c2d11a7d 9377
6b8edb51 9378long
8d64371b 9379remote_target::read_frame (gdb::char_vector *buf_p)
c906108c
SS
9380{
9381 unsigned char csum;
c2d11a7d 9382 long bc;
c906108c 9383 int c;
8d64371b 9384 char *buf = buf_p->data ();
a6f3e723 9385 struct remote_state *rs = get_remote_state ();
c906108c
SS
9386
9387 csum = 0;
c2d11a7d 9388 bc = 0;
c906108c
SS
9389
9390 while (1)
9391 {
9392 c = readchar (remote_timeout);
c906108c
SS
9393 switch (c)
9394 {
9395 case SERIAL_TIMEOUT:
9396 if (remote_debug)
0f71a2f6 9397 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog);
c2d11a7d 9398 return -1;
c906108c
SS
9399 case '$':
9400 if (remote_debug)
0f71a2f6
JM
9401 fputs_filtered ("Saw new packet start in middle of old one\n",
9402 gdb_stdlog);
23860348 9403 return -1; /* Start a new packet, count retries. */
c906108c
SS
9404 case '#':
9405 {
9406 unsigned char pktcsum;
e1b09194
AC
9407 int check_0 = 0;
9408 int check_1 = 0;
c906108c 9409
c2d11a7d 9410 buf[bc] = '\0';
c906108c 9411
e1b09194
AC
9412 check_0 = readchar (remote_timeout);
9413 if (check_0 >= 0)
9414 check_1 = readchar (remote_timeout);
802188a7 9415
e1b09194
AC
9416 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
9417 {
9418 if (remote_debug)
2bc416ba 9419 fputs_filtered ("Timeout in checksum, retrying\n",
23860348 9420 gdb_stdlog);
e1b09194
AC
9421 return -1;
9422 }
9423 else if (check_0 < 0 || check_1 < 0)
40e3f985
FN
9424 {
9425 if (remote_debug)
2bc416ba 9426 fputs_filtered ("Communication error in checksum\n",
23860348 9427 gdb_stdlog);
40e3f985
FN
9428 return -1;
9429 }
c906108c 9430
a6f3e723
SL
9431 /* Don't recompute the checksum; with no ack packets we
9432 don't have any way to indicate a packet retransmission
9433 is necessary. */
9434 if (rs->noack_mode)
9435 return bc;
9436
e1b09194 9437 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
c906108c 9438 if (csum == pktcsum)
c2d11a7d 9439 return bc;
c906108c 9440
c5aa993b 9441 if (remote_debug)
c906108c 9442 {
b3ced9ba 9443 std::string str = escape_buffer (buf, bc);
6e5abd65 9444
6e5abd65 9445 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
9446 "Bad checksum, sentsum=0x%x, "
9447 "csum=0x%x, buf=%s\n",
b3ced9ba 9448 pktcsum, csum, str.c_str ());
c906108c 9449 }
c2d11a7d 9450 /* Number of characters in buffer ignoring trailing
23860348 9451 NULL. */
c2d11a7d 9452 return -1;
c906108c 9453 }
23860348 9454 case '*': /* Run length encoding. */
c2c6d25f
JM
9455 {
9456 int repeat;
c906108c 9457
a744cf53 9458 csum += c;
b4501125
AC
9459 c = readchar (remote_timeout);
9460 csum += c;
23860348 9461 repeat = c - ' ' + 3; /* Compute repeat count. */
c906108c 9462
23860348 9463 /* The character before ``*'' is repeated. */
c2d11a7d 9464
6d820c5c 9465 if (repeat > 0 && repeat <= 255 && bc > 0)
c2c6d25f 9466 {
8d64371b 9467 if (bc + repeat - 1 >= buf_p->size () - 1)
6d820c5c
DJ
9468 {
9469 /* Make some more room in the buffer. */
8d64371b
TT
9470 buf_p->resize (buf_p->size () + repeat);
9471 buf = buf_p->data ();
6d820c5c
DJ
9472 }
9473
c2d11a7d
JM
9474 memset (&buf[bc], buf[bc - 1], repeat);
9475 bc += repeat;
c2c6d25f
JM
9476 continue;
9477 }
9478
c2d11a7d 9479 buf[bc] = '\0';
6d820c5c 9480 printf_filtered (_("Invalid run length encoding: %s\n"), buf);
c2d11a7d 9481 return -1;
c2c6d25f 9482 }
c906108c 9483 default:
8d64371b 9484 if (bc >= buf_p->size () - 1)
c906108c 9485 {
6d820c5c 9486 /* Make some more room in the buffer. */
8d64371b
TT
9487 buf_p->resize (buf_p->size () * 2);
9488 buf = buf_p->data ();
c906108c
SS
9489 }
9490
6d820c5c
DJ
9491 buf[bc++] = c;
9492 csum += c;
9493 continue;
c906108c
SS
9494 }
9495 }
9496}
9497
9498/* Read a packet from the remote machine, with error checking, and
8d64371b
TT
9499 store it in *BUF. Resize *BUF if necessary to hold the result. If
9500 FOREVER, wait forever rather than timing out; this is used (in
9501 synchronous mode) to wait for a target that is is executing user
9502 code to stop. */
d9fcf2fb
JM
9503/* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
9504 don't have to change all the calls to getpkt to deal with the
9505 return value, because at the moment I don't know what the right
23860348 9506 thing to do it for those. */
6b8edb51 9507
c906108c 9508void
8d64371b 9509remote_target::getpkt (gdb::char_vector *buf, int forever)
d9fcf2fb 9510{
8d64371b 9511 getpkt_sane (buf, forever);
d9fcf2fb
JM
9512}
9513
9514
9515/* Read a packet from the remote machine, with error checking, and
8d64371b
TT
9516 store it in *BUF. Resize *BUF if necessary to hold the result. If
9517 FOREVER, wait forever rather than timing out; this is used (in
9518 synchronous mode) to wait for a target that is is executing user
9519 code to stop. If FOREVER == 0, this function is allowed to time
9520 out gracefully and return an indication of this to the caller.
9521 Otherwise return the number of bytes read. If EXPECTING_NOTIF,
9522 consider receiving a notification enough reason to return to the
9523 caller. *IS_NOTIF is an output boolean that indicates whether *BUF
9524 holds a notification or not (a regular packet). */
74531fed 9525
6b8edb51 9526int
8d64371b 9527remote_target::getpkt_or_notif_sane_1 (gdb::char_vector *buf,
6b8edb51
PA
9528 int forever, int expecting_notif,
9529 int *is_notif)
c906108c 9530{
2d717e4f 9531 struct remote_state *rs = get_remote_state ();
c906108c
SS
9532 int c;
9533 int tries;
9534 int timeout;
df4b58fe 9535 int val = -1;
c906108c 9536
2d717e4f
DJ
9537 /* We're reading a new response. Make sure we don't look at a
9538 previously cached response. */
9539 rs->cached_wait_status = 0;
9540
8d64371b 9541 strcpy (buf->data (), "timeout");
c906108c
SS
9542
9543 if (forever)
74531fed
PA
9544 timeout = watchdog > 0 ? watchdog : -1;
9545 else if (expecting_notif)
9546 timeout = 0; /* There should already be a char in the buffer. If
9547 not, bail out. */
c906108c
SS
9548 else
9549 timeout = remote_timeout;
9550
9551#define MAX_TRIES 3
9552
74531fed
PA
9553 /* Process any number of notifications, and then return when
9554 we get a packet. */
9555 for (;;)
c906108c 9556 {
d9c43928 9557 /* If we get a timeout or bad checksum, retry up to MAX_TRIES
74531fed
PA
9558 times. */
9559 for (tries = 1; tries <= MAX_TRIES; tries++)
c906108c 9560 {
74531fed
PA
9561 /* This can loop forever if the remote side sends us
9562 characters continuously, but if it pauses, we'll get
9563 SERIAL_TIMEOUT from readchar because of timeout. Then
9564 we'll count that as a retry.
9565
9566 Note that even when forever is set, we will only wait
9567 forever prior to the start of a packet. After that, we
9568 expect characters to arrive at a brisk pace. They should
9569 show up within remote_timeout intervals. */
9570 do
9571 c = readchar (timeout);
9572 while (c != SERIAL_TIMEOUT && c != '$' && c != '%');
c906108c
SS
9573
9574 if (c == SERIAL_TIMEOUT)
9575 {
74531fed
PA
9576 if (expecting_notif)
9577 return -1; /* Don't complain, it's normal to not get
9578 anything in this case. */
9579
23860348 9580 if (forever) /* Watchdog went off? Kill the target. */
c906108c 9581 {
78a095c3 9582 remote_unpush_target ();
598d3636
JK
9583 throw_error (TARGET_CLOSE_ERROR,
9584 _("Watchdog timeout has expired. "
9585 "Target detached."));
c906108c 9586 }
c906108c 9587 if (remote_debug)
0f71a2f6 9588 fputs_filtered ("Timed out.\n", gdb_stdlog);
c906108c 9589 }
74531fed
PA
9590 else
9591 {
9592 /* We've found the start of a packet or notification.
9593 Now collect the data. */
8d64371b 9594 val = read_frame (buf);
74531fed
PA
9595 if (val >= 0)
9596 break;
9597 }
9598
c33e31fd 9599 remote_serial_write ("-", 1);
c906108c 9600 }
c906108c 9601
74531fed
PA
9602 if (tries > MAX_TRIES)
9603 {
9604 /* We have tried hard enough, and just can't receive the
9605 packet/notification. Give up. */
9606 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
c906108c 9607
74531fed
PA
9608 /* Skip the ack char if we're in no-ack mode. */
9609 if (!rs->noack_mode)
c33e31fd 9610 remote_serial_write ("+", 1);
74531fed
PA
9611 return -1;
9612 }
c906108c 9613
74531fed
PA
9614 /* If we got an ordinary packet, return that to our caller. */
9615 if (c == '$')
c906108c
SS
9616 {
9617 if (remote_debug)
43e526b9 9618 {
6f8976bf 9619 std::string str
8d64371b 9620 = escape_buffer (buf->data (),
6f8976bf
YQ
9621 std::min (val, REMOTE_DEBUG_MAX_CHAR));
9622
9623 fprintf_unfiltered (gdb_stdlog, "Packet received: %s",
9624 str.c_str ());
9625
567a3e54
SM
9626 if (val > REMOTE_DEBUG_MAX_CHAR)
9627 fprintf_unfiltered (gdb_stdlog, "[%d bytes omitted]",
9628 val - REMOTE_DEBUG_MAX_CHAR);
6e5abd65 9629
6f8976bf 9630 fprintf_unfiltered (gdb_stdlog, "\n");
43e526b9 9631 }
a6f3e723
SL
9632
9633 /* Skip the ack char if we're in no-ack mode. */
9634 if (!rs->noack_mode)
c33e31fd 9635 remote_serial_write ("+", 1);
fee9eda9
YQ
9636 if (is_notif != NULL)
9637 *is_notif = 0;
0876f84a 9638 return val;
c906108c
SS
9639 }
9640
74531fed
PA
9641 /* If we got a notification, handle it, and go back to looking
9642 for a packet. */
9643 else
9644 {
9645 gdb_assert (c == '%');
9646
9647 if (remote_debug)
9648 {
8d64371b 9649 std::string str = escape_buffer (buf->data (), val);
6e5abd65 9650
6e5abd65
PA
9651 fprintf_unfiltered (gdb_stdlog,
9652 " Notification received: %s\n",
b3ced9ba 9653 str.c_str ());
74531fed 9654 }
fee9eda9
YQ
9655 if (is_notif != NULL)
9656 *is_notif = 1;
c906108c 9657
8d64371b 9658 handle_notification (rs->notif_state, buf->data ());
c906108c 9659
74531fed 9660 /* Notifications require no acknowledgement. */
a6f3e723 9661
74531fed 9662 if (expecting_notif)
fee9eda9 9663 return val;
74531fed
PA
9664 }
9665 }
9666}
9667
6b8edb51 9668int
8d64371b 9669remote_target::getpkt_sane (gdb::char_vector *buf, int forever)
74531fed 9670{
8d64371b 9671 return getpkt_or_notif_sane_1 (buf, forever, 0, NULL);
74531fed
PA
9672}
9673
6b8edb51 9674int
8d64371b 9675remote_target::getpkt_or_notif_sane (gdb::char_vector *buf, int forever,
6b8edb51 9676 int *is_notif)
74531fed 9677{
8d64371b 9678 return getpkt_or_notif_sane_1 (buf, forever, 1, is_notif);
c906108c 9679}
74531fed 9680
cbb8991c
DB
9681/* Kill any new fork children of process PID that haven't been
9682 processed by follow_fork. */
9683
6b8edb51
PA
9684void
9685remote_target::kill_new_fork_children (int pid)
cbb8991c 9686{
6b8edb51 9687 remote_state *rs = get_remote_state ();
cbb8991c 9688 struct notif_client *notif = &notif_client_stop;
cbb8991c
DB
9689
9690 /* Kill the fork child threads of any threads in process PID
9691 that are stopped at a fork event. */
08036331 9692 for (thread_info *thread : all_non_exited_threads ())
cbb8991c
DB
9693 {
9694 struct target_waitstatus *ws = &thread->pending_follow;
9695
9696 if (is_pending_fork_parent (ws, pid, thread->ptid))
9697 {
953edf2b 9698 int child_pid = ws->value.related_pid.pid ();
cbb8991c
DB
9699 int res;
9700
6b8edb51 9701 res = remote_vkill (child_pid);
cbb8991c
DB
9702 if (res != 0)
9703 error (_("Can't kill fork child process %d"), child_pid);
9704 }
9705 }
9706
9707 /* Check for any pending fork events (not reported or processed yet)
9708 in process PID and kill those fork child threads as well. */
9709 remote_notif_get_pending_events (notif);
953edf2b
TT
9710 for (auto &event : rs->stop_reply_queue)
9711 if (is_pending_fork_parent (&event->ws, pid, event->ptid))
9712 {
9713 int child_pid = event->ws.value.related_pid.pid ();
9714 int res;
9715
9716 res = remote_vkill (child_pid);
9717 if (res != 0)
9718 error (_("Can't kill fork child process %d"), child_pid);
9719 }
cbb8991c
DB
9720}
9721
c906108c 9722\f
8020350c
DB
9723/* Target hook to kill the current inferior. */
9724
f6ac5f3d
PA
9725void
9726remote_target::kill ()
43ff13b4 9727{
8020350c 9728 int res = -1;
e99b03dc 9729 int pid = inferior_ptid.pid ();
8020350c 9730 struct remote_state *rs = get_remote_state ();
0fdf84ca 9731
8020350c 9732 if (packet_support (PACKET_vKill) != PACKET_DISABLE)
0fdf84ca 9733 {
8020350c
DB
9734 /* If we're stopped while forking and we haven't followed yet,
9735 kill the child task. We need to do this before killing the
9736 parent task because if this is a vfork then the parent will
9737 be sleeping. */
6b8edb51 9738 kill_new_fork_children (pid);
8020350c 9739
6b8edb51 9740 res = remote_vkill (pid);
8020350c 9741 if (res == 0)
0fdf84ca 9742 {
bc1e6c81 9743 target_mourn_inferior (inferior_ptid);
0fdf84ca
PA
9744 return;
9745 }
8020350c 9746 }
0fdf84ca 9747
8020350c
DB
9748 /* If we are in 'target remote' mode and we are killing the only
9749 inferior, then we will tell gdbserver to exit and unpush the
9750 target. */
9751 if (res == -1 && !remote_multi_process_p (rs)
9752 && number_of_live_inferiors () == 1)
9753 {
9754 remote_kill_k ();
9755
9756 /* We've killed the remote end, we get to mourn it. If we are
9757 not in extended mode, mourning the inferior also unpushes
9758 remote_ops from the target stack, which closes the remote
9759 connection. */
bc1e6c81 9760 target_mourn_inferior (inferior_ptid);
8020350c
DB
9761
9762 return;
0fdf84ca 9763 }
43ff13b4 9764
8020350c 9765 error (_("Can't kill process"));
43ff13b4
JM
9766}
9767
8020350c
DB
9768/* Send a kill request to the target using the 'vKill' packet. */
9769
6b8edb51
PA
9770int
9771remote_target::remote_vkill (int pid)
82f73884 9772{
4082afcc 9773 if (packet_support (PACKET_vKill) == PACKET_DISABLE)
82f73884
PA
9774 return -1;
9775
6b8edb51
PA
9776 remote_state *rs = get_remote_state ();
9777
82f73884 9778 /* Tell the remote target to detach. */
8d64371b 9779 xsnprintf (rs->buf.data (), get_remote_packet_size (), "vKill;%x", pid);
82f73884 9780 putpkt (rs->buf);
8d64371b 9781 getpkt (&rs->buf, 0);
82f73884 9782
4082afcc
PA
9783 switch (packet_ok (rs->buf,
9784 &remote_protocol_packets[PACKET_vKill]))
9785 {
9786 case PACKET_OK:
9787 return 0;
9788 case PACKET_ERROR:
9789 return 1;
9790 case PACKET_UNKNOWN:
9791 return -1;
9792 default:
9793 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
9794 }
82f73884
PA
9795}
9796
8020350c
DB
9797/* Send a kill request to the target using the 'k' packet. */
9798
6b8edb51
PA
9799void
9800remote_target::remote_kill_k ()
82f73884 9801{
8020350c
DB
9802 /* Catch errors so the user can quit from gdb even when we
9803 aren't on speaking terms with the remote system. */
9804 TRY
82f73884 9805 {
82f73884 9806 putpkt ("k");
82f73884 9807 }
8020350c
DB
9808 CATCH (ex, RETURN_MASK_ERROR)
9809 {
9810 if (ex.error == TARGET_CLOSE_ERROR)
9811 {
9812 /* If we got an (EOF) error that caused the target
9813 to go away, then we're done, that's what we wanted.
9814 "k" is susceptible to cause a premature EOF, given
9815 that the remote server isn't actually required to
9816 reply to "k", and it can happen that it doesn't
9817 even get to reply ACK to the "k". */
9818 return;
9819 }
82f73884 9820
8020350c
DB
9821 /* Otherwise, something went wrong. We didn't actually kill
9822 the target. Just propagate the exception, and let the
9823 user or higher layers decide what to do. */
9824 throw_exception (ex);
9825 }
9826 END_CATCH
82f73884
PA
9827}
9828
f6ac5f3d
PA
9829void
9830remote_target::mourn_inferior ()
c906108c 9831{
8020350c 9832 struct remote_state *rs = get_remote_state ();
ce5ce7ed 9833
9607784a
PA
9834 /* We're no longer interested in notification events of an inferior
9835 that exited or was killed/detached. */
9836 discard_pending_stop_replies (current_inferior ());
9837
8020350c
DB
9838 /* In 'target remote' mode with one inferior, we close the connection. */
9839 if (!rs->extended && number_of_live_inferiors () <= 1)
9840 {
f6ac5f3d 9841 unpush_target (this);
c906108c 9842
8020350c
DB
9843 /* remote_close takes care of doing most of the clean up. */
9844 generic_mourn_inferior ();
9845 return;
9846 }
c906108c 9847
e24a49d8
PA
9848 /* In case we got here due to an error, but we're going to stay
9849 connected. */
9850 rs->waiting_for_stop_reply = 0;
9851
dc1981d7
PA
9852 /* If the current general thread belonged to the process we just
9853 detached from or has exited, the remote side current general
9854 thread becomes undefined. Considering a case like this:
9855
9856 - We just got here due to a detach.
9857 - The process that we're detaching from happens to immediately
9858 report a global breakpoint being hit in non-stop mode, in the
9859 same thread we had selected before.
9860 - GDB attaches to this process again.
9861 - This event happens to be the next event we handle.
9862
9863 GDB would consider that the current general thread didn't need to
9864 be set on the stub side (with Hg), since for all it knew,
9865 GENERAL_THREAD hadn't changed.
9866
9867 Notice that although in all-stop mode, the remote server always
9868 sets the current thread to the thread reporting the stop event,
9869 that doesn't happen in non-stop mode; in non-stop, the stub *must
9870 not* change the current thread when reporting a breakpoint hit,
9871 due to the decoupling of event reporting and event handling.
9872
9873 To keep things simple, we always invalidate our notion of the
9874 current thread. */
47f8a51d 9875 record_currthread (rs, minus_one_ptid);
dc1981d7 9876
8020350c 9877 /* Call common code to mark the inferior as not running. */
48aa3c27
PA
9878 generic_mourn_inferior ();
9879
d729566a 9880 if (!have_inferiors ())
2d717e4f 9881 {
82f73884
PA
9882 if (!remote_multi_process_p (rs))
9883 {
9884 /* Check whether the target is running now - some remote stubs
9885 automatically restart after kill. */
9886 putpkt ("?");
8d64371b 9887 getpkt (&rs->buf, 0);
82f73884
PA
9888
9889 if (rs->buf[0] == 'S' || rs->buf[0] == 'T')
9890 {
3e43a32a
MS
9891 /* Assume that the target has been restarted. Set
9892 inferior_ptid so that bits of core GDB realizes
9893 there's something here, e.g., so that the user can
9894 say "kill" again. */
82f73884
PA
9895 inferior_ptid = magic_null_ptid;
9896 }
82f73884 9897 }
2d717e4f
DJ
9898 }
9899}
c906108c 9900
57810aa7 9901bool
f6ac5f3d 9902extended_remote_target::supports_disable_randomization ()
03583c20 9903{
4082afcc 9904 return packet_support (PACKET_QDisableRandomization) == PACKET_ENABLE;
03583c20
UW
9905}
9906
6b8edb51
PA
9907void
9908remote_target::extended_remote_disable_randomization (int val)
03583c20
UW
9909{
9910 struct remote_state *rs = get_remote_state ();
9911 char *reply;
9912
8d64371b
TT
9913 xsnprintf (rs->buf.data (), get_remote_packet_size (),
9914 "QDisableRandomization:%x", val);
03583c20 9915 putpkt (rs->buf);
b6bb3468 9916 reply = remote_get_noisy_reply ();
03583c20
UW
9917 if (*reply == '\0')
9918 error (_("Target does not support QDisableRandomization."));
9919 if (strcmp (reply, "OK") != 0)
9920 error (_("Bogus QDisableRandomization reply from target: %s"), reply);
9921}
9922
6b8edb51
PA
9923int
9924remote_target::extended_remote_run (const std::string &args)
2d717e4f
DJ
9925{
9926 struct remote_state *rs = get_remote_state ();
2d717e4f 9927 int len;
94585166 9928 const char *remote_exec_file = get_remote_exec_file ();
c906108c 9929
2d717e4f
DJ
9930 /* If the user has disabled vRun support, or we have detected that
9931 support is not available, do not try it. */
4082afcc 9932 if (packet_support (PACKET_vRun) == PACKET_DISABLE)
2d717e4f 9933 return -1;
424163ea 9934
8d64371b
TT
9935 strcpy (rs->buf.data (), "vRun;");
9936 len = strlen (rs->buf.data ());
c906108c 9937
2d717e4f
DJ
9938 if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ())
9939 error (_("Remote file name too long for run packet"));
8d64371b 9940 len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf.data () + len,
9f1b45b0 9941 strlen (remote_exec_file));
2d717e4f 9942
7c5ded6a 9943 if (!args.empty ())
2d717e4f 9944 {
2d717e4f 9945 int i;
2d717e4f 9946
773a1edc 9947 gdb_argv argv (args.c_str ());
2d717e4f
DJ
9948 for (i = 0; argv[i] != NULL; i++)
9949 {
9950 if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ())
9951 error (_("Argument list too long for run packet"));
9952 rs->buf[len++] = ';';
8d64371b 9953 len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf.data () + len,
9f1b45b0 9954 strlen (argv[i]));
2d717e4f 9955 }
2d717e4f
DJ
9956 }
9957
9958 rs->buf[len++] = '\0';
9959
9960 putpkt (rs->buf);
8d64371b 9961 getpkt (&rs->buf, 0);
2d717e4f 9962
4082afcc 9963 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun]))
2d717e4f 9964 {
4082afcc 9965 case PACKET_OK:
3405876a 9966 /* We have a wait response. All is well. */
2d717e4f 9967 return 0;
4082afcc
PA
9968 case PACKET_UNKNOWN:
9969 return -1;
9970 case PACKET_ERROR:
2d717e4f
DJ
9971 if (remote_exec_file[0] == '\0')
9972 error (_("Running the default executable on the remote target failed; "
9973 "try \"set remote exec-file\"?"));
9974 else
9975 error (_("Running \"%s\" on the remote target failed"),
9976 remote_exec_file);
4082afcc
PA
9977 default:
9978 gdb_assert_not_reached (_("bad switch"));
2d717e4f 9979 }
c906108c
SS
9980}
9981
0a2dde4a
SDJ
9982/* Helper function to send set/unset environment packets. ACTION is
9983 either "set" or "unset". PACKET is either "QEnvironmentHexEncoded"
9984 or "QEnvironmentUnsetVariable". VALUE is the variable to be
9985 sent. */
9986
6b8edb51
PA
9987void
9988remote_target::send_environment_packet (const char *action,
9989 const char *packet,
9990 const char *value)
0a2dde4a 9991{
6b8edb51
PA
9992 remote_state *rs = get_remote_state ();
9993
0a2dde4a
SDJ
9994 /* Convert the environment variable to an hex string, which
9995 is the best format to be transmitted over the wire. */
9996 std::string encoded_value = bin2hex ((const gdb_byte *) value,
9997 strlen (value));
9998
8d64371b 9999 xsnprintf (rs->buf.data (), get_remote_packet_size (),
0a2dde4a
SDJ
10000 "%s:%s", packet, encoded_value.c_str ());
10001
10002 putpkt (rs->buf);
8d64371b
TT
10003 getpkt (&rs->buf, 0);
10004 if (strcmp (rs->buf.data (), "OK") != 0)
0a2dde4a
SDJ
10005 warning (_("Unable to %s environment variable '%s' on remote."),
10006 action, value);
10007}
10008
10009/* Helper function to handle the QEnvironment* packets. */
10010
6b8edb51
PA
10011void
10012remote_target::extended_remote_environment_support ()
0a2dde4a 10013{
6b8edb51
PA
10014 remote_state *rs = get_remote_state ();
10015
0a2dde4a
SDJ
10016 if (packet_support (PACKET_QEnvironmentReset) != PACKET_DISABLE)
10017 {
10018 putpkt ("QEnvironmentReset");
8d64371b
TT
10019 getpkt (&rs->buf, 0);
10020 if (strcmp (rs->buf.data (), "OK") != 0)
0a2dde4a
SDJ
10021 warning (_("Unable to reset environment on remote."));
10022 }
10023
10024 gdb_environ *e = &current_inferior ()->environment;
10025
10026 if (packet_support (PACKET_QEnvironmentHexEncoded) != PACKET_DISABLE)
10027 for (const std::string &el : e->user_set_env ())
6b8edb51 10028 send_environment_packet ("set", "QEnvironmentHexEncoded",
0a2dde4a
SDJ
10029 el.c_str ());
10030
10031 if (packet_support (PACKET_QEnvironmentUnset) != PACKET_DISABLE)
10032 for (const std::string &el : e->user_unset_env ())
6b8edb51 10033 send_environment_packet ("unset", "QEnvironmentUnset", el.c_str ());
0a2dde4a
SDJ
10034}
10035
bc3b087d
SDJ
10036/* Helper function to set the current working directory for the
10037 inferior in the remote target. */
10038
6b8edb51
PA
10039void
10040remote_target::extended_remote_set_inferior_cwd ()
bc3b087d
SDJ
10041{
10042 if (packet_support (PACKET_QSetWorkingDir) != PACKET_DISABLE)
10043 {
10044 const char *inferior_cwd = get_inferior_cwd ();
6b8edb51 10045 remote_state *rs = get_remote_state ();
bc3b087d
SDJ
10046
10047 if (inferior_cwd != NULL)
10048 {
10049 std::string hexpath = bin2hex ((const gdb_byte *) inferior_cwd,
10050 strlen (inferior_cwd));
10051
8d64371b 10052 xsnprintf (rs->buf.data (), get_remote_packet_size (),
bc3b087d
SDJ
10053 "QSetWorkingDir:%s", hexpath.c_str ());
10054 }
10055 else
10056 {
10057 /* An empty inferior_cwd means that the user wants us to
10058 reset the remote server's inferior's cwd. */
8d64371b 10059 xsnprintf (rs->buf.data (), get_remote_packet_size (),
bc3b087d
SDJ
10060 "QSetWorkingDir:");
10061 }
10062
10063 putpkt (rs->buf);
8d64371b 10064 getpkt (&rs->buf, 0);
bc3b087d
SDJ
10065 if (packet_ok (rs->buf,
10066 &remote_protocol_packets[PACKET_QSetWorkingDir])
10067 != PACKET_OK)
10068 error (_("\
10069Remote replied unexpectedly while setting the inferior's working\n\
10070directory: %s"),
8d64371b 10071 rs->buf.data ());
bc3b087d
SDJ
10072
10073 }
10074}
10075
2d717e4f
DJ
10076/* In the extended protocol we want to be able to do things like
10077 "run" and have them basically work as expected. So we need
10078 a special create_inferior function. We support changing the
10079 executable file and the command line arguments, but not the
10080 environment. */
10081
f6ac5f3d
PA
10082void
10083extended_remote_target::create_inferior (const char *exec_file,
10084 const std::string &args,
10085 char **env, int from_tty)
43ff13b4 10086{
3405876a
PA
10087 int run_worked;
10088 char *stop_reply;
10089 struct remote_state *rs = get_remote_state ();
94585166 10090 const char *remote_exec_file = get_remote_exec_file ();
3405876a 10091
43ff13b4 10092 /* If running asynchronously, register the target file descriptor
23860348 10093 with the event loop. */
75c99385 10094 if (target_can_async_p ())
6a3753b3 10095 target_async (1);
43ff13b4 10096
03583c20 10097 /* Disable address space randomization if requested (and supported). */
f6ac5f3d 10098 if (supports_disable_randomization ())
03583c20
UW
10099 extended_remote_disable_randomization (disable_randomization);
10100
aefd8b33
SDJ
10101 /* If startup-with-shell is on, we inform gdbserver to start the
10102 remote inferior using a shell. */
10103 if (packet_support (PACKET_QStartupWithShell) != PACKET_DISABLE)
10104 {
8d64371b 10105 xsnprintf (rs->buf.data (), get_remote_packet_size (),
aefd8b33
SDJ
10106 "QStartupWithShell:%d", startup_with_shell ? 1 : 0);
10107 putpkt (rs->buf);
8d64371b
TT
10108 getpkt (&rs->buf, 0);
10109 if (strcmp (rs->buf.data (), "OK") != 0)
aefd8b33
SDJ
10110 error (_("\
10111Remote replied unexpectedly while setting startup-with-shell: %s"),
8d64371b 10112 rs->buf.data ());
aefd8b33
SDJ
10113 }
10114
6b8edb51 10115 extended_remote_environment_support ();
0a2dde4a 10116
6b8edb51 10117 extended_remote_set_inferior_cwd ();
bc3b087d 10118
43ff13b4 10119 /* Now restart the remote server. */
3405876a
PA
10120 run_worked = extended_remote_run (args) != -1;
10121 if (!run_worked)
2d717e4f
DJ
10122 {
10123 /* vRun was not supported. Fail if we need it to do what the
10124 user requested. */
10125 if (remote_exec_file[0])
10126 error (_("Remote target does not support \"set remote exec-file\""));
7c5ded6a 10127 if (!args.empty ())
65e65158 10128 error (_("Remote target does not support \"set args\" or run ARGS"));
43ff13b4 10129
2d717e4f
DJ
10130 /* Fall back to "R". */
10131 extended_remote_restart ();
10132 }
424163ea 10133
3405876a 10134 /* vRun's success return is a stop reply. */
8d64371b 10135 stop_reply = run_worked ? rs->buf.data () : NULL;
3405876a 10136 add_current_inferior_and_thread (stop_reply);
c0a2216e 10137
2d717e4f
DJ
10138 /* Get updated offsets, if the stub uses qOffsets. */
10139 get_offsets ();
2d717e4f 10140}
c906108c 10141\f
c5aa993b 10142
b775012e
LM
10143/* Given a location's target info BP_TGT and the packet buffer BUF, output
10144 the list of conditions (in agent expression bytecode format), if any, the
10145 target needs to evaluate. The output is placed into the packet buffer
bba74b36 10146 started from BUF and ended at BUF_END. */
b775012e
LM
10147
10148static int
10149remote_add_target_side_condition (struct gdbarch *gdbarch,
bba74b36
YQ
10150 struct bp_target_info *bp_tgt, char *buf,
10151 char *buf_end)
b775012e 10152{
3cde5c42 10153 if (bp_tgt->conditions.empty ())
b775012e
LM
10154 return 0;
10155
10156 buf += strlen (buf);
bba74b36 10157 xsnprintf (buf, buf_end - buf, "%s", ";");
b775012e
LM
10158 buf++;
10159
83621223 10160 /* Send conditions to the target. */
d538e36d 10161 for (agent_expr *aexpr : bp_tgt->conditions)
b775012e 10162 {
bba74b36 10163 xsnprintf (buf, buf_end - buf, "X%x,", aexpr->len);
b775012e 10164 buf += strlen (buf);
3cde5c42 10165 for (int i = 0; i < aexpr->len; ++i)
b775012e
LM
10166 buf = pack_hex_byte (buf, aexpr->buf[i]);
10167 *buf = '\0';
10168 }
b775012e
LM
10169 return 0;
10170}
10171
d3ce09f5
SS
10172static void
10173remote_add_target_side_commands (struct gdbarch *gdbarch,
10174 struct bp_target_info *bp_tgt, char *buf)
10175{
3cde5c42 10176 if (bp_tgt->tcommands.empty ())
d3ce09f5
SS
10177 return;
10178
10179 buf += strlen (buf);
10180
10181 sprintf (buf, ";cmds:%x,", bp_tgt->persist);
10182 buf += strlen (buf);
10183
10184 /* Concatenate all the agent expressions that are commands into the
10185 cmds parameter. */
df97be55 10186 for (agent_expr *aexpr : bp_tgt->tcommands)
d3ce09f5
SS
10187 {
10188 sprintf (buf, "X%x,", aexpr->len);
10189 buf += strlen (buf);
3cde5c42 10190 for (int i = 0; i < aexpr->len; ++i)
d3ce09f5
SS
10191 buf = pack_hex_byte (buf, aexpr->buf[i]);
10192 *buf = '\0';
10193 }
d3ce09f5
SS
10194}
10195
8181d85f
DJ
10196/* Insert a breakpoint. On targets that have software breakpoint
10197 support, we ask the remote target to do the work; on targets
10198 which don't, we insert a traditional memory breakpoint. */
c906108c 10199
f6ac5f3d
PA
10200int
10201remote_target::insert_breakpoint (struct gdbarch *gdbarch,
10202 struct bp_target_info *bp_tgt)
c906108c 10203{
d471ea57
AC
10204 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
10205 If it succeeds, then set the support to PACKET_ENABLE. If it
10206 fails, and the user has explicitly requested the Z support then
23860348 10207 report an error, otherwise, mark it disabled and go on. */
802188a7 10208
4082afcc 10209 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 10210 {
0d5ed153 10211 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 10212 struct remote_state *rs;
bba74b36 10213 char *p, *endbuf;
4fff2411 10214
28439a30
PA
10215 /* Make sure the remote is pointing at the right process, if
10216 necessary. */
10217 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10218 set_general_process ();
10219
4fff2411 10220 rs = get_remote_state ();
8d64371b
TT
10221 p = rs->buf.data ();
10222 endbuf = p + get_remote_packet_size ();
802188a7 10223
96baa820
JM
10224 *(p++) = 'Z';
10225 *(p++) = '0';
10226 *(p++) = ',';
7c0f6dcc 10227 addr = (ULONGEST) remote_address_masked (addr);
8181d85f 10228 p += hexnumstr (p, addr);
579c6ad9 10229 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
802188a7 10230
f6ac5f3d 10231 if (supports_evaluation_of_breakpoint_conditions ())
bba74b36 10232 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 10233
f6ac5f3d 10234 if (can_run_breakpoint_commands ())
d3ce09f5
SS
10235 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10236
6d820c5c 10237 putpkt (rs->buf);
8d64371b 10238 getpkt (&rs->buf, 0);
96baa820 10239
6d820c5c 10240 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
96baa820 10241 {
d471ea57
AC
10242 case PACKET_ERROR:
10243 return -1;
10244 case PACKET_OK:
10245 return 0;
10246 case PACKET_UNKNOWN:
10247 break;
96baa820
JM
10248 }
10249 }
c906108c 10250
0000e5cc
PA
10251 /* If this breakpoint has target-side commands but this stub doesn't
10252 support Z0 packets, throw error. */
3cde5c42 10253 if (!bp_tgt->tcommands.empty ())
0000e5cc
PA
10254 throw_error (NOT_SUPPORTED_ERROR, _("\
10255Target doesn't support breakpoints that have target side commands."));
10256
f6ac5f3d 10257 return memory_insert_breakpoint (this, gdbarch, bp_tgt);
c906108c
SS
10258}
10259
f6ac5f3d
PA
10260int
10261remote_target::remove_breakpoint (struct gdbarch *gdbarch,
10262 struct bp_target_info *bp_tgt,
10263 enum remove_bp_reason reason)
c906108c 10264{
8181d85f 10265 CORE_ADDR addr = bp_tgt->placed_address;
d01949b6 10266 struct remote_state *rs = get_remote_state ();
96baa820 10267
4082afcc 10268 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 10269 {
8d64371b
TT
10270 char *p = rs->buf.data ();
10271 char *endbuf = p + get_remote_packet_size ();
802188a7 10272
28439a30
PA
10273 /* Make sure the remote is pointing at the right process, if
10274 necessary. */
10275 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10276 set_general_process ();
10277
96baa820
JM
10278 *(p++) = 'z';
10279 *(p++) = '0';
10280 *(p++) = ',';
10281
8181d85f
DJ
10282 addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
10283 p += hexnumstr (p, addr);
579c6ad9 10284 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
802188a7 10285
6d820c5c 10286 putpkt (rs->buf);
8d64371b 10287 getpkt (&rs->buf, 0);
96baa820 10288
6d820c5c 10289 return (rs->buf[0] == 'E');
96baa820
JM
10290 }
10291
f6ac5f3d 10292 return memory_remove_breakpoint (this, gdbarch, bp_tgt, reason);
c906108c
SS
10293}
10294
f486487f 10295static enum Z_packet_type
d471ea57
AC
10296watchpoint_to_Z_packet (int type)
10297{
10298 switch (type)
10299 {
10300 case hw_write:
bb858e6a 10301 return Z_PACKET_WRITE_WP;
d471ea57
AC
10302 break;
10303 case hw_read:
bb858e6a 10304 return Z_PACKET_READ_WP;
d471ea57
AC
10305 break;
10306 case hw_access:
bb858e6a 10307 return Z_PACKET_ACCESS_WP;
d471ea57
AC
10308 break;
10309 default:
8e65ff28 10310 internal_error (__FILE__, __LINE__,
e2e0b3e5 10311 _("hw_bp_to_z: bad watchpoint type %d"), type);
d471ea57
AC
10312 }
10313}
10314
f6ac5f3d
PA
10315int
10316remote_target::insert_watchpoint (CORE_ADDR addr, int len,
10317 enum target_hw_bp_type type, struct expression *cond)
96baa820 10318{
d01949b6 10319 struct remote_state *rs = get_remote_state ();
8d64371b 10320 char *endbuf = rs->buf.data () + get_remote_packet_size ();
e514a9d6 10321 char *p;
d471ea57 10322 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
96baa820 10323
4082afcc 10324 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
85d721b8 10325 return 1;
802188a7 10326
28439a30
PA
10327 /* Make sure the remote is pointing at the right process, if
10328 necessary. */
10329 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10330 set_general_process ();
10331
8d64371b
TT
10332 xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "Z%x,", packet);
10333 p = strchr (rs->buf.data (), '\0');
96baa820
JM
10334 addr = remote_address_masked (addr);
10335 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 10336 xsnprintf (p, endbuf - p, ",%x", len);
802188a7 10337
6d820c5c 10338 putpkt (rs->buf);
8d64371b 10339 getpkt (&rs->buf, 0);
96baa820 10340
6d820c5c 10341 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
10342 {
10343 case PACKET_ERROR:
d471ea57 10344 return -1;
85d721b8
PA
10345 case PACKET_UNKNOWN:
10346 return 1;
d471ea57
AC
10347 case PACKET_OK:
10348 return 0;
10349 }
8e65ff28 10350 internal_error (__FILE__, __LINE__,
e2e0b3e5 10351 _("remote_insert_watchpoint: reached end of function"));
96baa820
JM
10352}
10353
57810aa7 10354bool
f6ac5f3d
PA
10355remote_target::watchpoint_addr_within_range (CORE_ADDR addr,
10356 CORE_ADDR start, int length)
283002cf
MR
10357{
10358 CORE_ADDR diff = remote_address_masked (addr - start);
10359
10360 return diff < length;
10361}
10362
d471ea57 10363
f6ac5f3d
PA
10364int
10365remote_target::remove_watchpoint (CORE_ADDR addr, int len,
10366 enum target_hw_bp_type type, struct expression *cond)
96baa820 10367{
d01949b6 10368 struct remote_state *rs = get_remote_state ();
8d64371b 10369 char *endbuf = rs->buf.data () + get_remote_packet_size ();
e514a9d6 10370 char *p;
d471ea57
AC
10371 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
10372
4082afcc 10373 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
5cffb350 10374 return -1;
802188a7 10375
28439a30
PA
10376 /* Make sure the remote is pointing at the right process, if
10377 necessary. */
10378 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10379 set_general_process ();
10380
8d64371b
TT
10381 xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "z%x,", packet);
10382 p = strchr (rs->buf.data (), '\0');
96baa820
JM
10383 addr = remote_address_masked (addr);
10384 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 10385 xsnprintf (p, endbuf - p, ",%x", len);
6d820c5c 10386 putpkt (rs->buf);
8d64371b 10387 getpkt (&rs->buf, 0);
96baa820 10388
6d820c5c 10389 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
10390 {
10391 case PACKET_ERROR:
10392 case PACKET_UNKNOWN:
10393 return -1;
10394 case PACKET_OK:
10395 return 0;
10396 }
8e65ff28 10397 internal_error (__FILE__, __LINE__,
e2e0b3e5 10398 _("remote_remove_watchpoint: reached end of function"));
96baa820
JM
10399}
10400
3c3bea1c 10401
501eef12 10402int remote_hw_watchpoint_limit = -1;
480a3f21 10403int remote_hw_watchpoint_length_limit = -1;
501eef12 10404int remote_hw_breakpoint_limit = -1;
d471ea57 10405
f6ac5f3d
PA
10406int
10407remote_target::region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
480a3f21
PW
10408{
10409 if (remote_hw_watchpoint_length_limit == 0)
10410 return 0;
10411 else if (remote_hw_watchpoint_length_limit < 0)
10412 return 1;
10413 else if (len <= remote_hw_watchpoint_length_limit)
10414 return 1;
10415 else
10416 return 0;
10417}
10418
f6ac5f3d
PA
10419int
10420remote_target::can_use_hw_breakpoint (enum bptype type, int cnt, int ot)
96baa820 10421{
3c3bea1c
GS
10422 if (type == bp_hardware_breakpoint)
10423 {
10424 if (remote_hw_breakpoint_limit == 0)
10425 return 0;
501eef12
AC
10426 else if (remote_hw_breakpoint_limit < 0)
10427 return 1;
3c3bea1c
GS
10428 else if (cnt <= remote_hw_breakpoint_limit)
10429 return 1;
10430 }
10431 else
10432 {
10433 if (remote_hw_watchpoint_limit == 0)
10434 return 0;
501eef12
AC
10435 else if (remote_hw_watchpoint_limit < 0)
10436 return 1;
3c3bea1c
GS
10437 else if (ot)
10438 return -1;
10439 else if (cnt <= remote_hw_watchpoint_limit)
10440 return 1;
10441 }
10442 return -1;
10443}
10444
f7e6eed5
PA
10445/* The to_stopped_by_sw_breakpoint method of target remote. */
10446
57810aa7 10447bool
f6ac5f3d 10448remote_target::stopped_by_sw_breakpoint ()
f7e6eed5 10449{
799a2abe 10450 struct thread_info *thread = inferior_thread ();
f7e6eed5 10451
799a2abe 10452 return (thread->priv != NULL
7aabaf9d
SM
10453 && (get_remote_thread_info (thread)->stop_reason
10454 == TARGET_STOPPED_BY_SW_BREAKPOINT));
f7e6eed5
PA
10455}
10456
10457/* The to_supports_stopped_by_sw_breakpoint method of target
10458 remote. */
10459
57810aa7 10460bool
f6ac5f3d 10461remote_target::supports_stopped_by_sw_breakpoint ()
f7e6eed5 10462{
f7e6eed5
PA
10463 return (packet_support (PACKET_swbreak_feature) == PACKET_ENABLE);
10464}
10465
10466/* The to_stopped_by_hw_breakpoint method of target remote. */
10467
57810aa7 10468bool
f6ac5f3d 10469remote_target::stopped_by_hw_breakpoint ()
f7e6eed5 10470{
799a2abe 10471 struct thread_info *thread = inferior_thread ();
f7e6eed5 10472
799a2abe 10473 return (thread->priv != NULL
7aabaf9d
SM
10474 && (get_remote_thread_info (thread)->stop_reason
10475 == TARGET_STOPPED_BY_HW_BREAKPOINT));
f7e6eed5
PA
10476}
10477
10478/* The to_supports_stopped_by_hw_breakpoint method of target
10479 remote. */
10480
57810aa7 10481bool
f6ac5f3d 10482remote_target::supports_stopped_by_hw_breakpoint ()
f7e6eed5 10483{
f7e6eed5
PA
10484 return (packet_support (PACKET_hwbreak_feature) == PACKET_ENABLE);
10485}
10486
57810aa7 10487bool
f6ac5f3d 10488remote_target::stopped_by_watchpoint ()
3c3bea1c 10489{
799a2abe 10490 struct thread_info *thread = inferior_thread ();
ee154bee 10491
799a2abe 10492 return (thread->priv != NULL
7aabaf9d
SM
10493 && (get_remote_thread_info (thread)->stop_reason
10494 == TARGET_STOPPED_BY_WATCHPOINT));
3c3bea1c
GS
10495}
10496
57810aa7 10497bool
f6ac5f3d 10498remote_target::stopped_data_address (CORE_ADDR *addr_p)
3c3bea1c 10499{
799a2abe 10500 struct thread_info *thread = inferior_thread ();
a744cf53 10501
799a2abe 10502 if (thread->priv != NULL
7aabaf9d
SM
10503 && (get_remote_thread_info (thread)->stop_reason
10504 == TARGET_STOPPED_BY_WATCHPOINT))
4aa7a7f5 10505 {
7aabaf9d 10506 *addr_p = get_remote_thread_info (thread)->watch_data_address;
57810aa7 10507 return true;
4aa7a7f5
JJ
10508 }
10509
57810aa7 10510 return false;
3c3bea1c
GS
10511}
10512
10513
f6ac5f3d
PA
10514int
10515remote_target::insert_hw_breakpoint (struct gdbarch *gdbarch,
10516 struct bp_target_info *bp_tgt)
3c3bea1c 10517{
0d5ed153 10518 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 10519 struct remote_state *rs;
bba74b36 10520 char *p, *endbuf;
dd61ec5c 10521 char *message;
3c3bea1c 10522
4082afcc 10523 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 10524 return -1;
2bc416ba 10525
28439a30
PA
10526 /* Make sure the remote is pointing at the right process, if
10527 necessary. */
10528 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10529 set_general_process ();
10530
4fff2411 10531 rs = get_remote_state ();
8d64371b
TT
10532 p = rs->buf.data ();
10533 endbuf = p + get_remote_packet_size ();
4fff2411 10534
96baa820
JM
10535 *(p++) = 'Z';
10536 *(p++) = '1';
10537 *(p++) = ',';
802188a7 10538
0d5ed153 10539 addr = remote_address_masked (addr);
96baa820 10540 p += hexnumstr (p, (ULONGEST) addr);
579c6ad9 10541 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
96baa820 10542
f6ac5f3d 10543 if (supports_evaluation_of_breakpoint_conditions ())
bba74b36 10544 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 10545
f6ac5f3d 10546 if (can_run_breakpoint_commands ())
d3ce09f5
SS
10547 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10548
6d820c5c 10549 putpkt (rs->buf);
8d64371b 10550 getpkt (&rs->buf, 0);
96baa820 10551
6d820c5c 10552 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
10553 {
10554 case PACKET_ERROR:
dd61ec5c
MW
10555 if (rs->buf[1] == '.')
10556 {
8d64371b 10557 message = strchr (&rs->buf[2], '.');
dd61ec5c 10558 if (message)
0316657e 10559 error (_("Remote failure reply: %s"), message + 1);
dd61ec5c
MW
10560 }
10561 return -1;
d471ea57
AC
10562 case PACKET_UNKNOWN:
10563 return -1;
10564 case PACKET_OK:
10565 return 0;
10566 }
8e65ff28 10567 internal_error (__FILE__, __LINE__,
e2e0b3e5 10568 _("remote_insert_hw_breakpoint: reached end of function"));
96baa820
JM
10569}
10570
d471ea57 10571
f6ac5f3d
PA
10572int
10573remote_target::remove_hw_breakpoint (struct gdbarch *gdbarch,
10574 struct bp_target_info *bp_tgt)
96baa820 10575{
8181d85f 10576 CORE_ADDR addr;
d01949b6 10577 struct remote_state *rs = get_remote_state ();
8d64371b
TT
10578 char *p = rs->buf.data ();
10579 char *endbuf = p + get_remote_packet_size ();
c8189ed1 10580
4082afcc 10581 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 10582 return -1;
802188a7 10583
28439a30
PA
10584 /* Make sure the remote is pointing at the right process, if
10585 necessary. */
10586 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10587 set_general_process ();
10588
96baa820
JM
10589 *(p++) = 'z';
10590 *(p++) = '1';
10591 *(p++) = ',';
802188a7 10592
8181d85f 10593 addr = remote_address_masked (bp_tgt->placed_address);
96baa820 10594 p += hexnumstr (p, (ULONGEST) addr);
579c6ad9 10595 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
96baa820 10596
6d820c5c 10597 putpkt (rs->buf);
8d64371b 10598 getpkt (&rs->buf, 0);
802188a7 10599
6d820c5c 10600 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
10601 {
10602 case PACKET_ERROR:
10603 case PACKET_UNKNOWN:
10604 return -1;
10605 case PACKET_OK:
10606 return 0;
10607 }
8e65ff28 10608 internal_error (__FILE__, __LINE__,
e2e0b3e5 10609 _("remote_remove_hw_breakpoint: reached end of function"));
96baa820 10610}
96baa820 10611
4a5e7a5b
PA
10612/* Verify memory using the "qCRC:" request. */
10613
f6ac5f3d
PA
10614int
10615remote_target::verify_memory (const gdb_byte *data, CORE_ADDR lma, ULONGEST size)
4a5e7a5b
PA
10616{
10617 struct remote_state *rs = get_remote_state ();
10618 unsigned long host_crc, target_crc;
10619 char *tmp;
10620
936d2992
PA
10621 /* It doesn't make sense to use qCRC if the remote target is
10622 connected but not running. */
10623 if (target_has_execution && packet_support (PACKET_qCRC) != PACKET_DISABLE)
10624 {
10625 enum packet_result result;
28439a30 10626
936d2992
PA
10627 /* Make sure the remote is pointing at the right process. */
10628 set_general_process ();
4a5e7a5b 10629
936d2992 10630 /* FIXME: assumes lma can fit into long. */
8d64371b 10631 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qCRC:%lx,%lx",
936d2992
PA
10632 (long) lma, (long) size);
10633 putpkt (rs->buf);
4a5e7a5b 10634
936d2992
PA
10635 /* Be clever; compute the host_crc before waiting for target
10636 reply. */
10637 host_crc = xcrc32 (data, size, 0xffffffff);
10638
8d64371b 10639 getpkt (&rs->buf, 0);
4a5e7a5b 10640
936d2992
PA
10641 result = packet_ok (rs->buf,
10642 &remote_protocol_packets[PACKET_qCRC]);
10643 if (result == PACKET_ERROR)
10644 return -1;
10645 else if (result == PACKET_OK)
10646 {
10647 for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
10648 target_crc = target_crc * 16 + fromhex (*tmp);
4a5e7a5b 10649
936d2992
PA
10650 return (host_crc == target_crc);
10651 }
10652 }
4a5e7a5b 10653
f6ac5f3d 10654 return simple_verify_memory (this, data, lma, size);
4a5e7a5b
PA
10655}
10656
c906108c
SS
10657/* compare-sections command
10658
10659 With no arguments, compares each loadable section in the exec bfd
10660 with the same memory range on the target, and reports mismatches.
4a5e7a5b 10661 Useful for verifying the image on the target against the exec file. */
e514a9d6 10662
c906108c 10663static void
ac88e2de 10664compare_sections_command (const char *args, int from_tty)
c906108c
SS
10665{
10666 asection *s;
ce359b09 10667 const char *sectname;
c906108c
SS
10668 bfd_size_type size;
10669 bfd_vma lma;
10670 int matched = 0;
10671 int mismatched = 0;
4a5e7a5b 10672 int res;
95cf3b38 10673 int read_only = 0;
c906108c
SS
10674
10675 if (!exec_bfd)
8a3fe4f8 10676 error (_("command cannot be used without an exec file"));
c906108c 10677
95cf3b38
DT
10678 if (args != NULL && strcmp (args, "-r") == 0)
10679 {
10680 read_only = 1;
10681 args = NULL;
10682 }
10683
c5aa993b 10684 for (s = exec_bfd->sections; s; s = s->next)
c906108c
SS
10685 {
10686 if (!(s->flags & SEC_LOAD))
0df8b418 10687 continue; /* Skip non-loadable section. */
c906108c 10688
95cf3b38
DT
10689 if (read_only && (s->flags & SEC_READONLY) == 0)
10690 continue; /* Skip writeable sections */
10691
2c500098 10692 size = bfd_get_section_size (s);
c906108c 10693 if (size == 0)
0df8b418 10694 continue; /* Skip zero-length section. */
c906108c 10695
ce359b09 10696 sectname = bfd_get_section_name (exec_bfd, s);
c906108c 10697 if (args && strcmp (args, sectname) != 0)
0df8b418 10698 continue; /* Not the section selected by user. */
c906108c 10699
0df8b418 10700 matched = 1; /* Do this section. */
c906108c 10701 lma = s->lma;
c906108c 10702
b80406ac
TT
10703 gdb::byte_vector sectdata (size);
10704 bfd_get_section_contents (exec_bfd, s, sectdata.data (), 0, size);
c906108c 10705
b80406ac 10706 res = target_verify_memory (sectdata.data (), lma, size);
4a5e7a5b
PA
10707
10708 if (res == -1)
5af949e3 10709 error (_("target memory fault, section %s, range %s -- %s"), sectname,
f5656ead
TT
10710 paddress (target_gdbarch (), lma),
10711 paddress (target_gdbarch (), lma + size));
c906108c 10712
5af949e3 10713 printf_filtered ("Section %s, range %s -- %s: ", sectname,
f5656ead
TT
10714 paddress (target_gdbarch (), lma),
10715 paddress (target_gdbarch (), lma + size));
4a5e7a5b 10716 if (res)
c906108c
SS
10717 printf_filtered ("matched.\n");
10718 else
c5aa993b
JM
10719 {
10720 printf_filtered ("MIS-MATCHED!\n");
10721 mismatched++;
10722 }
c906108c
SS
10723 }
10724 if (mismatched > 0)
936d2992 10725 warning (_("One or more sections of the target image does not match\n\
8a3fe4f8 10726the loaded file\n"));
c906108c 10727 if (args && !matched)
a3f17187 10728 printf_filtered (_("No loaded section named '%s'.\n"), args);
c906108c
SS
10729}
10730
0e7f50da
UW
10731/* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
10732 into remote target. The number of bytes written to the remote
10733 target is returned, or -1 for error. */
10734
6b8edb51
PA
10735target_xfer_status
10736remote_target::remote_write_qxfer (const char *object_name,
10737 const char *annex, const gdb_byte *writebuf,
10738 ULONGEST offset, LONGEST len,
10739 ULONGEST *xfered_len,
10740 struct packet_config *packet)
0e7f50da
UW
10741{
10742 int i, buf_len;
10743 ULONGEST n;
0e7f50da
UW
10744 struct remote_state *rs = get_remote_state ();
10745 int max_size = get_memory_write_packet_size ();
10746
7cc244de 10747 if (packet_config_support (packet) == PACKET_DISABLE)
2ed4b548 10748 return TARGET_XFER_E_IO;
0e7f50da
UW
10749
10750 /* Insert header. */
8d64371b 10751 i = snprintf (rs->buf.data (), max_size,
0e7f50da
UW
10752 "qXfer:%s:write:%s:%s:",
10753 object_name, annex ? annex : "",
10754 phex_nz (offset, sizeof offset));
10755 max_size -= (i + 1);
10756
10757 /* Escape as much data as fits into rs->buf. */
10758 buf_len = remote_escape_output
8d64371b 10759 (writebuf, len, 1, (gdb_byte *) rs->buf.data () + i, &max_size, max_size);
0e7f50da 10760
8d64371b
TT
10761 if (putpkt_binary (rs->buf.data (), i + buf_len) < 0
10762 || getpkt_sane (&rs->buf, 0) < 0
0e7f50da 10763 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 10764 return TARGET_XFER_E_IO;
0e7f50da 10765
8d64371b 10766 unpack_varlen_hex (rs->buf.data (), &n);
9b409511
YQ
10767
10768 *xfered_len = n;
92ffd475 10769 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
0e7f50da
UW
10770}
10771
0876f84a
DJ
10772/* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
10773 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
10774 number of bytes read is returned, or 0 for EOF, or -1 for error.
10775 The number of bytes read may be less than LEN without indicating an
10776 EOF. PACKET is checked and updated to indicate whether the remote
10777 target supports this object. */
10778
6b8edb51
PA
10779target_xfer_status
10780remote_target::remote_read_qxfer (const char *object_name,
10781 const char *annex,
10782 gdb_byte *readbuf, ULONGEST offset,
10783 LONGEST len,
10784 ULONGEST *xfered_len,
10785 struct packet_config *packet)
0876f84a 10786{
0876f84a 10787 struct remote_state *rs = get_remote_state ();
0876f84a
DJ
10788 LONGEST i, n, packet_len;
10789
7cc244de 10790 if (packet_config_support (packet) == PACKET_DISABLE)
2ed4b548 10791 return TARGET_XFER_E_IO;
0876f84a
DJ
10792
10793 /* Check whether we've cached an end-of-object packet that matches
10794 this request. */
8e88304f 10795 if (rs->finished_object)
0876f84a 10796 {
8e88304f
TT
10797 if (strcmp (object_name, rs->finished_object) == 0
10798 && strcmp (annex ? annex : "", rs->finished_annex) == 0
10799 && offset == rs->finished_offset)
9b409511
YQ
10800 return TARGET_XFER_EOF;
10801
0876f84a
DJ
10802
10803 /* Otherwise, we're now reading something different. Discard
10804 the cache. */
8e88304f
TT
10805 xfree (rs->finished_object);
10806 xfree (rs->finished_annex);
10807 rs->finished_object = NULL;
10808 rs->finished_annex = NULL;
0876f84a
DJ
10809 }
10810
10811 /* Request only enough to fit in a single packet. The actual data
10812 may not, since we don't know how much of it will need to be escaped;
10813 the target is free to respond with slightly less data. We subtract
10814 five to account for the response type and the protocol frame. */
768adc05 10815 n = std::min<LONGEST> (get_remote_packet_size () - 5, len);
8d64371b
TT
10816 snprintf (rs->buf.data (), get_remote_packet_size () - 4,
10817 "qXfer:%s:read:%s:%s,%s",
0876f84a
DJ
10818 object_name, annex ? annex : "",
10819 phex_nz (offset, sizeof offset),
10820 phex_nz (n, sizeof n));
10821 i = putpkt (rs->buf);
10822 if (i < 0)
2ed4b548 10823 return TARGET_XFER_E_IO;
0876f84a
DJ
10824
10825 rs->buf[0] = '\0';
8d64371b 10826 packet_len = getpkt_sane (&rs->buf, 0);
0876f84a 10827 if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 10828 return TARGET_XFER_E_IO;
0876f84a
DJ
10829
10830 if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
8d64371b 10831 error (_("Unknown remote qXfer reply: %s"), rs->buf.data ());
0876f84a
DJ
10832
10833 /* 'm' means there is (or at least might be) more data after this
10834 batch. That does not make sense unless there's at least one byte
10835 of data in this reply. */
10836 if (rs->buf[0] == 'm' && packet_len == 1)
10837 error (_("Remote qXfer reply contained no data."));
10838
10839 /* Got some data. */
8d64371b 10840 i = remote_unescape_input ((gdb_byte *) rs->buf.data () + 1,
bc20a4af 10841 packet_len - 1, readbuf, n);
0876f84a
DJ
10842
10843 /* 'l' is an EOF marker, possibly including a final block of data,
0e7f50da
UW
10844 or possibly empty. If we have the final block of a non-empty
10845 object, record this fact to bypass a subsequent partial read. */
10846 if (rs->buf[0] == 'l' && offset + i > 0)
0876f84a 10847 {
8e88304f
TT
10848 rs->finished_object = xstrdup (object_name);
10849 rs->finished_annex = xstrdup (annex ? annex : "");
10850 rs->finished_offset = offset + i;
0876f84a
DJ
10851 }
10852
9b409511
YQ
10853 if (i == 0)
10854 return TARGET_XFER_EOF;
10855 else
10856 {
10857 *xfered_len = i;
10858 return TARGET_XFER_OK;
10859 }
0876f84a
DJ
10860}
10861
f6ac5f3d
PA
10862enum target_xfer_status
10863remote_target::xfer_partial (enum target_object object,
10864 const char *annex, gdb_byte *readbuf,
10865 const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
10866 ULONGEST *xfered_len)
c906108c 10867{
82f73884 10868 struct remote_state *rs;
c906108c 10869 int i;
6d820c5c 10870 char *p2;
1e3ff5ad 10871 char query_type;
124e13d9 10872 int unit_size = gdbarch_addressable_memory_unit_size (target_gdbarch ());
c906108c 10873
e6e4e701 10874 set_remote_traceframe ();
82f73884
PA
10875 set_general_thread (inferior_ptid);
10876
10877 rs = get_remote_state ();
10878
b2182ed2 10879 /* Handle memory using the standard memory routines. */
21e3b9b9
DJ
10880 if (object == TARGET_OBJECT_MEMORY)
10881 {
2d717e4f
DJ
10882 /* If the remote target is connected but not running, we should
10883 pass this request down to a lower stratum (e.g. the executable
10884 file). */
10885 if (!target_has_execution)
9b409511 10886 return TARGET_XFER_EOF;
2d717e4f 10887
21e3b9b9 10888 if (writebuf != NULL)
124e13d9
SM
10889 return remote_write_bytes (offset, writebuf, len, unit_size,
10890 xfered_len);
21e3b9b9 10891 else
6b8edb51 10892 return remote_read_bytes (offset, readbuf, len, unit_size,
124e13d9 10893 xfered_len);
21e3b9b9
DJ
10894 }
10895
0df8b418 10896 /* Handle SPU memory using qxfer packets. */
0e7f50da
UW
10897 if (object == TARGET_OBJECT_SPU)
10898 {
10899 if (readbuf)
f6ac5f3d 10900 return remote_read_qxfer ("spu", annex, readbuf, offset, len,
9b409511
YQ
10901 xfered_len, &remote_protocol_packets
10902 [PACKET_qXfer_spu_read]);
0e7f50da 10903 else
f6ac5f3d 10904 return remote_write_qxfer ("spu", annex, writebuf, offset, len,
9b409511
YQ
10905 xfered_len, &remote_protocol_packets
10906 [PACKET_qXfer_spu_write]);
0e7f50da
UW
10907 }
10908
4aa995e1
PA
10909 /* Handle extra signal info using qxfer packets. */
10910 if (object == TARGET_OBJECT_SIGNAL_INFO)
10911 {
10912 if (readbuf)
f6ac5f3d 10913 return remote_read_qxfer ("siginfo", annex, readbuf, offset, len,
9b409511 10914 xfered_len, &remote_protocol_packets
4aa995e1
PA
10915 [PACKET_qXfer_siginfo_read]);
10916 else
f6ac5f3d 10917 return remote_write_qxfer ("siginfo", annex,
9b409511 10918 writebuf, offset, len, xfered_len,
4aa995e1
PA
10919 &remote_protocol_packets
10920 [PACKET_qXfer_siginfo_write]);
10921 }
10922
0fb4aa4b
PA
10923 if (object == TARGET_OBJECT_STATIC_TRACE_DATA)
10924 {
10925 if (readbuf)
f6ac5f3d 10926 return remote_read_qxfer ("statictrace", annex,
9b409511 10927 readbuf, offset, len, xfered_len,
0fb4aa4b
PA
10928 &remote_protocol_packets
10929 [PACKET_qXfer_statictrace_read]);
10930 else
2ed4b548 10931 return TARGET_XFER_E_IO;
0fb4aa4b
PA
10932 }
10933
a76d924d
DJ
10934 /* Only handle flash writes. */
10935 if (writebuf != NULL)
10936 {
a76d924d
DJ
10937 switch (object)
10938 {
10939 case TARGET_OBJECT_FLASH:
6b8edb51 10940 return remote_flash_write (offset, len, xfered_len,
9b409511 10941 writebuf);
a76d924d
DJ
10942
10943 default:
2ed4b548 10944 return TARGET_XFER_E_IO;
a76d924d
DJ
10945 }
10946 }
4b8a223f 10947
1e3ff5ad
AC
10948 /* Map pre-existing objects onto letters. DO NOT do this for new
10949 objects!!! Instead specify new query packets. */
10950 switch (object)
c906108c 10951 {
1e3ff5ad
AC
10952 case TARGET_OBJECT_AVR:
10953 query_type = 'R';
10954 break;
802188a7
RM
10955
10956 case TARGET_OBJECT_AUXV:
0876f84a 10957 gdb_assert (annex == NULL);
f6ac5f3d 10958 return remote_read_qxfer ("auxv", annex, readbuf, offset, len,
9b409511 10959 xfered_len,
0876f84a 10960 &remote_protocol_packets[PACKET_qXfer_auxv]);
802188a7 10961
23181151
DJ
10962 case TARGET_OBJECT_AVAILABLE_FEATURES:
10963 return remote_read_qxfer
f6ac5f3d 10964 ("features", annex, readbuf, offset, len, xfered_len,
23181151
DJ
10965 &remote_protocol_packets[PACKET_qXfer_features]);
10966
cfa9d6d9
DJ
10967 case TARGET_OBJECT_LIBRARIES:
10968 return remote_read_qxfer
f6ac5f3d 10969 ("libraries", annex, readbuf, offset, len, xfered_len,
cfa9d6d9
DJ
10970 &remote_protocol_packets[PACKET_qXfer_libraries]);
10971
2268b414
JK
10972 case TARGET_OBJECT_LIBRARIES_SVR4:
10973 return remote_read_qxfer
f6ac5f3d 10974 ("libraries-svr4", annex, readbuf, offset, len, xfered_len,
2268b414
JK
10975 &remote_protocol_packets[PACKET_qXfer_libraries_svr4]);
10976
fd79ecee
DJ
10977 case TARGET_OBJECT_MEMORY_MAP:
10978 gdb_assert (annex == NULL);
f6ac5f3d 10979 return remote_read_qxfer ("memory-map", annex, readbuf, offset, len,
9b409511 10980 xfered_len,
fd79ecee
DJ
10981 &remote_protocol_packets[PACKET_qXfer_memory_map]);
10982
07e059b5
VP
10983 case TARGET_OBJECT_OSDATA:
10984 /* Should only get here if we're connected. */
5d93a237 10985 gdb_assert (rs->remote_desc);
07e059b5 10986 return remote_read_qxfer
f6ac5f3d 10987 ("osdata", annex, readbuf, offset, len, xfered_len,
07e059b5
VP
10988 &remote_protocol_packets[PACKET_qXfer_osdata]);
10989
dc146f7c
VP
10990 case TARGET_OBJECT_THREADS:
10991 gdb_assert (annex == NULL);
f6ac5f3d 10992 return remote_read_qxfer ("threads", annex, readbuf, offset, len,
9b409511 10993 xfered_len,
dc146f7c
VP
10994 &remote_protocol_packets[PACKET_qXfer_threads]);
10995
b3b9301e
PA
10996 case TARGET_OBJECT_TRACEFRAME_INFO:
10997 gdb_assert (annex == NULL);
10998 return remote_read_qxfer
f6ac5f3d 10999 ("traceframe-info", annex, readbuf, offset, len, xfered_len,
b3b9301e 11000 &remote_protocol_packets[PACKET_qXfer_traceframe_info]);
78d85199
YQ
11001
11002 case TARGET_OBJECT_FDPIC:
f6ac5f3d 11003 return remote_read_qxfer ("fdpic", annex, readbuf, offset, len,
9b409511 11004 xfered_len,
78d85199 11005 &remote_protocol_packets[PACKET_qXfer_fdpic]);
169081d0
TG
11006
11007 case TARGET_OBJECT_OPENVMS_UIB:
f6ac5f3d 11008 return remote_read_qxfer ("uib", annex, readbuf, offset, len,
9b409511 11009 xfered_len,
169081d0
TG
11010 &remote_protocol_packets[PACKET_qXfer_uib]);
11011
9accd112 11012 case TARGET_OBJECT_BTRACE:
f6ac5f3d 11013 return remote_read_qxfer ("btrace", annex, readbuf, offset, len,
9b409511 11014 xfered_len,
9accd112
MM
11015 &remote_protocol_packets[PACKET_qXfer_btrace]);
11016
f4abbc16 11017 case TARGET_OBJECT_BTRACE_CONF:
f6ac5f3d 11018 return remote_read_qxfer ("btrace-conf", annex, readbuf, offset,
f4abbc16
MM
11019 len, xfered_len,
11020 &remote_protocol_packets[PACKET_qXfer_btrace_conf]);
11021
c78fa86a 11022 case TARGET_OBJECT_EXEC_FILE:
f6ac5f3d 11023 return remote_read_qxfer ("exec-file", annex, readbuf, offset,
c78fa86a
GB
11024 len, xfered_len,
11025 &remote_protocol_packets[PACKET_qXfer_exec_file]);
11026
1e3ff5ad 11027 default:
2ed4b548 11028 return TARGET_XFER_E_IO;
c906108c
SS
11029 }
11030
0df8b418 11031 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
24b06219 11032 large enough let the caller deal with it. */
ea9c271d 11033 if (len < get_remote_packet_size ())
2ed4b548 11034 return TARGET_XFER_E_IO;
ea9c271d 11035 len = get_remote_packet_size ();
1e3ff5ad 11036
23860348 11037 /* Except for querying the minimum buffer size, target must be open. */
5d93a237 11038 if (!rs->remote_desc)
8a3fe4f8 11039 error (_("remote query is only available after target open"));
c906108c 11040
1e3ff5ad 11041 gdb_assert (annex != NULL);
4b8a223f 11042 gdb_assert (readbuf != NULL);
c906108c 11043
8d64371b 11044 p2 = rs->buf.data ();
c906108c
SS
11045 *p2++ = 'q';
11046 *p2++ = query_type;
11047
23860348
MS
11048 /* We used one buffer char for the remote protocol q command and
11049 another for the query type. As the remote protocol encapsulation
11050 uses 4 chars plus one extra in case we are debugging
11051 (remote_debug), we have PBUFZIZ - 7 left to pack the query
11052 string. */
c906108c 11053 i = 0;
ea9c271d 11054 while (annex[i] && (i < (get_remote_packet_size () - 8)))
c906108c 11055 {
1e3ff5ad
AC
11056 /* Bad caller may have sent forbidden characters. */
11057 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
11058 *p2++ = annex[i];
c906108c
SS
11059 i++;
11060 }
1e3ff5ad
AC
11061 *p2 = '\0';
11062 gdb_assert (annex[i] == '\0');
c906108c 11063
6d820c5c 11064 i = putpkt (rs->buf);
c5aa993b 11065 if (i < 0)
2ed4b548 11066 return TARGET_XFER_E_IO;
c906108c 11067
8d64371b
TT
11068 getpkt (&rs->buf, 0);
11069 strcpy ((char *) readbuf, rs->buf.data ());
c906108c 11070
9b409511 11071 *xfered_len = strlen ((char *) readbuf);
92ffd475 11072 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
c906108c
SS
11073}
11074
09c98b44
DB
11075/* Implementation of to_get_memory_xfer_limit. */
11076
f6ac5f3d
PA
11077ULONGEST
11078remote_target::get_memory_xfer_limit ()
09c98b44
DB
11079{
11080 return get_memory_write_packet_size ();
11081}
11082
f6ac5f3d
PA
11083int
11084remote_target::search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
11085 const gdb_byte *pattern, ULONGEST pattern_len,
11086 CORE_ADDR *found_addrp)
08388c79 11087{
f5656ead 11088 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
08388c79
DE
11089 struct remote_state *rs = get_remote_state ();
11090 int max_size = get_memory_write_packet_size ();
11091 struct packet_config *packet =
11092 &remote_protocol_packets[PACKET_qSearch_memory];
0df8b418
MS
11093 /* Number of packet bytes used to encode the pattern;
11094 this could be more than PATTERN_LEN due to escape characters. */
08388c79 11095 int escaped_pattern_len;
0df8b418 11096 /* Amount of pattern that was encodable in the packet. */
08388c79
DE
11097 int used_pattern_len;
11098 int i;
11099 int found;
11100 ULONGEST found_addr;
11101
7cc244de
PA
11102 /* Don't go to the target if we don't have to. This is done before
11103 checking packet_config_support to avoid the possibility that a
11104 success for this edge case means the facility works in
11105 general. */
08388c79
DE
11106 if (pattern_len > search_space_len)
11107 return 0;
11108 if (pattern_len == 0)
11109 {
11110 *found_addrp = start_addr;
11111 return 1;
11112 }
11113
11114 /* If we already know the packet isn't supported, fall back to the simple
11115 way of searching memory. */
11116
4082afcc 11117 if (packet_config_support (packet) == PACKET_DISABLE)
08388c79
DE
11118 {
11119 /* Target doesn't provided special support, fall back and use the
11120 standard support (copy memory and do the search here). */
f6ac5f3d 11121 return simple_search_memory (this, start_addr, search_space_len,
08388c79
DE
11122 pattern, pattern_len, found_addrp);
11123 }
11124
28439a30
PA
11125 /* Make sure the remote is pointing at the right process. */
11126 set_general_process ();
11127
08388c79 11128 /* Insert header. */
8d64371b 11129 i = snprintf (rs->buf.data (), max_size,
08388c79 11130 "qSearch:memory:%s;%s;",
5af949e3 11131 phex_nz (start_addr, addr_size),
08388c79
DE
11132 phex_nz (search_space_len, sizeof (search_space_len)));
11133 max_size -= (i + 1);
11134
11135 /* Escape as much data as fits into rs->buf. */
11136 escaped_pattern_len =
8d64371b
TT
11137 remote_escape_output (pattern, pattern_len, 1,
11138 (gdb_byte *) rs->buf.data () + i,
08388c79
DE
11139 &used_pattern_len, max_size);
11140
11141 /* Bail if the pattern is too large. */
11142 if (used_pattern_len != pattern_len)
9b20d036 11143 error (_("Pattern is too large to transmit to remote target."));
08388c79 11144
8d64371b
TT
11145 if (putpkt_binary (rs->buf.data (), i + escaped_pattern_len) < 0
11146 || getpkt_sane (&rs->buf, 0) < 0
08388c79
DE
11147 || packet_ok (rs->buf, packet) != PACKET_OK)
11148 {
11149 /* The request may not have worked because the command is not
11150 supported. If so, fall back to the simple way. */
7cc244de 11151 if (packet_config_support (packet) == PACKET_DISABLE)
08388c79 11152 {
f6ac5f3d 11153 return simple_search_memory (this, start_addr, search_space_len,
08388c79
DE
11154 pattern, pattern_len, found_addrp);
11155 }
11156 return -1;
11157 }
11158
11159 if (rs->buf[0] == '0')
11160 found = 0;
11161 else if (rs->buf[0] == '1')
11162 {
11163 found = 1;
11164 if (rs->buf[1] != ',')
8d64371b
TT
11165 error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ());
11166 unpack_varlen_hex (&rs->buf[2], &found_addr);
08388c79
DE
11167 *found_addrp = found_addr;
11168 }
11169 else
8d64371b 11170 error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ());
08388c79
DE
11171
11172 return found;
11173}
11174
f6ac5f3d
PA
11175void
11176remote_target::rcmd (const char *command, struct ui_file *outbuf)
96baa820 11177{
d01949b6 11178 struct remote_state *rs = get_remote_state ();
8d64371b 11179 char *p = rs->buf.data ();
96baa820 11180
5d93a237 11181 if (!rs->remote_desc)
8a3fe4f8 11182 error (_("remote rcmd is only available after target open"));
96baa820 11183
23860348 11184 /* Send a NULL command across as an empty command. */
7be570e7
JM
11185 if (command == NULL)
11186 command = "";
11187
23860348 11188 /* The query prefix. */
8d64371b
TT
11189 strcpy (rs->buf.data (), "qRcmd,");
11190 p = strchr (rs->buf.data (), '\0');
96baa820 11191
8d64371b 11192 if ((strlen (rs->buf.data ()) + strlen (command) * 2 + 8/*misc*/)
3e43a32a 11193 > get_remote_packet_size ())
8a3fe4f8 11194 error (_("\"monitor\" command ``%s'' is too long."), command);
96baa820 11195
23860348 11196 /* Encode the actual command. */
a30bf1f1 11197 bin2hex ((const gdb_byte *) command, p, strlen (command));
96baa820 11198
6d820c5c 11199 if (putpkt (rs->buf) < 0)
8a3fe4f8 11200 error (_("Communication problem with target."));
96baa820
JM
11201
11202 /* get/display the response */
11203 while (1)
11204 {
2e9f7625
DJ
11205 char *buf;
11206
00bf0b85 11207 /* XXX - see also remote_get_noisy_reply(). */
5b37825d 11208 QUIT; /* Allow user to bail out with ^C. */
2e9f7625 11209 rs->buf[0] = '\0';
8d64371b 11210 if (getpkt_sane (&rs->buf, 0) == -1)
5b37825d
PW
11211 {
11212 /* Timeout. Continue to (try to) read responses.
11213 This is better than stopping with an error, assuming the stub
11214 is still executing the (long) monitor command.
11215 If needed, the user can interrupt gdb using C-c, obtaining
11216 an effect similar to stop on timeout. */
11217 continue;
11218 }
8d64371b 11219 buf = rs->buf.data ();
96baa820 11220 if (buf[0] == '\0')
8a3fe4f8 11221 error (_("Target does not support this command."));
96baa820
JM
11222 if (buf[0] == 'O' && buf[1] != 'K')
11223 {
23860348 11224 remote_console_output (buf + 1); /* 'O' message from stub. */
96baa820
JM
11225 continue;
11226 }
11227 if (strcmp (buf, "OK") == 0)
11228 break;
7be570e7
JM
11229 if (strlen (buf) == 3 && buf[0] == 'E'
11230 && isdigit (buf[1]) && isdigit (buf[2]))
11231 {
8a3fe4f8 11232 error (_("Protocol error with Rcmd"));
7be570e7 11233 }
96baa820
JM
11234 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
11235 {
11236 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
a744cf53 11237
96baa820
JM
11238 fputc_unfiltered (c, outbuf);
11239 }
11240 break;
11241 }
11242}
11243
f6ac5f3d
PA
11244std::vector<mem_region>
11245remote_target::memory_map ()
fd79ecee 11246{
a664f67e 11247 std::vector<mem_region> result;
9018be22 11248 gdb::optional<gdb::char_vector> text
8b88a78e 11249 = target_read_stralloc (current_top_target (), TARGET_OBJECT_MEMORY_MAP, NULL);
fd79ecee
DJ
11250
11251 if (text)
9018be22 11252 result = parse_memory_map (text->data ());
fd79ecee
DJ
11253
11254 return result;
11255}
11256
c906108c 11257static void
ac88e2de 11258packet_command (const char *args, int from_tty)
c906108c 11259{
6b8edb51 11260 remote_target *remote = get_current_remote_target ();
c906108c 11261
6b8edb51 11262 if (remote == nullptr)
8a3fe4f8 11263 error (_("command can only be used with remote target"));
c906108c 11264
6b8edb51
PA
11265 remote->packet_command (args, from_tty);
11266}
11267
11268void
11269remote_target::packet_command (const char *args, int from_tty)
11270{
c5aa993b 11271 if (!args)
8a3fe4f8 11272 error (_("remote-packet command requires packet text as argument"));
c906108c
SS
11273
11274 puts_filtered ("sending: ");
11275 print_packet (args);
11276 puts_filtered ("\n");
11277 putpkt (args);
11278
6b8edb51
PA
11279 remote_state *rs = get_remote_state ();
11280
8d64371b 11281 getpkt (&rs->buf, 0);
c906108c 11282 puts_filtered ("received: ");
8d64371b 11283 print_packet (rs->buf.data ());
c906108c
SS
11284 puts_filtered ("\n");
11285}
11286
11287#if 0
23860348 11288/* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
c906108c 11289
a14ed312 11290static void display_thread_info (struct gdb_ext_thread_info *info);
c906108c 11291
a14ed312 11292static void threadset_test_cmd (char *cmd, int tty);
c906108c 11293
a14ed312 11294static void threadalive_test (char *cmd, int tty);
c906108c 11295
a14ed312 11296static void threadlist_test_cmd (char *cmd, int tty);
c906108c 11297
23860348 11298int get_and_display_threadinfo (threadref *ref);
c906108c 11299
a14ed312 11300static void threadinfo_test_cmd (char *cmd, int tty);
c906108c 11301
23860348 11302static int thread_display_step (threadref *ref, void *context);
c906108c 11303
a14ed312 11304static void threadlist_update_test_cmd (char *cmd, int tty);
c906108c 11305
a14ed312 11306static void init_remote_threadtests (void);
c906108c 11307
23860348 11308#define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
c906108c
SS
11309
11310static void
0b39b52e 11311threadset_test_cmd (const char *cmd, int tty)
c906108c
SS
11312{
11313 int sample_thread = SAMPLE_THREAD;
11314
a3f17187 11315 printf_filtered (_("Remote threadset test\n"));
79d7f229 11316 set_general_thread (sample_thread);
c906108c
SS
11317}
11318
11319
11320static void
0b39b52e 11321threadalive_test (const char *cmd, int tty)
c906108c
SS
11322{
11323 int sample_thread = SAMPLE_THREAD;
e99b03dc 11324 int pid = inferior_ptid.pid ();
fd79271b 11325 ptid_t ptid = ptid_t (pid, sample_thread, 0);
c906108c 11326
79d7f229 11327 if (remote_thread_alive (ptid))
c906108c
SS
11328 printf_filtered ("PASS: Thread alive test\n");
11329 else
11330 printf_filtered ("FAIL: Thread alive test\n");
11331}
11332
23860348 11333void output_threadid (char *title, threadref *ref);
c906108c
SS
11334
11335void
fba45db2 11336output_threadid (char *title, threadref *ref)
c906108c
SS
11337{
11338 char hexid[20];
11339
23860348 11340 pack_threadid (&hexid[0], ref); /* Convert threead id into hex. */
c906108c
SS
11341 hexid[16] = 0;
11342 printf_filtered ("%s %s\n", title, (&hexid[0]));
11343}
11344
11345static void
0b39b52e 11346threadlist_test_cmd (const char *cmd, int tty)
c906108c
SS
11347{
11348 int startflag = 1;
11349 threadref nextthread;
11350 int done, result_count;
11351 threadref threadlist[3];
11352
11353 printf_filtered ("Remote Threadlist test\n");
11354 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
11355 &result_count, &threadlist[0]))
11356 printf_filtered ("FAIL: threadlist test\n");
11357 else
11358 {
11359 threadref *scan = threadlist;
11360 threadref *limit = scan + result_count;
11361
11362 while (scan < limit)
11363 output_threadid (" thread ", scan++);
11364 }
11365}
11366
11367void
fba45db2 11368display_thread_info (struct gdb_ext_thread_info *info)
c906108c
SS
11369{
11370 output_threadid ("Threadid: ", &info->threadid);
11371 printf_filtered ("Name: %s\n ", info->shortname);
11372 printf_filtered ("State: %s\n", info->display);
11373 printf_filtered ("other: %s\n\n", info->more_display);
11374}
11375
11376int
fba45db2 11377get_and_display_threadinfo (threadref *ref)
c906108c
SS
11378{
11379 int result;
11380 int set;
11381 struct gdb_ext_thread_info threadinfo;
11382
11383 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
11384 | TAG_MOREDISPLAY | TAG_DISPLAY;
11385 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
11386 display_thread_info (&threadinfo);
11387 return result;
11388}
11389
11390static void
0b39b52e 11391threadinfo_test_cmd (const char *cmd, int tty)
c906108c
SS
11392{
11393 int athread = SAMPLE_THREAD;
11394 threadref thread;
11395 int set;
11396
11397 int_to_threadref (&thread, athread);
11398 printf_filtered ("Remote Threadinfo test\n");
11399 if (!get_and_display_threadinfo (&thread))
11400 printf_filtered ("FAIL cannot get thread info\n");
11401}
11402
11403static int
fba45db2 11404thread_display_step (threadref *ref, void *context)
c906108c
SS
11405{
11406 /* output_threadid(" threadstep ",ref); *//* simple test */
11407 return get_and_display_threadinfo (ref);
11408}
11409
11410static void
0b39b52e 11411threadlist_update_test_cmd (const char *cmd, int tty)
c906108c
SS
11412{
11413 printf_filtered ("Remote Threadlist update test\n");
11414 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
11415}
11416
11417static void
11418init_remote_threadtests (void)
11419{
3e43a32a
MS
11420 add_com ("tlist", class_obscure, threadlist_test_cmd,
11421 _("Fetch and print the remote list of "
11422 "thread identifiers, one pkt only"));
c906108c 11423 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
1bedd215 11424 _("Fetch and display info about one thread"));
c906108c 11425 add_com ("tset", class_obscure, threadset_test_cmd,
1bedd215 11426 _("Test setting to a different thread"));
c906108c 11427 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
1bedd215 11428 _("Iterate through updating all remote thread info"));
c906108c 11429 add_com ("talive", class_obscure, threadalive_test,
1bedd215 11430 _(" Remote thread alive test "));
c906108c
SS
11431}
11432
11433#endif /* 0 */
11434
f3fb8c85
MS
11435/* Convert a thread ID to a string. Returns the string in a static
11436 buffer. */
11437
f6ac5f3d
PA
11438const char *
11439remote_target::pid_to_str (ptid_t ptid)
f3fb8c85 11440{
79d7f229 11441 static char buf[64];
82f73884 11442 struct remote_state *rs = get_remote_state ();
f3fb8c85 11443
d7e15655 11444 if (ptid == null_ptid)
7cee1e54 11445 return normal_pid_to_str (ptid);
0e998d96 11446 else if (ptid.is_pid ())
ecd0ada5
PA
11447 {
11448 /* Printing an inferior target id. */
11449
11450 /* When multi-process extensions are off, there's no way in the
11451 remote protocol to know the remote process id, if there's any
11452 at all. There's one exception --- when we're connected with
11453 target extended-remote, and we manually attached to a process
11454 with "attach PID". We don't record anywhere a flag that
11455 allows us to distinguish that case from the case of
11456 connecting with extended-remote and the stub already being
11457 attached to a process, and reporting yes to qAttached, hence
11458 no smart special casing here. */
11459 if (!remote_multi_process_p (rs))
11460 {
11461 xsnprintf (buf, sizeof buf, "Remote target");
11462 return buf;
11463 }
11464
11465 return normal_pid_to_str (ptid);
82f73884 11466 }
ecd0ada5 11467 else
79d7f229 11468 {
d7e15655 11469 if (magic_null_ptid == ptid)
ecd0ada5 11470 xsnprintf (buf, sizeof buf, "Thread <main>");
8020350c 11471 else if (remote_multi_process_p (rs))
e38504b3 11472 if (ptid.lwp () == 0)
de0d863e
DB
11473 return normal_pid_to_str (ptid);
11474 else
11475 xsnprintf (buf, sizeof buf, "Thread %d.%ld",
e38504b3 11476 ptid.pid (), ptid.lwp ());
ecd0ada5
PA
11477 else
11478 xsnprintf (buf, sizeof buf, "Thread %ld",
e38504b3 11479 ptid.lwp ());
79d7f229
PA
11480 return buf;
11481 }
f3fb8c85
MS
11482}
11483
38691318
KB
11484/* Get the address of the thread local variable in OBJFILE which is
11485 stored at OFFSET within the thread local storage for thread PTID. */
11486
f6ac5f3d
PA
11487CORE_ADDR
11488remote_target::get_thread_local_address (ptid_t ptid, CORE_ADDR lm,
11489 CORE_ADDR offset)
38691318 11490{
4082afcc 11491 if (packet_support (PACKET_qGetTLSAddr) != PACKET_DISABLE)
38691318
KB
11492 {
11493 struct remote_state *rs = get_remote_state ();
8d64371b
TT
11494 char *p = rs->buf.data ();
11495 char *endp = p + get_remote_packet_size ();
571dd617 11496 enum packet_result result;
38691318
KB
11497
11498 strcpy (p, "qGetTLSAddr:");
11499 p += strlen (p);
82f73884 11500 p = write_ptid (p, endp, ptid);
38691318
KB
11501 *p++ = ',';
11502 p += hexnumstr (p, offset);
11503 *p++ = ',';
11504 p += hexnumstr (p, lm);
11505 *p++ = '\0';
11506
6d820c5c 11507 putpkt (rs->buf);
8d64371b 11508 getpkt (&rs->buf, 0);
3e43a32a
MS
11509 result = packet_ok (rs->buf,
11510 &remote_protocol_packets[PACKET_qGetTLSAddr]);
571dd617 11511 if (result == PACKET_OK)
38691318 11512 {
b926417a 11513 ULONGEST addr;
38691318 11514
8d64371b 11515 unpack_varlen_hex (rs->buf.data (), &addr);
b926417a 11516 return addr;
38691318 11517 }
571dd617 11518 else if (result == PACKET_UNKNOWN)
109c3e39
AC
11519 throw_error (TLS_GENERIC_ERROR,
11520 _("Remote target doesn't support qGetTLSAddr packet"));
38691318 11521 else
109c3e39
AC
11522 throw_error (TLS_GENERIC_ERROR,
11523 _("Remote target failed to process qGetTLSAddr request"));
38691318
KB
11524 }
11525 else
109c3e39
AC
11526 throw_error (TLS_GENERIC_ERROR,
11527 _("TLS not supported or disabled on this target"));
38691318
KB
11528 /* Not reached. */
11529 return 0;
11530}
11531
711e434b
PM
11532/* Provide thread local base, i.e. Thread Information Block address.
11533 Returns 1 if ptid is found and thread_local_base is non zero. */
11534
57810aa7 11535bool
f6ac5f3d 11536remote_target::get_tib_address (ptid_t ptid, CORE_ADDR *addr)
711e434b 11537{
4082afcc 11538 if (packet_support (PACKET_qGetTIBAddr) != PACKET_DISABLE)
711e434b
PM
11539 {
11540 struct remote_state *rs = get_remote_state ();
8d64371b
TT
11541 char *p = rs->buf.data ();
11542 char *endp = p + get_remote_packet_size ();
711e434b
PM
11543 enum packet_result result;
11544
11545 strcpy (p, "qGetTIBAddr:");
11546 p += strlen (p);
11547 p = write_ptid (p, endp, ptid);
11548 *p++ = '\0';
11549
11550 putpkt (rs->buf);
8d64371b 11551 getpkt (&rs->buf, 0);
711e434b
PM
11552 result = packet_ok (rs->buf,
11553 &remote_protocol_packets[PACKET_qGetTIBAddr]);
11554 if (result == PACKET_OK)
11555 {
b926417a 11556 ULONGEST val;
8d64371b 11557 unpack_varlen_hex (rs->buf.data (), &val);
711e434b 11558 if (addr)
b926417a 11559 *addr = (CORE_ADDR) val;
57810aa7 11560 return true;
711e434b
PM
11561 }
11562 else if (result == PACKET_UNKNOWN)
11563 error (_("Remote target doesn't support qGetTIBAddr packet"));
11564 else
11565 error (_("Remote target failed to process qGetTIBAddr request"));
11566 }
11567 else
11568 error (_("qGetTIBAddr not supported or disabled on this target"));
11569 /* Not reached. */
57810aa7 11570 return false;
711e434b
PM
11571}
11572
29709017
DJ
11573/* Support for inferring a target description based on the current
11574 architecture and the size of a 'g' packet. While the 'g' packet
11575 can have any size (since optional registers can be left off the
11576 end), some sizes are easily recognizable given knowledge of the
11577 approximate architecture. */
11578
11579struct remote_g_packet_guess
11580{
eefce37f
TT
11581 remote_g_packet_guess (int bytes_, const struct target_desc *tdesc_)
11582 : bytes (bytes_),
11583 tdesc (tdesc_)
11584 {
11585 }
11586
29709017
DJ
11587 int bytes;
11588 const struct target_desc *tdesc;
11589};
29709017 11590
eefce37f 11591struct remote_g_packet_data : public allocate_on_obstack
29709017 11592{
eefce37f 11593 std::vector<remote_g_packet_guess> guesses;
29709017
DJ
11594};
11595
11596static struct gdbarch_data *remote_g_packet_data_handle;
11597
11598static void *
11599remote_g_packet_data_init (struct obstack *obstack)
11600{
eefce37f 11601 return new (obstack) remote_g_packet_data;
29709017
DJ
11602}
11603
11604void
11605register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes,
11606 const struct target_desc *tdesc)
11607{
11608 struct remote_g_packet_data *data
19ba03f4
SM
11609 = ((struct remote_g_packet_data *)
11610 gdbarch_data (gdbarch, remote_g_packet_data_handle));
29709017
DJ
11611
11612 gdb_assert (tdesc != NULL);
11613
eefce37f
TT
11614 for (const remote_g_packet_guess &guess : data->guesses)
11615 if (guess.bytes == bytes)
29709017 11616 internal_error (__FILE__, __LINE__,
9b20d036 11617 _("Duplicate g packet description added for size %d"),
29709017
DJ
11618 bytes);
11619
eefce37f 11620 data->guesses.emplace_back (bytes, tdesc);
29709017
DJ
11621}
11622
eefce37f
TT
11623/* Return true if remote_read_description would do anything on this target
11624 and architecture, false otherwise. */
d962ef82 11625
eefce37f 11626static bool
d962ef82
DJ
11627remote_read_description_p (struct target_ops *target)
11628{
11629 struct remote_g_packet_data *data
19ba03f4
SM
11630 = ((struct remote_g_packet_data *)
11631 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
d962ef82 11632
eefce37f 11633 return !data->guesses.empty ();
d962ef82
DJ
11634}
11635
f6ac5f3d
PA
11636const struct target_desc *
11637remote_target::read_description ()
29709017
DJ
11638{
11639 struct remote_g_packet_data *data
19ba03f4
SM
11640 = ((struct remote_g_packet_data *)
11641 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
29709017 11642
d962ef82
DJ
11643 /* Do not try this during initial connection, when we do not know
11644 whether there is a running but stopped thread. */
d7e15655 11645 if (!target_has_execution || inferior_ptid == null_ptid)
b6a8c27b 11646 return beneath ()->read_description ();
d962ef82 11647
eefce37f 11648 if (!data->guesses.empty ())
29709017 11649 {
29709017
DJ
11650 int bytes = send_g_packet ();
11651
eefce37f
TT
11652 for (const remote_g_packet_guess &guess : data->guesses)
11653 if (guess.bytes == bytes)
11654 return guess.tdesc;
29709017
DJ
11655
11656 /* We discard the g packet. A minor optimization would be to
11657 hold on to it, and fill the register cache once we have selected
11658 an architecture, but it's too tricky to do safely. */
11659 }
11660
b6a8c27b 11661 return beneath ()->read_description ();
29709017
DJ
11662}
11663
a6b151f1
DJ
11664/* Remote file transfer support. This is host-initiated I/O, not
11665 target-initiated; for target-initiated, see remote-fileio.c. */
11666
11667/* If *LEFT is at least the length of STRING, copy STRING to
11668 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11669 decrease *LEFT. Otherwise raise an error. */
11670
11671static void
a121b7c1 11672remote_buffer_add_string (char **buffer, int *left, const char *string)
a6b151f1
DJ
11673{
11674 int len = strlen (string);
11675
11676 if (len > *left)
11677 error (_("Packet too long for target."));
11678
11679 memcpy (*buffer, string, len);
11680 *buffer += len;
11681 *left -= len;
11682
11683 /* NUL-terminate the buffer as a convenience, if there is
11684 room. */
11685 if (*left)
11686 **buffer = '\0';
11687}
11688
11689/* If *LEFT is large enough, hex encode LEN bytes from BYTES into
11690 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11691 decrease *LEFT. Otherwise raise an error. */
11692
11693static void
11694remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes,
11695 int len)
11696{
11697 if (2 * len > *left)
11698 error (_("Packet too long for target."));
11699
11700 bin2hex (bytes, *buffer, len);
11701 *buffer += 2 * len;
11702 *left -= 2 * len;
11703
11704 /* NUL-terminate the buffer as a convenience, if there is
11705 room. */
11706 if (*left)
11707 **buffer = '\0';
11708}
11709
11710/* If *LEFT is large enough, convert VALUE to hex and add it to
11711 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11712 decrease *LEFT. Otherwise raise an error. */
11713
11714static void
11715remote_buffer_add_int (char **buffer, int *left, ULONGEST value)
11716{
11717 int len = hexnumlen (value);
11718
11719 if (len > *left)
11720 error (_("Packet too long for target."));
11721
11722 hexnumstr (*buffer, value);
11723 *buffer += len;
11724 *left -= len;
11725
11726 /* NUL-terminate the buffer as a convenience, if there is
11727 room. */
11728 if (*left)
11729 **buffer = '\0';
11730}
11731
11732/* Parse an I/O result packet from BUFFER. Set RETCODE to the return
11733 value, *REMOTE_ERRNO to the remote error number or zero if none
11734 was included, and *ATTACHMENT to point to the start of the annex
11735 if any. The length of the packet isn't needed here; there may
11736 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
11737
11738 Return 0 if the packet could be parsed, -1 if it could not. If
11739 -1 is returned, the other variables may not be initialized. */
11740
11741static int
11742remote_hostio_parse_result (char *buffer, int *retcode,
11743 int *remote_errno, char **attachment)
11744{
11745 char *p, *p2;
11746
11747 *remote_errno = 0;
11748 *attachment = NULL;
11749
11750 if (buffer[0] != 'F')
11751 return -1;
11752
11753 errno = 0;
11754 *retcode = strtol (&buffer[1], &p, 16);
11755 if (errno != 0 || p == &buffer[1])
11756 return -1;
11757
11758 /* Check for ",errno". */
11759 if (*p == ',')
11760 {
11761 errno = 0;
11762 *remote_errno = strtol (p + 1, &p2, 16);
11763 if (errno != 0 || p + 1 == p2)
11764 return -1;
11765 p = p2;
11766 }
11767
11768 /* Check for ";attachment". If there is no attachment, the
11769 packet should end here. */
11770 if (*p == ';')
11771 {
11772 *attachment = p + 1;
11773 return 0;
11774 }
11775 else if (*p == '\0')
11776 return 0;
11777 else
11778 return -1;
11779}
11780
11781/* Send a prepared I/O packet to the target and read its response.
11782 The prepared packet is in the global RS->BUF before this function
11783 is called, and the answer is there when we return.
11784
11785 COMMAND_BYTES is the length of the request to send, which may include
11786 binary data. WHICH_PACKET is the packet configuration to check
11787 before attempting a packet. If an error occurs, *REMOTE_ERRNO
11788 is set to the error number and -1 is returned. Otherwise the value
11789 returned by the function is returned.
11790
11791 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
11792 attachment is expected; an error will be reported if there's a
11793 mismatch. If one is found, *ATTACHMENT will be set to point into
11794 the packet buffer and *ATTACHMENT_LEN will be set to the
11795 attachment's length. */
11796
6b8edb51
PA
11797int
11798remote_target::remote_hostio_send_command (int command_bytes, int which_packet,
11799 int *remote_errno, char **attachment,
11800 int *attachment_len)
a6b151f1
DJ
11801{
11802 struct remote_state *rs = get_remote_state ();
11803 int ret, bytes_read;
11804 char *attachment_tmp;
11805
20db9c52 11806 if (packet_support (which_packet) == PACKET_DISABLE)
a6b151f1
DJ
11807 {
11808 *remote_errno = FILEIO_ENOSYS;
11809 return -1;
11810 }
11811
8d64371b
TT
11812 putpkt_binary (rs->buf.data (), command_bytes);
11813 bytes_read = getpkt_sane (&rs->buf, 0);
a6b151f1
DJ
11814
11815 /* If it timed out, something is wrong. Don't try to parse the
11816 buffer. */
11817 if (bytes_read < 0)
11818 {
11819 *remote_errno = FILEIO_EINVAL;
11820 return -1;
11821 }
11822
11823 switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet]))
11824 {
11825 case PACKET_ERROR:
11826 *remote_errno = FILEIO_EINVAL;
11827 return -1;
11828 case PACKET_UNKNOWN:
11829 *remote_errno = FILEIO_ENOSYS;
11830 return -1;
11831 case PACKET_OK:
11832 break;
11833 }
11834
8d64371b 11835 if (remote_hostio_parse_result (rs->buf.data (), &ret, remote_errno,
a6b151f1
DJ
11836 &attachment_tmp))
11837 {
11838 *remote_errno = FILEIO_EINVAL;
11839 return -1;
11840 }
11841
11842 /* Make sure we saw an attachment if and only if we expected one. */
11843 if ((attachment_tmp == NULL && attachment != NULL)
11844 || (attachment_tmp != NULL && attachment == NULL))
11845 {
11846 *remote_errno = FILEIO_EINVAL;
11847 return -1;
11848 }
11849
11850 /* If an attachment was found, it must point into the packet buffer;
11851 work out how many bytes there were. */
11852 if (attachment_tmp != NULL)
11853 {
11854 *attachment = attachment_tmp;
8d64371b 11855 *attachment_len = bytes_read - (*attachment - rs->buf.data ());
a6b151f1
DJ
11856 }
11857
11858 return ret;
11859}
11860
dd194f6b 11861/* See declaration.h. */
80152258 11862
dd194f6b
PA
11863void
11864readahead_cache::invalidate ()
80152258 11865{
dd194f6b 11866 this->fd = -1;
80152258
PA
11867}
11868
dd194f6b 11869/* See declaration.h. */
80152258 11870
dd194f6b
PA
11871void
11872readahead_cache::invalidate_fd (int fd)
80152258 11873{
dd194f6b
PA
11874 if (this->fd == fd)
11875 this->fd = -1;
80152258
PA
11876}
11877
15a201c8
GB
11878/* Set the filesystem remote_hostio functions that take FILENAME
11879 arguments will use. Return 0 on success, or -1 if an error
11880 occurs (and set *REMOTE_ERRNO). */
11881
6b8edb51
PA
11882int
11883remote_target::remote_hostio_set_filesystem (struct inferior *inf,
11884 int *remote_errno)
15a201c8
GB
11885{
11886 struct remote_state *rs = get_remote_state ();
11887 int required_pid = (inf == NULL || inf->fake_pid_p) ? 0 : inf->pid;
8d64371b 11888 char *p = rs->buf.data ();
15a201c8
GB
11889 int left = get_remote_packet_size () - 1;
11890 char arg[9];
11891 int ret;
11892
11893 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11894 return 0;
11895
11896 if (rs->fs_pid != -1 && required_pid == rs->fs_pid)
11897 return 0;
11898
11899 remote_buffer_add_string (&p, &left, "vFile:setfs:");
11900
11901 xsnprintf (arg, sizeof (arg), "%x", required_pid);
11902 remote_buffer_add_string (&p, &left, arg);
11903
8d64371b 11904 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_setfs,
15a201c8
GB
11905 remote_errno, NULL, NULL);
11906
11907 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11908 return 0;
11909
11910 if (ret == 0)
11911 rs->fs_pid = required_pid;
11912
11913 return ret;
11914}
11915
12e2a5fd 11916/* Implementation of to_fileio_open. */
a6b151f1 11917
6b8edb51
PA
11918int
11919remote_target::remote_hostio_open (inferior *inf, const char *filename,
11920 int flags, int mode, int warn_if_slow,
11921 int *remote_errno)
a6b151f1
DJ
11922{
11923 struct remote_state *rs = get_remote_state ();
8d64371b 11924 char *p = rs->buf.data ();
a6b151f1
DJ
11925 int left = get_remote_packet_size () - 1;
11926
4313b8c0
GB
11927 if (warn_if_slow)
11928 {
11929 static int warning_issued = 0;
11930
11931 printf_unfiltered (_("Reading %s from remote target...\n"),
11932 filename);
11933
11934 if (!warning_issued)
11935 {
11936 warning (_("File transfers from remote targets can be slow."
11937 " Use \"set sysroot\" to access files locally"
11938 " instead."));
11939 warning_issued = 1;
11940 }
11941 }
11942
15a201c8
GB
11943 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
11944 return -1;
11945
a6b151f1
DJ
11946 remote_buffer_add_string (&p, &left, "vFile:open:");
11947
11948 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
11949 strlen (filename));
11950 remote_buffer_add_string (&p, &left, ",");
11951
11952 remote_buffer_add_int (&p, &left, flags);
11953 remote_buffer_add_string (&p, &left, ",");
11954
11955 remote_buffer_add_int (&p, &left, mode);
11956
8d64371b 11957 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_open,
a6b151f1
DJ
11958 remote_errno, NULL, NULL);
11959}
11960
f6ac5f3d
PA
11961int
11962remote_target::fileio_open (struct inferior *inf, const char *filename,
11963 int flags, int mode, int warn_if_slow,
11964 int *remote_errno)
11965{
6b8edb51 11966 return remote_hostio_open (inf, filename, flags, mode, warn_if_slow,
f6ac5f3d
PA
11967 remote_errno);
11968}
11969
12e2a5fd 11970/* Implementation of to_fileio_pwrite. */
a6b151f1 11971
6b8edb51
PA
11972int
11973remote_target::remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
11974 ULONGEST offset, int *remote_errno)
a6b151f1
DJ
11975{
11976 struct remote_state *rs = get_remote_state ();
8d64371b 11977 char *p = rs->buf.data ();
a6b151f1
DJ
11978 int left = get_remote_packet_size ();
11979 int out_len;
11980
dd194f6b 11981 rs->readahead_cache.invalidate_fd (fd);
80152258 11982
a6b151f1
DJ
11983 remote_buffer_add_string (&p, &left, "vFile:pwrite:");
11984
11985 remote_buffer_add_int (&p, &left, fd);
11986 remote_buffer_add_string (&p, &left, ",");
11987
11988 remote_buffer_add_int (&p, &left, offset);
11989 remote_buffer_add_string (&p, &left, ",");
11990
124e13d9 11991 p += remote_escape_output (write_buf, len, 1, (gdb_byte *) p, &out_len,
8d64371b
TT
11992 (get_remote_packet_size ()
11993 - (p - rs->buf.data ())));
a6b151f1 11994
8d64371b 11995 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pwrite,
a6b151f1
DJ
11996 remote_errno, NULL, NULL);
11997}
11998
f6ac5f3d
PA
11999int
12000remote_target::fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
12001 ULONGEST offset, int *remote_errno)
12002{
6b8edb51 12003 return remote_hostio_pwrite (fd, write_buf, len, offset, remote_errno);
f6ac5f3d
PA
12004}
12005
80152258
PA
12006/* Helper for the implementation of to_fileio_pread. Read the file
12007 from the remote side with vFile:pread. */
a6b151f1 12008
6b8edb51
PA
12009int
12010remote_target::remote_hostio_pread_vFile (int fd, gdb_byte *read_buf, int len,
12011 ULONGEST offset, int *remote_errno)
a6b151f1
DJ
12012{
12013 struct remote_state *rs = get_remote_state ();
8d64371b 12014 char *p = rs->buf.data ();
a6b151f1
DJ
12015 char *attachment;
12016 int left = get_remote_packet_size ();
12017 int ret, attachment_len;
12018 int read_len;
12019
12020 remote_buffer_add_string (&p, &left, "vFile:pread:");
12021
12022 remote_buffer_add_int (&p, &left, fd);
12023 remote_buffer_add_string (&p, &left, ",");
12024
12025 remote_buffer_add_int (&p, &left, len);
12026 remote_buffer_add_string (&p, &left, ",");
12027
12028 remote_buffer_add_int (&p, &left, offset);
12029
8d64371b 12030 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pread,
a6b151f1
DJ
12031 remote_errno, &attachment,
12032 &attachment_len);
12033
12034 if (ret < 0)
12035 return ret;
12036
bc20a4af 12037 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
a6b151f1
DJ
12038 read_buf, len);
12039 if (read_len != ret)
12040 error (_("Read returned %d, but %d bytes."), ret, (int) read_len);
12041
12042 return ret;
12043}
12044
dd194f6b 12045/* See declaration.h. */
80152258 12046
dd194f6b
PA
12047int
12048readahead_cache::pread (int fd, gdb_byte *read_buf, size_t len,
12049 ULONGEST offset)
80152258 12050{
dd194f6b
PA
12051 if (this->fd == fd
12052 && this->offset <= offset
12053 && offset < this->offset + this->bufsize)
80152258 12054 {
dd194f6b 12055 ULONGEST max = this->offset + this->bufsize;
80152258
PA
12056
12057 if (offset + len > max)
12058 len = max - offset;
12059
dd194f6b 12060 memcpy (read_buf, this->buf + offset - this->offset, len);
80152258
PA
12061 return len;
12062 }
12063
12064 return 0;
12065}
12066
12067/* Implementation of to_fileio_pread. */
12068
6b8edb51
PA
12069int
12070remote_target::remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
12071 ULONGEST offset, int *remote_errno)
80152258
PA
12072{
12073 int ret;
12074 struct remote_state *rs = get_remote_state ();
dd194f6b 12075 readahead_cache *cache = &rs->readahead_cache;
80152258 12076
dd194f6b 12077 ret = cache->pread (fd, read_buf, len, offset);
80152258
PA
12078 if (ret > 0)
12079 {
12080 cache->hit_count++;
12081
12082 if (remote_debug)
12083 fprintf_unfiltered (gdb_stdlog, "readahead cache hit %s\n",
12084 pulongest (cache->hit_count));
12085 return ret;
12086 }
12087
12088 cache->miss_count++;
12089 if (remote_debug)
12090 fprintf_unfiltered (gdb_stdlog, "readahead cache miss %s\n",
12091 pulongest (cache->miss_count));
12092
12093 cache->fd = fd;
12094 cache->offset = offset;
12095 cache->bufsize = get_remote_packet_size ();
224c3ddb 12096 cache->buf = (gdb_byte *) xrealloc (cache->buf, cache->bufsize);
80152258 12097
6b8edb51 12098 ret = remote_hostio_pread_vFile (cache->fd, cache->buf, cache->bufsize,
80152258
PA
12099 cache->offset, remote_errno);
12100 if (ret <= 0)
12101 {
dd194f6b 12102 cache->invalidate_fd (fd);
80152258
PA
12103 return ret;
12104 }
12105
12106 cache->bufsize = ret;
dd194f6b 12107 return cache->pread (fd, read_buf, len, offset);
80152258
PA
12108}
12109
f6ac5f3d
PA
12110int
12111remote_target::fileio_pread (int fd, gdb_byte *read_buf, int len,
12112 ULONGEST offset, int *remote_errno)
12113{
6b8edb51 12114 return remote_hostio_pread (fd, read_buf, len, offset, remote_errno);
f6ac5f3d
PA
12115}
12116
12e2a5fd 12117/* Implementation of to_fileio_close. */
a6b151f1 12118
6b8edb51
PA
12119int
12120remote_target::remote_hostio_close (int fd, int *remote_errno)
a6b151f1
DJ
12121{
12122 struct remote_state *rs = get_remote_state ();
8d64371b 12123 char *p = rs->buf.data ();
a6b151f1
DJ
12124 int left = get_remote_packet_size () - 1;
12125
dd194f6b 12126 rs->readahead_cache.invalidate_fd (fd);
80152258 12127
a6b151f1
DJ
12128 remote_buffer_add_string (&p, &left, "vFile:close:");
12129
12130 remote_buffer_add_int (&p, &left, fd);
12131
8d64371b 12132 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_close,
a6b151f1
DJ
12133 remote_errno, NULL, NULL);
12134}
12135
f6ac5f3d
PA
12136int
12137remote_target::fileio_close (int fd, int *remote_errno)
12138{
6b8edb51 12139 return remote_hostio_close (fd, remote_errno);
f6ac5f3d
PA
12140}
12141
12e2a5fd 12142/* Implementation of to_fileio_unlink. */
a6b151f1 12143
6b8edb51
PA
12144int
12145remote_target::remote_hostio_unlink (inferior *inf, const char *filename,
12146 int *remote_errno)
a6b151f1
DJ
12147{
12148 struct remote_state *rs = get_remote_state ();
8d64371b 12149 char *p = rs->buf.data ();
a6b151f1
DJ
12150 int left = get_remote_packet_size () - 1;
12151
15a201c8
GB
12152 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
12153 return -1;
12154
a6b151f1
DJ
12155 remote_buffer_add_string (&p, &left, "vFile:unlink:");
12156
12157 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12158 strlen (filename));
12159
8d64371b 12160 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_unlink,
a6b151f1
DJ
12161 remote_errno, NULL, NULL);
12162}
12163
f6ac5f3d
PA
12164int
12165remote_target::fileio_unlink (struct inferior *inf, const char *filename,
12166 int *remote_errno)
12167{
6b8edb51 12168 return remote_hostio_unlink (inf, filename, remote_errno);
f6ac5f3d
PA
12169}
12170
12e2a5fd 12171/* Implementation of to_fileio_readlink. */
b9e7b9c3 12172
f6ac5f3d
PA
12173gdb::optional<std::string>
12174remote_target::fileio_readlink (struct inferior *inf, const char *filename,
12175 int *remote_errno)
b9e7b9c3
UW
12176{
12177 struct remote_state *rs = get_remote_state ();
8d64371b 12178 char *p = rs->buf.data ();
b9e7b9c3
UW
12179 char *attachment;
12180 int left = get_remote_packet_size ();
12181 int len, attachment_len;
12182 int read_len;
b9e7b9c3 12183
15a201c8 12184 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
e0d3522b 12185 return {};
15a201c8 12186
b9e7b9c3
UW
12187 remote_buffer_add_string (&p, &left, "vFile:readlink:");
12188
12189 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12190 strlen (filename));
12191
8d64371b 12192 len = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_readlink,
b9e7b9c3
UW
12193 remote_errno, &attachment,
12194 &attachment_len);
12195
12196 if (len < 0)
e0d3522b 12197 return {};
b9e7b9c3 12198
e0d3522b 12199 std::string ret (len, '\0');
b9e7b9c3 12200
bc20a4af 12201 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
e0d3522b 12202 (gdb_byte *) &ret[0], len);
b9e7b9c3
UW
12203 if (read_len != len)
12204 error (_("Readlink returned %d, but %d bytes."), len, read_len);
12205
b9e7b9c3
UW
12206 return ret;
12207}
12208
12e2a5fd 12209/* Implementation of to_fileio_fstat. */
0a93529c 12210
f6ac5f3d
PA
12211int
12212remote_target::fileio_fstat (int fd, struct stat *st, int *remote_errno)
0a93529c
GB
12213{
12214 struct remote_state *rs = get_remote_state ();
8d64371b 12215 char *p = rs->buf.data ();
0a93529c
GB
12216 int left = get_remote_packet_size ();
12217 int attachment_len, ret;
12218 char *attachment;
12219 struct fio_stat fst;
12220 int read_len;
12221
464b0089
GB
12222 remote_buffer_add_string (&p, &left, "vFile:fstat:");
12223
12224 remote_buffer_add_int (&p, &left, fd);
12225
8d64371b 12226 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_fstat,
464b0089
GB
12227 remote_errno, &attachment,
12228 &attachment_len);
12229 if (ret < 0)
0a93529c 12230 {
464b0089
GB
12231 if (*remote_errno != FILEIO_ENOSYS)
12232 return ret;
12233
0a93529c
GB
12234 /* Strictly we should return -1, ENOSYS here, but when
12235 "set sysroot remote:" was implemented in August 2008
12236 BFD's need for a stat function was sidestepped with
12237 this hack. This was not remedied until March 2015
12238 so we retain the previous behavior to avoid breaking
12239 compatibility.
12240
12241 Note that the memset is a March 2015 addition; older
12242 GDBs set st_size *and nothing else* so the structure
12243 would have garbage in all other fields. This might
12244 break something but retaining the previous behavior
12245 here would be just too wrong. */
12246
12247 memset (st, 0, sizeof (struct stat));
12248 st->st_size = INT_MAX;
12249 return 0;
12250 }
12251
0a93529c
GB
12252 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
12253 (gdb_byte *) &fst, sizeof (fst));
12254
12255 if (read_len != ret)
12256 error (_("vFile:fstat returned %d, but %d bytes."), ret, read_len);
12257
12258 if (read_len != sizeof (fst))
12259 error (_("vFile:fstat returned %d bytes, but expecting %d."),
12260 read_len, (int) sizeof (fst));
12261
12262 remote_fileio_to_host_stat (&fst, st);
12263
12264 return 0;
12265}
12266
12e2a5fd 12267/* Implementation of to_filesystem_is_local. */
e3dd7556 12268
57810aa7 12269bool
f6ac5f3d 12270remote_target::filesystem_is_local ()
e3dd7556
GB
12271{
12272 /* Valgrind GDB presents itself as a remote target but works
12273 on the local filesystem: it does not implement remote get
12274 and users are not expected to set a sysroot. To handle
12275 this case we treat the remote filesystem as local if the
12276 sysroot is exactly TARGET_SYSROOT_PREFIX and if the stub
12277 does not support vFile:open. */
a3be80c3 12278 if (strcmp (gdb_sysroot, TARGET_SYSROOT_PREFIX) == 0)
e3dd7556
GB
12279 {
12280 enum packet_support ps = packet_support (PACKET_vFile_open);
12281
12282 if (ps == PACKET_SUPPORT_UNKNOWN)
12283 {
12284 int fd, remote_errno;
12285
12286 /* Try opening a file to probe support. The supplied
12287 filename is irrelevant, we only care about whether
12288 the stub recognizes the packet or not. */
6b8edb51 12289 fd = remote_hostio_open (NULL, "just probing",
4313b8c0 12290 FILEIO_O_RDONLY, 0700, 0,
e3dd7556
GB
12291 &remote_errno);
12292
12293 if (fd >= 0)
6b8edb51 12294 remote_hostio_close (fd, &remote_errno);
e3dd7556
GB
12295
12296 ps = packet_support (PACKET_vFile_open);
12297 }
12298
12299 if (ps == PACKET_DISABLE)
12300 {
12301 static int warning_issued = 0;
12302
12303 if (!warning_issued)
12304 {
12305 warning (_("remote target does not support file"
12306 " transfer, attempting to access files"
12307 " from local filesystem."));
12308 warning_issued = 1;
12309 }
12310
57810aa7 12311 return true;
e3dd7556
GB
12312 }
12313 }
12314
57810aa7 12315 return false;
e3dd7556
GB
12316}
12317
a6b151f1
DJ
12318static int
12319remote_fileio_errno_to_host (int errnum)
12320{
12321 switch (errnum)
12322 {
12323 case FILEIO_EPERM:
12324 return EPERM;
12325 case FILEIO_ENOENT:
12326 return ENOENT;
12327 case FILEIO_EINTR:
12328 return EINTR;
12329 case FILEIO_EIO:
12330 return EIO;
12331 case FILEIO_EBADF:
12332 return EBADF;
12333 case FILEIO_EACCES:
12334 return EACCES;
12335 case FILEIO_EFAULT:
12336 return EFAULT;
12337 case FILEIO_EBUSY:
12338 return EBUSY;
12339 case FILEIO_EEXIST:
12340 return EEXIST;
12341 case FILEIO_ENODEV:
12342 return ENODEV;
12343 case FILEIO_ENOTDIR:
12344 return ENOTDIR;
12345 case FILEIO_EISDIR:
12346 return EISDIR;
12347 case FILEIO_EINVAL:
12348 return EINVAL;
12349 case FILEIO_ENFILE:
12350 return ENFILE;
12351 case FILEIO_EMFILE:
12352 return EMFILE;
12353 case FILEIO_EFBIG:
12354 return EFBIG;
12355 case FILEIO_ENOSPC:
12356 return ENOSPC;
12357 case FILEIO_ESPIPE:
12358 return ESPIPE;
12359 case FILEIO_EROFS:
12360 return EROFS;
12361 case FILEIO_ENOSYS:
12362 return ENOSYS;
12363 case FILEIO_ENAMETOOLONG:
12364 return ENAMETOOLONG;
12365 }
12366 return -1;
12367}
12368
12369static char *
12370remote_hostio_error (int errnum)
12371{
12372 int host_error = remote_fileio_errno_to_host (errnum);
12373
12374 if (host_error == -1)
12375 error (_("Unknown remote I/O error %d"), errnum);
12376 else
12377 error (_("Remote I/O error: %s"), safe_strerror (host_error));
12378}
12379
440b7aec
PA
12380/* A RAII wrapper around a remote file descriptor. */
12381
12382class scoped_remote_fd
a6b151f1 12383{
440b7aec 12384public:
6b8edb51
PA
12385 scoped_remote_fd (remote_target *remote, int fd)
12386 : m_remote (remote), m_fd (fd)
440b7aec
PA
12387 {
12388 }
a6b151f1 12389
440b7aec
PA
12390 ~scoped_remote_fd ()
12391 {
12392 if (m_fd != -1)
12393 {
12394 try
12395 {
12396 int remote_errno;
6b8edb51 12397 m_remote->remote_hostio_close (m_fd, &remote_errno);
440b7aec
PA
12398 }
12399 catch (...)
12400 {
12401 /* Swallow exception before it escapes the dtor. If
12402 something goes wrong, likely the connection is gone,
12403 and there's nothing else that can be done. */
12404 }
12405 }
12406 }
12407
12408 DISABLE_COPY_AND_ASSIGN (scoped_remote_fd);
12409
12410 /* Release ownership of the file descriptor, and return it. */
88a774b9 12411 ATTRIBUTE_UNUSED_RESULT int release () noexcept
440b7aec
PA
12412 {
12413 int fd = m_fd;
12414 m_fd = -1;
12415 return fd;
12416 }
12417
12418 /* Return the owned file descriptor. */
12419 int get () const noexcept
12420 {
12421 return m_fd;
12422 }
12423
12424private:
6b8edb51
PA
12425 /* The remote target. */
12426 remote_target *m_remote;
12427
440b7aec
PA
12428 /* The owned remote I/O file descriptor. */
12429 int m_fd;
12430};
a6b151f1
DJ
12431
12432void
12433remote_file_put (const char *local_file, const char *remote_file, int from_tty)
6b8edb51
PA
12434{
12435 remote_target *remote = get_current_remote_target ();
12436
12437 if (remote == nullptr)
12438 error (_("command can only be used with remote target"));
12439
12440 remote->remote_file_put (local_file, remote_file, from_tty);
12441}
12442
12443void
12444remote_target::remote_file_put (const char *local_file, const char *remote_file,
12445 int from_tty)
a6b151f1 12446{
440b7aec 12447 int retcode, remote_errno, bytes, io_size;
a6b151f1
DJ
12448 int bytes_in_buffer;
12449 int saw_eof;
12450 ULONGEST offset;
a6b151f1 12451
d419f42d 12452 gdb_file_up file = gdb_fopen_cloexec (local_file, "rb");
a6b151f1
DJ
12453 if (file == NULL)
12454 perror_with_name (local_file);
a6b151f1 12455
440b7aec 12456 scoped_remote_fd fd
6b8edb51
PA
12457 (this, remote_hostio_open (NULL,
12458 remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT
12459 | FILEIO_O_TRUNC),
12460 0700, 0, &remote_errno));
440b7aec 12461 if (fd.get () == -1)
a6b151f1
DJ
12462 remote_hostio_error (remote_errno);
12463
12464 /* Send up to this many bytes at once. They won't all fit in the
12465 remote packet limit, so we'll transfer slightly fewer. */
12466 io_size = get_remote_packet_size ();
5ca3b260 12467 gdb::byte_vector buffer (io_size);
a6b151f1 12468
a6b151f1
DJ
12469 bytes_in_buffer = 0;
12470 saw_eof = 0;
12471 offset = 0;
12472 while (bytes_in_buffer || !saw_eof)
12473 {
12474 if (!saw_eof)
12475 {
5ca3b260 12476 bytes = fread (buffer.data () + bytes_in_buffer, 1,
3e43a32a 12477 io_size - bytes_in_buffer,
d419f42d 12478 file.get ());
a6b151f1
DJ
12479 if (bytes == 0)
12480 {
d419f42d 12481 if (ferror (file.get ()))
a6b151f1
DJ
12482 error (_("Error reading %s."), local_file);
12483 else
12484 {
12485 /* EOF. Unless there is something still in the
12486 buffer from the last iteration, we are done. */
12487 saw_eof = 1;
12488 if (bytes_in_buffer == 0)
12489 break;
12490 }
12491 }
12492 }
12493 else
12494 bytes = 0;
12495
12496 bytes += bytes_in_buffer;
12497 bytes_in_buffer = 0;
12498
5ca3b260 12499 retcode = remote_hostio_pwrite (fd.get (), buffer.data (), bytes,
3e43a32a 12500 offset, &remote_errno);
a6b151f1
DJ
12501
12502 if (retcode < 0)
12503 remote_hostio_error (remote_errno);
12504 else if (retcode == 0)
12505 error (_("Remote write of %d bytes returned 0!"), bytes);
12506 else if (retcode < bytes)
12507 {
12508 /* Short write. Save the rest of the read data for the next
12509 write. */
12510 bytes_in_buffer = bytes - retcode;
5ca3b260 12511 memmove (buffer.data (), buffer.data () + retcode, bytes_in_buffer);
a6b151f1
DJ
12512 }
12513
12514 offset += retcode;
12515 }
12516
6b8edb51 12517 if (remote_hostio_close (fd.release (), &remote_errno))
a6b151f1
DJ
12518 remote_hostio_error (remote_errno);
12519
12520 if (from_tty)
12521 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file);
a6b151f1
DJ
12522}
12523
12524void
12525remote_file_get (const char *remote_file, const char *local_file, int from_tty)
6b8edb51
PA
12526{
12527 remote_target *remote = get_current_remote_target ();
12528
12529 if (remote == nullptr)
12530 error (_("command can only be used with remote target"));
12531
12532 remote->remote_file_get (remote_file, local_file, from_tty);
12533}
12534
12535void
12536remote_target::remote_file_get (const char *remote_file, const char *local_file,
12537 int from_tty)
a6b151f1 12538{
440b7aec 12539 int remote_errno, bytes, io_size;
a6b151f1 12540 ULONGEST offset;
a6b151f1 12541
440b7aec 12542 scoped_remote_fd fd
6b8edb51
PA
12543 (this, remote_hostio_open (NULL,
12544 remote_file, FILEIO_O_RDONLY, 0, 0,
12545 &remote_errno));
440b7aec 12546 if (fd.get () == -1)
a6b151f1
DJ
12547 remote_hostio_error (remote_errno);
12548
d419f42d 12549 gdb_file_up file = gdb_fopen_cloexec (local_file, "wb");
a6b151f1
DJ
12550 if (file == NULL)
12551 perror_with_name (local_file);
a6b151f1
DJ
12552
12553 /* Send up to this many bytes at once. They won't all fit in the
12554 remote packet limit, so we'll transfer slightly fewer. */
12555 io_size = get_remote_packet_size ();
5ca3b260 12556 gdb::byte_vector buffer (io_size);
a6b151f1 12557
a6b151f1
DJ
12558 offset = 0;
12559 while (1)
12560 {
5ca3b260 12561 bytes = remote_hostio_pread (fd.get (), buffer.data (), io_size, offset,
440b7aec 12562 &remote_errno);
a6b151f1
DJ
12563 if (bytes == 0)
12564 /* Success, but no bytes, means end-of-file. */
12565 break;
12566 if (bytes == -1)
12567 remote_hostio_error (remote_errno);
12568
12569 offset += bytes;
12570
5ca3b260 12571 bytes = fwrite (buffer.data (), 1, bytes, file.get ());
a6b151f1
DJ
12572 if (bytes == 0)
12573 perror_with_name (local_file);
12574 }
12575
6b8edb51 12576 if (remote_hostio_close (fd.release (), &remote_errno))
a6b151f1
DJ
12577 remote_hostio_error (remote_errno);
12578
12579 if (from_tty)
12580 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file);
a6b151f1
DJ
12581}
12582
12583void
12584remote_file_delete (const char *remote_file, int from_tty)
12585{
6b8edb51 12586 remote_target *remote = get_current_remote_target ();
a6b151f1 12587
6b8edb51 12588 if (remote == nullptr)
a6b151f1
DJ
12589 error (_("command can only be used with remote target"));
12590
6b8edb51
PA
12591 remote->remote_file_delete (remote_file, from_tty);
12592}
12593
12594void
12595remote_target::remote_file_delete (const char *remote_file, int from_tty)
12596{
12597 int retcode, remote_errno;
12598
12599 retcode = remote_hostio_unlink (NULL, remote_file, &remote_errno);
a6b151f1
DJ
12600 if (retcode == -1)
12601 remote_hostio_error (remote_errno);
12602
12603 if (from_tty)
12604 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file);
12605}
12606
12607static void
ac88e2de 12608remote_put_command (const char *args, int from_tty)
a6b151f1 12609{
d1a41061
PP
12610 if (args == NULL)
12611 error_no_arg (_("file to put"));
12612
773a1edc 12613 gdb_argv argv (args);
a6b151f1
DJ
12614 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12615 error (_("Invalid parameters to remote put"));
12616
12617 remote_file_put (argv[0], argv[1], from_tty);
a6b151f1
DJ
12618}
12619
12620static void
ac88e2de 12621remote_get_command (const char *args, int from_tty)
a6b151f1 12622{
d1a41061
PP
12623 if (args == NULL)
12624 error_no_arg (_("file to get"));
12625
773a1edc 12626 gdb_argv argv (args);
a6b151f1
DJ
12627 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12628 error (_("Invalid parameters to remote get"));
12629
12630 remote_file_get (argv[0], argv[1], from_tty);
a6b151f1
DJ
12631}
12632
12633static void
ac88e2de 12634remote_delete_command (const char *args, int from_tty)
a6b151f1 12635{
d1a41061
PP
12636 if (args == NULL)
12637 error_no_arg (_("file to delete"));
12638
773a1edc 12639 gdb_argv argv (args);
a6b151f1
DJ
12640 if (argv[0] == NULL || argv[1] != NULL)
12641 error (_("Invalid parameters to remote delete"));
12642
12643 remote_file_delete (argv[0], from_tty);
a6b151f1
DJ
12644}
12645
12646static void
981a3fb3 12647remote_command (const char *args, int from_tty)
a6b151f1 12648{
635c7e8a 12649 help_list (remote_cmdlist, "remote ", all_commands, gdb_stdout);
a6b151f1
DJ
12650}
12651
57810aa7 12652bool
f6ac5f3d 12653remote_target::can_execute_reverse ()
b2175913 12654{
4082afcc
PA
12655 if (packet_support (PACKET_bs) == PACKET_ENABLE
12656 || packet_support (PACKET_bc) == PACKET_ENABLE)
57810aa7 12657 return true;
40ab02ce 12658 else
57810aa7 12659 return false;
b2175913
MS
12660}
12661
57810aa7 12662bool
f6ac5f3d 12663remote_target::supports_non_stop ()
74531fed 12664{
57810aa7 12665 return true;
74531fed
PA
12666}
12667
57810aa7 12668bool
f6ac5f3d 12669remote_target::supports_disable_randomization ()
03583c20
UW
12670{
12671 /* Only supported in extended mode. */
57810aa7 12672 return false;
03583c20
UW
12673}
12674
57810aa7 12675bool
f6ac5f3d 12676remote_target::supports_multi_process ()
8a305172
PA
12677{
12678 struct remote_state *rs = get_remote_state ();
a744cf53 12679
8020350c 12680 return remote_multi_process_p (rs);
8a305172
PA
12681}
12682
70221824 12683static int
f6ac5f3d 12684remote_supports_cond_tracepoints ()
782b2b07 12685{
4082afcc 12686 return packet_support (PACKET_ConditionalTracepoints) == PACKET_ENABLE;
782b2b07
SS
12687}
12688
57810aa7 12689bool
f6ac5f3d 12690remote_target::supports_evaluation_of_breakpoint_conditions ()
3788aec7 12691{
4082afcc 12692 return packet_support (PACKET_ConditionalBreakpoints) == PACKET_ENABLE;
3788aec7
LM
12693}
12694
70221824 12695static int
f6ac5f3d 12696remote_supports_fast_tracepoints ()
7a697b8d 12697{
4082afcc 12698 return packet_support (PACKET_FastTracepoints) == PACKET_ENABLE;
7a697b8d
SS
12699}
12700
0fb4aa4b 12701static int
f6ac5f3d 12702remote_supports_static_tracepoints ()
0fb4aa4b 12703{
4082afcc 12704 return packet_support (PACKET_StaticTracepoints) == PACKET_ENABLE;
0fb4aa4b
PA
12705}
12706
1e4d1764 12707static int
f6ac5f3d 12708remote_supports_install_in_trace ()
1e4d1764 12709{
4082afcc 12710 return packet_support (PACKET_InstallInTrace) == PACKET_ENABLE;
1e4d1764
YQ
12711}
12712
57810aa7 12713bool
f6ac5f3d 12714remote_target::supports_enable_disable_tracepoint ()
d248b706 12715{
4082afcc
PA
12716 return (packet_support (PACKET_EnableDisableTracepoints_feature)
12717 == PACKET_ENABLE);
d248b706
KY
12718}
12719
57810aa7 12720bool
f6ac5f3d 12721remote_target::supports_string_tracing ()
3065dfb6 12722{
4082afcc 12723 return packet_support (PACKET_tracenz_feature) == PACKET_ENABLE;
3065dfb6
SS
12724}
12725
57810aa7 12726bool
f6ac5f3d 12727remote_target::can_run_breakpoint_commands ()
d3ce09f5 12728{
4082afcc 12729 return packet_support (PACKET_BreakpointCommands) == PACKET_ENABLE;
d3ce09f5
SS
12730}
12731
f6ac5f3d
PA
12732void
12733remote_target::trace_init ()
35b1e5cc 12734{
b6bb3468
PA
12735 struct remote_state *rs = get_remote_state ();
12736
35b1e5cc 12737 putpkt ("QTinit");
b6bb3468 12738 remote_get_noisy_reply ();
8d64371b 12739 if (strcmp (rs->buf.data (), "OK") != 0)
35b1e5cc
SS
12740 error (_("Target does not support this command."));
12741}
12742
409873ef
SS
12743/* Recursive routine to walk through command list including loops, and
12744 download packets for each command. */
12745
6b8edb51
PA
12746void
12747remote_target::remote_download_command_source (int num, ULONGEST addr,
12748 struct command_line *cmds)
409873ef
SS
12749{
12750 struct remote_state *rs = get_remote_state ();
12751 struct command_line *cmd;
12752
12753 for (cmd = cmds; cmd; cmd = cmd->next)
12754 {
0df8b418 12755 QUIT; /* Allow user to bail out with ^C. */
8d64371b 12756 strcpy (rs->buf.data (), "QTDPsrc:");
409873ef 12757 encode_source_string (num, addr, "cmd", cmd->line,
8d64371b
TT
12758 rs->buf.data () + strlen (rs->buf.data ()),
12759 rs->buf.size () - strlen (rs->buf.data ()));
409873ef 12760 putpkt (rs->buf);
b6bb3468 12761 remote_get_noisy_reply ();
8d64371b 12762 if (strcmp (rs->buf.data (), "OK"))
409873ef
SS
12763 warning (_("Target does not support source download."));
12764
12765 if (cmd->control_type == while_control
12766 || cmd->control_type == while_stepping_control)
12767 {
12973681 12768 remote_download_command_source (num, addr, cmd->body_list_0.get ());
409873ef 12769
0df8b418 12770 QUIT; /* Allow user to bail out with ^C. */
8d64371b 12771 strcpy (rs->buf.data (), "QTDPsrc:");
409873ef 12772 encode_source_string (num, addr, "cmd", "end",
8d64371b
TT
12773 rs->buf.data () + strlen (rs->buf.data ()),
12774 rs->buf.size () - strlen (rs->buf.data ()));
409873ef 12775 putpkt (rs->buf);
b6bb3468 12776 remote_get_noisy_reply ();
8d64371b 12777 if (strcmp (rs->buf.data (), "OK"))
409873ef
SS
12778 warning (_("Target does not support source download."));
12779 }
12780 }
12781}
12782
f6ac5f3d
PA
12783void
12784remote_target::download_tracepoint (struct bp_location *loc)
35b1e5cc
SS
12785{
12786 CORE_ADDR tpaddr;
409873ef 12787 char addrbuf[40];
b44ec619
SM
12788 std::vector<std::string> tdp_actions;
12789 std::vector<std::string> stepping_actions;
35b1e5cc 12790 char *pkt;
e8ba3115 12791 struct breakpoint *b = loc->owner;
d9b3f62e 12792 struct tracepoint *t = (struct tracepoint *) b;
b6bb3468 12793 struct remote_state *rs = get_remote_state ();
3df3a985 12794 int ret;
ff36536c 12795 const char *err_msg = _("Tracepoint packet too large for target.");
3df3a985
PFC
12796 size_t size_left;
12797
12798 /* We use a buffer other than rs->buf because we'll build strings
12799 across multiple statements, and other statements in between could
12800 modify rs->buf. */
12801 gdb::char_vector buf (get_remote_packet_size ());
35b1e5cc 12802
dc673c81 12803 encode_actions_rsp (loc, &tdp_actions, &stepping_actions);
e8ba3115
YQ
12804
12805 tpaddr = loc->address;
12806 sprintf_vma (addrbuf, tpaddr);
3df3a985
PFC
12807 ret = snprintf (buf.data (), buf.size (), "QTDP:%x:%s:%c:%lx:%x",
12808 b->number, addrbuf, /* address */
12809 (b->enable_state == bp_enabled ? 'E' : 'D'),
12810 t->step_count, t->pass_count);
12811
12812 if (ret < 0 || ret >= buf.size ())
a7f25a84 12813 error ("%s", err_msg);
3df3a985 12814
e8ba3115
YQ
12815 /* Fast tracepoints are mostly handled by the target, but we can
12816 tell the target how big of an instruction block should be moved
12817 around. */
12818 if (b->type == bp_fast_tracepoint)
12819 {
12820 /* Only test for support at download time; we may not know
12821 target capabilities at definition time. */
12822 if (remote_supports_fast_tracepoints ())
35b1e5cc 12823 {
6b940e6a
PL
12824 if (gdbarch_fast_tracepoint_valid_at (loc->gdbarch, tpaddr,
12825 NULL))
3df3a985
PFC
12826 {
12827 size_left = buf.size () - strlen (buf.data ());
12828 ret = snprintf (buf.data () + strlen (buf.data ()),
12829 size_left, ":F%x",
12830 gdb_insn_length (loc->gdbarch, tpaddr));
12831
12832 if (ret < 0 || ret >= size_left)
a7f25a84 12833 error ("%s", err_msg);
3df3a985 12834 }
35b1e5cc 12835 else
e8ba3115
YQ
12836 /* If it passed validation at definition but fails now,
12837 something is very wrong. */
12838 internal_error (__FILE__, __LINE__,
12839 _("Fast tracepoint not "
12840 "valid during download"));
35b1e5cc 12841 }
e8ba3115
YQ
12842 else
12843 /* Fast tracepoints are functionally identical to regular
12844 tracepoints, so don't take lack of support as a reason to
12845 give up on the trace run. */
12846 warning (_("Target does not support fast tracepoints, "
12847 "downloading %d as regular tracepoint"), b->number);
12848 }
12849 else if (b->type == bp_static_tracepoint)
12850 {
12851 /* Only test for support at download time; we may not know
12852 target capabilities at definition time. */
12853 if (remote_supports_static_tracepoints ())
0fb4aa4b 12854 {
e8ba3115 12855 struct static_tracepoint_marker marker;
0fb4aa4b 12856
e8ba3115 12857 if (target_static_tracepoint_marker_at (tpaddr, &marker))
3df3a985
PFC
12858 {
12859 size_left = buf.size () - strlen (buf.data ());
12860 ret = snprintf (buf.data () + strlen (buf.data ()),
12861 size_left, ":S");
12862
12863 if (ret < 0 || ret >= size_left)
a7f25a84 12864 error ("%s", err_msg);
3df3a985 12865 }
0fb4aa4b 12866 else
e8ba3115 12867 error (_("Static tracepoint not valid during download"));
0fb4aa4b 12868 }
e8ba3115
YQ
12869 else
12870 /* Fast tracepoints are functionally identical to regular
12871 tracepoints, so don't take lack of support as a reason
12872 to give up on the trace run. */
12873 error (_("Target does not support static tracepoints"));
12874 }
12875 /* If the tracepoint has a conditional, make it into an agent
12876 expression and append to the definition. */
12877 if (loc->cond)
12878 {
12879 /* Only test support at download time, we may not know target
12880 capabilities at definition time. */
12881 if (remote_supports_cond_tracepoints ())
35b1e5cc 12882 {
3df3a985
PFC
12883 agent_expr_up aexpr = gen_eval_for_expr (tpaddr,
12884 loc->cond.get ());
12885
12886 size_left = buf.size () - strlen (buf.data ());
12887
12888 ret = snprintf (buf.data () + strlen (buf.data ()),
12889 size_left, ":X%x,", aexpr->len);
12890
12891 if (ret < 0 || ret >= size_left)
a7f25a84 12892 error ("%s", err_msg);
3df3a985
PFC
12893
12894 size_left = buf.size () - strlen (buf.data ());
12895
12896 /* Two bytes to encode each aexpr byte, plus the terminating
12897 null byte. */
12898 if (aexpr->len * 2 + 1 > size_left)
a7f25a84 12899 error ("%s", err_msg);
3df3a985
PFC
12900
12901 pkt = buf.data () + strlen (buf.data ());
12902
b44ec619 12903 for (int ndx = 0; ndx < aexpr->len; ++ndx)
e8ba3115
YQ
12904 pkt = pack_hex_byte (pkt, aexpr->buf[ndx]);
12905 *pkt = '\0';
35b1e5cc 12906 }
e8ba3115
YQ
12907 else
12908 warning (_("Target does not support conditional tracepoints, "
12909 "ignoring tp %d cond"), b->number);
12910 }
35b1e5cc 12911
d9b3f62e 12912 if (b->commands || *default_collect)
3df3a985
PFC
12913 {
12914 size_left = buf.size () - strlen (buf.data ());
12915
12916 ret = snprintf (buf.data () + strlen (buf.data ()),
12917 size_left, "-");
12918
12919 if (ret < 0 || ret >= size_left)
a7f25a84 12920 error ("%s", err_msg);
3df3a985
PFC
12921 }
12922
12923 putpkt (buf.data ());
b6bb3468 12924 remote_get_noisy_reply ();
8d64371b 12925 if (strcmp (rs->buf.data (), "OK"))
e8ba3115 12926 error (_("Target does not support tracepoints."));
35b1e5cc 12927
e8ba3115 12928 /* do_single_steps (t); */
b44ec619
SM
12929 for (auto action_it = tdp_actions.begin ();
12930 action_it != tdp_actions.end (); action_it++)
e8ba3115 12931 {
b44ec619
SM
12932 QUIT; /* Allow user to bail out with ^C. */
12933
aa6f3694 12934 bool has_more = ((action_it + 1) != tdp_actions.end ()
b44ec619
SM
12935 || !stepping_actions.empty ());
12936
3df3a985
PFC
12937 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%c",
12938 b->number, addrbuf, /* address */
12939 action_it->c_str (),
12940 has_more ? '-' : 0);
12941
12942 if (ret < 0 || ret >= buf.size ())
a7f25a84 12943 error ("%s", err_msg);
3df3a985
PFC
12944
12945 putpkt (buf.data ());
b44ec619 12946 remote_get_noisy_reply ();
8d64371b 12947 if (strcmp (rs->buf.data (), "OK"))
b44ec619 12948 error (_("Error on target while setting tracepoints."));
e8ba3115 12949 }
409873ef 12950
05abfc39
PFC
12951 for (auto action_it = stepping_actions.begin ();
12952 action_it != stepping_actions.end (); action_it++)
12953 {
12954 QUIT; /* Allow user to bail out with ^C. */
12955
12956 bool is_first = action_it == stepping_actions.begin ();
aa6f3694 12957 bool has_more = (action_it + 1) != stepping_actions.end ();
05abfc39 12958
3df3a985
PFC
12959 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%s%s",
12960 b->number, addrbuf, /* address */
12961 is_first ? "S" : "",
12962 action_it->c_str (),
12963 has_more ? "-" : "");
12964
12965 if (ret < 0 || ret >= buf.size ())
a7f25a84 12966 error ("%s", err_msg);
3df3a985
PFC
12967
12968 putpkt (buf.data ());
05abfc39 12969 remote_get_noisy_reply ();
8d64371b 12970 if (strcmp (rs->buf.data (), "OK"))
05abfc39
PFC
12971 error (_("Error on target while setting tracepoints."));
12972 }
b44ec619 12973
4082afcc 12974 if (packet_support (PACKET_TracepointSource) == PACKET_ENABLE)
e8ba3115 12975 {
f00aae0f 12976 if (b->location != NULL)
409873ef 12977 {
3df3a985
PFC
12978 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
12979
12980 if (ret < 0 || ret >= buf.size ())
a7f25a84 12981 error ("%s", err_msg);
3df3a985 12982
f00aae0f 12983 encode_source_string (b->number, loc->address, "at",
d28cd78a 12984 event_location_to_string (b->location.get ()),
3df3a985
PFC
12985 buf.data () + strlen (buf.data ()),
12986 buf.size () - strlen (buf.data ()));
12987 putpkt (buf.data ());
b6bb3468 12988 remote_get_noisy_reply ();
8d64371b 12989 if (strcmp (rs->buf.data (), "OK"))
e8ba3115 12990 warning (_("Target does not support source download."));
409873ef 12991 }
e8ba3115
YQ
12992 if (b->cond_string)
12993 {
3df3a985
PFC
12994 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
12995
12996 if (ret < 0 || ret >= buf.size ())
a7f25a84 12997 error ("%s", err_msg);
3df3a985 12998
e8ba3115 12999 encode_source_string (b->number, loc->address,
3df3a985
PFC
13000 "cond", b->cond_string,
13001 buf.data () + strlen (buf.data ()),
13002 buf.size () - strlen (buf.data ()));
13003 putpkt (buf.data ());
b6bb3468 13004 remote_get_noisy_reply ();
8d64371b 13005 if (strcmp (rs->buf.data (), "OK"))
e8ba3115
YQ
13006 warning (_("Target does not support source download."));
13007 }
13008 remote_download_command_source (b->number, loc->address,
13009 breakpoint_commands (b));
35b1e5cc 13010 }
35b1e5cc
SS
13011}
13012
57810aa7 13013bool
f6ac5f3d 13014remote_target::can_download_tracepoint ()
1e4d1764 13015{
1e51243a
PA
13016 struct remote_state *rs = get_remote_state ();
13017 struct trace_status *ts;
13018 int status;
13019
13020 /* Don't try to install tracepoints until we've relocated our
13021 symbols, and fetched and merged the target's tracepoint list with
13022 ours. */
13023 if (rs->starting_up)
57810aa7 13024 return false;
1e51243a
PA
13025
13026 ts = current_trace_status ();
f6ac5f3d 13027 status = get_trace_status (ts);
1e4d1764
YQ
13028
13029 if (status == -1 || !ts->running_known || !ts->running)
57810aa7 13030 return false;
1e4d1764
YQ
13031
13032 /* If we are in a tracing experiment, but remote stub doesn't support
13033 installing tracepoint in trace, we have to return. */
13034 if (!remote_supports_install_in_trace ())
57810aa7 13035 return false;
1e4d1764 13036
57810aa7 13037 return true;
1e4d1764
YQ
13038}
13039
13040
f6ac5f3d
PA
13041void
13042remote_target::download_trace_state_variable (const trace_state_variable &tsv)
35b1e5cc
SS
13043{
13044 struct remote_state *rs = get_remote_state ();
00bf0b85 13045 char *p;
35b1e5cc 13046
8d64371b 13047 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDV:%x:%s:%x:",
c252925c
SM
13048 tsv.number, phex ((ULONGEST) tsv.initial_value, 8),
13049 tsv.builtin);
8d64371b
TT
13050 p = rs->buf.data () + strlen (rs->buf.data ());
13051 if ((p - rs->buf.data ()) + tsv.name.length () * 2
13052 >= get_remote_packet_size ())
00bf0b85 13053 error (_("Trace state variable name too long for tsv definition packet"));
c252925c 13054 p += 2 * bin2hex ((gdb_byte *) (tsv.name.data ()), p, tsv.name.length ());
00bf0b85 13055 *p++ = '\0';
35b1e5cc 13056 putpkt (rs->buf);
b6bb3468 13057 remote_get_noisy_reply ();
8d64371b 13058 if (rs->buf[0] == '\0')
ad91cd99 13059 error (_("Target does not support this command."));
8d64371b 13060 if (strcmp (rs->buf.data (), "OK") != 0)
ad91cd99 13061 error (_("Error on target while downloading trace state variable."));
35b1e5cc
SS
13062}
13063
f6ac5f3d
PA
13064void
13065remote_target::enable_tracepoint (struct bp_location *location)
d248b706
KY
13066{
13067 struct remote_state *rs = get_remote_state ();
13068 char addr_buf[40];
13069
13070 sprintf_vma (addr_buf, location->address);
8d64371b 13071 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTEnable:%x:%s",
bba74b36 13072 location->owner->number, addr_buf);
d248b706 13073 putpkt (rs->buf);
b6bb3468 13074 remote_get_noisy_reply ();
8d64371b 13075 if (rs->buf[0] == '\0')
d248b706 13076 error (_("Target does not support enabling tracepoints while a trace run is ongoing."));
8d64371b 13077 if (strcmp (rs->buf.data (), "OK") != 0)
d248b706
KY
13078 error (_("Error on target while enabling tracepoint."));
13079}
13080
f6ac5f3d
PA
13081void
13082remote_target::disable_tracepoint (struct bp_location *location)
d248b706
KY
13083{
13084 struct remote_state *rs = get_remote_state ();
13085 char addr_buf[40];
13086
13087 sprintf_vma (addr_buf, location->address);
8d64371b 13088 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDisable:%x:%s",
bba74b36 13089 location->owner->number, addr_buf);
d248b706 13090 putpkt (rs->buf);
b6bb3468 13091 remote_get_noisy_reply ();
8d64371b 13092 if (rs->buf[0] == '\0')
d248b706 13093 error (_("Target does not support disabling tracepoints while a trace run is ongoing."));
8d64371b 13094 if (strcmp (rs->buf.data (), "OK") != 0)
d248b706
KY
13095 error (_("Error on target while disabling tracepoint."));
13096}
13097
f6ac5f3d
PA
13098void
13099remote_target::trace_set_readonly_regions ()
35b1e5cc
SS
13100{
13101 asection *s;
81b9b86e 13102 bfd *abfd = NULL;
35b1e5cc 13103 bfd_size_type size;
608bcef2 13104 bfd_vma vma;
35b1e5cc 13105 int anysecs = 0;
c2fa21f1 13106 int offset = 0;
35b1e5cc
SS
13107
13108 if (!exec_bfd)
13109 return; /* No information to give. */
13110
b6bb3468
PA
13111 struct remote_state *rs = get_remote_state ();
13112
8d64371b
TT
13113 strcpy (rs->buf.data (), "QTro");
13114 offset = strlen (rs->buf.data ());
35b1e5cc
SS
13115 for (s = exec_bfd->sections; s; s = s->next)
13116 {
13117 char tmp1[40], tmp2[40];
c2fa21f1 13118 int sec_length;
35b1e5cc
SS
13119
13120 if ((s->flags & SEC_LOAD) == 0 ||
0df8b418 13121 /* (s->flags & SEC_CODE) == 0 || */
35b1e5cc
SS
13122 (s->flags & SEC_READONLY) == 0)
13123 continue;
13124
13125 anysecs = 1;
81b9b86e 13126 vma = bfd_get_section_vma (abfd, s);
35b1e5cc 13127 size = bfd_get_section_size (s);
608bcef2
HZ
13128 sprintf_vma (tmp1, vma);
13129 sprintf_vma (tmp2, vma + size);
c2fa21f1 13130 sec_length = 1 + strlen (tmp1) + 1 + strlen (tmp2);
8d64371b 13131 if (offset + sec_length + 1 > rs->buf.size ())
c2fa21f1 13132 {
4082afcc 13133 if (packet_support (PACKET_qXfer_traceframe_info) != PACKET_ENABLE)
864ac8a7 13134 warning (_("\
c2fa21f1
HZ
13135Too many sections for read-only sections definition packet."));
13136 break;
13137 }
8d64371b 13138 xsnprintf (rs->buf.data () + offset, rs->buf.size () - offset, ":%s,%s",
bba74b36 13139 tmp1, tmp2);
c2fa21f1 13140 offset += sec_length;
35b1e5cc
SS
13141 }
13142 if (anysecs)
13143 {
b6bb3468 13144 putpkt (rs->buf);
8d64371b 13145 getpkt (&rs->buf, 0);
35b1e5cc
SS
13146 }
13147}
13148
f6ac5f3d
PA
13149void
13150remote_target::trace_start ()
35b1e5cc 13151{
b6bb3468
PA
13152 struct remote_state *rs = get_remote_state ();
13153
35b1e5cc 13154 putpkt ("QTStart");
b6bb3468 13155 remote_get_noisy_reply ();
8d64371b 13156 if (rs->buf[0] == '\0')
ad91cd99 13157 error (_("Target does not support this command."));
8d64371b
TT
13158 if (strcmp (rs->buf.data (), "OK") != 0)
13159 error (_("Bogus reply from target: %s"), rs->buf.data ());
35b1e5cc
SS
13160}
13161
f6ac5f3d
PA
13162int
13163remote_target::get_trace_status (struct trace_status *ts)
35b1e5cc 13164{
953b98d1 13165 /* Initialize it just to avoid a GCC false warning. */
f652de6f 13166 char *p = NULL;
0df8b418 13167 /* FIXME we need to get register block size some other way. */
00bf0b85 13168 extern int trace_regblock_size;
bd3eecc3 13169 enum packet_result result;
b6bb3468 13170 struct remote_state *rs = get_remote_state ();
bd3eecc3 13171
4082afcc 13172 if (packet_support (PACKET_qTStatus) == PACKET_DISABLE)
bd3eecc3 13173 return -1;
a744cf53 13174
5cd63fda 13175 trace_regblock_size
9d6eea31 13176 = rs->get_remote_arch_state (target_gdbarch ())->sizeof_g_packet;
00bf0b85 13177
049dc89b
JK
13178 putpkt ("qTStatus");
13179
492d29ea 13180 TRY
67f41397 13181 {
b6bb3468 13182 p = remote_get_noisy_reply ();
67f41397 13183 }
492d29ea 13184 CATCH (ex, RETURN_MASK_ERROR)
67f41397 13185 {
598d3636
JK
13186 if (ex.error != TARGET_CLOSE_ERROR)
13187 {
13188 exception_fprintf (gdb_stderr, ex, "qTStatus: ");
13189 return -1;
13190 }
13191 throw_exception (ex);
67f41397 13192 }
492d29ea 13193 END_CATCH
00bf0b85 13194
bd3eecc3
PA
13195 result = packet_ok (p, &remote_protocol_packets[PACKET_qTStatus]);
13196
00bf0b85 13197 /* If the remote target doesn't do tracing, flag it. */
bd3eecc3 13198 if (result == PACKET_UNKNOWN)
00bf0b85 13199 return -1;
35b1e5cc 13200
00bf0b85 13201 /* We're working with a live target. */
f5911ea1 13202 ts->filename = NULL;
00bf0b85 13203
00bf0b85 13204 if (*p++ != 'T')
8d64371b 13205 error (_("Bogus trace status reply from target: %s"), rs->buf.data ());
35b1e5cc 13206
84cebc4a
YQ
13207 /* Function 'parse_trace_status' sets default value of each field of
13208 'ts' at first, so we don't have to do it here. */
00bf0b85
SS
13209 parse_trace_status (p, ts);
13210
13211 return ts->running;
35b1e5cc
SS
13212}
13213
f6ac5f3d
PA
13214void
13215remote_target::get_tracepoint_status (struct breakpoint *bp,
13216 struct uploaded_tp *utp)
f196051f
SS
13217{
13218 struct remote_state *rs = get_remote_state ();
f196051f
SS
13219 char *reply;
13220 struct bp_location *loc;
13221 struct tracepoint *tp = (struct tracepoint *) bp;
bba74b36 13222 size_t size = get_remote_packet_size ();
f196051f
SS
13223
13224 if (tp)
13225 {
c1fc2657 13226 tp->hit_count = 0;
f196051f 13227 tp->traceframe_usage = 0;
c1fc2657 13228 for (loc = tp->loc; loc; loc = loc->next)
f196051f
SS
13229 {
13230 /* If the tracepoint was never downloaded, don't go asking for
13231 any status. */
13232 if (tp->number_on_target == 0)
13233 continue;
8d64371b 13234 xsnprintf (rs->buf.data (), size, "qTP:%x:%s", tp->number_on_target,
bba74b36 13235 phex_nz (loc->address, 0));
f196051f 13236 putpkt (rs->buf);
b6bb3468 13237 reply = remote_get_noisy_reply ();
f196051f
SS
13238 if (reply && *reply)
13239 {
13240 if (*reply == 'V')
13241 parse_tracepoint_status (reply + 1, bp, utp);
13242 }
13243 }
13244 }
13245 else if (utp)
13246 {
13247 utp->hit_count = 0;
13248 utp->traceframe_usage = 0;
8d64371b 13249 xsnprintf (rs->buf.data (), size, "qTP:%x:%s", utp->number,
bba74b36 13250 phex_nz (utp->addr, 0));
f196051f 13251 putpkt (rs->buf);
b6bb3468 13252 reply = remote_get_noisy_reply ();
f196051f
SS
13253 if (reply && *reply)
13254 {
13255 if (*reply == 'V')
13256 parse_tracepoint_status (reply + 1, bp, utp);
13257 }
13258 }
13259}
13260
f6ac5f3d
PA
13261void
13262remote_target::trace_stop ()
35b1e5cc 13263{
b6bb3468
PA
13264 struct remote_state *rs = get_remote_state ();
13265
35b1e5cc 13266 putpkt ("QTStop");
b6bb3468 13267 remote_get_noisy_reply ();
8d64371b 13268 if (rs->buf[0] == '\0')
ad91cd99 13269 error (_("Target does not support this command."));
8d64371b
TT
13270 if (strcmp (rs->buf.data (), "OK") != 0)
13271 error (_("Bogus reply from target: %s"), rs->buf.data ());
35b1e5cc
SS
13272}
13273
f6ac5f3d
PA
13274int
13275remote_target::trace_find (enum trace_find_type type, int num,
13276 CORE_ADDR addr1, CORE_ADDR addr2,
13277 int *tpp)
35b1e5cc
SS
13278{
13279 struct remote_state *rs = get_remote_state ();
8d64371b 13280 char *endbuf = rs->buf.data () + get_remote_packet_size ();
35b1e5cc
SS
13281 char *p, *reply;
13282 int target_frameno = -1, target_tracept = -1;
13283
e6e4e701
PA
13284 /* Lookups other than by absolute frame number depend on the current
13285 trace selected, so make sure it is correct on the remote end
13286 first. */
13287 if (type != tfind_number)
13288 set_remote_traceframe ();
13289
8d64371b 13290 p = rs->buf.data ();
35b1e5cc
SS
13291 strcpy (p, "QTFrame:");
13292 p = strchr (p, '\0');
13293 switch (type)
13294 {
13295 case tfind_number:
bba74b36 13296 xsnprintf (p, endbuf - p, "%x", num);
35b1e5cc
SS
13297 break;
13298 case tfind_pc:
bba74b36 13299 xsnprintf (p, endbuf - p, "pc:%s", phex_nz (addr1, 0));
35b1e5cc
SS
13300 break;
13301 case tfind_tp:
bba74b36 13302 xsnprintf (p, endbuf - p, "tdp:%x", num);
35b1e5cc
SS
13303 break;
13304 case tfind_range:
bba74b36
YQ
13305 xsnprintf (p, endbuf - p, "range:%s:%s", phex_nz (addr1, 0),
13306 phex_nz (addr2, 0));
35b1e5cc
SS
13307 break;
13308 case tfind_outside:
bba74b36
YQ
13309 xsnprintf (p, endbuf - p, "outside:%s:%s", phex_nz (addr1, 0),
13310 phex_nz (addr2, 0));
35b1e5cc
SS
13311 break;
13312 default:
9b20d036 13313 error (_("Unknown trace find type %d"), type);
35b1e5cc
SS
13314 }
13315
13316 putpkt (rs->buf);
b6bb3468 13317 reply = remote_get_noisy_reply ();
ad91cd99
PA
13318 if (*reply == '\0')
13319 error (_("Target does not support this command."));
35b1e5cc
SS
13320
13321 while (reply && *reply)
13322 switch (*reply)
13323 {
13324 case 'F':
f197e0f1
VP
13325 p = ++reply;
13326 target_frameno = (int) strtol (p, &reply, 16);
13327 if (reply == p)
13328 error (_("Unable to parse trace frame number"));
e6e4e701
PA
13329 /* Don't update our remote traceframe number cache on failure
13330 to select a remote traceframe. */
f197e0f1
VP
13331 if (target_frameno == -1)
13332 return -1;
35b1e5cc
SS
13333 break;
13334 case 'T':
f197e0f1
VP
13335 p = ++reply;
13336 target_tracept = (int) strtol (p, &reply, 16);
13337 if (reply == p)
13338 error (_("Unable to parse tracepoint number"));
35b1e5cc
SS
13339 break;
13340 case 'O': /* "OK"? */
13341 if (reply[1] == 'K' && reply[2] == '\0')
13342 reply += 2;
13343 else
13344 error (_("Bogus reply from target: %s"), reply);
13345 break;
13346 default:
13347 error (_("Bogus reply from target: %s"), reply);
13348 }
13349 if (tpp)
13350 *tpp = target_tracept;
e6e4e701 13351
262e1174 13352 rs->remote_traceframe_number = target_frameno;
35b1e5cc
SS
13353 return target_frameno;
13354}
13355
57810aa7 13356bool
f6ac5f3d 13357remote_target::get_trace_state_variable_value (int tsvnum, LONGEST *val)
35b1e5cc
SS
13358{
13359 struct remote_state *rs = get_remote_state ();
13360 char *reply;
13361 ULONGEST uval;
13362
e6e4e701
PA
13363 set_remote_traceframe ();
13364
8d64371b 13365 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTV:%x", tsvnum);
35b1e5cc 13366 putpkt (rs->buf);
b6bb3468 13367 reply = remote_get_noisy_reply ();
35b1e5cc
SS
13368 if (reply && *reply)
13369 {
13370 if (*reply == 'V')
13371 {
13372 unpack_varlen_hex (reply + 1, &uval);
13373 *val = (LONGEST) uval;
57810aa7 13374 return true;
35b1e5cc
SS
13375 }
13376 }
57810aa7 13377 return false;
35b1e5cc
SS
13378}
13379
f6ac5f3d
PA
13380int
13381remote_target::save_trace_data (const char *filename)
00bf0b85
SS
13382{
13383 struct remote_state *rs = get_remote_state ();
13384 char *p, *reply;
13385
8d64371b 13386 p = rs->buf.data ();
00bf0b85
SS
13387 strcpy (p, "QTSave:");
13388 p += strlen (p);
8d64371b
TT
13389 if ((p - rs->buf.data ()) + strlen (filename) * 2
13390 >= get_remote_packet_size ())
00bf0b85 13391 error (_("Remote file name too long for trace save packet"));
9f1b45b0 13392 p += 2 * bin2hex ((gdb_byte *) filename, p, strlen (filename));
00bf0b85
SS
13393 *p++ = '\0';
13394 putpkt (rs->buf);
b6bb3468 13395 reply = remote_get_noisy_reply ();
d6c5869f 13396 if (*reply == '\0')
ad91cd99
PA
13397 error (_("Target does not support this command."));
13398 if (strcmp (reply, "OK") != 0)
13399 error (_("Bogus reply from target: %s"), reply);
00bf0b85
SS
13400 return 0;
13401}
13402
13403/* This is basically a memory transfer, but needs to be its own packet
13404 because we don't know how the target actually organizes its trace
13405 memory, plus we want to be able to ask for as much as possible, but
13406 not be unhappy if we don't get as much as we ask for. */
13407
f6ac5f3d
PA
13408LONGEST
13409remote_target::get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len)
00bf0b85
SS
13410{
13411 struct remote_state *rs = get_remote_state ();
13412 char *reply;
13413 char *p;
13414 int rslt;
13415
8d64371b 13416 p = rs->buf.data ();
00bf0b85
SS
13417 strcpy (p, "qTBuffer:");
13418 p += strlen (p);
13419 p += hexnumstr (p, offset);
13420 *p++ = ',';
13421 p += hexnumstr (p, len);
13422 *p++ = '\0';
13423
13424 putpkt (rs->buf);
b6bb3468 13425 reply = remote_get_noisy_reply ();
00bf0b85
SS
13426 if (reply && *reply)
13427 {
13428 /* 'l' by itself means we're at the end of the buffer and
13429 there is nothing more to get. */
13430 if (*reply == 'l')
13431 return 0;
13432
13433 /* Convert the reply into binary. Limit the number of bytes to
13434 convert according to our passed-in buffer size, rather than
13435 what was returned in the packet; if the target is
13436 unexpectedly generous and gives us a bigger reply than we
13437 asked for, we don't want to crash. */
b6bb3468 13438 rslt = hex2bin (reply, buf, len);
00bf0b85
SS
13439 return rslt;
13440 }
13441
13442 /* Something went wrong, flag as an error. */
13443 return -1;
13444}
13445
f6ac5f3d
PA
13446void
13447remote_target::set_disconnected_tracing (int val)
35b1e5cc
SS
13448{
13449 struct remote_state *rs = get_remote_state ();
13450
4082afcc 13451 if (packet_support (PACKET_DisconnectedTracing_feature) == PACKET_ENABLE)
33da3f1c 13452 {
ad91cd99
PA
13453 char *reply;
13454
8d64371b
TT
13455 xsnprintf (rs->buf.data (), get_remote_packet_size (),
13456 "QTDisconnected:%x", val);
33da3f1c 13457 putpkt (rs->buf);
b6bb3468 13458 reply = remote_get_noisy_reply ();
ad91cd99 13459 if (*reply == '\0')
33da3f1c 13460 error (_("Target does not support this command."));
ad91cd99
PA
13461 if (strcmp (reply, "OK") != 0)
13462 error (_("Bogus reply from target: %s"), reply);
33da3f1c
SS
13463 }
13464 else if (val)
13465 warning (_("Target does not support disconnected tracing."));
35b1e5cc
SS
13466}
13467
f6ac5f3d
PA
13468int
13469remote_target::core_of_thread (ptid_t ptid)
dc146f7c
VP
13470{
13471 struct thread_info *info = find_thread_ptid (ptid);
a744cf53 13472
7aabaf9d
SM
13473 if (info != NULL && info->priv != NULL)
13474 return get_remote_thread_info (info)->core;
13475
dc146f7c
VP
13476 return -1;
13477}
13478
f6ac5f3d
PA
13479void
13480remote_target::set_circular_trace_buffer (int val)
4daf5ac0
SS
13481{
13482 struct remote_state *rs = get_remote_state ();
ad91cd99 13483 char *reply;
4daf5ac0 13484
8d64371b
TT
13485 xsnprintf (rs->buf.data (), get_remote_packet_size (),
13486 "QTBuffer:circular:%x", val);
4daf5ac0 13487 putpkt (rs->buf);
b6bb3468 13488 reply = remote_get_noisy_reply ();
ad91cd99 13489 if (*reply == '\0')
4daf5ac0 13490 error (_("Target does not support this command."));
ad91cd99
PA
13491 if (strcmp (reply, "OK") != 0)
13492 error (_("Bogus reply from target: %s"), reply);
4daf5ac0
SS
13493}
13494
f6ac5f3d
PA
13495traceframe_info_up
13496remote_target::traceframe_info ()
b3b9301e 13497{
9018be22 13498 gdb::optional<gdb::char_vector> text
8b88a78e 13499 = target_read_stralloc (current_top_target (), TARGET_OBJECT_TRACEFRAME_INFO,
b7b030ad 13500 NULL);
9018be22
SM
13501 if (text)
13502 return parse_traceframe_info (text->data ());
b3b9301e
PA
13503
13504 return NULL;
13505}
13506
405f8e94
SS
13507/* Handle the qTMinFTPILen packet. Returns the minimum length of
13508 instruction on which a fast tracepoint may be placed. Returns -1
13509 if the packet is not supported, and 0 if the minimum instruction
13510 length is unknown. */
13511
f6ac5f3d
PA
13512int
13513remote_target::get_min_fast_tracepoint_insn_len ()
405f8e94
SS
13514{
13515 struct remote_state *rs = get_remote_state ();
13516 char *reply;
13517
e886a173
PA
13518 /* If we're not debugging a process yet, the IPA can't be
13519 loaded. */
13520 if (!target_has_execution)
13521 return 0;
13522
13523 /* Make sure the remote is pointing at the right process. */
13524 set_general_process ();
13525
8d64371b 13526 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTMinFTPILen");
405f8e94 13527 putpkt (rs->buf);
b6bb3468 13528 reply = remote_get_noisy_reply ();
405f8e94
SS
13529 if (*reply == '\0')
13530 return -1;
13531 else
13532 {
13533 ULONGEST min_insn_len;
13534
13535 unpack_varlen_hex (reply, &min_insn_len);
13536
13537 return (int) min_insn_len;
13538 }
13539}
13540
f6ac5f3d
PA
13541void
13542remote_target::set_trace_buffer_size (LONGEST val)
f6f899bf 13543{
4082afcc 13544 if (packet_support (PACKET_QTBuffer_size) != PACKET_DISABLE)
f6f899bf
HAQ
13545 {
13546 struct remote_state *rs = get_remote_state ();
8d64371b
TT
13547 char *buf = rs->buf.data ();
13548 char *endbuf = buf + get_remote_packet_size ();
f6f899bf
HAQ
13549 enum packet_result result;
13550
13551 gdb_assert (val >= 0 || val == -1);
13552 buf += xsnprintf (buf, endbuf - buf, "QTBuffer:size:");
13553 /* Send -1 as literal "-1" to avoid host size dependency. */
13554 if (val < 0)
13555 {
13556 *buf++ = '-';
13557 buf += hexnumstr (buf, (ULONGEST) -val);
13558 }
13559 else
13560 buf += hexnumstr (buf, (ULONGEST) val);
13561
13562 putpkt (rs->buf);
b6bb3468 13563 remote_get_noisy_reply ();
f6f899bf
HAQ
13564 result = packet_ok (rs->buf,
13565 &remote_protocol_packets[PACKET_QTBuffer_size]);
13566
13567 if (result != PACKET_OK)
8d64371b 13568 warning (_("Bogus reply from target: %s"), rs->buf.data ());
f6f899bf
HAQ
13569 }
13570}
13571
57810aa7 13572bool
f6ac5f3d
PA
13573remote_target::set_trace_notes (const char *user, const char *notes,
13574 const char *stop_notes)
f196051f
SS
13575{
13576 struct remote_state *rs = get_remote_state ();
13577 char *reply;
8d64371b
TT
13578 char *buf = rs->buf.data ();
13579 char *endbuf = buf + get_remote_packet_size ();
f196051f
SS
13580 int nbytes;
13581
13582 buf += xsnprintf (buf, endbuf - buf, "QTNotes:");
13583 if (user)
13584 {
13585 buf += xsnprintf (buf, endbuf - buf, "user:");
9f1b45b0 13586 nbytes = bin2hex ((gdb_byte *) user, buf, strlen (user));
f196051f
SS
13587 buf += 2 * nbytes;
13588 *buf++ = ';';
13589 }
13590 if (notes)
13591 {
13592 buf += xsnprintf (buf, endbuf - buf, "notes:");
9f1b45b0 13593 nbytes = bin2hex ((gdb_byte *) notes, buf, strlen (notes));
f196051f
SS
13594 buf += 2 * nbytes;
13595 *buf++ = ';';
13596 }
13597 if (stop_notes)
13598 {
13599 buf += xsnprintf (buf, endbuf - buf, "tstop:");
9f1b45b0 13600 nbytes = bin2hex ((gdb_byte *) stop_notes, buf, strlen (stop_notes));
f196051f
SS
13601 buf += 2 * nbytes;
13602 *buf++ = ';';
13603 }
13604 /* Ensure the buffer is terminated. */
13605 *buf = '\0';
13606
13607 putpkt (rs->buf);
b6bb3468 13608 reply = remote_get_noisy_reply ();
f196051f 13609 if (*reply == '\0')
57810aa7 13610 return false;
f196051f
SS
13611
13612 if (strcmp (reply, "OK") != 0)
13613 error (_("Bogus reply from target: %s"), reply);
13614
57810aa7 13615 return true;
f196051f
SS
13616}
13617
57810aa7
PA
13618bool
13619remote_target::use_agent (bool use)
d1feda86 13620{
4082afcc 13621 if (packet_support (PACKET_QAgent) != PACKET_DISABLE)
d1feda86
YQ
13622 {
13623 struct remote_state *rs = get_remote_state ();
13624
13625 /* If the stub supports QAgent. */
8d64371b 13626 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QAgent:%d", use);
d1feda86 13627 putpkt (rs->buf);
8d64371b 13628 getpkt (&rs->buf, 0);
d1feda86 13629
8d64371b 13630 if (strcmp (rs->buf.data (), "OK") == 0)
d1feda86 13631 {
f6ac5f3d 13632 ::use_agent = use;
57810aa7 13633 return true;
d1feda86
YQ
13634 }
13635 }
13636
57810aa7 13637 return false;
d1feda86
YQ
13638}
13639
57810aa7 13640bool
f6ac5f3d 13641remote_target::can_use_agent ()
d1feda86 13642{
4082afcc 13643 return (packet_support (PACKET_QAgent) != PACKET_DISABLE);
d1feda86
YQ
13644}
13645
9accd112
MM
13646struct btrace_target_info
13647{
13648 /* The ptid of the traced thread. */
13649 ptid_t ptid;
f4abbc16
MM
13650
13651 /* The obtained branch trace configuration. */
13652 struct btrace_config conf;
9accd112
MM
13653};
13654
f4abbc16
MM
13655/* Reset our idea of our target's btrace configuration. */
13656
13657static void
6b8edb51 13658remote_btrace_reset (remote_state *rs)
f4abbc16 13659{
f4abbc16
MM
13660 memset (&rs->btrace_config, 0, sizeof (rs->btrace_config));
13661}
13662
f4abbc16
MM
13663/* Synchronize the configuration with the target. */
13664
6b8edb51
PA
13665void
13666remote_target::btrace_sync_conf (const btrace_config *conf)
f4abbc16 13667{
d33501a5
MM
13668 struct packet_config *packet;
13669 struct remote_state *rs;
13670 char *buf, *pos, *endbuf;
13671
13672 rs = get_remote_state ();
8d64371b 13673 buf = rs->buf.data ();
d33501a5
MM
13674 endbuf = buf + get_remote_packet_size ();
13675
13676 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_bts_size];
13677 if (packet_config_support (packet) == PACKET_ENABLE
13678 && conf->bts.size != rs->btrace_config.bts.size)
13679 {
13680 pos = buf;
13681 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13682 conf->bts.size);
13683
13684 putpkt (buf);
8d64371b 13685 getpkt (&rs->buf, 0);
d33501a5
MM
13686
13687 if (packet_ok (buf, packet) == PACKET_ERROR)
13688 {
13689 if (buf[0] == 'E' && buf[1] == '.')
13690 error (_("Failed to configure the BTS buffer size: %s"), buf + 2);
13691 else
13692 error (_("Failed to configure the BTS buffer size."));
13693 }
13694
13695 rs->btrace_config.bts.size = conf->bts.size;
13696 }
b20a6524
MM
13697
13698 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_pt_size];
13699 if (packet_config_support (packet) == PACKET_ENABLE
13700 && conf->pt.size != rs->btrace_config.pt.size)
13701 {
13702 pos = buf;
13703 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13704 conf->pt.size);
13705
13706 putpkt (buf);
8d64371b 13707 getpkt (&rs->buf, 0);
b20a6524
MM
13708
13709 if (packet_ok (buf, packet) == PACKET_ERROR)
13710 {
13711 if (buf[0] == 'E' && buf[1] == '.')
13712 error (_("Failed to configure the trace buffer size: %s"), buf + 2);
13713 else
13714 error (_("Failed to configure the trace buffer size."));
13715 }
13716
13717 rs->btrace_config.pt.size = conf->pt.size;
13718 }
f4abbc16
MM
13719}
13720
13721/* Read the current thread's btrace configuration from the target and
13722 store it into CONF. */
13723
13724static void
13725btrace_read_config (struct btrace_config *conf)
13726{
9018be22 13727 gdb::optional<gdb::char_vector> xml
8b88a78e 13728 = target_read_stralloc (current_top_target (), TARGET_OBJECT_BTRACE_CONF, "");
9018be22
SM
13729 if (xml)
13730 parse_xml_btrace_conf (conf, xml->data ());
f4abbc16
MM
13731}
13732
c0272db5
TW
13733/* Maybe reopen target btrace. */
13734
6b8edb51
PA
13735void
13736remote_target::remote_btrace_maybe_reopen ()
c0272db5
TW
13737{
13738 struct remote_state *rs = get_remote_state ();
c0272db5 13739 int btrace_target_pushed = 0;
15766370 13740#if !defined (HAVE_LIBIPT)
c0272db5 13741 int warned = 0;
15766370 13742#endif
c0272db5 13743
5ed8105e
PA
13744 scoped_restore_current_thread restore_thread;
13745
08036331 13746 for (thread_info *tp : all_non_exited_threads ())
c0272db5
TW
13747 {
13748 set_general_thread (tp->ptid);
13749
13750 memset (&rs->btrace_config, 0x00, sizeof (struct btrace_config));
13751 btrace_read_config (&rs->btrace_config);
13752
13753 if (rs->btrace_config.format == BTRACE_FORMAT_NONE)
13754 continue;
13755
13756#if !defined (HAVE_LIBIPT)
13757 if (rs->btrace_config.format == BTRACE_FORMAT_PT)
13758 {
13759 if (!warned)
13760 {
13761 warned = 1;
c4e12631
MM
13762 warning (_("Target is recording using Intel Processor Trace "
13763 "but support was disabled at compile time."));
c0272db5
TW
13764 }
13765
13766 continue;
13767 }
13768#endif /* !defined (HAVE_LIBIPT) */
13769
13770 /* Push target, once, but before anything else happens. This way our
13771 changes to the threads will be cleaned up by unpushing the target
13772 in case btrace_read_config () throws. */
13773 if (!btrace_target_pushed)
13774 {
13775 btrace_target_pushed = 1;
13776 record_btrace_push_target ();
13777 printf_filtered (_("Target is recording using %s.\n"),
13778 btrace_format_string (rs->btrace_config.format));
13779 }
13780
13781 tp->btrace.target = XCNEW (struct btrace_target_info);
13782 tp->btrace.target->ptid = tp->ptid;
13783 tp->btrace.target->conf = rs->btrace_config;
13784 }
c0272db5
TW
13785}
13786
9accd112
MM
13787/* Enable branch tracing. */
13788
f6ac5f3d
PA
13789struct btrace_target_info *
13790remote_target::enable_btrace (ptid_t ptid, const struct btrace_config *conf)
9accd112
MM
13791{
13792 struct btrace_target_info *tinfo = NULL;
b20a6524 13793 struct packet_config *packet = NULL;
9accd112 13794 struct remote_state *rs = get_remote_state ();
8d64371b
TT
13795 char *buf = rs->buf.data ();
13796 char *endbuf = buf + get_remote_packet_size ();
9accd112 13797
b20a6524
MM
13798 switch (conf->format)
13799 {
13800 case BTRACE_FORMAT_BTS:
13801 packet = &remote_protocol_packets[PACKET_Qbtrace_bts];
13802 break;
13803
13804 case BTRACE_FORMAT_PT:
13805 packet = &remote_protocol_packets[PACKET_Qbtrace_pt];
13806 break;
13807 }
13808
13809 if (packet == NULL || packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13810 error (_("Target does not support branch tracing."));
13811
f4abbc16
MM
13812 btrace_sync_conf (conf);
13813
9accd112
MM
13814 set_general_thread (ptid);
13815
13816 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
13817 putpkt (rs->buf);
8d64371b 13818 getpkt (&rs->buf, 0);
9accd112
MM
13819
13820 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
13821 {
13822 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
13823 error (_("Could not enable branch tracing for %s: %s"),
8d64371b 13824 target_pid_to_str (ptid), &rs->buf[2]);
9accd112
MM
13825 else
13826 error (_("Could not enable branch tracing for %s."),
13827 target_pid_to_str (ptid));
13828 }
13829
8d749320 13830 tinfo = XCNEW (struct btrace_target_info);
9accd112
MM
13831 tinfo->ptid = ptid;
13832
f4abbc16
MM
13833 /* If we fail to read the configuration, we lose some information, but the
13834 tracing itself is not impacted. */
492d29ea
PA
13835 TRY
13836 {
13837 btrace_read_config (&tinfo->conf);
13838 }
13839 CATCH (err, RETURN_MASK_ERROR)
13840 {
13841 if (err.message != NULL)
13842 warning ("%s", err.message);
13843 }
13844 END_CATCH
f4abbc16 13845
9accd112
MM
13846 return tinfo;
13847}
13848
13849/* Disable branch tracing. */
13850
f6ac5f3d
PA
13851void
13852remote_target::disable_btrace (struct btrace_target_info *tinfo)
9accd112
MM
13853{
13854 struct packet_config *packet = &remote_protocol_packets[PACKET_Qbtrace_off];
13855 struct remote_state *rs = get_remote_state ();
8d64371b
TT
13856 char *buf = rs->buf.data ();
13857 char *endbuf = buf + get_remote_packet_size ();
9accd112 13858
4082afcc 13859 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13860 error (_("Target does not support branch tracing."));
13861
13862 set_general_thread (tinfo->ptid);
13863
13864 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
13865 putpkt (rs->buf);
8d64371b 13866 getpkt (&rs->buf, 0);
9accd112
MM
13867
13868 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
13869 {
13870 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
13871 error (_("Could not disable branch tracing for %s: %s"),
8d64371b 13872 target_pid_to_str (tinfo->ptid), &rs->buf[2]);
9accd112
MM
13873 else
13874 error (_("Could not disable branch tracing for %s."),
13875 target_pid_to_str (tinfo->ptid));
13876 }
13877
13878 xfree (tinfo);
13879}
13880
13881/* Teardown branch tracing. */
13882
f6ac5f3d
PA
13883void
13884remote_target::teardown_btrace (struct btrace_target_info *tinfo)
9accd112
MM
13885{
13886 /* We must not talk to the target during teardown. */
13887 xfree (tinfo);
13888}
13889
13890/* Read the branch trace. */
13891
f6ac5f3d
PA
13892enum btrace_error
13893remote_target::read_btrace (struct btrace_data *btrace,
13894 struct btrace_target_info *tinfo,
13895 enum btrace_read_type type)
9accd112
MM
13896{
13897 struct packet_config *packet = &remote_protocol_packets[PACKET_qXfer_btrace];
9accd112 13898 const char *annex;
9accd112 13899
4082afcc 13900 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13901 error (_("Target does not support branch tracing."));
13902
13903#if !defined(HAVE_LIBEXPAT)
13904 error (_("Cannot process branch tracing result. XML parsing not supported."));
13905#endif
13906
13907 switch (type)
13908 {
864089d2 13909 case BTRACE_READ_ALL:
9accd112
MM
13910 annex = "all";
13911 break;
864089d2 13912 case BTRACE_READ_NEW:
9accd112
MM
13913 annex = "new";
13914 break;
969c39fb
MM
13915 case BTRACE_READ_DELTA:
13916 annex = "delta";
13917 break;
9accd112
MM
13918 default:
13919 internal_error (__FILE__, __LINE__,
13920 _("Bad branch tracing read type: %u."),
13921 (unsigned int) type);
13922 }
13923
9018be22 13924 gdb::optional<gdb::char_vector> xml
8b88a78e 13925 = target_read_stralloc (current_top_target (), TARGET_OBJECT_BTRACE, annex);
9018be22 13926 if (!xml)
969c39fb 13927 return BTRACE_ERR_UNKNOWN;
9accd112 13928
9018be22 13929 parse_xml_btrace (btrace, xml->data ());
9accd112 13930
969c39fb 13931 return BTRACE_ERR_NONE;
9accd112
MM
13932}
13933
f6ac5f3d
PA
13934const struct btrace_config *
13935remote_target::btrace_conf (const struct btrace_target_info *tinfo)
f4abbc16
MM
13936{
13937 return &tinfo->conf;
13938}
13939
57810aa7 13940bool
f6ac5f3d 13941remote_target::augmented_libraries_svr4_read ()
ced63ec0 13942{
4082afcc
PA
13943 return (packet_support (PACKET_augmented_libraries_svr4_read_feature)
13944 == PACKET_ENABLE);
ced63ec0
GB
13945}
13946
9dd130a0
TT
13947/* Implementation of to_load. */
13948
f6ac5f3d
PA
13949void
13950remote_target::load (const char *name, int from_tty)
9dd130a0
TT
13951{
13952 generic_load (name, from_tty);
13953}
13954
c78fa86a
GB
13955/* Accepts an integer PID; returns a string representing a file that
13956 can be opened on the remote side to get the symbols for the child
13957 process. Returns NULL if the operation is not supported. */
13958
f6ac5f3d
PA
13959char *
13960remote_target::pid_to_exec_file (int pid)
c78fa86a 13961{
9018be22 13962 static gdb::optional<gdb::char_vector> filename;
835205d0
GB
13963 struct inferior *inf;
13964 char *annex = NULL;
c78fa86a
GB
13965
13966 if (packet_support (PACKET_qXfer_exec_file) != PACKET_ENABLE)
13967 return NULL;
13968
835205d0
GB
13969 inf = find_inferior_pid (pid);
13970 if (inf == NULL)
13971 internal_error (__FILE__, __LINE__,
13972 _("not currently attached to process %d"), pid);
13973
13974 if (!inf->fake_pid_p)
13975 {
13976 const int annex_size = 9;
13977
224c3ddb 13978 annex = (char *) alloca (annex_size);
835205d0
GB
13979 xsnprintf (annex, annex_size, "%x", pid);
13980 }
13981
8b88a78e 13982 filename = target_read_stralloc (current_top_target (),
c78fa86a
GB
13983 TARGET_OBJECT_EXEC_FILE, annex);
13984
9018be22 13985 return filename ? filename->data () : nullptr;
c78fa86a
GB
13986}
13987
750ce8d1
YQ
13988/* Implement the to_can_do_single_step target_ops method. */
13989
f6ac5f3d
PA
13990int
13991remote_target::can_do_single_step ()
750ce8d1
YQ
13992{
13993 /* We can only tell whether target supports single step or not by
13994 supported s and S vCont actions if the stub supports vContSupported
13995 feature. If the stub doesn't support vContSupported feature,
13996 we have conservatively to think target doesn't supports single
13997 step. */
13998 if (packet_support (PACKET_vContSupported) == PACKET_ENABLE)
13999 {
14000 struct remote_state *rs = get_remote_state ();
14001
14002 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6b8edb51 14003 remote_vcont_probe ();
750ce8d1
YQ
14004
14005 return rs->supports_vCont.s && rs->supports_vCont.S;
14006 }
14007 else
14008 return 0;
14009}
14010
3a00c802
PA
14011/* Implementation of the to_execution_direction method for the remote
14012 target. */
14013
f6ac5f3d
PA
14014enum exec_direction_kind
14015remote_target::execution_direction ()
3a00c802
PA
14016{
14017 struct remote_state *rs = get_remote_state ();
14018
14019 return rs->last_resume_exec_dir;
14020}
14021
f6327dcb
KB
14022/* Return pointer to the thread_info struct which corresponds to
14023 THREAD_HANDLE (having length HANDLE_LEN). */
14024
f6ac5f3d
PA
14025thread_info *
14026remote_target::thread_handle_to_thread_info (const gdb_byte *thread_handle,
14027 int handle_len,
14028 inferior *inf)
f6327dcb 14029{
08036331 14030 for (thread_info *tp : all_non_exited_threads ())
f6327dcb 14031 {
7aabaf9d 14032 remote_thread_info *priv = get_remote_thread_info (tp);
f6327dcb
KB
14033
14034 if (tp->inf == inf && priv != NULL)
14035 {
7aabaf9d 14036 if (handle_len != priv->thread_handle.size ())
f6327dcb 14037 error (_("Thread handle size mismatch: %d vs %zu (from remote)"),
7aabaf9d
SM
14038 handle_len, priv->thread_handle.size ());
14039 if (memcmp (thread_handle, priv->thread_handle.data (),
f6327dcb
KB
14040 handle_len) == 0)
14041 return tp;
14042 }
14043 }
14044
14045 return NULL;
14046}
14047
57810aa7 14048bool
f6ac5f3d 14049remote_target::can_async_p ()
6426a772 14050{
5d93a237
TT
14051 struct remote_state *rs = get_remote_state ();
14052
3015c064
SM
14053 /* We don't go async if the user has explicitly prevented it with the
14054 "maint set target-async" command. */
c6ebd6cf 14055 if (!target_async_permitted)
57810aa7 14056 return false;
75c99385 14057
23860348 14058 /* We're async whenever the serial device is. */
5d93a237 14059 return serial_can_async_p (rs->remote_desc);
6426a772
JM
14060}
14061
57810aa7 14062bool
f6ac5f3d 14063remote_target::is_async_p ()
6426a772 14064{
5d93a237
TT
14065 struct remote_state *rs = get_remote_state ();
14066
c6ebd6cf 14067 if (!target_async_permitted)
75c99385 14068 /* We only enable async when the user specifically asks for it. */
57810aa7 14069 return false;
75c99385 14070
23860348 14071 /* We're async whenever the serial device is. */
5d93a237 14072 return serial_is_async_p (rs->remote_desc);
6426a772
JM
14073}
14074
2acceee2
JM
14075/* Pass the SERIAL event on and up to the client. One day this code
14076 will be able to delay notifying the client of an event until the
23860348 14077 point where an entire packet has been received. */
2acceee2 14078
2acceee2
JM
14079static serial_event_ftype remote_async_serial_handler;
14080
6426a772 14081static void
819cc324 14082remote_async_serial_handler (struct serial *scb, void *context)
6426a772 14083{
2acceee2
JM
14084 /* Don't propogate error information up to the client. Instead let
14085 the client find out about the error by querying the target. */
6a3753b3 14086 inferior_event_handler (INF_REG_EVENT, NULL);
2acceee2
JM
14087}
14088
74531fed
PA
14089static void
14090remote_async_inferior_event_handler (gdb_client_data data)
14091{
6b8edb51 14092 inferior_event_handler (INF_REG_EVENT, data);
74531fed
PA
14093}
14094
f6ac5f3d
PA
14095void
14096remote_target::async (int enable)
2acceee2 14097{
5d93a237
TT
14098 struct remote_state *rs = get_remote_state ();
14099
6a3753b3 14100 if (enable)
2acceee2 14101 {
88b496c3 14102 serial_async (rs->remote_desc, remote_async_serial_handler, rs);
b7d2e916
PA
14103
14104 /* If there are pending events in the stop reply queue tell the
14105 event loop to process them. */
953edf2b 14106 if (!rs->stop_reply_queue.empty ())
6b8edb51 14107 mark_async_event_handler (rs->remote_async_inferior_event_token);
6efcd9a8
PA
14108 /* For simplicity, below we clear the pending events token
14109 without remembering whether it is marked, so here we always
14110 mark it. If there's actually no pending notification to
14111 process, this ends up being a no-op (other than a spurious
14112 event-loop wakeup). */
14113 if (target_is_non_stop_p ())
14114 mark_async_event_handler (rs->notif_state->get_pending_events_token);
2acceee2
JM
14115 }
14116 else
b7d2e916
PA
14117 {
14118 serial_async (rs->remote_desc, NULL, NULL);
6efcd9a8
PA
14119 /* If the core is disabling async, it doesn't want to be
14120 disturbed with target events. Clear all async event sources
14121 too. */
6b8edb51 14122 clear_async_event_handler (rs->remote_async_inferior_event_token);
6efcd9a8
PA
14123 if (target_is_non_stop_p ())
14124 clear_async_event_handler (rs->notif_state->get_pending_events_token);
b7d2e916 14125 }
6426a772
JM
14126}
14127
65706a29
PA
14128/* Implementation of the to_thread_events method. */
14129
f6ac5f3d
PA
14130void
14131remote_target::thread_events (int enable)
65706a29
PA
14132{
14133 struct remote_state *rs = get_remote_state ();
14134 size_t size = get_remote_packet_size ();
65706a29
PA
14135
14136 if (packet_support (PACKET_QThreadEvents) == PACKET_DISABLE)
14137 return;
14138
8d64371b 14139 xsnprintf (rs->buf.data (), size, "QThreadEvents:%x", enable ? 1 : 0);
65706a29 14140 putpkt (rs->buf);
8d64371b 14141 getpkt (&rs->buf, 0);
65706a29
PA
14142
14143 switch (packet_ok (rs->buf,
14144 &remote_protocol_packets[PACKET_QThreadEvents]))
14145 {
14146 case PACKET_OK:
8d64371b
TT
14147 if (strcmp (rs->buf.data (), "OK") != 0)
14148 error (_("Remote refused setting thread events: %s"), rs->buf.data ());
65706a29
PA
14149 break;
14150 case PACKET_ERROR:
8d64371b 14151 warning (_("Remote failure reply: %s"), rs->buf.data ());
65706a29
PA
14152 break;
14153 case PACKET_UNKNOWN:
14154 break;
14155 }
14156}
14157
5a2468f5 14158static void
981a3fb3 14159set_remote_cmd (const char *args, int from_tty)
5a2468f5 14160{
635c7e8a 14161 help_list (remote_set_cmdlist, "set remote ", all_commands, gdb_stdout);
5a2468f5
JM
14162}
14163
d471ea57 14164static void
981a3fb3 14165show_remote_cmd (const char *args, int from_tty)
d471ea57 14166{
37a105a1 14167 /* We can't just use cmd_show_list here, because we want to skip
427c3a89 14168 the redundant "show remote Z-packet" and the legacy aliases. */
37a105a1 14169 struct cmd_list_element *list = remote_show_cmdlist;
79a45e25 14170 struct ui_out *uiout = current_uiout;
37a105a1 14171
2e783024 14172 ui_out_emit_tuple tuple_emitter (uiout, "showlist");
37a105a1
DJ
14173 for (; list != NULL; list = list->next)
14174 if (strcmp (list->name, "Z-packet") == 0)
14175 continue;
427c3a89
DJ
14176 else if (list->type == not_set_cmd)
14177 /* Alias commands are exactly like the original, except they
14178 don't have the normal type. */
14179 continue;
14180 else
37a105a1 14181 {
2e783024 14182 ui_out_emit_tuple option_emitter (uiout, "option");
a744cf53 14183
112e8700
SM
14184 uiout->field_string ("name", list->name);
14185 uiout->text (": ");
427c3a89 14186 if (list->type == show_cmd)
f5c4fcd9 14187 do_show_command (NULL, from_tty, list);
427c3a89
DJ
14188 else
14189 cmd_func (list, NULL, from_tty);
37a105a1 14190 }
d471ea57 14191}
5a2468f5 14192
0f71a2f6 14193
23860348 14194/* Function to be called whenever a new objfile (shlib) is detected. */
dc8acb97
MS
14195static void
14196remote_new_objfile (struct objfile *objfile)
14197{
6b8edb51 14198 remote_target *remote = get_current_remote_target ();
5d93a237 14199
6b8edb51
PA
14200 if (remote != NULL) /* Have a remote connection. */
14201 remote->remote_check_symbols ();
dc8acb97
MS
14202}
14203
00bf0b85
SS
14204/* Pull all the tracepoints defined on the target and create local
14205 data structures representing them. We don't want to create real
14206 tracepoints yet, we don't want to mess up the user's existing
14207 collection. */
14208
f6ac5f3d
PA
14209int
14210remote_target::upload_tracepoints (struct uploaded_tp **utpp)
d5551862 14211{
00bf0b85
SS
14212 struct remote_state *rs = get_remote_state ();
14213 char *p;
d5551862 14214
00bf0b85
SS
14215 /* Ask for a first packet of tracepoint definition. */
14216 putpkt ("qTfP");
8d64371b
TT
14217 getpkt (&rs->buf, 0);
14218 p = rs->buf.data ();
00bf0b85 14219 while (*p && *p != 'l')
d5551862 14220 {
00bf0b85
SS
14221 parse_tracepoint_definition (p, utpp);
14222 /* Ask for another packet of tracepoint definition. */
14223 putpkt ("qTsP");
8d64371b
TT
14224 getpkt (&rs->buf, 0);
14225 p = rs->buf.data ();
d5551862 14226 }
00bf0b85 14227 return 0;
d5551862
SS
14228}
14229
f6ac5f3d
PA
14230int
14231remote_target::upload_trace_state_variables (struct uploaded_tsv **utsvp)
d5551862 14232{
00bf0b85 14233 struct remote_state *rs = get_remote_state ();
d5551862 14234 char *p;
d5551862 14235
00bf0b85
SS
14236 /* Ask for a first packet of variable definition. */
14237 putpkt ("qTfV");
8d64371b
TT
14238 getpkt (&rs->buf, 0);
14239 p = rs->buf.data ();
00bf0b85 14240 while (*p && *p != 'l')
d5551862 14241 {
00bf0b85
SS
14242 parse_tsv_definition (p, utsvp);
14243 /* Ask for another packet of variable definition. */
14244 putpkt ("qTsV");
8d64371b
TT
14245 getpkt (&rs->buf, 0);
14246 p = rs->buf.data ();
d5551862 14247 }
00bf0b85 14248 return 0;
d5551862
SS
14249}
14250
c1e36e3e
PA
14251/* The "set/show range-stepping" show hook. */
14252
14253static void
14254show_range_stepping (struct ui_file *file, int from_tty,
14255 struct cmd_list_element *c,
14256 const char *value)
14257{
14258 fprintf_filtered (file,
14259 _("Debugger's willingness to use range stepping "
14260 "is %s.\n"), value);
14261}
14262
6b8edb51
PA
14263/* Return true if the vCont;r action is supported by the remote
14264 stub. */
14265
14266bool
14267remote_target::vcont_r_supported ()
14268{
14269 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
14270 remote_vcont_probe ();
14271
14272 return (packet_support (PACKET_vCont) == PACKET_ENABLE
14273 && get_remote_state ()->supports_vCont.r);
14274}
14275
c1e36e3e
PA
14276/* The "set/show range-stepping" set hook. */
14277
14278static void
eb4c3f4a 14279set_range_stepping (const char *ignore_args, int from_tty,
c1e36e3e
PA
14280 struct cmd_list_element *c)
14281{
6b8edb51
PA
14282 /* When enabling, check whether range stepping is actually supported
14283 by the target, and warn if not. */
c1e36e3e
PA
14284 if (use_range_stepping)
14285 {
6b8edb51
PA
14286 remote_target *remote = get_current_remote_target ();
14287 if (remote == NULL
14288 || !remote->vcont_r_supported ())
14289 warning (_("Range stepping is not supported by the current target"));
c1e36e3e
PA
14290 }
14291}
14292
c906108c 14293void
fba45db2 14294_initialize_remote (void)
c906108c 14295{
9a7071a8 14296 struct cmd_list_element *cmd;
6f937416 14297 const char *cmd_name;
ea9c271d 14298
0f71a2f6 14299 /* architecture specific data */
29709017
DJ
14300 remote_g_packet_data_handle =
14301 gdbarch_data_register_pre_init (remote_g_packet_data_init);
d01949b6 14302
94585166
DB
14303 remote_pspace_data
14304 = register_program_space_data_with_cleanup (NULL,
14305 remote_pspace_data_cleanup);
14306
d9f719f1
PA
14307 add_target (remote_target_info, remote_target::open);
14308 add_target (extended_remote_target_info, extended_remote_target::open);
cce74817 14309
dc8acb97 14310 /* Hook into new objfile notification. */
76727919 14311 gdb::observers::new_objfile.attach (remote_new_objfile);
dc8acb97 14312
c906108c
SS
14313#if 0
14314 init_remote_threadtests ();
14315#endif
14316
23860348 14317 /* set/show remote ... */
d471ea57 14318
1bedd215 14319 add_prefix_cmd ("remote", class_maintenance, set_remote_cmd, _("\
5a2468f5
JM
14320Remote protocol specific variables\n\
14321Configure various remote-protocol specific variables such as\n\
1bedd215 14322the packets being used"),
cff3e48b 14323 &remote_set_cmdlist, "set remote ",
23860348 14324 0 /* allow-unknown */, &setlist);
1bedd215 14325 add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
5a2468f5
JM
14326Remote protocol specific variables\n\
14327Configure various remote-protocol specific variables such as\n\
1bedd215 14328the packets being used"),
cff3e48b 14329 &remote_show_cmdlist, "show remote ",
23860348 14330 0 /* allow-unknown */, &showlist);
5a2468f5 14331
1a966eab
AC
14332 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
14333Compare section data on target to the exec file.\n\
95cf3b38
DT
14334Argument is a single section name (default: all loaded sections).\n\
14335To compare only read-only loaded sections, specify the -r option."),
c906108c
SS
14336 &cmdlist);
14337
1a966eab
AC
14338 add_cmd ("packet", class_maintenance, packet_command, _("\
14339Send an arbitrary packet to a remote target.\n\
c906108c
SS
14340 maintenance packet TEXT\n\
14341If GDB is talking to an inferior via the GDB serial protocol, then\n\
14342this command sends the string TEXT to the inferior, and displays the\n\
14343response packet. GDB supplies the initial `$' character, and the\n\
1a966eab 14344terminating `#' character and checksum."),
c906108c
SS
14345 &maintenancelist);
14346
7915a72c
AC
14347 add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
14348Set whether to send break if interrupted."), _("\
14349Show whether to send break if interrupted."), _("\
14350If set, a break, instead of a cntrl-c, is sent to the remote target."),
9a7071a8 14351 set_remotebreak, show_remotebreak,
e707bbc2 14352 &setlist, &showlist);
9a7071a8
JB
14353 cmd_name = "remotebreak";
14354 cmd = lookup_cmd (&cmd_name, setlist, "", -1, 1);
14355 deprecate_cmd (cmd, "set remote interrupt-sequence");
14356 cmd_name = "remotebreak"; /* needed because lookup_cmd updates the pointer */
14357 cmd = lookup_cmd (&cmd_name, showlist, "", -1, 1);
14358 deprecate_cmd (cmd, "show remote interrupt-sequence");
14359
14360 add_setshow_enum_cmd ("interrupt-sequence", class_support,
3e43a32a
MS
14361 interrupt_sequence_modes, &interrupt_sequence_mode,
14362 _("\
9a7071a8
JB
14363Set interrupt sequence to remote target."), _("\
14364Show interrupt sequence to remote target."), _("\
14365Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."),
14366 NULL, show_interrupt_sequence,
14367 &remote_set_cmdlist,
14368 &remote_show_cmdlist);
14369
14370 add_setshow_boolean_cmd ("interrupt-on-connect", class_support,
14371 &interrupt_on_connect, _("\
14372Set whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
14373Show whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
14374If set, interrupt sequence is sent to remote target."),
14375 NULL, NULL,
14376 &remote_set_cmdlist, &remote_show_cmdlist);
c906108c 14377
23860348 14378 /* Install commands for configuring memory read/write packets. */
11cf8741 14379
1a966eab
AC
14380 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
14381Set the maximum number of bytes per memory write packet (deprecated)."),
11cf8741 14382 &setlist);
1a966eab
AC
14383 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
14384Show the maximum number of bytes per memory write packet (deprecated)."),
11cf8741
JM
14385 &showlist);
14386 add_cmd ("memory-write-packet-size", no_class,
1a966eab
AC
14387 set_memory_write_packet_size, _("\
14388Set the maximum number of bytes per memory-write packet.\n\
14389Specify the number of bytes in a packet or 0 (zero) for the\n\
14390default packet size. The actual limit is further reduced\n\
14391dependent on the target. Specify ``fixed'' to disable the\n\
14392further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
14393 &remote_set_cmdlist);
14394 add_cmd ("memory-read-packet-size", no_class,
1a966eab
AC
14395 set_memory_read_packet_size, _("\
14396Set the maximum number of bytes per memory-read packet.\n\
14397Specify the number of bytes in a packet or 0 (zero) for the\n\
14398default packet size. The actual limit is further reduced\n\
14399dependent on the target. Specify ``fixed'' to disable the\n\
14400further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
14401 &remote_set_cmdlist);
14402 add_cmd ("memory-write-packet-size", no_class,
14403 show_memory_write_packet_size,
1a966eab 14404 _("Show the maximum number of bytes per memory-write packet."),
11cf8741
JM
14405 &remote_show_cmdlist);
14406 add_cmd ("memory-read-packet-size", no_class,
14407 show_memory_read_packet_size,
1a966eab 14408 _("Show the maximum number of bytes per memory-read packet."),
11cf8741 14409 &remote_show_cmdlist);
c906108c 14410
055303e2 14411 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-limit", no_class,
7915a72c
AC
14412 &remote_hw_watchpoint_limit, _("\
14413Set the maximum number of target hardware watchpoints."), _("\
14414Show the maximum number of target hardware watchpoints."), _("\
055303e2
AB
14415Specify \"unlimited\" for unlimited hardware watchpoints."),
14416 NULL, show_hardware_watchpoint_limit,
14417 &remote_set_cmdlist,
14418 &remote_show_cmdlist);
14419 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-length-limit",
14420 no_class,
480a3f21
PW
14421 &remote_hw_watchpoint_length_limit, _("\
14422Set the maximum length (in bytes) of a target hardware watchpoint."), _("\
14423Show the maximum length (in bytes) of a target hardware watchpoint."), _("\
055303e2
AB
14424Specify \"unlimited\" to allow watchpoints of unlimited size."),
14425 NULL, show_hardware_watchpoint_length_limit,
480a3f21 14426 &remote_set_cmdlist, &remote_show_cmdlist);
055303e2 14427 add_setshow_zuinteger_unlimited_cmd ("hardware-breakpoint-limit", no_class,
7915a72c
AC
14428 &remote_hw_breakpoint_limit, _("\
14429Set the maximum number of target hardware breakpoints."), _("\
14430Show the maximum number of target hardware breakpoints."), _("\
055303e2
AB
14431Specify \"unlimited\" for unlimited hardware breakpoints."),
14432 NULL, show_hardware_breakpoint_limit,
b3f42336 14433 &remote_set_cmdlist, &remote_show_cmdlist);
501eef12 14434
1b493192
PA
14435 add_setshow_zuinteger_cmd ("remoteaddresssize", class_obscure,
14436 &remote_address_size, _("\
4d28ad1e
AC
14437Set the maximum size of the address (in bits) in a memory packet."), _("\
14438Show the maximum size of the address (in bits) in a memory packet."), NULL,
1b493192
PA
14439 NULL,
14440 NULL, /* FIXME: i18n: */
14441 &setlist, &showlist);
c906108c 14442
ca4f7f8b
PA
14443 init_all_packet_configs ();
14444
444abaca 14445 add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
bb572ddd 14446 "X", "binary-download", 1);
0f71a2f6 14447
444abaca 14448 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
bb572ddd 14449 "vCont", "verbose-resume", 0);
506fb367 14450
89be2091
DJ
14451 add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals],
14452 "QPassSignals", "pass-signals", 0);
14453
82075af2
JS
14454 add_packet_config_cmd (&remote_protocol_packets[PACKET_QCatchSyscalls],
14455 "QCatchSyscalls", "catch-syscalls", 0);
14456
9b224c5e
PA
14457 add_packet_config_cmd (&remote_protocol_packets[PACKET_QProgramSignals],
14458 "QProgramSignals", "program-signals", 0);
14459
bc3b087d
SDJ
14460 add_packet_config_cmd (&remote_protocol_packets[PACKET_QSetWorkingDir],
14461 "QSetWorkingDir", "set-working-dir", 0);
14462
aefd8b33
SDJ
14463 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartupWithShell],
14464 "QStartupWithShell", "startup-with-shell", 0);
14465
0a2dde4a
SDJ
14466 add_packet_config_cmd (&remote_protocol_packets
14467 [PACKET_QEnvironmentHexEncoded],
14468 "QEnvironmentHexEncoded", "environment-hex-encoded",
14469 0);
14470
14471 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentReset],
14472 "QEnvironmentReset", "environment-reset",
14473 0);
14474
14475 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentUnset],
14476 "QEnvironmentUnset", "environment-unset",
14477 0);
14478
444abaca 14479 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
bb572ddd 14480 "qSymbol", "symbol-lookup", 0);
dc8acb97 14481
444abaca 14482 add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
bb572ddd 14483 "P", "set-register", 1);
d471ea57 14484
444abaca 14485 add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
bb572ddd 14486 "p", "fetch-register", 1);
b96ec7ac 14487
444abaca 14488 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
bb572ddd 14489 "Z0", "software-breakpoint", 0);
d471ea57 14490
444abaca 14491 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
bb572ddd 14492 "Z1", "hardware-breakpoint", 0);
d471ea57 14493
444abaca 14494 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
bb572ddd 14495 "Z2", "write-watchpoint", 0);
d471ea57 14496
444abaca 14497 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
bb572ddd 14498 "Z3", "read-watchpoint", 0);
d471ea57 14499
444abaca 14500 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
bb572ddd 14501 "Z4", "access-watchpoint", 0);
d471ea57 14502
0876f84a
DJ
14503 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
14504 "qXfer:auxv:read", "read-aux-vector", 0);
802188a7 14505
c78fa86a
GB
14506 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_exec_file],
14507 "qXfer:exec-file:read", "pid-to-exec-file", 0);
14508
23181151
DJ
14509 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features],
14510 "qXfer:features:read", "target-features", 0);
14511
cfa9d6d9
DJ
14512 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries],
14513 "qXfer:libraries:read", "library-info", 0);
14514
2268b414
JK
14515 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries_svr4],
14516 "qXfer:libraries-svr4:read", "library-info-svr4", 0);
14517
fd79ecee
DJ
14518 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
14519 "qXfer:memory-map:read", "memory-map", 0);
14520
0e7f50da
UW
14521 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_read],
14522 "qXfer:spu:read", "read-spu-object", 0);
14523
14524 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_write],
14525 "qXfer:spu:write", "write-spu-object", 0);
14526
07e059b5
VP
14527 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata],
14528 "qXfer:osdata:read", "osdata", 0);
14529
dc146f7c
VP
14530 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_threads],
14531 "qXfer:threads:read", "threads", 0);
14532
4aa995e1
PA
14533 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read],
14534 "qXfer:siginfo:read", "read-siginfo-object", 0);
14535
14536 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write],
14537 "qXfer:siginfo:write", "write-siginfo-object", 0);
14538
b3b9301e
PA
14539 add_packet_config_cmd
14540 (&remote_protocol_packets[PACKET_qXfer_traceframe_info],
eb9fe518 14541 "qXfer:traceframe-info:read", "traceframe-info", 0);
b3b9301e 14542
169081d0
TG
14543 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_uib],
14544 "qXfer:uib:read", "unwind-info-block", 0);
14545
444abaca 14546 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
38691318 14547 "qGetTLSAddr", "get-thread-local-storage-address",
38691318
KB
14548 0);
14549
711e434b
PM
14550 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTIBAddr],
14551 "qGetTIBAddr", "get-thread-information-block-address",
14552 0);
14553
40ab02ce
MS
14554 add_packet_config_cmd (&remote_protocol_packets[PACKET_bc],
14555 "bc", "reverse-continue", 0);
14556
14557 add_packet_config_cmd (&remote_protocol_packets[PACKET_bs],
14558 "bs", "reverse-step", 0);
14559
be2a5f71
DJ
14560 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
14561 "qSupported", "supported-packets", 0);
14562
08388c79
DE
14563 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory],
14564 "qSearch:memory", "search-memory", 0);
14565
bd3eecc3
PA
14566 add_packet_config_cmd (&remote_protocol_packets[PACKET_qTStatus],
14567 "qTStatus", "trace-status", 0);
14568
15a201c8
GB
14569 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_setfs],
14570 "vFile:setfs", "hostio-setfs", 0);
14571
a6b151f1
DJ
14572 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open],
14573 "vFile:open", "hostio-open", 0);
14574
14575 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread],
14576 "vFile:pread", "hostio-pread", 0);
14577
14578 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite],
14579 "vFile:pwrite", "hostio-pwrite", 0);
14580
14581 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close],
14582 "vFile:close", "hostio-close", 0);
14583
14584 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink],
14585 "vFile:unlink", "hostio-unlink", 0);
14586
b9e7b9c3
UW
14587 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_readlink],
14588 "vFile:readlink", "hostio-readlink", 0);
14589
0a93529c
GB
14590 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_fstat],
14591 "vFile:fstat", "hostio-fstat", 0);
14592
2d717e4f
DJ
14593 add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach],
14594 "vAttach", "attach", 0);
14595
14596 add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun],
14597 "vRun", "run", 0);
14598
a6f3e723
SL
14599 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode],
14600 "QStartNoAckMode", "noack", 0);
14601
82f73884
PA
14602 add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill],
14603 "vKill", "kill", 0);
14604
0b16c5cf
PA
14605 add_packet_config_cmd (&remote_protocol_packets[PACKET_qAttached],
14606 "qAttached", "query-attached", 0);
14607
782b2b07 14608 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalTracepoints],
3e43a32a
MS
14609 "ConditionalTracepoints",
14610 "conditional-tracepoints", 0);
3788aec7
LM
14611
14612 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalBreakpoints],
14613 "ConditionalBreakpoints",
14614 "conditional-breakpoints", 0);
14615
d3ce09f5
SS
14616 add_packet_config_cmd (&remote_protocol_packets[PACKET_BreakpointCommands],
14617 "BreakpointCommands",
14618 "breakpoint-commands", 0);
14619
7a697b8d
SS
14620 add_packet_config_cmd (&remote_protocol_packets[PACKET_FastTracepoints],
14621 "FastTracepoints", "fast-tracepoints", 0);
782b2b07 14622
409873ef
SS
14623 add_packet_config_cmd (&remote_protocol_packets[PACKET_TracepointSource],
14624 "TracepointSource", "TracepointSource", 0);
14625
d914c394
SS
14626 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAllow],
14627 "QAllow", "allow", 0);
14628
0fb4aa4b
PA
14629 add_packet_config_cmd (&remote_protocol_packets[PACKET_StaticTracepoints],
14630 "StaticTracepoints", "static-tracepoints", 0);
14631
1e4d1764
YQ
14632 add_packet_config_cmd (&remote_protocol_packets[PACKET_InstallInTrace],
14633 "InstallInTrace", "install-in-trace", 0);
14634
0fb4aa4b
PA
14635 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_statictrace_read],
14636 "qXfer:statictrace:read", "read-sdata-object", 0);
14637
78d85199
YQ
14638 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_fdpic],
14639 "qXfer:fdpic:read", "read-fdpic-loadmap", 0);
14640
03583c20
UW
14641 add_packet_config_cmd (&remote_protocol_packets[PACKET_QDisableRandomization],
14642 "QDisableRandomization", "disable-randomization", 0);
14643
d1feda86
YQ
14644 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAgent],
14645 "QAgent", "agent", 0);
14646
f6f899bf
HAQ
14647 add_packet_config_cmd (&remote_protocol_packets[PACKET_QTBuffer_size],
14648 "QTBuffer:size", "trace-buffer-size", 0);
14649
9accd112
MM
14650 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_off],
14651 "Qbtrace:off", "disable-btrace", 0);
14652
14653 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_bts],
b20a6524
MM
14654 "Qbtrace:bts", "enable-btrace-bts", 0);
14655
14656 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_pt],
14657 "Qbtrace:pt", "enable-btrace-pt", 0);
9accd112
MM
14658
14659 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace],
14660 "qXfer:btrace", "read-btrace", 0);
14661
f4abbc16
MM
14662 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace_conf],
14663 "qXfer:btrace-conf", "read-btrace-conf", 0);
14664
d33501a5
MM
14665 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_bts_size],
14666 "Qbtrace-conf:bts:size", "btrace-conf-bts-size", 0);
14667
73b8c1fd
PA
14668 add_packet_config_cmd (&remote_protocol_packets[PACKET_multiprocess_feature],
14669 "multiprocess-feature", "multiprocess-feature", 0);
14670
f7e6eed5
PA
14671 add_packet_config_cmd (&remote_protocol_packets[PACKET_swbreak_feature],
14672 "swbreak-feature", "swbreak-feature", 0);
14673
14674 add_packet_config_cmd (&remote_protocol_packets[PACKET_hwbreak_feature],
14675 "hwbreak-feature", "hwbreak-feature", 0);
14676
89245bc0
DB
14677 add_packet_config_cmd (&remote_protocol_packets[PACKET_fork_event_feature],
14678 "fork-event-feature", "fork-event-feature", 0);
14679
14680 add_packet_config_cmd (&remote_protocol_packets[PACKET_vfork_event_feature],
14681 "vfork-event-feature", "vfork-event-feature", 0);
14682
b20a6524
MM
14683 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_pt_size],
14684 "Qbtrace-conf:pt:size", "btrace-conf-pt-size", 0);
14685
750ce8d1
YQ
14686 add_packet_config_cmd (&remote_protocol_packets[PACKET_vContSupported],
14687 "vContSupported", "verbose-resume-supported", 0);
14688
94585166
DB
14689 add_packet_config_cmd (&remote_protocol_packets[PACKET_exec_event_feature],
14690 "exec-event-feature", "exec-event-feature", 0);
14691
de979965
PA
14692 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCtrlC],
14693 "vCtrlC", "ctrl-c", 0);
14694
65706a29
PA
14695 add_packet_config_cmd (&remote_protocol_packets[PACKET_QThreadEvents],
14696 "QThreadEvents", "thread-events", 0);
14697
f2faf941
PA
14698 add_packet_config_cmd (&remote_protocol_packets[PACKET_no_resumed],
14699 "N stop reply", "no-resumed-stop-reply", 0);
14700
0b736949
DB
14701 /* Assert that we've registered "set remote foo-packet" commands
14702 for all packet configs. */
ca4f7f8b
PA
14703 {
14704 int i;
14705
14706 for (i = 0; i < PACKET_MAX; i++)
14707 {
14708 /* Ideally all configs would have a command associated. Some
14709 still don't though. */
14710 int excepted;
14711
14712 switch (i)
14713 {
14714 case PACKET_QNonStop:
ca4f7f8b
PA
14715 case PACKET_EnableDisableTracepoints_feature:
14716 case PACKET_tracenz_feature:
14717 case PACKET_DisconnectedTracing_feature:
14718 case PACKET_augmented_libraries_svr4_read_feature:
936d2992
PA
14719 case PACKET_qCRC:
14720 /* Additions to this list need to be well justified:
14721 pre-existing packets are OK; new packets are not. */
ca4f7f8b
PA
14722 excepted = 1;
14723 break;
14724 default:
14725 excepted = 0;
14726 break;
14727 }
14728
14729 /* This catches both forgetting to add a config command, and
14730 forgetting to remove a packet from the exception list. */
14731 gdb_assert (excepted == (remote_protocol_packets[i].name == NULL));
14732 }
14733 }
14734
37a105a1
DJ
14735 /* Keep the old ``set remote Z-packet ...'' working. Each individual
14736 Z sub-packet has its own set and show commands, but users may
14737 have sets to this variable in their .gdbinit files (or in their
14738 documentation). */
e9e68a56 14739 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
7915a72c
AC
14740 &remote_Z_packet_detect, _("\
14741Set use of remote protocol `Z' packets"), _("\
14742Show use of remote protocol `Z' packets "), _("\
3b64bf98 14743When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
7915a72c 14744packets."),
e9e68a56 14745 set_remote_protocol_Z_packet_cmd,
3e43a32a
MS
14746 show_remote_protocol_Z_packet_cmd,
14747 /* FIXME: i18n: Use of remote protocol
14748 `Z' packets is %s. */
e9e68a56 14749 &remote_set_cmdlist, &remote_show_cmdlist);
449092f6 14750
a6b151f1
DJ
14751 add_prefix_cmd ("remote", class_files, remote_command, _("\
14752Manipulate files on the remote system\n\
14753Transfer files to and from the remote target system."),
14754 &remote_cmdlist, "remote ",
14755 0 /* allow-unknown */, &cmdlist);
14756
14757 add_cmd ("put", class_files, remote_put_command,
14758 _("Copy a local file to the remote system."),
14759 &remote_cmdlist);
14760
14761 add_cmd ("get", class_files, remote_get_command,
14762 _("Copy a remote file to the local system."),
14763 &remote_cmdlist);
14764
14765 add_cmd ("delete", class_files, remote_delete_command,
14766 _("Delete a remote file."),
14767 &remote_cmdlist);
14768
2d717e4f 14769 add_setshow_string_noescape_cmd ("exec-file", class_files,
94585166 14770 &remote_exec_file_var, _("\
2d717e4f 14771Set the remote pathname for \"run\""), _("\
94585166
DB
14772Show the remote pathname for \"run\""), NULL,
14773 set_remote_exec_file,
14774 show_remote_exec_file,
14775 &remote_set_cmdlist,
14776 &remote_show_cmdlist);
2d717e4f 14777
c1e36e3e
PA
14778 add_setshow_boolean_cmd ("range-stepping", class_run,
14779 &use_range_stepping, _("\
14780Enable or disable range stepping."), _("\
14781Show whether target-assisted range stepping is enabled."), _("\
14782If on, and the target supports it, when stepping a source line, GDB\n\
14783tells the target to step the corresponding range of addresses itself instead\n\
14784of issuing multiple single-steps. This speeds up source level\n\
14785stepping. If off, GDB always issues single-steps, even if range\n\
14786stepping is supported by the target. The default is on."),
14787 set_range_stepping,
14788 show_range_stepping,
14789 &setlist,
14790 &showlist);
14791
449092f6
CV
14792 /* Eventually initialize fileio. See fileio.c */
14793 initialize_remote_fileio (remote_set_cmdlist, remote_show_cmdlist);
79d7f229 14794
ba348170 14795 /* Take advantage of the fact that the TID field is not used, to tag
79d7f229 14796 special ptids with it set to != 0. */
fd79271b
TT
14797 magic_null_ptid = ptid_t (42000, -1, 1);
14798 not_sent_ptid = ptid_t (42000, -2, 1);
14799 any_thread_ptid = ptid_t (42000, 0, 1);
c906108c 14800}
This page took 6.509986 seconds and 4 git commands to generate.