Add ATTRIBUTE_UNUSED_RESULT to macro_buffer
[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 gdb_flush (gdb_stdout);
5831 }
5832
8d64371b 5833 xsnprintf (rs->buf.data (), get_remote_packet_size (), "vAttach;%x", pid);
2d717e4f 5834 putpkt (rs->buf);
8d64371b 5835 getpkt (&rs->buf, 0);
2d717e4f 5836
4082afcc
PA
5837 switch (packet_ok (rs->buf,
5838 &remote_protocol_packets[PACKET_vAttach]))
2d717e4f 5839 {
4082afcc 5840 case PACKET_OK:
6efcd9a8 5841 if (!target_is_non_stop_p ())
74531fed
PA
5842 {
5843 /* Save the reply for later. */
8d64371b
TT
5844 wait_status = (char *) alloca (strlen (rs->buf.data ()) + 1);
5845 strcpy (wait_status, rs->buf.data ());
74531fed 5846 }
8d64371b 5847 else if (strcmp (rs->buf.data (), "OK") != 0)
74531fed 5848 error (_("Attaching to %s failed with: %s"),
f2907e49 5849 target_pid_to_str (ptid_t (pid)),
8d64371b 5850 rs->buf.data ());
4082afcc
PA
5851 break;
5852 case PACKET_UNKNOWN:
5853 error (_("This target does not support attaching to a process"));
5854 default:
5855 error (_("Attaching to %s failed"),
f2907e49 5856 target_pid_to_str (ptid_t (pid)));
2d717e4f 5857 }
2d717e4f 5858
1b6e6f5c 5859 set_current_inferior (remote_add_inferior (0, pid, 1, 0));
bad34192 5860
f2907e49 5861 inferior_ptid = ptid_t (pid);
79d7f229 5862
6efcd9a8 5863 if (target_is_non_stop_p ())
bad34192
PA
5864 {
5865 struct thread_info *thread;
79d7f229 5866
bad34192 5867 /* Get list of threads. */
f6ac5f3d 5868 update_thread_list ();
82f73884 5869
00431a78 5870 thread = first_thread_of_inferior (current_inferior ());
bad34192
PA
5871 if (thread)
5872 inferior_ptid = thread->ptid;
5873 else
f2907e49 5874 inferior_ptid = ptid_t (pid);
bad34192
PA
5875
5876 /* Invalidate our notion of the remote current thread. */
47f8a51d 5877 record_currthread (rs, minus_one_ptid);
bad34192 5878 }
74531fed 5879 else
bad34192
PA
5880 {
5881 /* Now, if we have thread information, update inferior_ptid. */
5882 inferior_ptid = remote_current_thread (inferior_ptid);
5883
5884 /* Add the main thread to the thread list. */
00aecdcf
PA
5885 thread_info *thr = add_thread_silent (inferior_ptid);
5886 /* Don't consider the thread stopped until we've processed the
5887 saved stop reply. */
5888 set_executing (thr->ptid, true);
bad34192 5889 }
c0a2216e 5890
96ef3384
UW
5891 /* Next, if the target can specify a description, read it. We do
5892 this before anything involving memory or registers. */
5893 target_find_description ();
5894
6efcd9a8 5895 if (!target_is_non_stop_p ())
74531fed
PA
5896 {
5897 /* Use the previously fetched status. */
5898 gdb_assert (wait_status != NULL);
5899
5900 if (target_can_async_p ())
5901 {
722247f1 5902 struct notif_event *reply
6b8edb51 5903 = remote_notif_parse (this, &notif_client_stop, wait_status);
74531fed 5904
722247f1 5905 push_stop_reply ((struct stop_reply *) reply);
74531fed 5906
6a3753b3 5907 target_async (1);
74531fed
PA
5908 }
5909 else
5910 {
5911 gdb_assert (wait_status != NULL);
8d64371b 5912 strcpy (rs->buf.data (), wait_status);
74531fed
PA
5913 rs->cached_wait_status = 1;
5914 }
5915 }
5916 else
5917 gdb_assert (wait_status == NULL);
2d717e4f
DJ
5918}
5919
b9c1d481
AS
5920/* Implementation of the to_post_attach method. */
5921
f6ac5f3d
PA
5922void
5923extended_remote_target::post_attach (int pid)
b9c1d481 5924{
6efcd9a8
PA
5925 /* Get text, data & bss offsets. */
5926 get_offsets ();
5927
b9c1d481
AS
5928 /* In certain cases GDB might not have had the chance to start
5929 symbol lookup up until now. This could happen if the debugged
5930 binary is not using shared libraries, the vsyscall page is not
5931 present (on Linux) and the binary itself hadn't changed since the
5932 debugging process was started. */
5933 if (symfile_objfile != NULL)
5934 remote_check_symbols();
5935}
5936
c906108c 5937\f
506fb367
DJ
5938/* Check for the availability of vCont. This function should also check
5939 the response. */
c906108c 5940
6b8edb51
PA
5941void
5942remote_target::remote_vcont_probe ()
c906108c 5943{
6b8edb51 5944 remote_state *rs = get_remote_state ();
2e9f7625 5945 char *buf;
6d820c5c 5946
8d64371b 5947 strcpy (rs->buf.data (), "vCont?");
2e9f7625 5948 putpkt (rs->buf);
8d64371b
TT
5949 getpkt (&rs->buf, 0);
5950 buf = rs->buf.data ();
c906108c 5951
506fb367 5952 /* Make sure that the features we assume are supported. */
61012eef 5953 if (startswith (buf, "vCont"))
506fb367
DJ
5954 {
5955 char *p = &buf[5];
750ce8d1 5956 int support_c, support_C;
506fb367 5957
750ce8d1
YQ
5958 rs->supports_vCont.s = 0;
5959 rs->supports_vCont.S = 0;
506fb367
DJ
5960 support_c = 0;
5961 support_C = 0;
d458bd84 5962 rs->supports_vCont.t = 0;
c1e36e3e 5963 rs->supports_vCont.r = 0;
506fb367
DJ
5964 while (p && *p == ';')
5965 {
5966 p++;
5967 if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 5968 rs->supports_vCont.s = 1;
506fb367 5969 else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 5970 rs->supports_vCont.S = 1;
506fb367
DJ
5971 else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
5972 support_c = 1;
5973 else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
5974 support_C = 1;
74531fed 5975 else if (*p == 't' && (*(p + 1) == ';' || *(p + 1) == 0))
d458bd84 5976 rs->supports_vCont.t = 1;
c1e36e3e
PA
5977 else if (*p == 'r' && (*(p + 1) == ';' || *(p + 1) == 0))
5978 rs->supports_vCont.r = 1;
506fb367
DJ
5979
5980 p = strchr (p, ';');
5981 }
c906108c 5982
750ce8d1
YQ
5983 /* If c, and C are not all supported, we can't use vCont. Clearing
5984 BUF will make packet_ok disable the packet. */
5985 if (!support_c || !support_C)
506fb367
DJ
5986 buf[0] = 0;
5987 }
c906108c 5988
8d64371b 5989 packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCont]);
506fb367 5990}
c906108c 5991
0d8f58ca
PA
5992/* Helper function for building "vCont" resumptions. Write a
5993 resumption to P. ENDP points to one-passed-the-end of the buffer
5994 we're allowed to write to. Returns BUF+CHARACTERS_WRITTEN. The
5995 thread to be resumed is PTID; STEP and SIGGNAL indicate whether the
5996 resumed thread should be single-stepped and/or signalled. If PTID
5997 equals minus_one_ptid, then all threads are resumed; if PTID
5998 represents a process, then all threads of the process are resumed;
5999 the thread to be stepped and/or signalled is given in the global
6000 INFERIOR_PTID. */
6001
6b8edb51
PA
6002char *
6003remote_target::append_resumption (char *p, char *endp,
6004 ptid_t ptid, int step, gdb_signal siggnal)
0d8f58ca
PA
6005{
6006 struct remote_state *rs = get_remote_state ();
6007
a493e3e2 6008 if (step && siggnal != GDB_SIGNAL_0)
0d8f58ca 6009 p += xsnprintf (p, endp - p, ";S%02x", siggnal);
c1e36e3e
PA
6010 else if (step
6011 /* GDB is willing to range step. */
6012 && use_range_stepping
6013 /* Target supports range stepping. */
6014 && rs->supports_vCont.r
6015 /* We don't currently support range stepping multiple
6016 threads with a wildcard (though the protocol allows it,
6017 so stubs shouldn't make an active effort to forbid
6018 it). */
0e998d96 6019 && !(remote_multi_process_p (rs) && ptid.is_pid ()))
c1e36e3e
PA
6020 {
6021 struct thread_info *tp;
6022
d7e15655 6023 if (ptid == minus_one_ptid)
c1e36e3e
PA
6024 {
6025 /* If we don't know about the target thread's tid, then
6026 we're resuming magic_null_ptid (see caller). */
6027 tp = find_thread_ptid (magic_null_ptid);
6028 }
6029 else
6030 tp = find_thread_ptid (ptid);
6031 gdb_assert (tp != NULL);
6032
6033 if (tp->control.may_range_step)
6034 {
6035 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
6036
6037 p += xsnprintf (p, endp - p, ";r%s,%s",
6038 phex_nz (tp->control.step_range_start,
6039 addr_size),
6040 phex_nz (tp->control.step_range_end,
6041 addr_size));
6042 }
6043 else
6044 p += xsnprintf (p, endp - p, ";s");
6045 }
0d8f58ca
PA
6046 else if (step)
6047 p += xsnprintf (p, endp - p, ";s");
a493e3e2 6048 else if (siggnal != GDB_SIGNAL_0)
0d8f58ca
PA
6049 p += xsnprintf (p, endp - p, ";C%02x", siggnal);
6050 else
6051 p += xsnprintf (p, endp - p, ";c");
6052
0e998d96 6053 if (remote_multi_process_p (rs) && ptid.is_pid ())
0d8f58ca
PA
6054 {
6055 ptid_t nptid;
6056
6057 /* All (-1) threads of process. */
e99b03dc 6058 nptid = ptid_t (ptid.pid (), -1, 0);
0d8f58ca
PA
6059
6060 p += xsnprintf (p, endp - p, ":");
6061 p = write_ptid (p, endp, nptid);
6062 }
d7e15655 6063 else if (ptid != minus_one_ptid)
0d8f58ca
PA
6064 {
6065 p += xsnprintf (p, endp - p, ":");
6066 p = write_ptid (p, endp, ptid);
6067 }
6068
6069 return p;
6070}
6071
799a2abe
PA
6072/* Clear the thread's private info on resume. */
6073
6074static void
6075resume_clear_thread_private_info (struct thread_info *thread)
6076{
6077 if (thread->priv != NULL)
6078 {
7aabaf9d
SM
6079 remote_thread_info *priv = get_remote_thread_info (thread);
6080
6081 priv->stop_reason = TARGET_STOPPED_BY_NO_REASON;
6082 priv->watch_data_address = 0;
799a2abe
PA
6083 }
6084}
6085
e5ef252a
PA
6086/* Append a vCont continue-with-signal action for threads that have a
6087 non-zero stop signal. */
6088
6b8edb51
PA
6089char *
6090remote_target::append_pending_thread_resumptions (char *p, char *endp,
6091 ptid_t ptid)
e5ef252a 6092{
08036331
PA
6093 for (thread_info *thread : all_non_exited_threads (ptid))
6094 if (inferior_ptid != thread->ptid
70509625 6095 && thread->suspend.stop_signal != GDB_SIGNAL_0)
e5ef252a
PA
6096 {
6097 p = append_resumption (p, endp, thread->ptid,
6098 0, thread->suspend.stop_signal);
6099 thread->suspend.stop_signal = GDB_SIGNAL_0;
799a2abe 6100 resume_clear_thread_private_info (thread);
e5ef252a
PA
6101 }
6102
6103 return p;
6104}
6105
7b68ffbb
PA
6106/* Set the target running, using the packets that use Hc
6107 (c/s/C/S). */
6108
6b8edb51
PA
6109void
6110remote_target::remote_resume_with_hc (ptid_t ptid, int step,
6111 gdb_signal siggnal)
7b68ffbb
PA
6112{
6113 struct remote_state *rs = get_remote_state ();
7b68ffbb
PA
6114 char *buf;
6115
6116 rs->last_sent_signal = siggnal;
6117 rs->last_sent_step = step;
6118
6119 /* The c/s/C/S resume packets use Hc, so set the continue
6120 thread. */
d7e15655 6121 if (ptid == minus_one_ptid)
7b68ffbb
PA
6122 set_continue_thread (any_thread_ptid);
6123 else
6124 set_continue_thread (ptid);
6125
08036331 6126 for (thread_info *thread : all_non_exited_threads ())
7b68ffbb
PA
6127 resume_clear_thread_private_info (thread);
6128
8d64371b 6129 buf = rs->buf.data ();
6b8edb51 6130 if (::execution_direction == EXEC_REVERSE)
7b68ffbb
PA
6131 {
6132 /* We don't pass signals to the target in reverse exec mode. */
6133 if (info_verbose && siggnal != GDB_SIGNAL_0)
6134 warning (_(" - Can't pass signal %d to target in reverse: ignored."),
6135 siggnal);
6136
6137 if (step && packet_support (PACKET_bs) == PACKET_DISABLE)
6138 error (_("Remote reverse-step not supported."));
6139 if (!step && packet_support (PACKET_bc) == PACKET_DISABLE)
6140 error (_("Remote reverse-continue not supported."));
6141
6142 strcpy (buf, step ? "bs" : "bc");
6143 }
6144 else if (siggnal != GDB_SIGNAL_0)
6145 {
6146 buf[0] = step ? 'S' : 'C';
6147 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
6148 buf[2] = tohex (((int) siggnal) & 0xf);
6149 buf[3] = '\0';
6150 }
6151 else
6152 strcpy (buf, step ? "s" : "c");
6153
6154 putpkt (buf);
6155}
6156
506fb367
DJ
6157/* Resume the remote inferior by using a "vCont" packet. The thread
6158 to be resumed is PTID; STEP and SIGGNAL indicate whether the
79d7f229
PA
6159 resumed thread should be single-stepped and/or signalled. If PTID
6160 equals minus_one_ptid, then all threads are resumed; the thread to
6161 be stepped and/or signalled is given in the global INFERIOR_PTID.
6162 This function returns non-zero iff it resumes the inferior.
44eaed12 6163
7b68ffbb
PA
6164 This function issues a strict subset of all possible vCont commands
6165 at the moment. */
44eaed12 6166
6b8edb51
PA
6167int
6168remote_target::remote_resume_with_vcont (ptid_t ptid, int step,
6169 enum gdb_signal siggnal)
506fb367
DJ
6170{
6171 struct remote_state *rs = get_remote_state ();
82f73884
PA
6172 char *p;
6173 char *endp;
44eaed12 6174
7b68ffbb 6175 /* No reverse execution actions defined for vCont. */
6b8edb51 6176 if (::execution_direction == EXEC_REVERSE)
7b68ffbb
PA
6177 return 0;
6178
4082afcc 6179 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6b8edb51 6180 remote_vcont_probe ();
44eaed12 6181
4082afcc 6182 if (packet_support (PACKET_vCont) == PACKET_DISABLE)
6d820c5c 6183 return 0;
44eaed12 6184
8d64371b
TT
6185 p = rs->buf.data ();
6186 endp = p + get_remote_packet_size ();
82f73884 6187
506fb367
DJ
6188 /* If we could generate a wider range of packets, we'd have to worry
6189 about overflowing BUF. Should there be a generic
6190 "multi-part-packet" packet? */
6191
0d8f58ca
PA
6192 p += xsnprintf (p, endp - p, "vCont");
6193
d7e15655 6194 if (ptid == magic_null_ptid)
c906108c 6195 {
79d7f229
PA
6196 /* MAGIC_NULL_PTID means that we don't have any active threads,
6197 so we don't have any TID numbers the inferior will
6198 understand. Make sure to only send forms that do not specify
6199 a TID. */
a9cbf802 6200 append_resumption (p, endp, minus_one_ptid, step, siggnal);
506fb367 6201 }
d7e15655 6202 else if (ptid == minus_one_ptid || ptid.is_pid ())
506fb367 6203 {
0d8f58ca
PA
6204 /* Resume all threads (of all processes, or of a single
6205 process), with preference for INFERIOR_PTID. This assumes
6206 inferior_ptid belongs to the set of all threads we are about
6207 to resume. */
a493e3e2 6208 if (step || siggnal != GDB_SIGNAL_0)
82f73884 6209 {
0d8f58ca
PA
6210 /* Step inferior_ptid, with or without signal. */
6211 p = append_resumption (p, endp, inferior_ptid, step, siggnal);
82f73884 6212 }
0d8f58ca 6213
e5ef252a
PA
6214 /* Also pass down any pending signaled resumption for other
6215 threads not the current. */
6216 p = append_pending_thread_resumptions (p, endp, ptid);
6217
0d8f58ca 6218 /* And continue others without a signal. */
a493e3e2 6219 append_resumption (p, endp, ptid, /*step=*/ 0, GDB_SIGNAL_0);
c906108c
SS
6220 }
6221 else
506fb367
DJ
6222 {
6223 /* Scheduler locking; resume only PTID. */
a9cbf802 6224 append_resumption (p, endp, ptid, step, siggnal);
506fb367 6225 }
c906108c 6226
8d64371b 6227 gdb_assert (strlen (rs->buf.data ()) < get_remote_packet_size ());
82f73884 6228 putpkt (rs->buf);
506fb367 6229
6efcd9a8 6230 if (target_is_non_stop_p ())
74531fed
PA
6231 {
6232 /* In non-stop, the stub replies to vCont with "OK". The stop
6233 reply will be reported asynchronously by means of a `%Stop'
6234 notification. */
8d64371b
TT
6235 getpkt (&rs->buf, 0);
6236 if (strcmp (rs->buf.data (), "OK") != 0)
6237 error (_("Unexpected vCont reply in non-stop mode: %s"),
6238 rs->buf.data ());
74531fed
PA
6239 }
6240
506fb367 6241 return 1;
c906108c 6242}
43ff13b4 6243
506fb367
DJ
6244/* Tell the remote machine to resume. */
6245
f6ac5f3d
PA
6246void
6247remote_target::resume (ptid_t ptid, int step, enum gdb_signal siggnal)
43ff13b4 6248{
d01949b6 6249 struct remote_state *rs = get_remote_state ();
43ff13b4 6250
85ad3aaf
PA
6251 /* When connected in non-stop mode, the core resumes threads
6252 individually. Resuming remote threads directly in target_resume
6253 would thus result in sending one packet per thread. Instead, to
6254 minimize roundtrip latency, here we just store the resume
6255 request; the actual remote resumption will be done in
6256 target_commit_resume / remote_commit_resume, where we'll be able
6257 to do vCont action coalescing. */
f6ac5f3d 6258 if (target_is_non_stop_p () && ::execution_direction != EXEC_REVERSE)
85ad3aaf 6259 {
7aabaf9d 6260 remote_thread_info *remote_thr;
85ad3aaf 6261
d7e15655 6262 if (minus_one_ptid == ptid || ptid.is_pid ())
7aabaf9d 6263 remote_thr = get_remote_thread_info (inferior_ptid);
85ad3aaf 6264 else
7aabaf9d
SM
6265 remote_thr = get_remote_thread_info (ptid);
6266
85ad3aaf
PA
6267 remote_thr->last_resume_step = step;
6268 remote_thr->last_resume_sig = siggnal;
6269 return;
6270 }
6271
722247f1
YQ
6272 /* In all-stop, we can't mark REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN
6273 (explained in remote-notif.c:handle_notification) so
6274 remote_notif_process is not called. We need find a place where
6275 it is safe to start a 'vNotif' sequence. It is good to do it
6276 before resuming inferior, because inferior was stopped and no RSP
6277 traffic at that moment. */
6efcd9a8 6278 if (!target_is_non_stop_p ())
5965e028 6279 remote_notif_process (rs->notif_state, &notif_client_stop);
722247f1 6280
f6ac5f3d 6281 rs->last_resume_exec_dir = ::execution_direction;
3a00c802 6282
7b68ffbb
PA
6283 /* Prefer vCont, and fallback to s/c/S/C, which use Hc. */
6284 if (!remote_resume_with_vcont (ptid, step, siggnal))
6b8edb51 6285 remote_resume_with_hc (ptid, step, siggnal);
43ff13b4 6286
2acceee2 6287 /* We are about to start executing the inferior, let's register it
0df8b418
MS
6288 with the event loop. NOTE: this is the one place where all the
6289 execution commands end up. We could alternatively do this in each
23860348 6290 of the execution commands in infcmd.c. */
2acceee2
JM
6291 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
6292 into infcmd.c in order to allow inferior function calls to work
23860348 6293 NOT asynchronously. */
362646f5 6294 if (target_can_async_p ())
6a3753b3 6295 target_async (1);
e24a49d8
PA
6296
6297 /* We've just told the target to resume. The remote server will
6298 wait for the inferior to stop, and then send a stop reply. In
6299 the mean time, we can't start another command/query ourselves
74531fed
PA
6300 because the stub wouldn't be ready to process it. This applies
6301 only to the base all-stop protocol, however. In non-stop (which
6302 only supports vCont), the stub replies with an "OK", and is
6303 immediate able to process further serial input. */
6efcd9a8 6304 if (!target_is_non_stop_p ())
74531fed 6305 rs->waiting_for_stop_reply = 1;
43ff13b4 6306}
85ad3aaf 6307
85ad3aaf
PA
6308static int is_pending_fork_parent_thread (struct thread_info *thread);
6309
6310/* Private per-inferior info for target remote processes. */
6311
089354bb 6312struct remote_inferior : public private_inferior
85ad3aaf
PA
6313{
6314 /* Whether we can send a wildcard vCont for this process. */
089354bb 6315 bool may_wildcard_vcont = true;
85ad3aaf
PA
6316};
6317
089354bb
SM
6318/* Get the remote private inferior data associated to INF. */
6319
6320static remote_inferior *
6321get_remote_inferior (inferior *inf)
6322{
6323 if (inf->priv == NULL)
6324 inf->priv.reset (new remote_inferior);
6325
6326 return static_cast<remote_inferior *> (inf->priv.get ());
6327}
6328
f5db4863 6329/* Class used to track the construction of a vCont packet in the
85ad3aaf
PA
6330 outgoing packet buffer. This is used to send multiple vCont
6331 packets if we have more actions than would fit a single packet. */
6332
f5db4863 6333class vcont_builder
85ad3aaf 6334{
f5db4863 6335public:
6b8edb51
PA
6336 explicit vcont_builder (remote_target *remote)
6337 : m_remote (remote)
f5db4863
PA
6338 {
6339 restart ();
6340 }
6341
6342 void flush ();
6343 void push_action (ptid_t ptid, bool step, gdb_signal siggnal);
6344
6345private:
6346 void restart ();
6347
6b8edb51
PA
6348 /* The remote target. */
6349 remote_target *m_remote;
6350
85ad3aaf
PA
6351 /* Pointer to the first action. P points here if no action has been
6352 appended yet. */
f5db4863 6353 char *m_first_action;
85ad3aaf
PA
6354
6355 /* Where the next action will be appended. */
f5db4863 6356 char *m_p;
85ad3aaf
PA
6357
6358 /* The end of the buffer. Must never write past this. */
f5db4863 6359 char *m_endp;
85ad3aaf
PA
6360};
6361
6362/* Prepare the outgoing buffer for a new vCont packet. */
6363
f5db4863
PA
6364void
6365vcont_builder::restart ()
85ad3aaf 6366{
6b8edb51 6367 struct remote_state *rs = m_remote->get_remote_state ();
85ad3aaf 6368
8d64371b
TT
6369 m_p = rs->buf.data ();
6370 m_endp = m_p + m_remote->get_remote_packet_size ();
f5db4863
PA
6371 m_p += xsnprintf (m_p, m_endp - m_p, "vCont");
6372 m_first_action = m_p;
85ad3aaf
PA
6373}
6374
6375/* If the vCont packet being built has any action, send it to the
6376 remote end. */
6377
f5db4863
PA
6378void
6379vcont_builder::flush ()
85ad3aaf
PA
6380{
6381 struct remote_state *rs;
6382
f5db4863 6383 if (m_p == m_first_action)
85ad3aaf
PA
6384 return;
6385
6b8edb51
PA
6386 rs = m_remote->get_remote_state ();
6387 m_remote->putpkt (rs->buf);
8d64371b
TT
6388 m_remote->getpkt (&rs->buf, 0);
6389 if (strcmp (rs->buf.data (), "OK") != 0)
6390 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf.data ());
85ad3aaf
PA
6391}
6392
6393/* The largest action is range-stepping, with its two addresses. This
6394 is more than sufficient. If a new, bigger action is created, it'll
6395 quickly trigger a failed assertion in append_resumption (and we'll
6396 just bump this). */
6397#define MAX_ACTION_SIZE 200
6398
6399/* Append a new vCont action in the outgoing packet being built. If
6400 the action doesn't fit the packet along with previous actions, push
6401 what we've got so far to the remote end and start over a new vCont
6402 packet (with the new action). */
6403
f5db4863
PA
6404void
6405vcont_builder::push_action (ptid_t ptid, bool step, gdb_signal siggnal)
85ad3aaf
PA
6406{
6407 char buf[MAX_ACTION_SIZE + 1];
85ad3aaf 6408
6b8edb51
PA
6409 char *endp = m_remote->append_resumption (buf, buf + sizeof (buf),
6410 ptid, step, siggnal);
85ad3aaf
PA
6411
6412 /* Check whether this new action would fit in the vCont packet along
6413 with previous actions. If not, send what we've got so far and
6414 start a new vCont packet. */
f5db4863
PA
6415 size_t rsize = endp - buf;
6416 if (rsize > m_endp - m_p)
85ad3aaf 6417 {
f5db4863
PA
6418 flush ();
6419 restart ();
85ad3aaf
PA
6420
6421 /* Should now fit. */
f5db4863 6422 gdb_assert (rsize <= m_endp - m_p);
85ad3aaf
PA
6423 }
6424
f5db4863
PA
6425 memcpy (m_p, buf, rsize);
6426 m_p += rsize;
6427 *m_p = '\0';
85ad3aaf
PA
6428}
6429
6430/* to_commit_resume implementation. */
6431
f6ac5f3d
PA
6432void
6433remote_target::commit_resume ()
85ad3aaf 6434{
85ad3aaf
PA
6435 int any_process_wildcard;
6436 int may_global_wildcard_vcont;
85ad3aaf
PA
6437
6438 /* If connected in all-stop mode, we'd send the remote resume
6439 request directly from remote_resume. Likewise if
6440 reverse-debugging, as there are no defined vCont actions for
6441 reverse execution. */
f6ac5f3d 6442 if (!target_is_non_stop_p () || ::execution_direction == EXEC_REVERSE)
85ad3aaf
PA
6443 return;
6444
6445 /* Try to send wildcard actions ("vCont;c" or "vCont;c:pPID.-1")
6446 instead of resuming all threads of each process individually.
6447 However, if any thread of a process must remain halted, we can't
6448 send wildcard resumes and must send one action per thread.
6449
6450 Care must be taken to not resume threads/processes the server
6451 side already told us are stopped, but the core doesn't know about
6452 yet, because the events are still in the vStopped notification
6453 queue. For example:
6454
6455 #1 => vCont s:p1.1;c
6456 #2 <= OK
6457 #3 <= %Stopped T05 p1.1
6458 #4 => vStopped
6459 #5 <= T05 p1.2
6460 #6 => vStopped
6461 #7 <= OK
6462 #8 (infrun handles the stop for p1.1 and continues stepping)
6463 #9 => vCont s:p1.1;c
6464
6465 The last vCont above would resume thread p1.2 by mistake, because
6466 the server has no idea that the event for p1.2 had not been
6467 handled yet.
6468
6469 The server side must similarly ignore resume actions for the
6470 thread that has a pending %Stopped notification (and any other
6471 threads with events pending), until GDB acks the notification
6472 with vStopped. Otherwise, e.g., the following case is
6473 mishandled:
6474
6475 #1 => g (or any other packet)
6476 #2 <= [registers]
6477 #3 <= %Stopped T05 p1.2
6478 #4 => vCont s:p1.1;c
6479 #5 <= OK
6480
6481 Above, the server must not resume thread p1.2. GDB can't know
6482 that p1.2 stopped until it acks the %Stopped notification, and
6483 since from GDB's perspective all threads should be running, it
6484 sends a "c" action.
6485
6486 Finally, special care must also be given to handling fork/vfork
6487 events. A (v)fork event actually tells us that two processes
6488 stopped -- the parent and the child. Until we follow the fork,
6489 we must not resume the child. Therefore, if we have a pending
6490 fork follow, we must not send a global wildcard resume action
6491 (vCont;c). We can still send process-wide wildcards though. */
6492
6493 /* Start by assuming a global wildcard (vCont;c) is possible. */
6494 may_global_wildcard_vcont = 1;
6495
6496 /* And assume every process is individually wildcard-able too. */
08036331 6497 for (inferior *inf : all_non_exited_inferiors ())
85ad3aaf 6498 {
089354bb
SM
6499 remote_inferior *priv = get_remote_inferior (inf);
6500
6501 priv->may_wildcard_vcont = true;
85ad3aaf
PA
6502 }
6503
6504 /* Check for any pending events (not reported or processed yet) and
6505 disable process and global wildcard resumes appropriately. */
6506 check_pending_events_prevent_wildcard_vcont (&may_global_wildcard_vcont);
6507
08036331 6508 for (thread_info *tp : all_non_exited_threads ())
85ad3aaf
PA
6509 {
6510 /* If a thread of a process is not meant to be resumed, then we
6511 can't wildcard that process. */
6512 if (!tp->executing)
6513 {
089354bb 6514 get_remote_inferior (tp->inf)->may_wildcard_vcont = false;
85ad3aaf
PA
6515
6516 /* And if we can't wildcard a process, we can't wildcard
6517 everything either. */
6518 may_global_wildcard_vcont = 0;
6519 continue;
6520 }
6521
6522 /* If a thread is the parent of an unfollowed fork, then we
6523 can't do a global wildcard, as that would resume the fork
6524 child. */
6525 if (is_pending_fork_parent_thread (tp))
6526 may_global_wildcard_vcont = 0;
6527 }
6528
6529 /* Now let's build the vCont packet(s). Actions must be appended
6530 from narrower to wider scopes (thread -> process -> global). If
6531 we end up with too many actions for a single packet vcont_builder
6532 flushes the current vCont packet to the remote side and starts a
6533 new one. */
6b8edb51 6534 struct vcont_builder vcont_builder (this);
85ad3aaf
PA
6535
6536 /* Threads first. */
08036331 6537 for (thread_info *tp : all_non_exited_threads ())
85ad3aaf 6538 {
7aabaf9d 6539 remote_thread_info *remote_thr = get_remote_thread_info (tp);
85ad3aaf
PA
6540
6541 if (!tp->executing || remote_thr->vcont_resumed)
6542 continue;
6543
6544 gdb_assert (!thread_is_in_step_over_chain (tp));
6545
6546 if (!remote_thr->last_resume_step
6547 && remote_thr->last_resume_sig == GDB_SIGNAL_0
089354bb 6548 && get_remote_inferior (tp->inf)->may_wildcard_vcont)
85ad3aaf
PA
6549 {
6550 /* We'll send a wildcard resume instead. */
6551 remote_thr->vcont_resumed = 1;
6552 continue;
6553 }
6554
f5db4863 6555 vcont_builder.push_action (tp->ptid,
85ad3aaf
PA
6556 remote_thr->last_resume_step,
6557 remote_thr->last_resume_sig);
6558 remote_thr->vcont_resumed = 1;
6559 }
6560
6561 /* Now check whether we can send any process-wide wildcard. This is
6562 to avoid sending a global wildcard in the case nothing is
6563 supposed to be resumed. */
6564 any_process_wildcard = 0;
6565
08036331 6566 for (inferior *inf : all_non_exited_inferiors ())
85ad3aaf 6567 {
089354bb 6568 if (get_remote_inferior (inf)->may_wildcard_vcont)
85ad3aaf
PA
6569 {
6570 any_process_wildcard = 1;
6571 break;
6572 }
6573 }
6574
6575 if (any_process_wildcard)
6576 {
6577 /* If all processes are wildcard-able, then send a single "c"
6578 action, otherwise, send an "all (-1) threads of process"
6579 continue action for each running process, if any. */
6580 if (may_global_wildcard_vcont)
6581 {
f5db4863
PA
6582 vcont_builder.push_action (minus_one_ptid,
6583 false, GDB_SIGNAL_0);
85ad3aaf
PA
6584 }
6585 else
6586 {
08036331 6587 for (inferior *inf : all_non_exited_inferiors ())
85ad3aaf 6588 {
089354bb 6589 if (get_remote_inferior (inf)->may_wildcard_vcont)
85ad3aaf 6590 {
f2907e49 6591 vcont_builder.push_action (ptid_t (inf->pid),
f5db4863 6592 false, GDB_SIGNAL_0);
85ad3aaf
PA
6593 }
6594 }
6595 }
6596 }
6597
f5db4863 6598 vcont_builder.flush ();
85ad3aaf
PA
6599}
6600
c906108c 6601\f
43ff13b4 6602
74531fed
PA
6603/* Non-stop version of target_stop. Uses `vCont;t' to stop a remote
6604 thread, all threads of a remote process, or all threads of all
6605 processes. */
6606
6b8edb51
PA
6607void
6608remote_target::remote_stop_ns (ptid_t ptid)
74531fed
PA
6609{
6610 struct remote_state *rs = get_remote_state ();
8d64371b
TT
6611 char *p = rs->buf.data ();
6612 char *endp = p + get_remote_packet_size ();
74531fed 6613
4082afcc 6614 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6b8edb51 6615 remote_vcont_probe ();
74531fed 6616
d458bd84 6617 if (!rs->supports_vCont.t)
74531fed
PA
6618 error (_("Remote server does not support stopping threads"));
6619
d7e15655 6620 if (ptid == minus_one_ptid
0e998d96 6621 || (!remote_multi_process_p (rs) && ptid.is_pid ()))
74531fed
PA
6622 p += xsnprintf (p, endp - p, "vCont;t");
6623 else
6624 {
6625 ptid_t nptid;
6626
74531fed
PA
6627 p += xsnprintf (p, endp - p, "vCont;t:");
6628
0e998d96 6629 if (ptid.is_pid ())
74531fed 6630 /* All (-1) threads of process. */
e99b03dc 6631 nptid = ptid_t (ptid.pid (), -1, 0);
74531fed
PA
6632 else
6633 {
6634 /* Small optimization: if we already have a stop reply for
6635 this thread, no use in telling the stub we want this
6636 stopped. */
6637 if (peek_stop_reply (ptid))
6638 return;
6639
6640 nptid = ptid;
6641 }
6642
a9cbf802 6643 write_ptid (p, endp, nptid);
74531fed
PA
6644 }
6645
6646 /* In non-stop, we get an immediate OK reply. The stop reply will
6647 come in asynchronously by notification. */
6648 putpkt (rs->buf);
8d64371b
TT
6649 getpkt (&rs->buf, 0);
6650 if (strcmp (rs->buf.data (), "OK") != 0)
6651 error (_("Stopping %s failed: %s"), target_pid_to_str (ptid),
6652 rs->buf.data ());
74531fed
PA
6653}
6654
bfedc46a
PA
6655/* All-stop version of target_interrupt. Sends a break or a ^C to
6656 interrupt the remote target. It is undefined which thread of which
6657 process reports the interrupt. */
74531fed 6658
6b8edb51
PA
6659void
6660remote_target::remote_interrupt_as ()
74531fed
PA
6661{
6662 struct remote_state *rs = get_remote_state ();
6663
3a29589a
DJ
6664 rs->ctrlc_pending_p = 1;
6665
74531fed
PA
6666 /* If the inferior is stopped already, but the core didn't know
6667 about it yet, just ignore the request. The cached wait status
6668 will be collected in remote_wait. */
6669 if (rs->cached_wait_status)
6670 return;
6671
9a7071a8
JB
6672 /* Send interrupt_sequence to remote target. */
6673 send_interrupt_sequence ();
74531fed
PA
6674}
6675
de979965
PA
6676/* Non-stop version of target_interrupt. Uses `vCtrlC' to interrupt
6677 the remote target. It is undefined which thread of which process
e42de8c7
PA
6678 reports the interrupt. Throws an error if the packet is not
6679 supported by the server. */
de979965 6680
6b8edb51
PA
6681void
6682remote_target::remote_interrupt_ns ()
de979965
PA
6683{
6684 struct remote_state *rs = get_remote_state ();
8d64371b
TT
6685 char *p = rs->buf.data ();
6686 char *endp = p + get_remote_packet_size ();
de979965
PA
6687
6688 xsnprintf (p, endp - p, "vCtrlC");
6689
6690 /* In non-stop, we get an immediate OK reply. The stop reply will
6691 come in asynchronously by notification. */
6692 putpkt (rs->buf);
8d64371b 6693 getpkt (&rs->buf, 0);
de979965
PA
6694
6695 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCtrlC]))
6696 {
6697 case PACKET_OK:
6698 break;
6699 case PACKET_UNKNOWN:
e42de8c7 6700 error (_("No support for interrupting the remote target."));
de979965 6701 case PACKET_ERROR:
8d64371b 6702 error (_("Interrupting target failed: %s"), rs->buf.data ());
de979965 6703 }
de979965
PA
6704}
6705
bfedc46a 6706/* Implement the to_stop function for the remote targets. */
74531fed 6707
f6ac5f3d
PA
6708void
6709remote_target::stop (ptid_t ptid)
c906108c 6710{
7a292a7a 6711 if (remote_debug)
0f71a2f6 6712 fprintf_unfiltered (gdb_stdlog, "remote_stop called\n");
c906108c 6713
6efcd9a8 6714 if (target_is_non_stop_p ())
74531fed 6715 remote_stop_ns (ptid);
c906108c 6716 else
bfedc46a
PA
6717 {
6718 /* We don't currently have a way to transparently pause the
6719 remote target in all-stop mode. Interrupt it instead. */
de979965 6720 remote_interrupt_as ();
bfedc46a
PA
6721 }
6722}
6723
6724/* Implement the to_interrupt function for the remote targets. */
6725
f6ac5f3d
PA
6726void
6727remote_target::interrupt ()
bfedc46a
PA
6728{
6729 if (remote_debug)
6730 fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n");
6731
e42de8c7
PA
6732 if (target_is_non_stop_p ())
6733 remote_interrupt_ns ();
bfedc46a 6734 else
e42de8c7 6735 remote_interrupt_as ();
c906108c
SS
6736}
6737
93692b58
PA
6738/* Implement the to_pass_ctrlc function for the remote targets. */
6739
f6ac5f3d
PA
6740void
6741remote_target::pass_ctrlc ()
93692b58
PA
6742{
6743 struct remote_state *rs = get_remote_state ();
6744
6745 if (remote_debug)
6746 fprintf_unfiltered (gdb_stdlog, "remote_pass_ctrlc called\n");
6747
6748 /* If we're starting up, we're not fully synced yet. Quit
6749 immediately. */
6750 if (rs->starting_up)
6751 quit ();
6752 /* If ^C has already been sent once, offer to disconnect. */
6753 else if (rs->ctrlc_pending_p)
6754 interrupt_query ();
6755 else
e671cd59 6756 target_interrupt ();
93692b58
PA
6757}
6758
c906108c
SS
6759/* Ask the user what to do when an interrupt is received. */
6760
6b8edb51
PA
6761void
6762remote_target::interrupt_query ()
c906108c 6763{
abc56d60 6764 struct remote_state *rs = get_remote_state ();
c906108c 6765
abc56d60 6766 if (rs->waiting_for_stop_reply && rs->ctrlc_pending_p)
74531fed 6767 {
abc56d60
PA
6768 if (query (_("The target is not responding to interrupt requests.\n"
6769 "Stop debugging it? ")))
74531fed 6770 {
78a095c3 6771 remote_unpush_target ();
abc56d60 6772 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
74531fed
PA
6773 }
6774 }
abc56d60
PA
6775 else
6776 {
6777 if (query (_("Interrupted while waiting for the program.\n"
6778 "Give up waiting? ")))
6779 quit ();
6780 }
c906108c
SS
6781}
6782
6426a772
JM
6783/* Enable/disable target terminal ownership. Most targets can use
6784 terminal groups to control terminal ownership. Remote targets are
6785 different in that explicit transfer of ownership to/from GDB/target
23860348 6786 is required. */
6426a772 6787
f6ac5f3d
PA
6788void
6789remote_target::terminal_inferior ()
6426a772 6790{
6426a772
JM
6791 /* NOTE: At this point we could also register our selves as the
6792 recipient of all input. Any characters typed could then be
23860348 6793 passed on down to the target. */
6426a772
JM
6794}
6795
f6ac5f3d
PA
6796void
6797remote_target::terminal_ours ()
6426a772 6798{
6426a772
JM
6799}
6800
176a6961 6801static void
05be00a8 6802remote_console_output (const char *msg)
c906108c 6803{
05be00a8 6804 const char *p;
c906108c 6805
c5aa993b 6806 for (p = msg; p[0] && p[1]; p += 2)
c906108c
SS
6807 {
6808 char tb[2];
6809 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
a744cf53 6810
c906108c
SS
6811 tb[0] = c;
6812 tb[1] = 0;
43ff13b4 6813 fputs_unfiltered (tb, gdb_stdtarg);
c906108c 6814 }
00db5b94
PA
6815 gdb_flush (gdb_stdtarg);
6816}
74531fed 6817
74531fed
PA
6818DEF_VEC_O(cached_reg_t);
6819
722247f1 6820typedef struct stop_reply
74531fed 6821{
722247f1 6822 struct notif_event base;
74531fed 6823
722247f1 6824 /* The identifier of the thread about this event */
74531fed
PA
6825 ptid_t ptid;
6826
340e3c99 6827 /* The remote state this event is associated with. When the remote
bcc75809
YQ
6828 connection, represented by a remote_state object, is closed,
6829 all the associated stop_reply events should be released. */
6830 struct remote_state *rs;
6831
74531fed
PA
6832 struct target_waitstatus ws;
6833
5cd63fda
PA
6834 /* The architecture associated with the expedited registers. */
6835 gdbarch *arch;
6836
15148d6a
PA
6837 /* Expedited registers. This makes remote debugging a bit more
6838 efficient for those targets that provide critical registers as
6839 part of their normal status mechanism (as another roundtrip to
6840 fetch them is avoided). */
74531fed
PA
6841 VEC(cached_reg_t) *regcache;
6842
f7e6eed5
PA
6843 enum target_stop_reason stop_reason;
6844
74531fed
PA
6845 CORE_ADDR watch_data_address;
6846
dc146f7c 6847 int core;
722247f1 6848} *stop_reply_p;
a744cf53 6849
74531fed
PA
6850static void
6851stop_reply_xfree (struct stop_reply *r)
6852{
f48ff2a7 6853 notif_event_xfree ((struct notif_event *) r);
c906108c
SS
6854}
6855
221e1a37
PA
6856/* Return the length of the stop reply queue. */
6857
6b8edb51
PA
6858int
6859remote_target::stop_reply_queue_length ()
221e1a37 6860{
6b8edb51 6861 remote_state *rs = get_remote_state ();
953edf2b 6862 return rs->stop_reply_queue.size ();
221e1a37
PA
6863}
6864
6b8edb51
PA
6865void
6866remote_notif_stop_parse (remote_target *remote,
bb277751 6867 struct notif_client *self, const char *buf,
722247f1
YQ
6868 struct notif_event *event)
6869{
6b8edb51 6870 remote->remote_parse_stop_reply (buf, (struct stop_reply *) event);
722247f1
YQ
6871}
6872
6873static void
6b8edb51 6874remote_notif_stop_ack (remote_target *remote,
bb277751 6875 struct notif_client *self, const char *buf,
722247f1
YQ
6876 struct notif_event *event)
6877{
6878 struct stop_reply *stop_reply = (struct stop_reply *) event;
6879
6880 /* acknowledge */
6b8edb51 6881 putpkt (remote, self->ack_command);
722247f1
YQ
6882
6883 if (stop_reply->ws.kind == TARGET_WAITKIND_IGNORE)
6b8edb51 6884 {
722247f1
YQ
6885 /* We got an unknown stop reply. */
6886 error (_("Unknown stop reply"));
6b8edb51 6887 }
722247f1 6888
6b8edb51 6889 remote->push_stop_reply (stop_reply);
722247f1
YQ
6890}
6891
6892static int
6b8edb51
PA
6893remote_notif_stop_can_get_pending_events (remote_target *remote,
6894 struct notif_client *self)
722247f1
YQ
6895{
6896 /* We can't get pending events in remote_notif_process for
6897 notification stop, and we have to do this in remote_wait_ns
6898 instead. If we fetch all queued events from stub, remote stub
6899 may exit and we have no chance to process them back in
6900 remote_wait_ns. */
6b8edb51
PA
6901 remote_state *rs = remote->get_remote_state ();
6902 mark_async_event_handler (rs->remote_async_inferior_event_token);
722247f1
YQ
6903 return 0;
6904}
6905
6906static void
6907stop_reply_dtr (struct notif_event *event)
6908{
6909 struct stop_reply *r = (struct stop_reply *) event;
d1dff226
AH
6910 cached_reg_t *reg;
6911 int ix;
6912
6913 for (ix = 0;
6914 VEC_iterate (cached_reg_t, r->regcache, ix, reg);
6915 ix++)
6916 xfree (reg->data);
722247f1
YQ
6917
6918 VEC_free (cached_reg_t, r->regcache);
6919}
6920
6921static struct notif_event *
6922remote_notif_stop_alloc_reply (void)
6923{
8d749320
SM
6924 /* We cast to a pointer to the "base class". */
6925 struct notif_event *r = (struct notif_event *) XNEW (struct stop_reply);
722247f1
YQ
6926
6927 r->dtr = stop_reply_dtr;
6928
6929 return r;
6930}
6931
6932/* A client of notification Stop. */
6933
6934struct notif_client notif_client_stop =
6935{
6936 "Stop",
6937 "vStopped",
6938 remote_notif_stop_parse,
6939 remote_notif_stop_ack,
6940 remote_notif_stop_can_get_pending_events,
6941 remote_notif_stop_alloc_reply,
f48ff2a7 6942 REMOTE_NOTIF_STOP,
722247f1
YQ
6943};
6944
85ad3aaf 6945/* Determine if THREAD_PTID is a pending fork parent thread. ARG contains
cbb8991c
DB
6946 the pid of the process that owns the threads we want to check, or
6947 -1 if we want to check all threads. */
6948
6949static int
6950is_pending_fork_parent (struct target_waitstatus *ws, int event_pid,
6951 ptid_t thread_ptid)
6952{
6953 if (ws->kind == TARGET_WAITKIND_FORKED
6954 || ws->kind == TARGET_WAITKIND_VFORKED)
6955 {
e99b03dc 6956 if (event_pid == -1 || event_pid == thread_ptid.pid ())
cbb8991c
DB
6957 return 1;
6958 }
6959
6960 return 0;
6961}
6962
85ad3aaf
PA
6963/* Return the thread's pending status used to determine whether the
6964 thread is a fork parent stopped at a fork event. */
6965
6966static struct target_waitstatus *
6967thread_pending_fork_status (struct thread_info *thread)
6968{
6969 if (thread->suspend.waitstatus_pending_p)
6970 return &thread->suspend.waitstatus;
6971 else
6972 return &thread->pending_follow;
6973}
6974
6975/* Determine if THREAD is a pending fork parent thread. */
6976
6977static int
6978is_pending_fork_parent_thread (struct thread_info *thread)
6979{
6980 struct target_waitstatus *ws = thread_pending_fork_status (thread);
6981 int pid = -1;
6982
6983 return is_pending_fork_parent (ws, pid, thread->ptid);
6984}
6985
cbb8991c
DB
6986/* If CONTEXT contains any fork child threads that have not been
6987 reported yet, remove them from the CONTEXT list. If such a
6988 thread exists it is because we are stopped at a fork catchpoint
6989 and have not yet called follow_fork, which will set up the
6990 host-side data structures for the new process. */
6991
6b8edb51
PA
6992void
6993remote_target::remove_new_fork_children (threads_listing_context *context)
cbb8991c 6994{
cbb8991c
DB
6995 int pid = -1;
6996 struct notif_client *notif = &notif_client_stop;
cbb8991c
DB
6997
6998 /* For any threads stopped at a fork event, remove the corresponding
6999 fork child threads from the CONTEXT list. */
08036331 7000 for (thread_info *thread : all_non_exited_threads ())
cbb8991c 7001 {
85ad3aaf 7002 struct target_waitstatus *ws = thread_pending_fork_status (thread);
cbb8991c
DB
7003
7004 if (is_pending_fork_parent (ws, pid, thread->ptid))
21fe1c75 7005 context->remove_thread (ws->value.related_pid);
cbb8991c
DB
7006 }
7007
7008 /* Check for any pending fork events (not reported or processed yet)
7009 in process PID and remove those fork child threads from the
7010 CONTEXT list as well. */
7011 remote_notif_get_pending_events (notif);
953edf2b
TT
7012 for (auto &event : get_remote_state ()->stop_reply_queue)
7013 if (event->ws.kind == TARGET_WAITKIND_FORKED
7014 || event->ws.kind == TARGET_WAITKIND_VFORKED
7015 || event->ws.kind == TARGET_WAITKIND_THREAD_EXITED)
7016 context->remove_thread (event->ws.value.related_pid);
85ad3aaf
PA
7017}
7018
7019/* Check whether any event pending in the vStopped queue would prevent
7020 a global or process wildcard vCont action. Clear
7021 *may_global_wildcard if we can't do a global wildcard (vCont;c),
7022 and clear the event inferior's may_wildcard_vcont flag if we can't
7023 do a process-wide wildcard resume (vCont;c:pPID.-1). */
7024
6b8edb51
PA
7025void
7026remote_target::check_pending_events_prevent_wildcard_vcont
7027 (int *may_global_wildcard)
85ad3aaf
PA
7028{
7029 struct notif_client *notif = &notif_client_stop;
7030
7031 remote_notif_get_pending_events (notif);
953edf2b
TT
7032 for (auto &event : get_remote_state ()->stop_reply_queue)
7033 {
7034 if (event->ws.kind == TARGET_WAITKIND_NO_RESUMED
7035 || event->ws.kind == TARGET_WAITKIND_NO_HISTORY)
7036 continue;
85ad3aaf 7037
953edf2b
TT
7038 if (event->ws.kind == TARGET_WAITKIND_FORKED
7039 || event->ws.kind == TARGET_WAITKIND_VFORKED)
7040 *may_global_wildcard = 0;
722247f1 7041
953edf2b 7042 struct inferior *inf = find_inferior_ptid (event->ptid);
722247f1 7043
953edf2b
TT
7044 /* This may be the first time we heard about this process.
7045 Regardless, we must not do a global wildcard resume, otherwise
7046 we'd resume this process too. */
7047 *may_global_wildcard = 0;
7048 if (inf != NULL)
7049 get_remote_inferior (inf)->may_wildcard_vcont = false;
722247f1 7050 }
722247f1
YQ
7051}
7052
f48ff2a7 7053/* Discard all pending stop replies of inferior INF. */
c906108c 7054
6b8edb51
PA
7055void
7056remote_target::discard_pending_stop_replies (struct inferior *inf)
c906108c 7057{
f48ff2a7
YQ
7058 struct stop_reply *reply;
7059 struct remote_state *rs = get_remote_state ();
7060 struct remote_notif_state *rns = rs->notif_state;
7061
7062 /* This function can be notified when an inferior exists. When the
7063 target is not remote, the notification state is NULL. */
7064 if (rs->remote_desc == NULL)
7065 return;
7066
7067 reply = (struct stop_reply *) rns->pending_event[notif_client_stop.id];
c906108c 7068
74531fed 7069 /* Discard the in-flight notification. */
e99b03dc 7070 if (reply != NULL && reply->ptid.pid () == inf->pid)
74531fed 7071 {
722247f1 7072 stop_reply_xfree (reply);
f48ff2a7 7073 rns->pending_event[notif_client_stop.id] = NULL;
74531fed 7074 }
c906108c 7075
74531fed
PA
7076 /* Discard the stop replies we have already pulled with
7077 vStopped. */
953edf2b
TT
7078 auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7079 rs->stop_reply_queue.end (),
7080 [=] (const stop_reply_up &event)
7081 {
7082 return event->ptid.pid () == inf->pid;
7083 });
7084 rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
bcc75809
YQ
7085}
7086
7087/* Discard the stop replies for RS in stop_reply_queue. */
f48ff2a7 7088
6b8edb51
PA
7089void
7090remote_target::discard_pending_stop_replies_in_queue ()
f48ff2a7 7091{
6b8edb51 7092 remote_state *rs = get_remote_state ();
f48ff2a7 7093
f48ff2a7
YQ
7094 /* Discard the stop replies we have already pulled with
7095 vStopped. */
953edf2b
TT
7096 auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7097 rs->stop_reply_queue.end (),
7098 [=] (const stop_reply_up &event)
7099 {
7100 return event->rs == rs;
7101 });
7102 rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
74531fed 7103}
43ff13b4 7104
722247f1
YQ
7105/* Remove the first reply in 'stop_reply_queue' which matches
7106 PTID. */
2e9f7625 7107
6b8edb51
PA
7108struct stop_reply *
7109remote_target::remote_notif_remove_queued_reply (ptid_t ptid)
74531fed 7110{
953edf2b 7111 remote_state *rs = get_remote_state ();
722247f1 7112
953edf2b
TT
7113 auto iter = std::find_if (rs->stop_reply_queue.begin (),
7114 rs->stop_reply_queue.end (),
7115 [=] (const stop_reply_up &event)
7116 {
7117 return event->ptid.matches (ptid);
7118 });
7119 struct stop_reply *result;
7120 if (iter == rs->stop_reply_queue.end ())
7121 result = nullptr;
7122 else
7123 {
7124 result = iter->release ();
7125 rs->stop_reply_queue.erase (iter);
7126 }
722247f1 7127
722247f1
YQ
7128 if (notif_debug)
7129 fprintf_unfiltered (gdb_stdlog,
7130 "notif: discard queued event: 'Stop' in %s\n",
7131 target_pid_to_str (ptid));
a744cf53 7132
953edf2b 7133 return result;
74531fed 7134}
75c99385 7135
74531fed
PA
7136/* Look for a queued stop reply belonging to PTID. If one is found,
7137 remove it from the queue, and return it. Returns NULL if none is
7138 found. If there are still queued events left to process, tell the
7139 event loop to get back to target_wait soon. */
e24a49d8 7140
6b8edb51
PA
7141struct stop_reply *
7142remote_target::queued_stop_reply (ptid_t ptid)
74531fed 7143{
953edf2b 7144 remote_state *rs = get_remote_state ();
722247f1 7145 struct stop_reply *r = remote_notif_remove_queued_reply (ptid);
74531fed 7146
953edf2b 7147 if (!rs->stop_reply_queue.empty ())
6b8edb51 7148 {
6b8edb51
PA
7149 /* There's still at least an event left. */
7150 mark_async_event_handler (rs->remote_async_inferior_event_token);
7151 }
74531fed 7152
722247f1 7153 return r;
74531fed
PA
7154}
7155
7156/* Push a fully parsed stop reply in the stop reply queue. Since we
7157 know that we now have at least one queued event left to pass to the
7158 core side, tell the event loop to get back to target_wait soon. */
7159
6b8edb51
PA
7160void
7161remote_target::push_stop_reply (struct stop_reply *new_event)
74531fed 7162{
6b8edb51 7163 remote_state *rs = get_remote_state ();
953edf2b 7164 rs->stop_reply_queue.push_back (stop_reply_up (new_event));
74531fed 7165
722247f1
YQ
7166 if (notif_debug)
7167 fprintf_unfiltered (gdb_stdlog,
7168 "notif: push 'Stop' %s to queue %d\n",
7169 target_pid_to_str (new_event->ptid),
953edf2b 7170 int (rs->stop_reply_queue.size ()));
74531fed 7171
6b8edb51 7172 mark_async_event_handler (rs->remote_async_inferior_event_token);
74531fed
PA
7173}
7174
7175/* Returns true if we have a stop reply for PTID. */
7176
6b8edb51
PA
7177int
7178remote_target::peek_stop_reply (ptid_t ptid)
74531fed 7179{
6b8edb51 7180 remote_state *rs = get_remote_state ();
953edf2b
TT
7181 for (auto &event : rs->stop_reply_queue)
7182 if (ptid == event->ptid
7183 && event->ws.kind == TARGET_WAITKIND_STOPPED)
7184 return 1;
7185 return 0;
74531fed
PA
7186}
7187
26d56a93
SL
7188/* Helper for remote_parse_stop_reply. Return nonzero if the substring
7189 starting with P and ending with PEND matches PREFIX. */
7190
7191static int
7192strprefix (const char *p, const char *pend, const char *prefix)
7193{
7194 for ( ; p < pend; p++, prefix++)
7195 if (*p != *prefix)
7196 return 0;
7197 return *prefix == '\0';
7198}
7199
74531fed
PA
7200/* Parse the stop reply in BUF. Either the function succeeds, and the
7201 result is stored in EVENT, or throws an error. */
7202
6b8edb51 7203void
bb277751 7204remote_target::remote_parse_stop_reply (const char *buf, stop_reply *event)
74531fed 7205{
5cd63fda 7206 remote_arch_state *rsa = NULL;
74531fed 7207 ULONGEST addr;
256642e8 7208 const char *p;
94585166 7209 int skipregs = 0;
74531fed
PA
7210
7211 event->ptid = null_ptid;
bcc75809 7212 event->rs = get_remote_state ();
74531fed
PA
7213 event->ws.kind = TARGET_WAITKIND_IGNORE;
7214 event->ws.value.integer = 0;
f7e6eed5 7215 event->stop_reason = TARGET_STOPPED_BY_NO_REASON;
74531fed 7216 event->regcache = NULL;
dc146f7c 7217 event->core = -1;
74531fed
PA
7218
7219 switch (buf[0])
7220 {
7221 case 'T': /* Status with PC, SP, FP, ... */
cea39f65
MS
7222 /* Expedited reply, containing Signal, {regno, reg} repeat. */
7223 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
7224 ss = signal number
7225 n... = register number
7226 r... = register contents
7227 */
7228
7229 p = &buf[3]; /* after Txx */
7230 while (*p)
7231 {
256642e8 7232 const char *p1;
cea39f65 7233 int fieldsize;
43ff13b4 7234
1f10ba14
PA
7235 p1 = strchr (p, ':');
7236 if (p1 == NULL)
7237 error (_("Malformed packet(a) (missing colon): %s\n\
7238Packet: '%s'\n"),
7239 p, buf);
7240 if (p == p1)
7241 error (_("Malformed packet(a) (missing register number): %s\n\
7242Packet: '%s'\n"),
7243 p, buf);
3c3bea1c 7244
1f10ba14
PA
7245 /* Some "registers" are actually extended stop information.
7246 Note if you're adding a new entry here: GDB 7.9 and
7247 earlier assume that all register "numbers" that start
7248 with an hex digit are real register numbers. Make sure
7249 the server only sends such a packet if it knows the
7250 client understands it. */
c8e38a49 7251
26d56a93 7252 if (strprefix (p, p1, "thread"))
1f10ba14 7253 event->ptid = read_ptid (++p1, &p);
82075af2
JS
7254 else if (strprefix (p, p1, "syscall_entry"))
7255 {
7256 ULONGEST sysno;
7257
7258 event->ws.kind = TARGET_WAITKIND_SYSCALL_ENTRY;
7259 p = unpack_varlen_hex (++p1, &sysno);
7260 event->ws.value.syscall_number = (int) sysno;
7261 }
7262 else if (strprefix (p, p1, "syscall_return"))
7263 {
7264 ULONGEST sysno;
7265
7266 event->ws.kind = TARGET_WAITKIND_SYSCALL_RETURN;
7267 p = unpack_varlen_hex (++p1, &sysno);
7268 event->ws.value.syscall_number = (int) sysno;
7269 }
26d56a93
SL
7270 else if (strprefix (p, p1, "watch")
7271 || strprefix (p, p1, "rwatch")
7272 || strprefix (p, p1, "awatch"))
cea39f65 7273 {
f7e6eed5 7274 event->stop_reason = TARGET_STOPPED_BY_WATCHPOINT;
1f10ba14
PA
7275 p = unpack_varlen_hex (++p1, &addr);
7276 event->watch_data_address = (CORE_ADDR) addr;
cea39f65 7277 }
26d56a93 7278 else if (strprefix (p, p1, "swbreak"))
f7e6eed5
PA
7279 {
7280 event->stop_reason = TARGET_STOPPED_BY_SW_BREAKPOINT;
7281
7282 /* Make sure the stub doesn't forget to indicate support
7283 with qSupported. */
7284 if (packet_support (PACKET_swbreak_feature) != PACKET_ENABLE)
7285 error (_("Unexpected swbreak stop reason"));
7286
7287 /* The value part is documented as "must be empty",
7288 though we ignore it, in case we ever decide to make
7289 use of it in a backward compatible way. */
8424cc97 7290 p = strchrnul (p1 + 1, ';');
f7e6eed5 7291 }
26d56a93 7292 else if (strprefix (p, p1, "hwbreak"))
f7e6eed5
PA
7293 {
7294 event->stop_reason = TARGET_STOPPED_BY_HW_BREAKPOINT;
7295
7296 /* Make sure the stub doesn't forget to indicate support
7297 with qSupported. */
7298 if (packet_support (PACKET_hwbreak_feature) != PACKET_ENABLE)
7299 error (_("Unexpected hwbreak stop reason"));
7300
7301 /* See above. */
8424cc97 7302 p = strchrnul (p1 + 1, ';');
f7e6eed5 7303 }
26d56a93 7304 else if (strprefix (p, p1, "library"))
cea39f65 7305 {
1f10ba14 7306 event->ws.kind = TARGET_WAITKIND_LOADED;
8424cc97 7307 p = strchrnul (p1 + 1, ';');
1f10ba14 7308 }
26d56a93 7309 else if (strprefix (p, p1, "replaylog"))
1f10ba14
PA
7310 {
7311 event->ws.kind = TARGET_WAITKIND_NO_HISTORY;
7312 /* p1 will indicate "begin" or "end", but it makes
7313 no difference for now, so ignore it. */
8424cc97 7314 p = strchrnul (p1 + 1, ';');
1f10ba14 7315 }
26d56a93 7316 else if (strprefix (p, p1, "core"))
1f10ba14
PA
7317 {
7318 ULONGEST c;
a744cf53 7319
1f10ba14
PA
7320 p = unpack_varlen_hex (++p1, &c);
7321 event->core = c;
cea39f65 7322 }
26d56a93 7323 else if (strprefix (p, p1, "fork"))
de0d863e
DB
7324 {
7325 event->ws.value.related_pid = read_ptid (++p1, &p);
7326 event->ws.kind = TARGET_WAITKIND_FORKED;
7327 }
26d56a93 7328 else if (strprefix (p, p1, "vfork"))
c269dbdb
DB
7329 {
7330 event->ws.value.related_pid = read_ptid (++p1, &p);
7331 event->ws.kind = TARGET_WAITKIND_VFORKED;
7332 }
26d56a93 7333 else if (strprefix (p, p1, "vforkdone"))
c269dbdb
DB
7334 {
7335 event->ws.kind = TARGET_WAITKIND_VFORK_DONE;
8424cc97 7336 p = strchrnul (p1 + 1, ';');
c269dbdb 7337 }
6ab24463 7338 else if (strprefix (p, p1, "exec"))
94585166
DB
7339 {
7340 ULONGEST ignored;
94585166
DB
7341 int pathlen;
7342
7343 /* Determine the length of the execd pathname. */
7344 p = unpack_varlen_hex (++p1, &ignored);
7345 pathlen = (p - p1) / 2;
7346
7347 /* Save the pathname for event reporting and for
7348 the next run command. */
b671c7fb
TS
7349 char *pathname = (char *) xmalloc (pathlen + 1);
7350 struct cleanup *old_chain = make_cleanup (xfree, pathname);
94585166
DB
7351 hex2bin (p1, (gdb_byte *) pathname, pathlen);
7352 pathname[pathlen] = '\0';
b671c7fb 7353 discard_cleanups (old_chain);
94585166
DB
7354
7355 /* This is freed during event handling. */
b671c7fb 7356 event->ws.value.execd_pathname = pathname;
94585166
DB
7357 event->ws.kind = TARGET_WAITKIND_EXECD;
7358
7359 /* Skip the registers included in this packet, since
7360 they may be for an architecture different from the
7361 one used by the original program. */
7362 skipregs = 1;
7363 }
65706a29
PA
7364 else if (strprefix (p, p1, "create"))
7365 {
7366 event->ws.kind = TARGET_WAITKIND_THREAD_CREATED;
8424cc97 7367 p = strchrnul (p1 + 1, ';');
65706a29 7368 }
cea39f65
MS
7369 else
7370 {
1f10ba14 7371 ULONGEST pnum;
256642e8 7372 const char *p_temp;
1f10ba14 7373
94585166
DB
7374 if (skipregs)
7375 {
8424cc97 7376 p = strchrnul (p1 + 1, ';');
94585166
DB
7377 p++;
7378 continue;
7379 }
7380
1f10ba14
PA
7381 /* Maybe a real ``P'' register number. */
7382 p_temp = unpack_varlen_hex (p, &pnum);
7383 /* If the first invalid character is the colon, we got a
7384 register number. Otherwise, it's an unknown stop
7385 reason. */
7386 if (p_temp == p1)
7387 {
5cd63fda
PA
7388 /* If we haven't parsed the event's thread yet, find
7389 it now, in order to find the architecture of the
7390 reported expedited registers. */
7391 if (event->ptid == null_ptid)
7392 {
7393 const char *thr = strstr (p1 + 1, ";thread:");
7394 if (thr != NULL)
7395 event->ptid = read_ptid (thr + strlen (";thread:"),
7396 NULL);
7397 else
3cada740
PA
7398 {
7399 /* Either the current thread hasn't changed,
7400 or the inferior is not multi-threaded.
7401 The event must be for the thread we last
7402 set as (or learned as being) current. */
7403 event->ptid = event->rs->general_thread;
7404 }
5cd63fda
PA
7405 }
7406
7407 if (rsa == NULL)
7408 {
7409 inferior *inf = (event->ptid == null_ptid
7410 ? NULL
7411 : find_inferior_ptid (event->ptid));
7412 /* If this is the first time we learn anything
7413 about this process, skip the registers
7414 included in this packet, since we don't yet
7415 know which architecture to use to parse them.
7416 We'll determine the architecture later when
7417 we process the stop reply and retrieve the
7418 target description, via
7419 remote_notice_new_inferior ->
7420 post_create_inferior. */
7421 if (inf == NULL)
7422 {
7423 p = strchrnul (p1 + 1, ';');
7424 p++;
7425 continue;
7426 }
7427
7428 event->arch = inf->gdbarch;
9d6eea31 7429 rsa = event->rs->get_remote_arch_state (event->arch);
5cd63fda
PA
7430 }
7431
7432 packet_reg *reg
7433 = packet_reg_from_pnum (event->arch, rsa, pnum);
1f10ba14 7434 cached_reg_t cached_reg;
43ff13b4 7435
1f10ba14
PA
7436 if (reg == NULL)
7437 error (_("Remote sent bad register number %s: %s\n\
8a3fe4f8 7438Packet: '%s'\n"),
1f10ba14 7439 hex_string (pnum), p, buf);
c8e38a49 7440
1f10ba14 7441 cached_reg.num = reg->regnum;
d1dff226 7442 cached_reg.data = (gdb_byte *)
5cd63fda 7443 xmalloc (register_size (event->arch, reg->regnum));
4100683b 7444
1f10ba14
PA
7445 p = p1 + 1;
7446 fieldsize = hex2bin (p, cached_reg.data,
5cd63fda 7447 register_size (event->arch, reg->regnum));
1f10ba14 7448 p += 2 * fieldsize;
5cd63fda 7449 if (fieldsize < register_size (event->arch, reg->regnum))
1f10ba14 7450 warning (_("Remote reply is too short: %s"), buf);
74531fed 7451
1f10ba14
PA
7452 VEC_safe_push (cached_reg_t, event->regcache, &cached_reg);
7453 }
7454 else
7455 {
7456 /* Not a number. Silently skip unknown optional
7457 info. */
8424cc97 7458 p = strchrnul (p1 + 1, ';');
1f10ba14 7459 }
cea39f65 7460 }
c8e38a49 7461
cea39f65
MS
7462 if (*p != ';')
7463 error (_("Remote register badly formatted: %s\nhere: %s"),
7464 buf, p);
7465 ++p;
7466 }
5b5596ff
PA
7467
7468 if (event->ws.kind != TARGET_WAITKIND_IGNORE)
7469 break;
7470
c8e38a49
PA
7471 /* fall through */
7472 case 'S': /* Old style status, just signal only. */
3a09da41
PA
7473 {
7474 int sig;
7475
7476 event->ws.kind = TARGET_WAITKIND_STOPPED;
7477 sig = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
7478 if (GDB_SIGNAL_FIRST <= sig && sig < GDB_SIGNAL_LAST)
7479 event->ws.value.sig = (enum gdb_signal) sig;
7480 else
7481 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
7482 }
c8e38a49 7483 break;
65706a29
PA
7484 case 'w': /* Thread exited. */
7485 {
65706a29
PA
7486 ULONGEST value;
7487
7488 event->ws.kind = TARGET_WAITKIND_THREAD_EXITED;
7489 p = unpack_varlen_hex (&buf[1], &value);
7490 event->ws.value.integer = value;
7491 if (*p != ';')
7492 error (_("stop reply packet badly formatted: %s"), buf);
974eac9d 7493 event->ptid = read_ptid (++p, NULL);
65706a29
PA
7494 break;
7495 }
c8e38a49
PA
7496 case 'W': /* Target exited. */
7497 case 'X':
7498 {
c8e38a49
PA
7499 int pid;
7500 ULONGEST value;
82f73884 7501
c8e38a49
PA
7502 /* GDB used to accept only 2 hex chars here. Stubs should
7503 only send more if they detect GDB supports multi-process
7504 support. */
7505 p = unpack_varlen_hex (&buf[1], &value);
82f73884 7506
c8e38a49
PA
7507 if (buf[0] == 'W')
7508 {
7509 /* The remote process exited. */
74531fed
PA
7510 event->ws.kind = TARGET_WAITKIND_EXITED;
7511 event->ws.value.integer = value;
c8e38a49
PA
7512 }
7513 else
7514 {
7515 /* The remote process exited with a signal. */
74531fed 7516 event->ws.kind = TARGET_WAITKIND_SIGNALLED;
3a09da41
PA
7517 if (GDB_SIGNAL_FIRST <= value && value < GDB_SIGNAL_LAST)
7518 event->ws.value.sig = (enum gdb_signal) value;
7519 else
7520 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
c8e38a49 7521 }
82f73884 7522
c8e38a49 7523 /* If no process is specified, assume inferior_ptid. */
e99b03dc 7524 pid = inferior_ptid.pid ();
c8e38a49
PA
7525 if (*p == '\0')
7526 ;
7527 else if (*p == ';')
7528 {
7529 p++;
7530
0b24eb2d 7531 if (*p == '\0')
82f73884 7532 ;
61012eef 7533 else if (startswith (p, "process:"))
82f73884 7534 {
c8e38a49 7535 ULONGEST upid;
a744cf53 7536
c8e38a49
PA
7537 p += sizeof ("process:") - 1;
7538 unpack_varlen_hex (p, &upid);
7539 pid = upid;
82f73884
PA
7540 }
7541 else
7542 error (_("unknown stop reply packet: %s"), buf);
43ff13b4 7543 }
c8e38a49
PA
7544 else
7545 error (_("unknown stop reply packet: %s"), buf);
f2907e49 7546 event->ptid = ptid_t (pid);
74531fed
PA
7547 }
7548 break;
f2faf941
PA
7549 case 'N':
7550 event->ws.kind = TARGET_WAITKIND_NO_RESUMED;
7551 event->ptid = minus_one_ptid;
7552 break;
74531fed
PA
7553 }
7554
d7e15655 7555 if (target_is_non_stop_p () && event->ptid == null_ptid)
74531fed
PA
7556 error (_("No process or thread specified in stop reply: %s"), buf);
7557}
7558
722247f1
YQ
7559/* When the stub wants to tell GDB about a new notification reply, it
7560 sends a notification (%Stop, for example). Those can come it at
7561 any time, hence, we have to make sure that any pending
7562 putpkt/getpkt sequence we're making is finished, before querying
7563 the stub for more events with the corresponding ack command
7564 (vStopped, for example). E.g., if we started a vStopped sequence
7565 immediately upon receiving the notification, something like this
7566 could happen:
74531fed
PA
7567
7568 1.1) --> Hg 1
7569 1.2) <-- OK
7570 1.3) --> g
7571 1.4) <-- %Stop
7572 1.5) --> vStopped
7573 1.6) <-- (registers reply to step #1.3)
7574
7575 Obviously, the reply in step #1.6 would be unexpected to a vStopped
7576 query.
7577
796cb314 7578 To solve this, whenever we parse a %Stop notification successfully,
74531fed
PA
7579 we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
7580 doing whatever we were doing:
7581
7582 2.1) --> Hg 1
7583 2.2) <-- OK
7584 2.3) --> g
7585 2.4) <-- %Stop
7586 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
7587 2.5) <-- (registers reply to step #2.3)
7588
7589 Eventualy after step #2.5, we return to the event loop, which
7590 notices there's an event on the
7591 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
7592 associated callback --- the function below. At this point, we're
7593 always safe to start a vStopped sequence. :
7594
7595 2.6) --> vStopped
7596 2.7) <-- T05 thread:2
7597 2.8) --> vStopped
7598 2.9) --> OK
7599*/
7600
722247f1 7601void
6b8edb51 7602remote_target::remote_notif_get_pending_events (notif_client *nc)
74531fed
PA
7603{
7604 struct remote_state *rs = get_remote_state ();
74531fed 7605
f48ff2a7 7606 if (rs->notif_state->pending_event[nc->id] != NULL)
74531fed 7607 {
722247f1
YQ
7608 if (notif_debug)
7609 fprintf_unfiltered (gdb_stdlog,
7610 "notif: process: '%s' ack pending event\n",
7611 nc->name);
74531fed 7612
722247f1 7613 /* acknowledge */
8d64371b
TT
7614 nc->ack (this, nc, rs->buf.data (),
7615 rs->notif_state->pending_event[nc->id]);
f48ff2a7 7616 rs->notif_state->pending_event[nc->id] = NULL;
74531fed
PA
7617
7618 while (1)
7619 {
8d64371b
TT
7620 getpkt (&rs->buf, 0);
7621 if (strcmp (rs->buf.data (), "OK") == 0)
74531fed
PA
7622 break;
7623 else
8d64371b 7624 remote_notif_ack (this, nc, rs->buf.data ());
74531fed
PA
7625 }
7626 }
722247f1
YQ
7627 else
7628 {
7629 if (notif_debug)
7630 fprintf_unfiltered (gdb_stdlog,
7631 "notif: process: '%s' no pending reply\n",
7632 nc->name);
7633 }
74531fed
PA
7634}
7635
6b8edb51
PA
7636/* Wrapper around remote_target::remote_notif_get_pending_events to
7637 avoid having to export the whole remote_target class. */
7638
7639void
7640remote_notif_get_pending_events (remote_target *remote, notif_client *nc)
7641{
7642 remote->remote_notif_get_pending_events (nc);
7643}
7644
74531fed
PA
7645/* Called when it is decided that STOP_REPLY holds the info of the
7646 event that is to be returned to the core. This function always
7647 destroys STOP_REPLY. */
7648
6b8edb51
PA
7649ptid_t
7650remote_target::process_stop_reply (struct stop_reply *stop_reply,
7651 struct target_waitstatus *status)
74531fed
PA
7652{
7653 ptid_t ptid;
7654
7655 *status = stop_reply->ws;
7656 ptid = stop_reply->ptid;
7657
7658 /* If no thread/process was reported by the stub, assume the current
7659 inferior. */
d7e15655 7660 if (ptid == null_ptid)
74531fed
PA
7661 ptid = inferior_ptid;
7662
5f3563ea 7663 if (status->kind != TARGET_WAITKIND_EXITED
f2faf941
PA
7664 && status->kind != TARGET_WAITKIND_SIGNALLED
7665 && status->kind != TARGET_WAITKIND_NO_RESUMED)
74531fed 7666 {
5f3563ea
PA
7667 /* Expedited registers. */
7668 if (stop_reply->regcache)
7669 {
217f1f79 7670 struct regcache *regcache
5cd63fda 7671 = get_thread_arch_regcache (ptid, stop_reply->arch);
5f3563ea
PA
7672 cached_reg_t *reg;
7673 int ix;
7674
7675 for (ix = 0;
d1dff226 7676 VEC_iterate (cached_reg_t, stop_reply->regcache, ix, reg);
5f3563ea 7677 ix++)
d1dff226 7678 {
73e1c03f 7679 regcache->raw_supply (reg->num, reg->data);
d1dff226
AH
7680 xfree (reg->data);
7681 }
7682
5f3563ea
PA
7683 VEC_free (cached_reg_t, stop_reply->regcache);
7684 }
74531fed 7685
1941c569 7686 remote_notice_new_inferior (ptid, 0);
7aabaf9d 7687 remote_thread_info *remote_thr = get_remote_thread_info (ptid);
799a2abe
PA
7688 remote_thr->core = stop_reply->core;
7689 remote_thr->stop_reason = stop_reply->stop_reason;
7690 remote_thr->watch_data_address = stop_reply->watch_data_address;
85ad3aaf 7691 remote_thr->vcont_resumed = 0;
74531fed
PA
7692 }
7693
74531fed
PA
7694 stop_reply_xfree (stop_reply);
7695 return ptid;
7696}
7697
7698/* The non-stop mode version of target_wait. */
7699
6b8edb51
PA
7700ptid_t
7701remote_target::wait_ns (ptid_t ptid, struct target_waitstatus *status, int options)
74531fed
PA
7702{
7703 struct remote_state *rs = get_remote_state ();
74531fed
PA
7704 struct stop_reply *stop_reply;
7705 int ret;
fee9eda9 7706 int is_notif = 0;
74531fed
PA
7707
7708 /* If in non-stop mode, get out of getpkt even if a
7709 notification is received. */
7710
8d64371b 7711 ret = getpkt_or_notif_sane (&rs->buf, 0 /* forever */, &is_notif);
74531fed
PA
7712 while (1)
7713 {
fee9eda9 7714 if (ret != -1 && !is_notif)
74531fed
PA
7715 switch (rs->buf[0])
7716 {
7717 case 'E': /* Error of some sort. */
7718 /* We're out of sync with the target now. Did it continue
7719 or not? We can't tell which thread it was in non-stop,
7720 so just ignore this. */
8d64371b 7721 warning (_("Remote failure reply: %s"), rs->buf.data ());
74531fed
PA
7722 break;
7723 case 'O': /* Console output. */
8d64371b 7724 remote_console_output (&rs->buf[1]);
74531fed
PA
7725 break;
7726 default:
8d64371b 7727 warning (_("Invalid remote reply: %s"), rs->buf.data ());
74531fed
PA
7728 break;
7729 }
7730
7731 /* Acknowledge a pending stop reply that may have arrived in the
7732 mean time. */
f48ff2a7 7733 if (rs->notif_state->pending_event[notif_client_stop.id] != NULL)
722247f1 7734 remote_notif_get_pending_events (&notif_client_stop);
74531fed
PA
7735
7736 /* If indeed we noticed a stop reply, we're done. */
7737 stop_reply = queued_stop_reply (ptid);
7738 if (stop_reply != NULL)
7739 return process_stop_reply (stop_reply, status);
7740
47608cb1 7741 /* Still no event. If we're just polling for an event, then
74531fed 7742 return to the event loop. */
47608cb1 7743 if (options & TARGET_WNOHANG)
74531fed
PA
7744 {
7745 status->kind = TARGET_WAITKIND_IGNORE;
7746 return minus_one_ptid;
7747 }
7748
47608cb1 7749 /* Otherwise do a blocking wait. */
8d64371b 7750 ret = getpkt_or_notif_sane (&rs->buf, 1 /* forever */, &is_notif);
74531fed
PA
7751 }
7752}
7753
7754/* Wait until the remote machine stops, then return, storing status in
7755 STATUS just as `wait' would. */
7756
6b8edb51
PA
7757ptid_t
7758remote_target::wait_as (ptid_t ptid, target_waitstatus *status, int options)
74531fed
PA
7759{
7760 struct remote_state *rs = get_remote_state ();
74531fed 7761 ptid_t event_ptid = null_ptid;
cea39f65 7762 char *buf;
74531fed
PA
7763 struct stop_reply *stop_reply;
7764
47608cb1
PA
7765 again:
7766
74531fed
PA
7767 status->kind = TARGET_WAITKIND_IGNORE;
7768 status->value.integer = 0;
7769
7770 stop_reply = queued_stop_reply (ptid);
7771 if (stop_reply != NULL)
7772 return process_stop_reply (stop_reply, status);
7773
7774 if (rs->cached_wait_status)
7775 /* Use the cached wait status, but only once. */
7776 rs->cached_wait_status = 0;
7777 else
7778 {
7779 int ret;
722247f1 7780 int is_notif;
567420d1 7781 int forever = ((options & TARGET_WNOHANG) == 0
6b8edb51 7782 && rs->wait_forever_enabled_p);
567420d1
PA
7783
7784 if (!rs->waiting_for_stop_reply)
7785 {
7786 status->kind = TARGET_WAITKIND_NO_RESUMED;
7787 return minus_one_ptid;
7788 }
74531fed 7789
74531fed
PA
7790 /* FIXME: cagney/1999-09-27: If we're in async mode we should
7791 _never_ wait for ever -> test on target_is_async_p().
7792 However, before we do that we need to ensure that the caller
7793 knows how to take the target into/out of async mode. */
8d64371b 7794 ret = getpkt_or_notif_sane (&rs->buf, forever, &is_notif);
722247f1
YQ
7795
7796 /* GDB gets a notification. Return to core as this event is
7797 not interesting. */
7798 if (ret != -1 && is_notif)
7799 return minus_one_ptid;
567420d1
PA
7800
7801 if (ret == -1 && (options & TARGET_WNOHANG) != 0)
7802 return minus_one_ptid;
74531fed
PA
7803 }
7804
8d64371b 7805 buf = rs->buf.data ();
74531fed 7806
3a29589a
DJ
7807 /* Assume that the target has acknowledged Ctrl-C unless we receive
7808 an 'F' or 'O' packet. */
7809 if (buf[0] != 'F' && buf[0] != 'O')
7810 rs->ctrlc_pending_p = 0;
7811
74531fed
PA
7812 switch (buf[0])
7813 {
7814 case 'E': /* Error of some sort. */
7815 /* We're out of sync with the target now. Did it continue or
7816 not? Not is more likely, so report a stop. */
29090fb6
LM
7817 rs->waiting_for_stop_reply = 0;
7818
74531fed
PA
7819 warning (_("Remote failure reply: %s"), buf);
7820 status->kind = TARGET_WAITKIND_STOPPED;
a493e3e2 7821 status->value.sig = GDB_SIGNAL_0;
74531fed
PA
7822 break;
7823 case 'F': /* File-I/O request. */
e42e5352
YQ
7824 /* GDB may access the inferior memory while handling the File-I/O
7825 request, but we don't want GDB accessing memory while waiting
7826 for a stop reply. See the comments in putpkt_binary. Set
7827 waiting_for_stop_reply to 0 temporarily. */
7828 rs->waiting_for_stop_reply = 0;
6b8edb51 7829 remote_fileio_request (this, buf, rs->ctrlc_pending_p);
3a29589a 7830 rs->ctrlc_pending_p = 0;
e42e5352
YQ
7831 /* GDB handled the File-I/O request, and the target is running
7832 again. Keep waiting for events. */
7833 rs->waiting_for_stop_reply = 1;
74531fed 7834 break;
f2faf941 7835 case 'N': case 'T': case 'S': case 'X': case 'W':
74531fed 7836 {
29090fb6
LM
7837 /* There is a stop reply to handle. */
7838 rs->waiting_for_stop_reply = 0;
7839
7840 stop_reply
6b8edb51
PA
7841 = (struct stop_reply *) remote_notif_parse (this,
7842 &notif_client_stop,
8d64371b 7843 rs->buf.data ());
74531fed 7844
74531fed 7845 event_ptid = process_stop_reply (stop_reply, status);
c8e38a49
PA
7846 break;
7847 }
7848 case 'O': /* Console output. */
7849 remote_console_output (buf + 1);
c8e38a49
PA
7850 break;
7851 case '\0':
b73be471 7852 if (rs->last_sent_signal != GDB_SIGNAL_0)
c8e38a49
PA
7853 {
7854 /* Zero length reply means that we tried 'S' or 'C' and the
7855 remote system doesn't support it. */
223ffa71 7856 target_terminal::ours_for_output ();
c8e38a49
PA
7857 printf_filtered
7858 ("Can't send signals to this remote system. %s not sent.\n",
b73be471
TT
7859 gdb_signal_to_name (rs->last_sent_signal));
7860 rs->last_sent_signal = GDB_SIGNAL_0;
223ffa71 7861 target_terminal::inferior ();
c8e38a49 7862
f5c4fcd9
TT
7863 strcpy (buf, rs->last_sent_step ? "s" : "c");
7864 putpkt (buf);
c8e38a49 7865 break;
43ff13b4 7866 }
86a73007 7867 /* fallthrough */
c8e38a49
PA
7868 default:
7869 warning (_("Invalid remote reply: %s"), buf);
c8e38a49 7870 break;
43ff13b4 7871 }
c8e38a49 7872
f2faf941
PA
7873 if (status->kind == TARGET_WAITKIND_NO_RESUMED)
7874 return minus_one_ptid;
7875 else if (status->kind == TARGET_WAITKIND_IGNORE)
47608cb1
PA
7876 {
7877 /* Nothing interesting happened. If we're doing a non-blocking
7878 poll, we're done. Otherwise, go back to waiting. */
7879 if (options & TARGET_WNOHANG)
7880 return minus_one_ptid;
7881 else
7882 goto again;
7883 }
74531fed
PA
7884 else if (status->kind != TARGET_WAITKIND_EXITED
7885 && status->kind != TARGET_WAITKIND_SIGNALLED)
82f73884 7886 {
d7e15655 7887 if (event_ptid != null_ptid)
47f8a51d 7888 record_currthread (rs, event_ptid);
82f73884
PA
7889 else
7890 event_ptid = inferior_ptid;
43ff13b4 7891 }
74531fed
PA
7892 else
7893 /* A process exit. Invalidate our notion of current thread. */
47f8a51d 7894 record_currthread (rs, minus_one_ptid);
79d7f229 7895
82f73884 7896 return event_ptid;
43ff13b4
JM
7897}
7898
74531fed
PA
7899/* Wait until the remote machine stops, then return, storing status in
7900 STATUS just as `wait' would. */
7901
f6ac5f3d
PA
7902ptid_t
7903remote_target::wait (ptid_t ptid, struct target_waitstatus *status, int options)
c8e38a49
PA
7904{
7905 ptid_t event_ptid;
7906
6efcd9a8 7907 if (target_is_non_stop_p ())
6b8edb51 7908 event_ptid = wait_ns (ptid, status, options);
74531fed 7909 else
6b8edb51 7910 event_ptid = wait_as (ptid, status, options);
c8e38a49 7911
d9d41e78 7912 if (target_is_async_p ())
c8e38a49 7913 {
6b8edb51
PA
7914 remote_state *rs = get_remote_state ();
7915
74531fed
PA
7916 /* If there are are events left in the queue tell the event loop
7917 to return here. */
953edf2b 7918 if (!rs->stop_reply_queue.empty ())
6b8edb51 7919 mark_async_event_handler (rs->remote_async_inferior_event_token);
c8e38a49 7920 }
c8e38a49
PA
7921
7922 return event_ptid;
7923}
7924
74ca34ce 7925/* Fetch a single register using a 'p' packet. */
c906108c 7926
6b8edb51
PA
7927int
7928remote_target::fetch_register_using_p (struct regcache *regcache,
7929 packet_reg *reg)
b96ec7ac 7930{
ac7936df 7931 struct gdbarch *gdbarch = regcache->arch ();
b96ec7ac 7932 struct remote_state *rs = get_remote_state ();
2e9f7625 7933 char *buf, *p;
9890e433 7934 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
b96ec7ac
AC
7935 int i;
7936
4082afcc 7937 if (packet_support (PACKET_p) == PACKET_DISABLE)
74ca34ce
DJ
7938 return 0;
7939
7940 if (reg->pnum == -1)
7941 return 0;
7942
8d64371b 7943 p = rs->buf.data ();
fcad0fa4 7944 *p++ = 'p';
74ca34ce 7945 p += hexnumstr (p, reg->pnum);
fcad0fa4 7946 *p++ = '\0';
1f4437a4 7947 putpkt (rs->buf);
8d64371b 7948 getpkt (&rs->buf, 0);
3f9a994c 7949
8d64371b 7950 buf = rs->buf.data ();
2e9f7625 7951
8d64371b 7952 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_p]))
74ca34ce
DJ
7953 {
7954 case PACKET_OK:
7955 break;
7956 case PACKET_UNKNOWN:
7957 return 0;
7958 case PACKET_ERROR:
27a9c0bf 7959 error (_("Could not fetch register \"%s\"; remote failure reply '%s'"),
ac7936df 7960 gdbarch_register_name (regcache->arch (),
27a9c0bf
MS
7961 reg->regnum),
7962 buf);
74ca34ce 7963 }
3f9a994c
JB
7964
7965 /* If this register is unfetchable, tell the regcache. */
7966 if (buf[0] == 'x')
8480adf2 7967 {
73e1c03f 7968 regcache->raw_supply (reg->regnum, NULL);
8480adf2 7969 return 1;
b96ec7ac 7970 }
b96ec7ac 7971
3f9a994c
JB
7972 /* Otherwise, parse and supply the value. */
7973 p = buf;
7974 i = 0;
7975 while (p[0] != 0)
7976 {
7977 if (p[1] == 0)
74ca34ce 7978 error (_("fetch_register_using_p: early buf termination"));
3f9a994c
JB
7979
7980 regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
7981 p += 2;
7982 }
73e1c03f 7983 regcache->raw_supply (reg->regnum, regp);
3f9a994c 7984 return 1;
b96ec7ac
AC
7985}
7986
74ca34ce
DJ
7987/* Fetch the registers included in the target's 'g' packet. */
7988
6b8edb51
PA
7989int
7990remote_target::send_g_packet ()
c906108c 7991{
d01949b6 7992 struct remote_state *rs = get_remote_state ();
cea39f65 7993 int buf_len;
c906108c 7994
8d64371b 7995 xsnprintf (rs->buf.data (), get_remote_packet_size (), "g");
b75abf5b 7996 putpkt (rs->buf);
8d64371b 7997 getpkt (&rs->buf, 0);
b75abf5b
AK
7998 if (packet_check_result (rs->buf) == PACKET_ERROR)
7999 error (_("Could not read registers; remote failure reply '%s'"),
8d64371b 8000 rs->buf.data ());
c906108c 8001
29709017
DJ
8002 /* We can get out of synch in various cases. If the first character
8003 in the buffer is not a hex character, assume that has happened
8004 and try to fetch another packet to read. */
8005 while ((rs->buf[0] < '0' || rs->buf[0] > '9')
8006 && (rs->buf[0] < 'A' || rs->buf[0] > 'F')
8007 && (rs->buf[0] < 'a' || rs->buf[0] > 'f')
8008 && rs->buf[0] != 'x') /* New: unavailable register value. */
8009 {
8010 if (remote_debug)
8011 fprintf_unfiltered (gdb_stdlog,
8012 "Bad register packet; fetching a new packet\n");
8d64371b 8013 getpkt (&rs->buf, 0);
29709017
DJ
8014 }
8015
8d64371b 8016 buf_len = strlen (rs->buf.data ());
74ca34ce
DJ
8017
8018 /* Sanity check the received packet. */
8019 if (buf_len % 2 != 0)
8d64371b 8020 error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf.data ());
29709017
DJ
8021
8022 return buf_len / 2;
8023}
8024
6b8edb51
PA
8025void
8026remote_target::process_g_packet (struct regcache *regcache)
29709017 8027{
ac7936df 8028 struct gdbarch *gdbarch = regcache->arch ();
29709017 8029 struct remote_state *rs = get_remote_state ();
9d6eea31 8030 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
29709017
DJ
8031 int i, buf_len;
8032 char *p;
8033 char *regs;
8034
8d64371b 8035 buf_len = strlen (rs->buf.data ());
29709017
DJ
8036
8037 /* Further sanity checks, with knowledge of the architecture. */
74ca34ce 8038 if (buf_len > 2 * rsa->sizeof_g_packet)
fc809827 8039 error (_("Remote 'g' packet reply is too long (expected %ld bytes, got %d "
8d64371b
TT
8040 "bytes): %s"),
8041 rsa->sizeof_g_packet, buf_len / 2,
8042 rs->buf.data ());
74ca34ce
DJ
8043
8044 /* Save the size of the packet sent to us by the target. It is used
8045 as a heuristic when determining the max size of packets that the
8046 target can safely receive. */
8047 if (rsa->actual_register_packet_size == 0)
8048 rsa->actual_register_packet_size = buf_len;
8049
8050 /* If this is smaller than we guessed the 'g' packet would be,
8051 update our records. A 'g' reply that doesn't include a register's
8052 value implies either that the register is not available, or that
8053 the 'p' packet must be used. */
8054 if (buf_len < 2 * rsa->sizeof_g_packet)
b323314b 8055 {
9dc193c3 8056 long sizeof_g_packet = buf_len / 2;
74ca34ce 8057
4a22f64d 8058 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
b96ec7ac 8059 {
9dc193c3
LF
8060 long offset = rsa->regs[i].offset;
8061 long reg_size = register_size (gdbarch, i);
8062
74ca34ce
DJ
8063 if (rsa->regs[i].pnum == -1)
8064 continue;
8065
9dc193c3 8066 if (offset >= sizeof_g_packet)
74ca34ce 8067 rsa->regs[i].in_g_packet = 0;
9dc193c3
LF
8068 else if (offset + reg_size > sizeof_g_packet)
8069 error (_("Truncated register %d in remote 'g' packet"), i);
b96ec7ac 8070 else
74ca34ce 8071 rsa->regs[i].in_g_packet = 1;
b96ec7ac 8072 }
9dc193c3
LF
8073
8074 /* Looks valid enough, we can assume this is the correct length
8075 for a 'g' packet. It's important not to adjust
8076 rsa->sizeof_g_packet if we have truncated registers otherwise
8077 this "if" won't be run the next time the method is called
8078 with a packet of the same size and one of the internal errors
8079 below will trigger instead. */
8080 rsa->sizeof_g_packet = sizeof_g_packet;
74ca34ce 8081 }
b323314b 8082
224c3ddb 8083 regs = (char *) alloca (rsa->sizeof_g_packet);
c906108c
SS
8084
8085 /* Unimplemented registers read as all bits zero. */
ea9c271d 8086 memset (regs, 0, rsa->sizeof_g_packet);
c906108c 8087
c906108c
SS
8088 /* Reply describes registers byte by byte, each byte encoded as two
8089 hex characters. Suck them all up, then supply them to the
8090 register cacheing/storage mechanism. */
8091
8d64371b 8092 p = rs->buf.data ();
ea9c271d 8093 for (i = 0; i < rsa->sizeof_g_packet; i++)
c906108c 8094 {
74ca34ce
DJ
8095 if (p[0] == 0 || p[1] == 0)
8096 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
8097 internal_error (__FILE__, __LINE__,
9b20d036 8098 _("unexpected end of 'g' packet reply"));
74ca34ce 8099
c906108c 8100 if (p[0] == 'x' && p[1] == 'x')
c5aa993b 8101 regs[i] = 0; /* 'x' */
c906108c
SS
8102 else
8103 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
8104 p += 2;
8105 }
8106
a744cf53
MS
8107 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
8108 {
8109 struct packet_reg *r = &rsa->regs[i];
9dc193c3 8110 long reg_size = register_size (gdbarch, i);
a744cf53
MS
8111
8112 if (r->in_g_packet)
8113 {
8d64371b 8114 if ((r->offset + reg_size) * 2 > strlen (rs->buf.data ()))
a744cf53
MS
8115 /* This shouldn't happen - we adjusted in_g_packet above. */
8116 internal_error (__FILE__, __LINE__,
9b20d036 8117 _("unexpected end of 'g' packet reply"));
a744cf53
MS
8118 else if (rs->buf[r->offset * 2] == 'x')
8119 {
8d64371b 8120 gdb_assert (r->offset * 2 < strlen (rs->buf.data ()));
a744cf53
MS
8121 /* The register isn't available, mark it as such (at
8122 the same time setting the value to zero). */
73e1c03f 8123 regcache->raw_supply (r->regnum, NULL);
a744cf53
MS
8124 }
8125 else
73e1c03f 8126 regcache->raw_supply (r->regnum, regs + r->offset);
a744cf53
MS
8127 }
8128 }
c906108c
SS
8129}
8130
6b8edb51
PA
8131void
8132remote_target::fetch_registers_using_g (struct regcache *regcache)
29709017
DJ
8133{
8134 send_g_packet ();
56be3814 8135 process_g_packet (regcache);
29709017
DJ
8136}
8137
e6e4e701
PA
8138/* Make the remote selected traceframe match GDB's selected
8139 traceframe. */
8140
6b8edb51
PA
8141void
8142remote_target::set_remote_traceframe ()
e6e4e701
PA
8143{
8144 int newnum;
262e1174 8145 struct remote_state *rs = get_remote_state ();
e6e4e701 8146
262e1174 8147 if (rs->remote_traceframe_number == get_traceframe_number ())
e6e4e701
PA
8148 return;
8149
8150 /* Avoid recursion, remote_trace_find calls us again. */
262e1174 8151 rs->remote_traceframe_number = get_traceframe_number ();
e6e4e701
PA
8152
8153 newnum = target_trace_find (tfind_number,
8154 get_traceframe_number (), 0, 0, NULL);
8155
8156 /* Should not happen. If it does, all bets are off. */
8157 if (newnum != get_traceframe_number ())
8158 warning (_("could not set remote traceframe"));
8159}
8160
f6ac5f3d
PA
8161void
8162remote_target::fetch_registers (struct regcache *regcache, int regnum)
74ca34ce 8163{
ac7936df 8164 struct gdbarch *gdbarch = regcache->arch ();
9d6eea31
PA
8165 struct remote_state *rs = get_remote_state ();
8166 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
74ca34ce
DJ
8167 int i;
8168
e6e4e701 8169 set_remote_traceframe ();
222312d3 8170 set_general_thread (regcache->ptid ());
74ca34ce
DJ
8171
8172 if (regnum >= 0)
8173 {
5cd63fda 8174 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
a744cf53 8175
74ca34ce
DJ
8176 gdb_assert (reg != NULL);
8177
8178 /* If this register might be in the 'g' packet, try that first -
8179 we are likely to read more than one register. If this is the
8180 first 'g' packet, we might be overly optimistic about its
8181 contents, so fall back to 'p'. */
8182 if (reg->in_g_packet)
8183 {
56be3814 8184 fetch_registers_using_g (regcache);
74ca34ce
DJ
8185 if (reg->in_g_packet)
8186 return;
8187 }
8188
56be3814 8189 if (fetch_register_using_p (regcache, reg))
74ca34ce
DJ
8190 return;
8191
8192 /* This register is not available. */
73e1c03f 8193 regcache->raw_supply (reg->regnum, NULL);
74ca34ce
DJ
8194
8195 return;
8196 }
8197
56be3814 8198 fetch_registers_using_g (regcache);
74ca34ce 8199
5cd63fda 8200 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
74ca34ce 8201 if (!rsa->regs[i].in_g_packet)
56be3814 8202 if (!fetch_register_using_p (regcache, &rsa->regs[i]))
74ca34ce
DJ
8203 {
8204 /* This register is not available. */
73e1c03f 8205 regcache->raw_supply (i, NULL);
74ca34ce
DJ
8206 }
8207}
8208
c906108c
SS
8209/* Prepare to store registers. Since we may send them all (using a
8210 'G' request), we have to read out the ones we don't want to change
8211 first. */
8212
f6ac5f3d
PA
8213void
8214remote_target::prepare_to_store (struct regcache *regcache)
c906108c 8215{
9d6eea31
PA
8216 struct remote_state *rs = get_remote_state ();
8217 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
cf0e1e0d 8218 int i;
cf0e1e0d 8219
c906108c 8220 /* Make sure the entire registers array is valid. */
4082afcc 8221 switch (packet_support (PACKET_P))
5a2468f5
JM
8222 {
8223 case PACKET_DISABLE:
8224 case PACKET_SUPPORT_UNKNOWN:
cf0e1e0d 8225 /* Make sure all the necessary registers are cached. */
ac7936df 8226 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
ea9c271d 8227 if (rsa->regs[i].in_g_packet)
0b47d985 8228 regcache->raw_update (rsa->regs[i].regnum);
5a2468f5
JM
8229 break;
8230 case PACKET_ENABLE:
8231 break;
8232 }
8233}
8234
ad10f812 8235/* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
23860348 8236 packet was not recognized. */
5a2468f5 8237
6b8edb51
PA
8238int
8239remote_target::store_register_using_P (const struct regcache *regcache,
8240 packet_reg *reg)
5a2468f5 8241{
ac7936df 8242 struct gdbarch *gdbarch = regcache->arch ();
d01949b6 8243 struct remote_state *rs = get_remote_state ();
5a2468f5 8244 /* Try storing a single register. */
8d64371b 8245 char *buf = rs->buf.data ();
9890e433 8246 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
5a2468f5 8247 char *p;
5a2468f5 8248
4082afcc 8249 if (packet_support (PACKET_P) == PACKET_DISABLE)
74ca34ce
DJ
8250 return 0;
8251
8252 if (reg->pnum == -1)
8253 return 0;
8254
ea9c271d 8255 xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
5a2468f5 8256 p = buf + strlen (buf);
34a79281 8257 regcache->raw_collect (reg->regnum, regp);
4a22f64d 8258 bin2hex (regp, p, register_size (gdbarch, reg->regnum));
1f4437a4 8259 putpkt (rs->buf);
8d64371b 8260 getpkt (&rs->buf, 0);
5a2468f5 8261
74ca34ce
DJ
8262 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P]))
8263 {
8264 case PACKET_OK:
8265 return 1;
8266 case PACKET_ERROR:
27a9c0bf 8267 error (_("Could not write register \"%s\"; remote failure reply '%s'"),
8d64371b 8268 gdbarch_register_name (gdbarch, reg->regnum), rs->buf.data ());
74ca34ce
DJ
8269 case PACKET_UNKNOWN:
8270 return 0;
8271 default:
8272 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
8273 }
c906108c
SS
8274}
8275
23860348
MS
8276/* Store register REGNUM, or all registers if REGNUM == -1, from the
8277 contents of the register cache buffer. FIXME: ignores errors. */
c906108c 8278
6b8edb51
PA
8279void
8280remote_target::store_registers_using_G (const struct regcache *regcache)
c906108c 8281{
d01949b6 8282 struct remote_state *rs = get_remote_state ();
9d6eea31 8283 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
cfd77fa1 8284 gdb_byte *regs;
c906108c
SS
8285 char *p;
8286
193cb69f
AC
8287 /* Extract all the registers in the regcache copying them into a
8288 local buffer. */
8289 {
b323314b 8290 int i;
a744cf53 8291
224c3ddb 8292 regs = (gdb_byte *) alloca (rsa->sizeof_g_packet);
ea9c271d 8293 memset (regs, 0, rsa->sizeof_g_packet);
ac7936df 8294 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
193cb69f 8295 {
ea9c271d 8296 struct packet_reg *r = &rsa->regs[i];
a744cf53 8297
b323314b 8298 if (r->in_g_packet)
34a79281 8299 regcache->raw_collect (r->regnum, regs + r->offset);
193cb69f
AC
8300 }
8301 }
c906108c
SS
8302
8303 /* Command describes registers byte by byte,
8304 each byte encoded as two hex characters. */
8d64371b 8305 p = rs->buf.data ();
193cb69f 8306 *p++ = 'G';
74ca34ce 8307 bin2hex (regs, p, rsa->sizeof_g_packet);
1f4437a4 8308 putpkt (rs->buf);
8d64371b 8309 getpkt (&rs->buf, 0);
1f4437a4 8310 if (packet_check_result (rs->buf) == PACKET_ERROR)
27a9c0bf 8311 error (_("Could not write registers; remote failure reply '%s'"),
8d64371b 8312 rs->buf.data ());
c906108c 8313}
74ca34ce
DJ
8314
8315/* Store register REGNUM, or all registers if REGNUM == -1, from the contents
8316 of the register cache buffer. FIXME: ignores errors. */
8317
f6ac5f3d
PA
8318void
8319remote_target::store_registers (struct regcache *regcache, int regnum)
74ca34ce 8320{
5cd63fda 8321 struct gdbarch *gdbarch = regcache->arch ();
9d6eea31
PA
8322 struct remote_state *rs = get_remote_state ();
8323 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
74ca34ce
DJ
8324 int i;
8325
e6e4e701 8326 set_remote_traceframe ();
222312d3 8327 set_general_thread (regcache->ptid ());
74ca34ce
DJ
8328
8329 if (regnum >= 0)
8330 {
5cd63fda 8331 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
a744cf53 8332
74ca34ce
DJ
8333 gdb_assert (reg != NULL);
8334
8335 /* Always prefer to store registers using the 'P' packet if
8336 possible; we often change only a small number of registers.
8337 Sometimes we change a larger number; we'd need help from a
8338 higher layer to know to use 'G'. */
56be3814 8339 if (store_register_using_P (regcache, reg))
74ca34ce
DJ
8340 return;
8341
8342 /* For now, don't complain if we have no way to write the
8343 register. GDB loses track of unavailable registers too
8344 easily. Some day, this may be an error. We don't have
0df8b418 8345 any way to read the register, either... */
74ca34ce
DJ
8346 if (!reg->in_g_packet)
8347 return;
8348
56be3814 8349 store_registers_using_G (regcache);
74ca34ce
DJ
8350 return;
8351 }
8352
56be3814 8353 store_registers_using_G (regcache);
74ca34ce 8354
5cd63fda 8355 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
74ca34ce 8356 if (!rsa->regs[i].in_g_packet)
56be3814 8357 if (!store_register_using_P (regcache, &rsa->regs[i]))
74ca34ce
DJ
8358 /* See above for why we do not issue an error here. */
8359 continue;
8360}
c906108c
SS
8361\f
8362
8363/* Return the number of hex digits in num. */
8364
8365static int
fba45db2 8366hexnumlen (ULONGEST num)
c906108c
SS
8367{
8368 int i;
8369
8370 for (i = 0; num != 0; i++)
8371 num >>= 4;
8372
325fac50 8373 return std::max (i, 1);
c906108c
SS
8374}
8375
2df3850c 8376/* Set BUF to the minimum number of hex digits representing NUM. */
c906108c
SS
8377
8378static int
fba45db2 8379hexnumstr (char *buf, ULONGEST num)
c906108c 8380{
c906108c 8381 int len = hexnumlen (num);
a744cf53 8382
2df3850c
JM
8383 return hexnumnstr (buf, num, len);
8384}
8385
c906108c 8386
2df3850c 8387/* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
c906108c 8388
2df3850c 8389static int
fba45db2 8390hexnumnstr (char *buf, ULONGEST num, int width)
2df3850c
JM
8391{
8392 int i;
8393
8394 buf[width] = '\0';
8395
8396 for (i = width - 1; i >= 0; i--)
c906108c 8397 {
c5aa993b 8398 buf[i] = "0123456789abcdef"[(num & 0xf)];
c906108c
SS
8399 num >>= 4;
8400 }
8401
2df3850c 8402 return width;
c906108c
SS
8403}
8404
23860348 8405/* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
c906108c
SS
8406
8407static CORE_ADDR
fba45db2 8408remote_address_masked (CORE_ADDR addr)
c906108c 8409{
883b9c6c 8410 unsigned int address_size = remote_address_size;
a744cf53 8411
911c95a5
UW
8412 /* If "remoteaddresssize" was not set, default to target address size. */
8413 if (!address_size)
f5656ead 8414 address_size = gdbarch_addr_bit (target_gdbarch ());
911c95a5
UW
8415
8416 if (address_size > 0
8417 && address_size < (sizeof (ULONGEST) * 8))
c906108c
SS
8418 {
8419 /* Only create a mask when that mask can safely be constructed
23860348 8420 in a ULONGEST variable. */
c906108c 8421 ULONGEST mask = 1;
a744cf53 8422
911c95a5 8423 mask = (mask << address_size) - 1;
c906108c
SS
8424 addr &= mask;
8425 }
8426 return addr;
8427}
8428
8429/* Determine whether the remote target supports binary downloading.
8430 This is accomplished by sending a no-op memory write of zero length
8431 to the target at the specified address. It does not suffice to send
23860348
MS
8432 the whole packet, since many stubs strip the eighth bit and
8433 subsequently compute a wrong checksum, which causes real havoc with
8434 remote_write_bytes.
7a292a7a 8435
96baa820 8436 NOTE: This can still lose if the serial line is not eight-bit
0df8b418 8437 clean. In cases like this, the user should clear "remote
23860348 8438 X-packet". */
96baa820 8439
6b8edb51
PA
8440void
8441remote_target::check_binary_download (CORE_ADDR addr)
c906108c 8442{
d01949b6 8443 struct remote_state *rs = get_remote_state ();
24b06219 8444
4082afcc 8445 switch (packet_support (PACKET_X))
c906108c 8446 {
96baa820
JM
8447 case PACKET_DISABLE:
8448 break;
8449 case PACKET_ENABLE:
8450 break;
8451 case PACKET_SUPPORT_UNKNOWN:
8452 {
96baa820 8453 char *p;
802188a7 8454
8d64371b 8455 p = rs->buf.data ();
96baa820
JM
8456 *p++ = 'X';
8457 p += hexnumstr (p, (ULONGEST) addr);
8458 *p++ = ',';
8459 p += hexnumstr (p, (ULONGEST) 0);
8460 *p++ = ':';
8461 *p = '\0';
802188a7 8462
8d64371b
TT
8463 putpkt_binary (rs->buf.data (), (int) (p - rs->buf.data ()));
8464 getpkt (&rs->buf, 0);
c906108c 8465
2e9f7625 8466 if (rs->buf[0] == '\0')
96baa820
JM
8467 {
8468 if (remote_debug)
8469 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
8470 "binary downloading NOT "
8471 "supported by target\n");
444abaca 8472 remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
96baa820
JM
8473 }
8474 else
8475 {
8476 if (remote_debug)
8477 fprintf_unfiltered (gdb_stdlog,
64b9b334 8478 "binary downloading supported by target\n");
444abaca 8479 remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
96baa820
JM
8480 }
8481 break;
8482 }
c906108c
SS
8483 }
8484}
8485
124e13d9
SM
8486/* Helper function to resize the payload in order to try to get a good
8487 alignment. We try to write an amount of data such that the next write will
8488 start on an address aligned on REMOTE_ALIGN_WRITES. */
8489
8490static int
8491align_for_efficient_write (int todo, CORE_ADDR memaddr)
8492{
8493 return ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr;
8494}
8495
c906108c
SS
8496/* Write memory data directly to the remote machine.
8497 This does not inform the data cache; the data cache uses this.
a76d924d 8498 HEADER is the starting part of the packet.
c906108c
SS
8499 MEMADDR is the address in the remote memory space.
8500 MYADDR is the address of the buffer in our space.
124e13d9
SM
8501 LEN_UNITS is the number of addressable units to write.
8502 UNIT_SIZE is the length in bytes of an addressable unit.
a76d924d
DJ
8503 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
8504 should send data as binary ('X'), or hex-encoded ('M').
8505
8506 The function creates packet of the form
8507 <HEADER><ADDRESS>,<LENGTH>:<DATA>
8508
124e13d9 8509 where encoding of <DATA> is terminated by PACKET_FORMAT.
a76d924d
DJ
8510
8511 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
8512 are omitted.
8513
9b409511 8514 Return the transferred status, error or OK (an
124e13d9
SM
8515 'enum target_xfer_status' value). Save the number of addressable units
8516 transferred in *XFERED_LEN_UNITS. Only transfer a single packet.
8517
8518 On a platform with an addressable memory size of 2 bytes (UNIT_SIZE == 2), an
8519 exchange between gdb and the stub could look like (?? in place of the
8520 checksum):
8521
8522 -> $m1000,4#??
8523 <- aaaabbbbccccdddd
8524
8525 -> $M1000,3:eeeeffffeeee#??
8526 <- OK
8527
8528 -> $m1000,4#??
8529 <- eeeeffffeeeedddd */
c906108c 8530
6b8edb51
PA
8531target_xfer_status
8532remote_target::remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
8533 const gdb_byte *myaddr,
8534 ULONGEST len_units,
8535 int unit_size,
8536 ULONGEST *xfered_len_units,
8537 char packet_format, int use_length)
c906108c 8538{
6d820c5c 8539 struct remote_state *rs = get_remote_state ();
cfd77fa1 8540 char *p;
a76d924d
DJ
8541 char *plen = NULL;
8542 int plenlen = 0;
124e13d9
SM
8543 int todo_units;
8544 int units_written;
8545 int payload_capacity_bytes;
8546 int payload_length_bytes;
a76d924d
DJ
8547
8548 if (packet_format != 'X' && packet_format != 'M')
8549 internal_error (__FILE__, __LINE__,
9b20d036 8550 _("remote_write_bytes_aux: bad packet format"));
c906108c 8551
124e13d9 8552 if (len_units == 0)
9b409511 8553 return TARGET_XFER_EOF;
b2182ed2 8554
124e13d9 8555 payload_capacity_bytes = get_memory_write_packet_size ();
2bc416ba 8556
6d820c5c
DJ
8557 /* The packet buffer will be large enough for the payload;
8558 get_memory_packet_size ensures this. */
a76d924d 8559 rs->buf[0] = '\0';
c906108c 8560
a257b5bb 8561 /* Compute the size of the actual payload by subtracting out the
0df8b418
MS
8562 packet header and footer overhead: "$M<memaddr>,<len>:...#nn". */
8563
124e13d9 8564 payload_capacity_bytes -= strlen ("$,:#NN");
a76d924d 8565 if (!use_length)
0df8b418 8566 /* The comma won't be used. */
124e13d9
SM
8567 payload_capacity_bytes += 1;
8568 payload_capacity_bytes -= strlen (header);
8569 payload_capacity_bytes -= hexnumlen (memaddr);
c906108c 8570
a76d924d 8571 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
917317f4 8572
8d64371b
TT
8573 strcat (rs->buf.data (), header);
8574 p = rs->buf.data () + strlen (header);
a76d924d
DJ
8575
8576 /* Compute a best guess of the number of bytes actually transfered. */
8577 if (packet_format == 'X')
c906108c 8578 {
23860348 8579 /* Best guess at number of bytes that will fit. */
325fac50
PA
8580 todo_units = std::min (len_units,
8581 (ULONGEST) payload_capacity_bytes / unit_size);
a76d924d 8582 if (use_length)
124e13d9 8583 payload_capacity_bytes -= hexnumlen (todo_units);
325fac50 8584 todo_units = std::min (todo_units, payload_capacity_bytes / unit_size);
a76d924d
DJ
8585 }
8586 else
8587 {
124e13d9 8588 /* Number of bytes that will fit. */
325fac50
PA
8589 todo_units
8590 = std::min (len_units,
8591 (ULONGEST) (payload_capacity_bytes / unit_size) / 2);
a76d924d 8592 if (use_length)
124e13d9 8593 payload_capacity_bytes -= hexnumlen (todo_units);
325fac50
PA
8594 todo_units = std::min (todo_units,
8595 (payload_capacity_bytes / unit_size) / 2);
917317f4 8596 }
a76d924d 8597
124e13d9 8598 if (todo_units <= 0)
3de11b2e 8599 internal_error (__FILE__, __LINE__,
405f8e94 8600 _("minimum packet size too small to write data"));
802188a7 8601
6765f3e5
DJ
8602 /* If we already need another packet, then try to align the end
8603 of this packet to a useful boundary. */
124e13d9
SM
8604 if (todo_units > 2 * REMOTE_ALIGN_WRITES && todo_units < len_units)
8605 todo_units = align_for_efficient_write (todo_units, memaddr);
6765f3e5 8606
a257b5bb 8607 /* Append "<memaddr>". */
917317f4
JM
8608 memaddr = remote_address_masked (memaddr);
8609 p += hexnumstr (p, (ULONGEST) memaddr);
a257b5bb 8610
a76d924d
DJ
8611 if (use_length)
8612 {
8613 /* Append ",". */
8614 *p++ = ',';
802188a7 8615
124e13d9
SM
8616 /* Append the length and retain its location and size. It may need to be
8617 adjusted once the packet body has been created. */
a76d924d 8618 plen = p;
124e13d9 8619 plenlen = hexnumstr (p, (ULONGEST) todo_units);
a76d924d
DJ
8620 p += plenlen;
8621 }
a257b5bb
AC
8622
8623 /* Append ":". */
917317f4
JM
8624 *p++ = ':';
8625 *p = '\0';
802188a7 8626
a257b5bb 8627 /* Append the packet body. */
a76d924d 8628 if (packet_format == 'X')
917317f4 8629 {
917317f4
JM
8630 /* Binary mode. Send target system values byte by byte, in
8631 increasing byte addresses. Only escape certain critical
8632 characters. */
124e13d9
SM
8633 payload_length_bytes =
8634 remote_escape_output (myaddr, todo_units, unit_size, (gdb_byte *) p,
8635 &units_written, payload_capacity_bytes);
6765f3e5 8636
124e13d9 8637 /* If not all TODO units fit, then we'll need another packet. Make
9b7194bc
DJ
8638 a second try to keep the end of the packet aligned. Don't do
8639 this if the packet is tiny. */
124e13d9 8640 if (units_written < todo_units && units_written > 2 * REMOTE_ALIGN_WRITES)
6765f3e5 8641 {
124e13d9
SM
8642 int new_todo_units;
8643
8644 new_todo_units = align_for_efficient_write (units_written, memaddr);
8645
8646 if (new_todo_units != units_written)
8647 payload_length_bytes =
8648 remote_escape_output (myaddr, new_todo_units, unit_size,
8649 (gdb_byte *) p, &units_written,
8650 payload_capacity_bytes);
6765f3e5
DJ
8651 }
8652
124e13d9
SM
8653 p += payload_length_bytes;
8654 if (use_length && units_written < todo_units)
c906108c 8655 {
802188a7 8656 /* Escape chars have filled up the buffer prematurely,
124e13d9 8657 and we have actually sent fewer units than planned.
917317f4
JM
8658 Fix-up the length field of the packet. Use the same
8659 number of characters as before. */
124e13d9
SM
8660 plen += hexnumnstr (plen, (ULONGEST) units_written,
8661 plenlen);
917317f4 8662 *plen = ':'; /* overwrite \0 from hexnumnstr() */
c906108c 8663 }
a76d924d
DJ
8664 }
8665 else
8666 {
917317f4
JM
8667 /* Normal mode: Send target system values byte by byte, in
8668 increasing byte addresses. Each byte is encoded as a two hex
8669 value. */
124e13d9
SM
8670 p += 2 * bin2hex (myaddr, p, todo_units * unit_size);
8671 units_written = todo_units;
c906108c 8672 }
802188a7 8673
8d64371b
TT
8674 putpkt_binary (rs->buf.data (), (int) (p - rs->buf.data ()));
8675 getpkt (&rs->buf, 0);
802188a7 8676
2e9f7625 8677 if (rs->buf[0] == 'E')
00d84524 8678 return TARGET_XFER_E_IO;
802188a7 8679
124e13d9
SM
8680 /* Return UNITS_WRITTEN, not TODO_UNITS, in case escape chars caused us to
8681 send fewer units than we'd planned. */
8682 *xfered_len_units = (ULONGEST) units_written;
92ffd475 8683 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
c906108c
SS
8684}
8685
a76d924d
DJ
8686/* Write memory data directly to the remote machine.
8687 This does not inform the data cache; the data cache uses this.
8688 MEMADDR is the address in the remote memory space.
8689 MYADDR is the address of the buffer in our space.
8690 LEN is the number of bytes.
8691
9b409511
YQ
8692 Return the transferred status, error or OK (an
8693 'enum target_xfer_status' value). Save the number of bytes
8694 transferred in *XFERED_LEN. Only transfer a single packet. */
a76d924d 8695
6b8edb51
PA
8696target_xfer_status
8697remote_target::remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr,
8698 ULONGEST len, int unit_size,
8699 ULONGEST *xfered_len)
a76d924d 8700{
a121b7c1 8701 const char *packet_format = NULL;
a76d924d
DJ
8702
8703 /* Check whether the target supports binary download. */
8704 check_binary_download (memaddr);
8705
4082afcc 8706 switch (packet_support (PACKET_X))
a76d924d
DJ
8707 {
8708 case PACKET_ENABLE:
8709 packet_format = "X";
8710 break;
8711 case PACKET_DISABLE:
8712 packet_format = "M";
8713 break;
8714 case PACKET_SUPPORT_UNKNOWN:
8715 internal_error (__FILE__, __LINE__,
8716 _("remote_write_bytes: bad internal state"));
8717 default:
8718 internal_error (__FILE__, __LINE__, _("bad switch"));
8719 }
8720
8721 return remote_write_bytes_aux (packet_format,
124e13d9 8722 memaddr, myaddr, len, unit_size, xfered_len,
9b409511 8723 packet_format[0], 1);
a76d924d
DJ
8724}
8725
9217e74e
YQ
8726/* Read memory data directly from the remote machine.
8727 This does not use the data cache; the data cache uses this.
8728 MEMADDR is the address in the remote memory space.
8729 MYADDR is the address of the buffer in our space.
124e13d9
SM
8730 LEN_UNITS is the number of addressable memory units to read..
8731 UNIT_SIZE is the length in bytes of an addressable unit.
9217e74e
YQ
8732
8733 Return the transferred status, error or OK (an
8734 'enum target_xfer_status' value). Save the number of bytes
124e13d9
SM
8735 transferred in *XFERED_LEN_UNITS.
8736
8737 See the comment of remote_write_bytes_aux for an example of
8738 memory read/write exchange between gdb and the stub. */
9217e74e 8739
6b8edb51
PA
8740target_xfer_status
8741remote_target::remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr,
8742 ULONGEST len_units,
8743 int unit_size, ULONGEST *xfered_len_units)
9217e74e
YQ
8744{
8745 struct remote_state *rs = get_remote_state ();
124e13d9 8746 int buf_size_bytes; /* Max size of packet output buffer. */
9217e74e 8747 char *p;
124e13d9
SM
8748 int todo_units;
8749 int decoded_bytes;
9217e74e 8750
124e13d9 8751 buf_size_bytes = get_memory_read_packet_size ();
9217e74e
YQ
8752 /* The packet buffer will be large enough for the payload;
8753 get_memory_packet_size ensures this. */
8754
124e13d9 8755 /* Number of units that will fit. */
325fac50
PA
8756 todo_units = std::min (len_units,
8757 (ULONGEST) (buf_size_bytes / unit_size) / 2);
9217e74e
YQ
8758
8759 /* Construct "m"<memaddr>","<len>". */
8760 memaddr = remote_address_masked (memaddr);
8d64371b 8761 p = rs->buf.data ();
9217e74e
YQ
8762 *p++ = 'm';
8763 p += hexnumstr (p, (ULONGEST) memaddr);
8764 *p++ = ',';
124e13d9 8765 p += hexnumstr (p, (ULONGEST) todo_units);
9217e74e
YQ
8766 *p = '\0';
8767 putpkt (rs->buf);
8d64371b 8768 getpkt (&rs->buf, 0);
9217e74e
YQ
8769 if (rs->buf[0] == 'E'
8770 && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2])
8771 && rs->buf[3] == '\0')
8772 return TARGET_XFER_E_IO;
8773 /* Reply describes memory byte by byte, each byte encoded as two hex
8774 characters. */
8d64371b 8775 p = rs->buf.data ();
124e13d9 8776 decoded_bytes = hex2bin (p, myaddr, todo_units * unit_size);
9217e74e 8777 /* Return what we have. Let higher layers handle partial reads. */
124e13d9 8778 *xfered_len_units = (ULONGEST) (decoded_bytes / unit_size);
92ffd475 8779 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
9217e74e
YQ
8780}
8781
b55fbac4
YQ
8782/* Using the set of read-only target sections of remote, read live
8783 read-only memory.
8acf9577
YQ
8784
8785 For interface/parameters/return description see target.h,
8786 to_xfer_partial. */
8787
6b8edb51
PA
8788target_xfer_status
8789remote_target::remote_xfer_live_readonly_partial (gdb_byte *readbuf,
8790 ULONGEST memaddr,
8791 ULONGEST len,
8792 int unit_size,
8793 ULONGEST *xfered_len)
8acf9577
YQ
8794{
8795 struct target_section *secp;
8796 struct target_section_table *table;
8797
6b8edb51 8798 secp = target_section_by_addr (this, memaddr);
8acf9577
YQ
8799 if (secp != NULL
8800 && (bfd_get_section_flags (secp->the_bfd_section->owner,
8801 secp->the_bfd_section)
8802 & SEC_READONLY))
8803 {
8804 struct target_section *p;
8805 ULONGEST memend = memaddr + len;
8806
6b8edb51 8807 table = target_get_section_table (this);
8acf9577
YQ
8808
8809 for (p = table->sections; p < table->sections_end; p++)
8810 {
8811 if (memaddr >= p->addr)
8812 {
8813 if (memend <= p->endaddr)
8814 {
8815 /* Entire transfer is within this section. */
124e13d9 8816 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 8817 xfered_len);
8acf9577
YQ
8818 }
8819 else if (memaddr >= p->endaddr)
8820 {
8821 /* This section ends before the transfer starts. */
8822 continue;
8823 }
8824 else
8825 {
8826 /* This section overlaps the transfer. Just do half. */
8827 len = p->endaddr - memaddr;
124e13d9 8828 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 8829 xfered_len);
8acf9577
YQ
8830 }
8831 }
8832 }
8833 }
8834
8835 return TARGET_XFER_EOF;
8836}
8837
9217e74e
YQ
8838/* Similar to remote_read_bytes_1, but it reads from the remote stub
8839 first if the requested memory is unavailable in traceframe.
8840 Otherwise, fall back to remote_read_bytes_1. */
c906108c 8841
6b8edb51
PA
8842target_xfer_status
8843remote_target::remote_read_bytes (CORE_ADDR memaddr,
8844 gdb_byte *myaddr, ULONGEST len, int unit_size,
8845 ULONGEST *xfered_len)
c906108c 8846{
6b6aa828 8847 if (len == 0)
96c4f946 8848 return TARGET_XFER_EOF;
b2182ed2 8849
8acf9577
YQ
8850 if (get_traceframe_number () != -1)
8851 {
a79b1bc6 8852 std::vector<mem_range> available;
8acf9577
YQ
8853
8854 /* If we fail to get the set of available memory, then the
8855 target does not support querying traceframe info, and so we
8856 attempt reading from the traceframe anyway (assuming the
8857 target implements the old QTro packet then). */
8858 if (traceframe_available_memory (&available, memaddr, len))
8859 {
a79b1bc6 8860 if (available.empty () || available[0].start != memaddr)
8acf9577
YQ
8861 {
8862 enum target_xfer_status res;
8863
8864 /* Don't read into the traceframe's available
8865 memory. */
a79b1bc6 8866 if (!available.empty ())
8acf9577
YQ
8867 {
8868 LONGEST oldlen = len;
8869
a79b1bc6 8870 len = available[0].start - memaddr;
8acf9577
YQ
8871 gdb_assert (len <= oldlen);
8872 }
8873
8acf9577 8874 /* This goes through the topmost target again. */
6b8edb51 8875 res = remote_xfer_live_readonly_partial (myaddr, memaddr,
124e13d9 8876 len, unit_size, xfered_len);
8acf9577
YQ
8877 if (res == TARGET_XFER_OK)
8878 return TARGET_XFER_OK;
8879 else
8880 {
8881 /* No use trying further, we know some memory starting
8882 at MEMADDR isn't available. */
8883 *xfered_len = len;
92ffd475
PC
8884 return (*xfered_len != 0) ?
8885 TARGET_XFER_UNAVAILABLE : TARGET_XFER_EOF;
8acf9577
YQ
8886 }
8887 }
8888
8889 /* Don't try to read more than how much is available, in
8890 case the target implements the deprecated QTro packet to
8891 cater for older GDBs (the target's knowledge of read-only
8892 sections may be outdated by now). */
a79b1bc6 8893 len = available[0].length;
8acf9577
YQ
8894 }
8895 }
8896
124e13d9 8897 return remote_read_bytes_1 (memaddr, myaddr, len, unit_size, xfered_len);
c906108c 8898}
74531fed 8899
c906108c 8900\f
c906108c 8901
a76d924d
DJ
8902/* Sends a packet with content determined by the printf format string
8903 FORMAT and the remaining arguments, then gets the reply. Returns
8904 whether the packet was a success, a failure, or unknown. */
8905
6b8edb51
PA
8906packet_result
8907remote_target::remote_send_printf (const char *format, ...)
a76d924d
DJ
8908{
8909 struct remote_state *rs = get_remote_state ();
8910 int max_size = get_remote_packet_size ();
a76d924d 8911 va_list ap;
a744cf53 8912
a76d924d
DJ
8913 va_start (ap, format);
8914
8915 rs->buf[0] = '\0';
8d64371b 8916 int size = vsnprintf (rs->buf.data (), max_size, format, ap);
33b031ce
GB
8917
8918 va_end (ap);
8919
8920 if (size >= max_size)
9b20d036 8921 internal_error (__FILE__, __LINE__, _("Too long remote packet."));
a76d924d
DJ
8922
8923 if (putpkt (rs->buf) < 0)
8924 error (_("Communication problem with target."));
8925
8926 rs->buf[0] = '\0';
8d64371b 8927 getpkt (&rs->buf, 0);
a76d924d
DJ
8928
8929 return packet_check_result (rs->buf);
8930}
8931
a76d924d
DJ
8932/* Flash writing can take quite some time. We'll set
8933 effectively infinite timeout for flash operations.
8934 In future, we'll need to decide on a better approach. */
8935static const int remote_flash_timeout = 1000;
8936
f6ac5f3d
PA
8937void
8938remote_target::flash_erase (ULONGEST address, LONGEST length)
a76d924d 8939{
f5656ead 8940 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
a76d924d 8941 enum packet_result ret;
2ec845e7
TT
8942 scoped_restore restore_timeout
8943 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
a76d924d
DJ
8944
8945 ret = remote_send_printf ("vFlashErase:%s,%s",
5af949e3 8946 phex (address, addr_size),
a76d924d
DJ
8947 phex (length, 4));
8948 switch (ret)
8949 {
8950 case PACKET_UNKNOWN:
8951 error (_("Remote target does not support flash erase"));
8952 case PACKET_ERROR:
8953 error (_("Error erasing flash with vFlashErase packet"));
8954 default:
8955 break;
8956 }
a76d924d
DJ
8957}
8958
6b8edb51
PA
8959target_xfer_status
8960remote_target::remote_flash_write (ULONGEST address,
8961 ULONGEST length, ULONGEST *xfered_len,
8962 const gdb_byte *data)
a76d924d 8963{
2ec845e7
TT
8964 scoped_restore restore_timeout
8965 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
8966 return remote_write_bytes_aux ("vFlashWrite:", address, data, length, 1,
8967 xfered_len,'X', 0);
a76d924d
DJ
8968}
8969
f6ac5f3d
PA
8970void
8971remote_target::flash_done ()
a76d924d 8972{
a76d924d 8973 int ret;
a76d924d 8974
2ec845e7
TT
8975 scoped_restore restore_timeout
8976 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
8977
a76d924d 8978 ret = remote_send_printf ("vFlashDone");
a76d924d
DJ
8979
8980 switch (ret)
8981 {
8982 case PACKET_UNKNOWN:
8983 error (_("Remote target does not support vFlashDone"));
8984 case PACKET_ERROR:
8985 error (_("Error finishing flash operation"));
8986 default:
8987 break;
8988 }
8989}
8990
f6ac5f3d
PA
8991void
8992remote_target::files_info ()
c906108c
SS
8993{
8994 puts_filtered ("Debugging a target over a serial line.\n");
8995}
8996\f
8997/* Stuff for dealing with the packets which are part of this protocol.
8998 See comment at top of file for details. */
8999
1927e618
PA
9000/* Close/unpush the remote target, and throw a TARGET_CLOSE_ERROR
9001 error to higher layers. Called when a serial error is detected.
9002 The exception message is STRING, followed by a colon and a blank,
d6cb50a2
JK
9003 the system error message for errno at function entry and final dot
9004 for output compatibility with throw_perror_with_name. */
1927e618
PA
9005
9006static void
9007unpush_and_perror (const char *string)
9008{
d6cb50a2 9009 int saved_errno = errno;
1927e618
PA
9010
9011 remote_unpush_target ();
d6cb50a2
JK
9012 throw_error (TARGET_CLOSE_ERROR, "%s: %s.", string,
9013 safe_strerror (saved_errno));
1927e618
PA
9014}
9015
048094ac
PA
9016/* Read a single character from the remote end. The current quit
9017 handler is overridden to avoid quitting in the middle of packet
9018 sequence, as that would break communication with the remote server.
9019 See remote_serial_quit_handler for more detail. */
c906108c 9020
6b8edb51
PA
9021int
9022remote_target::readchar (int timeout)
c906108c
SS
9023{
9024 int ch;
5d93a237 9025 struct remote_state *rs = get_remote_state ();
048094ac 9026
2ec845e7 9027 {
6b8edb51
PA
9028 scoped_restore restore_quit_target
9029 = make_scoped_restore (&curr_quit_handler_target, this);
2ec845e7 9030 scoped_restore restore_quit
6b8edb51 9031 = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
c906108c 9032
2ec845e7 9033 rs->got_ctrlc_during_io = 0;
c906108c 9034
2ec845e7 9035 ch = serial_readchar (rs->remote_desc, timeout);
048094ac 9036
2ec845e7
TT
9037 if (rs->got_ctrlc_during_io)
9038 set_quit_flag ();
9039 }
048094ac 9040
2acceee2 9041 if (ch >= 0)
0876f84a 9042 return ch;
2acceee2
JM
9043
9044 switch ((enum serial_rc) ch)
c906108c
SS
9045 {
9046 case SERIAL_EOF:
78a095c3 9047 remote_unpush_target ();
598d3636 9048 throw_error (TARGET_CLOSE_ERROR, _("Remote connection closed"));
2acceee2 9049 /* no return */
c906108c 9050 case SERIAL_ERROR:
1927e618
PA
9051 unpush_and_perror (_("Remote communication error. "
9052 "Target disconnected."));
2acceee2 9053 /* no return */
c906108c 9054 case SERIAL_TIMEOUT:
2acceee2 9055 break;
c906108c 9056 }
2acceee2 9057 return ch;
c906108c
SS
9058}
9059
c33e31fd 9060/* Wrapper for serial_write that closes the target and throws if
048094ac
PA
9061 writing fails. The current quit handler is overridden to avoid
9062 quitting in the middle of packet sequence, as that would break
9063 communication with the remote server. See
9064 remote_serial_quit_handler for more detail. */
c33e31fd 9065
6b8edb51
PA
9066void
9067remote_target::remote_serial_write (const char *str, int len)
c33e31fd 9068{
5d93a237 9069 struct remote_state *rs = get_remote_state ();
048094ac 9070
6b8edb51
PA
9071 scoped_restore restore_quit_target
9072 = make_scoped_restore (&curr_quit_handler_target, this);
2ec845e7 9073 scoped_restore restore_quit
6b8edb51 9074 = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
048094ac
PA
9075
9076 rs->got_ctrlc_during_io = 0;
5d93a237
TT
9077
9078 if (serial_write (rs->remote_desc, str, len))
c33e31fd 9079 {
1927e618
PA
9080 unpush_and_perror (_("Remote communication error. "
9081 "Target disconnected."));
c33e31fd 9082 }
048094ac
PA
9083
9084 if (rs->got_ctrlc_during_io)
9085 set_quit_flag ();
c33e31fd
PA
9086}
9087
b3ced9ba
PA
9088/* Return a string representing an escaped version of BUF, of len N.
9089 E.g. \n is converted to \\n, \t to \\t, etc. */
6e5abd65 9090
b3ced9ba 9091static std::string
6e5abd65
PA
9092escape_buffer (const char *buf, int n)
9093{
d7e74731 9094 string_file stb;
6e5abd65 9095
d7e74731
PA
9096 stb.putstrn (buf, n, '\\');
9097 return std::move (stb.string ());
6e5abd65
PA
9098}
9099
c906108c
SS
9100/* Display a null-terminated packet on stdout, for debugging, using C
9101 string notation. */
9102
9103static void
baa336ce 9104print_packet (const char *buf)
c906108c
SS
9105{
9106 puts_filtered ("\"");
43e526b9 9107 fputstr_filtered (buf, '"', gdb_stdout);
c906108c
SS
9108 puts_filtered ("\"");
9109}
9110
9111int
6b8edb51 9112remote_target::putpkt (const char *buf)
c906108c
SS
9113{
9114 return putpkt_binary (buf, strlen (buf));
9115}
9116
6b8edb51
PA
9117/* Wrapper around remote_target::putpkt to avoid exporting
9118 remote_target. */
9119
9120int
9121putpkt (remote_target *remote, const char *buf)
9122{
9123 return remote->putpkt (buf);
9124}
9125
c906108c 9126/* Send a packet to the remote machine, with error checking. The data
23860348 9127 of the packet is in BUF. The string in BUF can be at most
ea9c271d 9128 get_remote_packet_size () - 5 to account for the $, # and checksum,
23860348
MS
9129 and for a possible /0 if we are debugging (remote_debug) and want
9130 to print the sent packet as a string. */
c906108c 9131
6b8edb51
PA
9132int
9133remote_target::putpkt_binary (const char *buf, int cnt)
c906108c 9134{
2d717e4f 9135 struct remote_state *rs = get_remote_state ();
c906108c
SS
9136 int i;
9137 unsigned char csum = 0;
b80406ac
TT
9138 gdb::def_vector<char> data (cnt + 6);
9139 char *buf2 = data.data ();
085dd6e6 9140
c906108c
SS
9141 int ch;
9142 int tcount = 0;
9143 char *p;
9144
e24a49d8
PA
9145 /* Catch cases like trying to read memory or listing threads while
9146 we're waiting for a stop reply. The remote server wouldn't be
9147 ready to handle this request, so we'd hang and timeout. We don't
9148 have to worry about this in synchronous mode, because in that
9149 case it's not possible to issue a command while the target is
74531fed
PA
9150 running. This is not a problem in non-stop mode, because in that
9151 case, the stub is always ready to process serial input. */
6efcd9a8
PA
9152 if (!target_is_non_stop_p ()
9153 && target_is_async_p ()
9154 && rs->waiting_for_stop_reply)
9597b22a
DE
9155 {
9156 error (_("Cannot execute this command while the target is running.\n"
9157 "Use the \"interrupt\" command to stop the target\n"
9158 "and then try again."));
9159 }
e24a49d8 9160
2d717e4f
DJ
9161 /* We're sending out a new packet. Make sure we don't look at a
9162 stale cached response. */
9163 rs->cached_wait_status = 0;
9164
c906108c
SS
9165 /* Copy the packet into buffer BUF2, encapsulating it
9166 and giving it a checksum. */
9167
c906108c
SS
9168 p = buf2;
9169 *p++ = '$';
9170
9171 for (i = 0; i < cnt; i++)
9172 {
9173 csum += buf[i];
9174 *p++ = buf[i];
9175 }
9176 *p++ = '#';
9177 *p++ = tohex ((csum >> 4) & 0xf);
9178 *p++ = tohex (csum & 0xf);
9179
9180 /* Send it over and over until we get a positive ack. */
9181
9182 while (1)
9183 {
9184 int started_error_output = 0;
9185
9186 if (remote_debug)
9187 {
9188 *p = '\0';
b3ced9ba 9189
6f8976bf
YQ
9190 int len = (int) (p - buf2);
9191
9192 std::string str
9193 = escape_buffer (buf2, std::min (len, REMOTE_DEBUG_MAX_CHAR));
9194
9195 fprintf_unfiltered (gdb_stdlog, "Sending packet: %s", str.c_str ());
9196
567a3e54
SM
9197 if (len > REMOTE_DEBUG_MAX_CHAR)
9198 fprintf_unfiltered (gdb_stdlog, "[%d bytes omitted]",
9199 len - REMOTE_DEBUG_MAX_CHAR);
6f8976bf
YQ
9200
9201 fprintf_unfiltered (gdb_stdlog, "...");
b3ced9ba 9202
0f71a2f6 9203 gdb_flush (gdb_stdlog);
c906108c 9204 }
c33e31fd 9205 remote_serial_write (buf2, p - buf2);
c906108c 9206
a6f3e723
SL
9207 /* If this is a no acks version of the remote protocol, send the
9208 packet and move on. */
9209 if (rs->noack_mode)
9210 break;
9211
74531fed
PA
9212 /* Read until either a timeout occurs (-2) or '+' is read.
9213 Handle any notification that arrives in the mean time. */
c906108c
SS
9214 while (1)
9215 {
9216 ch = readchar (remote_timeout);
9217
c5aa993b 9218 if (remote_debug)
c906108c
SS
9219 {
9220 switch (ch)
9221 {
9222 case '+':
1216fa2c 9223 case '-':
c906108c
SS
9224 case SERIAL_TIMEOUT:
9225 case '$':
74531fed 9226 case '%':
c906108c
SS
9227 if (started_error_output)
9228 {
9229 putchar_unfiltered ('\n');
9230 started_error_output = 0;
9231 }
9232 }
9233 }
9234
9235 switch (ch)
9236 {
9237 case '+':
9238 if (remote_debug)
0f71a2f6 9239 fprintf_unfiltered (gdb_stdlog, "Ack\n");
c906108c 9240 return 1;
1216fa2c
AC
9241 case '-':
9242 if (remote_debug)
9243 fprintf_unfiltered (gdb_stdlog, "Nak\n");
a17d146e 9244 /* FALLTHROUGH */
c906108c 9245 case SERIAL_TIMEOUT:
c5aa993b 9246 tcount++;
c906108c 9247 if (tcount > 3)
b80406ac 9248 return 0;
23860348 9249 break; /* Retransmit buffer. */
c906108c
SS
9250 case '$':
9251 {
40e3f985 9252 if (remote_debug)
2bc416ba 9253 fprintf_unfiltered (gdb_stdlog,
23860348 9254 "Packet instead of Ack, ignoring it\n");
d6f7abdf
AC
9255 /* It's probably an old response sent because an ACK
9256 was lost. Gobble up the packet and ack it so it
9257 doesn't get retransmitted when we resend this
9258 packet. */
6d820c5c 9259 skip_frame ();
c33e31fd 9260 remote_serial_write ("+", 1);
23860348 9261 continue; /* Now, go look for +. */
c906108c 9262 }
74531fed
PA
9263
9264 case '%':
9265 {
9266 int val;
9267
9268 /* If we got a notification, handle it, and go back to looking
9269 for an ack. */
9270 /* We've found the start of a notification. Now
9271 collect the data. */
8d64371b 9272 val = read_frame (&rs->buf);
74531fed
PA
9273 if (val >= 0)
9274 {
9275 if (remote_debug)
9276 {
8d64371b 9277 std::string str = escape_buffer (rs->buf.data (), val);
6e5abd65 9278
6e5abd65
PA
9279 fprintf_unfiltered (gdb_stdlog,
9280 " Notification received: %s\n",
b3ced9ba 9281 str.c_str ());
74531fed 9282 }
8d64371b 9283 handle_notification (rs->notif_state, rs->buf.data ());
74531fed
PA
9284 /* We're in sync now, rewait for the ack. */
9285 tcount = 0;
9286 }
9287 else
9288 {
9289 if (remote_debug)
9290 {
9291 if (!started_error_output)
9292 {
9293 started_error_output = 1;
9294 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
9295 }
9296 fputc_unfiltered (ch & 0177, gdb_stdlog);
8d64371b 9297 fprintf_unfiltered (gdb_stdlog, "%s", rs->buf.data ());
74531fed
PA
9298 }
9299 }
9300 continue;
9301 }
9302 /* fall-through */
c906108c
SS
9303 default:
9304 if (remote_debug)
9305 {
9306 if (!started_error_output)
9307 {
9308 started_error_output = 1;
0f71a2f6 9309 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
c906108c 9310 }
0f71a2f6 9311 fputc_unfiltered (ch & 0177, gdb_stdlog);
c906108c
SS
9312 }
9313 continue;
9314 }
23860348 9315 break; /* Here to retransmit. */
c906108c
SS
9316 }
9317
9318#if 0
9319 /* This is wrong. If doing a long backtrace, the user should be
c5aa993b
JM
9320 able to get out next time we call QUIT, without anything as
9321 violent as interrupt_query. If we want to provide a way out of
9322 here without getting to the next QUIT, it should be based on
9323 hitting ^C twice as in remote_wait. */
c906108c
SS
9324 if (quit_flag)
9325 {
9326 quit_flag = 0;
9327 interrupt_query ();
9328 }
9329#endif
9330 }
a5c0808e 9331
a6f3e723 9332 return 0;
c906108c
SS
9333}
9334
6d820c5c
DJ
9335/* Come here after finding the start of a frame when we expected an
9336 ack. Do our best to discard the rest of this packet. */
9337
6b8edb51
PA
9338void
9339remote_target::skip_frame ()
6d820c5c
DJ
9340{
9341 int c;
9342
9343 while (1)
9344 {
9345 c = readchar (remote_timeout);
9346 switch (c)
9347 {
9348 case SERIAL_TIMEOUT:
9349 /* Nothing we can do. */
9350 return;
9351 case '#':
9352 /* Discard the two bytes of checksum and stop. */
9353 c = readchar (remote_timeout);
9354 if (c >= 0)
9355 c = readchar (remote_timeout);
9356
9357 return;
9358 case '*': /* Run length encoding. */
9359 /* Discard the repeat count. */
9360 c = readchar (remote_timeout);
9361 if (c < 0)
9362 return;
9363 break;
9364 default:
9365 /* A regular character. */
9366 break;
9367 }
9368 }
9369}
9370
c906108c 9371/* Come here after finding the start of the frame. Collect the rest
6d820c5c
DJ
9372 into *BUF, verifying the checksum, length, and handling run-length
9373 compression. NUL terminate the buffer. If there is not enough room,
8d64371b 9374 expand *BUF.
c906108c 9375
c2d11a7d
JM
9376 Returns -1 on error, number of characters in buffer (ignoring the
9377 trailing NULL) on success. (could be extended to return one of the
23860348 9378 SERIAL status indications). */
c2d11a7d 9379
6b8edb51 9380long
8d64371b 9381remote_target::read_frame (gdb::char_vector *buf_p)
c906108c
SS
9382{
9383 unsigned char csum;
c2d11a7d 9384 long bc;
c906108c 9385 int c;
8d64371b 9386 char *buf = buf_p->data ();
a6f3e723 9387 struct remote_state *rs = get_remote_state ();
c906108c
SS
9388
9389 csum = 0;
c2d11a7d 9390 bc = 0;
c906108c
SS
9391
9392 while (1)
9393 {
9394 c = readchar (remote_timeout);
c906108c
SS
9395 switch (c)
9396 {
9397 case SERIAL_TIMEOUT:
9398 if (remote_debug)
0f71a2f6 9399 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog);
c2d11a7d 9400 return -1;
c906108c
SS
9401 case '$':
9402 if (remote_debug)
0f71a2f6
JM
9403 fputs_filtered ("Saw new packet start in middle of old one\n",
9404 gdb_stdlog);
23860348 9405 return -1; /* Start a new packet, count retries. */
c906108c
SS
9406 case '#':
9407 {
9408 unsigned char pktcsum;
e1b09194
AC
9409 int check_0 = 0;
9410 int check_1 = 0;
c906108c 9411
c2d11a7d 9412 buf[bc] = '\0';
c906108c 9413
e1b09194
AC
9414 check_0 = readchar (remote_timeout);
9415 if (check_0 >= 0)
9416 check_1 = readchar (remote_timeout);
802188a7 9417
e1b09194
AC
9418 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
9419 {
9420 if (remote_debug)
2bc416ba 9421 fputs_filtered ("Timeout in checksum, retrying\n",
23860348 9422 gdb_stdlog);
e1b09194
AC
9423 return -1;
9424 }
9425 else if (check_0 < 0 || check_1 < 0)
40e3f985
FN
9426 {
9427 if (remote_debug)
2bc416ba 9428 fputs_filtered ("Communication error in checksum\n",
23860348 9429 gdb_stdlog);
40e3f985
FN
9430 return -1;
9431 }
c906108c 9432
a6f3e723
SL
9433 /* Don't recompute the checksum; with no ack packets we
9434 don't have any way to indicate a packet retransmission
9435 is necessary. */
9436 if (rs->noack_mode)
9437 return bc;
9438
e1b09194 9439 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
c906108c 9440 if (csum == pktcsum)
c2d11a7d 9441 return bc;
c906108c 9442
c5aa993b 9443 if (remote_debug)
c906108c 9444 {
b3ced9ba 9445 std::string str = escape_buffer (buf, bc);
6e5abd65 9446
6e5abd65 9447 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
9448 "Bad checksum, sentsum=0x%x, "
9449 "csum=0x%x, buf=%s\n",
b3ced9ba 9450 pktcsum, csum, str.c_str ());
c906108c 9451 }
c2d11a7d 9452 /* Number of characters in buffer ignoring trailing
23860348 9453 NULL. */
c2d11a7d 9454 return -1;
c906108c 9455 }
23860348 9456 case '*': /* Run length encoding. */
c2c6d25f
JM
9457 {
9458 int repeat;
c906108c 9459
a744cf53 9460 csum += c;
b4501125
AC
9461 c = readchar (remote_timeout);
9462 csum += c;
23860348 9463 repeat = c - ' ' + 3; /* Compute repeat count. */
c906108c 9464
23860348 9465 /* The character before ``*'' is repeated. */
c2d11a7d 9466
6d820c5c 9467 if (repeat > 0 && repeat <= 255 && bc > 0)
c2c6d25f 9468 {
8d64371b 9469 if (bc + repeat - 1 >= buf_p->size () - 1)
6d820c5c
DJ
9470 {
9471 /* Make some more room in the buffer. */
8d64371b
TT
9472 buf_p->resize (buf_p->size () + repeat);
9473 buf = buf_p->data ();
6d820c5c
DJ
9474 }
9475
c2d11a7d
JM
9476 memset (&buf[bc], buf[bc - 1], repeat);
9477 bc += repeat;
c2c6d25f
JM
9478 continue;
9479 }
9480
c2d11a7d 9481 buf[bc] = '\0';
6d820c5c 9482 printf_filtered (_("Invalid run length encoding: %s\n"), buf);
c2d11a7d 9483 return -1;
c2c6d25f 9484 }
c906108c 9485 default:
8d64371b 9486 if (bc >= buf_p->size () - 1)
c906108c 9487 {
6d820c5c 9488 /* Make some more room in the buffer. */
8d64371b
TT
9489 buf_p->resize (buf_p->size () * 2);
9490 buf = buf_p->data ();
c906108c
SS
9491 }
9492
6d820c5c
DJ
9493 buf[bc++] = c;
9494 csum += c;
9495 continue;
c906108c
SS
9496 }
9497 }
9498}
9499
9500/* Read a packet from the remote machine, with error checking, and
8d64371b
TT
9501 store it in *BUF. Resize *BUF if necessary to hold the result. If
9502 FOREVER, wait forever rather than timing out; this is used (in
9503 synchronous mode) to wait for a target that is is executing user
9504 code to stop. */
d9fcf2fb
JM
9505/* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
9506 don't have to change all the calls to getpkt to deal with the
9507 return value, because at the moment I don't know what the right
23860348 9508 thing to do it for those. */
6b8edb51 9509
c906108c 9510void
8d64371b 9511remote_target::getpkt (gdb::char_vector *buf, int forever)
d9fcf2fb 9512{
8d64371b 9513 getpkt_sane (buf, forever);
d9fcf2fb
JM
9514}
9515
9516
9517/* Read a packet from the remote machine, with error checking, and
8d64371b
TT
9518 store it in *BUF. Resize *BUF if necessary to hold the result. If
9519 FOREVER, wait forever rather than timing out; this is used (in
9520 synchronous mode) to wait for a target that is is executing user
9521 code to stop. If FOREVER == 0, this function is allowed to time
9522 out gracefully and return an indication of this to the caller.
9523 Otherwise return the number of bytes read. If EXPECTING_NOTIF,
9524 consider receiving a notification enough reason to return to the
9525 caller. *IS_NOTIF is an output boolean that indicates whether *BUF
9526 holds a notification or not (a regular packet). */
74531fed 9527
6b8edb51 9528int
8d64371b 9529remote_target::getpkt_or_notif_sane_1 (gdb::char_vector *buf,
6b8edb51
PA
9530 int forever, int expecting_notif,
9531 int *is_notif)
c906108c 9532{
2d717e4f 9533 struct remote_state *rs = get_remote_state ();
c906108c
SS
9534 int c;
9535 int tries;
9536 int timeout;
df4b58fe 9537 int val = -1;
c906108c 9538
2d717e4f
DJ
9539 /* We're reading a new response. Make sure we don't look at a
9540 previously cached response. */
9541 rs->cached_wait_status = 0;
9542
8d64371b 9543 strcpy (buf->data (), "timeout");
c906108c
SS
9544
9545 if (forever)
74531fed
PA
9546 timeout = watchdog > 0 ? watchdog : -1;
9547 else if (expecting_notif)
9548 timeout = 0; /* There should already be a char in the buffer. If
9549 not, bail out. */
c906108c
SS
9550 else
9551 timeout = remote_timeout;
9552
9553#define MAX_TRIES 3
9554
74531fed
PA
9555 /* Process any number of notifications, and then return when
9556 we get a packet. */
9557 for (;;)
c906108c 9558 {
d9c43928 9559 /* If we get a timeout or bad checksum, retry up to MAX_TRIES
74531fed
PA
9560 times. */
9561 for (tries = 1; tries <= MAX_TRIES; tries++)
c906108c 9562 {
74531fed
PA
9563 /* This can loop forever if the remote side sends us
9564 characters continuously, but if it pauses, we'll get
9565 SERIAL_TIMEOUT from readchar because of timeout. Then
9566 we'll count that as a retry.
9567
9568 Note that even when forever is set, we will only wait
9569 forever prior to the start of a packet. After that, we
9570 expect characters to arrive at a brisk pace. They should
9571 show up within remote_timeout intervals. */
9572 do
9573 c = readchar (timeout);
9574 while (c != SERIAL_TIMEOUT && c != '$' && c != '%');
c906108c
SS
9575
9576 if (c == SERIAL_TIMEOUT)
9577 {
74531fed
PA
9578 if (expecting_notif)
9579 return -1; /* Don't complain, it's normal to not get
9580 anything in this case. */
9581
23860348 9582 if (forever) /* Watchdog went off? Kill the target. */
c906108c 9583 {
78a095c3 9584 remote_unpush_target ();
598d3636
JK
9585 throw_error (TARGET_CLOSE_ERROR,
9586 _("Watchdog timeout has expired. "
9587 "Target detached."));
c906108c 9588 }
c906108c 9589 if (remote_debug)
0f71a2f6 9590 fputs_filtered ("Timed out.\n", gdb_stdlog);
c906108c 9591 }
74531fed
PA
9592 else
9593 {
9594 /* We've found the start of a packet or notification.
9595 Now collect the data. */
8d64371b 9596 val = read_frame (buf);
74531fed
PA
9597 if (val >= 0)
9598 break;
9599 }
9600
c33e31fd 9601 remote_serial_write ("-", 1);
c906108c 9602 }
c906108c 9603
74531fed
PA
9604 if (tries > MAX_TRIES)
9605 {
9606 /* We have tried hard enough, and just can't receive the
9607 packet/notification. Give up. */
9608 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
c906108c 9609
74531fed
PA
9610 /* Skip the ack char if we're in no-ack mode. */
9611 if (!rs->noack_mode)
c33e31fd 9612 remote_serial_write ("+", 1);
74531fed
PA
9613 return -1;
9614 }
c906108c 9615
74531fed
PA
9616 /* If we got an ordinary packet, return that to our caller. */
9617 if (c == '$')
c906108c
SS
9618 {
9619 if (remote_debug)
43e526b9 9620 {
6f8976bf 9621 std::string str
8d64371b 9622 = escape_buffer (buf->data (),
6f8976bf
YQ
9623 std::min (val, REMOTE_DEBUG_MAX_CHAR));
9624
9625 fprintf_unfiltered (gdb_stdlog, "Packet received: %s",
9626 str.c_str ());
9627
567a3e54
SM
9628 if (val > REMOTE_DEBUG_MAX_CHAR)
9629 fprintf_unfiltered (gdb_stdlog, "[%d bytes omitted]",
9630 val - REMOTE_DEBUG_MAX_CHAR);
6e5abd65 9631
6f8976bf 9632 fprintf_unfiltered (gdb_stdlog, "\n");
43e526b9 9633 }
a6f3e723
SL
9634
9635 /* Skip the ack char if we're in no-ack mode. */
9636 if (!rs->noack_mode)
c33e31fd 9637 remote_serial_write ("+", 1);
fee9eda9
YQ
9638 if (is_notif != NULL)
9639 *is_notif = 0;
0876f84a 9640 return val;
c906108c
SS
9641 }
9642
74531fed
PA
9643 /* If we got a notification, handle it, and go back to looking
9644 for a packet. */
9645 else
9646 {
9647 gdb_assert (c == '%');
9648
9649 if (remote_debug)
9650 {
8d64371b 9651 std::string str = escape_buffer (buf->data (), val);
6e5abd65 9652
6e5abd65
PA
9653 fprintf_unfiltered (gdb_stdlog,
9654 " Notification received: %s\n",
b3ced9ba 9655 str.c_str ());
74531fed 9656 }
fee9eda9
YQ
9657 if (is_notif != NULL)
9658 *is_notif = 1;
c906108c 9659
8d64371b 9660 handle_notification (rs->notif_state, buf->data ());
c906108c 9661
74531fed 9662 /* Notifications require no acknowledgement. */
a6f3e723 9663
74531fed 9664 if (expecting_notif)
fee9eda9 9665 return val;
74531fed
PA
9666 }
9667 }
9668}
9669
6b8edb51 9670int
8d64371b 9671remote_target::getpkt_sane (gdb::char_vector *buf, int forever)
74531fed 9672{
8d64371b 9673 return getpkt_or_notif_sane_1 (buf, forever, 0, NULL);
74531fed
PA
9674}
9675
6b8edb51 9676int
8d64371b 9677remote_target::getpkt_or_notif_sane (gdb::char_vector *buf, int forever,
6b8edb51 9678 int *is_notif)
74531fed 9679{
8d64371b 9680 return getpkt_or_notif_sane_1 (buf, forever, 1, is_notif);
c906108c 9681}
74531fed 9682
cbb8991c
DB
9683/* Kill any new fork children of process PID that haven't been
9684 processed by follow_fork. */
9685
6b8edb51
PA
9686void
9687remote_target::kill_new_fork_children (int pid)
cbb8991c 9688{
6b8edb51 9689 remote_state *rs = get_remote_state ();
cbb8991c 9690 struct notif_client *notif = &notif_client_stop;
cbb8991c
DB
9691
9692 /* Kill the fork child threads of any threads in process PID
9693 that are stopped at a fork event. */
08036331 9694 for (thread_info *thread : all_non_exited_threads ())
cbb8991c
DB
9695 {
9696 struct target_waitstatus *ws = &thread->pending_follow;
9697
9698 if (is_pending_fork_parent (ws, pid, thread->ptid))
9699 {
953edf2b 9700 int child_pid = ws->value.related_pid.pid ();
cbb8991c
DB
9701 int res;
9702
6b8edb51 9703 res = remote_vkill (child_pid);
cbb8991c
DB
9704 if (res != 0)
9705 error (_("Can't kill fork child process %d"), child_pid);
9706 }
9707 }
9708
9709 /* Check for any pending fork events (not reported or processed yet)
9710 in process PID and kill those fork child threads as well. */
9711 remote_notif_get_pending_events (notif);
953edf2b
TT
9712 for (auto &event : rs->stop_reply_queue)
9713 if (is_pending_fork_parent (&event->ws, pid, event->ptid))
9714 {
9715 int child_pid = event->ws.value.related_pid.pid ();
9716 int res;
9717
9718 res = remote_vkill (child_pid);
9719 if (res != 0)
9720 error (_("Can't kill fork child process %d"), child_pid);
9721 }
cbb8991c
DB
9722}
9723
c906108c 9724\f
8020350c
DB
9725/* Target hook to kill the current inferior. */
9726
f6ac5f3d
PA
9727void
9728remote_target::kill ()
43ff13b4 9729{
8020350c 9730 int res = -1;
e99b03dc 9731 int pid = inferior_ptid.pid ();
8020350c 9732 struct remote_state *rs = get_remote_state ();
0fdf84ca 9733
8020350c 9734 if (packet_support (PACKET_vKill) != PACKET_DISABLE)
0fdf84ca 9735 {
8020350c
DB
9736 /* If we're stopped while forking and we haven't followed yet,
9737 kill the child task. We need to do this before killing the
9738 parent task because if this is a vfork then the parent will
9739 be sleeping. */
6b8edb51 9740 kill_new_fork_children (pid);
8020350c 9741
6b8edb51 9742 res = remote_vkill (pid);
8020350c 9743 if (res == 0)
0fdf84ca 9744 {
bc1e6c81 9745 target_mourn_inferior (inferior_ptid);
0fdf84ca
PA
9746 return;
9747 }
8020350c 9748 }
0fdf84ca 9749
8020350c
DB
9750 /* If we are in 'target remote' mode and we are killing the only
9751 inferior, then we will tell gdbserver to exit and unpush the
9752 target. */
9753 if (res == -1 && !remote_multi_process_p (rs)
9754 && number_of_live_inferiors () == 1)
9755 {
9756 remote_kill_k ();
9757
9758 /* We've killed the remote end, we get to mourn it. If we are
9759 not in extended mode, mourning the inferior also unpushes
9760 remote_ops from the target stack, which closes the remote
9761 connection. */
bc1e6c81 9762 target_mourn_inferior (inferior_ptid);
8020350c
DB
9763
9764 return;
0fdf84ca 9765 }
43ff13b4 9766
8020350c 9767 error (_("Can't kill process"));
43ff13b4
JM
9768}
9769
8020350c
DB
9770/* Send a kill request to the target using the 'vKill' packet. */
9771
6b8edb51
PA
9772int
9773remote_target::remote_vkill (int pid)
82f73884 9774{
4082afcc 9775 if (packet_support (PACKET_vKill) == PACKET_DISABLE)
82f73884
PA
9776 return -1;
9777
6b8edb51
PA
9778 remote_state *rs = get_remote_state ();
9779
82f73884 9780 /* Tell the remote target to detach. */
8d64371b 9781 xsnprintf (rs->buf.data (), get_remote_packet_size (), "vKill;%x", pid);
82f73884 9782 putpkt (rs->buf);
8d64371b 9783 getpkt (&rs->buf, 0);
82f73884 9784
4082afcc
PA
9785 switch (packet_ok (rs->buf,
9786 &remote_protocol_packets[PACKET_vKill]))
9787 {
9788 case PACKET_OK:
9789 return 0;
9790 case PACKET_ERROR:
9791 return 1;
9792 case PACKET_UNKNOWN:
9793 return -1;
9794 default:
9795 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
9796 }
82f73884
PA
9797}
9798
8020350c
DB
9799/* Send a kill request to the target using the 'k' packet. */
9800
6b8edb51
PA
9801void
9802remote_target::remote_kill_k ()
82f73884 9803{
8020350c
DB
9804 /* Catch errors so the user can quit from gdb even when we
9805 aren't on speaking terms with the remote system. */
9806 TRY
82f73884 9807 {
82f73884 9808 putpkt ("k");
82f73884 9809 }
8020350c
DB
9810 CATCH (ex, RETURN_MASK_ERROR)
9811 {
9812 if (ex.error == TARGET_CLOSE_ERROR)
9813 {
9814 /* If we got an (EOF) error that caused the target
9815 to go away, then we're done, that's what we wanted.
9816 "k" is susceptible to cause a premature EOF, given
9817 that the remote server isn't actually required to
9818 reply to "k", and it can happen that it doesn't
9819 even get to reply ACK to the "k". */
9820 return;
9821 }
82f73884 9822
8020350c
DB
9823 /* Otherwise, something went wrong. We didn't actually kill
9824 the target. Just propagate the exception, and let the
9825 user or higher layers decide what to do. */
9826 throw_exception (ex);
9827 }
9828 END_CATCH
82f73884
PA
9829}
9830
f6ac5f3d
PA
9831void
9832remote_target::mourn_inferior ()
c906108c 9833{
8020350c 9834 struct remote_state *rs = get_remote_state ();
ce5ce7ed 9835
9607784a
PA
9836 /* We're no longer interested in notification events of an inferior
9837 that exited or was killed/detached. */
9838 discard_pending_stop_replies (current_inferior ());
9839
8020350c
DB
9840 /* In 'target remote' mode with one inferior, we close the connection. */
9841 if (!rs->extended && number_of_live_inferiors () <= 1)
9842 {
f6ac5f3d 9843 unpush_target (this);
c906108c 9844
8020350c
DB
9845 /* remote_close takes care of doing most of the clean up. */
9846 generic_mourn_inferior ();
9847 return;
9848 }
c906108c 9849
e24a49d8
PA
9850 /* In case we got here due to an error, but we're going to stay
9851 connected. */
9852 rs->waiting_for_stop_reply = 0;
9853
dc1981d7
PA
9854 /* If the current general thread belonged to the process we just
9855 detached from or has exited, the remote side current general
9856 thread becomes undefined. Considering a case like this:
9857
9858 - We just got here due to a detach.
9859 - The process that we're detaching from happens to immediately
9860 report a global breakpoint being hit in non-stop mode, in the
9861 same thread we had selected before.
9862 - GDB attaches to this process again.
9863 - This event happens to be the next event we handle.
9864
9865 GDB would consider that the current general thread didn't need to
9866 be set on the stub side (with Hg), since for all it knew,
9867 GENERAL_THREAD hadn't changed.
9868
9869 Notice that although in all-stop mode, the remote server always
9870 sets the current thread to the thread reporting the stop event,
9871 that doesn't happen in non-stop mode; in non-stop, the stub *must
9872 not* change the current thread when reporting a breakpoint hit,
9873 due to the decoupling of event reporting and event handling.
9874
9875 To keep things simple, we always invalidate our notion of the
9876 current thread. */
47f8a51d 9877 record_currthread (rs, minus_one_ptid);
dc1981d7 9878
8020350c 9879 /* Call common code to mark the inferior as not running. */
48aa3c27
PA
9880 generic_mourn_inferior ();
9881
d729566a 9882 if (!have_inferiors ())
2d717e4f 9883 {
82f73884
PA
9884 if (!remote_multi_process_p (rs))
9885 {
9886 /* Check whether the target is running now - some remote stubs
9887 automatically restart after kill. */
9888 putpkt ("?");
8d64371b 9889 getpkt (&rs->buf, 0);
82f73884
PA
9890
9891 if (rs->buf[0] == 'S' || rs->buf[0] == 'T')
9892 {
3e43a32a
MS
9893 /* Assume that the target has been restarted. Set
9894 inferior_ptid so that bits of core GDB realizes
9895 there's something here, e.g., so that the user can
9896 say "kill" again. */
82f73884
PA
9897 inferior_ptid = magic_null_ptid;
9898 }
82f73884 9899 }
2d717e4f
DJ
9900 }
9901}
c906108c 9902
57810aa7 9903bool
f6ac5f3d 9904extended_remote_target::supports_disable_randomization ()
03583c20 9905{
4082afcc 9906 return packet_support (PACKET_QDisableRandomization) == PACKET_ENABLE;
03583c20
UW
9907}
9908
6b8edb51
PA
9909void
9910remote_target::extended_remote_disable_randomization (int val)
03583c20
UW
9911{
9912 struct remote_state *rs = get_remote_state ();
9913 char *reply;
9914
8d64371b
TT
9915 xsnprintf (rs->buf.data (), get_remote_packet_size (),
9916 "QDisableRandomization:%x", val);
03583c20 9917 putpkt (rs->buf);
b6bb3468 9918 reply = remote_get_noisy_reply ();
03583c20
UW
9919 if (*reply == '\0')
9920 error (_("Target does not support QDisableRandomization."));
9921 if (strcmp (reply, "OK") != 0)
9922 error (_("Bogus QDisableRandomization reply from target: %s"), reply);
9923}
9924
6b8edb51
PA
9925int
9926remote_target::extended_remote_run (const std::string &args)
2d717e4f
DJ
9927{
9928 struct remote_state *rs = get_remote_state ();
2d717e4f 9929 int len;
94585166 9930 const char *remote_exec_file = get_remote_exec_file ();
c906108c 9931
2d717e4f
DJ
9932 /* If the user has disabled vRun support, or we have detected that
9933 support is not available, do not try it. */
4082afcc 9934 if (packet_support (PACKET_vRun) == PACKET_DISABLE)
2d717e4f 9935 return -1;
424163ea 9936
8d64371b
TT
9937 strcpy (rs->buf.data (), "vRun;");
9938 len = strlen (rs->buf.data ());
c906108c 9939
2d717e4f
DJ
9940 if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ())
9941 error (_("Remote file name too long for run packet"));
8d64371b 9942 len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf.data () + len,
9f1b45b0 9943 strlen (remote_exec_file));
2d717e4f 9944
7c5ded6a 9945 if (!args.empty ())
2d717e4f 9946 {
2d717e4f 9947 int i;
2d717e4f 9948
773a1edc 9949 gdb_argv argv (args.c_str ());
2d717e4f
DJ
9950 for (i = 0; argv[i] != NULL; i++)
9951 {
9952 if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ())
9953 error (_("Argument list too long for run packet"));
9954 rs->buf[len++] = ';';
8d64371b 9955 len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf.data () + len,
9f1b45b0 9956 strlen (argv[i]));
2d717e4f 9957 }
2d717e4f
DJ
9958 }
9959
9960 rs->buf[len++] = '\0';
9961
9962 putpkt (rs->buf);
8d64371b 9963 getpkt (&rs->buf, 0);
2d717e4f 9964
4082afcc 9965 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun]))
2d717e4f 9966 {
4082afcc 9967 case PACKET_OK:
3405876a 9968 /* We have a wait response. All is well. */
2d717e4f 9969 return 0;
4082afcc
PA
9970 case PACKET_UNKNOWN:
9971 return -1;
9972 case PACKET_ERROR:
2d717e4f
DJ
9973 if (remote_exec_file[0] == '\0')
9974 error (_("Running the default executable on the remote target failed; "
9975 "try \"set remote exec-file\"?"));
9976 else
9977 error (_("Running \"%s\" on the remote target failed"),
9978 remote_exec_file);
4082afcc
PA
9979 default:
9980 gdb_assert_not_reached (_("bad switch"));
2d717e4f 9981 }
c906108c
SS
9982}
9983
0a2dde4a
SDJ
9984/* Helper function to send set/unset environment packets. ACTION is
9985 either "set" or "unset". PACKET is either "QEnvironmentHexEncoded"
9986 or "QEnvironmentUnsetVariable". VALUE is the variable to be
9987 sent. */
9988
6b8edb51
PA
9989void
9990remote_target::send_environment_packet (const char *action,
9991 const char *packet,
9992 const char *value)
0a2dde4a 9993{
6b8edb51
PA
9994 remote_state *rs = get_remote_state ();
9995
0a2dde4a
SDJ
9996 /* Convert the environment variable to an hex string, which
9997 is the best format to be transmitted over the wire. */
9998 std::string encoded_value = bin2hex ((const gdb_byte *) value,
9999 strlen (value));
10000
8d64371b 10001 xsnprintf (rs->buf.data (), get_remote_packet_size (),
0a2dde4a
SDJ
10002 "%s:%s", packet, encoded_value.c_str ());
10003
10004 putpkt (rs->buf);
8d64371b
TT
10005 getpkt (&rs->buf, 0);
10006 if (strcmp (rs->buf.data (), "OK") != 0)
0a2dde4a
SDJ
10007 warning (_("Unable to %s environment variable '%s' on remote."),
10008 action, value);
10009}
10010
10011/* Helper function to handle the QEnvironment* packets. */
10012
6b8edb51
PA
10013void
10014remote_target::extended_remote_environment_support ()
0a2dde4a 10015{
6b8edb51
PA
10016 remote_state *rs = get_remote_state ();
10017
0a2dde4a
SDJ
10018 if (packet_support (PACKET_QEnvironmentReset) != PACKET_DISABLE)
10019 {
10020 putpkt ("QEnvironmentReset");
8d64371b
TT
10021 getpkt (&rs->buf, 0);
10022 if (strcmp (rs->buf.data (), "OK") != 0)
0a2dde4a
SDJ
10023 warning (_("Unable to reset environment on remote."));
10024 }
10025
10026 gdb_environ *e = &current_inferior ()->environment;
10027
10028 if (packet_support (PACKET_QEnvironmentHexEncoded) != PACKET_DISABLE)
10029 for (const std::string &el : e->user_set_env ())
6b8edb51 10030 send_environment_packet ("set", "QEnvironmentHexEncoded",
0a2dde4a
SDJ
10031 el.c_str ());
10032
10033 if (packet_support (PACKET_QEnvironmentUnset) != PACKET_DISABLE)
10034 for (const std::string &el : e->user_unset_env ())
6b8edb51 10035 send_environment_packet ("unset", "QEnvironmentUnset", el.c_str ());
0a2dde4a
SDJ
10036}
10037
bc3b087d
SDJ
10038/* Helper function to set the current working directory for the
10039 inferior in the remote target. */
10040
6b8edb51
PA
10041void
10042remote_target::extended_remote_set_inferior_cwd ()
bc3b087d
SDJ
10043{
10044 if (packet_support (PACKET_QSetWorkingDir) != PACKET_DISABLE)
10045 {
10046 const char *inferior_cwd = get_inferior_cwd ();
6b8edb51 10047 remote_state *rs = get_remote_state ();
bc3b087d
SDJ
10048
10049 if (inferior_cwd != NULL)
10050 {
10051 std::string hexpath = bin2hex ((const gdb_byte *) inferior_cwd,
10052 strlen (inferior_cwd));
10053
8d64371b 10054 xsnprintf (rs->buf.data (), get_remote_packet_size (),
bc3b087d
SDJ
10055 "QSetWorkingDir:%s", hexpath.c_str ());
10056 }
10057 else
10058 {
10059 /* An empty inferior_cwd means that the user wants us to
10060 reset the remote server's inferior's cwd. */
8d64371b 10061 xsnprintf (rs->buf.data (), get_remote_packet_size (),
bc3b087d
SDJ
10062 "QSetWorkingDir:");
10063 }
10064
10065 putpkt (rs->buf);
8d64371b 10066 getpkt (&rs->buf, 0);
bc3b087d
SDJ
10067 if (packet_ok (rs->buf,
10068 &remote_protocol_packets[PACKET_QSetWorkingDir])
10069 != PACKET_OK)
10070 error (_("\
10071Remote replied unexpectedly while setting the inferior's working\n\
10072directory: %s"),
8d64371b 10073 rs->buf.data ());
bc3b087d
SDJ
10074
10075 }
10076}
10077
2d717e4f
DJ
10078/* In the extended protocol we want to be able to do things like
10079 "run" and have them basically work as expected. So we need
10080 a special create_inferior function. We support changing the
10081 executable file and the command line arguments, but not the
10082 environment. */
10083
f6ac5f3d
PA
10084void
10085extended_remote_target::create_inferior (const char *exec_file,
10086 const std::string &args,
10087 char **env, int from_tty)
43ff13b4 10088{
3405876a
PA
10089 int run_worked;
10090 char *stop_reply;
10091 struct remote_state *rs = get_remote_state ();
94585166 10092 const char *remote_exec_file = get_remote_exec_file ();
3405876a 10093
43ff13b4 10094 /* If running asynchronously, register the target file descriptor
23860348 10095 with the event loop. */
75c99385 10096 if (target_can_async_p ())
6a3753b3 10097 target_async (1);
43ff13b4 10098
03583c20 10099 /* Disable address space randomization if requested (and supported). */
f6ac5f3d 10100 if (supports_disable_randomization ())
03583c20
UW
10101 extended_remote_disable_randomization (disable_randomization);
10102
aefd8b33
SDJ
10103 /* If startup-with-shell is on, we inform gdbserver to start the
10104 remote inferior using a shell. */
10105 if (packet_support (PACKET_QStartupWithShell) != PACKET_DISABLE)
10106 {
8d64371b 10107 xsnprintf (rs->buf.data (), get_remote_packet_size (),
aefd8b33
SDJ
10108 "QStartupWithShell:%d", startup_with_shell ? 1 : 0);
10109 putpkt (rs->buf);
8d64371b
TT
10110 getpkt (&rs->buf, 0);
10111 if (strcmp (rs->buf.data (), "OK") != 0)
aefd8b33
SDJ
10112 error (_("\
10113Remote replied unexpectedly while setting startup-with-shell: %s"),
8d64371b 10114 rs->buf.data ());
aefd8b33
SDJ
10115 }
10116
6b8edb51 10117 extended_remote_environment_support ();
0a2dde4a 10118
6b8edb51 10119 extended_remote_set_inferior_cwd ();
bc3b087d 10120
43ff13b4 10121 /* Now restart the remote server. */
3405876a
PA
10122 run_worked = extended_remote_run (args) != -1;
10123 if (!run_worked)
2d717e4f
DJ
10124 {
10125 /* vRun was not supported. Fail if we need it to do what the
10126 user requested. */
10127 if (remote_exec_file[0])
10128 error (_("Remote target does not support \"set remote exec-file\""));
7c5ded6a 10129 if (!args.empty ())
65e65158 10130 error (_("Remote target does not support \"set args\" or run ARGS"));
43ff13b4 10131
2d717e4f
DJ
10132 /* Fall back to "R". */
10133 extended_remote_restart ();
10134 }
424163ea 10135
3405876a 10136 /* vRun's success return is a stop reply. */
8d64371b 10137 stop_reply = run_worked ? rs->buf.data () : NULL;
3405876a 10138 add_current_inferior_and_thread (stop_reply);
c0a2216e 10139
2d717e4f
DJ
10140 /* Get updated offsets, if the stub uses qOffsets. */
10141 get_offsets ();
2d717e4f 10142}
c906108c 10143\f
c5aa993b 10144
b775012e
LM
10145/* Given a location's target info BP_TGT and the packet buffer BUF, output
10146 the list of conditions (in agent expression bytecode format), if any, the
10147 target needs to evaluate. The output is placed into the packet buffer
bba74b36 10148 started from BUF and ended at BUF_END. */
b775012e
LM
10149
10150static int
10151remote_add_target_side_condition (struct gdbarch *gdbarch,
bba74b36
YQ
10152 struct bp_target_info *bp_tgt, char *buf,
10153 char *buf_end)
b775012e 10154{
3cde5c42 10155 if (bp_tgt->conditions.empty ())
b775012e
LM
10156 return 0;
10157
10158 buf += strlen (buf);
bba74b36 10159 xsnprintf (buf, buf_end - buf, "%s", ";");
b775012e
LM
10160 buf++;
10161
83621223 10162 /* Send conditions to the target. */
d538e36d 10163 for (agent_expr *aexpr : bp_tgt->conditions)
b775012e 10164 {
bba74b36 10165 xsnprintf (buf, buf_end - buf, "X%x,", aexpr->len);
b775012e 10166 buf += strlen (buf);
3cde5c42 10167 for (int i = 0; i < aexpr->len; ++i)
b775012e
LM
10168 buf = pack_hex_byte (buf, aexpr->buf[i]);
10169 *buf = '\0';
10170 }
b775012e
LM
10171 return 0;
10172}
10173
d3ce09f5
SS
10174static void
10175remote_add_target_side_commands (struct gdbarch *gdbarch,
10176 struct bp_target_info *bp_tgt, char *buf)
10177{
3cde5c42 10178 if (bp_tgt->tcommands.empty ())
d3ce09f5
SS
10179 return;
10180
10181 buf += strlen (buf);
10182
10183 sprintf (buf, ";cmds:%x,", bp_tgt->persist);
10184 buf += strlen (buf);
10185
10186 /* Concatenate all the agent expressions that are commands into the
10187 cmds parameter. */
df97be55 10188 for (agent_expr *aexpr : bp_tgt->tcommands)
d3ce09f5
SS
10189 {
10190 sprintf (buf, "X%x,", aexpr->len);
10191 buf += strlen (buf);
3cde5c42 10192 for (int i = 0; i < aexpr->len; ++i)
d3ce09f5
SS
10193 buf = pack_hex_byte (buf, aexpr->buf[i]);
10194 *buf = '\0';
10195 }
d3ce09f5
SS
10196}
10197
8181d85f
DJ
10198/* Insert a breakpoint. On targets that have software breakpoint
10199 support, we ask the remote target to do the work; on targets
10200 which don't, we insert a traditional memory breakpoint. */
c906108c 10201
f6ac5f3d
PA
10202int
10203remote_target::insert_breakpoint (struct gdbarch *gdbarch,
10204 struct bp_target_info *bp_tgt)
c906108c 10205{
d471ea57
AC
10206 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
10207 If it succeeds, then set the support to PACKET_ENABLE. If it
10208 fails, and the user has explicitly requested the Z support then
23860348 10209 report an error, otherwise, mark it disabled and go on. */
802188a7 10210
4082afcc 10211 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 10212 {
0d5ed153 10213 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 10214 struct remote_state *rs;
bba74b36 10215 char *p, *endbuf;
4fff2411 10216
28439a30
PA
10217 /* Make sure the remote is pointing at the right process, if
10218 necessary. */
10219 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10220 set_general_process ();
10221
4fff2411 10222 rs = get_remote_state ();
8d64371b
TT
10223 p = rs->buf.data ();
10224 endbuf = p + get_remote_packet_size ();
802188a7 10225
96baa820
JM
10226 *(p++) = 'Z';
10227 *(p++) = '0';
10228 *(p++) = ',';
7c0f6dcc 10229 addr = (ULONGEST) remote_address_masked (addr);
8181d85f 10230 p += hexnumstr (p, addr);
579c6ad9 10231 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
802188a7 10232
f6ac5f3d 10233 if (supports_evaluation_of_breakpoint_conditions ())
bba74b36 10234 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 10235
f6ac5f3d 10236 if (can_run_breakpoint_commands ())
d3ce09f5
SS
10237 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10238
6d820c5c 10239 putpkt (rs->buf);
8d64371b 10240 getpkt (&rs->buf, 0);
96baa820 10241
6d820c5c 10242 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
96baa820 10243 {
d471ea57
AC
10244 case PACKET_ERROR:
10245 return -1;
10246 case PACKET_OK:
10247 return 0;
10248 case PACKET_UNKNOWN:
10249 break;
96baa820
JM
10250 }
10251 }
c906108c 10252
0000e5cc
PA
10253 /* If this breakpoint has target-side commands but this stub doesn't
10254 support Z0 packets, throw error. */
3cde5c42 10255 if (!bp_tgt->tcommands.empty ())
0000e5cc
PA
10256 throw_error (NOT_SUPPORTED_ERROR, _("\
10257Target doesn't support breakpoints that have target side commands."));
10258
f6ac5f3d 10259 return memory_insert_breakpoint (this, gdbarch, bp_tgt);
c906108c
SS
10260}
10261
f6ac5f3d
PA
10262int
10263remote_target::remove_breakpoint (struct gdbarch *gdbarch,
10264 struct bp_target_info *bp_tgt,
10265 enum remove_bp_reason reason)
c906108c 10266{
8181d85f 10267 CORE_ADDR addr = bp_tgt->placed_address;
d01949b6 10268 struct remote_state *rs = get_remote_state ();
96baa820 10269
4082afcc 10270 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 10271 {
8d64371b
TT
10272 char *p = rs->buf.data ();
10273 char *endbuf = p + get_remote_packet_size ();
802188a7 10274
28439a30
PA
10275 /* Make sure the remote is pointing at the right process, if
10276 necessary. */
10277 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10278 set_general_process ();
10279
96baa820
JM
10280 *(p++) = 'z';
10281 *(p++) = '0';
10282 *(p++) = ',';
10283
8181d85f
DJ
10284 addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
10285 p += hexnumstr (p, addr);
579c6ad9 10286 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
802188a7 10287
6d820c5c 10288 putpkt (rs->buf);
8d64371b 10289 getpkt (&rs->buf, 0);
96baa820 10290
6d820c5c 10291 return (rs->buf[0] == 'E');
96baa820
JM
10292 }
10293
f6ac5f3d 10294 return memory_remove_breakpoint (this, gdbarch, bp_tgt, reason);
c906108c
SS
10295}
10296
f486487f 10297static enum Z_packet_type
d471ea57
AC
10298watchpoint_to_Z_packet (int type)
10299{
10300 switch (type)
10301 {
10302 case hw_write:
bb858e6a 10303 return Z_PACKET_WRITE_WP;
d471ea57
AC
10304 break;
10305 case hw_read:
bb858e6a 10306 return Z_PACKET_READ_WP;
d471ea57
AC
10307 break;
10308 case hw_access:
bb858e6a 10309 return Z_PACKET_ACCESS_WP;
d471ea57
AC
10310 break;
10311 default:
8e65ff28 10312 internal_error (__FILE__, __LINE__,
e2e0b3e5 10313 _("hw_bp_to_z: bad watchpoint type %d"), type);
d471ea57
AC
10314 }
10315}
10316
f6ac5f3d
PA
10317int
10318remote_target::insert_watchpoint (CORE_ADDR addr, int len,
10319 enum target_hw_bp_type type, struct expression *cond)
96baa820 10320{
d01949b6 10321 struct remote_state *rs = get_remote_state ();
8d64371b 10322 char *endbuf = rs->buf.data () + get_remote_packet_size ();
e514a9d6 10323 char *p;
d471ea57 10324 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
96baa820 10325
4082afcc 10326 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
85d721b8 10327 return 1;
802188a7 10328
28439a30
PA
10329 /* Make sure the remote is pointing at the right process, if
10330 necessary. */
10331 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10332 set_general_process ();
10333
8d64371b
TT
10334 xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "Z%x,", packet);
10335 p = strchr (rs->buf.data (), '\0');
96baa820
JM
10336 addr = remote_address_masked (addr);
10337 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 10338 xsnprintf (p, endbuf - p, ",%x", len);
802188a7 10339
6d820c5c 10340 putpkt (rs->buf);
8d64371b 10341 getpkt (&rs->buf, 0);
96baa820 10342
6d820c5c 10343 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
10344 {
10345 case PACKET_ERROR:
d471ea57 10346 return -1;
85d721b8
PA
10347 case PACKET_UNKNOWN:
10348 return 1;
d471ea57
AC
10349 case PACKET_OK:
10350 return 0;
10351 }
8e65ff28 10352 internal_error (__FILE__, __LINE__,
e2e0b3e5 10353 _("remote_insert_watchpoint: reached end of function"));
96baa820
JM
10354}
10355
57810aa7 10356bool
f6ac5f3d
PA
10357remote_target::watchpoint_addr_within_range (CORE_ADDR addr,
10358 CORE_ADDR start, int length)
283002cf
MR
10359{
10360 CORE_ADDR diff = remote_address_masked (addr - start);
10361
10362 return diff < length;
10363}
10364
d471ea57 10365
f6ac5f3d
PA
10366int
10367remote_target::remove_watchpoint (CORE_ADDR addr, int len,
10368 enum target_hw_bp_type type, struct expression *cond)
96baa820 10369{
d01949b6 10370 struct remote_state *rs = get_remote_state ();
8d64371b 10371 char *endbuf = rs->buf.data () + get_remote_packet_size ();
e514a9d6 10372 char *p;
d471ea57
AC
10373 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
10374
4082afcc 10375 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
5cffb350 10376 return -1;
802188a7 10377
28439a30
PA
10378 /* Make sure the remote is pointing at the right process, if
10379 necessary. */
10380 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10381 set_general_process ();
10382
8d64371b
TT
10383 xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "z%x,", packet);
10384 p = strchr (rs->buf.data (), '\0');
96baa820
JM
10385 addr = remote_address_masked (addr);
10386 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 10387 xsnprintf (p, endbuf - p, ",%x", len);
6d820c5c 10388 putpkt (rs->buf);
8d64371b 10389 getpkt (&rs->buf, 0);
96baa820 10390
6d820c5c 10391 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
10392 {
10393 case PACKET_ERROR:
10394 case PACKET_UNKNOWN:
10395 return -1;
10396 case PACKET_OK:
10397 return 0;
10398 }
8e65ff28 10399 internal_error (__FILE__, __LINE__,
e2e0b3e5 10400 _("remote_remove_watchpoint: reached end of function"));
96baa820
JM
10401}
10402
3c3bea1c 10403
501eef12 10404int remote_hw_watchpoint_limit = -1;
480a3f21 10405int remote_hw_watchpoint_length_limit = -1;
501eef12 10406int remote_hw_breakpoint_limit = -1;
d471ea57 10407
f6ac5f3d
PA
10408int
10409remote_target::region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
480a3f21
PW
10410{
10411 if (remote_hw_watchpoint_length_limit == 0)
10412 return 0;
10413 else if (remote_hw_watchpoint_length_limit < 0)
10414 return 1;
10415 else if (len <= remote_hw_watchpoint_length_limit)
10416 return 1;
10417 else
10418 return 0;
10419}
10420
f6ac5f3d
PA
10421int
10422remote_target::can_use_hw_breakpoint (enum bptype type, int cnt, int ot)
96baa820 10423{
3c3bea1c
GS
10424 if (type == bp_hardware_breakpoint)
10425 {
10426 if (remote_hw_breakpoint_limit == 0)
10427 return 0;
501eef12
AC
10428 else if (remote_hw_breakpoint_limit < 0)
10429 return 1;
3c3bea1c
GS
10430 else if (cnt <= remote_hw_breakpoint_limit)
10431 return 1;
10432 }
10433 else
10434 {
10435 if (remote_hw_watchpoint_limit == 0)
10436 return 0;
501eef12
AC
10437 else if (remote_hw_watchpoint_limit < 0)
10438 return 1;
3c3bea1c
GS
10439 else if (ot)
10440 return -1;
10441 else if (cnt <= remote_hw_watchpoint_limit)
10442 return 1;
10443 }
10444 return -1;
10445}
10446
f7e6eed5
PA
10447/* The to_stopped_by_sw_breakpoint method of target remote. */
10448
57810aa7 10449bool
f6ac5f3d 10450remote_target::stopped_by_sw_breakpoint ()
f7e6eed5 10451{
799a2abe 10452 struct thread_info *thread = inferior_thread ();
f7e6eed5 10453
799a2abe 10454 return (thread->priv != NULL
7aabaf9d
SM
10455 && (get_remote_thread_info (thread)->stop_reason
10456 == TARGET_STOPPED_BY_SW_BREAKPOINT));
f7e6eed5
PA
10457}
10458
10459/* The to_supports_stopped_by_sw_breakpoint method of target
10460 remote. */
10461
57810aa7 10462bool
f6ac5f3d 10463remote_target::supports_stopped_by_sw_breakpoint ()
f7e6eed5 10464{
f7e6eed5
PA
10465 return (packet_support (PACKET_swbreak_feature) == PACKET_ENABLE);
10466}
10467
10468/* The to_stopped_by_hw_breakpoint method of target remote. */
10469
57810aa7 10470bool
f6ac5f3d 10471remote_target::stopped_by_hw_breakpoint ()
f7e6eed5 10472{
799a2abe 10473 struct thread_info *thread = inferior_thread ();
f7e6eed5 10474
799a2abe 10475 return (thread->priv != NULL
7aabaf9d
SM
10476 && (get_remote_thread_info (thread)->stop_reason
10477 == TARGET_STOPPED_BY_HW_BREAKPOINT));
f7e6eed5
PA
10478}
10479
10480/* The to_supports_stopped_by_hw_breakpoint method of target
10481 remote. */
10482
57810aa7 10483bool
f6ac5f3d 10484remote_target::supports_stopped_by_hw_breakpoint ()
f7e6eed5 10485{
f7e6eed5
PA
10486 return (packet_support (PACKET_hwbreak_feature) == PACKET_ENABLE);
10487}
10488
57810aa7 10489bool
f6ac5f3d 10490remote_target::stopped_by_watchpoint ()
3c3bea1c 10491{
799a2abe 10492 struct thread_info *thread = inferior_thread ();
ee154bee 10493
799a2abe 10494 return (thread->priv != NULL
7aabaf9d
SM
10495 && (get_remote_thread_info (thread)->stop_reason
10496 == TARGET_STOPPED_BY_WATCHPOINT));
3c3bea1c
GS
10497}
10498
57810aa7 10499bool
f6ac5f3d 10500remote_target::stopped_data_address (CORE_ADDR *addr_p)
3c3bea1c 10501{
799a2abe 10502 struct thread_info *thread = inferior_thread ();
a744cf53 10503
799a2abe 10504 if (thread->priv != NULL
7aabaf9d
SM
10505 && (get_remote_thread_info (thread)->stop_reason
10506 == TARGET_STOPPED_BY_WATCHPOINT))
4aa7a7f5 10507 {
7aabaf9d 10508 *addr_p = get_remote_thread_info (thread)->watch_data_address;
57810aa7 10509 return true;
4aa7a7f5
JJ
10510 }
10511
57810aa7 10512 return false;
3c3bea1c
GS
10513}
10514
10515
f6ac5f3d
PA
10516int
10517remote_target::insert_hw_breakpoint (struct gdbarch *gdbarch,
10518 struct bp_target_info *bp_tgt)
3c3bea1c 10519{
0d5ed153 10520 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 10521 struct remote_state *rs;
bba74b36 10522 char *p, *endbuf;
dd61ec5c 10523 char *message;
3c3bea1c 10524
4082afcc 10525 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 10526 return -1;
2bc416ba 10527
28439a30
PA
10528 /* Make sure the remote is pointing at the right process, if
10529 necessary. */
10530 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10531 set_general_process ();
10532
4fff2411 10533 rs = get_remote_state ();
8d64371b
TT
10534 p = rs->buf.data ();
10535 endbuf = p + get_remote_packet_size ();
4fff2411 10536
96baa820
JM
10537 *(p++) = 'Z';
10538 *(p++) = '1';
10539 *(p++) = ',';
802188a7 10540
0d5ed153 10541 addr = remote_address_masked (addr);
96baa820 10542 p += hexnumstr (p, (ULONGEST) addr);
579c6ad9 10543 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
96baa820 10544
f6ac5f3d 10545 if (supports_evaluation_of_breakpoint_conditions ())
bba74b36 10546 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 10547
f6ac5f3d 10548 if (can_run_breakpoint_commands ())
d3ce09f5
SS
10549 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10550
6d820c5c 10551 putpkt (rs->buf);
8d64371b 10552 getpkt (&rs->buf, 0);
96baa820 10553
6d820c5c 10554 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
10555 {
10556 case PACKET_ERROR:
dd61ec5c
MW
10557 if (rs->buf[1] == '.')
10558 {
8d64371b 10559 message = strchr (&rs->buf[2], '.');
dd61ec5c 10560 if (message)
0316657e 10561 error (_("Remote failure reply: %s"), message + 1);
dd61ec5c
MW
10562 }
10563 return -1;
d471ea57
AC
10564 case PACKET_UNKNOWN:
10565 return -1;
10566 case PACKET_OK:
10567 return 0;
10568 }
8e65ff28 10569 internal_error (__FILE__, __LINE__,
e2e0b3e5 10570 _("remote_insert_hw_breakpoint: reached end of function"));
96baa820
JM
10571}
10572
d471ea57 10573
f6ac5f3d
PA
10574int
10575remote_target::remove_hw_breakpoint (struct gdbarch *gdbarch,
10576 struct bp_target_info *bp_tgt)
96baa820 10577{
8181d85f 10578 CORE_ADDR addr;
d01949b6 10579 struct remote_state *rs = get_remote_state ();
8d64371b
TT
10580 char *p = rs->buf.data ();
10581 char *endbuf = p + get_remote_packet_size ();
c8189ed1 10582
4082afcc 10583 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 10584 return -1;
802188a7 10585
28439a30
PA
10586 /* Make sure the remote is pointing at the right process, if
10587 necessary. */
10588 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10589 set_general_process ();
10590
96baa820
JM
10591 *(p++) = 'z';
10592 *(p++) = '1';
10593 *(p++) = ',';
802188a7 10594
8181d85f 10595 addr = remote_address_masked (bp_tgt->placed_address);
96baa820 10596 p += hexnumstr (p, (ULONGEST) addr);
579c6ad9 10597 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
96baa820 10598
6d820c5c 10599 putpkt (rs->buf);
8d64371b 10600 getpkt (&rs->buf, 0);
802188a7 10601
6d820c5c 10602 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
10603 {
10604 case PACKET_ERROR:
10605 case PACKET_UNKNOWN:
10606 return -1;
10607 case PACKET_OK:
10608 return 0;
10609 }
8e65ff28 10610 internal_error (__FILE__, __LINE__,
e2e0b3e5 10611 _("remote_remove_hw_breakpoint: reached end of function"));
96baa820 10612}
96baa820 10613
4a5e7a5b
PA
10614/* Verify memory using the "qCRC:" request. */
10615
f6ac5f3d
PA
10616int
10617remote_target::verify_memory (const gdb_byte *data, CORE_ADDR lma, ULONGEST size)
4a5e7a5b
PA
10618{
10619 struct remote_state *rs = get_remote_state ();
10620 unsigned long host_crc, target_crc;
10621 char *tmp;
10622
936d2992
PA
10623 /* It doesn't make sense to use qCRC if the remote target is
10624 connected but not running. */
10625 if (target_has_execution && packet_support (PACKET_qCRC) != PACKET_DISABLE)
10626 {
10627 enum packet_result result;
28439a30 10628
936d2992
PA
10629 /* Make sure the remote is pointing at the right process. */
10630 set_general_process ();
4a5e7a5b 10631
936d2992 10632 /* FIXME: assumes lma can fit into long. */
8d64371b 10633 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qCRC:%lx,%lx",
936d2992
PA
10634 (long) lma, (long) size);
10635 putpkt (rs->buf);
4a5e7a5b 10636
936d2992
PA
10637 /* Be clever; compute the host_crc before waiting for target
10638 reply. */
10639 host_crc = xcrc32 (data, size, 0xffffffff);
10640
8d64371b 10641 getpkt (&rs->buf, 0);
4a5e7a5b 10642
936d2992
PA
10643 result = packet_ok (rs->buf,
10644 &remote_protocol_packets[PACKET_qCRC]);
10645 if (result == PACKET_ERROR)
10646 return -1;
10647 else if (result == PACKET_OK)
10648 {
10649 for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
10650 target_crc = target_crc * 16 + fromhex (*tmp);
4a5e7a5b 10651
936d2992
PA
10652 return (host_crc == target_crc);
10653 }
10654 }
4a5e7a5b 10655
f6ac5f3d 10656 return simple_verify_memory (this, data, lma, size);
4a5e7a5b
PA
10657}
10658
c906108c
SS
10659/* compare-sections command
10660
10661 With no arguments, compares each loadable section in the exec bfd
10662 with the same memory range on the target, and reports mismatches.
4a5e7a5b 10663 Useful for verifying the image on the target against the exec file. */
e514a9d6 10664
c906108c 10665static void
ac88e2de 10666compare_sections_command (const char *args, int from_tty)
c906108c
SS
10667{
10668 asection *s;
ce359b09 10669 const char *sectname;
c906108c
SS
10670 bfd_size_type size;
10671 bfd_vma lma;
10672 int matched = 0;
10673 int mismatched = 0;
4a5e7a5b 10674 int res;
95cf3b38 10675 int read_only = 0;
c906108c
SS
10676
10677 if (!exec_bfd)
8a3fe4f8 10678 error (_("command cannot be used without an exec file"));
c906108c 10679
95cf3b38
DT
10680 if (args != NULL && strcmp (args, "-r") == 0)
10681 {
10682 read_only = 1;
10683 args = NULL;
10684 }
10685
c5aa993b 10686 for (s = exec_bfd->sections; s; s = s->next)
c906108c
SS
10687 {
10688 if (!(s->flags & SEC_LOAD))
0df8b418 10689 continue; /* Skip non-loadable section. */
c906108c 10690
95cf3b38
DT
10691 if (read_only && (s->flags & SEC_READONLY) == 0)
10692 continue; /* Skip writeable sections */
10693
2c500098 10694 size = bfd_get_section_size (s);
c906108c 10695 if (size == 0)
0df8b418 10696 continue; /* Skip zero-length section. */
c906108c 10697
ce359b09 10698 sectname = bfd_get_section_name (exec_bfd, s);
c906108c 10699 if (args && strcmp (args, sectname) != 0)
0df8b418 10700 continue; /* Not the section selected by user. */
c906108c 10701
0df8b418 10702 matched = 1; /* Do this section. */
c906108c 10703 lma = s->lma;
c906108c 10704
b80406ac
TT
10705 gdb::byte_vector sectdata (size);
10706 bfd_get_section_contents (exec_bfd, s, sectdata.data (), 0, size);
c906108c 10707
b80406ac 10708 res = target_verify_memory (sectdata.data (), lma, size);
4a5e7a5b
PA
10709
10710 if (res == -1)
5af949e3 10711 error (_("target memory fault, section %s, range %s -- %s"), sectname,
f5656ead
TT
10712 paddress (target_gdbarch (), lma),
10713 paddress (target_gdbarch (), lma + size));
c906108c 10714
5af949e3 10715 printf_filtered ("Section %s, range %s -- %s: ", sectname,
f5656ead
TT
10716 paddress (target_gdbarch (), lma),
10717 paddress (target_gdbarch (), lma + size));
4a5e7a5b 10718 if (res)
c906108c
SS
10719 printf_filtered ("matched.\n");
10720 else
c5aa993b
JM
10721 {
10722 printf_filtered ("MIS-MATCHED!\n");
10723 mismatched++;
10724 }
c906108c
SS
10725 }
10726 if (mismatched > 0)
936d2992 10727 warning (_("One or more sections of the target image does not match\n\
8a3fe4f8 10728the loaded file\n"));
c906108c 10729 if (args && !matched)
a3f17187 10730 printf_filtered (_("No loaded section named '%s'.\n"), args);
c906108c
SS
10731}
10732
0e7f50da
UW
10733/* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
10734 into remote target. The number of bytes written to the remote
10735 target is returned, or -1 for error. */
10736
6b8edb51
PA
10737target_xfer_status
10738remote_target::remote_write_qxfer (const char *object_name,
10739 const char *annex, const gdb_byte *writebuf,
10740 ULONGEST offset, LONGEST len,
10741 ULONGEST *xfered_len,
10742 struct packet_config *packet)
0e7f50da
UW
10743{
10744 int i, buf_len;
10745 ULONGEST n;
0e7f50da
UW
10746 struct remote_state *rs = get_remote_state ();
10747 int max_size = get_memory_write_packet_size ();
10748
7cc244de 10749 if (packet_config_support (packet) == PACKET_DISABLE)
2ed4b548 10750 return TARGET_XFER_E_IO;
0e7f50da
UW
10751
10752 /* Insert header. */
8d64371b 10753 i = snprintf (rs->buf.data (), max_size,
0e7f50da
UW
10754 "qXfer:%s:write:%s:%s:",
10755 object_name, annex ? annex : "",
10756 phex_nz (offset, sizeof offset));
10757 max_size -= (i + 1);
10758
10759 /* Escape as much data as fits into rs->buf. */
10760 buf_len = remote_escape_output
8d64371b 10761 (writebuf, len, 1, (gdb_byte *) rs->buf.data () + i, &max_size, max_size);
0e7f50da 10762
8d64371b
TT
10763 if (putpkt_binary (rs->buf.data (), i + buf_len) < 0
10764 || getpkt_sane (&rs->buf, 0) < 0
0e7f50da 10765 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 10766 return TARGET_XFER_E_IO;
0e7f50da 10767
8d64371b 10768 unpack_varlen_hex (rs->buf.data (), &n);
9b409511
YQ
10769
10770 *xfered_len = n;
92ffd475 10771 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
0e7f50da
UW
10772}
10773
0876f84a
DJ
10774/* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
10775 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
10776 number of bytes read is returned, or 0 for EOF, or -1 for error.
10777 The number of bytes read may be less than LEN without indicating an
10778 EOF. PACKET is checked and updated to indicate whether the remote
10779 target supports this object. */
10780
6b8edb51
PA
10781target_xfer_status
10782remote_target::remote_read_qxfer (const char *object_name,
10783 const char *annex,
10784 gdb_byte *readbuf, ULONGEST offset,
10785 LONGEST len,
10786 ULONGEST *xfered_len,
10787 struct packet_config *packet)
0876f84a 10788{
0876f84a 10789 struct remote_state *rs = get_remote_state ();
0876f84a
DJ
10790 LONGEST i, n, packet_len;
10791
7cc244de 10792 if (packet_config_support (packet) == PACKET_DISABLE)
2ed4b548 10793 return TARGET_XFER_E_IO;
0876f84a
DJ
10794
10795 /* Check whether we've cached an end-of-object packet that matches
10796 this request. */
8e88304f 10797 if (rs->finished_object)
0876f84a 10798 {
8e88304f
TT
10799 if (strcmp (object_name, rs->finished_object) == 0
10800 && strcmp (annex ? annex : "", rs->finished_annex) == 0
10801 && offset == rs->finished_offset)
9b409511
YQ
10802 return TARGET_XFER_EOF;
10803
0876f84a
DJ
10804
10805 /* Otherwise, we're now reading something different. Discard
10806 the cache. */
8e88304f
TT
10807 xfree (rs->finished_object);
10808 xfree (rs->finished_annex);
10809 rs->finished_object = NULL;
10810 rs->finished_annex = NULL;
0876f84a
DJ
10811 }
10812
10813 /* Request only enough to fit in a single packet. The actual data
10814 may not, since we don't know how much of it will need to be escaped;
10815 the target is free to respond with slightly less data. We subtract
10816 five to account for the response type and the protocol frame. */
768adc05 10817 n = std::min<LONGEST> (get_remote_packet_size () - 5, len);
8d64371b
TT
10818 snprintf (rs->buf.data (), get_remote_packet_size () - 4,
10819 "qXfer:%s:read:%s:%s,%s",
0876f84a
DJ
10820 object_name, annex ? annex : "",
10821 phex_nz (offset, sizeof offset),
10822 phex_nz (n, sizeof n));
10823 i = putpkt (rs->buf);
10824 if (i < 0)
2ed4b548 10825 return TARGET_XFER_E_IO;
0876f84a
DJ
10826
10827 rs->buf[0] = '\0';
8d64371b 10828 packet_len = getpkt_sane (&rs->buf, 0);
0876f84a 10829 if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 10830 return TARGET_XFER_E_IO;
0876f84a
DJ
10831
10832 if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
8d64371b 10833 error (_("Unknown remote qXfer reply: %s"), rs->buf.data ());
0876f84a
DJ
10834
10835 /* 'm' means there is (or at least might be) more data after this
10836 batch. That does not make sense unless there's at least one byte
10837 of data in this reply. */
10838 if (rs->buf[0] == 'm' && packet_len == 1)
10839 error (_("Remote qXfer reply contained no data."));
10840
10841 /* Got some data. */
8d64371b 10842 i = remote_unescape_input ((gdb_byte *) rs->buf.data () + 1,
bc20a4af 10843 packet_len - 1, readbuf, n);
0876f84a
DJ
10844
10845 /* 'l' is an EOF marker, possibly including a final block of data,
0e7f50da
UW
10846 or possibly empty. If we have the final block of a non-empty
10847 object, record this fact to bypass a subsequent partial read. */
10848 if (rs->buf[0] == 'l' && offset + i > 0)
0876f84a 10849 {
8e88304f
TT
10850 rs->finished_object = xstrdup (object_name);
10851 rs->finished_annex = xstrdup (annex ? annex : "");
10852 rs->finished_offset = offset + i;
0876f84a
DJ
10853 }
10854
9b409511
YQ
10855 if (i == 0)
10856 return TARGET_XFER_EOF;
10857 else
10858 {
10859 *xfered_len = i;
10860 return TARGET_XFER_OK;
10861 }
0876f84a
DJ
10862}
10863
f6ac5f3d
PA
10864enum target_xfer_status
10865remote_target::xfer_partial (enum target_object object,
10866 const char *annex, gdb_byte *readbuf,
10867 const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
10868 ULONGEST *xfered_len)
c906108c 10869{
82f73884 10870 struct remote_state *rs;
c906108c 10871 int i;
6d820c5c 10872 char *p2;
1e3ff5ad 10873 char query_type;
124e13d9 10874 int unit_size = gdbarch_addressable_memory_unit_size (target_gdbarch ());
c906108c 10875
e6e4e701 10876 set_remote_traceframe ();
82f73884
PA
10877 set_general_thread (inferior_ptid);
10878
10879 rs = get_remote_state ();
10880
b2182ed2 10881 /* Handle memory using the standard memory routines. */
21e3b9b9
DJ
10882 if (object == TARGET_OBJECT_MEMORY)
10883 {
2d717e4f
DJ
10884 /* If the remote target is connected but not running, we should
10885 pass this request down to a lower stratum (e.g. the executable
10886 file). */
10887 if (!target_has_execution)
9b409511 10888 return TARGET_XFER_EOF;
2d717e4f 10889
21e3b9b9 10890 if (writebuf != NULL)
124e13d9
SM
10891 return remote_write_bytes (offset, writebuf, len, unit_size,
10892 xfered_len);
21e3b9b9 10893 else
6b8edb51 10894 return remote_read_bytes (offset, readbuf, len, unit_size,
124e13d9 10895 xfered_len);
21e3b9b9
DJ
10896 }
10897
0df8b418 10898 /* Handle SPU memory using qxfer packets. */
0e7f50da
UW
10899 if (object == TARGET_OBJECT_SPU)
10900 {
10901 if (readbuf)
f6ac5f3d 10902 return remote_read_qxfer ("spu", annex, readbuf, offset, len,
9b409511
YQ
10903 xfered_len, &remote_protocol_packets
10904 [PACKET_qXfer_spu_read]);
0e7f50da 10905 else
f6ac5f3d 10906 return remote_write_qxfer ("spu", annex, writebuf, offset, len,
9b409511
YQ
10907 xfered_len, &remote_protocol_packets
10908 [PACKET_qXfer_spu_write]);
0e7f50da
UW
10909 }
10910
4aa995e1
PA
10911 /* Handle extra signal info using qxfer packets. */
10912 if (object == TARGET_OBJECT_SIGNAL_INFO)
10913 {
10914 if (readbuf)
f6ac5f3d 10915 return remote_read_qxfer ("siginfo", annex, readbuf, offset, len,
9b409511 10916 xfered_len, &remote_protocol_packets
4aa995e1
PA
10917 [PACKET_qXfer_siginfo_read]);
10918 else
f6ac5f3d 10919 return remote_write_qxfer ("siginfo", annex,
9b409511 10920 writebuf, offset, len, xfered_len,
4aa995e1
PA
10921 &remote_protocol_packets
10922 [PACKET_qXfer_siginfo_write]);
10923 }
10924
0fb4aa4b
PA
10925 if (object == TARGET_OBJECT_STATIC_TRACE_DATA)
10926 {
10927 if (readbuf)
f6ac5f3d 10928 return remote_read_qxfer ("statictrace", annex,
9b409511 10929 readbuf, offset, len, xfered_len,
0fb4aa4b
PA
10930 &remote_protocol_packets
10931 [PACKET_qXfer_statictrace_read]);
10932 else
2ed4b548 10933 return TARGET_XFER_E_IO;
0fb4aa4b
PA
10934 }
10935
a76d924d
DJ
10936 /* Only handle flash writes. */
10937 if (writebuf != NULL)
10938 {
a76d924d
DJ
10939 switch (object)
10940 {
10941 case TARGET_OBJECT_FLASH:
6b8edb51 10942 return remote_flash_write (offset, len, xfered_len,
9b409511 10943 writebuf);
a76d924d
DJ
10944
10945 default:
2ed4b548 10946 return TARGET_XFER_E_IO;
a76d924d
DJ
10947 }
10948 }
4b8a223f 10949
1e3ff5ad
AC
10950 /* Map pre-existing objects onto letters. DO NOT do this for new
10951 objects!!! Instead specify new query packets. */
10952 switch (object)
c906108c 10953 {
1e3ff5ad
AC
10954 case TARGET_OBJECT_AVR:
10955 query_type = 'R';
10956 break;
802188a7
RM
10957
10958 case TARGET_OBJECT_AUXV:
0876f84a 10959 gdb_assert (annex == NULL);
f6ac5f3d 10960 return remote_read_qxfer ("auxv", annex, readbuf, offset, len,
9b409511 10961 xfered_len,
0876f84a 10962 &remote_protocol_packets[PACKET_qXfer_auxv]);
802188a7 10963
23181151
DJ
10964 case TARGET_OBJECT_AVAILABLE_FEATURES:
10965 return remote_read_qxfer
f6ac5f3d 10966 ("features", annex, readbuf, offset, len, xfered_len,
23181151
DJ
10967 &remote_protocol_packets[PACKET_qXfer_features]);
10968
cfa9d6d9
DJ
10969 case TARGET_OBJECT_LIBRARIES:
10970 return remote_read_qxfer
f6ac5f3d 10971 ("libraries", annex, readbuf, offset, len, xfered_len,
cfa9d6d9
DJ
10972 &remote_protocol_packets[PACKET_qXfer_libraries]);
10973
2268b414
JK
10974 case TARGET_OBJECT_LIBRARIES_SVR4:
10975 return remote_read_qxfer
f6ac5f3d 10976 ("libraries-svr4", annex, readbuf, offset, len, xfered_len,
2268b414
JK
10977 &remote_protocol_packets[PACKET_qXfer_libraries_svr4]);
10978
fd79ecee
DJ
10979 case TARGET_OBJECT_MEMORY_MAP:
10980 gdb_assert (annex == NULL);
f6ac5f3d 10981 return remote_read_qxfer ("memory-map", annex, readbuf, offset, len,
9b409511 10982 xfered_len,
fd79ecee
DJ
10983 &remote_protocol_packets[PACKET_qXfer_memory_map]);
10984
07e059b5
VP
10985 case TARGET_OBJECT_OSDATA:
10986 /* Should only get here if we're connected. */
5d93a237 10987 gdb_assert (rs->remote_desc);
07e059b5 10988 return remote_read_qxfer
f6ac5f3d 10989 ("osdata", annex, readbuf, offset, len, xfered_len,
07e059b5
VP
10990 &remote_protocol_packets[PACKET_qXfer_osdata]);
10991
dc146f7c
VP
10992 case TARGET_OBJECT_THREADS:
10993 gdb_assert (annex == NULL);
f6ac5f3d 10994 return remote_read_qxfer ("threads", annex, readbuf, offset, len,
9b409511 10995 xfered_len,
dc146f7c
VP
10996 &remote_protocol_packets[PACKET_qXfer_threads]);
10997
b3b9301e
PA
10998 case TARGET_OBJECT_TRACEFRAME_INFO:
10999 gdb_assert (annex == NULL);
11000 return remote_read_qxfer
f6ac5f3d 11001 ("traceframe-info", annex, readbuf, offset, len, xfered_len,
b3b9301e 11002 &remote_protocol_packets[PACKET_qXfer_traceframe_info]);
78d85199
YQ
11003
11004 case TARGET_OBJECT_FDPIC:
f6ac5f3d 11005 return remote_read_qxfer ("fdpic", annex, readbuf, offset, len,
9b409511 11006 xfered_len,
78d85199 11007 &remote_protocol_packets[PACKET_qXfer_fdpic]);
169081d0
TG
11008
11009 case TARGET_OBJECT_OPENVMS_UIB:
f6ac5f3d 11010 return remote_read_qxfer ("uib", annex, readbuf, offset, len,
9b409511 11011 xfered_len,
169081d0
TG
11012 &remote_protocol_packets[PACKET_qXfer_uib]);
11013
9accd112 11014 case TARGET_OBJECT_BTRACE:
f6ac5f3d 11015 return remote_read_qxfer ("btrace", annex, readbuf, offset, len,
9b409511 11016 xfered_len,
9accd112
MM
11017 &remote_protocol_packets[PACKET_qXfer_btrace]);
11018
f4abbc16 11019 case TARGET_OBJECT_BTRACE_CONF:
f6ac5f3d 11020 return remote_read_qxfer ("btrace-conf", annex, readbuf, offset,
f4abbc16
MM
11021 len, xfered_len,
11022 &remote_protocol_packets[PACKET_qXfer_btrace_conf]);
11023
c78fa86a 11024 case TARGET_OBJECT_EXEC_FILE:
f6ac5f3d 11025 return remote_read_qxfer ("exec-file", annex, readbuf, offset,
c78fa86a
GB
11026 len, xfered_len,
11027 &remote_protocol_packets[PACKET_qXfer_exec_file]);
11028
1e3ff5ad 11029 default:
2ed4b548 11030 return TARGET_XFER_E_IO;
c906108c
SS
11031 }
11032
0df8b418 11033 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
24b06219 11034 large enough let the caller deal with it. */
ea9c271d 11035 if (len < get_remote_packet_size ())
2ed4b548 11036 return TARGET_XFER_E_IO;
ea9c271d 11037 len = get_remote_packet_size ();
1e3ff5ad 11038
23860348 11039 /* Except for querying the minimum buffer size, target must be open. */
5d93a237 11040 if (!rs->remote_desc)
8a3fe4f8 11041 error (_("remote query is only available after target open"));
c906108c 11042
1e3ff5ad 11043 gdb_assert (annex != NULL);
4b8a223f 11044 gdb_assert (readbuf != NULL);
c906108c 11045
8d64371b 11046 p2 = rs->buf.data ();
c906108c
SS
11047 *p2++ = 'q';
11048 *p2++ = query_type;
11049
23860348
MS
11050 /* We used one buffer char for the remote protocol q command and
11051 another for the query type. As the remote protocol encapsulation
11052 uses 4 chars plus one extra in case we are debugging
11053 (remote_debug), we have PBUFZIZ - 7 left to pack the query
11054 string. */
c906108c 11055 i = 0;
ea9c271d 11056 while (annex[i] && (i < (get_remote_packet_size () - 8)))
c906108c 11057 {
1e3ff5ad
AC
11058 /* Bad caller may have sent forbidden characters. */
11059 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
11060 *p2++ = annex[i];
c906108c
SS
11061 i++;
11062 }
1e3ff5ad
AC
11063 *p2 = '\0';
11064 gdb_assert (annex[i] == '\0');
c906108c 11065
6d820c5c 11066 i = putpkt (rs->buf);
c5aa993b 11067 if (i < 0)
2ed4b548 11068 return TARGET_XFER_E_IO;
c906108c 11069
8d64371b
TT
11070 getpkt (&rs->buf, 0);
11071 strcpy ((char *) readbuf, rs->buf.data ());
c906108c 11072
9b409511 11073 *xfered_len = strlen ((char *) readbuf);
92ffd475 11074 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
c906108c
SS
11075}
11076
09c98b44
DB
11077/* Implementation of to_get_memory_xfer_limit. */
11078
f6ac5f3d
PA
11079ULONGEST
11080remote_target::get_memory_xfer_limit ()
09c98b44
DB
11081{
11082 return get_memory_write_packet_size ();
11083}
11084
f6ac5f3d
PA
11085int
11086remote_target::search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
11087 const gdb_byte *pattern, ULONGEST pattern_len,
11088 CORE_ADDR *found_addrp)
08388c79 11089{
f5656ead 11090 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
08388c79
DE
11091 struct remote_state *rs = get_remote_state ();
11092 int max_size = get_memory_write_packet_size ();
11093 struct packet_config *packet =
11094 &remote_protocol_packets[PACKET_qSearch_memory];
0df8b418
MS
11095 /* Number of packet bytes used to encode the pattern;
11096 this could be more than PATTERN_LEN due to escape characters. */
08388c79 11097 int escaped_pattern_len;
0df8b418 11098 /* Amount of pattern that was encodable in the packet. */
08388c79
DE
11099 int used_pattern_len;
11100 int i;
11101 int found;
11102 ULONGEST found_addr;
11103
7cc244de
PA
11104 /* Don't go to the target if we don't have to. This is done before
11105 checking packet_config_support to avoid the possibility that a
11106 success for this edge case means the facility works in
11107 general. */
08388c79
DE
11108 if (pattern_len > search_space_len)
11109 return 0;
11110 if (pattern_len == 0)
11111 {
11112 *found_addrp = start_addr;
11113 return 1;
11114 }
11115
11116 /* If we already know the packet isn't supported, fall back to the simple
11117 way of searching memory. */
11118
4082afcc 11119 if (packet_config_support (packet) == PACKET_DISABLE)
08388c79
DE
11120 {
11121 /* Target doesn't provided special support, fall back and use the
11122 standard support (copy memory and do the search here). */
f6ac5f3d 11123 return simple_search_memory (this, start_addr, search_space_len,
08388c79
DE
11124 pattern, pattern_len, found_addrp);
11125 }
11126
28439a30
PA
11127 /* Make sure the remote is pointing at the right process. */
11128 set_general_process ();
11129
08388c79 11130 /* Insert header. */
8d64371b 11131 i = snprintf (rs->buf.data (), max_size,
08388c79 11132 "qSearch:memory:%s;%s;",
5af949e3 11133 phex_nz (start_addr, addr_size),
08388c79
DE
11134 phex_nz (search_space_len, sizeof (search_space_len)));
11135 max_size -= (i + 1);
11136
11137 /* Escape as much data as fits into rs->buf. */
11138 escaped_pattern_len =
8d64371b
TT
11139 remote_escape_output (pattern, pattern_len, 1,
11140 (gdb_byte *) rs->buf.data () + i,
08388c79
DE
11141 &used_pattern_len, max_size);
11142
11143 /* Bail if the pattern is too large. */
11144 if (used_pattern_len != pattern_len)
9b20d036 11145 error (_("Pattern is too large to transmit to remote target."));
08388c79 11146
8d64371b
TT
11147 if (putpkt_binary (rs->buf.data (), i + escaped_pattern_len) < 0
11148 || getpkt_sane (&rs->buf, 0) < 0
08388c79
DE
11149 || packet_ok (rs->buf, packet) != PACKET_OK)
11150 {
11151 /* The request may not have worked because the command is not
11152 supported. If so, fall back to the simple way. */
7cc244de 11153 if (packet_config_support (packet) == PACKET_DISABLE)
08388c79 11154 {
f6ac5f3d 11155 return simple_search_memory (this, start_addr, search_space_len,
08388c79
DE
11156 pattern, pattern_len, found_addrp);
11157 }
11158 return -1;
11159 }
11160
11161 if (rs->buf[0] == '0')
11162 found = 0;
11163 else if (rs->buf[0] == '1')
11164 {
11165 found = 1;
11166 if (rs->buf[1] != ',')
8d64371b
TT
11167 error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ());
11168 unpack_varlen_hex (&rs->buf[2], &found_addr);
08388c79
DE
11169 *found_addrp = found_addr;
11170 }
11171 else
8d64371b 11172 error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ());
08388c79
DE
11173
11174 return found;
11175}
11176
f6ac5f3d
PA
11177void
11178remote_target::rcmd (const char *command, struct ui_file *outbuf)
96baa820 11179{
d01949b6 11180 struct remote_state *rs = get_remote_state ();
8d64371b 11181 char *p = rs->buf.data ();
96baa820 11182
5d93a237 11183 if (!rs->remote_desc)
8a3fe4f8 11184 error (_("remote rcmd is only available after target open"));
96baa820 11185
23860348 11186 /* Send a NULL command across as an empty command. */
7be570e7
JM
11187 if (command == NULL)
11188 command = "";
11189
23860348 11190 /* The query prefix. */
8d64371b
TT
11191 strcpy (rs->buf.data (), "qRcmd,");
11192 p = strchr (rs->buf.data (), '\0');
96baa820 11193
8d64371b 11194 if ((strlen (rs->buf.data ()) + strlen (command) * 2 + 8/*misc*/)
3e43a32a 11195 > get_remote_packet_size ())
8a3fe4f8 11196 error (_("\"monitor\" command ``%s'' is too long."), command);
96baa820 11197
23860348 11198 /* Encode the actual command. */
a30bf1f1 11199 bin2hex ((const gdb_byte *) command, p, strlen (command));
96baa820 11200
6d820c5c 11201 if (putpkt (rs->buf) < 0)
8a3fe4f8 11202 error (_("Communication problem with target."));
96baa820
JM
11203
11204 /* get/display the response */
11205 while (1)
11206 {
2e9f7625
DJ
11207 char *buf;
11208
00bf0b85 11209 /* XXX - see also remote_get_noisy_reply(). */
5b37825d 11210 QUIT; /* Allow user to bail out with ^C. */
2e9f7625 11211 rs->buf[0] = '\0';
8d64371b 11212 if (getpkt_sane (&rs->buf, 0) == -1)
5b37825d
PW
11213 {
11214 /* Timeout. Continue to (try to) read responses.
11215 This is better than stopping with an error, assuming the stub
11216 is still executing the (long) monitor command.
11217 If needed, the user can interrupt gdb using C-c, obtaining
11218 an effect similar to stop on timeout. */
11219 continue;
11220 }
8d64371b 11221 buf = rs->buf.data ();
96baa820 11222 if (buf[0] == '\0')
8a3fe4f8 11223 error (_("Target does not support this command."));
96baa820
JM
11224 if (buf[0] == 'O' && buf[1] != 'K')
11225 {
23860348 11226 remote_console_output (buf + 1); /* 'O' message from stub. */
96baa820
JM
11227 continue;
11228 }
11229 if (strcmp (buf, "OK") == 0)
11230 break;
7be570e7
JM
11231 if (strlen (buf) == 3 && buf[0] == 'E'
11232 && isdigit (buf[1]) && isdigit (buf[2]))
11233 {
8a3fe4f8 11234 error (_("Protocol error with Rcmd"));
7be570e7 11235 }
96baa820
JM
11236 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
11237 {
11238 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
a744cf53 11239
96baa820
JM
11240 fputc_unfiltered (c, outbuf);
11241 }
11242 break;
11243 }
11244}
11245
f6ac5f3d
PA
11246std::vector<mem_region>
11247remote_target::memory_map ()
fd79ecee 11248{
a664f67e 11249 std::vector<mem_region> result;
9018be22 11250 gdb::optional<gdb::char_vector> text
8b88a78e 11251 = target_read_stralloc (current_top_target (), TARGET_OBJECT_MEMORY_MAP, NULL);
fd79ecee
DJ
11252
11253 if (text)
9018be22 11254 result = parse_memory_map (text->data ());
fd79ecee
DJ
11255
11256 return result;
11257}
11258
c906108c 11259static void
ac88e2de 11260packet_command (const char *args, int from_tty)
c906108c 11261{
6b8edb51 11262 remote_target *remote = get_current_remote_target ();
c906108c 11263
6b8edb51 11264 if (remote == nullptr)
8a3fe4f8 11265 error (_("command can only be used with remote target"));
c906108c 11266
6b8edb51
PA
11267 remote->packet_command (args, from_tty);
11268}
11269
11270void
11271remote_target::packet_command (const char *args, int from_tty)
11272{
c5aa993b 11273 if (!args)
8a3fe4f8 11274 error (_("remote-packet command requires packet text as argument"));
c906108c
SS
11275
11276 puts_filtered ("sending: ");
11277 print_packet (args);
11278 puts_filtered ("\n");
11279 putpkt (args);
11280
6b8edb51
PA
11281 remote_state *rs = get_remote_state ();
11282
8d64371b 11283 getpkt (&rs->buf, 0);
c906108c 11284 puts_filtered ("received: ");
8d64371b 11285 print_packet (rs->buf.data ());
c906108c
SS
11286 puts_filtered ("\n");
11287}
11288
11289#if 0
23860348 11290/* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
c906108c 11291
a14ed312 11292static void display_thread_info (struct gdb_ext_thread_info *info);
c906108c 11293
a14ed312 11294static void threadset_test_cmd (char *cmd, int tty);
c906108c 11295
a14ed312 11296static void threadalive_test (char *cmd, int tty);
c906108c 11297
a14ed312 11298static void threadlist_test_cmd (char *cmd, int tty);
c906108c 11299
23860348 11300int get_and_display_threadinfo (threadref *ref);
c906108c 11301
a14ed312 11302static void threadinfo_test_cmd (char *cmd, int tty);
c906108c 11303
23860348 11304static int thread_display_step (threadref *ref, void *context);
c906108c 11305
a14ed312 11306static void threadlist_update_test_cmd (char *cmd, int tty);
c906108c 11307
a14ed312 11308static void init_remote_threadtests (void);
c906108c 11309
23860348 11310#define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
c906108c
SS
11311
11312static void
0b39b52e 11313threadset_test_cmd (const char *cmd, int tty)
c906108c
SS
11314{
11315 int sample_thread = SAMPLE_THREAD;
11316
a3f17187 11317 printf_filtered (_("Remote threadset test\n"));
79d7f229 11318 set_general_thread (sample_thread);
c906108c
SS
11319}
11320
11321
11322static void
0b39b52e 11323threadalive_test (const char *cmd, int tty)
c906108c
SS
11324{
11325 int sample_thread = SAMPLE_THREAD;
e99b03dc 11326 int pid = inferior_ptid.pid ();
fd79271b 11327 ptid_t ptid = ptid_t (pid, sample_thread, 0);
c906108c 11328
79d7f229 11329 if (remote_thread_alive (ptid))
c906108c
SS
11330 printf_filtered ("PASS: Thread alive test\n");
11331 else
11332 printf_filtered ("FAIL: Thread alive test\n");
11333}
11334
23860348 11335void output_threadid (char *title, threadref *ref);
c906108c
SS
11336
11337void
fba45db2 11338output_threadid (char *title, threadref *ref)
c906108c
SS
11339{
11340 char hexid[20];
11341
23860348 11342 pack_threadid (&hexid[0], ref); /* Convert threead id into hex. */
c906108c
SS
11343 hexid[16] = 0;
11344 printf_filtered ("%s %s\n", title, (&hexid[0]));
11345}
11346
11347static void
0b39b52e 11348threadlist_test_cmd (const char *cmd, int tty)
c906108c
SS
11349{
11350 int startflag = 1;
11351 threadref nextthread;
11352 int done, result_count;
11353 threadref threadlist[3];
11354
11355 printf_filtered ("Remote Threadlist test\n");
11356 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
11357 &result_count, &threadlist[0]))
11358 printf_filtered ("FAIL: threadlist test\n");
11359 else
11360 {
11361 threadref *scan = threadlist;
11362 threadref *limit = scan + result_count;
11363
11364 while (scan < limit)
11365 output_threadid (" thread ", scan++);
11366 }
11367}
11368
11369void
fba45db2 11370display_thread_info (struct gdb_ext_thread_info *info)
c906108c
SS
11371{
11372 output_threadid ("Threadid: ", &info->threadid);
11373 printf_filtered ("Name: %s\n ", info->shortname);
11374 printf_filtered ("State: %s\n", info->display);
11375 printf_filtered ("other: %s\n\n", info->more_display);
11376}
11377
11378int
fba45db2 11379get_and_display_threadinfo (threadref *ref)
c906108c
SS
11380{
11381 int result;
11382 int set;
11383 struct gdb_ext_thread_info threadinfo;
11384
11385 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
11386 | TAG_MOREDISPLAY | TAG_DISPLAY;
11387 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
11388 display_thread_info (&threadinfo);
11389 return result;
11390}
11391
11392static void
0b39b52e 11393threadinfo_test_cmd (const char *cmd, int tty)
c906108c
SS
11394{
11395 int athread = SAMPLE_THREAD;
11396 threadref thread;
11397 int set;
11398
11399 int_to_threadref (&thread, athread);
11400 printf_filtered ("Remote Threadinfo test\n");
11401 if (!get_and_display_threadinfo (&thread))
11402 printf_filtered ("FAIL cannot get thread info\n");
11403}
11404
11405static int
fba45db2 11406thread_display_step (threadref *ref, void *context)
c906108c
SS
11407{
11408 /* output_threadid(" threadstep ",ref); *//* simple test */
11409 return get_and_display_threadinfo (ref);
11410}
11411
11412static void
0b39b52e 11413threadlist_update_test_cmd (const char *cmd, int tty)
c906108c
SS
11414{
11415 printf_filtered ("Remote Threadlist update test\n");
11416 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
11417}
11418
11419static void
11420init_remote_threadtests (void)
11421{
3e43a32a
MS
11422 add_com ("tlist", class_obscure, threadlist_test_cmd,
11423 _("Fetch and print the remote list of "
11424 "thread identifiers, one pkt only"));
c906108c 11425 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
1bedd215 11426 _("Fetch and display info about one thread"));
c906108c 11427 add_com ("tset", class_obscure, threadset_test_cmd,
1bedd215 11428 _("Test setting to a different thread"));
c906108c 11429 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
1bedd215 11430 _("Iterate through updating all remote thread info"));
c906108c 11431 add_com ("talive", class_obscure, threadalive_test,
1bedd215 11432 _(" Remote thread alive test "));
c906108c
SS
11433}
11434
11435#endif /* 0 */
11436
f3fb8c85
MS
11437/* Convert a thread ID to a string. Returns the string in a static
11438 buffer. */
11439
f6ac5f3d
PA
11440const char *
11441remote_target::pid_to_str (ptid_t ptid)
f3fb8c85 11442{
79d7f229 11443 static char buf[64];
82f73884 11444 struct remote_state *rs = get_remote_state ();
f3fb8c85 11445
d7e15655 11446 if (ptid == null_ptid)
7cee1e54 11447 return normal_pid_to_str (ptid);
0e998d96 11448 else if (ptid.is_pid ())
ecd0ada5
PA
11449 {
11450 /* Printing an inferior target id. */
11451
11452 /* When multi-process extensions are off, there's no way in the
11453 remote protocol to know the remote process id, if there's any
11454 at all. There's one exception --- when we're connected with
11455 target extended-remote, and we manually attached to a process
11456 with "attach PID". We don't record anywhere a flag that
11457 allows us to distinguish that case from the case of
11458 connecting with extended-remote and the stub already being
11459 attached to a process, and reporting yes to qAttached, hence
11460 no smart special casing here. */
11461 if (!remote_multi_process_p (rs))
11462 {
11463 xsnprintf (buf, sizeof buf, "Remote target");
11464 return buf;
11465 }
11466
11467 return normal_pid_to_str (ptid);
82f73884 11468 }
ecd0ada5 11469 else
79d7f229 11470 {
d7e15655 11471 if (magic_null_ptid == ptid)
ecd0ada5 11472 xsnprintf (buf, sizeof buf, "Thread <main>");
8020350c 11473 else if (remote_multi_process_p (rs))
e38504b3 11474 if (ptid.lwp () == 0)
de0d863e
DB
11475 return normal_pid_to_str (ptid);
11476 else
11477 xsnprintf (buf, sizeof buf, "Thread %d.%ld",
e38504b3 11478 ptid.pid (), ptid.lwp ());
ecd0ada5
PA
11479 else
11480 xsnprintf (buf, sizeof buf, "Thread %ld",
e38504b3 11481 ptid.lwp ());
79d7f229
PA
11482 return buf;
11483 }
f3fb8c85
MS
11484}
11485
38691318
KB
11486/* Get the address of the thread local variable in OBJFILE which is
11487 stored at OFFSET within the thread local storage for thread PTID. */
11488
f6ac5f3d
PA
11489CORE_ADDR
11490remote_target::get_thread_local_address (ptid_t ptid, CORE_ADDR lm,
11491 CORE_ADDR offset)
38691318 11492{
4082afcc 11493 if (packet_support (PACKET_qGetTLSAddr) != PACKET_DISABLE)
38691318
KB
11494 {
11495 struct remote_state *rs = get_remote_state ();
8d64371b
TT
11496 char *p = rs->buf.data ();
11497 char *endp = p + get_remote_packet_size ();
571dd617 11498 enum packet_result result;
38691318
KB
11499
11500 strcpy (p, "qGetTLSAddr:");
11501 p += strlen (p);
82f73884 11502 p = write_ptid (p, endp, ptid);
38691318
KB
11503 *p++ = ',';
11504 p += hexnumstr (p, offset);
11505 *p++ = ',';
11506 p += hexnumstr (p, lm);
11507 *p++ = '\0';
11508
6d820c5c 11509 putpkt (rs->buf);
8d64371b 11510 getpkt (&rs->buf, 0);
3e43a32a
MS
11511 result = packet_ok (rs->buf,
11512 &remote_protocol_packets[PACKET_qGetTLSAddr]);
571dd617 11513 if (result == PACKET_OK)
38691318 11514 {
b926417a 11515 ULONGEST addr;
38691318 11516
8d64371b 11517 unpack_varlen_hex (rs->buf.data (), &addr);
b926417a 11518 return addr;
38691318 11519 }
571dd617 11520 else if (result == PACKET_UNKNOWN)
109c3e39
AC
11521 throw_error (TLS_GENERIC_ERROR,
11522 _("Remote target doesn't support qGetTLSAddr packet"));
38691318 11523 else
109c3e39
AC
11524 throw_error (TLS_GENERIC_ERROR,
11525 _("Remote target failed to process qGetTLSAddr request"));
38691318
KB
11526 }
11527 else
109c3e39
AC
11528 throw_error (TLS_GENERIC_ERROR,
11529 _("TLS not supported or disabled on this target"));
38691318
KB
11530 /* Not reached. */
11531 return 0;
11532}
11533
711e434b
PM
11534/* Provide thread local base, i.e. Thread Information Block address.
11535 Returns 1 if ptid is found and thread_local_base is non zero. */
11536
57810aa7 11537bool
f6ac5f3d 11538remote_target::get_tib_address (ptid_t ptid, CORE_ADDR *addr)
711e434b 11539{
4082afcc 11540 if (packet_support (PACKET_qGetTIBAddr) != PACKET_DISABLE)
711e434b
PM
11541 {
11542 struct remote_state *rs = get_remote_state ();
8d64371b
TT
11543 char *p = rs->buf.data ();
11544 char *endp = p + get_remote_packet_size ();
711e434b
PM
11545 enum packet_result result;
11546
11547 strcpy (p, "qGetTIBAddr:");
11548 p += strlen (p);
11549 p = write_ptid (p, endp, ptid);
11550 *p++ = '\0';
11551
11552 putpkt (rs->buf);
8d64371b 11553 getpkt (&rs->buf, 0);
711e434b
PM
11554 result = packet_ok (rs->buf,
11555 &remote_protocol_packets[PACKET_qGetTIBAddr]);
11556 if (result == PACKET_OK)
11557 {
b926417a 11558 ULONGEST val;
8d64371b 11559 unpack_varlen_hex (rs->buf.data (), &val);
711e434b 11560 if (addr)
b926417a 11561 *addr = (CORE_ADDR) val;
57810aa7 11562 return true;
711e434b
PM
11563 }
11564 else if (result == PACKET_UNKNOWN)
11565 error (_("Remote target doesn't support qGetTIBAddr packet"));
11566 else
11567 error (_("Remote target failed to process qGetTIBAddr request"));
11568 }
11569 else
11570 error (_("qGetTIBAddr not supported or disabled on this target"));
11571 /* Not reached. */
57810aa7 11572 return false;
711e434b
PM
11573}
11574
29709017
DJ
11575/* Support for inferring a target description based on the current
11576 architecture and the size of a 'g' packet. While the 'g' packet
11577 can have any size (since optional registers can be left off the
11578 end), some sizes are easily recognizable given knowledge of the
11579 approximate architecture. */
11580
11581struct remote_g_packet_guess
11582{
eefce37f
TT
11583 remote_g_packet_guess (int bytes_, const struct target_desc *tdesc_)
11584 : bytes (bytes_),
11585 tdesc (tdesc_)
11586 {
11587 }
11588
29709017
DJ
11589 int bytes;
11590 const struct target_desc *tdesc;
11591};
29709017 11592
eefce37f 11593struct remote_g_packet_data : public allocate_on_obstack
29709017 11594{
eefce37f 11595 std::vector<remote_g_packet_guess> guesses;
29709017
DJ
11596};
11597
11598static struct gdbarch_data *remote_g_packet_data_handle;
11599
11600static void *
11601remote_g_packet_data_init (struct obstack *obstack)
11602{
eefce37f 11603 return new (obstack) remote_g_packet_data;
29709017
DJ
11604}
11605
11606void
11607register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes,
11608 const struct target_desc *tdesc)
11609{
11610 struct remote_g_packet_data *data
19ba03f4
SM
11611 = ((struct remote_g_packet_data *)
11612 gdbarch_data (gdbarch, remote_g_packet_data_handle));
29709017
DJ
11613
11614 gdb_assert (tdesc != NULL);
11615
eefce37f
TT
11616 for (const remote_g_packet_guess &guess : data->guesses)
11617 if (guess.bytes == bytes)
29709017 11618 internal_error (__FILE__, __LINE__,
9b20d036 11619 _("Duplicate g packet description added for size %d"),
29709017
DJ
11620 bytes);
11621
eefce37f 11622 data->guesses.emplace_back (bytes, tdesc);
29709017
DJ
11623}
11624
eefce37f
TT
11625/* Return true if remote_read_description would do anything on this target
11626 and architecture, false otherwise. */
d962ef82 11627
eefce37f 11628static bool
d962ef82
DJ
11629remote_read_description_p (struct target_ops *target)
11630{
11631 struct remote_g_packet_data *data
19ba03f4
SM
11632 = ((struct remote_g_packet_data *)
11633 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
d962ef82 11634
eefce37f 11635 return !data->guesses.empty ();
d962ef82
DJ
11636}
11637
f6ac5f3d
PA
11638const struct target_desc *
11639remote_target::read_description ()
29709017
DJ
11640{
11641 struct remote_g_packet_data *data
19ba03f4
SM
11642 = ((struct remote_g_packet_data *)
11643 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
29709017 11644
d962ef82
DJ
11645 /* Do not try this during initial connection, when we do not know
11646 whether there is a running but stopped thread. */
d7e15655 11647 if (!target_has_execution || inferior_ptid == null_ptid)
b6a8c27b 11648 return beneath ()->read_description ();
d962ef82 11649
eefce37f 11650 if (!data->guesses.empty ())
29709017 11651 {
29709017
DJ
11652 int bytes = send_g_packet ();
11653
eefce37f
TT
11654 for (const remote_g_packet_guess &guess : data->guesses)
11655 if (guess.bytes == bytes)
11656 return guess.tdesc;
29709017
DJ
11657
11658 /* We discard the g packet. A minor optimization would be to
11659 hold on to it, and fill the register cache once we have selected
11660 an architecture, but it's too tricky to do safely. */
11661 }
11662
b6a8c27b 11663 return beneath ()->read_description ();
29709017
DJ
11664}
11665
a6b151f1
DJ
11666/* Remote file transfer support. This is host-initiated I/O, not
11667 target-initiated; for target-initiated, see remote-fileio.c. */
11668
11669/* If *LEFT is at least the length of STRING, copy STRING to
11670 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11671 decrease *LEFT. Otherwise raise an error. */
11672
11673static void
a121b7c1 11674remote_buffer_add_string (char **buffer, int *left, const char *string)
a6b151f1
DJ
11675{
11676 int len = strlen (string);
11677
11678 if (len > *left)
11679 error (_("Packet too long for target."));
11680
11681 memcpy (*buffer, string, len);
11682 *buffer += len;
11683 *left -= len;
11684
11685 /* NUL-terminate the buffer as a convenience, if there is
11686 room. */
11687 if (*left)
11688 **buffer = '\0';
11689}
11690
11691/* If *LEFT is large enough, hex encode LEN bytes from BYTES into
11692 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11693 decrease *LEFT. Otherwise raise an error. */
11694
11695static void
11696remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes,
11697 int len)
11698{
11699 if (2 * len > *left)
11700 error (_("Packet too long for target."));
11701
11702 bin2hex (bytes, *buffer, len);
11703 *buffer += 2 * len;
11704 *left -= 2 * len;
11705
11706 /* NUL-terminate the buffer as a convenience, if there is
11707 room. */
11708 if (*left)
11709 **buffer = '\0';
11710}
11711
11712/* If *LEFT is large enough, convert VALUE to hex and add it to
11713 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11714 decrease *LEFT. Otherwise raise an error. */
11715
11716static void
11717remote_buffer_add_int (char **buffer, int *left, ULONGEST value)
11718{
11719 int len = hexnumlen (value);
11720
11721 if (len > *left)
11722 error (_("Packet too long for target."));
11723
11724 hexnumstr (*buffer, value);
11725 *buffer += len;
11726 *left -= len;
11727
11728 /* NUL-terminate the buffer as a convenience, if there is
11729 room. */
11730 if (*left)
11731 **buffer = '\0';
11732}
11733
11734/* Parse an I/O result packet from BUFFER. Set RETCODE to the return
11735 value, *REMOTE_ERRNO to the remote error number or zero if none
11736 was included, and *ATTACHMENT to point to the start of the annex
11737 if any. The length of the packet isn't needed here; there may
11738 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
11739
11740 Return 0 if the packet could be parsed, -1 if it could not. If
11741 -1 is returned, the other variables may not be initialized. */
11742
11743static int
11744remote_hostio_parse_result (char *buffer, int *retcode,
11745 int *remote_errno, char **attachment)
11746{
11747 char *p, *p2;
11748
11749 *remote_errno = 0;
11750 *attachment = NULL;
11751
11752 if (buffer[0] != 'F')
11753 return -1;
11754
11755 errno = 0;
11756 *retcode = strtol (&buffer[1], &p, 16);
11757 if (errno != 0 || p == &buffer[1])
11758 return -1;
11759
11760 /* Check for ",errno". */
11761 if (*p == ',')
11762 {
11763 errno = 0;
11764 *remote_errno = strtol (p + 1, &p2, 16);
11765 if (errno != 0 || p + 1 == p2)
11766 return -1;
11767 p = p2;
11768 }
11769
11770 /* Check for ";attachment". If there is no attachment, the
11771 packet should end here. */
11772 if (*p == ';')
11773 {
11774 *attachment = p + 1;
11775 return 0;
11776 }
11777 else if (*p == '\0')
11778 return 0;
11779 else
11780 return -1;
11781}
11782
11783/* Send a prepared I/O packet to the target and read its response.
11784 The prepared packet is in the global RS->BUF before this function
11785 is called, and the answer is there when we return.
11786
11787 COMMAND_BYTES is the length of the request to send, which may include
11788 binary data. WHICH_PACKET is the packet configuration to check
11789 before attempting a packet. If an error occurs, *REMOTE_ERRNO
11790 is set to the error number and -1 is returned. Otherwise the value
11791 returned by the function is returned.
11792
11793 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
11794 attachment is expected; an error will be reported if there's a
11795 mismatch. If one is found, *ATTACHMENT will be set to point into
11796 the packet buffer and *ATTACHMENT_LEN will be set to the
11797 attachment's length. */
11798
6b8edb51
PA
11799int
11800remote_target::remote_hostio_send_command (int command_bytes, int which_packet,
11801 int *remote_errno, char **attachment,
11802 int *attachment_len)
a6b151f1
DJ
11803{
11804 struct remote_state *rs = get_remote_state ();
11805 int ret, bytes_read;
11806 char *attachment_tmp;
11807
20db9c52 11808 if (packet_support (which_packet) == PACKET_DISABLE)
a6b151f1
DJ
11809 {
11810 *remote_errno = FILEIO_ENOSYS;
11811 return -1;
11812 }
11813
8d64371b
TT
11814 putpkt_binary (rs->buf.data (), command_bytes);
11815 bytes_read = getpkt_sane (&rs->buf, 0);
a6b151f1
DJ
11816
11817 /* If it timed out, something is wrong. Don't try to parse the
11818 buffer. */
11819 if (bytes_read < 0)
11820 {
11821 *remote_errno = FILEIO_EINVAL;
11822 return -1;
11823 }
11824
11825 switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet]))
11826 {
11827 case PACKET_ERROR:
11828 *remote_errno = FILEIO_EINVAL;
11829 return -1;
11830 case PACKET_UNKNOWN:
11831 *remote_errno = FILEIO_ENOSYS;
11832 return -1;
11833 case PACKET_OK:
11834 break;
11835 }
11836
8d64371b 11837 if (remote_hostio_parse_result (rs->buf.data (), &ret, remote_errno,
a6b151f1
DJ
11838 &attachment_tmp))
11839 {
11840 *remote_errno = FILEIO_EINVAL;
11841 return -1;
11842 }
11843
11844 /* Make sure we saw an attachment if and only if we expected one. */
11845 if ((attachment_tmp == NULL && attachment != NULL)
11846 || (attachment_tmp != NULL && attachment == NULL))
11847 {
11848 *remote_errno = FILEIO_EINVAL;
11849 return -1;
11850 }
11851
11852 /* If an attachment was found, it must point into the packet buffer;
11853 work out how many bytes there were. */
11854 if (attachment_tmp != NULL)
11855 {
11856 *attachment = attachment_tmp;
8d64371b 11857 *attachment_len = bytes_read - (*attachment - rs->buf.data ());
a6b151f1
DJ
11858 }
11859
11860 return ret;
11861}
11862
dd194f6b 11863/* See declaration.h. */
80152258 11864
dd194f6b
PA
11865void
11866readahead_cache::invalidate ()
80152258 11867{
dd194f6b 11868 this->fd = -1;
80152258
PA
11869}
11870
dd194f6b 11871/* See declaration.h. */
80152258 11872
dd194f6b
PA
11873void
11874readahead_cache::invalidate_fd (int fd)
80152258 11875{
dd194f6b
PA
11876 if (this->fd == fd)
11877 this->fd = -1;
80152258
PA
11878}
11879
15a201c8
GB
11880/* Set the filesystem remote_hostio functions that take FILENAME
11881 arguments will use. Return 0 on success, or -1 if an error
11882 occurs (and set *REMOTE_ERRNO). */
11883
6b8edb51
PA
11884int
11885remote_target::remote_hostio_set_filesystem (struct inferior *inf,
11886 int *remote_errno)
15a201c8
GB
11887{
11888 struct remote_state *rs = get_remote_state ();
11889 int required_pid = (inf == NULL || inf->fake_pid_p) ? 0 : inf->pid;
8d64371b 11890 char *p = rs->buf.data ();
15a201c8
GB
11891 int left = get_remote_packet_size () - 1;
11892 char arg[9];
11893 int ret;
11894
11895 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11896 return 0;
11897
11898 if (rs->fs_pid != -1 && required_pid == rs->fs_pid)
11899 return 0;
11900
11901 remote_buffer_add_string (&p, &left, "vFile:setfs:");
11902
11903 xsnprintf (arg, sizeof (arg), "%x", required_pid);
11904 remote_buffer_add_string (&p, &left, arg);
11905
8d64371b 11906 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_setfs,
15a201c8
GB
11907 remote_errno, NULL, NULL);
11908
11909 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11910 return 0;
11911
11912 if (ret == 0)
11913 rs->fs_pid = required_pid;
11914
11915 return ret;
11916}
11917
12e2a5fd 11918/* Implementation of to_fileio_open. */
a6b151f1 11919
6b8edb51
PA
11920int
11921remote_target::remote_hostio_open (inferior *inf, const char *filename,
11922 int flags, int mode, int warn_if_slow,
11923 int *remote_errno)
a6b151f1
DJ
11924{
11925 struct remote_state *rs = get_remote_state ();
8d64371b 11926 char *p = rs->buf.data ();
a6b151f1
DJ
11927 int left = get_remote_packet_size () - 1;
11928
4313b8c0
GB
11929 if (warn_if_slow)
11930 {
11931 static int warning_issued = 0;
11932
11933 printf_unfiltered (_("Reading %s from remote target...\n"),
11934 filename);
11935
11936 if (!warning_issued)
11937 {
11938 warning (_("File transfers from remote targets can be slow."
11939 " Use \"set sysroot\" to access files locally"
11940 " instead."));
11941 warning_issued = 1;
11942 }
11943 }
11944
15a201c8
GB
11945 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
11946 return -1;
11947
a6b151f1
DJ
11948 remote_buffer_add_string (&p, &left, "vFile:open:");
11949
11950 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
11951 strlen (filename));
11952 remote_buffer_add_string (&p, &left, ",");
11953
11954 remote_buffer_add_int (&p, &left, flags);
11955 remote_buffer_add_string (&p, &left, ",");
11956
11957 remote_buffer_add_int (&p, &left, mode);
11958
8d64371b 11959 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_open,
a6b151f1
DJ
11960 remote_errno, NULL, NULL);
11961}
11962
f6ac5f3d
PA
11963int
11964remote_target::fileio_open (struct inferior *inf, const char *filename,
11965 int flags, int mode, int warn_if_slow,
11966 int *remote_errno)
11967{
6b8edb51 11968 return remote_hostio_open (inf, filename, flags, mode, warn_if_slow,
f6ac5f3d
PA
11969 remote_errno);
11970}
11971
12e2a5fd 11972/* Implementation of to_fileio_pwrite. */
a6b151f1 11973
6b8edb51
PA
11974int
11975remote_target::remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
11976 ULONGEST offset, int *remote_errno)
a6b151f1
DJ
11977{
11978 struct remote_state *rs = get_remote_state ();
8d64371b 11979 char *p = rs->buf.data ();
a6b151f1
DJ
11980 int left = get_remote_packet_size ();
11981 int out_len;
11982
dd194f6b 11983 rs->readahead_cache.invalidate_fd (fd);
80152258 11984
a6b151f1
DJ
11985 remote_buffer_add_string (&p, &left, "vFile:pwrite:");
11986
11987 remote_buffer_add_int (&p, &left, fd);
11988 remote_buffer_add_string (&p, &left, ",");
11989
11990 remote_buffer_add_int (&p, &left, offset);
11991 remote_buffer_add_string (&p, &left, ",");
11992
124e13d9 11993 p += remote_escape_output (write_buf, len, 1, (gdb_byte *) p, &out_len,
8d64371b
TT
11994 (get_remote_packet_size ()
11995 - (p - rs->buf.data ())));
a6b151f1 11996
8d64371b 11997 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pwrite,
a6b151f1
DJ
11998 remote_errno, NULL, NULL);
11999}
12000
f6ac5f3d
PA
12001int
12002remote_target::fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
12003 ULONGEST offset, int *remote_errno)
12004{
6b8edb51 12005 return remote_hostio_pwrite (fd, write_buf, len, offset, remote_errno);
f6ac5f3d
PA
12006}
12007
80152258
PA
12008/* Helper for the implementation of to_fileio_pread. Read the file
12009 from the remote side with vFile:pread. */
a6b151f1 12010
6b8edb51
PA
12011int
12012remote_target::remote_hostio_pread_vFile (int fd, gdb_byte *read_buf, int len,
12013 ULONGEST offset, int *remote_errno)
a6b151f1
DJ
12014{
12015 struct remote_state *rs = get_remote_state ();
8d64371b 12016 char *p = rs->buf.data ();
a6b151f1
DJ
12017 char *attachment;
12018 int left = get_remote_packet_size ();
12019 int ret, attachment_len;
12020 int read_len;
12021
12022 remote_buffer_add_string (&p, &left, "vFile:pread:");
12023
12024 remote_buffer_add_int (&p, &left, fd);
12025 remote_buffer_add_string (&p, &left, ",");
12026
12027 remote_buffer_add_int (&p, &left, len);
12028 remote_buffer_add_string (&p, &left, ",");
12029
12030 remote_buffer_add_int (&p, &left, offset);
12031
8d64371b 12032 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pread,
a6b151f1
DJ
12033 remote_errno, &attachment,
12034 &attachment_len);
12035
12036 if (ret < 0)
12037 return ret;
12038
bc20a4af 12039 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
a6b151f1
DJ
12040 read_buf, len);
12041 if (read_len != ret)
12042 error (_("Read returned %d, but %d bytes."), ret, (int) read_len);
12043
12044 return ret;
12045}
12046
dd194f6b 12047/* See declaration.h. */
80152258 12048
dd194f6b
PA
12049int
12050readahead_cache::pread (int fd, gdb_byte *read_buf, size_t len,
12051 ULONGEST offset)
80152258 12052{
dd194f6b
PA
12053 if (this->fd == fd
12054 && this->offset <= offset
12055 && offset < this->offset + this->bufsize)
80152258 12056 {
dd194f6b 12057 ULONGEST max = this->offset + this->bufsize;
80152258
PA
12058
12059 if (offset + len > max)
12060 len = max - offset;
12061
dd194f6b 12062 memcpy (read_buf, this->buf + offset - this->offset, len);
80152258
PA
12063 return len;
12064 }
12065
12066 return 0;
12067}
12068
12069/* Implementation of to_fileio_pread. */
12070
6b8edb51
PA
12071int
12072remote_target::remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
12073 ULONGEST offset, int *remote_errno)
80152258
PA
12074{
12075 int ret;
12076 struct remote_state *rs = get_remote_state ();
dd194f6b 12077 readahead_cache *cache = &rs->readahead_cache;
80152258 12078
dd194f6b 12079 ret = cache->pread (fd, read_buf, len, offset);
80152258
PA
12080 if (ret > 0)
12081 {
12082 cache->hit_count++;
12083
12084 if (remote_debug)
12085 fprintf_unfiltered (gdb_stdlog, "readahead cache hit %s\n",
12086 pulongest (cache->hit_count));
12087 return ret;
12088 }
12089
12090 cache->miss_count++;
12091 if (remote_debug)
12092 fprintf_unfiltered (gdb_stdlog, "readahead cache miss %s\n",
12093 pulongest (cache->miss_count));
12094
12095 cache->fd = fd;
12096 cache->offset = offset;
12097 cache->bufsize = get_remote_packet_size ();
224c3ddb 12098 cache->buf = (gdb_byte *) xrealloc (cache->buf, cache->bufsize);
80152258 12099
6b8edb51 12100 ret = remote_hostio_pread_vFile (cache->fd, cache->buf, cache->bufsize,
80152258
PA
12101 cache->offset, remote_errno);
12102 if (ret <= 0)
12103 {
dd194f6b 12104 cache->invalidate_fd (fd);
80152258
PA
12105 return ret;
12106 }
12107
12108 cache->bufsize = ret;
dd194f6b 12109 return cache->pread (fd, read_buf, len, offset);
80152258
PA
12110}
12111
f6ac5f3d
PA
12112int
12113remote_target::fileio_pread (int fd, gdb_byte *read_buf, int len,
12114 ULONGEST offset, int *remote_errno)
12115{
6b8edb51 12116 return remote_hostio_pread (fd, read_buf, len, offset, remote_errno);
f6ac5f3d
PA
12117}
12118
12e2a5fd 12119/* Implementation of to_fileio_close. */
a6b151f1 12120
6b8edb51
PA
12121int
12122remote_target::remote_hostio_close (int fd, int *remote_errno)
a6b151f1
DJ
12123{
12124 struct remote_state *rs = get_remote_state ();
8d64371b 12125 char *p = rs->buf.data ();
a6b151f1
DJ
12126 int left = get_remote_packet_size () - 1;
12127
dd194f6b 12128 rs->readahead_cache.invalidate_fd (fd);
80152258 12129
a6b151f1
DJ
12130 remote_buffer_add_string (&p, &left, "vFile:close:");
12131
12132 remote_buffer_add_int (&p, &left, fd);
12133
8d64371b 12134 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_close,
a6b151f1
DJ
12135 remote_errno, NULL, NULL);
12136}
12137
f6ac5f3d
PA
12138int
12139remote_target::fileio_close (int fd, int *remote_errno)
12140{
6b8edb51 12141 return remote_hostio_close (fd, remote_errno);
f6ac5f3d
PA
12142}
12143
12e2a5fd 12144/* Implementation of to_fileio_unlink. */
a6b151f1 12145
6b8edb51
PA
12146int
12147remote_target::remote_hostio_unlink (inferior *inf, const char *filename,
12148 int *remote_errno)
a6b151f1
DJ
12149{
12150 struct remote_state *rs = get_remote_state ();
8d64371b 12151 char *p = rs->buf.data ();
a6b151f1
DJ
12152 int left = get_remote_packet_size () - 1;
12153
15a201c8
GB
12154 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
12155 return -1;
12156
a6b151f1
DJ
12157 remote_buffer_add_string (&p, &left, "vFile:unlink:");
12158
12159 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12160 strlen (filename));
12161
8d64371b 12162 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_unlink,
a6b151f1
DJ
12163 remote_errno, NULL, NULL);
12164}
12165
f6ac5f3d
PA
12166int
12167remote_target::fileio_unlink (struct inferior *inf, const char *filename,
12168 int *remote_errno)
12169{
6b8edb51 12170 return remote_hostio_unlink (inf, filename, remote_errno);
f6ac5f3d
PA
12171}
12172
12e2a5fd 12173/* Implementation of to_fileio_readlink. */
b9e7b9c3 12174
f6ac5f3d
PA
12175gdb::optional<std::string>
12176remote_target::fileio_readlink (struct inferior *inf, const char *filename,
12177 int *remote_errno)
b9e7b9c3
UW
12178{
12179 struct remote_state *rs = get_remote_state ();
8d64371b 12180 char *p = rs->buf.data ();
b9e7b9c3
UW
12181 char *attachment;
12182 int left = get_remote_packet_size ();
12183 int len, attachment_len;
12184 int read_len;
b9e7b9c3 12185
15a201c8 12186 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
e0d3522b 12187 return {};
15a201c8 12188
b9e7b9c3
UW
12189 remote_buffer_add_string (&p, &left, "vFile:readlink:");
12190
12191 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12192 strlen (filename));
12193
8d64371b 12194 len = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_readlink,
b9e7b9c3
UW
12195 remote_errno, &attachment,
12196 &attachment_len);
12197
12198 if (len < 0)
e0d3522b 12199 return {};
b9e7b9c3 12200
e0d3522b 12201 std::string ret (len, '\0');
b9e7b9c3 12202
bc20a4af 12203 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
e0d3522b 12204 (gdb_byte *) &ret[0], len);
b9e7b9c3
UW
12205 if (read_len != len)
12206 error (_("Readlink returned %d, but %d bytes."), len, read_len);
12207
b9e7b9c3
UW
12208 return ret;
12209}
12210
12e2a5fd 12211/* Implementation of to_fileio_fstat. */
0a93529c 12212
f6ac5f3d
PA
12213int
12214remote_target::fileio_fstat (int fd, struct stat *st, int *remote_errno)
0a93529c
GB
12215{
12216 struct remote_state *rs = get_remote_state ();
8d64371b 12217 char *p = rs->buf.data ();
0a93529c
GB
12218 int left = get_remote_packet_size ();
12219 int attachment_len, ret;
12220 char *attachment;
12221 struct fio_stat fst;
12222 int read_len;
12223
464b0089
GB
12224 remote_buffer_add_string (&p, &left, "vFile:fstat:");
12225
12226 remote_buffer_add_int (&p, &left, fd);
12227
8d64371b 12228 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_fstat,
464b0089
GB
12229 remote_errno, &attachment,
12230 &attachment_len);
12231 if (ret < 0)
0a93529c 12232 {
464b0089
GB
12233 if (*remote_errno != FILEIO_ENOSYS)
12234 return ret;
12235
0a93529c
GB
12236 /* Strictly we should return -1, ENOSYS here, but when
12237 "set sysroot remote:" was implemented in August 2008
12238 BFD's need for a stat function was sidestepped with
12239 this hack. This was not remedied until March 2015
12240 so we retain the previous behavior to avoid breaking
12241 compatibility.
12242
12243 Note that the memset is a March 2015 addition; older
12244 GDBs set st_size *and nothing else* so the structure
12245 would have garbage in all other fields. This might
12246 break something but retaining the previous behavior
12247 here would be just too wrong. */
12248
12249 memset (st, 0, sizeof (struct stat));
12250 st->st_size = INT_MAX;
12251 return 0;
12252 }
12253
0a93529c
GB
12254 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
12255 (gdb_byte *) &fst, sizeof (fst));
12256
12257 if (read_len != ret)
12258 error (_("vFile:fstat returned %d, but %d bytes."), ret, read_len);
12259
12260 if (read_len != sizeof (fst))
12261 error (_("vFile:fstat returned %d bytes, but expecting %d."),
12262 read_len, (int) sizeof (fst));
12263
12264 remote_fileio_to_host_stat (&fst, st);
12265
12266 return 0;
12267}
12268
12e2a5fd 12269/* Implementation of to_filesystem_is_local. */
e3dd7556 12270
57810aa7 12271bool
f6ac5f3d 12272remote_target::filesystem_is_local ()
e3dd7556
GB
12273{
12274 /* Valgrind GDB presents itself as a remote target but works
12275 on the local filesystem: it does not implement remote get
12276 and users are not expected to set a sysroot. To handle
12277 this case we treat the remote filesystem as local if the
12278 sysroot is exactly TARGET_SYSROOT_PREFIX and if the stub
12279 does not support vFile:open. */
a3be80c3 12280 if (strcmp (gdb_sysroot, TARGET_SYSROOT_PREFIX) == 0)
e3dd7556
GB
12281 {
12282 enum packet_support ps = packet_support (PACKET_vFile_open);
12283
12284 if (ps == PACKET_SUPPORT_UNKNOWN)
12285 {
12286 int fd, remote_errno;
12287
12288 /* Try opening a file to probe support. The supplied
12289 filename is irrelevant, we only care about whether
12290 the stub recognizes the packet or not. */
6b8edb51 12291 fd = remote_hostio_open (NULL, "just probing",
4313b8c0 12292 FILEIO_O_RDONLY, 0700, 0,
e3dd7556
GB
12293 &remote_errno);
12294
12295 if (fd >= 0)
6b8edb51 12296 remote_hostio_close (fd, &remote_errno);
e3dd7556
GB
12297
12298 ps = packet_support (PACKET_vFile_open);
12299 }
12300
12301 if (ps == PACKET_DISABLE)
12302 {
12303 static int warning_issued = 0;
12304
12305 if (!warning_issued)
12306 {
12307 warning (_("remote target does not support file"
12308 " transfer, attempting to access files"
12309 " from local filesystem."));
12310 warning_issued = 1;
12311 }
12312
57810aa7 12313 return true;
e3dd7556
GB
12314 }
12315 }
12316
57810aa7 12317 return false;
e3dd7556
GB
12318}
12319
a6b151f1
DJ
12320static int
12321remote_fileio_errno_to_host (int errnum)
12322{
12323 switch (errnum)
12324 {
12325 case FILEIO_EPERM:
12326 return EPERM;
12327 case FILEIO_ENOENT:
12328 return ENOENT;
12329 case FILEIO_EINTR:
12330 return EINTR;
12331 case FILEIO_EIO:
12332 return EIO;
12333 case FILEIO_EBADF:
12334 return EBADF;
12335 case FILEIO_EACCES:
12336 return EACCES;
12337 case FILEIO_EFAULT:
12338 return EFAULT;
12339 case FILEIO_EBUSY:
12340 return EBUSY;
12341 case FILEIO_EEXIST:
12342 return EEXIST;
12343 case FILEIO_ENODEV:
12344 return ENODEV;
12345 case FILEIO_ENOTDIR:
12346 return ENOTDIR;
12347 case FILEIO_EISDIR:
12348 return EISDIR;
12349 case FILEIO_EINVAL:
12350 return EINVAL;
12351 case FILEIO_ENFILE:
12352 return ENFILE;
12353 case FILEIO_EMFILE:
12354 return EMFILE;
12355 case FILEIO_EFBIG:
12356 return EFBIG;
12357 case FILEIO_ENOSPC:
12358 return ENOSPC;
12359 case FILEIO_ESPIPE:
12360 return ESPIPE;
12361 case FILEIO_EROFS:
12362 return EROFS;
12363 case FILEIO_ENOSYS:
12364 return ENOSYS;
12365 case FILEIO_ENAMETOOLONG:
12366 return ENAMETOOLONG;
12367 }
12368 return -1;
12369}
12370
12371static char *
12372remote_hostio_error (int errnum)
12373{
12374 int host_error = remote_fileio_errno_to_host (errnum);
12375
12376 if (host_error == -1)
12377 error (_("Unknown remote I/O error %d"), errnum);
12378 else
12379 error (_("Remote I/O error: %s"), safe_strerror (host_error));
12380}
12381
440b7aec
PA
12382/* A RAII wrapper around a remote file descriptor. */
12383
12384class scoped_remote_fd
a6b151f1 12385{
440b7aec 12386public:
6b8edb51
PA
12387 scoped_remote_fd (remote_target *remote, int fd)
12388 : m_remote (remote), m_fd (fd)
440b7aec
PA
12389 {
12390 }
a6b151f1 12391
440b7aec
PA
12392 ~scoped_remote_fd ()
12393 {
12394 if (m_fd != -1)
12395 {
12396 try
12397 {
12398 int remote_errno;
6b8edb51 12399 m_remote->remote_hostio_close (m_fd, &remote_errno);
440b7aec
PA
12400 }
12401 catch (...)
12402 {
12403 /* Swallow exception before it escapes the dtor. If
12404 something goes wrong, likely the connection is gone,
12405 and there's nothing else that can be done. */
12406 }
12407 }
12408 }
12409
12410 DISABLE_COPY_AND_ASSIGN (scoped_remote_fd);
12411
12412 /* Release ownership of the file descriptor, and return it. */
12413 int release () noexcept
12414 {
12415 int fd = m_fd;
12416 m_fd = -1;
12417 return fd;
12418 }
12419
12420 /* Return the owned file descriptor. */
12421 int get () const noexcept
12422 {
12423 return m_fd;
12424 }
12425
12426private:
6b8edb51
PA
12427 /* The remote target. */
12428 remote_target *m_remote;
12429
440b7aec
PA
12430 /* The owned remote I/O file descriptor. */
12431 int m_fd;
12432};
a6b151f1
DJ
12433
12434void
12435remote_file_put (const char *local_file, const char *remote_file, int from_tty)
6b8edb51
PA
12436{
12437 remote_target *remote = get_current_remote_target ();
12438
12439 if (remote == nullptr)
12440 error (_("command can only be used with remote target"));
12441
12442 remote->remote_file_put (local_file, remote_file, from_tty);
12443}
12444
12445void
12446remote_target::remote_file_put (const char *local_file, const char *remote_file,
12447 int from_tty)
a6b151f1 12448{
440b7aec 12449 int retcode, remote_errno, bytes, io_size;
a6b151f1
DJ
12450 int bytes_in_buffer;
12451 int saw_eof;
12452 ULONGEST offset;
a6b151f1 12453
d419f42d 12454 gdb_file_up file = gdb_fopen_cloexec (local_file, "rb");
a6b151f1
DJ
12455 if (file == NULL)
12456 perror_with_name (local_file);
a6b151f1 12457
440b7aec 12458 scoped_remote_fd fd
6b8edb51
PA
12459 (this, remote_hostio_open (NULL,
12460 remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT
12461 | FILEIO_O_TRUNC),
12462 0700, 0, &remote_errno));
440b7aec 12463 if (fd.get () == -1)
a6b151f1
DJ
12464 remote_hostio_error (remote_errno);
12465
12466 /* Send up to this many bytes at once. They won't all fit in the
12467 remote packet limit, so we'll transfer slightly fewer. */
12468 io_size = get_remote_packet_size ();
5ca3b260 12469 gdb::byte_vector buffer (io_size);
a6b151f1 12470
a6b151f1
DJ
12471 bytes_in_buffer = 0;
12472 saw_eof = 0;
12473 offset = 0;
12474 while (bytes_in_buffer || !saw_eof)
12475 {
12476 if (!saw_eof)
12477 {
5ca3b260 12478 bytes = fread (buffer.data () + bytes_in_buffer, 1,
3e43a32a 12479 io_size - bytes_in_buffer,
d419f42d 12480 file.get ());
a6b151f1
DJ
12481 if (bytes == 0)
12482 {
d419f42d 12483 if (ferror (file.get ()))
a6b151f1
DJ
12484 error (_("Error reading %s."), local_file);
12485 else
12486 {
12487 /* EOF. Unless there is something still in the
12488 buffer from the last iteration, we are done. */
12489 saw_eof = 1;
12490 if (bytes_in_buffer == 0)
12491 break;
12492 }
12493 }
12494 }
12495 else
12496 bytes = 0;
12497
12498 bytes += bytes_in_buffer;
12499 bytes_in_buffer = 0;
12500
5ca3b260 12501 retcode = remote_hostio_pwrite (fd.get (), buffer.data (), bytes,
3e43a32a 12502 offset, &remote_errno);
a6b151f1
DJ
12503
12504 if (retcode < 0)
12505 remote_hostio_error (remote_errno);
12506 else if (retcode == 0)
12507 error (_("Remote write of %d bytes returned 0!"), bytes);
12508 else if (retcode < bytes)
12509 {
12510 /* Short write. Save the rest of the read data for the next
12511 write. */
12512 bytes_in_buffer = bytes - retcode;
5ca3b260 12513 memmove (buffer.data (), buffer.data () + retcode, bytes_in_buffer);
a6b151f1
DJ
12514 }
12515
12516 offset += retcode;
12517 }
12518
6b8edb51 12519 if (remote_hostio_close (fd.release (), &remote_errno))
a6b151f1
DJ
12520 remote_hostio_error (remote_errno);
12521
12522 if (from_tty)
12523 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file);
a6b151f1
DJ
12524}
12525
12526void
12527remote_file_get (const char *remote_file, const char *local_file, int from_tty)
6b8edb51
PA
12528{
12529 remote_target *remote = get_current_remote_target ();
12530
12531 if (remote == nullptr)
12532 error (_("command can only be used with remote target"));
12533
12534 remote->remote_file_get (remote_file, local_file, from_tty);
12535}
12536
12537void
12538remote_target::remote_file_get (const char *remote_file, const char *local_file,
12539 int from_tty)
a6b151f1 12540{
440b7aec 12541 int remote_errno, bytes, io_size;
a6b151f1 12542 ULONGEST offset;
a6b151f1 12543
440b7aec 12544 scoped_remote_fd fd
6b8edb51
PA
12545 (this, remote_hostio_open (NULL,
12546 remote_file, FILEIO_O_RDONLY, 0, 0,
12547 &remote_errno));
440b7aec 12548 if (fd.get () == -1)
a6b151f1
DJ
12549 remote_hostio_error (remote_errno);
12550
d419f42d 12551 gdb_file_up file = gdb_fopen_cloexec (local_file, "wb");
a6b151f1
DJ
12552 if (file == NULL)
12553 perror_with_name (local_file);
a6b151f1
DJ
12554
12555 /* Send up to this many bytes at once. They won't all fit in the
12556 remote packet limit, so we'll transfer slightly fewer. */
12557 io_size = get_remote_packet_size ();
5ca3b260 12558 gdb::byte_vector buffer (io_size);
a6b151f1 12559
a6b151f1
DJ
12560 offset = 0;
12561 while (1)
12562 {
5ca3b260 12563 bytes = remote_hostio_pread (fd.get (), buffer.data (), io_size, offset,
440b7aec 12564 &remote_errno);
a6b151f1
DJ
12565 if (bytes == 0)
12566 /* Success, but no bytes, means end-of-file. */
12567 break;
12568 if (bytes == -1)
12569 remote_hostio_error (remote_errno);
12570
12571 offset += bytes;
12572
5ca3b260 12573 bytes = fwrite (buffer.data (), 1, bytes, file.get ());
a6b151f1
DJ
12574 if (bytes == 0)
12575 perror_with_name (local_file);
12576 }
12577
6b8edb51 12578 if (remote_hostio_close (fd.release (), &remote_errno))
a6b151f1
DJ
12579 remote_hostio_error (remote_errno);
12580
12581 if (from_tty)
12582 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file);
a6b151f1
DJ
12583}
12584
12585void
12586remote_file_delete (const char *remote_file, int from_tty)
12587{
6b8edb51 12588 remote_target *remote = get_current_remote_target ();
a6b151f1 12589
6b8edb51 12590 if (remote == nullptr)
a6b151f1
DJ
12591 error (_("command can only be used with remote target"));
12592
6b8edb51
PA
12593 remote->remote_file_delete (remote_file, from_tty);
12594}
12595
12596void
12597remote_target::remote_file_delete (const char *remote_file, int from_tty)
12598{
12599 int retcode, remote_errno;
12600
12601 retcode = remote_hostio_unlink (NULL, remote_file, &remote_errno);
a6b151f1
DJ
12602 if (retcode == -1)
12603 remote_hostio_error (remote_errno);
12604
12605 if (from_tty)
12606 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file);
12607}
12608
12609static void
ac88e2de 12610remote_put_command (const char *args, int from_tty)
a6b151f1 12611{
d1a41061
PP
12612 if (args == NULL)
12613 error_no_arg (_("file to put"));
12614
773a1edc 12615 gdb_argv argv (args);
a6b151f1
DJ
12616 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12617 error (_("Invalid parameters to remote put"));
12618
12619 remote_file_put (argv[0], argv[1], from_tty);
a6b151f1
DJ
12620}
12621
12622static void
ac88e2de 12623remote_get_command (const char *args, int from_tty)
a6b151f1 12624{
d1a41061
PP
12625 if (args == NULL)
12626 error_no_arg (_("file to get"));
12627
773a1edc 12628 gdb_argv argv (args);
a6b151f1
DJ
12629 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12630 error (_("Invalid parameters to remote get"));
12631
12632 remote_file_get (argv[0], argv[1], from_tty);
a6b151f1
DJ
12633}
12634
12635static void
ac88e2de 12636remote_delete_command (const char *args, int from_tty)
a6b151f1 12637{
d1a41061
PP
12638 if (args == NULL)
12639 error_no_arg (_("file to delete"));
12640
773a1edc 12641 gdb_argv argv (args);
a6b151f1
DJ
12642 if (argv[0] == NULL || argv[1] != NULL)
12643 error (_("Invalid parameters to remote delete"));
12644
12645 remote_file_delete (argv[0], from_tty);
a6b151f1
DJ
12646}
12647
12648static void
981a3fb3 12649remote_command (const char *args, int from_tty)
a6b151f1 12650{
635c7e8a 12651 help_list (remote_cmdlist, "remote ", all_commands, gdb_stdout);
a6b151f1
DJ
12652}
12653
57810aa7 12654bool
f6ac5f3d 12655remote_target::can_execute_reverse ()
b2175913 12656{
4082afcc
PA
12657 if (packet_support (PACKET_bs) == PACKET_ENABLE
12658 || packet_support (PACKET_bc) == PACKET_ENABLE)
57810aa7 12659 return true;
40ab02ce 12660 else
57810aa7 12661 return false;
b2175913
MS
12662}
12663
57810aa7 12664bool
f6ac5f3d 12665remote_target::supports_non_stop ()
74531fed 12666{
57810aa7 12667 return true;
74531fed
PA
12668}
12669
57810aa7 12670bool
f6ac5f3d 12671remote_target::supports_disable_randomization ()
03583c20
UW
12672{
12673 /* Only supported in extended mode. */
57810aa7 12674 return false;
03583c20
UW
12675}
12676
57810aa7 12677bool
f6ac5f3d 12678remote_target::supports_multi_process ()
8a305172
PA
12679{
12680 struct remote_state *rs = get_remote_state ();
a744cf53 12681
8020350c 12682 return remote_multi_process_p (rs);
8a305172
PA
12683}
12684
70221824 12685static int
f6ac5f3d 12686remote_supports_cond_tracepoints ()
782b2b07 12687{
4082afcc 12688 return packet_support (PACKET_ConditionalTracepoints) == PACKET_ENABLE;
782b2b07
SS
12689}
12690
57810aa7 12691bool
f6ac5f3d 12692remote_target::supports_evaluation_of_breakpoint_conditions ()
3788aec7 12693{
4082afcc 12694 return packet_support (PACKET_ConditionalBreakpoints) == PACKET_ENABLE;
3788aec7
LM
12695}
12696
70221824 12697static int
f6ac5f3d 12698remote_supports_fast_tracepoints ()
7a697b8d 12699{
4082afcc 12700 return packet_support (PACKET_FastTracepoints) == PACKET_ENABLE;
7a697b8d
SS
12701}
12702
0fb4aa4b 12703static int
f6ac5f3d 12704remote_supports_static_tracepoints ()
0fb4aa4b 12705{
4082afcc 12706 return packet_support (PACKET_StaticTracepoints) == PACKET_ENABLE;
0fb4aa4b
PA
12707}
12708
1e4d1764 12709static int
f6ac5f3d 12710remote_supports_install_in_trace ()
1e4d1764 12711{
4082afcc 12712 return packet_support (PACKET_InstallInTrace) == PACKET_ENABLE;
1e4d1764
YQ
12713}
12714
57810aa7 12715bool
f6ac5f3d 12716remote_target::supports_enable_disable_tracepoint ()
d248b706 12717{
4082afcc
PA
12718 return (packet_support (PACKET_EnableDisableTracepoints_feature)
12719 == PACKET_ENABLE);
d248b706
KY
12720}
12721
57810aa7 12722bool
f6ac5f3d 12723remote_target::supports_string_tracing ()
3065dfb6 12724{
4082afcc 12725 return packet_support (PACKET_tracenz_feature) == PACKET_ENABLE;
3065dfb6
SS
12726}
12727
57810aa7 12728bool
f6ac5f3d 12729remote_target::can_run_breakpoint_commands ()
d3ce09f5 12730{
4082afcc 12731 return packet_support (PACKET_BreakpointCommands) == PACKET_ENABLE;
d3ce09f5
SS
12732}
12733
f6ac5f3d
PA
12734void
12735remote_target::trace_init ()
35b1e5cc 12736{
b6bb3468
PA
12737 struct remote_state *rs = get_remote_state ();
12738
35b1e5cc 12739 putpkt ("QTinit");
b6bb3468 12740 remote_get_noisy_reply ();
8d64371b 12741 if (strcmp (rs->buf.data (), "OK") != 0)
35b1e5cc
SS
12742 error (_("Target does not support this command."));
12743}
12744
409873ef
SS
12745/* Recursive routine to walk through command list including loops, and
12746 download packets for each command. */
12747
6b8edb51
PA
12748void
12749remote_target::remote_download_command_source (int num, ULONGEST addr,
12750 struct command_line *cmds)
409873ef
SS
12751{
12752 struct remote_state *rs = get_remote_state ();
12753 struct command_line *cmd;
12754
12755 for (cmd = cmds; cmd; cmd = cmd->next)
12756 {
0df8b418 12757 QUIT; /* Allow user to bail out with ^C. */
8d64371b 12758 strcpy (rs->buf.data (), "QTDPsrc:");
409873ef 12759 encode_source_string (num, addr, "cmd", cmd->line,
8d64371b
TT
12760 rs->buf.data () + strlen (rs->buf.data ()),
12761 rs->buf.size () - strlen (rs->buf.data ()));
409873ef 12762 putpkt (rs->buf);
b6bb3468 12763 remote_get_noisy_reply ();
8d64371b 12764 if (strcmp (rs->buf.data (), "OK"))
409873ef
SS
12765 warning (_("Target does not support source download."));
12766
12767 if (cmd->control_type == while_control
12768 || cmd->control_type == while_stepping_control)
12769 {
12973681 12770 remote_download_command_source (num, addr, cmd->body_list_0.get ());
409873ef 12771
0df8b418 12772 QUIT; /* Allow user to bail out with ^C. */
8d64371b 12773 strcpy (rs->buf.data (), "QTDPsrc:");
409873ef 12774 encode_source_string (num, addr, "cmd", "end",
8d64371b
TT
12775 rs->buf.data () + strlen (rs->buf.data ()),
12776 rs->buf.size () - strlen (rs->buf.data ()));
409873ef 12777 putpkt (rs->buf);
b6bb3468 12778 remote_get_noisy_reply ();
8d64371b 12779 if (strcmp (rs->buf.data (), "OK"))
409873ef
SS
12780 warning (_("Target does not support source download."));
12781 }
12782 }
12783}
12784
f6ac5f3d
PA
12785void
12786remote_target::download_tracepoint (struct bp_location *loc)
35b1e5cc
SS
12787{
12788 CORE_ADDR tpaddr;
409873ef 12789 char addrbuf[40];
b44ec619
SM
12790 std::vector<std::string> tdp_actions;
12791 std::vector<std::string> stepping_actions;
35b1e5cc 12792 char *pkt;
e8ba3115 12793 struct breakpoint *b = loc->owner;
d9b3f62e 12794 struct tracepoint *t = (struct tracepoint *) b;
b6bb3468 12795 struct remote_state *rs = get_remote_state ();
3df3a985 12796 int ret;
ff36536c 12797 const char *err_msg = _("Tracepoint packet too large for target.");
3df3a985
PFC
12798 size_t size_left;
12799
12800 /* We use a buffer other than rs->buf because we'll build strings
12801 across multiple statements, and other statements in between could
12802 modify rs->buf. */
12803 gdb::char_vector buf (get_remote_packet_size ());
35b1e5cc 12804
dc673c81 12805 encode_actions_rsp (loc, &tdp_actions, &stepping_actions);
e8ba3115
YQ
12806
12807 tpaddr = loc->address;
12808 sprintf_vma (addrbuf, tpaddr);
3df3a985
PFC
12809 ret = snprintf (buf.data (), buf.size (), "QTDP:%x:%s:%c:%lx:%x",
12810 b->number, addrbuf, /* address */
12811 (b->enable_state == bp_enabled ? 'E' : 'D'),
12812 t->step_count, t->pass_count);
12813
12814 if (ret < 0 || ret >= buf.size ())
a7f25a84 12815 error ("%s", err_msg);
3df3a985 12816
e8ba3115
YQ
12817 /* Fast tracepoints are mostly handled by the target, but we can
12818 tell the target how big of an instruction block should be moved
12819 around. */
12820 if (b->type == bp_fast_tracepoint)
12821 {
12822 /* Only test for support at download time; we may not know
12823 target capabilities at definition time. */
12824 if (remote_supports_fast_tracepoints ())
35b1e5cc 12825 {
6b940e6a
PL
12826 if (gdbarch_fast_tracepoint_valid_at (loc->gdbarch, tpaddr,
12827 NULL))
3df3a985
PFC
12828 {
12829 size_left = buf.size () - strlen (buf.data ());
12830 ret = snprintf (buf.data () + strlen (buf.data ()),
12831 size_left, ":F%x",
12832 gdb_insn_length (loc->gdbarch, tpaddr));
12833
12834 if (ret < 0 || ret >= size_left)
a7f25a84 12835 error ("%s", err_msg);
3df3a985 12836 }
35b1e5cc 12837 else
e8ba3115
YQ
12838 /* If it passed validation at definition but fails now,
12839 something is very wrong. */
12840 internal_error (__FILE__, __LINE__,
12841 _("Fast tracepoint not "
12842 "valid during download"));
35b1e5cc 12843 }
e8ba3115
YQ
12844 else
12845 /* Fast tracepoints are functionally identical to regular
12846 tracepoints, so don't take lack of support as a reason to
12847 give up on the trace run. */
12848 warning (_("Target does not support fast tracepoints, "
12849 "downloading %d as regular tracepoint"), b->number);
12850 }
12851 else if (b->type == bp_static_tracepoint)
12852 {
12853 /* Only test for support at download time; we may not know
12854 target capabilities at definition time. */
12855 if (remote_supports_static_tracepoints ())
0fb4aa4b 12856 {
e8ba3115 12857 struct static_tracepoint_marker marker;
0fb4aa4b 12858
e8ba3115 12859 if (target_static_tracepoint_marker_at (tpaddr, &marker))
3df3a985
PFC
12860 {
12861 size_left = buf.size () - strlen (buf.data ());
12862 ret = snprintf (buf.data () + strlen (buf.data ()),
12863 size_left, ":S");
12864
12865 if (ret < 0 || ret >= size_left)
a7f25a84 12866 error ("%s", err_msg);
3df3a985 12867 }
0fb4aa4b 12868 else
e8ba3115 12869 error (_("Static tracepoint not valid during download"));
0fb4aa4b 12870 }
e8ba3115
YQ
12871 else
12872 /* Fast tracepoints are functionally identical to regular
12873 tracepoints, so don't take lack of support as a reason
12874 to give up on the trace run. */
12875 error (_("Target does not support static tracepoints"));
12876 }
12877 /* If the tracepoint has a conditional, make it into an agent
12878 expression and append to the definition. */
12879 if (loc->cond)
12880 {
12881 /* Only test support at download time, we may not know target
12882 capabilities at definition time. */
12883 if (remote_supports_cond_tracepoints ())
35b1e5cc 12884 {
3df3a985
PFC
12885 agent_expr_up aexpr = gen_eval_for_expr (tpaddr,
12886 loc->cond.get ());
12887
12888 size_left = buf.size () - strlen (buf.data ());
12889
12890 ret = snprintf (buf.data () + strlen (buf.data ()),
12891 size_left, ":X%x,", aexpr->len);
12892
12893 if (ret < 0 || ret >= size_left)
a7f25a84 12894 error ("%s", err_msg);
3df3a985
PFC
12895
12896 size_left = buf.size () - strlen (buf.data ());
12897
12898 /* Two bytes to encode each aexpr byte, plus the terminating
12899 null byte. */
12900 if (aexpr->len * 2 + 1 > size_left)
a7f25a84 12901 error ("%s", err_msg);
3df3a985
PFC
12902
12903 pkt = buf.data () + strlen (buf.data ());
12904
b44ec619 12905 for (int ndx = 0; ndx < aexpr->len; ++ndx)
e8ba3115
YQ
12906 pkt = pack_hex_byte (pkt, aexpr->buf[ndx]);
12907 *pkt = '\0';
35b1e5cc 12908 }
e8ba3115
YQ
12909 else
12910 warning (_("Target does not support conditional tracepoints, "
12911 "ignoring tp %d cond"), b->number);
12912 }
35b1e5cc 12913
d9b3f62e 12914 if (b->commands || *default_collect)
3df3a985
PFC
12915 {
12916 size_left = buf.size () - strlen (buf.data ());
12917
12918 ret = snprintf (buf.data () + strlen (buf.data ()),
12919 size_left, "-");
12920
12921 if (ret < 0 || ret >= size_left)
a7f25a84 12922 error ("%s", err_msg);
3df3a985
PFC
12923 }
12924
12925 putpkt (buf.data ());
b6bb3468 12926 remote_get_noisy_reply ();
8d64371b 12927 if (strcmp (rs->buf.data (), "OK"))
e8ba3115 12928 error (_("Target does not support tracepoints."));
35b1e5cc 12929
e8ba3115 12930 /* do_single_steps (t); */
b44ec619
SM
12931 for (auto action_it = tdp_actions.begin ();
12932 action_it != tdp_actions.end (); action_it++)
e8ba3115 12933 {
b44ec619
SM
12934 QUIT; /* Allow user to bail out with ^C. */
12935
aa6f3694 12936 bool has_more = ((action_it + 1) != tdp_actions.end ()
b44ec619
SM
12937 || !stepping_actions.empty ());
12938
3df3a985
PFC
12939 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%c",
12940 b->number, addrbuf, /* address */
12941 action_it->c_str (),
12942 has_more ? '-' : 0);
12943
12944 if (ret < 0 || ret >= buf.size ())
a7f25a84 12945 error ("%s", err_msg);
3df3a985
PFC
12946
12947 putpkt (buf.data ());
b44ec619 12948 remote_get_noisy_reply ();
8d64371b 12949 if (strcmp (rs->buf.data (), "OK"))
b44ec619 12950 error (_("Error on target while setting tracepoints."));
e8ba3115 12951 }
409873ef 12952
05abfc39
PFC
12953 for (auto action_it = stepping_actions.begin ();
12954 action_it != stepping_actions.end (); action_it++)
12955 {
12956 QUIT; /* Allow user to bail out with ^C. */
12957
12958 bool is_first = action_it == stepping_actions.begin ();
aa6f3694 12959 bool has_more = (action_it + 1) != stepping_actions.end ();
05abfc39 12960
3df3a985
PFC
12961 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%s%s",
12962 b->number, addrbuf, /* address */
12963 is_first ? "S" : "",
12964 action_it->c_str (),
12965 has_more ? "-" : "");
12966
12967 if (ret < 0 || ret >= buf.size ())
a7f25a84 12968 error ("%s", err_msg);
3df3a985
PFC
12969
12970 putpkt (buf.data ());
05abfc39 12971 remote_get_noisy_reply ();
8d64371b 12972 if (strcmp (rs->buf.data (), "OK"))
05abfc39
PFC
12973 error (_("Error on target while setting tracepoints."));
12974 }
b44ec619 12975
4082afcc 12976 if (packet_support (PACKET_TracepointSource) == PACKET_ENABLE)
e8ba3115 12977 {
f00aae0f 12978 if (b->location != NULL)
409873ef 12979 {
3df3a985
PFC
12980 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
12981
12982 if (ret < 0 || ret >= buf.size ())
a7f25a84 12983 error ("%s", err_msg);
3df3a985 12984
f00aae0f 12985 encode_source_string (b->number, loc->address, "at",
d28cd78a 12986 event_location_to_string (b->location.get ()),
3df3a985
PFC
12987 buf.data () + strlen (buf.data ()),
12988 buf.size () - strlen (buf.data ()));
12989 putpkt (buf.data ());
b6bb3468 12990 remote_get_noisy_reply ();
8d64371b 12991 if (strcmp (rs->buf.data (), "OK"))
e8ba3115 12992 warning (_("Target does not support source download."));
409873ef 12993 }
e8ba3115
YQ
12994 if (b->cond_string)
12995 {
3df3a985
PFC
12996 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
12997
12998 if (ret < 0 || ret >= buf.size ())
a7f25a84 12999 error ("%s", err_msg);
3df3a985 13000
e8ba3115 13001 encode_source_string (b->number, loc->address,
3df3a985
PFC
13002 "cond", b->cond_string,
13003 buf.data () + strlen (buf.data ()),
13004 buf.size () - strlen (buf.data ()));
13005 putpkt (buf.data ());
b6bb3468 13006 remote_get_noisy_reply ();
8d64371b 13007 if (strcmp (rs->buf.data (), "OK"))
e8ba3115
YQ
13008 warning (_("Target does not support source download."));
13009 }
13010 remote_download_command_source (b->number, loc->address,
13011 breakpoint_commands (b));
35b1e5cc 13012 }
35b1e5cc
SS
13013}
13014
57810aa7 13015bool
f6ac5f3d 13016remote_target::can_download_tracepoint ()
1e4d1764 13017{
1e51243a
PA
13018 struct remote_state *rs = get_remote_state ();
13019 struct trace_status *ts;
13020 int status;
13021
13022 /* Don't try to install tracepoints until we've relocated our
13023 symbols, and fetched and merged the target's tracepoint list with
13024 ours. */
13025 if (rs->starting_up)
57810aa7 13026 return false;
1e51243a
PA
13027
13028 ts = current_trace_status ();
f6ac5f3d 13029 status = get_trace_status (ts);
1e4d1764
YQ
13030
13031 if (status == -1 || !ts->running_known || !ts->running)
57810aa7 13032 return false;
1e4d1764
YQ
13033
13034 /* If we are in a tracing experiment, but remote stub doesn't support
13035 installing tracepoint in trace, we have to return. */
13036 if (!remote_supports_install_in_trace ())
57810aa7 13037 return false;
1e4d1764 13038
57810aa7 13039 return true;
1e4d1764
YQ
13040}
13041
13042
f6ac5f3d
PA
13043void
13044remote_target::download_trace_state_variable (const trace_state_variable &tsv)
35b1e5cc
SS
13045{
13046 struct remote_state *rs = get_remote_state ();
00bf0b85 13047 char *p;
35b1e5cc 13048
8d64371b 13049 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDV:%x:%s:%x:",
c252925c
SM
13050 tsv.number, phex ((ULONGEST) tsv.initial_value, 8),
13051 tsv.builtin);
8d64371b
TT
13052 p = rs->buf.data () + strlen (rs->buf.data ());
13053 if ((p - rs->buf.data ()) + tsv.name.length () * 2
13054 >= get_remote_packet_size ())
00bf0b85 13055 error (_("Trace state variable name too long for tsv definition packet"));
c252925c 13056 p += 2 * bin2hex ((gdb_byte *) (tsv.name.data ()), p, tsv.name.length ());
00bf0b85 13057 *p++ = '\0';
35b1e5cc 13058 putpkt (rs->buf);
b6bb3468 13059 remote_get_noisy_reply ();
8d64371b 13060 if (rs->buf[0] == '\0')
ad91cd99 13061 error (_("Target does not support this command."));
8d64371b 13062 if (strcmp (rs->buf.data (), "OK") != 0)
ad91cd99 13063 error (_("Error on target while downloading trace state variable."));
35b1e5cc
SS
13064}
13065
f6ac5f3d
PA
13066void
13067remote_target::enable_tracepoint (struct bp_location *location)
d248b706
KY
13068{
13069 struct remote_state *rs = get_remote_state ();
13070 char addr_buf[40];
13071
13072 sprintf_vma (addr_buf, location->address);
8d64371b 13073 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTEnable:%x:%s",
bba74b36 13074 location->owner->number, addr_buf);
d248b706 13075 putpkt (rs->buf);
b6bb3468 13076 remote_get_noisy_reply ();
8d64371b 13077 if (rs->buf[0] == '\0')
d248b706 13078 error (_("Target does not support enabling tracepoints while a trace run is ongoing."));
8d64371b 13079 if (strcmp (rs->buf.data (), "OK") != 0)
d248b706
KY
13080 error (_("Error on target while enabling tracepoint."));
13081}
13082
f6ac5f3d
PA
13083void
13084remote_target::disable_tracepoint (struct bp_location *location)
d248b706
KY
13085{
13086 struct remote_state *rs = get_remote_state ();
13087 char addr_buf[40];
13088
13089 sprintf_vma (addr_buf, location->address);
8d64371b 13090 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDisable:%x:%s",
bba74b36 13091 location->owner->number, addr_buf);
d248b706 13092 putpkt (rs->buf);
b6bb3468 13093 remote_get_noisy_reply ();
8d64371b 13094 if (rs->buf[0] == '\0')
d248b706 13095 error (_("Target does not support disabling tracepoints while a trace run is ongoing."));
8d64371b 13096 if (strcmp (rs->buf.data (), "OK") != 0)
d248b706
KY
13097 error (_("Error on target while disabling tracepoint."));
13098}
13099
f6ac5f3d
PA
13100void
13101remote_target::trace_set_readonly_regions ()
35b1e5cc
SS
13102{
13103 asection *s;
81b9b86e 13104 bfd *abfd = NULL;
35b1e5cc 13105 bfd_size_type size;
608bcef2 13106 bfd_vma vma;
35b1e5cc 13107 int anysecs = 0;
c2fa21f1 13108 int offset = 0;
35b1e5cc
SS
13109
13110 if (!exec_bfd)
13111 return; /* No information to give. */
13112
b6bb3468
PA
13113 struct remote_state *rs = get_remote_state ();
13114
8d64371b
TT
13115 strcpy (rs->buf.data (), "QTro");
13116 offset = strlen (rs->buf.data ());
35b1e5cc
SS
13117 for (s = exec_bfd->sections; s; s = s->next)
13118 {
13119 char tmp1[40], tmp2[40];
c2fa21f1 13120 int sec_length;
35b1e5cc
SS
13121
13122 if ((s->flags & SEC_LOAD) == 0 ||
0df8b418 13123 /* (s->flags & SEC_CODE) == 0 || */
35b1e5cc
SS
13124 (s->flags & SEC_READONLY) == 0)
13125 continue;
13126
13127 anysecs = 1;
81b9b86e 13128 vma = bfd_get_section_vma (abfd, s);
35b1e5cc 13129 size = bfd_get_section_size (s);
608bcef2
HZ
13130 sprintf_vma (tmp1, vma);
13131 sprintf_vma (tmp2, vma + size);
c2fa21f1 13132 sec_length = 1 + strlen (tmp1) + 1 + strlen (tmp2);
8d64371b 13133 if (offset + sec_length + 1 > rs->buf.size ())
c2fa21f1 13134 {
4082afcc 13135 if (packet_support (PACKET_qXfer_traceframe_info) != PACKET_ENABLE)
864ac8a7 13136 warning (_("\
c2fa21f1
HZ
13137Too many sections for read-only sections definition packet."));
13138 break;
13139 }
8d64371b 13140 xsnprintf (rs->buf.data () + offset, rs->buf.size () - offset, ":%s,%s",
bba74b36 13141 tmp1, tmp2);
c2fa21f1 13142 offset += sec_length;
35b1e5cc
SS
13143 }
13144 if (anysecs)
13145 {
b6bb3468 13146 putpkt (rs->buf);
8d64371b 13147 getpkt (&rs->buf, 0);
35b1e5cc
SS
13148 }
13149}
13150
f6ac5f3d
PA
13151void
13152remote_target::trace_start ()
35b1e5cc 13153{
b6bb3468
PA
13154 struct remote_state *rs = get_remote_state ();
13155
35b1e5cc 13156 putpkt ("QTStart");
b6bb3468 13157 remote_get_noisy_reply ();
8d64371b 13158 if (rs->buf[0] == '\0')
ad91cd99 13159 error (_("Target does not support this command."));
8d64371b
TT
13160 if (strcmp (rs->buf.data (), "OK") != 0)
13161 error (_("Bogus reply from target: %s"), rs->buf.data ());
35b1e5cc
SS
13162}
13163
f6ac5f3d
PA
13164int
13165remote_target::get_trace_status (struct trace_status *ts)
35b1e5cc 13166{
953b98d1 13167 /* Initialize it just to avoid a GCC false warning. */
f652de6f 13168 char *p = NULL;
0df8b418 13169 /* FIXME we need to get register block size some other way. */
00bf0b85 13170 extern int trace_regblock_size;
bd3eecc3 13171 enum packet_result result;
b6bb3468 13172 struct remote_state *rs = get_remote_state ();
bd3eecc3 13173
4082afcc 13174 if (packet_support (PACKET_qTStatus) == PACKET_DISABLE)
bd3eecc3 13175 return -1;
a744cf53 13176
5cd63fda 13177 trace_regblock_size
9d6eea31 13178 = rs->get_remote_arch_state (target_gdbarch ())->sizeof_g_packet;
00bf0b85 13179
049dc89b
JK
13180 putpkt ("qTStatus");
13181
492d29ea 13182 TRY
67f41397 13183 {
b6bb3468 13184 p = remote_get_noisy_reply ();
67f41397 13185 }
492d29ea 13186 CATCH (ex, RETURN_MASK_ERROR)
67f41397 13187 {
598d3636
JK
13188 if (ex.error != TARGET_CLOSE_ERROR)
13189 {
13190 exception_fprintf (gdb_stderr, ex, "qTStatus: ");
13191 return -1;
13192 }
13193 throw_exception (ex);
67f41397 13194 }
492d29ea 13195 END_CATCH
00bf0b85 13196
bd3eecc3
PA
13197 result = packet_ok (p, &remote_protocol_packets[PACKET_qTStatus]);
13198
00bf0b85 13199 /* If the remote target doesn't do tracing, flag it. */
bd3eecc3 13200 if (result == PACKET_UNKNOWN)
00bf0b85 13201 return -1;
35b1e5cc 13202
00bf0b85 13203 /* We're working with a live target. */
f5911ea1 13204 ts->filename = NULL;
00bf0b85 13205
00bf0b85 13206 if (*p++ != 'T')
8d64371b 13207 error (_("Bogus trace status reply from target: %s"), rs->buf.data ());
35b1e5cc 13208
84cebc4a
YQ
13209 /* Function 'parse_trace_status' sets default value of each field of
13210 'ts' at first, so we don't have to do it here. */
00bf0b85
SS
13211 parse_trace_status (p, ts);
13212
13213 return ts->running;
35b1e5cc
SS
13214}
13215
f6ac5f3d
PA
13216void
13217remote_target::get_tracepoint_status (struct breakpoint *bp,
13218 struct uploaded_tp *utp)
f196051f
SS
13219{
13220 struct remote_state *rs = get_remote_state ();
f196051f
SS
13221 char *reply;
13222 struct bp_location *loc;
13223 struct tracepoint *tp = (struct tracepoint *) bp;
bba74b36 13224 size_t size = get_remote_packet_size ();
f196051f
SS
13225
13226 if (tp)
13227 {
c1fc2657 13228 tp->hit_count = 0;
f196051f 13229 tp->traceframe_usage = 0;
c1fc2657 13230 for (loc = tp->loc; loc; loc = loc->next)
f196051f
SS
13231 {
13232 /* If the tracepoint was never downloaded, don't go asking for
13233 any status. */
13234 if (tp->number_on_target == 0)
13235 continue;
8d64371b 13236 xsnprintf (rs->buf.data (), size, "qTP:%x:%s", tp->number_on_target,
bba74b36 13237 phex_nz (loc->address, 0));
f196051f 13238 putpkt (rs->buf);
b6bb3468 13239 reply = remote_get_noisy_reply ();
f196051f
SS
13240 if (reply && *reply)
13241 {
13242 if (*reply == 'V')
13243 parse_tracepoint_status (reply + 1, bp, utp);
13244 }
13245 }
13246 }
13247 else if (utp)
13248 {
13249 utp->hit_count = 0;
13250 utp->traceframe_usage = 0;
8d64371b 13251 xsnprintf (rs->buf.data (), size, "qTP:%x:%s", utp->number,
bba74b36 13252 phex_nz (utp->addr, 0));
f196051f 13253 putpkt (rs->buf);
b6bb3468 13254 reply = remote_get_noisy_reply ();
f196051f
SS
13255 if (reply && *reply)
13256 {
13257 if (*reply == 'V')
13258 parse_tracepoint_status (reply + 1, bp, utp);
13259 }
13260 }
13261}
13262
f6ac5f3d
PA
13263void
13264remote_target::trace_stop ()
35b1e5cc 13265{
b6bb3468
PA
13266 struct remote_state *rs = get_remote_state ();
13267
35b1e5cc 13268 putpkt ("QTStop");
b6bb3468 13269 remote_get_noisy_reply ();
8d64371b 13270 if (rs->buf[0] == '\0')
ad91cd99 13271 error (_("Target does not support this command."));
8d64371b
TT
13272 if (strcmp (rs->buf.data (), "OK") != 0)
13273 error (_("Bogus reply from target: %s"), rs->buf.data ());
35b1e5cc
SS
13274}
13275
f6ac5f3d
PA
13276int
13277remote_target::trace_find (enum trace_find_type type, int num,
13278 CORE_ADDR addr1, CORE_ADDR addr2,
13279 int *tpp)
35b1e5cc
SS
13280{
13281 struct remote_state *rs = get_remote_state ();
8d64371b 13282 char *endbuf = rs->buf.data () + get_remote_packet_size ();
35b1e5cc
SS
13283 char *p, *reply;
13284 int target_frameno = -1, target_tracept = -1;
13285
e6e4e701
PA
13286 /* Lookups other than by absolute frame number depend on the current
13287 trace selected, so make sure it is correct on the remote end
13288 first. */
13289 if (type != tfind_number)
13290 set_remote_traceframe ();
13291
8d64371b 13292 p = rs->buf.data ();
35b1e5cc
SS
13293 strcpy (p, "QTFrame:");
13294 p = strchr (p, '\0');
13295 switch (type)
13296 {
13297 case tfind_number:
bba74b36 13298 xsnprintf (p, endbuf - p, "%x", num);
35b1e5cc
SS
13299 break;
13300 case tfind_pc:
bba74b36 13301 xsnprintf (p, endbuf - p, "pc:%s", phex_nz (addr1, 0));
35b1e5cc
SS
13302 break;
13303 case tfind_tp:
bba74b36 13304 xsnprintf (p, endbuf - p, "tdp:%x", num);
35b1e5cc
SS
13305 break;
13306 case tfind_range:
bba74b36
YQ
13307 xsnprintf (p, endbuf - p, "range:%s:%s", phex_nz (addr1, 0),
13308 phex_nz (addr2, 0));
35b1e5cc
SS
13309 break;
13310 case tfind_outside:
bba74b36
YQ
13311 xsnprintf (p, endbuf - p, "outside:%s:%s", phex_nz (addr1, 0),
13312 phex_nz (addr2, 0));
35b1e5cc
SS
13313 break;
13314 default:
9b20d036 13315 error (_("Unknown trace find type %d"), type);
35b1e5cc
SS
13316 }
13317
13318 putpkt (rs->buf);
b6bb3468 13319 reply = remote_get_noisy_reply ();
ad91cd99
PA
13320 if (*reply == '\0')
13321 error (_("Target does not support this command."));
35b1e5cc
SS
13322
13323 while (reply && *reply)
13324 switch (*reply)
13325 {
13326 case 'F':
f197e0f1
VP
13327 p = ++reply;
13328 target_frameno = (int) strtol (p, &reply, 16);
13329 if (reply == p)
13330 error (_("Unable to parse trace frame number"));
e6e4e701
PA
13331 /* Don't update our remote traceframe number cache on failure
13332 to select a remote traceframe. */
f197e0f1
VP
13333 if (target_frameno == -1)
13334 return -1;
35b1e5cc
SS
13335 break;
13336 case 'T':
f197e0f1
VP
13337 p = ++reply;
13338 target_tracept = (int) strtol (p, &reply, 16);
13339 if (reply == p)
13340 error (_("Unable to parse tracepoint number"));
35b1e5cc
SS
13341 break;
13342 case 'O': /* "OK"? */
13343 if (reply[1] == 'K' && reply[2] == '\0')
13344 reply += 2;
13345 else
13346 error (_("Bogus reply from target: %s"), reply);
13347 break;
13348 default:
13349 error (_("Bogus reply from target: %s"), reply);
13350 }
13351 if (tpp)
13352 *tpp = target_tracept;
e6e4e701 13353
262e1174 13354 rs->remote_traceframe_number = target_frameno;
35b1e5cc
SS
13355 return target_frameno;
13356}
13357
57810aa7 13358bool
f6ac5f3d 13359remote_target::get_trace_state_variable_value (int tsvnum, LONGEST *val)
35b1e5cc
SS
13360{
13361 struct remote_state *rs = get_remote_state ();
13362 char *reply;
13363 ULONGEST uval;
13364
e6e4e701
PA
13365 set_remote_traceframe ();
13366
8d64371b 13367 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTV:%x", tsvnum);
35b1e5cc 13368 putpkt (rs->buf);
b6bb3468 13369 reply = remote_get_noisy_reply ();
35b1e5cc
SS
13370 if (reply && *reply)
13371 {
13372 if (*reply == 'V')
13373 {
13374 unpack_varlen_hex (reply + 1, &uval);
13375 *val = (LONGEST) uval;
57810aa7 13376 return true;
35b1e5cc
SS
13377 }
13378 }
57810aa7 13379 return false;
35b1e5cc
SS
13380}
13381
f6ac5f3d
PA
13382int
13383remote_target::save_trace_data (const char *filename)
00bf0b85
SS
13384{
13385 struct remote_state *rs = get_remote_state ();
13386 char *p, *reply;
13387
8d64371b 13388 p = rs->buf.data ();
00bf0b85
SS
13389 strcpy (p, "QTSave:");
13390 p += strlen (p);
8d64371b
TT
13391 if ((p - rs->buf.data ()) + strlen (filename) * 2
13392 >= get_remote_packet_size ())
00bf0b85 13393 error (_("Remote file name too long for trace save packet"));
9f1b45b0 13394 p += 2 * bin2hex ((gdb_byte *) filename, p, strlen (filename));
00bf0b85
SS
13395 *p++ = '\0';
13396 putpkt (rs->buf);
b6bb3468 13397 reply = remote_get_noisy_reply ();
d6c5869f 13398 if (*reply == '\0')
ad91cd99
PA
13399 error (_("Target does not support this command."));
13400 if (strcmp (reply, "OK") != 0)
13401 error (_("Bogus reply from target: %s"), reply);
00bf0b85
SS
13402 return 0;
13403}
13404
13405/* This is basically a memory transfer, but needs to be its own packet
13406 because we don't know how the target actually organizes its trace
13407 memory, plus we want to be able to ask for as much as possible, but
13408 not be unhappy if we don't get as much as we ask for. */
13409
f6ac5f3d
PA
13410LONGEST
13411remote_target::get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len)
00bf0b85
SS
13412{
13413 struct remote_state *rs = get_remote_state ();
13414 char *reply;
13415 char *p;
13416 int rslt;
13417
8d64371b 13418 p = rs->buf.data ();
00bf0b85
SS
13419 strcpy (p, "qTBuffer:");
13420 p += strlen (p);
13421 p += hexnumstr (p, offset);
13422 *p++ = ',';
13423 p += hexnumstr (p, len);
13424 *p++ = '\0';
13425
13426 putpkt (rs->buf);
b6bb3468 13427 reply = remote_get_noisy_reply ();
00bf0b85
SS
13428 if (reply && *reply)
13429 {
13430 /* 'l' by itself means we're at the end of the buffer and
13431 there is nothing more to get. */
13432 if (*reply == 'l')
13433 return 0;
13434
13435 /* Convert the reply into binary. Limit the number of bytes to
13436 convert according to our passed-in buffer size, rather than
13437 what was returned in the packet; if the target is
13438 unexpectedly generous and gives us a bigger reply than we
13439 asked for, we don't want to crash. */
b6bb3468 13440 rslt = hex2bin (reply, buf, len);
00bf0b85
SS
13441 return rslt;
13442 }
13443
13444 /* Something went wrong, flag as an error. */
13445 return -1;
13446}
13447
f6ac5f3d
PA
13448void
13449remote_target::set_disconnected_tracing (int val)
35b1e5cc
SS
13450{
13451 struct remote_state *rs = get_remote_state ();
13452
4082afcc 13453 if (packet_support (PACKET_DisconnectedTracing_feature) == PACKET_ENABLE)
33da3f1c 13454 {
ad91cd99
PA
13455 char *reply;
13456
8d64371b
TT
13457 xsnprintf (rs->buf.data (), get_remote_packet_size (),
13458 "QTDisconnected:%x", val);
33da3f1c 13459 putpkt (rs->buf);
b6bb3468 13460 reply = remote_get_noisy_reply ();
ad91cd99 13461 if (*reply == '\0')
33da3f1c 13462 error (_("Target does not support this command."));
ad91cd99
PA
13463 if (strcmp (reply, "OK") != 0)
13464 error (_("Bogus reply from target: %s"), reply);
33da3f1c
SS
13465 }
13466 else if (val)
13467 warning (_("Target does not support disconnected tracing."));
35b1e5cc
SS
13468}
13469
f6ac5f3d
PA
13470int
13471remote_target::core_of_thread (ptid_t ptid)
dc146f7c
VP
13472{
13473 struct thread_info *info = find_thread_ptid (ptid);
a744cf53 13474
7aabaf9d
SM
13475 if (info != NULL && info->priv != NULL)
13476 return get_remote_thread_info (info)->core;
13477
dc146f7c
VP
13478 return -1;
13479}
13480
f6ac5f3d
PA
13481void
13482remote_target::set_circular_trace_buffer (int val)
4daf5ac0
SS
13483{
13484 struct remote_state *rs = get_remote_state ();
ad91cd99 13485 char *reply;
4daf5ac0 13486
8d64371b
TT
13487 xsnprintf (rs->buf.data (), get_remote_packet_size (),
13488 "QTBuffer:circular:%x", val);
4daf5ac0 13489 putpkt (rs->buf);
b6bb3468 13490 reply = remote_get_noisy_reply ();
ad91cd99 13491 if (*reply == '\0')
4daf5ac0 13492 error (_("Target does not support this command."));
ad91cd99
PA
13493 if (strcmp (reply, "OK") != 0)
13494 error (_("Bogus reply from target: %s"), reply);
4daf5ac0
SS
13495}
13496
f6ac5f3d
PA
13497traceframe_info_up
13498remote_target::traceframe_info ()
b3b9301e 13499{
9018be22 13500 gdb::optional<gdb::char_vector> text
8b88a78e 13501 = target_read_stralloc (current_top_target (), TARGET_OBJECT_TRACEFRAME_INFO,
b7b030ad 13502 NULL);
9018be22
SM
13503 if (text)
13504 return parse_traceframe_info (text->data ());
b3b9301e
PA
13505
13506 return NULL;
13507}
13508
405f8e94
SS
13509/* Handle the qTMinFTPILen packet. Returns the minimum length of
13510 instruction on which a fast tracepoint may be placed. Returns -1
13511 if the packet is not supported, and 0 if the minimum instruction
13512 length is unknown. */
13513
f6ac5f3d
PA
13514int
13515remote_target::get_min_fast_tracepoint_insn_len ()
405f8e94
SS
13516{
13517 struct remote_state *rs = get_remote_state ();
13518 char *reply;
13519
e886a173
PA
13520 /* If we're not debugging a process yet, the IPA can't be
13521 loaded. */
13522 if (!target_has_execution)
13523 return 0;
13524
13525 /* Make sure the remote is pointing at the right process. */
13526 set_general_process ();
13527
8d64371b 13528 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTMinFTPILen");
405f8e94 13529 putpkt (rs->buf);
b6bb3468 13530 reply = remote_get_noisy_reply ();
405f8e94
SS
13531 if (*reply == '\0')
13532 return -1;
13533 else
13534 {
13535 ULONGEST min_insn_len;
13536
13537 unpack_varlen_hex (reply, &min_insn_len);
13538
13539 return (int) min_insn_len;
13540 }
13541}
13542
f6ac5f3d
PA
13543void
13544remote_target::set_trace_buffer_size (LONGEST val)
f6f899bf 13545{
4082afcc 13546 if (packet_support (PACKET_QTBuffer_size) != PACKET_DISABLE)
f6f899bf
HAQ
13547 {
13548 struct remote_state *rs = get_remote_state ();
8d64371b
TT
13549 char *buf = rs->buf.data ();
13550 char *endbuf = buf + get_remote_packet_size ();
f6f899bf
HAQ
13551 enum packet_result result;
13552
13553 gdb_assert (val >= 0 || val == -1);
13554 buf += xsnprintf (buf, endbuf - buf, "QTBuffer:size:");
13555 /* Send -1 as literal "-1" to avoid host size dependency. */
13556 if (val < 0)
13557 {
13558 *buf++ = '-';
13559 buf += hexnumstr (buf, (ULONGEST) -val);
13560 }
13561 else
13562 buf += hexnumstr (buf, (ULONGEST) val);
13563
13564 putpkt (rs->buf);
b6bb3468 13565 remote_get_noisy_reply ();
f6f899bf
HAQ
13566 result = packet_ok (rs->buf,
13567 &remote_protocol_packets[PACKET_QTBuffer_size]);
13568
13569 if (result != PACKET_OK)
8d64371b 13570 warning (_("Bogus reply from target: %s"), rs->buf.data ());
f6f899bf
HAQ
13571 }
13572}
13573
57810aa7 13574bool
f6ac5f3d
PA
13575remote_target::set_trace_notes (const char *user, const char *notes,
13576 const char *stop_notes)
f196051f
SS
13577{
13578 struct remote_state *rs = get_remote_state ();
13579 char *reply;
8d64371b
TT
13580 char *buf = rs->buf.data ();
13581 char *endbuf = buf + get_remote_packet_size ();
f196051f
SS
13582 int nbytes;
13583
13584 buf += xsnprintf (buf, endbuf - buf, "QTNotes:");
13585 if (user)
13586 {
13587 buf += xsnprintf (buf, endbuf - buf, "user:");
9f1b45b0 13588 nbytes = bin2hex ((gdb_byte *) user, buf, strlen (user));
f196051f
SS
13589 buf += 2 * nbytes;
13590 *buf++ = ';';
13591 }
13592 if (notes)
13593 {
13594 buf += xsnprintf (buf, endbuf - buf, "notes:");
9f1b45b0 13595 nbytes = bin2hex ((gdb_byte *) notes, buf, strlen (notes));
f196051f
SS
13596 buf += 2 * nbytes;
13597 *buf++ = ';';
13598 }
13599 if (stop_notes)
13600 {
13601 buf += xsnprintf (buf, endbuf - buf, "tstop:");
9f1b45b0 13602 nbytes = bin2hex ((gdb_byte *) stop_notes, buf, strlen (stop_notes));
f196051f
SS
13603 buf += 2 * nbytes;
13604 *buf++ = ';';
13605 }
13606 /* Ensure the buffer is terminated. */
13607 *buf = '\0';
13608
13609 putpkt (rs->buf);
b6bb3468 13610 reply = remote_get_noisy_reply ();
f196051f 13611 if (*reply == '\0')
57810aa7 13612 return false;
f196051f
SS
13613
13614 if (strcmp (reply, "OK") != 0)
13615 error (_("Bogus reply from target: %s"), reply);
13616
57810aa7 13617 return true;
f196051f
SS
13618}
13619
57810aa7
PA
13620bool
13621remote_target::use_agent (bool use)
d1feda86 13622{
4082afcc 13623 if (packet_support (PACKET_QAgent) != PACKET_DISABLE)
d1feda86
YQ
13624 {
13625 struct remote_state *rs = get_remote_state ();
13626
13627 /* If the stub supports QAgent. */
8d64371b 13628 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QAgent:%d", use);
d1feda86 13629 putpkt (rs->buf);
8d64371b 13630 getpkt (&rs->buf, 0);
d1feda86 13631
8d64371b 13632 if (strcmp (rs->buf.data (), "OK") == 0)
d1feda86 13633 {
f6ac5f3d 13634 ::use_agent = use;
57810aa7 13635 return true;
d1feda86
YQ
13636 }
13637 }
13638
57810aa7 13639 return false;
d1feda86
YQ
13640}
13641
57810aa7 13642bool
f6ac5f3d 13643remote_target::can_use_agent ()
d1feda86 13644{
4082afcc 13645 return (packet_support (PACKET_QAgent) != PACKET_DISABLE);
d1feda86
YQ
13646}
13647
9accd112
MM
13648struct btrace_target_info
13649{
13650 /* The ptid of the traced thread. */
13651 ptid_t ptid;
f4abbc16
MM
13652
13653 /* The obtained branch trace configuration. */
13654 struct btrace_config conf;
9accd112
MM
13655};
13656
f4abbc16
MM
13657/* Reset our idea of our target's btrace configuration. */
13658
13659static void
6b8edb51 13660remote_btrace_reset (remote_state *rs)
f4abbc16 13661{
f4abbc16
MM
13662 memset (&rs->btrace_config, 0, sizeof (rs->btrace_config));
13663}
13664
f4abbc16
MM
13665/* Synchronize the configuration with the target. */
13666
6b8edb51
PA
13667void
13668remote_target::btrace_sync_conf (const btrace_config *conf)
f4abbc16 13669{
d33501a5
MM
13670 struct packet_config *packet;
13671 struct remote_state *rs;
13672 char *buf, *pos, *endbuf;
13673
13674 rs = get_remote_state ();
8d64371b 13675 buf = rs->buf.data ();
d33501a5
MM
13676 endbuf = buf + get_remote_packet_size ();
13677
13678 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_bts_size];
13679 if (packet_config_support (packet) == PACKET_ENABLE
13680 && conf->bts.size != rs->btrace_config.bts.size)
13681 {
13682 pos = buf;
13683 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13684 conf->bts.size);
13685
13686 putpkt (buf);
8d64371b 13687 getpkt (&rs->buf, 0);
d33501a5
MM
13688
13689 if (packet_ok (buf, packet) == PACKET_ERROR)
13690 {
13691 if (buf[0] == 'E' && buf[1] == '.')
13692 error (_("Failed to configure the BTS buffer size: %s"), buf + 2);
13693 else
13694 error (_("Failed to configure the BTS buffer size."));
13695 }
13696
13697 rs->btrace_config.bts.size = conf->bts.size;
13698 }
b20a6524
MM
13699
13700 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_pt_size];
13701 if (packet_config_support (packet) == PACKET_ENABLE
13702 && conf->pt.size != rs->btrace_config.pt.size)
13703 {
13704 pos = buf;
13705 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13706 conf->pt.size);
13707
13708 putpkt (buf);
8d64371b 13709 getpkt (&rs->buf, 0);
b20a6524
MM
13710
13711 if (packet_ok (buf, packet) == PACKET_ERROR)
13712 {
13713 if (buf[0] == 'E' && buf[1] == '.')
13714 error (_("Failed to configure the trace buffer size: %s"), buf + 2);
13715 else
13716 error (_("Failed to configure the trace buffer size."));
13717 }
13718
13719 rs->btrace_config.pt.size = conf->pt.size;
13720 }
f4abbc16
MM
13721}
13722
13723/* Read the current thread's btrace configuration from the target and
13724 store it into CONF. */
13725
13726static void
13727btrace_read_config (struct btrace_config *conf)
13728{
9018be22 13729 gdb::optional<gdb::char_vector> xml
8b88a78e 13730 = target_read_stralloc (current_top_target (), TARGET_OBJECT_BTRACE_CONF, "");
9018be22
SM
13731 if (xml)
13732 parse_xml_btrace_conf (conf, xml->data ());
f4abbc16
MM
13733}
13734
c0272db5
TW
13735/* Maybe reopen target btrace. */
13736
6b8edb51
PA
13737void
13738remote_target::remote_btrace_maybe_reopen ()
c0272db5
TW
13739{
13740 struct remote_state *rs = get_remote_state ();
c0272db5 13741 int btrace_target_pushed = 0;
15766370 13742#if !defined (HAVE_LIBIPT)
c0272db5 13743 int warned = 0;
15766370 13744#endif
c0272db5 13745
5ed8105e
PA
13746 scoped_restore_current_thread restore_thread;
13747
08036331 13748 for (thread_info *tp : all_non_exited_threads ())
c0272db5
TW
13749 {
13750 set_general_thread (tp->ptid);
13751
13752 memset (&rs->btrace_config, 0x00, sizeof (struct btrace_config));
13753 btrace_read_config (&rs->btrace_config);
13754
13755 if (rs->btrace_config.format == BTRACE_FORMAT_NONE)
13756 continue;
13757
13758#if !defined (HAVE_LIBIPT)
13759 if (rs->btrace_config.format == BTRACE_FORMAT_PT)
13760 {
13761 if (!warned)
13762 {
13763 warned = 1;
c4e12631
MM
13764 warning (_("Target is recording using Intel Processor Trace "
13765 "but support was disabled at compile time."));
c0272db5
TW
13766 }
13767
13768 continue;
13769 }
13770#endif /* !defined (HAVE_LIBIPT) */
13771
13772 /* Push target, once, but before anything else happens. This way our
13773 changes to the threads will be cleaned up by unpushing the target
13774 in case btrace_read_config () throws. */
13775 if (!btrace_target_pushed)
13776 {
13777 btrace_target_pushed = 1;
13778 record_btrace_push_target ();
13779 printf_filtered (_("Target is recording using %s.\n"),
13780 btrace_format_string (rs->btrace_config.format));
13781 }
13782
13783 tp->btrace.target = XCNEW (struct btrace_target_info);
13784 tp->btrace.target->ptid = tp->ptid;
13785 tp->btrace.target->conf = rs->btrace_config;
13786 }
c0272db5
TW
13787}
13788
9accd112
MM
13789/* Enable branch tracing. */
13790
f6ac5f3d
PA
13791struct btrace_target_info *
13792remote_target::enable_btrace (ptid_t ptid, const struct btrace_config *conf)
9accd112
MM
13793{
13794 struct btrace_target_info *tinfo = NULL;
b20a6524 13795 struct packet_config *packet = NULL;
9accd112 13796 struct remote_state *rs = get_remote_state ();
8d64371b
TT
13797 char *buf = rs->buf.data ();
13798 char *endbuf = buf + get_remote_packet_size ();
9accd112 13799
b20a6524
MM
13800 switch (conf->format)
13801 {
13802 case BTRACE_FORMAT_BTS:
13803 packet = &remote_protocol_packets[PACKET_Qbtrace_bts];
13804 break;
13805
13806 case BTRACE_FORMAT_PT:
13807 packet = &remote_protocol_packets[PACKET_Qbtrace_pt];
13808 break;
13809 }
13810
13811 if (packet == NULL || packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13812 error (_("Target does not support branch tracing."));
13813
f4abbc16
MM
13814 btrace_sync_conf (conf);
13815
9accd112
MM
13816 set_general_thread (ptid);
13817
13818 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
13819 putpkt (rs->buf);
8d64371b 13820 getpkt (&rs->buf, 0);
9accd112
MM
13821
13822 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
13823 {
13824 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
13825 error (_("Could not enable branch tracing for %s: %s"),
8d64371b 13826 target_pid_to_str (ptid), &rs->buf[2]);
9accd112
MM
13827 else
13828 error (_("Could not enable branch tracing for %s."),
13829 target_pid_to_str (ptid));
13830 }
13831
8d749320 13832 tinfo = XCNEW (struct btrace_target_info);
9accd112
MM
13833 tinfo->ptid = ptid;
13834
f4abbc16
MM
13835 /* If we fail to read the configuration, we lose some information, but the
13836 tracing itself is not impacted. */
492d29ea
PA
13837 TRY
13838 {
13839 btrace_read_config (&tinfo->conf);
13840 }
13841 CATCH (err, RETURN_MASK_ERROR)
13842 {
13843 if (err.message != NULL)
13844 warning ("%s", err.message);
13845 }
13846 END_CATCH
f4abbc16 13847
9accd112
MM
13848 return tinfo;
13849}
13850
13851/* Disable branch tracing. */
13852
f6ac5f3d
PA
13853void
13854remote_target::disable_btrace (struct btrace_target_info *tinfo)
9accd112
MM
13855{
13856 struct packet_config *packet = &remote_protocol_packets[PACKET_Qbtrace_off];
13857 struct remote_state *rs = get_remote_state ();
8d64371b
TT
13858 char *buf = rs->buf.data ();
13859 char *endbuf = buf + get_remote_packet_size ();
9accd112 13860
4082afcc 13861 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13862 error (_("Target does not support branch tracing."));
13863
13864 set_general_thread (tinfo->ptid);
13865
13866 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
13867 putpkt (rs->buf);
8d64371b 13868 getpkt (&rs->buf, 0);
9accd112
MM
13869
13870 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
13871 {
13872 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
13873 error (_("Could not disable branch tracing for %s: %s"),
8d64371b 13874 target_pid_to_str (tinfo->ptid), &rs->buf[2]);
9accd112
MM
13875 else
13876 error (_("Could not disable branch tracing for %s."),
13877 target_pid_to_str (tinfo->ptid));
13878 }
13879
13880 xfree (tinfo);
13881}
13882
13883/* Teardown branch tracing. */
13884
f6ac5f3d
PA
13885void
13886remote_target::teardown_btrace (struct btrace_target_info *tinfo)
9accd112
MM
13887{
13888 /* We must not talk to the target during teardown. */
13889 xfree (tinfo);
13890}
13891
13892/* Read the branch trace. */
13893
f6ac5f3d
PA
13894enum btrace_error
13895remote_target::read_btrace (struct btrace_data *btrace,
13896 struct btrace_target_info *tinfo,
13897 enum btrace_read_type type)
9accd112
MM
13898{
13899 struct packet_config *packet = &remote_protocol_packets[PACKET_qXfer_btrace];
9accd112 13900 const char *annex;
9accd112 13901
4082afcc 13902 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13903 error (_("Target does not support branch tracing."));
13904
13905#if !defined(HAVE_LIBEXPAT)
13906 error (_("Cannot process branch tracing result. XML parsing not supported."));
13907#endif
13908
13909 switch (type)
13910 {
864089d2 13911 case BTRACE_READ_ALL:
9accd112
MM
13912 annex = "all";
13913 break;
864089d2 13914 case BTRACE_READ_NEW:
9accd112
MM
13915 annex = "new";
13916 break;
969c39fb
MM
13917 case BTRACE_READ_DELTA:
13918 annex = "delta";
13919 break;
9accd112
MM
13920 default:
13921 internal_error (__FILE__, __LINE__,
13922 _("Bad branch tracing read type: %u."),
13923 (unsigned int) type);
13924 }
13925
9018be22 13926 gdb::optional<gdb::char_vector> xml
8b88a78e 13927 = target_read_stralloc (current_top_target (), TARGET_OBJECT_BTRACE, annex);
9018be22 13928 if (!xml)
969c39fb 13929 return BTRACE_ERR_UNKNOWN;
9accd112 13930
9018be22 13931 parse_xml_btrace (btrace, xml->data ());
9accd112 13932
969c39fb 13933 return BTRACE_ERR_NONE;
9accd112
MM
13934}
13935
f6ac5f3d
PA
13936const struct btrace_config *
13937remote_target::btrace_conf (const struct btrace_target_info *tinfo)
f4abbc16
MM
13938{
13939 return &tinfo->conf;
13940}
13941
57810aa7 13942bool
f6ac5f3d 13943remote_target::augmented_libraries_svr4_read ()
ced63ec0 13944{
4082afcc
PA
13945 return (packet_support (PACKET_augmented_libraries_svr4_read_feature)
13946 == PACKET_ENABLE);
ced63ec0
GB
13947}
13948
9dd130a0
TT
13949/* Implementation of to_load. */
13950
f6ac5f3d
PA
13951void
13952remote_target::load (const char *name, int from_tty)
9dd130a0
TT
13953{
13954 generic_load (name, from_tty);
13955}
13956
c78fa86a
GB
13957/* Accepts an integer PID; returns a string representing a file that
13958 can be opened on the remote side to get the symbols for the child
13959 process. Returns NULL if the operation is not supported. */
13960
f6ac5f3d
PA
13961char *
13962remote_target::pid_to_exec_file (int pid)
c78fa86a 13963{
9018be22 13964 static gdb::optional<gdb::char_vector> filename;
835205d0
GB
13965 struct inferior *inf;
13966 char *annex = NULL;
c78fa86a
GB
13967
13968 if (packet_support (PACKET_qXfer_exec_file) != PACKET_ENABLE)
13969 return NULL;
13970
835205d0
GB
13971 inf = find_inferior_pid (pid);
13972 if (inf == NULL)
13973 internal_error (__FILE__, __LINE__,
13974 _("not currently attached to process %d"), pid);
13975
13976 if (!inf->fake_pid_p)
13977 {
13978 const int annex_size = 9;
13979
224c3ddb 13980 annex = (char *) alloca (annex_size);
835205d0
GB
13981 xsnprintf (annex, annex_size, "%x", pid);
13982 }
13983
8b88a78e 13984 filename = target_read_stralloc (current_top_target (),
c78fa86a
GB
13985 TARGET_OBJECT_EXEC_FILE, annex);
13986
9018be22 13987 return filename ? filename->data () : nullptr;
c78fa86a
GB
13988}
13989
750ce8d1
YQ
13990/* Implement the to_can_do_single_step target_ops method. */
13991
f6ac5f3d
PA
13992int
13993remote_target::can_do_single_step ()
750ce8d1
YQ
13994{
13995 /* We can only tell whether target supports single step or not by
13996 supported s and S vCont actions if the stub supports vContSupported
13997 feature. If the stub doesn't support vContSupported feature,
13998 we have conservatively to think target doesn't supports single
13999 step. */
14000 if (packet_support (PACKET_vContSupported) == PACKET_ENABLE)
14001 {
14002 struct remote_state *rs = get_remote_state ();
14003
14004 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6b8edb51 14005 remote_vcont_probe ();
750ce8d1
YQ
14006
14007 return rs->supports_vCont.s && rs->supports_vCont.S;
14008 }
14009 else
14010 return 0;
14011}
14012
3a00c802
PA
14013/* Implementation of the to_execution_direction method for the remote
14014 target. */
14015
f6ac5f3d
PA
14016enum exec_direction_kind
14017remote_target::execution_direction ()
3a00c802
PA
14018{
14019 struct remote_state *rs = get_remote_state ();
14020
14021 return rs->last_resume_exec_dir;
14022}
14023
f6327dcb
KB
14024/* Return pointer to the thread_info struct which corresponds to
14025 THREAD_HANDLE (having length HANDLE_LEN). */
14026
f6ac5f3d
PA
14027thread_info *
14028remote_target::thread_handle_to_thread_info (const gdb_byte *thread_handle,
14029 int handle_len,
14030 inferior *inf)
f6327dcb 14031{
08036331 14032 for (thread_info *tp : all_non_exited_threads ())
f6327dcb 14033 {
7aabaf9d 14034 remote_thread_info *priv = get_remote_thread_info (tp);
f6327dcb
KB
14035
14036 if (tp->inf == inf && priv != NULL)
14037 {
7aabaf9d 14038 if (handle_len != priv->thread_handle.size ())
f6327dcb 14039 error (_("Thread handle size mismatch: %d vs %zu (from remote)"),
7aabaf9d
SM
14040 handle_len, priv->thread_handle.size ());
14041 if (memcmp (thread_handle, priv->thread_handle.data (),
f6327dcb
KB
14042 handle_len) == 0)
14043 return tp;
14044 }
14045 }
14046
14047 return NULL;
14048}
14049
57810aa7 14050bool
f6ac5f3d 14051remote_target::can_async_p ()
6426a772 14052{
5d93a237
TT
14053 struct remote_state *rs = get_remote_state ();
14054
3015c064
SM
14055 /* We don't go async if the user has explicitly prevented it with the
14056 "maint set target-async" command. */
c6ebd6cf 14057 if (!target_async_permitted)
57810aa7 14058 return false;
75c99385 14059
23860348 14060 /* We're async whenever the serial device is. */
5d93a237 14061 return serial_can_async_p (rs->remote_desc);
6426a772
JM
14062}
14063
57810aa7 14064bool
f6ac5f3d 14065remote_target::is_async_p ()
6426a772 14066{
5d93a237
TT
14067 struct remote_state *rs = get_remote_state ();
14068
c6ebd6cf 14069 if (!target_async_permitted)
75c99385 14070 /* We only enable async when the user specifically asks for it. */
57810aa7 14071 return false;
75c99385 14072
23860348 14073 /* We're async whenever the serial device is. */
5d93a237 14074 return serial_is_async_p (rs->remote_desc);
6426a772
JM
14075}
14076
2acceee2
JM
14077/* Pass the SERIAL event on and up to the client. One day this code
14078 will be able to delay notifying the client of an event until the
23860348 14079 point where an entire packet has been received. */
2acceee2 14080
2acceee2
JM
14081static serial_event_ftype remote_async_serial_handler;
14082
6426a772 14083static void
819cc324 14084remote_async_serial_handler (struct serial *scb, void *context)
6426a772 14085{
2acceee2
JM
14086 /* Don't propogate error information up to the client. Instead let
14087 the client find out about the error by querying the target. */
6a3753b3 14088 inferior_event_handler (INF_REG_EVENT, NULL);
2acceee2
JM
14089}
14090
74531fed
PA
14091static void
14092remote_async_inferior_event_handler (gdb_client_data data)
14093{
6b8edb51 14094 inferior_event_handler (INF_REG_EVENT, data);
74531fed
PA
14095}
14096
f6ac5f3d
PA
14097void
14098remote_target::async (int enable)
2acceee2 14099{
5d93a237
TT
14100 struct remote_state *rs = get_remote_state ();
14101
6a3753b3 14102 if (enable)
2acceee2 14103 {
88b496c3 14104 serial_async (rs->remote_desc, remote_async_serial_handler, rs);
b7d2e916
PA
14105
14106 /* If there are pending events in the stop reply queue tell the
14107 event loop to process them. */
953edf2b 14108 if (!rs->stop_reply_queue.empty ())
6b8edb51 14109 mark_async_event_handler (rs->remote_async_inferior_event_token);
6efcd9a8
PA
14110 /* For simplicity, below we clear the pending events token
14111 without remembering whether it is marked, so here we always
14112 mark it. If there's actually no pending notification to
14113 process, this ends up being a no-op (other than a spurious
14114 event-loop wakeup). */
14115 if (target_is_non_stop_p ())
14116 mark_async_event_handler (rs->notif_state->get_pending_events_token);
2acceee2
JM
14117 }
14118 else
b7d2e916
PA
14119 {
14120 serial_async (rs->remote_desc, NULL, NULL);
6efcd9a8
PA
14121 /* If the core is disabling async, it doesn't want to be
14122 disturbed with target events. Clear all async event sources
14123 too. */
6b8edb51 14124 clear_async_event_handler (rs->remote_async_inferior_event_token);
6efcd9a8
PA
14125 if (target_is_non_stop_p ())
14126 clear_async_event_handler (rs->notif_state->get_pending_events_token);
b7d2e916 14127 }
6426a772
JM
14128}
14129
65706a29
PA
14130/* Implementation of the to_thread_events method. */
14131
f6ac5f3d
PA
14132void
14133remote_target::thread_events (int enable)
65706a29
PA
14134{
14135 struct remote_state *rs = get_remote_state ();
14136 size_t size = get_remote_packet_size ();
65706a29
PA
14137
14138 if (packet_support (PACKET_QThreadEvents) == PACKET_DISABLE)
14139 return;
14140
8d64371b 14141 xsnprintf (rs->buf.data (), size, "QThreadEvents:%x", enable ? 1 : 0);
65706a29 14142 putpkt (rs->buf);
8d64371b 14143 getpkt (&rs->buf, 0);
65706a29
PA
14144
14145 switch (packet_ok (rs->buf,
14146 &remote_protocol_packets[PACKET_QThreadEvents]))
14147 {
14148 case PACKET_OK:
8d64371b
TT
14149 if (strcmp (rs->buf.data (), "OK") != 0)
14150 error (_("Remote refused setting thread events: %s"), rs->buf.data ());
65706a29
PA
14151 break;
14152 case PACKET_ERROR:
8d64371b 14153 warning (_("Remote failure reply: %s"), rs->buf.data ());
65706a29
PA
14154 break;
14155 case PACKET_UNKNOWN:
14156 break;
14157 }
14158}
14159
5a2468f5 14160static void
981a3fb3 14161set_remote_cmd (const char *args, int from_tty)
5a2468f5 14162{
635c7e8a 14163 help_list (remote_set_cmdlist, "set remote ", all_commands, gdb_stdout);
5a2468f5
JM
14164}
14165
d471ea57 14166static void
981a3fb3 14167show_remote_cmd (const char *args, int from_tty)
d471ea57 14168{
37a105a1 14169 /* We can't just use cmd_show_list here, because we want to skip
427c3a89 14170 the redundant "show remote Z-packet" and the legacy aliases. */
37a105a1 14171 struct cmd_list_element *list = remote_show_cmdlist;
79a45e25 14172 struct ui_out *uiout = current_uiout;
37a105a1 14173
2e783024 14174 ui_out_emit_tuple tuple_emitter (uiout, "showlist");
37a105a1
DJ
14175 for (; list != NULL; list = list->next)
14176 if (strcmp (list->name, "Z-packet") == 0)
14177 continue;
427c3a89
DJ
14178 else if (list->type == not_set_cmd)
14179 /* Alias commands are exactly like the original, except they
14180 don't have the normal type. */
14181 continue;
14182 else
37a105a1 14183 {
2e783024 14184 ui_out_emit_tuple option_emitter (uiout, "option");
a744cf53 14185
112e8700
SM
14186 uiout->field_string ("name", list->name);
14187 uiout->text (": ");
427c3a89 14188 if (list->type == show_cmd)
f5c4fcd9 14189 do_show_command (NULL, from_tty, list);
427c3a89
DJ
14190 else
14191 cmd_func (list, NULL, from_tty);
37a105a1 14192 }
d471ea57 14193}
5a2468f5 14194
0f71a2f6 14195
23860348 14196/* Function to be called whenever a new objfile (shlib) is detected. */
dc8acb97
MS
14197static void
14198remote_new_objfile (struct objfile *objfile)
14199{
6b8edb51 14200 remote_target *remote = get_current_remote_target ();
5d93a237 14201
6b8edb51
PA
14202 if (remote != NULL) /* Have a remote connection. */
14203 remote->remote_check_symbols ();
dc8acb97
MS
14204}
14205
00bf0b85
SS
14206/* Pull all the tracepoints defined on the target and create local
14207 data structures representing them. We don't want to create real
14208 tracepoints yet, we don't want to mess up the user's existing
14209 collection. */
14210
f6ac5f3d
PA
14211int
14212remote_target::upload_tracepoints (struct uploaded_tp **utpp)
d5551862 14213{
00bf0b85
SS
14214 struct remote_state *rs = get_remote_state ();
14215 char *p;
d5551862 14216
00bf0b85
SS
14217 /* Ask for a first packet of tracepoint definition. */
14218 putpkt ("qTfP");
8d64371b
TT
14219 getpkt (&rs->buf, 0);
14220 p = rs->buf.data ();
00bf0b85 14221 while (*p && *p != 'l')
d5551862 14222 {
00bf0b85
SS
14223 parse_tracepoint_definition (p, utpp);
14224 /* Ask for another packet of tracepoint definition. */
14225 putpkt ("qTsP");
8d64371b
TT
14226 getpkt (&rs->buf, 0);
14227 p = rs->buf.data ();
d5551862 14228 }
00bf0b85 14229 return 0;
d5551862
SS
14230}
14231
f6ac5f3d
PA
14232int
14233remote_target::upload_trace_state_variables (struct uploaded_tsv **utsvp)
d5551862 14234{
00bf0b85 14235 struct remote_state *rs = get_remote_state ();
d5551862 14236 char *p;
d5551862 14237
00bf0b85
SS
14238 /* Ask for a first packet of variable definition. */
14239 putpkt ("qTfV");
8d64371b
TT
14240 getpkt (&rs->buf, 0);
14241 p = rs->buf.data ();
00bf0b85 14242 while (*p && *p != 'l')
d5551862 14243 {
00bf0b85
SS
14244 parse_tsv_definition (p, utsvp);
14245 /* Ask for another packet of variable definition. */
14246 putpkt ("qTsV");
8d64371b
TT
14247 getpkt (&rs->buf, 0);
14248 p = rs->buf.data ();
d5551862 14249 }
00bf0b85 14250 return 0;
d5551862
SS
14251}
14252
c1e36e3e
PA
14253/* The "set/show range-stepping" show hook. */
14254
14255static void
14256show_range_stepping (struct ui_file *file, int from_tty,
14257 struct cmd_list_element *c,
14258 const char *value)
14259{
14260 fprintf_filtered (file,
14261 _("Debugger's willingness to use range stepping "
14262 "is %s.\n"), value);
14263}
14264
6b8edb51
PA
14265/* Return true if the vCont;r action is supported by the remote
14266 stub. */
14267
14268bool
14269remote_target::vcont_r_supported ()
14270{
14271 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
14272 remote_vcont_probe ();
14273
14274 return (packet_support (PACKET_vCont) == PACKET_ENABLE
14275 && get_remote_state ()->supports_vCont.r);
14276}
14277
c1e36e3e
PA
14278/* The "set/show range-stepping" set hook. */
14279
14280static void
eb4c3f4a 14281set_range_stepping (const char *ignore_args, int from_tty,
c1e36e3e
PA
14282 struct cmd_list_element *c)
14283{
6b8edb51
PA
14284 /* When enabling, check whether range stepping is actually supported
14285 by the target, and warn if not. */
c1e36e3e
PA
14286 if (use_range_stepping)
14287 {
6b8edb51
PA
14288 remote_target *remote = get_current_remote_target ();
14289 if (remote == NULL
14290 || !remote->vcont_r_supported ())
14291 warning (_("Range stepping is not supported by the current target"));
c1e36e3e
PA
14292 }
14293}
14294
c906108c 14295void
fba45db2 14296_initialize_remote (void)
c906108c 14297{
9a7071a8 14298 struct cmd_list_element *cmd;
6f937416 14299 const char *cmd_name;
ea9c271d 14300
0f71a2f6 14301 /* architecture specific data */
29709017
DJ
14302 remote_g_packet_data_handle =
14303 gdbarch_data_register_pre_init (remote_g_packet_data_init);
d01949b6 14304
94585166
DB
14305 remote_pspace_data
14306 = register_program_space_data_with_cleanup (NULL,
14307 remote_pspace_data_cleanup);
14308
d9f719f1
PA
14309 add_target (remote_target_info, remote_target::open);
14310 add_target (extended_remote_target_info, extended_remote_target::open);
cce74817 14311
dc8acb97 14312 /* Hook into new objfile notification. */
76727919 14313 gdb::observers::new_objfile.attach (remote_new_objfile);
dc8acb97 14314
c906108c
SS
14315#if 0
14316 init_remote_threadtests ();
14317#endif
14318
23860348 14319 /* set/show remote ... */
d471ea57 14320
1bedd215 14321 add_prefix_cmd ("remote", class_maintenance, set_remote_cmd, _("\
5a2468f5
JM
14322Remote protocol specific variables\n\
14323Configure various remote-protocol specific variables such as\n\
1bedd215 14324the packets being used"),
cff3e48b 14325 &remote_set_cmdlist, "set remote ",
23860348 14326 0 /* allow-unknown */, &setlist);
1bedd215 14327 add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
5a2468f5
JM
14328Remote protocol specific variables\n\
14329Configure various remote-protocol specific variables such as\n\
1bedd215 14330the packets being used"),
cff3e48b 14331 &remote_show_cmdlist, "show remote ",
23860348 14332 0 /* allow-unknown */, &showlist);
5a2468f5 14333
1a966eab
AC
14334 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
14335Compare section data on target to the exec file.\n\
95cf3b38
DT
14336Argument is a single section name (default: all loaded sections).\n\
14337To compare only read-only loaded sections, specify the -r option."),
c906108c
SS
14338 &cmdlist);
14339
1a966eab
AC
14340 add_cmd ("packet", class_maintenance, packet_command, _("\
14341Send an arbitrary packet to a remote target.\n\
c906108c
SS
14342 maintenance packet TEXT\n\
14343If GDB is talking to an inferior via the GDB serial protocol, then\n\
14344this command sends the string TEXT to the inferior, and displays the\n\
14345response packet. GDB supplies the initial `$' character, and the\n\
1a966eab 14346terminating `#' character and checksum."),
c906108c
SS
14347 &maintenancelist);
14348
7915a72c
AC
14349 add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
14350Set whether to send break if interrupted."), _("\
14351Show whether to send break if interrupted."), _("\
14352If set, a break, instead of a cntrl-c, is sent to the remote target."),
9a7071a8 14353 set_remotebreak, show_remotebreak,
e707bbc2 14354 &setlist, &showlist);
9a7071a8
JB
14355 cmd_name = "remotebreak";
14356 cmd = lookup_cmd (&cmd_name, setlist, "", -1, 1);
14357 deprecate_cmd (cmd, "set remote interrupt-sequence");
14358 cmd_name = "remotebreak"; /* needed because lookup_cmd updates the pointer */
14359 cmd = lookup_cmd (&cmd_name, showlist, "", -1, 1);
14360 deprecate_cmd (cmd, "show remote interrupt-sequence");
14361
14362 add_setshow_enum_cmd ("interrupt-sequence", class_support,
3e43a32a
MS
14363 interrupt_sequence_modes, &interrupt_sequence_mode,
14364 _("\
9a7071a8
JB
14365Set interrupt sequence to remote target."), _("\
14366Show interrupt sequence to remote target."), _("\
14367Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."),
14368 NULL, show_interrupt_sequence,
14369 &remote_set_cmdlist,
14370 &remote_show_cmdlist);
14371
14372 add_setshow_boolean_cmd ("interrupt-on-connect", class_support,
14373 &interrupt_on_connect, _("\
14374Set whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
14375Show whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
14376If set, interrupt sequence is sent to remote target."),
14377 NULL, NULL,
14378 &remote_set_cmdlist, &remote_show_cmdlist);
c906108c 14379
23860348 14380 /* Install commands for configuring memory read/write packets. */
11cf8741 14381
1a966eab
AC
14382 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
14383Set the maximum number of bytes per memory write packet (deprecated)."),
11cf8741 14384 &setlist);
1a966eab
AC
14385 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
14386Show the maximum number of bytes per memory write packet (deprecated)."),
11cf8741
JM
14387 &showlist);
14388 add_cmd ("memory-write-packet-size", no_class,
1a966eab
AC
14389 set_memory_write_packet_size, _("\
14390Set the maximum number of bytes per memory-write packet.\n\
14391Specify the number of bytes in a packet or 0 (zero) for the\n\
14392default packet size. The actual limit is further reduced\n\
14393dependent on the target. Specify ``fixed'' to disable the\n\
14394further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
14395 &remote_set_cmdlist);
14396 add_cmd ("memory-read-packet-size", no_class,
1a966eab
AC
14397 set_memory_read_packet_size, _("\
14398Set the maximum number of bytes per memory-read packet.\n\
14399Specify the number of bytes in a packet or 0 (zero) for the\n\
14400default packet size. The actual limit is further reduced\n\
14401dependent on the target. Specify ``fixed'' to disable the\n\
14402further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
14403 &remote_set_cmdlist);
14404 add_cmd ("memory-write-packet-size", no_class,
14405 show_memory_write_packet_size,
1a966eab 14406 _("Show the maximum number of bytes per memory-write packet."),
11cf8741
JM
14407 &remote_show_cmdlist);
14408 add_cmd ("memory-read-packet-size", no_class,
14409 show_memory_read_packet_size,
1a966eab 14410 _("Show the maximum number of bytes per memory-read packet."),
11cf8741 14411 &remote_show_cmdlist);
c906108c 14412
055303e2 14413 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-limit", no_class,
7915a72c
AC
14414 &remote_hw_watchpoint_limit, _("\
14415Set the maximum number of target hardware watchpoints."), _("\
14416Show the maximum number of target hardware watchpoints."), _("\
055303e2
AB
14417Specify \"unlimited\" for unlimited hardware watchpoints."),
14418 NULL, show_hardware_watchpoint_limit,
14419 &remote_set_cmdlist,
14420 &remote_show_cmdlist);
14421 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-length-limit",
14422 no_class,
480a3f21
PW
14423 &remote_hw_watchpoint_length_limit, _("\
14424Set the maximum length (in bytes) of a target hardware watchpoint."), _("\
14425Show the maximum length (in bytes) of a target hardware watchpoint."), _("\
055303e2
AB
14426Specify \"unlimited\" to allow watchpoints of unlimited size."),
14427 NULL, show_hardware_watchpoint_length_limit,
480a3f21 14428 &remote_set_cmdlist, &remote_show_cmdlist);
055303e2 14429 add_setshow_zuinteger_unlimited_cmd ("hardware-breakpoint-limit", no_class,
7915a72c
AC
14430 &remote_hw_breakpoint_limit, _("\
14431Set the maximum number of target hardware breakpoints."), _("\
14432Show the maximum number of target hardware breakpoints."), _("\
055303e2
AB
14433Specify \"unlimited\" for unlimited hardware breakpoints."),
14434 NULL, show_hardware_breakpoint_limit,
b3f42336 14435 &remote_set_cmdlist, &remote_show_cmdlist);
501eef12 14436
1b493192
PA
14437 add_setshow_zuinteger_cmd ("remoteaddresssize", class_obscure,
14438 &remote_address_size, _("\
4d28ad1e
AC
14439Set the maximum size of the address (in bits) in a memory packet."), _("\
14440Show the maximum size of the address (in bits) in a memory packet."), NULL,
1b493192
PA
14441 NULL,
14442 NULL, /* FIXME: i18n: */
14443 &setlist, &showlist);
c906108c 14444
ca4f7f8b
PA
14445 init_all_packet_configs ();
14446
444abaca 14447 add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
bb572ddd 14448 "X", "binary-download", 1);
0f71a2f6 14449
444abaca 14450 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
bb572ddd 14451 "vCont", "verbose-resume", 0);
506fb367 14452
89be2091
DJ
14453 add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals],
14454 "QPassSignals", "pass-signals", 0);
14455
82075af2
JS
14456 add_packet_config_cmd (&remote_protocol_packets[PACKET_QCatchSyscalls],
14457 "QCatchSyscalls", "catch-syscalls", 0);
14458
9b224c5e
PA
14459 add_packet_config_cmd (&remote_protocol_packets[PACKET_QProgramSignals],
14460 "QProgramSignals", "program-signals", 0);
14461
bc3b087d
SDJ
14462 add_packet_config_cmd (&remote_protocol_packets[PACKET_QSetWorkingDir],
14463 "QSetWorkingDir", "set-working-dir", 0);
14464
aefd8b33
SDJ
14465 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartupWithShell],
14466 "QStartupWithShell", "startup-with-shell", 0);
14467
0a2dde4a
SDJ
14468 add_packet_config_cmd (&remote_protocol_packets
14469 [PACKET_QEnvironmentHexEncoded],
14470 "QEnvironmentHexEncoded", "environment-hex-encoded",
14471 0);
14472
14473 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentReset],
14474 "QEnvironmentReset", "environment-reset",
14475 0);
14476
14477 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentUnset],
14478 "QEnvironmentUnset", "environment-unset",
14479 0);
14480
444abaca 14481 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
bb572ddd 14482 "qSymbol", "symbol-lookup", 0);
dc8acb97 14483
444abaca 14484 add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
bb572ddd 14485 "P", "set-register", 1);
d471ea57 14486
444abaca 14487 add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
bb572ddd 14488 "p", "fetch-register", 1);
b96ec7ac 14489
444abaca 14490 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
bb572ddd 14491 "Z0", "software-breakpoint", 0);
d471ea57 14492
444abaca 14493 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
bb572ddd 14494 "Z1", "hardware-breakpoint", 0);
d471ea57 14495
444abaca 14496 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
bb572ddd 14497 "Z2", "write-watchpoint", 0);
d471ea57 14498
444abaca 14499 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
bb572ddd 14500 "Z3", "read-watchpoint", 0);
d471ea57 14501
444abaca 14502 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
bb572ddd 14503 "Z4", "access-watchpoint", 0);
d471ea57 14504
0876f84a
DJ
14505 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
14506 "qXfer:auxv:read", "read-aux-vector", 0);
802188a7 14507
c78fa86a
GB
14508 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_exec_file],
14509 "qXfer:exec-file:read", "pid-to-exec-file", 0);
14510
23181151
DJ
14511 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features],
14512 "qXfer:features:read", "target-features", 0);
14513
cfa9d6d9
DJ
14514 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries],
14515 "qXfer:libraries:read", "library-info", 0);
14516
2268b414
JK
14517 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries_svr4],
14518 "qXfer:libraries-svr4:read", "library-info-svr4", 0);
14519
fd79ecee
DJ
14520 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
14521 "qXfer:memory-map:read", "memory-map", 0);
14522
0e7f50da
UW
14523 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_read],
14524 "qXfer:spu:read", "read-spu-object", 0);
14525
14526 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_write],
14527 "qXfer:spu:write", "write-spu-object", 0);
14528
07e059b5
VP
14529 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata],
14530 "qXfer:osdata:read", "osdata", 0);
14531
dc146f7c
VP
14532 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_threads],
14533 "qXfer:threads:read", "threads", 0);
14534
4aa995e1
PA
14535 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read],
14536 "qXfer:siginfo:read", "read-siginfo-object", 0);
14537
14538 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write],
14539 "qXfer:siginfo:write", "write-siginfo-object", 0);
14540
b3b9301e
PA
14541 add_packet_config_cmd
14542 (&remote_protocol_packets[PACKET_qXfer_traceframe_info],
eb9fe518 14543 "qXfer:traceframe-info:read", "traceframe-info", 0);
b3b9301e 14544
169081d0
TG
14545 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_uib],
14546 "qXfer:uib:read", "unwind-info-block", 0);
14547
444abaca 14548 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
38691318 14549 "qGetTLSAddr", "get-thread-local-storage-address",
38691318
KB
14550 0);
14551
711e434b
PM
14552 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTIBAddr],
14553 "qGetTIBAddr", "get-thread-information-block-address",
14554 0);
14555
40ab02ce
MS
14556 add_packet_config_cmd (&remote_protocol_packets[PACKET_bc],
14557 "bc", "reverse-continue", 0);
14558
14559 add_packet_config_cmd (&remote_protocol_packets[PACKET_bs],
14560 "bs", "reverse-step", 0);
14561
be2a5f71
DJ
14562 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
14563 "qSupported", "supported-packets", 0);
14564
08388c79
DE
14565 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory],
14566 "qSearch:memory", "search-memory", 0);
14567
bd3eecc3
PA
14568 add_packet_config_cmd (&remote_protocol_packets[PACKET_qTStatus],
14569 "qTStatus", "trace-status", 0);
14570
15a201c8
GB
14571 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_setfs],
14572 "vFile:setfs", "hostio-setfs", 0);
14573
a6b151f1
DJ
14574 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open],
14575 "vFile:open", "hostio-open", 0);
14576
14577 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread],
14578 "vFile:pread", "hostio-pread", 0);
14579
14580 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite],
14581 "vFile:pwrite", "hostio-pwrite", 0);
14582
14583 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close],
14584 "vFile:close", "hostio-close", 0);
14585
14586 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink],
14587 "vFile:unlink", "hostio-unlink", 0);
14588
b9e7b9c3
UW
14589 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_readlink],
14590 "vFile:readlink", "hostio-readlink", 0);
14591
0a93529c
GB
14592 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_fstat],
14593 "vFile:fstat", "hostio-fstat", 0);
14594
2d717e4f
DJ
14595 add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach],
14596 "vAttach", "attach", 0);
14597
14598 add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun],
14599 "vRun", "run", 0);
14600
a6f3e723
SL
14601 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode],
14602 "QStartNoAckMode", "noack", 0);
14603
82f73884
PA
14604 add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill],
14605 "vKill", "kill", 0);
14606
0b16c5cf
PA
14607 add_packet_config_cmd (&remote_protocol_packets[PACKET_qAttached],
14608 "qAttached", "query-attached", 0);
14609
782b2b07 14610 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalTracepoints],
3e43a32a
MS
14611 "ConditionalTracepoints",
14612 "conditional-tracepoints", 0);
3788aec7
LM
14613
14614 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalBreakpoints],
14615 "ConditionalBreakpoints",
14616 "conditional-breakpoints", 0);
14617
d3ce09f5
SS
14618 add_packet_config_cmd (&remote_protocol_packets[PACKET_BreakpointCommands],
14619 "BreakpointCommands",
14620 "breakpoint-commands", 0);
14621
7a697b8d
SS
14622 add_packet_config_cmd (&remote_protocol_packets[PACKET_FastTracepoints],
14623 "FastTracepoints", "fast-tracepoints", 0);
782b2b07 14624
409873ef
SS
14625 add_packet_config_cmd (&remote_protocol_packets[PACKET_TracepointSource],
14626 "TracepointSource", "TracepointSource", 0);
14627
d914c394
SS
14628 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAllow],
14629 "QAllow", "allow", 0);
14630
0fb4aa4b
PA
14631 add_packet_config_cmd (&remote_protocol_packets[PACKET_StaticTracepoints],
14632 "StaticTracepoints", "static-tracepoints", 0);
14633
1e4d1764
YQ
14634 add_packet_config_cmd (&remote_protocol_packets[PACKET_InstallInTrace],
14635 "InstallInTrace", "install-in-trace", 0);
14636
0fb4aa4b
PA
14637 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_statictrace_read],
14638 "qXfer:statictrace:read", "read-sdata-object", 0);
14639
78d85199
YQ
14640 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_fdpic],
14641 "qXfer:fdpic:read", "read-fdpic-loadmap", 0);
14642
03583c20
UW
14643 add_packet_config_cmd (&remote_protocol_packets[PACKET_QDisableRandomization],
14644 "QDisableRandomization", "disable-randomization", 0);
14645
d1feda86
YQ
14646 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAgent],
14647 "QAgent", "agent", 0);
14648
f6f899bf
HAQ
14649 add_packet_config_cmd (&remote_protocol_packets[PACKET_QTBuffer_size],
14650 "QTBuffer:size", "trace-buffer-size", 0);
14651
9accd112
MM
14652 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_off],
14653 "Qbtrace:off", "disable-btrace", 0);
14654
14655 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_bts],
b20a6524
MM
14656 "Qbtrace:bts", "enable-btrace-bts", 0);
14657
14658 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_pt],
14659 "Qbtrace:pt", "enable-btrace-pt", 0);
9accd112
MM
14660
14661 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace],
14662 "qXfer:btrace", "read-btrace", 0);
14663
f4abbc16
MM
14664 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace_conf],
14665 "qXfer:btrace-conf", "read-btrace-conf", 0);
14666
d33501a5
MM
14667 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_bts_size],
14668 "Qbtrace-conf:bts:size", "btrace-conf-bts-size", 0);
14669
73b8c1fd
PA
14670 add_packet_config_cmd (&remote_protocol_packets[PACKET_multiprocess_feature],
14671 "multiprocess-feature", "multiprocess-feature", 0);
14672
f7e6eed5
PA
14673 add_packet_config_cmd (&remote_protocol_packets[PACKET_swbreak_feature],
14674 "swbreak-feature", "swbreak-feature", 0);
14675
14676 add_packet_config_cmd (&remote_protocol_packets[PACKET_hwbreak_feature],
14677 "hwbreak-feature", "hwbreak-feature", 0);
14678
89245bc0
DB
14679 add_packet_config_cmd (&remote_protocol_packets[PACKET_fork_event_feature],
14680 "fork-event-feature", "fork-event-feature", 0);
14681
14682 add_packet_config_cmd (&remote_protocol_packets[PACKET_vfork_event_feature],
14683 "vfork-event-feature", "vfork-event-feature", 0);
14684
b20a6524
MM
14685 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_pt_size],
14686 "Qbtrace-conf:pt:size", "btrace-conf-pt-size", 0);
14687
750ce8d1
YQ
14688 add_packet_config_cmd (&remote_protocol_packets[PACKET_vContSupported],
14689 "vContSupported", "verbose-resume-supported", 0);
14690
94585166
DB
14691 add_packet_config_cmd (&remote_protocol_packets[PACKET_exec_event_feature],
14692 "exec-event-feature", "exec-event-feature", 0);
14693
de979965
PA
14694 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCtrlC],
14695 "vCtrlC", "ctrl-c", 0);
14696
65706a29
PA
14697 add_packet_config_cmd (&remote_protocol_packets[PACKET_QThreadEvents],
14698 "QThreadEvents", "thread-events", 0);
14699
f2faf941
PA
14700 add_packet_config_cmd (&remote_protocol_packets[PACKET_no_resumed],
14701 "N stop reply", "no-resumed-stop-reply", 0);
14702
0b736949
DB
14703 /* Assert that we've registered "set remote foo-packet" commands
14704 for all packet configs. */
ca4f7f8b
PA
14705 {
14706 int i;
14707
14708 for (i = 0; i < PACKET_MAX; i++)
14709 {
14710 /* Ideally all configs would have a command associated. Some
14711 still don't though. */
14712 int excepted;
14713
14714 switch (i)
14715 {
14716 case PACKET_QNonStop:
ca4f7f8b
PA
14717 case PACKET_EnableDisableTracepoints_feature:
14718 case PACKET_tracenz_feature:
14719 case PACKET_DisconnectedTracing_feature:
14720 case PACKET_augmented_libraries_svr4_read_feature:
936d2992
PA
14721 case PACKET_qCRC:
14722 /* Additions to this list need to be well justified:
14723 pre-existing packets are OK; new packets are not. */
ca4f7f8b
PA
14724 excepted = 1;
14725 break;
14726 default:
14727 excepted = 0;
14728 break;
14729 }
14730
14731 /* This catches both forgetting to add a config command, and
14732 forgetting to remove a packet from the exception list. */
14733 gdb_assert (excepted == (remote_protocol_packets[i].name == NULL));
14734 }
14735 }
14736
37a105a1
DJ
14737 /* Keep the old ``set remote Z-packet ...'' working. Each individual
14738 Z sub-packet has its own set and show commands, but users may
14739 have sets to this variable in their .gdbinit files (or in their
14740 documentation). */
e9e68a56 14741 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
7915a72c
AC
14742 &remote_Z_packet_detect, _("\
14743Set use of remote protocol `Z' packets"), _("\
14744Show use of remote protocol `Z' packets "), _("\
3b64bf98 14745When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
7915a72c 14746packets."),
e9e68a56 14747 set_remote_protocol_Z_packet_cmd,
3e43a32a
MS
14748 show_remote_protocol_Z_packet_cmd,
14749 /* FIXME: i18n: Use of remote protocol
14750 `Z' packets is %s. */
e9e68a56 14751 &remote_set_cmdlist, &remote_show_cmdlist);
449092f6 14752
a6b151f1
DJ
14753 add_prefix_cmd ("remote", class_files, remote_command, _("\
14754Manipulate files on the remote system\n\
14755Transfer files to and from the remote target system."),
14756 &remote_cmdlist, "remote ",
14757 0 /* allow-unknown */, &cmdlist);
14758
14759 add_cmd ("put", class_files, remote_put_command,
14760 _("Copy a local file to the remote system."),
14761 &remote_cmdlist);
14762
14763 add_cmd ("get", class_files, remote_get_command,
14764 _("Copy a remote file to the local system."),
14765 &remote_cmdlist);
14766
14767 add_cmd ("delete", class_files, remote_delete_command,
14768 _("Delete a remote file."),
14769 &remote_cmdlist);
14770
2d717e4f 14771 add_setshow_string_noescape_cmd ("exec-file", class_files,
94585166 14772 &remote_exec_file_var, _("\
2d717e4f 14773Set the remote pathname for \"run\""), _("\
94585166
DB
14774Show the remote pathname for \"run\""), NULL,
14775 set_remote_exec_file,
14776 show_remote_exec_file,
14777 &remote_set_cmdlist,
14778 &remote_show_cmdlist);
2d717e4f 14779
c1e36e3e
PA
14780 add_setshow_boolean_cmd ("range-stepping", class_run,
14781 &use_range_stepping, _("\
14782Enable or disable range stepping."), _("\
14783Show whether target-assisted range stepping is enabled."), _("\
14784If on, and the target supports it, when stepping a source line, GDB\n\
14785tells the target to step the corresponding range of addresses itself instead\n\
14786of issuing multiple single-steps. This speeds up source level\n\
14787stepping. If off, GDB always issues single-steps, even if range\n\
14788stepping is supported by the target. The default is on."),
14789 set_range_stepping,
14790 show_range_stepping,
14791 &setlist,
14792 &showlist);
14793
449092f6
CV
14794 /* Eventually initialize fileio. See fileio.c */
14795 initialize_remote_fileio (remote_set_cmdlist, remote_show_cmdlist);
79d7f229 14796
ba348170 14797 /* Take advantage of the fact that the TID field is not used, to tag
79d7f229 14798 special ptids with it set to != 0. */
fd79271b
TT
14799 magic_null_ptid = ptid_t (42000, -1, 1);
14800 not_sent_ptid = ptid_t (42000, -2, 1);
14801 any_thread_ptid = ptid_t (42000, 0, 1);
c906108c 14802}
This page took 5.13363 seconds and 4 git commands to generate.