gdb: Support printf 'z' size modifier
[deliverable/binutils-gdb.git] / gdb / remote.c
CommitLineData
c906108c 1/* Remote target communications for serial-line targets in custom GDB protocol
8926118c 2
42a4f53d 3 Copyright (C) 1988-2019 Free Software Foundation, Inc.
c906108c 4
c5aa993b
JM
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
c5aa993b
JM
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c5aa993b 19
23860348 20/* See the GDB User Guide for details of the GDB remote protocol. */
c5aa993b 21
c906108c 22#include "defs.h"
c906108c
SS
23#include <ctype.h>
24#include <fcntl.h>
c906108c 25#include "inferior.h"
45741a9c 26#include "infrun.h"
c906108c
SS
27#include "bfd.h"
28#include "symfile.h"
29#include "target.h"
3b3dac9b 30#include "process-stratum-target.h"
c906108c
SS
31#include "gdbcmd.h"
32#include "objfiles.h"
33#include "gdb-stabs.h"
34#include "gdbthread.h"
c2c6d25f 35#include "remote.h"
722247f1 36#include "remote-notif.h"
4e052eda 37#include "regcache.h"
fd0407d6 38#include "value.h"
76727919 39#include "observable.h"
a77053c2 40#include "solib.h"
37a105a1
DJ
41#include "cli/cli-decode.h"
42#include "cli/cli-setshow.h"
424163ea 43#include "target-descriptions.h"
a4453b7e 44#include "gdb_bfd.h"
268a13a5
TT
45#include "gdbsupport/filestuff.h"
46#include "gdbsupport/rsp-low.h"
6b940e6a 47#include "disasm.h"
f00aae0f 48#include "location.h"
c906108c 49
268a13a5 50#include "gdbsupport/gdb_sys_time.h"
c906108c 51
43ff13b4 52#include "event-loop.h"
c2c6d25f 53#include "event-top.h"
2acceee2 54#include "inf-loop.h"
43ff13b4 55
c906108c
SS
56#include <signal.h>
57#include "serial.h"
58
6240bebf
MS
59#include "gdbcore.h" /* for exec_bfd */
60
449092f6 61#include "remote-fileio.h"
a6b151f1 62#include "gdb/fileio.h"
53ce3c39 63#include <sys/stat.h>
dc146f7c 64#include "xml-support.h"
449092f6 65
fd79ecee
DJ
66#include "memory-map.h"
67
35b1e5cc
SS
68#include "tracepoint.h"
69#include "ax.h"
70#include "ax-gdb.h"
268a13a5 71#include "gdbsupport/agent.h"
9accd112 72#include "btrace.h"
c0272db5 73#include "record-btrace.h"
325fac50 74#include <algorithm>
268a13a5
TT
75#include "gdbsupport/scoped_restore.h"
76#include "gdbsupport/environ.h"
77#include "gdbsupport/byte-vector.h"
39ef2f62 78#include <algorithm>
9d6eea31 79#include <unordered_map>
35b1e5cc 80
f6ac5f3d
PA
81/* The remote target. */
82
d9f719f1
PA
83static const char remote_doc[] = N_("\
84Use a remote computer via a serial line, using a gdb-specific protocol.\n\
85Specify the serial device it is connected to\n\
86(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).");
87
6b8edb51
PA
88#define OPAQUETHREADBYTES 8
89
90/* a 64 bit opaque identifier */
91typedef unsigned char threadref[OPAQUETHREADBYTES];
92
93struct gdb_ext_thread_info;
94struct threads_listing_context;
95typedef int (*rmt_thread_action) (threadref *ref, void *context);
96struct protocol_feature;
97struct packet_reg;
98
99struct stop_reply;
32603266 100typedef std::unique_ptr<stop_reply> stop_reply_up;
6b8edb51
PA
101
102/* Generic configuration support for packets the stub optionally
103 supports. Allows the user to specify the use of the packet as well
104 as allowing GDB to auto-detect support in the remote stub. */
105
106enum packet_support
107 {
108 PACKET_SUPPORT_UNKNOWN = 0,
109 PACKET_ENABLE,
110 PACKET_DISABLE
111 };
112
113/* Analyze a packet's return value and update the packet config
114 accordingly. */
115
116enum packet_result
117{
118 PACKET_ERROR,
119 PACKET_OK,
120 PACKET_UNKNOWN
121};
122
123struct threads_listing_context;
3c69da40
PA
124
125/* Stub vCont actions support.
126
127 Each field is a boolean flag indicating whether the stub reports
128 support for the corresponding action. */
129
130struct vCont_action_support
131{
132 /* vCont;t */
133 bool t = false;
134
135 /* vCont;r */
136 bool r = false;
137
138 /* vCont;s */
139 bool s = false;
140
141 /* vCont;S */
142 bool S = false;
143};
144
405feb71 145/* About this many threadids fit in a packet. */
3c69da40
PA
146
147#define MAXTHREADLISTRESULTS 32
148
149/* Data for the vFile:pread readahead cache. */
150
151struct readahead_cache
152{
153 /* Invalidate the readahead cache. */
154 void invalidate ();
155
156 /* Invalidate the readahead cache if it is holding data for FD. */
157 void invalidate_fd (int fd);
158
159 /* Serve pread from the readahead cache. Returns number of bytes
160 read, or 0 if the request can't be served from the cache. */
161 int pread (int fd, gdb_byte *read_buf, size_t len, ULONGEST offset);
162
163 /* The file descriptor for the file that is being cached. -1 if the
164 cache is invalid. */
165 int fd = -1;
166
167 /* The offset into the file that the cache buffer corresponds
168 to. */
169 ULONGEST offset = 0;
170
171 /* The buffer holding the cache contents. */
172 gdb_byte *buf = nullptr;
173 /* The buffer's size. We try to read as much as fits into a packet
174 at a time. */
175 size_t bufsize = 0;
176
177 /* Cache hit and miss counters. */
178 ULONGEST hit_count = 0;
179 ULONGEST miss_count = 0;
180};
181
182/* Description of the remote protocol for a given architecture. */
183
184struct packet_reg
185{
186 long offset; /* Offset into G packet. */
187 long regnum; /* GDB's internal register number. */
188 LONGEST pnum; /* Remote protocol register number. */
189 int in_g_packet; /* Always part of G packet. */
190 /* long size in bytes; == register_size (target_gdbarch (), regnum);
191 at present. */
192 /* char *name; == gdbarch_register_name (target_gdbarch (), regnum);
193 at present. */
194};
195
196struct remote_arch_state
197{
198 explicit remote_arch_state (struct gdbarch *gdbarch);
199
200 /* Description of the remote protocol registers. */
201 long sizeof_g_packet;
202
203 /* Description of the remote protocol registers indexed by REGNUM
204 (making an array gdbarch_num_regs in size). */
205 std::unique_ptr<packet_reg[]> regs;
206
207 /* This is the size (in chars) of the first response to the ``g''
208 packet. It is used as a heuristic when determining the maximum
209 size of memory-read and memory-write packets. A target will
210 typically only reserve a buffer large enough to hold the ``g''
211 packet. The size does not include packet overhead (headers and
212 trailers). */
213 long actual_register_packet_size;
214
215 /* This is the maximum size (in chars) of a non read/write packet.
216 It is also used as a cap on the size of read/write packets. */
217 long remote_packet_size;
218};
219
220/* Description of the remote protocol state for the currently
221 connected target. This is per-target state, and independent of the
222 selected architecture. */
223
224class remote_state
225{
226public:
227
228 remote_state ();
229 ~remote_state ();
230
231 /* Get the remote arch state for GDBARCH. */
232 struct remote_arch_state *get_remote_arch_state (struct gdbarch *gdbarch);
233
234public: /* data */
235
236 /* A buffer to use for incoming packets, and its current size. The
237 buffer is grown dynamically for larger incoming packets.
238 Outgoing packets may also be constructed in this buffer.
8d64371b 239 The size of the buffer is always at least REMOTE_PACKET_SIZE;
3c69da40
PA
240 REMOTE_PACKET_SIZE should be used to limit the length of outgoing
241 packets. */
8d64371b 242 gdb::char_vector buf;
3c69da40
PA
243
244 /* True if we're going through initial connection setup (finding out
245 about the remote side's threads, relocating symbols, etc.). */
246 bool starting_up = false;
247
248 /* If we negotiated packet size explicitly (and thus can bypass
249 heuristics for the largest packet size that will not overflow
250 a buffer in the stub), this will be set to that packet size.
251 Otherwise zero, meaning to use the guessed size. */
252 long explicit_packet_size = 0;
253
254 /* remote_wait is normally called when the target is running and
255 waits for a stop reply packet. But sometimes we need to call it
256 when the target is already stopped. We can send a "?" packet
257 and have remote_wait read the response. Or, if we already have
258 the response, we can stash it in BUF and tell remote_wait to
259 skip calling getpkt. This flag is set when BUF contains a
260 stop reply packet and the target is not waiting. */
261 int cached_wait_status = 0;
262
263 /* True, if in no ack mode. That is, neither GDB nor the stub will
264 expect acks from each other. The connection is assumed to be
265 reliable. */
266 bool noack_mode = false;
267
268 /* True if we're connected in extended remote mode. */
269 bool extended = false;
270
271 /* True if we resumed the target and we're waiting for the target to
272 stop. In the mean time, we can't start another command/query.
273 The remote server wouldn't be ready to process it, so we'd
274 timeout waiting for a reply that would never come and eventually
275 we'd close the connection. This can happen in asynchronous mode
276 because we allow GDB commands while the target is running. */
277 bool waiting_for_stop_reply = false;
278
279 /* The status of the stub support for the various vCont actions. */
280 vCont_action_support supports_vCont;
281
282 /* True if the user has pressed Ctrl-C, but the target hasn't
283 responded to that. */
284 bool ctrlc_pending_p = false;
285
286 /* True if we saw a Ctrl-C while reading or writing from/to the
287 remote descriptor. At that point it is not safe to send a remote
288 interrupt packet, so we instead remember we saw the Ctrl-C and
289 process it once we're done with sending/receiving the current
290 packet, which should be shortly. If however that takes too long,
291 and the user presses Ctrl-C again, we offer to disconnect. */
292 bool got_ctrlc_during_io = false;
293
294 /* Descriptor for I/O to remote machine. Initialize it to NULL so that
295 remote_open knows that we don't have a file open when the program
296 starts. */
297 struct serial *remote_desc = nullptr;
298
299 /* These are the threads which we last sent to the remote system. The
300 TID member will be -1 for all or -2 for not sent yet. */
301 ptid_t general_thread = null_ptid;
302 ptid_t continue_thread = null_ptid;
303
304 /* This is the traceframe which we last selected on the remote system.
305 It will be -1 if no traceframe is selected. */
306 int remote_traceframe_number = -1;
307
308 char *last_pass_packet = nullptr;
309
310 /* The last QProgramSignals packet sent to the target. We bypass
311 sending a new program signals list down to the target if the new
312 packet is exactly the same as the last we sent. IOW, we only let
313 the target know about program signals list changes. */
314 char *last_program_signals_packet = nullptr;
315
316 gdb_signal last_sent_signal = GDB_SIGNAL_0;
317
318 bool last_sent_step = false;
319
320 /* The execution direction of the last resume we got. */
321 exec_direction_kind last_resume_exec_dir = EXEC_FORWARD;
322
323 char *finished_object = nullptr;
324 char *finished_annex = nullptr;
325 ULONGEST finished_offset = 0;
326
327 /* Should we try the 'ThreadInfo' query packet?
328
329 This variable (NOT available to the user: auto-detect only!)
330 determines whether GDB will use the new, simpler "ThreadInfo"
331 query or the older, more complex syntax for thread queries.
332 This is an auto-detect variable (set to true at each connect,
333 and set to false when the target fails to recognize it). */
334 bool use_threadinfo_query = false;
335 bool use_threadextra_query = false;
336
337 threadref echo_nextthread {};
338 threadref nextthread {};
339 threadref resultthreadlist[MAXTHREADLISTRESULTS] {};
340
341 /* The state of remote notification. */
342 struct remote_notif_state *notif_state = nullptr;
343
344 /* The branch trace configuration. */
345 struct btrace_config btrace_config {};
346
347 /* The argument to the last "vFile:setfs:" packet we sent, used
348 to avoid sending repeated unnecessary "vFile:setfs:" packets.
349 Initialized to -1 to indicate that no "vFile:setfs:" packet
350 has yet been sent. */
351 int fs_pid = -1;
352
353 /* A readahead cache for vFile:pread. Often, reading a binary
354 involves a sequence of small reads. E.g., when parsing an ELF
355 file. A readahead cache helps mostly the case of remote
356 debugging on a connection with higher latency, due to the
357 request/reply nature of the RSP. We only cache data for a single
358 file descriptor at a time. */
359 struct readahead_cache readahead_cache;
360
361 /* The list of already fetched and acknowledged stop events. This
362 queue is used for notification Stop, and other notifications
363 don't need queue for their events, because the notification
364 events of Stop can't be consumed immediately, so that events
365 should be queued first, and be consumed by remote_wait_{ns,as}
366 one per time. Other notifications can consume their events
367 immediately, so queue is not needed for them. */
953edf2b 368 std::vector<stop_reply_up> stop_reply_queue;
3c69da40
PA
369
370 /* Asynchronous signal handle registered as event loop source for
371 when we have pending events ready to be passed to the core. */
372 struct async_event_handler *remote_async_inferior_event_token = nullptr;
373
374 /* FIXME: cagney/1999-09-23: Even though getpkt was called with
375 ``forever'' still use the normal timeout mechanism. This is
376 currently used by the ASYNC code to guarentee that target reads
377 during the initial connect always time-out. Once getpkt has been
378 modified to return a timeout indication and, in turn
379 remote_wait()/wait_for_inferior() have gained a timeout parameter
380 this can go away. */
381 int wait_forever_enabled_p = 1;
382
383private:
384 /* Mapping of remote protocol data for each gdbarch. Usually there
385 is only one entry here, though we may see more with stubs that
386 support multi-process. */
387 std::unordered_map<struct gdbarch *, remote_arch_state>
388 m_arch_states;
389};
6b8edb51 390
d9f719f1
PA
391static const target_info remote_target_info = {
392 "remote",
393 N_("Remote serial target in gdb-specific protocol"),
394 remote_doc
395};
396
3b3dac9b 397class remote_target : public process_stratum_target
f6ac5f3d
PA
398{
399public:
3b3dac9b 400 remote_target () = default;
6b8edb51 401 ~remote_target () override;
f6ac5f3d 402
d9f719f1
PA
403 const target_info &info () const override
404 { return remote_target_info; }
f6ac5f3d
PA
405
406 thread_control_capabilities get_thread_control_capabilities () override
407 { return tc_schedlock; }
408
d9f719f1
PA
409 /* Open a remote connection. */
410 static void open (const char *, int);
411
f6ac5f3d
PA
412 void close () override;
413
414 void detach (inferior *, int) override;
415 void disconnect (const char *, int) override;
416
417 void commit_resume () override;
418 void resume (ptid_t, int, enum gdb_signal) override;
419 ptid_t wait (ptid_t, struct target_waitstatus *, int) override;
420
421 void fetch_registers (struct regcache *, int) override;
422 void store_registers (struct regcache *, int) override;
423 void prepare_to_store (struct regcache *) override;
424
425 void files_info () override;
426
427 int insert_breakpoint (struct gdbarch *, struct bp_target_info *) override;
428
429 int remove_breakpoint (struct gdbarch *, struct bp_target_info *,
430 enum remove_bp_reason) override;
431
432
57810aa7
PA
433 bool stopped_by_sw_breakpoint () override;
434 bool supports_stopped_by_sw_breakpoint () override;
f6ac5f3d 435
57810aa7 436 bool stopped_by_hw_breakpoint () override;
f6ac5f3d 437
57810aa7 438 bool supports_stopped_by_hw_breakpoint () override;
f6ac5f3d 439
57810aa7 440 bool stopped_by_watchpoint () override;
f6ac5f3d 441
57810aa7 442 bool stopped_data_address (CORE_ADDR *) override;
f6ac5f3d 443
57810aa7 444 bool watchpoint_addr_within_range (CORE_ADDR, CORE_ADDR, int) override;
f6ac5f3d
PA
445
446 int can_use_hw_breakpoint (enum bptype, int, int) override;
447
448 int insert_hw_breakpoint (struct gdbarch *, struct bp_target_info *) override;
449
450 int remove_hw_breakpoint (struct gdbarch *, struct bp_target_info *) override;
451
452 int region_ok_for_hw_watchpoint (CORE_ADDR, int) override;
453
454 int insert_watchpoint (CORE_ADDR, int, enum target_hw_bp_type,
455 struct expression *) override;
456
457 int remove_watchpoint (CORE_ADDR, int, enum target_hw_bp_type,
458 struct expression *) override;
459
460 void kill () override;
461
462 void load (const char *, int) override;
463
464 void mourn_inferior () override;
465
adc6a863 466 void pass_signals (gdb::array_view<const unsigned char>) override;
f6ac5f3d
PA
467
468 int set_syscall_catchpoint (int, bool, int,
469 gdb::array_view<const int>) override;
470
adc6a863 471 void program_signals (gdb::array_view<const unsigned char>) override;
f6ac5f3d 472
57810aa7 473 bool thread_alive (ptid_t ptid) override;
f6ac5f3d
PA
474
475 const char *thread_name (struct thread_info *) override;
476
477 void update_thread_list () override;
478
a068643d 479 std::string pid_to_str (ptid_t) override;
f6ac5f3d
PA
480
481 const char *extra_thread_info (struct thread_info *) override;
482
483 ptid_t get_ada_task_ptid (long lwp, long thread) override;
484
485 thread_info *thread_handle_to_thread_info (const gdb_byte *thread_handle,
486 int handle_len,
487 inferior *inf) override;
488
3d6c6204
KB
489 gdb::byte_vector thread_info_to_thread_handle (struct thread_info *tp)
490 override;
491
f6ac5f3d
PA
492 void stop (ptid_t) override;
493
494 void interrupt () override;
495
496 void pass_ctrlc () override;
497
498 enum target_xfer_status xfer_partial (enum target_object object,
499 const char *annex,
500 gdb_byte *readbuf,
501 const gdb_byte *writebuf,
502 ULONGEST offset, ULONGEST len,
503 ULONGEST *xfered_len) override;
504
505 ULONGEST get_memory_xfer_limit () override;
506
507 void rcmd (const char *command, struct ui_file *output) override;
508
509 char *pid_to_exec_file (int pid) override;
510
511 void log_command (const char *cmd) override
512 {
513 serial_log_command (this, cmd);
514 }
515
516 CORE_ADDR get_thread_local_address (ptid_t ptid,
517 CORE_ADDR load_module_addr,
518 CORE_ADDR offset) override;
519
57810aa7 520 bool can_execute_reverse () override;
f6ac5f3d
PA
521
522 std::vector<mem_region> memory_map () override;
523
524 void flash_erase (ULONGEST address, LONGEST length) override;
525
526 void flash_done () override;
527
528 const struct target_desc *read_description () override;
529
530 int search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
531 const gdb_byte *pattern, ULONGEST pattern_len,
532 CORE_ADDR *found_addrp) override;
533
57810aa7 534 bool can_async_p () override;
f6ac5f3d 535
57810aa7 536 bool is_async_p () override;
f6ac5f3d
PA
537
538 void async (int) override;
539
540 void thread_events (int) override;
541
542 int can_do_single_step () override;
543
544 void terminal_inferior () override;
545
546 void terminal_ours () override;
547
57810aa7 548 bool supports_non_stop () override;
f6ac5f3d 549
57810aa7 550 bool supports_multi_process () override;
f6ac5f3d 551
57810aa7 552 bool supports_disable_randomization () override;
f6ac5f3d 553
57810aa7 554 bool filesystem_is_local () override;
f6ac5f3d
PA
555
556
557 int fileio_open (struct inferior *inf, const char *filename,
558 int flags, int mode, int warn_if_slow,
559 int *target_errno) override;
560
561 int fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
562 ULONGEST offset, int *target_errno) override;
563
564 int fileio_pread (int fd, gdb_byte *read_buf, int len,
565 ULONGEST offset, int *target_errno) override;
566
567 int fileio_fstat (int fd, struct stat *sb, int *target_errno) override;
568
569 int fileio_close (int fd, int *target_errno) override;
570
571 int fileio_unlink (struct inferior *inf,
572 const char *filename,
573 int *target_errno) override;
574
575 gdb::optional<std::string>
576 fileio_readlink (struct inferior *inf,
577 const char *filename,
578 int *target_errno) override;
579
57810aa7 580 bool supports_enable_disable_tracepoint () override;
f6ac5f3d 581
57810aa7 582 bool supports_string_tracing () override;
f6ac5f3d 583
57810aa7 584 bool supports_evaluation_of_breakpoint_conditions () override;
f6ac5f3d 585
57810aa7 586 bool can_run_breakpoint_commands () override;
f6ac5f3d
PA
587
588 void trace_init () override;
589
590 void download_tracepoint (struct bp_location *location) override;
591
57810aa7 592 bool can_download_tracepoint () override;
f6ac5f3d
PA
593
594 void download_trace_state_variable (const trace_state_variable &tsv) override;
595
596 void enable_tracepoint (struct bp_location *location) override;
597
598 void disable_tracepoint (struct bp_location *location) override;
599
600 void trace_set_readonly_regions () override;
601
602 void trace_start () override;
603
604 int get_trace_status (struct trace_status *ts) override;
605
606 void get_tracepoint_status (struct breakpoint *tp, struct uploaded_tp *utp)
607 override;
608
609 void trace_stop () override;
610
611 int trace_find (enum trace_find_type type, int num,
612 CORE_ADDR addr1, CORE_ADDR addr2, int *tpp) override;
613
57810aa7 614 bool get_trace_state_variable_value (int tsv, LONGEST *val) override;
f6ac5f3d
PA
615
616 int save_trace_data (const char *filename) override;
617
618 int upload_tracepoints (struct uploaded_tp **utpp) override;
619
620 int upload_trace_state_variables (struct uploaded_tsv **utsvp) override;
621
622 LONGEST get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len) override;
623
624 int get_min_fast_tracepoint_insn_len () override;
625
626 void set_disconnected_tracing (int val) override;
627
628 void set_circular_trace_buffer (int val) override;
629
630 void set_trace_buffer_size (LONGEST val) override;
631
57810aa7
PA
632 bool set_trace_notes (const char *user, const char *notes,
633 const char *stopnotes) override;
f6ac5f3d
PA
634
635 int core_of_thread (ptid_t ptid) override;
636
637 int verify_memory (const gdb_byte *data,
638 CORE_ADDR memaddr, ULONGEST size) override;
639
640
57810aa7 641 bool get_tib_address (ptid_t ptid, CORE_ADDR *addr) override;
f6ac5f3d
PA
642
643 void set_permissions () override;
644
645 bool static_tracepoint_marker_at (CORE_ADDR,
646 struct static_tracepoint_marker *marker)
647 override;
648
649 std::vector<static_tracepoint_marker>
650 static_tracepoint_markers_by_strid (const char *id) override;
651
652 traceframe_info_up traceframe_info () override;
653
57810aa7
PA
654 bool use_agent (bool use) override;
655 bool can_use_agent () override;
f6ac5f3d
PA
656
657 struct btrace_target_info *enable_btrace (ptid_t ptid,
658 const struct btrace_config *conf) override;
659
660 void disable_btrace (struct btrace_target_info *tinfo) override;
661
662 void teardown_btrace (struct btrace_target_info *tinfo) override;
663
664 enum btrace_error read_btrace (struct btrace_data *data,
665 struct btrace_target_info *btinfo,
666 enum btrace_read_type type) override;
667
668 const struct btrace_config *btrace_conf (const struct btrace_target_info *) override;
57810aa7 669 bool augmented_libraries_svr4_read () override;
f6ac5f3d 670 int follow_fork (int, int) override;
4ca51187 671 void follow_exec (struct inferior *, const char *) override;
f6ac5f3d
PA
672 int insert_fork_catchpoint (int) override;
673 int remove_fork_catchpoint (int) override;
674 int insert_vfork_catchpoint (int) override;
675 int remove_vfork_catchpoint (int) override;
676 int insert_exec_catchpoint (int) override;
677 int remove_exec_catchpoint (int) override;
678 enum exec_direction_kind execution_direction () override;
679
6b8edb51
PA
680public: /* Remote specific methods. */
681
682 void remote_download_command_source (int num, ULONGEST addr,
683 struct command_line *cmds);
684
685 void remote_file_put (const char *local_file, const char *remote_file,
686 int from_tty);
687 void remote_file_get (const char *remote_file, const char *local_file,
688 int from_tty);
689 void remote_file_delete (const char *remote_file, int from_tty);
690
691 int remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
692 ULONGEST offset, int *remote_errno);
693 int remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
694 ULONGEST offset, int *remote_errno);
695 int remote_hostio_pread_vFile (int fd, gdb_byte *read_buf, int len,
696 ULONGEST offset, int *remote_errno);
697
698 int remote_hostio_send_command (int command_bytes, int which_packet,
699 int *remote_errno, char **attachment,
700 int *attachment_len);
701 int remote_hostio_set_filesystem (struct inferior *inf,
702 int *remote_errno);
703 /* We should get rid of this and use fileio_open directly. */
704 int remote_hostio_open (struct inferior *inf, const char *filename,
705 int flags, int mode, int warn_if_slow,
706 int *remote_errno);
707 int remote_hostio_close (int fd, int *remote_errno);
708
709 int remote_hostio_unlink (inferior *inf, const char *filename,
710 int *remote_errno);
711
712 struct remote_state *get_remote_state ();
713
714 long get_remote_packet_size (void);
715 long get_memory_packet_size (struct memory_packet_config *config);
716
717 long get_memory_write_packet_size ();
718 long get_memory_read_packet_size ();
719
720 char *append_pending_thread_resumptions (char *p, char *endp,
721 ptid_t ptid);
d9f719f1 722 static void open_1 (const char *name, int from_tty, int extended_p);
f6ac5f3d 723 void start_remote (int from_tty, int extended_p);
00431a78 724 void remote_detach_1 (struct inferior *inf, int from_tty);
6b8edb51
PA
725
726 char *append_resumption (char *p, char *endp,
727 ptid_t ptid, int step, gdb_signal siggnal);
728 int remote_resume_with_vcont (ptid_t ptid, int step,
729 gdb_signal siggnal);
730
731 void add_current_inferior_and_thread (char *wait_status);
732
733 ptid_t wait_ns (ptid_t ptid, struct target_waitstatus *status,
734 int options);
735 ptid_t wait_as (ptid_t ptid, target_waitstatus *status,
736 int options);
737
738 ptid_t process_stop_reply (struct stop_reply *stop_reply,
739 target_waitstatus *status);
740
741 void remote_notice_new_inferior (ptid_t currthread, int executing);
742
743 void process_initial_stop_replies (int from_tty);
744
00431a78 745 thread_info *remote_add_thread (ptid_t ptid, bool running, bool executing);
6b8edb51
PA
746
747 void btrace_sync_conf (const btrace_config *conf);
748
749 void remote_btrace_maybe_reopen ();
750
751 void remove_new_fork_children (threads_listing_context *context);
752 void kill_new_fork_children (int pid);
753 void discard_pending_stop_replies (struct inferior *inf);
754 int stop_reply_queue_length ();
755
756 void check_pending_events_prevent_wildcard_vcont
757 (int *may_global_wildcard_vcont);
758
759 void discard_pending_stop_replies_in_queue ();
760 struct stop_reply *remote_notif_remove_queued_reply (ptid_t ptid);
761 struct stop_reply *queued_stop_reply (ptid_t ptid);
762 int peek_stop_reply (ptid_t ptid);
bb277751 763 void remote_parse_stop_reply (const char *buf, stop_reply *event);
6b8edb51
PA
764
765 void remote_stop_ns (ptid_t ptid);
766 void remote_interrupt_as ();
767 void remote_interrupt_ns ();
768
769 char *remote_get_noisy_reply ();
770 int remote_query_attached (int pid);
9ab8741a 771 inferior *remote_add_inferior (bool fake_pid_p, int pid, int attached,
6b8edb51
PA
772 int try_open_exec);
773
774 ptid_t remote_current_thread (ptid_t oldpid);
775 ptid_t get_current_thread (char *wait_status);
776
777 void set_thread (ptid_t ptid, int gen);
778 void set_general_thread (ptid_t ptid);
779 void set_continue_thread (ptid_t ptid);
780 void set_general_process ();
781
782 char *write_ptid (char *buf, const char *endbuf, ptid_t ptid);
783
784 int remote_unpack_thread_info_response (char *pkt, threadref *expectedref,
785 gdb_ext_thread_info *info);
786 int remote_get_threadinfo (threadref *threadid, int fieldset,
787 gdb_ext_thread_info *info);
788
789 int parse_threadlist_response (char *pkt, int result_limit,
790 threadref *original_echo,
791 threadref *resultlist,
792 int *doneflag);
793 int remote_get_threadlist (int startflag, threadref *nextthread,
794 int result_limit, int *done, int *result_count,
795 threadref *threadlist);
796
797 int remote_threadlist_iterator (rmt_thread_action stepfunction,
798 void *context, int looplimit);
799
800 int remote_get_threads_with_ql (threads_listing_context *context);
801 int remote_get_threads_with_qxfer (threads_listing_context *context);
802 int remote_get_threads_with_qthreadinfo (threads_listing_context *context);
803
804 void extended_remote_restart ();
805
806 void get_offsets ();
807
808 void remote_check_symbols ();
809
810 void remote_supported_packet (const struct protocol_feature *feature,
811 enum packet_support support,
812 const char *argument);
813
814 void remote_query_supported ();
815
816 void remote_packet_size (const protocol_feature *feature,
817 packet_support support, const char *value);
818
819 void remote_serial_quit_handler ();
820
821 void remote_detach_pid (int pid);
822
823 void remote_vcont_probe ();
824
825 void remote_resume_with_hc (ptid_t ptid, int step,
826 gdb_signal siggnal);
827
828 void send_interrupt_sequence ();
829 void interrupt_query ();
830
831 void remote_notif_get_pending_events (notif_client *nc);
832
833 int fetch_register_using_p (struct regcache *regcache,
834 packet_reg *reg);
835 int send_g_packet ();
836 void process_g_packet (struct regcache *regcache);
837 void fetch_registers_using_g (struct regcache *regcache);
838 int store_register_using_P (const struct regcache *regcache,
839 packet_reg *reg);
840 void store_registers_using_G (const struct regcache *regcache);
841
842 void set_remote_traceframe ();
843
844 void check_binary_download (CORE_ADDR addr);
845
846 target_xfer_status remote_write_bytes_aux (const char *header,
847 CORE_ADDR memaddr,
848 const gdb_byte *myaddr,
849 ULONGEST len_units,
850 int unit_size,
851 ULONGEST *xfered_len_units,
852 char packet_format,
853 int use_length);
854
855 target_xfer_status remote_write_bytes (CORE_ADDR memaddr,
856 const gdb_byte *myaddr, ULONGEST len,
857 int unit_size, ULONGEST *xfered_len);
858
859 target_xfer_status remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr,
860 ULONGEST len_units,
861 int unit_size, ULONGEST *xfered_len_units);
862
863 target_xfer_status remote_xfer_live_readonly_partial (gdb_byte *readbuf,
864 ULONGEST memaddr,
865 ULONGEST len,
866 int unit_size,
867 ULONGEST *xfered_len);
868
869 target_xfer_status remote_read_bytes (CORE_ADDR memaddr,
870 gdb_byte *myaddr, ULONGEST len,
871 int unit_size,
872 ULONGEST *xfered_len);
873
874 packet_result remote_send_printf (const char *format, ...)
875 ATTRIBUTE_PRINTF (2, 3);
876
877 target_xfer_status remote_flash_write (ULONGEST address,
878 ULONGEST length, ULONGEST *xfered_len,
879 const gdb_byte *data);
880
881 int readchar (int timeout);
882
883 void remote_serial_write (const char *str, int len);
884
885 int putpkt (const char *buf);
886 int putpkt_binary (const char *buf, int cnt);
887
8d64371b
TT
888 int putpkt (const gdb::char_vector &buf)
889 {
890 return putpkt (buf.data ());
891 }
892
6b8edb51 893 void skip_frame ();
8d64371b
TT
894 long read_frame (gdb::char_vector *buf_p);
895 void getpkt (gdb::char_vector *buf, int forever);
896 int getpkt_or_notif_sane_1 (gdb::char_vector *buf, int forever,
6b8edb51 897 int expecting_notif, int *is_notif);
8d64371b
TT
898 int getpkt_sane (gdb::char_vector *buf, int forever);
899 int getpkt_or_notif_sane (gdb::char_vector *buf, int forever,
6b8edb51
PA
900 int *is_notif);
901 int remote_vkill (int pid);
902 void remote_kill_k ();
903
904 void extended_remote_disable_randomization (int val);
905 int extended_remote_run (const std::string &args);
906
907 void send_environment_packet (const char *action,
908 const char *packet,
909 const char *value);
910
911 void extended_remote_environment_support ();
3c69da40 912 void extended_remote_set_inferior_cwd ();
80152258 913
3c69da40
PA
914 target_xfer_status remote_write_qxfer (const char *object_name,
915 const char *annex,
916 const gdb_byte *writebuf,
917 ULONGEST offset, LONGEST len,
918 ULONGEST *xfered_len,
919 struct packet_config *packet);
43c3a0e4 920
3c69da40
PA
921 target_xfer_status remote_read_qxfer (const char *object_name,
922 const char *annex,
923 gdb_byte *readbuf, ULONGEST offset,
924 LONGEST len,
925 ULONGEST *xfered_len,
926 struct packet_config *packet);
43c3a0e4 927
3c69da40 928 void push_stop_reply (struct stop_reply *new_event);
43c3a0e4 929
3c69da40 930 bool vcont_r_supported ();
43c3a0e4 931
3c69da40 932 void packet_command (const char *args, int from_tty);
43c3a0e4 933
3c69da40 934private: /* data fields */
43c3a0e4 935
3c69da40
PA
936 /* The remote state. Don't reference this directly. Use the
937 get_remote_state method instead. */
938 remote_state m_remote_state;
43c3a0e4
PA
939};
940
3c69da40
PA
941static const target_info extended_remote_target_info = {
942 "extended-remote",
943 N_("Extended remote serial target in gdb-specific protocol"),
944 remote_doc
945};
ea9c271d 946
3c69da40
PA
947/* Set up the extended remote target by extending the standard remote
948 target and adding to it. */
949
950class extended_remote_target final : public remote_target
ea9c271d 951{
9d6eea31 952public:
3c69da40
PA
953 const target_info &info () const override
954 { return extended_remote_target_info; }
9d6eea31 955
3c69da40
PA
956 /* Open an extended-remote connection. */
957 static void open (const char *, int);
de44f5a7 958
3c69da40
PA
959 bool can_create_inferior () override { return true; }
960 void create_inferior (const char *, const std::string &,
961 char **, int) override;
9d6eea31 962
3c69da40 963 void detach (inferior *, int) override;
9d6eea31 964
3c69da40
PA
965 bool can_attach () override { return true; }
966 void attach (const char *, int) override;
be2a5f71 967
3c69da40
PA
968 void post_attach (int) override;
969 bool supports_disable_randomization () override;
970};
1e51243a 971
3c69da40 972/* Per-program-space data key. */
7b4a314f
TT
973static const struct program_space_key<char, gdb::xfree_deleter<char>>
974 remote_pspace_data;
2d717e4f 975
3c69da40
PA
976/* The variable registered as the control variable used by the
977 remote exec-file commands. While the remote exec-file setting is
978 per-program-space, the set/show machinery uses this as the
979 location of the remote exec-file value. */
980static char *remote_exec_file_var;
a6f3e723 981
3c69da40
PA
982/* The size to align memory write packets, when practical. The protocol
983 does not guarantee any alignment, and gdb will generate short
984 writes and unaligned writes, but even as a best-effort attempt this
985 can improve bulk transfers. For instance, if a write is misaligned
986 relative to the target's data bus, the stub may need to make an extra
987 round trip fetching data from the target. This doesn't make a
988 huge difference, but it's easy to do, so we try to be helpful.
82f73884 989
3c69da40
PA
990 The alignment chosen is arbitrary; usually data bus width is
991 important here, not the possibly larger cache line size. */
992enum { REMOTE_ALIGN_WRITES = 16 };
82f73884 993
3c69da40 994/* Prototypes for local functions. */
74531fed 995
3c69da40 996static int hexnumlen (ULONGEST num);
782b2b07 997
3c69da40 998static int stubhex (int ch);
5d93a237 999
3c69da40 1000static int hexnumstr (char *, ULONGEST);
048094ac 1001
3c69da40 1002static int hexnumnstr (char *, ULONGEST, int);
47f8a51d 1003
3c69da40 1004static CORE_ADDR remote_address_masked (CORE_ADDR);
262e1174 1005
3c69da40 1006static void print_packet (const char *);
747dc59d 1007
3c69da40 1008static int stub_unpack_int (char *buff, int fieldlength);
5e4a05c4 1009
3c69da40 1010struct packet_config;
b73be471 1011
3c69da40 1012static void show_packet_config_cmd (struct packet_config *config);
280ceea3 1013
3c69da40
PA
1014static void show_remote_protocol_packet_cmd (struct ui_file *file,
1015 int from_tty,
1016 struct cmd_list_element *c,
1017 const char *value);
8e88304f 1018
3c69da40 1019static ptid_t read_ptid (const char *buf, const char **obuf);
3a00c802 1020
3c69da40 1021static void remote_async_inferior_event_handler (gdb_client_data);
b80fafe3 1022
eefce37f 1023static bool remote_read_description_p (struct target_ops *target);
88b496c3 1024
05be00a8 1025static void remote_console_output (const char *msg);
5965e028 1026
3c69da40 1027static void remote_btrace_reset (remote_state *rs);
f4abbc16 1028
3c69da40 1029static void remote_unpush_and_throw (void);
15a201c8 1030
3c69da40 1031/* For "remote". */
80152258 1032
3c69da40 1033static struct cmd_list_element *remote_cmdlist;
9d6eea31 1034
3c69da40 1035/* For "set remote" and "show remote". */
6b8edb51 1036
3c69da40
PA
1037static struct cmd_list_element *remote_set_cmdlist;
1038static struct cmd_list_element *remote_show_cmdlist;
6b8edb51 1039
3c69da40 1040/* Controls whether GDB is willing to use range stepping. */
6b8edb51 1041
491144b5 1042static bool use_range_stepping = true;
3c69da40
PA
1043
1044/* The max number of chars in debug output. The rest of chars are
1045 omitted. */
1046
1047#define REMOTE_DEBUG_MAX_CHAR 512
ea9c271d 1048
7aabaf9d
SM
1049/* Private data that we'll store in (struct thread_info)->priv. */
1050struct remote_thread_info : public private_thread_info
dc146f7c 1051{
7aabaf9d
SM
1052 std::string extra;
1053 std::string name;
1054 int core = -1;
799a2abe 1055
f6327dcb
KB
1056 /* Thread handle, perhaps a pthread_t or thread_t value, stored as a
1057 sequence of bytes. */
7aabaf9d 1058 gdb::byte_vector thread_handle;
f6327dcb 1059
799a2abe 1060 /* Whether the target stopped for a breakpoint/watchpoint. */
7aabaf9d 1061 enum target_stop_reason stop_reason = TARGET_STOPPED_BY_NO_REASON;
799a2abe
PA
1062
1063 /* This is set to the data address of the access causing the target
1064 to stop for a watchpoint. */
7aabaf9d 1065 CORE_ADDR watch_data_address = 0;
85ad3aaf
PA
1066
1067 /* Fields used by the vCont action coalescing implemented in
1068 remote_resume / remote_commit_resume. remote_resume stores each
1069 thread's last resume request in these fields, so that a later
1070 remote_commit_resume knows which is the proper action for this
1071 thread to include in the vCont packet. */
1072
1073 /* True if the last target_resume call for this thread was a step
1074 request, false if a continue request. */
7aabaf9d 1075 int last_resume_step = 0;
85ad3aaf
PA
1076
1077 /* The signal specified in the last target_resume call for this
1078 thread. */
7aabaf9d 1079 gdb_signal last_resume_sig = GDB_SIGNAL_0;
85ad3aaf
PA
1080
1081 /* Whether this thread was already vCont-resumed on the remote
1082 side. */
7aabaf9d 1083 int vcont_resumed = 0;
dc146f7c
VP
1084};
1085
de44f5a7 1086remote_state::remote_state ()
8d64371b 1087 : buf (400)
de44f5a7 1088{
de44f5a7
PA
1089}
1090
1091remote_state::~remote_state ()
1092{
1093 xfree (this->last_pass_packet);
1094 xfree (this->last_program_signals_packet);
de44f5a7
PA
1095 xfree (this->finished_object);
1096 xfree (this->finished_annex);
cf792862
TT
1097}
1098
35b1e5cc
SS
1099/* Utility: generate error from an incoming stub packet. */
1100static void
1101trace_error (char *buf)
1102{
1103 if (*buf++ != 'E')
1104 return; /* not an error msg */
1105 switch (*buf)
1106 {
1107 case '1': /* malformed packet error */
1108 if (*++buf == '0') /* general case: */
1109 error (_("remote.c: error in outgoing packet."));
1110 else
1111 error (_("remote.c: error in outgoing packet at field #%ld."),
1112 strtol (buf, NULL, 16));
35b1e5cc
SS
1113 default:
1114 error (_("Target returns error code '%s'."), buf);
1115 }
1116}
1117
1118/* Utility: wait for reply from stub, while accepting "O" packets. */
b6bb3468 1119
6b8edb51
PA
1120char *
1121remote_target::remote_get_noisy_reply ()
35b1e5cc 1122{
b6bb3468
PA
1123 struct remote_state *rs = get_remote_state ();
1124
35b1e5cc
SS
1125 do /* Loop on reply from remote stub. */
1126 {
1127 char *buf;
a744cf53 1128
0df8b418 1129 QUIT; /* Allow user to bail out with ^C. */
8d64371b
TT
1130 getpkt (&rs->buf, 0);
1131 buf = rs->buf.data ();
ad91cd99 1132 if (buf[0] == 'E')
35b1e5cc 1133 trace_error (buf);
61012eef 1134 else if (startswith (buf, "qRelocInsn:"))
dde08ee1
PA
1135 {
1136 ULONGEST ul;
1137 CORE_ADDR from, to, org_to;
256642e8 1138 const char *p, *pp;
dde08ee1 1139 int adjusted_size = 0;
7556d4a4 1140 int relocated = 0;
dde08ee1
PA
1141
1142 p = buf + strlen ("qRelocInsn:");
1143 pp = unpack_varlen_hex (p, &ul);
1144 if (*pp != ';')
cb91c06a 1145 error (_("invalid qRelocInsn packet: %s"), buf);
dde08ee1
PA
1146 from = ul;
1147
1148 p = pp + 1;
a9cbf802 1149 unpack_varlen_hex (p, &ul);
dde08ee1
PA
1150 to = ul;
1151
1152 org_to = to;
1153
a70b8144 1154 try
dde08ee1 1155 {
f5656ead 1156 gdbarch_relocate_instruction (target_gdbarch (), &to, from);
7556d4a4 1157 relocated = 1;
dde08ee1 1158 }
230d2906 1159 catch (const gdb_exception &ex)
7556d4a4
PA
1160 {
1161 if (ex.error == MEMORY_ERROR)
1162 {
1163 /* Propagate memory errors silently back to the
1164 target. The stub may have limited the range of
1165 addresses we can write to, for example. */
1166 }
1167 else
1168 {
1169 /* Something unexpectedly bad happened. Be verbose
1170 so we can tell what, and propagate the error back
1171 to the stub, so it doesn't get stuck waiting for
1172 a response. */
1173 exception_fprintf (gdb_stderr, ex,
1174 _("warning: relocating instruction: "));
1175 }
1176 putpkt ("E01");
1177 }
1178
1179 if (relocated)
dde08ee1
PA
1180 {
1181 adjusted_size = to - org_to;
1182
8d64371b 1183 xsnprintf (buf, rs->buf.size (), "qRelocInsn:%x", adjusted_size);
dde08ee1
PA
1184 putpkt (buf);
1185 }
dde08ee1 1186 }
ad91cd99 1187 else if (buf[0] == 'O' && buf[1] != 'K')
35b1e5cc
SS
1188 remote_console_output (buf + 1); /* 'O' message from stub */
1189 else
0df8b418 1190 return buf; /* Here's the actual reply. */
35b1e5cc
SS
1191 }
1192 while (1);
1193}
3c3bea1c 1194
9d6eea31
PA
1195struct remote_arch_state *
1196remote_state::get_remote_arch_state (struct gdbarch *gdbarch)
d01949b6 1197{
43c3a0e4
PA
1198 remote_arch_state *rsa;
1199
1200 auto it = this->m_arch_states.find (gdbarch);
1201 if (it == this->m_arch_states.end ())
9d6eea31 1202 {
43c3a0e4
PA
1203 auto p = this->m_arch_states.emplace (std::piecewise_construct,
1204 std::forward_as_tuple (gdbarch),
1205 std::forward_as_tuple (gdbarch));
1206 rsa = &p.first->second;
9d6eea31
PA
1207
1208 /* Make sure that the packet buffer is plenty big enough for
1209 this architecture. */
8d64371b
TT
1210 if (this->buf.size () < rsa->remote_packet_size)
1211 this->buf.resize (2 * rsa->remote_packet_size);
9d6eea31 1212 }
43c3a0e4
PA
1213 else
1214 rsa = &it->second;
1215
1216 return rsa;
d01949b6
AC
1217}
1218
0b83947e
DJ
1219/* Fetch the global remote target state. */
1220
6b8edb51
PA
1221remote_state *
1222remote_target::get_remote_state ()
0b83947e
DJ
1223{
1224 /* Make sure that the remote architecture state has been
1225 initialized, because doing so might reallocate rs->buf. Any
1226 function which calls getpkt also needs to be mindful of changes
1227 to rs->buf, but this call limits the number of places which run
1228 into trouble. */
3c69da40 1229 m_remote_state.get_remote_arch_state (target_gdbarch ());
0b83947e 1230
3c69da40 1231 return &m_remote_state;
0b83947e
DJ
1232}
1233
94585166
DB
1234/* Fetch the remote exec-file from the current program space. */
1235
1236static const char *
1237get_remote_exec_file (void)
1238{
1239 char *remote_exec_file;
1240
7b4a314f 1241 remote_exec_file = remote_pspace_data.get (current_program_space);
94585166
DB
1242 if (remote_exec_file == NULL)
1243 return "";
1244
1245 return remote_exec_file;
1246}
1247
1248/* Set the remote exec file for PSPACE. */
1249
1250static void
1251set_pspace_remote_exec_file (struct program_space *pspace,
7b4a314f 1252 const char *remote_exec_file)
94585166 1253{
7b4a314f 1254 char *old_file = remote_pspace_data.get (pspace);
94585166
DB
1255
1256 xfree (old_file);
7b4a314f 1257 remote_pspace_data.set (pspace, xstrdup (remote_exec_file));
94585166
DB
1258}
1259
1260/* The "set/show remote exec-file" set command hook. */
1261
1262static void
eb4c3f4a 1263set_remote_exec_file (const char *ignored, int from_tty,
94585166
DB
1264 struct cmd_list_element *c)
1265{
1266 gdb_assert (remote_exec_file_var != NULL);
1267 set_pspace_remote_exec_file (current_program_space, remote_exec_file_var);
1268}
1269
1270/* The "set/show remote exec-file" show command hook. */
1271
1272static void
1273show_remote_exec_file (struct ui_file *file, int from_tty,
1274 struct cmd_list_element *cmd, const char *value)
1275{
1276 fprintf_filtered (file, "%s\n", remote_exec_file_var);
1277}
1278
c21236dc
PA
1279static int
1280map_regcache_remote_table (struct gdbarch *gdbarch, struct packet_reg *regs)
d01949b6 1281{
74ca34ce 1282 int regnum, num_remote_regs, offset;
74ca34ce 1283 struct packet_reg **remote_regs;
ea9c271d 1284
4a22f64d 1285 for (regnum = 0; regnum < gdbarch_num_regs (gdbarch); regnum++)
ad10f812 1286 {
c21236dc 1287 struct packet_reg *r = &regs[regnum];
baef701f 1288
4a22f64d 1289 if (register_size (gdbarch, regnum) == 0)
baef701f
DJ
1290 /* Do not try to fetch zero-sized (placeholder) registers. */
1291 r->pnum = -1;
1292 else
1293 r->pnum = gdbarch_remote_register_number (gdbarch, regnum);
1294
b323314b 1295 r->regnum = regnum;
74ca34ce
DJ
1296 }
1297
1298 /* Define the g/G packet format as the contents of each register
1299 with a remote protocol number, in order of ascending protocol
1300 number. */
1301
224c3ddb 1302 remote_regs = XALLOCAVEC (struct packet_reg *, gdbarch_num_regs (gdbarch));
f57d151a 1303 for (num_remote_regs = 0, regnum = 0;
4a22f64d 1304 regnum < gdbarch_num_regs (gdbarch);
f57d151a 1305 regnum++)
c21236dc
PA
1306 if (regs[regnum].pnum != -1)
1307 remote_regs[num_remote_regs++] = &regs[regnum];
7d58c67d 1308
39ef2f62
CB
1309 std::sort (remote_regs, remote_regs + num_remote_regs,
1310 [] (const packet_reg *a, const packet_reg *b)
1311 { return a->pnum < b->pnum; });
74ca34ce
DJ
1312
1313 for (regnum = 0, offset = 0; regnum < num_remote_regs; regnum++)
1314 {
1315 remote_regs[regnum]->in_g_packet = 1;
1316 remote_regs[regnum]->offset = offset;
4a22f64d 1317 offset += register_size (gdbarch, remote_regs[regnum]->regnum);
ad10f812
AC
1318 }
1319
c21236dc
PA
1320 return offset;
1321}
1322
1323/* Given the architecture described by GDBARCH, return the remote
1324 protocol register's number and the register's offset in the g/G
1325 packets of GDB register REGNUM, in PNUM and POFFSET respectively.
1326 If the target does not have a mapping for REGNUM, return false,
1327 otherwise, return true. */
1328
1329int
1330remote_register_number_and_offset (struct gdbarch *gdbarch, int regnum,
1331 int *pnum, int *poffset)
1332{
c21236dc
PA
1333 gdb_assert (regnum < gdbarch_num_regs (gdbarch));
1334
b80406ac 1335 std::vector<packet_reg> regs (gdbarch_num_regs (gdbarch));
c21236dc 1336
b80406ac 1337 map_regcache_remote_table (gdbarch, regs.data ());
c21236dc
PA
1338
1339 *pnum = regs[regnum].pnum;
1340 *poffset = regs[regnum].offset;
1341
c21236dc
PA
1342 return *pnum != -1;
1343}
1344
9d6eea31 1345remote_arch_state::remote_arch_state (struct gdbarch *gdbarch)
c21236dc 1346{
c21236dc
PA
1347 /* Use the architecture to build a regnum<->pnum table, which will be
1348 1:1 unless a feature set specifies otherwise. */
9d6eea31 1349 this->regs.reset (new packet_reg [gdbarch_num_regs (gdbarch)] ());
c21236dc 1350
74ca34ce
DJ
1351 /* Record the maximum possible size of the g packet - it may turn out
1352 to be smaller. */
9d6eea31
PA
1353 this->sizeof_g_packet
1354 = map_regcache_remote_table (gdbarch, this->regs.get ());
74ca34ce 1355
0df8b418 1356 /* Default maximum number of characters in a packet body. Many
d01949b6
AC
1357 remote stubs have a hardwired buffer size of 400 bytes
1358 (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
1359 as the maximum packet-size to ensure that the packet and an extra
1360 NUL character can always fit in the buffer. This stops GDB
1361 trashing stubs that try to squeeze an extra NUL into what is
ea9c271d 1362 already a full buffer (As of 1999-12-04 that was most stubs). */
9d6eea31 1363 this->remote_packet_size = 400 - 1;
d01949b6 1364
ea9c271d 1365 /* This one is filled in when a ``g'' packet is received. */
9d6eea31 1366 this->actual_register_packet_size = 0;
ea9c271d
DJ
1367
1368 /* Should rsa->sizeof_g_packet needs more space than the
0df8b418
MS
1369 default, adjust the size accordingly. Remember that each byte is
1370 encoded as two characters. 32 is the overhead for the packet
1371 header / footer. NOTE: cagney/1999-10-26: I suspect that 8
d01949b6 1372 (``$NN:G...#NN'') is a better guess, the below has been padded a
23860348 1373 little. */
9d6eea31
PA
1374 if (this->sizeof_g_packet > ((this->remote_packet_size - 32) / 2))
1375 this->remote_packet_size = (this->sizeof_g_packet * 2 + 32);
ea9c271d
DJ
1376}
1377
6b8edb51
PA
1378/* Get a pointer to the current remote target. If not connected to a
1379 remote target, return NULL. */
1380
1381static remote_target *
1382get_current_remote_target ()
1383{
1384 target_ops *proc_target = find_target_at (process_stratum);
1385 return dynamic_cast<remote_target *> (proc_target);
1386}
1387
ea9c271d
DJ
1388/* Return the current allowed size of a remote packet. This is
1389 inferred from the current architecture, and should be used to
1390 limit the length of outgoing packets. */
6b8edb51
PA
1391long
1392remote_target::get_remote_packet_size ()
ea9c271d 1393{
be2a5f71 1394 struct remote_state *rs = get_remote_state ();
9d6eea31 1395 remote_arch_state *rsa = rs->get_remote_arch_state (target_gdbarch ());
ea9c271d 1396
be2a5f71
DJ
1397 if (rs->explicit_packet_size)
1398 return rs->explicit_packet_size;
1399
ea9c271d 1400 return rsa->remote_packet_size;
d01949b6
AC
1401}
1402
ad10f812 1403static struct packet_reg *
5cd63fda
PA
1404packet_reg_from_regnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
1405 long regnum)
ad10f812 1406{
5cd63fda 1407 if (regnum < 0 && regnum >= gdbarch_num_regs (gdbarch))
b323314b
AC
1408 return NULL;
1409 else
ad10f812 1410 {
ea9c271d 1411 struct packet_reg *r = &rsa->regs[regnum];
a744cf53 1412
b323314b
AC
1413 gdb_assert (r->regnum == regnum);
1414 return r;
ad10f812 1415 }
ad10f812
AC
1416}
1417
1418static struct packet_reg *
5cd63fda
PA
1419packet_reg_from_pnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
1420 LONGEST pnum)
ad10f812 1421{
b323314b 1422 int i;
a744cf53 1423
5cd63fda 1424 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
ad10f812 1425 {
ea9c271d 1426 struct packet_reg *r = &rsa->regs[i];
a744cf53 1427
b323314b
AC
1428 if (r->pnum == pnum)
1429 return r;
ad10f812
AC
1430 }
1431 return NULL;
d01949b6
AC
1432}
1433
9a7071a8
JB
1434/* Allow the user to specify what sequence to send to the remote
1435 when he requests a program interruption: Although ^C is usually
1436 what remote systems expect (this is the default, here), it is
1437 sometimes preferable to send a break. On other systems such
1438 as the Linux kernel, a break followed by g, which is Magic SysRq g
1439 is required in order to interrupt the execution. */
1440const char interrupt_sequence_control_c[] = "Ctrl-C";
1441const char interrupt_sequence_break[] = "BREAK";
1442const char interrupt_sequence_break_g[] = "BREAK-g";
40478521 1443static const char *const interrupt_sequence_modes[] =
9a7071a8
JB
1444 {
1445 interrupt_sequence_control_c,
1446 interrupt_sequence_break,
1447 interrupt_sequence_break_g,
1448 NULL
1449 };
1450static const char *interrupt_sequence_mode = interrupt_sequence_control_c;
1451
1452static void
1453show_interrupt_sequence (struct ui_file *file, int from_tty,
1454 struct cmd_list_element *c,
1455 const char *value)
1456{
1457 if (interrupt_sequence_mode == interrupt_sequence_control_c)
1458 fprintf_filtered (file,
1459 _("Send the ASCII ETX character (Ctrl-c) "
1460 "to the remote target to interrupt the "
1461 "execution of the program.\n"));
1462 else if (interrupt_sequence_mode == interrupt_sequence_break)
1463 fprintf_filtered (file,
1464 _("send a break signal to the remote target "
1465 "to interrupt the execution of the program.\n"));
1466 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
1467 fprintf_filtered (file,
1468 _("Send a break signal and 'g' a.k.a. Magic SysRq g to "
1469 "the remote target to interrupt the execution "
1470 "of Linux kernel.\n"));
1471 else
1472 internal_error (__FILE__, __LINE__,
1473 _("Invalid value for interrupt_sequence_mode: %s."),
1474 interrupt_sequence_mode);
1475}
6426a772 1476
9a7071a8
JB
1477/* This boolean variable specifies whether interrupt_sequence is sent
1478 to the remote target when gdb connects to it.
1479 This is mostly needed when you debug the Linux kernel: The Linux kernel
1480 expects BREAK g which is Magic SysRq g for connecting gdb. */
491144b5 1481static bool interrupt_on_connect = false;
c906108c 1482
9a7071a8
JB
1483/* This variable is used to implement the "set/show remotebreak" commands.
1484 Since these commands are now deprecated in favor of "set/show remote
1485 interrupt-sequence", it no longer has any effect on the code. */
491144b5 1486static bool remote_break;
c906108c 1487
9a7071a8 1488static void
eb4c3f4a 1489set_remotebreak (const char *args, int from_tty, struct cmd_list_element *c)
9a7071a8
JB
1490{
1491 if (remote_break)
1492 interrupt_sequence_mode = interrupt_sequence_break;
1493 else
1494 interrupt_sequence_mode = interrupt_sequence_control_c;
1495}
1496
1497static void
1498show_remotebreak (struct ui_file *file, int from_tty,
1499 struct cmd_list_element *c,
1500 const char *value)
1501{
1502}
1503
c906108c
SS
1504/* This variable sets the number of bits in an address that are to be
1505 sent in a memory ("M" or "m") packet. Normally, after stripping
0df8b418 1506 leading zeros, the entire address would be sent. This variable
c906108c
SS
1507 restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
1508 initial implementation of remote.c restricted the address sent in
1509 memory packets to ``host::sizeof long'' bytes - (typically 32
1510 bits). Consequently, for 64 bit targets, the upper 32 bits of an
1511 address was never sent. Since fixing this bug may cause a break in
85102364 1512 some remote targets this variable is principally provided to
23860348 1513 facilitate backward compatibility. */
c906108c 1514
883b9c6c 1515static unsigned int remote_address_size;
c906108c 1516
11cf8741 1517\f
11cf8741 1518/* User configurable variables for the number of characters in a
ea9c271d
DJ
1519 memory read/write packet. MIN (rsa->remote_packet_size,
1520 rsa->sizeof_g_packet) is the default. Some targets need smaller
24b06219 1521 values (fifo overruns, et.al.) and some users need larger values
ad10f812
AC
1522 (speed up transfers). The variables ``preferred_*'' (the user
1523 request), ``current_*'' (what was actually set) and ``forced_*''
23860348 1524 (Positive - a soft limit, negative - a hard limit). */
11cf8741
JM
1525
1526struct memory_packet_config
1527{
a121b7c1 1528 const char *name;
11cf8741
JM
1529 long size;
1530 int fixed_p;
1531};
1532
cc0be08f
PA
1533/* The default max memory-write-packet-size, when the setting is
1534 "fixed". The 16k is historical. (It came from older GDB's using
1535 alloca for buffers and the knowledge (folklore?) that some hosts
1536 don't cope very well with large alloca calls.) */
1537#define DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED 16384
a5c0808e
PA
1538
1539/* The minimum remote packet size for memory transfers. Ensures we
1540 can write at least one byte. */
1541#define MIN_MEMORY_PACKET_SIZE 20
1542
cc0be08f
PA
1543/* Get the memory packet size, assuming it is fixed. */
1544
1545static long
1546get_fixed_memory_packet_size (struct memory_packet_config *config)
1547{
1548 gdb_assert (config->fixed_p);
1549
1550 if (config->size <= 0)
1551 return DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED;
1552 else
1553 return config->size;
1554}
1555
11cf8741
JM
1556/* Compute the current size of a read/write packet. Since this makes
1557 use of ``actual_register_packet_size'' the computation is dynamic. */
1558
6b8edb51
PA
1559long
1560remote_target::get_memory_packet_size (struct memory_packet_config *config)
11cf8741 1561{
d01949b6 1562 struct remote_state *rs = get_remote_state ();
9d6eea31 1563 remote_arch_state *rsa = rs->get_remote_arch_state (target_gdbarch ());
ea9c271d 1564
11cf8741
JM
1565 long what_they_get;
1566 if (config->fixed_p)
cc0be08f 1567 what_they_get = get_fixed_memory_packet_size (config);
11cf8741
JM
1568 else
1569 {
ea9c271d 1570 what_they_get = get_remote_packet_size ();
23860348 1571 /* Limit the packet to the size specified by the user. */
11cf8741
JM
1572 if (config->size > 0
1573 && what_they_get > config->size)
1574 what_they_get = config->size;
be2a5f71
DJ
1575
1576 /* Limit it to the size of the targets ``g'' response unless we have
1577 permission from the stub to use a larger packet size. */
1578 if (rs->explicit_packet_size == 0
1579 && rsa->actual_register_packet_size > 0
1580 && what_they_get > rsa->actual_register_packet_size)
1581 what_they_get = rsa->actual_register_packet_size;
11cf8741 1582 }
a5c0808e
PA
1583 if (what_they_get < MIN_MEMORY_PACKET_SIZE)
1584 what_they_get = MIN_MEMORY_PACKET_SIZE;
6d820c5c
DJ
1585
1586 /* Make sure there is room in the global buffer for this packet
1587 (including its trailing NUL byte). */
8d64371b
TT
1588 if (rs->buf.size () < what_they_get + 1)
1589 rs->buf.resize (2 * what_they_get);
6d820c5c 1590
11cf8741
JM
1591 return what_they_get;
1592}
1593
0df8b418 1594/* Update the size of a read/write packet. If they user wants
23860348 1595 something really big then do a sanity check. */
11cf8741
JM
1596
1597static void
ac88e2de 1598set_memory_packet_size (const char *args, struct memory_packet_config *config)
11cf8741
JM
1599{
1600 int fixed_p = config->fixed_p;
1601 long size = config->size;
a744cf53 1602
11cf8741 1603 if (args == NULL)
8a3fe4f8 1604 error (_("Argument required (integer, `fixed' or `limited')."));
11cf8741
JM
1605 else if (strcmp (args, "hard") == 0
1606 || strcmp (args, "fixed") == 0)
1607 fixed_p = 1;
1608 else if (strcmp (args, "soft") == 0
1609 || strcmp (args, "limit") == 0)
1610 fixed_p = 0;
1611 else
1612 {
1613 char *end;
a744cf53 1614
11cf8741
JM
1615 size = strtoul (args, &end, 0);
1616 if (args == end)
8a3fe4f8 1617 error (_("Invalid %s (bad syntax)."), config->name);
a5c0808e
PA
1618
1619 /* Instead of explicitly capping the size of a packet to or
1620 disallowing it, the user is allowed to set the size to
1621 something arbitrarily large. */
11cf8741 1622 }
a5c0808e 1623
23860348 1624 /* Extra checks? */
11cf8741
JM
1625 if (fixed_p && !config->fixed_p)
1626 {
cc0be08f
PA
1627 /* So that the query shows the correct value. */
1628 long query_size = (size <= 0
1629 ? DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED
1630 : size);
1631
e2e0b3e5
AC
1632 if (! query (_("The target may not be able to correctly handle a %s\n"
1633 "of %ld bytes. Change the packet size? "),
cc0be08f 1634 config->name, query_size))
8a3fe4f8 1635 error (_("Packet size not changed."));
11cf8741 1636 }
23860348 1637 /* Update the config. */
11cf8741
JM
1638 config->fixed_p = fixed_p;
1639 config->size = size;
1640}
1641
1642static void
1643show_memory_packet_size (struct memory_packet_config *config)
1644{
cc0be08f
PA
1645 if (config->size == 0)
1646 printf_filtered (_("The %s is 0 (default). "), config->name);
1647 else
1648 printf_filtered (_("The %s is %ld. "), config->name, config->size);
11cf8741 1649 if (config->fixed_p)
a3f17187 1650 printf_filtered (_("Packets are fixed at %ld bytes.\n"),
cc0be08f 1651 get_fixed_memory_packet_size (config));
11cf8741 1652 else
cc0be08f 1653 {
6b8edb51 1654 remote_target *remote = get_current_remote_target ();
cc0be08f 1655
6b8edb51 1656 if (remote != NULL)
cc0be08f 1657 printf_filtered (_("Packets are limited to %ld bytes.\n"),
6b8edb51 1658 remote->get_memory_packet_size (config));
cc0be08f
PA
1659 else
1660 puts_filtered ("The actual limit will be further reduced "
1661 "dependent on the target.\n");
1662 }
11cf8741
JM
1663}
1664
1665static struct memory_packet_config memory_write_packet_config =
1666{
1667 "memory-write-packet-size",
1668};
1669
1670static void
ac88e2de 1671set_memory_write_packet_size (const char *args, int from_tty)
11cf8741
JM
1672{
1673 set_memory_packet_size (args, &memory_write_packet_config);
1674}
1675
1676static void
ac88e2de 1677show_memory_write_packet_size (const char *args, int from_tty)
11cf8741
JM
1678{
1679 show_memory_packet_size (&memory_write_packet_config);
1680}
1681
055303e2
AB
1682/* Show the number of hardware watchpoints that can be used. */
1683
1684static void
1685show_hardware_watchpoint_limit (struct ui_file *file, int from_tty,
1686 struct cmd_list_element *c,
1687 const char *value)
1688{
1689 fprintf_filtered (file, _("The maximum number of target hardware "
1690 "watchpoints is %s.\n"), value);
1691}
1692
1693/* Show the length limit (in bytes) for hardware watchpoints. */
1694
1695static void
1696show_hardware_watchpoint_length_limit (struct ui_file *file, int from_tty,
1697 struct cmd_list_element *c,
1698 const char *value)
1699{
1700 fprintf_filtered (file, _("The maximum length (in bytes) of a target "
1701 "hardware watchpoint is %s.\n"), value);
1702}
1703
1704/* Show the number of hardware breakpoints that can be used. */
1705
1706static void
1707show_hardware_breakpoint_limit (struct ui_file *file, int from_tty,
1708 struct cmd_list_element *c,
1709 const char *value)
1710{
1711 fprintf_filtered (file, _("The maximum number of target hardware "
1712 "breakpoints is %s.\n"), value);
1713}
1714
6b8edb51
PA
1715long
1716remote_target::get_memory_write_packet_size ()
11cf8741
JM
1717{
1718 return get_memory_packet_size (&memory_write_packet_config);
1719}
1720
1721static struct memory_packet_config memory_read_packet_config =
1722{
1723 "memory-read-packet-size",
1724};
1725
1726static void
ac88e2de 1727set_memory_read_packet_size (const char *args, int from_tty)
11cf8741
JM
1728{
1729 set_memory_packet_size (args, &memory_read_packet_config);
1730}
1731
1732static void
ac88e2de 1733show_memory_read_packet_size (const char *args, int from_tty)
11cf8741
JM
1734{
1735 show_memory_packet_size (&memory_read_packet_config);
1736}
1737
6b8edb51
PA
1738long
1739remote_target::get_memory_read_packet_size ()
11cf8741
JM
1740{
1741 long size = get_memory_packet_size (&memory_read_packet_config);
a744cf53 1742
11cf8741
JM
1743 /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
1744 extra buffer size argument before the memory read size can be
ea9c271d
DJ
1745 increased beyond this. */
1746 if (size > get_remote_packet_size ())
1747 size = get_remote_packet_size ();
11cf8741
JM
1748 return size;
1749}
1750
11cf8741 1751\f
5a2468f5 1752
5a2468f5
JM
1753struct packet_config
1754 {
bb572ddd
DJ
1755 const char *name;
1756 const char *title;
4082afcc
PA
1757
1758 /* If auto, GDB auto-detects support for this packet or feature,
1759 either through qSupported, or by trying the packet and looking
1760 at the response. If true, GDB assumes the target supports this
ca4f7f8b
PA
1761 packet. If false, the packet is disabled. Configs that don't
1762 have an associated command always have this set to auto. */
7f19b9a2 1763 enum auto_boolean detect;
4082afcc
PA
1764
1765 /* Does the target support this packet? */
5a2468f5
JM
1766 enum packet_support support;
1767 };
1768
4082afcc
PA
1769static enum packet_support packet_config_support (struct packet_config *config);
1770static enum packet_support packet_support (int packet);
5a2468f5
JM
1771
1772static void
fba45db2 1773show_packet_config_cmd (struct packet_config *config)
5a2468f5 1774{
a121b7c1 1775 const char *support = "internal-error";
a744cf53 1776
4082afcc 1777 switch (packet_config_support (config))
5a2468f5
JM
1778 {
1779 case PACKET_ENABLE:
1780 support = "enabled";
1781 break;
1782 case PACKET_DISABLE:
1783 support = "disabled";
1784 break;
1785 case PACKET_SUPPORT_UNKNOWN:
1786 support = "unknown";
1787 break;
1788 }
1789 switch (config->detect)
1790 {
7f19b9a2 1791 case AUTO_BOOLEAN_AUTO:
3e43a32a
MS
1792 printf_filtered (_("Support for the `%s' packet "
1793 "is auto-detected, currently %s.\n"),
37a105a1 1794 config->name, support);
5a2468f5 1795 break;
7f19b9a2
AC
1796 case AUTO_BOOLEAN_TRUE:
1797 case AUTO_BOOLEAN_FALSE:
37a105a1
DJ
1798 printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
1799 config->name, support);
8e248173 1800 break;
5a2468f5
JM
1801 }
1802}
1803
1804static void
bb572ddd
DJ
1805add_packet_config_cmd (struct packet_config *config, const char *name,
1806 const char *title, int legacy)
d471ea57 1807{
5a2468f5
JM
1808 char *set_doc;
1809 char *show_doc;
d471ea57 1810 char *cmd_name;
3ed07be4 1811
5a2468f5
JM
1812 config->name = name;
1813 config->title = title;
590042fc 1814 set_doc = xstrprintf ("Set use of remote protocol `%s' (%s) packet.",
b435e160 1815 name, title);
3e43a32a 1816 show_doc = xstrprintf ("Show current use of remote "
590042fc 1817 "protocol `%s' (%s) packet.",
b435e160 1818 name, title);
d471ea57 1819 /* set/show TITLE-packet {auto,on,off} */
b435e160 1820 cmd_name = xstrprintf ("%s-packet", title);
e9e68a56 1821 add_setshow_auto_boolean_cmd (cmd_name, class_obscure,
3e43a32a
MS
1822 &config->detect, set_doc,
1823 show_doc, NULL, /* help_doc */
4082afcc 1824 NULL,
bb572ddd
DJ
1825 show_remote_protocol_packet_cmd,
1826 &remote_set_cmdlist, &remote_show_cmdlist);
1eefb858
TT
1827 /* The command code copies the documentation strings. */
1828 xfree (set_doc);
1829 xfree (show_doc);
23860348 1830 /* set/show remote NAME-packet {auto,on,off} -- legacy. */
d471ea57
AC
1831 if (legacy)
1832 {
1833 char *legacy_name;
a744cf53 1834
b435e160 1835 legacy_name = xstrprintf ("%s-packet", name);
d471ea57 1836 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
bb572ddd 1837 &remote_set_cmdlist);
d471ea57 1838 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
bb572ddd 1839 &remote_show_cmdlist);
d471ea57 1840 }
5a2468f5
JM
1841}
1842
d471ea57 1843static enum packet_result
a76d924d 1844packet_check_result (const char *buf)
5a2468f5 1845{
d471ea57 1846 if (buf[0] != '\0')
5a2468f5 1847 {
d471ea57 1848 /* The stub recognized the packet request. Check that the
23860348 1849 operation succeeded. */
a76d924d
DJ
1850 if (buf[0] == 'E'
1851 && isxdigit (buf[1]) && isxdigit (buf[2])
1852 && buf[3] == '\0')
85102364 1853 /* "Enn" - definitely an error. */
a76d924d
DJ
1854 return PACKET_ERROR;
1855
1856 /* Always treat "E." as an error. This will be used for
1857 more verbose error messages, such as E.memtypes. */
1858 if (buf[0] == 'E' && buf[1] == '.')
1859 return PACKET_ERROR;
1860
1861 /* The packet may or may not be OK. Just assume it is. */
1862 return PACKET_OK;
1863 }
1864 else
1865 /* The stub does not support the packet. */
1866 return PACKET_UNKNOWN;
1867}
1868
8d64371b
TT
1869static enum packet_result
1870packet_check_result (const gdb::char_vector &buf)
1871{
1872 return packet_check_result (buf.data ());
1873}
1874
a76d924d
DJ
1875static enum packet_result
1876packet_ok (const char *buf, struct packet_config *config)
1877{
1878 enum packet_result result;
1879
4082afcc
PA
1880 if (config->detect != AUTO_BOOLEAN_TRUE
1881 && config->support == PACKET_DISABLE)
1882 internal_error (__FILE__, __LINE__,
1883 _("packet_ok: attempt to use a disabled packet"));
1884
a76d924d
DJ
1885 result = packet_check_result (buf);
1886 switch (result)
1887 {
1888 case PACKET_OK:
1889 case PACKET_ERROR:
1890 /* The stub recognized the packet request. */
4082afcc 1891 if (config->support == PACKET_SUPPORT_UNKNOWN)
d471ea57 1892 {
d471ea57
AC
1893 if (remote_debug)
1894 fprintf_unfiltered (gdb_stdlog,
4082afcc
PA
1895 "Packet %s (%s) is supported\n",
1896 config->name, config->title);
d471ea57 1897 config->support = PACKET_ENABLE;
d471ea57 1898 }
a76d924d
DJ
1899 break;
1900 case PACKET_UNKNOWN:
23860348 1901 /* The stub does not support the packet. */
4082afcc
PA
1902 if (config->detect == AUTO_BOOLEAN_AUTO
1903 && config->support == PACKET_ENABLE)
d471ea57 1904 {
4082afcc
PA
1905 /* If the stub previously indicated that the packet was
1906 supported then there is a protocol error. */
1907 error (_("Protocol error: %s (%s) conflicting enabled responses."),
1908 config->name, config->title);
1909 }
1910 else if (config->detect == AUTO_BOOLEAN_TRUE)
1911 {
1912 /* The user set it wrong. */
1913 error (_("Enabled packet %s (%s) not recognized by stub"),
1914 config->name, config->title);
d471ea57 1915 }
4082afcc
PA
1916
1917 if (remote_debug)
1918 fprintf_unfiltered (gdb_stdlog,
1919 "Packet %s (%s) is NOT supported\n",
1920 config->name, config->title);
1921 config->support = PACKET_DISABLE;
a76d924d 1922 break;
5a2468f5 1923 }
a76d924d
DJ
1924
1925 return result;
5a2468f5
JM
1926}
1927
8d64371b
TT
1928static enum packet_result
1929packet_ok (const gdb::char_vector &buf, struct packet_config *config)
1930{
1931 return packet_ok (buf.data (), config);
1932}
1933
444abaca
DJ
1934enum {
1935 PACKET_vCont = 0,
1936 PACKET_X,
1937 PACKET_qSymbol,
1938 PACKET_P,
1939 PACKET_p,
1940 PACKET_Z0,
1941 PACKET_Z1,
1942 PACKET_Z2,
1943 PACKET_Z3,
1944 PACKET_Z4,
15a201c8 1945 PACKET_vFile_setfs,
a6b151f1
DJ
1946 PACKET_vFile_open,
1947 PACKET_vFile_pread,
1948 PACKET_vFile_pwrite,
1949 PACKET_vFile_close,
1950 PACKET_vFile_unlink,
b9e7b9c3 1951 PACKET_vFile_readlink,
0a93529c 1952 PACKET_vFile_fstat,
0876f84a 1953 PACKET_qXfer_auxv,
23181151 1954 PACKET_qXfer_features,
c78fa86a 1955 PACKET_qXfer_exec_file,
cfa9d6d9 1956 PACKET_qXfer_libraries,
2268b414 1957 PACKET_qXfer_libraries_svr4,
fd79ecee 1958 PACKET_qXfer_memory_map,
07e059b5 1959 PACKET_qXfer_osdata,
dc146f7c 1960 PACKET_qXfer_threads,
0fb4aa4b 1961 PACKET_qXfer_statictrace_read,
b3b9301e 1962 PACKET_qXfer_traceframe_info,
169081d0 1963 PACKET_qXfer_uib,
711e434b 1964 PACKET_qGetTIBAddr,
444abaca 1965 PACKET_qGetTLSAddr,
be2a5f71 1966 PACKET_qSupported,
bd3eecc3 1967 PACKET_qTStatus,
89be2091 1968 PACKET_QPassSignals,
82075af2 1969 PACKET_QCatchSyscalls,
9b224c5e 1970 PACKET_QProgramSignals,
bc3b087d 1971 PACKET_QSetWorkingDir,
aefd8b33 1972 PACKET_QStartupWithShell,
0a2dde4a
SDJ
1973 PACKET_QEnvironmentHexEncoded,
1974 PACKET_QEnvironmentReset,
1975 PACKET_QEnvironmentUnset,
936d2992 1976 PACKET_qCRC,
08388c79 1977 PACKET_qSearch_memory,
2d717e4f
DJ
1978 PACKET_vAttach,
1979 PACKET_vRun,
a6f3e723 1980 PACKET_QStartNoAckMode,
82f73884 1981 PACKET_vKill,
4aa995e1
PA
1982 PACKET_qXfer_siginfo_read,
1983 PACKET_qXfer_siginfo_write,
0b16c5cf 1984 PACKET_qAttached,
4082afcc
PA
1985
1986 /* Support for conditional tracepoints. */
782b2b07 1987 PACKET_ConditionalTracepoints,
4082afcc
PA
1988
1989 /* Support for target-side breakpoint conditions. */
3788aec7 1990 PACKET_ConditionalBreakpoints,
4082afcc
PA
1991
1992 /* Support for target-side breakpoint commands. */
d3ce09f5 1993 PACKET_BreakpointCommands,
4082afcc
PA
1994
1995 /* Support for fast tracepoints. */
7a697b8d 1996 PACKET_FastTracepoints,
4082afcc
PA
1997
1998 /* Support for static tracepoints. */
0fb4aa4b 1999 PACKET_StaticTracepoints,
4082afcc
PA
2000
2001 /* Support for installing tracepoints while a trace experiment is
2002 running. */
1e4d1764 2003 PACKET_InstallInTrace,
4082afcc 2004
40ab02ce
MS
2005 PACKET_bc,
2006 PACKET_bs,
409873ef 2007 PACKET_TracepointSource,
d914c394 2008 PACKET_QAllow,
78d85199 2009 PACKET_qXfer_fdpic,
03583c20 2010 PACKET_QDisableRandomization,
d1feda86 2011 PACKET_QAgent,
f6f899bf 2012 PACKET_QTBuffer_size,
9accd112
MM
2013 PACKET_Qbtrace_off,
2014 PACKET_Qbtrace_bts,
b20a6524 2015 PACKET_Qbtrace_pt,
9accd112 2016 PACKET_qXfer_btrace,
4082afcc
PA
2017
2018 /* Support for the QNonStop packet. */
2019 PACKET_QNonStop,
2020
65706a29
PA
2021 /* Support for the QThreadEvents packet. */
2022 PACKET_QThreadEvents,
2023
4082afcc
PA
2024 /* Support for multi-process extensions. */
2025 PACKET_multiprocess_feature,
2026
2027 /* Support for enabling and disabling tracepoints while a trace
2028 experiment is running. */
2029 PACKET_EnableDisableTracepoints_feature,
2030
2031 /* Support for collecting strings using the tracenz bytecode. */
2032 PACKET_tracenz_feature,
2033
2034 /* Support for continuing to run a trace experiment while GDB is
2035 disconnected. */
2036 PACKET_DisconnectedTracing_feature,
2037
2038 /* Support for qXfer:libraries-svr4:read with a non-empty annex. */
2039 PACKET_augmented_libraries_svr4_read_feature,
2040
f4abbc16
MM
2041 /* Support for the qXfer:btrace-conf:read packet. */
2042 PACKET_qXfer_btrace_conf,
2043
d33501a5
MM
2044 /* Support for the Qbtrace-conf:bts:size packet. */
2045 PACKET_Qbtrace_conf_bts_size,
2046
f7e6eed5
PA
2047 /* Support for swbreak+ feature. */
2048 PACKET_swbreak_feature,
2049
2050 /* Support for hwbreak+ feature. */
2051 PACKET_hwbreak_feature,
2052
89245bc0
DB
2053 /* Support for fork events. */
2054 PACKET_fork_event_feature,
2055
2056 /* Support for vfork events. */
2057 PACKET_vfork_event_feature,
2058
b20a6524
MM
2059 /* Support for the Qbtrace-conf:pt:size packet. */
2060 PACKET_Qbtrace_conf_pt_size,
2061
94585166
DB
2062 /* Support for exec events. */
2063 PACKET_exec_event_feature,
2064
750ce8d1
YQ
2065 /* Support for query supported vCont actions. */
2066 PACKET_vContSupported,
2067
de979965
PA
2068 /* Support remote CTRL-C. */
2069 PACKET_vCtrlC,
2070
f2faf941
PA
2071 /* Support TARGET_WAITKIND_NO_RESUMED. */
2072 PACKET_no_resumed,
2073
444abaca
DJ
2074 PACKET_MAX
2075};
506fb367 2076
444abaca 2077static struct packet_config remote_protocol_packets[PACKET_MAX];
dc8acb97 2078
f7e6eed5
PA
2079/* Returns the packet's corresponding "set remote foo-packet" command
2080 state. See struct packet_config for more details. */
2081
2082static enum auto_boolean
2083packet_set_cmd_state (int packet)
2084{
2085 return remote_protocol_packets[packet].detect;
2086}
2087
4082afcc
PA
2088/* Returns whether a given packet or feature is supported. This takes
2089 into account the state of the corresponding "set remote foo-packet"
2090 command, which may be used to bypass auto-detection. */
dc8acb97 2091
4082afcc
PA
2092static enum packet_support
2093packet_config_support (struct packet_config *config)
2094{
2095 switch (config->detect)
444abaca 2096 {
4082afcc
PA
2097 case AUTO_BOOLEAN_TRUE:
2098 return PACKET_ENABLE;
2099 case AUTO_BOOLEAN_FALSE:
2100 return PACKET_DISABLE;
2101 case AUTO_BOOLEAN_AUTO:
2102 return config->support;
2103 default:
2104 gdb_assert_not_reached (_("bad switch"));
444abaca 2105 }
4082afcc
PA
2106}
2107
2108/* Same as packet_config_support, but takes the packet's enum value as
2109 argument. */
2110
2111static enum packet_support
2112packet_support (int packet)
2113{
2114 struct packet_config *config = &remote_protocol_packets[packet];
2115
2116 return packet_config_support (config);
dc8acb97
MS
2117}
2118
5a2468f5 2119static void
444abaca
DJ
2120show_remote_protocol_packet_cmd (struct ui_file *file, int from_tty,
2121 struct cmd_list_element *c,
2122 const char *value)
5a2468f5 2123{
444abaca 2124 struct packet_config *packet;
5a2468f5 2125
444abaca
DJ
2126 for (packet = remote_protocol_packets;
2127 packet < &remote_protocol_packets[PACKET_MAX];
2128 packet++)
2129 {
2130 if (&packet->detect == c->var)
2131 {
2132 show_packet_config_cmd (packet);
2133 return;
2134 }
2135 }
9b20d036 2136 internal_error (__FILE__, __LINE__, _("Could not find config for %s"),
444abaca 2137 c->name);
5a2468f5
JM
2138}
2139
d471ea57
AC
2140/* Should we try one of the 'Z' requests? */
2141
2142enum Z_packet_type
2143{
2144 Z_PACKET_SOFTWARE_BP,
2145 Z_PACKET_HARDWARE_BP,
2146 Z_PACKET_WRITE_WP,
2147 Z_PACKET_READ_WP,
2148 Z_PACKET_ACCESS_WP,
2149 NR_Z_PACKET_TYPES
2150};
96baa820 2151
d471ea57 2152/* For compatibility with older distributions. Provide a ``set remote
23860348 2153 Z-packet ...'' command that updates all the Z packet types. */
d471ea57 2154
7f19b9a2 2155static enum auto_boolean remote_Z_packet_detect;
96baa820
JM
2156
2157static void
eb4c3f4a 2158set_remote_protocol_Z_packet_cmd (const char *args, int from_tty,
fba45db2 2159 struct cmd_list_element *c)
96baa820 2160{
d471ea57 2161 int i;
a744cf53 2162
d471ea57 2163 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
4082afcc 2164 remote_protocol_packets[PACKET_Z0 + i].detect = remote_Z_packet_detect;
96baa820
JM
2165}
2166
2167static void
08546159
AC
2168show_remote_protocol_Z_packet_cmd (struct ui_file *file, int from_tty,
2169 struct cmd_list_element *c,
2170 const char *value)
96baa820 2171{
d471ea57 2172 int i;
a744cf53 2173
d471ea57
AC
2174 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
2175 {
444abaca 2176 show_packet_config_cmd (&remote_protocol_packets[PACKET_Z0 + i]);
d471ea57 2177 }
96baa820
JM
2178}
2179
4082afcc
PA
2180/* Returns true if the multi-process extensions are in effect. */
2181
2182static int
2183remote_multi_process_p (struct remote_state *rs)
2184{
2185 return packet_support (PACKET_multiprocess_feature) == PACKET_ENABLE;
2186}
2187
de0d863e
DB
2188/* Returns true if fork events are supported. */
2189
2190static int
2191remote_fork_event_p (struct remote_state *rs)
2192{
2193 return packet_support (PACKET_fork_event_feature) == PACKET_ENABLE;
2194}
2195
c269dbdb
DB
2196/* Returns true if vfork events are supported. */
2197
2198static int
2199remote_vfork_event_p (struct remote_state *rs)
2200{
2201 return packet_support (PACKET_vfork_event_feature) == PACKET_ENABLE;
2202}
2203
d46addbb
DB
2204/* Returns true if exec events are supported. */
2205
2206static int
2207remote_exec_event_p (struct remote_state *rs)
2208{
2209 return packet_support (PACKET_exec_event_feature) == PACKET_ENABLE;
2210}
2211
cbb8991c
DB
2212/* Insert fork catchpoint target routine. If fork events are enabled
2213 then return success, nothing more to do. */
2214
f6ac5f3d
PA
2215int
2216remote_target::insert_fork_catchpoint (int pid)
cbb8991c
DB
2217{
2218 struct remote_state *rs = get_remote_state ();
2219
2220 return !remote_fork_event_p (rs);
2221}
2222
2223/* Remove fork catchpoint target routine. Nothing to do, just
2224 return success. */
2225
f6ac5f3d
PA
2226int
2227remote_target::remove_fork_catchpoint (int pid)
cbb8991c
DB
2228{
2229 return 0;
2230}
2231
2232/* Insert vfork catchpoint target routine. If vfork events are enabled
2233 then return success, nothing more to do. */
2234
f6ac5f3d
PA
2235int
2236remote_target::insert_vfork_catchpoint (int pid)
cbb8991c
DB
2237{
2238 struct remote_state *rs = get_remote_state ();
2239
2240 return !remote_vfork_event_p (rs);
2241}
2242
2243/* Remove vfork catchpoint target routine. Nothing to do, just
2244 return success. */
2245
f6ac5f3d
PA
2246int
2247remote_target::remove_vfork_catchpoint (int pid)
cbb8991c
DB
2248{
2249 return 0;
2250}
2251
d46addbb
DB
2252/* Insert exec catchpoint target routine. If exec events are
2253 enabled, just return success. */
2254
f6ac5f3d
PA
2255int
2256remote_target::insert_exec_catchpoint (int pid)
d46addbb
DB
2257{
2258 struct remote_state *rs = get_remote_state ();
2259
2260 return !remote_exec_event_p (rs);
2261}
2262
2263/* Remove exec catchpoint target routine. Nothing to do, just
2264 return success. */
2265
f6ac5f3d
PA
2266int
2267remote_target::remove_exec_catchpoint (int pid)
d46addbb
DB
2268{
2269 return 0;
2270}
2271
c906108c
SS
2272\f
2273
ffdd69cf
TT
2274/* Take advantage of the fact that the TID field is not used, to tag
2275 special ptids with it set to != 0. */
2276static const ptid_t magic_null_ptid (42000, -1, 1);
2277static const ptid_t not_sent_ptid (42000, -2, 1);
2278static const ptid_t any_thread_ptid (42000, 0, 1);
79d7f229 2279
0b16c5cf
PA
2280/* Find out if the stub attached to PID (and hence GDB should offer to
2281 detach instead of killing it when bailing out). */
2282
6b8edb51
PA
2283int
2284remote_target::remote_query_attached (int pid)
0b16c5cf
PA
2285{
2286 struct remote_state *rs = get_remote_state ();
bba74b36 2287 size_t size = get_remote_packet_size ();
0b16c5cf 2288
4082afcc 2289 if (packet_support (PACKET_qAttached) == PACKET_DISABLE)
0b16c5cf
PA
2290 return 0;
2291
2292 if (remote_multi_process_p (rs))
8d64371b 2293 xsnprintf (rs->buf.data (), size, "qAttached:%x", pid);
0b16c5cf 2294 else
8d64371b 2295 xsnprintf (rs->buf.data (), size, "qAttached");
0b16c5cf
PA
2296
2297 putpkt (rs->buf);
8d64371b 2298 getpkt (&rs->buf, 0);
0b16c5cf
PA
2299
2300 switch (packet_ok (rs->buf,
1554e9be 2301 &remote_protocol_packets[PACKET_qAttached]))
0b16c5cf
PA
2302 {
2303 case PACKET_OK:
8d64371b 2304 if (strcmp (rs->buf.data (), "1") == 0)
0b16c5cf
PA
2305 return 1;
2306 break;
2307 case PACKET_ERROR:
8d64371b 2308 warning (_("Remote failure reply: %s"), rs->buf.data ());
0b16c5cf
PA
2309 break;
2310 case PACKET_UNKNOWN:
2311 break;
2312 }
2313
2314 return 0;
2315}
2316
49c62f2e
PA
2317/* Add PID to GDB's inferior table. If FAKE_PID_P is true, then PID
2318 has been invented by GDB, instead of reported by the target. Since
2319 we can be connected to a remote system before before knowing about
2320 any inferior, mark the target with execution when we find the first
2321 inferior. If ATTACHED is 1, then we had just attached to this
2322 inferior. If it is 0, then we just created this inferior. If it
2323 is -1, then try querying the remote stub to find out if it had
1b6e6f5c
GB
2324 attached to the inferior or not. If TRY_OPEN_EXEC is true then
2325 attempt to open this inferior's executable as the main executable
2326 if no main executable is open already. */
1941c569 2327
6b8edb51 2328inferior *
9ab8741a 2329remote_target::remote_add_inferior (bool fake_pid_p, int pid, int attached,
6b8edb51 2330 int try_open_exec)
1941c569 2331{
1941c569
PA
2332 struct inferior *inf;
2333
0b16c5cf
PA
2334 /* Check whether this process we're learning about is to be
2335 considered attached, or if is to be considered to have been
2336 spawned by the stub. */
2337 if (attached == -1)
2338 attached = remote_query_attached (pid);
2339
f5656ead 2340 if (gdbarch_has_global_solist (target_gdbarch ()))
6c95b8df
PA
2341 {
2342 /* If the target shares code across all inferiors, then every
2343 attach adds a new inferior. */
2344 inf = add_inferior (pid);
2345
2346 /* ... and every inferior is bound to the same program space.
2347 However, each inferior may still have its own address
2348 space. */
2349 inf->aspace = maybe_new_address_space ();
2350 inf->pspace = current_program_space;
2351 }
2352 else
2353 {
2354 /* In the traditional debugging scenario, there's a 1-1 match
2355 between program/address spaces. We simply bind the inferior
2356 to the program space's address space. */
2357 inf = current_inferior ();
2358 inferior_appeared (inf, pid);
2359 }
1941c569 2360
0b16c5cf 2361 inf->attach_flag = attached;
49c62f2e 2362 inf->fake_pid_p = fake_pid_p;
0b16c5cf 2363
1b6e6f5c
GB
2364 /* If no main executable is currently open then attempt to
2365 open the file that was executed to create this inferior. */
835205d0 2366 if (try_open_exec && get_exec_file (0) == NULL)
bb805577 2367 exec_file_locate_attach (pid, 0, 1);
1b6e6f5c 2368
1941c569
PA
2369 return inf;
2370}
2371
7aabaf9d 2372static remote_thread_info *get_remote_thread_info (thread_info *thread);
00431a78 2373static remote_thread_info *get_remote_thread_info (ptid_t ptid);
85ad3aaf 2374
1941c569
PA
2375/* Add thread PTID to GDB's thread list. Tag it as executing/running
2376 according to RUNNING. */
2377
00431a78 2378thread_info *
6b8edb51 2379remote_target::remote_add_thread (ptid_t ptid, bool running, bool executing)
c906108c 2380{
b7ea362b 2381 struct remote_state *rs = get_remote_state ();
85ad3aaf 2382 struct thread_info *thread;
b7ea362b
PA
2383
2384 /* GDB historically didn't pull threads in the initial connection
2385 setup. If the remote target doesn't even have a concept of
2386 threads (e.g., a bare-metal target), even if internally we
2387 consider that a single-threaded target, mentioning a new thread
2388 might be confusing to the user. Be silent then, preserving the
2389 age old behavior. */
2390 if (rs->starting_up)
85ad3aaf 2391 thread = add_thread_silent (ptid);
b7ea362b 2392 else
85ad3aaf 2393 thread = add_thread (ptid);
1941c569 2394
7aabaf9d 2395 get_remote_thread_info (thread)->vcont_resumed = executing;
0d5b594f 2396 set_executing (ptid, executing);
1941c569 2397 set_running (ptid, running);
00431a78
PA
2398
2399 return thread;
1941c569
PA
2400}
2401
2402/* Come here when we learn about a thread id from the remote target.
2403 It may be the first time we hear about such thread, so take the
2404 opportunity to add it to GDB's thread list. In case this is the
2405 first time we're noticing its corresponding inferior, add it to
0d5b594f
PA
2406 GDB's inferior list as well. EXECUTING indicates whether the
2407 thread is (internally) executing or stopped. */
1941c569 2408
6b8edb51
PA
2409void
2410remote_target::remote_notice_new_inferior (ptid_t currthread, int executing)
1941c569 2411{
0d5b594f
PA
2412 /* In non-stop mode, we assume new found threads are (externally)
2413 running until proven otherwise with a stop reply. In all-stop,
2414 we can only get here if all threads are stopped. */
2415 int running = target_is_non_stop_p () ? 1 : 0;
2416
c906108c
SS
2417 /* If this is a new thread, add it to GDB's thread list.
2418 If we leave it up to WFI to do this, bad things will happen. */
82f73884 2419
00431a78
PA
2420 thread_info *tp = find_thread_ptid (currthread);
2421 if (tp != NULL && tp->state == THREAD_EXITED)
82f73884
PA
2422 {
2423 /* We're seeing an event on a thread id we knew had exited.
2424 This has to be a new thread reusing the old id. Add it. */
0d5b594f 2425 remote_add_thread (currthread, running, executing);
82f73884
PA
2426 return;
2427 }
2428
79d7f229 2429 if (!in_thread_list (currthread))
c0a2216e 2430 {
1941c569 2431 struct inferior *inf = NULL;
e99b03dc 2432 int pid = currthread.pid ();
1941c569 2433
0e998d96 2434 if (inferior_ptid.is_pid ()
e99b03dc 2435 && pid == inferior_ptid.pid ())
c0a2216e
PA
2436 {
2437 /* inferior_ptid has no thread member yet. This can happen
2438 with the vAttach -> remote_wait,"TAAthread:" path if the
2439 stub doesn't support qC. This is the first stop reported
2440 after an attach, so this is the main thread. Update the
2441 ptid in the thread list. */
f2907e49 2442 if (in_thread_list (ptid_t (pid)))
bad34192
PA
2443 thread_change_ptid (inferior_ptid, currthread);
2444 else
2445 {
0d5b594f 2446 remote_add_thread (currthread, running, executing);
bad34192
PA
2447 inferior_ptid = currthread;
2448 }
dc146f7c 2449 return;
c0a2216e 2450 }
82f73884 2451
d7e15655 2452 if (magic_null_ptid == inferior_ptid)
c0a2216e
PA
2453 {
2454 /* inferior_ptid is not set yet. This can happen with the
2455 vRun -> remote_wait,"TAAthread:" path if the stub
2456 doesn't support qC. This is the first stop reported
2457 after an attach, so this is the main thread. Update the
2458 ptid in the thread list. */
dc146f7c 2459 thread_change_ptid (inferior_ptid, currthread);
82f73884 2460 return;
c0a2216e 2461 }
82f73884 2462
29c87f7f
PA
2463 /* When connecting to a target remote, or to a target
2464 extended-remote which already was debugging an inferior, we
2465 may not know about it yet. Add it before adding its child
2466 thread, so notifications are emitted in a sensible order. */
e99b03dc 2467 if (find_inferior_pid (currthread.pid ()) == NULL)
49c62f2e
PA
2468 {
2469 struct remote_state *rs = get_remote_state ();
9ab8741a 2470 bool fake_pid_p = !remote_multi_process_p (rs);
49c62f2e
PA
2471
2472 inf = remote_add_inferior (fake_pid_p,
e99b03dc 2473 currthread.pid (), -1, 1);
49c62f2e 2474 }
29c87f7f 2475
82f73884 2476 /* This is really a new thread. Add it. */
00431a78
PA
2477 thread_info *new_thr
2478 = remote_add_thread (currthread, running, executing);
1941c569
PA
2479
2480 /* If we found a new inferior, let the common code do whatever
2481 it needs to with it (e.g., read shared libraries, insert
b7ea362b
PA
2482 breakpoints), unless we're just setting up an all-stop
2483 connection. */
1941c569 2484 if (inf != NULL)
b7ea362b
PA
2485 {
2486 struct remote_state *rs = get_remote_state ();
2487
6efcd9a8 2488 if (!rs->starting_up)
00431a78 2489 notice_new_inferior (new_thr, executing, 0);
b7ea362b 2490 }
c0a2216e 2491 }
c906108c
SS
2492}
2493
85ad3aaf 2494/* Return THREAD's private thread data, creating it if necessary. */
dc146f7c 2495
7aabaf9d
SM
2496static remote_thread_info *
2497get_remote_thread_info (thread_info *thread)
dc146f7c 2498{
85ad3aaf 2499 gdb_assert (thread != NULL);
dc146f7c 2500
85ad3aaf 2501 if (thread->priv == NULL)
7aabaf9d 2502 thread->priv.reset (new remote_thread_info);
dc146f7c 2503
7aabaf9d 2504 return static_cast<remote_thread_info *> (thread->priv.get ());
85ad3aaf
PA
2505}
2506
7aabaf9d
SM
2507static remote_thread_info *
2508get_remote_thread_info (ptid_t ptid)
85ad3aaf 2509{
00431a78
PA
2510 thread_info *thr = find_thread_ptid (ptid);
2511 return get_remote_thread_info (thr);
dc146f7c
VP
2512}
2513
74531fed
PA
2514/* Call this function as a result of
2515 1) A halt indication (T packet) containing a thread id
2516 2) A direct query of currthread
0df8b418 2517 3) Successful execution of set thread */
74531fed
PA
2518
2519static void
47f8a51d 2520record_currthread (struct remote_state *rs, ptid_t currthread)
74531fed 2521{
47f8a51d 2522 rs->general_thread = currthread;
74531fed
PA
2523}
2524
89be2091
DJ
2525/* If 'QPassSignals' is supported, tell the remote stub what signals
2526 it can simply pass through to the inferior without reporting. */
2527
f6ac5f3d 2528void
adc6a863 2529remote_target::pass_signals (gdb::array_view<const unsigned char> pass_signals)
89be2091 2530{
4082afcc 2531 if (packet_support (PACKET_QPassSignals) != PACKET_DISABLE)
89be2091
DJ
2532 {
2533 char *pass_packet, *p;
adc6a863 2534 int count = 0;
747dc59d 2535 struct remote_state *rs = get_remote_state ();
89be2091 2536
adc6a863
PA
2537 gdb_assert (pass_signals.size () < 256);
2538 for (size_t i = 0; i < pass_signals.size (); i++)
89be2091 2539 {
2455069d 2540 if (pass_signals[i])
89be2091
DJ
2541 count++;
2542 }
224c3ddb 2543 pass_packet = (char *) xmalloc (count * 3 + strlen ("QPassSignals:") + 1);
89be2091
DJ
2544 strcpy (pass_packet, "QPassSignals:");
2545 p = pass_packet + strlen (pass_packet);
adc6a863 2546 for (size_t i = 0; i < pass_signals.size (); i++)
89be2091 2547 {
2455069d 2548 if (pass_signals[i])
89be2091
DJ
2549 {
2550 if (i >= 16)
2551 *p++ = tohex (i >> 4);
2552 *p++ = tohex (i & 15);
2553 if (count)
2554 *p++ = ';';
2555 else
2556 break;
2557 count--;
2558 }
2559 }
2560 *p = 0;
747dc59d 2561 if (!rs->last_pass_packet || strcmp (rs->last_pass_packet, pass_packet))
89be2091 2562 {
89be2091 2563 putpkt (pass_packet);
8d64371b 2564 getpkt (&rs->buf, 0);
8dc5b319 2565 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QPassSignals]);
747dc59d
TT
2566 if (rs->last_pass_packet)
2567 xfree (rs->last_pass_packet);
2568 rs->last_pass_packet = pass_packet;
89be2091
DJ
2569 }
2570 else
2571 xfree (pass_packet);
2572 }
2573}
2574
82075af2
JS
2575/* If 'QCatchSyscalls' is supported, tell the remote stub
2576 to report syscalls to GDB. */
2577
f6ac5f3d
PA
2578int
2579remote_target::set_syscall_catchpoint (int pid, bool needed, int any_count,
2580 gdb::array_view<const int> syscall_counts)
82075af2 2581{
b80406ac 2582 const char *catch_packet;
82075af2
JS
2583 enum packet_result result;
2584 int n_sysno = 0;
2585
2586 if (packet_support (PACKET_QCatchSyscalls) == PACKET_DISABLE)
2587 {
2588 /* Not supported. */
2589 return 1;
2590 }
2591
649a140c 2592 if (needed && any_count == 0)
82075af2 2593 {
649a140c
PA
2594 /* Count how many syscalls are to be caught. */
2595 for (size_t i = 0; i < syscall_counts.size (); i++)
82075af2 2596 {
649a140c 2597 if (syscall_counts[i] != 0)
82075af2
JS
2598 n_sysno++;
2599 }
2600 }
2601
2602 if (remote_debug)
2603 {
2604 fprintf_unfiltered (gdb_stdlog,
2605 "remote_set_syscall_catchpoint "
2606 "pid %d needed %d any_count %d n_sysno %d\n",
2607 pid, needed, any_count, n_sysno);
2608 }
2609
1b81856f 2610 std::string built_packet;
82075af2
JS
2611 if (needed)
2612 {
2613 /* Prepare a packet with the sysno list, assuming max 8+1
2614 characters for a sysno. If the resulting packet size is too
2615 big, fallback on the non-selective packet. */
2616 const int maxpktsz = strlen ("QCatchSyscalls:1") + n_sysno * 9 + 1;
1b81856f
PA
2617 built_packet.reserve (maxpktsz);
2618 built_packet = "QCatchSyscalls:1";
649a140c 2619 if (any_count == 0)
82075af2 2620 {
649a140c
PA
2621 /* Add in each syscall to be caught. */
2622 for (size_t i = 0; i < syscall_counts.size (); i++)
82075af2 2623 {
649a140c
PA
2624 if (syscall_counts[i] != 0)
2625 string_appendf (built_packet, ";%zx", i);
82075af2
JS
2626 }
2627 }
1b81856f 2628 if (built_packet.size () > get_remote_packet_size ())
82075af2
JS
2629 {
2630 /* catch_packet too big. Fallback to less efficient
2631 non selective mode, with GDB doing the filtering. */
b80406ac 2632 catch_packet = "QCatchSyscalls:1";
82075af2 2633 }
b80406ac 2634 else
1b81856f 2635 catch_packet = built_packet.c_str ();
82075af2
JS
2636 }
2637 else
b80406ac 2638 catch_packet = "QCatchSyscalls:0";
82075af2 2639
b80406ac 2640 struct remote_state *rs = get_remote_state ();
82075af2 2641
b80406ac 2642 putpkt (catch_packet);
8d64371b 2643 getpkt (&rs->buf, 0);
b80406ac
TT
2644 result = packet_ok (rs->buf, &remote_protocol_packets[PACKET_QCatchSyscalls]);
2645 if (result == PACKET_OK)
2646 return 0;
2647 else
2648 return -1;
82075af2
JS
2649}
2650
9b224c5e
PA
2651/* If 'QProgramSignals' is supported, tell the remote stub what
2652 signals it should pass through to the inferior when detaching. */
2653
f6ac5f3d 2654void
adc6a863 2655remote_target::program_signals (gdb::array_view<const unsigned char> signals)
9b224c5e 2656{
4082afcc 2657 if (packet_support (PACKET_QProgramSignals) != PACKET_DISABLE)
9b224c5e
PA
2658 {
2659 char *packet, *p;
adc6a863 2660 int count = 0;
5e4a05c4 2661 struct remote_state *rs = get_remote_state ();
9b224c5e 2662
adc6a863
PA
2663 gdb_assert (signals.size () < 256);
2664 for (size_t i = 0; i < signals.size (); i++)
9b224c5e
PA
2665 {
2666 if (signals[i])
2667 count++;
2668 }
224c3ddb 2669 packet = (char *) xmalloc (count * 3 + strlen ("QProgramSignals:") + 1);
9b224c5e
PA
2670 strcpy (packet, "QProgramSignals:");
2671 p = packet + strlen (packet);
adc6a863 2672 for (size_t i = 0; i < signals.size (); i++)
9b224c5e
PA
2673 {
2674 if (signal_pass_state (i))
2675 {
2676 if (i >= 16)
2677 *p++ = tohex (i >> 4);
2678 *p++ = tohex (i & 15);
2679 if (count)
2680 *p++ = ';';
2681 else
2682 break;
2683 count--;
2684 }
2685 }
2686 *p = 0;
5e4a05c4
TT
2687 if (!rs->last_program_signals_packet
2688 || strcmp (rs->last_program_signals_packet, packet) != 0)
9b224c5e 2689 {
9b224c5e 2690 putpkt (packet);
8d64371b 2691 getpkt (&rs->buf, 0);
8dc5b319 2692 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QProgramSignals]);
5e4a05c4
TT
2693 xfree (rs->last_program_signals_packet);
2694 rs->last_program_signals_packet = packet;
9b224c5e
PA
2695 }
2696 else
2697 xfree (packet);
2698 }
2699}
2700
79d7f229
PA
2701/* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
2702 MINUS_ONE_PTID, set the thread to -1, so the stub returns the
2703 thread. If GEN is set, set the general thread, if not, then set
2704 the step/continue thread. */
6b8edb51
PA
2705void
2706remote_target::set_thread (ptid_t ptid, int gen)
c906108c 2707{
d01949b6 2708 struct remote_state *rs = get_remote_state ();
47f8a51d 2709 ptid_t state = gen ? rs->general_thread : rs->continue_thread;
8d64371b
TT
2710 char *buf = rs->buf.data ();
2711 char *endbuf = buf + get_remote_packet_size ();
c906108c 2712
d7e15655 2713 if (state == ptid)
c906108c
SS
2714 return;
2715
79d7f229
PA
2716 *buf++ = 'H';
2717 *buf++ = gen ? 'g' : 'c';
d7e15655 2718 if (ptid == magic_null_ptid)
79d7f229 2719 xsnprintf (buf, endbuf - buf, "0");
d7e15655 2720 else if (ptid == any_thread_ptid)
79d7f229 2721 xsnprintf (buf, endbuf - buf, "0");
d7e15655 2722 else if (ptid == minus_one_ptid)
79d7f229
PA
2723 xsnprintf (buf, endbuf - buf, "-1");
2724 else
82f73884 2725 write_ptid (buf, endbuf, ptid);
79d7f229 2726 putpkt (rs->buf);
8d64371b 2727 getpkt (&rs->buf, 0);
c906108c 2728 if (gen)
47f8a51d 2729 rs->general_thread = ptid;
c906108c 2730 else
47f8a51d 2731 rs->continue_thread = ptid;
c906108c 2732}
79d7f229 2733
6b8edb51
PA
2734void
2735remote_target::set_general_thread (ptid_t ptid)
79d7f229
PA
2736{
2737 set_thread (ptid, 1);
2738}
2739
6b8edb51
PA
2740void
2741remote_target::set_continue_thread (ptid_t ptid)
79d7f229
PA
2742{
2743 set_thread (ptid, 0);
2744}
2745
3c9c4b83
PA
2746/* Change the remote current process. Which thread within the process
2747 ends up selected isn't important, as long as it is the same process
2748 as what INFERIOR_PTID points to.
2749
2750 This comes from that fact that there is no explicit notion of
2751 "selected process" in the protocol. The selected process for
2752 general operations is the process the selected general thread
2753 belongs to. */
2754
6b8edb51
PA
2755void
2756remote_target::set_general_process ()
3c9c4b83
PA
2757{
2758 struct remote_state *rs = get_remote_state ();
2759
2760 /* If the remote can't handle multiple processes, don't bother. */
8020350c 2761 if (!remote_multi_process_p (rs))
3c9c4b83
PA
2762 return;
2763
2764 /* We only need to change the remote current thread if it's pointing
2765 at some other process. */
e99b03dc 2766 if (rs->general_thread.pid () != inferior_ptid.pid ())
3c9c4b83
PA
2767 set_general_thread (inferior_ptid);
2768}
2769
c906108c 2770\f
7d1a114c
PA
2771/* Return nonzero if this is the main thread that we made up ourselves
2772 to model non-threaded targets as single-threaded. */
c906108c
SS
2773
2774static int
f6ac5f3d 2775remote_thread_always_alive (ptid_t ptid)
c906108c 2776{
d7e15655 2777 if (ptid == magic_null_ptid)
c0a2216e
PA
2778 /* The main thread is always alive. */
2779 return 1;
2780
e38504b3 2781 if (ptid.pid () != 0 && ptid.lwp () == 0)
c0a2216e
PA
2782 /* The main thread is always alive. This can happen after a
2783 vAttach, if the remote side doesn't support
2784 multi-threading. */
2785 return 1;
2786
7d1a114c
PA
2787 return 0;
2788}
2789
2790/* Return nonzero if the thread PTID is still alive on the remote
2791 system. */
2792
57810aa7 2793bool
f6ac5f3d 2794remote_target::thread_alive (ptid_t ptid)
7d1a114c
PA
2795{
2796 struct remote_state *rs = get_remote_state ();
2797 char *p, *endp;
2798
2799 /* Check if this is a thread that we made up ourselves to model
2800 non-threaded targets as single-threaded. */
f6ac5f3d 2801 if (remote_thread_always_alive (ptid))
7d1a114c
PA
2802 return 1;
2803
8d64371b
TT
2804 p = rs->buf.data ();
2805 endp = p + get_remote_packet_size ();
82f73884
PA
2806
2807 *p++ = 'T';
2808 write_ptid (p, endp, ptid);
2809
2e9f7625 2810 putpkt (rs->buf);
8d64371b 2811 getpkt (&rs->buf, 0);
2e9f7625 2812 return (rs->buf[0] == 'O' && rs->buf[1] == 'K');
c906108c
SS
2813}
2814
79efa585
SM
2815/* Return a pointer to a thread name if we know it and NULL otherwise.
2816 The thread_info object owns the memory for the name. */
2817
f6ac5f3d
PA
2818const char *
2819remote_target::thread_name (struct thread_info *info)
79efa585
SM
2820{
2821 if (info->priv != NULL)
a9334058
SM
2822 {
2823 const std::string &name = get_remote_thread_info (info)->name;
2824 return !name.empty () ? name.c_str () : NULL;
2825 }
79efa585
SM
2826
2827 return NULL;
2828}
2829
c906108c
SS
2830/* About these extended threadlist and threadinfo packets. They are
2831 variable length packets but, the fields within them are often fixed
30baf67b 2832 length. They are redundant enough to send over UDP as is the
c906108c
SS
2833 remote protocol in general. There is a matching unit test module
2834 in libstub. */
2835
23860348 2836/* WARNING: This threadref data structure comes from the remote O.S.,
0df8b418 2837 libstub protocol encoding, and remote.c. It is not particularly
23860348 2838 changable. */
cce74817
JM
2839
2840/* Right now, the internal structure is int. We want it to be bigger.
0df8b418 2841 Plan to fix this. */
cce74817 2842
23860348 2843typedef int gdb_threadref; /* Internal GDB thread reference. */
cce74817 2844
9d1f7ab2 2845/* gdb_ext_thread_info is an internal GDB data structure which is
cfde0993 2846 equivalent to the reply of the remote threadinfo packet. */
cce74817
JM
2847
2848struct gdb_ext_thread_info
c5aa993b 2849 {
23860348 2850 threadref threadid; /* External form of thread reference. */
2bc416ba 2851 int active; /* Has state interesting to GDB?
23860348 2852 regs, stack. */
2bc416ba 2853 char display[256]; /* Brief state display, name,
cedea757 2854 blocked/suspended. */
23860348 2855 char shortname[32]; /* To be used to name threads. */
2bc416ba 2856 char more_display[256]; /* Long info, statistics, queue depth,
23860348 2857 whatever. */
c5aa993b 2858 };
cce74817
JM
2859
2860/* The volume of remote transfers can be limited by submitting
2861 a mask containing bits specifying the desired information.
2862 Use a union of these values as the 'selection' parameter to
0df8b418 2863 get_thread_info. FIXME: Make these TAG names more thread specific. */
cce74817
JM
2864
2865#define TAG_THREADID 1
2866#define TAG_EXISTS 2
2867#define TAG_DISPLAY 4
2868#define TAG_THREADNAME 8
c5aa993b 2869#define TAG_MOREDISPLAY 16
cce74817 2870
23860348 2871#define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
c906108c 2872
a14ed312 2873static char *unpack_nibble (char *buf, int *val);
cce74817 2874
a14ed312 2875static char *unpack_byte (char *buf, int *value);
cce74817 2876
a14ed312 2877static char *pack_int (char *buf, int value);
cce74817 2878
a14ed312 2879static char *unpack_int (char *buf, int *value);
cce74817 2880
a14ed312 2881static char *unpack_string (char *src, char *dest, int length);
cce74817 2882
23860348 2883static char *pack_threadid (char *pkt, threadref *id);
cce74817 2884
23860348 2885static char *unpack_threadid (char *inbuf, threadref *id);
cce74817 2886
23860348 2887void int_to_threadref (threadref *id, int value);
cce74817 2888
23860348 2889static int threadref_to_int (threadref *ref);
cce74817 2890
23860348 2891static void copy_threadref (threadref *dest, threadref *src);
cce74817 2892
23860348 2893static int threadmatch (threadref *dest, threadref *src);
cce74817 2894
2bc416ba 2895static char *pack_threadinfo_request (char *pkt, int mode,
23860348 2896 threadref *id);
cce74817 2897
a14ed312
KB
2898static char *pack_threadlist_request (char *pkt, int startflag,
2899 int threadcount,
23860348 2900 threadref *nextthread);
cce74817 2901
23860348 2902static int remote_newthread_step (threadref *ref, void *context);
cce74817 2903
82f73884
PA
2904
2905/* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the
2906 buffer we're allowed to write to. Returns
2907 BUF+CHARACTERS_WRITTEN. */
2908
6b8edb51
PA
2909char *
2910remote_target::write_ptid (char *buf, const char *endbuf, ptid_t ptid)
82f73884
PA
2911{
2912 int pid, tid;
2913 struct remote_state *rs = get_remote_state ();
2914
2915 if (remote_multi_process_p (rs))
2916 {
e99b03dc 2917 pid = ptid.pid ();
82f73884
PA
2918 if (pid < 0)
2919 buf += xsnprintf (buf, endbuf - buf, "p-%x.", -pid);
2920 else
2921 buf += xsnprintf (buf, endbuf - buf, "p%x.", pid);
2922 }
e38504b3 2923 tid = ptid.lwp ();
82f73884
PA
2924 if (tid < 0)
2925 buf += xsnprintf (buf, endbuf - buf, "-%x", -tid);
2926 else
2927 buf += xsnprintf (buf, endbuf - buf, "%x", tid);
2928
2929 return buf;
2930}
2931
256642e8
PA
2932/* Extract a PTID from BUF. If non-null, OBUF is set to one past the
2933 last parsed char. Returns null_ptid if no thread id is found, and
2934 throws an error if the thread id has an invalid format. */
82f73884
PA
2935
2936static ptid_t
256642e8 2937read_ptid (const char *buf, const char **obuf)
82f73884 2938{
256642e8
PA
2939 const char *p = buf;
2940 const char *pp;
82f73884 2941 ULONGEST pid = 0, tid = 0;
82f73884
PA
2942
2943 if (*p == 'p')
2944 {
2945 /* Multi-process ptid. */
2946 pp = unpack_varlen_hex (p + 1, &pid);
2947 if (*pp != '.')
b37520b6 2948 error (_("invalid remote ptid: %s"), p);
82f73884
PA
2949
2950 p = pp;
2951 pp = unpack_varlen_hex (p + 1, &tid);
2952 if (obuf)
2953 *obuf = pp;
fd79271b 2954 return ptid_t (pid, tid, 0);
82f73884
PA
2955 }
2956
2957 /* No multi-process. Just a tid. */
2958 pp = unpack_varlen_hex (p, &tid);
2959
c9f35b34
KB
2960 /* Return null_ptid when no thread id is found. */
2961 if (p == pp)
2962 {
2963 if (obuf)
2964 *obuf = pp;
2965 return null_ptid;
2966 }
2967
82f73884 2968 /* Since the stub is not sending a process id, then default to
ca19bf23
PA
2969 what's in inferior_ptid, unless it's null at this point. If so,
2970 then since there's no way to know the pid of the reported
2971 threads, use the magic number. */
d7e15655 2972 if (inferior_ptid == null_ptid)
e99b03dc 2973 pid = magic_null_ptid.pid ();
ca19bf23 2974 else
e99b03dc 2975 pid = inferior_ptid.pid ();
82f73884
PA
2976
2977 if (obuf)
2978 *obuf = pp;
fd79271b 2979 return ptid_t (pid, tid, 0);
82f73884
PA
2980}
2981
c906108c 2982static int
fba45db2 2983stubhex (int ch)
c906108c
SS
2984{
2985 if (ch >= 'a' && ch <= 'f')
2986 return ch - 'a' + 10;
2987 if (ch >= '0' && ch <= '9')
2988 return ch - '0';
2989 if (ch >= 'A' && ch <= 'F')
2990 return ch - 'A' + 10;
2991 return -1;
2992}
2993
2994static int
fba45db2 2995stub_unpack_int (char *buff, int fieldlength)
c906108c
SS
2996{
2997 int nibble;
2998 int retval = 0;
2999
3000 while (fieldlength)
3001 {
3002 nibble = stubhex (*buff++);
3003 retval |= nibble;
3004 fieldlength--;
3005 if (fieldlength)
3006 retval = retval << 4;
3007 }
3008 return retval;
3009}
3010
c906108c 3011static char *
fba45db2 3012unpack_nibble (char *buf, int *val)
c906108c 3013{
b7589f7d 3014 *val = fromhex (*buf++);
c906108c
SS
3015 return buf;
3016}
3017
c906108c 3018static char *
fba45db2 3019unpack_byte (char *buf, int *value)
c906108c
SS
3020{
3021 *value = stub_unpack_int (buf, 2);
3022 return buf + 2;
3023}
3024
3025static char *
fba45db2 3026pack_int (char *buf, int value)
c906108c
SS
3027{
3028 buf = pack_hex_byte (buf, (value >> 24) & 0xff);
3029 buf = pack_hex_byte (buf, (value >> 16) & 0xff);
3030 buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
3031 buf = pack_hex_byte (buf, (value & 0xff));
3032 return buf;
3033}
3034
3035static char *
fba45db2 3036unpack_int (char *buf, int *value)
c906108c
SS
3037{
3038 *value = stub_unpack_int (buf, 8);
3039 return buf + 8;
3040}
3041
23860348 3042#if 0 /* Currently unused, uncomment when needed. */
a14ed312 3043static char *pack_string (char *pkt, char *string);
c906108c
SS
3044
3045static char *
fba45db2 3046pack_string (char *pkt, char *string)
c906108c
SS
3047{
3048 char ch;
3049 int len;
3050
3051 len = strlen (string);
3052 if (len > 200)
23860348 3053 len = 200; /* Bigger than most GDB packets, junk??? */
c906108c
SS
3054 pkt = pack_hex_byte (pkt, len);
3055 while (len-- > 0)
3056 {
3057 ch = *string++;
3058 if ((ch == '\0') || (ch == '#'))
23860348 3059 ch = '*'; /* Protect encapsulation. */
c906108c
SS
3060 *pkt++ = ch;
3061 }
3062 return pkt;
3063}
3064#endif /* 0 (unused) */
3065
3066static char *
fba45db2 3067unpack_string (char *src, char *dest, int length)
c906108c
SS
3068{
3069 while (length--)
3070 *dest++ = *src++;
3071 *dest = '\0';
3072 return src;
3073}
3074
3075static char *
fba45db2 3076pack_threadid (char *pkt, threadref *id)
c906108c
SS
3077{
3078 char *limit;
3079 unsigned char *altid;
3080
3081 altid = (unsigned char *) id;
3082 limit = pkt + BUF_THREAD_ID_SIZE;
3083 while (pkt < limit)
3084 pkt = pack_hex_byte (pkt, *altid++);
3085 return pkt;
3086}
3087
3088
3089static char *
fba45db2 3090unpack_threadid (char *inbuf, threadref *id)
c906108c
SS
3091{
3092 char *altref;
3093 char *limit = inbuf + BUF_THREAD_ID_SIZE;
3094 int x, y;
3095
3096 altref = (char *) id;
3097
3098 while (inbuf < limit)
3099 {
3100 x = stubhex (*inbuf++);
3101 y = stubhex (*inbuf++);
3102 *altref++ = (x << 4) | y;
3103 }
3104 return inbuf;
3105}
3106
3107/* Externally, threadrefs are 64 bits but internally, they are still
0df8b418 3108 ints. This is due to a mismatch of specifications. We would like
c906108c
SS
3109 to use 64bit thread references internally. This is an adapter
3110 function. */
3111
3112void
fba45db2 3113int_to_threadref (threadref *id, int value)
c906108c
SS
3114{
3115 unsigned char *scan;
3116
3117 scan = (unsigned char *) id;
3118 {
3119 int i = 4;
3120 while (i--)
3121 *scan++ = 0;
3122 }
3123 *scan++ = (value >> 24) & 0xff;
3124 *scan++ = (value >> 16) & 0xff;
3125 *scan++ = (value >> 8) & 0xff;
3126 *scan++ = (value & 0xff);
3127}
3128
3129static int
fba45db2 3130threadref_to_int (threadref *ref)
c906108c
SS
3131{
3132 int i, value = 0;
3133 unsigned char *scan;
3134
cfd77fa1 3135 scan = *ref;
c906108c
SS
3136 scan += 4;
3137 i = 4;
3138 while (i-- > 0)
3139 value = (value << 8) | ((*scan++) & 0xff);
3140 return value;
3141}
3142
3143static void
fba45db2 3144copy_threadref (threadref *dest, threadref *src)
c906108c
SS
3145{
3146 int i;
3147 unsigned char *csrc, *cdest;
3148
3149 csrc = (unsigned char *) src;
3150 cdest = (unsigned char *) dest;
3151 i = 8;
3152 while (i--)
3153 *cdest++ = *csrc++;
3154}
3155
3156static int
fba45db2 3157threadmatch (threadref *dest, threadref *src)
c906108c 3158{
23860348 3159 /* Things are broken right now, so just assume we got a match. */
c906108c
SS
3160#if 0
3161 unsigned char *srcp, *destp;
3162 int i, result;
3163 srcp = (char *) src;
3164 destp = (char *) dest;
3165
3166 result = 1;
3167 while (i-- > 0)
3168 result &= (*srcp++ == *destp++) ? 1 : 0;
3169 return result;
3170#endif
3171 return 1;
3172}
3173
3174/*
c5aa993b
JM
3175 threadid:1, # always request threadid
3176 context_exists:2,
3177 display:4,
3178 unique_name:8,
3179 more_display:16
3180 */
c906108c
SS
3181
3182/* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
3183
3184static char *
fba45db2 3185pack_threadinfo_request (char *pkt, int mode, threadref *id)
c906108c 3186{
23860348
MS
3187 *pkt++ = 'q'; /* Info Query */
3188 *pkt++ = 'P'; /* process or thread info */
3189 pkt = pack_int (pkt, mode); /* mode */
c906108c 3190 pkt = pack_threadid (pkt, id); /* threadid */
23860348 3191 *pkt = '\0'; /* terminate */
c906108c
SS
3192 return pkt;
3193}
3194
23860348 3195/* These values tag the fields in a thread info response packet. */
c906108c 3196/* Tagging the fields allows us to request specific fields and to
23860348 3197 add more fields as time goes by. */
c906108c 3198
23860348 3199#define TAG_THREADID 1 /* Echo the thread identifier. */
c5aa993b 3200#define TAG_EXISTS 2 /* Is this process defined enough to
23860348 3201 fetch registers and its stack? */
c5aa993b 3202#define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
23860348 3203#define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
802188a7 3204#define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
23860348 3205 the process. */
c906108c 3206
6b8edb51
PA
3207int
3208remote_target::remote_unpack_thread_info_response (char *pkt,
3209 threadref *expectedref,
3210 gdb_ext_thread_info *info)
c906108c 3211{
d01949b6 3212 struct remote_state *rs = get_remote_state ();
c906108c 3213 int mask, length;
cfd77fa1 3214 int tag;
c906108c 3215 threadref ref;
8d64371b 3216 char *limit = pkt + rs->buf.size (); /* Plausible parsing limit. */
c906108c
SS
3217 int retval = 1;
3218
23860348 3219 /* info->threadid = 0; FIXME: implement zero_threadref. */
c906108c
SS
3220 info->active = 0;
3221 info->display[0] = '\0';
3222 info->shortname[0] = '\0';
3223 info->more_display[0] = '\0';
3224
23860348
MS
3225 /* Assume the characters indicating the packet type have been
3226 stripped. */
c906108c
SS
3227 pkt = unpack_int (pkt, &mask); /* arg mask */
3228 pkt = unpack_threadid (pkt, &ref);
3229
3230 if (mask == 0)
8a3fe4f8 3231 warning (_("Incomplete response to threadinfo request."));
c906108c 3232 if (!threadmatch (&ref, expectedref))
23860348 3233 { /* This is an answer to a different request. */
8a3fe4f8 3234 warning (_("ERROR RMT Thread info mismatch."));
c906108c
SS
3235 return 0;
3236 }
3237 copy_threadref (&info->threadid, &ref);
3238
405feb71 3239 /* Loop on tagged fields , try to bail if something goes wrong. */
c906108c 3240
23860348
MS
3241 /* Packets are terminated with nulls. */
3242 while ((pkt < limit) && mask && *pkt)
c906108c
SS
3243 {
3244 pkt = unpack_int (pkt, &tag); /* tag */
23860348
MS
3245 pkt = unpack_byte (pkt, &length); /* length */
3246 if (!(tag & mask)) /* Tags out of synch with mask. */
c906108c 3247 {
8a3fe4f8 3248 warning (_("ERROR RMT: threadinfo tag mismatch."));
c906108c
SS
3249 retval = 0;
3250 break;
3251 }
3252 if (tag == TAG_THREADID)
3253 {
3254 if (length != 16)
3255 {
8a3fe4f8 3256 warning (_("ERROR RMT: length of threadid is not 16."));
c906108c
SS
3257 retval = 0;
3258 break;
3259 }
3260 pkt = unpack_threadid (pkt, &ref);
3261 mask = mask & ~TAG_THREADID;
3262 continue;
3263 }
3264 if (tag == TAG_EXISTS)
3265 {
3266 info->active = stub_unpack_int (pkt, length);
3267 pkt += length;
3268 mask = mask & ~(TAG_EXISTS);
3269 if (length > 8)
3270 {
8a3fe4f8 3271 warning (_("ERROR RMT: 'exists' length too long."));
c906108c
SS
3272 retval = 0;
3273 break;
3274 }
3275 continue;
3276 }
3277 if (tag == TAG_THREADNAME)
3278 {
3279 pkt = unpack_string (pkt, &info->shortname[0], length);
3280 mask = mask & ~TAG_THREADNAME;
3281 continue;
3282 }
3283 if (tag == TAG_DISPLAY)
3284 {
3285 pkt = unpack_string (pkt, &info->display[0], length);
3286 mask = mask & ~TAG_DISPLAY;
3287 continue;
3288 }
3289 if (tag == TAG_MOREDISPLAY)
3290 {
3291 pkt = unpack_string (pkt, &info->more_display[0], length);
3292 mask = mask & ~TAG_MOREDISPLAY;
3293 continue;
3294 }
8a3fe4f8 3295 warning (_("ERROR RMT: unknown thread info tag."));
23860348 3296 break; /* Not a tag we know about. */
c906108c
SS
3297 }
3298 return retval;
3299}
3300
6b8edb51
PA
3301int
3302remote_target::remote_get_threadinfo (threadref *threadid,
3303 int fieldset,
3304 gdb_ext_thread_info *info)
c906108c 3305{
d01949b6 3306 struct remote_state *rs = get_remote_state ();
c906108c 3307 int result;
c906108c 3308
8d64371b 3309 pack_threadinfo_request (rs->buf.data (), fieldset, threadid);
2e9f7625 3310 putpkt (rs->buf);
8d64371b 3311 getpkt (&rs->buf, 0);
3084dd77
PA
3312
3313 if (rs->buf[0] == '\0')
3314 return 0;
3315
8d64371b 3316 result = remote_unpack_thread_info_response (&rs->buf[2],
23860348 3317 threadid, info);
c906108c
SS
3318 return result;
3319}
3320
c906108c
SS
3321/* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
3322
3323static char *
fba45db2
KB
3324pack_threadlist_request (char *pkt, int startflag, int threadcount,
3325 threadref *nextthread)
c906108c
SS
3326{
3327 *pkt++ = 'q'; /* info query packet */
3328 *pkt++ = 'L'; /* Process LIST or threadLIST request */
23860348 3329 pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */
c906108c
SS
3330 pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */
3331 pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */
3332 *pkt = '\0';
3333 return pkt;
3334}
3335
3336/* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
3337
6b8edb51
PA
3338int
3339remote_target::parse_threadlist_response (char *pkt, int result_limit,
3340 threadref *original_echo,
3341 threadref *resultlist,
3342 int *doneflag)
c906108c 3343{
d01949b6 3344 struct remote_state *rs = get_remote_state ();
c906108c
SS
3345 char *limit;
3346 int count, resultcount, done;
3347
3348 resultcount = 0;
3349 /* Assume the 'q' and 'M chars have been stripped. */
8d64371b 3350 limit = pkt + (rs->buf.size () - BUF_THREAD_ID_SIZE);
23860348 3351 /* done parse past here */
c906108c
SS
3352 pkt = unpack_byte (pkt, &count); /* count field */
3353 pkt = unpack_nibble (pkt, &done);
3354 /* The first threadid is the argument threadid. */
3355 pkt = unpack_threadid (pkt, original_echo); /* should match query packet */
3356 while ((count-- > 0) && (pkt < limit))
3357 {
3358 pkt = unpack_threadid (pkt, resultlist++);
3359 if (resultcount++ >= result_limit)
3360 break;
3361 }
3362 if (doneflag)
3363 *doneflag = done;
3364 return resultcount;
3365}
3366
6dc54d91
PA
3367/* Fetch the next batch of threads from the remote. Returns -1 if the
3368 qL packet is not supported, 0 on error and 1 on success. */
3369
6b8edb51
PA
3370int
3371remote_target::remote_get_threadlist (int startflag, threadref *nextthread,
3372 int result_limit, int *done, int *result_count,
3373 threadref *threadlist)
c906108c 3374{
d01949b6 3375 struct remote_state *rs = get_remote_state ();
c906108c
SS
3376 int result = 1;
3377
405feb71 3378 /* Truncate result limit to be smaller than the packet size. */
3e43a32a
MS
3379 if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10)
3380 >= get_remote_packet_size ())
ea9c271d 3381 result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2;
c906108c 3382
8d64371b
TT
3383 pack_threadlist_request (rs->buf.data (), startflag, result_limit,
3384 nextthread);
6d820c5c 3385 putpkt (rs->buf);
8d64371b
TT
3386 getpkt (&rs->buf, 0);
3387 if (rs->buf[0] == '\0')
6dc54d91
PA
3388 {
3389 /* Packet not supported. */
3390 return -1;
3391 }
3392
3393 *result_count =
8d64371b 3394 parse_threadlist_response (&rs->buf[2], result_limit,
6dc54d91 3395 &rs->echo_nextthread, threadlist, done);
c906108c 3396
0d031856 3397 if (!threadmatch (&rs->echo_nextthread, nextthread))
c906108c 3398 {
23860348 3399 /* FIXME: This is a good reason to drop the packet. */
405feb71
TV
3400 /* Possibly, there is a duplicate response. */
3401 /* Possibilities :
c906108c
SS
3402 retransmit immediatly - race conditions
3403 retransmit after timeout - yes
3404 exit
3405 wait for packet, then exit
3406 */
8a3fe4f8 3407 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
23860348 3408 return 0; /* I choose simply exiting. */
c906108c
SS
3409 }
3410 if (*result_count <= 0)
3411 {
3412 if (*done != 1)
3413 {
8a3fe4f8 3414 warning (_("RMT ERROR : failed to get remote thread list."));
c906108c
SS
3415 result = 0;
3416 }
3417 return result; /* break; */
3418 }
3419 if (*result_count > result_limit)
3420 {
3421 *result_count = 0;
8a3fe4f8 3422 warning (_("RMT ERROR: threadlist response longer than requested."));
c906108c
SS
3423 return 0;
3424 }
3425 return result;
3426}
3427
6dc54d91
PA
3428/* Fetch the list of remote threads, with the qL packet, and call
3429 STEPFUNCTION for each thread found. Stops iterating and returns 1
3430 if STEPFUNCTION returns true. Stops iterating and returns 0 if the
3431 STEPFUNCTION returns false. If the packet is not supported,
3432 returns -1. */
c906108c 3433
6b8edb51
PA
3434int
3435remote_target::remote_threadlist_iterator (rmt_thread_action stepfunction,
3436 void *context, int looplimit)
c906108c 3437{
0d031856 3438 struct remote_state *rs = get_remote_state ();
c906108c
SS
3439 int done, i, result_count;
3440 int startflag = 1;
3441 int result = 1;
3442 int loopcount = 0;
c906108c
SS
3443
3444 done = 0;
3445 while (!done)
3446 {
3447 if (loopcount++ > looplimit)
3448 {
3449 result = 0;
8a3fe4f8 3450 warning (_("Remote fetch threadlist -infinite loop-."));
c906108c
SS
3451 break;
3452 }
6dc54d91
PA
3453 result = remote_get_threadlist (startflag, &rs->nextthread,
3454 MAXTHREADLISTRESULTS,
3455 &done, &result_count,
3456 rs->resultthreadlist);
3457 if (result <= 0)
3458 break;
23860348 3459 /* Clear for later iterations. */
c906108c
SS
3460 startflag = 0;
3461 /* Setup to resume next batch of thread references, set nextthread. */
3462 if (result_count >= 1)
0d031856
TT
3463 copy_threadref (&rs->nextthread,
3464 &rs->resultthreadlist[result_count - 1]);
c906108c
SS
3465 i = 0;
3466 while (result_count--)
6dc54d91
PA
3467 {
3468 if (!(*stepfunction) (&rs->resultthreadlist[i++], context))
3469 {
3470 result = 0;
3471 break;
3472 }
3473 }
c906108c
SS
3474 }
3475 return result;
3476}
3477
6dc54d91
PA
3478/* A thread found on the remote target. */
3479
21fe1c75 3480struct thread_item
6dc54d91 3481{
21fe1c75
SM
3482 explicit thread_item (ptid_t ptid_)
3483 : ptid (ptid_)
3484 {}
3485
3486 thread_item (thread_item &&other) = default;
3487 thread_item &operator= (thread_item &&other) = default;
3488
3489 DISABLE_COPY_AND_ASSIGN (thread_item);
3490
6dc54d91
PA
3491 /* The thread's PTID. */
3492 ptid_t ptid;
3493
21fe1c75
SM
3494 /* The thread's extra info. */
3495 std::string extra;
6dc54d91 3496
21fe1c75
SM
3497 /* The thread's name. */
3498 std::string name;
79efa585 3499
6dc54d91 3500 /* The core the thread was running on. -1 if not known. */
21fe1c75 3501 int core = -1;
f6327dcb
KB
3502
3503 /* The thread handle associated with the thread. */
21fe1c75 3504 gdb::byte_vector thread_handle;
21fe1c75 3505};
6dc54d91
PA
3506
3507/* Context passed around to the various methods listing remote
3508 threads. As new threads are found, they're added to the ITEMS
3509 vector. */
3510
3511struct threads_listing_context
3512{
21fe1c75
SM
3513 /* Return true if this object contains an entry for a thread with ptid
3514 PTID. */
6dc54d91 3515
21fe1c75
SM
3516 bool contains_thread (ptid_t ptid) const
3517 {
3518 auto match_ptid = [&] (const thread_item &item)
3519 {
3520 return item.ptid == ptid;
3521 };
80134cf5 3522
21fe1c75
SM
3523 auto it = std::find_if (this->items.begin (),
3524 this->items.end (),
3525 match_ptid);
80134cf5 3526
21fe1c75
SM
3527 return it != this->items.end ();
3528 }
80134cf5 3529
21fe1c75 3530 /* Remove the thread with ptid PTID. */
80134cf5 3531
21fe1c75
SM
3532 void remove_thread (ptid_t ptid)
3533 {
3534 auto match_ptid = [&] (const thread_item &item)
3535 {
3536 return item.ptid == ptid;
3537 };
cbb8991c 3538
21fe1c75
SM
3539 auto it = std::remove_if (this->items.begin (),
3540 this->items.end (),
3541 match_ptid);
cbb8991c 3542
21fe1c75
SM
3543 if (it != this->items.end ())
3544 this->items.erase (it);
3545 }
3546
3547 /* The threads found on the remote target. */
3548 std::vector<thread_item> items;
3549};
cbb8991c 3550
c906108c 3551static int
6dc54d91 3552remote_newthread_step (threadref *ref, void *data)
c906108c 3553{
19ba03f4
SM
3554 struct threads_listing_context *context
3555 = (struct threads_listing_context *) data;
21fe1c75
SM
3556 int pid = inferior_ptid.pid ();
3557 int lwp = threadref_to_int (ref);
3558 ptid_t ptid (pid, lwp);
6dc54d91 3559
21fe1c75 3560 context->items.emplace_back (ptid);
6dc54d91 3561
c906108c
SS
3562 return 1; /* continue iterator */
3563}
3564
3565#define CRAZY_MAX_THREADS 1000
3566
6b8edb51
PA
3567ptid_t
3568remote_target::remote_current_thread (ptid_t oldpid)
c906108c 3569{
d01949b6 3570 struct remote_state *rs = get_remote_state ();
c906108c
SS
3571
3572 putpkt ("qC");
8d64371b 3573 getpkt (&rs->buf, 0);
2e9f7625 3574 if (rs->buf[0] == 'Q' && rs->buf[1] == 'C')
c9f35b34 3575 {
256642e8 3576 const char *obuf;
c9f35b34
KB
3577 ptid_t result;
3578
3579 result = read_ptid (&rs->buf[2], &obuf);
3580 if (*obuf != '\0' && remote_debug)
3581 fprintf_unfiltered (gdb_stdlog,
3582 "warning: garbage in qC reply\n");
3583
3584 return result;
3585 }
c906108c
SS
3586 else
3587 return oldpid;
3588}
3589
6dc54d91 3590/* List remote threads using the deprecated qL packet. */
cce74817 3591
6b8edb51
PA
3592int
3593remote_target::remote_get_threads_with_ql (threads_listing_context *context)
c906108c 3594{
6dc54d91
PA
3595 if (remote_threadlist_iterator (remote_newthread_step, context,
3596 CRAZY_MAX_THREADS) >= 0)
3597 return 1;
3598
3599 return 0;
c906108c
SS
3600}
3601
dc146f7c
VP
3602#if defined(HAVE_LIBEXPAT)
3603
dc146f7c
VP
3604static void
3605start_thread (struct gdb_xml_parser *parser,
3606 const struct gdb_xml_element *element,
4d0fdd9b
SM
3607 void *user_data,
3608 std::vector<gdb_xml_value> &attributes)
dc146f7c 3609{
19ba03f4
SM
3610 struct threads_listing_context *data
3611 = (struct threads_listing_context *) user_data;
3d2c1d41 3612 struct gdb_xml_value *attr;
dc146f7c 3613
4d0fdd9b 3614 char *id = (char *) xml_find_attribute (attributes, "id")->value.get ();
21fe1c75
SM
3615 ptid_t ptid = read_ptid (id, NULL);
3616
3617 data->items.emplace_back (ptid);
3618 thread_item &item = data->items.back ();
dc146f7c 3619
3d2c1d41
PA
3620 attr = xml_find_attribute (attributes, "core");
3621 if (attr != NULL)
4d0fdd9b 3622 item.core = *(ULONGEST *) attr->value.get ();
dc146f7c 3623
79efa585 3624 attr = xml_find_attribute (attributes, "name");
21fe1c75 3625 if (attr != NULL)
4d0fdd9b 3626 item.name = (const char *) attr->value.get ();
79efa585 3627
f6327dcb
KB
3628 attr = xml_find_attribute (attributes, "handle");
3629 if (attr != NULL)
4d0fdd9b 3630 item.thread_handle = hex2bin ((const char *) attr->value.get ());
dc146f7c
VP
3631}
3632
3633static void
3634end_thread (struct gdb_xml_parser *parser,
3635 const struct gdb_xml_element *element,
3636 void *user_data, const char *body_text)
3637{
19ba03f4
SM
3638 struct threads_listing_context *data
3639 = (struct threads_listing_context *) user_data;
dc146f7c 3640
21fe1c75
SM
3641 if (body_text != NULL && *body_text != '\0')
3642 data->items.back ().extra = body_text;
dc146f7c
VP
3643}
3644
3645const struct gdb_xml_attribute thread_attributes[] = {
3646 { "id", GDB_XML_AF_NONE, NULL, NULL },
3647 { "core", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
79efa585 3648 { "name", GDB_XML_AF_OPTIONAL, NULL, NULL },
f6327dcb 3649 { "handle", GDB_XML_AF_OPTIONAL, NULL, NULL },
dc146f7c
VP
3650 { NULL, GDB_XML_AF_NONE, NULL, NULL }
3651};
3652
3653const struct gdb_xml_element thread_children[] = {
3654 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3655};
3656
3657const struct gdb_xml_element threads_children[] = {
3658 { "thread", thread_attributes, thread_children,
3659 GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL,
3660 start_thread, end_thread },
3661 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3662};
3663
3664const struct gdb_xml_element threads_elements[] = {
3665 { "threads", NULL, threads_children,
3666 GDB_XML_EF_NONE, NULL, NULL },
3667 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3668};
3669
3670#endif
3671
6dc54d91 3672/* List remote threads using qXfer:threads:read. */
9d1f7ab2 3673
6b8edb51
PA
3674int
3675remote_target::remote_get_threads_with_qxfer (threads_listing_context *context)
0f71a2f6 3676{
dc146f7c 3677#if defined(HAVE_LIBEXPAT)
4082afcc 3678 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
dc146f7c 3679 {
9018be22 3680 gdb::optional<gdb::char_vector> xml
6b8edb51 3681 = target_read_stralloc (this, TARGET_OBJECT_THREADS, NULL);
efc0eabd 3682
9018be22 3683 if (xml && (*xml)[0] != '\0')
dc146f7c 3684 {
6dc54d91 3685 gdb_xml_parse_quick (_("threads"), "threads.dtd",
9018be22 3686 threads_elements, xml->data (), context);
dc146f7c
VP
3687 }
3688
6dc54d91 3689 return 1;
dc146f7c
VP
3690 }
3691#endif
3692
6dc54d91
PA
3693 return 0;
3694}
3695
3696/* List remote threads using qfThreadInfo/qsThreadInfo. */
3697
6b8edb51
PA
3698int
3699remote_target::remote_get_threads_with_qthreadinfo (threads_listing_context *context)
6dc54d91
PA
3700{
3701 struct remote_state *rs = get_remote_state ();
3702
b80fafe3 3703 if (rs->use_threadinfo_query)
9d1f7ab2 3704 {
256642e8 3705 const char *bufp;
6dc54d91 3706
9d1f7ab2 3707 putpkt ("qfThreadInfo");
8d64371b
TT
3708 getpkt (&rs->buf, 0);
3709 bufp = rs->buf.data ();
9d1f7ab2 3710 if (bufp[0] != '\0') /* q packet recognized */
802188a7 3711 {
9d1f7ab2
MS
3712 while (*bufp++ == 'm') /* reply contains one or more TID */
3713 {
3714 do
3715 {
21fe1c75
SM
3716 ptid_t ptid = read_ptid (bufp, &bufp);
3717 context->items.emplace_back (ptid);
9d1f7ab2
MS
3718 }
3719 while (*bufp++ == ','); /* comma-separated list */
3720 putpkt ("qsThreadInfo");
8d64371b
TT
3721 getpkt (&rs->buf, 0);
3722 bufp = rs->buf.data ();
9d1f7ab2 3723 }
6dc54d91
PA
3724 return 1;
3725 }
3726 else
3727 {
3728 /* Packet not recognized. */
3729 rs->use_threadinfo_query = 0;
9d1f7ab2
MS
3730 }
3731 }
3732
6dc54d91
PA
3733 return 0;
3734}
3735
e8032dde 3736/* Implement the to_update_thread_list function for the remote
6dc54d91
PA
3737 targets. */
3738
f6ac5f3d
PA
3739void
3740remote_target::update_thread_list ()
6dc54d91 3741{
6dc54d91 3742 struct threads_listing_context context;
ab970af1 3743 int got_list = 0;
e8032dde 3744
6dc54d91
PA
3745 /* We have a few different mechanisms to fetch the thread list. Try
3746 them all, starting with the most preferred one first, falling
3747 back to older methods. */
6b8edb51
PA
3748 if (remote_get_threads_with_qxfer (&context)
3749 || remote_get_threads_with_qthreadinfo (&context)
3750 || remote_get_threads_with_ql (&context))
6dc54d91 3751 {
ab970af1
PA
3752 got_list = 1;
3753
21fe1c75 3754 if (context.items.empty ()
f6ac5f3d 3755 && remote_thread_always_alive (inferior_ptid))
7d1a114c
PA
3756 {
3757 /* Some targets don't really support threads, but still
3758 reply an (empty) thread list in response to the thread
3759 listing packets, instead of replying "packet not
3760 supported". Exit early so we don't delete the main
3761 thread. */
7d1a114c
PA
3762 return;
3763 }
3764
ab970af1
PA
3765 /* CONTEXT now holds the current thread list on the remote
3766 target end. Delete GDB-side threads no longer found on the
3767 target. */
08036331 3768 for (thread_info *tp : all_threads_safe ())
cbb8991c 3769 {
21fe1c75 3770 if (!context.contains_thread (tp->ptid))
ab970af1
PA
3771 {
3772 /* Not found. */
00431a78 3773 delete_thread (tp);
ab970af1 3774 }
cbb8991c
DB
3775 }
3776
3777 /* Remove any unreported fork child threads from CONTEXT so
3778 that we don't interfere with follow fork, which is where
3779 creation of such threads is handled. */
3780 remove_new_fork_children (&context);
74531fed 3781
ab970af1 3782 /* And now add threads we don't know about yet to our list. */
21fe1c75 3783 for (thread_item &item : context.items)
6dc54d91 3784 {
21fe1c75 3785 if (item.ptid != null_ptid)
6dc54d91 3786 {
6dc54d91 3787 /* In non-stop mode, we assume new found threads are
0d5b594f
PA
3788 executing until proven otherwise with a stop reply.
3789 In all-stop, we can only get here if all threads are
6dc54d91 3790 stopped. */
0d5b594f 3791 int executing = target_is_non_stop_p () ? 1 : 0;
6dc54d91 3792
21fe1c75 3793 remote_notice_new_inferior (item.ptid, executing);
6dc54d91 3794
08036331 3795 thread_info *tp = find_thread_ptid (item.ptid);
00431a78 3796 remote_thread_info *info = get_remote_thread_info (tp);
21fe1c75 3797 info->core = item.core;
7aabaf9d
SM
3798 info->extra = std::move (item.extra);
3799 info->name = std::move (item.name);
3800 info->thread_handle = std::move (item.thread_handle);
6dc54d91
PA
3801 }
3802 }
3803 }
3804
ab970af1
PA
3805 if (!got_list)
3806 {
3807 /* If no thread listing method is supported, then query whether
3808 each known thread is alive, one by one, with the T packet.
3809 If the target doesn't support threads at all, then this is a
3810 no-op. See remote_thread_alive. */
3811 prune_threads ();
3812 }
9d1f7ab2
MS
3813}
3814
802188a7 3815/*
9d1f7ab2
MS
3816 * Collect a descriptive string about the given thread.
3817 * The target may say anything it wants to about the thread
3818 * (typically info about its blocked / runnable state, name, etc.).
3819 * This string will appear in the info threads display.
802188a7 3820 *
9d1f7ab2
MS
3821 * Optional: targets are not required to implement this function.
3822 */
3823
f6ac5f3d
PA
3824const char *
3825remote_target::extra_thread_info (thread_info *tp)
9d1f7ab2 3826{
d01949b6 3827 struct remote_state *rs = get_remote_state ();
9d1f7ab2
MS
3828 int set;
3829 threadref id;
3830 struct gdb_ext_thread_info threadinfo;
9d1f7ab2 3831
5d93a237 3832 if (rs->remote_desc == 0) /* paranoia */
8e65ff28 3833 internal_error (__FILE__, __LINE__,
e2e0b3e5 3834 _("remote_threads_extra_info"));
9d1f7ab2 3835
d7e15655 3836 if (tp->ptid == magic_null_ptid
e38504b3 3837 || (tp->ptid.pid () != 0 && tp->ptid.lwp () == 0))
60e569b9
PA
3838 /* This is the main thread which was added by GDB. The remote
3839 server doesn't know about it. */
3840 return NULL;
3841
c76a8ea3
PA
3842 std::string &extra = get_remote_thread_info (tp)->extra;
3843
3844 /* If already have cached info, use it. */
3845 if (!extra.empty ())
3846 return extra.c_str ();
3847
4082afcc 3848 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
dc146f7c 3849 {
c76a8ea3
PA
3850 /* If we're using qXfer:threads:read, then the extra info is
3851 included in the XML. So if we didn't have anything cached,
3852 it's because there's really no extra info. */
3853 return NULL;
dc146f7c
VP
3854 }
3855
b80fafe3 3856 if (rs->use_threadextra_query)
9d1f7ab2 3857 {
8d64371b
TT
3858 char *b = rs->buf.data ();
3859 char *endb = b + get_remote_packet_size ();
82f73884
PA
3860
3861 xsnprintf (b, endb - b, "qThreadExtraInfo,");
3862 b += strlen (b);
3863 write_ptid (b, endb, tp->ptid);
3864
2e9f7625 3865 putpkt (rs->buf);
8d64371b 3866 getpkt (&rs->buf, 0);
2e9f7625 3867 if (rs->buf[0] != 0)
9d1f7ab2 3868 {
8d64371b
TT
3869 extra.resize (strlen (rs->buf.data ()) / 2);
3870 hex2bin (rs->buf.data (), (gdb_byte *) &extra[0], extra.size ());
c76a8ea3 3871 return extra.c_str ();
9d1f7ab2 3872 }
0f71a2f6 3873 }
9d1f7ab2
MS
3874
3875 /* If the above query fails, fall back to the old method. */
b80fafe3 3876 rs->use_threadextra_query = 0;
9d1f7ab2
MS
3877 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
3878 | TAG_MOREDISPLAY | TAG_DISPLAY;
e38504b3 3879 int_to_threadref (&id, tp->ptid.lwp ());
9d1f7ab2
MS
3880 if (remote_get_threadinfo (&id, set, &threadinfo))
3881 if (threadinfo.active)
0f71a2f6 3882 {
9d1f7ab2 3883 if (*threadinfo.shortname)
c76a8ea3 3884 string_appendf (extra, " Name: %s", threadinfo.shortname);
9d1f7ab2 3885 if (*threadinfo.display)
c76a8ea3
PA
3886 {
3887 if (!extra.empty ())
3888 extra += ',';
3889 string_appendf (extra, " State: %s", threadinfo.display);
3890 }
9d1f7ab2 3891 if (*threadinfo.more_display)
c5aa993b 3892 {
c76a8ea3
PA
3893 if (!extra.empty ())
3894 extra += ',';
3895 string_appendf (extra, " Priority: %s", threadinfo.more_display);
c5aa993b 3896 }
c76a8ea3 3897 return extra.c_str ();
0f71a2f6 3898 }
9d1f7ab2 3899 return NULL;
0f71a2f6 3900}
c906108c 3901\f
c5aa993b 3902
f6ac5f3d
PA
3903bool
3904remote_target::static_tracepoint_marker_at (CORE_ADDR addr,
3905 struct static_tracepoint_marker *marker)
0fb4aa4b
PA
3906{
3907 struct remote_state *rs = get_remote_state ();
8d64371b 3908 char *p = rs->buf.data ();
0fb4aa4b 3909
bba74b36 3910 xsnprintf (p, get_remote_packet_size (), "qTSTMat:");
0fb4aa4b
PA
3911 p += strlen (p);
3912 p += hexnumstr (p, addr);
3913 putpkt (rs->buf);
8d64371b
TT
3914 getpkt (&rs->buf, 0);
3915 p = rs->buf.data ();
0fb4aa4b
PA
3916
3917 if (*p == 'E')
3918 error (_("Remote failure reply: %s"), p);
3919
3920 if (*p++ == 'm')
3921 {
256642e8 3922 parse_static_tracepoint_marker_definition (p, NULL, marker);
5d9310c4 3923 return true;
0fb4aa4b
PA
3924 }
3925
5d9310c4 3926 return false;
0fb4aa4b
PA
3927}
3928
f6ac5f3d
PA
3929std::vector<static_tracepoint_marker>
3930remote_target::static_tracepoint_markers_by_strid (const char *strid)
0fb4aa4b
PA
3931{
3932 struct remote_state *rs = get_remote_state ();
5d9310c4 3933 std::vector<static_tracepoint_marker> markers;
256642e8 3934 const char *p;
5d9310c4 3935 static_tracepoint_marker marker;
0fb4aa4b
PA
3936
3937 /* Ask for a first packet of static tracepoint marker
3938 definition. */
3939 putpkt ("qTfSTM");
8d64371b
TT
3940 getpkt (&rs->buf, 0);
3941 p = rs->buf.data ();
0fb4aa4b
PA
3942 if (*p == 'E')
3943 error (_("Remote failure reply: %s"), p);
3944
0fb4aa4b
PA
3945 while (*p++ == 'm')
3946 {
0fb4aa4b
PA
3947 do
3948 {
5d9310c4 3949 parse_static_tracepoint_marker_definition (p, &p, &marker);
0fb4aa4b 3950
5d9310c4
SM
3951 if (strid == NULL || marker.str_id == strid)
3952 markers.push_back (std::move (marker));
0fb4aa4b
PA
3953 }
3954 while (*p++ == ','); /* comma-separated list */
3955 /* Ask for another packet of static tracepoint definition. */
3956 putpkt ("qTsSTM");
8d64371b
TT
3957 getpkt (&rs->buf, 0);
3958 p = rs->buf.data ();
0fb4aa4b
PA
3959 }
3960
0fb4aa4b
PA
3961 return markers;
3962}
3963
3964\f
10760264
JB
3965/* Implement the to_get_ada_task_ptid function for the remote targets. */
3966
f6ac5f3d
PA
3967ptid_t
3968remote_target::get_ada_task_ptid (long lwp, long thread)
10760264 3969{
e99b03dc 3970 return ptid_t (inferior_ptid.pid (), lwp, 0);
10760264
JB
3971}
3972\f
3973
24b06219 3974/* Restart the remote side; this is an extended protocol operation. */
c906108c 3975
6b8edb51
PA
3976void
3977remote_target::extended_remote_restart ()
c906108c 3978{
d01949b6 3979 struct remote_state *rs = get_remote_state ();
c906108c
SS
3980
3981 /* Send the restart command; for reasons I don't understand the
3982 remote side really expects a number after the "R". */
8d64371b 3983 xsnprintf (rs->buf.data (), get_remote_packet_size (), "R%x", 0);
6d820c5c 3984 putpkt (rs->buf);
c906108c 3985
ad9a8f3f 3986 remote_fileio_reset ();
c906108c
SS
3987}
3988\f
3989/* Clean up connection to a remote debugger. */
3990
f6ac5f3d
PA
3991void
3992remote_target::close ()
c906108c 3993{
048094ac 3994 /* Make sure we leave stdin registered in the event loop. */
f6ac5f3d 3995 terminal_ours ();
ce5ce7ed 3996
ce5ce7ed 3997 /* We don't have a connection to the remote stub anymore. Get rid
f67fd822
PM
3998 of all the inferiors and their threads we were controlling.
3999 Reset inferior_ptid to null_ptid first, as otherwise has_stack_frame
4000 will be unable to find the thread corresponding to (pid, 0, 0). */
0f2caa1b 4001 inferior_ptid = null_ptid;
f67fd822 4002 discard_all_inferiors ();
ce5ce7ed 4003
6b8edb51
PA
4004 trace_reset_local_state ();
4005
4006 delete this;
4007}
4008
4009remote_target::~remote_target ()
4010{
4011 struct remote_state *rs = get_remote_state ();
4012
4013 /* Check for NULL because we may get here with a partially
4014 constructed target/connection. */
4015 if (rs->remote_desc == nullptr)
4016 return;
4017
4018 serial_close (rs->remote_desc);
4019
4020 /* We are destroying the remote target, so we should discard
f48ff2a7 4021 everything of this target. */
6b8edb51 4022 discard_pending_stop_replies_in_queue ();
74531fed 4023
6b8edb51
PA
4024 if (rs->remote_async_inferior_event_token)
4025 delete_async_event_handler (&rs->remote_async_inferior_event_token);
722247f1 4026
97dfbadd 4027 delete rs->notif_state;
c906108c
SS
4028}
4029
23860348 4030/* Query the remote side for the text, data and bss offsets. */
c906108c 4031
6b8edb51
PA
4032void
4033remote_target::get_offsets ()
c906108c 4034{
d01949b6 4035 struct remote_state *rs = get_remote_state ();
2e9f7625 4036 char *buf;
085dd6e6 4037 char *ptr;
31d99776
DJ
4038 int lose, num_segments = 0, do_sections, do_segments;
4039 CORE_ADDR text_addr, data_addr, bss_addr, segments[2];
c906108c 4040 struct section_offsets *offs;
31d99776
DJ
4041 struct symfile_segment_data *data;
4042
4043 if (symfile_objfile == NULL)
4044 return;
c906108c
SS
4045
4046 putpkt ("qOffsets");
8d64371b
TT
4047 getpkt (&rs->buf, 0);
4048 buf = rs->buf.data ();
c906108c
SS
4049
4050 if (buf[0] == '\000')
4051 return; /* Return silently. Stub doesn't support
23860348 4052 this command. */
c906108c
SS
4053 if (buf[0] == 'E')
4054 {
8a3fe4f8 4055 warning (_("Remote failure reply: %s"), buf);
c906108c
SS
4056 return;
4057 }
4058
4059 /* Pick up each field in turn. This used to be done with scanf, but
4060 scanf will make trouble if CORE_ADDR size doesn't match
4061 conversion directives correctly. The following code will work
4062 with any size of CORE_ADDR. */
4063 text_addr = data_addr = bss_addr = 0;
4064 ptr = buf;
4065 lose = 0;
4066
61012eef 4067 if (startswith (ptr, "Text="))
c906108c
SS
4068 {
4069 ptr += 5;
4070 /* Don't use strtol, could lose on big values. */
4071 while (*ptr && *ptr != ';')
4072 text_addr = (text_addr << 4) + fromhex (*ptr++);
c906108c 4073
61012eef 4074 if (startswith (ptr, ";Data="))
31d99776
DJ
4075 {
4076 ptr += 6;
4077 while (*ptr && *ptr != ';')
4078 data_addr = (data_addr << 4) + fromhex (*ptr++);
4079 }
4080 else
4081 lose = 1;
4082
61012eef 4083 if (!lose && startswith (ptr, ";Bss="))
31d99776
DJ
4084 {
4085 ptr += 5;
4086 while (*ptr && *ptr != ';')
4087 bss_addr = (bss_addr << 4) + fromhex (*ptr++);
c906108c 4088
31d99776
DJ
4089 if (bss_addr != data_addr)
4090 warning (_("Target reported unsupported offsets: %s"), buf);
4091 }
4092 else
4093 lose = 1;
4094 }
61012eef 4095 else if (startswith (ptr, "TextSeg="))
c906108c 4096 {
31d99776
DJ
4097 ptr += 8;
4098 /* Don't use strtol, could lose on big values. */
c906108c 4099 while (*ptr && *ptr != ';')
31d99776
DJ
4100 text_addr = (text_addr << 4) + fromhex (*ptr++);
4101 num_segments = 1;
4102
61012eef 4103 if (startswith (ptr, ";DataSeg="))
31d99776
DJ
4104 {
4105 ptr += 9;
4106 while (*ptr && *ptr != ';')
4107 data_addr = (data_addr << 4) + fromhex (*ptr++);
4108 num_segments++;
4109 }
c906108c
SS
4110 }
4111 else
4112 lose = 1;
4113
4114 if (lose)
8a3fe4f8 4115 error (_("Malformed response to offset query, %s"), buf);
31d99776
DJ
4116 else if (*ptr != '\0')
4117 warning (_("Target reported unsupported offsets: %s"), buf);
c906108c 4118
802188a7 4119 offs = ((struct section_offsets *)
a39a16c4 4120 alloca (SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections)));
802188a7 4121 memcpy (offs, symfile_objfile->section_offsets,
a39a16c4 4122 SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections));
c906108c 4123
31d99776
DJ
4124 data = get_symfile_segment_data (symfile_objfile->obfd);
4125 do_segments = (data != NULL);
4126 do_sections = num_segments == 0;
c906108c 4127
28c32713 4128 if (num_segments > 0)
31d99776 4129 {
31d99776
DJ
4130 segments[0] = text_addr;
4131 segments[1] = data_addr;
4132 }
28c32713
JB
4133 /* If we have two segments, we can still try to relocate everything
4134 by assuming that the .text and .data offsets apply to the whole
4135 text and data segments. Convert the offsets given in the packet
4136 to base addresses for symfile_map_offsets_to_segments. */
4137 else if (data && data->num_segments == 2)
4138 {
4139 segments[0] = data->segment_bases[0] + text_addr;
4140 segments[1] = data->segment_bases[1] + data_addr;
4141 num_segments = 2;
4142 }
8d385431
DJ
4143 /* If the object file has only one segment, assume that it is text
4144 rather than data; main programs with no writable data are rare,
4145 but programs with no code are useless. Of course the code might
4146 have ended up in the data segment... to detect that we would need
4147 the permissions here. */
4148 else if (data && data->num_segments == 1)
4149 {
4150 segments[0] = data->segment_bases[0] + text_addr;
4151 num_segments = 1;
4152 }
28c32713
JB
4153 /* There's no way to relocate by segment. */
4154 else
4155 do_segments = 0;
31d99776
DJ
4156
4157 if (do_segments)
4158 {
4159 int ret = symfile_map_offsets_to_segments (symfile_objfile->obfd, data,
4160 offs, num_segments, segments);
4161
4162 if (ret == 0 && !do_sections)
3e43a32a
MS
4163 error (_("Can not handle qOffsets TextSeg "
4164 "response with this symbol file"));
31d99776
DJ
4165
4166 if (ret > 0)
4167 do_sections = 0;
4168 }
c906108c 4169
9ef895d6
DJ
4170 if (data)
4171 free_symfile_segment_data (data);
31d99776
DJ
4172
4173 if (do_sections)
4174 {
4175 offs->offsets[SECT_OFF_TEXT (symfile_objfile)] = text_addr;
4176
3e43a32a
MS
4177 /* This is a temporary kludge to force data and bss to use the
4178 same offsets because that's what nlmconv does now. The real
4179 solution requires changes to the stub and remote.c that I
4180 don't have time to do right now. */
31d99776
DJ
4181
4182 offs->offsets[SECT_OFF_DATA (symfile_objfile)] = data_addr;
4183 offs->offsets[SECT_OFF_BSS (symfile_objfile)] = data_addr;
4184 }
c906108c
SS
4185
4186 objfile_relocate (symfile_objfile, offs);
4187}
4188
9a7071a8 4189/* Send interrupt_sequence to remote target. */
6b8edb51
PA
4190
4191void
4192remote_target::send_interrupt_sequence ()
9a7071a8 4193{
5d93a237
TT
4194 struct remote_state *rs = get_remote_state ();
4195
9a7071a8 4196 if (interrupt_sequence_mode == interrupt_sequence_control_c)
c33e31fd 4197 remote_serial_write ("\x03", 1);
9a7071a8 4198 else if (interrupt_sequence_mode == interrupt_sequence_break)
5d93a237 4199 serial_send_break (rs->remote_desc);
9a7071a8
JB
4200 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
4201 {
5d93a237 4202 serial_send_break (rs->remote_desc);
c33e31fd 4203 remote_serial_write ("g", 1);
9a7071a8
JB
4204 }
4205 else
4206 internal_error (__FILE__, __LINE__,
4207 _("Invalid value for interrupt_sequence_mode: %s."),
4208 interrupt_sequence_mode);
4209}
4210
3405876a
PA
4211
4212/* If STOP_REPLY is a T stop reply, look for the "thread" register,
4213 and extract the PTID. Returns NULL_PTID if not found. */
4214
4215static ptid_t
4216stop_reply_extract_thread (char *stop_reply)
4217{
4218 if (stop_reply[0] == 'T' && strlen (stop_reply) > 3)
4219 {
256642e8 4220 const char *p;
3405876a
PA
4221
4222 /* Txx r:val ; r:val (...) */
4223 p = &stop_reply[3];
4224
4225 /* Look for "register" named "thread". */
4226 while (*p != '\0')
4227 {
256642e8 4228 const char *p1;
3405876a
PA
4229
4230 p1 = strchr (p, ':');
4231 if (p1 == NULL)
4232 return null_ptid;
4233
4234 if (strncmp (p, "thread", p1 - p) == 0)
4235 return read_ptid (++p1, &p);
4236
4237 p1 = strchr (p, ';');
4238 if (p1 == NULL)
4239 return null_ptid;
4240 p1++;
4241
4242 p = p1;
4243 }
4244 }
4245
4246 return null_ptid;
4247}
4248
b7ea362b
PA
4249/* Determine the remote side's current thread. If we have a stop
4250 reply handy (in WAIT_STATUS), maybe it's a T stop reply with a
4251 "thread" register we can extract the current thread from. If not,
4252 ask the remote which is the current thread with qC. The former
4253 method avoids a roundtrip. */
4254
6b8edb51
PA
4255ptid_t
4256remote_target::get_current_thread (char *wait_status)
b7ea362b 4257{
6a49a997 4258 ptid_t ptid = null_ptid;
b7ea362b
PA
4259
4260 /* Note we don't use remote_parse_stop_reply as that makes use of
4261 the target architecture, which we haven't yet fully determined at
4262 this point. */
4263 if (wait_status != NULL)
4264 ptid = stop_reply_extract_thread (wait_status);
d7e15655 4265 if (ptid == null_ptid)
b7ea362b
PA
4266 ptid = remote_current_thread (inferior_ptid);
4267
4268 return ptid;
4269}
4270
49c62f2e
PA
4271/* Query the remote target for which is the current thread/process,
4272 add it to our tables, and update INFERIOR_PTID. The caller is
4273 responsible for setting the state such that the remote end is ready
3405876a
PA
4274 to return the current thread.
4275
4276 This function is called after handling the '?' or 'vRun' packets,
4277 whose response is a stop reply from which we can also try
4278 extracting the thread. If the target doesn't support the explicit
4279 qC query, we infer the current thread from that stop reply, passed
4280 in in WAIT_STATUS, which may be NULL. */
49c62f2e 4281
6b8edb51
PA
4282void
4283remote_target::add_current_inferior_and_thread (char *wait_status)
49c62f2e
PA
4284{
4285 struct remote_state *rs = get_remote_state ();
9ab8741a 4286 bool fake_pid_p = false;
49c62f2e
PA
4287
4288 inferior_ptid = null_ptid;
4289
b7ea362b 4290 /* Now, if we have thread information, update inferior_ptid. */
87215ad1 4291 ptid_t curr_ptid = get_current_thread (wait_status);
3405876a 4292
87215ad1 4293 if (curr_ptid != null_ptid)
49c62f2e
PA
4294 {
4295 if (!remote_multi_process_p (rs))
9ab8741a 4296 fake_pid_p = true;
49c62f2e
PA
4297 }
4298 else
4299 {
4300 /* Without this, some commands which require an active target
4301 (such as kill) won't work. This variable serves (at least)
4302 double duty as both the pid of the target process (if it has
4303 such), and as a flag indicating that a target is active. */
87215ad1 4304 curr_ptid = magic_null_ptid;
9ab8741a 4305 fake_pid_p = true;
49c62f2e
PA
4306 }
4307
e99b03dc 4308 remote_add_inferior (fake_pid_p, curr_ptid.pid (), -1, 1);
49c62f2e 4309
87215ad1
SDJ
4310 /* Add the main thread and switch to it. Don't try reading
4311 registers yet, since we haven't fetched the target description
4312 yet. */
4313 thread_info *tp = add_thread_silent (curr_ptid);
4314 switch_to_thread_no_regs (tp);
49c62f2e
PA
4315}
4316
6efcd9a8
PA
4317/* Print info about a thread that was found already stopped on
4318 connection. */
4319
4320static void
4321print_one_stopped_thread (struct thread_info *thread)
4322{
4323 struct target_waitstatus *ws = &thread->suspend.waitstatus;
4324
00431a78 4325 switch_to_thread (thread);
f2ffa92b 4326 thread->suspend.stop_pc = get_frame_pc (get_current_frame ());
6efcd9a8
PA
4327 set_current_sal_from_frame (get_current_frame ());
4328
4329 thread->suspend.waitstatus_pending_p = 0;
4330
4331 if (ws->kind == TARGET_WAITKIND_STOPPED)
4332 {
4333 enum gdb_signal sig = ws->value.sig;
4334
4335 if (signal_print_state (sig))
76727919 4336 gdb::observers::signal_received.notify (sig);
6efcd9a8 4337 }
76727919 4338 gdb::observers::normal_stop.notify (NULL, 1);
6efcd9a8
PA
4339}
4340
221e1a37
PA
4341/* Process all initial stop replies the remote side sent in response
4342 to the ? packet. These indicate threads that were already stopped
4343 on initial connection. We mark these threads as stopped and print
4344 their current frame before giving the user the prompt. */
4345
6b8edb51
PA
4346void
4347remote_target::process_initial_stop_replies (int from_tty)
221e1a37
PA
4348{
4349 int pending_stop_replies = stop_reply_queue_length ();
6efcd9a8
PA
4350 struct thread_info *selected = NULL;
4351 struct thread_info *lowest_stopped = NULL;
4352 struct thread_info *first = NULL;
221e1a37
PA
4353
4354 /* Consume the initial pending events. */
4355 while (pending_stop_replies-- > 0)
4356 {
4357 ptid_t waiton_ptid = minus_one_ptid;
4358 ptid_t event_ptid;
4359 struct target_waitstatus ws;
4360 int ignore_event = 0;
4361
4362 memset (&ws, 0, sizeof (ws));
4363 event_ptid = target_wait (waiton_ptid, &ws, TARGET_WNOHANG);
4364 if (remote_debug)
4365 print_target_wait_results (waiton_ptid, event_ptid, &ws);
4366
4367 switch (ws.kind)
4368 {
4369 case TARGET_WAITKIND_IGNORE:
4370 case TARGET_WAITKIND_NO_RESUMED:
4371 case TARGET_WAITKIND_SIGNALLED:
4372 case TARGET_WAITKIND_EXITED:
4373 /* We shouldn't see these, but if we do, just ignore. */
4374 if (remote_debug)
4375 fprintf_unfiltered (gdb_stdlog, "remote: event ignored\n");
4376 ignore_event = 1;
4377 break;
4378
4379 case TARGET_WAITKIND_EXECD:
4380 xfree (ws.value.execd_pathname);
4381 break;
4382 default:
4383 break;
4384 }
4385
4386 if (ignore_event)
4387 continue;
4388
b926417a 4389 struct thread_info *evthread = find_thread_ptid (event_ptid);
221e1a37
PA
4390
4391 if (ws.kind == TARGET_WAITKIND_STOPPED)
4392 {
4393 enum gdb_signal sig = ws.value.sig;
4394
4395 /* Stubs traditionally report SIGTRAP as initial signal,
4396 instead of signal 0. Suppress it. */
4397 if (sig == GDB_SIGNAL_TRAP)
4398 sig = GDB_SIGNAL_0;
b926417a 4399 evthread->suspend.stop_signal = sig;
6efcd9a8
PA
4400 ws.value.sig = sig;
4401 }
221e1a37 4402
b926417a 4403 evthread->suspend.waitstatus = ws;
6efcd9a8
PA
4404
4405 if (ws.kind != TARGET_WAITKIND_STOPPED
4406 || ws.value.sig != GDB_SIGNAL_0)
b926417a 4407 evthread->suspend.waitstatus_pending_p = 1;
6efcd9a8
PA
4408
4409 set_executing (event_ptid, 0);
4410 set_running (event_ptid, 0);
b926417a 4411 get_remote_thread_info (evthread)->vcont_resumed = 0;
6efcd9a8
PA
4412 }
4413
4414 /* "Notice" the new inferiors before anything related to
4415 registers/memory. */
08036331 4416 for (inferior *inf : all_non_exited_inferiors ())
6efcd9a8 4417 {
6efcd9a8
PA
4418 inf->needs_setup = 1;
4419
4420 if (non_stop)
4421 {
08036331 4422 thread_info *thread = any_live_thread_of_inferior (inf);
00431a78 4423 notice_new_inferior (thread, thread->state == THREAD_RUNNING,
6efcd9a8
PA
4424 from_tty);
4425 }
4426 }
4427
4428 /* If all-stop on top of non-stop, pause all threads. Note this
4429 records the threads' stop pc, so must be done after "noticing"
4430 the inferiors. */
4431 if (!non_stop)
4432 {
4433 stop_all_threads ();
4434
4435 /* If all threads of an inferior were already stopped, we
4436 haven't setup the inferior yet. */
08036331 4437 for (inferior *inf : all_non_exited_inferiors ())
6efcd9a8 4438 {
6efcd9a8
PA
4439 if (inf->needs_setup)
4440 {
08036331 4441 thread_info *thread = any_live_thread_of_inferior (inf);
6efcd9a8
PA
4442 switch_to_thread_no_regs (thread);
4443 setup_inferior (0);
4444 }
4445 }
221e1a37 4446 }
6efcd9a8
PA
4447
4448 /* Now go over all threads that are stopped, and print their current
4449 frame. If all-stop, then if there's a signalled thread, pick
4450 that as current. */
08036331 4451 for (thread_info *thread : all_non_exited_threads ())
6efcd9a8 4452 {
6efcd9a8
PA
4453 if (first == NULL)
4454 first = thread;
4455
4456 if (!non_stop)
00431a78 4457 thread->set_running (false);
6efcd9a8
PA
4458 else if (thread->state != THREAD_STOPPED)
4459 continue;
4460
6efcd9a8
PA
4461 if (selected == NULL
4462 && thread->suspend.waitstatus_pending_p)
4463 selected = thread;
4464
5d5658a1
PA
4465 if (lowest_stopped == NULL
4466 || thread->inf->num < lowest_stopped->inf->num
4467 || thread->per_inf_num < lowest_stopped->per_inf_num)
6efcd9a8
PA
4468 lowest_stopped = thread;
4469
4470 if (non_stop)
4471 print_one_stopped_thread (thread);
4472 }
4473
4474 /* In all-stop, we only print the status of one thread, and leave
4475 others with their status pending. */
4476 if (!non_stop)
4477 {
08036331 4478 thread_info *thread = selected;
6efcd9a8
PA
4479 if (thread == NULL)
4480 thread = lowest_stopped;
4481 if (thread == NULL)
4482 thread = first;
4483
4484 print_one_stopped_thread (thread);
4485 }
4486
4487 /* For "info program". */
08036331 4488 thread_info *thread = inferior_thread ();
6efcd9a8
PA
4489 if (thread->state == THREAD_STOPPED)
4490 set_last_target_status (inferior_ptid, thread->suspend.waitstatus);
221e1a37
PA
4491}
4492
048094ac
PA
4493/* Start the remote connection and sync state. */
4494
f6ac5f3d
PA
4495void
4496remote_target::start_remote (int from_tty, int extended_p)
c906108c 4497{
c8d104ad
PA
4498 struct remote_state *rs = get_remote_state ();
4499 struct packet_config *noack_config;
2d717e4f 4500 char *wait_status = NULL;
8621d6a9 4501
048094ac
PA
4502 /* Signal other parts that we're going through the initial setup,
4503 and so things may not be stable yet. E.g., we don't try to
4504 install tracepoints until we've relocated symbols. Also, a
4505 Ctrl-C before we're connected and synced up can't interrupt the
4506 target. Instead, it offers to drop the (potentially wedged)
4507 connection. */
4508 rs->starting_up = 1;
4509
522002f9 4510 QUIT;
c906108c 4511
9a7071a8
JB
4512 if (interrupt_on_connect)
4513 send_interrupt_sequence ();
4514
57e12211 4515 /* Ack any packet which the remote side has already sent. */
048094ac 4516 remote_serial_write ("+", 1);
1e51243a 4517
c8d104ad
PA
4518 /* The first packet we send to the target is the optional "supported
4519 packets" request. If the target can answer this, it will tell us
4520 which later probes to skip. */
4521 remote_query_supported ();
4522
d914c394 4523 /* If the stub wants to get a QAllow, compose one and send it. */
4082afcc 4524 if (packet_support (PACKET_QAllow) != PACKET_DISABLE)
f6ac5f3d 4525 set_permissions ();
d914c394 4526
57809e5e
JK
4527 /* gdbserver < 7.7 (before its fix from 2013-12-11) did reply to any
4528 unknown 'v' packet with string "OK". "OK" gets interpreted by GDB
4529 as a reply to known packet. For packet "vFile:setfs:" it is an
4530 invalid reply and GDB would return error in
4531 remote_hostio_set_filesystem, making remote files access impossible.
4532 Disable "vFile:setfs:" in such case. Do not disable other 'v' packets as
4533 other "vFile" packets get correctly detected even on gdbserver < 7.7. */
4534 {
4535 const char v_mustreplyempty[] = "vMustReplyEmpty";
4536
4537 putpkt (v_mustreplyempty);
8d64371b
TT
4538 getpkt (&rs->buf, 0);
4539 if (strcmp (rs->buf.data (), "OK") == 0)
57809e5e 4540 remote_protocol_packets[PACKET_vFile_setfs].support = PACKET_DISABLE;
8d64371b 4541 else if (strcmp (rs->buf.data (), "") != 0)
57809e5e 4542 error (_("Remote replied unexpectedly to '%s': %s"), v_mustreplyempty,
8d64371b 4543 rs->buf.data ());
57809e5e
JK
4544 }
4545
c8d104ad
PA
4546 /* Next, we possibly activate noack mode.
4547
4548 If the QStartNoAckMode packet configuration is set to AUTO,
4549 enable noack mode if the stub reported a wish for it with
4550 qSupported.
4551
4552 If set to TRUE, then enable noack mode even if the stub didn't
4553 report it in qSupported. If the stub doesn't reply OK, the
4554 session ends with an error.
4555
4556 If FALSE, then don't activate noack mode, regardless of what the
4557 stub claimed should be the default with qSupported. */
4558
4559 noack_config = &remote_protocol_packets[PACKET_QStartNoAckMode];
4082afcc 4560 if (packet_config_support (noack_config) != PACKET_DISABLE)
c8d104ad
PA
4561 {
4562 putpkt ("QStartNoAckMode");
8d64371b 4563 getpkt (&rs->buf, 0);
c8d104ad
PA
4564 if (packet_ok (rs->buf, noack_config) == PACKET_OK)
4565 rs->noack_mode = 1;
4566 }
4567
04bd08de 4568 if (extended_p)
5fe04517
PA
4569 {
4570 /* Tell the remote that we are using the extended protocol. */
4571 putpkt ("!");
8d64371b 4572 getpkt (&rs->buf, 0);
5fe04517
PA
4573 }
4574
9b224c5e
PA
4575 /* Let the target know which signals it is allowed to pass down to
4576 the program. */
4577 update_signals_program_target ();
4578
d962ef82
DJ
4579 /* Next, if the target can specify a description, read it. We do
4580 this before anything involving memory or registers. */
4581 target_find_description ();
4582
6c95b8df
PA
4583 /* Next, now that we know something about the target, update the
4584 address spaces in the program spaces. */
4585 update_address_spaces ();
4586
50c71eaf
PA
4587 /* On OSs where the list of libraries is global to all
4588 processes, we fetch them early. */
f5656ead 4589 if (gdbarch_has_global_solist (target_gdbarch ()))
e696b3ad 4590 solib_add (NULL, from_tty, auto_solib_add);
50c71eaf 4591
6efcd9a8 4592 if (target_is_non_stop_p ())
74531fed 4593 {
4082afcc 4594 if (packet_support (PACKET_QNonStop) != PACKET_ENABLE)
3e43a32a
MS
4595 error (_("Non-stop mode requested, but remote "
4596 "does not support non-stop"));
74531fed
PA
4597
4598 putpkt ("QNonStop:1");
8d64371b 4599 getpkt (&rs->buf, 0);
74531fed 4600
8d64371b
TT
4601 if (strcmp (rs->buf.data (), "OK") != 0)
4602 error (_("Remote refused setting non-stop mode with: %s"),
4603 rs->buf.data ());
74531fed
PA
4604
4605 /* Find about threads and processes the stub is already
4606 controlling. We default to adding them in the running state.
4607 The '?' query below will then tell us about which threads are
4608 stopped. */
f6ac5f3d 4609 this->update_thread_list ();
74531fed 4610 }
4082afcc 4611 else if (packet_support (PACKET_QNonStop) == PACKET_ENABLE)
74531fed
PA
4612 {
4613 /* Don't assume that the stub can operate in all-stop mode.
e6f3fa52 4614 Request it explicitly. */
74531fed 4615 putpkt ("QNonStop:0");
8d64371b 4616 getpkt (&rs->buf, 0);
74531fed 4617
8d64371b
TT
4618 if (strcmp (rs->buf.data (), "OK") != 0)
4619 error (_("Remote refused setting all-stop mode with: %s"),
4620 rs->buf.data ());
74531fed
PA
4621 }
4622
a0743c90
YQ
4623 /* Upload TSVs regardless of whether the target is running or not. The
4624 remote stub, such as GDBserver, may have some predefined or builtin
4625 TSVs, even if the target is not running. */
f6ac5f3d 4626 if (get_trace_status (current_trace_status ()) != -1)
a0743c90
YQ
4627 {
4628 struct uploaded_tsv *uploaded_tsvs = NULL;
4629
f6ac5f3d 4630 upload_trace_state_variables (&uploaded_tsvs);
a0743c90
YQ
4631 merge_uploaded_trace_state_variables (&uploaded_tsvs);
4632 }
4633
2d717e4f
DJ
4634 /* Check whether the target is running now. */
4635 putpkt ("?");
8d64371b 4636 getpkt (&rs->buf, 0);
2d717e4f 4637
6efcd9a8 4638 if (!target_is_non_stop_p ())
2d717e4f 4639 {
74531fed 4640 if (rs->buf[0] == 'W' || rs->buf[0] == 'X')
2d717e4f 4641 {
04bd08de 4642 if (!extended_p)
74531fed 4643 error (_("The target is not running (try extended-remote?)"));
c35b1492
PA
4644
4645 /* We're connected, but not running. Drop out before we
4646 call start_remote. */
e278ad5b 4647 rs->starting_up = 0;
c35b1492 4648 return;
2d717e4f
DJ
4649 }
4650 else
74531fed 4651 {
74531fed 4652 /* Save the reply for later. */
8d64371b
TT
4653 wait_status = (char *) alloca (strlen (rs->buf.data ()) + 1);
4654 strcpy (wait_status, rs->buf.data ());
74531fed
PA
4655 }
4656
b7ea362b 4657 /* Fetch thread list. */
e8032dde 4658 target_update_thread_list ();
b7ea362b 4659
74531fed
PA
4660 /* Let the stub know that we want it to return the thread. */
4661 set_continue_thread (minus_one_ptid);
4662
b7ea362b
PA
4663 if (thread_count () == 0)
4664 {
4665 /* Target has no concept of threads at all. GDB treats
4666 non-threaded target as single-threaded; add a main
4667 thread. */
4668 add_current_inferior_and_thread (wait_status);
4669 }
4670 else
4671 {
4672 /* We have thread information; select the thread the target
4673 says should be current. If we're reconnecting to a
4674 multi-threaded program, this will ideally be the thread
4675 that last reported an event before GDB disconnected. */
4676 inferior_ptid = get_current_thread (wait_status);
d7e15655 4677 if (inferior_ptid == null_ptid)
b7ea362b
PA
4678 {
4679 /* Odd... The target was able to list threads, but not
4680 tell us which thread was current (no "thread"
4681 register in T stop reply?). Just pick the first
4682 thread in the thread list then. */
c9f35b34
KB
4683
4684 if (remote_debug)
4685 fprintf_unfiltered (gdb_stdlog,
4686 "warning: couldn't determine remote "
4687 "current thread; picking first in list.\n");
4688
08036331 4689 inferior_ptid = inferior_list->thread_list->ptid;
b7ea362b
PA
4690 }
4691 }
74531fed 4692
6e586cc5
YQ
4693 /* init_wait_for_inferior should be called before get_offsets in order
4694 to manage `inserted' flag in bp loc in a correct state.
4695 breakpoint_init_inferior, called from init_wait_for_inferior, set
4696 `inserted' flag to 0, while before breakpoint_re_set, called from
4697 start_remote, set `inserted' flag to 1. In the initialization of
4698 inferior, breakpoint_init_inferior should be called first, and then
4699 breakpoint_re_set can be called. If this order is broken, state of
4700 `inserted' flag is wrong, and cause some problems on breakpoint
4701 manipulation. */
4702 init_wait_for_inferior ();
4703
74531fed
PA
4704 get_offsets (); /* Get text, data & bss offsets. */
4705
d962ef82
DJ
4706 /* If we could not find a description using qXfer, and we know
4707 how to do it some other way, try again. This is not
4708 supported for non-stop; it could be, but it is tricky if
4709 there are no stopped threads when we connect. */
f6ac5f3d 4710 if (remote_read_description_p (this)
f5656ead 4711 && gdbarch_target_desc (target_gdbarch ()) == NULL)
d962ef82
DJ
4712 {
4713 target_clear_description ();
4714 target_find_description ();
4715 }
4716
74531fed
PA
4717 /* Use the previously fetched status. */
4718 gdb_assert (wait_status != NULL);
8d64371b 4719 strcpy (rs->buf.data (), wait_status);
74531fed
PA
4720 rs->cached_wait_status = 1;
4721
f6ac5f3d 4722 ::start_remote (from_tty); /* Initialize gdb process mechanisms. */
2d717e4f
DJ
4723 }
4724 else
4725 {
68c97600
PA
4726 /* Clear WFI global state. Do this before finding about new
4727 threads and inferiors, and setting the current inferior.
4728 Otherwise we would clear the proceed status of the current
4729 inferior when we want its stop_soon state to be preserved
4730 (see notice_new_inferior). */
4731 init_wait_for_inferior ();
4732
74531fed
PA
4733 /* In non-stop, we will either get an "OK", meaning that there
4734 are no stopped threads at this time; or, a regular stop
4735 reply. In the latter case, there may be more than one thread
4736 stopped --- we pull them all out using the vStopped
4737 mechanism. */
8d64371b 4738 if (strcmp (rs->buf.data (), "OK") != 0)
74531fed 4739 {
722247f1 4740 struct notif_client *notif = &notif_client_stop;
2d717e4f 4741
722247f1
YQ
4742 /* remote_notif_get_pending_replies acks this one, and gets
4743 the rest out. */
f48ff2a7 4744 rs->notif_state->pending_event[notif_client_stop.id]
8d64371b 4745 = remote_notif_parse (this, notif, rs->buf.data ());
722247f1 4746 remote_notif_get_pending_events (notif);
74531fed 4747 }
2d717e4f 4748
74531fed
PA
4749 if (thread_count () == 0)
4750 {
04bd08de 4751 if (!extended_p)
74531fed 4752 error (_("The target is not running (try extended-remote?)"));
82f73884 4753
c35b1492
PA
4754 /* We're connected, but not running. Drop out before we
4755 call start_remote. */
e278ad5b 4756 rs->starting_up = 0;
c35b1492
PA
4757 return;
4758 }
74531fed 4759
74531fed
PA
4760 /* In non-stop mode, any cached wait status will be stored in
4761 the stop reply queue. */
4762 gdb_assert (wait_status == NULL);
f0223081 4763
2455069d 4764 /* Report all signals during attach/startup. */
adc6a863 4765 pass_signals ({});
221e1a37
PA
4766
4767 /* If there are already stopped threads, mark them stopped and
4768 report their stops before giving the prompt to the user. */
6efcd9a8 4769 process_initial_stop_replies (from_tty);
221e1a37
PA
4770
4771 if (target_can_async_p ())
4772 target_async (1);
74531fed 4773 }
c8d104ad 4774
c8d104ad
PA
4775 /* If we connected to a live target, do some additional setup. */
4776 if (target_has_execution)
4777 {
f4ccffad 4778 if (symfile_objfile) /* No use without a symbol-file. */
36d25514 4779 remote_check_symbols ();
c8d104ad 4780 }
50c71eaf 4781
d5551862
SS
4782 /* Possibly the target has been engaged in a trace run started
4783 previously; find out where things are at. */
f6ac5f3d 4784 if (get_trace_status (current_trace_status ()) != -1)
d5551862 4785 {
00bf0b85 4786 struct uploaded_tp *uploaded_tps = NULL;
00bf0b85 4787
00bf0b85
SS
4788 if (current_trace_status ()->running)
4789 printf_filtered (_("Trace is already running on the target.\n"));
4790
f6ac5f3d 4791 upload_tracepoints (&uploaded_tps);
00bf0b85
SS
4792
4793 merge_uploaded_tracepoints (&uploaded_tps);
d5551862
SS
4794 }
4795
c0272db5
TW
4796 /* Possibly the target has been engaged in a btrace record started
4797 previously; find out where things are at. */
4798 remote_btrace_maybe_reopen ();
4799
1e51243a
PA
4800 /* The thread and inferior lists are now synchronized with the
4801 target, our symbols have been relocated, and we're merged the
4802 target's tracepoints with ours. We're done with basic start
4803 up. */
4804 rs->starting_up = 0;
4805
a25a5a45
PA
4806 /* Maybe breakpoints are global and need to be inserted now. */
4807 if (breakpoints_should_be_inserted_now ())
50c71eaf 4808 insert_breakpoints ();
c906108c
SS
4809}
4810
4811/* Open a connection to a remote debugger.
4812 NAME is the filename used for communication. */
4813
f6ac5f3d
PA
4814void
4815remote_target::open (const char *name, int from_tty)
c906108c 4816{
f6ac5f3d 4817 open_1 (name, from_tty, 0);
43ff13b4
JM
4818}
4819
c906108c
SS
4820/* Open a connection to a remote debugger using the extended
4821 remote gdb protocol. NAME is the filename used for communication. */
4822
f6ac5f3d
PA
4823void
4824extended_remote_target::open (const char *name, int from_tty)
c906108c 4825{
f6ac5f3d 4826 open_1 (name, from_tty, 1 /*extended_p */);
43ff13b4
JM
4827}
4828
ca4f7f8b
PA
4829/* Reset all packets back to "unknown support". Called when opening a
4830 new connection to a remote target. */
c906108c 4831
d471ea57 4832static void
ca4f7f8b 4833reset_all_packet_configs_support (void)
d471ea57
AC
4834{
4835 int i;
a744cf53 4836
444abaca 4837 for (i = 0; i < PACKET_MAX; i++)
4082afcc 4838 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
d471ea57
AC
4839}
4840
ca4f7f8b
PA
4841/* Initialize all packet configs. */
4842
4843static void
4844init_all_packet_configs (void)
4845{
4846 int i;
4847
4848 for (i = 0; i < PACKET_MAX; i++)
4849 {
4850 remote_protocol_packets[i].detect = AUTO_BOOLEAN_AUTO;
4851 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
4852 }
4853}
4854
23860348 4855/* Symbol look-up. */
dc8acb97 4856
6b8edb51
PA
4857void
4858remote_target::remote_check_symbols ()
dc8acb97 4859{
8d64371b 4860 char *tmp;
dc8acb97
MS
4861 int end;
4862
63154eca
PA
4863 /* The remote side has no concept of inferiors that aren't running
4864 yet, it only knows about running processes. If we're connected
4865 but our current inferior is not running, we should not invite the
4866 remote target to request symbol lookups related to its
4867 (unrelated) current process. */
4868 if (!target_has_execution)
4869 return;
4870
4082afcc 4871 if (packet_support (PACKET_qSymbol) == PACKET_DISABLE)
dc8acb97
MS
4872 return;
4873
63154eca
PA
4874 /* Make sure the remote is pointing at the right process. Note
4875 there's no way to select "no process". */
3c9c4b83
PA
4876 set_general_process ();
4877
6d820c5c
DJ
4878 /* Allocate a message buffer. We can't reuse the input buffer in RS,
4879 because we need both at the same time. */
66644cd3 4880 gdb::char_vector msg (get_remote_packet_size ());
8d64371b 4881 gdb::char_vector reply (get_remote_packet_size ());
6d820c5c 4882
23860348 4883 /* Invite target to request symbol lookups. */
dc8acb97
MS
4884
4885 putpkt ("qSymbol::");
8d64371b 4886 getpkt (&reply, 0);
28170b88 4887 packet_ok (reply, &remote_protocol_packets[PACKET_qSymbol]);
dc8acb97 4888
8d64371b 4889 while (startswith (reply.data (), "qSymbol:"))
dc8acb97 4890 {
77e371c0
TT
4891 struct bound_minimal_symbol sym;
4892
dc8acb97 4893 tmp = &reply[8];
66644cd3
AB
4894 end = hex2bin (tmp, reinterpret_cast <gdb_byte *> (msg.data ()),
4895 strlen (tmp) / 2);
dc8acb97 4896 msg[end] = '\0';
66644cd3 4897 sym = lookup_minimal_symbol (msg.data (), NULL, NULL);
3b7344d5 4898 if (sym.minsym == NULL)
66644cd3
AB
4899 xsnprintf (msg.data (), get_remote_packet_size (), "qSymbol::%s",
4900 &reply[8]);
dc8acb97 4901 else
2bbe3cc1 4902 {
f5656ead 4903 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
77e371c0 4904 CORE_ADDR sym_addr = BMSYMBOL_VALUE_ADDRESS (sym);
2bbe3cc1
DJ
4905
4906 /* If this is a function address, return the start of code
4907 instead of any data function descriptor. */
f5656ead 4908 sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
2bbe3cc1 4909 sym_addr,
8b88a78e 4910 current_top_target ());
2bbe3cc1 4911
66644cd3 4912 xsnprintf (msg.data (), get_remote_packet_size (), "qSymbol:%s:%s",
5af949e3 4913 phex_nz (sym_addr, addr_size), &reply[8]);
2bbe3cc1 4914 }
66644cd3
AB
4915
4916 putpkt (msg.data ());
8d64371b 4917 getpkt (&reply, 0);
dc8acb97
MS
4918 }
4919}
4920
9db8d71f 4921static struct serial *
baa336ce 4922remote_serial_open (const char *name)
9db8d71f
DJ
4923{
4924 static int udp_warning = 0;
4925
4926 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
4927 of in ser-tcp.c, because it is the remote protocol assuming that the
4928 serial connection is reliable and not the serial connection promising
4929 to be. */
61012eef 4930 if (!udp_warning && startswith (name, "udp:"))
9db8d71f 4931 {
3e43a32a
MS
4932 warning (_("The remote protocol may be unreliable over UDP.\n"
4933 "Some events may be lost, rendering further debugging "
4934 "impossible."));
9db8d71f
DJ
4935 udp_warning = 1;
4936 }
4937
4938 return serial_open (name);
4939}
4940
d914c394
SS
4941/* Inform the target of our permission settings. The permission flags
4942 work without this, but if the target knows the settings, it can do
4943 a couple things. First, it can add its own check, to catch cases
4944 that somehow manage to get by the permissions checks in target
4945 methods. Second, if the target is wired to disallow particular
4946 settings (for instance, a system in the field that is not set up to
4947 be able to stop at a breakpoint), it can object to any unavailable
4948 permissions. */
4949
4950void
f6ac5f3d 4951remote_target::set_permissions ()
d914c394
SS
4952{
4953 struct remote_state *rs = get_remote_state ();
4954
8d64371b 4955 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QAllow:"
bba74b36
YQ
4956 "WriteReg:%x;WriteMem:%x;"
4957 "InsertBreak:%x;InsertTrace:%x;"
4958 "InsertFastTrace:%x;Stop:%x",
4959 may_write_registers, may_write_memory,
4960 may_insert_breakpoints, may_insert_tracepoints,
4961 may_insert_fast_tracepoints, may_stop);
d914c394 4962 putpkt (rs->buf);
8d64371b 4963 getpkt (&rs->buf, 0);
d914c394
SS
4964
4965 /* If the target didn't like the packet, warn the user. Do not try
4966 to undo the user's settings, that would just be maddening. */
8d64371b
TT
4967 if (strcmp (rs->buf.data (), "OK") != 0)
4968 warning (_("Remote refused setting permissions with: %s"),
4969 rs->buf.data ());
d914c394
SS
4970}
4971
be2a5f71
DJ
4972/* This type describes each known response to the qSupported
4973 packet. */
4974struct protocol_feature
4975{
4976 /* The name of this protocol feature. */
4977 const char *name;
4978
4979 /* The default for this protocol feature. */
4980 enum packet_support default_support;
4981
4982 /* The function to call when this feature is reported, or after
4983 qSupported processing if the feature is not supported.
4984 The first argument points to this structure. The second
4985 argument indicates whether the packet requested support be
4986 enabled, disabled, or probed (or the default, if this function
4987 is being called at the end of processing and this feature was
4988 not reported). The third argument may be NULL; if not NULL, it
4989 is a NUL-terminated string taken from the packet following
4990 this feature's name and an equals sign. */
6b8edb51
PA
4991 void (*func) (remote_target *remote, const struct protocol_feature *,
4992 enum packet_support, const char *);
be2a5f71
DJ
4993
4994 /* The corresponding packet for this feature. Only used if
4995 FUNC is remote_supported_packet. */
4996 int packet;
4997};
4998
be2a5f71 4999static void
6b8edb51
PA
5000remote_supported_packet (remote_target *remote,
5001 const struct protocol_feature *feature,
be2a5f71
DJ
5002 enum packet_support support,
5003 const char *argument)
5004{
5005 if (argument)
5006 {
5007 warning (_("Remote qSupported response supplied an unexpected value for"
5008 " \"%s\"."), feature->name);
5009 return;
5010 }
5011
4082afcc 5012 remote_protocol_packets[feature->packet].support = support;
be2a5f71 5013}
be2a5f71 5014
6b8edb51
PA
5015void
5016remote_target::remote_packet_size (const protocol_feature *feature,
5017 enum packet_support support, const char *value)
be2a5f71
DJ
5018{
5019 struct remote_state *rs = get_remote_state ();
5020
5021 int packet_size;
5022 char *value_end;
5023
5024 if (support != PACKET_ENABLE)
5025 return;
5026
5027 if (value == NULL || *value == '\0')
5028 {
5029 warning (_("Remote target reported \"%s\" without a size."),
5030 feature->name);
5031 return;
5032 }
5033
5034 errno = 0;
5035 packet_size = strtol (value, &value_end, 16);
5036 if (errno != 0 || *value_end != '\0' || packet_size < 0)
5037 {
5038 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
5039 feature->name, value);
5040 return;
5041 }
5042
be2a5f71
DJ
5043 /* Record the new maximum packet size. */
5044 rs->explicit_packet_size = packet_size;
5045}
5046
6b8edb51
PA
5047void
5048remote_packet_size (remote_target *remote, const protocol_feature *feature,
5049 enum packet_support support, const char *value)
5050{
5051 remote->remote_packet_size (feature, support, value);
5052}
5053
dc473cfb 5054static const struct protocol_feature remote_protocol_features[] = {
0876f84a 5055 { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 },
40e57cf2 5056 { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet,
fd79ecee 5057 PACKET_qXfer_auxv },
c78fa86a
GB
5058 { "qXfer:exec-file:read", PACKET_DISABLE, remote_supported_packet,
5059 PACKET_qXfer_exec_file },
23181151
DJ
5060 { "qXfer:features:read", PACKET_DISABLE, remote_supported_packet,
5061 PACKET_qXfer_features },
cfa9d6d9
DJ
5062 { "qXfer:libraries:read", PACKET_DISABLE, remote_supported_packet,
5063 PACKET_qXfer_libraries },
2268b414
JK
5064 { "qXfer:libraries-svr4:read", PACKET_DISABLE, remote_supported_packet,
5065 PACKET_qXfer_libraries_svr4 },
ced63ec0 5066 { "augmented-libraries-svr4-read", PACKET_DISABLE,
4082afcc 5067 remote_supported_packet, PACKET_augmented_libraries_svr4_read_feature },
fd79ecee 5068 { "qXfer:memory-map:read", PACKET_DISABLE, remote_supported_packet,
89be2091 5069 PACKET_qXfer_memory_map },
07e059b5
VP
5070 { "qXfer:osdata:read", PACKET_DISABLE, remote_supported_packet,
5071 PACKET_qXfer_osdata },
dc146f7c
VP
5072 { "qXfer:threads:read", PACKET_DISABLE, remote_supported_packet,
5073 PACKET_qXfer_threads },
b3b9301e
PA
5074 { "qXfer:traceframe-info:read", PACKET_DISABLE, remote_supported_packet,
5075 PACKET_qXfer_traceframe_info },
89be2091
DJ
5076 { "QPassSignals", PACKET_DISABLE, remote_supported_packet,
5077 PACKET_QPassSignals },
82075af2
JS
5078 { "QCatchSyscalls", PACKET_DISABLE, remote_supported_packet,
5079 PACKET_QCatchSyscalls },
9b224c5e
PA
5080 { "QProgramSignals", PACKET_DISABLE, remote_supported_packet,
5081 PACKET_QProgramSignals },
bc3b087d
SDJ
5082 { "QSetWorkingDir", PACKET_DISABLE, remote_supported_packet,
5083 PACKET_QSetWorkingDir },
aefd8b33
SDJ
5084 { "QStartupWithShell", PACKET_DISABLE, remote_supported_packet,
5085 PACKET_QStartupWithShell },
0a2dde4a
SDJ
5086 { "QEnvironmentHexEncoded", PACKET_DISABLE, remote_supported_packet,
5087 PACKET_QEnvironmentHexEncoded },
5088 { "QEnvironmentReset", PACKET_DISABLE, remote_supported_packet,
5089 PACKET_QEnvironmentReset },
5090 { "QEnvironmentUnset", PACKET_DISABLE, remote_supported_packet,
5091 PACKET_QEnvironmentUnset },
a6f3e723
SL
5092 { "QStartNoAckMode", PACKET_DISABLE, remote_supported_packet,
5093 PACKET_QStartNoAckMode },
4082afcc
PA
5094 { "multiprocess", PACKET_DISABLE, remote_supported_packet,
5095 PACKET_multiprocess_feature },
5096 { "QNonStop", PACKET_DISABLE, remote_supported_packet, PACKET_QNonStop },
4aa995e1
PA
5097 { "qXfer:siginfo:read", PACKET_DISABLE, remote_supported_packet,
5098 PACKET_qXfer_siginfo_read },
5099 { "qXfer:siginfo:write", PACKET_DISABLE, remote_supported_packet,
5100 PACKET_qXfer_siginfo_write },
4082afcc 5101 { "ConditionalTracepoints", PACKET_DISABLE, remote_supported_packet,
782b2b07 5102 PACKET_ConditionalTracepoints },
4082afcc 5103 { "ConditionalBreakpoints", PACKET_DISABLE, remote_supported_packet,
3788aec7 5104 PACKET_ConditionalBreakpoints },
4082afcc 5105 { "BreakpointCommands", PACKET_DISABLE, remote_supported_packet,
d3ce09f5 5106 PACKET_BreakpointCommands },
4082afcc 5107 { "FastTracepoints", PACKET_DISABLE, remote_supported_packet,
7a697b8d 5108 PACKET_FastTracepoints },
4082afcc 5109 { "StaticTracepoints", PACKET_DISABLE, remote_supported_packet,
0fb4aa4b 5110 PACKET_StaticTracepoints },
4082afcc 5111 {"InstallInTrace", PACKET_DISABLE, remote_supported_packet,
1e4d1764 5112 PACKET_InstallInTrace},
4082afcc
PA
5113 { "DisconnectedTracing", PACKET_DISABLE, remote_supported_packet,
5114 PACKET_DisconnectedTracing_feature },
40ab02ce
MS
5115 { "ReverseContinue", PACKET_DISABLE, remote_supported_packet,
5116 PACKET_bc },
5117 { "ReverseStep", PACKET_DISABLE, remote_supported_packet,
5118 PACKET_bs },
409873ef
SS
5119 { "TracepointSource", PACKET_DISABLE, remote_supported_packet,
5120 PACKET_TracepointSource },
d914c394
SS
5121 { "QAllow", PACKET_DISABLE, remote_supported_packet,
5122 PACKET_QAllow },
4082afcc
PA
5123 { "EnableDisableTracepoints", PACKET_DISABLE, remote_supported_packet,
5124 PACKET_EnableDisableTracepoints_feature },
78d85199
YQ
5125 { "qXfer:fdpic:read", PACKET_DISABLE, remote_supported_packet,
5126 PACKET_qXfer_fdpic },
169081d0
TG
5127 { "qXfer:uib:read", PACKET_DISABLE, remote_supported_packet,
5128 PACKET_qXfer_uib },
03583c20
UW
5129 { "QDisableRandomization", PACKET_DISABLE, remote_supported_packet,
5130 PACKET_QDisableRandomization },
d1feda86 5131 { "QAgent", PACKET_DISABLE, remote_supported_packet, PACKET_QAgent},
f6f899bf
HAQ
5132 { "QTBuffer:size", PACKET_DISABLE,
5133 remote_supported_packet, PACKET_QTBuffer_size},
4082afcc 5134 { "tracenz", PACKET_DISABLE, remote_supported_packet, PACKET_tracenz_feature },
9accd112
MM
5135 { "Qbtrace:off", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_off },
5136 { "Qbtrace:bts", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_bts },
b20a6524 5137 { "Qbtrace:pt", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_pt },
9accd112 5138 { "qXfer:btrace:read", PACKET_DISABLE, remote_supported_packet,
f4abbc16
MM
5139 PACKET_qXfer_btrace },
5140 { "qXfer:btrace-conf:read", PACKET_DISABLE, remote_supported_packet,
d33501a5
MM
5141 PACKET_qXfer_btrace_conf },
5142 { "Qbtrace-conf:bts:size", PACKET_DISABLE, remote_supported_packet,
f7e6eed5
PA
5143 PACKET_Qbtrace_conf_bts_size },
5144 { "swbreak", PACKET_DISABLE, remote_supported_packet, PACKET_swbreak_feature },
0a93529c 5145 { "hwbreak", PACKET_DISABLE, remote_supported_packet, PACKET_hwbreak_feature },
89245bc0
DB
5146 { "fork-events", PACKET_DISABLE, remote_supported_packet,
5147 PACKET_fork_event_feature },
5148 { "vfork-events", PACKET_DISABLE, remote_supported_packet,
5149 PACKET_vfork_event_feature },
94585166
DB
5150 { "exec-events", PACKET_DISABLE, remote_supported_packet,
5151 PACKET_exec_event_feature },
b20a6524 5152 { "Qbtrace-conf:pt:size", PACKET_DISABLE, remote_supported_packet,
750ce8d1 5153 PACKET_Qbtrace_conf_pt_size },
65706a29
PA
5154 { "vContSupported", PACKET_DISABLE, remote_supported_packet, PACKET_vContSupported },
5155 { "QThreadEvents", PACKET_DISABLE, remote_supported_packet, PACKET_QThreadEvents },
f2faf941 5156 { "no-resumed", PACKET_DISABLE, remote_supported_packet, PACKET_no_resumed },
be2a5f71
DJ
5157};
5158
c8d5aac9
L
5159static char *remote_support_xml;
5160
5161/* Register string appended to "xmlRegisters=" in qSupported query. */
5162
5163void
6e39997a 5164register_remote_support_xml (const char *xml)
c8d5aac9
L
5165{
5166#if defined(HAVE_LIBEXPAT)
5167 if (remote_support_xml == NULL)
c4f7c687 5168 remote_support_xml = concat ("xmlRegisters=", xml, (char *) NULL);
c8d5aac9
L
5169 else
5170 {
5171 char *copy = xstrdup (remote_support_xml + 13);
ca3a04f6
CB
5172 char *saveptr;
5173 char *p = strtok_r (copy, ",", &saveptr);
c8d5aac9
L
5174
5175 do
5176 {
5177 if (strcmp (p, xml) == 0)
5178 {
5179 /* already there */
5180 xfree (copy);
5181 return;
5182 }
5183 }
ca3a04f6 5184 while ((p = strtok_r (NULL, ",", &saveptr)) != NULL);
c8d5aac9
L
5185 xfree (copy);
5186
94b0dee1
PA
5187 remote_support_xml = reconcat (remote_support_xml,
5188 remote_support_xml, ",", xml,
5189 (char *) NULL);
c8d5aac9
L
5190 }
5191#endif
5192}
5193
69b6ecb0
TT
5194static void
5195remote_query_supported_append (std::string *msg, const char *append)
c8d5aac9 5196{
69b6ecb0
TT
5197 if (!msg->empty ())
5198 msg->append (";");
5199 msg->append (append);
c8d5aac9
L
5200}
5201
6b8edb51
PA
5202void
5203remote_target::remote_query_supported ()
be2a5f71
DJ
5204{
5205 struct remote_state *rs = get_remote_state ();
5206 char *next;
5207 int i;
5208 unsigned char seen [ARRAY_SIZE (remote_protocol_features)];
5209
5210 /* The packet support flags are handled differently for this packet
5211 than for most others. We treat an error, a disabled packet, and
5212 an empty response identically: any features which must be reported
5213 to be used will be automatically disabled. An empty buffer
5214 accomplishes this, since that is also the representation for a list
5215 containing no features. */
5216
5217 rs->buf[0] = 0;
4082afcc 5218 if (packet_support (PACKET_qSupported) != PACKET_DISABLE)
be2a5f71 5219 {
69b6ecb0 5220 std::string q;
c8d5aac9 5221
73b8c1fd 5222 if (packet_set_cmd_state (PACKET_multiprocess_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5223 remote_query_supported_append (&q, "multiprocess+");
c8d5aac9 5224
f7e6eed5 5225 if (packet_set_cmd_state (PACKET_swbreak_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5226 remote_query_supported_append (&q, "swbreak+");
f7e6eed5 5227 if (packet_set_cmd_state (PACKET_hwbreak_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5228 remote_query_supported_append (&q, "hwbreak+");
f7e6eed5 5229
69b6ecb0 5230 remote_query_supported_append (&q, "qRelocInsn+");
dde08ee1 5231
8020350c
DB
5232 if (packet_set_cmd_state (PACKET_fork_event_feature)
5233 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5234 remote_query_supported_append (&q, "fork-events+");
8020350c
DB
5235 if (packet_set_cmd_state (PACKET_vfork_event_feature)
5236 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5237 remote_query_supported_append (&q, "vfork-events+");
8020350c
DB
5238 if (packet_set_cmd_state (PACKET_exec_event_feature)
5239 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5240 remote_query_supported_append (&q, "exec-events+");
89245bc0 5241
750ce8d1 5242 if (packet_set_cmd_state (PACKET_vContSupported) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5243 remote_query_supported_append (&q, "vContSupported+");
750ce8d1 5244
65706a29 5245 if (packet_set_cmd_state (PACKET_QThreadEvents) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5246 remote_query_supported_append (&q, "QThreadEvents+");
65706a29 5247
f2faf941 5248 if (packet_set_cmd_state (PACKET_no_resumed) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5249 remote_query_supported_append (&q, "no-resumed+");
f2faf941 5250
b35d5edb
PA
5251 /* Keep this one last to work around a gdbserver <= 7.10 bug in
5252 the qSupported:xmlRegisters=i386 handling. */
7cc244de
PA
5253 if (remote_support_xml != NULL
5254 && packet_support (PACKET_qXfer_features) != PACKET_DISABLE)
69b6ecb0 5255 remote_query_supported_append (&q, remote_support_xml);
82f73884 5256
69b6ecb0
TT
5257 q = "qSupported:" + q;
5258 putpkt (q.c_str ());
94b0dee1 5259
8d64371b 5260 getpkt (&rs->buf, 0);
be2a5f71
DJ
5261
5262 /* If an error occured, warn, but do not return - just reset the
5263 buffer to empty and go on to disable features. */
5264 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported])
5265 == PACKET_ERROR)
5266 {
8d64371b 5267 warning (_("Remote failure reply: %s"), rs->buf.data ());
be2a5f71
DJ
5268 rs->buf[0] = 0;
5269 }
5270 }
5271
5272 memset (seen, 0, sizeof (seen));
5273
8d64371b 5274 next = rs->buf.data ();
be2a5f71
DJ
5275 while (*next)
5276 {
5277 enum packet_support is_supported;
5278 char *p, *end, *name_end, *value;
5279
5280 /* First separate out this item from the rest of the packet. If
5281 there's another item after this, we overwrite the separator
5282 (terminated strings are much easier to work with). */
5283 p = next;
5284 end = strchr (p, ';');
5285 if (end == NULL)
5286 {
5287 end = p + strlen (p);
5288 next = end;
5289 }
5290 else
5291 {
89be2091
DJ
5292 *end = '\0';
5293 next = end + 1;
5294
be2a5f71
DJ
5295 if (end == p)
5296 {
5297 warning (_("empty item in \"qSupported\" response"));
5298 continue;
5299 }
be2a5f71
DJ
5300 }
5301
5302 name_end = strchr (p, '=');
5303 if (name_end)
5304 {
5305 /* This is a name=value entry. */
5306 is_supported = PACKET_ENABLE;
5307 value = name_end + 1;
5308 *name_end = '\0';
5309 }
5310 else
5311 {
5312 value = NULL;
5313 switch (end[-1])
5314 {
5315 case '+':
5316 is_supported = PACKET_ENABLE;
5317 break;
5318
5319 case '-':
5320 is_supported = PACKET_DISABLE;
5321 break;
5322
5323 case '?':
5324 is_supported = PACKET_SUPPORT_UNKNOWN;
5325 break;
5326
5327 default:
3e43a32a
MS
5328 warning (_("unrecognized item \"%s\" "
5329 "in \"qSupported\" response"), p);
be2a5f71
DJ
5330 continue;
5331 }
5332 end[-1] = '\0';
5333 }
5334
5335 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
5336 if (strcmp (remote_protocol_features[i].name, p) == 0)
5337 {
5338 const struct protocol_feature *feature;
5339
5340 seen[i] = 1;
5341 feature = &remote_protocol_features[i];
6b8edb51 5342 feature->func (this, feature, is_supported, value);
be2a5f71
DJ
5343 break;
5344 }
5345 }
5346
5347 /* If we increased the packet size, make sure to increase the global
5348 buffer size also. We delay this until after parsing the entire
5349 qSupported packet, because this is the same buffer we were
5350 parsing. */
8d64371b
TT
5351 if (rs->buf.size () < rs->explicit_packet_size)
5352 rs->buf.resize (rs->explicit_packet_size);
be2a5f71
DJ
5353
5354 /* Handle the defaults for unmentioned features. */
5355 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
5356 if (!seen[i])
5357 {
5358 const struct protocol_feature *feature;
5359
5360 feature = &remote_protocol_features[i];
6b8edb51 5361 feature->func (this, feature, feature->default_support, NULL);
be2a5f71
DJ
5362 }
5363}
5364
048094ac
PA
5365/* Serial QUIT handler for the remote serial descriptor.
5366
5367 Defers handling a Ctrl-C until we're done with the current
5368 command/response packet sequence, unless:
5369
5370 - We're setting up the connection. Don't send a remote interrupt
5371 request, as we're not fully synced yet. Quit immediately
5372 instead.
5373
5374 - The target has been resumed in the foreground
223ffa71 5375 (target_terminal::is_ours is false) with a synchronous resume
048094ac
PA
5376 packet, and we're blocked waiting for the stop reply, thus a
5377 Ctrl-C should be immediately sent to the target.
5378
5379 - We get a second Ctrl-C while still within the same serial read or
5380 write. In that case the serial is seemingly wedged --- offer to
5381 quit/disconnect.
5382
5383 - We see a second Ctrl-C without target response, after having
5384 previously interrupted the target. In that case the target/stub
5385 is probably wedged --- offer to quit/disconnect.
5386*/
5387
6b8edb51
PA
5388void
5389remote_target::remote_serial_quit_handler ()
048094ac
PA
5390{
5391 struct remote_state *rs = get_remote_state ();
5392
5393 if (check_quit_flag ())
5394 {
5395 /* If we're starting up, we're not fully synced yet. Quit
5396 immediately. */
5397 if (rs->starting_up)
5398 quit ();
5399 else if (rs->got_ctrlc_during_io)
5400 {
5401 if (query (_("The target is not responding to GDB commands.\n"
5402 "Stop debugging it? ")))
5403 remote_unpush_and_throw ();
5404 }
5405 /* If ^C has already been sent once, offer to disconnect. */
223ffa71 5406 else if (!target_terminal::is_ours () && rs->ctrlc_pending_p)
048094ac
PA
5407 interrupt_query ();
5408 /* All-stop protocol, and blocked waiting for stop reply. Send
5409 an interrupt request. */
223ffa71 5410 else if (!target_terminal::is_ours () && rs->waiting_for_stop_reply)
e671cd59 5411 target_interrupt ();
048094ac
PA
5412 else
5413 rs->got_ctrlc_during_io = 1;
5414 }
5415}
5416
6b8edb51
PA
5417/* The remote_target that is current while the quit handler is
5418 overridden with remote_serial_quit_handler. */
5419static remote_target *curr_quit_handler_target;
5420
5421static void
5422remote_serial_quit_handler ()
5423{
5424 curr_quit_handler_target->remote_serial_quit_handler ();
5425}
5426
78a095c3
JK
5427/* Remove any of the remote.c targets from target stack. Upper targets depend
5428 on it so remove them first. */
5429
5430static void
5431remote_unpush_target (void)
5432{
915ef8b1 5433 pop_all_targets_at_and_above (process_stratum);
78a095c3 5434}
be2a5f71 5435
048094ac
PA
5436static void
5437remote_unpush_and_throw (void)
5438{
5439 remote_unpush_target ();
5440 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
5441}
5442
f6ac5f3d
PA
5443void
5444remote_target::open_1 (const char *name, int from_tty, int extended_p)
c906108c 5445{
6b8edb51 5446 remote_target *curr_remote = get_current_remote_target ();
a6f3e723 5447
c906108c 5448 if (name == 0)
8a3fe4f8 5449 error (_("To open a remote debug connection, you need to specify what\n"
22e04375 5450 "serial device is attached to the remote system\n"
8a3fe4f8 5451 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
c906108c 5452
2d717e4f 5453 /* If we're connected to a running target, target_preopen will kill it.
78a095c3
JK
5454 Ask this question first, before target_preopen has a chance to kill
5455 anything. */
6b8edb51 5456 if (curr_remote != NULL && !have_inferiors ())
2d717e4f 5457 {
78a095c3
JK
5458 if (from_tty
5459 && !query (_("Already connected to a remote target. Disconnect? ")))
2d717e4f
DJ
5460 error (_("Still connected."));
5461 }
5462
78a095c3 5463 /* Here the possibly existing remote target gets unpushed. */
c906108c
SS
5464 target_preopen (from_tty);
5465
ad9a8f3f 5466 remote_fileio_reset ();
1dd41f16
NS
5467 reopen_exec_file ();
5468 reread_symbols ();
5469
6b8edb51
PA
5470 remote_target *remote
5471 = (extended_p ? new extended_remote_target () : new remote_target ());
5472 target_ops_up target_holder (remote);
5473
5474 remote_state *rs = remote->get_remote_state ();
5475
5476 /* See FIXME above. */
5477 if (!target_async_permitted)
5478 rs->wait_forever_enabled_p = 1;
5479
5d93a237
TT
5480 rs->remote_desc = remote_serial_open (name);
5481 if (!rs->remote_desc)
c906108c
SS
5482 perror_with_name (name);
5483
5484 if (baud_rate != -1)
5485 {
5d93a237 5486 if (serial_setbaudrate (rs->remote_desc, baud_rate))
c906108c 5487 {
9b74d5d3
KB
5488 /* The requested speed could not be set. Error out to
5489 top level after closing remote_desc. Take care to
5490 set remote_desc to NULL to avoid closing remote_desc
5491 more than once. */
5d93a237
TT
5492 serial_close (rs->remote_desc);
5493 rs->remote_desc = NULL;
c906108c
SS
5494 perror_with_name (name);
5495 }
5496 }
5497
236af5e3 5498 serial_setparity (rs->remote_desc, serial_parity);
5d93a237 5499 serial_raw (rs->remote_desc);
c906108c
SS
5500
5501 /* If there is something sitting in the buffer we might take it as a
5502 response to a command, which would be bad. */
5d93a237 5503 serial_flush_input (rs->remote_desc);
c906108c
SS
5504
5505 if (from_tty)
5506 {
5507 puts_filtered ("Remote debugging using ");
5508 puts_filtered (name);
5509 puts_filtered ("\n");
5510 }
d9f719f1 5511
6b8edb51 5512 /* Switch to using the remote target now. */
dea57a62 5513 push_target (std::move (target_holder));
c906108c 5514
74531fed 5515 /* Register extra event sources in the event loop. */
6b8edb51 5516 rs->remote_async_inferior_event_token
74531fed 5517 = create_async_event_handler (remote_async_inferior_event_handler,
6b8edb51
PA
5518 remote);
5519 rs->notif_state = remote_notif_state_allocate (remote);
74531fed 5520
be2a5f71
DJ
5521 /* Reset the target state; these things will be queried either by
5522 remote_query_supported or as they are needed. */
ca4f7f8b 5523 reset_all_packet_configs_support ();
74531fed 5524 rs->cached_wait_status = 0;
be2a5f71 5525 rs->explicit_packet_size = 0;
a6f3e723 5526 rs->noack_mode = 0;
82f73884 5527 rs->extended = extended_p;
e24a49d8 5528 rs->waiting_for_stop_reply = 0;
3a29589a 5529 rs->ctrlc_pending_p = 0;
048094ac 5530 rs->got_ctrlc_during_io = 0;
802188a7 5531
47f8a51d
TT
5532 rs->general_thread = not_sent_ptid;
5533 rs->continue_thread = not_sent_ptid;
262e1174 5534 rs->remote_traceframe_number = -1;
c906108c 5535
3a00c802
PA
5536 rs->last_resume_exec_dir = EXEC_FORWARD;
5537
9d1f7ab2 5538 /* Probe for ability to use "ThreadInfo" query, as required. */
b80fafe3
TT
5539 rs->use_threadinfo_query = 1;
5540 rs->use_threadextra_query = 1;
9d1f7ab2 5541
dd194f6b 5542 rs->readahead_cache.invalidate ();
80152258 5543
c6ebd6cf 5544 if (target_async_permitted)
92d1e331 5545 {
92d1e331
DJ
5546 /* FIXME: cagney/1999-09-23: During the initial connection it is
5547 assumed that the target is already ready and able to respond to
0df8b418 5548 requests. Unfortunately remote_start_remote() eventually calls
92d1e331 5549 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
0df8b418 5550 around this. Eventually a mechanism that allows
92d1e331 5551 wait_for_inferior() to expect/get timeouts will be
23860348 5552 implemented. */
6b8edb51 5553 rs->wait_forever_enabled_p = 0;
92d1e331
DJ
5554 }
5555
23860348 5556 /* First delete any symbols previously loaded from shared libraries. */
f78f6cf1 5557 no_shared_libraries (NULL, 0);
f78f6cf1 5558
36918e70 5559 /* Start the remote connection. If error() or QUIT, discard this
165b8e33
AC
5560 target (we'd otherwise be in an inconsistent state) and then
5561 propogate the error on up the exception chain. This ensures that
5562 the caller doesn't stumble along blindly assuming that the
5563 function succeeded. The CLI doesn't have this problem but other
5564 UI's, such as MI do.
36918e70
AC
5565
5566 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
5567 this function should return an error indication letting the
ce2826aa 5568 caller restore the previous state. Unfortunately the command
36918e70
AC
5569 ``target remote'' is directly wired to this function making that
5570 impossible. On a positive note, the CLI side of this problem has
5571 been fixed - the function set_cmd_context() makes it possible for
5572 all the ``target ....'' commands to share a common callback
5573 function. See cli-dump.c. */
109c3e39 5574 {
2d717e4f 5575
a70b8144 5576 try
04bd08de 5577 {
6b8edb51 5578 remote->start_remote (from_tty, extended_p);
04bd08de 5579 }
230d2906 5580 catch (const gdb_exception &ex)
109c3e39 5581 {
c8d104ad
PA
5582 /* Pop the partially set up target - unless something else did
5583 already before throwing the exception. */
6b8edb51 5584 if (ex.error != TARGET_CLOSE_ERROR)
78a095c3 5585 remote_unpush_target ();
eedc3f4f 5586 throw;
109c3e39
AC
5587 }
5588 }
c906108c 5589
6b8edb51 5590 remote_btrace_reset (rs);
f4abbc16 5591
c6ebd6cf 5592 if (target_async_permitted)
6b8edb51 5593 rs->wait_forever_enabled_p = 1;
43ff13b4
JM
5594}
5595
de0d863e
DB
5596/* Detach the specified process. */
5597
6b8edb51
PA
5598void
5599remote_target::remote_detach_pid (int pid)
de0d863e
DB
5600{
5601 struct remote_state *rs = get_remote_state ();
5602
4c7333b3
PA
5603 /* This should not be necessary, but the handling for D;PID in
5604 GDBserver versions prior to 8.2 incorrectly assumes that the
5605 selected process points to the same process we're detaching,
5606 leading to misbehavior (and possibly GDBserver crashing) when it
5607 does not. Since it's easy and cheap, work around it by forcing
5608 GDBserver to select GDB's current process. */
5609 set_general_process ();
5610
de0d863e 5611 if (remote_multi_process_p (rs))
8d64371b 5612 xsnprintf (rs->buf.data (), get_remote_packet_size (), "D;%x", pid);
de0d863e 5613 else
8d64371b 5614 strcpy (rs->buf.data (), "D");
de0d863e
DB
5615
5616 putpkt (rs->buf);
8d64371b 5617 getpkt (&rs->buf, 0);
de0d863e
DB
5618
5619 if (rs->buf[0] == 'O' && rs->buf[1] == 'K')
5620 ;
5621 else if (rs->buf[0] == '\0')
5622 error (_("Remote doesn't know how to detach"));
5623 else
5624 error (_("Can't detach process."));
5625}
5626
5627/* This detaches a program to which we previously attached, using
5628 inferior_ptid to identify the process. After this is done, GDB
5629 can be used to debug some other program. We better not have left
5630 any breakpoints in the target program or it'll die when it hits
5631 one. */
c906108c 5632
6b8edb51 5633void
00431a78 5634remote_target::remote_detach_1 (inferior *inf, int from_tty)
c906108c 5635{
e99b03dc 5636 int pid = inferior_ptid.pid ();
d01949b6 5637 struct remote_state *rs = get_remote_state ();
de0d863e 5638 int is_fork_parent;
c906108c 5639
2d717e4f
DJ
5640 if (!target_has_execution)
5641 error (_("No process to detach from."));
5642
0f48b757 5643 target_announce_detach (from_tty);
7cee1e54 5644
c906108c 5645 /* Tell the remote target to detach. */
de0d863e 5646 remote_detach_pid (pid);
82f73884 5647
8020350c
DB
5648 /* Exit only if this is the only active inferior. */
5649 if (from_tty && !rs->extended && number_of_live_inferiors () == 1)
7cee1e54 5650 puts_filtered (_("Ending remote debugging.\n"));
82f73884 5651
00431a78
PA
5652 struct thread_info *tp = find_thread_ptid (inferior_ptid);
5653
de0d863e
DB
5654 /* Check to see if we are detaching a fork parent. Note that if we
5655 are detaching a fork child, tp == NULL. */
5656 is_fork_parent = (tp != NULL
5657 && tp->pending_follow.kind == TARGET_WAITKIND_FORKED);
5658
5659 /* If doing detach-on-fork, we don't mourn, because that will delete
5660 breakpoints that should be available for the followed inferior. */
5661 if (!is_fork_parent)
f67c0c91 5662 {
249b5733
PA
5663 /* Save the pid as a string before mourning, since that will
5664 unpush the remote target, and we need the string after. */
f2907e49 5665 std::string infpid = target_pid_to_str (ptid_t (pid));
f67c0c91
SDJ
5666
5667 target_mourn_inferior (inferior_ptid);
5668 if (print_inferior_events)
5669 printf_unfiltered (_("[Inferior %d (%s) detached]\n"),
5670 inf->num, infpid.c_str ());
5671 }
de0d863e
DB
5672 else
5673 {
5674 inferior_ptid = null_ptid;
00431a78 5675 detach_inferior (current_inferior ());
de0d863e 5676 }
2d717e4f
DJ
5677}
5678
f6ac5f3d
PA
5679void
5680remote_target::detach (inferior *inf, int from_tty)
2d717e4f 5681{
00431a78 5682 remote_detach_1 (inf, from_tty);
2d717e4f
DJ
5683}
5684
f6ac5f3d
PA
5685void
5686extended_remote_target::detach (inferior *inf, int from_tty)
2d717e4f 5687{
00431a78 5688 remote_detach_1 (inf, from_tty);
de0d863e
DB
5689}
5690
5691/* Target follow-fork function for remote targets. On entry, and
5692 at return, the current inferior is the fork parent.
5693
5694 Note that although this is currently only used for extended-remote,
5695 it is named remote_follow_fork in anticipation of using it for the
5696 remote target as well. */
5697
f6ac5f3d
PA
5698int
5699remote_target::follow_fork (int follow_child, int detach_fork)
de0d863e
DB
5700{
5701 struct remote_state *rs = get_remote_state ();
c269dbdb 5702 enum target_waitkind kind = inferior_thread ()->pending_follow.kind;
de0d863e 5703
c269dbdb
DB
5704 if ((kind == TARGET_WAITKIND_FORKED && remote_fork_event_p (rs))
5705 || (kind == TARGET_WAITKIND_VFORKED && remote_vfork_event_p (rs)))
de0d863e
DB
5706 {
5707 /* When following the parent and detaching the child, we detach
5708 the child here. For the case of following the child and
5709 detaching the parent, the detach is done in the target-
5710 independent follow fork code in infrun.c. We can't use
5711 target_detach when detaching an unfollowed child because
5712 the client side doesn't know anything about the child. */
5713 if (detach_fork && !follow_child)
5714 {
5715 /* Detach the fork child. */
5716 ptid_t child_ptid;
5717 pid_t child_pid;
5718
5719 child_ptid = inferior_thread ()->pending_follow.value.related_pid;
e99b03dc 5720 child_pid = child_ptid.pid ();
de0d863e
DB
5721
5722 remote_detach_pid (child_pid);
de0d863e
DB
5723 }
5724 }
5725 return 0;
c906108c
SS
5726}
5727
94585166
DB
5728/* Target follow-exec function for remote targets. Save EXECD_PATHNAME
5729 in the program space of the new inferior. On entry and at return the
5730 current inferior is the exec'ing inferior. INF is the new exec'd
5731 inferior, which may be the same as the exec'ing inferior unless
5732 follow-exec-mode is "new". */
5733
f6ac5f3d 5734void
4ca51187 5735remote_target::follow_exec (struct inferior *inf, const char *execd_pathname)
94585166
DB
5736{
5737 /* We know that this is a target file name, so if it has the "target:"
5738 prefix we strip it off before saving it in the program space. */
5739 if (is_target_filename (execd_pathname))
5740 execd_pathname += strlen (TARGET_SYSROOT_PREFIX);
5741
5742 set_pspace_remote_exec_file (inf->pspace, execd_pathname);
5743}
5744
6ad8ae5c
DJ
5745/* Same as remote_detach, but don't send the "D" packet; just disconnect. */
5746
f6ac5f3d
PA
5747void
5748remote_target::disconnect (const char *args, int from_tty)
43ff13b4 5749{
43ff13b4 5750 if (args)
2d717e4f 5751 error (_("Argument given to \"disconnect\" when remotely debugging."));
43ff13b4 5752
8020350c
DB
5753 /* Make sure we unpush even the extended remote targets. Calling
5754 target_mourn_inferior won't unpush, and remote_mourn won't
5755 unpush if there is more than one inferior left. */
f6ac5f3d 5756 unpush_target (this);
8020350c 5757 generic_mourn_inferior ();
2d717e4f 5758
43ff13b4
JM
5759 if (from_tty)
5760 puts_filtered ("Ending remote debugging.\n");
5761}
5762
2d717e4f
DJ
5763/* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
5764 be chatty about it. */
5765
f6ac5f3d
PA
5766void
5767extended_remote_target::attach (const char *args, int from_tty)
2d717e4f
DJ
5768{
5769 struct remote_state *rs = get_remote_state ();
be86555c 5770 int pid;
96ef3384 5771 char *wait_status = NULL;
2d717e4f 5772
74164c56 5773 pid = parse_pid_to_attach (args);
2d717e4f 5774
74164c56
JK
5775 /* Remote PID can be freely equal to getpid, do not check it here the same
5776 way as in other targets. */
2d717e4f 5777
4082afcc 5778 if (packet_support (PACKET_vAttach) == PACKET_DISABLE)
2d717e4f
DJ
5779 error (_("This target does not support attaching to a process"));
5780
7cee1e54
PA
5781 if (from_tty)
5782 {
5783 char *exec_file = get_exec_file (0);
5784
5785 if (exec_file)
5786 printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file,
a068643d 5787 target_pid_to_str (ptid_t (pid)).c_str ());
7cee1e54
PA
5788 else
5789 printf_unfiltered (_("Attaching to %s\n"),
a068643d 5790 target_pid_to_str (ptid_t (pid)).c_str ());
7cee1e54
PA
5791 }
5792
8d64371b 5793 xsnprintf (rs->buf.data (), get_remote_packet_size (), "vAttach;%x", pid);
2d717e4f 5794 putpkt (rs->buf);
8d64371b 5795 getpkt (&rs->buf, 0);
2d717e4f 5796
4082afcc
PA
5797 switch (packet_ok (rs->buf,
5798 &remote_protocol_packets[PACKET_vAttach]))
2d717e4f 5799 {
4082afcc 5800 case PACKET_OK:
6efcd9a8 5801 if (!target_is_non_stop_p ())
74531fed
PA
5802 {
5803 /* Save the reply for later. */
8d64371b
TT
5804 wait_status = (char *) alloca (strlen (rs->buf.data ()) + 1);
5805 strcpy (wait_status, rs->buf.data ());
74531fed 5806 }
8d64371b 5807 else if (strcmp (rs->buf.data (), "OK") != 0)
74531fed 5808 error (_("Attaching to %s failed with: %s"),
a068643d 5809 target_pid_to_str (ptid_t (pid)).c_str (),
8d64371b 5810 rs->buf.data ());
4082afcc
PA
5811 break;
5812 case PACKET_UNKNOWN:
5813 error (_("This target does not support attaching to a process"));
5814 default:
50fa3001
SDJ
5815 error (_("Attaching to %s failed"),
5816 target_pid_to_str (ptid_t (pid)).c_str ());
2d717e4f 5817 }
2d717e4f 5818
9ab8741a 5819 set_current_inferior (remote_add_inferior (false, pid, 1, 0));
bad34192 5820
f2907e49 5821 inferior_ptid = ptid_t (pid);
79d7f229 5822
6efcd9a8 5823 if (target_is_non_stop_p ())
bad34192
PA
5824 {
5825 struct thread_info *thread;
79d7f229 5826
bad34192 5827 /* Get list of threads. */
f6ac5f3d 5828 update_thread_list ();
82f73884 5829
00431a78 5830 thread = first_thread_of_inferior (current_inferior ());
bad34192
PA
5831 if (thread)
5832 inferior_ptid = thread->ptid;
5833 else
f2907e49 5834 inferior_ptid = ptid_t (pid);
bad34192
PA
5835
5836 /* Invalidate our notion of the remote current thread. */
47f8a51d 5837 record_currthread (rs, minus_one_ptid);
bad34192 5838 }
74531fed 5839 else
bad34192
PA
5840 {
5841 /* Now, if we have thread information, update inferior_ptid. */
5842 inferior_ptid = remote_current_thread (inferior_ptid);
5843
5844 /* Add the main thread to the thread list. */
00aecdcf
PA
5845 thread_info *thr = add_thread_silent (inferior_ptid);
5846 /* Don't consider the thread stopped until we've processed the
5847 saved stop reply. */
5848 set_executing (thr->ptid, true);
bad34192 5849 }
c0a2216e 5850
96ef3384
UW
5851 /* Next, if the target can specify a description, read it. We do
5852 this before anything involving memory or registers. */
5853 target_find_description ();
5854
6efcd9a8 5855 if (!target_is_non_stop_p ())
74531fed
PA
5856 {
5857 /* Use the previously fetched status. */
5858 gdb_assert (wait_status != NULL);
5859
5860 if (target_can_async_p ())
5861 {
722247f1 5862 struct notif_event *reply
6b8edb51 5863 = remote_notif_parse (this, &notif_client_stop, wait_status);
74531fed 5864
722247f1 5865 push_stop_reply ((struct stop_reply *) reply);
74531fed 5866
6a3753b3 5867 target_async (1);
74531fed
PA
5868 }
5869 else
5870 {
5871 gdb_assert (wait_status != NULL);
8d64371b 5872 strcpy (rs->buf.data (), wait_status);
74531fed
PA
5873 rs->cached_wait_status = 1;
5874 }
5875 }
5876 else
5877 gdb_assert (wait_status == NULL);
2d717e4f
DJ
5878}
5879
b9c1d481
AS
5880/* Implementation of the to_post_attach method. */
5881
f6ac5f3d
PA
5882void
5883extended_remote_target::post_attach (int pid)
b9c1d481 5884{
6efcd9a8
PA
5885 /* Get text, data & bss offsets. */
5886 get_offsets ();
5887
b9c1d481
AS
5888 /* In certain cases GDB might not have had the chance to start
5889 symbol lookup up until now. This could happen if the debugged
5890 binary is not using shared libraries, the vsyscall page is not
5891 present (on Linux) and the binary itself hadn't changed since the
5892 debugging process was started. */
5893 if (symfile_objfile != NULL)
5894 remote_check_symbols();
5895}
5896
c906108c 5897\f
506fb367
DJ
5898/* Check for the availability of vCont. This function should also check
5899 the response. */
c906108c 5900
6b8edb51
PA
5901void
5902remote_target::remote_vcont_probe ()
c906108c 5903{
6b8edb51 5904 remote_state *rs = get_remote_state ();
2e9f7625 5905 char *buf;
6d820c5c 5906
8d64371b 5907 strcpy (rs->buf.data (), "vCont?");
2e9f7625 5908 putpkt (rs->buf);
8d64371b
TT
5909 getpkt (&rs->buf, 0);
5910 buf = rs->buf.data ();
c906108c 5911
506fb367 5912 /* Make sure that the features we assume are supported. */
61012eef 5913 if (startswith (buf, "vCont"))
506fb367
DJ
5914 {
5915 char *p = &buf[5];
750ce8d1 5916 int support_c, support_C;
506fb367 5917
750ce8d1
YQ
5918 rs->supports_vCont.s = 0;
5919 rs->supports_vCont.S = 0;
506fb367
DJ
5920 support_c = 0;
5921 support_C = 0;
d458bd84 5922 rs->supports_vCont.t = 0;
c1e36e3e 5923 rs->supports_vCont.r = 0;
506fb367
DJ
5924 while (p && *p == ';')
5925 {
5926 p++;
5927 if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 5928 rs->supports_vCont.s = 1;
506fb367 5929 else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 5930 rs->supports_vCont.S = 1;
506fb367
DJ
5931 else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
5932 support_c = 1;
5933 else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
5934 support_C = 1;
74531fed 5935 else if (*p == 't' && (*(p + 1) == ';' || *(p + 1) == 0))
d458bd84 5936 rs->supports_vCont.t = 1;
c1e36e3e
PA
5937 else if (*p == 'r' && (*(p + 1) == ';' || *(p + 1) == 0))
5938 rs->supports_vCont.r = 1;
506fb367
DJ
5939
5940 p = strchr (p, ';');
5941 }
c906108c 5942
750ce8d1
YQ
5943 /* If c, and C are not all supported, we can't use vCont. Clearing
5944 BUF will make packet_ok disable the packet. */
5945 if (!support_c || !support_C)
506fb367
DJ
5946 buf[0] = 0;
5947 }
c906108c 5948
8d64371b 5949 packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCont]);
506fb367 5950}
c906108c 5951
0d8f58ca
PA
5952/* Helper function for building "vCont" resumptions. Write a
5953 resumption to P. ENDP points to one-passed-the-end of the buffer
5954 we're allowed to write to. Returns BUF+CHARACTERS_WRITTEN. The
5955 thread to be resumed is PTID; STEP and SIGGNAL indicate whether the
5956 resumed thread should be single-stepped and/or signalled. If PTID
5957 equals minus_one_ptid, then all threads are resumed; if PTID
5958 represents a process, then all threads of the process are resumed;
5959 the thread to be stepped and/or signalled is given in the global
5960 INFERIOR_PTID. */
5961
6b8edb51
PA
5962char *
5963remote_target::append_resumption (char *p, char *endp,
5964 ptid_t ptid, int step, gdb_signal siggnal)
0d8f58ca
PA
5965{
5966 struct remote_state *rs = get_remote_state ();
5967
a493e3e2 5968 if (step && siggnal != GDB_SIGNAL_0)
0d8f58ca 5969 p += xsnprintf (p, endp - p, ";S%02x", siggnal);
c1e36e3e
PA
5970 else if (step
5971 /* GDB is willing to range step. */
5972 && use_range_stepping
5973 /* Target supports range stepping. */
5974 && rs->supports_vCont.r
5975 /* We don't currently support range stepping multiple
5976 threads with a wildcard (though the protocol allows it,
5977 so stubs shouldn't make an active effort to forbid
5978 it). */
0e998d96 5979 && !(remote_multi_process_p (rs) && ptid.is_pid ()))
c1e36e3e
PA
5980 {
5981 struct thread_info *tp;
5982
d7e15655 5983 if (ptid == minus_one_ptid)
c1e36e3e
PA
5984 {
5985 /* If we don't know about the target thread's tid, then
5986 we're resuming magic_null_ptid (see caller). */
5987 tp = find_thread_ptid (magic_null_ptid);
5988 }
5989 else
5990 tp = find_thread_ptid (ptid);
5991 gdb_assert (tp != NULL);
5992
5993 if (tp->control.may_range_step)
5994 {
5995 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
5996
5997 p += xsnprintf (p, endp - p, ";r%s,%s",
5998 phex_nz (tp->control.step_range_start,
5999 addr_size),
6000 phex_nz (tp->control.step_range_end,
6001 addr_size));
6002 }
6003 else
6004 p += xsnprintf (p, endp - p, ";s");
6005 }
0d8f58ca
PA
6006 else if (step)
6007 p += xsnprintf (p, endp - p, ";s");
a493e3e2 6008 else if (siggnal != GDB_SIGNAL_0)
0d8f58ca
PA
6009 p += xsnprintf (p, endp - p, ";C%02x", siggnal);
6010 else
6011 p += xsnprintf (p, endp - p, ";c");
6012
0e998d96 6013 if (remote_multi_process_p (rs) && ptid.is_pid ())
0d8f58ca
PA
6014 {
6015 ptid_t nptid;
6016
6017 /* All (-1) threads of process. */
e99b03dc 6018 nptid = ptid_t (ptid.pid (), -1, 0);
0d8f58ca
PA
6019
6020 p += xsnprintf (p, endp - p, ":");
6021 p = write_ptid (p, endp, nptid);
6022 }
d7e15655 6023 else if (ptid != minus_one_ptid)
0d8f58ca
PA
6024 {
6025 p += xsnprintf (p, endp - p, ":");
6026 p = write_ptid (p, endp, ptid);
6027 }
6028
6029 return p;
6030}
6031
799a2abe
PA
6032/* Clear the thread's private info on resume. */
6033
6034static void
6035resume_clear_thread_private_info (struct thread_info *thread)
6036{
6037 if (thread->priv != NULL)
6038 {
7aabaf9d
SM
6039 remote_thread_info *priv = get_remote_thread_info (thread);
6040
6041 priv->stop_reason = TARGET_STOPPED_BY_NO_REASON;
6042 priv->watch_data_address = 0;
799a2abe
PA
6043 }
6044}
6045
e5ef252a
PA
6046/* Append a vCont continue-with-signal action for threads that have a
6047 non-zero stop signal. */
6048
6b8edb51
PA
6049char *
6050remote_target::append_pending_thread_resumptions (char *p, char *endp,
6051 ptid_t ptid)
e5ef252a 6052{
08036331
PA
6053 for (thread_info *thread : all_non_exited_threads (ptid))
6054 if (inferior_ptid != thread->ptid
70509625 6055 && thread->suspend.stop_signal != GDB_SIGNAL_0)
e5ef252a
PA
6056 {
6057 p = append_resumption (p, endp, thread->ptid,
6058 0, thread->suspend.stop_signal);
6059 thread->suspend.stop_signal = GDB_SIGNAL_0;
799a2abe 6060 resume_clear_thread_private_info (thread);
e5ef252a
PA
6061 }
6062
6063 return p;
6064}
6065
7b68ffbb
PA
6066/* Set the target running, using the packets that use Hc
6067 (c/s/C/S). */
6068
6b8edb51
PA
6069void
6070remote_target::remote_resume_with_hc (ptid_t ptid, int step,
6071 gdb_signal siggnal)
7b68ffbb
PA
6072{
6073 struct remote_state *rs = get_remote_state ();
7b68ffbb
PA
6074 char *buf;
6075
6076 rs->last_sent_signal = siggnal;
6077 rs->last_sent_step = step;
6078
6079 /* The c/s/C/S resume packets use Hc, so set the continue
6080 thread. */
d7e15655 6081 if (ptid == minus_one_ptid)
7b68ffbb
PA
6082 set_continue_thread (any_thread_ptid);
6083 else
6084 set_continue_thread (ptid);
6085
08036331 6086 for (thread_info *thread : all_non_exited_threads ())
7b68ffbb
PA
6087 resume_clear_thread_private_info (thread);
6088
8d64371b 6089 buf = rs->buf.data ();
6b8edb51 6090 if (::execution_direction == EXEC_REVERSE)
7b68ffbb
PA
6091 {
6092 /* We don't pass signals to the target in reverse exec mode. */
6093 if (info_verbose && siggnal != GDB_SIGNAL_0)
6094 warning (_(" - Can't pass signal %d to target in reverse: ignored."),
6095 siggnal);
6096
6097 if (step && packet_support (PACKET_bs) == PACKET_DISABLE)
6098 error (_("Remote reverse-step not supported."));
6099 if (!step && packet_support (PACKET_bc) == PACKET_DISABLE)
6100 error (_("Remote reverse-continue not supported."));
6101
6102 strcpy (buf, step ? "bs" : "bc");
6103 }
6104 else if (siggnal != GDB_SIGNAL_0)
6105 {
6106 buf[0] = step ? 'S' : 'C';
6107 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
6108 buf[2] = tohex (((int) siggnal) & 0xf);
6109 buf[3] = '\0';
6110 }
6111 else
6112 strcpy (buf, step ? "s" : "c");
6113
6114 putpkt (buf);
6115}
6116
506fb367
DJ
6117/* Resume the remote inferior by using a "vCont" packet. The thread
6118 to be resumed is PTID; STEP and SIGGNAL indicate whether the
79d7f229
PA
6119 resumed thread should be single-stepped and/or signalled. If PTID
6120 equals minus_one_ptid, then all threads are resumed; the thread to
6121 be stepped and/or signalled is given in the global INFERIOR_PTID.
6122 This function returns non-zero iff it resumes the inferior.
44eaed12 6123
7b68ffbb
PA
6124 This function issues a strict subset of all possible vCont commands
6125 at the moment. */
44eaed12 6126
6b8edb51
PA
6127int
6128remote_target::remote_resume_with_vcont (ptid_t ptid, int step,
6129 enum gdb_signal siggnal)
506fb367
DJ
6130{
6131 struct remote_state *rs = get_remote_state ();
82f73884
PA
6132 char *p;
6133 char *endp;
44eaed12 6134
7b68ffbb 6135 /* No reverse execution actions defined for vCont. */
6b8edb51 6136 if (::execution_direction == EXEC_REVERSE)
7b68ffbb
PA
6137 return 0;
6138
4082afcc 6139 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6b8edb51 6140 remote_vcont_probe ();
44eaed12 6141
4082afcc 6142 if (packet_support (PACKET_vCont) == PACKET_DISABLE)
6d820c5c 6143 return 0;
44eaed12 6144
8d64371b
TT
6145 p = rs->buf.data ();
6146 endp = p + get_remote_packet_size ();
82f73884 6147
506fb367
DJ
6148 /* If we could generate a wider range of packets, we'd have to worry
6149 about overflowing BUF. Should there be a generic
6150 "multi-part-packet" packet? */
6151
0d8f58ca
PA
6152 p += xsnprintf (p, endp - p, "vCont");
6153
d7e15655 6154 if (ptid == magic_null_ptid)
c906108c 6155 {
79d7f229
PA
6156 /* MAGIC_NULL_PTID means that we don't have any active threads,
6157 so we don't have any TID numbers the inferior will
6158 understand. Make sure to only send forms that do not specify
6159 a TID. */
a9cbf802 6160 append_resumption (p, endp, minus_one_ptid, step, siggnal);
506fb367 6161 }
d7e15655 6162 else if (ptid == minus_one_ptid || ptid.is_pid ())
506fb367 6163 {
0d8f58ca
PA
6164 /* Resume all threads (of all processes, or of a single
6165 process), with preference for INFERIOR_PTID. This assumes
6166 inferior_ptid belongs to the set of all threads we are about
6167 to resume. */
a493e3e2 6168 if (step || siggnal != GDB_SIGNAL_0)
82f73884 6169 {
0d8f58ca
PA
6170 /* Step inferior_ptid, with or without signal. */
6171 p = append_resumption (p, endp, inferior_ptid, step, siggnal);
82f73884 6172 }
0d8f58ca 6173
e5ef252a
PA
6174 /* Also pass down any pending signaled resumption for other
6175 threads not the current. */
6176 p = append_pending_thread_resumptions (p, endp, ptid);
6177
0d8f58ca 6178 /* And continue others without a signal. */
a493e3e2 6179 append_resumption (p, endp, ptid, /*step=*/ 0, GDB_SIGNAL_0);
c906108c
SS
6180 }
6181 else
506fb367
DJ
6182 {
6183 /* Scheduler locking; resume only PTID. */
a9cbf802 6184 append_resumption (p, endp, ptid, step, siggnal);
506fb367 6185 }
c906108c 6186
8d64371b 6187 gdb_assert (strlen (rs->buf.data ()) < get_remote_packet_size ());
82f73884 6188 putpkt (rs->buf);
506fb367 6189
6efcd9a8 6190 if (target_is_non_stop_p ())
74531fed
PA
6191 {
6192 /* In non-stop, the stub replies to vCont with "OK". The stop
6193 reply will be reported asynchronously by means of a `%Stop'
6194 notification. */
8d64371b
TT
6195 getpkt (&rs->buf, 0);
6196 if (strcmp (rs->buf.data (), "OK") != 0)
6197 error (_("Unexpected vCont reply in non-stop mode: %s"),
6198 rs->buf.data ());
74531fed
PA
6199 }
6200
506fb367 6201 return 1;
c906108c 6202}
43ff13b4 6203
506fb367
DJ
6204/* Tell the remote machine to resume. */
6205
f6ac5f3d
PA
6206void
6207remote_target::resume (ptid_t ptid, int step, enum gdb_signal siggnal)
43ff13b4 6208{
d01949b6 6209 struct remote_state *rs = get_remote_state ();
43ff13b4 6210
85ad3aaf
PA
6211 /* When connected in non-stop mode, the core resumes threads
6212 individually. Resuming remote threads directly in target_resume
6213 would thus result in sending one packet per thread. Instead, to
6214 minimize roundtrip latency, here we just store the resume
6215 request; the actual remote resumption will be done in
6216 target_commit_resume / remote_commit_resume, where we'll be able
6217 to do vCont action coalescing. */
f6ac5f3d 6218 if (target_is_non_stop_p () && ::execution_direction != EXEC_REVERSE)
85ad3aaf 6219 {
7aabaf9d 6220 remote_thread_info *remote_thr;
85ad3aaf 6221
d7e15655 6222 if (minus_one_ptid == ptid || ptid.is_pid ())
7aabaf9d 6223 remote_thr = get_remote_thread_info (inferior_ptid);
85ad3aaf 6224 else
7aabaf9d
SM
6225 remote_thr = get_remote_thread_info (ptid);
6226
85ad3aaf
PA
6227 remote_thr->last_resume_step = step;
6228 remote_thr->last_resume_sig = siggnal;
6229 return;
6230 }
6231
722247f1
YQ
6232 /* In all-stop, we can't mark REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN
6233 (explained in remote-notif.c:handle_notification) so
6234 remote_notif_process is not called. We need find a place where
6235 it is safe to start a 'vNotif' sequence. It is good to do it
6236 before resuming inferior, because inferior was stopped and no RSP
6237 traffic at that moment. */
6efcd9a8 6238 if (!target_is_non_stop_p ())
5965e028 6239 remote_notif_process (rs->notif_state, &notif_client_stop);
722247f1 6240
f6ac5f3d 6241 rs->last_resume_exec_dir = ::execution_direction;
3a00c802 6242
7b68ffbb
PA
6243 /* Prefer vCont, and fallback to s/c/S/C, which use Hc. */
6244 if (!remote_resume_with_vcont (ptid, step, siggnal))
6b8edb51 6245 remote_resume_with_hc (ptid, step, siggnal);
43ff13b4 6246
2acceee2 6247 /* We are about to start executing the inferior, let's register it
0df8b418
MS
6248 with the event loop. NOTE: this is the one place where all the
6249 execution commands end up. We could alternatively do this in each
23860348 6250 of the execution commands in infcmd.c. */
2acceee2
JM
6251 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
6252 into infcmd.c in order to allow inferior function calls to work
23860348 6253 NOT asynchronously. */
362646f5 6254 if (target_can_async_p ())
6a3753b3 6255 target_async (1);
e24a49d8
PA
6256
6257 /* We've just told the target to resume. The remote server will
6258 wait for the inferior to stop, and then send a stop reply. In
6259 the mean time, we can't start another command/query ourselves
74531fed
PA
6260 because the stub wouldn't be ready to process it. This applies
6261 only to the base all-stop protocol, however. In non-stop (which
6262 only supports vCont), the stub replies with an "OK", and is
6263 immediate able to process further serial input. */
6efcd9a8 6264 if (!target_is_non_stop_p ())
74531fed 6265 rs->waiting_for_stop_reply = 1;
43ff13b4 6266}
85ad3aaf 6267
85ad3aaf
PA
6268static int is_pending_fork_parent_thread (struct thread_info *thread);
6269
6270/* Private per-inferior info for target remote processes. */
6271
089354bb 6272struct remote_inferior : public private_inferior
85ad3aaf
PA
6273{
6274 /* Whether we can send a wildcard vCont for this process. */
089354bb 6275 bool may_wildcard_vcont = true;
85ad3aaf
PA
6276};
6277
089354bb
SM
6278/* Get the remote private inferior data associated to INF. */
6279
6280static remote_inferior *
6281get_remote_inferior (inferior *inf)
6282{
6283 if (inf->priv == NULL)
6284 inf->priv.reset (new remote_inferior);
6285
6286 return static_cast<remote_inferior *> (inf->priv.get ());
6287}
6288
f5db4863 6289/* Class used to track the construction of a vCont packet in the
85ad3aaf
PA
6290 outgoing packet buffer. This is used to send multiple vCont
6291 packets if we have more actions than would fit a single packet. */
6292
f5db4863 6293class vcont_builder
85ad3aaf 6294{
f5db4863 6295public:
6b8edb51
PA
6296 explicit vcont_builder (remote_target *remote)
6297 : m_remote (remote)
f5db4863
PA
6298 {
6299 restart ();
6300 }
6301
6302 void flush ();
6303 void push_action (ptid_t ptid, bool step, gdb_signal siggnal);
6304
6305private:
6306 void restart ();
6307
6b8edb51
PA
6308 /* The remote target. */
6309 remote_target *m_remote;
6310
85ad3aaf
PA
6311 /* Pointer to the first action. P points here if no action has been
6312 appended yet. */
f5db4863 6313 char *m_first_action;
85ad3aaf
PA
6314
6315 /* Where the next action will be appended. */
f5db4863 6316 char *m_p;
85ad3aaf
PA
6317
6318 /* The end of the buffer. Must never write past this. */
f5db4863 6319 char *m_endp;
85ad3aaf
PA
6320};
6321
6322/* Prepare the outgoing buffer for a new vCont packet. */
6323
f5db4863
PA
6324void
6325vcont_builder::restart ()
85ad3aaf 6326{
6b8edb51 6327 struct remote_state *rs = m_remote->get_remote_state ();
85ad3aaf 6328
8d64371b
TT
6329 m_p = rs->buf.data ();
6330 m_endp = m_p + m_remote->get_remote_packet_size ();
f5db4863
PA
6331 m_p += xsnprintf (m_p, m_endp - m_p, "vCont");
6332 m_first_action = m_p;
85ad3aaf
PA
6333}
6334
6335/* If the vCont packet being built has any action, send it to the
6336 remote end. */
6337
f5db4863
PA
6338void
6339vcont_builder::flush ()
85ad3aaf
PA
6340{
6341 struct remote_state *rs;
6342
f5db4863 6343 if (m_p == m_first_action)
85ad3aaf
PA
6344 return;
6345
6b8edb51
PA
6346 rs = m_remote->get_remote_state ();
6347 m_remote->putpkt (rs->buf);
8d64371b
TT
6348 m_remote->getpkt (&rs->buf, 0);
6349 if (strcmp (rs->buf.data (), "OK") != 0)
6350 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf.data ());
85ad3aaf
PA
6351}
6352
6353/* The largest action is range-stepping, with its two addresses. This
6354 is more than sufficient. If a new, bigger action is created, it'll
6355 quickly trigger a failed assertion in append_resumption (and we'll
6356 just bump this). */
6357#define MAX_ACTION_SIZE 200
6358
6359/* Append a new vCont action in the outgoing packet being built. If
6360 the action doesn't fit the packet along with previous actions, push
6361 what we've got so far to the remote end and start over a new vCont
6362 packet (with the new action). */
6363
f5db4863
PA
6364void
6365vcont_builder::push_action (ptid_t ptid, bool step, gdb_signal siggnal)
85ad3aaf
PA
6366{
6367 char buf[MAX_ACTION_SIZE + 1];
85ad3aaf 6368
6b8edb51
PA
6369 char *endp = m_remote->append_resumption (buf, buf + sizeof (buf),
6370 ptid, step, siggnal);
85ad3aaf
PA
6371
6372 /* Check whether this new action would fit in the vCont packet along
6373 with previous actions. If not, send what we've got so far and
6374 start a new vCont packet. */
f5db4863
PA
6375 size_t rsize = endp - buf;
6376 if (rsize > m_endp - m_p)
85ad3aaf 6377 {
f5db4863
PA
6378 flush ();
6379 restart ();
85ad3aaf
PA
6380
6381 /* Should now fit. */
f5db4863 6382 gdb_assert (rsize <= m_endp - m_p);
85ad3aaf
PA
6383 }
6384
f5db4863
PA
6385 memcpy (m_p, buf, rsize);
6386 m_p += rsize;
6387 *m_p = '\0';
85ad3aaf
PA
6388}
6389
6390/* to_commit_resume implementation. */
6391
f6ac5f3d
PA
6392void
6393remote_target::commit_resume ()
85ad3aaf 6394{
85ad3aaf
PA
6395 int any_process_wildcard;
6396 int may_global_wildcard_vcont;
85ad3aaf
PA
6397
6398 /* If connected in all-stop mode, we'd send the remote resume
6399 request directly from remote_resume. Likewise if
6400 reverse-debugging, as there are no defined vCont actions for
6401 reverse execution. */
f6ac5f3d 6402 if (!target_is_non_stop_p () || ::execution_direction == EXEC_REVERSE)
85ad3aaf
PA
6403 return;
6404
6405 /* Try to send wildcard actions ("vCont;c" or "vCont;c:pPID.-1")
6406 instead of resuming all threads of each process individually.
6407 However, if any thread of a process must remain halted, we can't
6408 send wildcard resumes and must send one action per thread.
6409
6410 Care must be taken to not resume threads/processes the server
6411 side already told us are stopped, but the core doesn't know about
6412 yet, because the events are still in the vStopped notification
6413 queue. For example:
6414
6415 #1 => vCont s:p1.1;c
6416 #2 <= OK
6417 #3 <= %Stopped T05 p1.1
6418 #4 => vStopped
6419 #5 <= T05 p1.2
6420 #6 => vStopped
6421 #7 <= OK
6422 #8 (infrun handles the stop for p1.1 and continues stepping)
6423 #9 => vCont s:p1.1;c
6424
6425 The last vCont above would resume thread p1.2 by mistake, because
6426 the server has no idea that the event for p1.2 had not been
6427 handled yet.
6428
6429 The server side must similarly ignore resume actions for the
6430 thread that has a pending %Stopped notification (and any other
6431 threads with events pending), until GDB acks the notification
6432 with vStopped. Otherwise, e.g., the following case is
6433 mishandled:
6434
6435 #1 => g (or any other packet)
6436 #2 <= [registers]
6437 #3 <= %Stopped T05 p1.2
6438 #4 => vCont s:p1.1;c
6439 #5 <= OK
6440
6441 Above, the server must not resume thread p1.2. GDB can't know
6442 that p1.2 stopped until it acks the %Stopped notification, and
6443 since from GDB's perspective all threads should be running, it
6444 sends a "c" action.
6445
6446 Finally, special care must also be given to handling fork/vfork
6447 events. A (v)fork event actually tells us that two processes
6448 stopped -- the parent and the child. Until we follow the fork,
6449 we must not resume the child. Therefore, if we have a pending
6450 fork follow, we must not send a global wildcard resume action
6451 (vCont;c). We can still send process-wide wildcards though. */
6452
6453 /* Start by assuming a global wildcard (vCont;c) is possible. */
6454 may_global_wildcard_vcont = 1;
6455
6456 /* And assume every process is individually wildcard-able too. */
08036331 6457 for (inferior *inf : all_non_exited_inferiors ())
85ad3aaf 6458 {
089354bb
SM
6459 remote_inferior *priv = get_remote_inferior (inf);
6460
6461 priv->may_wildcard_vcont = true;
85ad3aaf
PA
6462 }
6463
6464 /* Check for any pending events (not reported or processed yet) and
6465 disable process and global wildcard resumes appropriately. */
6466 check_pending_events_prevent_wildcard_vcont (&may_global_wildcard_vcont);
6467
08036331 6468 for (thread_info *tp : all_non_exited_threads ())
85ad3aaf
PA
6469 {
6470 /* If a thread of a process is not meant to be resumed, then we
6471 can't wildcard that process. */
6472 if (!tp->executing)
6473 {
089354bb 6474 get_remote_inferior (tp->inf)->may_wildcard_vcont = false;
85ad3aaf
PA
6475
6476 /* And if we can't wildcard a process, we can't wildcard
6477 everything either. */
6478 may_global_wildcard_vcont = 0;
6479 continue;
6480 }
6481
6482 /* If a thread is the parent of an unfollowed fork, then we
6483 can't do a global wildcard, as that would resume the fork
6484 child. */
6485 if (is_pending_fork_parent_thread (tp))
6486 may_global_wildcard_vcont = 0;
6487 }
6488
6489 /* Now let's build the vCont packet(s). Actions must be appended
6490 from narrower to wider scopes (thread -> process -> global). If
6491 we end up with too many actions for a single packet vcont_builder
6492 flushes the current vCont packet to the remote side and starts a
6493 new one. */
6b8edb51 6494 struct vcont_builder vcont_builder (this);
85ad3aaf
PA
6495
6496 /* Threads first. */
08036331 6497 for (thread_info *tp : all_non_exited_threads ())
85ad3aaf 6498 {
7aabaf9d 6499 remote_thread_info *remote_thr = get_remote_thread_info (tp);
85ad3aaf
PA
6500
6501 if (!tp->executing || remote_thr->vcont_resumed)
6502 continue;
6503
6504 gdb_assert (!thread_is_in_step_over_chain (tp));
6505
6506 if (!remote_thr->last_resume_step
6507 && remote_thr->last_resume_sig == GDB_SIGNAL_0
089354bb 6508 && get_remote_inferior (tp->inf)->may_wildcard_vcont)
85ad3aaf
PA
6509 {
6510 /* We'll send a wildcard resume instead. */
6511 remote_thr->vcont_resumed = 1;
6512 continue;
6513 }
6514
f5db4863 6515 vcont_builder.push_action (tp->ptid,
85ad3aaf
PA
6516 remote_thr->last_resume_step,
6517 remote_thr->last_resume_sig);
6518 remote_thr->vcont_resumed = 1;
6519 }
6520
6521 /* Now check whether we can send any process-wide wildcard. This is
6522 to avoid sending a global wildcard in the case nothing is
6523 supposed to be resumed. */
6524 any_process_wildcard = 0;
6525
08036331 6526 for (inferior *inf : all_non_exited_inferiors ())
85ad3aaf 6527 {
089354bb 6528 if (get_remote_inferior (inf)->may_wildcard_vcont)
85ad3aaf
PA
6529 {
6530 any_process_wildcard = 1;
6531 break;
6532 }
6533 }
6534
6535 if (any_process_wildcard)
6536 {
6537 /* If all processes are wildcard-able, then send a single "c"
6538 action, otherwise, send an "all (-1) threads of process"
6539 continue action for each running process, if any. */
6540 if (may_global_wildcard_vcont)
6541 {
f5db4863
PA
6542 vcont_builder.push_action (minus_one_ptid,
6543 false, GDB_SIGNAL_0);
85ad3aaf
PA
6544 }
6545 else
6546 {
08036331 6547 for (inferior *inf : all_non_exited_inferiors ())
85ad3aaf 6548 {
089354bb 6549 if (get_remote_inferior (inf)->may_wildcard_vcont)
85ad3aaf 6550 {
f2907e49 6551 vcont_builder.push_action (ptid_t (inf->pid),
f5db4863 6552 false, GDB_SIGNAL_0);
85ad3aaf
PA
6553 }
6554 }
6555 }
6556 }
6557
f5db4863 6558 vcont_builder.flush ();
85ad3aaf
PA
6559}
6560
c906108c 6561\f
43ff13b4 6562
74531fed
PA
6563/* Non-stop version of target_stop. Uses `vCont;t' to stop a remote
6564 thread, all threads of a remote process, or all threads of all
6565 processes. */
6566
6b8edb51
PA
6567void
6568remote_target::remote_stop_ns (ptid_t ptid)
74531fed
PA
6569{
6570 struct remote_state *rs = get_remote_state ();
8d64371b
TT
6571 char *p = rs->buf.data ();
6572 char *endp = p + get_remote_packet_size ();
74531fed 6573
4082afcc 6574 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6b8edb51 6575 remote_vcont_probe ();
74531fed 6576
d458bd84 6577 if (!rs->supports_vCont.t)
74531fed
PA
6578 error (_("Remote server does not support stopping threads"));
6579
d7e15655 6580 if (ptid == minus_one_ptid
0e998d96 6581 || (!remote_multi_process_p (rs) && ptid.is_pid ()))
74531fed
PA
6582 p += xsnprintf (p, endp - p, "vCont;t");
6583 else
6584 {
6585 ptid_t nptid;
6586
74531fed
PA
6587 p += xsnprintf (p, endp - p, "vCont;t:");
6588
0e998d96 6589 if (ptid.is_pid ())
74531fed 6590 /* All (-1) threads of process. */
e99b03dc 6591 nptid = ptid_t (ptid.pid (), -1, 0);
74531fed
PA
6592 else
6593 {
6594 /* Small optimization: if we already have a stop reply for
6595 this thread, no use in telling the stub we want this
6596 stopped. */
6597 if (peek_stop_reply (ptid))
6598 return;
6599
6600 nptid = ptid;
6601 }
6602
a9cbf802 6603 write_ptid (p, endp, nptid);
74531fed
PA
6604 }
6605
6606 /* In non-stop, we get an immediate OK reply. The stop reply will
6607 come in asynchronously by notification. */
6608 putpkt (rs->buf);
8d64371b
TT
6609 getpkt (&rs->buf, 0);
6610 if (strcmp (rs->buf.data (), "OK") != 0)
a068643d 6611 error (_("Stopping %s failed: %s"), target_pid_to_str (ptid).c_str (),
8d64371b 6612 rs->buf.data ());
74531fed
PA
6613}
6614
bfedc46a
PA
6615/* All-stop version of target_interrupt. Sends a break or a ^C to
6616 interrupt the remote target. It is undefined which thread of which
6617 process reports the interrupt. */
74531fed 6618
6b8edb51
PA
6619void
6620remote_target::remote_interrupt_as ()
74531fed
PA
6621{
6622 struct remote_state *rs = get_remote_state ();
6623
3a29589a
DJ
6624 rs->ctrlc_pending_p = 1;
6625
74531fed
PA
6626 /* If the inferior is stopped already, but the core didn't know
6627 about it yet, just ignore the request. The cached wait status
6628 will be collected in remote_wait. */
6629 if (rs->cached_wait_status)
6630 return;
6631
9a7071a8
JB
6632 /* Send interrupt_sequence to remote target. */
6633 send_interrupt_sequence ();
74531fed
PA
6634}
6635
de979965
PA
6636/* Non-stop version of target_interrupt. Uses `vCtrlC' to interrupt
6637 the remote target. It is undefined which thread of which process
e42de8c7
PA
6638 reports the interrupt. Throws an error if the packet is not
6639 supported by the server. */
de979965 6640
6b8edb51
PA
6641void
6642remote_target::remote_interrupt_ns ()
de979965
PA
6643{
6644 struct remote_state *rs = get_remote_state ();
8d64371b
TT
6645 char *p = rs->buf.data ();
6646 char *endp = p + get_remote_packet_size ();
de979965
PA
6647
6648 xsnprintf (p, endp - p, "vCtrlC");
6649
6650 /* In non-stop, we get an immediate OK reply. The stop reply will
6651 come in asynchronously by notification. */
6652 putpkt (rs->buf);
8d64371b 6653 getpkt (&rs->buf, 0);
de979965
PA
6654
6655 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCtrlC]))
6656 {
6657 case PACKET_OK:
6658 break;
6659 case PACKET_UNKNOWN:
e42de8c7 6660 error (_("No support for interrupting the remote target."));
de979965 6661 case PACKET_ERROR:
8d64371b 6662 error (_("Interrupting target failed: %s"), rs->buf.data ());
de979965 6663 }
de979965
PA
6664}
6665
bfedc46a 6666/* Implement the to_stop function for the remote targets. */
74531fed 6667
f6ac5f3d
PA
6668void
6669remote_target::stop (ptid_t ptid)
c906108c 6670{
7a292a7a 6671 if (remote_debug)
0f71a2f6 6672 fprintf_unfiltered (gdb_stdlog, "remote_stop called\n");
c906108c 6673
6efcd9a8 6674 if (target_is_non_stop_p ())
74531fed 6675 remote_stop_ns (ptid);
c906108c 6676 else
bfedc46a
PA
6677 {
6678 /* We don't currently have a way to transparently pause the
6679 remote target in all-stop mode. Interrupt it instead. */
de979965 6680 remote_interrupt_as ();
bfedc46a
PA
6681 }
6682}
6683
6684/* Implement the to_interrupt function for the remote targets. */
6685
f6ac5f3d
PA
6686void
6687remote_target::interrupt ()
bfedc46a
PA
6688{
6689 if (remote_debug)
6690 fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n");
6691
e42de8c7
PA
6692 if (target_is_non_stop_p ())
6693 remote_interrupt_ns ();
bfedc46a 6694 else
e42de8c7 6695 remote_interrupt_as ();
c906108c
SS
6696}
6697
93692b58
PA
6698/* Implement the to_pass_ctrlc function for the remote targets. */
6699
f6ac5f3d
PA
6700void
6701remote_target::pass_ctrlc ()
93692b58
PA
6702{
6703 struct remote_state *rs = get_remote_state ();
6704
6705 if (remote_debug)
6706 fprintf_unfiltered (gdb_stdlog, "remote_pass_ctrlc called\n");
6707
6708 /* If we're starting up, we're not fully synced yet. Quit
6709 immediately. */
6710 if (rs->starting_up)
6711 quit ();
6712 /* If ^C has already been sent once, offer to disconnect. */
6713 else if (rs->ctrlc_pending_p)
6714 interrupt_query ();
6715 else
e671cd59 6716 target_interrupt ();
93692b58
PA
6717}
6718
c906108c
SS
6719/* Ask the user what to do when an interrupt is received. */
6720
6b8edb51
PA
6721void
6722remote_target::interrupt_query ()
c906108c 6723{
abc56d60 6724 struct remote_state *rs = get_remote_state ();
c906108c 6725
abc56d60 6726 if (rs->waiting_for_stop_reply && rs->ctrlc_pending_p)
74531fed 6727 {
abc56d60
PA
6728 if (query (_("The target is not responding to interrupt requests.\n"
6729 "Stop debugging it? ")))
74531fed 6730 {
78a095c3 6731 remote_unpush_target ();
abc56d60 6732 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
74531fed
PA
6733 }
6734 }
abc56d60
PA
6735 else
6736 {
6737 if (query (_("Interrupted while waiting for the program.\n"
6738 "Give up waiting? ")))
6739 quit ();
6740 }
c906108c
SS
6741}
6742
6426a772
JM
6743/* Enable/disable target terminal ownership. Most targets can use
6744 terminal groups to control terminal ownership. Remote targets are
6745 different in that explicit transfer of ownership to/from GDB/target
23860348 6746 is required. */
6426a772 6747
f6ac5f3d
PA
6748void
6749remote_target::terminal_inferior ()
6426a772 6750{
6426a772
JM
6751 /* NOTE: At this point we could also register our selves as the
6752 recipient of all input. Any characters typed could then be
23860348 6753 passed on down to the target. */
6426a772
JM
6754}
6755
f6ac5f3d
PA
6756void
6757remote_target::terminal_ours ()
6426a772 6758{
6426a772
JM
6759}
6760
176a6961 6761static void
05be00a8 6762remote_console_output (const char *msg)
c906108c 6763{
05be00a8 6764 const char *p;
c906108c 6765
c5aa993b 6766 for (p = msg; p[0] && p[1]; p += 2)
c906108c
SS
6767 {
6768 char tb[2];
6769 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
a744cf53 6770
c906108c
SS
6771 tb[0] = c;
6772 tb[1] = 0;
43ff13b4 6773 fputs_unfiltered (tb, gdb_stdtarg);
c906108c 6774 }
00db5b94
PA
6775 gdb_flush (gdb_stdtarg);
6776}
74531fed 6777
32603266 6778struct stop_reply : public notif_event
74531fed 6779{
32603266 6780 ~stop_reply ();
74531fed 6781
722247f1 6782 /* The identifier of the thread about this event */
74531fed
PA
6783 ptid_t ptid;
6784
340e3c99 6785 /* The remote state this event is associated with. When the remote
bcc75809
YQ
6786 connection, represented by a remote_state object, is closed,
6787 all the associated stop_reply events should be released. */
6788 struct remote_state *rs;
6789
74531fed
PA
6790 struct target_waitstatus ws;
6791
5cd63fda
PA
6792 /* The architecture associated with the expedited registers. */
6793 gdbarch *arch;
6794
15148d6a
PA
6795 /* Expedited registers. This makes remote debugging a bit more
6796 efficient for those targets that provide critical registers as
6797 part of their normal status mechanism (as another roundtrip to
6798 fetch them is avoided). */
32603266 6799 std::vector<cached_reg_t> regcache;
74531fed 6800
f7e6eed5
PA
6801 enum target_stop_reason stop_reason;
6802
74531fed
PA
6803 CORE_ADDR watch_data_address;
6804
dc146f7c 6805 int core;
32603266 6806};
c906108c 6807
221e1a37
PA
6808/* Return the length of the stop reply queue. */
6809
6b8edb51
PA
6810int
6811remote_target::stop_reply_queue_length ()
221e1a37 6812{
6b8edb51 6813 remote_state *rs = get_remote_state ();
953edf2b 6814 return rs->stop_reply_queue.size ();
221e1a37
PA
6815}
6816
6b8edb51
PA
6817void
6818remote_notif_stop_parse (remote_target *remote,
bb277751 6819 struct notif_client *self, const char *buf,
722247f1
YQ
6820 struct notif_event *event)
6821{
6b8edb51 6822 remote->remote_parse_stop_reply (buf, (struct stop_reply *) event);
722247f1
YQ
6823}
6824
6825static void
6b8edb51 6826remote_notif_stop_ack (remote_target *remote,
bb277751 6827 struct notif_client *self, const char *buf,
722247f1
YQ
6828 struct notif_event *event)
6829{
6830 struct stop_reply *stop_reply = (struct stop_reply *) event;
6831
6832 /* acknowledge */
6b8edb51 6833 putpkt (remote, self->ack_command);
722247f1
YQ
6834
6835 if (stop_reply->ws.kind == TARGET_WAITKIND_IGNORE)
6b8edb51 6836 {
722247f1
YQ
6837 /* We got an unknown stop reply. */
6838 error (_("Unknown stop reply"));
6b8edb51 6839 }
722247f1 6840
6b8edb51 6841 remote->push_stop_reply (stop_reply);
722247f1
YQ
6842}
6843
6844static int
6b8edb51
PA
6845remote_notif_stop_can_get_pending_events (remote_target *remote,
6846 struct notif_client *self)
722247f1
YQ
6847{
6848 /* We can't get pending events in remote_notif_process for
6849 notification stop, and we have to do this in remote_wait_ns
6850 instead. If we fetch all queued events from stub, remote stub
6851 may exit and we have no chance to process them back in
6852 remote_wait_ns. */
6b8edb51
PA
6853 remote_state *rs = remote->get_remote_state ();
6854 mark_async_event_handler (rs->remote_async_inferior_event_token);
722247f1
YQ
6855 return 0;
6856}
6857
32603266 6858stop_reply::~stop_reply ()
722247f1 6859{
32603266
TT
6860 for (cached_reg_t &reg : regcache)
6861 xfree (reg.data);
722247f1
YQ
6862}
6863
32603266
TT
6864static notif_event_up
6865remote_notif_stop_alloc_reply ()
722247f1 6866{
32603266 6867 return notif_event_up (new struct stop_reply ());
722247f1
YQ
6868}
6869
6870/* A client of notification Stop. */
6871
6872struct notif_client notif_client_stop =
6873{
6874 "Stop",
6875 "vStopped",
6876 remote_notif_stop_parse,
6877 remote_notif_stop_ack,
6878 remote_notif_stop_can_get_pending_events,
6879 remote_notif_stop_alloc_reply,
f48ff2a7 6880 REMOTE_NOTIF_STOP,
722247f1
YQ
6881};
6882
85ad3aaf 6883/* Determine if THREAD_PTID is a pending fork parent thread. ARG contains
cbb8991c
DB
6884 the pid of the process that owns the threads we want to check, or
6885 -1 if we want to check all threads. */
6886
6887static int
6888is_pending_fork_parent (struct target_waitstatus *ws, int event_pid,
6889 ptid_t thread_ptid)
6890{
6891 if (ws->kind == TARGET_WAITKIND_FORKED
6892 || ws->kind == TARGET_WAITKIND_VFORKED)
6893 {
e99b03dc 6894 if (event_pid == -1 || event_pid == thread_ptid.pid ())
cbb8991c
DB
6895 return 1;
6896 }
6897
6898 return 0;
6899}
6900
85ad3aaf
PA
6901/* Return the thread's pending status used to determine whether the
6902 thread is a fork parent stopped at a fork event. */
6903
6904static struct target_waitstatus *
6905thread_pending_fork_status (struct thread_info *thread)
6906{
6907 if (thread->suspend.waitstatus_pending_p)
6908 return &thread->suspend.waitstatus;
6909 else
6910 return &thread->pending_follow;
6911}
6912
6913/* Determine if THREAD is a pending fork parent thread. */
6914
6915static int
6916is_pending_fork_parent_thread (struct thread_info *thread)
6917{
6918 struct target_waitstatus *ws = thread_pending_fork_status (thread);
6919 int pid = -1;
6920
6921 return is_pending_fork_parent (ws, pid, thread->ptid);
6922}
6923
cbb8991c
DB
6924/* If CONTEXT contains any fork child threads that have not been
6925 reported yet, remove them from the CONTEXT list. If such a
6926 thread exists it is because we are stopped at a fork catchpoint
6927 and have not yet called follow_fork, which will set up the
6928 host-side data structures for the new process. */
6929
6b8edb51
PA
6930void
6931remote_target::remove_new_fork_children (threads_listing_context *context)
cbb8991c 6932{
cbb8991c
DB
6933 int pid = -1;
6934 struct notif_client *notif = &notif_client_stop;
cbb8991c
DB
6935
6936 /* For any threads stopped at a fork event, remove the corresponding
6937 fork child threads from the CONTEXT list. */
08036331 6938 for (thread_info *thread : all_non_exited_threads ())
cbb8991c 6939 {
85ad3aaf 6940 struct target_waitstatus *ws = thread_pending_fork_status (thread);
cbb8991c
DB
6941
6942 if (is_pending_fork_parent (ws, pid, thread->ptid))
21fe1c75 6943 context->remove_thread (ws->value.related_pid);
cbb8991c
DB
6944 }
6945
6946 /* Check for any pending fork events (not reported or processed yet)
6947 in process PID and remove those fork child threads from the
6948 CONTEXT list as well. */
6949 remote_notif_get_pending_events (notif);
953edf2b
TT
6950 for (auto &event : get_remote_state ()->stop_reply_queue)
6951 if (event->ws.kind == TARGET_WAITKIND_FORKED
6952 || event->ws.kind == TARGET_WAITKIND_VFORKED
6953 || event->ws.kind == TARGET_WAITKIND_THREAD_EXITED)
6954 context->remove_thread (event->ws.value.related_pid);
85ad3aaf
PA
6955}
6956
6957/* Check whether any event pending in the vStopped queue would prevent
6958 a global or process wildcard vCont action. Clear
6959 *may_global_wildcard if we can't do a global wildcard (vCont;c),
6960 and clear the event inferior's may_wildcard_vcont flag if we can't
6961 do a process-wide wildcard resume (vCont;c:pPID.-1). */
6962
6b8edb51
PA
6963void
6964remote_target::check_pending_events_prevent_wildcard_vcont
6965 (int *may_global_wildcard)
85ad3aaf
PA
6966{
6967 struct notif_client *notif = &notif_client_stop;
6968
6969 remote_notif_get_pending_events (notif);
953edf2b
TT
6970 for (auto &event : get_remote_state ()->stop_reply_queue)
6971 {
6972 if (event->ws.kind == TARGET_WAITKIND_NO_RESUMED
6973 || event->ws.kind == TARGET_WAITKIND_NO_HISTORY)
6974 continue;
85ad3aaf 6975
953edf2b
TT
6976 if (event->ws.kind == TARGET_WAITKIND_FORKED
6977 || event->ws.kind == TARGET_WAITKIND_VFORKED)
6978 *may_global_wildcard = 0;
722247f1 6979
953edf2b 6980 struct inferior *inf = find_inferior_ptid (event->ptid);
722247f1 6981
953edf2b
TT
6982 /* This may be the first time we heard about this process.
6983 Regardless, we must not do a global wildcard resume, otherwise
6984 we'd resume this process too. */
6985 *may_global_wildcard = 0;
6986 if (inf != NULL)
6987 get_remote_inferior (inf)->may_wildcard_vcont = false;
722247f1 6988 }
722247f1
YQ
6989}
6990
f48ff2a7 6991/* Discard all pending stop replies of inferior INF. */
c906108c 6992
6b8edb51
PA
6993void
6994remote_target::discard_pending_stop_replies (struct inferior *inf)
c906108c 6995{
f48ff2a7
YQ
6996 struct stop_reply *reply;
6997 struct remote_state *rs = get_remote_state ();
6998 struct remote_notif_state *rns = rs->notif_state;
6999
7000 /* This function can be notified when an inferior exists. When the
7001 target is not remote, the notification state is NULL. */
7002 if (rs->remote_desc == NULL)
7003 return;
7004
7005 reply = (struct stop_reply *) rns->pending_event[notif_client_stop.id];
c906108c 7006
74531fed 7007 /* Discard the in-flight notification. */
e99b03dc 7008 if (reply != NULL && reply->ptid.pid () == inf->pid)
74531fed 7009 {
32603266 7010 delete reply;
f48ff2a7 7011 rns->pending_event[notif_client_stop.id] = NULL;
74531fed 7012 }
c906108c 7013
74531fed
PA
7014 /* Discard the stop replies we have already pulled with
7015 vStopped. */
953edf2b
TT
7016 auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7017 rs->stop_reply_queue.end (),
7018 [=] (const stop_reply_up &event)
7019 {
7020 return event->ptid.pid () == inf->pid;
7021 });
7022 rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
bcc75809
YQ
7023}
7024
7025/* Discard the stop replies for RS in stop_reply_queue. */
f48ff2a7 7026
6b8edb51
PA
7027void
7028remote_target::discard_pending_stop_replies_in_queue ()
f48ff2a7 7029{
6b8edb51 7030 remote_state *rs = get_remote_state ();
f48ff2a7 7031
f48ff2a7
YQ
7032 /* Discard the stop replies we have already pulled with
7033 vStopped. */
953edf2b
TT
7034 auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7035 rs->stop_reply_queue.end (),
7036 [=] (const stop_reply_up &event)
7037 {
7038 return event->rs == rs;
7039 });
7040 rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
74531fed 7041}
43ff13b4 7042
722247f1
YQ
7043/* Remove the first reply in 'stop_reply_queue' which matches
7044 PTID. */
2e9f7625 7045
6b8edb51
PA
7046struct stop_reply *
7047remote_target::remote_notif_remove_queued_reply (ptid_t ptid)
74531fed 7048{
953edf2b 7049 remote_state *rs = get_remote_state ();
722247f1 7050
953edf2b
TT
7051 auto iter = std::find_if (rs->stop_reply_queue.begin (),
7052 rs->stop_reply_queue.end (),
7053 [=] (const stop_reply_up &event)
7054 {
7055 return event->ptid.matches (ptid);
7056 });
7057 struct stop_reply *result;
7058 if (iter == rs->stop_reply_queue.end ())
7059 result = nullptr;
7060 else
7061 {
7062 result = iter->release ();
7063 rs->stop_reply_queue.erase (iter);
7064 }
722247f1 7065
722247f1
YQ
7066 if (notif_debug)
7067 fprintf_unfiltered (gdb_stdlog,
7068 "notif: discard queued event: 'Stop' in %s\n",
a068643d 7069 target_pid_to_str (ptid).c_str ());
a744cf53 7070
953edf2b 7071 return result;
74531fed 7072}
75c99385 7073
74531fed
PA
7074/* Look for a queued stop reply belonging to PTID. If one is found,
7075 remove it from the queue, and return it. Returns NULL if none is
7076 found. If there are still queued events left to process, tell the
7077 event loop to get back to target_wait soon. */
e24a49d8 7078
6b8edb51
PA
7079struct stop_reply *
7080remote_target::queued_stop_reply (ptid_t ptid)
74531fed 7081{
953edf2b 7082 remote_state *rs = get_remote_state ();
722247f1 7083 struct stop_reply *r = remote_notif_remove_queued_reply (ptid);
74531fed 7084
953edf2b 7085 if (!rs->stop_reply_queue.empty ())
6b8edb51 7086 {
6b8edb51
PA
7087 /* There's still at least an event left. */
7088 mark_async_event_handler (rs->remote_async_inferior_event_token);
7089 }
74531fed 7090
722247f1 7091 return r;
74531fed
PA
7092}
7093
7094/* Push a fully parsed stop reply in the stop reply queue. Since we
7095 know that we now have at least one queued event left to pass to the
7096 core side, tell the event loop to get back to target_wait soon. */
7097
6b8edb51
PA
7098void
7099remote_target::push_stop_reply (struct stop_reply *new_event)
74531fed 7100{
6b8edb51 7101 remote_state *rs = get_remote_state ();
953edf2b 7102 rs->stop_reply_queue.push_back (stop_reply_up (new_event));
74531fed 7103
722247f1
YQ
7104 if (notif_debug)
7105 fprintf_unfiltered (gdb_stdlog,
7106 "notif: push 'Stop' %s to queue %d\n",
a068643d 7107 target_pid_to_str (new_event->ptid).c_str (),
953edf2b 7108 int (rs->stop_reply_queue.size ()));
74531fed 7109
6b8edb51 7110 mark_async_event_handler (rs->remote_async_inferior_event_token);
74531fed
PA
7111}
7112
7113/* Returns true if we have a stop reply for PTID. */
7114
6b8edb51
PA
7115int
7116remote_target::peek_stop_reply (ptid_t ptid)
74531fed 7117{
6b8edb51 7118 remote_state *rs = get_remote_state ();
953edf2b
TT
7119 for (auto &event : rs->stop_reply_queue)
7120 if (ptid == event->ptid
7121 && event->ws.kind == TARGET_WAITKIND_STOPPED)
7122 return 1;
7123 return 0;
74531fed
PA
7124}
7125
26d56a93
SL
7126/* Helper for remote_parse_stop_reply. Return nonzero if the substring
7127 starting with P and ending with PEND matches PREFIX. */
7128
7129static int
7130strprefix (const char *p, const char *pend, const char *prefix)
7131{
7132 for ( ; p < pend; p++, prefix++)
7133 if (*p != *prefix)
7134 return 0;
7135 return *prefix == '\0';
7136}
7137
74531fed
PA
7138/* Parse the stop reply in BUF. Either the function succeeds, and the
7139 result is stored in EVENT, or throws an error. */
7140
6b8edb51 7141void
bb277751 7142remote_target::remote_parse_stop_reply (const char *buf, stop_reply *event)
74531fed 7143{
5cd63fda 7144 remote_arch_state *rsa = NULL;
74531fed 7145 ULONGEST addr;
256642e8 7146 const char *p;
94585166 7147 int skipregs = 0;
74531fed
PA
7148
7149 event->ptid = null_ptid;
bcc75809 7150 event->rs = get_remote_state ();
74531fed
PA
7151 event->ws.kind = TARGET_WAITKIND_IGNORE;
7152 event->ws.value.integer = 0;
f7e6eed5 7153 event->stop_reason = TARGET_STOPPED_BY_NO_REASON;
32603266 7154 event->regcache.clear ();
dc146f7c 7155 event->core = -1;
74531fed
PA
7156
7157 switch (buf[0])
7158 {
7159 case 'T': /* Status with PC, SP, FP, ... */
cea39f65
MS
7160 /* Expedited reply, containing Signal, {regno, reg} repeat. */
7161 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
7162 ss = signal number
7163 n... = register number
7164 r... = register contents
7165 */
7166
7167 p = &buf[3]; /* after Txx */
7168 while (*p)
7169 {
256642e8 7170 const char *p1;
cea39f65 7171 int fieldsize;
43ff13b4 7172
1f10ba14
PA
7173 p1 = strchr (p, ':');
7174 if (p1 == NULL)
7175 error (_("Malformed packet(a) (missing colon): %s\n\
7176Packet: '%s'\n"),
7177 p, buf);
7178 if (p == p1)
7179 error (_("Malformed packet(a) (missing register number): %s\n\
7180Packet: '%s'\n"),
7181 p, buf);
3c3bea1c 7182
1f10ba14
PA
7183 /* Some "registers" are actually extended stop information.
7184 Note if you're adding a new entry here: GDB 7.9 and
7185 earlier assume that all register "numbers" that start
7186 with an hex digit are real register numbers. Make sure
7187 the server only sends such a packet if it knows the
7188 client understands it. */
c8e38a49 7189
26d56a93 7190 if (strprefix (p, p1, "thread"))
1f10ba14 7191 event->ptid = read_ptid (++p1, &p);
82075af2
JS
7192 else if (strprefix (p, p1, "syscall_entry"))
7193 {
7194 ULONGEST sysno;
7195
7196 event->ws.kind = TARGET_WAITKIND_SYSCALL_ENTRY;
7197 p = unpack_varlen_hex (++p1, &sysno);
7198 event->ws.value.syscall_number = (int) sysno;
7199 }
7200 else if (strprefix (p, p1, "syscall_return"))
7201 {
7202 ULONGEST sysno;
7203
7204 event->ws.kind = TARGET_WAITKIND_SYSCALL_RETURN;
7205 p = unpack_varlen_hex (++p1, &sysno);
7206 event->ws.value.syscall_number = (int) sysno;
7207 }
26d56a93
SL
7208 else if (strprefix (p, p1, "watch")
7209 || strprefix (p, p1, "rwatch")
7210 || strprefix (p, p1, "awatch"))
cea39f65 7211 {
f7e6eed5 7212 event->stop_reason = TARGET_STOPPED_BY_WATCHPOINT;
1f10ba14
PA
7213 p = unpack_varlen_hex (++p1, &addr);
7214 event->watch_data_address = (CORE_ADDR) addr;
cea39f65 7215 }
26d56a93 7216 else if (strprefix (p, p1, "swbreak"))
f7e6eed5
PA
7217 {
7218 event->stop_reason = TARGET_STOPPED_BY_SW_BREAKPOINT;
7219
7220 /* Make sure the stub doesn't forget to indicate support
7221 with qSupported. */
7222 if (packet_support (PACKET_swbreak_feature) != PACKET_ENABLE)
7223 error (_("Unexpected swbreak stop reason"));
7224
7225 /* The value part is documented as "must be empty",
7226 though we ignore it, in case we ever decide to make
7227 use of it in a backward compatible way. */
8424cc97 7228 p = strchrnul (p1 + 1, ';');
f7e6eed5 7229 }
26d56a93 7230 else if (strprefix (p, p1, "hwbreak"))
f7e6eed5
PA
7231 {
7232 event->stop_reason = TARGET_STOPPED_BY_HW_BREAKPOINT;
7233
7234 /* Make sure the stub doesn't forget to indicate support
7235 with qSupported. */
7236 if (packet_support (PACKET_hwbreak_feature) != PACKET_ENABLE)
7237 error (_("Unexpected hwbreak stop reason"));
7238
7239 /* See above. */
8424cc97 7240 p = strchrnul (p1 + 1, ';');
f7e6eed5 7241 }
26d56a93 7242 else if (strprefix (p, p1, "library"))
cea39f65 7243 {
1f10ba14 7244 event->ws.kind = TARGET_WAITKIND_LOADED;
8424cc97 7245 p = strchrnul (p1 + 1, ';');
1f10ba14 7246 }
26d56a93 7247 else if (strprefix (p, p1, "replaylog"))
1f10ba14
PA
7248 {
7249 event->ws.kind = TARGET_WAITKIND_NO_HISTORY;
7250 /* p1 will indicate "begin" or "end", but it makes
7251 no difference for now, so ignore it. */
8424cc97 7252 p = strchrnul (p1 + 1, ';');
1f10ba14 7253 }
26d56a93 7254 else if (strprefix (p, p1, "core"))
1f10ba14
PA
7255 {
7256 ULONGEST c;
a744cf53 7257
1f10ba14
PA
7258 p = unpack_varlen_hex (++p1, &c);
7259 event->core = c;
cea39f65 7260 }
26d56a93 7261 else if (strprefix (p, p1, "fork"))
de0d863e
DB
7262 {
7263 event->ws.value.related_pid = read_ptid (++p1, &p);
7264 event->ws.kind = TARGET_WAITKIND_FORKED;
7265 }
26d56a93 7266 else if (strprefix (p, p1, "vfork"))
c269dbdb
DB
7267 {
7268 event->ws.value.related_pid = read_ptid (++p1, &p);
7269 event->ws.kind = TARGET_WAITKIND_VFORKED;
7270 }
26d56a93 7271 else if (strprefix (p, p1, "vforkdone"))
c269dbdb
DB
7272 {
7273 event->ws.kind = TARGET_WAITKIND_VFORK_DONE;
8424cc97 7274 p = strchrnul (p1 + 1, ';');
c269dbdb 7275 }
6ab24463 7276 else if (strprefix (p, p1, "exec"))
94585166
DB
7277 {
7278 ULONGEST ignored;
94585166
DB
7279 int pathlen;
7280
7281 /* Determine the length of the execd pathname. */
7282 p = unpack_varlen_hex (++p1, &ignored);
7283 pathlen = (p - p1) / 2;
7284
7285 /* Save the pathname for event reporting and for
7286 the next run command. */
c6321f19
TT
7287 gdb::unique_xmalloc_ptr<char[]> pathname
7288 ((char *) xmalloc (pathlen + 1));
7289 hex2bin (p1, (gdb_byte *) pathname.get (), pathlen);
94585166
DB
7290 pathname[pathlen] = '\0';
7291
7292 /* This is freed during event handling. */
c6321f19 7293 event->ws.value.execd_pathname = pathname.release ();
94585166
DB
7294 event->ws.kind = TARGET_WAITKIND_EXECD;
7295
7296 /* Skip the registers included in this packet, since
7297 they may be for an architecture different from the
7298 one used by the original program. */
7299 skipregs = 1;
7300 }
65706a29
PA
7301 else if (strprefix (p, p1, "create"))
7302 {
7303 event->ws.kind = TARGET_WAITKIND_THREAD_CREATED;
8424cc97 7304 p = strchrnul (p1 + 1, ';');
65706a29 7305 }
cea39f65
MS
7306 else
7307 {
1f10ba14 7308 ULONGEST pnum;
256642e8 7309 const char *p_temp;
1f10ba14 7310
94585166
DB
7311 if (skipregs)
7312 {
8424cc97 7313 p = strchrnul (p1 + 1, ';');
94585166
DB
7314 p++;
7315 continue;
7316 }
7317
1f10ba14
PA
7318 /* Maybe a real ``P'' register number. */
7319 p_temp = unpack_varlen_hex (p, &pnum);
7320 /* If the first invalid character is the colon, we got a
7321 register number. Otherwise, it's an unknown stop
7322 reason. */
7323 if (p_temp == p1)
7324 {
5cd63fda
PA
7325 /* If we haven't parsed the event's thread yet, find
7326 it now, in order to find the architecture of the
7327 reported expedited registers. */
7328 if (event->ptid == null_ptid)
7329 {
7330 const char *thr = strstr (p1 + 1, ";thread:");
7331 if (thr != NULL)
7332 event->ptid = read_ptid (thr + strlen (";thread:"),
7333 NULL);
7334 else
3cada740
PA
7335 {
7336 /* Either the current thread hasn't changed,
7337 or the inferior is not multi-threaded.
7338 The event must be for the thread we last
7339 set as (or learned as being) current. */
7340 event->ptid = event->rs->general_thread;
7341 }
5cd63fda
PA
7342 }
7343
7344 if (rsa == NULL)
7345 {
7346 inferior *inf = (event->ptid == null_ptid
7347 ? NULL
7348 : find_inferior_ptid (event->ptid));
7349 /* If this is the first time we learn anything
7350 about this process, skip the registers
7351 included in this packet, since we don't yet
7352 know which architecture to use to parse them.
7353 We'll determine the architecture later when
7354 we process the stop reply and retrieve the
7355 target description, via
7356 remote_notice_new_inferior ->
7357 post_create_inferior. */
7358 if (inf == NULL)
7359 {
7360 p = strchrnul (p1 + 1, ';');
7361 p++;
7362 continue;
7363 }
7364
7365 event->arch = inf->gdbarch;
9d6eea31 7366 rsa = event->rs->get_remote_arch_state (event->arch);
5cd63fda
PA
7367 }
7368
7369 packet_reg *reg
7370 = packet_reg_from_pnum (event->arch, rsa, pnum);
1f10ba14 7371 cached_reg_t cached_reg;
43ff13b4 7372
1f10ba14
PA
7373 if (reg == NULL)
7374 error (_("Remote sent bad register number %s: %s\n\
8a3fe4f8 7375Packet: '%s'\n"),
1f10ba14 7376 hex_string (pnum), p, buf);
c8e38a49 7377
1f10ba14 7378 cached_reg.num = reg->regnum;
d1dff226 7379 cached_reg.data = (gdb_byte *)
5cd63fda 7380 xmalloc (register_size (event->arch, reg->regnum));
4100683b 7381
1f10ba14
PA
7382 p = p1 + 1;
7383 fieldsize = hex2bin (p, cached_reg.data,
5cd63fda 7384 register_size (event->arch, reg->regnum));
1f10ba14 7385 p += 2 * fieldsize;
5cd63fda 7386 if (fieldsize < register_size (event->arch, reg->regnum))
1f10ba14 7387 warning (_("Remote reply is too short: %s"), buf);
74531fed 7388
32603266 7389 event->regcache.push_back (cached_reg);
1f10ba14
PA
7390 }
7391 else
7392 {
7393 /* Not a number. Silently skip unknown optional
7394 info. */
8424cc97 7395 p = strchrnul (p1 + 1, ';');
1f10ba14 7396 }
cea39f65 7397 }
c8e38a49 7398
cea39f65
MS
7399 if (*p != ';')
7400 error (_("Remote register badly formatted: %s\nhere: %s"),
7401 buf, p);
7402 ++p;
7403 }
5b5596ff
PA
7404
7405 if (event->ws.kind != TARGET_WAITKIND_IGNORE)
7406 break;
7407
c8e38a49
PA
7408 /* fall through */
7409 case 'S': /* Old style status, just signal only. */
3a09da41
PA
7410 {
7411 int sig;
7412
7413 event->ws.kind = TARGET_WAITKIND_STOPPED;
7414 sig = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
7415 if (GDB_SIGNAL_FIRST <= sig && sig < GDB_SIGNAL_LAST)
7416 event->ws.value.sig = (enum gdb_signal) sig;
7417 else
7418 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
7419 }
c8e38a49 7420 break;
65706a29
PA
7421 case 'w': /* Thread exited. */
7422 {
65706a29
PA
7423 ULONGEST value;
7424
7425 event->ws.kind = TARGET_WAITKIND_THREAD_EXITED;
7426 p = unpack_varlen_hex (&buf[1], &value);
7427 event->ws.value.integer = value;
7428 if (*p != ';')
7429 error (_("stop reply packet badly formatted: %s"), buf);
974eac9d 7430 event->ptid = read_ptid (++p, NULL);
65706a29
PA
7431 break;
7432 }
c8e38a49
PA
7433 case 'W': /* Target exited. */
7434 case 'X':
7435 {
c8e38a49
PA
7436 int pid;
7437 ULONGEST value;
82f73884 7438
c8e38a49
PA
7439 /* GDB used to accept only 2 hex chars here. Stubs should
7440 only send more if they detect GDB supports multi-process
7441 support. */
7442 p = unpack_varlen_hex (&buf[1], &value);
82f73884 7443
c8e38a49
PA
7444 if (buf[0] == 'W')
7445 {
7446 /* The remote process exited. */
74531fed
PA
7447 event->ws.kind = TARGET_WAITKIND_EXITED;
7448 event->ws.value.integer = value;
c8e38a49
PA
7449 }
7450 else
7451 {
7452 /* The remote process exited with a signal. */
74531fed 7453 event->ws.kind = TARGET_WAITKIND_SIGNALLED;
3a09da41
PA
7454 if (GDB_SIGNAL_FIRST <= value && value < GDB_SIGNAL_LAST)
7455 event->ws.value.sig = (enum gdb_signal) value;
7456 else
7457 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
c8e38a49 7458 }
82f73884 7459
c8e38a49 7460 /* If no process is specified, assume inferior_ptid. */
e99b03dc 7461 pid = inferior_ptid.pid ();
c8e38a49
PA
7462 if (*p == '\0')
7463 ;
7464 else if (*p == ';')
7465 {
7466 p++;
7467
0b24eb2d 7468 if (*p == '\0')
82f73884 7469 ;
61012eef 7470 else if (startswith (p, "process:"))
82f73884 7471 {
c8e38a49 7472 ULONGEST upid;
a744cf53 7473
c8e38a49
PA
7474 p += sizeof ("process:") - 1;
7475 unpack_varlen_hex (p, &upid);
7476 pid = upid;
82f73884
PA
7477 }
7478 else
7479 error (_("unknown stop reply packet: %s"), buf);
43ff13b4 7480 }
c8e38a49
PA
7481 else
7482 error (_("unknown stop reply packet: %s"), buf);
f2907e49 7483 event->ptid = ptid_t (pid);
74531fed
PA
7484 }
7485 break;
f2faf941
PA
7486 case 'N':
7487 event->ws.kind = TARGET_WAITKIND_NO_RESUMED;
7488 event->ptid = minus_one_ptid;
7489 break;
74531fed
PA
7490 }
7491
d7e15655 7492 if (target_is_non_stop_p () && event->ptid == null_ptid)
74531fed
PA
7493 error (_("No process or thread specified in stop reply: %s"), buf);
7494}
7495
722247f1
YQ
7496/* When the stub wants to tell GDB about a new notification reply, it
7497 sends a notification (%Stop, for example). Those can come it at
7498 any time, hence, we have to make sure that any pending
7499 putpkt/getpkt sequence we're making is finished, before querying
7500 the stub for more events with the corresponding ack command
7501 (vStopped, for example). E.g., if we started a vStopped sequence
7502 immediately upon receiving the notification, something like this
7503 could happen:
74531fed
PA
7504
7505 1.1) --> Hg 1
7506 1.2) <-- OK
7507 1.3) --> g
7508 1.4) <-- %Stop
7509 1.5) --> vStopped
7510 1.6) <-- (registers reply to step #1.3)
7511
7512 Obviously, the reply in step #1.6 would be unexpected to a vStopped
7513 query.
7514
796cb314 7515 To solve this, whenever we parse a %Stop notification successfully,
74531fed
PA
7516 we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
7517 doing whatever we were doing:
7518
7519 2.1) --> Hg 1
7520 2.2) <-- OK
7521 2.3) --> g
7522 2.4) <-- %Stop
7523 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
7524 2.5) <-- (registers reply to step #2.3)
7525
85102364 7526 Eventually after step #2.5, we return to the event loop, which
74531fed
PA
7527 notices there's an event on the
7528 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
7529 associated callback --- the function below. At this point, we're
7530 always safe to start a vStopped sequence. :
7531
7532 2.6) --> vStopped
7533 2.7) <-- T05 thread:2
7534 2.8) --> vStopped
7535 2.9) --> OK
7536*/
7537
722247f1 7538void
6b8edb51 7539remote_target::remote_notif_get_pending_events (notif_client *nc)
74531fed
PA
7540{
7541 struct remote_state *rs = get_remote_state ();
74531fed 7542
f48ff2a7 7543 if (rs->notif_state->pending_event[nc->id] != NULL)
74531fed 7544 {
722247f1
YQ
7545 if (notif_debug)
7546 fprintf_unfiltered (gdb_stdlog,
7547 "notif: process: '%s' ack pending event\n",
7548 nc->name);
74531fed 7549
722247f1 7550 /* acknowledge */
8d64371b
TT
7551 nc->ack (this, nc, rs->buf.data (),
7552 rs->notif_state->pending_event[nc->id]);
f48ff2a7 7553 rs->notif_state->pending_event[nc->id] = NULL;
74531fed
PA
7554
7555 while (1)
7556 {
8d64371b
TT
7557 getpkt (&rs->buf, 0);
7558 if (strcmp (rs->buf.data (), "OK") == 0)
74531fed
PA
7559 break;
7560 else
8d64371b 7561 remote_notif_ack (this, nc, rs->buf.data ());
74531fed
PA
7562 }
7563 }
722247f1
YQ
7564 else
7565 {
7566 if (notif_debug)
7567 fprintf_unfiltered (gdb_stdlog,
7568 "notif: process: '%s' no pending reply\n",
7569 nc->name);
7570 }
74531fed
PA
7571}
7572
6b8edb51
PA
7573/* Wrapper around remote_target::remote_notif_get_pending_events to
7574 avoid having to export the whole remote_target class. */
7575
7576void
7577remote_notif_get_pending_events (remote_target *remote, notif_client *nc)
7578{
7579 remote->remote_notif_get_pending_events (nc);
7580}
7581
74531fed
PA
7582/* Called when it is decided that STOP_REPLY holds the info of the
7583 event that is to be returned to the core. This function always
7584 destroys STOP_REPLY. */
7585
6b8edb51
PA
7586ptid_t
7587remote_target::process_stop_reply (struct stop_reply *stop_reply,
7588 struct target_waitstatus *status)
74531fed
PA
7589{
7590 ptid_t ptid;
7591
7592 *status = stop_reply->ws;
7593 ptid = stop_reply->ptid;
7594
7595 /* If no thread/process was reported by the stub, assume the current
7596 inferior. */
d7e15655 7597 if (ptid == null_ptid)
74531fed
PA
7598 ptid = inferior_ptid;
7599
5f3563ea 7600 if (status->kind != TARGET_WAITKIND_EXITED
f2faf941
PA
7601 && status->kind != TARGET_WAITKIND_SIGNALLED
7602 && status->kind != TARGET_WAITKIND_NO_RESUMED)
74531fed 7603 {
5f3563ea 7604 /* Expedited registers. */
32603266 7605 if (!stop_reply->regcache.empty ())
5f3563ea 7606 {
217f1f79 7607 struct regcache *regcache
5cd63fda 7608 = get_thread_arch_regcache (ptid, stop_reply->arch);
5f3563ea 7609
32603266
TT
7610 for (cached_reg_t &reg : stop_reply->regcache)
7611 {
7612 regcache->raw_supply (reg.num, reg.data);
7613 xfree (reg.data);
7614 }
d1dff226 7615
32603266 7616 stop_reply->regcache.clear ();
5f3563ea 7617 }
74531fed 7618
1941c569 7619 remote_notice_new_inferior (ptid, 0);
7aabaf9d 7620 remote_thread_info *remote_thr = get_remote_thread_info (ptid);
799a2abe
PA
7621 remote_thr->core = stop_reply->core;
7622 remote_thr->stop_reason = stop_reply->stop_reason;
7623 remote_thr->watch_data_address = stop_reply->watch_data_address;
85ad3aaf 7624 remote_thr->vcont_resumed = 0;
74531fed
PA
7625 }
7626
32603266 7627 delete stop_reply;
74531fed
PA
7628 return ptid;
7629}
7630
7631/* The non-stop mode version of target_wait. */
7632
6b8edb51
PA
7633ptid_t
7634remote_target::wait_ns (ptid_t ptid, struct target_waitstatus *status, int options)
74531fed
PA
7635{
7636 struct remote_state *rs = get_remote_state ();
74531fed
PA
7637 struct stop_reply *stop_reply;
7638 int ret;
fee9eda9 7639 int is_notif = 0;
74531fed
PA
7640
7641 /* If in non-stop mode, get out of getpkt even if a
7642 notification is received. */
7643
8d64371b 7644 ret = getpkt_or_notif_sane (&rs->buf, 0 /* forever */, &is_notif);
74531fed
PA
7645 while (1)
7646 {
fee9eda9 7647 if (ret != -1 && !is_notif)
74531fed
PA
7648 switch (rs->buf[0])
7649 {
7650 case 'E': /* Error of some sort. */
7651 /* We're out of sync with the target now. Did it continue
7652 or not? We can't tell which thread it was in non-stop,
7653 so just ignore this. */
8d64371b 7654 warning (_("Remote failure reply: %s"), rs->buf.data ());
74531fed
PA
7655 break;
7656 case 'O': /* Console output. */
8d64371b 7657 remote_console_output (&rs->buf[1]);
74531fed
PA
7658 break;
7659 default:
8d64371b 7660 warning (_("Invalid remote reply: %s"), rs->buf.data ());
74531fed
PA
7661 break;
7662 }
7663
7664 /* Acknowledge a pending stop reply that may have arrived in the
7665 mean time. */
f48ff2a7 7666 if (rs->notif_state->pending_event[notif_client_stop.id] != NULL)
722247f1 7667 remote_notif_get_pending_events (&notif_client_stop);
74531fed
PA
7668
7669 /* If indeed we noticed a stop reply, we're done. */
7670 stop_reply = queued_stop_reply (ptid);
7671 if (stop_reply != NULL)
7672 return process_stop_reply (stop_reply, status);
7673
47608cb1 7674 /* Still no event. If we're just polling for an event, then
74531fed 7675 return to the event loop. */
47608cb1 7676 if (options & TARGET_WNOHANG)
74531fed
PA
7677 {
7678 status->kind = TARGET_WAITKIND_IGNORE;
7679 return minus_one_ptid;
7680 }
7681
47608cb1 7682 /* Otherwise do a blocking wait. */
8d64371b 7683 ret = getpkt_or_notif_sane (&rs->buf, 1 /* forever */, &is_notif);
74531fed
PA
7684 }
7685}
7686
7687/* Wait until the remote machine stops, then return, storing status in
7688 STATUS just as `wait' would. */
7689
6b8edb51
PA
7690ptid_t
7691remote_target::wait_as (ptid_t ptid, target_waitstatus *status, int options)
74531fed
PA
7692{
7693 struct remote_state *rs = get_remote_state ();
74531fed 7694 ptid_t event_ptid = null_ptid;
cea39f65 7695 char *buf;
74531fed
PA
7696 struct stop_reply *stop_reply;
7697
47608cb1
PA
7698 again:
7699
74531fed
PA
7700 status->kind = TARGET_WAITKIND_IGNORE;
7701 status->value.integer = 0;
7702
7703 stop_reply = queued_stop_reply (ptid);
7704 if (stop_reply != NULL)
7705 return process_stop_reply (stop_reply, status);
7706
7707 if (rs->cached_wait_status)
7708 /* Use the cached wait status, but only once. */
7709 rs->cached_wait_status = 0;
7710 else
7711 {
7712 int ret;
722247f1 7713 int is_notif;
567420d1 7714 int forever = ((options & TARGET_WNOHANG) == 0
6b8edb51 7715 && rs->wait_forever_enabled_p);
567420d1
PA
7716
7717 if (!rs->waiting_for_stop_reply)
7718 {
7719 status->kind = TARGET_WAITKIND_NO_RESUMED;
7720 return minus_one_ptid;
7721 }
74531fed 7722
74531fed
PA
7723 /* FIXME: cagney/1999-09-27: If we're in async mode we should
7724 _never_ wait for ever -> test on target_is_async_p().
7725 However, before we do that we need to ensure that the caller
7726 knows how to take the target into/out of async mode. */
8d64371b 7727 ret = getpkt_or_notif_sane (&rs->buf, forever, &is_notif);
722247f1
YQ
7728
7729 /* GDB gets a notification. Return to core as this event is
7730 not interesting. */
7731 if (ret != -1 && is_notif)
7732 return minus_one_ptid;
567420d1
PA
7733
7734 if (ret == -1 && (options & TARGET_WNOHANG) != 0)
7735 return minus_one_ptid;
74531fed
PA
7736 }
7737
8d64371b 7738 buf = rs->buf.data ();
74531fed 7739
3a29589a
DJ
7740 /* Assume that the target has acknowledged Ctrl-C unless we receive
7741 an 'F' or 'O' packet. */
7742 if (buf[0] != 'F' && buf[0] != 'O')
7743 rs->ctrlc_pending_p = 0;
7744
74531fed
PA
7745 switch (buf[0])
7746 {
7747 case 'E': /* Error of some sort. */
7748 /* We're out of sync with the target now. Did it continue or
7749 not? Not is more likely, so report a stop. */
29090fb6
LM
7750 rs->waiting_for_stop_reply = 0;
7751
74531fed
PA
7752 warning (_("Remote failure reply: %s"), buf);
7753 status->kind = TARGET_WAITKIND_STOPPED;
a493e3e2 7754 status->value.sig = GDB_SIGNAL_0;
74531fed
PA
7755 break;
7756 case 'F': /* File-I/O request. */
e42e5352
YQ
7757 /* GDB may access the inferior memory while handling the File-I/O
7758 request, but we don't want GDB accessing memory while waiting
7759 for a stop reply. See the comments in putpkt_binary. Set
7760 waiting_for_stop_reply to 0 temporarily. */
7761 rs->waiting_for_stop_reply = 0;
6b8edb51 7762 remote_fileio_request (this, buf, rs->ctrlc_pending_p);
3a29589a 7763 rs->ctrlc_pending_p = 0;
e42e5352
YQ
7764 /* GDB handled the File-I/O request, and the target is running
7765 again. Keep waiting for events. */
7766 rs->waiting_for_stop_reply = 1;
74531fed 7767 break;
f2faf941 7768 case 'N': case 'T': case 'S': case 'X': case 'W':
74531fed 7769 {
29090fb6
LM
7770 /* There is a stop reply to handle. */
7771 rs->waiting_for_stop_reply = 0;
7772
7773 stop_reply
6b8edb51
PA
7774 = (struct stop_reply *) remote_notif_parse (this,
7775 &notif_client_stop,
8d64371b 7776 rs->buf.data ());
74531fed 7777
74531fed 7778 event_ptid = process_stop_reply (stop_reply, status);
c8e38a49
PA
7779 break;
7780 }
7781 case 'O': /* Console output. */
7782 remote_console_output (buf + 1);
c8e38a49
PA
7783 break;
7784 case '\0':
b73be471 7785 if (rs->last_sent_signal != GDB_SIGNAL_0)
c8e38a49
PA
7786 {
7787 /* Zero length reply means that we tried 'S' or 'C' and the
7788 remote system doesn't support it. */
223ffa71 7789 target_terminal::ours_for_output ();
c8e38a49
PA
7790 printf_filtered
7791 ("Can't send signals to this remote system. %s not sent.\n",
b73be471
TT
7792 gdb_signal_to_name (rs->last_sent_signal));
7793 rs->last_sent_signal = GDB_SIGNAL_0;
223ffa71 7794 target_terminal::inferior ();
c8e38a49 7795
f5c4fcd9
TT
7796 strcpy (buf, rs->last_sent_step ? "s" : "c");
7797 putpkt (buf);
c8e38a49 7798 break;
43ff13b4 7799 }
86a73007 7800 /* fallthrough */
c8e38a49
PA
7801 default:
7802 warning (_("Invalid remote reply: %s"), buf);
c8e38a49 7803 break;
43ff13b4 7804 }
c8e38a49 7805
f2faf941
PA
7806 if (status->kind == TARGET_WAITKIND_NO_RESUMED)
7807 return minus_one_ptid;
7808 else if (status->kind == TARGET_WAITKIND_IGNORE)
47608cb1
PA
7809 {
7810 /* Nothing interesting happened. If we're doing a non-blocking
7811 poll, we're done. Otherwise, go back to waiting. */
7812 if (options & TARGET_WNOHANG)
7813 return minus_one_ptid;
7814 else
7815 goto again;
7816 }
74531fed
PA
7817 else if (status->kind != TARGET_WAITKIND_EXITED
7818 && status->kind != TARGET_WAITKIND_SIGNALLED)
82f73884 7819 {
d7e15655 7820 if (event_ptid != null_ptid)
47f8a51d 7821 record_currthread (rs, event_ptid);
82f73884
PA
7822 else
7823 event_ptid = inferior_ptid;
43ff13b4 7824 }
74531fed
PA
7825 else
7826 /* A process exit. Invalidate our notion of current thread. */
47f8a51d 7827 record_currthread (rs, minus_one_ptid);
79d7f229 7828
82f73884 7829 return event_ptid;
43ff13b4
JM
7830}
7831
74531fed
PA
7832/* Wait until the remote machine stops, then return, storing status in
7833 STATUS just as `wait' would. */
7834
f6ac5f3d
PA
7835ptid_t
7836remote_target::wait (ptid_t ptid, struct target_waitstatus *status, int options)
c8e38a49
PA
7837{
7838 ptid_t event_ptid;
7839
6efcd9a8 7840 if (target_is_non_stop_p ())
6b8edb51 7841 event_ptid = wait_ns (ptid, status, options);
74531fed 7842 else
6b8edb51 7843 event_ptid = wait_as (ptid, status, options);
c8e38a49 7844
d9d41e78 7845 if (target_is_async_p ())
c8e38a49 7846 {
6b8edb51
PA
7847 remote_state *rs = get_remote_state ();
7848
74531fed
PA
7849 /* If there are are events left in the queue tell the event loop
7850 to return here. */
953edf2b 7851 if (!rs->stop_reply_queue.empty ())
6b8edb51 7852 mark_async_event_handler (rs->remote_async_inferior_event_token);
c8e38a49 7853 }
c8e38a49
PA
7854
7855 return event_ptid;
7856}
7857
74ca34ce 7858/* Fetch a single register using a 'p' packet. */
c906108c 7859
6b8edb51
PA
7860int
7861remote_target::fetch_register_using_p (struct regcache *regcache,
7862 packet_reg *reg)
b96ec7ac 7863{
ac7936df 7864 struct gdbarch *gdbarch = regcache->arch ();
b96ec7ac 7865 struct remote_state *rs = get_remote_state ();
2e9f7625 7866 char *buf, *p;
9890e433 7867 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
b96ec7ac
AC
7868 int i;
7869
4082afcc 7870 if (packet_support (PACKET_p) == PACKET_DISABLE)
74ca34ce
DJ
7871 return 0;
7872
7873 if (reg->pnum == -1)
7874 return 0;
7875
8d64371b 7876 p = rs->buf.data ();
fcad0fa4 7877 *p++ = 'p';
74ca34ce 7878 p += hexnumstr (p, reg->pnum);
fcad0fa4 7879 *p++ = '\0';
1f4437a4 7880 putpkt (rs->buf);
8d64371b 7881 getpkt (&rs->buf, 0);
3f9a994c 7882
8d64371b 7883 buf = rs->buf.data ();
2e9f7625 7884
8d64371b 7885 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_p]))
74ca34ce
DJ
7886 {
7887 case PACKET_OK:
7888 break;
7889 case PACKET_UNKNOWN:
7890 return 0;
7891 case PACKET_ERROR:
27a9c0bf 7892 error (_("Could not fetch register \"%s\"; remote failure reply '%s'"),
ac7936df 7893 gdbarch_register_name (regcache->arch (),
27a9c0bf
MS
7894 reg->regnum),
7895 buf);
74ca34ce 7896 }
3f9a994c
JB
7897
7898 /* If this register is unfetchable, tell the regcache. */
7899 if (buf[0] == 'x')
8480adf2 7900 {
73e1c03f 7901 regcache->raw_supply (reg->regnum, NULL);
8480adf2 7902 return 1;
b96ec7ac 7903 }
b96ec7ac 7904
3f9a994c
JB
7905 /* Otherwise, parse and supply the value. */
7906 p = buf;
7907 i = 0;
7908 while (p[0] != 0)
7909 {
7910 if (p[1] == 0)
74ca34ce 7911 error (_("fetch_register_using_p: early buf termination"));
3f9a994c
JB
7912
7913 regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
7914 p += 2;
7915 }
73e1c03f 7916 regcache->raw_supply (reg->regnum, regp);
3f9a994c 7917 return 1;
b96ec7ac
AC
7918}
7919
74ca34ce
DJ
7920/* Fetch the registers included in the target's 'g' packet. */
7921
6b8edb51
PA
7922int
7923remote_target::send_g_packet ()
c906108c 7924{
d01949b6 7925 struct remote_state *rs = get_remote_state ();
cea39f65 7926 int buf_len;
c906108c 7927
8d64371b 7928 xsnprintf (rs->buf.data (), get_remote_packet_size (), "g");
b75abf5b 7929 putpkt (rs->buf);
8d64371b 7930 getpkt (&rs->buf, 0);
b75abf5b
AK
7931 if (packet_check_result (rs->buf) == PACKET_ERROR)
7932 error (_("Could not read registers; remote failure reply '%s'"),
8d64371b 7933 rs->buf.data ());
c906108c 7934
29709017
DJ
7935 /* We can get out of synch in various cases. If the first character
7936 in the buffer is not a hex character, assume that has happened
7937 and try to fetch another packet to read. */
7938 while ((rs->buf[0] < '0' || rs->buf[0] > '9')
7939 && (rs->buf[0] < 'A' || rs->buf[0] > 'F')
7940 && (rs->buf[0] < 'a' || rs->buf[0] > 'f')
7941 && rs->buf[0] != 'x') /* New: unavailable register value. */
7942 {
7943 if (remote_debug)
7944 fprintf_unfiltered (gdb_stdlog,
7945 "Bad register packet; fetching a new packet\n");
8d64371b 7946 getpkt (&rs->buf, 0);
29709017
DJ
7947 }
7948
8d64371b 7949 buf_len = strlen (rs->buf.data ());
74ca34ce
DJ
7950
7951 /* Sanity check the received packet. */
7952 if (buf_len % 2 != 0)
8d64371b 7953 error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf.data ());
29709017
DJ
7954
7955 return buf_len / 2;
7956}
7957
6b8edb51
PA
7958void
7959remote_target::process_g_packet (struct regcache *regcache)
29709017 7960{
ac7936df 7961 struct gdbarch *gdbarch = regcache->arch ();
29709017 7962 struct remote_state *rs = get_remote_state ();
9d6eea31 7963 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
29709017
DJ
7964 int i, buf_len;
7965 char *p;
7966 char *regs;
7967
8d64371b 7968 buf_len = strlen (rs->buf.data ());
29709017
DJ
7969
7970 /* Further sanity checks, with knowledge of the architecture. */
74ca34ce 7971 if (buf_len > 2 * rsa->sizeof_g_packet)
fc809827 7972 error (_("Remote 'g' packet reply is too long (expected %ld bytes, got %d "
8d64371b
TT
7973 "bytes): %s"),
7974 rsa->sizeof_g_packet, buf_len / 2,
7975 rs->buf.data ());
74ca34ce
DJ
7976
7977 /* Save the size of the packet sent to us by the target. It is used
7978 as a heuristic when determining the max size of packets that the
7979 target can safely receive. */
7980 if (rsa->actual_register_packet_size == 0)
7981 rsa->actual_register_packet_size = buf_len;
7982
7983 /* If this is smaller than we guessed the 'g' packet would be,
7984 update our records. A 'g' reply that doesn't include a register's
7985 value implies either that the register is not available, or that
7986 the 'p' packet must be used. */
7987 if (buf_len < 2 * rsa->sizeof_g_packet)
b323314b 7988 {
9dc193c3 7989 long sizeof_g_packet = buf_len / 2;
74ca34ce 7990
4a22f64d 7991 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
b96ec7ac 7992 {
9dc193c3
LF
7993 long offset = rsa->regs[i].offset;
7994 long reg_size = register_size (gdbarch, i);
7995
74ca34ce
DJ
7996 if (rsa->regs[i].pnum == -1)
7997 continue;
7998
9dc193c3 7999 if (offset >= sizeof_g_packet)
74ca34ce 8000 rsa->regs[i].in_g_packet = 0;
9dc193c3
LF
8001 else if (offset + reg_size > sizeof_g_packet)
8002 error (_("Truncated register %d in remote 'g' packet"), i);
b96ec7ac 8003 else
74ca34ce 8004 rsa->regs[i].in_g_packet = 1;
b96ec7ac 8005 }
9dc193c3
LF
8006
8007 /* Looks valid enough, we can assume this is the correct length
8008 for a 'g' packet. It's important not to adjust
8009 rsa->sizeof_g_packet if we have truncated registers otherwise
8010 this "if" won't be run the next time the method is called
8011 with a packet of the same size and one of the internal errors
8012 below will trigger instead. */
8013 rsa->sizeof_g_packet = sizeof_g_packet;
74ca34ce 8014 }
b323314b 8015
224c3ddb 8016 regs = (char *) alloca (rsa->sizeof_g_packet);
c906108c
SS
8017
8018 /* Unimplemented registers read as all bits zero. */
ea9c271d 8019 memset (regs, 0, rsa->sizeof_g_packet);
c906108c 8020
c906108c
SS
8021 /* Reply describes registers byte by byte, each byte encoded as two
8022 hex characters. Suck them all up, then supply them to the
8023 register cacheing/storage mechanism. */
8024
8d64371b 8025 p = rs->buf.data ();
ea9c271d 8026 for (i = 0; i < rsa->sizeof_g_packet; i++)
c906108c 8027 {
74ca34ce
DJ
8028 if (p[0] == 0 || p[1] == 0)
8029 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
8030 internal_error (__FILE__, __LINE__,
9b20d036 8031 _("unexpected end of 'g' packet reply"));
74ca34ce 8032
c906108c 8033 if (p[0] == 'x' && p[1] == 'x')
c5aa993b 8034 regs[i] = 0; /* 'x' */
c906108c
SS
8035 else
8036 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
8037 p += 2;
8038 }
8039
a744cf53
MS
8040 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
8041 {
8042 struct packet_reg *r = &rsa->regs[i];
9dc193c3 8043 long reg_size = register_size (gdbarch, i);
a744cf53
MS
8044
8045 if (r->in_g_packet)
8046 {
8d64371b 8047 if ((r->offset + reg_size) * 2 > strlen (rs->buf.data ()))
a744cf53
MS
8048 /* This shouldn't happen - we adjusted in_g_packet above. */
8049 internal_error (__FILE__, __LINE__,
9b20d036 8050 _("unexpected end of 'g' packet reply"));
a744cf53
MS
8051 else if (rs->buf[r->offset * 2] == 'x')
8052 {
8d64371b 8053 gdb_assert (r->offset * 2 < strlen (rs->buf.data ()));
a744cf53
MS
8054 /* The register isn't available, mark it as such (at
8055 the same time setting the value to zero). */
73e1c03f 8056 regcache->raw_supply (r->regnum, NULL);
a744cf53
MS
8057 }
8058 else
73e1c03f 8059 regcache->raw_supply (r->regnum, regs + r->offset);
a744cf53
MS
8060 }
8061 }
c906108c
SS
8062}
8063
6b8edb51
PA
8064void
8065remote_target::fetch_registers_using_g (struct regcache *regcache)
29709017
DJ
8066{
8067 send_g_packet ();
56be3814 8068 process_g_packet (regcache);
29709017
DJ
8069}
8070
e6e4e701
PA
8071/* Make the remote selected traceframe match GDB's selected
8072 traceframe. */
8073
6b8edb51
PA
8074void
8075remote_target::set_remote_traceframe ()
e6e4e701
PA
8076{
8077 int newnum;
262e1174 8078 struct remote_state *rs = get_remote_state ();
e6e4e701 8079
262e1174 8080 if (rs->remote_traceframe_number == get_traceframe_number ())
e6e4e701
PA
8081 return;
8082
8083 /* Avoid recursion, remote_trace_find calls us again. */
262e1174 8084 rs->remote_traceframe_number = get_traceframe_number ();
e6e4e701
PA
8085
8086 newnum = target_trace_find (tfind_number,
8087 get_traceframe_number (), 0, 0, NULL);
8088
8089 /* Should not happen. If it does, all bets are off. */
8090 if (newnum != get_traceframe_number ())
8091 warning (_("could not set remote traceframe"));
8092}
8093
f6ac5f3d
PA
8094void
8095remote_target::fetch_registers (struct regcache *regcache, int regnum)
74ca34ce 8096{
ac7936df 8097 struct gdbarch *gdbarch = regcache->arch ();
9d6eea31
PA
8098 struct remote_state *rs = get_remote_state ();
8099 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
74ca34ce
DJ
8100 int i;
8101
e6e4e701 8102 set_remote_traceframe ();
222312d3 8103 set_general_thread (regcache->ptid ());
74ca34ce
DJ
8104
8105 if (regnum >= 0)
8106 {
5cd63fda 8107 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
a744cf53 8108
74ca34ce
DJ
8109 gdb_assert (reg != NULL);
8110
8111 /* If this register might be in the 'g' packet, try that first -
8112 we are likely to read more than one register. If this is the
8113 first 'g' packet, we might be overly optimistic about its
8114 contents, so fall back to 'p'. */
8115 if (reg->in_g_packet)
8116 {
56be3814 8117 fetch_registers_using_g (regcache);
74ca34ce
DJ
8118 if (reg->in_g_packet)
8119 return;
8120 }
8121
56be3814 8122 if (fetch_register_using_p (regcache, reg))
74ca34ce
DJ
8123 return;
8124
8125 /* This register is not available. */
73e1c03f 8126 regcache->raw_supply (reg->regnum, NULL);
74ca34ce
DJ
8127
8128 return;
8129 }
8130
56be3814 8131 fetch_registers_using_g (regcache);
74ca34ce 8132
5cd63fda 8133 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
74ca34ce 8134 if (!rsa->regs[i].in_g_packet)
56be3814 8135 if (!fetch_register_using_p (regcache, &rsa->regs[i]))
74ca34ce
DJ
8136 {
8137 /* This register is not available. */
73e1c03f 8138 regcache->raw_supply (i, NULL);
74ca34ce
DJ
8139 }
8140}
8141
c906108c
SS
8142/* Prepare to store registers. Since we may send them all (using a
8143 'G' request), we have to read out the ones we don't want to change
8144 first. */
8145
f6ac5f3d
PA
8146void
8147remote_target::prepare_to_store (struct regcache *regcache)
c906108c 8148{
9d6eea31
PA
8149 struct remote_state *rs = get_remote_state ();
8150 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
cf0e1e0d 8151 int i;
cf0e1e0d 8152
c906108c 8153 /* Make sure the entire registers array is valid. */
4082afcc 8154 switch (packet_support (PACKET_P))
5a2468f5
JM
8155 {
8156 case PACKET_DISABLE:
8157 case PACKET_SUPPORT_UNKNOWN:
cf0e1e0d 8158 /* Make sure all the necessary registers are cached. */
ac7936df 8159 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
ea9c271d 8160 if (rsa->regs[i].in_g_packet)
0b47d985 8161 regcache->raw_update (rsa->regs[i].regnum);
5a2468f5
JM
8162 break;
8163 case PACKET_ENABLE:
8164 break;
8165 }
8166}
8167
ad10f812 8168/* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
23860348 8169 packet was not recognized. */
5a2468f5 8170
6b8edb51
PA
8171int
8172remote_target::store_register_using_P (const struct regcache *regcache,
8173 packet_reg *reg)
5a2468f5 8174{
ac7936df 8175 struct gdbarch *gdbarch = regcache->arch ();
d01949b6 8176 struct remote_state *rs = get_remote_state ();
5a2468f5 8177 /* Try storing a single register. */
8d64371b 8178 char *buf = rs->buf.data ();
9890e433 8179 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
5a2468f5 8180 char *p;
5a2468f5 8181
4082afcc 8182 if (packet_support (PACKET_P) == PACKET_DISABLE)
74ca34ce
DJ
8183 return 0;
8184
8185 if (reg->pnum == -1)
8186 return 0;
8187
ea9c271d 8188 xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
5a2468f5 8189 p = buf + strlen (buf);
34a79281 8190 regcache->raw_collect (reg->regnum, regp);
4a22f64d 8191 bin2hex (regp, p, register_size (gdbarch, reg->regnum));
1f4437a4 8192 putpkt (rs->buf);
8d64371b 8193 getpkt (&rs->buf, 0);
5a2468f5 8194
74ca34ce
DJ
8195 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P]))
8196 {
8197 case PACKET_OK:
8198 return 1;
8199 case PACKET_ERROR:
27a9c0bf 8200 error (_("Could not write register \"%s\"; remote failure reply '%s'"),
8d64371b 8201 gdbarch_register_name (gdbarch, reg->regnum), rs->buf.data ());
74ca34ce
DJ
8202 case PACKET_UNKNOWN:
8203 return 0;
8204 default:
8205 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
8206 }
c906108c
SS
8207}
8208
23860348
MS
8209/* Store register REGNUM, or all registers if REGNUM == -1, from the
8210 contents of the register cache buffer. FIXME: ignores errors. */
c906108c 8211
6b8edb51
PA
8212void
8213remote_target::store_registers_using_G (const struct regcache *regcache)
c906108c 8214{
d01949b6 8215 struct remote_state *rs = get_remote_state ();
9d6eea31 8216 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
cfd77fa1 8217 gdb_byte *regs;
c906108c
SS
8218 char *p;
8219
193cb69f
AC
8220 /* Extract all the registers in the regcache copying them into a
8221 local buffer. */
8222 {
b323314b 8223 int i;
a744cf53 8224
224c3ddb 8225 regs = (gdb_byte *) alloca (rsa->sizeof_g_packet);
ea9c271d 8226 memset (regs, 0, rsa->sizeof_g_packet);
ac7936df 8227 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
193cb69f 8228 {
ea9c271d 8229 struct packet_reg *r = &rsa->regs[i];
a744cf53 8230
b323314b 8231 if (r->in_g_packet)
34a79281 8232 regcache->raw_collect (r->regnum, regs + r->offset);
193cb69f
AC
8233 }
8234 }
c906108c
SS
8235
8236 /* Command describes registers byte by byte,
8237 each byte encoded as two hex characters. */
8d64371b 8238 p = rs->buf.data ();
193cb69f 8239 *p++ = 'G';
74ca34ce 8240 bin2hex (regs, p, rsa->sizeof_g_packet);
1f4437a4 8241 putpkt (rs->buf);
8d64371b 8242 getpkt (&rs->buf, 0);
1f4437a4 8243 if (packet_check_result (rs->buf) == PACKET_ERROR)
27a9c0bf 8244 error (_("Could not write registers; remote failure reply '%s'"),
8d64371b 8245 rs->buf.data ());
c906108c 8246}
74ca34ce
DJ
8247
8248/* Store register REGNUM, or all registers if REGNUM == -1, from the contents
8249 of the register cache buffer. FIXME: ignores errors. */
8250
f6ac5f3d
PA
8251void
8252remote_target::store_registers (struct regcache *regcache, int regnum)
74ca34ce 8253{
5cd63fda 8254 struct gdbarch *gdbarch = regcache->arch ();
9d6eea31
PA
8255 struct remote_state *rs = get_remote_state ();
8256 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
74ca34ce
DJ
8257 int i;
8258
e6e4e701 8259 set_remote_traceframe ();
222312d3 8260 set_general_thread (regcache->ptid ());
74ca34ce
DJ
8261
8262 if (regnum >= 0)
8263 {
5cd63fda 8264 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
a744cf53 8265
74ca34ce
DJ
8266 gdb_assert (reg != NULL);
8267
8268 /* Always prefer to store registers using the 'P' packet if
8269 possible; we often change only a small number of registers.
8270 Sometimes we change a larger number; we'd need help from a
8271 higher layer to know to use 'G'. */
56be3814 8272 if (store_register_using_P (regcache, reg))
74ca34ce
DJ
8273 return;
8274
8275 /* For now, don't complain if we have no way to write the
8276 register. GDB loses track of unavailable registers too
8277 easily. Some day, this may be an error. We don't have
0df8b418 8278 any way to read the register, either... */
74ca34ce
DJ
8279 if (!reg->in_g_packet)
8280 return;
8281
56be3814 8282 store_registers_using_G (regcache);
74ca34ce
DJ
8283 return;
8284 }
8285
56be3814 8286 store_registers_using_G (regcache);
74ca34ce 8287
5cd63fda 8288 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
74ca34ce 8289 if (!rsa->regs[i].in_g_packet)
56be3814 8290 if (!store_register_using_P (regcache, &rsa->regs[i]))
74ca34ce
DJ
8291 /* See above for why we do not issue an error here. */
8292 continue;
8293}
c906108c
SS
8294\f
8295
8296/* Return the number of hex digits in num. */
8297
8298static int
fba45db2 8299hexnumlen (ULONGEST num)
c906108c
SS
8300{
8301 int i;
8302
8303 for (i = 0; num != 0; i++)
8304 num >>= 4;
8305
325fac50 8306 return std::max (i, 1);
c906108c
SS
8307}
8308
2df3850c 8309/* Set BUF to the minimum number of hex digits representing NUM. */
c906108c
SS
8310
8311static int
fba45db2 8312hexnumstr (char *buf, ULONGEST num)
c906108c 8313{
c906108c 8314 int len = hexnumlen (num);
a744cf53 8315
2df3850c
JM
8316 return hexnumnstr (buf, num, len);
8317}
8318
c906108c 8319
2df3850c 8320/* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
c906108c 8321
2df3850c 8322static int
fba45db2 8323hexnumnstr (char *buf, ULONGEST num, int width)
2df3850c
JM
8324{
8325 int i;
8326
8327 buf[width] = '\0';
8328
8329 for (i = width - 1; i >= 0; i--)
c906108c 8330 {
c5aa993b 8331 buf[i] = "0123456789abcdef"[(num & 0xf)];
c906108c
SS
8332 num >>= 4;
8333 }
8334
2df3850c 8335 return width;
c906108c
SS
8336}
8337
23860348 8338/* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
c906108c
SS
8339
8340static CORE_ADDR
fba45db2 8341remote_address_masked (CORE_ADDR addr)
c906108c 8342{
883b9c6c 8343 unsigned int address_size = remote_address_size;
a744cf53 8344
911c95a5
UW
8345 /* If "remoteaddresssize" was not set, default to target address size. */
8346 if (!address_size)
f5656ead 8347 address_size = gdbarch_addr_bit (target_gdbarch ());
911c95a5
UW
8348
8349 if (address_size > 0
8350 && address_size < (sizeof (ULONGEST) * 8))
c906108c
SS
8351 {
8352 /* Only create a mask when that mask can safely be constructed
23860348 8353 in a ULONGEST variable. */
c906108c 8354 ULONGEST mask = 1;
a744cf53 8355
911c95a5 8356 mask = (mask << address_size) - 1;
c906108c
SS
8357 addr &= mask;
8358 }
8359 return addr;
8360}
8361
8362/* Determine whether the remote target supports binary downloading.
8363 This is accomplished by sending a no-op memory write of zero length
8364 to the target at the specified address. It does not suffice to send
23860348
MS
8365 the whole packet, since many stubs strip the eighth bit and
8366 subsequently compute a wrong checksum, which causes real havoc with
8367 remote_write_bytes.
7a292a7a 8368
96baa820 8369 NOTE: This can still lose if the serial line is not eight-bit
0df8b418 8370 clean. In cases like this, the user should clear "remote
23860348 8371 X-packet". */
96baa820 8372
6b8edb51
PA
8373void
8374remote_target::check_binary_download (CORE_ADDR addr)
c906108c 8375{
d01949b6 8376 struct remote_state *rs = get_remote_state ();
24b06219 8377
4082afcc 8378 switch (packet_support (PACKET_X))
c906108c 8379 {
96baa820
JM
8380 case PACKET_DISABLE:
8381 break;
8382 case PACKET_ENABLE:
8383 break;
8384 case PACKET_SUPPORT_UNKNOWN:
8385 {
96baa820 8386 char *p;
802188a7 8387
8d64371b 8388 p = rs->buf.data ();
96baa820
JM
8389 *p++ = 'X';
8390 p += hexnumstr (p, (ULONGEST) addr);
8391 *p++ = ',';
8392 p += hexnumstr (p, (ULONGEST) 0);
8393 *p++ = ':';
8394 *p = '\0';
802188a7 8395
8d64371b
TT
8396 putpkt_binary (rs->buf.data (), (int) (p - rs->buf.data ()));
8397 getpkt (&rs->buf, 0);
c906108c 8398
2e9f7625 8399 if (rs->buf[0] == '\0')
96baa820
JM
8400 {
8401 if (remote_debug)
8402 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
8403 "binary downloading NOT "
8404 "supported by target\n");
444abaca 8405 remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
96baa820
JM
8406 }
8407 else
8408 {
8409 if (remote_debug)
8410 fprintf_unfiltered (gdb_stdlog,
64b9b334 8411 "binary downloading supported by target\n");
444abaca 8412 remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
96baa820
JM
8413 }
8414 break;
8415 }
c906108c
SS
8416 }
8417}
8418
124e13d9
SM
8419/* Helper function to resize the payload in order to try to get a good
8420 alignment. We try to write an amount of data such that the next write will
8421 start on an address aligned on REMOTE_ALIGN_WRITES. */
8422
8423static int
8424align_for_efficient_write (int todo, CORE_ADDR memaddr)
8425{
8426 return ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr;
8427}
8428
c906108c
SS
8429/* Write memory data directly to the remote machine.
8430 This does not inform the data cache; the data cache uses this.
a76d924d 8431 HEADER is the starting part of the packet.
c906108c
SS
8432 MEMADDR is the address in the remote memory space.
8433 MYADDR is the address of the buffer in our space.
124e13d9
SM
8434 LEN_UNITS is the number of addressable units to write.
8435 UNIT_SIZE is the length in bytes of an addressable unit.
a76d924d
DJ
8436 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
8437 should send data as binary ('X'), or hex-encoded ('M').
8438
8439 The function creates packet of the form
8440 <HEADER><ADDRESS>,<LENGTH>:<DATA>
8441
124e13d9 8442 where encoding of <DATA> is terminated by PACKET_FORMAT.
a76d924d
DJ
8443
8444 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
8445 are omitted.
8446
9b409511 8447 Return the transferred status, error or OK (an
124e13d9
SM
8448 'enum target_xfer_status' value). Save the number of addressable units
8449 transferred in *XFERED_LEN_UNITS. Only transfer a single packet.
8450
8451 On a platform with an addressable memory size of 2 bytes (UNIT_SIZE == 2), an
8452 exchange between gdb and the stub could look like (?? in place of the
8453 checksum):
8454
8455 -> $m1000,4#??
8456 <- aaaabbbbccccdddd
8457
8458 -> $M1000,3:eeeeffffeeee#??
8459 <- OK
8460
8461 -> $m1000,4#??
8462 <- eeeeffffeeeedddd */
c906108c 8463
6b8edb51
PA
8464target_xfer_status
8465remote_target::remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
8466 const gdb_byte *myaddr,
8467 ULONGEST len_units,
8468 int unit_size,
8469 ULONGEST *xfered_len_units,
8470 char packet_format, int use_length)
c906108c 8471{
6d820c5c 8472 struct remote_state *rs = get_remote_state ();
cfd77fa1 8473 char *p;
a76d924d
DJ
8474 char *plen = NULL;
8475 int plenlen = 0;
124e13d9
SM
8476 int todo_units;
8477 int units_written;
8478 int payload_capacity_bytes;
8479 int payload_length_bytes;
a76d924d
DJ
8480
8481 if (packet_format != 'X' && packet_format != 'M')
8482 internal_error (__FILE__, __LINE__,
9b20d036 8483 _("remote_write_bytes_aux: bad packet format"));
c906108c 8484
124e13d9 8485 if (len_units == 0)
9b409511 8486 return TARGET_XFER_EOF;
b2182ed2 8487
124e13d9 8488 payload_capacity_bytes = get_memory_write_packet_size ();
2bc416ba 8489
6d820c5c
DJ
8490 /* The packet buffer will be large enough for the payload;
8491 get_memory_packet_size ensures this. */
a76d924d 8492 rs->buf[0] = '\0';
c906108c 8493
a257b5bb 8494 /* Compute the size of the actual payload by subtracting out the
0df8b418
MS
8495 packet header and footer overhead: "$M<memaddr>,<len>:...#nn". */
8496
124e13d9 8497 payload_capacity_bytes -= strlen ("$,:#NN");
a76d924d 8498 if (!use_length)
0df8b418 8499 /* The comma won't be used. */
124e13d9
SM
8500 payload_capacity_bytes += 1;
8501 payload_capacity_bytes -= strlen (header);
8502 payload_capacity_bytes -= hexnumlen (memaddr);
c906108c 8503
a76d924d 8504 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
917317f4 8505
8d64371b
TT
8506 strcat (rs->buf.data (), header);
8507 p = rs->buf.data () + strlen (header);
a76d924d
DJ
8508
8509 /* Compute a best guess of the number of bytes actually transfered. */
8510 if (packet_format == 'X')
c906108c 8511 {
23860348 8512 /* Best guess at number of bytes that will fit. */
325fac50
PA
8513 todo_units = std::min (len_units,
8514 (ULONGEST) payload_capacity_bytes / unit_size);
a76d924d 8515 if (use_length)
124e13d9 8516 payload_capacity_bytes -= hexnumlen (todo_units);
325fac50 8517 todo_units = std::min (todo_units, payload_capacity_bytes / unit_size);
a76d924d
DJ
8518 }
8519 else
8520 {
124e13d9 8521 /* Number of bytes that will fit. */
325fac50
PA
8522 todo_units
8523 = std::min (len_units,
8524 (ULONGEST) (payload_capacity_bytes / unit_size) / 2);
a76d924d 8525 if (use_length)
124e13d9 8526 payload_capacity_bytes -= hexnumlen (todo_units);
325fac50
PA
8527 todo_units = std::min (todo_units,
8528 (payload_capacity_bytes / unit_size) / 2);
917317f4 8529 }
a76d924d 8530
124e13d9 8531 if (todo_units <= 0)
3de11b2e 8532 internal_error (__FILE__, __LINE__,
405f8e94 8533 _("minimum packet size too small to write data"));
802188a7 8534
6765f3e5
DJ
8535 /* If we already need another packet, then try to align the end
8536 of this packet to a useful boundary. */
124e13d9
SM
8537 if (todo_units > 2 * REMOTE_ALIGN_WRITES && todo_units < len_units)
8538 todo_units = align_for_efficient_write (todo_units, memaddr);
6765f3e5 8539
a257b5bb 8540 /* Append "<memaddr>". */
917317f4
JM
8541 memaddr = remote_address_masked (memaddr);
8542 p += hexnumstr (p, (ULONGEST) memaddr);
a257b5bb 8543
a76d924d
DJ
8544 if (use_length)
8545 {
8546 /* Append ",". */
8547 *p++ = ',';
802188a7 8548
124e13d9
SM
8549 /* Append the length and retain its location and size. It may need to be
8550 adjusted once the packet body has been created. */
a76d924d 8551 plen = p;
124e13d9 8552 plenlen = hexnumstr (p, (ULONGEST) todo_units);
a76d924d
DJ
8553 p += plenlen;
8554 }
a257b5bb
AC
8555
8556 /* Append ":". */
917317f4
JM
8557 *p++ = ':';
8558 *p = '\0';
802188a7 8559
a257b5bb 8560 /* Append the packet body. */
a76d924d 8561 if (packet_format == 'X')
917317f4 8562 {
917317f4
JM
8563 /* Binary mode. Send target system values byte by byte, in
8564 increasing byte addresses. Only escape certain critical
8565 characters. */
124e13d9
SM
8566 payload_length_bytes =
8567 remote_escape_output (myaddr, todo_units, unit_size, (gdb_byte *) p,
8568 &units_written, payload_capacity_bytes);
6765f3e5 8569
124e13d9 8570 /* If not all TODO units fit, then we'll need another packet. Make
9b7194bc
DJ
8571 a second try to keep the end of the packet aligned. Don't do
8572 this if the packet is tiny. */
124e13d9 8573 if (units_written < todo_units && units_written > 2 * REMOTE_ALIGN_WRITES)
6765f3e5 8574 {
124e13d9
SM
8575 int new_todo_units;
8576
8577 new_todo_units = align_for_efficient_write (units_written, memaddr);
8578
8579 if (new_todo_units != units_written)
8580 payload_length_bytes =
8581 remote_escape_output (myaddr, new_todo_units, unit_size,
8582 (gdb_byte *) p, &units_written,
8583 payload_capacity_bytes);
6765f3e5
DJ
8584 }
8585
124e13d9
SM
8586 p += payload_length_bytes;
8587 if (use_length && units_written < todo_units)
c906108c 8588 {
802188a7 8589 /* Escape chars have filled up the buffer prematurely,
124e13d9 8590 and we have actually sent fewer units than planned.
917317f4
JM
8591 Fix-up the length field of the packet. Use the same
8592 number of characters as before. */
124e13d9
SM
8593 plen += hexnumnstr (plen, (ULONGEST) units_written,
8594 plenlen);
917317f4 8595 *plen = ':'; /* overwrite \0 from hexnumnstr() */
c906108c 8596 }
a76d924d
DJ
8597 }
8598 else
8599 {
917317f4
JM
8600 /* Normal mode: Send target system values byte by byte, in
8601 increasing byte addresses. Each byte is encoded as a two hex
8602 value. */
124e13d9
SM
8603 p += 2 * bin2hex (myaddr, p, todo_units * unit_size);
8604 units_written = todo_units;
c906108c 8605 }
802188a7 8606
8d64371b
TT
8607 putpkt_binary (rs->buf.data (), (int) (p - rs->buf.data ()));
8608 getpkt (&rs->buf, 0);
802188a7 8609
2e9f7625 8610 if (rs->buf[0] == 'E')
00d84524 8611 return TARGET_XFER_E_IO;
802188a7 8612
124e13d9
SM
8613 /* Return UNITS_WRITTEN, not TODO_UNITS, in case escape chars caused us to
8614 send fewer units than we'd planned. */
8615 *xfered_len_units = (ULONGEST) units_written;
92ffd475 8616 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
c906108c
SS
8617}
8618
a76d924d
DJ
8619/* Write memory data directly to the remote machine.
8620 This does not inform the data cache; the data cache uses this.
8621 MEMADDR is the address in the remote memory space.
8622 MYADDR is the address of the buffer in our space.
8623 LEN is the number of bytes.
8624
9b409511
YQ
8625 Return the transferred status, error or OK (an
8626 'enum target_xfer_status' value). Save the number of bytes
8627 transferred in *XFERED_LEN. Only transfer a single packet. */
a76d924d 8628
6b8edb51
PA
8629target_xfer_status
8630remote_target::remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr,
8631 ULONGEST len, int unit_size,
8632 ULONGEST *xfered_len)
a76d924d 8633{
a121b7c1 8634 const char *packet_format = NULL;
a76d924d
DJ
8635
8636 /* Check whether the target supports binary download. */
8637 check_binary_download (memaddr);
8638
4082afcc 8639 switch (packet_support (PACKET_X))
a76d924d
DJ
8640 {
8641 case PACKET_ENABLE:
8642 packet_format = "X";
8643 break;
8644 case PACKET_DISABLE:
8645 packet_format = "M";
8646 break;
8647 case PACKET_SUPPORT_UNKNOWN:
8648 internal_error (__FILE__, __LINE__,
8649 _("remote_write_bytes: bad internal state"));
8650 default:
8651 internal_error (__FILE__, __LINE__, _("bad switch"));
8652 }
8653
8654 return remote_write_bytes_aux (packet_format,
124e13d9 8655 memaddr, myaddr, len, unit_size, xfered_len,
9b409511 8656 packet_format[0], 1);
a76d924d
DJ
8657}
8658
9217e74e
YQ
8659/* Read memory data directly from the remote machine.
8660 This does not use the data cache; the data cache uses this.
8661 MEMADDR is the address in the remote memory space.
8662 MYADDR is the address of the buffer in our space.
124e13d9
SM
8663 LEN_UNITS is the number of addressable memory units to read..
8664 UNIT_SIZE is the length in bytes of an addressable unit.
9217e74e
YQ
8665
8666 Return the transferred status, error or OK (an
8667 'enum target_xfer_status' value). Save the number of bytes
124e13d9
SM
8668 transferred in *XFERED_LEN_UNITS.
8669
8670 See the comment of remote_write_bytes_aux for an example of
8671 memory read/write exchange between gdb and the stub. */
9217e74e 8672
6b8edb51
PA
8673target_xfer_status
8674remote_target::remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr,
8675 ULONGEST len_units,
8676 int unit_size, ULONGEST *xfered_len_units)
9217e74e
YQ
8677{
8678 struct remote_state *rs = get_remote_state ();
124e13d9 8679 int buf_size_bytes; /* Max size of packet output buffer. */
9217e74e 8680 char *p;
124e13d9
SM
8681 int todo_units;
8682 int decoded_bytes;
9217e74e 8683
124e13d9 8684 buf_size_bytes = get_memory_read_packet_size ();
9217e74e
YQ
8685 /* The packet buffer will be large enough for the payload;
8686 get_memory_packet_size ensures this. */
8687
124e13d9 8688 /* Number of units that will fit. */
325fac50
PA
8689 todo_units = std::min (len_units,
8690 (ULONGEST) (buf_size_bytes / unit_size) / 2);
9217e74e
YQ
8691
8692 /* Construct "m"<memaddr>","<len>". */
8693 memaddr = remote_address_masked (memaddr);
8d64371b 8694 p = rs->buf.data ();
9217e74e
YQ
8695 *p++ = 'm';
8696 p += hexnumstr (p, (ULONGEST) memaddr);
8697 *p++ = ',';
124e13d9 8698 p += hexnumstr (p, (ULONGEST) todo_units);
9217e74e
YQ
8699 *p = '\0';
8700 putpkt (rs->buf);
8d64371b 8701 getpkt (&rs->buf, 0);
9217e74e
YQ
8702 if (rs->buf[0] == 'E'
8703 && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2])
8704 && rs->buf[3] == '\0')
8705 return TARGET_XFER_E_IO;
8706 /* Reply describes memory byte by byte, each byte encoded as two hex
8707 characters. */
8d64371b 8708 p = rs->buf.data ();
124e13d9 8709 decoded_bytes = hex2bin (p, myaddr, todo_units * unit_size);
9217e74e 8710 /* Return what we have. Let higher layers handle partial reads. */
124e13d9 8711 *xfered_len_units = (ULONGEST) (decoded_bytes / unit_size);
92ffd475 8712 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
9217e74e
YQ
8713}
8714
b55fbac4
YQ
8715/* Using the set of read-only target sections of remote, read live
8716 read-only memory.
8acf9577
YQ
8717
8718 For interface/parameters/return description see target.h,
8719 to_xfer_partial. */
8720
6b8edb51
PA
8721target_xfer_status
8722remote_target::remote_xfer_live_readonly_partial (gdb_byte *readbuf,
8723 ULONGEST memaddr,
8724 ULONGEST len,
8725 int unit_size,
8726 ULONGEST *xfered_len)
8acf9577
YQ
8727{
8728 struct target_section *secp;
8729 struct target_section_table *table;
8730
6b8edb51 8731 secp = target_section_by_addr (this, memaddr);
8acf9577 8732 if (secp != NULL
fd361982 8733 && (bfd_section_flags (secp->the_bfd_section) & SEC_READONLY))
8acf9577
YQ
8734 {
8735 struct target_section *p;
8736 ULONGEST memend = memaddr + len;
8737
6b8edb51 8738 table = target_get_section_table (this);
8acf9577
YQ
8739
8740 for (p = table->sections; p < table->sections_end; p++)
8741 {
8742 if (memaddr >= p->addr)
8743 {
8744 if (memend <= p->endaddr)
8745 {
8746 /* Entire transfer is within this section. */
124e13d9 8747 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 8748 xfered_len);
8acf9577
YQ
8749 }
8750 else if (memaddr >= p->endaddr)
8751 {
8752 /* This section ends before the transfer starts. */
8753 continue;
8754 }
8755 else
8756 {
8757 /* This section overlaps the transfer. Just do half. */
8758 len = p->endaddr - memaddr;
124e13d9 8759 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 8760 xfered_len);
8acf9577
YQ
8761 }
8762 }
8763 }
8764 }
8765
8766 return TARGET_XFER_EOF;
8767}
8768
9217e74e
YQ
8769/* Similar to remote_read_bytes_1, but it reads from the remote stub
8770 first if the requested memory is unavailable in traceframe.
8771 Otherwise, fall back to remote_read_bytes_1. */
c906108c 8772
6b8edb51
PA
8773target_xfer_status
8774remote_target::remote_read_bytes (CORE_ADDR memaddr,
8775 gdb_byte *myaddr, ULONGEST len, int unit_size,
8776 ULONGEST *xfered_len)
c906108c 8777{
6b6aa828 8778 if (len == 0)
96c4f946 8779 return TARGET_XFER_EOF;
b2182ed2 8780
8acf9577
YQ
8781 if (get_traceframe_number () != -1)
8782 {
a79b1bc6 8783 std::vector<mem_range> available;
8acf9577
YQ
8784
8785 /* If we fail to get the set of available memory, then the
8786 target does not support querying traceframe info, and so we
8787 attempt reading from the traceframe anyway (assuming the
8788 target implements the old QTro packet then). */
8789 if (traceframe_available_memory (&available, memaddr, len))
8790 {
a79b1bc6 8791 if (available.empty () || available[0].start != memaddr)
8acf9577
YQ
8792 {
8793 enum target_xfer_status res;
8794
8795 /* Don't read into the traceframe's available
8796 memory. */
a79b1bc6 8797 if (!available.empty ())
8acf9577
YQ
8798 {
8799 LONGEST oldlen = len;
8800
a79b1bc6 8801 len = available[0].start - memaddr;
8acf9577
YQ
8802 gdb_assert (len <= oldlen);
8803 }
8804
8acf9577 8805 /* This goes through the topmost target again. */
6b8edb51 8806 res = remote_xfer_live_readonly_partial (myaddr, memaddr,
124e13d9 8807 len, unit_size, xfered_len);
8acf9577
YQ
8808 if (res == TARGET_XFER_OK)
8809 return TARGET_XFER_OK;
8810 else
8811 {
8812 /* No use trying further, we know some memory starting
8813 at MEMADDR isn't available. */
8814 *xfered_len = len;
92ffd475
PC
8815 return (*xfered_len != 0) ?
8816 TARGET_XFER_UNAVAILABLE : TARGET_XFER_EOF;
8acf9577
YQ
8817 }
8818 }
8819
8820 /* Don't try to read more than how much is available, in
8821 case the target implements the deprecated QTro packet to
8822 cater for older GDBs (the target's knowledge of read-only
8823 sections may be outdated by now). */
a79b1bc6 8824 len = available[0].length;
8acf9577
YQ
8825 }
8826 }
8827
124e13d9 8828 return remote_read_bytes_1 (memaddr, myaddr, len, unit_size, xfered_len);
c906108c 8829}
74531fed 8830
c906108c 8831\f
c906108c 8832
a76d924d
DJ
8833/* Sends a packet with content determined by the printf format string
8834 FORMAT and the remaining arguments, then gets the reply. Returns
8835 whether the packet was a success, a failure, or unknown. */
8836
6b8edb51
PA
8837packet_result
8838remote_target::remote_send_printf (const char *format, ...)
a76d924d
DJ
8839{
8840 struct remote_state *rs = get_remote_state ();
8841 int max_size = get_remote_packet_size ();
a76d924d 8842 va_list ap;
a744cf53 8843
a76d924d
DJ
8844 va_start (ap, format);
8845
8846 rs->buf[0] = '\0';
8d64371b 8847 int size = vsnprintf (rs->buf.data (), max_size, format, ap);
33b031ce
GB
8848
8849 va_end (ap);
8850
8851 if (size >= max_size)
9b20d036 8852 internal_error (__FILE__, __LINE__, _("Too long remote packet."));
a76d924d
DJ
8853
8854 if (putpkt (rs->buf) < 0)
8855 error (_("Communication problem with target."));
8856
8857 rs->buf[0] = '\0';
8d64371b 8858 getpkt (&rs->buf, 0);
a76d924d
DJ
8859
8860 return packet_check_result (rs->buf);
8861}
8862
a76d924d
DJ
8863/* Flash writing can take quite some time. We'll set
8864 effectively infinite timeout for flash operations.
8865 In future, we'll need to decide on a better approach. */
8866static const int remote_flash_timeout = 1000;
8867
f6ac5f3d
PA
8868void
8869remote_target::flash_erase (ULONGEST address, LONGEST length)
a76d924d 8870{
f5656ead 8871 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
a76d924d 8872 enum packet_result ret;
2ec845e7
TT
8873 scoped_restore restore_timeout
8874 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
a76d924d
DJ
8875
8876 ret = remote_send_printf ("vFlashErase:%s,%s",
5af949e3 8877 phex (address, addr_size),
a76d924d
DJ
8878 phex (length, 4));
8879 switch (ret)
8880 {
8881 case PACKET_UNKNOWN:
8882 error (_("Remote target does not support flash erase"));
8883 case PACKET_ERROR:
8884 error (_("Error erasing flash with vFlashErase packet"));
8885 default:
8886 break;
8887 }
a76d924d
DJ
8888}
8889
6b8edb51
PA
8890target_xfer_status
8891remote_target::remote_flash_write (ULONGEST address,
8892 ULONGEST length, ULONGEST *xfered_len,
8893 const gdb_byte *data)
a76d924d 8894{
2ec845e7
TT
8895 scoped_restore restore_timeout
8896 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
8897 return remote_write_bytes_aux ("vFlashWrite:", address, data, length, 1,
8898 xfered_len,'X', 0);
a76d924d
DJ
8899}
8900
f6ac5f3d
PA
8901void
8902remote_target::flash_done ()
a76d924d 8903{
a76d924d 8904 int ret;
a76d924d 8905
2ec845e7
TT
8906 scoped_restore restore_timeout
8907 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
8908
a76d924d 8909 ret = remote_send_printf ("vFlashDone");
a76d924d
DJ
8910
8911 switch (ret)
8912 {
8913 case PACKET_UNKNOWN:
8914 error (_("Remote target does not support vFlashDone"));
8915 case PACKET_ERROR:
8916 error (_("Error finishing flash operation"));
8917 default:
8918 break;
8919 }
8920}
8921
f6ac5f3d
PA
8922void
8923remote_target::files_info ()
c906108c
SS
8924{
8925 puts_filtered ("Debugging a target over a serial line.\n");
8926}
8927\f
8928/* Stuff for dealing with the packets which are part of this protocol.
8929 See comment at top of file for details. */
8930
1927e618
PA
8931/* Close/unpush the remote target, and throw a TARGET_CLOSE_ERROR
8932 error to higher layers. Called when a serial error is detected.
8933 The exception message is STRING, followed by a colon and a blank,
d6cb50a2
JK
8934 the system error message for errno at function entry and final dot
8935 for output compatibility with throw_perror_with_name. */
1927e618
PA
8936
8937static void
8938unpush_and_perror (const char *string)
8939{
d6cb50a2 8940 int saved_errno = errno;
1927e618
PA
8941
8942 remote_unpush_target ();
d6cb50a2
JK
8943 throw_error (TARGET_CLOSE_ERROR, "%s: %s.", string,
8944 safe_strerror (saved_errno));
1927e618
PA
8945}
8946
048094ac
PA
8947/* Read a single character from the remote end. The current quit
8948 handler is overridden to avoid quitting in the middle of packet
8949 sequence, as that would break communication with the remote server.
8950 See remote_serial_quit_handler for more detail. */
c906108c 8951
6b8edb51
PA
8952int
8953remote_target::readchar (int timeout)
c906108c
SS
8954{
8955 int ch;
5d93a237 8956 struct remote_state *rs = get_remote_state ();
048094ac 8957
2ec845e7 8958 {
6b8edb51
PA
8959 scoped_restore restore_quit_target
8960 = make_scoped_restore (&curr_quit_handler_target, this);
2ec845e7 8961 scoped_restore restore_quit
6b8edb51 8962 = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
c906108c 8963
2ec845e7 8964 rs->got_ctrlc_during_io = 0;
c906108c 8965
2ec845e7 8966 ch = serial_readchar (rs->remote_desc, timeout);
048094ac 8967
2ec845e7
TT
8968 if (rs->got_ctrlc_during_io)
8969 set_quit_flag ();
8970 }
048094ac 8971
2acceee2 8972 if (ch >= 0)
0876f84a 8973 return ch;
2acceee2
JM
8974
8975 switch ((enum serial_rc) ch)
c906108c
SS
8976 {
8977 case SERIAL_EOF:
78a095c3 8978 remote_unpush_target ();
598d3636 8979 throw_error (TARGET_CLOSE_ERROR, _("Remote connection closed"));
2acceee2 8980 /* no return */
c906108c 8981 case SERIAL_ERROR:
1927e618
PA
8982 unpush_and_perror (_("Remote communication error. "
8983 "Target disconnected."));
2acceee2 8984 /* no return */
c906108c 8985 case SERIAL_TIMEOUT:
2acceee2 8986 break;
c906108c 8987 }
2acceee2 8988 return ch;
c906108c
SS
8989}
8990
c33e31fd 8991/* Wrapper for serial_write that closes the target and throws if
048094ac
PA
8992 writing fails. The current quit handler is overridden to avoid
8993 quitting in the middle of packet sequence, as that would break
8994 communication with the remote server. See
8995 remote_serial_quit_handler for more detail. */
c33e31fd 8996
6b8edb51
PA
8997void
8998remote_target::remote_serial_write (const char *str, int len)
c33e31fd 8999{
5d93a237 9000 struct remote_state *rs = get_remote_state ();
048094ac 9001
6b8edb51
PA
9002 scoped_restore restore_quit_target
9003 = make_scoped_restore (&curr_quit_handler_target, this);
2ec845e7 9004 scoped_restore restore_quit
6b8edb51 9005 = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
048094ac
PA
9006
9007 rs->got_ctrlc_during_io = 0;
5d93a237
TT
9008
9009 if (serial_write (rs->remote_desc, str, len))
c33e31fd 9010 {
1927e618
PA
9011 unpush_and_perror (_("Remote communication error. "
9012 "Target disconnected."));
c33e31fd 9013 }
048094ac
PA
9014
9015 if (rs->got_ctrlc_during_io)
9016 set_quit_flag ();
c33e31fd
PA
9017}
9018
b3ced9ba
PA
9019/* Return a string representing an escaped version of BUF, of len N.
9020 E.g. \n is converted to \\n, \t to \\t, etc. */
6e5abd65 9021
b3ced9ba 9022static std::string
6e5abd65
PA
9023escape_buffer (const char *buf, int n)
9024{
d7e74731 9025 string_file stb;
6e5abd65 9026
d7e74731
PA
9027 stb.putstrn (buf, n, '\\');
9028 return std::move (stb.string ());
6e5abd65
PA
9029}
9030
c906108c
SS
9031/* Display a null-terminated packet on stdout, for debugging, using C
9032 string notation. */
9033
9034static void
baa336ce 9035print_packet (const char *buf)
c906108c
SS
9036{
9037 puts_filtered ("\"");
43e526b9 9038 fputstr_filtered (buf, '"', gdb_stdout);
c906108c
SS
9039 puts_filtered ("\"");
9040}
9041
9042int
6b8edb51 9043remote_target::putpkt (const char *buf)
c906108c
SS
9044{
9045 return putpkt_binary (buf, strlen (buf));
9046}
9047
6b8edb51
PA
9048/* Wrapper around remote_target::putpkt to avoid exporting
9049 remote_target. */
9050
9051int
9052putpkt (remote_target *remote, const char *buf)
9053{
9054 return remote->putpkt (buf);
9055}
9056
c906108c 9057/* Send a packet to the remote machine, with error checking. The data
23860348 9058 of the packet is in BUF. The string in BUF can be at most
ea9c271d 9059 get_remote_packet_size () - 5 to account for the $, # and checksum,
23860348
MS
9060 and for a possible /0 if we are debugging (remote_debug) and want
9061 to print the sent packet as a string. */
c906108c 9062
6b8edb51
PA
9063int
9064remote_target::putpkt_binary (const char *buf, int cnt)
c906108c 9065{
2d717e4f 9066 struct remote_state *rs = get_remote_state ();
c906108c
SS
9067 int i;
9068 unsigned char csum = 0;
b80406ac
TT
9069 gdb::def_vector<char> data (cnt + 6);
9070 char *buf2 = data.data ();
085dd6e6 9071
c906108c
SS
9072 int ch;
9073 int tcount = 0;
9074 char *p;
9075
e24a49d8
PA
9076 /* Catch cases like trying to read memory or listing threads while
9077 we're waiting for a stop reply. The remote server wouldn't be
9078 ready to handle this request, so we'd hang and timeout. We don't
9079 have to worry about this in synchronous mode, because in that
9080 case it's not possible to issue a command while the target is
74531fed
PA
9081 running. This is not a problem in non-stop mode, because in that
9082 case, the stub is always ready to process serial input. */
6efcd9a8
PA
9083 if (!target_is_non_stop_p ()
9084 && target_is_async_p ()
9085 && rs->waiting_for_stop_reply)
9597b22a
DE
9086 {
9087 error (_("Cannot execute this command while the target is running.\n"
9088 "Use the \"interrupt\" command to stop the target\n"
9089 "and then try again."));
9090 }
e24a49d8 9091
2d717e4f
DJ
9092 /* We're sending out a new packet. Make sure we don't look at a
9093 stale cached response. */
9094 rs->cached_wait_status = 0;
9095
c906108c
SS
9096 /* Copy the packet into buffer BUF2, encapsulating it
9097 and giving it a checksum. */
9098
c906108c
SS
9099 p = buf2;
9100 *p++ = '$';
9101
9102 for (i = 0; i < cnt; i++)
9103 {
9104 csum += buf[i];
9105 *p++ = buf[i];
9106 }
9107 *p++ = '#';
9108 *p++ = tohex ((csum >> 4) & 0xf);
9109 *p++ = tohex (csum & 0xf);
9110
9111 /* Send it over and over until we get a positive ack. */
9112
9113 while (1)
9114 {
9115 int started_error_output = 0;
9116
9117 if (remote_debug)
9118 {
9119 *p = '\0';
b3ced9ba 9120
6f8976bf
YQ
9121 int len = (int) (p - buf2);
9122
9123 std::string str
9124 = escape_buffer (buf2, std::min (len, REMOTE_DEBUG_MAX_CHAR));
9125
9126 fprintf_unfiltered (gdb_stdlog, "Sending packet: %s", str.c_str ());
9127
567a3e54
SM
9128 if (len > REMOTE_DEBUG_MAX_CHAR)
9129 fprintf_unfiltered (gdb_stdlog, "[%d bytes omitted]",
9130 len - REMOTE_DEBUG_MAX_CHAR);
6f8976bf
YQ
9131
9132 fprintf_unfiltered (gdb_stdlog, "...");
b3ced9ba 9133
0f71a2f6 9134 gdb_flush (gdb_stdlog);
c906108c 9135 }
c33e31fd 9136 remote_serial_write (buf2, p - buf2);
c906108c 9137
a6f3e723
SL
9138 /* If this is a no acks version of the remote protocol, send the
9139 packet and move on. */
9140 if (rs->noack_mode)
9141 break;
9142
74531fed
PA
9143 /* Read until either a timeout occurs (-2) or '+' is read.
9144 Handle any notification that arrives in the mean time. */
c906108c
SS
9145 while (1)
9146 {
9147 ch = readchar (remote_timeout);
9148
c5aa993b 9149 if (remote_debug)
c906108c
SS
9150 {
9151 switch (ch)
9152 {
9153 case '+':
1216fa2c 9154 case '-':
c906108c
SS
9155 case SERIAL_TIMEOUT:
9156 case '$':
74531fed 9157 case '%':
c906108c
SS
9158 if (started_error_output)
9159 {
9160 putchar_unfiltered ('\n');
9161 started_error_output = 0;
9162 }
9163 }
9164 }
9165
9166 switch (ch)
9167 {
9168 case '+':
9169 if (remote_debug)
0f71a2f6 9170 fprintf_unfiltered (gdb_stdlog, "Ack\n");
c906108c 9171 return 1;
1216fa2c
AC
9172 case '-':
9173 if (remote_debug)
9174 fprintf_unfiltered (gdb_stdlog, "Nak\n");
a17d146e 9175 /* FALLTHROUGH */
c906108c 9176 case SERIAL_TIMEOUT:
c5aa993b 9177 tcount++;
c906108c 9178 if (tcount > 3)
b80406ac 9179 return 0;
23860348 9180 break; /* Retransmit buffer. */
c906108c
SS
9181 case '$':
9182 {
40e3f985 9183 if (remote_debug)
2bc416ba 9184 fprintf_unfiltered (gdb_stdlog,
23860348 9185 "Packet instead of Ack, ignoring it\n");
d6f7abdf
AC
9186 /* It's probably an old response sent because an ACK
9187 was lost. Gobble up the packet and ack it so it
9188 doesn't get retransmitted when we resend this
9189 packet. */
6d820c5c 9190 skip_frame ();
c33e31fd 9191 remote_serial_write ("+", 1);
23860348 9192 continue; /* Now, go look for +. */
c906108c 9193 }
74531fed
PA
9194
9195 case '%':
9196 {
9197 int val;
9198
9199 /* If we got a notification, handle it, and go back to looking
9200 for an ack. */
9201 /* We've found the start of a notification. Now
9202 collect the data. */
8d64371b 9203 val = read_frame (&rs->buf);
74531fed
PA
9204 if (val >= 0)
9205 {
9206 if (remote_debug)
9207 {
8d64371b 9208 std::string str = escape_buffer (rs->buf.data (), val);
6e5abd65 9209
6e5abd65
PA
9210 fprintf_unfiltered (gdb_stdlog,
9211 " Notification received: %s\n",
b3ced9ba 9212 str.c_str ());
74531fed 9213 }
8d64371b 9214 handle_notification (rs->notif_state, rs->buf.data ());
74531fed
PA
9215 /* We're in sync now, rewait for the ack. */
9216 tcount = 0;
9217 }
9218 else
9219 {
9220 if (remote_debug)
9221 {
9222 if (!started_error_output)
9223 {
9224 started_error_output = 1;
9225 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
9226 }
9227 fputc_unfiltered (ch & 0177, gdb_stdlog);
8d64371b 9228 fprintf_unfiltered (gdb_stdlog, "%s", rs->buf.data ());
74531fed
PA
9229 }
9230 }
9231 continue;
9232 }
9233 /* fall-through */
c906108c
SS
9234 default:
9235 if (remote_debug)
9236 {
9237 if (!started_error_output)
9238 {
9239 started_error_output = 1;
0f71a2f6 9240 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
c906108c 9241 }
0f71a2f6 9242 fputc_unfiltered (ch & 0177, gdb_stdlog);
c906108c
SS
9243 }
9244 continue;
9245 }
23860348 9246 break; /* Here to retransmit. */
c906108c
SS
9247 }
9248
9249#if 0
9250 /* This is wrong. If doing a long backtrace, the user should be
c5aa993b
JM
9251 able to get out next time we call QUIT, without anything as
9252 violent as interrupt_query. If we want to provide a way out of
9253 here without getting to the next QUIT, it should be based on
9254 hitting ^C twice as in remote_wait. */
c906108c
SS
9255 if (quit_flag)
9256 {
9257 quit_flag = 0;
9258 interrupt_query ();
9259 }
9260#endif
9261 }
a5c0808e 9262
a6f3e723 9263 return 0;
c906108c
SS
9264}
9265
6d820c5c
DJ
9266/* Come here after finding the start of a frame when we expected an
9267 ack. Do our best to discard the rest of this packet. */
9268
6b8edb51
PA
9269void
9270remote_target::skip_frame ()
6d820c5c
DJ
9271{
9272 int c;
9273
9274 while (1)
9275 {
9276 c = readchar (remote_timeout);
9277 switch (c)
9278 {
9279 case SERIAL_TIMEOUT:
9280 /* Nothing we can do. */
9281 return;
9282 case '#':
9283 /* Discard the two bytes of checksum and stop. */
9284 c = readchar (remote_timeout);
9285 if (c >= 0)
9286 c = readchar (remote_timeout);
9287
9288 return;
9289 case '*': /* Run length encoding. */
9290 /* Discard the repeat count. */
9291 c = readchar (remote_timeout);
9292 if (c < 0)
9293 return;
9294 break;
9295 default:
9296 /* A regular character. */
9297 break;
9298 }
9299 }
9300}
9301
c906108c 9302/* Come here after finding the start of the frame. Collect the rest
6d820c5c
DJ
9303 into *BUF, verifying the checksum, length, and handling run-length
9304 compression. NUL terminate the buffer. If there is not enough room,
8d64371b 9305 expand *BUF.
c906108c 9306
c2d11a7d
JM
9307 Returns -1 on error, number of characters in buffer (ignoring the
9308 trailing NULL) on success. (could be extended to return one of the
23860348 9309 SERIAL status indications). */
c2d11a7d 9310
6b8edb51 9311long
8d64371b 9312remote_target::read_frame (gdb::char_vector *buf_p)
c906108c
SS
9313{
9314 unsigned char csum;
c2d11a7d 9315 long bc;
c906108c 9316 int c;
8d64371b 9317 char *buf = buf_p->data ();
a6f3e723 9318 struct remote_state *rs = get_remote_state ();
c906108c
SS
9319
9320 csum = 0;
c2d11a7d 9321 bc = 0;
c906108c
SS
9322
9323 while (1)
9324 {
9325 c = readchar (remote_timeout);
c906108c
SS
9326 switch (c)
9327 {
9328 case SERIAL_TIMEOUT:
9329 if (remote_debug)
0f71a2f6 9330 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog);
c2d11a7d 9331 return -1;
c906108c
SS
9332 case '$':
9333 if (remote_debug)
0f71a2f6
JM
9334 fputs_filtered ("Saw new packet start in middle of old one\n",
9335 gdb_stdlog);
23860348 9336 return -1; /* Start a new packet, count retries. */
c906108c
SS
9337 case '#':
9338 {
9339 unsigned char pktcsum;
e1b09194
AC
9340 int check_0 = 0;
9341 int check_1 = 0;
c906108c 9342
c2d11a7d 9343 buf[bc] = '\0';
c906108c 9344
e1b09194
AC
9345 check_0 = readchar (remote_timeout);
9346 if (check_0 >= 0)
9347 check_1 = readchar (remote_timeout);
802188a7 9348
e1b09194
AC
9349 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
9350 {
9351 if (remote_debug)
2bc416ba 9352 fputs_filtered ("Timeout in checksum, retrying\n",
23860348 9353 gdb_stdlog);
e1b09194
AC
9354 return -1;
9355 }
9356 else if (check_0 < 0 || check_1 < 0)
40e3f985
FN
9357 {
9358 if (remote_debug)
2bc416ba 9359 fputs_filtered ("Communication error in checksum\n",
23860348 9360 gdb_stdlog);
40e3f985
FN
9361 return -1;
9362 }
c906108c 9363
a6f3e723
SL
9364 /* Don't recompute the checksum; with no ack packets we
9365 don't have any way to indicate a packet retransmission
9366 is necessary. */
9367 if (rs->noack_mode)
9368 return bc;
9369
e1b09194 9370 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
c906108c 9371 if (csum == pktcsum)
c2d11a7d 9372 return bc;
c906108c 9373
c5aa993b 9374 if (remote_debug)
c906108c 9375 {
b3ced9ba 9376 std::string str = escape_buffer (buf, bc);
6e5abd65 9377
6e5abd65 9378 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
9379 "Bad checksum, sentsum=0x%x, "
9380 "csum=0x%x, buf=%s\n",
b3ced9ba 9381 pktcsum, csum, str.c_str ());
c906108c 9382 }
c2d11a7d 9383 /* Number of characters in buffer ignoring trailing
23860348 9384 NULL. */
c2d11a7d 9385 return -1;
c906108c 9386 }
23860348 9387 case '*': /* Run length encoding. */
c2c6d25f
JM
9388 {
9389 int repeat;
c906108c 9390
a744cf53 9391 csum += c;
b4501125
AC
9392 c = readchar (remote_timeout);
9393 csum += c;
23860348 9394 repeat = c - ' ' + 3; /* Compute repeat count. */
c906108c 9395
23860348 9396 /* The character before ``*'' is repeated. */
c2d11a7d 9397
6d820c5c 9398 if (repeat > 0 && repeat <= 255 && bc > 0)
c2c6d25f 9399 {
8d64371b 9400 if (bc + repeat - 1 >= buf_p->size () - 1)
6d820c5c
DJ
9401 {
9402 /* Make some more room in the buffer. */
8d64371b
TT
9403 buf_p->resize (buf_p->size () + repeat);
9404 buf = buf_p->data ();
6d820c5c
DJ
9405 }
9406
c2d11a7d
JM
9407 memset (&buf[bc], buf[bc - 1], repeat);
9408 bc += repeat;
c2c6d25f
JM
9409 continue;
9410 }
9411
c2d11a7d 9412 buf[bc] = '\0';
6d820c5c 9413 printf_filtered (_("Invalid run length encoding: %s\n"), buf);
c2d11a7d 9414 return -1;
c2c6d25f 9415 }
c906108c 9416 default:
8d64371b 9417 if (bc >= buf_p->size () - 1)
c906108c 9418 {
6d820c5c 9419 /* Make some more room in the buffer. */
8d64371b
TT
9420 buf_p->resize (buf_p->size () * 2);
9421 buf = buf_p->data ();
c906108c
SS
9422 }
9423
6d820c5c
DJ
9424 buf[bc++] = c;
9425 csum += c;
9426 continue;
c906108c
SS
9427 }
9428 }
9429}
9430
ed2b7c17
TT
9431/* Set this to the maximum number of seconds to wait instead of waiting forever
9432 in target_wait(). If this timer times out, then it generates an error and
9433 the command is aborted. This replaces most of the need for timeouts in the
9434 GDB test suite, and makes it possible to distinguish between a hung target
9435 and one with slow communications. */
9436
9437static int watchdog = 0;
9438static void
9439show_watchdog (struct ui_file *file, int from_tty,
9440 struct cmd_list_element *c, const char *value)
9441{
9442 fprintf_filtered (file, _("Watchdog timer is %s.\n"), value);
9443}
9444
c906108c 9445/* Read a packet from the remote machine, with error checking, and
8d64371b
TT
9446 store it in *BUF. Resize *BUF if necessary to hold the result. If
9447 FOREVER, wait forever rather than timing out; this is used (in
9448 synchronous mode) to wait for a target that is is executing user
9449 code to stop. */
d9fcf2fb
JM
9450/* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
9451 don't have to change all the calls to getpkt to deal with the
9452 return value, because at the moment I don't know what the right
23860348 9453 thing to do it for those. */
6b8edb51 9454
c906108c 9455void
8d64371b 9456remote_target::getpkt (gdb::char_vector *buf, int forever)
d9fcf2fb 9457{
8d64371b 9458 getpkt_sane (buf, forever);
d9fcf2fb
JM
9459}
9460
9461
9462/* Read a packet from the remote machine, with error checking, and
8d64371b
TT
9463 store it in *BUF. Resize *BUF if necessary to hold the result. If
9464 FOREVER, wait forever rather than timing out; this is used (in
9465 synchronous mode) to wait for a target that is is executing user
9466 code to stop. If FOREVER == 0, this function is allowed to time
9467 out gracefully and return an indication of this to the caller.
9468 Otherwise return the number of bytes read. If EXPECTING_NOTIF,
9469 consider receiving a notification enough reason to return to the
9470 caller. *IS_NOTIF is an output boolean that indicates whether *BUF
9471 holds a notification or not (a regular packet). */
74531fed 9472
6b8edb51 9473int
8d64371b 9474remote_target::getpkt_or_notif_sane_1 (gdb::char_vector *buf,
6b8edb51
PA
9475 int forever, int expecting_notif,
9476 int *is_notif)
c906108c 9477{
2d717e4f 9478 struct remote_state *rs = get_remote_state ();
c906108c
SS
9479 int c;
9480 int tries;
9481 int timeout;
df4b58fe 9482 int val = -1;
c906108c 9483
2d717e4f
DJ
9484 /* We're reading a new response. Make sure we don't look at a
9485 previously cached response. */
9486 rs->cached_wait_status = 0;
9487
8d64371b 9488 strcpy (buf->data (), "timeout");
c906108c
SS
9489
9490 if (forever)
74531fed
PA
9491 timeout = watchdog > 0 ? watchdog : -1;
9492 else if (expecting_notif)
9493 timeout = 0; /* There should already be a char in the buffer. If
9494 not, bail out. */
c906108c
SS
9495 else
9496 timeout = remote_timeout;
9497
9498#define MAX_TRIES 3
9499
74531fed
PA
9500 /* Process any number of notifications, and then return when
9501 we get a packet. */
9502 for (;;)
c906108c 9503 {
d9c43928 9504 /* If we get a timeout or bad checksum, retry up to MAX_TRIES
74531fed
PA
9505 times. */
9506 for (tries = 1; tries <= MAX_TRIES; tries++)
c906108c 9507 {
74531fed
PA
9508 /* This can loop forever if the remote side sends us
9509 characters continuously, but if it pauses, we'll get
9510 SERIAL_TIMEOUT from readchar because of timeout. Then
9511 we'll count that as a retry.
9512
9513 Note that even when forever is set, we will only wait
9514 forever prior to the start of a packet. After that, we
9515 expect characters to arrive at a brisk pace. They should
9516 show up within remote_timeout intervals. */
9517 do
9518 c = readchar (timeout);
9519 while (c != SERIAL_TIMEOUT && c != '$' && c != '%');
c906108c
SS
9520
9521 if (c == SERIAL_TIMEOUT)
9522 {
74531fed
PA
9523 if (expecting_notif)
9524 return -1; /* Don't complain, it's normal to not get
9525 anything in this case. */
9526
23860348 9527 if (forever) /* Watchdog went off? Kill the target. */
c906108c 9528 {
78a095c3 9529 remote_unpush_target ();
598d3636
JK
9530 throw_error (TARGET_CLOSE_ERROR,
9531 _("Watchdog timeout has expired. "
9532 "Target detached."));
c906108c 9533 }
c906108c 9534 if (remote_debug)
0f71a2f6 9535 fputs_filtered ("Timed out.\n", gdb_stdlog);
c906108c 9536 }
74531fed
PA
9537 else
9538 {
9539 /* We've found the start of a packet or notification.
9540 Now collect the data. */
8d64371b 9541 val = read_frame (buf);
74531fed
PA
9542 if (val >= 0)
9543 break;
9544 }
9545
c33e31fd 9546 remote_serial_write ("-", 1);
c906108c 9547 }
c906108c 9548
74531fed
PA
9549 if (tries > MAX_TRIES)
9550 {
9551 /* We have tried hard enough, and just can't receive the
9552 packet/notification. Give up. */
9553 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
c906108c 9554
74531fed
PA
9555 /* Skip the ack char if we're in no-ack mode. */
9556 if (!rs->noack_mode)
c33e31fd 9557 remote_serial_write ("+", 1);
74531fed
PA
9558 return -1;
9559 }
c906108c 9560
74531fed
PA
9561 /* If we got an ordinary packet, return that to our caller. */
9562 if (c == '$')
c906108c
SS
9563 {
9564 if (remote_debug)
43e526b9 9565 {
6f8976bf 9566 std::string str
8d64371b 9567 = escape_buffer (buf->data (),
6f8976bf
YQ
9568 std::min (val, REMOTE_DEBUG_MAX_CHAR));
9569
9570 fprintf_unfiltered (gdb_stdlog, "Packet received: %s",
9571 str.c_str ());
9572
567a3e54
SM
9573 if (val > REMOTE_DEBUG_MAX_CHAR)
9574 fprintf_unfiltered (gdb_stdlog, "[%d bytes omitted]",
9575 val - REMOTE_DEBUG_MAX_CHAR);
6e5abd65 9576
6f8976bf 9577 fprintf_unfiltered (gdb_stdlog, "\n");
43e526b9 9578 }
a6f3e723
SL
9579
9580 /* Skip the ack char if we're in no-ack mode. */
9581 if (!rs->noack_mode)
c33e31fd 9582 remote_serial_write ("+", 1);
fee9eda9
YQ
9583 if (is_notif != NULL)
9584 *is_notif = 0;
0876f84a 9585 return val;
c906108c
SS
9586 }
9587
74531fed
PA
9588 /* If we got a notification, handle it, and go back to looking
9589 for a packet. */
9590 else
9591 {
9592 gdb_assert (c == '%');
9593
9594 if (remote_debug)
9595 {
8d64371b 9596 std::string str = escape_buffer (buf->data (), val);
6e5abd65 9597
6e5abd65
PA
9598 fprintf_unfiltered (gdb_stdlog,
9599 " Notification received: %s\n",
b3ced9ba 9600 str.c_str ());
74531fed 9601 }
fee9eda9
YQ
9602 if (is_notif != NULL)
9603 *is_notif = 1;
c906108c 9604
8d64371b 9605 handle_notification (rs->notif_state, buf->data ());
c906108c 9606
74531fed 9607 /* Notifications require no acknowledgement. */
a6f3e723 9608
74531fed 9609 if (expecting_notif)
fee9eda9 9610 return val;
74531fed
PA
9611 }
9612 }
9613}
9614
6b8edb51 9615int
8d64371b 9616remote_target::getpkt_sane (gdb::char_vector *buf, int forever)
74531fed 9617{
8d64371b 9618 return getpkt_or_notif_sane_1 (buf, forever, 0, NULL);
74531fed
PA
9619}
9620
6b8edb51 9621int
8d64371b 9622remote_target::getpkt_or_notif_sane (gdb::char_vector *buf, int forever,
6b8edb51 9623 int *is_notif)
74531fed 9624{
8d64371b 9625 return getpkt_or_notif_sane_1 (buf, forever, 1, is_notif);
c906108c 9626}
74531fed 9627
cbb8991c
DB
9628/* Kill any new fork children of process PID that haven't been
9629 processed by follow_fork. */
9630
6b8edb51
PA
9631void
9632remote_target::kill_new_fork_children (int pid)
cbb8991c 9633{
6b8edb51 9634 remote_state *rs = get_remote_state ();
cbb8991c 9635 struct notif_client *notif = &notif_client_stop;
cbb8991c
DB
9636
9637 /* Kill the fork child threads of any threads in process PID
9638 that are stopped at a fork event. */
08036331 9639 for (thread_info *thread : all_non_exited_threads ())
cbb8991c
DB
9640 {
9641 struct target_waitstatus *ws = &thread->pending_follow;
9642
9643 if (is_pending_fork_parent (ws, pid, thread->ptid))
9644 {
953edf2b 9645 int child_pid = ws->value.related_pid.pid ();
cbb8991c
DB
9646 int res;
9647
6b8edb51 9648 res = remote_vkill (child_pid);
cbb8991c
DB
9649 if (res != 0)
9650 error (_("Can't kill fork child process %d"), child_pid);
9651 }
9652 }
9653
9654 /* Check for any pending fork events (not reported or processed yet)
9655 in process PID and kill those fork child threads as well. */
9656 remote_notif_get_pending_events (notif);
953edf2b
TT
9657 for (auto &event : rs->stop_reply_queue)
9658 if (is_pending_fork_parent (&event->ws, pid, event->ptid))
9659 {
9660 int child_pid = event->ws.value.related_pid.pid ();
9661 int res;
9662
9663 res = remote_vkill (child_pid);
9664 if (res != 0)
9665 error (_("Can't kill fork child process %d"), child_pid);
9666 }
cbb8991c
DB
9667}
9668
c906108c 9669\f
8020350c
DB
9670/* Target hook to kill the current inferior. */
9671
f6ac5f3d
PA
9672void
9673remote_target::kill ()
43ff13b4 9674{
8020350c 9675 int res = -1;
e99b03dc 9676 int pid = inferior_ptid.pid ();
8020350c 9677 struct remote_state *rs = get_remote_state ();
0fdf84ca 9678
8020350c 9679 if (packet_support (PACKET_vKill) != PACKET_DISABLE)
0fdf84ca 9680 {
8020350c
DB
9681 /* If we're stopped while forking and we haven't followed yet,
9682 kill the child task. We need to do this before killing the
9683 parent task because if this is a vfork then the parent will
9684 be sleeping. */
6b8edb51 9685 kill_new_fork_children (pid);
8020350c 9686
6b8edb51 9687 res = remote_vkill (pid);
8020350c 9688 if (res == 0)
0fdf84ca 9689 {
bc1e6c81 9690 target_mourn_inferior (inferior_ptid);
0fdf84ca
PA
9691 return;
9692 }
8020350c 9693 }
0fdf84ca 9694
8020350c
DB
9695 /* If we are in 'target remote' mode and we are killing the only
9696 inferior, then we will tell gdbserver to exit and unpush the
9697 target. */
9698 if (res == -1 && !remote_multi_process_p (rs)
9699 && number_of_live_inferiors () == 1)
9700 {
9701 remote_kill_k ();
9702
9703 /* We've killed the remote end, we get to mourn it. If we are
9704 not in extended mode, mourning the inferior also unpushes
9705 remote_ops from the target stack, which closes the remote
9706 connection. */
bc1e6c81 9707 target_mourn_inferior (inferior_ptid);
8020350c
DB
9708
9709 return;
0fdf84ca 9710 }
43ff13b4 9711
8020350c 9712 error (_("Can't kill process"));
43ff13b4
JM
9713}
9714
8020350c
DB
9715/* Send a kill request to the target using the 'vKill' packet. */
9716
6b8edb51
PA
9717int
9718remote_target::remote_vkill (int pid)
82f73884 9719{
4082afcc 9720 if (packet_support (PACKET_vKill) == PACKET_DISABLE)
82f73884
PA
9721 return -1;
9722
6b8edb51
PA
9723 remote_state *rs = get_remote_state ();
9724
82f73884 9725 /* Tell the remote target to detach. */
8d64371b 9726 xsnprintf (rs->buf.data (), get_remote_packet_size (), "vKill;%x", pid);
82f73884 9727 putpkt (rs->buf);
8d64371b 9728 getpkt (&rs->buf, 0);
82f73884 9729
4082afcc
PA
9730 switch (packet_ok (rs->buf,
9731 &remote_protocol_packets[PACKET_vKill]))
9732 {
9733 case PACKET_OK:
9734 return 0;
9735 case PACKET_ERROR:
9736 return 1;
9737 case PACKET_UNKNOWN:
9738 return -1;
9739 default:
9740 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
9741 }
82f73884
PA
9742}
9743
8020350c
DB
9744/* Send a kill request to the target using the 'k' packet. */
9745
6b8edb51
PA
9746void
9747remote_target::remote_kill_k ()
82f73884 9748{
8020350c
DB
9749 /* Catch errors so the user can quit from gdb even when we
9750 aren't on speaking terms with the remote system. */
a70b8144 9751 try
82f73884 9752 {
82f73884 9753 putpkt ("k");
82f73884 9754 }
230d2906 9755 catch (const gdb_exception_error &ex)
8020350c
DB
9756 {
9757 if (ex.error == TARGET_CLOSE_ERROR)
9758 {
9759 /* If we got an (EOF) error that caused the target
9760 to go away, then we're done, that's what we wanted.
9761 "k" is susceptible to cause a premature EOF, given
9762 that the remote server isn't actually required to
9763 reply to "k", and it can happen that it doesn't
9764 even get to reply ACK to the "k". */
9765 return;
9766 }
82f73884 9767
8020350c
DB
9768 /* Otherwise, something went wrong. We didn't actually kill
9769 the target. Just propagate the exception, and let the
9770 user or higher layers decide what to do. */
eedc3f4f 9771 throw;
8020350c 9772 }
82f73884
PA
9773}
9774
f6ac5f3d
PA
9775void
9776remote_target::mourn_inferior ()
c906108c 9777{
8020350c 9778 struct remote_state *rs = get_remote_state ();
ce5ce7ed 9779
9607784a
PA
9780 /* We're no longer interested in notification events of an inferior
9781 that exited or was killed/detached. */
9782 discard_pending_stop_replies (current_inferior ());
9783
8020350c
DB
9784 /* In 'target remote' mode with one inferior, we close the connection. */
9785 if (!rs->extended && number_of_live_inferiors () <= 1)
9786 {
f6ac5f3d 9787 unpush_target (this);
c906108c 9788
8020350c
DB
9789 /* remote_close takes care of doing most of the clean up. */
9790 generic_mourn_inferior ();
9791 return;
9792 }
c906108c 9793
e24a49d8
PA
9794 /* In case we got here due to an error, but we're going to stay
9795 connected. */
9796 rs->waiting_for_stop_reply = 0;
9797
dc1981d7
PA
9798 /* If the current general thread belonged to the process we just
9799 detached from or has exited, the remote side current general
9800 thread becomes undefined. Considering a case like this:
9801
9802 - We just got here due to a detach.
9803 - The process that we're detaching from happens to immediately
9804 report a global breakpoint being hit in non-stop mode, in the
9805 same thread we had selected before.
9806 - GDB attaches to this process again.
9807 - This event happens to be the next event we handle.
9808
9809 GDB would consider that the current general thread didn't need to
9810 be set on the stub side (with Hg), since for all it knew,
9811 GENERAL_THREAD hadn't changed.
9812
9813 Notice that although in all-stop mode, the remote server always
9814 sets the current thread to the thread reporting the stop event,
9815 that doesn't happen in non-stop mode; in non-stop, the stub *must
9816 not* change the current thread when reporting a breakpoint hit,
9817 due to the decoupling of event reporting and event handling.
9818
9819 To keep things simple, we always invalidate our notion of the
9820 current thread. */
47f8a51d 9821 record_currthread (rs, minus_one_ptid);
dc1981d7 9822
8020350c 9823 /* Call common code to mark the inferior as not running. */
48aa3c27
PA
9824 generic_mourn_inferior ();
9825
d729566a 9826 if (!have_inferiors ())
2d717e4f 9827 {
82f73884
PA
9828 if (!remote_multi_process_p (rs))
9829 {
9830 /* Check whether the target is running now - some remote stubs
9831 automatically restart after kill. */
9832 putpkt ("?");
8d64371b 9833 getpkt (&rs->buf, 0);
82f73884
PA
9834
9835 if (rs->buf[0] == 'S' || rs->buf[0] == 'T')
9836 {
3e43a32a
MS
9837 /* Assume that the target has been restarted. Set
9838 inferior_ptid so that bits of core GDB realizes
9839 there's something here, e.g., so that the user can
9840 say "kill" again. */
82f73884
PA
9841 inferior_ptid = magic_null_ptid;
9842 }
82f73884 9843 }
2d717e4f
DJ
9844 }
9845}
c906108c 9846
57810aa7 9847bool
f6ac5f3d 9848extended_remote_target::supports_disable_randomization ()
03583c20 9849{
4082afcc 9850 return packet_support (PACKET_QDisableRandomization) == PACKET_ENABLE;
03583c20
UW
9851}
9852
6b8edb51
PA
9853void
9854remote_target::extended_remote_disable_randomization (int val)
03583c20
UW
9855{
9856 struct remote_state *rs = get_remote_state ();
9857 char *reply;
9858
8d64371b
TT
9859 xsnprintf (rs->buf.data (), get_remote_packet_size (),
9860 "QDisableRandomization:%x", val);
03583c20 9861 putpkt (rs->buf);
b6bb3468 9862 reply = remote_get_noisy_reply ();
03583c20
UW
9863 if (*reply == '\0')
9864 error (_("Target does not support QDisableRandomization."));
9865 if (strcmp (reply, "OK") != 0)
9866 error (_("Bogus QDisableRandomization reply from target: %s"), reply);
9867}
9868
6b8edb51
PA
9869int
9870remote_target::extended_remote_run (const std::string &args)
2d717e4f
DJ
9871{
9872 struct remote_state *rs = get_remote_state ();
2d717e4f 9873 int len;
94585166 9874 const char *remote_exec_file = get_remote_exec_file ();
c906108c 9875
2d717e4f
DJ
9876 /* If the user has disabled vRun support, or we have detected that
9877 support is not available, do not try it. */
4082afcc 9878 if (packet_support (PACKET_vRun) == PACKET_DISABLE)
2d717e4f 9879 return -1;
424163ea 9880
8d64371b
TT
9881 strcpy (rs->buf.data (), "vRun;");
9882 len = strlen (rs->buf.data ());
c906108c 9883
2d717e4f
DJ
9884 if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ())
9885 error (_("Remote file name too long for run packet"));
8d64371b 9886 len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf.data () + len,
9f1b45b0 9887 strlen (remote_exec_file));
2d717e4f 9888
7c5ded6a 9889 if (!args.empty ())
2d717e4f 9890 {
2d717e4f 9891 int i;
2d717e4f 9892
773a1edc 9893 gdb_argv argv (args.c_str ());
2d717e4f
DJ
9894 for (i = 0; argv[i] != NULL; i++)
9895 {
9896 if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ())
9897 error (_("Argument list too long for run packet"));
9898 rs->buf[len++] = ';';
8d64371b 9899 len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf.data () + len,
9f1b45b0 9900 strlen (argv[i]));
2d717e4f 9901 }
2d717e4f
DJ
9902 }
9903
9904 rs->buf[len++] = '\0';
9905
9906 putpkt (rs->buf);
8d64371b 9907 getpkt (&rs->buf, 0);
2d717e4f 9908
4082afcc 9909 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun]))
2d717e4f 9910 {
4082afcc 9911 case PACKET_OK:
3405876a 9912 /* We have a wait response. All is well. */
2d717e4f 9913 return 0;
4082afcc
PA
9914 case PACKET_UNKNOWN:
9915 return -1;
9916 case PACKET_ERROR:
2d717e4f
DJ
9917 if (remote_exec_file[0] == '\0')
9918 error (_("Running the default executable on the remote target failed; "
9919 "try \"set remote exec-file\"?"));
9920 else
9921 error (_("Running \"%s\" on the remote target failed"),
9922 remote_exec_file);
4082afcc
PA
9923 default:
9924 gdb_assert_not_reached (_("bad switch"));
2d717e4f 9925 }
c906108c
SS
9926}
9927
0a2dde4a
SDJ
9928/* Helper function to send set/unset environment packets. ACTION is
9929 either "set" or "unset". PACKET is either "QEnvironmentHexEncoded"
9930 or "QEnvironmentUnsetVariable". VALUE is the variable to be
9931 sent. */
9932
6b8edb51
PA
9933void
9934remote_target::send_environment_packet (const char *action,
9935 const char *packet,
9936 const char *value)
0a2dde4a 9937{
6b8edb51
PA
9938 remote_state *rs = get_remote_state ();
9939
0a2dde4a
SDJ
9940 /* Convert the environment variable to an hex string, which
9941 is the best format to be transmitted over the wire. */
9942 std::string encoded_value = bin2hex ((const gdb_byte *) value,
9943 strlen (value));
9944
8d64371b 9945 xsnprintf (rs->buf.data (), get_remote_packet_size (),
0a2dde4a
SDJ
9946 "%s:%s", packet, encoded_value.c_str ());
9947
9948 putpkt (rs->buf);
8d64371b
TT
9949 getpkt (&rs->buf, 0);
9950 if (strcmp (rs->buf.data (), "OK") != 0)
0a2dde4a
SDJ
9951 warning (_("Unable to %s environment variable '%s' on remote."),
9952 action, value);
9953}
9954
9955/* Helper function to handle the QEnvironment* packets. */
9956
6b8edb51
PA
9957void
9958remote_target::extended_remote_environment_support ()
0a2dde4a 9959{
6b8edb51
PA
9960 remote_state *rs = get_remote_state ();
9961
0a2dde4a
SDJ
9962 if (packet_support (PACKET_QEnvironmentReset) != PACKET_DISABLE)
9963 {
9964 putpkt ("QEnvironmentReset");
8d64371b
TT
9965 getpkt (&rs->buf, 0);
9966 if (strcmp (rs->buf.data (), "OK") != 0)
0a2dde4a
SDJ
9967 warning (_("Unable to reset environment on remote."));
9968 }
9969
9970 gdb_environ *e = &current_inferior ()->environment;
9971
9972 if (packet_support (PACKET_QEnvironmentHexEncoded) != PACKET_DISABLE)
9973 for (const std::string &el : e->user_set_env ())
6b8edb51 9974 send_environment_packet ("set", "QEnvironmentHexEncoded",
0a2dde4a
SDJ
9975 el.c_str ());
9976
9977 if (packet_support (PACKET_QEnvironmentUnset) != PACKET_DISABLE)
9978 for (const std::string &el : e->user_unset_env ())
6b8edb51 9979 send_environment_packet ("unset", "QEnvironmentUnset", el.c_str ());
0a2dde4a
SDJ
9980}
9981
bc3b087d
SDJ
9982/* Helper function to set the current working directory for the
9983 inferior in the remote target. */
9984
6b8edb51
PA
9985void
9986remote_target::extended_remote_set_inferior_cwd ()
bc3b087d
SDJ
9987{
9988 if (packet_support (PACKET_QSetWorkingDir) != PACKET_DISABLE)
9989 {
9990 const char *inferior_cwd = get_inferior_cwd ();
6b8edb51 9991 remote_state *rs = get_remote_state ();
bc3b087d
SDJ
9992
9993 if (inferior_cwd != NULL)
9994 {
9995 std::string hexpath = bin2hex ((const gdb_byte *) inferior_cwd,
9996 strlen (inferior_cwd));
9997
8d64371b 9998 xsnprintf (rs->buf.data (), get_remote_packet_size (),
bc3b087d
SDJ
9999 "QSetWorkingDir:%s", hexpath.c_str ());
10000 }
10001 else
10002 {
10003 /* An empty inferior_cwd means that the user wants us to
10004 reset the remote server's inferior's cwd. */
8d64371b 10005 xsnprintf (rs->buf.data (), get_remote_packet_size (),
bc3b087d
SDJ
10006 "QSetWorkingDir:");
10007 }
10008
10009 putpkt (rs->buf);
8d64371b 10010 getpkt (&rs->buf, 0);
bc3b087d
SDJ
10011 if (packet_ok (rs->buf,
10012 &remote_protocol_packets[PACKET_QSetWorkingDir])
10013 != PACKET_OK)
10014 error (_("\
10015Remote replied unexpectedly while setting the inferior's working\n\
10016directory: %s"),
8d64371b 10017 rs->buf.data ());
bc3b087d
SDJ
10018
10019 }
10020}
10021
2d717e4f
DJ
10022/* In the extended protocol we want to be able to do things like
10023 "run" and have them basically work as expected. So we need
10024 a special create_inferior function. We support changing the
10025 executable file and the command line arguments, but not the
10026 environment. */
10027
f6ac5f3d
PA
10028void
10029extended_remote_target::create_inferior (const char *exec_file,
10030 const std::string &args,
10031 char **env, int from_tty)
43ff13b4 10032{
3405876a
PA
10033 int run_worked;
10034 char *stop_reply;
10035 struct remote_state *rs = get_remote_state ();
94585166 10036 const char *remote_exec_file = get_remote_exec_file ();
3405876a 10037
43ff13b4 10038 /* If running asynchronously, register the target file descriptor
23860348 10039 with the event loop. */
75c99385 10040 if (target_can_async_p ())
6a3753b3 10041 target_async (1);
43ff13b4 10042
03583c20 10043 /* Disable address space randomization if requested (and supported). */
f6ac5f3d 10044 if (supports_disable_randomization ())
03583c20
UW
10045 extended_remote_disable_randomization (disable_randomization);
10046
aefd8b33
SDJ
10047 /* If startup-with-shell is on, we inform gdbserver to start the
10048 remote inferior using a shell. */
10049 if (packet_support (PACKET_QStartupWithShell) != PACKET_DISABLE)
10050 {
8d64371b 10051 xsnprintf (rs->buf.data (), get_remote_packet_size (),
aefd8b33
SDJ
10052 "QStartupWithShell:%d", startup_with_shell ? 1 : 0);
10053 putpkt (rs->buf);
8d64371b
TT
10054 getpkt (&rs->buf, 0);
10055 if (strcmp (rs->buf.data (), "OK") != 0)
aefd8b33
SDJ
10056 error (_("\
10057Remote replied unexpectedly while setting startup-with-shell: %s"),
8d64371b 10058 rs->buf.data ());
aefd8b33
SDJ
10059 }
10060
6b8edb51 10061 extended_remote_environment_support ();
0a2dde4a 10062
6b8edb51 10063 extended_remote_set_inferior_cwd ();
bc3b087d 10064
43ff13b4 10065 /* Now restart the remote server. */
3405876a
PA
10066 run_worked = extended_remote_run (args) != -1;
10067 if (!run_worked)
2d717e4f
DJ
10068 {
10069 /* vRun was not supported. Fail if we need it to do what the
10070 user requested. */
10071 if (remote_exec_file[0])
10072 error (_("Remote target does not support \"set remote exec-file\""));
7c5ded6a 10073 if (!args.empty ())
65e65158 10074 error (_("Remote target does not support \"set args\" or run ARGS"));
43ff13b4 10075
2d717e4f
DJ
10076 /* Fall back to "R". */
10077 extended_remote_restart ();
10078 }
424163ea 10079
3405876a 10080 /* vRun's success return is a stop reply. */
8d64371b 10081 stop_reply = run_worked ? rs->buf.data () : NULL;
3405876a 10082 add_current_inferior_and_thread (stop_reply);
c0a2216e 10083
2d717e4f
DJ
10084 /* Get updated offsets, if the stub uses qOffsets. */
10085 get_offsets ();
2d717e4f 10086}
c906108c 10087\f
c5aa993b 10088
b775012e
LM
10089/* Given a location's target info BP_TGT and the packet buffer BUF, output
10090 the list of conditions (in agent expression bytecode format), if any, the
10091 target needs to evaluate. The output is placed into the packet buffer
bba74b36 10092 started from BUF and ended at BUF_END. */
b775012e
LM
10093
10094static int
10095remote_add_target_side_condition (struct gdbarch *gdbarch,
bba74b36
YQ
10096 struct bp_target_info *bp_tgt, char *buf,
10097 char *buf_end)
b775012e 10098{
3cde5c42 10099 if (bp_tgt->conditions.empty ())
b775012e
LM
10100 return 0;
10101
10102 buf += strlen (buf);
bba74b36 10103 xsnprintf (buf, buf_end - buf, "%s", ";");
b775012e
LM
10104 buf++;
10105
83621223 10106 /* Send conditions to the target. */
d538e36d 10107 for (agent_expr *aexpr : bp_tgt->conditions)
b775012e 10108 {
bba74b36 10109 xsnprintf (buf, buf_end - buf, "X%x,", aexpr->len);
b775012e 10110 buf += strlen (buf);
3cde5c42 10111 for (int i = 0; i < aexpr->len; ++i)
b775012e
LM
10112 buf = pack_hex_byte (buf, aexpr->buf[i]);
10113 *buf = '\0';
10114 }
b775012e
LM
10115 return 0;
10116}
10117
d3ce09f5
SS
10118static void
10119remote_add_target_side_commands (struct gdbarch *gdbarch,
10120 struct bp_target_info *bp_tgt, char *buf)
10121{
3cde5c42 10122 if (bp_tgt->tcommands.empty ())
d3ce09f5
SS
10123 return;
10124
10125 buf += strlen (buf);
10126
10127 sprintf (buf, ";cmds:%x,", bp_tgt->persist);
10128 buf += strlen (buf);
10129
10130 /* Concatenate all the agent expressions that are commands into the
10131 cmds parameter. */
df97be55 10132 for (agent_expr *aexpr : bp_tgt->tcommands)
d3ce09f5
SS
10133 {
10134 sprintf (buf, "X%x,", aexpr->len);
10135 buf += strlen (buf);
3cde5c42 10136 for (int i = 0; i < aexpr->len; ++i)
d3ce09f5
SS
10137 buf = pack_hex_byte (buf, aexpr->buf[i]);
10138 *buf = '\0';
10139 }
d3ce09f5
SS
10140}
10141
8181d85f
DJ
10142/* Insert a breakpoint. On targets that have software breakpoint
10143 support, we ask the remote target to do the work; on targets
10144 which don't, we insert a traditional memory breakpoint. */
c906108c 10145
f6ac5f3d
PA
10146int
10147remote_target::insert_breakpoint (struct gdbarch *gdbarch,
10148 struct bp_target_info *bp_tgt)
c906108c 10149{
d471ea57
AC
10150 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
10151 If it succeeds, then set the support to PACKET_ENABLE. If it
10152 fails, and the user has explicitly requested the Z support then
23860348 10153 report an error, otherwise, mark it disabled and go on. */
802188a7 10154
4082afcc 10155 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 10156 {
0d5ed153 10157 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 10158 struct remote_state *rs;
bba74b36 10159 char *p, *endbuf;
4fff2411 10160
28439a30
PA
10161 /* Make sure the remote is pointing at the right process, if
10162 necessary. */
10163 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10164 set_general_process ();
10165
4fff2411 10166 rs = get_remote_state ();
8d64371b
TT
10167 p = rs->buf.data ();
10168 endbuf = p + get_remote_packet_size ();
802188a7 10169
96baa820
JM
10170 *(p++) = 'Z';
10171 *(p++) = '0';
10172 *(p++) = ',';
7c0f6dcc 10173 addr = (ULONGEST) remote_address_masked (addr);
8181d85f 10174 p += hexnumstr (p, addr);
579c6ad9 10175 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
802188a7 10176
f6ac5f3d 10177 if (supports_evaluation_of_breakpoint_conditions ())
bba74b36 10178 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 10179
f6ac5f3d 10180 if (can_run_breakpoint_commands ())
d3ce09f5
SS
10181 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10182
6d820c5c 10183 putpkt (rs->buf);
8d64371b 10184 getpkt (&rs->buf, 0);
96baa820 10185
6d820c5c 10186 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
96baa820 10187 {
d471ea57
AC
10188 case PACKET_ERROR:
10189 return -1;
10190 case PACKET_OK:
10191 return 0;
10192 case PACKET_UNKNOWN:
10193 break;
96baa820
JM
10194 }
10195 }
c906108c 10196
0000e5cc
PA
10197 /* If this breakpoint has target-side commands but this stub doesn't
10198 support Z0 packets, throw error. */
3cde5c42 10199 if (!bp_tgt->tcommands.empty ())
0000e5cc
PA
10200 throw_error (NOT_SUPPORTED_ERROR, _("\
10201Target doesn't support breakpoints that have target side commands."));
10202
f6ac5f3d 10203 return memory_insert_breakpoint (this, gdbarch, bp_tgt);
c906108c
SS
10204}
10205
f6ac5f3d
PA
10206int
10207remote_target::remove_breakpoint (struct gdbarch *gdbarch,
10208 struct bp_target_info *bp_tgt,
10209 enum remove_bp_reason reason)
c906108c 10210{
8181d85f 10211 CORE_ADDR addr = bp_tgt->placed_address;
d01949b6 10212 struct remote_state *rs = get_remote_state ();
96baa820 10213
4082afcc 10214 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 10215 {
8d64371b
TT
10216 char *p = rs->buf.data ();
10217 char *endbuf = p + get_remote_packet_size ();
802188a7 10218
28439a30
PA
10219 /* Make sure the remote is pointing at the right process, if
10220 necessary. */
10221 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10222 set_general_process ();
10223
96baa820
JM
10224 *(p++) = 'z';
10225 *(p++) = '0';
10226 *(p++) = ',';
10227
8181d85f
DJ
10228 addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
10229 p += hexnumstr (p, addr);
579c6ad9 10230 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
802188a7 10231
6d820c5c 10232 putpkt (rs->buf);
8d64371b 10233 getpkt (&rs->buf, 0);
96baa820 10234
6d820c5c 10235 return (rs->buf[0] == 'E');
96baa820
JM
10236 }
10237
f6ac5f3d 10238 return memory_remove_breakpoint (this, gdbarch, bp_tgt, reason);
c906108c
SS
10239}
10240
f486487f 10241static enum Z_packet_type
d471ea57
AC
10242watchpoint_to_Z_packet (int type)
10243{
10244 switch (type)
10245 {
10246 case hw_write:
bb858e6a 10247 return Z_PACKET_WRITE_WP;
d471ea57
AC
10248 break;
10249 case hw_read:
bb858e6a 10250 return Z_PACKET_READ_WP;
d471ea57
AC
10251 break;
10252 case hw_access:
bb858e6a 10253 return Z_PACKET_ACCESS_WP;
d471ea57
AC
10254 break;
10255 default:
8e65ff28 10256 internal_error (__FILE__, __LINE__,
e2e0b3e5 10257 _("hw_bp_to_z: bad watchpoint type %d"), type);
d471ea57
AC
10258 }
10259}
10260
f6ac5f3d
PA
10261int
10262remote_target::insert_watchpoint (CORE_ADDR addr, int len,
10263 enum target_hw_bp_type type, struct expression *cond)
96baa820 10264{
d01949b6 10265 struct remote_state *rs = get_remote_state ();
8d64371b 10266 char *endbuf = rs->buf.data () + get_remote_packet_size ();
e514a9d6 10267 char *p;
d471ea57 10268 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
96baa820 10269
4082afcc 10270 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
85d721b8 10271 return 1;
802188a7 10272
28439a30
PA
10273 /* Make sure the remote is pointing at the right process, if
10274 necessary. */
10275 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10276 set_general_process ();
10277
8d64371b
TT
10278 xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "Z%x,", packet);
10279 p = strchr (rs->buf.data (), '\0');
96baa820
JM
10280 addr = remote_address_masked (addr);
10281 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 10282 xsnprintf (p, endbuf - p, ",%x", len);
802188a7 10283
6d820c5c 10284 putpkt (rs->buf);
8d64371b 10285 getpkt (&rs->buf, 0);
96baa820 10286
6d820c5c 10287 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
10288 {
10289 case PACKET_ERROR:
d471ea57 10290 return -1;
85d721b8
PA
10291 case PACKET_UNKNOWN:
10292 return 1;
d471ea57
AC
10293 case PACKET_OK:
10294 return 0;
10295 }
8e65ff28 10296 internal_error (__FILE__, __LINE__,
e2e0b3e5 10297 _("remote_insert_watchpoint: reached end of function"));
96baa820
JM
10298}
10299
57810aa7 10300bool
f6ac5f3d
PA
10301remote_target::watchpoint_addr_within_range (CORE_ADDR addr,
10302 CORE_ADDR start, int length)
283002cf
MR
10303{
10304 CORE_ADDR diff = remote_address_masked (addr - start);
10305
10306 return diff < length;
10307}
10308
d471ea57 10309
f6ac5f3d
PA
10310int
10311remote_target::remove_watchpoint (CORE_ADDR addr, int len,
10312 enum target_hw_bp_type type, struct expression *cond)
96baa820 10313{
d01949b6 10314 struct remote_state *rs = get_remote_state ();
8d64371b 10315 char *endbuf = rs->buf.data () + get_remote_packet_size ();
e514a9d6 10316 char *p;
d471ea57
AC
10317 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
10318
4082afcc 10319 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
5cffb350 10320 return -1;
802188a7 10321
28439a30
PA
10322 /* Make sure the remote is pointing at the right process, if
10323 necessary. */
10324 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10325 set_general_process ();
10326
8d64371b
TT
10327 xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "z%x,", packet);
10328 p = strchr (rs->buf.data (), '\0');
96baa820
JM
10329 addr = remote_address_masked (addr);
10330 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 10331 xsnprintf (p, endbuf - p, ",%x", len);
6d820c5c 10332 putpkt (rs->buf);
8d64371b 10333 getpkt (&rs->buf, 0);
96baa820 10334
6d820c5c 10335 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
10336 {
10337 case PACKET_ERROR:
10338 case PACKET_UNKNOWN:
10339 return -1;
10340 case PACKET_OK:
10341 return 0;
10342 }
8e65ff28 10343 internal_error (__FILE__, __LINE__,
e2e0b3e5 10344 _("remote_remove_watchpoint: reached end of function"));
96baa820
JM
10345}
10346
3c3bea1c 10347
60fcc1c3
TT
10348static int remote_hw_watchpoint_limit = -1;
10349static int remote_hw_watchpoint_length_limit = -1;
10350static int remote_hw_breakpoint_limit = -1;
d471ea57 10351
f6ac5f3d
PA
10352int
10353remote_target::region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
480a3f21
PW
10354{
10355 if (remote_hw_watchpoint_length_limit == 0)
10356 return 0;
10357 else if (remote_hw_watchpoint_length_limit < 0)
10358 return 1;
10359 else if (len <= remote_hw_watchpoint_length_limit)
10360 return 1;
10361 else
10362 return 0;
10363}
10364
f6ac5f3d
PA
10365int
10366remote_target::can_use_hw_breakpoint (enum bptype type, int cnt, int ot)
96baa820 10367{
3c3bea1c
GS
10368 if (type == bp_hardware_breakpoint)
10369 {
10370 if (remote_hw_breakpoint_limit == 0)
10371 return 0;
501eef12
AC
10372 else if (remote_hw_breakpoint_limit < 0)
10373 return 1;
3c3bea1c
GS
10374 else if (cnt <= remote_hw_breakpoint_limit)
10375 return 1;
10376 }
10377 else
10378 {
10379 if (remote_hw_watchpoint_limit == 0)
10380 return 0;
501eef12
AC
10381 else if (remote_hw_watchpoint_limit < 0)
10382 return 1;
3c3bea1c
GS
10383 else if (ot)
10384 return -1;
10385 else if (cnt <= remote_hw_watchpoint_limit)
10386 return 1;
10387 }
10388 return -1;
10389}
10390
f7e6eed5
PA
10391/* The to_stopped_by_sw_breakpoint method of target remote. */
10392
57810aa7 10393bool
f6ac5f3d 10394remote_target::stopped_by_sw_breakpoint ()
f7e6eed5 10395{
799a2abe 10396 struct thread_info *thread = inferior_thread ();
f7e6eed5 10397
799a2abe 10398 return (thread->priv != NULL
7aabaf9d
SM
10399 && (get_remote_thread_info (thread)->stop_reason
10400 == TARGET_STOPPED_BY_SW_BREAKPOINT));
f7e6eed5
PA
10401}
10402
10403/* The to_supports_stopped_by_sw_breakpoint method of target
10404 remote. */
10405
57810aa7 10406bool
f6ac5f3d 10407remote_target::supports_stopped_by_sw_breakpoint ()
f7e6eed5 10408{
f7e6eed5
PA
10409 return (packet_support (PACKET_swbreak_feature) == PACKET_ENABLE);
10410}
10411
10412/* The to_stopped_by_hw_breakpoint method of target remote. */
10413
57810aa7 10414bool
f6ac5f3d 10415remote_target::stopped_by_hw_breakpoint ()
f7e6eed5 10416{
799a2abe 10417 struct thread_info *thread = inferior_thread ();
f7e6eed5 10418
799a2abe 10419 return (thread->priv != NULL
7aabaf9d
SM
10420 && (get_remote_thread_info (thread)->stop_reason
10421 == TARGET_STOPPED_BY_HW_BREAKPOINT));
f7e6eed5
PA
10422}
10423
10424/* The to_supports_stopped_by_hw_breakpoint method of target
10425 remote. */
10426
57810aa7 10427bool
f6ac5f3d 10428remote_target::supports_stopped_by_hw_breakpoint ()
f7e6eed5 10429{
f7e6eed5
PA
10430 return (packet_support (PACKET_hwbreak_feature) == PACKET_ENABLE);
10431}
10432
57810aa7 10433bool
f6ac5f3d 10434remote_target::stopped_by_watchpoint ()
3c3bea1c 10435{
799a2abe 10436 struct thread_info *thread = inferior_thread ();
ee154bee 10437
799a2abe 10438 return (thread->priv != NULL
7aabaf9d
SM
10439 && (get_remote_thread_info (thread)->stop_reason
10440 == TARGET_STOPPED_BY_WATCHPOINT));
3c3bea1c
GS
10441}
10442
57810aa7 10443bool
f6ac5f3d 10444remote_target::stopped_data_address (CORE_ADDR *addr_p)
3c3bea1c 10445{
799a2abe 10446 struct thread_info *thread = inferior_thread ();
a744cf53 10447
799a2abe 10448 if (thread->priv != NULL
7aabaf9d
SM
10449 && (get_remote_thread_info (thread)->stop_reason
10450 == TARGET_STOPPED_BY_WATCHPOINT))
4aa7a7f5 10451 {
7aabaf9d 10452 *addr_p = get_remote_thread_info (thread)->watch_data_address;
57810aa7 10453 return true;
4aa7a7f5
JJ
10454 }
10455
57810aa7 10456 return false;
3c3bea1c
GS
10457}
10458
10459
f6ac5f3d
PA
10460int
10461remote_target::insert_hw_breakpoint (struct gdbarch *gdbarch,
10462 struct bp_target_info *bp_tgt)
3c3bea1c 10463{
0d5ed153 10464 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 10465 struct remote_state *rs;
bba74b36 10466 char *p, *endbuf;
dd61ec5c 10467 char *message;
3c3bea1c 10468
4082afcc 10469 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 10470 return -1;
2bc416ba 10471
28439a30
PA
10472 /* Make sure the remote is pointing at the right process, if
10473 necessary. */
10474 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10475 set_general_process ();
10476
4fff2411 10477 rs = get_remote_state ();
8d64371b
TT
10478 p = rs->buf.data ();
10479 endbuf = p + get_remote_packet_size ();
4fff2411 10480
96baa820
JM
10481 *(p++) = 'Z';
10482 *(p++) = '1';
10483 *(p++) = ',';
802188a7 10484
0d5ed153 10485 addr = remote_address_masked (addr);
96baa820 10486 p += hexnumstr (p, (ULONGEST) addr);
579c6ad9 10487 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
96baa820 10488
f6ac5f3d 10489 if (supports_evaluation_of_breakpoint_conditions ())
bba74b36 10490 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 10491
f6ac5f3d 10492 if (can_run_breakpoint_commands ())
d3ce09f5
SS
10493 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10494
6d820c5c 10495 putpkt (rs->buf);
8d64371b 10496 getpkt (&rs->buf, 0);
96baa820 10497
6d820c5c 10498 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
10499 {
10500 case PACKET_ERROR:
dd61ec5c
MW
10501 if (rs->buf[1] == '.')
10502 {
8d64371b 10503 message = strchr (&rs->buf[2], '.');
dd61ec5c 10504 if (message)
0316657e 10505 error (_("Remote failure reply: %s"), message + 1);
dd61ec5c
MW
10506 }
10507 return -1;
d471ea57
AC
10508 case PACKET_UNKNOWN:
10509 return -1;
10510 case PACKET_OK:
10511 return 0;
10512 }
8e65ff28 10513 internal_error (__FILE__, __LINE__,
e2e0b3e5 10514 _("remote_insert_hw_breakpoint: reached end of function"));
96baa820
JM
10515}
10516
d471ea57 10517
f6ac5f3d
PA
10518int
10519remote_target::remove_hw_breakpoint (struct gdbarch *gdbarch,
10520 struct bp_target_info *bp_tgt)
96baa820 10521{
8181d85f 10522 CORE_ADDR addr;
d01949b6 10523 struct remote_state *rs = get_remote_state ();
8d64371b
TT
10524 char *p = rs->buf.data ();
10525 char *endbuf = p + get_remote_packet_size ();
c8189ed1 10526
4082afcc 10527 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 10528 return -1;
802188a7 10529
28439a30
PA
10530 /* Make sure the remote is pointing at the right process, if
10531 necessary. */
10532 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10533 set_general_process ();
10534
96baa820
JM
10535 *(p++) = 'z';
10536 *(p++) = '1';
10537 *(p++) = ',';
802188a7 10538
8181d85f 10539 addr = remote_address_masked (bp_tgt->placed_address);
96baa820 10540 p += hexnumstr (p, (ULONGEST) addr);
579c6ad9 10541 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
96baa820 10542
6d820c5c 10543 putpkt (rs->buf);
8d64371b 10544 getpkt (&rs->buf, 0);
802188a7 10545
6d820c5c 10546 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
10547 {
10548 case PACKET_ERROR:
10549 case PACKET_UNKNOWN:
10550 return -1;
10551 case PACKET_OK:
10552 return 0;
10553 }
8e65ff28 10554 internal_error (__FILE__, __LINE__,
e2e0b3e5 10555 _("remote_remove_hw_breakpoint: reached end of function"));
96baa820 10556}
96baa820 10557
4a5e7a5b
PA
10558/* Verify memory using the "qCRC:" request. */
10559
f6ac5f3d
PA
10560int
10561remote_target::verify_memory (const gdb_byte *data, CORE_ADDR lma, ULONGEST size)
4a5e7a5b
PA
10562{
10563 struct remote_state *rs = get_remote_state ();
10564 unsigned long host_crc, target_crc;
10565 char *tmp;
10566
936d2992
PA
10567 /* It doesn't make sense to use qCRC if the remote target is
10568 connected but not running. */
10569 if (target_has_execution && packet_support (PACKET_qCRC) != PACKET_DISABLE)
10570 {
10571 enum packet_result result;
28439a30 10572
936d2992
PA
10573 /* Make sure the remote is pointing at the right process. */
10574 set_general_process ();
4a5e7a5b 10575
936d2992 10576 /* FIXME: assumes lma can fit into long. */
8d64371b 10577 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qCRC:%lx,%lx",
936d2992
PA
10578 (long) lma, (long) size);
10579 putpkt (rs->buf);
4a5e7a5b 10580
936d2992
PA
10581 /* Be clever; compute the host_crc before waiting for target
10582 reply. */
10583 host_crc = xcrc32 (data, size, 0xffffffff);
10584
8d64371b 10585 getpkt (&rs->buf, 0);
4a5e7a5b 10586
936d2992
PA
10587 result = packet_ok (rs->buf,
10588 &remote_protocol_packets[PACKET_qCRC]);
10589 if (result == PACKET_ERROR)
10590 return -1;
10591 else if (result == PACKET_OK)
10592 {
10593 for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
10594 target_crc = target_crc * 16 + fromhex (*tmp);
4a5e7a5b 10595
936d2992
PA
10596 return (host_crc == target_crc);
10597 }
10598 }
4a5e7a5b 10599
f6ac5f3d 10600 return simple_verify_memory (this, data, lma, size);
4a5e7a5b
PA
10601}
10602
c906108c
SS
10603/* compare-sections command
10604
10605 With no arguments, compares each loadable section in the exec bfd
10606 with the same memory range on the target, and reports mismatches.
4a5e7a5b 10607 Useful for verifying the image on the target against the exec file. */
e514a9d6 10608
c906108c 10609static void
ac88e2de 10610compare_sections_command (const char *args, int from_tty)
c906108c
SS
10611{
10612 asection *s;
ce359b09 10613 const char *sectname;
c906108c
SS
10614 bfd_size_type size;
10615 bfd_vma lma;
10616 int matched = 0;
10617 int mismatched = 0;
4a5e7a5b 10618 int res;
95cf3b38 10619 int read_only = 0;
c906108c
SS
10620
10621 if (!exec_bfd)
8a3fe4f8 10622 error (_("command cannot be used without an exec file"));
c906108c 10623
95cf3b38
DT
10624 if (args != NULL && strcmp (args, "-r") == 0)
10625 {
10626 read_only = 1;
10627 args = NULL;
10628 }
10629
c5aa993b 10630 for (s = exec_bfd->sections; s; s = s->next)
c906108c
SS
10631 {
10632 if (!(s->flags & SEC_LOAD))
0df8b418 10633 continue; /* Skip non-loadable section. */
c906108c 10634
95cf3b38
DT
10635 if (read_only && (s->flags & SEC_READONLY) == 0)
10636 continue; /* Skip writeable sections */
10637
fd361982 10638 size = bfd_section_size (s);
c906108c 10639 if (size == 0)
0df8b418 10640 continue; /* Skip zero-length section. */
c906108c 10641
fd361982 10642 sectname = bfd_section_name (s);
c906108c 10643 if (args && strcmp (args, sectname) != 0)
0df8b418 10644 continue; /* Not the section selected by user. */
c906108c 10645
0df8b418 10646 matched = 1; /* Do this section. */
c906108c 10647 lma = s->lma;
c906108c 10648
b80406ac
TT
10649 gdb::byte_vector sectdata (size);
10650 bfd_get_section_contents (exec_bfd, s, sectdata.data (), 0, size);
c906108c 10651
b80406ac 10652 res = target_verify_memory (sectdata.data (), lma, size);
4a5e7a5b
PA
10653
10654 if (res == -1)
5af949e3 10655 error (_("target memory fault, section %s, range %s -- %s"), sectname,
f5656ead
TT
10656 paddress (target_gdbarch (), lma),
10657 paddress (target_gdbarch (), lma + size));
c906108c 10658
5af949e3 10659 printf_filtered ("Section %s, range %s -- %s: ", sectname,
f5656ead
TT
10660 paddress (target_gdbarch (), lma),
10661 paddress (target_gdbarch (), lma + size));
4a5e7a5b 10662 if (res)
c906108c
SS
10663 printf_filtered ("matched.\n");
10664 else
c5aa993b
JM
10665 {
10666 printf_filtered ("MIS-MATCHED!\n");
10667 mismatched++;
10668 }
c906108c
SS
10669 }
10670 if (mismatched > 0)
936d2992 10671 warning (_("One or more sections of the target image does not match\n\
8a3fe4f8 10672the loaded file\n"));
c906108c 10673 if (args && !matched)
a3f17187 10674 printf_filtered (_("No loaded section named '%s'.\n"), args);
c906108c
SS
10675}
10676
0e7f50da
UW
10677/* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
10678 into remote target. The number of bytes written to the remote
10679 target is returned, or -1 for error. */
10680
6b8edb51
PA
10681target_xfer_status
10682remote_target::remote_write_qxfer (const char *object_name,
10683 const char *annex, const gdb_byte *writebuf,
10684 ULONGEST offset, LONGEST len,
10685 ULONGEST *xfered_len,
10686 struct packet_config *packet)
0e7f50da
UW
10687{
10688 int i, buf_len;
10689 ULONGEST n;
0e7f50da
UW
10690 struct remote_state *rs = get_remote_state ();
10691 int max_size = get_memory_write_packet_size ();
10692
7cc244de 10693 if (packet_config_support (packet) == PACKET_DISABLE)
2ed4b548 10694 return TARGET_XFER_E_IO;
0e7f50da
UW
10695
10696 /* Insert header. */
8d64371b 10697 i = snprintf (rs->buf.data (), max_size,
0e7f50da
UW
10698 "qXfer:%s:write:%s:%s:",
10699 object_name, annex ? annex : "",
10700 phex_nz (offset, sizeof offset));
10701 max_size -= (i + 1);
10702
10703 /* Escape as much data as fits into rs->buf. */
10704 buf_len = remote_escape_output
8d64371b 10705 (writebuf, len, 1, (gdb_byte *) rs->buf.data () + i, &max_size, max_size);
0e7f50da 10706
8d64371b
TT
10707 if (putpkt_binary (rs->buf.data (), i + buf_len) < 0
10708 || getpkt_sane (&rs->buf, 0) < 0
0e7f50da 10709 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 10710 return TARGET_XFER_E_IO;
0e7f50da 10711
8d64371b 10712 unpack_varlen_hex (rs->buf.data (), &n);
9b409511
YQ
10713
10714 *xfered_len = n;
92ffd475 10715 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
0e7f50da
UW
10716}
10717
0876f84a
DJ
10718/* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
10719 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
10720 number of bytes read is returned, or 0 for EOF, or -1 for error.
10721 The number of bytes read may be less than LEN without indicating an
10722 EOF. PACKET is checked and updated to indicate whether the remote
10723 target supports this object. */
10724
6b8edb51
PA
10725target_xfer_status
10726remote_target::remote_read_qxfer (const char *object_name,
10727 const char *annex,
10728 gdb_byte *readbuf, ULONGEST offset,
10729 LONGEST len,
10730 ULONGEST *xfered_len,
10731 struct packet_config *packet)
0876f84a 10732{
0876f84a 10733 struct remote_state *rs = get_remote_state ();
0876f84a
DJ
10734 LONGEST i, n, packet_len;
10735
7cc244de 10736 if (packet_config_support (packet) == PACKET_DISABLE)
2ed4b548 10737 return TARGET_XFER_E_IO;
0876f84a
DJ
10738
10739 /* Check whether we've cached an end-of-object packet that matches
10740 this request. */
8e88304f 10741 if (rs->finished_object)
0876f84a 10742 {
8e88304f
TT
10743 if (strcmp (object_name, rs->finished_object) == 0
10744 && strcmp (annex ? annex : "", rs->finished_annex) == 0
10745 && offset == rs->finished_offset)
9b409511
YQ
10746 return TARGET_XFER_EOF;
10747
0876f84a
DJ
10748
10749 /* Otherwise, we're now reading something different. Discard
10750 the cache. */
8e88304f
TT
10751 xfree (rs->finished_object);
10752 xfree (rs->finished_annex);
10753 rs->finished_object = NULL;
10754 rs->finished_annex = NULL;
0876f84a
DJ
10755 }
10756
10757 /* Request only enough to fit in a single packet. The actual data
10758 may not, since we don't know how much of it will need to be escaped;
10759 the target is free to respond with slightly less data. We subtract
10760 five to account for the response type and the protocol frame. */
768adc05 10761 n = std::min<LONGEST> (get_remote_packet_size () - 5, len);
8d64371b
TT
10762 snprintf (rs->buf.data (), get_remote_packet_size () - 4,
10763 "qXfer:%s:read:%s:%s,%s",
0876f84a
DJ
10764 object_name, annex ? annex : "",
10765 phex_nz (offset, sizeof offset),
10766 phex_nz (n, sizeof n));
10767 i = putpkt (rs->buf);
10768 if (i < 0)
2ed4b548 10769 return TARGET_XFER_E_IO;
0876f84a
DJ
10770
10771 rs->buf[0] = '\0';
8d64371b 10772 packet_len = getpkt_sane (&rs->buf, 0);
0876f84a 10773 if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 10774 return TARGET_XFER_E_IO;
0876f84a
DJ
10775
10776 if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
8d64371b 10777 error (_("Unknown remote qXfer reply: %s"), rs->buf.data ());
0876f84a
DJ
10778
10779 /* 'm' means there is (or at least might be) more data after this
10780 batch. That does not make sense unless there's at least one byte
10781 of data in this reply. */
10782 if (rs->buf[0] == 'm' && packet_len == 1)
10783 error (_("Remote qXfer reply contained no data."));
10784
10785 /* Got some data. */
8d64371b 10786 i = remote_unescape_input ((gdb_byte *) rs->buf.data () + 1,
bc20a4af 10787 packet_len - 1, readbuf, n);
0876f84a
DJ
10788
10789 /* 'l' is an EOF marker, possibly including a final block of data,
0e7f50da
UW
10790 or possibly empty. If we have the final block of a non-empty
10791 object, record this fact to bypass a subsequent partial read. */
10792 if (rs->buf[0] == 'l' && offset + i > 0)
0876f84a 10793 {
8e88304f
TT
10794 rs->finished_object = xstrdup (object_name);
10795 rs->finished_annex = xstrdup (annex ? annex : "");
10796 rs->finished_offset = offset + i;
0876f84a
DJ
10797 }
10798
9b409511
YQ
10799 if (i == 0)
10800 return TARGET_XFER_EOF;
10801 else
10802 {
10803 *xfered_len = i;
10804 return TARGET_XFER_OK;
10805 }
0876f84a
DJ
10806}
10807
f6ac5f3d
PA
10808enum target_xfer_status
10809remote_target::xfer_partial (enum target_object object,
10810 const char *annex, gdb_byte *readbuf,
10811 const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
10812 ULONGEST *xfered_len)
c906108c 10813{
82f73884 10814 struct remote_state *rs;
c906108c 10815 int i;
6d820c5c 10816 char *p2;
1e3ff5ad 10817 char query_type;
124e13d9 10818 int unit_size = gdbarch_addressable_memory_unit_size (target_gdbarch ());
c906108c 10819
e6e4e701 10820 set_remote_traceframe ();
82f73884
PA
10821 set_general_thread (inferior_ptid);
10822
10823 rs = get_remote_state ();
10824
b2182ed2 10825 /* Handle memory using the standard memory routines. */
21e3b9b9
DJ
10826 if (object == TARGET_OBJECT_MEMORY)
10827 {
2d717e4f
DJ
10828 /* If the remote target is connected but not running, we should
10829 pass this request down to a lower stratum (e.g. the executable
10830 file). */
10831 if (!target_has_execution)
9b409511 10832 return TARGET_XFER_EOF;
2d717e4f 10833
21e3b9b9 10834 if (writebuf != NULL)
124e13d9
SM
10835 return remote_write_bytes (offset, writebuf, len, unit_size,
10836 xfered_len);
21e3b9b9 10837 else
6b8edb51 10838 return remote_read_bytes (offset, readbuf, len, unit_size,
124e13d9 10839 xfered_len);
21e3b9b9
DJ
10840 }
10841
4aa995e1
PA
10842 /* Handle extra signal info using qxfer packets. */
10843 if (object == TARGET_OBJECT_SIGNAL_INFO)
10844 {
10845 if (readbuf)
f6ac5f3d 10846 return remote_read_qxfer ("siginfo", annex, readbuf, offset, len,
9b409511 10847 xfered_len, &remote_protocol_packets
4aa995e1
PA
10848 [PACKET_qXfer_siginfo_read]);
10849 else
f6ac5f3d 10850 return remote_write_qxfer ("siginfo", annex,
9b409511 10851 writebuf, offset, len, xfered_len,
4aa995e1
PA
10852 &remote_protocol_packets
10853 [PACKET_qXfer_siginfo_write]);
10854 }
10855
0fb4aa4b
PA
10856 if (object == TARGET_OBJECT_STATIC_TRACE_DATA)
10857 {
10858 if (readbuf)
f6ac5f3d 10859 return remote_read_qxfer ("statictrace", annex,
9b409511 10860 readbuf, offset, len, xfered_len,
0fb4aa4b
PA
10861 &remote_protocol_packets
10862 [PACKET_qXfer_statictrace_read]);
10863 else
2ed4b548 10864 return TARGET_XFER_E_IO;
0fb4aa4b
PA
10865 }
10866
a76d924d
DJ
10867 /* Only handle flash writes. */
10868 if (writebuf != NULL)
10869 {
a76d924d
DJ
10870 switch (object)
10871 {
10872 case TARGET_OBJECT_FLASH:
6b8edb51 10873 return remote_flash_write (offset, len, xfered_len,
9b409511 10874 writebuf);
a76d924d
DJ
10875
10876 default:
2ed4b548 10877 return TARGET_XFER_E_IO;
a76d924d
DJ
10878 }
10879 }
4b8a223f 10880
1e3ff5ad
AC
10881 /* Map pre-existing objects onto letters. DO NOT do this for new
10882 objects!!! Instead specify new query packets. */
10883 switch (object)
c906108c 10884 {
1e3ff5ad
AC
10885 case TARGET_OBJECT_AVR:
10886 query_type = 'R';
10887 break;
802188a7
RM
10888
10889 case TARGET_OBJECT_AUXV:
0876f84a 10890 gdb_assert (annex == NULL);
f6ac5f3d 10891 return remote_read_qxfer ("auxv", annex, readbuf, offset, len,
9b409511 10892 xfered_len,
0876f84a 10893 &remote_protocol_packets[PACKET_qXfer_auxv]);
802188a7 10894
23181151
DJ
10895 case TARGET_OBJECT_AVAILABLE_FEATURES:
10896 return remote_read_qxfer
f6ac5f3d 10897 ("features", annex, readbuf, offset, len, xfered_len,
23181151
DJ
10898 &remote_protocol_packets[PACKET_qXfer_features]);
10899
cfa9d6d9
DJ
10900 case TARGET_OBJECT_LIBRARIES:
10901 return remote_read_qxfer
f6ac5f3d 10902 ("libraries", annex, readbuf, offset, len, xfered_len,
cfa9d6d9
DJ
10903 &remote_protocol_packets[PACKET_qXfer_libraries]);
10904
2268b414
JK
10905 case TARGET_OBJECT_LIBRARIES_SVR4:
10906 return remote_read_qxfer
f6ac5f3d 10907 ("libraries-svr4", annex, readbuf, offset, len, xfered_len,
2268b414
JK
10908 &remote_protocol_packets[PACKET_qXfer_libraries_svr4]);
10909
fd79ecee
DJ
10910 case TARGET_OBJECT_MEMORY_MAP:
10911 gdb_assert (annex == NULL);
f6ac5f3d 10912 return remote_read_qxfer ("memory-map", annex, readbuf, offset, len,
9b409511 10913 xfered_len,
fd79ecee
DJ
10914 &remote_protocol_packets[PACKET_qXfer_memory_map]);
10915
07e059b5
VP
10916 case TARGET_OBJECT_OSDATA:
10917 /* Should only get here if we're connected. */
5d93a237 10918 gdb_assert (rs->remote_desc);
07e059b5 10919 return remote_read_qxfer
f6ac5f3d 10920 ("osdata", annex, readbuf, offset, len, xfered_len,
07e059b5
VP
10921 &remote_protocol_packets[PACKET_qXfer_osdata]);
10922
dc146f7c
VP
10923 case TARGET_OBJECT_THREADS:
10924 gdb_assert (annex == NULL);
f6ac5f3d 10925 return remote_read_qxfer ("threads", annex, readbuf, offset, len,
9b409511 10926 xfered_len,
dc146f7c
VP
10927 &remote_protocol_packets[PACKET_qXfer_threads]);
10928
b3b9301e
PA
10929 case TARGET_OBJECT_TRACEFRAME_INFO:
10930 gdb_assert (annex == NULL);
10931 return remote_read_qxfer
f6ac5f3d 10932 ("traceframe-info", annex, readbuf, offset, len, xfered_len,
b3b9301e 10933 &remote_protocol_packets[PACKET_qXfer_traceframe_info]);
78d85199
YQ
10934
10935 case TARGET_OBJECT_FDPIC:
f6ac5f3d 10936 return remote_read_qxfer ("fdpic", annex, readbuf, offset, len,
9b409511 10937 xfered_len,
78d85199 10938 &remote_protocol_packets[PACKET_qXfer_fdpic]);
169081d0
TG
10939
10940 case TARGET_OBJECT_OPENVMS_UIB:
f6ac5f3d 10941 return remote_read_qxfer ("uib", annex, readbuf, offset, len,
9b409511 10942 xfered_len,
169081d0
TG
10943 &remote_protocol_packets[PACKET_qXfer_uib]);
10944
9accd112 10945 case TARGET_OBJECT_BTRACE:
f6ac5f3d 10946 return remote_read_qxfer ("btrace", annex, readbuf, offset, len,
9b409511 10947 xfered_len,
9accd112
MM
10948 &remote_protocol_packets[PACKET_qXfer_btrace]);
10949
f4abbc16 10950 case TARGET_OBJECT_BTRACE_CONF:
f6ac5f3d 10951 return remote_read_qxfer ("btrace-conf", annex, readbuf, offset,
f4abbc16
MM
10952 len, xfered_len,
10953 &remote_protocol_packets[PACKET_qXfer_btrace_conf]);
10954
c78fa86a 10955 case TARGET_OBJECT_EXEC_FILE:
f6ac5f3d 10956 return remote_read_qxfer ("exec-file", annex, readbuf, offset,
c78fa86a
GB
10957 len, xfered_len,
10958 &remote_protocol_packets[PACKET_qXfer_exec_file]);
10959
1e3ff5ad 10960 default:
2ed4b548 10961 return TARGET_XFER_E_IO;
c906108c
SS
10962 }
10963
0df8b418 10964 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
24b06219 10965 large enough let the caller deal with it. */
ea9c271d 10966 if (len < get_remote_packet_size ())
2ed4b548 10967 return TARGET_XFER_E_IO;
ea9c271d 10968 len = get_remote_packet_size ();
1e3ff5ad 10969
23860348 10970 /* Except for querying the minimum buffer size, target must be open. */
5d93a237 10971 if (!rs->remote_desc)
8a3fe4f8 10972 error (_("remote query is only available after target open"));
c906108c 10973
1e3ff5ad 10974 gdb_assert (annex != NULL);
4b8a223f 10975 gdb_assert (readbuf != NULL);
c906108c 10976
8d64371b 10977 p2 = rs->buf.data ();
c906108c
SS
10978 *p2++ = 'q';
10979 *p2++ = query_type;
10980
23860348
MS
10981 /* We used one buffer char for the remote protocol q command and
10982 another for the query type. As the remote protocol encapsulation
10983 uses 4 chars plus one extra in case we are debugging
10984 (remote_debug), we have PBUFZIZ - 7 left to pack the query
10985 string. */
c906108c 10986 i = 0;
ea9c271d 10987 while (annex[i] && (i < (get_remote_packet_size () - 8)))
c906108c 10988 {
1e3ff5ad
AC
10989 /* Bad caller may have sent forbidden characters. */
10990 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
10991 *p2++ = annex[i];
c906108c
SS
10992 i++;
10993 }
1e3ff5ad
AC
10994 *p2 = '\0';
10995 gdb_assert (annex[i] == '\0');
c906108c 10996
6d820c5c 10997 i = putpkt (rs->buf);
c5aa993b 10998 if (i < 0)
2ed4b548 10999 return TARGET_XFER_E_IO;
c906108c 11000
8d64371b
TT
11001 getpkt (&rs->buf, 0);
11002 strcpy ((char *) readbuf, rs->buf.data ());
c906108c 11003
9b409511 11004 *xfered_len = strlen ((char *) readbuf);
92ffd475 11005 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
c906108c
SS
11006}
11007
09c98b44
DB
11008/* Implementation of to_get_memory_xfer_limit. */
11009
f6ac5f3d
PA
11010ULONGEST
11011remote_target::get_memory_xfer_limit ()
09c98b44
DB
11012{
11013 return get_memory_write_packet_size ();
11014}
11015
f6ac5f3d
PA
11016int
11017remote_target::search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
11018 const gdb_byte *pattern, ULONGEST pattern_len,
11019 CORE_ADDR *found_addrp)
08388c79 11020{
f5656ead 11021 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
08388c79
DE
11022 struct remote_state *rs = get_remote_state ();
11023 int max_size = get_memory_write_packet_size ();
11024 struct packet_config *packet =
11025 &remote_protocol_packets[PACKET_qSearch_memory];
0df8b418
MS
11026 /* Number of packet bytes used to encode the pattern;
11027 this could be more than PATTERN_LEN due to escape characters. */
08388c79 11028 int escaped_pattern_len;
0df8b418 11029 /* Amount of pattern that was encodable in the packet. */
08388c79
DE
11030 int used_pattern_len;
11031 int i;
11032 int found;
11033 ULONGEST found_addr;
11034
7cc244de
PA
11035 /* Don't go to the target if we don't have to. This is done before
11036 checking packet_config_support to avoid the possibility that a
11037 success for this edge case means the facility works in
11038 general. */
08388c79
DE
11039 if (pattern_len > search_space_len)
11040 return 0;
11041 if (pattern_len == 0)
11042 {
11043 *found_addrp = start_addr;
11044 return 1;
11045 }
11046
11047 /* If we already know the packet isn't supported, fall back to the simple
11048 way of searching memory. */
11049
4082afcc 11050 if (packet_config_support (packet) == PACKET_DISABLE)
08388c79
DE
11051 {
11052 /* Target doesn't provided special support, fall back and use the
11053 standard support (copy memory and do the search here). */
f6ac5f3d 11054 return simple_search_memory (this, start_addr, search_space_len,
08388c79
DE
11055 pattern, pattern_len, found_addrp);
11056 }
11057
28439a30
PA
11058 /* Make sure the remote is pointing at the right process. */
11059 set_general_process ();
11060
08388c79 11061 /* Insert header. */
8d64371b 11062 i = snprintf (rs->buf.data (), max_size,
08388c79 11063 "qSearch:memory:%s;%s;",
5af949e3 11064 phex_nz (start_addr, addr_size),
08388c79
DE
11065 phex_nz (search_space_len, sizeof (search_space_len)));
11066 max_size -= (i + 1);
11067
11068 /* Escape as much data as fits into rs->buf. */
11069 escaped_pattern_len =
8d64371b
TT
11070 remote_escape_output (pattern, pattern_len, 1,
11071 (gdb_byte *) rs->buf.data () + i,
08388c79
DE
11072 &used_pattern_len, max_size);
11073
11074 /* Bail if the pattern is too large. */
11075 if (used_pattern_len != pattern_len)
9b20d036 11076 error (_("Pattern is too large to transmit to remote target."));
08388c79 11077
8d64371b
TT
11078 if (putpkt_binary (rs->buf.data (), i + escaped_pattern_len) < 0
11079 || getpkt_sane (&rs->buf, 0) < 0
08388c79
DE
11080 || packet_ok (rs->buf, packet) != PACKET_OK)
11081 {
11082 /* The request may not have worked because the command is not
11083 supported. If so, fall back to the simple way. */
7cc244de 11084 if (packet_config_support (packet) == PACKET_DISABLE)
08388c79 11085 {
f6ac5f3d 11086 return simple_search_memory (this, start_addr, search_space_len,
08388c79
DE
11087 pattern, pattern_len, found_addrp);
11088 }
11089 return -1;
11090 }
11091
11092 if (rs->buf[0] == '0')
11093 found = 0;
11094 else if (rs->buf[0] == '1')
11095 {
11096 found = 1;
11097 if (rs->buf[1] != ',')
8d64371b
TT
11098 error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ());
11099 unpack_varlen_hex (&rs->buf[2], &found_addr);
08388c79
DE
11100 *found_addrp = found_addr;
11101 }
11102 else
8d64371b 11103 error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ());
08388c79
DE
11104
11105 return found;
11106}
11107
f6ac5f3d
PA
11108void
11109remote_target::rcmd (const char *command, struct ui_file *outbuf)
96baa820 11110{
d01949b6 11111 struct remote_state *rs = get_remote_state ();
8d64371b 11112 char *p = rs->buf.data ();
96baa820 11113
5d93a237 11114 if (!rs->remote_desc)
8a3fe4f8 11115 error (_("remote rcmd is only available after target open"));
96baa820 11116
23860348 11117 /* Send a NULL command across as an empty command. */
7be570e7
JM
11118 if (command == NULL)
11119 command = "";
11120
23860348 11121 /* The query prefix. */
8d64371b
TT
11122 strcpy (rs->buf.data (), "qRcmd,");
11123 p = strchr (rs->buf.data (), '\0');
96baa820 11124
8d64371b 11125 if ((strlen (rs->buf.data ()) + strlen (command) * 2 + 8/*misc*/)
3e43a32a 11126 > get_remote_packet_size ())
8a3fe4f8 11127 error (_("\"monitor\" command ``%s'' is too long."), command);
96baa820 11128
23860348 11129 /* Encode the actual command. */
a30bf1f1 11130 bin2hex ((const gdb_byte *) command, p, strlen (command));
96baa820 11131
6d820c5c 11132 if (putpkt (rs->buf) < 0)
8a3fe4f8 11133 error (_("Communication problem with target."));
96baa820
JM
11134
11135 /* get/display the response */
11136 while (1)
11137 {
2e9f7625
DJ
11138 char *buf;
11139
00bf0b85 11140 /* XXX - see also remote_get_noisy_reply(). */
5b37825d 11141 QUIT; /* Allow user to bail out with ^C. */
2e9f7625 11142 rs->buf[0] = '\0';
8d64371b 11143 if (getpkt_sane (&rs->buf, 0) == -1)
5b37825d
PW
11144 {
11145 /* Timeout. Continue to (try to) read responses.
11146 This is better than stopping with an error, assuming the stub
11147 is still executing the (long) monitor command.
11148 If needed, the user can interrupt gdb using C-c, obtaining
11149 an effect similar to stop on timeout. */
11150 continue;
11151 }
8d64371b 11152 buf = rs->buf.data ();
96baa820 11153 if (buf[0] == '\0')
8a3fe4f8 11154 error (_("Target does not support this command."));
96baa820
JM
11155 if (buf[0] == 'O' && buf[1] != 'K')
11156 {
23860348 11157 remote_console_output (buf + 1); /* 'O' message from stub. */
96baa820
JM
11158 continue;
11159 }
11160 if (strcmp (buf, "OK") == 0)
11161 break;
7be570e7
JM
11162 if (strlen (buf) == 3 && buf[0] == 'E'
11163 && isdigit (buf[1]) && isdigit (buf[2]))
11164 {
8a3fe4f8 11165 error (_("Protocol error with Rcmd"));
7be570e7 11166 }
96baa820
JM
11167 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
11168 {
11169 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
a744cf53 11170
96baa820
JM
11171 fputc_unfiltered (c, outbuf);
11172 }
11173 break;
11174 }
11175}
11176
f6ac5f3d
PA
11177std::vector<mem_region>
11178remote_target::memory_map ()
fd79ecee 11179{
a664f67e 11180 std::vector<mem_region> result;
9018be22 11181 gdb::optional<gdb::char_vector> text
8b88a78e 11182 = target_read_stralloc (current_top_target (), TARGET_OBJECT_MEMORY_MAP, NULL);
fd79ecee
DJ
11183
11184 if (text)
9018be22 11185 result = parse_memory_map (text->data ());
fd79ecee
DJ
11186
11187 return result;
11188}
11189
c906108c 11190static void
ac88e2de 11191packet_command (const char *args, int from_tty)
c906108c 11192{
6b8edb51 11193 remote_target *remote = get_current_remote_target ();
c906108c 11194
6b8edb51 11195 if (remote == nullptr)
8a3fe4f8 11196 error (_("command can only be used with remote target"));
c906108c 11197
6b8edb51
PA
11198 remote->packet_command (args, from_tty);
11199}
11200
11201void
11202remote_target::packet_command (const char *args, int from_tty)
11203{
c5aa993b 11204 if (!args)
8a3fe4f8 11205 error (_("remote-packet command requires packet text as argument"));
c906108c
SS
11206
11207 puts_filtered ("sending: ");
11208 print_packet (args);
11209 puts_filtered ("\n");
11210 putpkt (args);
11211
6b8edb51
PA
11212 remote_state *rs = get_remote_state ();
11213
8d64371b 11214 getpkt (&rs->buf, 0);
c906108c 11215 puts_filtered ("received: ");
8d64371b 11216 print_packet (rs->buf.data ());
c906108c
SS
11217 puts_filtered ("\n");
11218}
11219
11220#if 0
23860348 11221/* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
c906108c 11222
a14ed312 11223static void display_thread_info (struct gdb_ext_thread_info *info);
c906108c 11224
a14ed312 11225static void threadset_test_cmd (char *cmd, int tty);
c906108c 11226
a14ed312 11227static void threadalive_test (char *cmd, int tty);
c906108c 11228
a14ed312 11229static void threadlist_test_cmd (char *cmd, int tty);
c906108c 11230
23860348 11231int get_and_display_threadinfo (threadref *ref);
c906108c 11232
a14ed312 11233static void threadinfo_test_cmd (char *cmd, int tty);
c906108c 11234
23860348 11235static int thread_display_step (threadref *ref, void *context);
c906108c 11236
a14ed312 11237static void threadlist_update_test_cmd (char *cmd, int tty);
c906108c 11238
a14ed312 11239static void init_remote_threadtests (void);
c906108c 11240
23860348 11241#define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
c906108c
SS
11242
11243static void
0b39b52e 11244threadset_test_cmd (const char *cmd, int tty)
c906108c
SS
11245{
11246 int sample_thread = SAMPLE_THREAD;
11247
a3f17187 11248 printf_filtered (_("Remote threadset test\n"));
79d7f229 11249 set_general_thread (sample_thread);
c906108c
SS
11250}
11251
11252
11253static void
0b39b52e 11254threadalive_test (const char *cmd, int tty)
c906108c
SS
11255{
11256 int sample_thread = SAMPLE_THREAD;
e99b03dc 11257 int pid = inferior_ptid.pid ();
fd79271b 11258 ptid_t ptid = ptid_t (pid, sample_thread, 0);
c906108c 11259
79d7f229 11260 if (remote_thread_alive (ptid))
c906108c
SS
11261 printf_filtered ("PASS: Thread alive test\n");
11262 else
11263 printf_filtered ("FAIL: Thread alive test\n");
11264}
11265
23860348 11266void output_threadid (char *title, threadref *ref);
c906108c
SS
11267
11268void
fba45db2 11269output_threadid (char *title, threadref *ref)
c906108c
SS
11270{
11271 char hexid[20];
11272
405feb71 11273 pack_threadid (&hexid[0], ref); /* Convert thread id into hex. */
c906108c
SS
11274 hexid[16] = 0;
11275 printf_filtered ("%s %s\n", title, (&hexid[0]));
11276}
11277
11278static void
0b39b52e 11279threadlist_test_cmd (const char *cmd, int tty)
c906108c
SS
11280{
11281 int startflag = 1;
11282 threadref nextthread;
11283 int done, result_count;
11284 threadref threadlist[3];
11285
11286 printf_filtered ("Remote Threadlist test\n");
11287 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
11288 &result_count, &threadlist[0]))
11289 printf_filtered ("FAIL: threadlist test\n");
11290 else
11291 {
11292 threadref *scan = threadlist;
11293 threadref *limit = scan + result_count;
11294
11295 while (scan < limit)
11296 output_threadid (" thread ", scan++);
11297 }
11298}
11299
11300void
fba45db2 11301display_thread_info (struct gdb_ext_thread_info *info)
c906108c
SS
11302{
11303 output_threadid ("Threadid: ", &info->threadid);
11304 printf_filtered ("Name: %s\n ", info->shortname);
11305 printf_filtered ("State: %s\n", info->display);
11306 printf_filtered ("other: %s\n\n", info->more_display);
11307}
11308
11309int
fba45db2 11310get_and_display_threadinfo (threadref *ref)
c906108c
SS
11311{
11312 int result;
11313 int set;
11314 struct gdb_ext_thread_info threadinfo;
11315
11316 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
11317 | TAG_MOREDISPLAY | TAG_DISPLAY;
11318 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
11319 display_thread_info (&threadinfo);
11320 return result;
11321}
11322
11323static void
0b39b52e 11324threadinfo_test_cmd (const char *cmd, int tty)
c906108c
SS
11325{
11326 int athread = SAMPLE_THREAD;
11327 threadref thread;
11328 int set;
11329
11330 int_to_threadref (&thread, athread);
11331 printf_filtered ("Remote Threadinfo test\n");
11332 if (!get_and_display_threadinfo (&thread))
11333 printf_filtered ("FAIL cannot get thread info\n");
11334}
11335
11336static int
fba45db2 11337thread_display_step (threadref *ref, void *context)
c906108c
SS
11338{
11339 /* output_threadid(" threadstep ",ref); *//* simple test */
11340 return get_and_display_threadinfo (ref);
11341}
11342
11343static void
0b39b52e 11344threadlist_update_test_cmd (const char *cmd, int tty)
c906108c
SS
11345{
11346 printf_filtered ("Remote Threadlist update test\n");
11347 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
11348}
11349
11350static void
11351init_remote_threadtests (void)
11352{
3e43a32a
MS
11353 add_com ("tlist", class_obscure, threadlist_test_cmd,
11354 _("Fetch and print the remote list of "
590042fc 11355 "thread identifiers, one pkt only."));
c906108c 11356 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
590042fc 11357 _("Fetch and display info about one thread."));
c906108c 11358 add_com ("tset", class_obscure, threadset_test_cmd,
590042fc 11359 _("Test setting to a different thread."));
c906108c 11360 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
590042fc 11361 _("Iterate through updating all remote thread info."));
c906108c 11362 add_com ("talive", class_obscure, threadalive_test,
590042fc 11363 _("Remote thread alive test."));
c906108c
SS
11364}
11365
11366#endif /* 0 */
11367
a068643d 11368/* Convert a thread ID to a string. */
f3fb8c85 11369
a068643d 11370std::string
f6ac5f3d 11371remote_target::pid_to_str (ptid_t ptid)
f3fb8c85 11372{
82f73884 11373 struct remote_state *rs = get_remote_state ();
f3fb8c85 11374
d7e15655 11375 if (ptid == null_ptid)
7cee1e54 11376 return normal_pid_to_str (ptid);
0e998d96 11377 else if (ptid.is_pid ())
ecd0ada5
PA
11378 {
11379 /* Printing an inferior target id. */
11380
11381 /* When multi-process extensions are off, there's no way in the
11382 remote protocol to know the remote process id, if there's any
11383 at all. There's one exception --- when we're connected with
11384 target extended-remote, and we manually attached to a process
11385 with "attach PID". We don't record anywhere a flag that
11386 allows us to distinguish that case from the case of
11387 connecting with extended-remote and the stub already being
11388 attached to a process, and reporting yes to qAttached, hence
11389 no smart special casing here. */
11390 if (!remote_multi_process_p (rs))
a068643d 11391 return "Remote target";
ecd0ada5
PA
11392
11393 return normal_pid_to_str (ptid);
82f73884 11394 }
ecd0ada5 11395 else
79d7f229 11396 {
d7e15655 11397 if (magic_null_ptid == ptid)
a068643d 11398 return "Thread <main>";
8020350c 11399 else if (remote_multi_process_p (rs))
e38504b3 11400 if (ptid.lwp () == 0)
de0d863e
DB
11401 return normal_pid_to_str (ptid);
11402 else
a068643d
TT
11403 return string_printf ("Thread %d.%ld",
11404 ptid.pid (), ptid.lwp ());
ecd0ada5 11405 else
a068643d 11406 return string_printf ("Thread %ld", ptid.lwp ());
79d7f229 11407 }
f3fb8c85
MS
11408}
11409
38691318
KB
11410/* Get the address of the thread local variable in OBJFILE which is
11411 stored at OFFSET within the thread local storage for thread PTID. */
11412
f6ac5f3d
PA
11413CORE_ADDR
11414remote_target::get_thread_local_address (ptid_t ptid, CORE_ADDR lm,
11415 CORE_ADDR offset)
38691318 11416{
4082afcc 11417 if (packet_support (PACKET_qGetTLSAddr) != PACKET_DISABLE)
38691318
KB
11418 {
11419 struct remote_state *rs = get_remote_state ();
8d64371b
TT
11420 char *p = rs->buf.data ();
11421 char *endp = p + get_remote_packet_size ();
571dd617 11422 enum packet_result result;
38691318
KB
11423
11424 strcpy (p, "qGetTLSAddr:");
11425 p += strlen (p);
82f73884 11426 p = write_ptid (p, endp, ptid);
38691318
KB
11427 *p++ = ',';
11428 p += hexnumstr (p, offset);
11429 *p++ = ',';
11430 p += hexnumstr (p, lm);
11431 *p++ = '\0';
11432
6d820c5c 11433 putpkt (rs->buf);
8d64371b 11434 getpkt (&rs->buf, 0);
3e43a32a
MS
11435 result = packet_ok (rs->buf,
11436 &remote_protocol_packets[PACKET_qGetTLSAddr]);
571dd617 11437 if (result == PACKET_OK)
38691318 11438 {
b926417a 11439 ULONGEST addr;
38691318 11440
8d64371b 11441 unpack_varlen_hex (rs->buf.data (), &addr);
b926417a 11442 return addr;
38691318 11443 }
571dd617 11444 else if (result == PACKET_UNKNOWN)
109c3e39
AC
11445 throw_error (TLS_GENERIC_ERROR,
11446 _("Remote target doesn't support qGetTLSAddr packet"));
38691318 11447 else
109c3e39
AC
11448 throw_error (TLS_GENERIC_ERROR,
11449 _("Remote target failed to process qGetTLSAddr request"));
38691318
KB
11450 }
11451 else
109c3e39
AC
11452 throw_error (TLS_GENERIC_ERROR,
11453 _("TLS not supported or disabled on this target"));
38691318
KB
11454 /* Not reached. */
11455 return 0;
11456}
11457
711e434b
PM
11458/* Provide thread local base, i.e. Thread Information Block address.
11459 Returns 1 if ptid is found and thread_local_base is non zero. */
11460
57810aa7 11461bool
f6ac5f3d 11462remote_target::get_tib_address (ptid_t ptid, CORE_ADDR *addr)
711e434b 11463{
4082afcc 11464 if (packet_support (PACKET_qGetTIBAddr) != PACKET_DISABLE)
711e434b
PM
11465 {
11466 struct remote_state *rs = get_remote_state ();
8d64371b
TT
11467 char *p = rs->buf.data ();
11468 char *endp = p + get_remote_packet_size ();
711e434b
PM
11469 enum packet_result result;
11470
11471 strcpy (p, "qGetTIBAddr:");
11472 p += strlen (p);
11473 p = write_ptid (p, endp, ptid);
11474 *p++ = '\0';
11475
11476 putpkt (rs->buf);
8d64371b 11477 getpkt (&rs->buf, 0);
711e434b
PM
11478 result = packet_ok (rs->buf,
11479 &remote_protocol_packets[PACKET_qGetTIBAddr]);
11480 if (result == PACKET_OK)
11481 {
b926417a 11482 ULONGEST val;
8d64371b 11483 unpack_varlen_hex (rs->buf.data (), &val);
711e434b 11484 if (addr)
b926417a 11485 *addr = (CORE_ADDR) val;
57810aa7 11486 return true;
711e434b
PM
11487 }
11488 else if (result == PACKET_UNKNOWN)
11489 error (_("Remote target doesn't support qGetTIBAddr packet"));
11490 else
11491 error (_("Remote target failed to process qGetTIBAddr request"));
11492 }
11493 else
11494 error (_("qGetTIBAddr not supported or disabled on this target"));
11495 /* Not reached. */
57810aa7 11496 return false;
711e434b
PM
11497}
11498
29709017
DJ
11499/* Support for inferring a target description based on the current
11500 architecture and the size of a 'g' packet. While the 'g' packet
11501 can have any size (since optional registers can be left off the
11502 end), some sizes are easily recognizable given knowledge of the
11503 approximate architecture. */
11504
11505struct remote_g_packet_guess
11506{
eefce37f
TT
11507 remote_g_packet_guess (int bytes_, const struct target_desc *tdesc_)
11508 : bytes (bytes_),
11509 tdesc (tdesc_)
11510 {
11511 }
11512
29709017
DJ
11513 int bytes;
11514 const struct target_desc *tdesc;
11515};
29709017 11516
eefce37f 11517struct remote_g_packet_data : public allocate_on_obstack
29709017 11518{
eefce37f 11519 std::vector<remote_g_packet_guess> guesses;
29709017
DJ
11520};
11521
11522static struct gdbarch_data *remote_g_packet_data_handle;
11523
11524static void *
11525remote_g_packet_data_init (struct obstack *obstack)
11526{
eefce37f 11527 return new (obstack) remote_g_packet_data;
29709017
DJ
11528}
11529
11530void
11531register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes,
11532 const struct target_desc *tdesc)
11533{
11534 struct remote_g_packet_data *data
19ba03f4
SM
11535 = ((struct remote_g_packet_data *)
11536 gdbarch_data (gdbarch, remote_g_packet_data_handle));
29709017
DJ
11537
11538 gdb_assert (tdesc != NULL);
11539
eefce37f
TT
11540 for (const remote_g_packet_guess &guess : data->guesses)
11541 if (guess.bytes == bytes)
29709017 11542 internal_error (__FILE__, __LINE__,
9b20d036 11543 _("Duplicate g packet description added for size %d"),
29709017
DJ
11544 bytes);
11545
eefce37f 11546 data->guesses.emplace_back (bytes, tdesc);
29709017
DJ
11547}
11548
eefce37f
TT
11549/* Return true if remote_read_description would do anything on this target
11550 and architecture, false otherwise. */
d962ef82 11551
eefce37f 11552static bool
d962ef82
DJ
11553remote_read_description_p (struct target_ops *target)
11554{
11555 struct remote_g_packet_data *data
19ba03f4
SM
11556 = ((struct remote_g_packet_data *)
11557 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
d962ef82 11558
eefce37f 11559 return !data->guesses.empty ();
d962ef82
DJ
11560}
11561
f6ac5f3d
PA
11562const struct target_desc *
11563remote_target::read_description ()
29709017
DJ
11564{
11565 struct remote_g_packet_data *data
19ba03f4
SM
11566 = ((struct remote_g_packet_data *)
11567 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
29709017 11568
d962ef82
DJ
11569 /* Do not try this during initial connection, when we do not know
11570 whether there is a running but stopped thread. */
d7e15655 11571 if (!target_has_execution || inferior_ptid == null_ptid)
b6a8c27b 11572 return beneath ()->read_description ();
d962ef82 11573
eefce37f 11574 if (!data->guesses.empty ())
29709017 11575 {
29709017
DJ
11576 int bytes = send_g_packet ();
11577
eefce37f
TT
11578 for (const remote_g_packet_guess &guess : data->guesses)
11579 if (guess.bytes == bytes)
11580 return guess.tdesc;
29709017
DJ
11581
11582 /* We discard the g packet. A minor optimization would be to
11583 hold on to it, and fill the register cache once we have selected
11584 an architecture, but it's too tricky to do safely. */
11585 }
11586
b6a8c27b 11587 return beneath ()->read_description ();
29709017
DJ
11588}
11589
a6b151f1
DJ
11590/* Remote file transfer support. This is host-initiated I/O, not
11591 target-initiated; for target-initiated, see remote-fileio.c. */
11592
11593/* If *LEFT is at least the length of STRING, copy STRING to
11594 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11595 decrease *LEFT. Otherwise raise an error. */
11596
11597static void
a121b7c1 11598remote_buffer_add_string (char **buffer, int *left, const char *string)
a6b151f1
DJ
11599{
11600 int len = strlen (string);
11601
11602 if (len > *left)
11603 error (_("Packet too long for target."));
11604
11605 memcpy (*buffer, string, len);
11606 *buffer += len;
11607 *left -= len;
11608
11609 /* NUL-terminate the buffer as a convenience, if there is
11610 room. */
11611 if (*left)
11612 **buffer = '\0';
11613}
11614
11615/* If *LEFT is large enough, hex encode LEN bytes from BYTES into
11616 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11617 decrease *LEFT. Otherwise raise an error. */
11618
11619static void
11620remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes,
11621 int len)
11622{
11623 if (2 * len > *left)
11624 error (_("Packet too long for target."));
11625
11626 bin2hex (bytes, *buffer, len);
11627 *buffer += 2 * len;
11628 *left -= 2 * len;
11629
11630 /* NUL-terminate the buffer as a convenience, if there is
11631 room. */
11632 if (*left)
11633 **buffer = '\0';
11634}
11635
11636/* If *LEFT is large enough, convert VALUE to hex and add it to
11637 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11638 decrease *LEFT. Otherwise raise an error. */
11639
11640static void
11641remote_buffer_add_int (char **buffer, int *left, ULONGEST value)
11642{
11643 int len = hexnumlen (value);
11644
11645 if (len > *left)
11646 error (_("Packet too long for target."));
11647
11648 hexnumstr (*buffer, value);
11649 *buffer += len;
11650 *left -= len;
11651
11652 /* NUL-terminate the buffer as a convenience, if there is
11653 room. */
11654 if (*left)
11655 **buffer = '\0';
11656}
11657
11658/* Parse an I/O result packet from BUFFER. Set RETCODE to the return
11659 value, *REMOTE_ERRNO to the remote error number or zero if none
11660 was included, and *ATTACHMENT to point to the start of the annex
11661 if any. The length of the packet isn't needed here; there may
11662 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
11663
11664 Return 0 if the packet could be parsed, -1 if it could not. If
11665 -1 is returned, the other variables may not be initialized. */
11666
11667static int
11668remote_hostio_parse_result (char *buffer, int *retcode,
11669 int *remote_errno, char **attachment)
11670{
11671 char *p, *p2;
11672
11673 *remote_errno = 0;
11674 *attachment = NULL;
11675
11676 if (buffer[0] != 'F')
11677 return -1;
11678
11679 errno = 0;
11680 *retcode = strtol (&buffer[1], &p, 16);
11681 if (errno != 0 || p == &buffer[1])
11682 return -1;
11683
11684 /* Check for ",errno". */
11685 if (*p == ',')
11686 {
11687 errno = 0;
11688 *remote_errno = strtol (p + 1, &p2, 16);
11689 if (errno != 0 || p + 1 == p2)
11690 return -1;
11691 p = p2;
11692 }
11693
11694 /* Check for ";attachment". If there is no attachment, the
11695 packet should end here. */
11696 if (*p == ';')
11697 {
11698 *attachment = p + 1;
11699 return 0;
11700 }
11701 else if (*p == '\0')
11702 return 0;
11703 else
11704 return -1;
11705}
11706
11707/* Send a prepared I/O packet to the target and read its response.
11708 The prepared packet is in the global RS->BUF before this function
11709 is called, and the answer is there when we return.
11710
11711 COMMAND_BYTES is the length of the request to send, which may include
11712 binary data. WHICH_PACKET is the packet configuration to check
11713 before attempting a packet. If an error occurs, *REMOTE_ERRNO
11714 is set to the error number and -1 is returned. Otherwise the value
11715 returned by the function is returned.
11716
11717 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
11718 attachment is expected; an error will be reported if there's a
11719 mismatch. If one is found, *ATTACHMENT will be set to point into
11720 the packet buffer and *ATTACHMENT_LEN will be set to the
11721 attachment's length. */
11722
6b8edb51
PA
11723int
11724remote_target::remote_hostio_send_command (int command_bytes, int which_packet,
11725 int *remote_errno, char **attachment,
11726 int *attachment_len)
a6b151f1
DJ
11727{
11728 struct remote_state *rs = get_remote_state ();
11729 int ret, bytes_read;
11730 char *attachment_tmp;
11731
20db9c52 11732 if (packet_support (which_packet) == PACKET_DISABLE)
a6b151f1
DJ
11733 {
11734 *remote_errno = FILEIO_ENOSYS;
11735 return -1;
11736 }
11737
8d64371b
TT
11738 putpkt_binary (rs->buf.data (), command_bytes);
11739 bytes_read = getpkt_sane (&rs->buf, 0);
a6b151f1
DJ
11740
11741 /* If it timed out, something is wrong. Don't try to parse the
11742 buffer. */
11743 if (bytes_read < 0)
11744 {
11745 *remote_errno = FILEIO_EINVAL;
11746 return -1;
11747 }
11748
11749 switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet]))
11750 {
11751 case PACKET_ERROR:
11752 *remote_errno = FILEIO_EINVAL;
11753 return -1;
11754 case PACKET_UNKNOWN:
11755 *remote_errno = FILEIO_ENOSYS;
11756 return -1;
11757 case PACKET_OK:
11758 break;
11759 }
11760
8d64371b 11761 if (remote_hostio_parse_result (rs->buf.data (), &ret, remote_errno,
a6b151f1
DJ
11762 &attachment_tmp))
11763 {
11764 *remote_errno = FILEIO_EINVAL;
11765 return -1;
11766 }
11767
11768 /* Make sure we saw an attachment if and only if we expected one. */
11769 if ((attachment_tmp == NULL && attachment != NULL)
11770 || (attachment_tmp != NULL && attachment == NULL))
11771 {
11772 *remote_errno = FILEIO_EINVAL;
11773 return -1;
11774 }
11775
11776 /* If an attachment was found, it must point into the packet buffer;
11777 work out how many bytes there were. */
11778 if (attachment_tmp != NULL)
11779 {
11780 *attachment = attachment_tmp;
8d64371b 11781 *attachment_len = bytes_read - (*attachment - rs->buf.data ());
a6b151f1
DJ
11782 }
11783
11784 return ret;
11785}
11786
dd194f6b 11787/* See declaration.h. */
80152258 11788
dd194f6b
PA
11789void
11790readahead_cache::invalidate ()
80152258 11791{
dd194f6b 11792 this->fd = -1;
80152258
PA
11793}
11794
dd194f6b 11795/* See declaration.h. */
80152258 11796
dd194f6b
PA
11797void
11798readahead_cache::invalidate_fd (int fd)
80152258 11799{
dd194f6b
PA
11800 if (this->fd == fd)
11801 this->fd = -1;
80152258
PA
11802}
11803
15a201c8
GB
11804/* Set the filesystem remote_hostio functions that take FILENAME
11805 arguments will use. Return 0 on success, or -1 if an error
11806 occurs (and set *REMOTE_ERRNO). */
11807
6b8edb51
PA
11808int
11809remote_target::remote_hostio_set_filesystem (struct inferior *inf,
11810 int *remote_errno)
15a201c8
GB
11811{
11812 struct remote_state *rs = get_remote_state ();
11813 int required_pid = (inf == NULL || inf->fake_pid_p) ? 0 : inf->pid;
8d64371b 11814 char *p = rs->buf.data ();
15a201c8
GB
11815 int left = get_remote_packet_size () - 1;
11816 char arg[9];
11817 int ret;
11818
11819 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11820 return 0;
11821
11822 if (rs->fs_pid != -1 && required_pid == rs->fs_pid)
11823 return 0;
11824
11825 remote_buffer_add_string (&p, &left, "vFile:setfs:");
11826
11827 xsnprintf (arg, sizeof (arg), "%x", required_pid);
11828 remote_buffer_add_string (&p, &left, arg);
11829
8d64371b 11830 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_setfs,
15a201c8
GB
11831 remote_errno, NULL, NULL);
11832
11833 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11834 return 0;
11835
11836 if (ret == 0)
11837 rs->fs_pid = required_pid;
11838
11839 return ret;
11840}
11841
12e2a5fd 11842/* Implementation of to_fileio_open. */
a6b151f1 11843
6b8edb51
PA
11844int
11845remote_target::remote_hostio_open (inferior *inf, const char *filename,
11846 int flags, int mode, int warn_if_slow,
11847 int *remote_errno)
a6b151f1
DJ
11848{
11849 struct remote_state *rs = get_remote_state ();
8d64371b 11850 char *p = rs->buf.data ();
a6b151f1
DJ
11851 int left = get_remote_packet_size () - 1;
11852
4313b8c0
GB
11853 if (warn_if_slow)
11854 {
11855 static int warning_issued = 0;
11856
11857 printf_unfiltered (_("Reading %s from remote target...\n"),
11858 filename);
11859
11860 if (!warning_issued)
11861 {
11862 warning (_("File transfers from remote targets can be slow."
11863 " Use \"set sysroot\" to access files locally"
11864 " instead."));
11865 warning_issued = 1;
11866 }
11867 }
11868
15a201c8
GB
11869 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
11870 return -1;
11871
a6b151f1
DJ
11872 remote_buffer_add_string (&p, &left, "vFile:open:");
11873
11874 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
11875 strlen (filename));
11876 remote_buffer_add_string (&p, &left, ",");
11877
11878 remote_buffer_add_int (&p, &left, flags);
11879 remote_buffer_add_string (&p, &left, ",");
11880
11881 remote_buffer_add_int (&p, &left, mode);
11882
8d64371b 11883 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_open,
a6b151f1
DJ
11884 remote_errno, NULL, NULL);
11885}
11886
f6ac5f3d
PA
11887int
11888remote_target::fileio_open (struct inferior *inf, const char *filename,
11889 int flags, int mode, int warn_if_slow,
11890 int *remote_errno)
11891{
6b8edb51 11892 return remote_hostio_open (inf, filename, flags, mode, warn_if_slow,
f6ac5f3d
PA
11893 remote_errno);
11894}
11895
12e2a5fd 11896/* Implementation of to_fileio_pwrite. */
a6b151f1 11897
6b8edb51
PA
11898int
11899remote_target::remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
11900 ULONGEST offset, int *remote_errno)
a6b151f1
DJ
11901{
11902 struct remote_state *rs = get_remote_state ();
8d64371b 11903 char *p = rs->buf.data ();
a6b151f1
DJ
11904 int left = get_remote_packet_size ();
11905 int out_len;
11906
dd194f6b 11907 rs->readahead_cache.invalidate_fd (fd);
80152258 11908
a6b151f1
DJ
11909 remote_buffer_add_string (&p, &left, "vFile:pwrite:");
11910
11911 remote_buffer_add_int (&p, &left, fd);
11912 remote_buffer_add_string (&p, &left, ",");
11913
11914 remote_buffer_add_int (&p, &left, offset);
11915 remote_buffer_add_string (&p, &left, ",");
11916
124e13d9 11917 p += remote_escape_output (write_buf, len, 1, (gdb_byte *) p, &out_len,
8d64371b
TT
11918 (get_remote_packet_size ()
11919 - (p - rs->buf.data ())));
a6b151f1 11920
8d64371b 11921 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pwrite,
a6b151f1
DJ
11922 remote_errno, NULL, NULL);
11923}
11924
f6ac5f3d
PA
11925int
11926remote_target::fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
11927 ULONGEST offset, int *remote_errno)
11928{
6b8edb51 11929 return remote_hostio_pwrite (fd, write_buf, len, offset, remote_errno);
f6ac5f3d
PA
11930}
11931
80152258
PA
11932/* Helper for the implementation of to_fileio_pread. Read the file
11933 from the remote side with vFile:pread. */
a6b151f1 11934
6b8edb51
PA
11935int
11936remote_target::remote_hostio_pread_vFile (int fd, gdb_byte *read_buf, int len,
11937 ULONGEST offset, int *remote_errno)
a6b151f1
DJ
11938{
11939 struct remote_state *rs = get_remote_state ();
8d64371b 11940 char *p = rs->buf.data ();
a6b151f1
DJ
11941 char *attachment;
11942 int left = get_remote_packet_size ();
11943 int ret, attachment_len;
11944 int read_len;
11945
11946 remote_buffer_add_string (&p, &left, "vFile:pread:");
11947
11948 remote_buffer_add_int (&p, &left, fd);
11949 remote_buffer_add_string (&p, &left, ",");
11950
11951 remote_buffer_add_int (&p, &left, len);
11952 remote_buffer_add_string (&p, &left, ",");
11953
11954 remote_buffer_add_int (&p, &left, offset);
11955
8d64371b 11956 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pread,
a6b151f1
DJ
11957 remote_errno, &attachment,
11958 &attachment_len);
11959
11960 if (ret < 0)
11961 return ret;
11962
bc20a4af 11963 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
a6b151f1
DJ
11964 read_buf, len);
11965 if (read_len != ret)
11966 error (_("Read returned %d, but %d bytes."), ret, (int) read_len);
11967
11968 return ret;
11969}
11970
dd194f6b 11971/* See declaration.h. */
80152258 11972
dd194f6b
PA
11973int
11974readahead_cache::pread (int fd, gdb_byte *read_buf, size_t len,
11975 ULONGEST offset)
80152258 11976{
dd194f6b
PA
11977 if (this->fd == fd
11978 && this->offset <= offset
11979 && offset < this->offset + this->bufsize)
80152258 11980 {
dd194f6b 11981 ULONGEST max = this->offset + this->bufsize;
80152258
PA
11982
11983 if (offset + len > max)
11984 len = max - offset;
11985
dd194f6b 11986 memcpy (read_buf, this->buf + offset - this->offset, len);
80152258
PA
11987 return len;
11988 }
11989
11990 return 0;
11991}
11992
11993/* Implementation of to_fileio_pread. */
11994
6b8edb51
PA
11995int
11996remote_target::remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
11997 ULONGEST offset, int *remote_errno)
80152258
PA
11998{
11999 int ret;
12000 struct remote_state *rs = get_remote_state ();
dd194f6b 12001 readahead_cache *cache = &rs->readahead_cache;
80152258 12002
dd194f6b 12003 ret = cache->pread (fd, read_buf, len, offset);
80152258
PA
12004 if (ret > 0)
12005 {
12006 cache->hit_count++;
12007
12008 if (remote_debug)
12009 fprintf_unfiltered (gdb_stdlog, "readahead cache hit %s\n",
12010 pulongest (cache->hit_count));
12011 return ret;
12012 }
12013
12014 cache->miss_count++;
12015 if (remote_debug)
12016 fprintf_unfiltered (gdb_stdlog, "readahead cache miss %s\n",
12017 pulongest (cache->miss_count));
12018
12019 cache->fd = fd;
12020 cache->offset = offset;
12021 cache->bufsize = get_remote_packet_size ();
224c3ddb 12022 cache->buf = (gdb_byte *) xrealloc (cache->buf, cache->bufsize);
80152258 12023
6b8edb51 12024 ret = remote_hostio_pread_vFile (cache->fd, cache->buf, cache->bufsize,
80152258
PA
12025 cache->offset, remote_errno);
12026 if (ret <= 0)
12027 {
dd194f6b 12028 cache->invalidate_fd (fd);
80152258
PA
12029 return ret;
12030 }
12031
12032 cache->bufsize = ret;
dd194f6b 12033 return cache->pread (fd, read_buf, len, offset);
80152258
PA
12034}
12035
f6ac5f3d
PA
12036int
12037remote_target::fileio_pread (int fd, gdb_byte *read_buf, int len,
12038 ULONGEST offset, int *remote_errno)
12039{
6b8edb51 12040 return remote_hostio_pread (fd, read_buf, len, offset, remote_errno);
f6ac5f3d
PA
12041}
12042
12e2a5fd 12043/* Implementation of to_fileio_close. */
a6b151f1 12044
6b8edb51
PA
12045int
12046remote_target::remote_hostio_close (int fd, int *remote_errno)
a6b151f1
DJ
12047{
12048 struct remote_state *rs = get_remote_state ();
8d64371b 12049 char *p = rs->buf.data ();
a6b151f1
DJ
12050 int left = get_remote_packet_size () - 1;
12051
dd194f6b 12052 rs->readahead_cache.invalidate_fd (fd);
80152258 12053
a6b151f1
DJ
12054 remote_buffer_add_string (&p, &left, "vFile:close:");
12055
12056 remote_buffer_add_int (&p, &left, fd);
12057
8d64371b 12058 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_close,
a6b151f1
DJ
12059 remote_errno, NULL, NULL);
12060}
12061
f6ac5f3d
PA
12062int
12063remote_target::fileio_close (int fd, int *remote_errno)
12064{
6b8edb51 12065 return remote_hostio_close (fd, remote_errno);
f6ac5f3d
PA
12066}
12067
12e2a5fd 12068/* Implementation of to_fileio_unlink. */
a6b151f1 12069
6b8edb51
PA
12070int
12071remote_target::remote_hostio_unlink (inferior *inf, const char *filename,
12072 int *remote_errno)
a6b151f1
DJ
12073{
12074 struct remote_state *rs = get_remote_state ();
8d64371b 12075 char *p = rs->buf.data ();
a6b151f1
DJ
12076 int left = get_remote_packet_size () - 1;
12077
15a201c8
GB
12078 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
12079 return -1;
12080
a6b151f1
DJ
12081 remote_buffer_add_string (&p, &left, "vFile:unlink:");
12082
12083 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12084 strlen (filename));
12085
8d64371b 12086 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_unlink,
a6b151f1
DJ
12087 remote_errno, NULL, NULL);
12088}
12089
f6ac5f3d
PA
12090int
12091remote_target::fileio_unlink (struct inferior *inf, const char *filename,
12092 int *remote_errno)
12093{
6b8edb51 12094 return remote_hostio_unlink (inf, filename, remote_errno);
f6ac5f3d
PA
12095}
12096
12e2a5fd 12097/* Implementation of to_fileio_readlink. */
b9e7b9c3 12098
f6ac5f3d
PA
12099gdb::optional<std::string>
12100remote_target::fileio_readlink (struct inferior *inf, const char *filename,
12101 int *remote_errno)
b9e7b9c3
UW
12102{
12103 struct remote_state *rs = get_remote_state ();
8d64371b 12104 char *p = rs->buf.data ();
b9e7b9c3
UW
12105 char *attachment;
12106 int left = get_remote_packet_size ();
12107 int len, attachment_len;
12108 int read_len;
b9e7b9c3 12109
15a201c8 12110 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
e0d3522b 12111 return {};
15a201c8 12112
b9e7b9c3
UW
12113 remote_buffer_add_string (&p, &left, "vFile:readlink:");
12114
12115 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12116 strlen (filename));
12117
8d64371b 12118 len = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_readlink,
b9e7b9c3
UW
12119 remote_errno, &attachment,
12120 &attachment_len);
12121
12122 if (len < 0)
e0d3522b 12123 return {};
b9e7b9c3 12124
e0d3522b 12125 std::string ret (len, '\0');
b9e7b9c3 12126
bc20a4af 12127 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
e0d3522b 12128 (gdb_byte *) &ret[0], len);
b9e7b9c3
UW
12129 if (read_len != len)
12130 error (_("Readlink returned %d, but %d bytes."), len, read_len);
12131
b9e7b9c3
UW
12132 return ret;
12133}
12134
12e2a5fd 12135/* Implementation of to_fileio_fstat. */
0a93529c 12136
f6ac5f3d
PA
12137int
12138remote_target::fileio_fstat (int fd, struct stat *st, int *remote_errno)
0a93529c
GB
12139{
12140 struct remote_state *rs = get_remote_state ();
8d64371b 12141 char *p = rs->buf.data ();
0a93529c
GB
12142 int left = get_remote_packet_size ();
12143 int attachment_len, ret;
12144 char *attachment;
12145 struct fio_stat fst;
12146 int read_len;
12147
464b0089
GB
12148 remote_buffer_add_string (&p, &left, "vFile:fstat:");
12149
12150 remote_buffer_add_int (&p, &left, fd);
12151
8d64371b 12152 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_fstat,
464b0089
GB
12153 remote_errno, &attachment,
12154 &attachment_len);
12155 if (ret < 0)
0a93529c 12156 {
464b0089
GB
12157 if (*remote_errno != FILEIO_ENOSYS)
12158 return ret;
12159
0a93529c
GB
12160 /* Strictly we should return -1, ENOSYS here, but when
12161 "set sysroot remote:" was implemented in August 2008
12162 BFD's need for a stat function was sidestepped with
12163 this hack. This was not remedied until March 2015
12164 so we retain the previous behavior to avoid breaking
12165 compatibility.
12166
12167 Note that the memset is a March 2015 addition; older
12168 GDBs set st_size *and nothing else* so the structure
12169 would have garbage in all other fields. This might
12170 break something but retaining the previous behavior
12171 here would be just too wrong. */
12172
12173 memset (st, 0, sizeof (struct stat));
12174 st->st_size = INT_MAX;
12175 return 0;
12176 }
12177
0a93529c
GB
12178 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
12179 (gdb_byte *) &fst, sizeof (fst));
12180
12181 if (read_len != ret)
12182 error (_("vFile:fstat returned %d, but %d bytes."), ret, read_len);
12183
12184 if (read_len != sizeof (fst))
12185 error (_("vFile:fstat returned %d bytes, but expecting %d."),
12186 read_len, (int) sizeof (fst));
12187
12188 remote_fileio_to_host_stat (&fst, st);
12189
12190 return 0;
12191}
12192
12e2a5fd 12193/* Implementation of to_filesystem_is_local. */
e3dd7556 12194
57810aa7 12195bool
f6ac5f3d 12196remote_target::filesystem_is_local ()
e3dd7556
GB
12197{
12198 /* Valgrind GDB presents itself as a remote target but works
12199 on the local filesystem: it does not implement remote get
12200 and users are not expected to set a sysroot. To handle
12201 this case we treat the remote filesystem as local if the
12202 sysroot is exactly TARGET_SYSROOT_PREFIX and if the stub
12203 does not support vFile:open. */
a3be80c3 12204 if (strcmp (gdb_sysroot, TARGET_SYSROOT_PREFIX) == 0)
e3dd7556
GB
12205 {
12206 enum packet_support ps = packet_support (PACKET_vFile_open);
12207
12208 if (ps == PACKET_SUPPORT_UNKNOWN)
12209 {
12210 int fd, remote_errno;
12211
12212 /* Try opening a file to probe support. The supplied
12213 filename is irrelevant, we only care about whether
12214 the stub recognizes the packet or not. */
6b8edb51 12215 fd = remote_hostio_open (NULL, "just probing",
4313b8c0 12216 FILEIO_O_RDONLY, 0700, 0,
e3dd7556
GB
12217 &remote_errno);
12218
12219 if (fd >= 0)
6b8edb51 12220 remote_hostio_close (fd, &remote_errno);
e3dd7556
GB
12221
12222 ps = packet_support (PACKET_vFile_open);
12223 }
12224
12225 if (ps == PACKET_DISABLE)
12226 {
12227 static int warning_issued = 0;
12228
12229 if (!warning_issued)
12230 {
12231 warning (_("remote target does not support file"
12232 " transfer, attempting to access files"
12233 " from local filesystem."));
12234 warning_issued = 1;
12235 }
12236
57810aa7 12237 return true;
e3dd7556
GB
12238 }
12239 }
12240
57810aa7 12241 return false;
e3dd7556
GB
12242}
12243
a6b151f1
DJ
12244static int
12245remote_fileio_errno_to_host (int errnum)
12246{
12247 switch (errnum)
12248 {
12249 case FILEIO_EPERM:
12250 return EPERM;
12251 case FILEIO_ENOENT:
12252 return ENOENT;
12253 case FILEIO_EINTR:
12254 return EINTR;
12255 case FILEIO_EIO:
12256 return EIO;
12257 case FILEIO_EBADF:
12258 return EBADF;
12259 case FILEIO_EACCES:
12260 return EACCES;
12261 case FILEIO_EFAULT:
12262 return EFAULT;
12263 case FILEIO_EBUSY:
12264 return EBUSY;
12265 case FILEIO_EEXIST:
12266 return EEXIST;
12267 case FILEIO_ENODEV:
12268 return ENODEV;
12269 case FILEIO_ENOTDIR:
12270 return ENOTDIR;
12271 case FILEIO_EISDIR:
12272 return EISDIR;
12273 case FILEIO_EINVAL:
12274 return EINVAL;
12275 case FILEIO_ENFILE:
12276 return ENFILE;
12277 case FILEIO_EMFILE:
12278 return EMFILE;
12279 case FILEIO_EFBIG:
12280 return EFBIG;
12281 case FILEIO_ENOSPC:
12282 return ENOSPC;
12283 case FILEIO_ESPIPE:
12284 return ESPIPE;
12285 case FILEIO_EROFS:
12286 return EROFS;
12287 case FILEIO_ENOSYS:
12288 return ENOSYS;
12289 case FILEIO_ENAMETOOLONG:
12290 return ENAMETOOLONG;
12291 }
12292 return -1;
12293}
12294
12295static char *
12296remote_hostio_error (int errnum)
12297{
12298 int host_error = remote_fileio_errno_to_host (errnum);
12299
12300 if (host_error == -1)
12301 error (_("Unknown remote I/O error %d"), errnum);
12302 else
12303 error (_("Remote I/O error: %s"), safe_strerror (host_error));
12304}
12305
440b7aec
PA
12306/* A RAII wrapper around a remote file descriptor. */
12307
12308class scoped_remote_fd
a6b151f1 12309{
440b7aec 12310public:
6b8edb51
PA
12311 scoped_remote_fd (remote_target *remote, int fd)
12312 : m_remote (remote), m_fd (fd)
440b7aec
PA
12313 {
12314 }
a6b151f1 12315
440b7aec
PA
12316 ~scoped_remote_fd ()
12317 {
12318 if (m_fd != -1)
12319 {
12320 try
12321 {
12322 int remote_errno;
6b8edb51 12323 m_remote->remote_hostio_close (m_fd, &remote_errno);
440b7aec
PA
12324 }
12325 catch (...)
12326 {
12327 /* Swallow exception before it escapes the dtor. If
12328 something goes wrong, likely the connection is gone,
12329 and there's nothing else that can be done. */
12330 }
12331 }
12332 }
12333
12334 DISABLE_COPY_AND_ASSIGN (scoped_remote_fd);
12335
12336 /* Release ownership of the file descriptor, and return it. */
88a774b9 12337 ATTRIBUTE_UNUSED_RESULT int release () noexcept
440b7aec
PA
12338 {
12339 int fd = m_fd;
12340 m_fd = -1;
12341 return fd;
12342 }
12343
12344 /* Return the owned file descriptor. */
12345 int get () const noexcept
12346 {
12347 return m_fd;
12348 }
12349
12350private:
6b8edb51
PA
12351 /* The remote target. */
12352 remote_target *m_remote;
12353
440b7aec
PA
12354 /* The owned remote I/O file descriptor. */
12355 int m_fd;
12356};
a6b151f1
DJ
12357
12358void
12359remote_file_put (const char *local_file, const char *remote_file, int from_tty)
6b8edb51
PA
12360{
12361 remote_target *remote = get_current_remote_target ();
12362
12363 if (remote == nullptr)
12364 error (_("command can only be used with remote target"));
12365
12366 remote->remote_file_put (local_file, remote_file, from_tty);
12367}
12368
12369void
12370remote_target::remote_file_put (const char *local_file, const char *remote_file,
12371 int from_tty)
a6b151f1 12372{
440b7aec 12373 int retcode, remote_errno, bytes, io_size;
a6b151f1
DJ
12374 int bytes_in_buffer;
12375 int saw_eof;
12376 ULONGEST offset;
a6b151f1 12377
d419f42d 12378 gdb_file_up file = gdb_fopen_cloexec (local_file, "rb");
a6b151f1
DJ
12379 if (file == NULL)
12380 perror_with_name (local_file);
a6b151f1 12381
440b7aec 12382 scoped_remote_fd fd
6b8edb51
PA
12383 (this, remote_hostio_open (NULL,
12384 remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT
12385 | FILEIO_O_TRUNC),
12386 0700, 0, &remote_errno));
440b7aec 12387 if (fd.get () == -1)
a6b151f1
DJ
12388 remote_hostio_error (remote_errno);
12389
12390 /* Send up to this many bytes at once. They won't all fit in the
12391 remote packet limit, so we'll transfer slightly fewer. */
12392 io_size = get_remote_packet_size ();
5ca3b260 12393 gdb::byte_vector buffer (io_size);
a6b151f1 12394
a6b151f1
DJ
12395 bytes_in_buffer = 0;
12396 saw_eof = 0;
12397 offset = 0;
12398 while (bytes_in_buffer || !saw_eof)
12399 {
12400 if (!saw_eof)
12401 {
5ca3b260 12402 bytes = fread (buffer.data () + bytes_in_buffer, 1,
3e43a32a 12403 io_size - bytes_in_buffer,
d419f42d 12404 file.get ());
a6b151f1
DJ
12405 if (bytes == 0)
12406 {
d419f42d 12407 if (ferror (file.get ()))
a6b151f1
DJ
12408 error (_("Error reading %s."), local_file);
12409 else
12410 {
12411 /* EOF. Unless there is something still in the
12412 buffer from the last iteration, we are done. */
12413 saw_eof = 1;
12414 if (bytes_in_buffer == 0)
12415 break;
12416 }
12417 }
12418 }
12419 else
12420 bytes = 0;
12421
12422 bytes += bytes_in_buffer;
12423 bytes_in_buffer = 0;
12424
5ca3b260 12425 retcode = remote_hostio_pwrite (fd.get (), buffer.data (), bytes,
3e43a32a 12426 offset, &remote_errno);
a6b151f1
DJ
12427
12428 if (retcode < 0)
12429 remote_hostio_error (remote_errno);
12430 else if (retcode == 0)
12431 error (_("Remote write of %d bytes returned 0!"), bytes);
12432 else if (retcode < bytes)
12433 {
12434 /* Short write. Save the rest of the read data for the next
12435 write. */
12436 bytes_in_buffer = bytes - retcode;
5ca3b260 12437 memmove (buffer.data (), buffer.data () + retcode, bytes_in_buffer);
a6b151f1
DJ
12438 }
12439
12440 offset += retcode;
12441 }
12442
6b8edb51 12443 if (remote_hostio_close (fd.release (), &remote_errno))
a6b151f1
DJ
12444 remote_hostio_error (remote_errno);
12445
12446 if (from_tty)
12447 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file);
a6b151f1
DJ
12448}
12449
12450void
12451remote_file_get (const char *remote_file, const char *local_file, int from_tty)
6b8edb51
PA
12452{
12453 remote_target *remote = get_current_remote_target ();
12454
12455 if (remote == nullptr)
12456 error (_("command can only be used with remote target"));
12457
12458 remote->remote_file_get (remote_file, local_file, from_tty);
12459}
12460
12461void
12462remote_target::remote_file_get (const char *remote_file, const char *local_file,
12463 int from_tty)
a6b151f1 12464{
440b7aec 12465 int remote_errno, bytes, io_size;
a6b151f1 12466 ULONGEST offset;
a6b151f1 12467
440b7aec 12468 scoped_remote_fd fd
6b8edb51
PA
12469 (this, remote_hostio_open (NULL,
12470 remote_file, FILEIO_O_RDONLY, 0, 0,
12471 &remote_errno));
440b7aec 12472 if (fd.get () == -1)
a6b151f1
DJ
12473 remote_hostio_error (remote_errno);
12474
d419f42d 12475 gdb_file_up file = gdb_fopen_cloexec (local_file, "wb");
a6b151f1
DJ
12476 if (file == NULL)
12477 perror_with_name (local_file);
a6b151f1
DJ
12478
12479 /* Send up to this many bytes at once. They won't all fit in the
12480 remote packet limit, so we'll transfer slightly fewer. */
12481 io_size = get_remote_packet_size ();
5ca3b260 12482 gdb::byte_vector buffer (io_size);
a6b151f1 12483
a6b151f1
DJ
12484 offset = 0;
12485 while (1)
12486 {
5ca3b260 12487 bytes = remote_hostio_pread (fd.get (), buffer.data (), io_size, offset,
440b7aec 12488 &remote_errno);
a6b151f1
DJ
12489 if (bytes == 0)
12490 /* Success, but no bytes, means end-of-file. */
12491 break;
12492 if (bytes == -1)
12493 remote_hostio_error (remote_errno);
12494
12495 offset += bytes;
12496
5ca3b260 12497 bytes = fwrite (buffer.data (), 1, bytes, file.get ());
a6b151f1
DJ
12498 if (bytes == 0)
12499 perror_with_name (local_file);
12500 }
12501
6b8edb51 12502 if (remote_hostio_close (fd.release (), &remote_errno))
a6b151f1
DJ
12503 remote_hostio_error (remote_errno);
12504
12505 if (from_tty)
12506 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file);
a6b151f1
DJ
12507}
12508
12509void
12510remote_file_delete (const char *remote_file, int from_tty)
12511{
6b8edb51 12512 remote_target *remote = get_current_remote_target ();
a6b151f1 12513
6b8edb51 12514 if (remote == nullptr)
a6b151f1
DJ
12515 error (_("command can only be used with remote target"));
12516
6b8edb51
PA
12517 remote->remote_file_delete (remote_file, from_tty);
12518}
12519
12520void
12521remote_target::remote_file_delete (const char *remote_file, int from_tty)
12522{
12523 int retcode, remote_errno;
12524
12525 retcode = remote_hostio_unlink (NULL, remote_file, &remote_errno);
a6b151f1
DJ
12526 if (retcode == -1)
12527 remote_hostio_error (remote_errno);
12528
12529 if (from_tty)
12530 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file);
12531}
12532
12533static void
ac88e2de 12534remote_put_command (const char *args, int from_tty)
a6b151f1 12535{
d1a41061
PP
12536 if (args == NULL)
12537 error_no_arg (_("file to put"));
12538
773a1edc 12539 gdb_argv argv (args);
a6b151f1
DJ
12540 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12541 error (_("Invalid parameters to remote put"));
12542
12543 remote_file_put (argv[0], argv[1], from_tty);
a6b151f1
DJ
12544}
12545
12546static void
ac88e2de 12547remote_get_command (const char *args, int from_tty)
a6b151f1 12548{
d1a41061
PP
12549 if (args == NULL)
12550 error_no_arg (_("file to get"));
12551
773a1edc 12552 gdb_argv argv (args);
a6b151f1
DJ
12553 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12554 error (_("Invalid parameters to remote get"));
12555
12556 remote_file_get (argv[0], argv[1], from_tty);
a6b151f1
DJ
12557}
12558
12559static void
ac88e2de 12560remote_delete_command (const char *args, int from_tty)
a6b151f1 12561{
d1a41061
PP
12562 if (args == NULL)
12563 error_no_arg (_("file to delete"));
12564
773a1edc 12565 gdb_argv argv (args);
a6b151f1
DJ
12566 if (argv[0] == NULL || argv[1] != NULL)
12567 error (_("Invalid parameters to remote delete"));
12568
12569 remote_file_delete (argv[0], from_tty);
a6b151f1
DJ
12570}
12571
12572static void
981a3fb3 12573remote_command (const char *args, int from_tty)
a6b151f1 12574{
635c7e8a 12575 help_list (remote_cmdlist, "remote ", all_commands, gdb_stdout);
a6b151f1
DJ
12576}
12577
57810aa7 12578bool
f6ac5f3d 12579remote_target::can_execute_reverse ()
b2175913 12580{
4082afcc
PA
12581 if (packet_support (PACKET_bs) == PACKET_ENABLE
12582 || packet_support (PACKET_bc) == PACKET_ENABLE)
57810aa7 12583 return true;
40ab02ce 12584 else
57810aa7 12585 return false;
b2175913
MS
12586}
12587
57810aa7 12588bool
f6ac5f3d 12589remote_target::supports_non_stop ()
74531fed 12590{
57810aa7 12591 return true;
74531fed
PA
12592}
12593
57810aa7 12594bool
f6ac5f3d 12595remote_target::supports_disable_randomization ()
03583c20
UW
12596{
12597 /* Only supported in extended mode. */
57810aa7 12598 return false;
03583c20
UW
12599}
12600
57810aa7 12601bool
f6ac5f3d 12602remote_target::supports_multi_process ()
8a305172
PA
12603{
12604 struct remote_state *rs = get_remote_state ();
a744cf53 12605
8020350c 12606 return remote_multi_process_p (rs);
8a305172
PA
12607}
12608
70221824 12609static int
f6ac5f3d 12610remote_supports_cond_tracepoints ()
782b2b07 12611{
4082afcc 12612 return packet_support (PACKET_ConditionalTracepoints) == PACKET_ENABLE;
782b2b07
SS
12613}
12614
57810aa7 12615bool
f6ac5f3d 12616remote_target::supports_evaluation_of_breakpoint_conditions ()
3788aec7 12617{
4082afcc 12618 return packet_support (PACKET_ConditionalBreakpoints) == PACKET_ENABLE;
3788aec7
LM
12619}
12620
70221824 12621static int
f6ac5f3d 12622remote_supports_fast_tracepoints ()
7a697b8d 12623{
4082afcc 12624 return packet_support (PACKET_FastTracepoints) == PACKET_ENABLE;
7a697b8d
SS
12625}
12626
0fb4aa4b 12627static int
f6ac5f3d 12628remote_supports_static_tracepoints ()
0fb4aa4b 12629{
4082afcc 12630 return packet_support (PACKET_StaticTracepoints) == PACKET_ENABLE;
0fb4aa4b
PA
12631}
12632
1e4d1764 12633static int
f6ac5f3d 12634remote_supports_install_in_trace ()
1e4d1764 12635{
4082afcc 12636 return packet_support (PACKET_InstallInTrace) == PACKET_ENABLE;
1e4d1764
YQ
12637}
12638
57810aa7 12639bool
f6ac5f3d 12640remote_target::supports_enable_disable_tracepoint ()
d248b706 12641{
4082afcc
PA
12642 return (packet_support (PACKET_EnableDisableTracepoints_feature)
12643 == PACKET_ENABLE);
d248b706
KY
12644}
12645
57810aa7 12646bool
f6ac5f3d 12647remote_target::supports_string_tracing ()
3065dfb6 12648{
4082afcc 12649 return packet_support (PACKET_tracenz_feature) == PACKET_ENABLE;
3065dfb6
SS
12650}
12651
57810aa7 12652bool
f6ac5f3d 12653remote_target::can_run_breakpoint_commands ()
d3ce09f5 12654{
4082afcc 12655 return packet_support (PACKET_BreakpointCommands) == PACKET_ENABLE;
d3ce09f5
SS
12656}
12657
f6ac5f3d
PA
12658void
12659remote_target::trace_init ()
35b1e5cc 12660{
b6bb3468
PA
12661 struct remote_state *rs = get_remote_state ();
12662
35b1e5cc 12663 putpkt ("QTinit");
b6bb3468 12664 remote_get_noisy_reply ();
8d64371b 12665 if (strcmp (rs->buf.data (), "OK") != 0)
35b1e5cc
SS
12666 error (_("Target does not support this command."));
12667}
12668
409873ef
SS
12669/* Recursive routine to walk through command list including loops, and
12670 download packets for each command. */
12671
6b8edb51
PA
12672void
12673remote_target::remote_download_command_source (int num, ULONGEST addr,
12674 struct command_line *cmds)
409873ef
SS
12675{
12676 struct remote_state *rs = get_remote_state ();
12677 struct command_line *cmd;
12678
12679 for (cmd = cmds; cmd; cmd = cmd->next)
12680 {
0df8b418 12681 QUIT; /* Allow user to bail out with ^C. */
8d64371b 12682 strcpy (rs->buf.data (), "QTDPsrc:");
409873ef 12683 encode_source_string (num, addr, "cmd", cmd->line,
8d64371b
TT
12684 rs->buf.data () + strlen (rs->buf.data ()),
12685 rs->buf.size () - strlen (rs->buf.data ()));
409873ef 12686 putpkt (rs->buf);
b6bb3468 12687 remote_get_noisy_reply ();
8d64371b 12688 if (strcmp (rs->buf.data (), "OK"))
409873ef
SS
12689 warning (_("Target does not support source download."));
12690
12691 if (cmd->control_type == while_control
12692 || cmd->control_type == while_stepping_control)
12693 {
12973681 12694 remote_download_command_source (num, addr, cmd->body_list_0.get ());
409873ef 12695
0df8b418 12696 QUIT; /* Allow user to bail out with ^C. */
8d64371b 12697 strcpy (rs->buf.data (), "QTDPsrc:");
409873ef 12698 encode_source_string (num, addr, "cmd", "end",
8d64371b
TT
12699 rs->buf.data () + strlen (rs->buf.data ()),
12700 rs->buf.size () - strlen (rs->buf.data ()));
409873ef 12701 putpkt (rs->buf);
b6bb3468 12702 remote_get_noisy_reply ();
8d64371b 12703 if (strcmp (rs->buf.data (), "OK"))
409873ef
SS
12704 warning (_("Target does not support source download."));
12705 }
12706 }
12707}
12708
f6ac5f3d
PA
12709void
12710remote_target::download_tracepoint (struct bp_location *loc)
35b1e5cc
SS
12711{
12712 CORE_ADDR tpaddr;
409873ef 12713 char addrbuf[40];
b44ec619
SM
12714 std::vector<std::string> tdp_actions;
12715 std::vector<std::string> stepping_actions;
35b1e5cc 12716 char *pkt;
e8ba3115 12717 struct breakpoint *b = loc->owner;
d9b3f62e 12718 struct tracepoint *t = (struct tracepoint *) b;
b6bb3468 12719 struct remote_state *rs = get_remote_state ();
3df3a985 12720 int ret;
ff36536c 12721 const char *err_msg = _("Tracepoint packet too large for target.");
3df3a985
PFC
12722 size_t size_left;
12723
12724 /* We use a buffer other than rs->buf because we'll build strings
12725 across multiple statements, and other statements in between could
12726 modify rs->buf. */
12727 gdb::char_vector buf (get_remote_packet_size ());
35b1e5cc 12728
dc673c81 12729 encode_actions_rsp (loc, &tdp_actions, &stepping_actions);
e8ba3115
YQ
12730
12731 tpaddr = loc->address;
12732 sprintf_vma (addrbuf, tpaddr);
3df3a985
PFC
12733 ret = snprintf (buf.data (), buf.size (), "QTDP:%x:%s:%c:%lx:%x",
12734 b->number, addrbuf, /* address */
12735 (b->enable_state == bp_enabled ? 'E' : 'D'),
12736 t->step_count, t->pass_count);
12737
12738 if (ret < 0 || ret >= buf.size ())
a7f25a84 12739 error ("%s", err_msg);
3df3a985 12740
e8ba3115
YQ
12741 /* Fast tracepoints are mostly handled by the target, but we can
12742 tell the target how big of an instruction block should be moved
12743 around. */
12744 if (b->type == bp_fast_tracepoint)
12745 {
12746 /* Only test for support at download time; we may not know
12747 target capabilities at definition time. */
12748 if (remote_supports_fast_tracepoints ())
35b1e5cc 12749 {
6b940e6a
PL
12750 if (gdbarch_fast_tracepoint_valid_at (loc->gdbarch, tpaddr,
12751 NULL))
3df3a985
PFC
12752 {
12753 size_left = buf.size () - strlen (buf.data ());
12754 ret = snprintf (buf.data () + strlen (buf.data ()),
12755 size_left, ":F%x",
12756 gdb_insn_length (loc->gdbarch, tpaddr));
12757
12758 if (ret < 0 || ret >= size_left)
a7f25a84 12759 error ("%s", err_msg);
3df3a985 12760 }
35b1e5cc 12761 else
e8ba3115
YQ
12762 /* If it passed validation at definition but fails now,
12763 something is very wrong. */
12764 internal_error (__FILE__, __LINE__,
12765 _("Fast tracepoint not "
12766 "valid during download"));
35b1e5cc 12767 }
e8ba3115
YQ
12768 else
12769 /* Fast tracepoints are functionally identical to regular
12770 tracepoints, so don't take lack of support as a reason to
12771 give up on the trace run. */
12772 warning (_("Target does not support fast tracepoints, "
12773 "downloading %d as regular tracepoint"), b->number);
12774 }
12775 else if (b->type == bp_static_tracepoint)
12776 {
12777 /* Only test for support at download time; we may not know
12778 target capabilities at definition time. */
12779 if (remote_supports_static_tracepoints ())
0fb4aa4b 12780 {
e8ba3115 12781 struct static_tracepoint_marker marker;
0fb4aa4b 12782
e8ba3115 12783 if (target_static_tracepoint_marker_at (tpaddr, &marker))
3df3a985
PFC
12784 {
12785 size_left = buf.size () - strlen (buf.data ());
12786 ret = snprintf (buf.data () + strlen (buf.data ()),
12787 size_left, ":S");
12788
12789 if (ret < 0 || ret >= size_left)
a7f25a84 12790 error ("%s", err_msg);
3df3a985 12791 }
0fb4aa4b 12792 else
e8ba3115 12793 error (_("Static tracepoint not valid during download"));
0fb4aa4b 12794 }
e8ba3115
YQ
12795 else
12796 /* Fast tracepoints are functionally identical to regular
12797 tracepoints, so don't take lack of support as a reason
12798 to give up on the trace run. */
12799 error (_("Target does not support static tracepoints"));
12800 }
12801 /* If the tracepoint has a conditional, make it into an agent
12802 expression and append to the definition. */
12803 if (loc->cond)
12804 {
12805 /* Only test support at download time, we may not know target
12806 capabilities at definition time. */
12807 if (remote_supports_cond_tracepoints ())
35b1e5cc 12808 {
3df3a985
PFC
12809 agent_expr_up aexpr = gen_eval_for_expr (tpaddr,
12810 loc->cond.get ());
12811
12812 size_left = buf.size () - strlen (buf.data ());
12813
12814 ret = snprintf (buf.data () + strlen (buf.data ()),
12815 size_left, ":X%x,", aexpr->len);
12816
12817 if (ret < 0 || ret >= size_left)
a7f25a84 12818 error ("%s", err_msg);
3df3a985
PFC
12819
12820 size_left = buf.size () - strlen (buf.data ());
12821
12822 /* Two bytes to encode each aexpr byte, plus the terminating
12823 null byte. */
12824 if (aexpr->len * 2 + 1 > size_left)
a7f25a84 12825 error ("%s", err_msg);
3df3a985
PFC
12826
12827 pkt = buf.data () + strlen (buf.data ());
12828
b44ec619 12829 for (int ndx = 0; ndx < aexpr->len; ++ndx)
e8ba3115
YQ
12830 pkt = pack_hex_byte (pkt, aexpr->buf[ndx]);
12831 *pkt = '\0';
35b1e5cc 12832 }
e8ba3115
YQ
12833 else
12834 warning (_("Target does not support conditional tracepoints, "
12835 "ignoring tp %d cond"), b->number);
12836 }
35b1e5cc 12837
d9b3f62e 12838 if (b->commands || *default_collect)
3df3a985
PFC
12839 {
12840 size_left = buf.size () - strlen (buf.data ());
12841
12842 ret = snprintf (buf.data () + strlen (buf.data ()),
12843 size_left, "-");
12844
12845 if (ret < 0 || ret >= size_left)
a7f25a84 12846 error ("%s", err_msg);
3df3a985
PFC
12847 }
12848
12849 putpkt (buf.data ());
b6bb3468 12850 remote_get_noisy_reply ();
8d64371b 12851 if (strcmp (rs->buf.data (), "OK"))
e8ba3115 12852 error (_("Target does not support tracepoints."));
35b1e5cc 12853
e8ba3115 12854 /* do_single_steps (t); */
b44ec619
SM
12855 for (auto action_it = tdp_actions.begin ();
12856 action_it != tdp_actions.end (); action_it++)
e8ba3115 12857 {
b44ec619
SM
12858 QUIT; /* Allow user to bail out with ^C. */
12859
aa6f3694 12860 bool has_more = ((action_it + 1) != tdp_actions.end ()
b44ec619
SM
12861 || !stepping_actions.empty ());
12862
3df3a985
PFC
12863 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%c",
12864 b->number, addrbuf, /* address */
12865 action_it->c_str (),
12866 has_more ? '-' : 0);
12867
12868 if (ret < 0 || ret >= buf.size ())
a7f25a84 12869 error ("%s", err_msg);
3df3a985
PFC
12870
12871 putpkt (buf.data ());
b44ec619 12872 remote_get_noisy_reply ();
8d64371b 12873 if (strcmp (rs->buf.data (), "OK"))
b44ec619 12874 error (_("Error on target while setting tracepoints."));
e8ba3115 12875 }
409873ef 12876
05abfc39
PFC
12877 for (auto action_it = stepping_actions.begin ();
12878 action_it != stepping_actions.end (); action_it++)
12879 {
12880 QUIT; /* Allow user to bail out with ^C. */
12881
12882 bool is_first = action_it == stepping_actions.begin ();
aa6f3694 12883 bool has_more = (action_it + 1) != stepping_actions.end ();
05abfc39 12884
3df3a985
PFC
12885 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%s%s",
12886 b->number, addrbuf, /* address */
12887 is_first ? "S" : "",
12888 action_it->c_str (),
12889 has_more ? "-" : "");
12890
12891 if (ret < 0 || ret >= buf.size ())
a7f25a84 12892 error ("%s", err_msg);
3df3a985
PFC
12893
12894 putpkt (buf.data ());
05abfc39 12895 remote_get_noisy_reply ();
8d64371b 12896 if (strcmp (rs->buf.data (), "OK"))
05abfc39
PFC
12897 error (_("Error on target while setting tracepoints."));
12898 }
b44ec619 12899
4082afcc 12900 if (packet_support (PACKET_TracepointSource) == PACKET_ENABLE)
e8ba3115 12901 {
f00aae0f 12902 if (b->location != NULL)
409873ef 12903 {
3df3a985
PFC
12904 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
12905
12906 if (ret < 0 || ret >= buf.size ())
a7f25a84 12907 error ("%s", err_msg);
3df3a985 12908
f00aae0f 12909 encode_source_string (b->number, loc->address, "at",
d28cd78a 12910 event_location_to_string (b->location.get ()),
3df3a985
PFC
12911 buf.data () + strlen (buf.data ()),
12912 buf.size () - strlen (buf.data ()));
12913 putpkt (buf.data ());
b6bb3468 12914 remote_get_noisy_reply ();
8d64371b 12915 if (strcmp (rs->buf.data (), "OK"))
e8ba3115 12916 warning (_("Target does not support source download."));
409873ef 12917 }
e8ba3115
YQ
12918 if (b->cond_string)
12919 {
3df3a985
PFC
12920 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
12921
12922 if (ret < 0 || ret >= buf.size ())
a7f25a84 12923 error ("%s", err_msg);
3df3a985 12924
e8ba3115 12925 encode_source_string (b->number, loc->address,
3df3a985
PFC
12926 "cond", b->cond_string,
12927 buf.data () + strlen (buf.data ()),
12928 buf.size () - strlen (buf.data ()));
12929 putpkt (buf.data ());
b6bb3468 12930 remote_get_noisy_reply ();
8d64371b 12931 if (strcmp (rs->buf.data (), "OK"))
e8ba3115
YQ
12932 warning (_("Target does not support source download."));
12933 }
12934 remote_download_command_source (b->number, loc->address,
12935 breakpoint_commands (b));
35b1e5cc 12936 }
35b1e5cc
SS
12937}
12938
57810aa7 12939bool
f6ac5f3d 12940remote_target::can_download_tracepoint ()
1e4d1764 12941{
1e51243a
PA
12942 struct remote_state *rs = get_remote_state ();
12943 struct trace_status *ts;
12944 int status;
12945
12946 /* Don't try to install tracepoints until we've relocated our
12947 symbols, and fetched and merged the target's tracepoint list with
12948 ours. */
12949 if (rs->starting_up)
57810aa7 12950 return false;
1e51243a
PA
12951
12952 ts = current_trace_status ();
f6ac5f3d 12953 status = get_trace_status (ts);
1e4d1764
YQ
12954
12955 if (status == -1 || !ts->running_known || !ts->running)
57810aa7 12956 return false;
1e4d1764
YQ
12957
12958 /* If we are in a tracing experiment, but remote stub doesn't support
12959 installing tracepoint in trace, we have to return. */
12960 if (!remote_supports_install_in_trace ())
57810aa7 12961 return false;
1e4d1764 12962
57810aa7 12963 return true;
1e4d1764
YQ
12964}
12965
12966
f6ac5f3d
PA
12967void
12968remote_target::download_trace_state_variable (const trace_state_variable &tsv)
35b1e5cc
SS
12969{
12970 struct remote_state *rs = get_remote_state ();
00bf0b85 12971 char *p;
35b1e5cc 12972
8d64371b 12973 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDV:%x:%s:%x:",
c252925c
SM
12974 tsv.number, phex ((ULONGEST) tsv.initial_value, 8),
12975 tsv.builtin);
8d64371b
TT
12976 p = rs->buf.data () + strlen (rs->buf.data ());
12977 if ((p - rs->buf.data ()) + tsv.name.length () * 2
12978 >= get_remote_packet_size ())
00bf0b85 12979 error (_("Trace state variable name too long for tsv definition packet"));
c252925c 12980 p += 2 * bin2hex ((gdb_byte *) (tsv.name.data ()), p, tsv.name.length ());
00bf0b85 12981 *p++ = '\0';
35b1e5cc 12982 putpkt (rs->buf);
b6bb3468 12983 remote_get_noisy_reply ();
8d64371b 12984 if (rs->buf[0] == '\0')
ad91cd99 12985 error (_("Target does not support this command."));
8d64371b 12986 if (strcmp (rs->buf.data (), "OK") != 0)
ad91cd99 12987 error (_("Error on target while downloading trace state variable."));
35b1e5cc
SS
12988}
12989
f6ac5f3d
PA
12990void
12991remote_target::enable_tracepoint (struct bp_location *location)
d248b706
KY
12992{
12993 struct remote_state *rs = get_remote_state ();
12994 char addr_buf[40];
12995
12996 sprintf_vma (addr_buf, location->address);
8d64371b 12997 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTEnable:%x:%s",
bba74b36 12998 location->owner->number, addr_buf);
d248b706 12999 putpkt (rs->buf);
b6bb3468 13000 remote_get_noisy_reply ();
8d64371b 13001 if (rs->buf[0] == '\0')
d248b706 13002 error (_("Target does not support enabling tracepoints while a trace run is ongoing."));
8d64371b 13003 if (strcmp (rs->buf.data (), "OK") != 0)
d248b706
KY
13004 error (_("Error on target while enabling tracepoint."));
13005}
13006
f6ac5f3d
PA
13007void
13008remote_target::disable_tracepoint (struct bp_location *location)
d248b706
KY
13009{
13010 struct remote_state *rs = get_remote_state ();
13011 char addr_buf[40];
13012
13013 sprintf_vma (addr_buf, location->address);
8d64371b 13014 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDisable:%x:%s",
bba74b36 13015 location->owner->number, addr_buf);
d248b706 13016 putpkt (rs->buf);
b6bb3468 13017 remote_get_noisy_reply ();
8d64371b 13018 if (rs->buf[0] == '\0')
d248b706 13019 error (_("Target does not support disabling tracepoints while a trace run is ongoing."));
8d64371b 13020 if (strcmp (rs->buf.data (), "OK") != 0)
d248b706
KY
13021 error (_("Error on target while disabling tracepoint."));
13022}
13023
f6ac5f3d
PA
13024void
13025remote_target::trace_set_readonly_regions ()
35b1e5cc
SS
13026{
13027 asection *s;
13028 bfd_size_type size;
608bcef2 13029 bfd_vma vma;
35b1e5cc 13030 int anysecs = 0;
c2fa21f1 13031 int offset = 0;
35b1e5cc
SS
13032
13033 if (!exec_bfd)
13034 return; /* No information to give. */
13035
b6bb3468
PA
13036 struct remote_state *rs = get_remote_state ();
13037
8d64371b
TT
13038 strcpy (rs->buf.data (), "QTro");
13039 offset = strlen (rs->buf.data ());
35b1e5cc
SS
13040 for (s = exec_bfd->sections; s; s = s->next)
13041 {
13042 char tmp1[40], tmp2[40];
c2fa21f1 13043 int sec_length;
35b1e5cc
SS
13044
13045 if ((s->flags & SEC_LOAD) == 0 ||
0df8b418 13046 /* (s->flags & SEC_CODE) == 0 || */
35b1e5cc
SS
13047 (s->flags & SEC_READONLY) == 0)
13048 continue;
13049
13050 anysecs = 1;
fd361982
AM
13051 vma = bfd_section_vma (s);
13052 size = bfd_section_size (s);
608bcef2
HZ
13053 sprintf_vma (tmp1, vma);
13054 sprintf_vma (tmp2, vma + size);
c2fa21f1 13055 sec_length = 1 + strlen (tmp1) + 1 + strlen (tmp2);
8d64371b 13056 if (offset + sec_length + 1 > rs->buf.size ())
c2fa21f1 13057 {
4082afcc 13058 if (packet_support (PACKET_qXfer_traceframe_info) != PACKET_ENABLE)
864ac8a7 13059 warning (_("\
c2fa21f1
HZ
13060Too many sections for read-only sections definition packet."));
13061 break;
13062 }
8d64371b 13063 xsnprintf (rs->buf.data () + offset, rs->buf.size () - offset, ":%s,%s",
bba74b36 13064 tmp1, tmp2);
c2fa21f1 13065 offset += sec_length;
35b1e5cc
SS
13066 }
13067 if (anysecs)
13068 {
b6bb3468 13069 putpkt (rs->buf);
8d64371b 13070 getpkt (&rs->buf, 0);
35b1e5cc
SS
13071 }
13072}
13073
f6ac5f3d
PA
13074void
13075remote_target::trace_start ()
35b1e5cc 13076{
b6bb3468
PA
13077 struct remote_state *rs = get_remote_state ();
13078
35b1e5cc 13079 putpkt ("QTStart");
b6bb3468 13080 remote_get_noisy_reply ();
8d64371b 13081 if (rs->buf[0] == '\0')
ad91cd99 13082 error (_("Target does not support this command."));
8d64371b
TT
13083 if (strcmp (rs->buf.data (), "OK") != 0)
13084 error (_("Bogus reply from target: %s"), rs->buf.data ());
35b1e5cc
SS
13085}
13086
f6ac5f3d
PA
13087int
13088remote_target::get_trace_status (struct trace_status *ts)
35b1e5cc 13089{
953b98d1 13090 /* Initialize it just to avoid a GCC false warning. */
f652de6f 13091 char *p = NULL;
bd3eecc3 13092 enum packet_result result;
b6bb3468 13093 struct remote_state *rs = get_remote_state ();
bd3eecc3 13094
4082afcc 13095 if (packet_support (PACKET_qTStatus) == PACKET_DISABLE)
bd3eecc3 13096 return -1;
a744cf53 13097
7b9a15e1 13098 /* FIXME we need to get register block size some other way. */
5cd63fda 13099 trace_regblock_size
9d6eea31 13100 = rs->get_remote_arch_state (target_gdbarch ())->sizeof_g_packet;
00bf0b85 13101
049dc89b
JK
13102 putpkt ("qTStatus");
13103
a70b8144 13104 try
67f41397 13105 {
b6bb3468 13106 p = remote_get_noisy_reply ();
67f41397 13107 }
230d2906 13108 catch (const gdb_exception_error &ex)
67f41397 13109 {
598d3636
JK
13110 if (ex.error != TARGET_CLOSE_ERROR)
13111 {
13112 exception_fprintf (gdb_stderr, ex, "qTStatus: ");
13113 return -1;
13114 }
eedc3f4f 13115 throw;
67f41397 13116 }
00bf0b85 13117
bd3eecc3
PA
13118 result = packet_ok (p, &remote_protocol_packets[PACKET_qTStatus]);
13119
00bf0b85 13120 /* If the remote target doesn't do tracing, flag it. */
bd3eecc3 13121 if (result == PACKET_UNKNOWN)
00bf0b85 13122 return -1;
35b1e5cc 13123
00bf0b85 13124 /* We're working with a live target. */
f5911ea1 13125 ts->filename = NULL;
00bf0b85 13126
00bf0b85 13127 if (*p++ != 'T')
8d64371b 13128 error (_("Bogus trace status reply from target: %s"), rs->buf.data ());
35b1e5cc 13129
84cebc4a
YQ
13130 /* Function 'parse_trace_status' sets default value of each field of
13131 'ts' at first, so we don't have to do it here. */
00bf0b85
SS
13132 parse_trace_status (p, ts);
13133
13134 return ts->running;
35b1e5cc
SS
13135}
13136
f6ac5f3d
PA
13137void
13138remote_target::get_tracepoint_status (struct breakpoint *bp,
13139 struct uploaded_tp *utp)
f196051f
SS
13140{
13141 struct remote_state *rs = get_remote_state ();
f196051f
SS
13142 char *reply;
13143 struct bp_location *loc;
13144 struct tracepoint *tp = (struct tracepoint *) bp;
bba74b36 13145 size_t size = get_remote_packet_size ();
f196051f
SS
13146
13147 if (tp)
13148 {
c1fc2657 13149 tp->hit_count = 0;
f196051f 13150 tp->traceframe_usage = 0;
c1fc2657 13151 for (loc = tp->loc; loc; loc = loc->next)
f196051f
SS
13152 {
13153 /* If the tracepoint was never downloaded, don't go asking for
13154 any status. */
13155 if (tp->number_on_target == 0)
13156 continue;
8d64371b 13157 xsnprintf (rs->buf.data (), size, "qTP:%x:%s", tp->number_on_target,
bba74b36 13158 phex_nz (loc->address, 0));
f196051f 13159 putpkt (rs->buf);
b6bb3468 13160 reply = remote_get_noisy_reply ();
f196051f
SS
13161 if (reply && *reply)
13162 {
13163 if (*reply == 'V')
13164 parse_tracepoint_status (reply + 1, bp, utp);
13165 }
13166 }
13167 }
13168 else if (utp)
13169 {
13170 utp->hit_count = 0;
13171 utp->traceframe_usage = 0;
8d64371b 13172 xsnprintf (rs->buf.data (), size, "qTP:%x:%s", utp->number,
bba74b36 13173 phex_nz (utp->addr, 0));
f196051f 13174 putpkt (rs->buf);
b6bb3468 13175 reply = remote_get_noisy_reply ();
f196051f
SS
13176 if (reply && *reply)
13177 {
13178 if (*reply == 'V')
13179 parse_tracepoint_status (reply + 1, bp, utp);
13180 }
13181 }
13182}
13183
f6ac5f3d
PA
13184void
13185remote_target::trace_stop ()
35b1e5cc 13186{
b6bb3468
PA
13187 struct remote_state *rs = get_remote_state ();
13188
35b1e5cc 13189 putpkt ("QTStop");
b6bb3468 13190 remote_get_noisy_reply ();
8d64371b 13191 if (rs->buf[0] == '\0')
ad91cd99 13192 error (_("Target does not support this command."));
8d64371b
TT
13193 if (strcmp (rs->buf.data (), "OK") != 0)
13194 error (_("Bogus reply from target: %s"), rs->buf.data ());
35b1e5cc
SS
13195}
13196
f6ac5f3d
PA
13197int
13198remote_target::trace_find (enum trace_find_type type, int num,
13199 CORE_ADDR addr1, CORE_ADDR addr2,
13200 int *tpp)
35b1e5cc
SS
13201{
13202 struct remote_state *rs = get_remote_state ();
8d64371b 13203 char *endbuf = rs->buf.data () + get_remote_packet_size ();
35b1e5cc
SS
13204 char *p, *reply;
13205 int target_frameno = -1, target_tracept = -1;
13206
e6e4e701
PA
13207 /* Lookups other than by absolute frame number depend on the current
13208 trace selected, so make sure it is correct on the remote end
13209 first. */
13210 if (type != tfind_number)
13211 set_remote_traceframe ();
13212
8d64371b 13213 p = rs->buf.data ();
35b1e5cc
SS
13214 strcpy (p, "QTFrame:");
13215 p = strchr (p, '\0');
13216 switch (type)
13217 {
13218 case tfind_number:
bba74b36 13219 xsnprintf (p, endbuf - p, "%x", num);
35b1e5cc
SS
13220 break;
13221 case tfind_pc:
bba74b36 13222 xsnprintf (p, endbuf - p, "pc:%s", phex_nz (addr1, 0));
35b1e5cc
SS
13223 break;
13224 case tfind_tp:
bba74b36 13225 xsnprintf (p, endbuf - p, "tdp:%x", num);
35b1e5cc
SS
13226 break;
13227 case tfind_range:
bba74b36
YQ
13228 xsnprintf (p, endbuf - p, "range:%s:%s", phex_nz (addr1, 0),
13229 phex_nz (addr2, 0));
35b1e5cc
SS
13230 break;
13231 case tfind_outside:
bba74b36
YQ
13232 xsnprintf (p, endbuf - p, "outside:%s:%s", phex_nz (addr1, 0),
13233 phex_nz (addr2, 0));
35b1e5cc
SS
13234 break;
13235 default:
9b20d036 13236 error (_("Unknown trace find type %d"), type);
35b1e5cc
SS
13237 }
13238
13239 putpkt (rs->buf);
b6bb3468 13240 reply = remote_get_noisy_reply ();
ad91cd99
PA
13241 if (*reply == '\0')
13242 error (_("Target does not support this command."));
35b1e5cc
SS
13243
13244 while (reply && *reply)
13245 switch (*reply)
13246 {
13247 case 'F':
f197e0f1
VP
13248 p = ++reply;
13249 target_frameno = (int) strtol (p, &reply, 16);
13250 if (reply == p)
13251 error (_("Unable to parse trace frame number"));
e6e4e701
PA
13252 /* Don't update our remote traceframe number cache on failure
13253 to select a remote traceframe. */
f197e0f1
VP
13254 if (target_frameno == -1)
13255 return -1;
35b1e5cc
SS
13256 break;
13257 case 'T':
f197e0f1
VP
13258 p = ++reply;
13259 target_tracept = (int) strtol (p, &reply, 16);
13260 if (reply == p)
13261 error (_("Unable to parse tracepoint number"));
35b1e5cc
SS
13262 break;
13263 case 'O': /* "OK"? */
13264 if (reply[1] == 'K' && reply[2] == '\0')
13265 reply += 2;
13266 else
13267 error (_("Bogus reply from target: %s"), reply);
13268 break;
13269 default:
13270 error (_("Bogus reply from target: %s"), reply);
13271 }
13272 if (tpp)
13273 *tpp = target_tracept;
e6e4e701 13274
262e1174 13275 rs->remote_traceframe_number = target_frameno;
35b1e5cc
SS
13276 return target_frameno;
13277}
13278
57810aa7 13279bool
f6ac5f3d 13280remote_target::get_trace_state_variable_value (int tsvnum, LONGEST *val)
35b1e5cc
SS
13281{
13282 struct remote_state *rs = get_remote_state ();
13283 char *reply;
13284 ULONGEST uval;
13285
e6e4e701
PA
13286 set_remote_traceframe ();
13287
8d64371b 13288 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTV:%x", tsvnum);
35b1e5cc 13289 putpkt (rs->buf);
b6bb3468 13290 reply = remote_get_noisy_reply ();
35b1e5cc
SS
13291 if (reply && *reply)
13292 {
13293 if (*reply == 'V')
13294 {
13295 unpack_varlen_hex (reply + 1, &uval);
13296 *val = (LONGEST) uval;
57810aa7 13297 return true;
35b1e5cc
SS
13298 }
13299 }
57810aa7 13300 return false;
35b1e5cc
SS
13301}
13302
f6ac5f3d
PA
13303int
13304remote_target::save_trace_data (const char *filename)
00bf0b85
SS
13305{
13306 struct remote_state *rs = get_remote_state ();
13307 char *p, *reply;
13308
8d64371b 13309 p = rs->buf.data ();
00bf0b85
SS
13310 strcpy (p, "QTSave:");
13311 p += strlen (p);
8d64371b
TT
13312 if ((p - rs->buf.data ()) + strlen (filename) * 2
13313 >= get_remote_packet_size ())
00bf0b85 13314 error (_("Remote file name too long for trace save packet"));
9f1b45b0 13315 p += 2 * bin2hex ((gdb_byte *) filename, p, strlen (filename));
00bf0b85
SS
13316 *p++ = '\0';
13317 putpkt (rs->buf);
b6bb3468 13318 reply = remote_get_noisy_reply ();
d6c5869f 13319 if (*reply == '\0')
ad91cd99
PA
13320 error (_("Target does not support this command."));
13321 if (strcmp (reply, "OK") != 0)
13322 error (_("Bogus reply from target: %s"), reply);
00bf0b85
SS
13323 return 0;
13324}
13325
13326/* This is basically a memory transfer, but needs to be its own packet
13327 because we don't know how the target actually organizes its trace
13328 memory, plus we want to be able to ask for as much as possible, but
13329 not be unhappy if we don't get as much as we ask for. */
13330
f6ac5f3d
PA
13331LONGEST
13332remote_target::get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len)
00bf0b85
SS
13333{
13334 struct remote_state *rs = get_remote_state ();
13335 char *reply;
13336 char *p;
13337 int rslt;
13338
8d64371b 13339 p = rs->buf.data ();
00bf0b85
SS
13340 strcpy (p, "qTBuffer:");
13341 p += strlen (p);
13342 p += hexnumstr (p, offset);
13343 *p++ = ',';
13344 p += hexnumstr (p, len);
13345 *p++ = '\0';
13346
13347 putpkt (rs->buf);
b6bb3468 13348 reply = remote_get_noisy_reply ();
00bf0b85
SS
13349 if (reply && *reply)
13350 {
13351 /* 'l' by itself means we're at the end of the buffer and
13352 there is nothing more to get. */
13353 if (*reply == 'l')
13354 return 0;
13355
13356 /* Convert the reply into binary. Limit the number of bytes to
13357 convert according to our passed-in buffer size, rather than
13358 what was returned in the packet; if the target is
13359 unexpectedly generous and gives us a bigger reply than we
13360 asked for, we don't want to crash. */
b6bb3468 13361 rslt = hex2bin (reply, buf, len);
00bf0b85
SS
13362 return rslt;
13363 }
13364
13365 /* Something went wrong, flag as an error. */
13366 return -1;
13367}
13368
f6ac5f3d
PA
13369void
13370remote_target::set_disconnected_tracing (int val)
35b1e5cc
SS
13371{
13372 struct remote_state *rs = get_remote_state ();
13373
4082afcc 13374 if (packet_support (PACKET_DisconnectedTracing_feature) == PACKET_ENABLE)
33da3f1c 13375 {
ad91cd99
PA
13376 char *reply;
13377
8d64371b
TT
13378 xsnprintf (rs->buf.data (), get_remote_packet_size (),
13379 "QTDisconnected:%x", val);
33da3f1c 13380 putpkt (rs->buf);
b6bb3468 13381 reply = remote_get_noisy_reply ();
ad91cd99 13382 if (*reply == '\0')
33da3f1c 13383 error (_("Target does not support this command."));
ad91cd99
PA
13384 if (strcmp (reply, "OK") != 0)
13385 error (_("Bogus reply from target: %s"), reply);
33da3f1c
SS
13386 }
13387 else if (val)
13388 warning (_("Target does not support disconnected tracing."));
35b1e5cc
SS
13389}
13390
f6ac5f3d
PA
13391int
13392remote_target::core_of_thread (ptid_t ptid)
dc146f7c
VP
13393{
13394 struct thread_info *info = find_thread_ptid (ptid);
a744cf53 13395
7aabaf9d
SM
13396 if (info != NULL && info->priv != NULL)
13397 return get_remote_thread_info (info)->core;
13398
dc146f7c
VP
13399 return -1;
13400}
13401
f6ac5f3d
PA
13402void
13403remote_target::set_circular_trace_buffer (int val)
4daf5ac0
SS
13404{
13405 struct remote_state *rs = get_remote_state ();
ad91cd99 13406 char *reply;
4daf5ac0 13407
8d64371b
TT
13408 xsnprintf (rs->buf.data (), get_remote_packet_size (),
13409 "QTBuffer:circular:%x", val);
4daf5ac0 13410 putpkt (rs->buf);
b6bb3468 13411 reply = remote_get_noisy_reply ();
ad91cd99 13412 if (*reply == '\0')
4daf5ac0 13413 error (_("Target does not support this command."));
ad91cd99
PA
13414 if (strcmp (reply, "OK") != 0)
13415 error (_("Bogus reply from target: %s"), reply);
4daf5ac0
SS
13416}
13417
f6ac5f3d
PA
13418traceframe_info_up
13419remote_target::traceframe_info ()
b3b9301e 13420{
9018be22 13421 gdb::optional<gdb::char_vector> text
8b88a78e 13422 = target_read_stralloc (current_top_target (), TARGET_OBJECT_TRACEFRAME_INFO,
b7b030ad 13423 NULL);
9018be22
SM
13424 if (text)
13425 return parse_traceframe_info (text->data ());
b3b9301e
PA
13426
13427 return NULL;
13428}
13429
405f8e94
SS
13430/* Handle the qTMinFTPILen packet. Returns the minimum length of
13431 instruction on which a fast tracepoint may be placed. Returns -1
13432 if the packet is not supported, and 0 if the minimum instruction
13433 length is unknown. */
13434
f6ac5f3d
PA
13435int
13436remote_target::get_min_fast_tracepoint_insn_len ()
405f8e94
SS
13437{
13438 struct remote_state *rs = get_remote_state ();
13439 char *reply;
13440
e886a173
PA
13441 /* If we're not debugging a process yet, the IPA can't be
13442 loaded. */
13443 if (!target_has_execution)
13444 return 0;
13445
13446 /* Make sure the remote is pointing at the right process. */
13447 set_general_process ();
13448
8d64371b 13449 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTMinFTPILen");
405f8e94 13450 putpkt (rs->buf);
b6bb3468 13451 reply = remote_get_noisy_reply ();
405f8e94
SS
13452 if (*reply == '\0')
13453 return -1;
13454 else
13455 {
13456 ULONGEST min_insn_len;
13457
13458 unpack_varlen_hex (reply, &min_insn_len);
13459
13460 return (int) min_insn_len;
13461 }
13462}
13463
f6ac5f3d
PA
13464void
13465remote_target::set_trace_buffer_size (LONGEST val)
f6f899bf 13466{
4082afcc 13467 if (packet_support (PACKET_QTBuffer_size) != PACKET_DISABLE)
f6f899bf
HAQ
13468 {
13469 struct remote_state *rs = get_remote_state ();
8d64371b
TT
13470 char *buf = rs->buf.data ();
13471 char *endbuf = buf + get_remote_packet_size ();
f6f899bf
HAQ
13472 enum packet_result result;
13473
13474 gdb_assert (val >= 0 || val == -1);
13475 buf += xsnprintf (buf, endbuf - buf, "QTBuffer:size:");
13476 /* Send -1 as literal "-1" to avoid host size dependency. */
13477 if (val < 0)
13478 {
13479 *buf++ = '-';
13480 buf += hexnumstr (buf, (ULONGEST) -val);
13481 }
13482 else
13483 buf += hexnumstr (buf, (ULONGEST) val);
13484
13485 putpkt (rs->buf);
b6bb3468 13486 remote_get_noisy_reply ();
f6f899bf
HAQ
13487 result = packet_ok (rs->buf,
13488 &remote_protocol_packets[PACKET_QTBuffer_size]);
13489
13490 if (result != PACKET_OK)
8d64371b 13491 warning (_("Bogus reply from target: %s"), rs->buf.data ());
f6f899bf
HAQ
13492 }
13493}
13494
57810aa7 13495bool
f6ac5f3d
PA
13496remote_target::set_trace_notes (const char *user, const char *notes,
13497 const char *stop_notes)
f196051f
SS
13498{
13499 struct remote_state *rs = get_remote_state ();
13500 char *reply;
8d64371b
TT
13501 char *buf = rs->buf.data ();
13502 char *endbuf = buf + get_remote_packet_size ();
f196051f
SS
13503 int nbytes;
13504
13505 buf += xsnprintf (buf, endbuf - buf, "QTNotes:");
13506 if (user)
13507 {
13508 buf += xsnprintf (buf, endbuf - buf, "user:");
9f1b45b0 13509 nbytes = bin2hex ((gdb_byte *) user, buf, strlen (user));
f196051f
SS
13510 buf += 2 * nbytes;
13511 *buf++ = ';';
13512 }
13513 if (notes)
13514 {
13515 buf += xsnprintf (buf, endbuf - buf, "notes:");
9f1b45b0 13516 nbytes = bin2hex ((gdb_byte *) notes, buf, strlen (notes));
f196051f
SS
13517 buf += 2 * nbytes;
13518 *buf++ = ';';
13519 }
13520 if (stop_notes)
13521 {
13522 buf += xsnprintf (buf, endbuf - buf, "tstop:");
9f1b45b0 13523 nbytes = bin2hex ((gdb_byte *) stop_notes, buf, strlen (stop_notes));
f196051f
SS
13524 buf += 2 * nbytes;
13525 *buf++ = ';';
13526 }
13527 /* Ensure the buffer is terminated. */
13528 *buf = '\0';
13529
13530 putpkt (rs->buf);
b6bb3468 13531 reply = remote_get_noisy_reply ();
f196051f 13532 if (*reply == '\0')
57810aa7 13533 return false;
f196051f
SS
13534
13535 if (strcmp (reply, "OK") != 0)
13536 error (_("Bogus reply from target: %s"), reply);
13537
57810aa7 13538 return true;
f196051f
SS
13539}
13540
57810aa7
PA
13541bool
13542remote_target::use_agent (bool use)
d1feda86 13543{
4082afcc 13544 if (packet_support (PACKET_QAgent) != PACKET_DISABLE)
d1feda86
YQ
13545 {
13546 struct remote_state *rs = get_remote_state ();
13547
13548 /* If the stub supports QAgent. */
8d64371b 13549 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QAgent:%d", use);
d1feda86 13550 putpkt (rs->buf);
8d64371b 13551 getpkt (&rs->buf, 0);
d1feda86 13552
8d64371b 13553 if (strcmp (rs->buf.data (), "OK") == 0)
d1feda86 13554 {
f6ac5f3d 13555 ::use_agent = use;
57810aa7 13556 return true;
d1feda86
YQ
13557 }
13558 }
13559
57810aa7 13560 return false;
d1feda86
YQ
13561}
13562
57810aa7 13563bool
f6ac5f3d 13564remote_target::can_use_agent ()
d1feda86 13565{
4082afcc 13566 return (packet_support (PACKET_QAgent) != PACKET_DISABLE);
d1feda86
YQ
13567}
13568
9accd112
MM
13569struct btrace_target_info
13570{
13571 /* The ptid of the traced thread. */
13572 ptid_t ptid;
f4abbc16
MM
13573
13574 /* The obtained branch trace configuration. */
13575 struct btrace_config conf;
9accd112
MM
13576};
13577
f4abbc16
MM
13578/* Reset our idea of our target's btrace configuration. */
13579
13580static void
6b8edb51 13581remote_btrace_reset (remote_state *rs)
f4abbc16 13582{
f4abbc16
MM
13583 memset (&rs->btrace_config, 0, sizeof (rs->btrace_config));
13584}
13585
f4abbc16
MM
13586/* Synchronize the configuration with the target. */
13587
6b8edb51
PA
13588void
13589remote_target::btrace_sync_conf (const btrace_config *conf)
f4abbc16 13590{
d33501a5
MM
13591 struct packet_config *packet;
13592 struct remote_state *rs;
13593 char *buf, *pos, *endbuf;
13594
13595 rs = get_remote_state ();
8d64371b 13596 buf = rs->buf.data ();
d33501a5
MM
13597 endbuf = buf + get_remote_packet_size ();
13598
13599 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_bts_size];
13600 if (packet_config_support (packet) == PACKET_ENABLE
13601 && conf->bts.size != rs->btrace_config.bts.size)
13602 {
13603 pos = buf;
13604 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13605 conf->bts.size);
13606
13607 putpkt (buf);
8d64371b 13608 getpkt (&rs->buf, 0);
d33501a5
MM
13609
13610 if (packet_ok (buf, packet) == PACKET_ERROR)
13611 {
13612 if (buf[0] == 'E' && buf[1] == '.')
13613 error (_("Failed to configure the BTS buffer size: %s"), buf + 2);
13614 else
13615 error (_("Failed to configure the BTS buffer size."));
13616 }
13617
13618 rs->btrace_config.bts.size = conf->bts.size;
13619 }
b20a6524
MM
13620
13621 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_pt_size];
13622 if (packet_config_support (packet) == PACKET_ENABLE
13623 && conf->pt.size != rs->btrace_config.pt.size)
13624 {
13625 pos = buf;
13626 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13627 conf->pt.size);
13628
13629 putpkt (buf);
8d64371b 13630 getpkt (&rs->buf, 0);
b20a6524
MM
13631
13632 if (packet_ok (buf, packet) == PACKET_ERROR)
13633 {
13634 if (buf[0] == 'E' && buf[1] == '.')
13635 error (_("Failed to configure the trace buffer size: %s"), buf + 2);
13636 else
13637 error (_("Failed to configure the trace buffer size."));
13638 }
13639
13640 rs->btrace_config.pt.size = conf->pt.size;
13641 }
f4abbc16
MM
13642}
13643
13644/* Read the current thread's btrace configuration from the target and
13645 store it into CONF. */
13646
13647static void
13648btrace_read_config (struct btrace_config *conf)
13649{
9018be22 13650 gdb::optional<gdb::char_vector> xml
8b88a78e 13651 = target_read_stralloc (current_top_target (), TARGET_OBJECT_BTRACE_CONF, "");
9018be22
SM
13652 if (xml)
13653 parse_xml_btrace_conf (conf, xml->data ());
f4abbc16
MM
13654}
13655
c0272db5
TW
13656/* Maybe reopen target btrace. */
13657
6b8edb51
PA
13658void
13659remote_target::remote_btrace_maybe_reopen ()
c0272db5
TW
13660{
13661 struct remote_state *rs = get_remote_state ();
c0272db5 13662 int btrace_target_pushed = 0;
15766370 13663#if !defined (HAVE_LIBIPT)
c0272db5 13664 int warned = 0;
15766370 13665#endif
c0272db5 13666
aedbe3bb
CM
13667 /* Don't bother walking the entirety of the remote thread list when
13668 we know the feature isn't supported by the remote. */
13669 if (packet_support (PACKET_qXfer_btrace_conf) != PACKET_ENABLE)
13670 return;
13671
5ed8105e
PA
13672 scoped_restore_current_thread restore_thread;
13673
08036331 13674 for (thread_info *tp : all_non_exited_threads ())
c0272db5
TW
13675 {
13676 set_general_thread (tp->ptid);
13677
13678 memset (&rs->btrace_config, 0x00, sizeof (struct btrace_config));
13679 btrace_read_config (&rs->btrace_config);
13680
13681 if (rs->btrace_config.format == BTRACE_FORMAT_NONE)
13682 continue;
13683
13684#if !defined (HAVE_LIBIPT)
13685 if (rs->btrace_config.format == BTRACE_FORMAT_PT)
13686 {
13687 if (!warned)
13688 {
13689 warned = 1;
c4e12631
MM
13690 warning (_("Target is recording using Intel Processor Trace "
13691 "but support was disabled at compile time."));
c0272db5
TW
13692 }
13693
13694 continue;
13695 }
13696#endif /* !defined (HAVE_LIBIPT) */
13697
13698 /* Push target, once, but before anything else happens. This way our
13699 changes to the threads will be cleaned up by unpushing the target
13700 in case btrace_read_config () throws. */
13701 if (!btrace_target_pushed)
13702 {
13703 btrace_target_pushed = 1;
13704 record_btrace_push_target ();
13705 printf_filtered (_("Target is recording using %s.\n"),
13706 btrace_format_string (rs->btrace_config.format));
13707 }
13708
13709 tp->btrace.target = XCNEW (struct btrace_target_info);
13710 tp->btrace.target->ptid = tp->ptid;
13711 tp->btrace.target->conf = rs->btrace_config;
13712 }
c0272db5
TW
13713}
13714
9accd112
MM
13715/* Enable branch tracing. */
13716
f6ac5f3d
PA
13717struct btrace_target_info *
13718remote_target::enable_btrace (ptid_t ptid, const struct btrace_config *conf)
9accd112
MM
13719{
13720 struct btrace_target_info *tinfo = NULL;
b20a6524 13721 struct packet_config *packet = NULL;
9accd112 13722 struct remote_state *rs = get_remote_state ();
8d64371b
TT
13723 char *buf = rs->buf.data ();
13724 char *endbuf = buf + get_remote_packet_size ();
9accd112 13725
b20a6524
MM
13726 switch (conf->format)
13727 {
13728 case BTRACE_FORMAT_BTS:
13729 packet = &remote_protocol_packets[PACKET_Qbtrace_bts];
13730 break;
13731
13732 case BTRACE_FORMAT_PT:
13733 packet = &remote_protocol_packets[PACKET_Qbtrace_pt];
13734 break;
13735 }
13736
13737 if (packet == NULL || packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13738 error (_("Target does not support branch tracing."));
13739
f4abbc16
MM
13740 btrace_sync_conf (conf);
13741
9accd112
MM
13742 set_general_thread (ptid);
13743
13744 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
13745 putpkt (rs->buf);
8d64371b 13746 getpkt (&rs->buf, 0);
9accd112
MM
13747
13748 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
13749 {
13750 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
13751 error (_("Could not enable branch tracing for %s: %s"),
a068643d 13752 target_pid_to_str (ptid).c_str (), &rs->buf[2]);
9accd112
MM
13753 else
13754 error (_("Could not enable branch tracing for %s."),
a068643d 13755 target_pid_to_str (ptid).c_str ());
9accd112
MM
13756 }
13757
8d749320 13758 tinfo = XCNEW (struct btrace_target_info);
9accd112
MM
13759 tinfo->ptid = ptid;
13760
f4abbc16
MM
13761 /* If we fail to read the configuration, we lose some information, but the
13762 tracing itself is not impacted. */
a70b8144 13763 try
492d29ea
PA
13764 {
13765 btrace_read_config (&tinfo->conf);
13766 }
230d2906 13767 catch (const gdb_exception_error &err)
492d29ea
PA
13768 {
13769 if (err.message != NULL)
3d6e9d23 13770 warning ("%s", err.what ());
492d29ea 13771 }
f4abbc16 13772
9accd112
MM
13773 return tinfo;
13774}
13775
13776/* Disable branch tracing. */
13777
f6ac5f3d
PA
13778void
13779remote_target::disable_btrace (struct btrace_target_info *tinfo)
9accd112
MM
13780{
13781 struct packet_config *packet = &remote_protocol_packets[PACKET_Qbtrace_off];
13782 struct remote_state *rs = get_remote_state ();
8d64371b
TT
13783 char *buf = rs->buf.data ();
13784 char *endbuf = buf + get_remote_packet_size ();
9accd112 13785
4082afcc 13786 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13787 error (_("Target does not support branch tracing."));
13788
13789 set_general_thread (tinfo->ptid);
13790
13791 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
13792 putpkt (rs->buf);
8d64371b 13793 getpkt (&rs->buf, 0);
9accd112
MM
13794
13795 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
13796 {
13797 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
13798 error (_("Could not disable branch tracing for %s: %s"),
a068643d 13799 target_pid_to_str (tinfo->ptid).c_str (), &rs->buf[2]);
9accd112
MM
13800 else
13801 error (_("Could not disable branch tracing for %s."),
a068643d 13802 target_pid_to_str (tinfo->ptid).c_str ());
9accd112
MM
13803 }
13804
13805 xfree (tinfo);
13806}
13807
13808/* Teardown branch tracing. */
13809
f6ac5f3d
PA
13810void
13811remote_target::teardown_btrace (struct btrace_target_info *tinfo)
9accd112
MM
13812{
13813 /* We must not talk to the target during teardown. */
13814 xfree (tinfo);
13815}
13816
13817/* Read the branch trace. */
13818
f6ac5f3d
PA
13819enum btrace_error
13820remote_target::read_btrace (struct btrace_data *btrace,
13821 struct btrace_target_info *tinfo,
13822 enum btrace_read_type type)
9accd112
MM
13823{
13824 struct packet_config *packet = &remote_protocol_packets[PACKET_qXfer_btrace];
9accd112 13825 const char *annex;
9accd112 13826
4082afcc 13827 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13828 error (_("Target does not support branch tracing."));
13829
13830#if !defined(HAVE_LIBEXPAT)
13831 error (_("Cannot process branch tracing result. XML parsing not supported."));
13832#endif
13833
13834 switch (type)
13835 {
864089d2 13836 case BTRACE_READ_ALL:
9accd112
MM
13837 annex = "all";
13838 break;
864089d2 13839 case BTRACE_READ_NEW:
9accd112
MM
13840 annex = "new";
13841 break;
969c39fb
MM
13842 case BTRACE_READ_DELTA:
13843 annex = "delta";
13844 break;
9accd112
MM
13845 default:
13846 internal_error (__FILE__, __LINE__,
13847 _("Bad branch tracing read type: %u."),
13848 (unsigned int) type);
13849 }
13850
9018be22 13851 gdb::optional<gdb::char_vector> xml
8b88a78e 13852 = target_read_stralloc (current_top_target (), TARGET_OBJECT_BTRACE, annex);
9018be22 13853 if (!xml)
969c39fb 13854 return BTRACE_ERR_UNKNOWN;
9accd112 13855
9018be22 13856 parse_xml_btrace (btrace, xml->data ());
9accd112 13857
969c39fb 13858 return BTRACE_ERR_NONE;
9accd112
MM
13859}
13860
f6ac5f3d
PA
13861const struct btrace_config *
13862remote_target::btrace_conf (const struct btrace_target_info *tinfo)
f4abbc16
MM
13863{
13864 return &tinfo->conf;
13865}
13866
57810aa7 13867bool
f6ac5f3d 13868remote_target::augmented_libraries_svr4_read ()
ced63ec0 13869{
4082afcc
PA
13870 return (packet_support (PACKET_augmented_libraries_svr4_read_feature)
13871 == PACKET_ENABLE);
ced63ec0
GB
13872}
13873
9dd130a0
TT
13874/* Implementation of to_load. */
13875
f6ac5f3d
PA
13876void
13877remote_target::load (const char *name, int from_tty)
9dd130a0
TT
13878{
13879 generic_load (name, from_tty);
13880}
13881
c78fa86a
GB
13882/* Accepts an integer PID; returns a string representing a file that
13883 can be opened on the remote side to get the symbols for the child
13884 process. Returns NULL if the operation is not supported. */
13885
f6ac5f3d
PA
13886char *
13887remote_target::pid_to_exec_file (int pid)
c78fa86a 13888{
9018be22 13889 static gdb::optional<gdb::char_vector> filename;
835205d0
GB
13890 struct inferior *inf;
13891 char *annex = NULL;
c78fa86a
GB
13892
13893 if (packet_support (PACKET_qXfer_exec_file) != PACKET_ENABLE)
13894 return NULL;
13895
835205d0
GB
13896 inf = find_inferior_pid (pid);
13897 if (inf == NULL)
13898 internal_error (__FILE__, __LINE__,
13899 _("not currently attached to process %d"), pid);
13900
13901 if (!inf->fake_pid_p)
13902 {
13903 const int annex_size = 9;
13904
224c3ddb 13905 annex = (char *) alloca (annex_size);
835205d0
GB
13906 xsnprintf (annex, annex_size, "%x", pid);
13907 }
13908
8b88a78e 13909 filename = target_read_stralloc (current_top_target (),
c78fa86a
GB
13910 TARGET_OBJECT_EXEC_FILE, annex);
13911
9018be22 13912 return filename ? filename->data () : nullptr;
c78fa86a
GB
13913}
13914
750ce8d1
YQ
13915/* Implement the to_can_do_single_step target_ops method. */
13916
f6ac5f3d
PA
13917int
13918remote_target::can_do_single_step ()
750ce8d1
YQ
13919{
13920 /* We can only tell whether target supports single step or not by
13921 supported s and S vCont actions if the stub supports vContSupported
13922 feature. If the stub doesn't support vContSupported feature,
13923 we have conservatively to think target doesn't supports single
13924 step. */
13925 if (packet_support (PACKET_vContSupported) == PACKET_ENABLE)
13926 {
13927 struct remote_state *rs = get_remote_state ();
13928
13929 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6b8edb51 13930 remote_vcont_probe ();
750ce8d1
YQ
13931
13932 return rs->supports_vCont.s && rs->supports_vCont.S;
13933 }
13934 else
13935 return 0;
13936}
13937
3a00c802
PA
13938/* Implementation of the to_execution_direction method for the remote
13939 target. */
13940
f6ac5f3d
PA
13941enum exec_direction_kind
13942remote_target::execution_direction ()
3a00c802
PA
13943{
13944 struct remote_state *rs = get_remote_state ();
13945
13946 return rs->last_resume_exec_dir;
13947}
13948
f6327dcb
KB
13949/* Return pointer to the thread_info struct which corresponds to
13950 THREAD_HANDLE (having length HANDLE_LEN). */
13951
f6ac5f3d
PA
13952thread_info *
13953remote_target::thread_handle_to_thread_info (const gdb_byte *thread_handle,
13954 int handle_len,
13955 inferior *inf)
f6327dcb 13956{
08036331 13957 for (thread_info *tp : all_non_exited_threads ())
f6327dcb 13958 {
7aabaf9d 13959 remote_thread_info *priv = get_remote_thread_info (tp);
f6327dcb
KB
13960
13961 if (tp->inf == inf && priv != NULL)
13962 {
7aabaf9d 13963 if (handle_len != priv->thread_handle.size ())
f6327dcb 13964 error (_("Thread handle size mismatch: %d vs %zu (from remote)"),
7aabaf9d
SM
13965 handle_len, priv->thread_handle.size ());
13966 if (memcmp (thread_handle, priv->thread_handle.data (),
f6327dcb
KB
13967 handle_len) == 0)
13968 return tp;
13969 }
13970 }
13971
13972 return NULL;
13973}
13974
3d6c6204
KB
13975gdb::byte_vector
13976remote_target::thread_info_to_thread_handle (struct thread_info *tp)
13977{
13978 remote_thread_info *priv = get_remote_thread_info (tp);
13979 return priv->thread_handle;
13980}
13981
57810aa7 13982bool
f6ac5f3d 13983remote_target::can_async_p ()
6426a772 13984{
5d93a237
TT
13985 struct remote_state *rs = get_remote_state ();
13986
3015c064
SM
13987 /* We don't go async if the user has explicitly prevented it with the
13988 "maint set target-async" command. */
c6ebd6cf 13989 if (!target_async_permitted)
57810aa7 13990 return false;
75c99385 13991
23860348 13992 /* We're async whenever the serial device is. */
5d93a237 13993 return serial_can_async_p (rs->remote_desc);
6426a772
JM
13994}
13995
57810aa7 13996bool
f6ac5f3d 13997remote_target::is_async_p ()
6426a772 13998{
5d93a237
TT
13999 struct remote_state *rs = get_remote_state ();
14000
c6ebd6cf 14001 if (!target_async_permitted)
75c99385 14002 /* We only enable async when the user specifically asks for it. */
57810aa7 14003 return false;
75c99385 14004
23860348 14005 /* We're async whenever the serial device is. */
5d93a237 14006 return serial_is_async_p (rs->remote_desc);
6426a772
JM
14007}
14008
2acceee2
JM
14009/* Pass the SERIAL event on and up to the client. One day this code
14010 will be able to delay notifying the client of an event until the
23860348 14011 point where an entire packet has been received. */
2acceee2 14012
2acceee2
JM
14013static serial_event_ftype remote_async_serial_handler;
14014
6426a772 14015static void
819cc324 14016remote_async_serial_handler (struct serial *scb, void *context)
6426a772 14017{
2acceee2
JM
14018 /* Don't propogate error information up to the client. Instead let
14019 the client find out about the error by querying the target. */
6a3753b3 14020 inferior_event_handler (INF_REG_EVENT, NULL);
2acceee2
JM
14021}
14022
74531fed
PA
14023static void
14024remote_async_inferior_event_handler (gdb_client_data data)
14025{
6b8edb51 14026 inferior_event_handler (INF_REG_EVENT, data);
74531fed
PA
14027}
14028
f6ac5f3d
PA
14029void
14030remote_target::async (int enable)
2acceee2 14031{
5d93a237
TT
14032 struct remote_state *rs = get_remote_state ();
14033
6a3753b3 14034 if (enable)
2acceee2 14035 {
88b496c3 14036 serial_async (rs->remote_desc, remote_async_serial_handler, rs);
b7d2e916
PA
14037
14038 /* If there are pending events in the stop reply queue tell the
14039 event loop to process them. */
953edf2b 14040 if (!rs->stop_reply_queue.empty ())
6b8edb51 14041 mark_async_event_handler (rs->remote_async_inferior_event_token);
6efcd9a8
PA
14042 /* For simplicity, below we clear the pending events token
14043 without remembering whether it is marked, so here we always
14044 mark it. If there's actually no pending notification to
14045 process, this ends up being a no-op (other than a spurious
14046 event-loop wakeup). */
14047 if (target_is_non_stop_p ())
14048 mark_async_event_handler (rs->notif_state->get_pending_events_token);
2acceee2
JM
14049 }
14050 else
b7d2e916
PA
14051 {
14052 serial_async (rs->remote_desc, NULL, NULL);
6efcd9a8
PA
14053 /* If the core is disabling async, it doesn't want to be
14054 disturbed with target events. Clear all async event sources
14055 too. */
6b8edb51 14056 clear_async_event_handler (rs->remote_async_inferior_event_token);
6efcd9a8
PA
14057 if (target_is_non_stop_p ())
14058 clear_async_event_handler (rs->notif_state->get_pending_events_token);
b7d2e916 14059 }
6426a772
JM
14060}
14061
65706a29
PA
14062/* Implementation of the to_thread_events method. */
14063
f6ac5f3d
PA
14064void
14065remote_target::thread_events (int enable)
65706a29
PA
14066{
14067 struct remote_state *rs = get_remote_state ();
14068 size_t size = get_remote_packet_size ();
65706a29
PA
14069
14070 if (packet_support (PACKET_QThreadEvents) == PACKET_DISABLE)
14071 return;
14072
8d64371b 14073 xsnprintf (rs->buf.data (), size, "QThreadEvents:%x", enable ? 1 : 0);
65706a29 14074 putpkt (rs->buf);
8d64371b 14075 getpkt (&rs->buf, 0);
65706a29
PA
14076
14077 switch (packet_ok (rs->buf,
14078 &remote_protocol_packets[PACKET_QThreadEvents]))
14079 {
14080 case PACKET_OK:
8d64371b
TT
14081 if (strcmp (rs->buf.data (), "OK") != 0)
14082 error (_("Remote refused setting thread events: %s"), rs->buf.data ());
65706a29
PA
14083 break;
14084 case PACKET_ERROR:
8d64371b 14085 warning (_("Remote failure reply: %s"), rs->buf.data ());
65706a29
PA
14086 break;
14087 case PACKET_UNKNOWN:
14088 break;
14089 }
14090}
14091
5a2468f5 14092static void
981a3fb3 14093set_remote_cmd (const char *args, int from_tty)
5a2468f5 14094{
635c7e8a 14095 help_list (remote_set_cmdlist, "set remote ", all_commands, gdb_stdout);
5a2468f5
JM
14096}
14097
d471ea57 14098static void
981a3fb3 14099show_remote_cmd (const char *args, int from_tty)
d471ea57 14100{
37a105a1 14101 /* We can't just use cmd_show_list here, because we want to skip
427c3a89 14102 the redundant "show remote Z-packet" and the legacy aliases. */
37a105a1 14103 struct cmd_list_element *list = remote_show_cmdlist;
79a45e25 14104 struct ui_out *uiout = current_uiout;
37a105a1 14105
2e783024 14106 ui_out_emit_tuple tuple_emitter (uiout, "showlist");
37a105a1
DJ
14107 for (; list != NULL; list = list->next)
14108 if (strcmp (list->name, "Z-packet") == 0)
14109 continue;
427c3a89
DJ
14110 else if (list->type == not_set_cmd)
14111 /* Alias commands are exactly like the original, except they
14112 don't have the normal type. */
14113 continue;
14114 else
37a105a1 14115 {
2e783024 14116 ui_out_emit_tuple option_emitter (uiout, "option");
a744cf53 14117
112e8700
SM
14118 uiout->field_string ("name", list->name);
14119 uiout->text (": ");
427c3a89 14120 if (list->type == show_cmd)
f5c4fcd9 14121 do_show_command (NULL, from_tty, list);
427c3a89
DJ
14122 else
14123 cmd_func (list, NULL, from_tty);
37a105a1 14124 }
d471ea57 14125}
5a2468f5 14126
0f71a2f6 14127
23860348 14128/* Function to be called whenever a new objfile (shlib) is detected. */
dc8acb97
MS
14129static void
14130remote_new_objfile (struct objfile *objfile)
14131{
6b8edb51 14132 remote_target *remote = get_current_remote_target ();
5d93a237 14133
6b8edb51
PA
14134 if (remote != NULL) /* Have a remote connection. */
14135 remote->remote_check_symbols ();
dc8acb97
MS
14136}
14137
00bf0b85
SS
14138/* Pull all the tracepoints defined on the target and create local
14139 data structures representing them. We don't want to create real
14140 tracepoints yet, we don't want to mess up the user's existing
14141 collection. */
14142
f6ac5f3d
PA
14143int
14144remote_target::upload_tracepoints (struct uploaded_tp **utpp)
d5551862 14145{
00bf0b85
SS
14146 struct remote_state *rs = get_remote_state ();
14147 char *p;
d5551862 14148
00bf0b85
SS
14149 /* Ask for a first packet of tracepoint definition. */
14150 putpkt ("qTfP");
8d64371b
TT
14151 getpkt (&rs->buf, 0);
14152 p = rs->buf.data ();
00bf0b85 14153 while (*p && *p != 'l')
d5551862 14154 {
00bf0b85
SS
14155 parse_tracepoint_definition (p, utpp);
14156 /* Ask for another packet of tracepoint definition. */
14157 putpkt ("qTsP");
8d64371b
TT
14158 getpkt (&rs->buf, 0);
14159 p = rs->buf.data ();
d5551862 14160 }
00bf0b85 14161 return 0;
d5551862
SS
14162}
14163
f6ac5f3d
PA
14164int
14165remote_target::upload_trace_state_variables (struct uploaded_tsv **utsvp)
d5551862 14166{
00bf0b85 14167 struct remote_state *rs = get_remote_state ();
d5551862 14168 char *p;
d5551862 14169
00bf0b85
SS
14170 /* Ask for a first packet of variable definition. */
14171 putpkt ("qTfV");
8d64371b
TT
14172 getpkt (&rs->buf, 0);
14173 p = rs->buf.data ();
00bf0b85 14174 while (*p && *p != 'l')
d5551862 14175 {
00bf0b85
SS
14176 parse_tsv_definition (p, utsvp);
14177 /* Ask for another packet of variable definition. */
14178 putpkt ("qTsV");
8d64371b
TT
14179 getpkt (&rs->buf, 0);
14180 p = rs->buf.data ();
d5551862 14181 }
00bf0b85 14182 return 0;
d5551862
SS
14183}
14184
c1e36e3e
PA
14185/* The "set/show range-stepping" show hook. */
14186
14187static void
14188show_range_stepping (struct ui_file *file, int from_tty,
14189 struct cmd_list_element *c,
14190 const char *value)
14191{
14192 fprintf_filtered (file,
14193 _("Debugger's willingness to use range stepping "
14194 "is %s.\n"), value);
14195}
14196
6b8edb51
PA
14197/* Return true if the vCont;r action is supported by the remote
14198 stub. */
14199
14200bool
14201remote_target::vcont_r_supported ()
14202{
14203 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
14204 remote_vcont_probe ();
14205
14206 return (packet_support (PACKET_vCont) == PACKET_ENABLE
14207 && get_remote_state ()->supports_vCont.r);
14208}
14209
c1e36e3e
PA
14210/* The "set/show range-stepping" set hook. */
14211
14212static void
eb4c3f4a 14213set_range_stepping (const char *ignore_args, int from_tty,
c1e36e3e
PA
14214 struct cmd_list_element *c)
14215{
6b8edb51
PA
14216 /* When enabling, check whether range stepping is actually supported
14217 by the target, and warn if not. */
c1e36e3e
PA
14218 if (use_range_stepping)
14219 {
6b8edb51
PA
14220 remote_target *remote = get_current_remote_target ();
14221 if (remote == NULL
14222 || !remote->vcont_r_supported ())
14223 warning (_("Range stepping is not supported by the current target"));
c1e36e3e
PA
14224 }
14225}
14226
c906108c 14227void
fba45db2 14228_initialize_remote (void)
c906108c 14229{
9a7071a8 14230 struct cmd_list_element *cmd;
6f937416 14231 const char *cmd_name;
ea9c271d 14232
0f71a2f6 14233 /* architecture specific data */
29709017
DJ
14234 remote_g_packet_data_handle =
14235 gdbarch_data_register_pre_init (remote_g_packet_data_init);
d01949b6 14236
d9f719f1
PA
14237 add_target (remote_target_info, remote_target::open);
14238 add_target (extended_remote_target_info, extended_remote_target::open);
cce74817 14239
dc8acb97 14240 /* Hook into new objfile notification. */
76727919 14241 gdb::observers::new_objfile.attach (remote_new_objfile);
dc8acb97 14242
c906108c
SS
14243#if 0
14244 init_remote_threadtests ();
14245#endif
14246
23860348 14247 /* set/show remote ... */
d471ea57 14248
1bedd215 14249 add_prefix_cmd ("remote", class_maintenance, set_remote_cmd, _("\
590042fc 14250Remote protocol specific variables.\n\
5a2468f5 14251Configure various remote-protocol specific variables such as\n\
590042fc 14252the packets being used."),
cff3e48b 14253 &remote_set_cmdlist, "set remote ",
23860348 14254 0 /* allow-unknown */, &setlist);
1bedd215 14255 add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
590042fc 14256Remote protocol specific variables.\n\
5a2468f5 14257Configure various remote-protocol specific variables such as\n\
590042fc 14258the packets being used."),
cff3e48b 14259 &remote_show_cmdlist, "show remote ",
23860348 14260 0 /* allow-unknown */, &showlist);
5a2468f5 14261
1a966eab
AC
14262 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
14263Compare section data on target to the exec file.\n\
95cf3b38
DT
14264Argument is a single section name (default: all loaded sections).\n\
14265To compare only read-only loaded sections, specify the -r option."),
c906108c
SS
14266 &cmdlist);
14267
1a966eab
AC
14268 add_cmd ("packet", class_maintenance, packet_command, _("\
14269Send an arbitrary packet to a remote target.\n\
c906108c
SS
14270 maintenance packet TEXT\n\
14271If GDB is talking to an inferior via the GDB serial protocol, then\n\
14272this command sends the string TEXT to the inferior, and displays the\n\
14273response packet. GDB supplies the initial `$' character, and the\n\
1a966eab 14274terminating `#' character and checksum."),
c906108c
SS
14275 &maintenancelist);
14276
7915a72c
AC
14277 add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
14278Set whether to send break if interrupted."), _("\
14279Show whether to send break if interrupted."), _("\
14280If set, a break, instead of a cntrl-c, is sent to the remote target."),
9a7071a8 14281 set_remotebreak, show_remotebreak,
e707bbc2 14282 &setlist, &showlist);
9a7071a8
JB
14283 cmd_name = "remotebreak";
14284 cmd = lookup_cmd (&cmd_name, setlist, "", -1, 1);
14285 deprecate_cmd (cmd, "set remote interrupt-sequence");
14286 cmd_name = "remotebreak"; /* needed because lookup_cmd updates the pointer */
14287 cmd = lookup_cmd (&cmd_name, showlist, "", -1, 1);
14288 deprecate_cmd (cmd, "show remote interrupt-sequence");
14289
14290 add_setshow_enum_cmd ("interrupt-sequence", class_support,
3e43a32a
MS
14291 interrupt_sequence_modes, &interrupt_sequence_mode,
14292 _("\
9a7071a8
JB
14293Set interrupt sequence to remote target."), _("\
14294Show interrupt sequence to remote target."), _("\
14295Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."),
14296 NULL, show_interrupt_sequence,
14297 &remote_set_cmdlist,
14298 &remote_show_cmdlist);
14299
14300 add_setshow_boolean_cmd ("interrupt-on-connect", class_support,
14301 &interrupt_on_connect, _("\
590042fc
PW
14302Set whether interrupt-sequence is sent to remote target when gdb connects to."), _("\
14303Show whether interrupt-sequence is sent to remote target when gdb connects to."), _("\
9a7071a8
JB
14304If set, interrupt sequence is sent to remote target."),
14305 NULL, NULL,
14306 &remote_set_cmdlist, &remote_show_cmdlist);
c906108c 14307
23860348 14308 /* Install commands for configuring memory read/write packets. */
11cf8741 14309
1a966eab
AC
14310 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
14311Set the maximum number of bytes per memory write packet (deprecated)."),
11cf8741 14312 &setlist);
1a966eab
AC
14313 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
14314Show the maximum number of bytes per memory write packet (deprecated)."),
11cf8741
JM
14315 &showlist);
14316 add_cmd ("memory-write-packet-size", no_class,
1a966eab
AC
14317 set_memory_write_packet_size, _("\
14318Set the maximum number of bytes per memory-write packet.\n\
14319Specify the number of bytes in a packet or 0 (zero) for the\n\
14320default packet size. The actual limit is further reduced\n\
14321dependent on the target. Specify ``fixed'' to disable the\n\
14322further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
14323 &remote_set_cmdlist);
14324 add_cmd ("memory-read-packet-size", no_class,
1a966eab
AC
14325 set_memory_read_packet_size, _("\
14326Set the maximum number of bytes per memory-read packet.\n\
14327Specify the number of bytes in a packet or 0 (zero) for the\n\
14328default packet size. The actual limit is further reduced\n\
14329dependent on the target. Specify ``fixed'' to disable the\n\
14330further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
14331 &remote_set_cmdlist);
14332 add_cmd ("memory-write-packet-size", no_class,
14333 show_memory_write_packet_size,
1a966eab 14334 _("Show the maximum number of bytes per memory-write packet."),
11cf8741
JM
14335 &remote_show_cmdlist);
14336 add_cmd ("memory-read-packet-size", no_class,
14337 show_memory_read_packet_size,
1a966eab 14338 _("Show the maximum number of bytes per memory-read packet."),
11cf8741 14339 &remote_show_cmdlist);
c906108c 14340
055303e2 14341 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-limit", no_class,
7915a72c
AC
14342 &remote_hw_watchpoint_limit, _("\
14343Set the maximum number of target hardware watchpoints."), _("\
14344Show the maximum number of target hardware watchpoints."), _("\
055303e2
AB
14345Specify \"unlimited\" for unlimited hardware watchpoints."),
14346 NULL, show_hardware_watchpoint_limit,
14347 &remote_set_cmdlist,
14348 &remote_show_cmdlist);
14349 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-length-limit",
14350 no_class,
480a3f21
PW
14351 &remote_hw_watchpoint_length_limit, _("\
14352Set the maximum length (in bytes) of a target hardware watchpoint."), _("\
14353Show the maximum length (in bytes) of a target hardware watchpoint."), _("\
055303e2
AB
14354Specify \"unlimited\" to allow watchpoints of unlimited size."),
14355 NULL, show_hardware_watchpoint_length_limit,
480a3f21 14356 &remote_set_cmdlist, &remote_show_cmdlist);
055303e2 14357 add_setshow_zuinteger_unlimited_cmd ("hardware-breakpoint-limit", no_class,
7915a72c
AC
14358 &remote_hw_breakpoint_limit, _("\
14359Set the maximum number of target hardware breakpoints."), _("\
14360Show the maximum number of target hardware breakpoints."), _("\
055303e2
AB
14361Specify \"unlimited\" for unlimited hardware breakpoints."),
14362 NULL, show_hardware_breakpoint_limit,
b3f42336 14363 &remote_set_cmdlist, &remote_show_cmdlist);
501eef12 14364
1b493192
PA
14365 add_setshow_zuinteger_cmd ("remoteaddresssize", class_obscure,
14366 &remote_address_size, _("\
4d28ad1e
AC
14367Set the maximum size of the address (in bits) in a memory packet."), _("\
14368Show the maximum size of the address (in bits) in a memory packet."), NULL,
1b493192
PA
14369 NULL,
14370 NULL, /* FIXME: i18n: */
14371 &setlist, &showlist);
c906108c 14372
ca4f7f8b
PA
14373 init_all_packet_configs ();
14374
444abaca 14375 add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
bb572ddd 14376 "X", "binary-download", 1);
0f71a2f6 14377
444abaca 14378 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
bb572ddd 14379 "vCont", "verbose-resume", 0);
506fb367 14380
89be2091
DJ
14381 add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals],
14382 "QPassSignals", "pass-signals", 0);
14383
82075af2
JS
14384 add_packet_config_cmd (&remote_protocol_packets[PACKET_QCatchSyscalls],
14385 "QCatchSyscalls", "catch-syscalls", 0);
14386
9b224c5e
PA
14387 add_packet_config_cmd (&remote_protocol_packets[PACKET_QProgramSignals],
14388 "QProgramSignals", "program-signals", 0);
14389
bc3b087d
SDJ
14390 add_packet_config_cmd (&remote_protocol_packets[PACKET_QSetWorkingDir],
14391 "QSetWorkingDir", "set-working-dir", 0);
14392
aefd8b33
SDJ
14393 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartupWithShell],
14394 "QStartupWithShell", "startup-with-shell", 0);
14395
0a2dde4a
SDJ
14396 add_packet_config_cmd (&remote_protocol_packets
14397 [PACKET_QEnvironmentHexEncoded],
14398 "QEnvironmentHexEncoded", "environment-hex-encoded",
14399 0);
14400
14401 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentReset],
14402 "QEnvironmentReset", "environment-reset",
14403 0);
14404
14405 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentUnset],
14406 "QEnvironmentUnset", "environment-unset",
14407 0);
14408
444abaca 14409 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
bb572ddd 14410 "qSymbol", "symbol-lookup", 0);
dc8acb97 14411
444abaca 14412 add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
bb572ddd 14413 "P", "set-register", 1);
d471ea57 14414
444abaca 14415 add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
bb572ddd 14416 "p", "fetch-register", 1);
b96ec7ac 14417
444abaca 14418 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
bb572ddd 14419 "Z0", "software-breakpoint", 0);
d471ea57 14420
444abaca 14421 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
bb572ddd 14422 "Z1", "hardware-breakpoint", 0);
d471ea57 14423
444abaca 14424 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
bb572ddd 14425 "Z2", "write-watchpoint", 0);
d471ea57 14426
444abaca 14427 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
bb572ddd 14428 "Z3", "read-watchpoint", 0);
d471ea57 14429
444abaca 14430 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
bb572ddd 14431 "Z4", "access-watchpoint", 0);
d471ea57 14432
0876f84a
DJ
14433 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
14434 "qXfer:auxv:read", "read-aux-vector", 0);
802188a7 14435
c78fa86a
GB
14436 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_exec_file],
14437 "qXfer:exec-file:read", "pid-to-exec-file", 0);
14438
23181151
DJ
14439 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features],
14440 "qXfer:features:read", "target-features", 0);
14441
cfa9d6d9
DJ
14442 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries],
14443 "qXfer:libraries:read", "library-info", 0);
14444
2268b414
JK
14445 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries_svr4],
14446 "qXfer:libraries-svr4:read", "library-info-svr4", 0);
14447
fd79ecee
DJ
14448 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
14449 "qXfer:memory-map:read", "memory-map", 0);
14450
07e059b5
VP
14451 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata],
14452 "qXfer:osdata:read", "osdata", 0);
14453
dc146f7c
VP
14454 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_threads],
14455 "qXfer:threads:read", "threads", 0);
14456
4aa995e1
PA
14457 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read],
14458 "qXfer:siginfo:read", "read-siginfo-object", 0);
14459
14460 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write],
14461 "qXfer:siginfo:write", "write-siginfo-object", 0);
14462
b3b9301e
PA
14463 add_packet_config_cmd
14464 (&remote_protocol_packets[PACKET_qXfer_traceframe_info],
eb9fe518 14465 "qXfer:traceframe-info:read", "traceframe-info", 0);
b3b9301e 14466
169081d0
TG
14467 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_uib],
14468 "qXfer:uib:read", "unwind-info-block", 0);
14469
444abaca 14470 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
38691318 14471 "qGetTLSAddr", "get-thread-local-storage-address",
38691318
KB
14472 0);
14473
711e434b
PM
14474 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTIBAddr],
14475 "qGetTIBAddr", "get-thread-information-block-address",
14476 0);
14477
40ab02ce
MS
14478 add_packet_config_cmd (&remote_protocol_packets[PACKET_bc],
14479 "bc", "reverse-continue", 0);
14480
14481 add_packet_config_cmd (&remote_protocol_packets[PACKET_bs],
14482 "bs", "reverse-step", 0);
14483
be2a5f71
DJ
14484 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
14485 "qSupported", "supported-packets", 0);
14486
08388c79
DE
14487 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory],
14488 "qSearch:memory", "search-memory", 0);
14489
bd3eecc3
PA
14490 add_packet_config_cmd (&remote_protocol_packets[PACKET_qTStatus],
14491 "qTStatus", "trace-status", 0);
14492
15a201c8
GB
14493 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_setfs],
14494 "vFile:setfs", "hostio-setfs", 0);
14495
a6b151f1
DJ
14496 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open],
14497 "vFile:open", "hostio-open", 0);
14498
14499 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread],
14500 "vFile:pread", "hostio-pread", 0);
14501
14502 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite],
14503 "vFile:pwrite", "hostio-pwrite", 0);
14504
14505 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close],
14506 "vFile:close", "hostio-close", 0);
14507
14508 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink],
14509 "vFile:unlink", "hostio-unlink", 0);
14510
b9e7b9c3
UW
14511 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_readlink],
14512 "vFile:readlink", "hostio-readlink", 0);
14513
0a93529c
GB
14514 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_fstat],
14515 "vFile:fstat", "hostio-fstat", 0);
14516
2d717e4f
DJ
14517 add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach],
14518 "vAttach", "attach", 0);
14519
14520 add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun],
14521 "vRun", "run", 0);
14522
a6f3e723
SL
14523 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode],
14524 "QStartNoAckMode", "noack", 0);
14525
82f73884
PA
14526 add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill],
14527 "vKill", "kill", 0);
14528
0b16c5cf
PA
14529 add_packet_config_cmd (&remote_protocol_packets[PACKET_qAttached],
14530 "qAttached", "query-attached", 0);
14531
782b2b07 14532 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalTracepoints],
3e43a32a
MS
14533 "ConditionalTracepoints",
14534 "conditional-tracepoints", 0);
3788aec7
LM
14535
14536 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalBreakpoints],
14537 "ConditionalBreakpoints",
14538 "conditional-breakpoints", 0);
14539
d3ce09f5
SS
14540 add_packet_config_cmd (&remote_protocol_packets[PACKET_BreakpointCommands],
14541 "BreakpointCommands",
14542 "breakpoint-commands", 0);
14543
7a697b8d
SS
14544 add_packet_config_cmd (&remote_protocol_packets[PACKET_FastTracepoints],
14545 "FastTracepoints", "fast-tracepoints", 0);
782b2b07 14546
409873ef
SS
14547 add_packet_config_cmd (&remote_protocol_packets[PACKET_TracepointSource],
14548 "TracepointSource", "TracepointSource", 0);
14549
d914c394
SS
14550 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAllow],
14551 "QAllow", "allow", 0);
14552
0fb4aa4b
PA
14553 add_packet_config_cmd (&remote_protocol_packets[PACKET_StaticTracepoints],
14554 "StaticTracepoints", "static-tracepoints", 0);
14555
1e4d1764
YQ
14556 add_packet_config_cmd (&remote_protocol_packets[PACKET_InstallInTrace],
14557 "InstallInTrace", "install-in-trace", 0);
14558
0fb4aa4b
PA
14559 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_statictrace_read],
14560 "qXfer:statictrace:read", "read-sdata-object", 0);
14561
78d85199
YQ
14562 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_fdpic],
14563 "qXfer:fdpic:read", "read-fdpic-loadmap", 0);
14564
03583c20
UW
14565 add_packet_config_cmd (&remote_protocol_packets[PACKET_QDisableRandomization],
14566 "QDisableRandomization", "disable-randomization", 0);
14567
d1feda86
YQ
14568 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAgent],
14569 "QAgent", "agent", 0);
14570
f6f899bf
HAQ
14571 add_packet_config_cmd (&remote_protocol_packets[PACKET_QTBuffer_size],
14572 "QTBuffer:size", "trace-buffer-size", 0);
14573
9accd112
MM
14574 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_off],
14575 "Qbtrace:off", "disable-btrace", 0);
14576
14577 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_bts],
b20a6524
MM
14578 "Qbtrace:bts", "enable-btrace-bts", 0);
14579
14580 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_pt],
14581 "Qbtrace:pt", "enable-btrace-pt", 0);
9accd112
MM
14582
14583 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace],
14584 "qXfer:btrace", "read-btrace", 0);
14585
f4abbc16
MM
14586 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace_conf],
14587 "qXfer:btrace-conf", "read-btrace-conf", 0);
14588
d33501a5
MM
14589 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_bts_size],
14590 "Qbtrace-conf:bts:size", "btrace-conf-bts-size", 0);
14591
73b8c1fd
PA
14592 add_packet_config_cmd (&remote_protocol_packets[PACKET_multiprocess_feature],
14593 "multiprocess-feature", "multiprocess-feature", 0);
14594
f7e6eed5
PA
14595 add_packet_config_cmd (&remote_protocol_packets[PACKET_swbreak_feature],
14596 "swbreak-feature", "swbreak-feature", 0);
14597
14598 add_packet_config_cmd (&remote_protocol_packets[PACKET_hwbreak_feature],
14599 "hwbreak-feature", "hwbreak-feature", 0);
14600
89245bc0
DB
14601 add_packet_config_cmd (&remote_protocol_packets[PACKET_fork_event_feature],
14602 "fork-event-feature", "fork-event-feature", 0);
14603
14604 add_packet_config_cmd (&remote_protocol_packets[PACKET_vfork_event_feature],
14605 "vfork-event-feature", "vfork-event-feature", 0);
14606
b20a6524
MM
14607 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_pt_size],
14608 "Qbtrace-conf:pt:size", "btrace-conf-pt-size", 0);
14609
750ce8d1
YQ
14610 add_packet_config_cmd (&remote_protocol_packets[PACKET_vContSupported],
14611 "vContSupported", "verbose-resume-supported", 0);
14612
94585166
DB
14613 add_packet_config_cmd (&remote_protocol_packets[PACKET_exec_event_feature],
14614 "exec-event-feature", "exec-event-feature", 0);
14615
de979965
PA
14616 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCtrlC],
14617 "vCtrlC", "ctrl-c", 0);
14618
65706a29
PA
14619 add_packet_config_cmd (&remote_protocol_packets[PACKET_QThreadEvents],
14620 "QThreadEvents", "thread-events", 0);
14621
f2faf941
PA
14622 add_packet_config_cmd (&remote_protocol_packets[PACKET_no_resumed],
14623 "N stop reply", "no-resumed-stop-reply", 0);
14624
0b736949
DB
14625 /* Assert that we've registered "set remote foo-packet" commands
14626 for all packet configs. */
ca4f7f8b
PA
14627 {
14628 int i;
14629
14630 for (i = 0; i < PACKET_MAX; i++)
14631 {
14632 /* Ideally all configs would have a command associated. Some
14633 still don't though. */
14634 int excepted;
14635
14636 switch (i)
14637 {
14638 case PACKET_QNonStop:
ca4f7f8b
PA
14639 case PACKET_EnableDisableTracepoints_feature:
14640 case PACKET_tracenz_feature:
14641 case PACKET_DisconnectedTracing_feature:
14642 case PACKET_augmented_libraries_svr4_read_feature:
936d2992
PA
14643 case PACKET_qCRC:
14644 /* Additions to this list need to be well justified:
14645 pre-existing packets are OK; new packets are not. */
ca4f7f8b
PA
14646 excepted = 1;
14647 break;
14648 default:
14649 excepted = 0;
14650 break;
14651 }
14652
14653 /* This catches both forgetting to add a config command, and
14654 forgetting to remove a packet from the exception list. */
14655 gdb_assert (excepted == (remote_protocol_packets[i].name == NULL));
14656 }
14657 }
14658
37a105a1
DJ
14659 /* Keep the old ``set remote Z-packet ...'' working. Each individual
14660 Z sub-packet has its own set and show commands, but users may
14661 have sets to this variable in their .gdbinit files (or in their
14662 documentation). */
e9e68a56 14663 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
7915a72c 14664 &remote_Z_packet_detect, _("\
590042fc
PW
14665Set use of remote protocol `Z' packets."), _("\
14666Show use of remote protocol `Z' packets."), _("\
3b64bf98 14667When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
7915a72c 14668packets."),
e9e68a56 14669 set_remote_protocol_Z_packet_cmd,
3e43a32a
MS
14670 show_remote_protocol_Z_packet_cmd,
14671 /* FIXME: i18n: Use of remote protocol
14672 `Z' packets is %s. */
e9e68a56 14673 &remote_set_cmdlist, &remote_show_cmdlist);
449092f6 14674
a6b151f1 14675 add_prefix_cmd ("remote", class_files, remote_command, _("\
590042fc 14676Manipulate files on the remote system.\n\
a6b151f1
DJ
14677Transfer files to and from the remote target system."),
14678 &remote_cmdlist, "remote ",
14679 0 /* allow-unknown */, &cmdlist);
14680
14681 add_cmd ("put", class_files, remote_put_command,
14682 _("Copy a local file to the remote system."),
14683 &remote_cmdlist);
14684
14685 add_cmd ("get", class_files, remote_get_command,
14686 _("Copy a remote file to the local system."),
14687 &remote_cmdlist);
14688
14689 add_cmd ("delete", class_files, remote_delete_command,
14690 _("Delete a remote file."),
14691 &remote_cmdlist);
14692
2d717e4f 14693 add_setshow_string_noescape_cmd ("exec-file", class_files,
94585166 14694 &remote_exec_file_var, _("\
590042fc
PW
14695Set the remote pathname for \"run\"."), _("\
14696Show the remote pathname for \"run\"."), NULL,
94585166
DB
14697 set_remote_exec_file,
14698 show_remote_exec_file,
14699 &remote_set_cmdlist,
14700 &remote_show_cmdlist);
2d717e4f 14701
c1e36e3e
PA
14702 add_setshow_boolean_cmd ("range-stepping", class_run,
14703 &use_range_stepping, _("\
14704Enable or disable range stepping."), _("\
14705Show whether target-assisted range stepping is enabled."), _("\
14706If on, and the target supports it, when stepping a source line, GDB\n\
14707tells the target to step the corresponding range of addresses itself instead\n\
14708of issuing multiple single-steps. This speeds up source level\n\
14709stepping. If off, GDB always issues single-steps, even if range\n\
14710stepping is supported by the target. The default is on."),
14711 set_range_stepping,
14712 show_range_stepping,
14713 &setlist,
14714 &showlist);
14715
ed2b7c17
TT
14716 add_setshow_zinteger_cmd ("watchdog", class_maintenance, &watchdog, _("\
14717Set watchdog timer."), _("\
14718Show watchdog timer."), _("\
14719When non-zero, this timeout is used instead of waiting forever for a target\n\
14720to finish a low-level step or continue operation. If the specified amount\n\
14721of time passes without a response from the target, an error occurs."),
14722 NULL,
14723 show_watchdog,
14724 &setlist, &showlist);
14725
449092f6
CV
14726 /* Eventually initialize fileio. See fileio.c */
14727 initialize_remote_fileio (remote_set_cmdlist, remote_show_cmdlist);
c906108c 14728}
This page took 3.86564 seconds and 4 git commands to generate.