]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/remote.c
Constify some remote-notif functions
[thirdparty/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"
c5aa993b 31/*#include "terminal.h" */
c906108c
SS
32#include "gdbcmd.h"
33#include "objfiles.h"
34#include "gdb-stabs.h"
35#include "gdbthread.h"
c2c6d25f 36#include "remote.h"
722247f1 37#include "remote-notif.h"
4e052eda 38#include "regcache.h"
fd0407d6 39#include "value.h"
76727919 40#include "observable.h"
a77053c2 41#include "solib.h"
37a105a1
DJ
42#include "cli/cli-decode.h"
43#include "cli/cli-setshow.h"
424163ea 44#include "target-descriptions.h"
a4453b7e 45#include "gdb_bfd.h"
614c279d 46#include "filestuff.h"
9c3d6531 47#include "rsp-low.h"
6b940e6a 48#include "disasm.h"
f00aae0f 49#include "location.h"
c906108c 50
438e1e42 51#include "gdb_sys_time.h"
c906108c 52
43ff13b4 53#include "event-loop.h"
c2c6d25f 54#include "event-top.h"
2acceee2 55#include "inf-loop.h"
43ff13b4 56
c906108c
SS
57#include <signal.h>
58#include "serial.h"
59
6240bebf
MS
60#include "gdbcore.h" /* for exec_bfd */
61
449092f6 62#include "remote-fileio.h"
a6b151f1 63#include "gdb/fileio.h"
53ce3c39 64#include <sys/stat.h>
dc146f7c 65#include "xml-support.h"
449092f6 66
fd79ecee
DJ
67#include "memory-map.h"
68
35b1e5cc
SS
69#include "tracepoint.h"
70#include "ax.h"
71#include "ax-gdb.h"
d1feda86 72#include "agent.h"
9accd112 73#include "btrace.h"
c0272db5 74#include "record-btrace.h"
325fac50 75#include <algorithm>
2ec845e7 76#include "common/scoped_restore.h"
0a2dde4a 77#include "environ.h"
f6327dcb 78#include "common/byte-vector.h"
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;
953edf2b 100static void stop_reply_xfree (struct stop_reply *);
6b8edb51 101
953edf2b
TT
102struct stop_reply_deleter
103{
104 void operator() (stop_reply *r) const
105 {
106 stop_reply_xfree (r);
107 }
108};
109
110typedef std::unique_ptr<stop_reply, stop_reply_deleter> stop_reply_up;
6b8edb51
PA
111
112/* Generic configuration support for packets the stub optionally
113 supports. Allows the user to specify the use of the packet as well
114 as allowing GDB to auto-detect support in the remote stub. */
115
116enum packet_support
117 {
118 PACKET_SUPPORT_UNKNOWN = 0,
119 PACKET_ENABLE,
120 PACKET_DISABLE
121 };
122
123/* Analyze a packet's return value and update the packet config
124 accordingly. */
125
126enum packet_result
127{
128 PACKET_ERROR,
129 PACKET_OK,
130 PACKET_UNKNOWN
131};
132
133struct threads_listing_context;
3c69da40
PA
134
135/* Stub vCont actions support.
136
137 Each field is a boolean flag indicating whether the stub reports
138 support for the corresponding action. */
139
140struct vCont_action_support
141{
142 /* vCont;t */
143 bool t = false;
144
145 /* vCont;r */
146 bool r = false;
147
148 /* vCont;s */
149 bool s = false;
150
151 /* vCont;S */
152 bool S = false;
153};
154
155/* About this many threadisds fit in a packet. */
156
157#define MAXTHREADLISTRESULTS 32
158
159/* Data for the vFile:pread readahead cache. */
160
161struct readahead_cache
162{
163 /* Invalidate the readahead cache. */
164 void invalidate ();
165
166 /* Invalidate the readahead cache if it is holding data for FD. */
167 void invalidate_fd (int fd);
168
169 /* Serve pread from the readahead cache. Returns number of bytes
170 read, or 0 if the request can't be served from the cache. */
171 int pread (int fd, gdb_byte *read_buf, size_t len, ULONGEST offset);
172
173 /* The file descriptor for the file that is being cached. -1 if the
174 cache is invalid. */
175 int fd = -1;
176
177 /* The offset into the file that the cache buffer corresponds
178 to. */
179 ULONGEST offset = 0;
180
181 /* The buffer holding the cache contents. */
182 gdb_byte *buf = nullptr;
183 /* The buffer's size. We try to read as much as fits into a packet
184 at a time. */
185 size_t bufsize = 0;
186
187 /* Cache hit and miss counters. */
188 ULONGEST hit_count = 0;
189 ULONGEST miss_count = 0;
190};
191
192/* Description of the remote protocol for a given architecture. */
193
194struct packet_reg
195{
196 long offset; /* Offset into G packet. */
197 long regnum; /* GDB's internal register number. */
198 LONGEST pnum; /* Remote protocol register number. */
199 int in_g_packet; /* Always part of G packet. */
200 /* long size in bytes; == register_size (target_gdbarch (), regnum);
201 at present. */
202 /* char *name; == gdbarch_register_name (target_gdbarch (), regnum);
203 at present. */
204};
205
206struct remote_arch_state
207{
208 explicit remote_arch_state (struct gdbarch *gdbarch);
209
210 /* Description of the remote protocol registers. */
211 long sizeof_g_packet;
212
213 /* Description of the remote protocol registers indexed by REGNUM
214 (making an array gdbarch_num_regs in size). */
215 std::unique_ptr<packet_reg[]> regs;
216
217 /* This is the size (in chars) of the first response to the ``g''
218 packet. It is used as a heuristic when determining the maximum
219 size of memory-read and memory-write packets. A target will
220 typically only reserve a buffer large enough to hold the ``g''
221 packet. The size does not include packet overhead (headers and
222 trailers). */
223 long actual_register_packet_size;
224
225 /* This is the maximum size (in chars) of a non read/write packet.
226 It is also used as a cap on the size of read/write packets. */
227 long remote_packet_size;
228};
229
230/* Description of the remote protocol state for the currently
231 connected target. This is per-target state, and independent of the
232 selected architecture. */
233
234class remote_state
235{
236public:
237
238 remote_state ();
239 ~remote_state ();
240
241 /* Get the remote arch state for GDBARCH. */
242 struct remote_arch_state *get_remote_arch_state (struct gdbarch *gdbarch);
243
244public: /* data */
245
246 /* A buffer to use for incoming packets, and its current size. The
247 buffer is grown dynamically for larger incoming packets.
248 Outgoing packets may also be constructed in this buffer.
249 BUF_SIZE is always at least REMOTE_PACKET_SIZE;
250 REMOTE_PACKET_SIZE should be used to limit the length of outgoing
251 packets. */
252 char *buf;
253 long buf_size;
254
255 /* True if we're going through initial connection setup (finding out
256 about the remote side's threads, relocating symbols, etc.). */
257 bool starting_up = false;
258
259 /* If we negotiated packet size explicitly (and thus can bypass
260 heuristics for the largest packet size that will not overflow
261 a buffer in the stub), this will be set to that packet size.
262 Otherwise zero, meaning to use the guessed size. */
263 long explicit_packet_size = 0;
264
265 /* remote_wait is normally called when the target is running and
266 waits for a stop reply packet. But sometimes we need to call it
267 when the target is already stopped. We can send a "?" packet
268 and have remote_wait read the response. Or, if we already have
269 the response, we can stash it in BUF and tell remote_wait to
270 skip calling getpkt. This flag is set when BUF contains a
271 stop reply packet and the target is not waiting. */
272 int cached_wait_status = 0;
273
274 /* True, if in no ack mode. That is, neither GDB nor the stub will
275 expect acks from each other. The connection is assumed to be
276 reliable. */
277 bool noack_mode = false;
278
279 /* True if we're connected in extended remote mode. */
280 bool extended = false;
281
282 /* True if we resumed the target and we're waiting for the target to
283 stop. In the mean time, we can't start another command/query.
284 The remote server wouldn't be ready to process it, so we'd
285 timeout waiting for a reply that would never come and eventually
286 we'd close the connection. This can happen in asynchronous mode
287 because we allow GDB commands while the target is running. */
288 bool waiting_for_stop_reply = false;
289
290 /* The status of the stub support for the various vCont actions. */
291 vCont_action_support supports_vCont;
292
293 /* True if the user has pressed Ctrl-C, but the target hasn't
294 responded to that. */
295 bool ctrlc_pending_p = false;
296
297 /* True if we saw a Ctrl-C while reading or writing from/to the
298 remote descriptor. At that point it is not safe to send a remote
299 interrupt packet, so we instead remember we saw the Ctrl-C and
300 process it once we're done with sending/receiving the current
301 packet, which should be shortly. If however that takes too long,
302 and the user presses Ctrl-C again, we offer to disconnect. */
303 bool got_ctrlc_during_io = false;
304
305 /* Descriptor for I/O to remote machine. Initialize it to NULL so that
306 remote_open knows that we don't have a file open when the program
307 starts. */
308 struct serial *remote_desc = nullptr;
309
310 /* These are the threads which we last sent to the remote system. The
311 TID member will be -1 for all or -2 for not sent yet. */
312 ptid_t general_thread = null_ptid;
313 ptid_t continue_thread = null_ptid;
314
315 /* This is the traceframe which we last selected on the remote system.
316 It will be -1 if no traceframe is selected. */
317 int remote_traceframe_number = -1;
318
319 char *last_pass_packet = nullptr;
320
321 /* The last QProgramSignals packet sent to the target. We bypass
322 sending a new program signals list down to the target if the new
323 packet is exactly the same as the last we sent. IOW, we only let
324 the target know about program signals list changes. */
325 char *last_program_signals_packet = nullptr;
326
327 gdb_signal last_sent_signal = GDB_SIGNAL_0;
328
329 bool last_sent_step = false;
330
331 /* The execution direction of the last resume we got. */
332 exec_direction_kind last_resume_exec_dir = EXEC_FORWARD;
333
334 char *finished_object = nullptr;
335 char *finished_annex = nullptr;
336 ULONGEST finished_offset = 0;
337
338 /* Should we try the 'ThreadInfo' query packet?
339
340 This variable (NOT available to the user: auto-detect only!)
341 determines whether GDB will use the new, simpler "ThreadInfo"
342 query or the older, more complex syntax for thread queries.
343 This is an auto-detect variable (set to true at each connect,
344 and set to false when the target fails to recognize it). */
345 bool use_threadinfo_query = false;
346 bool use_threadextra_query = false;
347
348 threadref echo_nextthread {};
349 threadref nextthread {};
350 threadref resultthreadlist[MAXTHREADLISTRESULTS] {};
351
352 /* The state of remote notification. */
353 struct remote_notif_state *notif_state = nullptr;
354
355 /* The branch trace configuration. */
356 struct btrace_config btrace_config {};
357
358 /* The argument to the last "vFile:setfs:" packet we sent, used
359 to avoid sending repeated unnecessary "vFile:setfs:" packets.
360 Initialized to -1 to indicate that no "vFile:setfs:" packet
361 has yet been sent. */
362 int fs_pid = -1;
363
364 /* A readahead cache for vFile:pread. Often, reading a binary
365 involves a sequence of small reads. E.g., when parsing an ELF
366 file. A readahead cache helps mostly the case of remote
367 debugging on a connection with higher latency, due to the
368 request/reply nature of the RSP. We only cache data for a single
369 file descriptor at a time. */
370 struct readahead_cache readahead_cache;
371
372 /* The list of already fetched and acknowledged stop events. This
373 queue is used for notification Stop, and other notifications
374 don't need queue for their events, because the notification
375 events of Stop can't be consumed immediately, so that events
376 should be queued first, and be consumed by remote_wait_{ns,as}
377 one per time. Other notifications can consume their events
378 immediately, so queue is not needed for them. */
953edf2b 379 std::vector<stop_reply_up> stop_reply_queue;
3c69da40
PA
380
381 /* Asynchronous signal handle registered as event loop source for
382 when we have pending events ready to be passed to the core. */
383 struct async_event_handler *remote_async_inferior_event_token = nullptr;
384
385 /* FIXME: cagney/1999-09-23: Even though getpkt was called with
386 ``forever'' still use the normal timeout mechanism. This is
387 currently used by the ASYNC code to guarentee that target reads
388 during the initial connect always time-out. Once getpkt has been
389 modified to return a timeout indication and, in turn
390 remote_wait()/wait_for_inferior() have gained a timeout parameter
391 this can go away. */
392 int wait_forever_enabled_p = 1;
393
394private:
395 /* Mapping of remote protocol data for each gdbarch. Usually there
396 is only one entry here, though we may see more with stubs that
397 support multi-process. */
398 std::unordered_map<struct gdbarch *, remote_arch_state>
399 m_arch_states;
400};
6b8edb51 401
d9f719f1
PA
402static const target_info remote_target_info = {
403 "remote",
404 N_("Remote serial target in gdb-specific protocol"),
405 remote_doc
406};
407
3b3dac9b 408class remote_target : public process_stratum_target
f6ac5f3d
PA
409{
410public:
3b3dac9b 411 remote_target () = default;
6b8edb51 412 ~remote_target () override;
f6ac5f3d 413
d9f719f1
PA
414 const target_info &info () const override
415 { return remote_target_info; }
f6ac5f3d
PA
416
417 thread_control_capabilities get_thread_control_capabilities () override
418 { return tc_schedlock; }
419
d9f719f1
PA
420 /* Open a remote connection. */
421 static void open (const char *, int);
422
f6ac5f3d
PA
423 void close () override;
424
425 void detach (inferior *, int) override;
426 void disconnect (const char *, int) override;
427
428 void commit_resume () override;
429 void resume (ptid_t, int, enum gdb_signal) override;
430 ptid_t wait (ptid_t, struct target_waitstatus *, int) override;
431
432 void fetch_registers (struct regcache *, int) override;
433 void store_registers (struct regcache *, int) override;
434 void prepare_to_store (struct regcache *) override;
435
436 void files_info () override;
437
438 int insert_breakpoint (struct gdbarch *, struct bp_target_info *) override;
439
440 int remove_breakpoint (struct gdbarch *, struct bp_target_info *,
441 enum remove_bp_reason) override;
442
443
57810aa7
PA
444 bool stopped_by_sw_breakpoint () override;
445 bool supports_stopped_by_sw_breakpoint () override;
f6ac5f3d 446
57810aa7 447 bool stopped_by_hw_breakpoint () override;
f6ac5f3d 448
57810aa7 449 bool supports_stopped_by_hw_breakpoint () override;
f6ac5f3d 450
57810aa7 451 bool stopped_by_watchpoint () override;
f6ac5f3d 452
57810aa7 453 bool stopped_data_address (CORE_ADDR *) override;
f6ac5f3d 454
57810aa7 455 bool watchpoint_addr_within_range (CORE_ADDR, CORE_ADDR, int) override;
f6ac5f3d
PA
456
457 int can_use_hw_breakpoint (enum bptype, int, int) override;
458
459 int insert_hw_breakpoint (struct gdbarch *, struct bp_target_info *) override;
460
461 int remove_hw_breakpoint (struct gdbarch *, struct bp_target_info *) override;
462
463 int region_ok_for_hw_watchpoint (CORE_ADDR, int) override;
464
465 int insert_watchpoint (CORE_ADDR, int, enum target_hw_bp_type,
466 struct expression *) override;
467
468 int remove_watchpoint (CORE_ADDR, int, enum target_hw_bp_type,
469 struct expression *) override;
470
471 void kill () override;
472
473 void load (const char *, int) override;
474
475 void mourn_inferior () override;
476
491adeca 477 void pass_signals (int, const unsigned char *) override;
f6ac5f3d
PA
478
479 int set_syscall_catchpoint (int, bool, int,
480 gdb::array_view<const int>) override;
481
491adeca 482 void program_signals (int, const unsigned char *) override;
f6ac5f3d 483
57810aa7 484 bool thread_alive (ptid_t ptid) override;
f6ac5f3d
PA
485
486 const char *thread_name (struct thread_info *) override;
487
488 void update_thread_list () override;
489
490 const char *pid_to_str (ptid_t) override;
491
492 const char *extra_thread_info (struct thread_info *) override;
493
494 ptid_t get_ada_task_ptid (long lwp, long thread) override;
495
496 thread_info *thread_handle_to_thread_info (const gdb_byte *thread_handle,
497 int handle_len,
498 inferior *inf) override;
499
500 void stop (ptid_t) override;
501
502 void interrupt () override;
503
504 void pass_ctrlc () override;
505
506 enum target_xfer_status xfer_partial (enum target_object object,
507 const char *annex,
508 gdb_byte *readbuf,
509 const gdb_byte *writebuf,
510 ULONGEST offset, ULONGEST len,
511 ULONGEST *xfered_len) override;
512
513 ULONGEST get_memory_xfer_limit () override;
514
515 void rcmd (const char *command, struct ui_file *output) override;
516
517 char *pid_to_exec_file (int pid) override;
518
519 void log_command (const char *cmd) override
520 {
521 serial_log_command (this, cmd);
522 }
523
524 CORE_ADDR get_thread_local_address (ptid_t ptid,
525 CORE_ADDR load_module_addr,
526 CORE_ADDR offset) override;
527
57810aa7 528 bool can_execute_reverse () override;
f6ac5f3d
PA
529
530 std::vector<mem_region> memory_map () override;
531
532 void flash_erase (ULONGEST address, LONGEST length) override;
533
534 void flash_done () override;
535
536 const struct target_desc *read_description () override;
537
538 int search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
539 const gdb_byte *pattern, ULONGEST pattern_len,
540 CORE_ADDR *found_addrp) override;
541
57810aa7 542 bool can_async_p () override;
f6ac5f3d 543
57810aa7 544 bool is_async_p () override;
f6ac5f3d
PA
545
546 void async (int) override;
547
548 void thread_events (int) override;
549
550 int can_do_single_step () override;
551
552 void terminal_inferior () override;
553
554 void terminal_ours () override;
555
57810aa7 556 bool supports_non_stop () override;
f6ac5f3d 557
57810aa7 558 bool supports_multi_process () override;
f6ac5f3d 559
57810aa7 560 bool supports_disable_randomization () override;
f6ac5f3d 561
57810aa7 562 bool filesystem_is_local () override;
f6ac5f3d
PA
563
564
565 int fileio_open (struct inferior *inf, const char *filename,
566 int flags, int mode, int warn_if_slow,
567 int *target_errno) override;
568
569 int fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
570 ULONGEST offset, int *target_errno) override;
571
572 int fileio_pread (int fd, gdb_byte *read_buf, int len,
573 ULONGEST offset, int *target_errno) override;
574
575 int fileio_fstat (int fd, struct stat *sb, int *target_errno) override;
576
577 int fileio_close (int fd, int *target_errno) override;
578
579 int fileio_unlink (struct inferior *inf,
580 const char *filename,
581 int *target_errno) override;
582
583 gdb::optional<std::string>
584 fileio_readlink (struct inferior *inf,
585 const char *filename,
586 int *target_errno) override;
587
57810aa7 588 bool supports_enable_disable_tracepoint () override;
f6ac5f3d 589
57810aa7 590 bool supports_string_tracing () override;
f6ac5f3d 591
57810aa7 592 bool supports_evaluation_of_breakpoint_conditions () override;
f6ac5f3d 593
57810aa7 594 bool can_run_breakpoint_commands () override;
f6ac5f3d
PA
595
596 void trace_init () override;
597
598 void download_tracepoint (struct bp_location *location) override;
599
57810aa7 600 bool can_download_tracepoint () override;
f6ac5f3d
PA
601
602 void download_trace_state_variable (const trace_state_variable &tsv) override;
603
604 void enable_tracepoint (struct bp_location *location) override;
605
606 void disable_tracepoint (struct bp_location *location) override;
607
608 void trace_set_readonly_regions () override;
609
610 void trace_start () override;
611
612 int get_trace_status (struct trace_status *ts) override;
613
614 void get_tracepoint_status (struct breakpoint *tp, struct uploaded_tp *utp)
615 override;
616
617 void trace_stop () override;
618
619 int trace_find (enum trace_find_type type, int num,
620 CORE_ADDR addr1, CORE_ADDR addr2, int *tpp) override;
621
57810aa7 622 bool get_trace_state_variable_value (int tsv, LONGEST *val) override;
f6ac5f3d
PA
623
624 int save_trace_data (const char *filename) override;
625
626 int upload_tracepoints (struct uploaded_tp **utpp) override;
627
628 int upload_trace_state_variables (struct uploaded_tsv **utsvp) override;
629
630 LONGEST get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len) override;
631
632 int get_min_fast_tracepoint_insn_len () override;
633
634 void set_disconnected_tracing (int val) override;
635
636 void set_circular_trace_buffer (int val) override;
637
638 void set_trace_buffer_size (LONGEST val) override;
639
57810aa7
PA
640 bool set_trace_notes (const char *user, const char *notes,
641 const char *stopnotes) override;
f6ac5f3d
PA
642
643 int core_of_thread (ptid_t ptid) override;
644
645 int verify_memory (const gdb_byte *data,
646 CORE_ADDR memaddr, ULONGEST size) override;
647
648
57810aa7 649 bool get_tib_address (ptid_t ptid, CORE_ADDR *addr) override;
f6ac5f3d
PA
650
651 void set_permissions () override;
652
653 bool static_tracepoint_marker_at (CORE_ADDR,
654 struct static_tracepoint_marker *marker)
655 override;
656
657 std::vector<static_tracepoint_marker>
658 static_tracepoint_markers_by_strid (const char *id) override;
659
660 traceframe_info_up traceframe_info () override;
661
57810aa7
PA
662 bool use_agent (bool use) override;
663 bool can_use_agent () override;
f6ac5f3d
PA
664
665 struct btrace_target_info *enable_btrace (ptid_t ptid,
666 const struct btrace_config *conf) override;
667
668 void disable_btrace (struct btrace_target_info *tinfo) override;
669
670 void teardown_btrace (struct btrace_target_info *tinfo) override;
671
672 enum btrace_error read_btrace (struct btrace_data *data,
673 struct btrace_target_info *btinfo,
674 enum btrace_read_type type) override;
675
676 const struct btrace_config *btrace_conf (const struct btrace_target_info *) override;
57810aa7 677 bool augmented_libraries_svr4_read () override;
f6ac5f3d
PA
678 int follow_fork (int, int) override;
679 void follow_exec (struct inferior *, char *) override;
680 int insert_fork_catchpoint (int) override;
681 int remove_fork_catchpoint (int) override;
682 int insert_vfork_catchpoint (int) override;
683 int remove_vfork_catchpoint (int) override;
684 int insert_exec_catchpoint (int) override;
685 int remove_exec_catchpoint (int) override;
686 enum exec_direction_kind execution_direction () override;
687
6b8edb51
PA
688public: /* Remote specific methods. */
689
690 void remote_download_command_source (int num, ULONGEST addr,
691 struct command_line *cmds);
692
693 void remote_file_put (const char *local_file, const char *remote_file,
694 int from_tty);
695 void remote_file_get (const char *remote_file, const char *local_file,
696 int from_tty);
697 void remote_file_delete (const char *remote_file, int from_tty);
698
699 int remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
700 ULONGEST offset, int *remote_errno);
701 int remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
702 ULONGEST offset, int *remote_errno);
703 int remote_hostio_pread_vFile (int fd, gdb_byte *read_buf, int len,
704 ULONGEST offset, int *remote_errno);
705
706 int remote_hostio_send_command (int command_bytes, int which_packet,
707 int *remote_errno, char **attachment,
708 int *attachment_len);
709 int remote_hostio_set_filesystem (struct inferior *inf,
710 int *remote_errno);
711 /* We should get rid of this and use fileio_open directly. */
712 int remote_hostio_open (struct inferior *inf, const char *filename,
713 int flags, int mode, int warn_if_slow,
714 int *remote_errno);
715 int remote_hostio_close (int fd, int *remote_errno);
716
717 int remote_hostio_unlink (inferior *inf, const char *filename,
718 int *remote_errno);
719
720 struct remote_state *get_remote_state ();
721
722 long get_remote_packet_size (void);
723 long get_memory_packet_size (struct memory_packet_config *config);
724
725 long get_memory_write_packet_size ();
726 long get_memory_read_packet_size ();
727
728 char *append_pending_thread_resumptions (char *p, char *endp,
729 ptid_t ptid);
d9f719f1 730 static void open_1 (const char *name, int from_tty, int extended_p);
f6ac5f3d 731 void start_remote (int from_tty, int extended_p);
00431a78 732 void remote_detach_1 (struct inferior *inf, int from_tty);
6b8edb51
PA
733
734 char *append_resumption (char *p, char *endp,
735 ptid_t ptid, int step, gdb_signal siggnal);
736 int remote_resume_with_vcont (ptid_t ptid, int step,
737 gdb_signal siggnal);
738
739 void add_current_inferior_and_thread (char *wait_status);
740
741 ptid_t wait_ns (ptid_t ptid, struct target_waitstatus *status,
742 int options);
743 ptid_t wait_as (ptid_t ptid, target_waitstatus *status,
744 int options);
745
746 ptid_t process_stop_reply (struct stop_reply *stop_reply,
747 target_waitstatus *status);
748
749 void remote_notice_new_inferior (ptid_t currthread, int executing);
750
751 void process_initial_stop_replies (int from_tty);
752
00431a78 753 thread_info *remote_add_thread (ptid_t ptid, bool running, bool executing);
6b8edb51
PA
754
755 void btrace_sync_conf (const btrace_config *conf);
756
757 void remote_btrace_maybe_reopen ();
758
759 void remove_new_fork_children (threads_listing_context *context);
760 void kill_new_fork_children (int pid);
761 void discard_pending_stop_replies (struct inferior *inf);
762 int stop_reply_queue_length ();
763
764 void check_pending_events_prevent_wildcard_vcont
765 (int *may_global_wildcard_vcont);
766
767 void discard_pending_stop_replies_in_queue ();
768 struct stop_reply *remote_notif_remove_queued_reply (ptid_t ptid);
769 struct stop_reply *queued_stop_reply (ptid_t ptid);
770 int peek_stop_reply (ptid_t ptid);
bb277751 771 void remote_parse_stop_reply (const char *buf, stop_reply *event);
6b8edb51
PA
772
773 void remote_stop_ns (ptid_t ptid);
774 void remote_interrupt_as ();
775 void remote_interrupt_ns ();
776
777 char *remote_get_noisy_reply ();
778 int remote_query_attached (int pid);
779 inferior *remote_add_inferior (int fake_pid_p, int pid, int attached,
780 int try_open_exec);
781
782 ptid_t remote_current_thread (ptid_t oldpid);
783 ptid_t get_current_thread (char *wait_status);
784
785 void set_thread (ptid_t ptid, int gen);
786 void set_general_thread (ptid_t ptid);
787 void set_continue_thread (ptid_t ptid);
788 void set_general_process ();
789
790 char *write_ptid (char *buf, const char *endbuf, ptid_t ptid);
791
792 int remote_unpack_thread_info_response (char *pkt, threadref *expectedref,
793 gdb_ext_thread_info *info);
794 int remote_get_threadinfo (threadref *threadid, int fieldset,
795 gdb_ext_thread_info *info);
796
797 int parse_threadlist_response (char *pkt, int result_limit,
798 threadref *original_echo,
799 threadref *resultlist,
800 int *doneflag);
801 int remote_get_threadlist (int startflag, threadref *nextthread,
802 int result_limit, int *done, int *result_count,
803 threadref *threadlist);
804
805 int remote_threadlist_iterator (rmt_thread_action stepfunction,
806 void *context, int looplimit);
807
808 int remote_get_threads_with_ql (threads_listing_context *context);
809 int remote_get_threads_with_qxfer (threads_listing_context *context);
810 int remote_get_threads_with_qthreadinfo (threads_listing_context *context);
811
812 void extended_remote_restart ();
813
814 void get_offsets ();
815
816 void remote_check_symbols ();
817
818 void remote_supported_packet (const struct protocol_feature *feature,
819 enum packet_support support,
820 const char *argument);
821
822 void remote_query_supported ();
823
824 void remote_packet_size (const protocol_feature *feature,
825 packet_support support, const char *value);
826
827 void remote_serial_quit_handler ();
828
829 void remote_detach_pid (int pid);
830
831 void remote_vcont_probe ();
832
833 void remote_resume_with_hc (ptid_t ptid, int step,
834 gdb_signal siggnal);
835
836 void send_interrupt_sequence ();
837 void interrupt_query ();
838
839 void remote_notif_get_pending_events (notif_client *nc);
840
841 int fetch_register_using_p (struct regcache *regcache,
842 packet_reg *reg);
843 int send_g_packet ();
844 void process_g_packet (struct regcache *regcache);
845 void fetch_registers_using_g (struct regcache *regcache);
846 int store_register_using_P (const struct regcache *regcache,
847 packet_reg *reg);
848 void store_registers_using_G (const struct regcache *regcache);
849
850 void set_remote_traceframe ();
851
852 void check_binary_download (CORE_ADDR addr);
853
854 target_xfer_status remote_write_bytes_aux (const char *header,
855 CORE_ADDR memaddr,
856 const gdb_byte *myaddr,
857 ULONGEST len_units,
858 int unit_size,
859 ULONGEST *xfered_len_units,
860 char packet_format,
861 int use_length);
862
863 target_xfer_status remote_write_bytes (CORE_ADDR memaddr,
864 const gdb_byte *myaddr, ULONGEST len,
865 int unit_size, ULONGEST *xfered_len);
866
867 target_xfer_status remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr,
868 ULONGEST len_units,
869 int unit_size, ULONGEST *xfered_len_units);
870
871 target_xfer_status remote_xfer_live_readonly_partial (gdb_byte *readbuf,
872 ULONGEST memaddr,
873 ULONGEST len,
874 int unit_size,
875 ULONGEST *xfered_len);
876
877 target_xfer_status remote_read_bytes (CORE_ADDR memaddr,
878 gdb_byte *myaddr, ULONGEST len,
879 int unit_size,
880 ULONGEST *xfered_len);
881
882 packet_result remote_send_printf (const char *format, ...)
883 ATTRIBUTE_PRINTF (2, 3);
884
885 target_xfer_status remote_flash_write (ULONGEST address,
886 ULONGEST length, ULONGEST *xfered_len,
887 const gdb_byte *data);
888
889 int readchar (int timeout);
890
891 void remote_serial_write (const char *str, int len);
892
893 int putpkt (const char *buf);
894 int putpkt_binary (const char *buf, int cnt);
895
896 void skip_frame ();
897 long read_frame (char **buf_p, long *sizeof_buf);
898 void getpkt (char **buf, long *sizeof_buf, int forever);
899 int getpkt_or_notif_sane_1 (char **buf, long *sizeof_buf, int forever,
900 int expecting_notif, int *is_notif);
901 int getpkt_sane (char **buf, long *sizeof_buf, int forever);
902 int getpkt_or_notif_sane (char **buf, long *sizeof_buf, int forever,
903 int *is_notif);
904 int remote_vkill (int pid);
905 void remote_kill_k ();
906
907 void extended_remote_disable_randomization (int val);
908 int extended_remote_run (const std::string &args);
909
910 void send_environment_packet (const char *action,
911 const char *packet,
912 const char *value);
913
914 void extended_remote_environment_support ();
3c69da40 915 void extended_remote_set_inferior_cwd ();
80152258 916
3c69da40
PA
917 target_xfer_status remote_write_qxfer (const char *object_name,
918 const char *annex,
919 const gdb_byte *writebuf,
920 ULONGEST offset, LONGEST len,
921 ULONGEST *xfered_len,
922 struct packet_config *packet);
43c3a0e4 923
3c69da40
PA
924 target_xfer_status remote_read_qxfer (const char *object_name,
925 const char *annex,
926 gdb_byte *readbuf, ULONGEST offset,
927 LONGEST len,
928 ULONGEST *xfered_len,
929 struct packet_config *packet);
43c3a0e4 930
3c69da40 931 void push_stop_reply (struct stop_reply *new_event);
43c3a0e4 932
3c69da40 933 bool vcont_r_supported ();
43c3a0e4 934
3c69da40 935 void packet_command (const char *args, int from_tty);
43c3a0e4 936
3c69da40 937private: /* data fields */
43c3a0e4 938
3c69da40
PA
939 /* The remote state. Don't reference this directly. Use the
940 get_remote_state method instead. */
941 remote_state m_remote_state;
43c3a0e4
PA
942};
943
3c69da40
PA
944static const target_info extended_remote_target_info = {
945 "extended-remote",
946 N_("Extended remote serial target in gdb-specific protocol"),
947 remote_doc
948};
ea9c271d 949
3c69da40
PA
950/* Set up the extended remote target by extending the standard remote
951 target and adding to it. */
952
953class extended_remote_target final : public remote_target
ea9c271d 954{
9d6eea31 955public:
3c69da40
PA
956 const target_info &info () const override
957 { return extended_remote_target_info; }
9d6eea31 958
3c69da40
PA
959 /* Open an extended-remote connection. */
960 static void open (const char *, int);
de44f5a7 961
3c69da40
PA
962 bool can_create_inferior () override { return true; }
963 void create_inferior (const char *, const std::string &,
964 char **, int) override;
9d6eea31 965
3c69da40 966 void detach (inferior *, int) override;
9d6eea31 967
3c69da40
PA
968 bool can_attach () override { return true; }
969 void attach (const char *, int) override;
be2a5f71 970
3c69da40
PA
971 void post_attach (int) override;
972 bool supports_disable_randomization () override;
973};
1e51243a 974
3c69da40
PA
975/* Per-program-space data key. */
976static const struct program_space_data *remote_pspace_data;
2d717e4f 977
3c69da40
PA
978/* The variable registered as the control variable used by the
979 remote exec-file commands. While the remote exec-file setting is
980 per-program-space, the set/show machinery uses this as the
981 location of the remote exec-file value. */
982static char *remote_exec_file_var;
a6f3e723 983
3c69da40
PA
984/* The size to align memory write packets, when practical. The protocol
985 does not guarantee any alignment, and gdb will generate short
986 writes and unaligned writes, but even as a best-effort attempt this
987 can improve bulk transfers. For instance, if a write is misaligned
988 relative to the target's data bus, the stub may need to make an extra
989 round trip fetching data from the target. This doesn't make a
990 huge difference, but it's easy to do, so we try to be helpful.
82f73884 991
3c69da40
PA
992 The alignment chosen is arbitrary; usually data bus width is
993 important here, not the possibly larger cache line size. */
994enum { REMOTE_ALIGN_WRITES = 16 };
82f73884 995
3c69da40 996/* Prototypes for local functions. */
74531fed 997
3c69da40 998static int hexnumlen (ULONGEST num);
782b2b07 999
3c69da40 1000static int stubhex (int ch);
5d93a237 1001
3c69da40 1002static int hexnumstr (char *, ULONGEST);
048094ac 1003
3c69da40 1004static int hexnumnstr (char *, ULONGEST, int);
47f8a51d 1005
3c69da40 1006static CORE_ADDR remote_address_masked (CORE_ADDR);
262e1174 1007
3c69da40 1008static void print_packet (const char *);
747dc59d 1009
3c69da40 1010static int stub_unpack_int (char *buff, int fieldlength);
5e4a05c4 1011
3c69da40 1012struct packet_config;
b73be471 1013
3c69da40 1014static void show_packet_config_cmd (struct packet_config *config);
280ceea3 1015
3c69da40
PA
1016static void show_remote_protocol_packet_cmd (struct ui_file *file,
1017 int from_tty,
1018 struct cmd_list_element *c,
1019 const char *value);
8e88304f 1020
3c69da40 1021static ptid_t read_ptid (const char *buf, const char **obuf);
3a00c802 1022
3c69da40 1023static void remote_async_inferior_event_handler (gdb_client_data);
b80fafe3 1024
eefce37f 1025static bool remote_read_description_p (struct target_ops *target);
88b496c3 1026
05be00a8 1027static void remote_console_output (const char *msg);
5965e028 1028
3c69da40 1029static void remote_btrace_reset (remote_state *rs);
f4abbc16 1030
3c69da40 1031static void remote_unpush_and_throw (void);
15a201c8 1032
3c69da40 1033/* For "remote". */
80152258 1034
3c69da40 1035static struct cmd_list_element *remote_cmdlist;
9d6eea31 1036
3c69da40 1037/* For "set remote" and "show remote". */
6b8edb51 1038
3c69da40
PA
1039static struct cmd_list_element *remote_set_cmdlist;
1040static struct cmd_list_element *remote_show_cmdlist;
6b8edb51 1041
3c69da40 1042/* Controls whether GDB is willing to use range stepping. */
6b8edb51 1043
3c69da40
PA
1044static int use_range_stepping = 1;
1045
1046/* The max number of chars in debug output. The rest of chars are
1047 omitted. */
1048
1049#define REMOTE_DEBUG_MAX_CHAR 512
ea9c271d 1050
7aabaf9d
SM
1051/* Private data that we'll store in (struct thread_info)->priv. */
1052struct remote_thread_info : public private_thread_info
dc146f7c 1053{
7aabaf9d
SM
1054 std::string extra;
1055 std::string name;
1056 int core = -1;
799a2abe 1057
f6327dcb
KB
1058 /* Thread handle, perhaps a pthread_t or thread_t value, stored as a
1059 sequence of bytes. */
7aabaf9d 1060 gdb::byte_vector thread_handle;
f6327dcb 1061
799a2abe 1062 /* Whether the target stopped for a breakpoint/watchpoint. */
7aabaf9d 1063 enum target_stop_reason stop_reason = TARGET_STOPPED_BY_NO_REASON;
799a2abe
PA
1064
1065 /* This is set to the data address of the access causing the target
1066 to stop for a watchpoint. */
7aabaf9d 1067 CORE_ADDR watch_data_address = 0;
85ad3aaf
PA
1068
1069 /* Fields used by the vCont action coalescing implemented in
1070 remote_resume / remote_commit_resume. remote_resume stores each
1071 thread's last resume request in these fields, so that a later
1072 remote_commit_resume knows which is the proper action for this
1073 thread to include in the vCont packet. */
1074
1075 /* True if the last target_resume call for this thread was a step
1076 request, false if a continue request. */
7aabaf9d 1077 int last_resume_step = 0;
85ad3aaf
PA
1078
1079 /* The signal specified in the last target_resume call for this
1080 thread. */
7aabaf9d 1081 gdb_signal last_resume_sig = GDB_SIGNAL_0;
85ad3aaf
PA
1082
1083 /* Whether this thread was already vCont-resumed on the remote
1084 side. */
7aabaf9d 1085 int vcont_resumed = 0;
dc146f7c
VP
1086};
1087
de44f5a7
PA
1088remote_state::remote_state ()
1089{
1090 /* The default buffer size is unimportant; it will be expanded
1091 whenever a larger buffer is needed. */
1092 this->buf_size = 400;
1093 this->buf = (char *) xmalloc (this->buf_size);
1094}
1095
1096remote_state::~remote_state ()
1097{
1098 xfree (this->last_pass_packet);
1099 xfree (this->last_program_signals_packet);
1100 xfree (this->buf);
1101 xfree (this->finished_object);
1102 xfree (this->finished_annex);
cf792862
TT
1103}
1104
35b1e5cc
SS
1105/* Utility: generate error from an incoming stub packet. */
1106static void
1107trace_error (char *buf)
1108{
1109 if (*buf++ != 'E')
1110 return; /* not an error msg */
1111 switch (*buf)
1112 {
1113 case '1': /* malformed packet error */
1114 if (*++buf == '0') /* general case: */
1115 error (_("remote.c: error in outgoing packet."));
1116 else
1117 error (_("remote.c: error in outgoing packet at field #%ld."),
1118 strtol (buf, NULL, 16));
35b1e5cc
SS
1119 default:
1120 error (_("Target returns error code '%s'."), buf);
1121 }
1122}
1123
1124/* Utility: wait for reply from stub, while accepting "O" packets. */
b6bb3468 1125
6b8edb51
PA
1126char *
1127remote_target::remote_get_noisy_reply ()
35b1e5cc 1128{
b6bb3468
PA
1129 struct remote_state *rs = get_remote_state ();
1130
35b1e5cc
SS
1131 do /* Loop on reply from remote stub. */
1132 {
1133 char *buf;
a744cf53 1134
0df8b418 1135 QUIT; /* Allow user to bail out with ^C. */
b6bb3468
PA
1136 getpkt (&rs->buf, &rs->buf_size, 0);
1137 buf = rs->buf;
ad91cd99 1138 if (buf[0] == 'E')
35b1e5cc 1139 trace_error (buf);
61012eef 1140 else if (startswith (buf, "qRelocInsn:"))
dde08ee1
PA
1141 {
1142 ULONGEST ul;
1143 CORE_ADDR from, to, org_to;
256642e8 1144 const char *p, *pp;
dde08ee1 1145 int adjusted_size = 0;
7556d4a4 1146 int relocated = 0;
dde08ee1
PA
1147
1148 p = buf + strlen ("qRelocInsn:");
1149 pp = unpack_varlen_hex (p, &ul);
1150 if (*pp != ';')
cb91c06a 1151 error (_("invalid qRelocInsn packet: %s"), buf);
dde08ee1
PA
1152 from = ul;
1153
1154 p = pp + 1;
a9cbf802 1155 unpack_varlen_hex (p, &ul);
dde08ee1
PA
1156 to = ul;
1157
1158 org_to = to;
1159
492d29ea 1160 TRY
dde08ee1 1161 {
f5656ead 1162 gdbarch_relocate_instruction (target_gdbarch (), &to, from);
7556d4a4 1163 relocated = 1;
dde08ee1 1164 }
492d29ea 1165 CATCH (ex, RETURN_MASK_ALL)
7556d4a4
PA
1166 {
1167 if (ex.error == MEMORY_ERROR)
1168 {
1169 /* Propagate memory errors silently back to the
1170 target. The stub may have limited the range of
1171 addresses we can write to, for example. */
1172 }
1173 else
1174 {
1175 /* Something unexpectedly bad happened. Be verbose
1176 so we can tell what, and propagate the error back
1177 to the stub, so it doesn't get stuck waiting for
1178 a response. */
1179 exception_fprintf (gdb_stderr, ex,
1180 _("warning: relocating instruction: "));
1181 }
1182 putpkt ("E01");
1183 }
492d29ea 1184 END_CATCH
7556d4a4
PA
1185
1186 if (relocated)
dde08ee1
PA
1187 {
1188 adjusted_size = to - org_to;
1189
b6bb3468 1190 xsnprintf (buf, rs->buf_size, "qRelocInsn:%x", adjusted_size);
dde08ee1
PA
1191 putpkt (buf);
1192 }
dde08ee1 1193 }
ad91cd99 1194 else if (buf[0] == 'O' && buf[1] != 'K')
35b1e5cc
SS
1195 remote_console_output (buf + 1); /* 'O' message from stub */
1196 else
0df8b418 1197 return buf; /* Here's the actual reply. */
35b1e5cc
SS
1198 }
1199 while (1);
1200}
3c3bea1c 1201
9d6eea31
PA
1202struct remote_arch_state *
1203remote_state::get_remote_arch_state (struct gdbarch *gdbarch)
d01949b6 1204{
43c3a0e4
PA
1205 remote_arch_state *rsa;
1206
1207 auto it = this->m_arch_states.find (gdbarch);
1208 if (it == this->m_arch_states.end ())
9d6eea31 1209 {
43c3a0e4
PA
1210 auto p = this->m_arch_states.emplace (std::piecewise_construct,
1211 std::forward_as_tuple (gdbarch),
1212 std::forward_as_tuple (gdbarch));
1213 rsa = &p.first->second;
9d6eea31
PA
1214
1215 /* Make sure that the packet buffer is plenty big enough for
1216 this architecture. */
1217 if (this->buf_size < rsa->remote_packet_size)
1218 {
1219 this->buf_size = 2 * rsa->remote_packet_size;
1220 this->buf = (char *) xrealloc (this->buf, this->buf_size);
1221 }
1222 }
43c3a0e4
PA
1223 else
1224 rsa = &it->second;
1225
1226 return rsa;
d01949b6
AC
1227}
1228
0b83947e
DJ
1229/* Fetch the global remote target state. */
1230
6b8edb51
PA
1231remote_state *
1232remote_target::get_remote_state ()
0b83947e
DJ
1233{
1234 /* Make sure that the remote architecture state has been
1235 initialized, because doing so might reallocate rs->buf. Any
1236 function which calls getpkt also needs to be mindful of changes
1237 to rs->buf, but this call limits the number of places which run
1238 into trouble. */
3c69da40 1239 m_remote_state.get_remote_arch_state (target_gdbarch ());
0b83947e 1240
3c69da40 1241 return &m_remote_state;
0b83947e
DJ
1242}
1243
94585166
DB
1244/* Cleanup routine for the remote module's pspace data. */
1245
1246static void
1247remote_pspace_data_cleanup (struct program_space *pspace, void *arg)
1248{
19ba03f4 1249 char *remote_exec_file = (char *) arg;
94585166
DB
1250
1251 xfree (remote_exec_file);
1252}
1253
1254/* Fetch the remote exec-file from the current program space. */
1255
1256static const char *
1257get_remote_exec_file (void)
1258{
1259 char *remote_exec_file;
1260
19ba03f4
SM
1261 remote_exec_file
1262 = (char *) program_space_data (current_program_space,
1263 remote_pspace_data);
94585166
DB
1264 if (remote_exec_file == NULL)
1265 return "";
1266
1267 return remote_exec_file;
1268}
1269
1270/* Set the remote exec file for PSPACE. */
1271
1272static void
1273set_pspace_remote_exec_file (struct program_space *pspace,
1274 char *remote_exec_file)
1275{
19ba03f4 1276 char *old_file = (char *) program_space_data (pspace, remote_pspace_data);
94585166
DB
1277
1278 xfree (old_file);
1279 set_program_space_data (pspace, remote_pspace_data,
1280 xstrdup (remote_exec_file));
1281}
1282
1283/* The "set/show remote exec-file" set command hook. */
1284
1285static void
eb4c3f4a 1286set_remote_exec_file (const char *ignored, int from_tty,
94585166
DB
1287 struct cmd_list_element *c)
1288{
1289 gdb_assert (remote_exec_file_var != NULL);
1290 set_pspace_remote_exec_file (current_program_space, remote_exec_file_var);
1291}
1292
1293/* The "set/show remote exec-file" show command hook. */
1294
1295static void
1296show_remote_exec_file (struct ui_file *file, int from_tty,
1297 struct cmd_list_element *cmd, const char *value)
1298{
1299 fprintf_filtered (file, "%s\n", remote_exec_file_var);
1300}
1301
74ca34ce
DJ
1302static int
1303compare_pnums (const void *lhs_, const void *rhs_)
1304{
19ba03f4
SM
1305 const struct packet_reg * const *lhs
1306 = (const struct packet_reg * const *) lhs_;
1307 const struct packet_reg * const *rhs
1308 = (const struct packet_reg * const *) rhs_;
74ca34ce
DJ
1309
1310 if ((*lhs)->pnum < (*rhs)->pnum)
1311 return -1;
1312 else if ((*lhs)->pnum == (*rhs)->pnum)
1313 return 0;
1314 else
1315 return 1;
1316}
1317
c21236dc
PA
1318static int
1319map_regcache_remote_table (struct gdbarch *gdbarch, struct packet_reg *regs)
d01949b6 1320{
74ca34ce 1321 int regnum, num_remote_regs, offset;
74ca34ce 1322 struct packet_reg **remote_regs;
ea9c271d 1323
4a22f64d 1324 for (regnum = 0; regnum < gdbarch_num_regs (gdbarch); regnum++)
ad10f812 1325 {
c21236dc 1326 struct packet_reg *r = &regs[regnum];
baef701f 1327
4a22f64d 1328 if (register_size (gdbarch, regnum) == 0)
baef701f
DJ
1329 /* Do not try to fetch zero-sized (placeholder) registers. */
1330 r->pnum = -1;
1331 else
1332 r->pnum = gdbarch_remote_register_number (gdbarch, regnum);
1333
b323314b 1334 r->regnum = regnum;
74ca34ce
DJ
1335 }
1336
1337 /* Define the g/G packet format as the contents of each register
1338 with a remote protocol number, in order of ascending protocol
1339 number. */
1340
224c3ddb 1341 remote_regs = XALLOCAVEC (struct packet_reg *, gdbarch_num_regs (gdbarch));
f57d151a 1342 for (num_remote_regs = 0, regnum = 0;
4a22f64d 1343 regnum < gdbarch_num_regs (gdbarch);
f57d151a 1344 regnum++)
c21236dc
PA
1345 if (regs[regnum].pnum != -1)
1346 remote_regs[num_remote_regs++] = &regs[regnum];
7d58c67d 1347
74ca34ce
DJ
1348 qsort (remote_regs, num_remote_regs, sizeof (struct packet_reg *),
1349 compare_pnums);
1350
1351 for (regnum = 0, offset = 0; regnum < num_remote_regs; regnum++)
1352 {
1353 remote_regs[regnum]->in_g_packet = 1;
1354 remote_regs[regnum]->offset = offset;
4a22f64d 1355 offset += register_size (gdbarch, remote_regs[regnum]->regnum);
ad10f812
AC
1356 }
1357
c21236dc
PA
1358 return offset;
1359}
1360
1361/* Given the architecture described by GDBARCH, return the remote
1362 protocol register's number and the register's offset in the g/G
1363 packets of GDB register REGNUM, in PNUM and POFFSET respectively.
1364 If the target does not have a mapping for REGNUM, return false,
1365 otherwise, return true. */
1366
1367int
1368remote_register_number_and_offset (struct gdbarch *gdbarch, int regnum,
1369 int *pnum, int *poffset)
1370{
c21236dc
PA
1371 gdb_assert (regnum < gdbarch_num_regs (gdbarch));
1372
b80406ac 1373 std::vector<packet_reg> regs (gdbarch_num_regs (gdbarch));
c21236dc 1374
b80406ac 1375 map_regcache_remote_table (gdbarch, regs.data ());
c21236dc
PA
1376
1377 *pnum = regs[regnum].pnum;
1378 *poffset = regs[regnum].offset;
1379
c21236dc
PA
1380 return *pnum != -1;
1381}
1382
9d6eea31 1383remote_arch_state::remote_arch_state (struct gdbarch *gdbarch)
c21236dc 1384{
c21236dc
PA
1385 /* Use the architecture to build a regnum<->pnum table, which will be
1386 1:1 unless a feature set specifies otherwise. */
9d6eea31 1387 this->regs.reset (new packet_reg [gdbarch_num_regs (gdbarch)] ());
c21236dc 1388
74ca34ce
DJ
1389 /* Record the maximum possible size of the g packet - it may turn out
1390 to be smaller. */
9d6eea31
PA
1391 this->sizeof_g_packet
1392 = map_regcache_remote_table (gdbarch, this->regs.get ());
74ca34ce 1393
0df8b418 1394 /* Default maximum number of characters in a packet body. Many
d01949b6
AC
1395 remote stubs have a hardwired buffer size of 400 bytes
1396 (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
1397 as the maximum packet-size to ensure that the packet and an extra
1398 NUL character can always fit in the buffer. This stops GDB
1399 trashing stubs that try to squeeze an extra NUL into what is
ea9c271d 1400 already a full buffer (As of 1999-12-04 that was most stubs). */
9d6eea31 1401 this->remote_packet_size = 400 - 1;
d01949b6 1402
ea9c271d 1403 /* This one is filled in when a ``g'' packet is received. */
9d6eea31 1404 this->actual_register_packet_size = 0;
ea9c271d
DJ
1405
1406 /* Should rsa->sizeof_g_packet needs more space than the
0df8b418
MS
1407 default, adjust the size accordingly. Remember that each byte is
1408 encoded as two characters. 32 is the overhead for the packet
1409 header / footer. NOTE: cagney/1999-10-26: I suspect that 8
d01949b6 1410 (``$NN:G...#NN'') is a better guess, the below has been padded a
23860348 1411 little. */
9d6eea31
PA
1412 if (this->sizeof_g_packet > ((this->remote_packet_size - 32) / 2))
1413 this->remote_packet_size = (this->sizeof_g_packet * 2 + 32);
ea9c271d
DJ
1414}
1415
6b8edb51
PA
1416/* Get a pointer to the current remote target. If not connected to a
1417 remote target, return NULL. */
1418
1419static remote_target *
1420get_current_remote_target ()
1421{
1422 target_ops *proc_target = find_target_at (process_stratum);
1423 return dynamic_cast<remote_target *> (proc_target);
1424}
1425
ea9c271d
DJ
1426/* Return the current allowed size of a remote packet. This is
1427 inferred from the current architecture, and should be used to
1428 limit the length of outgoing packets. */
6b8edb51
PA
1429long
1430remote_target::get_remote_packet_size ()
ea9c271d 1431{
be2a5f71 1432 struct remote_state *rs = get_remote_state ();
9d6eea31 1433 remote_arch_state *rsa = rs->get_remote_arch_state (target_gdbarch ());
ea9c271d 1434
be2a5f71
DJ
1435 if (rs->explicit_packet_size)
1436 return rs->explicit_packet_size;
1437
ea9c271d 1438 return rsa->remote_packet_size;
d01949b6
AC
1439}
1440
ad10f812 1441static struct packet_reg *
5cd63fda
PA
1442packet_reg_from_regnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
1443 long regnum)
ad10f812 1444{
5cd63fda 1445 if (regnum < 0 && regnum >= gdbarch_num_regs (gdbarch))
b323314b
AC
1446 return NULL;
1447 else
ad10f812 1448 {
ea9c271d 1449 struct packet_reg *r = &rsa->regs[regnum];
a744cf53 1450
b323314b
AC
1451 gdb_assert (r->regnum == regnum);
1452 return r;
ad10f812 1453 }
ad10f812
AC
1454}
1455
1456static struct packet_reg *
5cd63fda
PA
1457packet_reg_from_pnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
1458 LONGEST pnum)
ad10f812 1459{
b323314b 1460 int i;
a744cf53 1461
5cd63fda 1462 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
ad10f812 1463 {
ea9c271d 1464 struct packet_reg *r = &rsa->regs[i];
a744cf53 1465
b323314b
AC
1466 if (r->pnum == pnum)
1467 return r;
ad10f812
AC
1468 }
1469 return NULL;
d01949b6
AC
1470}
1471
9a7071a8
JB
1472/* Allow the user to specify what sequence to send to the remote
1473 when he requests a program interruption: Although ^C is usually
1474 what remote systems expect (this is the default, here), it is
1475 sometimes preferable to send a break. On other systems such
1476 as the Linux kernel, a break followed by g, which is Magic SysRq g
1477 is required in order to interrupt the execution. */
1478const char interrupt_sequence_control_c[] = "Ctrl-C";
1479const char interrupt_sequence_break[] = "BREAK";
1480const char interrupt_sequence_break_g[] = "BREAK-g";
40478521 1481static const char *const interrupt_sequence_modes[] =
9a7071a8
JB
1482 {
1483 interrupt_sequence_control_c,
1484 interrupt_sequence_break,
1485 interrupt_sequence_break_g,
1486 NULL
1487 };
1488static const char *interrupt_sequence_mode = interrupt_sequence_control_c;
1489
1490static void
1491show_interrupt_sequence (struct ui_file *file, int from_tty,
1492 struct cmd_list_element *c,
1493 const char *value)
1494{
1495 if (interrupt_sequence_mode == interrupt_sequence_control_c)
1496 fprintf_filtered (file,
1497 _("Send the ASCII ETX character (Ctrl-c) "
1498 "to the remote target to interrupt the "
1499 "execution of the program.\n"));
1500 else if (interrupt_sequence_mode == interrupt_sequence_break)
1501 fprintf_filtered (file,
1502 _("send a break signal to the remote target "
1503 "to interrupt the execution of the program.\n"));
1504 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
1505 fprintf_filtered (file,
1506 _("Send a break signal and 'g' a.k.a. Magic SysRq g to "
1507 "the remote target to interrupt the execution "
1508 "of Linux kernel.\n"));
1509 else
1510 internal_error (__FILE__, __LINE__,
1511 _("Invalid value for interrupt_sequence_mode: %s."),
1512 interrupt_sequence_mode);
1513}
6426a772 1514
9a7071a8
JB
1515/* This boolean variable specifies whether interrupt_sequence is sent
1516 to the remote target when gdb connects to it.
1517 This is mostly needed when you debug the Linux kernel: The Linux kernel
1518 expects BREAK g which is Magic SysRq g for connecting gdb. */
1519static int interrupt_on_connect = 0;
c906108c 1520
9a7071a8
JB
1521/* This variable is used to implement the "set/show remotebreak" commands.
1522 Since these commands are now deprecated in favor of "set/show remote
1523 interrupt-sequence", it no longer has any effect on the code. */
c906108c
SS
1524static int remote_break;
1525
9a7071a8 1526static void
eb4c3f4a 1527set_remotebreak (const char *args, int from_tty, struct cmd_list_element *c)
9a7071a8
JB
1528{
1529 if (remote_break)
1530 interrupt_sequence_mode = interrupt_sequence_break;
1531 else
1532 interrupt_sequence_mode = interrupt_sequence_control_c;
1533}
1534
1535static void
1536show_remotebreak (struct ui_file *file, int from_tty,
1537 struct cmd_list_element *c,
1538 const char *value)
1539{
1540}
1541
c906108c
SS
1542/* This variable sets the number of bits in an address that are to be
1543 sent in a memory ("M" or "m") packet. Normally, after stripping
0df8b418 1544 leading zeros, the entire address would be sent. This variable
c906108c
SS
1545 restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
1546 initial implementation of remote.c restricted the address sent in
1547 memory packets to ``host::sizeof long'' bytes - (typically 32
1548 bits). Consequently, for 64 bit targets, the upper 32 bits of an
1549 address was never sent. Since fixing this bug may cause a break in
1550 some remote targets this variable is principly provided to
23860348 1551 facilitate backward compatibility. */
c906108c 1552
883b9c6c 1553static unsigned int remote_address_size;
c906108c 1554
11cf8741 1555\f
11cf8741 1556/* User configurable variables for the number of characters in a
ea9c271d
DJ
1557 memory read/write packet. MIN (rsa->remote_packet_size,
1558 rsa->sizeof_g_packet) is the default. Some targets need smaller
24b06219 1559 values (fifo overruns, et.al.) and some users need larger values
ad10f812
AC
1560 (speed up transfers). The variables ``preferred_*'' (the user
1561 request), ``current_*'' (what was actually set) and ``forced_*''
23860348 1562 (Positive - a soft limit, negative - a hard limit). */
11cf8741
JM
1563
1564struct memory_packet_config
1565{
a121b7c1 1566 const char *name;
11cf8741
JM
1567 long size;
1568 int fixed_p;
1569};
1570
cc0be08f
PA
1571/* The default max memory-write-packet-size, when the setting is
1572 "fixed". The 16k is historical. (It came from older GDB's using
1573 alloca for buffers and the knowledge (folklore?) that some hosts
1574 don't cope very well with large alloca calls.) */
1575#define DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED 16384
a5c0808e
PA
1576
1577/* The minimum remote packet size for memory transfers. Ensures we
1578 can write at least one byte. */
1579#define MIN_MEMORY_PACKET_SIZE 20
1580
cc0be08f
PA
1581/* Get the memory packet size, assuming it is fixed. */
1582
1583static long
1584get_fixed_memory_packet_size (struct memory_packet_config *config)
1585{
1586 gdb_assert (config->fixed_p);
1587
1588 if (config->size <= 0)
1589 return DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED;
1590 else
1591 return config->size;
1592}
1593
11cf8741
JM
1594/* Compute the current size of a read/write packet. Since this makes
1595 use of ``actual_register_packet_size'' the computation is dynamic. */
1596
6b8edb51
PA
1597long
1598remote_target::get_memory_packet_size (struct memory_packet_config *config)
11cf8741 1599{
d01949b6 1600 struct remote_state *rs = get_remote_state ();
9d6eea31 1601 remote_arch_state *rsa = rs->get_remote_arch_state (target_gdbarch ());
ea9c271d 1602
11cf8741
JM
1603 long what_they_get;
1604 if (config->fixed_p)
cc0be08f 1605 what_they_get = get_fixed_memory_packet_size (config);
11cf8741
JM
1606 else
1607 {
ea9c271d 1608 what_they_get = get_remote_packet_size ();
23860348 1609 /* Limit the packet to the size specified by the user. */
11cf8741
JM
1610 if (config->size > 0
1611 && what_they_get > config->size)
1612 what_they_get = config->size;
be2a5f71
DJ
1613
1614 /* Limit it to the size of the targets ``g'' response unless we have
1615 permission from the stub to use a larger packet size. */
1616 if (rs->explicit_packet_size == 0
1617 && rsa->actual_register_packet_size > 0
1618 && what_they_get > rsa->actual_register_packet_size)
1619 what_they_get = rsa->actual_register_packet_size;
11cf8741 1620 }
a5c0808e
PA
1621 if (what_they_get < MIN_MEMORY_PACKET_SIZE)
1622 what_they_get = MIN_MEMORY_PACKET_SIZE;
6d820c5c
DJ
1623
1624 /* Make sure there is room in the global buffer for this packet
1625 (including its trailing NUL byte). */
1626 if (rs->buf_size < what_they_get + 1)
1627 {
1628 rs->buf_size = 2 * what_they_get;
224c3ddb 1629 rs->buf = (char *) xrealloc (rs->buf, 2 * what_they_get);
6d820c5c
DJ
1630 }
1631
11cf8741
JM
1632 return what_they_get;
1633}
1634
0df8b418 1635/* Update the size of a read/write packet. If they user wants
23860348 1636 something really big then do a sanity check. */
11cf8741
JM
1637
1638static void
ac88e2de 1639set_memory_packet_size (const char *args, struct memory_packet_config *config)
11cf8741
JM
1640{
1641 int fixed_p = config->fixed_p;
1642 long size = config->size;
a744cf53 1643
11cf8741 1644 if (args == NULL)
8a3fe4f8 1645 error (_("Argument required (integer, `fixed' or `limited')."));
11cf8741
JM
1646 else if (strcmp (args, "hard") == 0
1647 || strcmp (args, "fixed") == 0)
1648 fixed_p = 1;
1649 else if (strcmp (args, "soft") == 0
1650 || strcmp (args, "limit") == 0)
1651 fixed_p = 0;
1652 else
1653 {
1654 char *end;
a744cf53 1655
11cf8741
JM
1656 size = strtoul (args, &end, 0);
1657 if (args == end)
8a3fe4f8 1658 error (_("Invalid %s (bad syntax)."), config->name);
a5c0808e
PA
1659
1660 /* Instead of explicitly capping the size of a packet to or
1661 disallowing it, the user is allowed to set the size to
1662 something arbitrarily large. */
11cf8741 1663 }
a5c0808e 1664
23860348 1665 /* Extra checks? */
11cf8741
JM
1666 if (fixed_p && !config->fixed_p)
1667 {
cc0be08f
PA
1668 /* So that the query shows the correct value. */
1669 long query_size = (size <= 0
1670 ? DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED
1671 : size);
1672
e2e0b3e5
AC
1673 if (! query (_("The target may not be able to correctly handle a %s\n"
1674 "of %ld bytes. Change the packet size? "),
cc0be08f 1675 config->name, query_size))
8a3fe4f8 1676 error (_("Packet size not changed."));
11cf8741 1677 }
23860348 1678 /* Update the config. */
11cf8741
JM
1679 config->fixed_p = fixed_p;
1680 config->size = size;
1681}
1682
1683static void
1684show_memory_packet_size (struct memory_packet_config *config)
1685{
cc0be08f
PA
1686 if (config->size == 0)
1687 printf_filtered (_("The %s is 0 (default). "), config->name);
1688 else
1689 printf_filtered (_("The %s is %ld. "), config->name, config->size);
11cf8741 1690 if (config->fixed_p)
a3f17187 1691 printf_filtered (_("Packets are fixed at %ld bytes.\n"),
cc0be08f 1692 get_fixed_memory_packet_size (config));
11cf8741 1693 else
cc0be08f 1694 {
6b8edb51 1695 remote_target *remote = get_current_remote_target ();
cc0be08f 1696
6b8edb51 1697 if (remote != NULL)
cc0be08f 1698 printf_filtered (_("Packets are limited to %ld bytes.\n"),
6b8edb51 1699 remote->get_memory_packet_size (config));
cc0be08f
PA
1700 else
1701 puts_filtered ("The actual limit will be further reduced "
1702 "dependent on the target.\n");
1703 }
11cf8741
JM
1704}
1705
1706static struct memory_packet_config memory_write_packet_config =
1707{
1708 "memory-write-packet-size",
1709};
1710
1711static void
ac88e2de 1712set_memory_write_packet_size (const char *args, int from_tty)
11cf8741
JM
1713{
1714 set_memory_packet_size (args, &memory_write_packet_config);
1715}
1716
1717static void
ac88e2de 1718show_memory_write_packet_size (const char *args, int from_tty)
11cf8741
JM
1719{
1720 show_memory_packet_size (&memory_write_packet_config);
1721}
1722
055303e2
AB
1723/* Show the number of hardware watchpoints that can be used. */
1724
1725static void
1726show_hardware_watchpoint_limit (struct ui_file *file, int from_tty,
1727 struct cmd_list_element *c,
1728 const char *value)
1729{
1730 fprintf_filtered (file, _("The maximum number of target hardware "
1731 "watchpoints is %s.\n"), value);
1732}
1733
1734/* Show the length limit (in bytes) for hardware watchpoints. */
1735
1736static void
1737show_hardware_watchpoint_length_limit (struct ui_file *file, int from_tty,
1738 struct cmd_list_element *c,
1739 const char *value)
1740{
1741 fprintf_filtered (file, _("The maximum length (in bytes) of a target "
1742 "hardware watchpoint is %s.\n"), value);
1743}
1744
1745/* Show the number of hardware breakpoints that can be used. */
1746
1747static void
1748show_hardware_breakpoint_limit (struct ui_file *file, int from_tty,
1749 struct cmd_list_element *c,
1750 const char *value)
1751{
1752 fprintf_filtered (file, _("The maximum number of target hardware "
1753 "breakpoints is %s.\n"), value);
1754}
1755
6b8edb51
PA
1756long
1757remote_target::get_memory_write_packet_size ()
11cf8741
JM
1758{
1759 return get_memory_packet_size (&memory_write_packet_config);
1760}
1761
1762static struct memory_packet_config memory_read_packet_config =
1763{
1764 "memory-read-packet-size",
1765};
1766
1767static void
ac88e2de 1768set_memory_read_packet_size (const char *args, int from_tty)
11cf8741
JM
1769{
1770 set_memory_packet_size (args, &memory_read_packet_config);
1771}
1772
1773static void
ac88e2de 1774show_memory_read_packet_size (const char *args, int from_tty)
11cf8741
JM
1775{
1776 show_memory_packet_size (&memory_read_packet_config);
1777}
1778
6b8edb51
PA
1779long
1780remote_target::get_memory_read_packet_size ()
11cf8741
JM
1781{
1782 long size = get_memory_packet_size (&memory_read_packet_config);
a744cf53 1783
11cf8741
JM
1784 /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
1785 extra buffer size argument before the memory read size can be
ea9c271d
DJ
1786 increased beyond this. */
1787 if (size > get_remote_packet_size ())
1788 size = get_remote_packet_size ();
11cf8741
JM
1789 return size;
1790}
1791
11cf8741 1792\f
5a2468f5 1793
5a2468f5
JM
1794struct packet_config
1795 {
bb572ddd
DJ
1796 const char *name;
1797 const char *title;
4082afcc
PA
1798
1799 /* If auto, GDB auto-detects support for this packet or feature,
1800 either through qSupported, or by trying the packet and looking
1801 at the response. If true, GDB assumes the target supports this
ca4f7f8b
PA
1802 packet. If false, the packet is disabled. Configs that don't
1803 have an associated command always have this set to auto. */
7f19b9a2 1804 enum auto_boolean detect;
4082afcc
PA
1805
1806 /* Does the target support this packet? */
5a2468f5
JM
1807 enum packet_support support;
1808 };
1809
4082afcc
PA
1810static enum packet_support packet_config_support (struct packet_config *config);
1811static enum packet_support packet_support (int packet);
5a2468f5
JM
1812
1813static void
fba45db2 1814show_packet_config_cmd (struct packet_config *config)
5a2468f5 1815{
a121b7c1 1816 const char *support = "internal-error";
a744cf53 1817
4082afcc 1818 switch (packet_config_support (config))
5a2468f5
JM
1819 {
1820 case PACKET_ENABLE:
1821 support = "enabled";
1822 break;
1823 case PACKET_DISABLE:
1824 support = "disabled";
1825 break;
1826 case PACKET_SUPPORT_UNKNOWN:
1827 support = "unknown";
1828 break;
1829 }
1830 switch (config->detect)
1831 {
7f19b9a2 1832 case AUTO_BOOLEAN_AUTO:
3e43a32a
MS
1833 printf_filtered (_("Support for the `%s' packet "
1834 "is auto-detected, currently %s.\n"),
37a105a1 1835 config->name, support);
5a2468f5 1836 break;
7f19b9a2
AC
1837 case AUTO_BOOLEAN_TRUE:
1838 case AUTO_BOOLEAN_FALSE:
37a105a1
DJ
1839 printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
1840 config->name, support);
8e248173 1841 break;
5a2468f5
JM
1842 }
1843}
1844
1845static void
bb572ddd
DJ
1846add_packet_config_cmd (struct packet_config *config, const char *name,
1847 const char *title, int legacy)
d471ea57 1848{
5a2468f5
JM
1849 char *set_doc;
1850 char *show_doc;
d471ea57 1851 char *cmd_name;
3ed07be4 1852
5a2468f5
JM
1853 config->name = name;
1854 config->title = title;
b435e160
AC
1855 set_doc = xstrprintf ("Set use of remote protocol `%s' (%s) packet",
1856 name, title);
3e43a32a
MS
1857 show_doc = xstrprintf ("Show current use of remote "
1858 "protocol `%s' (%s) packet",
b435e160 1859 name, title);
d471ea57 1860 /* set/show TITLE-packet {auto,on,off} */
b435e160 1861 cmd_name = xstrprintf ("%s-packet", title);
e9e68a56 1862 add_setshow_auto_boolean_cmd (cmd_name, class_obscure,
3e43a32a
MS
1863 &config->detect, set_doc,
1864 show_doc, NULL, /* help_doc */
4082afcc 1865 NULL,
bb572ddd
DJ
1866 show_remote_protocol_packet_cmd,
1867 &remote_set_cmdlist, &remote_show_cmdlist);
1eefb858
TT
1868 /* The command code copies the documentation strings. */
1869 xfree (set_doc);
1870 xfree (show_doc);
23860348 1871 /* set/show remote NAME-packet {auto,on,off} -- legacy. */
d471ea57
AC
1872 if (legacy)
1873 {
1874 char *legacy_name;
a744cf53 1875
b435e160 1876 legacy_name = xstrprintf ("%s-packet", name);
d471ea57 1877 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
bb572ddd 1878 &remote_set_cmdlist);
d471ea57 1879 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
bb572ddd 1880 &remote_show_cmdlist);
d471ea57 1881 }
5a2468f5
JM
1882}
1883
d471ea57 1884static enum packet_result
a76d924d 1885packet_check_result (const char *buf)
5a2468f5 1886{
d471ea57 1887 if (buf[0] != '\0')
5a2468f5 1888 {
d471ea57 1889 /* The stub recognized the packet request. Check that the
23860348 1890 operation succeeded. */
a76d924d
DJ
1891 if (buf[0] == 'E'
1892 && isxdigit (buf[1]) && isxdigit (buf[2])
1893 && buf[3] == '\0')
1894 /* "Enn" - definitly an error. */
1895 return PACKET_ERROR;
1896
1897 /* Always treat "E." as an error. This will be used for
1898 more verbose error messages, such as E.memtypes. */
1899 if (buf[0] == 'E' && buf[1] == '.')
1900 return PACKET_ERROR;
1901
1902 /* The packet may or may not be OK. Just assume it is. */
1903 return PACKET_OK;
1904 }
1905 else
1906 /* The stub does not support the packet. */
1907 return PACKET_UNKNOWN;
1908}
1909
1910static enum packet_result
1911packet_ok (const char *buf, struct packet_config *config)
1912{
1913 enum packet_result result;
1914
4082afcc
PA
1915 if (config->detect != AUTO_BOOLEAN_TRUE
1916 && config->support == PACKET_DISABLE)
1917 internal_error (__FILE__, __LINE__,
1918 _("packet_ok: attempt to use a disabled packet"));
1919
a76d924d
DJ
1920 result = packet_check_result (buf);
1921 switch (result)
1922 {
1923 case PACKET_OK:
1924 case PACKET_ERROR:
1925 /* The stub recognized the packet request. */
4082afcc 1926 if (config->support == PACKET_SUPPORT_UNKNOWN)
d471ea57 1927 {
d471ea57
AC
1928 if (remote_debug)
1929 fprintf_unfiltered (gdb_stdlog,
4082afcc
PA
1930 "Packet %s (%s) is supported\n",
1931 config->name, config->title);
d471ea57 1932 config->support = PACKET_ENABLE;
d471ea57 1933 }
a76d924d
DJ
1934 break;
1935 case PACKET_UNKNOWN:
23860348 1936 /* The stub does not support the packet. */
4082afcc
PA
1937 if (config->detect == AUTO_BOOLEAN_AUTO
1938 && config->support == PACKET_ENABLE)
d471ea57 1939 {
4082afcc
PA
1940 /* If the stub previously indicated that the packet was
1941 supported then there is a protocol error. */
1942 error (_("Protocol error: %s (%s) conflicting enabled responses."),
1943 config->name, config->title);
1944 }
1945 else if (config->detect == AUTO_BOOLEAN_TRUE)
1946 {
1947 /* The user set it wrong. */
1948 error (_("Enabled packet %s (%s) not recognized by stub"),
1949 config->name, config->title);
d471ea57 1950 }
4082afcc
PA
1951
1952 if (remote_debug)
1953 fprintf_unfiltered (gdb_stdlog,
1954 "Packet %s (%s) is NOT supported\n",
1955 config->name, config->title);
1956 config->support = PACKET_DISABLE;
a76d924d 1957 break;
5a2468f5 1958 }
a76d924d
DJ
1959
1960 return result;
5a2468f5
JM
1961}
1962
444abaca
DJ
1963enum {
1964 PACKET_vCont = 0,
1965 PACKET_X,
1966 PACKET_qSymbol,
1967 PACKET_P,
1968 PACKET_p,
1969 PACKET_Z0,
1970 PACKET_Z1,
1971 PACKET_Z2,
1972 PACKET_Z3,
1973 PACKET_Z4,
15a201c8 1974 PACKET_vFile_setfs,
a6b151f1
DJ
1975 PACKET_vFile_open,
1976 PACKET_vFile_pread,
1977 PACKET_vFile_pwrite,
1978 PACKET_vFile_close,
1979 PACKET_vFile_unlink,
b9e7b9c3 1980 PACKET_vFile_readlink,
0a93529c 1981 PACKET_vFile_fstat,
0876f84a 1982 PACKET_qXfer_auxv,
23181151 1983 PACKET_qXfer_features,
c78fa86a 1984 PACKET_qXfer_exec_file,
cfa9d6d9 1985 PACKET_qXfer_libraries,
2268b414 1986 PACKET_qXfer_libraries_svr4,
fd79ecee 1987 PACKET_qXfer_memory_map,
0e7f50da
UW
1988 PACKET_qXfer_spu_read,
1989 PACKET_qXfer_spu_write,
07e059b5 1990 PACKET_qXfer_osdata,
dc146f7c 1991 PACKET_qXfer_threads,
0fb4aa4b 1992 PACKET_qXfer_statictrace_read,
b3b9301e 1993 PACKET_qXfer_traceframe_info,
169081d0 1994 PACKET_qXfer_uib,
711e434b 1995 PACKET_qGetTIBAddr,
444abaca 1996 PACKET_qGetTLSAddr,
be2a5f71 1997 PACKET_qSupported,
bd3eecc3 1998 PACKET_qTStatus,
89be2091 1999 PACKET_QPassSignals,
82075af2 2000 PACKET_QCatchSyscalls,
9b224c5e 2001 PACKET_QProgramSignals,
bc3b087d 2002 PACKET_QSetWorkingDir,
aefd8b33 2003 PACKET_QStartupWithShell,
0a2dde4a
SDJ
2004 PACKET_QEnvironmentHexEncoded,
2005 PACKET_QEnvironmentReset,
2006 PACKET_QEnvironmentUnset,
936d2992 2007 PACKET_qCRC,
08388c79 2008 PACKET_qSearch_memory,
2d717e4f
DJ
2009 PACKET_vAttach,
2010 PACKET_vRun,
a6f3e723 2011 PACKET_QStartNoAckMode,
82f73884 2012 PACKET_vKill,
4aa995e1
PA
2013 PACKET_qXfer_siginfo_read,
2014 PACKET_qXfer_siginfo_write,
0b16c5cf 2015 PACKET_qAttached,
4082afcc
PA
2016
2017 /* Support for conditional tracepoints. */
782b2b07 2018 PACKET_ConditionalTracepoints,
4082afcc
PA
2019
2020 /* Support for target-side breakpoint conditions. */
3788aec7 2021 PACKET_ConditionalBreakpoints,
4082afcc
PA
2022
2023 /* Support for target-side breakpoint commands. */
d3ce09f5 2024 PACKET_BreakpointCommands,
4082afcc
PA
2025
2026 /* Support for fast tracepoints. */
7a697b8d 2027 PACKET_FastTracepoints,
4082afcc
PA
2028
2029 /* Support for static tracepoints. */
0fb4aa4b 2030 PACKET_StaticTracepoints,
4082afcc
PA
2031
2032 /* Support for installing tracepoints while a trace experiment is
2033 running. */
1e4d1764 2034 PACKET_InstallInTrace,
4082afcc 2035
40ab02ce
MS
2036 PACKET_bc,
2037 PACKET_bs,
409873ef 2038 PACKET_TracepointSource,
d914c394 2039 PACKET_QAllow,
78d85199 2040 PACKET_qXfer_fdpic,
03583c20 2041 PACKET_QDisableRandomization,
d1feda86 2042 PACKET_QAgent,
f6f899bf 2043 PACKET_QTBuffer_size,
9accd112
MM
2044 PACKET_Qbtrace_off,
2045 PACKET_Qbtrace_bts,
b20a6524 2046 PACKET_Qbtrace_pt,
9accd112 2047 PACKET_qXfer_btrace,
4082afcc
PA
2048
2049 /* Support for the QNonStop packet. */
2050 PACKET_QNonStop,
2051
65706a29
PA
2052 /* Support for the QThreadEvents packet. */
2053 PACKET_QThreadEvents,
2054
4082afcc
PA
2055 /* Support for multi-process extensions. */
2056 PACKET_multiprocess_feature,
2057
2058 /* Support for enabling and disabling tracepoints while a trace
2059 experiment is running. */
2060 PACKET_EnableDisableTracepoints_feature,
2061
2062 /* Support for collecting strings using the tracenz bytecode. */
2063 PACKET_tracenz_feature,
2064
2065 /* Support for continuing to run a trace experiment while GDB is
2066 disconnected. */
2067 PACKET_DisconnectedTracing_feature,
2068
2069 /* Support for qXfer:libraries-svr4:read with a non-empty annex. */
2070 PACKET_augmented_libraries_svr4_read_feature,
2071
f4abbc16
MM
2072 /* Support for the qXfer:btrace-conf:read packet. */
2073 PACKET_qXfer_btrace_conf,
2074
d33501a5
MM
2075 /* Support for the Qbtrace-conf:bts:size packet. */
2076 PACKET_Qbtrace_conf_bts_size,
2077
f7e6eed5
PA
2078 /* Support for swbreak+ feature. */
2079 PACKET_swbreak_feature,
2080
2081 /* Support for hwbreak+ feature. */
2082 PACKET_hwbreak_feature,
2083
89245bc0
DB
2084 /* Support for fork events. */
2085 PACKET_fork_event_feature,
2086
2087 /* Support for vfork events. */
2088 PACKET_vfork_event_feature,
2089
b20a6524
MM
2090 /* Support for the Qbtrace-conf:pt:size packet. */
2091 PACKET_Qbtrace_conf_pt_size,
2092
94585166
DB
2093 /* Support for exec events. */
2094 PACKET_exec_event_feature,
2095
750ce8d1
YQ
2096 /* Support for query supported vCont actions. */
2097 PACKET_vContSupported,
2098
de979965
PA
2099 /* Support remote CTRL-C. */
2100 PACKET_vCtrlC,
2101
f2faf941
PA
2102 /* Support TARGET_WAITKIND_NO_RESUMED. */
2103 PACKET_no_resumed,
2104
444abaca
DJ
2105 PACKET_MAX
2106};
506fb367 2107
444abaca 2108static struct packet_config remote_protocol_packets[PACKET_MAX];
dc8acb97 2109
f7e6eed5
PA
2110/* Returns the packet's corresponding "set remote foo-packet" command
2111 state. See struct packet_config for more details. */
2112
2113static enum auto_boolean
2114packet_set_cmd_state (int packet)
2115{
2116 return remote_protocol_packets[packet].detect;
2117}
2118
4082afcc
PA
2119/* Returns whether a given packet or feature is supported. This takes
2120 into account the state of the corresponding "set remote foo-packet"
2121 command, which may be used to bypass auto-detection. */
dc8acb97 2122
4082afcc
PA
2123static enum packet_support
2124packet_config_support (struct packet_config *config)
2125{
2126 switch (config->detect)
444abaca 2127 {
4082afcc
PA
2128 case AUTO_BOOLEAN_TRUE:
2129 return PACKET_ENABLE;
2130 case AUTO_BOOLEAN_FALSE:
2131 return PACKET_DISABLE;
2132 case AUTO_BOOLEAN_AUTO:
2133 return config->support;
2134 default:
2135 gdb_assert_not_reached (_("bad switch"));
444abaca 2136 }
4082afcc
PA
2137}
2138
2139/* Same as packet_config_support, but takes the packet's enum value as
2140 argument. */
2141
2142static enum packet_support
2143packet_support (int packet)
2144{
2145 struct packet_config *config = &remote_protocol_packets[packet];
2146
2147 return packet_config_support (config);
dc8acb97
MS
2148}
2149
5a2468f5 2150static void
444abaca
DJ
2151show_remote_protocol_packet_cmd (struct ui_file *file, int from_tty,
2152 struct cmd_list_element *c,
2153 const char *value)
5a2468f5 2154{
444abaca 2155 struct packet_config *packet;
5a2468f5 2156
444abaca
DJ
2157 for (packet = remote_protocol_packets;
2158 packet < &remote_protocol_packets[PACKET_MAX];
2159 packet++)
2160 {
2161 if (&packet->detect == c->var)
2162 {
2163 show_packet_config_cmd (packet);
2164 return;
2165 }
2166 }
9b20d036 2167 internal_error (__FILE__, __LINE__, _("Could not find config for %s"),
444abaca 2168 c->name);
5a2468f5
JM
2169}
2170
d471ea57
AC
2171/* Should we try one of the 'Z' requests? */
2172
2173enum Z_packet_type
2174{
2175 Z_PACKET_SOFTWARE_BP,
2176 Z_PACKET_HARDWARE_BP,
2177 Z_PACKET_WRITE_WP,
2178 Z_PACKET_READ_WP,
2179 Z_PACKET_ACCESS_WP,
2180 NR_Z_PACKET_TYPES
2181};
96baa820 2182
d471ea57 2183/* For compatibility with older distributions. Provide a ``set remote
23860348 2184 Z-packet ...'' command that updates all the Z packet types. */
d471ea57 2185
7f19b9a2 2186static enum auto_boolean remote_Z_packet_detect;
96baa820
JM
2187
2188static void
eb4c3f4a 2189set_remote_protocol_Z_packet_cmd (const char *args, int from_tty,
fba45db2 2190 struct cmd_list_element *c)
96baa820 2191{
d471ea57 2192 int i;
a744cf53 2193
d471ea57 2194 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
4082afcc 2195 remote_protocol_packets[PACKET_Z0 + i].detect = remote_Z_packet_detect;
96baa820
JM
2196}
2197
2198static void
08546159
AC
2199show_remote_protocol_Z_packet_cmd (struct ui_file *file, int from_tty,
2200 struct cmd_list_element *c,
2201 const char *value)
96baa820 2202{
d471ea57 2203 int i;
a744cf53 2204
d471ea57
AC
2205 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
2206 {
444abaca 2207 show_packet_config_cmd (&remote_protocol_packets[PACKET_Z0 + i]);
d471ea57 2208 }
96baa820
JM
2209}
2210
4082afcc
PA
2211/* Returns true if the multi-process extensions are in effect. */
2212
2213static int
2214remote_multi_process_p (struct remote_state *rs)
2215{
2216 return packet_support (PACKET_multiprocess_feature) == PACKET_ENABLE;
2217}
2218
de0d863e
DB
2219/* Returns true if fork events are supported. */
2220
2221static int
2222remote_fork_event_p (struct remote_state *rs)
2223{
2224 return packet_support (PACKET_fork_event_feature) == PACKET_ENABLE;
2225}
2226
c269dbdb
DB
2227/* Returns true if vfork events are supported. */
2228
2229static int
2230remote_vfork_event_p (struct remote_state *rs)
2231{
2232 return packet_support (PACKET_vfork_event_feature) == PACKET_ENABLE;
2233}
2234
d46addbb
DB
2235/* Returns true if exec events are supported. */
2236
2237static int
2238remote_exec_event_p (struct remote_state *rs)
2239{
2240 return packet_support (PACKET_exec_event_feature) == PACKET_ENABLE;
2241}
2242
cbb8991c
DB
2243/* Insert fork catchpoint target routine. If fork events are enabled
2244 then return success, nothing more to do. */
2245
f6ac5f3d
PA
2246int
2247remote_target::insert_fork_catchpoint (int pid)
cbb8991c
DB
2248{
2249 struct remote_state *rs = get_remote_state ();
2250
2251 return !remote_fork_event_p (rs);
2252}
2253
2254/* Remove fork catchpoint target routine. Nothing to do, just
2255 return success. */
2256
f6ac5f3d
PA
2257int
2258remote_target::remove_fork_catchpoint (int pid)
cbb8991c
DB
2259{
2260 return 0;
2261}
2262
2263/* Insert vfork catchpoint target routine. If vfork events are enabled
2264 then return success, nothing more to do. */
2265
f6ac5f3d
PA
2266int
2267remote_target::insert_vfork_catchpoint (int pid)
cbb8991c
DB
2268{
2269 struct remote_state *rs = get_remote_state ();
2270
2271 return !remote_vfork_event_p (rs);
2272}
2273
2274/* Remove vfork catchpoint target routine. Nothing to do, just
2275 return success. */
2276
f6ac5f3d
PA
2277int
2278remote_target::remove_vfork_catchpoint (int pid)
cbb8991c
DB
2279{
2280 return 0;
2281}
2282
d46addbb
DB
2283/* Insert exec catchpoint target routine. If exec events are
2284 enabled, just return success. */
2285
f6ac5f3d
PA
2286int
2287remote_target::insert_exec_catchpoint (int pid)
d46addbb
DB
2288{
2289 struct remote_state *rs = get_remote_state ();
2290
2291 return !remote_exec_event_p (rs);
2292}
2293
2294/* Remove exec catchpoint target routine. Nothing to do, just
2295 return success. */
2296
f6ac5f3d
PA
2297int
2298remote_target::remove_exec_catchpoint (int pid)
d46addbb
DB
2299{
2300 return 0;
2301}
2302
c906108c
SS
2303\f
2304
79d7f229
PA
2305static ptid_t magic_null_ptid;
2306static ptid_t not_sent_ptid;
2307static ptid_t any_thread_ptid;
2308
0b16c5cf
PA
2309/* Find out if the stub attached to PID (and hence GDB should offer to
2310 detach instead of killing it when bailing out). */
2311
6b8edb51
PA
2312int
2313remote_target::remote_query_attached (int pid)
0b16c5cf
PA
2314{
2315 struct remote_state *rs = get_remote_state ();
bba74b36 2316 size_t size = get_remote_packet_size ();
0b16c5cf 2317
4082afcc 2318 if (packet_support (PACKET_qAttached) == PACKET_DISABLE)
0b16c5cf
PA
2319 return 0;
2320
2321 if (remote_multi_process_p (rs))
bba74b36 2322 xsnprintf (rs->buf, size, "qAttached:%x", pid);
0b16c5cf 2323 else
bba74b36 2324 xsnprintf (rs->buf, size, "qAttached");
0b16c5cf
PA
2325
2326 putpkt (rs->buf);
2327 getpkt (&rs->buf, &rs->buf_size, 0);
2328
2329 switch (packet_ok (rs->buf,
1554e9be 2330 &remote_protocol_packets[PACKET_qAttached]))
0b16c5cf
PA
2331 {
2332 case PACKET_OK:
2333 if (strcmp (rs->buf, "1") == 0)
2334 return 1;
2335 break;
2336 case PACKET_ERROR:
2337 warning (_("Remote failure reply: %s"), rs->buf);
2338 break;
2339 case PACKET_UNKNOWN:
2340 break;
2341 }
2342
2343 return 0;
2344}
2345
49c62f2e
PA
2346/* Add PID to GDB's inferior table. If FAKE_PID_P is true, then PID
2347 has been invented by GDB, instead of reported by the target. Since
2348 we can be connected to a remote system before before knowing about
2349 any inferior, mark the target with execution when we find the first
2350 inferior. If ATTACHED is 1, then we had just attached to this
2351 inferior. If it is 0, then we just created this inferior. If it
2352 is -1, then try querying the remote stub to find out if it had
1b6e6f5c
GB
2353 attached to the inferior or not. If TRY_OPEN_EXEC is true then
2354 attempt to open this inferior's executable as the main executable
2355 if no main executable is open already. */
1941c569 2356
6b8edb51
PA
2357inferior *
2358remote_target::remote_add_inferior (int fake_pid_p, int pid, int attached,
2359 int try_open_exec)
1941c569 2360{
1941c569
PA
2361 struct inferior *inf;
2362
0b16c5cf
PA
2363 /* Check whether this process we're learning about is to be
2364 considered attached, or if is to be considered to have been
2365 spawned by the stub. */
2366 if (attached == -1)
2367 attached = remote_query_attached (pid);
2368
f5656ead 2369 if (gdbarch_has_global_solist (target_gdbarch ()))
6c95b8df
PA
2370 {
2371 /* If the target shares code across all inferiors, then every
2372 attach adds a new inferior. */
2373 inf = add_inferior (pid);
2374
2375 /* ... and every inferior is bound to the same program space.
2376 However, each inferior may still have its own address
2377 space. */
2378 inf->aspace = maybe_new_address_space ();
2379 inf->pspace = current_program_space;
2380 }
2381 else
2382 {
2383 /* In the traditional debugging scenario, there's a 1-1 match
2384 between program/address spaces. We simply bind the inferior
2385 to the program space's address space. */
2386 inf = current_inferior ();
2387 inferior_appeared (inf, pid);
2388 }
1941c569 2389
0b16c5cf 2390 inf->attach_flag = attached;
49c62f2e 2391 inf->fake_pid_p = fake_pid_p;
0b16c5cf 2392
1b6e6f5c
GB
2393 /* If no main executable is currently open then attempt to
2394 open the file that was executed to create this inferior. */
835205d0 2395 if (try_open_exec && get_exec_file (0) == NULL)
bb805577 2396 exec_file_locate_attach (pid, 0, 1);
1b6e6f5c 2397
1941c569
PA
2398 return inf;
2399}
2400
7aabaf9d 2401static remote_thread_info *get_remote_thread_info (thread_info *thread);
00431a78 2402static remote_thread_info *get_remote_thread_info (ptid_t ptid);
85ad3aaf 2403
1941c569
PA
2404/* Add thread PTID to GDB's thread list. Tag it as executing/running
2405 according to RUNNING. */
2406
00431a78 2407thread_info *
6b8edb51 2408remote_target::remote_add_thread (ptid_t ptid, bool running, bool executing)
c906108c 2409{
b7ea362b 2410 struct remote_state *rs = get_remote_state ();
85ad3aaf 2411 struct thread_info *thread;
b7ea362b
PA
2412
2413 /* GDB historically didn't pull threads in the initial connection
2414 setup. If the remote target doesn't even have a concept of
2415 threads (e.g., a bare-metal target), even if internally we
2416 consider that a single-threaded target, mentioning a new thread
2417 might be confusing to the user. Be silent then, preserving the
2418 age old behavior. */
2419 if (rs->starting_up)
85ad3aaf 2420 thread = add_thread_silent (ptid);
b7ea362b 2421 else
85ad3aaf 2422 thread = add_thread (ptid);
1941c569 2423
7aabaf9d 2424 get_remote_thread_info (thread)->vcont_resumed = executing;
0d5b594f 2425 set_executing (ptid, executing);
1941c569 2426 set_running (ptid, running);
00431a78
PA
2427
2428 return thread;
1941c569
PA
2429}
2430
2431/* Come here when we learn about a thread id from the remote target.
2432 It may be the first time we hear about such thread, so take the
2433 opportunity to add it to GDB's thread list. In case this is the
2434 first time we're noticing its corresponding inferior, add it to
0d5b594f
PA
2435 GDB's inferior list as well. EXECUTING indicates whether the
2436 thread is (internally) executing or stopped. */
1941c569 2437
6b8edb51
PA
2438void
2439remote_target::remote_notice_new_inferior (ptid_t currthread, int executing)
1941c569 2440{
0d5b594f
PA
2441 /* In non-stop mode, we assume new found threads are (externally)
2442 running until proven otherwise with a stop reply. In all-stop,
2443 we can only get here if all threads are stopped. */
2444 int running = target_is_non_stop_p () ? 1 : 0;
2445
c906108c
SS
2446 /* If this is a new thread, add it to GDB's thread list.
2447 If we leave it up to WFI to do this, bad things will happen. */
82f73884 2448
00431a78
PA
2449 thread_info *tp = find_thread_ptid (currthread);
2450 if (tp != NULL && tp->state == THREAD_EXITED)
82f73884
PA
2451 {
2452 /* We're seeing an event on a thread id we knew had exited.
2453 This has to be a new thread reusing the old id. Add it. */
0d5b594f 2454 remote_add_thread (currthread, running, executing);
82f73884
PA
2455 return;
2456 }
2457
79d7f229 2458 if (!in_thread_list (currthread))
c0a2216e 2459 {
1941c569 2460 struct inferior *inf = NULL;
e99b03dc 2461 int pid = currthread.pid ();
1941c569 2462
0e998d96 2463 if (inferior_ptid.is_pid ()
e99b03dc 2464 && pid == inferior_ptid.pid ())
c0a2216e
PA
2465 {
2466 /* inferior_ptid has no thread member yet. This can happen
2467 with the vAttach -> remote_wait,"TAAthread:" path if the
2468 stub doesn't support qC. This is the first stop reported
2469 after an attach, so this is the main thread. Update the
2470 ptid in the thread list. */
f2907e49 2471 if (in_thread_list (ptid_t (pid)))
bad34192
PA
2472 thread_change_ptid (inferior_ptid, currthread);
2473 else
2474 {
0d5b594f 2475 remote_add_thread (currthread, running, executing);
bad34192
PA
2476 inferior_ptid = currthread;
2477 }
dc146f7c 2478 return;
c0a2216e 2479 }
82f73884 2480
d7e15655 2481 if (magic_null_ptid == inferior_ptid)
c0a2216e
PA
2482 {
2483 /* inferior_ptid is not set yet. This can happen with the
2484 vRun -> remote_wait,"TAAthread:" path if the stub
2485 doesn't support qC. This is the first stop reported
2486 after an attach, so this is the main thread. Update the
2487 ptid in the thread list. */
dc146f7c 2488 thread_change_ptid (inferior_ptid, currthread);
82f73884 2489 return;
c0a2216e 2490 }
82f73884 2491
29c87f7f
PA
2492 /* When connecting to a target remote, or to a target
2493 extended-remote which already was debugging an inferior, we
2494 may not know about it yet. Add it before adding its child
2495 thread, so notifications are emitted in a sensible order. */
e99b03dc 2496 if (find_inferior_pid (currthread.pid ()) == NULL)
49c62f2e
PA
2497 {
2498 struct remote_state *rs = get_remote_state ();
2499 int fake_pid_p = !remote_multi_process_p (rs);
2500
2501 inf = remote_add_inferior (fake_pid_p,
e99b03dc 2502 currthread.pid (), -1, 1);
49c62f2e 2503 }
29c87f7f 2504
82f73884 2505 /* This is really a new thread. Add it. */
00431a78
PA
2506 thread_info *new_thr
2507 = remote_add_thread (currthread, running, executing);
1941c569
PA
2508
2509 /* If we found a new inferior, let the common code do whatever
2510 it needs to with it (e.g., read shared libraries, insert
b7ea362b
PA
2511 breakpoints), unless we're just setting up an all-stop
2512 connection. */
1941c569 2513 if (inf != NULL)
b7ea362b
PA
2514 {
2515 struct remote_state *rs = get_remote_state ();
2516
6efcd9a8 2517 if (!rs->starting_up)
00431a78 2518 notice_new_inferior (new_thr, executing, 0);
b7ea362b 2519 }
c0a2216e 2520 }
c906108c
SS
2521}
2522
85ad3aaf 2523/* Return THREAD's private thread data, creating it if necessary. */
dc146f7c 2524
7aabaf9d
SM
2525static remote_thread_info *
2526get_remote_thread_info (thread_info *thread)
dc146f7c 2527{
85ad3aaf 2528 gdb_assert (thread != NULL);
dc146f7c 2529
85ad3aaf 2530 if (thread->priv == NULL)
7aabaf9d 2531 thread->priv.reset (new remote_thread_info);
dc146f7c 2532
7aabaf9d 2533 return static_cast<remote_thread_info *> (thread->priv.get ());
85ad3aaf
PA
2534}
2535
7aabaf9d
SM
2536static remote_thread_info *
2537get_remote_thread_info (ptid_t ptid)
85ad3aaf 2538{
00431a78
PA
2539 thread_info *thr = find_thread_ptid (ptid);
2540 return get_remote_thread_info (thr);
dc146f7c
VP
2541}
2542
74531fed
PA
2543/* Call this function as a result of
2544 1) A halt indication (T packet) containing a thread id
2545 2) A direct query of currthread
0df8b418 2546 3) Successful execution of set thread */
74531fed
PA
2547
2548static void
47f8a51d 2549record_currthread (struct remote_state *rs, ptid_t currthread)
74531fed 2550{
47f8a51d 2551 rs->general_thread = currthread;
74531fed
PA
2552}
2553
89be2091
DJ
2554/* If 'QPassSignals' is supported, tell the remote stub what signals
2555 it can simply pass through to the inferior without reporting. */
2556
f6ac5f3d 2557void
491adeca 2558remote_target::pass_signals (int numsigs, const unsigned char *pass_signals)
89be2091 2559{
4082afcc 2560 if (packet_support (PACKET_QPassSignals) != PACKET_DISABLE)
89be2091
DJ
2561 {
2562 char *pass_packet, *p;
89be2091 2563 int count = 0, i;
747dc59d 2564 struct remote_state *rs = get_remote_state ();
89be2091
DJ
2565
2566 gdb_assert (numsigs < 256);
2567 for (i = 0; i < numsigs; i++)
2568 {
2455069d 2569 if (pass_signals[i])
89be2091
DJ
2570 count++;
2571 }
224c3ddb 2572 pass_packet = (char *) xmalloc (count * 3 + strlen ("QPassSignals:") + 1);
89be2091
DJ
2573 strcpy (pass_packet, "QPassSignals:");
2574 p = pass_packet + strlen (pass_packet);
2575 for (i = 0; i < numsigs; i++)
2576 {
2455069d 2577 if (pass_signals[i])
89be2091
DJ
2578 {
2579 if (i >= 16)
2580 *p++ = tohex (i >> 4);
2581 *p++ = tohex (i & 15);
2582 if (count)
2583 *p++ = ';';
2584 else
2585 break;
2586 count--;
2587 }
2588 }
2589 *p = 0;
747dc59d 2590 if (!rs->last_pass_packet || strcmp (rs->last_pass_packet, pass_packet))
89be2091 2591 {
89be2091
DJ
2592 putpkt (pass_packet);
2593 getpkt (&rs->buf, &rs->buf_size, 0);
8dc5b319 2594 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QPassSignals]);
747dc59d
TT
2595 if (rs->last_pass_packet)
2596 xfree (rs->last_pass_packet);
2597 rs->last_pass_packet = pass_packet;
89be2091
DJ
2598 }
2599 else
2600 xfree (pass_packet);
2601 }
2602}
2603
82075af2
JS
2604/* If 'QCatchSyscalls' is supported, tell the remote stub
2605 to report syscalls to GDB. */
2606
f6ac5f3d
PA
2607int
2608remote_target::set_syscall_catchpoint (int pid, bool needed, int any_count,
2609 gdb::array_view<const int> syscall_counts)
82075af2 2610{
b80406ac 2611 const char *catch_packet;
82075af2
JS
2612 enum packet_result result;
2613 int n_sysno = 0;
2614
2615 if (packet_support (PACKET_QCatchSyscalls) == PACKET_DISABLE)
2616 {
2617 /* Not supported. */
2618 return 1;
2619 }
2620
649a140c 2621 if (needed && any_count == 0)
82075af2 2622 {
649a140c
PA
2623 /* Count how many syscalls are to be caught. */
2624 for (size_t i = 0; i < syscall_counts.size (); i++)
82075af2 2625 {
649a140c 2626 if (syscall_counts[i] != 0)
82075af2
JS
2627 n_sysno++;
2628 }
2629 }
2630
2631 if (remote_debug)
2632 {
2633 fprintf_unfiltered (gdb_stdlog,
2634 "remote_set_syscall_catchpoint "
2635 "pid %d needed %d any_count %d n_sysno %d\n",
2636 pid, needed, any_count, n_sysno);
2637 }
2638
1b81856f 2639 std::string built_packet;
82075af2
JS
2640 if (needed)
2641 {
2642 /* Prepare a packet with the sysno list, assuming max 8+1
2643 characters for a sysno. If the resulting packet size is too
2644 big, fallback on the non-selective packet. */
2645 const int maxpktsz = strlen ("QCatchSyscalls:1") + n_sysno * 9 + 1;
1b81856f
PA
2646 built_packet.reserve (maxpktsz);
2647 built_packet = "QCatchSyscalls:1";
649a140c 2648 if (any_count == 0)
82075af2 2649 {
649a140c
PA
2650 /* Add in each syscall to be caught. */
2651 for (size_t i = 0; i < syscall_counts.size (); i++)
82075af2 2652 {
649a140c
PA
2653 if (syscall_counts[i] != 0)
2654 string_appendf (built_packet, ";%zx", i);
82075af2
JS
2655 }
2656 }
1b81856f 2657 if (built_packet.size () > get_remote_packet_size ())
82075af2
JS
2658 {
2659 /* catch_packet too big. Fallback to less efficient
2660 non selective mode, with GDB doing the filtering. */
b80406ac 2661 catch_packet = "QCatchSyscalls:1";
82075af2 2662 }
b80406ac 2663 else
1b81856f 2664 catch_packet = built_packet.c_str ();
82075af2
JS
2665 }
2666 else
b80406ac 2667 catch_packet = "QCatchSyscalls:0";
82075af2 2668
b80406ac 2669 struct remote_state *rs = get_remote_state ();
82075af2 2670
b80406ac
TT
2671 putpkt (catch_packet);
2672 getpkt (&rs->buf, &rs->buf_size, 0);
2673 result = packet_ok (rs->buf, &remote_protocol_packets[PACKET_QCatchSyscalls]);
2674 if (result == PACKET_OK)
2675 return 0;
2676 else
2677 return -1;
82075af2
JS
2678}
2679
9b224c5e
PA
2680/* If 'QProgramSignals' is supported, tell the remote stub what
2681 signals it should pass through to the inferior when detaching. */
2682
f6ac5f3d 2683void
491adeca 2684remote_target::program_signals (int numsigs, const unsigned char *signals)
9b224c5e 2685{
4082afcc 2686 if (packet_support (PACKET_QProgramSignals) != PACKET_DISABLE)
9b224c5e
PA
2687 {
2688 char *packet, *p;
2689 int count = 0, i;
5e4a05c4 2690 struct remote_state *rs = get_remote_state ();
9b224c5e
PA
2691
2692 gdb_assert (numsigs < 256);
2693 for (i = 0; i < numsigs; i++)
2694 {
2695 if (signals[i])
2696 count++;
2697 }
224c3ddb 2698 packet = (char *) xmalloc (count * 3 + strlen ("QProgramSignals:") + 1);
9b224c5e
PA
2699 strcpy (packet, "QProgramSignals:");
2700 p = packet + strlen (packet);
2701 for (i = 0; i < numsigs; i++)
2702 {
2703 if (signal_pass_state (i))
2704 {
2705 if (i >= 16)
2706 *p++ = tohex (i >> 4);
2707 *p++ = tohex (i & 15);
2708 if (count)
2709 *p++ = ';';
2710 else
2711 break;
2712 count--;
2713 }
2714 }
2715 *p = 0;
5e4a05c4
TT
2716 if (!rs->last_program_signals_packet
2717 || strcmp (rs->last_program_signals_packet, packet) != 0)
9b224c5e 2718 {
9b224c5e
PA
2719 putpkt (packet);
2720 getpkt (&rs->buf, &rs->buf_size, 0);
8dc5b319 2721 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QProgramSignals]);
5e4a05c4
TT
2722 xfree (rs->last_program_signals_packet);
2723 rs->last_program_signals_packet = packet;
9b224c5e
PA
2724 }
2725 else
2726 xfree (packet);
2727 }
2728}
2729
79d7f229
PA
2730/* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
2731 MINUS_ONE_PTID, set the thread to -1, so the stub returns the
2732 thread. If GEN is set, set the general thread, if not, then set
2733 the step/continue thread. */
6b8edb51
PA
2734void
2735remote_target::set_thread (ptid_t ptid, int gen)
c906108c 2736{
d01949b6 2737 struct remote_state *rs = get_remote_state ();
47f8a51d 2738 ptid_t state = gen ? rs->general_thread : rs->continue_thread;
6d820c5c 2739 char *buf = rs->buf;
79d7f229 2740 char *endbuf = rs->buf + get_remote_packet_size ();
c906108c 2741
d7e15655 2742 if (state == ptid)
c906108c
SS
2743 return;
2744
79d7f229
PA
2745 *buf++ = 'H';
2746 *buf++ = gen ? 'g' : 'c';
d7e15655 2747 if (ptid == magic_null_ptid)
79d7f229 2748 xsnprintf (buf, endbuf - buf, "0");
d7e15655 2749 else if (ptid == any_thread_ptid)
79d7f229 2750 xsnprintf (buf, endbuf - buf, "0");
d7e15655 2751 else if (ptid == minus_one_ptid)
79d7f229
PA
2752 xsnprintf (buf, endbuf - buf, "-1");
2753 else
82f73884 2754 write_ptid (buf, endbuf, ptid);
79d7f229 2755 putpkt (rs->buf);
6d820c5c 2756 getpkt (&rs->buf, &rs->buf_size, 0);
c906108c 2757 if (gen)
47f8a51d 2758 rs->general_thread = ptid;
c906108c 2759 else
47f8a51d 2760 rs->continue_thread = ptid;
c906108c 2761}
79d7f229 2762
6b8edb51
PA
2763void
2764remote_target::set_general_thread (ptid_t ptid)
79d7f229
PA
2765{
2766 set_thread (ptid, 1);
2767}
2768
6b8edb51
PA
2769void
2770remote_target::set_continue_thread (ptid_t ptid)
79d7f229
PA
2771{
2772 set_thread (ptid, 0);
2773}
2774
3c9c4b83
PA
2775/* Change the remote current process. Which thread within the process
2776 ends up selected isn't important, as long as it is the same process
2777 as what INFERIOR_PTID points to.
2778
2779 This comes from that fact that there is no explicit notion of
2780 "selected process" in the protocol. The selected process for
2781 general operations is the process the selected general thread
2782 belongs to. */
2783
6b8edb51
PA
2784void
2785remote_target::set_general_process ()
3c9c4b83
PA
2786{
2787 struct remote_state *rs = get_remote_state ();
2788
2789 /* If the remote can't handle multiple processes, don't bother. */
8020350c 2790 if (!remote_multi_process_p (rs))
3c9c4b83
PA
2791 return;
2792
2793 /* We only need to change the remote current thread if it's pointing
2794 at some other process. */
e99b03dc 2795 if (rs->general_thread.pid () != inferior_ptid.pid ())
3c9c4b83
PA
2796 set_general_thread (inferior_ptid);
2797}
2798
c906108c 2799\f
7d1a114c
PA
2800/* Return nonzero if this is the main thread that we made up ourselves
2801 to model non-threaded targets as single-threaded. */
c906108c
SS
2802
2803static int
f6ac5f3d 2804remote_thread_always_alive (ptid_t ptid)
c906108c 2805{
d7e15655 2806 if (ptid == magic_null_ptid)
c0a2216e
PA
2807 /* The main thread is always alive. */
2808 return 1;
2809
e38504b3 2810 if (ptid.pid () != 0 && ptid.lwp () == 0)
c0a2216e
PA
2811 /* The main thread is always alive. This can happen after a
2812 vAttach, if the remote side doesn't support
2813 multi-threading. */
2814 return 1;
2815
7d1a114c
PA
2816 return 0;
2817}
2818
2819/* Return nonzero if the thread PTID is still alive on the remote
2820 system. */
2821
57810aa7 2822bool
f6ac5f3d 2823remote_target::thread_alive (ptid_t ptid)
7d1a114c
PA
2824{
2825 struct remote_state *rs = get_remote_state ();
2826 char *p, *endp;
2827
2828 /* Check if this is a thread that we made up ourselves to model
2829 non-threaded targets as single-threaded. */
f6ac5f3d 2830 if (remote_thread_always_alive (ptid))
7d1a114c
PA
2831 return 1;
2832
82f73884
PA
2833 p = rs->buf;
2834 endp = rs->buf + get_remote_packet_size ();
2835
2836 *p++ = 'T';
2837 write_ptid (p, endp, ptid);
2838
2e9f7625 2839 putpkt (rs->buf);
6d820c5c 2840 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 2841 return (rs->buf[0] == 'O' && rs->buf[1] == 'K');
c906108c
SS
2842}
2843
79efa585
SM
2844/* Return a pointer to a thread name if we know it and NULL otherwise.
2845 The thread_info object owns the memory for the name. */
2846
f6ac5f3d
PA
2847const char *
2848remote_target::thread_name (struct thread_info *info)
79efa585
SM
2849{
2850 if (info->priv != NULL)
a9334058
SM
2851 {
2852 const std::string &name = get_remote_thread_info (info)->name;
2853 return !name.empty () ? name.c_str () : NULL;
2854 }
79efa585
SM
2855
2856 return NULL;
2857}
2858
c906108c
SS
2859/* About these extended threadlist and threadinfo packets. They are
2860 variable length packets but, the fields within them are often fixed
2861 length. They are redundent enough to send over UDP as is the
2862 remote protocol in general. There is a matching unit test module
2863 in libstub. */
2864
23860348 2865/* WARNING: This threadref data structure comes from the remote O.S.,
0df8b418 2866 libstub protocol encoding, and remote.c. It is not particularly
23860348 2867 changable. */
cce74817
JM
2868
2869/* Right now, the internal structure is int. We want it to be bigger.
0df8b418 2870 Plan to fix this. */
cce74817 2871
23860348 2872typedef int gdb_threadref; /* Internal GDB thread reference. */
cce74817 2873
9d1f7ab2 2874/* gdb_ext_thread_info is an internal GDB data structure which is
cfde0993 2875 equivalent to the reply of the remote threadinfo packet. */
cce74817
JM
2876
2877struct gdb_ext_thread_info
c5aa993b 2878 {
23860348 2879 threadref threadid; /* External form of thread reference. */
2bc416ba 2880 int active; /* Has state interesting to GDB?
23860348 2881 regs, stack. */
2bc416ba 2882 char display[256]; /* Brief state display, name,
cedea757 2883 blocked/suspended. */
23860348 2884 char shortname[32]; /* To be used to name threads. */
2bc416ba 2885 char more_display[256]; /* Long info, statistics, queue depth,
23860348 2886 whatever. */
c5aa993b 2887 };
cce74817
JM
2888
2889/* The volume of remote transfers can be limited by submitting
2890 a mask containing bits specifying the desired information.
2891 Use a union of these values as the 'selection' parameter to
0df8b418 2892 get_thread_info. FIXME: Make these TAG names more thread specific. */
cce74817
JM
2893
2894#define TAG_THREADID 1
2895#define TAG_EXISTS 2
2896#define TAG_DISPLAY 4
2897#define TAG_THREADNAME 8
c5aa993b 2898#define TAG_MOREDISPLAY 16
cce74817 2899
23860348 2900#define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
c906108c 2901
a14ed312 2902static char *unpack_nibble (char *buf, int *val);
cce74817 2903
a14ed312 2904static char *unpack_byte (char *buf, int *value);
cce74817 2905
a14ed312 2906static char *pack_int (char *buf, int value);
cce74817 2907
a14ed312 2908static char *unpack_int (char *buf, int *value);
cce74817 2909
a14ed312 2910static char *unpack_string (char *src, char *dest, int length);
cce74817 2911
23860348 2912static char *pack_threadid (char *pkt, threadref *id);
cce74817 2913
23860348 2914static char *unpack_threadid (char *inbuf, threadref *id);
cce74817 2915
23860348 2916void int_to_threadref (threadref *id, int value);
cce74817 2917
23860348 2918static int threadref_to_int (threadref *ref);
cce74817 2919
23860348 2920static void copy_threadref (threadref *dest, threadref *src);
cce74817 2921
23860348 2922static int threadmatch (threadref *dest, threadref *src);
cce74817 2923
2bc416ba 2924static char *pack_threadinfo_request (char *pkt, int mode,
23860348 2925 threadref *id);
cce74817 2926
a14ed312
KB
2927static char *pack_threadlist_request (char *pkt, int startflag,
2928 int threadcount,
23860348 2929 threadref *nextthread);
cce74817 2930
23860348 2931static int remote_newthread_step (threadref *ref, void *context);
cce74817 2932
82f73884
PA
2933
2934/* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the
2935 buffer we're allowed to write to. Returns
2936 BUF+CHARACTERS_WRITTEN. */
2937
6b8edb51
PA
2938char *
2939remote_target::write_ptid (char *buf, const char *endbuf, ptid_t ptid)
82f73884
PA
2940{
2941 int pid, tid;
2942 struct remote_state *rs = get_remote_state ();
2943
2944 if (remote_multi_process_p (rs))
2945 {
e99b03dc 2946 pid = ptid.pid ();
82f73884
PA
2947 if (pid < 0)
2948 buf += xsnprintf (buf, endbuf - buf, "p-%x.", -pid);
2949 else
2950 buf += xsnprintf (buf, endbuf - buf, "p%x.", pid);
2951 }
e38504b3 2952 tid = ptid.lwp ();
82f73884
PA
2953 if (tid < 0)
2954 buf += xsnprintf (buf, endbuf - buf, "-%x", -tid);
2955 else
2956 buf += xsnprintf (buf, endbuf - buf, "%x", tid);
2957
2958 return buf;
2959}
2960
256642e8
PA
2961/* Extract a PTID from BUF. If non-null, OBUF is set to one past the
2962 last parsed char. Returns null_ptid if no thread id is found, and
2963 throws an error if the thread id has an invalid format. */
82f73884
PA
2964
2965static ptid_t
256642e8 2966read_ptid (const char *buf, const char **obuf)
82f73884 2967{
256642e8
PA
2968 const char *p = buf;
2969 const char *pp;
82f73884 2970 ULONGEST pid = 0, tid = 0;
82f73884
PA
2971
2972 if (*p == 'p')
2973 {
2974 /* Multi-process ptid. */
2975 pp = unpack_varlen_hex (p + 1, &pid);
2976 if (*pp != '.')
b37520b6 2977 error (_("invalid remote ptid: %s"), p);
82f73884
PA
2978
2979 p = pp;
2980 pp = unpack_varlen_hex (p + 1, &tid);
2981 if (obuf)
2982 *obuf = pp;
fd79271b 2983 return ptid_t (pid, tid, 0);
82f73884
PA
2984 }
2985
2986 /* No multi-process. Just a tid. */
2987 pp = unpack_varlen_hex (p, &tid);
2988
c9f35b34
KB
2989 /* Return null_ptid when no thread id is found. */
2990 if (p == pp)
2991 {
2992 if (obuf)
2993 *obuf = pp;
2994 return null_ptid;
2995 }
2996
82f73884 2997 /* Since the stub is not sending a process id, then default to
ca19bf23
PA
2998 what's in inferior_ptid, unless it's null at this point. If so,
2999 then since there's no way to know the pid of the reported
3000 threads, use the magic number. */
d7e15655 3001 if (inferior_ptid == null_ptid)
e99b03dc 3002 pid = magic_null_ptid.pid ();
ca19bf23 3003 else
e99b03dc 3004 pid = inferior_ptid.pid ();
82f73884
PA
3005
3006 if (obuf)
3007 *obuf = pp;
fd79271b 3008 return ptid_t (pid, tid, 0);
82f73884
PA
3009}
3010
c906108c 3011static int
fba45db2 3012stubhex (int ch)
c906108c
SS
3013{
3014 if (ch >= 'a' && ch <= 'f')
3015 return ch - 'a' + 10;
3016 if (ch >= '0' && ch <= '9')
3017 return ch - '0';
3018 if (ch >= 'A' && ch <= 'F')
3019 return ch - 'A' + 10;
3020 return -1;
3021}
3022
3023static int
fba45db2 3024stub_unpack_int (char *buff, int fieldlength)
c906108c
SS
3025{
3026 int nibble;
3027 int retval = 0;
3028
3029 while (fieldlength)
3030 {
3031 nibble = stubhex (*buff++);
3032 retval |= nibble;
3033 fieldlength--;
3034 if (fieldlength)
3035 retval = retval << 4;
3036 }
3037 return retval;
3038}
3039
c906108c 3040static char *
fba45db2 3041unpack_nibble (char *buf, int *val)
c906108c 3042{
b7589f7d 3043 *val = fromhex (*buf++);
c906108c
SS
3044 return buf;
3045}
3046
c906108c 3047static char *
fba45db2 3048unpack_byte (char *buf, int *value)
c906108c
SS
3049{
3050 *value = stub_unpack_int (buf, 2);
3051 return buf + 2;
3052}
3053
3054static char *
fba45db2 3055pack_int (char *buf, int value)
c906108c
SS
3056{
3057 buf = pack_hex_byte (buf, (value >> 24) & 0xff);
3058 buf = pack_hex_byte (buf, (value >> 16) & 0xff);
3059 buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
3060 buf = pack_hex_byte (buf, (value & 0xff));
3061 return buf;
3062}
3063
3064static char *
fba45db2 3065unpack_int (char *buf, int *value)
c906108c
SS
3066{
3067 *value = stub_unpack_int (buf, 8);
3068 return buf + 8;
3069}
3070
23860348 3071#if 0 /* Currently unused, uncomment when needed. */
a14ed312 3072static char *pack_string (char *pkt, char *string);
c906108c
SS
3073
3074static char *
fba45db2 3075pack_string (char *pkt, char *string)
c906108c
SS
3076{
3077 char ch;
3078 int len;
3079
3080 len = strlen (string);
3081 if (len > 200)
23860348 3082 len = 200; /* Bigger than most GDB packets, junk??? */
c906108c
SS
3083 pkt = pack_hex_byte (pkt, len);
3084 while (len-- > 0)
3085 {
3086 ch = *string++;
3087 if ((ch == '\0') || (ch == '#'))
23860348 3088 ch = '*'; /* Protect encapsulation. */
c906108c
SS
3089 *pkt++ = ch;
3090 }
3091 return pkt;
3092}
3093#endif /* 0 (unused) */
3094
3095static char *
fba45db2 3096unpack_string (char *src, char *dest, int length)
c906108c
SS
3097{
3098 while (length--)
3099 *dest++ = *src++;
3100 *dest = '\0';
3101 return src;
3102}
3103
3104static char *
fba45db2 3105pack_threadid (char *pkt, threadref *id)
c906108c
SS
3106{
3107 char *limit;
3108 unsigned char *altid;
3109
3110 altid = (unsigned char *) id;
3111 limit = pkt + BUF_THREAD_ID_SIZE;
3112 while (pkt < limit)
3113 pkt = pack_hex_byte (pkt, *altid++);
3114 return pkt;
3115}
3116
3117
3118static char *
fba45db2 3119unpack_threadid (char *inbuf, threadref *id)
c906108c
SS
3120{
3121 char *altref;
3122 char *limit = inbuf + BUF_THREAD_ID_SIZE;
3123 int x, y;
3124
3125 altref = (char *) id;
3126
3127 while (inbuf < limit)
3128 {
3129 x = stubhex (*inbuf++);
3130 y = stubhex (*inbuf++);
3131 *altref++ = (x << 4) | y;
3132 }
3133 return inbuf;
3134}
3135
3136/* Externally, threadrefs are 64 bits but internally, they are still
0df8b418 3137 ints. This is due to a mismatch of specifications. We would like
c906108c
SS
3138 to use 64bit thread references internally. This is an adapter
3139 function. */
3140
3141void
fba45db2 3142int_to_threadref (threadref *id, int value)
c906108c
SS
3143{
3144 unsigned char *scan;
3145
3146 scan = (unsigned char *) id;
3147 {
3148 int i = 4;
3149 while (i--)
3150 *scan++ = 0;
3151 }
3152 *scan++ = (value >> 24) & 0xff;
3153 *scan++ = (value >> 16) & 0xff;
3154 *scan++ = (value >> 8) & 0xff;
3155 *scan++ = (value & 0xff);
3156}
3157
3158static int
fba45db2 3159threadref_to_int (threadref *ref)
c906108c
SS
3160{
3161 int i, value = 0;
3162 unsigned char *scan;
3163
cfd77fa1 3164 scan = *ref;
c906108c
SS
3165 scan += 4;
3166 i = 4;
3167 while (i-- > 0)
3168 value = (value << 8) | ((*scan++) & 0xff);
3169 return value;
3170}
3171
3172static void
fba45db2 3173copy_threadref (threadref *dest, threadref *src)
c906108c
SS
3174{
3175 int i;
3176 unsigned char *csrc, *cdest;
3177
3178 csrc = (unsigned char *) src;
3179 cdest = (unsigned char *) dest;
3180 i = 8;
3181 while (i--)
3182 *cdest++ = *csrc++;
3183}
3184
3185static int
fba45db2 3186threadmatch (threadref *dest, threadref *src)
c906108c 3187{
23860348 3188 /* Things are broken right now, so just assume we got a match. */
c906108c
SS
3189#if 0
3190 unsigned char *srcp, *destp;
3191 int i, result;
3192 srcp = (char *) src;
3193 destp = (char *) dest;
3194
3195 result = 1;
3196 while (i-- > 0)
3197 result &= (*srcp++ == *destp++) ? 1 : 0;
3198 return result;
3199#endif
3200 return 1;
3201}
3202
3203/*
c5aa993b
JM
3204 threadid:1, # always request threadid
3205 context_exists:2,
3206 display:4,
3207 unique_name:8,
3208 more_display:16
3209 */
c906108c
SS
3210
3211/* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
3212
3213static char *
fba45db2 3214pack_threadinfo_request (char *pkt, int mode, threadref *id)
c906108c 3215{
23860348
MS
3216 *pkt++ = 'q'; /* Info Query */
3217 *pkt++ = 'P'; /* process or thread info */
3218 pkt = pack_int (pkt, mode); /* mode */
c906108c 3219 pkt = pack_threadid (pkt, id); /* threadid */
23860348 3220 *pkt = '\0'; /* terminate */
c906108c
SS
3221 return pkt;
3222}
3223
23860348 3224/* These values tag the fields in a thread info response packet. */
c906108c 3225/* Tagging the fields allows us to request specific fields and to
23860348 3226 add more fields as time goes by. */
c906108c 3227
23860348 3228#define TAG_THREADID 1 /* Echo the thread identifier. */
c5aa993b 3229#define TAG_EXISTS 2 /* Is this process defined enough to
23860348 3230 fetch registers and its stack? */
c5aa993b 3231#define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
23860348 3232#define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
802188a7 3233#define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
23860348 3234 the process. */
c906108c 3235
6b8edb51
PA
3236int
3237remote_target::remote_unpack_thread_info_response (char *pkt,
3238 threadref *expectedref,
3239 gdb_ext_thread_info *info)
c906108c 3240{
d01949b6 3241 struct remote_state *rs = get_remote_state ();
c906108c 3242 int mask, length;
cfd77fa1 3243 int tag;
c906108c 3244 threadref ref;
6d820c5c 3245 char *limit = pkt + rs->buf_size; /* Plausible parsing limit. */
c906108c
SS
3246 int retval = 1;
3247
23860348 3248 /* info->threadid = 0; FIXME: implement zero_threadref. */
c906108c
SS
3249 info->active = 0;
3250 info->display[0] = '\0';
3251 info->shortname[0] = '\0';
3252 info->more_display[0] = '\0';
3253
23860348
MS
3254 /* Assume the characters indicating the packet type have been
3255 stripped. */
c906108c
SS
3256 pkt = unpack_int (pkt, &mask); /* arg mask */
3257 pkt = unpack_threadid (pkt, &ref);
3258
3259 if (mask == 0)
8a3fe4f8 3260 warning (_("Incomplete response to threadinfo request."));
c906108c 3261 if (!threadmatch (&ref, expectedref))
23860348 3262 { /* This is an answer to a different request. */
8a3fe4f8 3263 warning (_("ERROR RMT Thread info mismatch."));
c906108c
SS
3264 return 0;
3265 }
3266 copy_threadref (&info->threadid, &ref);
3267
23860348 3268 /* Loop on tagged fields , try to bail if somthing goes wrong. */
c906108c 3269
23860348
MS
3270 /* Packets are terminated with nulls. */
3271 while ((pkt < limit) && mask && *pkt)
c906108c
SS
3272 {
3273 pkt = unpack_int (pkt, &tag); /* tag */
23860348
MS
3274 pkt = unpack_byte (pkt, &length); /* length */
3275 if (!(tag & mask)) /* Tags out of synch with mask. */
c906108c 3276 {
8a3fe4f8 3277 warning (_("ERROR RMT: threadinfo tag mismatch."));
c906108c
SS
3278 retval = 0;
3279 break;
3280 }
3281 if (tag == TAG_THREADID)
3282 {
3283 if (length != 16)
3284 {
8a3fe4f8 3285 warning (_("ERROR RMT: length of threadid is not 16."));
c906108c
SS
3286 retval = 0;
3287 break;
3288 }
3289 pkt = unpack_threadid (pkt, &ref);
3290 mask = mask & ~TAG_THREADID;
3291 continue;
3292 }
3293 if (tag == TAG_EXISTS)
3294 {
3295 info->active = stub_unpack_int (pkt, length);
3296 pkt += length;
3297 mask = mask & ~(TAG_EXISTS);
3298 if (length > 8)
3299 {
8a3fe4f8 3300 warning (_("ERROR RMT: 'exists' length too long."));
c906108c
SS
3301 retval = 0;
3302 break;
3303 }
3304 continue;
3305 }
3306 if (tag == TAG_THREADNAME)
3307 {
3308 pkt = unpack_string (pkt, &info->shortname[0], length);
3309 mask = mask & ~TAG_THREADNAME;
3310 continue;
3311 }
3312 if (tag == TAG_DISPLAY)
3313 {
3314 pkt = unpack_string (pkt, &info->display[0], length);
3315 mask = mask & ~TAG_DISPLAY;
3316 continue;
3317 }
3318 if (tag == TAG_MOREDISPLAY)
3319 {
3320 pkt = unpack_string (pkt, &info->more_display[0], length);
3321 mask = mask & ~TAG_MOREDISPLAY;
3322 continue;
3323 }
8a3fe4f8 3324 warning (_("ERROR RMT: unknown thread info tag."));
23860348 3325 break; /* Not a tag we know about. */
c906108c
SS
3326 }
3327 return retval;
3328}
3329
6b8edb51
PA
3330int
3331remote_target::remote_get_threadinfo (threadref *threadid,
3332 int fieldset,
3333 gdb_ext_thread_info *info)
c906108c 3334{
d01949b6 3335 struct remote_state *rs = get_remote_state ();
c906108c 3336 int result;
c906108c 3337
2e9f7625
DJ
3338 pack_threadinfo_request (rs->buf, fieldset, threadid);
3339 putpkt (rs->buf);
6d820c5c 3340 getpkt (&rs->buf, &rs->buf_size, 0);
3084dd77
PA
3341
3342 if (rs->buf[0] == '\0')
3343 return 0;
3344
2e9f7625 3345 result = remote_unpack_thread_info_response (rs->buf + 2,
23860348 3346 threadid, info);
c906108c
SS
3347 return result;
3348}
3349
c906108c
SS
3350/* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
3351
3352static char *
fba45db2
KB
3353pack_threadlist_request (char *pkt, int startflag, int threadcount,
3354 threadref *nextthread)
c906108c
SS
3355{
3356 *pkt++ = 'q'; /* info query packet */
3357 *pkt++ = 'L'; /* Process LIST or threadLIST request */
23860348 3358 pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */
c906108c
SS
3359 pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */
3360 pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */
3361 *pkt = '\0';
3362 return pkt;
3363}
3364
3365/* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
3366
6b8edb51
PA
3367int
3368remote_target::parse_threadlist_response (char *pkt, int result_limit,
3369 threadref *original_echo,
3370 threadref *resultlist,
3371 int *doneflag)
c906108c 3372{
d01949b6 3373 struct remote_state *rs = get_remote_state ();
c906108c
SS
3374 char *limit;
3375 int count, resultcount, done;
3376
3377 resultcount = 0;
3378 /* Assume the 'q' and 'M chars have been stripped. */
6d820c5c 3379 limit = pkt + (rs->buf_size - BUF_THREAD_ID_SIZE);
23860348 3380 /* done parse past here */
c906108c
SS
3381 pkt = unpack_byte (pkt, &count); /* count field */
3382 pkt = unpack_nibble (pkt, &done);
3383 /* The first threadid is the argument threadid. */
3384 pkt = unpack_threadid (pkt, original_echo); /* should match query packet */
3385 while ((count-- > 0) && (pkt < limit))
3386 {
3387 pkt = unpack_threadid (pkt, resultlist++);
3388 if (resultcount++ >= result_limit)
3389 break;
3390 }
3391 if (doneflag)
3392 *doneflag = done;
3393 return resultcount;
3394}
3395
6dc54d91
PA
3396/* Fetch the next batch of threads from the remote. Returns -1 if the
3397 qL packet is not supported, 0 on error and 1 on success. */
3398
6b8edb51
PA
3399int
3400remote_target::remote_get_threadlist (int startflag, threadref *nextthread,
3401 int result_limit, int *done, int *result_count,
3402 threadref *threadlist)
c906108c 3403{
d01949b6 3404 struct remote_state *rs = get_remote_state ();
c906108c
SS
3405 int result = 1;
3406
23860348 3407 /* Trancate result limit to be smaller than the packet size. */
3e43a32a
MS
3408 if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10)
3409 >= get_remote_packet_size ())
ea9c271d 3410 result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2;
c906108c 3411
6d820c5c
DJ
3412 pack_threadlist_request (rs->buf, startflag, result_limit, nextthread);
3413 putpkt (rs->buf);
3414 getpkt (&rs->buf, &rs->buf_size, 0);
d8f2712d 3415 if (*rs->buf == '\0')
6dc54d91
PA
3416 {
3417 /* Packet not supported. */
3418 return -1;
3419 }
3420
3421 *result_count =
3422 parse_threadlist_response (rs->buf + 2, result_limit,
3423 &rs->echo_nextthread, threadlist, done);
c906108c 3424
0d031856 3425 if (!threadmatch (&rs->echo_nextthread, nextthread))
c906108c 3426 {
23860348
MS
3427 /* FIXME: This is a good reason to drop the packet. */
3428 /* Possably, there is a duplicate response. */
c906108c
SS
3429 /* Possabilities :
3430 retransmit immediatly - race conditions
3431 retransmit after timeout - yes
3432 exit
3433 wait for packet, then exit
3434 */
8a3fe4f8 3435 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
23860348 3436 return 0; /* I choose simply exiting. */
c906108c
SS
3437 }
3438 if (*result_count <= 0)
3439 {
3440 if (*done != 1)
3441 {
8a3fe4f8 3442 warning (_("RMT ERROR : failed to get remote thread list."));
c906108c
SS
3443 result = 0;
3444 }
3445 return result; /* break; */
3446 }
3447 if (*result_count > result_limit)
3448 {
3449 *result_count = 0;
8a3fe4f8 3450 warning (_("RMT ERROR: threadlist response longer than requested."));
c906108c
SS
3451 return 0;
3452 }
3453 return result;
3454}
3455
6dc54d91
PA
3456/* Fetch the list of remote threads, with the qL packet, and call
3457 STEPFUNCTION for each thread found. Stops iterating and returns 1
3458 if STEPFUNCTION returns true. Stops iterating and returns 0 if the
3459 STEPFUNCTION returns false. If the packet is not supported,
3460 returns -1. */
c906108c 3461
6b8edb51
PA
3462int
3463remote_target::remote_threadlist_iterator (rmt_thread_action stepfunction,
3464 void *context, int looplimit)
c906108c 3465{
0d031856 3466 struct remote_state *rs = get_remote_state ();
c906108c
SS
3467 int done, i, result_count;
3468 int startflag = 1;
3469 int result = 1;
3470 int loopcount = 0;
c906108c
SS
3471
3472 done = 0;
3473 while (!done)
3474 {
3475 if (loopcount++ > looplimit)
3476 {
3477 result = 0;
8a3fe4f8 3478 warning (_("Remote fetch threadlist -infinite loop-."));
c906108c
SS
3479 break;
3480 }
6dc54d91
PA
3481 result = remote_get_threadlist (startflag, &rs->nextthread,
3482 MAXTHREADLISTRESULTS,
3483 &done, &result_count,
3484 rs->resultthreadlist);
3485 if (result <= 0)
3486 break;
23860348 3487 /* Clear for later iterations. */
c906108c
SS
3488 startflag = 0;
3489 /* Setup to resume next batch of thread references, set nextthread. */
3490 if (result_count >= 1)
0d031856
TT
3491 copy_threadref (&rs->nextthread,
3492 &rs->resultthreadlist[result_count - 1]);
c906108c
SS
3493 i = 0;
3494 while (result_count--)
6dc54d91
PA
3495 {
3496 if (!(*stepfunction) (&rs->resultthreadlist[i++], context))
3497 {
3498 result = 0;
3499 break;
3500 }
3501 }
c906108c
SS
3502 }
3503 return result;
3504}
3505
6dc54d91
PA
3506/* A thread found on the remote target. */
3507
21fe1c75 3508struct thread_item
6dc54d91 3509{
21fe1c75
SM
3510 explicit thread_item (ptid_t ptid_)
3511 : ptid (ptid_)
3512 {}
3513
3514 thread_item (thread_item &&other) = default;
3515 thread_item &operator= (thread_item &&other) = default;
3516
3517 DISABLE_COPY_AND_ASSIGN (thread_item);
3518
6dc54d91
PA
3519 /* The thread's PTID. */
3520 ptid_t ptid;
3521
21fe1c75
SM
3522 /* The thread's extra info. */
3523 std::string extra;
6dc54d91 3524
21fe1c75
SM
3525 /* The thread's name. */
3526 std::string name;
79efa585 3527
6dc54d91 3528 /* The core the thread was running on. -1 if not known. */
21fe1c75 3529 int core = -1;
f6327dcb
KB
3530
3531 /* The thread handle associated with the thread. */
21fe1c75 3532 gdb::byte_vector thread_handle;
21fe1c75 3533};
6dc54d91
PA
3534
3535/* Context passed around to the various methods listing remote
3536 threads. As new threads are found, they're added to the ITEMS
3537 vector. */
3538
3539struct threads_listing_context
3540{
21fe1c75
SM
3541 /* Return true if this object contains an entry for a thread with ptid
3542 PTID. */
6dc54d91 3543
21fe1c75
SM
3544 bool contains_thread (ptid_t ptid) const
3545 {
3546 auto match_ptid = [&] (const thread_item &item)
3547 {
3548 return item.ptid == ptid;
3549 };
80134cf5 3550
21fe1c75
SM
3551 auto it = std::find_if (this->items.begin (),
3552 this->items.end (),
3553 match_ptid);
80134cf5 3554
21fe1c75
SM
3555 return it != this->items.end ();
3556 }
80134cf5 3557
21fe1c75 3558 /* Remove the thread with ptid PTID. */
80134cf5 3559
21fe1c75
SM
3560 void remove_thread (ptid_t ptid)
3561 {
3562 auto match_ptid = [&] (const thread_item &item)
3563 {
3564 return item.ptid == ptid;
3565 };
cbb8991c 3566
21fe1c75
SM
3567 auto it = std::remove_if (this->items.begin (),
3568 this->items.end (),
3569 match_ptid);
cbb8991c 3570
21fe1c75
SM
3571 if (it != this->items.end ())
3572 this->items.erase (it);
3573 }
3574
3575 /* The threads found on the remote target. */
3576 std::vector<thread_item> items;
3577};
cbb8991c 3578
c906108c 3579static int
6dc54d91 3580remote_newthread_step (threadref *ref, void *data)
c906108c 3581{
19ba03f4
SM
3582 struct threads_listing_context *context
3583 = (struct threads_listing_context *) data;
21fe1c75
SM
3584 int pid = inferior_ptid.pid ();
3585 int lwp = threadref_to_int (ref);
3586 ptid_t ptid (pid, lwp);
6dc54d91 3587
21fe1c75 3588 context->items.emplace_back (ptid);
6dc54d91 3589
c906108c
SS
3590 return 1; /* continue iterator */
3591}
3592
3593#define CRAZY_MAX_THREADS 1000
3594
6b8edb51
PA
3595ptid_t
3596remote_target::remote_current_thread (ptid_t oldpid)
c906108c 3597{
d01949b6 3598 struct remote_state *rs = get_remote_state ();
c906108c
SS
3599
3600 putpkt ("qC");
6d820c5c 3601 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 3602 if (rs->buf[0] == 'Q' && rs->buf[1] == 'C')
c9f35b34 3603 {
256642e8 3604 const char *obuf;
c9f35b34
KB
3605 ptid_t result;
3606
3607 result = read_ptid (&rs->buf[2], &obuf);
3608 if (*obuf != '\0' && remote_debug)
3609 fprintf_unfiltered (gdb_stdlog,
3610 "warning: garbage in qC reply\n");
3611
3612 return result;
3613 }
c906108c
SS
3614 else
3615 return oldpid;
3616}
3617
6dc54d91 3618/* List remote threads using the deprecated qL packet. */
cce74817 3619
6b8edb51
PA
3620int
3621remote_target::remote_get_threads_with_ql (threads_listing_context *context)
c906108c 3622{
6dc54d91
PA
3623 if (remote_threadlist_iterator (remote_newthread_step, context,
3624 CRAZY_MAX_THREADS) >= 0)
3625 return 1;
3626
3627 return 0;
c906108c
SS
3628}
3629
dc146f7c
VP
3630#if defined(HAVE_LIBEXPAT)
3631
dc146f7c
VP
3632static void
3633start_thread (struct gdb_xml_parser *parser,
3634 const struct gdb_xml_element *element,
4d0fdd9b
SM
3635 void *user_data,
3636 std::vector<gdb_xml_value> &attributes)
dc146f7c 3637{
19ba03f4
SM
3638 struct threads_listing_context *data
3639 = (struct threads_listing_context *) user_data;
3d2c1d41 3640 struct gdb_xml_value *attr;
dc146f7c 3641
4d0fdd9b 3642 char *id = (char *) xml_find_attribute (attributes, "id")->value.get ();
21fe1c75
SM
3643 ptid_t ptid = read_ptid (id, NULL);
3644
3645 data->items.emplace_back (ptid);
3646 thread_item &item = data->items.back ();
dc146f7c 3647
3d2c1d41
PA
3648 attr = xml_find_attribute (attributes, "core");
3649 if (attr != NULL)
4d0fdd9b 3650 item.core = *(ULONGEST *) attr->value.get ();
dc146f7c 3651
79efa585 3652 attr = xml_find_attribute (attributes, "name");
21fe1c75 3653 if (attr != NULL)
4d0fdd9b 3654 item.name = (const char *) attr->value.get ();
79efa585 3655
f6327dcb
KB
3656 attr = xml_find_attribute (attributes, "handle");
3657 if (attr != NULL)
4d0fdd9b 3658 item.thread_handle = hex2bin ((const char *) attr->value.get ());
dc146f7c
VP
3659}
3660
3661static void
3662end_thread (struct gdb_xml_parser *parser,
3663 const struct gdb_xml_element *element,
3664 void *user_data, const char *body_text)
3665{
19ba03f4
SM
3666 struct threads_listing_context *data
3667 = (struct threads_listing_context *) user_data;
dc146f7c 3668
21fe1c75
SM
3669 if (body_text != NULL && *body_text != '\0')
3670 data->items.back ().extra = body_text;
dc146f7c
VP
3671}
3672
3673const struct gdb_xml_attribute thread_attributes[] = {
3674 { "id", GDB_XML_AF_NONE, NULL, NULL },
3675 { "core", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
79efa585 3676 { "name", GDB_XML_AF_OPTIONAL, NULL, NULL },
f6327dcb 3677 { "handle", GDB_XML_AF_OPTIONAL, NULL, NULL },
dc146f7c
VP
3678 { NULL, GDB_XML_AF_NONE, NULL, NULL }
3679};
3680
3681const struct gdb_xml_element thread_children[] = {
3682 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3683};
3684
3685const struct gdb_xml_element threads_children[] = {
3686 { "thread", thread_attributes, thread_children,
3687 GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL,
3688 start_thread, end_thread },
3689 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3690};
3691
3692const struct gdb_xml_element threads_elements[] = {
3693 { "threads", NULL, threads_children,
3694 GDB_XML_EF_NONE, NULL, NULL },
3695 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3696};
3697
3698#endif
3699
6dc54d91 3700/* List remote threads using qXfer:threads:read. */
9d1f7ab2 3701
6b8edb51
PA
3702int
3703remote_target::remote_get_threads_with_qxfer (threads_listing_context *context)
0f71a2f6 3704{
dc146f7c 3705#if defined(HAVE_LIBEXPAT)
4082afcc 3706 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
dc146f7c 3707 {
9018be22 3708 gdb::optional<gdb::char_vector> xml
6b8edb51 3709 = target_read_stralloc (this, TARGET_OBJECT_THREADS, NULL);
efc0eabd 3710
9018be22 3711 if (xml && (*xml)[0] != '\0')
dc146f7c 3712 {
6dc54d91 3713 gdb_xml_parse_quick (_("threads"), "threads.dtd",
9018be22 3714 threads_elements, xml->data (), context);
dc146f7c
VP
3715 }
3716
6dc54d91 3717 return 1;
dc146f7c
VP
3718 }
3719#endif
3720
6dc54d91
PA
3721 return 0;
3722}
3723
3724/* List remote threads using qfThreadInfo/qsThreadInfo. */
3725
6b8edb51
PA
3726int
3727remote_target::remote_get_threads_with_qthreadinfo (threads_listing_context *context)
6dc54d91
PA
3728{
3729 struct remote_state *rs = get_remote_state ();
3730
b80fafe3 3731 if (rs->use_threadinfo_query)
9d1f7ab2 3732 {
256642e8 3733 const char *bufp;
6dc54d91 3734
9d1f7ab2 3735 putpkt ("qfThreadInfo");
6d820c5c 3736 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 3737 bufp = rs->buf;
9d1f7ab2 3738 if (bufp[0] != '\0') /* q packet recognized */
802188a7 3739 {
9d1f7ab2
MS
3740 while (*bufp++ == 'm') /* reply contains one or more TID */
3741 {
3742 do
3743 {
21fe1c75
SM
3744 ptid_t ptid = read_ptid (bufp, &bufp);
3745 context->items.emplace_back (ptid);
9d1f7ab2
MS
3746 }
3747 while (*bufp++ == ','); /* comma-separated list */
3748 putpkt ("qsThreadInfo");
6d820c5c 3749 getpkt (&rs->buf, &rs->buf_size, 0);
6dc54d91 3750 bufp = rs->buf;
9d1f7ab2 3751 }
6dc54d91
PA
3752 return 1;
3753 }
3754 else
3755 {
3756 /* Packet not recognized. */
3757 rs->use_threadinfo_query = 0;
9d1f7ab2
MS
3758 }
3759 }
3760
6dc54d91
PA
3761 return 0;
3762}
3763
e8032dde 3764/* Implement the to_update_thread_list function for the remote
6dc54d91
PA
3765 targets. */
3766
f6ac5f3d
PA
3767void
3768remote_target::update_thread_list ()
6dc54d91 3769{
6dc54d91 3770 struct threads_listing_context context;
ab970af1 3771 int got_list = 0;
e8032dde 3772
6dc54d91
PA
3773 /* We have a few different mechanisms to fetch the thread list. Try
3774 them all, starting with the most preferred one first, falling
3775 back to older methods. */
6b8edb51
PA
3776 if (remote_get_threads_with_qxfer (&context)
3777 || remote_get_threads_with_qthreadinfo (&context)
3778 || remote_get_threads_with_ql (&context))
6dc54d91 3779 {
ab970af1
PA
3780 got_list = 1;
3781
21fe1c75 3782 if (context.items.empty ()
f6ac5f3d 3783 && remote_thread_always_alive (inferior_ptid))
7d1a114c
PA
3784 {
3785 /* Some targets don't really support threads, but still
3786 reply an (empty) thread list in response to the thread
3787 listing packets, instead of replying "packet not
3788 supported". Exit early so we don't delete the main
3789 thread. */
7d1a114c
PA
3790 return;
3791 }
3792
ab970af1
PA
3793 /* CONTEXT now holds the current thread list on the remote
3794 target end. Delete GDB-side threads no longer found on the
3795 target. */
08036331 3796 for (thread_info *tp : all_threads_safe ())
cbb8991c 3797 {
21fe1c75 3798 if (!context.contains_thread (tp->ptid))
ab970af1
PA
3799 {
3800 /* Not found. */
00431a78 3801 delete_thread (tp);
ab970af1 3802 }
cbb8991c
DB
3803 }
3804
3805 /* Remove any unreported fork child threads from CONTEXT so
3806 that we don't interfere with follow fork, which is where
3807 creation of such threads is handled. */
3808 remove_new_fork_children (&context);
74531fed 3809
ab970af1 3810 /* And now add threads we don't know about yet to our list. */
21fe1c75 3811 for (thread_item &item : context.items)
6dc54d91 3812 {
21fe1c75 3813 if (item.ptid != null_ptid)
6dc54d91 3814 {
6dc54d91 3815 /* In non-stop mode, we assume new found threads are
0d5b594f
PA
3816 executing until proven otherwise with a stop reply.
3817 In all-stop, we can only get here if all threads are
6dc54d91 3818 stopped. */
0d5b594f 3819 int executing = target_is_non_stop_p () ? 1 : 0;
6dc54d91 3820
21fe1c75 3821 remote_notice_new_inferior (item.ptid, executing);
6dc54d91 3822
08036331 3823 thread_info *tp = find_thread_ptid (item.ptid);
00431a78 3824 remote_thread_info *info = get_remote_thread_info (tp);
21fe1c75 3825 info->core = item.core;
7aabaf9d
SM
3826 info->extra = std::move (item.extra);
3827 info->name = std::move (item.name);
3828 info->thread_handle = std::move (item.thread_handle);
6dc54d91
PA
3829 }
3830 }
3831 }
3832
ab970af1
PA
3833 if (!got_list)
3834 {
3835 /* If no thread listing method is supported, then query whether
3836 each known thread is alive, one by one, with the T packet.
3837 If the target doesn't support threads at all, then this is a
3838 no-op. See remote_thread_alive. */
3839 prune_threads ();
3840 }
9d1f7ab2
MS
3841}
3842
802188a7 3843/*
9d1f7ab2
MS
3844 * Collect a descriptive string about the given thread.
3845 * The target may say anything it wants to about the thread
3846 * (typically info about its blocked / runnable state, name, etc.).
3847 * This string will appear in the info threads display.
802188a7 3848 *
9d1f7ab2
MS
3849 * Optional: targets are not required to implement this function.
3850 */
3851
f6ac5f3d
PA
3852const char *
3853remote_target::extra_thread_info (thread_info *tp)
9d1f7ab2 3854{
d01949b6 3855 struct remote_state *rs = get_remote_state ();
9d1f7ab2
MS
3856 int set;
3857 threadref id;
3858 struct gdb_ext_thread_info threadinfo;
9d1f7ab2 3859
5d93a237 3860 if (rs->remote_desc == 0) /* paranoia */
8e65ff28 3861 internal_error (__FILE__, __LINE__,
e2e0b3e5 3862 _("remote_threads_extra_info"));
9d1f7ab2 3863
d7e15655 3864 if (tp->ptid == magic_null_ptid
e38504b3 3865 || (tp->ptid.pid () != 0 && tp->ptid.lwp () == 0))
60e569b9
PA
3866 /* This is the main thread which was added by GDB. The remote
3867 server doesn't know about it. */
3868 return NULL;
3869
c76a8ea3
PA
3870 std::string &extra = get_remote_thread_info (tp)->extra;
3871
3872 /* If already have cached info, use it. */
3873 if (!extra.empty ())
3874 return extra.c_str ();
3875
4082afcc 3876 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
dc146f7c 3877 {
c76a8ea3
PA
3878 /* If we're using qXfer:threads:read, then the extra info is
3879 included in the XML. So if we didn't have anything cached,
3880 it's because there's really no extra info. */
3881 return NULL;
dc146f7c
VP
3882 }
3883
b80fafe3 3884 if (rs->use_threadextra_query)
9d1f7ab2 3885 {
82f73884
PA
3886 char *b = rs->buf;
3887 char *endb = rs->buf + get_remote_packet_size ();
3888
3889 xsnprintf (b, endb - b, "qThreadExtraInfo,");
3890 b += strlen (b);
3891 write_ptid (b, endb, tp->ptid);
3892
2e9f7625 3893 putpkt (rs->buf);
6d820c5c 3894 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 3895 if (rs->buf[0] != 0)
9d1f7ab2 3896 {
c76a8ea3
PA
3897 extra.resize (strlen (rs->buf) / 2);
3898 hex2bin (rs->buf, (gdb_byte *) &extra[0], extra.size ());
3899 return extra.c_str ();
9d1f7ab2 3900 }
0f71a2f6 3901 }
9d1f7ab2
MS
3902
3903 /* If the above query fails, fall back to the old method. */
b80fafe3 3904 rs->use_threadextra_query = 0;
9d1f7ab2
MS
3905 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
3906 | TAG_MOREDISPLAY | TAG_DISPLAY;
e38504b3 3907 int_to_threadref (&id, tp->ptid.lwp ());
9d1f7ab2
MS
3908 if (remote_get_threadinfo (&id, set, &threadinfo))
3909 if (threadinfo.active)
0f71a2f6 3910 {
9d1f7ab2 3911 if (*threadinfo.shortname)
c76a8ea3 3912 string_appendf (extra, " Name: %s", threadinfo.shortname);
9d1f7ab2 3913 if (*threadinfo.display)
c76a8ea3
PA
3914 {
3915 if (!extra.empty ())
3916 extra += ',';
3917 string_appendf (extra, " State: %s", threadinfo.display);
3918 }
9d1f7ab2 3919 if (*threadinfo.more_display)
c5aa993b 3920 {
c76a8ea3
PA
3921 if (!extra.empty ())
3922 extra += ',';
3923 string_appendf (extra, " Priority: %s", threadinfo.more_display);
c5aa993b 3924 }
c76a8ea3 3925 return extra.c_str ();
0f71a2f6 3926 }
9d1f7ab2 3927 return NULL;
0f71a2f6 3928}
c906108c 3929\f
c5aa993b 3930
f6ac5f3d
PA
3931bool
3932remote_target::static_tracepoint_marker_at (CORE_ADDR addr,
3933 struct static_tracepoint_marker *marker)
0fb4aa4b
PA
3934{
3935 struct remote_state *rs = get_remote_state ();
3936 char *p = rs->buf;
3937
bba74b36 3938 xsnprintf (p, get_remote_packet_size (), "qTSTMat:");
0fb4aa4b
PA
3939 p += strlen (p);
3940 p += hexnumstr (p, addr);
3941 putpkt (rs->buf);
3942 getpkt (&rs->buf, &rs->buf_size, 0);
3943 p = rs->buf;
3944
3945 if (*p == 'E')
3946 error (_("Remote failure reply: %s"), p);
3947
3948 if (*p++ == 'm')
3949 {
256642e8 3950 parse_static_tracepoint_marker_definition (p, NULL, marker);
5d9310c4 3951 return true;
0fb4aa4b
PA
3952 }
3953
5d9310c4 3954 return false;
0fb4aa4b
PA
3955}
3956
f6ac5f3d
PA
3957std::vector<static_tracepoint_marker>
3958remote_target::static_tracepoint_markers_by_strid (const char *strid)
0fb4aa4b
PA
3959{
3960 struct remote_state *rs = get_remote_state ();
5d9310c4 3961 std::vector<static_tracepoint_marker> markers;
256642e8 3962 const char *p;
5d9310c4 3963 static_tracepoint_marker marker;
0fb4aa4b
PA
3964
3965 /* Ask for a first packet of static tracepoint marker
3966 definition. */
3967 putpkt ("qTfSTM");
3968 getpkt (&rs->buf, &rs->buf_size, 0);
3969 p = rs->buf;
3970 if (*p == 'E')
3971 error (_("Remote failure reply: %s"), p);
3972
0fb4aa4b
PA
3973 while (*p++ == 'm')
3974 {
0fb4aa4b
PA
3975 do
3976 {
5d9310c4 3977 parse_static_tracepoint_marker_definition (p, &p, &marker);
0fb4aa4b 3978
5d9310c4
SM
3979 if (strid == NULL || marker.str_id == strid)
3980 markers.push_back (std::move (marker));
0fb4aa4b
PA
3981 }
3982 while (*p++ == ','); /* comma-separated list */
3983 /* Ask for another packet of static tracepoint definition. */
3984 putpkt ("qTsSTM");
3985 getpkt (&rs->buf, &rs->buf_size, 0);
3986 p = rs->buf;
3987 }
3988
0fb4aa4b
PA
3989 return markers;
3990}
3991
3992\f
10760264
JB
3993/* Implement the to_get_ada_task_ptid function for the remote targets. */
3994
f6ac5f3d
PA
3995ptid_t
3996remote_target::get_ada_task_ptid (long lwp, long thread)
10760264 3997{
e99b03dc 3998 return ptid_t (inferior_ptid.pid (), lwp, 0);
10760264
JB
3999}
4000\f
4001
24b06219 4002/* Restart the remote side; this is an extended protocol operation. */
c906108c 4003
6b8edb51
PA
4004void
4005remote_target::extended_remote_restart ()
c906108c 4006{
d01949b6 4007 struct remote_state *rs = get_remote_state ();
c906108c
SS
4008
4009 /* Send the restart command; for reasons I don't understand the
4010 remote side really expects a number after the "R". */
ea9c271d 4011 xsnprintf (rs->buf, get_remote_packet_size (), "R%x", 0);
6d820c5c 4012 putpkt (rs->buf);
c906108c 4013
ad9a8f3f 4014 remote_fileio_reset ();
c906108c
SS
4015}
4016\f
4017/* Clean up connection to a remote debugger. */
4018
f6ac5f3d
PA
4019void
4020remote_target::close ()
c906108c 4021{
048094ac 4022 /* Make sure we leave stdin registered in the event loop. */
f6ac5f3d 4023 terminal_ours ();
ce5ce7ed 4024
ce5ce7ed 4025 /* We don't have a connection to the remote stub anymore. Get rid
f67fd822
PM
4026 of all the inferiors and their threads we were controlling.
4027 Reset inferior_ptid to null_ptid first, as otherwise has_stack_frame
4028 will be unable to find the thread corresponding to (pid, 0, 0). */
0f2caa1b 4029 inferior_ptid = null_ptid;
f67fd822 4030 discard_all_inferiors ();
ce5ce7ed 4031
6b8edb51
PA
4032 trace_reset_local_state ();
4033
4034 delete this;
4035}
4036
4037remote_target::~remote_target ()
4038{
4039 struct remote_state *rs = get_remote_state ();
4040
4041 /* Check for NULL because we may get here with a partially
4042 constructed target/connection. */
4043 if (rs->remote_desc == nullptr)
4044 return;
4045
4046 serial_close (rs->remote_desc);
4047
4048 /* We are destroying the remote target, so we should discard
f48ff2a7 4049 everything of this target. */
6b8edb51 4050 discard_pending_stop_replies_in_queue ();
74531fed 4051
6b8edb51
PA
4052 if (rs->remote_async_inferior_event_token)
4053 delete_async_event_handler (&rs->remote_async_inferior_event_token);
722247f1 4054
5965e028 4055 remote_notif_state_xfree (rs->notif_state);
c906108c
SS
4056}
4057
23860348 4058/* Query the remote side for the text, data and bss offsets. */
c906108c 4059
6b8edb51
PA
4060void
4061remote_target::get_offsets ()
c906108c 4062{
d01949b6 4063 struct remote_state *rs = get_remote_state ();
2e9f7625 4064 char *buf;
085dd6e6 4065 char *ptr;
31d99776
DJ
4066 int lose, num_segments = 0, do_sections, do_segments;
4067 CORE_ADDR text_addr, data_addr, bss_addr, segments[2];
c906108c 4068 struct section_offsets *offs;
31d99776
DJ
4069 struct symfile_segment_data *data;
4070
4071 if (symfile_objfile == NULL)
4072 return;
c906108c
SS
4073
4074 putpkt ("qOffsets");
6d820c5c 4075 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 4076 buf = rs->buf;
c906108c
SS
4077
4078 if (buf[0] == '\000')
4079 return; /* Return silently. Stub doesn't support
23860348 4080 this command. */
c906108c
SS
4081 if (buf[0] == 'E')
4082 {
8a3fe4f8 4083 warning (_("Remote failure reply: %s"), buf);
c906108c
SS
4084 return;
4085 }
4086
4087 /* Pick up each field in turn. This used to be done with scanf, but
4088 scanf will make trouble if CORE_ADDR size doesn't match
4089 conversion directives correctly. The following code will work
4090 with any size of CORE_ADDR. */
4091 text_addr = data_addr = bss_addr = 0;
4092 ptr = buf;
4093 lose = 0;
4094
61012eef 4095 if (startswith (ptr, "Text="))
c906108c
SS
4096 {
4097 ptr += 5;
4098 /* Don't use strtol, could lose on big values. */
4099 while (*ptr && *ptr != ';')
4100 text_addr = (text_addr << 4) + fromhex (*ptr++);
c906108c 4101
61012eef 4102 if (startswith (ptr, ";Data="))
31d99776
DJ
4103 {
4104 ptr += 6;
4105 while (*ptr && *ptr != ';')
4106 data_addr = (data_addr << 4) + fromhex (*ptr++);
4107 }
4108 else
4109 lose = 1;
4110
61012eef 4111 if (!lose && startswith (ptr, ";Bss="))
31d99776
DJ
4112 {
4113 ptr += 5;
4114 while (*ptr && *ptr != ';')
4115 bss_addr = (bss_addr << 4) + fromhex (*ptr++);
c906108c 4116
31d99776
DJ
4117 if (bss_addr != data_addr)
4118 warning (_("Target reported unsupported offsets: %s"), buf);
4119 }
4120 else
4121 lose = 1;
4122 }
61012eef 4123 else if (startswith (ptr, "TextSeg="))
c906108c 4124 {
31d99776
DJ
4125 ptr += 8;
4126 /* Don't use strtol, could lose on big values. */
c906108c 4127 while (*ptr && *ptr != ';')
31d99776
DJ
4128 text_addr = (text_addr << 4) + fromhex (*ptr++);
4129 num_segments = 1;
4130
61012eef 4131 if (startswith (ptr, ";DataSeg="))
31d99776
DJ
4132 {
4133 ptr += 9;
4134 while (*ptr && *ptr != ';')
4135 data_addr = (data_addr << 4) + fromhex (*ptr++);
4136 num_segments++;
4137 }
c906108c
SS
4138 }
4139 else
4140 lose = 1;
4141
4142 if (lose)
8a3fe4f8 4143 error (_("Malformed response to offset query, %s"), buf);
31d99776
DJ
4144 else if (*ptr != '\0')
4145 warning (_("Target reported unsupported offsets: %s"), buf);
c906108c 4146
802188a7 4147 offs = ((struct section_offsets *)
a39a16c4 4148 alloca (SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections)));
802188a7 4149 memcpy (offs, symfile_objfile->section_offsets,
a39a16c4 4150 SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections));
c906108c 4151
31d99776
DJ
4152 data = get_symfile_segment_data (symfile_objfile->obfd);
4153 do_segments = (data != NULL);
4154 do_sections = num_segments == 0;
c906108c 4155
28c32713 4156 if (num_segments > 0)
31d99776 4157 {
31d99776
DJ
4158 segments[0] = text_addr;
4159 segments[1] = data_addr;
4160 }
28c32713
JB
4161 /* If we have two segments, we can still try to relocate everything
4162 by assuming that the .text and .data offsets apply to the whole
4163 text and data segments. Convert the offsets given in the packet
4164 to base addresses for symfile_map_offsets_to_segments. */
4165 else if (data && data->num_segments == 2)
4166 {
4167 segments[0] = data->segment_bases[0] + text_addr;
4168 segments[1] = data->segment_bases[1] + data_addr;
4169 num_segments = 2;
4170 }
8d385431
DJ
4171 /* If the object file has only one segment, assume that it is text
4172 rather than data; main programs with no writable data are rare,
4173 but programs with no code are useless. Of course the code might
4174 have ended up in the data segment... to detect that we would need
4175 the permissions here. */
4176 else if (data && data->num_segments == 1)
4177 {
4178 segments[0] = data->segment_bases[0] + text_addr;
4179 num_segments = 1;
4180 }
28c32713
JB
4181 /* There's no way to relocate by segment. */
4182 else
4183 do_segments = 0;
31d99776
DJ
4184
4185 if (do_segments)
4186 {
4187 int ret = symfile_map_offsets_to_segments (symfile_objfile->obfd, data,
4188 offs, num_segments, segments);
4189
4190 if (ret == 0 && !do_sections)
3e43a32a
MS
4191 error (_("Can not handle qOffsets TextSeg "
4192 "response with this symbol file"));
31d99776
DJ
4193
4194 if (ret > 0)
4195 do_sections = 0;
4196 }
c906108c 4197
9ef895d6
DJ
4198 if (data)
4199 free_symfile_segment_data (data);
31d99776
DJ
4200
4201 if (do_sections)
4202 {
4203 offs->offsets[SECT_OFF_TEXT (symfile_objfile)] = text_addr;
4204
3e43a32a
MS
4205 /* This is a temporary kludge to force data and bss to use the
4206 same offsets because that's what nlmconv does now. The real
4207 solution requires changes to the stub and remote.c that I
4208 don't have time to do right now. */
31d99776
DJ
4209
4210 offs->offsets[SECT_OFF_DATA (symfile_objfile)] = data_addr;
4211 offs->offsets[SECT_OFF_BSS (symfile_objfile)] = data_addr;
4212 }
c906108c
SS
4213
4214 objfile_relocate (symfile_objfile, offs);
4215}
4216
9a7071a8 4217/* Send interrupt_sequence to remote target. */
6b8edb51
PA
4218
4219void
4220remote_target::send_interrupt_sequence ()
9a7071a8 4221{
5d93a237
TT
4222 struct remote_state *rs = get_remote_state ();
4223
9a7071a8 4224 if (interrupt_sequence_mode == interrupt_sequence_control_c)
c33e31fd 4225 remote_serial_write ("\x03", 1);
9a7071a8 4226 else if (interrupt_sequence_mode == interrupt_sequence_break)
5d93a237 4227 serial_send_break (rs->remote_desc);
9a7071a8
JB
4228 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
4229 {
5d93a237 4230 serial_send_break (rs->remote_desc);
c33e31fd 4231 remote_serial_write ("g", 1);
9a7071a8
JB
4232 }
4233 else
4234 internal_error (__FILE__, __LINE__,
4235 _("Invalid value for interrupt_sequence_mode: %s."),
4236 interrupt_sequence_mode);
4237}
4238
3405876a
PA
4239
4240/* If STOP_REPLY is a T stop reply, look for the "thread" register,
4241 and extract the PTID. Returns NULL_PTID if not found. */
4242
4243static ptid_t
4244stop_reply_extract_thread (char *stop_reply)
4245{
4246 if (stop_reply[0] == 'T' && strlen (stop_reply) > 3)
4247 {
256642e8 4248 const char *p;
3405876a
PA
4249
4250 /* Txx r:val ; r:val (...) */
4251 p = &stop_reply[3];
4252
4253 /* Look for "register" named "thread". */
4254 while (*p != '\0')
4255 {
256642e8 4256 const char *p1;
3405876a
PA
4257
4258 p1 = strchr (p, ':');
4259 if (p1 == NULL)
4260 return null_ptid;
4261
4262 if (strncmp (p, "thread", p1 - p) == 0)
4263 return read_ptid (++p1, &p);
4264
4265 p1 = strchr (p, ';');
4266 if (p1 == NULL)
4267 return null_ptid;
4268 p1++;
4269
4270 p = p1;
4271 }
4272 }
4273
4274 return null_ptid;
4275}
4276
b7ea362b
PA
4277/* Determine the remote side's current thread. If we have a stop
4278 reply handy (in WAIT_STATUS), maybe it's a T stop reply with a
4279 "thread" register we can extract the current thread from. If not,
4280 ask the remote which is the current thread with qC. The former
4281 method avoids a roundtrip. */
4282
6b8edb51
PA
4283ptid_t
4284remote_target::get_current_thread (char *wait_status)
b7ea362b 4285{
6a49a997 4286 ptid_t ptid = null_ptid;
b7ea362b
PA
4287
4288 /* Note we don't use remote_parse_stop_reply as that makes use of
4289 the target architecture, which we haven't yet fully determined at
4290 this point. */
4291 if (wait_status != NULL)
4292 ptid = stop_reply_extract_thread (wait_status);
d7e15655 4293 if (ptid == null_ptid)
b7ea362b
PA
4294 ptid = remote_current_thread (inferior_ptid);
4295
4296 return ptid;
4297}
4298
49c62f2e
PA
4299/* Query the remote target for which is the current thread/process,
4300 add it to our tables, and update INFERIOR_PTID. The caller is
4301 responsible for setting the state such that the remote end is ready
3405876a
PA
4302 to return the current thread.
4303
4304 This function is called after handling the '?' or 'vRun' packets,
4305 whose response is a stop reply from which we can also try
4306 extracting the thread. If the target doesn't support the explicit
4307 qC query, we infer the current thread from that stop reply, passed
4308 in in WAIT_STATUS, which may be NULL. */
49c62f2e 4309
6b8edb51
PA
4310void
4311remote_target::add_current_inferior_and_thread (char *wait_status)
49c62f2e
PA
4312{
4313 struct remote_state *rs = get_remote_state ();
4314 int fake_pid_p = 0;
49c62f2e
PA
4315
4316 inferior_ptid = null_ptid;
4317
b7ea362b 4318 /* Now, if we have thread information, update inferior_ptid. */
87215ad1 4319 ptid_t curr_ptid = get_current_thread (wait_status);
3405876a 4320
87215ad1 4321 if (curr_ptid != null_ptid)
49c62f2e
PA
4322 {
4323 if (!remote_multi_process_p (rs))
4324 fake_pid_p = 1;
49c62f2e
PA
4325 }
4326 else
4327 {
4328 /* Without this, some commands which require an active target
4329 (such as kill) won't work. This variable serves (at least)
4330 double duty as both the pid of the target process (if it has
4331 such), and as a flag indicating that a target is active. */
87215ad1 4332 curr_ptid = magic_null_ptid;
49c62f2e
PA
4333 fake_pid_p = 1;
4334 }
4335
e99b03dc 4336 remote_add_inferior (fake_pid_p, curr_ptid.pid (), -1, 1);
49c62f2e 4337
87215ad1
SDJ
4338 /* Add the main thread and switch to it. Don't try reading
4339 registers yet, since we haven't fetched the target description
4340 yet. */
4341 thread_info *tp = add_thread_silent (curr_ptid);
4342 switch_to_thread_no_regs (tp);
49c62f2e
PA
4343}
4344
6efcd9a8
PA
4345/* Print info about a thread that was found already stopped on
4346 connection. */
4347
4348static void
4349print_one_stopped_thread (struct thread_info *thread)
4350{
4351 struct target_waitstatus *ws = &thread->suspend.waitstatus;
4352
00431a78 4353 switch_to_thread (thread);
f2ffa92b 4354 thread->suspend.stop_pc = get_frame_pc (get_current_frame ());
6efcd9a8
PA
4355 set_current_sal_from_frame (get_current_frame ());
4356
4357 thread->suspend.waitstatus_pending_p = 0;
4358
4359 if (ws->kind == TARGET_WAITKIND_STOPPED)
4360 {
4361 enum gdb_signal sig = ws->value.sig;
4362
4363 if (signal_print_state (sig))
76727919 4364 gdb::observers::signal_received.notify (sig);
6efcd9a8 4365 }
76727919 4366 gdb::observers::normal_stop.notify (NULL, 1);
6efcd9a8
PA
4367}
4368
221e1a37
PA
4369/* Process all initial stop replies the remote side sent in response
4370 to the ? packet. These indicate threads that were already stopped
4371 on initial connection. We mark these threads as stopped and print
4372 their current frame before giving the user the prompt. */
4373
6b8edb51
PA
4374void
4375remote_target::process_initial_stop_replies (int from_tty)
221e1a37
PA
4376{
4377 int pending_stop_replies = stop_reply_queue_length ();
6efcd9a8
PA
4378 struct thread_info *selected = NULL;
4379 struct thread_info *lowest_stopped = NULL;
4380 struct thread_info *first = NULL;
221e1a37
PA
4381
4382 /* Consume the initial pending events. */
4383 while (pending_stop_replies-- > 0)
4384 {
4385 ptid_t waiton_ptid = minus_one_ptid;
4386 ptid_t event_ptid;
4387 struct target_waitstatus ws;
4388 int ignore_event = 0;
4389
4390 memset (&ws, 0, sizeof (ws));
4391 event_ptid = target_wait (waiton_ptid, &ws, TARGET_WNOHANG);
4392 if (remote_debug)
4393 print_target_wait_results (waiton_ptid, event_ptid, &ws);
4394
4395 switch (ws.kind)
4396 {
4397 case TARGET_WAITKIND_IGNORE:
4398 case TARGET_WAITKIND_NO_RESUMED:
4399 case TARGET_WAITKIND_SIGNALLED:
4400 case TARGET_WAITKIND_EXITED:
4401 /* We shouldn't see these, but if we do, just ignore. */
4402 if (remote_debug)
4403 fprintf_unfiltered (gdb_stdlog, "remote: event ignored\n");
4404 ignore_event = 1;
4405 break;
4406
4407 case TARGET_WAITKIND_EXECD:
4408 xfree (ws.value.execd_pathname);
4409 break;
4410 default:
4411 break;
4412 }
4413
4414 if (ignore_event)
4415 continue;
4416
b926417a 4417 struct thread_info *evthread = find_thread_ptid (event_ptid);
221e1a37
PA
4418
4419 if (ws.kind == TARGET_WAITKIND_STOPPED)
4420 {
4421 enum gdb_signal sig = ws.value.sig;
4422
4423 /* Stubs traditionally report SIGTRAP as initial signal,
4424 instead of signal 0. Suppress it. */
4425 if (sig == GDB_SIGNAL_TRAP)
4426 sig = GDB_SIGNAL_0;
b926417a 4427 evthread->suspend.stop_signal = sig;
6efcd9a8
PA
4428 ws.value.sig = sig;
4429 }
221e1a37 4430
b926417a 4431 evthread->suspend.waitstatus = ws;
6efcd9a8
PA
4432
4433 if (ws.kind != TARGET_WAITKIND_STOPPED
4434 || ws.value.sig != GDB_SIGNAL_0)
b926417a 4435 evthread->suspend.waitstatus_pending_p = 1;
6efcd9a8
PA
4436
4437 set_executing (event_ptid, 0);
4438 set_running (event_ptid, 0);
b926417a 4439 get_remote_thread_info (evthread)->vcont_resumed = 0;
6efcd9a8
PA
4440 }
4441
4442 /* "Notice" the new inferiors before anything related to
4443 registers/memory. */
08036331 4444 for (inferior *inf : all_non_exited_inferiors ())
6efcd9a8 4445 {
6efcd9a8
PA
4446 inf->needs_setup = 1;
4447
4448 if (non_stop)
4449 {
08036331 4450 thread_info *thread = any_live_thread_of_inferior (inf);
00431a78 4451 notice_new_inferior (thread, thread->state == THREAD_RUNNING,
6efcd9a8
PA
4452 from_tty);
4453 }
4454 }
4455
4456 /* If all-stop on top of non-stop, pause all threads. Note this
4457 records the threads' stop pc, so must be done after "noticing"
4458 the inferiors. */
4459 if (!non_stop)
4460 {
4461 stop_all_threads ();
4462
4463 /* If all threads of an inferior were already stopped, we
4464 haven't setup the inferior yet. */
08036331 4465 for (inferior *inf : all_non_exited_inferiors ())
6efcd9a8 4466 {
6efcd9a8
PA
4467 if (inf->needs_setup)
4468 {
08036331 4469 thread_info *thread = any_live_thread_of_inferior (inf);
6efcd9a8
PA
4470 switch_to_thread_no_regs (thread);
4471 setup_inferior (0);
4472 }
4473 }
221e1a37 4474 }
6efcd9a8
PA
4475
4476 /* Now go over all threads that are stopped, and print their current
4477 frame. If all-stop, then if there's a signalled thread, pick
4478 that as current. */
08036331 4479 for (thread_info *thread : all_non_exited_threads ())
6efcd9a8 4480 {
6efcd9a8
PA
4481 if (first == NULL)
4482 first = thread;
4483
4484 if (!non_stop)
00431a78 4485 thread->set_running (false);
6efcd9a8
PA
4486 else if (thread->state != THREAD_STOPPED)
4487 continue;
4488
6efcd9a8
PA
4489 if (selected == NULL
4490 && thread->suspend.waitstatus_pending_p)
4491 selected = thread;
4492
5d5658a1
PA
4493 if (lowest_stopped == NULL
4494 || thread->inf->num < lowest_stopped->inf->num
4495 || thread->per_inf_num < lowest_stopped->per_inf_num)
6efcd9a8
PA
4496 lowest_stopped = thread;
4497
4498 if (non_stop)
4499 print_one_stopped_thread (thread);
4500 }
4501
4502 /* In all-stop, we only print the status of one thread, and leave
4503 others with their status pending. */
4504 if (!non_stop)
4505 {
08036331 4506 thread_info *thread = selected;
6efcd9a8
PA
4507 if (thread == NULL)
4508 thread = lowest_stopped;
4509 if (thread == NULL)
4510 thread = first;
4511
4512 print_one_stopped_thread (thread);
4513 }
4514
4515 /* For "info program". */
08036331 4516 thread_info *thread = inferior_thread ();
6efcd9a8
PA
4517 if (thread->state == THREAD_STOPPED)
4518 set_last_target_status (inferior_ptid, thread->suspend.waitstatus);
221e1a37
PA
4519}
4520
048094ac
PA
4521/* Start the remote connection and sync state. */
4522
f6ac5f3d
PA
4523void
4524remote_target::start_remote (int from_tty, int extended_p)
c906108c 4525{
c8d104ad
PA
4526 struct remote_state *rs = get_remote_state ();
4527 struct packet_config *noack_config;
2d717e4f 4528 char *wait_status = NULL;
8621d6a9 4529
048094ac
PA
4530 /* Signal other parts that we're going through the initial setup,
4531 and so things may not be stable yet. E.g., we don't try to
4532 install tracepoints until we've relocated symbols. Also, a
4533 Ctrl-C before we're connected and synced up can't interrupt the
4534 target. Instead, it offers to drop the (potentially wedged)
4535 connection. */
4536 rs->starting_up = 1;
4537
522002f9 4538 QUIT;
c906108c 4539
9a7071a8
JB
4540 if (interrupt_on_connect)
4541 send_interrupt_sequence ();
4542
57e12211 4543 /* Ack any packet which the remote side has already sent. */
048094ac 4544 remote_serial_write ("+", 1);
1e51243a 4545
c8d104ad
PA
4546 /* The first packet we send to the target is the optional "supported
4547 packets" request. If the target can answer this, it will tell us
4548 which later probes to skip. */
4549 remote_query_supported ();
4550
d914c394 4551 /* If the stub wants to get a QAllow, compose one and send it. */
4082afcc 4552 if (packet_support (PACKET_QAllow) != PACKET_DISABLE)
f6ac5f3d 4553 set_permissions ();
d914c394 4554
57809e5e
JK
4555 /* gdbserver < 7.7 (before its fix from 2013-12-11) did reply to any
4556 unknown 'v' packet with string "OK". "OK" gets interpreted by GDB
4557 as a reply to known packet. For packet "vFile:setfs:" it is an
4558 invalid reply and GDB would return error in
4559 remote_hostio_set_filesystem, making remote files access impossible.
4560 Disable "vFile:setfs:" in such case. Do not disable other 'v' packets as
4561 other "vFile" packets get correctly detected even on gdbserver < 7.7. */
4562 {
4563 const char v_mustreplyempty[] = "vMustReplyEmpty";
4564
4565 putpkt (v_mustreplyempty);
4566 getpkt (&rs->buf, &rs->buf_size, 0);
4567 if (strcmp (rs->buf, "OK") == 0)
4568 remote_protocol_packets[PACKET_vFile_setfs].support = PACKET_DISABLE;
4569 else if (strcmp (rs->buf, "") != 0)
4570 error (_("Remote replied unexpectedly to '%s': %s"), v_mustreplyempty,
4571 rs->buf);
4572 }
4573
c8d104ad
PA
4574 /* Next, we possibly activate noack mode.
4575
4576 If the QStartNoAckMode packet configuration is set to AUTO,
4577 enable noack mode if the stub reported a wish for it with
4578 qSupported.
4579
4580 If set to TRUE, then enable noack mode even if the stub didn't
4581 report it in qSupported. If the stub doesn't reply OK, the
4582 session ends with an error.
4583
4584 If FALSE, then don't activate noack mode, regardless of what the
4585 stub claimed should be the default with qSupported. */
4586
4587 noack_config = &remote_protocol_packets[PACKET_QStartNoAckMode];
4082afcc 4588 if (packet_config_support (noack_config) != PACKET_DISABLE)
c8d104ad
PA
4589 {
4590 putpkt ("QStartNoAckMode");
4591 getpkt (&rs->buf, &rs->buf_size, 0);
4592 if (packet_ok (rs->buf, noack_config) == PACKET_OK)
4593 rs->noack_mode = 1;
4594 }
4595
04bd08de 4596 if (extended_p)
5fe04517
PA
4597 {
4598 /* Tell the remote that we are using the extended protocol. */
4599 putpkt ("!");
4600 getpkt (&rs->buf, &rs->buf_size, 0);
4601 }
4602
9b224c5e
PA
4603 /* Let the target know which signals it is allowed to pass down to
4604 the program. */
4605 update_signals_program_target ();
4606
d962ef82
DJ
4607 /* Next, if the target can specify a description, read it. We do
4608 this before anything involving memory or registers. */
4609 target_find_description ();
4610
6c95b8df
PA
4611 /* Next, now that we know something about the target, update the
4612 address spaces in the program spaces. */
4613 update_address_spaces ();
4614
50c71eaf
PA
4615 /* On OSs where the list of libraries is global to all
4616 processes, we fetch them early. */
f5656ead 4617 if (gdbarch_has_global_solist (target_gdbarch ()))
e696b3ad 4618 solib_add (NULL, from_tty, auto_solib_add);
50c71eaf 4619
6efcd9a8 4620 if (target_is_non_stop_p ())
74531fed 4621 {
4082afcc 4622 if (packet_support (PACKET_QNonStop) != PACKET_ENABLE)
3e43a32a
MS
4623 error (_("Non-stop mode requested, but remote "
4624 "does not support non-stop"));
74531fed
PA
4625
4626 putpkt ("QNonStop:1");
4627 getpkt (&rs->buf, &rs->buf_size, 0);
4628
4629 if (strcmp (rs->buf, "OK") != 0)
9b20d036 4630 error (_("Remote refused setting non-stop mode with: %s"), rs->buf);
74531fed
PA
4631
4632 /* Find about threads and processes the stub is already
4633 controlling. We default to adding them in the running state.
4634 The '?' query below will then tell us about which threads are
4635 stopped. */
f6ac5f3d 4636 this->update_thread_list ();
74531fed 4637 }
4082afcc 4638 else if (packet_support (PACKET_QNonStop) == PACKET_ENABLE)
74531fed
PA
4639 {
4640 /* Don't assume that the stub can operate in all-stop mode.
e6f3fa52 4641 Request it explicitly. */
74531fed
PA
4642 putpkt ("QNonStop:0");
4643 getpkt (&rs->buf, &rs->buf_size, 0);
4644
4645 if (strcmp (rs->buf, "OK") != 0)
9b20d036 4646 error (_("Remote refused setting all-stop mode with: %s"), rs->buf);
74531fed
PA
4647 }
4648
a0743c90
YQ
4649 /* Upload TSVs regardless of whether the target is running or not. The
4650 remote stub, such as GDBserver, may have some predefined or builtin
4651 TSVs, even if the target is not running. */
f6ac5f3d 4652 if (get_trace_status (current_trace_status ()) != -1)
a0743c90
YQ
4653 {
4654 struct uploaded_tsv *uploaded_tsvs = NULL;
4655
f6ac5f3d 4656 upload_trace_state_variables (&uploaded_tsvs);
a0743c90
YQ
4657 merge_uploaded_trace_state_variables (&uploaded_tsvs);
4658 }
4659
2d717e4f
DJ
4660 /* Check whether the target is running now. */
4661 putpkt ("?");
4662 getpkt (&rs->buf, &rs->buf_size, 0);
4663
6efcd9a8 4664 if (!target_is_non_stop_p ())
2d717e4f 4665 {
74531fed 4666 if (rs->buf[0] == 'W' || rs->buf[0] == 'X')
2d717e4f 4667 {
04bd08de 4668 if (!extended_p)
74531fed 4669 error (_("The target is not running (try extended-remote?)"));
c35b1492
PA
4670
4671 /* We're connected, but not running. Drop out before we
4672 call start_remote. */
e278ad5b 4673 rs->starting_up = 0;
c35b1492 4674 return;
2d717e4f
DJ
4675 }
4676 else
74531fed 4677 {
74531fed 4678 /* Save the reply for later. */
224c3ddb 4679 wait_status = (char *) alloca (strlen (rs->buf) + 1);
74531fed
PA
4680 strcpy (wait_status, rs->buf);
4681 }
4682
b7ea362b 4683 /* Fetch thread list. */
e8032dde 4684 target_update_thread_list ();
b7ea362b 4685
74531fed
PA
4686 /* Let the stub know that we want it to return the thread. */
4687 set_continue_thread (minus_one_ptid);
4688
b7ea362b
PA
4689 if (thread_count () == 0)
4690 {
4691 /* Target has no concept of threads at all. GDB treats
4692 non-threaded target as single-threaded; add a main
4693 thread. */
4694 add_current_inferior_and_thread (wait_status);
4695 }
4696 else
4697 {
4698 /* We have thread information; select the thread the target
4699 says should be current. If we're reconnecting to a
4700 multi-threaded program, this will ideally be the thread
4701 that last reported an event before GDB disconnected. */
4702 inferior_ptid = get_current_thread (wait_status);
d7e15655 4703 if (inferior_ptid == null_ptid)
b7ea362b
PA
4704 {
4705 /* Odd... The target was able to list threads, but not
4706 tell us which thread was current (no "thread"
4707 register in T stop reply?). Just pick the first
4708 thread in the thread list then. */
c9f35b34
KB
4709
4710 if (remote_debug)
4711 fprintf_unfiltered (gdb_stdlog,
4712 "warning: couldn't determine remote "
4713 "current thread; picking first in list.\n");
4714
08036331 4715 inferior_ptid = inferior_list->thread_list->ptid;
b7ea362b
PA
4716 }
4717 }
74531fed 4718
6e586cc5
YQ
4719 /* init_wait_for_inferior should be called before get_offsets in order
4720 to manage `inserted' flag in bp loc in a correct state.
4721 breakpoint_init_inferior, called from init_wait_for_inferior, set
4722 `inserted' flag to 0, while before breakpoint_re_set, called from
4723 start_remote, set `inserted' flag to 1. In the initialization of
4724 inferior, breakpoint_init_inferior should be called first, and then
4725 breakpoint_re_set can be called. If this order is broken, state of
4726 `inserted' flag is wrong, and cause some problems on breakpoint
4727 manipulation. */
4728 init_wait_for_inferior ();
4729
74531fed
PA
4730 get_offsets (); /* Get text, data & bss offsets. */
4731
d962ef82
DJ
4732 /* If we could not find a description using qXfer, and we know
4733 how to do it some other way, try again. This is not
4734 supported for non-stop; it could be, but it is tricky if
4735 there are no stopped threads when we connect. */
f6ac5f3d 4736 if (remote_read_description_p (this)
f5656ead 4737 && gdbarch_target_desc (target_gdbarch ()) == NULL)
d962ef82
DJ
4738 {
4739 target_clear_description ();
4740 target_find_description ();
4741 }
4742
74531fed
PA
4743 /* Use the previously fetched status. */
4744 gdb_assert (wait_status != NULL);
4745 strcpy (rs->buf, wait_status);
4746 rs->cached_wait_status = 1;
4747
f6ac5f3d 4748 ::start_remote (from_tty); /* Initialize gdb process mechanisms. */
2d717e4f
DJ
4749 }
4750 else
4751 {
68c97600
PA
4752 /* Clear WFI global state. Do this before finding about new
4753 threads and inferiors, and setting the current inferior.
4754 Otherwise we would clear the proceed status of the current
4755 inferior when we want its stop_soon state to be preserved
4756 (see notice_new_inferior). */
4757 init_wait_for_inferior ();
4758
74531fed
PA
4759 /* In non-stop, we will either get an "OK", meaning that there
4760 are no stopped threads at this time; or, a regular stop
4761 reply. In the latter case, there may be more than one thread
4762 stopped --- we pull them all out using the vStopped
4763 mechanism. */
4764 if (strcmp (rs->buf, "OK") != 0)
4765 {
722247f1 4766 struct notif_client *notif = &notif_client_stop;
2d717e4f 4767
722247f1
YQ
4768 /* remote_notif_get_pending_replies acks this one, and gets
4769 the rest out. */
f48ff2a7 4770 rs->notif_state->pending_event[notif_client_stop.id]
6b8edb51 4771 = remote_notif_parse (this, notif, rs->buf);
722247f1 4772 remote_notif_get_pending_events (notif);
74531fed 4773 }
2d717e4f 4774
74531fed
PA
4775 if (thread_count () == 0)
4776 {
04bd08de 4777 if (!extended_p)
74531fed 4778 error (_("The target is not running (try extended-remote?)"));
82f73884 4779
c35b1492
PA
4780 /* We're connected, but not running. Drop out before we
4781 call start_remote. */
e278ad5b 4782 rs->starting_up = 0;
c35b1492
PA
4783 return;
4784 }
74531fed 4785
74531fed
PA
4786 /* In non-stop mode, any cached wait status will be stored in
4787 the stop reply queue. */
4788 gdb_assert (wait_status == NULL);
f0223081 4789
2455069d 4790 /* Report all signals during attach/startup. */
f6ac5f3d 4791 pass_signals (0, NULL);
221e1a37
PA
4792
4793 /* If there are already stopped threads, mark them stopped and
4794 report their stops before giving the prompt to the user. */
6efcd9a8 4795 process_initial_stop_replies (from_tty);
221e1a37
PA
4796
4797 if (target_can_async_p ())
4798 target_async (1);
74531fed 4799 }
c8d104ad 4800
c8d104ad
PA
4801 /* If we connected to a live target, do some additional setup. */
4802 if (target_has_execution)
4803 {
f4ccffad 4804 if (symfile_objfile) /* No use without a symbol-file. */
36d25514 4805 remote_check_symbols ();
c8d104ad 4806 }
50c71eaf 4807
d5551862
SS
4808 /* Possibly the target has been engaged in a trace run started
4809 previously; find out where things are at. */
f6ac5f3d 4810 if (get_trace_status (current_trace_status ()) != -1)
d5551862 4811 {
00bf0b85 4812 struct uploaded_tp *uploaded_tps = NULL;
00bf0b85 4813
00bf0b85
SS
4814 if (current_trace_status ()->running)
4815 printf_filtered (_("Trace is already running on the target.\n"));
4816
f6ac5f3d 4817 upload_tracepoints (&uploaded_tps);
00bf0b85
SS
4818
4819 merge_uploaded_tracepoints (&uploaded_tps);
d5551862
SS
4820 }
4821
c0272db5
TW
4822 /* Possibly the target has been engaged in a btrace record started
4823 previously; find out where things are at. */
4824 remote_btrace_maybe_reopen ();
4825
1e51243a
PA
4826 /* The thread and inferior lists are now synchronized with the
4827 target, our symbols have been relocated, and we're merged the
4828 target's tracepoints with ours. We're done with basic start
4829 up. */
4830 rs->starting_up = 0;
4831
a25a5a45
PA
4832 /* Maybe breakpoints are global and need to be inserted now. */
4833 if (breakpoints_should_be_inserted_now ())
50c71eaf 4834 insert_breakpoints ();
c906108c
SS
4835}
4836
4837/* Open a connection to a remote debugger.
4838 NAME is the filename used for communication. */
4839
f6ac5f3d
PA
4840void
4841remote_target::open (const char *name, int from_tty)
c906108c 4842{
f6ac5f3d 4843 open_1 (name, from_tty, 0);
43ff13b4
JM
4844}
4845
c906108c
SS
4846/* Open a connection to a remote debugger using the extended
4847 remote gdb protocol. NAME is the filename used for communication. */
4848
f6ac5f3d
PA
4849void
4850extended_remote_target::open (const char *name, int from_tty)
c906108c 4851{
f6ac5f3d 4852 open_1 (name, from_tty, 1 /*extended_p */);
43ff13b4
JM
4853}
4854
ca4f7f8b
PA
4855/* Reset all packets back to "unknown support". Called when opening a
4856 new connection to a remote target. */
c906108c 4857
d471ea57 4858static void
ca4f7f8b 4859reset_all_packet_configs_support (void)
d471ea57
AC
4860{
4861 int i;
a744cf53 4862
444abaca 4863 for (i = 0; i < PACKET_MAX; i++)
4082afcc 4864 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
d471ea57
AC
4865}
4866
ca4f7f8b
PA
4867/* Initialize all packet configs. */
4868
4869static void
4870init_all_packet_configs (void)
4871{
4872 int i;
4873
4874 for (i = 0; i < PACKET_MAX; i++)
4875 {
4876 remote_protocol_packets[i].detect = AUTO_BOOLEAN_AUTO;
4877 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
4878 }
4879}
4880
23860348 4881/* Symbol look-up. */
dc8acb97 4882
6b8edb51
PA
4883void
4884remote_target::remote_check_symbols ()
dc8acb97 4885{
66644cd3 4886 char *reply, *tmp;
dc8acb97 4887 int end;
28170b88 4888 long reply_size;
a5c0808e 4889 struct cleanup *old_chain;
dc8acb97 4890
63154eca
PA
4891 /* The remote side has no concept of inferiors that aren't running
4892 yet, it only knows about running processes. If we're connected
4893 but our current inferior is not running, we should not invite the
4894 remote target to request symbol lookups related to its
4895 (unrelated) current process. */
4896 if (!target_has_execution)
4897 return;
4898
4082afcc 4899 if (packet_support (PACKET_qSymbol) == PACKET_DISABLE)
dc8acb97
MS
4900 return;
4901
63154eca
PA
4902 /* Make sure the remote is pointing at the right process. Note
4903 there's no way to select "no process". */
3c9c4b83
PA
4904 set_general_process ();
4905
6d820c5c
DJ
4906 /* Allocate a message buffer. We can't reuse the input buffer in RS,
4907 because we need both at the same time. */
66644cd3 4908 gdb::char_vector msg (get_remote_packet_size ());
28170b88 4909 reply = (char *) xmalloc (get_remote_packet_size ());
66644cd3 4910 old_chain = make_cleanup (free_current_contents, &reply);
28170b88 4911 reply_size = get_remote_packet_size ();
6d820c5c 4912
23860348 4913 /* Invite target to request symbol lookups. */
dc8acb97
MS
4914
4915 putpkt ("qSymbol::");
28170b88
MK
4916 getpkt (&reply, &reply_size, 0);
4917 packet_ok (reply, &remote_protocol_packets[PACKET_qSymbol]);
dc8acb97 4918
61012eef 4919 while (startswith (reply, "qSymbol:"))
dc8acb97 4920 {
77e371c0
TT
4921 struct bound_minimal_symbol sym;
4922
dc8acb97 4923 tmp = &reply[8];
66644cd3
AB
4924 end = hex2bin (tmp, reinterpret_cast <gdb_byte *> (msg.data ()),
4925 strlen (tmp) / 2);
dc8acb97 4926 msg[end] = '\0';
66644cd3 4927 sym = lookup_minimal_symbol (msg.data (), NULL, NULL);
3b7344d5 4928 if (sym.minsym == NULL)
66644cd3
AB
4929 xsnprintf (msg.data (), get_remote_packet_size (), "qSymbol::%s",
4930 &reply[8]);
dc8acb97 4931 else
2bbe3cc1 4932 {
f5656ead 4933 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
77e371c0 4934 CORE_ADDR sym_addr = BMSYMBOL_VALUE_ADDRESS (sym);
2bbe3cc1
DJ
4935
4936 /* If this is a function address, return the start of code
4937 instead of any data function descriptor. */
f5656ead 4938 sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
2bbe3cc1 4939 sym_addr,
8b88a78e 4940 current_top_target ());
2bbe3cc1 4941
66644cd3 4942 xsnprintf (msg.data (), get_remote_packet_size (), "qSymbol:%s:%s",
5af949e3 4943 phex_nz (sym_addr, addr_size), &reply[8]);
2bbe3cc1 4944 }
66644cd3
AB
4945
4946 putpkt (msg.data ());
28170b88 4947 getpkt (&reply, &reply_size, 0);
dc8acb97 4948 }
a5c0808e
PA
4949
4950 do_cleanups (old_chain);
dc8acb97
MS
4951}
4952
9db8d71f 4953static struct serial *
baa336ce 4954remote_serial_open (const char *name)
9db8d71f
DJ
4955{
4956 static int udp_warning = 0;
4957
4958 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
4959 of in ser-tcp.c, because it is the remote protocol assuming that the
4960 serial connection is reliable and not the serial connection promising
4961 to be. */
61012eef 4962 if (!udp_warning && startswith (name, "udp:"))
9db8d71f 4963 {
3e43a32a
MS
4964 warning (_("The remote protocol may be unreliable over UDP.\n"
4965 "Some events may be lost, rendering further debugging "
4966 "impossible."));
9db8d71f
DJ
4967 udp_warning = 1;
4968 }
4969
4970 return serial_open (name);
4971}
4972
d914c394
SS
4973/* Inform the target of our permission settings. The permission flags
4974 work without this, but if the target knows the settings, it can do
4975 a couple things. First, it can add its own check, to catch cases
4976 that somehow manage to get by the permissions checks in target
4977 methods. Second, if the target is wired to disallow particular
4978 settings (for instance, a system in the field that is not set up to
4979 be able to stop at a breakpoint), it can object to any unavailable
4980 permissions. */
4981
4982void
f6ac5f3d 4983remote_target::set_permissions ()
d914c394
SS
4984{
4985 struct remote_state *rs = get_remote_state ();
4986
bba74b36
YQ
4987 xsnprintf (rs->buf, get_remote_packet_size (), "QAllow:"
4988 "WriteReg:%x;WriteMem:%x;"
4989 "InsertBreak:%x;InsertTrace:%x;"
4990 "InsertFastTrace:%x;Stop:%x",
4991 may_write_registers, may_write_memory,
4992 may_insert_breakpoints, may_insert_tracepoints,
4993 may_insert_fast_tracepoints, may_stop);
d914c394
SS
4994 putpkt (rs->buf);
4995 getpkt (&rs->buf, &rs->buf_size, 0);
4996
4997 /* If the target didn't like the packet, warn the user. Do not try
4998 to undo the user's settings, that would just be maddening. */
4999 if (strcmp (rs->buf, "OK") != 0)
7ea6d463 5000 warning (_("Remote refused setting permissions with: %s"), rs->buf);
d914c394
SS
5001}
5002
be2a5f71
DJ
5003/* This type describes each known response to the qSupported
5004 packet. */
5005struct protocol_feature
5006{
5007 /* The name of this protocol feature. */
5008 const char *name;
5009
5010 /* The default for this protocol feature. */
5011 enum packet_support default_support;
5012
5013 /* The function to call when this feature is reported, or after
5014 qSupported processing if the feature is not supported.
5015 The first argument points to this structure. The second
5016 argument indicates whether the packet requested support be
5017 enabled, disabled, or probed (or the default, if this function
5018 is being called at the end of processing and this feature was
5019 not reported). The third argument may be NULL; if not NULL, it
5020 is a NUL-terminated string taken from the packet following
5021 this feature's name and an equals sign. */
6b8edb51
PA
5022 void (*func) (remote_target *remote, const struct protocol_feature *,
5023 enum packet_support, const char *);
be2a5f71
DJ
5024
5025 /* The corresponding packet for this feature. Only used if
5026 FUNC is remote_supported_packet. */
5027 int packet;
5028};
5029
be2a5f71 5030static void
6b8edb51
PA
5031remote_supported_packet (remote_target *remote,
5032 const struct protocol_feature *feature,
be2a5f71
DJ
5033 enum packet_support support,
5034 const char *argument)
5035{
5036 if (argument)
5037 {
5038 warning (_("Remote qSupported response supplied an unexpected value for"
5039 " \"%s\"."), feature->name);
5040 return;
5041 }
5042
4082afcc 5043 remote_protocol_packets[feature->packet].support = support;
be2a5f71 5044}
be2a5f71 5045
6b8edb51
PA
5046void
5047remote_target::remote_packet_size (const protocol_feature *feature,
5048 enum packet_support support, const char *value)
be2a5f71
DJ
5049{
5050 struct remote_state *rs = get_remote_state ();
5051
5052 int packet_size;
5053 char *value_end;
5054
5055 if (support != PACKET_ENABLE)
5056 return;
5057
5058 if (value == NULL || *value == '\0')
5059 {
5060 warning (_("Remote target reported \"%s\" without a size."),
5061 feature->name);
5062 return;
5063 }
5064
5065 errno = 0;
5066 packet_size = strtol (value, &value_end, 16);
5067 if (errno != 0 || *value_end != '\0' || packet_size < 0)
5068 {
5069 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
5070 feature->name, value);
5071 return;
5072 }
5073
be2a5f71
DJ
5074 /* Record the new maximum packet size. */
5075 rs->explicit_packet_size = packet_size;
5076}
5077
6b8edb51
PA
5078void
5079remote_packet_size (remote_target *remote, const protocol_feature *feature,
5080 enum packet_support support, const char *value)
5081{
5082 remote->remote_packet_size (feature, support, value);
5083}
5084
dc473cfb 5085static const struct protocol_feature remote_protocol_features[] = {
0876f84a 5086 { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 },
40e57cf2 5087 { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet,
fd79ecee 5088 PACKET_qXfer_auxv },
c78fa86a
GB
5089 { "qXfer:exec-file:read", PACKET_DISABLE, remote_supported_packet,
5090 PACKET_qXfer_exec_file },
23181151
DJ
5091 { "qXfer:features:read", PACKET_DISABLE, remote_supported_packet,
5092 PACKET_qXfer_features },
cfa9d6d9
DJ
5093 { "qXfer:libraries:read", PACKET_DISABLE, remote_supported_packet,
5094 PACKET_qXfer_libraries },
2268b414
JK
5095 { "qXfer:libraries-svr4:read", PACKET_DISABLE, remote_supported_packet,
5096 PACKET_qXfer_libraries_svr4 },
ced63ec0 5097 { "augmented-libraries-svr4-read", PACKET_DISABLE,
4082afcc 5098 remote_supported_packet, PACKET_augmented_libraries_svr4_read_feature },
fd79ecee 5099 { "qXfer:memory-map:read", PACKET_DISABLE, remote_supported_packet,
89be2091 5100 PACKET_qXfer_memory_map },
4de6483e
UW
5101 { "qXfer:spu:read", PACKET_DISABLE, remote_supported_packet,
5102 PACKET_qXfer_spu_read },
5103 { "qXfer:spu:write", PACKET_DISABLE, remote_supported_packet,
5104 PACKET_qXfer_spu_write },
07e059b5
VP
5105 { "qXfer:osdata:read", PACKET_DISABLE, remote_supported_packet,
5106 PACKET_qXfer_osdata },
dc146f7c
VP
5107 { "qXfer:threads:read", PACKET_DISABLE, remote_supported_packet,
5108 PACKET_qXfer_threads },
b3b9301e
PA
5109 { "qXfer:traceframe-info:read", PACKET_DISABLE, remote_supported_packet,
5110 PACKET_qXfer_traceframe_info },
89be2091
DJ
5111 { "QPassSignals", PACKET_DISABLE, remote_supported_packet,
5112 PACKET_QPassSignals },
82075af2
JS
5113 { "QCatchSyscalls", PACKET_DISABLE, remote_supported_packet,
5114 PACKET_QCatchSyscalls },
9b224c5e
PA
5115 { "QProgramSignals", PACKET_DISABLE, remote_supported_packet,
5116 PACKET_QProgramSignals },
bc3b087d
SDJ
5117 { "QSetWorkingDir", PACKET_DISABLE, remote_supported_packet,
5118 PACKET_QSetWorkingDir },
aefd8b33
SDJ
5119 { "QStartupWithShell", PACKET_DISABLE, remote_supported_packet,
5120 PACKET_QStartupWithShell },
0a2dde4a
SDJ
5121 { "QEnvironmentHexEncoded", PACKET_DISABLE, remote_supported_packet,
5122 PACKET_QEnvironmentHexEncoded },
5123 { "QEnvironmentReset", PACKET_DISABLE, remote_supported_packet,
5124 PACKET_QEnvironmentReset },
5125 { "QEnvironmentUnset", PACKET_DISABLE, remote_supported_packet,
5126 PACKET_QEnvironmentUnset },
a6f3e723
SL
5127 { "QStartNoAckMode", PACKET_DISABLE, remote_supported_packet,
5128 PACKET_QStartNoAckMode },
4082afcc
PA
5129 { "multiprocess", PACKET_DISABLE, remote_supported_packet,
5130 PACKET_multiprocess_feature },
5131 { "QNonStop", PACKET_DISABLE, remote_supported_packet, PACKET_QNonStop },
4aa995e1
PA
5132 { "qXfer:siginfo:read", PACKET_DISABLE, remote_supported_packet,
5133 PACKET_qXfer_siginfo_read },
5134 { "qXfer:siginfo:write", PACKET_DISABLE, remote_supported_packet,
5135 PACKET_qXfer_siginfo_write },
4082afcc 5136 { "ConditionalTracepoints", PACKET_DISABLE, remote_supported_packet,
782b2b07 5137 PACKET_ConditionalTracepoints },
4082afcc 5138 { "ConditionalBreakpoints", PACKET_DISABLE, remote_supported_packet,
3788aec7 5139 PACKET_ConditionalBreakpoints },
4082afcc 5140 { "BreakpointCommands", PACKET_DISABLE, remote_supported_packet,
d3ce09f5 5141 PACKET_BreakpointCommands },
4082afcc 5142 { "FastTracepoints", PACKET_DISABLE, remote_supported_packet,
7a697b8d 5143 PACKET_FastTracepoints },
4082afcc 5144 { "StaticTracepoints", PACKET_DISABLE, remote_supported_packet,
0fb4aa4b 5145 PACKET_StaticTracepoints },
4082afcc 5146 {"InstallInTrace", PACKET_DISABLE, remote_supported_packet,
1e4d1764 5147 PACKET_InstallInTrace},
4082afcc
PA
5148 { "DisconnectedTracing", PACKET_DISABLE, remote_supported_packet,
5149 PACKET_DisconnectedTracing_feature },
40ab02ce
MS
5150 { "ReverseContinue", PACKET_DISABLE, remote_supported_packet,
5151 PACKET_bc },
5152 { "ReverseStep", PACKET_DISABLE, remote_supported_packet,
5153 PACKET_bs },
409873ef
SS
5154 { "TracepointSource", PACKET_DISABLE, remote_supported_packet,
5155 PACKET_TracepointSource },
d914c394
SS
5156 { "QAllow", PACKET_DISABLE, remote_supported_packet,
5157 PACKET_QAllow },
4082afcc
PA
5158 { "EnableDisableTracepoints", PACKET_DISABLE, remote_supported_packet,
5159 PACKET_EnableDisableTracepoints_feature },
78d85199
YQ
5160 { "qXfer:fdpic:read", PACKET_DISABLE, remote_supported_packet,
5161 PACKET_qXfer_fdpic },
169081d0
TG
5162 { "qXfer:uib:read", PACKET_DISABLE, remote_supported_packet,
5163 PACKET_qXfer_uib },
03583c20
UW
5164 { "QDisableRandomization", PACKET_DISABLE, remote_supported_packet,
5165 PACKET_QDisableRandomization },
d1feda86 5166 { "QAgent", PACKET_DISABLE, remote_supported_packet, PACKET_QAgent},
f6f899bf
HAQ
5167 { "QTBuffer:size", PACKET_DISABLE,
5168 remote_supported_packet, PACKET_QTBuffer_size},
4082afcc 5169 { "tracenz", PACKET_DISABLE, remote_supported_packet, PACKET_tracenz_feature },
9accd112
MM
5170 { "Qbtrace:off", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_off },
5171 { "Qbtrace:bts", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_bts },
b20a6524 5172 { "Qbtrace:pt", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_pt },
9accd112 5173 { "qXfer:btrace:read", PACKET_DISABLE, remote_supported_packet,
f4abbc16
MM
5174 PACKET_qXfer_btrace },
5175 { "qXfer:btrace-conf:read", PACKET_DISABLE, remote_supported_packet,
d33501a5
MM
5176 PACKET_qXfer_btrace_conf },
5177 { "Qbtrace-conf:bts:size", PACKET_DISABLE, remote_supported_packet,
f7e6eed5
PA
5178 PACKET_Qbtrace_conf_bts_size },
5179 { "swbreak", PACKET_DISABLE, remote_supported_packet, PACKET_swbreak_feature },
0a93529c 5180 { "hwbreak", PACKET_DISABLE, remote_supported_packet, PACKET_hwbreak_feature },
89245bc0
DB
5181 { "fork-events", PACKET_DISABLE, remote_supported_packet,
5182 PACKET_fork_event_feature },
5183 { "vfork-events", PACKET_DISABLE, remote_supported_packet,
5184 PACKET_vfork_event_feature },
94585166
DB
5185 { "exec-events", PACKET_DISABLE, remote_supported_packet,
5186 PACKET_exec_event_feature },
b20a6524 5187 { "Qbtrace-conf:pt:size", PACKET_DISABLE, remote_supported_packet,
750ce8d1 5188 PACKET_Qbtrace_conf_pt_size },
65706a29
PA
5189 { "vContSupported", PACKET_DISABLE, remote_supported_packet, PACKET_vContSupported },
5190 { "QThreadEvents", PACKET_DISABLE, remote_supported_packet, PACKET_QThreadEvents },
f2faf941 5191 { "no-resumed", PACKET_DISABLE, remote_supported_packet, PACKET_no_resumed },
be2a5f71
DJ
5192};
5193
c8d5aac9
L
5194static char *remote_support_xml;
5195
5196/* Register string appended to "xmlRegisters=" in qSupported query. */
5197
5198void
6e39997a 5199register_remote_support_xml (const char *xml)
c8d5aac9
L
5200{
5201#if defined(HAVE_LIBEXPAT)
5202 if (remote_support_xml == NULL)
c4f7c687 5203 remote_support_xml = concat ("xmlRegisters=", xml, (char *) NULL);
c8d5aac9
L
5204 else
5205 {
5206 char *copy = xstrdup (remote_support_xml + 13);
5207 char *p = strtok (copy, ",");
5208
5209 do
5210 {
5211 if (strcmp (p, xml) == 0)
5212 {
5213 /* already there */
5214 xfree (copy);
5215 return;
5216 }
5217 }
5218 while ((p = strtok (NULL, ",")) != NULL);
5219 xfree (copy);
5220
94b0dee1
PA
5221 remote_support_xml = reconcat (remote_support_xml,
5222 remote_support_xml, ",", xml,
5223 (char *) NULL);
c8d5aac9
L
5224 }
5225#endif
5226}
5227
69b6ecb0
TT
5228static void
5229remote_query_supported_append (std::string *msg, const char *append)
c8d5aac9 5230{
69b6ecb0
TT
5231 if (!msg->empty ())
5232 msg->append (";");
5233 msg->append (append);
c8d5aac9
L
5234}
5235
6b8edb51
PA
5236void
5237remote_target::remote_query_supported ()
be2a5f71
DJ
5238{
5239 struct remote_state *rs = get_remote_state ();
5240 char *next;
5241 int i;
5242 unsigned char seen [ARRAY_SIZE (remote_protocol_features)];
5243
5244 /* The packet support flags are handled differently for this packet
5245 than for most others. We treat an error, a disabled packet, and
5246 an empty response identically: any features which must be reported
5247 to be used will be automatically disabled. An empty buffer
5248 accomplishes this, since that is also the representation for a list
5249 containing no features. */
5250
5251 rs->buf[0] = 0;
4082afcc 5252 if (packet_support (PACKET_qSupported) != PACKET_DISABLE)
be2a5f71 5253 {
69b6ecb0 5254 std::string q;
c8d5aac9 5255
73b8c1fd 5256 if (packet_set_cmd_state (PACKET_multiprocess_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5257 remote_query_supported_append (&q, "multiprocess+");
c8d5aac9 5258
f7e6eed5 5259 if (packet_set_cmd_state (PACKET_swbreak_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5260 remote_query_supported_append (&q, "swbreak+");
f7e6eed5 5261 if (packet_set_cmd_state (PACKET_hwbreak_feature) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5262 remote_query_supported_append (&q, "hwbreak+");
f7e6eed5 5263
69b6ecb0 5264 remote_query_supported_append (&q, "qRelocInsn+");
dde08ee1 5265
8020350c
DB
5266 if (packet_set_cmd_state (PACKET_fork_event_feature)
5267 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5268 remote_query_supported_append (&q, "fork-events+");
8020350c
DB
5269 if (packet_set_cmd_state (PACKET_vfork_event_feature)
5270 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5271 remote_query_supported_append (&q, "vfork-events+");
8020350c
DB
5272 if (packet_set_cmd_state (PACKET_exec_event_feature)
5273 != AUTO_BOOLEAN_FALSE)
69b6ecb0 5274 remote_query_supported_append (&q, "exec-events+");
89245bc0 5275
750ce8d1 5276 if (packet_set_cmd_state (PACKET_vContSupported) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5277 remote_query_supported_append (&q, "vContSupported+");
750ce8d1 5278
65706a29 5279 if (packet_set_cmd_state (PACKET_QThreadEvents) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5280 remote_query_supported_append (&q, "QThreadEvents+");
65706a29 5281
f2faf941 5282 if (packet_set_cmd_state (PACKET_no_resumed) != AUTO_BOOLEAN_FALSE)
69b6ecb0 5283 remote_query_supported_append (&q, "no-resumed+");
f2faf941 5284
b35d5edb
PA
5285 /* Keep this one last to work around a gdbserver <= 7.10 bug in
5286 the qSupported:xmlRegisters=i386 handling. */
7cc244de
PA
5287 if (remote_support_xml != NULL
5288 && packet_support (PACKET_qXfer_features) != PACKET_DISABLE)
69b6ecb0 5289 remote_query_supported_append (&q, remote_support_xml);
82f73884 5290
69b6ecb0
TT
5291 q = "qSupported:" + q;
5292 putpkt (q.c_str ());
94b0dee1 5293
be2a5f71
DJ
5294 getpkt (&rs->buf, &rs->buf_size, 0);
5295
5296 /* If an error occured, warn, but do not return - just reset the
5297 buffer to empty and go on to disable features. */
5298 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported])
5299 == PACKET_ERROR)
5300 {
5301 warning (_("Remote failure reply: %s"), rs->buf);
5302 rs->buf[0] = 0;
5303 }
5304 }
5305
5306 memset (seen, 0, sizeof (seen));
5307
5308 next = rs->buf;
5309 while (*next)
5310 {
5311 enum packet_support is_supported;
5312 char *p, *end, *name_end, *value;
5313
5314 /* First separate out this item from the rest of the packet. If
5315 there's another item after this, we overwrite the separator
5316 (terminated strings are much easier to work with). */
5317 p = next;
5318 end = strchr (p, ';');
5319 if (end == NULL)
5320 {
5321 end = p + strlen (p);
5322 next = end;
5323 }
5324 else
5325 {
89be2091
DJ
5326 *end = '\0';
5327 next = end + 1;
5328
be2a5f71
DJ
5329 if (end == p)
5330 {
5331 warning (_("empty item in \"qSupported\" response"));
5332 continue;
5333 }
be2a5f71
DJ
5334 }
5335
5336 name_end = strchr (p, '=');
5337 if (name_end)
5338 {
5339 /* This is a name=value entry. */
5340 is_supported = PACKET_ENABLE;
5341 value = name_end + 1;
5342 *name_end = '\0';
5343 }
5344 else
5345 {
5346 value = NULL;
5347 switch (end[-1])
5348 {
5349 case '+':
5350 is_supported = PACKET_ENABLE;
5351 break;
5352
5353 case '-':
5354 is_supported = PACKET_DISABLE;
5355 break;
5356
5357 case '?':
5358 is_supported = PACKET_SUPPORT_UNKNOWN;
5359 break;
5360
5361 default:
3e43a32a
MS
5362 warning (_("unrecognized item \"%s\" "
5363 "in \"qSupported\" response"), p);
be2a5f71
DJ
5364 continue;
5365 }
5366 end[-1] = '\0';
5367 }
5368
5369 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
5370 if (strcmp (remote_protocol_features[i].name, p) == 0)
5371 {
5372 const struct protocol_feature *feature;
5373
5374 seen[i] = 1;
5375 feature = &remote_protocol_features[i];
6b8edb51 5376 feature->func (this, feature, is_supported, value);
be2a5f71
DJ
5377 break;
5378 }
5379 }
5380
5381 /* If we increased the packet size, make sure to increase the global
5382 buffer size also. We delay this until after parsing the entire
5383 qSupported packet, because this is the same buffer we were
5384 parsing. */
5385 if (rs->buf_size < rs->explicit_packet_size)
5386 {
5387 rs->buf_size = rs->explicit_packet_size;
224c3ddb 5388 rs->buf = (char *) xrealloc (rs->buf, rs->buf_size);
be2a5f71
DJ
5389 }
5390
5391 /* Handle the defaults for unmentioned features. */
5392 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
5393 if (!seen[i])
5394 {
5395 const struct protocol_feature *feature;
5396
5397 feature = &remote_protocol_features[i];
6b8edb51 5398 feature->func (this, feature, feature->default_support, NULL);
be2a5f71
DJ
5399 }
5400}
5401
048094ac
PA
5402/* Serial QUIT handler for the remote serial descriptor.
5403
5404 Defers handling a Ctrl-C until we're done with the current
5405 command/response packet sequence, unless:
5406
5407 - We're setting up the connection. Don't send a remote interrupt
5408 request, as we're not fully synced yet. Quit immediately
5409 instead.
5410
5411 - The target has been resumed in the foreground
223ffa71 5412 (target_terminal::is_ours is false) with a synchronous resume
048094ac
PA
5413 packet, and we're blocked waiting for the stop reply, thus a
5414 Ctrl-C should be immediately sent to the target.
5415
5416 - We get a second Ctrl-C while still within the same serial read or
5417 write. In that case the serial is seemingly wedged --- offer to
5418 quit/disconnect.
5419
5420 - We see a second Ctrl-C without target response, after having
5421 previously interrupted the target. In that case the target/stub
5422 is probably wedged --- offer to quit/disconnect.
5423*/
5424
6b8edb51
PA
5425void
5426remote_target::remote_serial_quit_handler ()
048094ac
PA
5427{
5428 struct remote_state *rs = get_remote_state ();
5429
5430 if (check_quit_flag ())
5431 {
5432 /* If we're starting up, we're not fully synced yet. Quit
5433 immediately. */
5434 if (rs->starting_up)
5435 quit ();
5436 else if (rs->got_ctrlc_during_io)
5437 {
5438 if (query (_("The target is not responding to GDB commands.\n"
5439 "Stop debugging it? ")))
5440 remote_unpush_and_throw ();
5441 }
5442 /* If ^C has already been sent once, offer to disconnect. */
223ffa71 5443 else if (!target_terminal::is_ours () && rs->ctrlc_pending_p)
048094ac
PA
5444 interrupt_query ();
5445 /* All-stop protocol, and blocked waiting for stop reply. Send
5446 an interrupt request. */
223ffa71 5447 else if (!target_terminal::is_ours () && rs->waiting_for_stop_reply)
e671cd59 5448 target_interrupt ();
048094ac
PA
5449 else
5450 rs->got_ctrlc_during_io = 1;
5451 }
5452}
5453
6b8edb51
PA
5454/* The remote_target that is current while the quit handler is
5455 overridden with remote_serial_quit_handler. */
5456static remote_target *curr_quit_handler_target;
5457
5458static void
5459remote_serial_quit_handler ()
5460{
5461 curr_quit_handler_target->remote_serial_quit_handler ();
5462}
5463
78a095c3
JK
5464/* Remove any of the remote.c targets from target stack. Upper targets depend
5465 on it so remove them first. */
5466
5467static void
5468remote_unpush_target (void)
5469{
915ef8b1 5470 pop_all_targets_at_and_above (process_stratum);
78a095c3 5471}
be2a5f71 5472
048094ac
PA
5473static void
5474remote_unpush_and_throw (void)
5475{
5476 remote_unpush_target ();
5477 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
5478}
5479
f6ac5f3d
PA
5480void
5481remote_target::open_1 (const char *name, int from_tty, int extended_p)
c906108c 5482{
6b8edb51 5483 remote_target *curr_remote = get_current_remote_target ();
a6f3e723 5484
c906108c 5485 if (name == 0)
8a3fe4f8 5486 error (_("To open a remote debug connection, you need to specify what\n"
22e04375 5487 "serial device is attached to the remote system\n"
8a3fe4f8 5488 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
c906108c 5489
2d717e4f 5490 /* If we're connected to a running target, target_preopen will kill it.
78a095c3
JK
5491 Ask this question first, before target_preopen has a chance to kill
5492 anything. */
6b8edb51 5493 if (curr_remote != NULL && !have_inferiors ())
2d717e4f 5494 {
78a095c3
JK
5495 if (from_tty
5496 && !query (_("Already connected to a remote target. Disconnect? ")))
2d717e4f
DJ
5497 error (_("Still connected."));
5498 }
5499
78a095c3 5500 /* Here the possibly existing remote target gets unpushed. */
c906108c
SS
5501 target_preopen (from_tty);
5502
ad9a8f3f 5503 remote_fileio_reset ();
1dd41f16
NS
5504 reopen_exec_file ();
5505 reread_symbols ();
5506
6b8edb51
PA
5507 remote_target *remote
5508 = (extended_p ? new extended_remote_target () : new remote_target ());
5509 target_ops_up target_holder (remote);
5510
5511 remote_state *rs = remote->get_remote_state ();
5512
5513 /* See FIXME above. */
5514 if (!target_async_permitted)
5515 rs->wait_forever_enabled_p = 1;
5516
5d93a237
TT
5517 rs->remote_desc = remote_serial_open (name);
5518 if (!rs->remote_desc)
c906108c
SS
5519 perror_with_name (name);
5520
5521 if (baud_rate != -1)
5522 {
5d93a237 5523 if (serial_setbaudrate (rs->remote_desc, baud_rate))
c906108c 5524 {
9b74d5d3
KB
5525 /* The requested speed could not be set. Error out to
5526 top level after closing remote_desc. Take care to
5527 set remote_desc to NULL to avoid closing remote_desc
5528 more than once. */
5d93a237
TT
5529 serial_close (rs->remote_desc);
5530 rs->remote_desc = NULL;
c906108c
SS
5531 perror_with_name (name);
5532 }
5533 }
5534
236af5e3 5535 serial_setparity (rs->remote_desc, serial_parity);
5d93a237 5536 serial_raw (rs->remote_desc);
c906108c
SS
5537
5538 /* If there is something sitting in the buffer we might take it as a
5539 response to a command, which would be bad. */
5d93a237 5540 serial_flush_input (rs->remote_desc);
c906108c
SS
5541
5542 if (from_tty)
5543 {
5544 puts_filtered ("Remote debugging using ");
5545 puts_filtered (name);
5546 puts_filtered ("\n");
5547 }
d9f719f1 5548
6b8edb51
PA
5549 /* Switch to using the remote target now. */
5550 push_target (remote);
5551 /* The target stack owns the target now. */
5552 target_holder.release ();
c906108c 5553
74531fed 5554 /* Register extra event sources in the event loop. */
6b8edb51 5555 rs->remote_async_inferior_event_token
74531fed 5556 = create_async_event_handler (remote_async_inferior_event_handler,
6b8edb51
PA
5557 remote);
5558 rs->notif_state = remote_notif_state_allocate (remote);
74531fed 5559
be2a5f71
DJ
5560 /* Reset the target state; these things will be queried either by
5561 remote_query_supported or as they are needed. */
ca4f7f8b 5562 reset_all_packet_configs_support ();
74531fed 5563 rs->cached_wait_status = 0;
be2a5f71 5564 rs->explicit_packet_size = 0;
a6f3e723 5565 rs->noack_mode = 0;
82f73884 5566 rs->extended = extended_p;
e24a49d8 5567 rs->waiting_for_stop_reply = 0;
3a29589a 5568 rs->ctrlc_pending_p = 0;
048094ac 5569 rs->got_ctrlc_during_io = 0;
802188a7 5570
47f8a51d
TT
5571 rs->general_thread = not_sent_ptid;
5572 rs->continue_thread = not_sent_ptid;
262e1174 5573 rs->remote_traceframe_number = -1;
c906108c 5574
3a00c802
PA
5575 rs->last_resume_exec_dir = EXEC_FORWARD;
5576
9d1f7ab2 5577 /* Probe for ability to use "ThreadInfo" query, as required. */
b80fafe3
TT
5578 rs->use_threadinfo_query = 1;
5579 rs->use_threadextra_query = 1;
9d1f7ab2 5580
dd194f6b 5581 rs->readahead_cache.invalidate ();
80152258 5582
c6ebd6cf 5583 if (target_async_permitted)
92d1e331 5584 {
92d1e331
DJ
5585 /* FIXME: cagney/1999-09-23: During the initial connection it is
5586 assumed that the target is already ready and able to respond to
0df8b418 5587 requests. Unfortunately remote_start_remote() eventually calls
92d1e331 5588 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
0df8b418 5589 around this. Eventually a mechanism that allows
92d1e331 5590 wait_for_inferior() to expect/get timeouts will be
23860348 5591 implemented. */
6b8edb51 5592 rs->wait_forever_enabled_p = 0;
92d1e331
DJ
5593 }
5594
23860348 5595 /* First delete any symbols previously loaded from shared libraries. */
f78f6cf1 5596 no_shared_libraries (NULL, 0);
f78f6cf1 5597
36918e70 5598 /* Start the remote connection. If error() or QUIT, discard this
165b8e33
AC
5599 target (we'd otherwise be in an inconsistent state) and then
5600 propogate the error on up the exception chain. This ensures that
5601 the caller doesn't stumble along blindly assuming that the
5602 function succeeded. The CLI doesn't have this problem but other
5603 UI's, such as MI do.
36918e70
AC
5604
5605 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
5606 this function should return an error indication letting the
ce2826aa 5607 caller restore the previous state. Unfortunately the command
36918e70
AC
5608 ``target remote'' is directly wired to this function making that
5609 impossible. On a positive note, the CLI side of this problem has
5610 been fixed - the function set_cmd_context() makes it possible for
5611 all the ``target ....'' commands to share a common callback
5612 function. See cli-dump.c. */
109c3e39 5613 {
2d717e4f 5614
492d29ea 5615 TRY
04bd08de 5616 {
6b8edb51 5617 remote->start_remote (from_tty, extended_p);
04bd08de 5618 }
492d29ea 5619 CATCH (ex, RETURN_MASK_ALL)
109c3e39 5620 {
c8d104ad
PA
5621 /* Pop the partially set up target - unless something else did
5622 already before throwing the exception. */
6b8edb51 5623 if (ex.error != TARGET_CLOSE_ERROR)
78a095c3 5624 remote_unpush_target ();
109c3e39
AC
5625 throw_exception (ex);
5626 }
492d29ea 5627 END_CATCH
109c3e39 5628 }
c906108c 5629
6b8edb51 5630 remote_btrace_reset (rs);
f4abbc16 5631
c6ebd6cf 5632 if (target_async_permitted)
6b8edb51 5633 rs->wait_forever_enabled_p = 1;
43ff13b4
JM
5634}
5635
de0d863e
DB
5636/* Detach the specified process. */
5637
6b8edb51
PA
5638void
5639remote_target::remote_detach_pid (int pid)
de0d863e
DB
5640{
5641 struct remote_state *rs = get_remote_state ();
5642
4c7333b3
PA
5643 /* This should not be necessary, but the handling for D;PID in
5644 GDBserver versions prior to 8.2 incorrectly assumes that the
5645 selected process points to the same process we're detaching,
5646 leading to misbehavior (and possibly GDBserver crashing) when it
5647 does not. Since it's easy and cheap, work around it by forcing
5648 GDBserver to select GDB's current process. */
5649 set_general_process ();
5650
de0d863e
DB
5651 if (remote_multi_process_p (rs))
5652 xsnprintf (rs->buf, get_remote_packet_size (), "D;%x", pid);
5653 else
5654 strcpy (rs->buf, "D");
5655
5656 putpkt (rs->buf);
5657 getpkt (&rs->buf, &rs->buf_size, 0);
5658
5659 if (rs->buf[0] == 'O' && rs->buf[1] == 'K')
5660 ;
5661 else if (rs->buf[0] == '\0')
5662 error (_("Remote doesn't know how to detach"));
5663 else
5664 error (_("Can't detach process."));
5665}
5666
5667/* This detaches a program to which we previously attached, using
5668 inferior_ptid to identify the process. After this is done, GDB
5669 can be used to debug some other program. We better not have left
5670 any breakpoints in the target program or it'll die when it hits
5671 one. */
c906108c 5672
6b8edb51 5673void
00431a78 5674remote_target::remote_detach_1 (inferior *inf, int from_tty)
c906108c 5675{
e99b03dc 5676 int pid = inferior_ptid.pid ();
d01949b6 5677 struct remote_state *rs = get_remote_state ();
de0d863e 5678 int is_fork_parent;
c906108c 5679
2d717e4f
DJ
5680 if (!target_has_execution)
5681 error (_("No process to detach from."));
5682
0f48b757 5683 target_announce_detach (from_tty);
7cee1e54 5684
c906108c 5685 /* Tell the remote target to detach. */
de0d863e 5686 remote_detach_pid (pid);
82f73884 5687
8020350c
DB
5688 /* Exit only if this is the only active inferior. */
5689 if (from_tty && !rs->extended && number_of_live_inferiors () == 1)
7cee1e54 5690 puts_filtered (_("Ending remote debugging.\n"));
82f73884 5691
00431a78
PA
5692 struct thread_info *tp = find_thread_ptid (inferior_ptid);
5693
de0d863e
DB
5694 /* Check to see if we are detaching a fork parent. Note that if we
5695 are detaching a fork child, tp == NULL. */
5696 is_fork_parent = (tp != NULL
5697 && tp->pending_follow.kind == TARGET_WAITKIND_FORKED);
5698
5699 /* If doing detach-on-fork, we don't mourn, because that will delete
5700 breakpoints that should be available for the followed inferior. */
5701 if (!is_fork_parent)
f67c0c91 5702 {
249b5733
PA
5703 /* Save the pid as a string before mourning, since that will
5704 unpush the remote target, and we need the string after. */
f2907e49 5705 std::string infpid = target_pid_to_str (ptid_t (pid));
f67c0c91
SDJ
5706
5707 target_mourn_inferior (inferior_ptid);
5708 if (print_inferior_events)
5709 printf_unfiltered (_("[Inferior %d (%s) detached]\n"),
5710 inf->num, infpid.c_str ());
5711 }
de0d863e
DB
5712 else
5713 {
5714 inferior_ptid = null_ptid;
00431a78 5715 detach_inferior (current_inferior ());
de0d863e 5716 }
2d717e4f
DJ
5717}
5718
f6ac5f3d
PA
5719void
5720remote_target::detach (inferior *inf, int from_tty)
2d717e4f 5721{
00431a78 5722 remote_detach_1 (inf, from_tty);
2d717e4f
DJ
5723}
5724
f6ac5f3d
PA
5725void
5726extended_remote_target::detach (inferior *inf, int from_tty)
2d717e4f 5727{
00431a78 5728 remote_detach_1 (inf, from_tty);
de0d863e
DB
5729}
5730
5731/* Target follow-fork function for remote targets. On entry, and
5732 at return, the current inferior is the fork parent.
5733
5734 Note that although this is currently only used for extended-remote,
5735 it is named remote_follow_fork in anticipation of using it for the
5736 remote target as well. */
5737
f6ac5f3d
PA
5738int
5739remote_target::follow_fork (int follow_child, int detach_fork)
de0d863e
DB
5740{
5741 struct remote_state *rs = get_remote_state ();
c269dbdb 5742 enum target_waitkind kind = inferior_thread ()->pending_follow.kind;
de0d863e 5743
c269dbdb
DB
5744 if ((kind == TARGET_WAITKIND_FORKED && remote_fork_event_p (rs))
5745 || (kind == TARGET_WAITKIND_VFORKED && remote_vfork_event_p (rs)))
de0d863e
DB
5746 {
5747 /* When following the parent and detaching the child, we detach
5748 the child here. For the case of following the child and
5749 detaching the parent, the detach is done in the target-
5750 independent follow fork code in infrun.c. We can't use
5751 target_detach when detaching an unfollowed child because
5752 the client side doesn't know anything about the child. */
5753 if (detach_fork && !follow_child)
5754 {
5755 /* Detach the fork child. */
5756 ptid_t child_ptid;
5757 pid_t child_pid;
5758
5759 child_ptid = inferior_thread ()->pending_follow.value.related_pid;
e99b03dc 5760 child_pid = child_ptid.pid ();
de0d863e
DB
5761
5762 remote_detach_pid (child_pid);
de0d863e
DB
5763 }
5764 }
5765 return 0;
c906108c
SS
5766}
5767
94585166
DB
5768/* Target follow-exec function for remote targets. Save EXECD_PATHNAME
5769 in the program space of the new inferior. On entry and at return the
5770 current inferior is the exec'ing inferior. INF is the new exec'd
5771 inferior, which may be the same as the exec'ing inferior unless
5772 follow-exec-mode is "new". */
5773
f6ac5f3d
PA
5774void
5775remote_target::follow_exec (struct inferior *inf, char *execd_pathname)
94585166
DB
5776{
5777 /* We know that this is a target file name, so if it has the "target:"
5778 prefix we strip it off before saving it in the program space. */
5779 if (is_target_filename (execd_pathname))
5780 execd_pathname += strlen (TARGET_SYSROOT_PREFIX);
5781
5782 set_pspace_remote_exec_file (inf->pspace, execd_pathname);
5783}
5784
6ad8ae5c
DJ
5785/* Same as remote_detach, but don't send the "D" packet; just disconnect. */
5786
f6ac5f3d
PA
5787void
5788remote_target::disconnect (const char *args, int from_tty)
43ff13b4 5789{
43ff13b4 5790 if (args)
2d717e4f 5791 error (_("Argument given to \"disconnect\" when remotely debugging."));
43ff13b4 5792
8020350c
DB
5793 /* Make sure we unpush even the extended remote targets. Calling
5794 target_mourn_inferior won't unpush, and remote_mourn won't
5795 unpush if there is more than one inferior left. */
f6ac5f3d 5796 unpush_target (this);
8020350c 5797 generic_mourn_inferior ();
2d717e4f 5798
43ff13b4
JM
5799 if (from_tty)
5800 puts_filtered ("Ending remote debugging.\n");
5801}
5802
2d717e4f
DJ
5803/* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
5804 be chatty about it. */
5805
f6ac5f3d
PA
5806void
5807extended_remote_target::attach (const char *args, int from_tty)
2d717e4f
DJ
5808{
5809 struct remote_state *rs = get_remote_state ();
be86555c 5810 int pid;
96ef3384 5811 char *wait_status = NULL;
2d717e4f 5812
74164c56 5813 pid = parse_pid_to_attach (args);
2d717e4f 5814
74164c56
JK
5815 /* Remote PID can be freely equal to getpid, do not check it here the same
5816 way as in other targets. */
2d717e4f 5817
4082afcc 5818 if (packet_support (PACKET_vAttach) == PACKET_DISABLE)
2d717e4f
DJ
5819 error (_("This target does not support attaching to a process"));
5820
7cee1e54
PA
5821 if (from_tty)
5822 {
5823 char *exec_file = get_exec_file (0);
5824
5825 if (exec_file)
5826 printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file,
f2907e49 5827 target_pid_to_str (ptid_t (pid)));
7cee1e54
PA
5828 else
5829 printf_unfiltered (_("Attaching to %s\n"),
f2907e49 5830 target_pid_to_str (ptid_t (pid)));
7cee1e54
PA
5831
5832 gdb_flush (gdb_stdout);
5833 }
5834
bba74b36 5835 xsnprintf (rs->buf, get_remote_packet_size (), "vAttach;%x", pid);
2d717e4f
DJ
5836 putpkt (rs->buf);
5837 getpkt (&rs->buf, &rs->buf_size, 0);
5838
4082afcc
PA
5839 switch (packet_ok (rs->buf,
5840 &remote_protocol_packets[PACKET_vAttach]))
2d717e4f 5841 {
4082afcc 5842 case PACKET_OK:
6efcd9a8 5843 if (!target_is_non_stop_p ())
74531fed
PA
5844 {
5845 /* Save the reply for later. */
224c3ddb 5846 wait_status = (char *) alloca (strlen (rs->buf) + 1);
74531fed
PA
5847 strcpy (wait_status, rs->buf);
5848 }
5849 else if (strcmp (rs->buf, "OK") != 0)
5850 error (_("Attaching to %s failed with: %s"),
f2907e49 5851 target_pid_to_str (ptid_t (pid)),
74531fed 5852 rs->buf);
4082afcc
PA
5853 break;
5854 case PACKET_UNKNOWN:
5855 error (_("This target does not support attaching to a process"));
5856 default:
5857 error (_("Attaching to %s failed"),
f2907e49 5858 target_pid_to_str (ptid_t (pid)));
2d717e4f 5859 }
2d717e4f 5860
1b6e6f5c 5861 set_current_inferior (remote_add_inferior (0, pid, 1, 0));
bad34192 5862
f2907e49 5863 inferior_ptid = ptid_t (pid);
79d7f229 5864
6efcd9a8 5865 if (target_is_non_stop_p ())
bad34192
PA
5866 {
5867 struct thread_info *thread;
79d7f229 5868
bad34192 5869 /* Get list of threads. */
f6ac5f3d 5870 update_thread_list ();
82f73884 5871
00431a78 5872 thread = first_thread_of_inferior (current_inferior ());
bad34192
PA
5873 if (thread)
5874 inferior_ptid = thread->ptid;
5875 else
f2907e49 5876 inferior_ptid = ptid_t (pid);
bad34192
PA
5877
5878 /* Invalidate our notion of the remote current thread. */
47f8a51d 5879 record_currthread (rs, minus_one_ptid);
bad34192 5880 }
74531fed 5881 else
bad34192
PA
5882 {
5883 /* Now, if we have thread information, update inferior_ptid. */
5884 inferior_ptid = remote_current_thread (inferior_ptid);
5885
5886 /* Add the main thread to the thread list. */
00aecdcf
PA
5887 thread_info *thr = add_thread_silent (inferior_ptid);
5888 /* Don't consider the thread stopped until we've processed the
5889 saved stop reply. */
5890 set_executing (thr->ptid, true);
bad34192 5891 }
c0a2216e 5892
96ef3384
UW
5893 /* Next, if the target can specify a description, read it. We do
5894 this before anything involving memory or registers. */
5895 target_find_description ();
5896
6efcd9a8 5897 if (!target_is_non_stop_p ())
74531fed
PA
5898 {
5899 /* Use the previously fetched status. */
5900 gdb_assert (wait_status != NULL);
5901
5902 if (target_can_async_p ())
5903 {
722247f1 5904 struct notif_event *reply
6b8edb51 5905 = remote_notif_parse (this, &notif_client_stop, wait_status);
74531fed 5906
722247f1 5907 push_stop_reply ((struct stop_reply *) reply);
74531fed 5908
6a3753b3 5909 target_async (1);
74531fed
PA
5910 }
5911 else
5912 {
5913 gdb_assert (wait_status != NULL);
5914 strcpy (rs->buf, wait_status);
5915 rs->cached_wait_status = 1;
5916 }
5917 }
5918 else
5919 gdb_assert (wait_status == NULL);
2d717e4f
DJ
5920}
5921
b9c1d481
AS
5922/* Implementation of the to_post_attach method. */
5923
f6ac5f3d
PA
5924void
5925extended_remote_target::post_attach (int pid)
b9c1d481 5926{
6efcd9a8
PA
5927 /* Get text, data & bss offsets. */
5928 get_offsets ();
5929
b9c1d481
AS
5930 /* In certain cases GDB might not have had the chance to start
5931 symbol lookup up until now. This could happen if the debugged
5932 binary is not using shared libraries, the vsyscall page is not
5933 present (on Linux) and the binary itself hadn't changed since the
5934 debugging process was started. */
5935 if (symfile_objfile != NULL)
5936 remote_check_symbols();
5937}
5938
c906108c 5939\f
506fb367
DJ
5940/* Check for the availability of vCont. This function should also check
5941 the response. */
c906108c 5942
6b8edb51
PA
5943void
5944remote_target::remote_vcont_probe ()
c906108c 5945{
6b8edb51 5946 remote_state *rs = get_remote_state ();
2e9f7625 5947 char *buf;
6d820c5c 5948
2e9f7625
DJ
5949 strcpy (rs->buf, "vCont?");
5950 putpkt (rs->buf);
6d820c5c 5951 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 5952 buf = rs->buf;
c906108c 5953
506fb367 5954 /* Make sure that the features we assume are supported. */
61012eef 5955 if (startswith (buf, "vCont"))
506fb367
DJ
5956 {
5957 char *p = &buf[5];
750ce8d1 5958 int support_c, support_C;
506fb367 5959
750ce8d1
YQ
5960 rs->supports_vCont.s = 0;
5961 rs->supports_vCont.S = 0;
506fb367
DJ
5962 support_c = 0;
5963 support_C = 0;
d458bd84 5964 rs->supports_vCont.t = 0;
c1e36e3e 5965 rs->supports_vCont.r = 0;
506fb367
DJ
5966 while (p && *p == ';')
5967 {
5968 p++;
5969 if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 5970 rs->supports_vCont.s = 1;
506fb367 5971 else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 5972 rs->supports_vCont.S = 1;
506fb367
DJ
5973 else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
5974 support_c = 1;
5975 else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
5976 support_C = 1;
74531fed 5977 else if (*p == 't' && (*(p + 1) == ';' || *(p + 1) == 0))
d458bd84 5978 rs->supports_vCont.t = 1;
c1e36e3e
PA
5979 else if (*p == 'r' && (*(p + 1) == ';' || *(p + 1) == 0))
5980 rs->supports_vCont.r = 1;
506fb367
DJ
5981
5982 p = strchr (p, ';');
5983 }
c906108c 5984
750ce8d1
YQ
5985 /* If c, and C are not all supported, we can't use vCont. Clearing
5986 BUF will make packet_ok disable the packet. */
5987 if (!support_c || !support_C)
506fb367
DJ
5988 buf[0] = 0;
5989 }
c906108c 5990
444abaca 5991 packet_ok (buf, &remote_protocol_packets[PACKET_vCont]);
506fb367 5992}
c906108c 5993
0d8f58ca
PA
5994/* Helper function for building "vCont" resumptions. Write a
5995 resumption to P. ENDP points to one-passed-the-end of the buffer
5996 we're allowed to write to. Returns BUF+CHARACTERS_WRITTEN. The
5997 thread to be resumed is PTID; STEP and SIGGNAL indicate whether the
5998 resumed thread should be single-stepped and/or signalled. If PTID
5999 equals minus_one_ptid, then all threads are resumed; if PTID
6000 represents a process, then all threads of the process are resumed;
6001 the thread to be stepped and/or signalled is given in the global
6002 INFERIOR_PTID. */
6003
6b8edb51
PA
6004char *
6005remote_target::append_resumption (char *p, char *endp,
6006 ptid_t ptid, int step, gdb_signal siggnal)
0d8f58ca
PA
6007{
6008 struct remote_state *rs = get_remote_state ();
6009
a493e3e2 6010 if (step && siggnal != GDB_SIGNAL_0)
0d8f58ca 6011 p += xsnprintf (p, endp - p, ";S%02x", siggnal);
c1e36e3e
PA
6012 else if (step
6013 /* GDB is willing to range step. */
6014 && use_range_stepping
6015 /* Target supports range stepping. */
6016 && rs->supports_vCont.r
6017 /* We don't currently support range stepping multiple
6018 threads with a wildcard (though the protocol allows it,
6019 so stubs shouldn't make an active effort to forbid
6020 it). */
0e998d96 6021 && !(remote_multi_process_p (rs) && ptid.is_pid ()))
c1e36e3e
PA
6022 {
6023 struct thread_info *tp;
6024
d7e15655 6025 if (ptid == minus_one_ptid)
c1e36e3e
PA
6026 {
6027 /* If we don't know about the target thread's tid, then
6028 we're resuming magic_null_ptid (see caller). */
6029 tp = find_thread_ptid (magic_null_ptid);
6030 }
6031 else
6032 tp = find_thread_ptid (ptid);
6033 gdb_assert (tp != NULL);
6034
6035 if (tp->control.may_range_step)
6036 {
6037 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
6038
6039 p += xsnprintf (p, endp - p, ";r%s,%s",
6040 phex_nz (tp->control.step_range_start,
6041 addr_size),
6042 phex_nz (tp->control.step_range_end,
6043 addr_size));
6044 }
6045 else
6046 p += xsnprintf (p, endp - p, ";s");
6047 }
0d8f58ca
PA
6048 else if (step)
6049 p += xsnprintf (p, endp - p, ";s");
a493e3e2 6050 else if (siggnal != GDB_SIGNAL_0)
0d8f58ca
PA
6051 p += xsnprintf (p, endp - p, ";C%02x", siggnal);
6052 else
6053 p += xsnprintf (p, endp - p, ";c");
6054
0e998d96 6055 if (remote_multi_process_p (rs) && ptid.is_pid ())
0d8f58ca
PA
6056 {
6057 ptid_t nptid;
6058
6059 /* All (-1) threads of process. */
e99b03dc 6060 nptid = ptid_t (ptid.pid (), -1, 0);
0d8f58ca
PA
6061
6062 p += xsnprintf (p, endp - p, ":");
6063 p = write_ptid (p, endp, nptid);
6064 }
d7e15655 6065 else if (ptid != minus_one_ptid)
0d8f58ca
PA
6066 {
6067 p += xsnprintf (p, endp - p, ":");
6068 p = write_ptid (p, endp, ptid);
6069 }
6070
6071 return p;
6072}
6073
799a2abe
PA
6074/* Clear the thread's private info on resume. */
6075
6076static void
6077resume_clear_thread_private_info (struct thread_info *thread)
6078{
6079 if (thread->priv != NULL)
6080 {
7aabaf9d
SM
6081 remote_thread_info *priv = get_remote_thread_info (thread);
6082
6083 priv->stop_reason = TARGET_STOPPED_BY_NO_REASON;
6084 priv->watch_data_address = 0;
799a2abe
PA
6085 }
6086}
6087
e5ef252a
PA
6088/* Append a vCont continue-with-signal action for threads that have a
6089 non-zero stop signal. */
6090
6b8edb51
PA
6091char *
6092remote_target::append_pending_thread_resumptions (char *p, char *endp,
6093 ptid_t ptid)
e5ef252a 6094{
08036331
PA
6095 for (thread_info *thread : all_non_exited_threads (ptid))
6096 if (inferior_ptid != thread->ptid
70509625 6097 && thread->suspend.stop_signal != GDB_SIGNAL_0)
e5ef252a
PA
6098 {
6099 p = append_resumption (p, endp, thread->ptid,
6100 0, thread->suspend.stop_signal);
6101 thread->suspend.stop_signal = GDB_SIGNAL_0;
799a2abe 6102 resume_clear_thread_private_info (thread);
e5ef252a
PA
6103 }
6104
6105 return p;
6106}
6107
7b68ffbb
PA
6108/* Set the target running, using the packets that use Hc
6109 (c/s/C/S). */
6110
6b8edb51
PA
6111void
6112remote_target::remote_resume_with_hc (ptid_t ptid, int step,
6113 gdb_signal siggnal)
7b68ffbb
PA
6114{
6115 struct remote_state *rs = get_remote_state ();
7b68ffbb
PA
6116 char *buf;
6117
6118 rs->last_sent_signal = siggnal;
6119 rs->last_sent_step = step;
6120
6121 /* The c/s/C/S resume packets use Hc, so set the continue
6122 thread. */
d7e15655 6123 if (ptid == minus_one_ptid)
7b68ffbb
PA
6124 set_continue_thread (any_thread_ptid);
6125 else
6126 set_continue_thread (ptid);
6127
08036331 6128 for (thread_info *thread : all_non_exited_threads ())
7b68ffbb
PA
6129 resume_clear_thread_private_info (thread);
6130
6131 buf = rs->buf;
6b8edb51 6132 if (::execution_direction == EXEC_REVERSE)
7b68ffbb
PA
6133 {
6134 /* We don't pass signals to the target in reverse exec mode. */
6135 if (info_verbose && siggnal != GDB_SIGNAL_0)
6136 warning (_(" - Can't pass signal %d to target in reverse: ignored."),
6137 siggnal);
6138
6139 if (step && packet_support (PACKET_bs) == PACKET_DISABLE)
6140 error (_("Remote reverse-step not supported."));
6141 if (!step && packet_support (PACKET_bc) == PACKET_DISABLE)
6142 error (_("Remote reverse-continue not supported."));
6143
6144 strcpy (buf, step ? "bs" : "bc");
6145 }
6146 else if (siggnal != GDB_SIGNAL_0)
6147 {
6148 buf[0] = step ? 'S' : 'C';
6149 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
6150 buf[2] = tohex (((int) siggnal) & 0xf);
6151 buf[3] = '\0';
6152 }
6153 else
6154 strcpy (buf, step ? "s" : "c");
6155
6156 putpkt (buf);
6157}
6158
506fb367
DJ
6159/* Resume the remote inferior by using a "vCont" packet. The thread
6160 to be resumed is PTID; STEP and SIGGNAL indicate whether the
79d7f229
PA
6161 resumed thread should be single-stepped and/or signalled. If PTID
6162 equals minus_one_ptid, then all threads are resumed; the thread to
6163 be stepped and/or signalled is given in the global INFERIOR_PTID.
6164 This function returns non-zero iff it resumes the inferior.
44eaed12 6165
7b68ffbb
PA
6166 This function issues a strict subset of all possible vCont commands
6167 at the moment. */
44eaed12 6168
6b8edb51
PA
6169int
6170remote_target::remote_resume_with_vcont (ptid_t ptid, int step,
6171 enum gdb_signal siggnal)
506fb367
DJ
6172{
6173 struct remote_state *rs = get_remote_state ();
82f73884
PA
6174 char *p;
6175 char *endp;
44eaed12 6176
7b68ffbb 6177 /* No reverse execution actions defined for vCont. */
6b8edb51 6178 if (::execution_direction == EXEC_REVERSE)
7b68ffbb
PA
6179 return 0;
6180
4082afcc 6181 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6b8edb51 6182 remote_vcont_probe ();
44eaed12 6183
4082afcc 6184 if (packet_support (PACKET_vCont) == PACKET_DISABLE)
6d820c5c 6185 return 0;
44eaed12 6186
82f73884
PA
6187 p = rs->buf;
6188 endp = rs->buf + get_remote_packet_size ();
6189
506fb367
DJ
6190 /* If we could generate a wider range of packets, we'd have to worry
6191 about overflowing BUF. Should there be a generic
6192 "multi-part-packet" packet? */
6193
0d8f58ca
PA
6194 p += xsnprintf (p, endp - p, "vCont");
6195
d7e15655 6196 if (ptid == magic_null_ptid)
c906108c 6197 {
79d7f229
PA
6198 /* MAGIC_NULL_PTID means that we don't have any active threads,
6199 so we don't have any TID numbers the inferior will
6200 understand. Make sure to only send forms that do not specify
6201 a TID. */
a9cbf802 6202 append_resumption (p, endp, minus_one_ptid, step, siggnal);
506fb367 6203 }
d7e15655 6204 else if (ptid == minus_one_ptid || ptid.is_pid ())
506fb367 6205 {
0d8f58ca
PA
6206 /* Resume all threads (of all processes, or of a single
6207 process), with preference for INFERIOR_PTID. This assumes
6208 inferior_ptid belongs to the set of all threads we are about
6209 to resume. */
a493e3e2 6210 if (step || siggnal != GDB_SIGNAL_0)
82f73884 6211 {
0d8f58ca
PA
6212 /* Step inferior_ptid, with or without signal. */
6213 p = append_resumption (p, endp, inferior_ptid, step, siggnal);
82f73884 6214 }
0d8f58ca 6215
e5ef252a
PA
6216 /* Also pass down any pending signaled resumption for other
6217 threads not the current. */
6218 p = append_pending_thread_resumptions (p, endp, ptid);
6219
0d8f58ca 6220 /* And continue others without a signal. */
a493e3e2 6221 append_resumption (p, endp, ptid, /*step=*/ 0, GDB_SIGNAL_0);
c906108c
SS
6222 }
6223 else
506fb367
DJ
6224 {
6225 /* Scheduler locking; resume only PTID. */
a9cbf802 6226 append_resumption (p, endp, ptid, step, siggnal);
506fb367 6227 }
c906108c 6228
82f73884
PA
6229 gdb_assert (strlen (rs->buf) < get_remote_packet_size ());
6230 putpkt (rs->buf);
506fb367 6231
6efcd9a8 6232 if (target_is_non_stop_p ())
74531fed
PA
6233 {
6234 /* In non-stop, the stub replies to vCont with "OK". The stop
6235 reply will be reported asynchronously by means of a `%Stop'
6236 notification. */
6237 getpkt (&rs->buf, &rs->buf_size, 0);
6238 if (strcmp (rs->buf, "OK") != 0)
6239 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf);
6240 }
6241
506fb367 6242 return 1;
c906108c 6243}
43ff13b4 6244
506fb367
DJ
6245/* Tell the remote machine to resume. */
6246
f6ac5f3d
PA
6247void
6248remote_target::resume (ptid_t ptid, int step, enum gdb_signal siggnal)
43ff13b4 6249{
d01949b6 6250 struct remote_state *rs = get_remote_state ();
43ff13b4 6251
85ad3aaf
PA
6252 /* When connected in non-stop mode, the core resumes threads
6253 individually. Resuming remote threads directly in target_resume
6254 would thus result in sending one packet per thread. Instead, to
6255 minimize roundtrip latency, here we just store the resume
6256 request; the actual remote resumption will be done in
6257 target_commit_resume / remote_commit_resume, where we'll be able
6258 to do vCont action coalescing. */
f6ac5f3d 6259 if (target_is_non_stop_p () && ::execution_direction != EXEC_REVERSE)
85ad3aaf 6260 {
7aabaf9d 6261 remote_thread_info *remote_thr;
85ad3aaf 6262
d7e15655 6263 if (minus_one_ptid == ptid || ptid.is_pid ())
7aabaf9d 6264 remote_thr = get_remote_thread_info (inferior_ptid);
85ad3aaf 6265 else
7aabaf9d
SM
6266 remote_thr = get_remote_thread_info (ptid);
6267
85ad3aaf
PA
6268 remote_thr->last_resume_step = step;
6269 remote_thr->last_resume_sig = siggnal;
6270 return;
6271 }
6272
722247f1
YQ
6273 /* In all-stop, we can't mark REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN
6274 (explained in remote-notif.c:handle_notification) so
6275 remote_notif_process is not called. We need find a place where
6276 it is safe to start a 'vNotif' sequence. It is good to do it
6277 before resuming inferior, because inferior was stopped and no RSP
6278 traffic at that moment. */
6efcd9a8 6279 if (!target_is_non_stop_p ())
5965e028 6280 remote_notif_process (rs->notif_state, &notif_client_stop);
722247f1 6281
f6ac5f3d 6282 rs->last_resume_exec_dir = ::execution_direction;
3a00c802 6283
7b68ffbb
PA
6284 /* Prefer vCont, and fallback to s/c/S/C, which use Hc. */
6285 if (!remote_resume_with_vcont (ptid, step, siggnal))
6b8edb51 6286 remote_resume_with_hc (ptid, step, siggnal);
43ff13b4 6287
2acceee2 6288 /* We are about to start executing the inferior, let's register it
0df8b418
MS
6289 with the event loop. NOTE: this is the one place where all the
6290 execution commands end up. We could alternatively do this in each
23860348 6291 of the execution commands in infcmd.c. */
2acceee2
JM
6292 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
6293 into infcmd.c in order to allow inferior function calls to work
23860348 6294 NOT asynchronously. */
362646f5 6295 if (target_can_async_p ())
6a3753b3 6296 target_async (1);
e24a49d8
PA
6297
6298 /* We've just told the target to resume. The remote server will
6299 wait for the inferior to stop, and then send a stop reply. In
6300 the mean time, we can't start another command/query ourselves
74531fed
PA
6301 because the stub wouldn't be ready to process it. This applies
6302 only to the base all-stop protocol, however. In non-stop (which
6303 only supports vCont), the stub replies with an "OK", and is
6304 immediate able to process further serial input. */
6efcd9a8 6305 if (!target_is_non_stop_p ())
74531fed 6306 rs->waiting_for_stop_reply = 1;
43ff13b4 6307}
85ad3aaf 6308
85ad3aaf
PA
6309static int is_pending_fork_parent_thread (struct thread_info *thread);
6310
6311/* Private per-inferior info for target remote processes. */
6312
089354bb 6313struct remote_inferior : public private_inferior
85ad3aaf
PA
6314{
6315 /* Whether we can send a wildcard vCont for this process. */
089354bb 6316 bool may_wildcard_vcont = true;
85ad3aaf
PA
6317};
6318
089354bb
SM
6319/* Get the remote private inferior data associated to INF. */
6320
6321static remote_inferior *
6322get_remote_inferior (inferior *inf)
6323{
6324 if (inf->priv == NULL)
6325 inf->priv.reset (new remote_inferior);
6326
6327 return static_cast<remote_inferior *> (inf->priv.get ());
6328}
6329
f5db4863 6330/* Class used to track the construction of a vCont packet in the
85ad3aaf
PA
6331 outgoing packet buffer. This is used to send multiple vCont
6332 packets if we have more actions than would fit a single packet. */
6333
f5db4863 6334class vcont_builder
85ad3aaf 6335{
f5db4863 6336public:
6b8edb51
PA
6337 explicit vcont_builder (remote_target *remote)
6338 : m_remote (remote)
f5db4863
PA
6339 {
6340 restart ();
6341 }
6342
6343 void flush ();
6344 void push_action (ptid_t ptid, bool step, gdb_signal siggnal);
6345
6346private:
6347 void restart ();
6348
6b8edb51
PA
6349 /* The remote target. */
6350 remote_target *m_remote;
6351
85ad3aaf
PA
6352 /* Pointer to the first action. P points here if no action has been
6353 appended yet. */
f5db4863 6354 char *m_first_action;
85ad3aaf
PA
6355
6356 /* Where the next action will be appended. */
f5db4863 6357 char *m_p;
85ad3aaf
PA
6358
6359 /* The end of the buffer. Must never write past this. */
f5db4863 6360 char *m_endp;
85ad3aaf
PA
6361};
6362
6363/* Prepare the outgoing buffer for a new vCont packet. */
6364
f5db4863
PA
6365void
6366vcont_builder::restart ()
85ad3aaf 6367{
6b8edb51 6368 struct remote_state *rs = m_remote->get_remote_state ();
85ad3aaf 6369
f5db4863 6370 m_p = rs->buf;
6b8edb51 6371 m_endp = rs->buf + m_remote->get_remote_packet_size ();
f5db4863
PA
6372 m_p += xsnprintf (m_p, m_endp - m_p, "vCont");
6373 m_first_action = m_p;
85ad3aaf
PA
6374}
6375
6376/* If the vCont packet being built has any action, send it to the
6377 remote end. */
6378
f5db4863
PA
6379void
6380vcont_builder::flush ()
85ad3aaf
PA
6381{
6382 struct remote_state *rs;
6383
f5db4863 6384 if (m_p == m_first_action)
85ad3aaf
PA
6385 return;
6386
6b8edb51
PA
6387 rs = m_remote->get_remote_state ();
6388 m_remote->putpkt (rs->buf);
6389 m_remote->getpkt (&rs->buf, &rs->buf_size, 0);
85ad3aaf
PA
6390 if (strcmp (rs->buf, "OK") != 0)
6391 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf);
6392}
6393
6394/* The largest action is range-stepping, with its two addresses. This
6395 is more than sufficient. If a new, bigger action is created, it'll
6396 quickly trigger a failed assertion in append_resumption (and we'll
6397 just bump this). */
6398#define MAX_ACTION_SIZE 200
6399
6400/* Append a new vCont action in the outgoing packet being built. If
6401 the action doesn't fit the packet along with previous actions, push
6402 what we've got so far to the remote end and start over a new vCont
6403 packet (with the new action). */
6404
f5db4863
PA
6405void
6406vcont_builder::push_action (ptid_t ptid, bool step, gdb_signal siggnal)
85ad3aaf
PA
6407{
6408 char buf[MAX_ACTION_SIZE + 1];
85ad3aaf 6409
6b8edb51
PA
6410 char *endp = m_remote->append_resumption (buf, buf + sizeof (buf),
6411 ptid, step, siggnal);
85ad3aaf
PA
6412
6413 /* Check whether this new action would fit in the vCont packet along
6414 with previous actions. If not, send what we've got so far and
6415 start a new vCont packet. */
f5db4863
PA
6416 size_t rsize = endp - buf;
6417 if (rsize > m_endp - m_p)
85ad3aaf 6418 {
f5db4863
PA
6419 flush ();
6420 restart ();
85ad3aaf
PA
6421
6422 /* Should now fit. */
f5db4863 6423 gdb_assert (rsize <= m_endp - m_p);
85ad3aaf
PA
6424 }
6425
f5db4863
PA
6426 memcpy (m_p, buf, rsize);
6427 m_p += rsize;
6428 *m_p = '\0';
85ad3aaf
PA
6429}
6430
6431/* to_commit_resume implementation. */
6432
f6ac5f3d
PA
6433void
6434remote_target::commit_resume ()
85ad3aaf 6435{
85ad3aaf
PA
6436 int any_process_wildcard;
6437 int may_global_wildcard_vcont;
85ad3aaf
PA
6438
6439 /* If connected in all-stop mode, we'd send the remote resume
6440 request directly from remote_resume. Likewise if
6441 reverse-debugging, as there are no defined vCont actions for
6442 reverse execution. */
f6ac5f3d 6443 if (!target_is_non_stop_p () || ::execution_direction == EXEC_REVERSE)
85ad3aaf
PA
6444 return;
6445
6446 /* Try to send wildcard actions ("vCont;c" or "vCont;c:pPID.-1")
6447 instead of resuming all threads of each process individually.
6448 However, if any thread of a process must remain halted, we can't
6449 send wildcard resumes and must send one action per thread.
6450
6451 Care must be taken to not resume threads/processes the server
6452 side already told us are stopped, but the core doesn't know about
6453 yet, because the events are still in the vStopped notification
6454 queue. For example:
6455
6456 #1 => vCont s:p1.1;c
6457 #2 <= OK
6458 #3 <= %Stopped T05 p1.1
6459 #4 => vStopped
6460 #5 <= T05 p1.2
6461 #6 => vStopped
6462 #7 <= OK
6463 #8 (infrun handles the stop for p1.1 and continues stepping)
6464 #9 => vCont s:p1.1;c
6465
6466 The last vCont above would resume thread p1.2 by mistake, because
6467 the server has no idea that the event for p1.2 had not been
6468 handled yet.
6469
6470 The server side must similarly ignore resume actions for the
6471 thread that has a pending %Stopped notification (and any other
6472 threads with events pending), until GDB acks the notification
6473 with vStopped. Otherwise, e.g., the following case is
6474 mishandled:
6475
6476 #1 => g (or any other packet)
6477 #2 <= [registers]
6478 #3 <= %Stopped T05 p1.2
6479 #4 => vCont s:p1.1;c
6480 #5 <= OK
6481
6482 Above, the server must not resume thread p1.2. GDB can't know
6483 that p1.2 stopped until it acks the %Stopped notification, and
6484 since from GDB's perspective all threads should be running, it
6485 sends a "c" action.
6486
6487 Finally, special care must also be given to handling fork/vfork
6488 events. A (v)fork event actually tells us that two processes
6489 stopped -- the parent and the child. Until we follow the fork,
6490 we must not resume the child. Therefore, if we have a pending
6491 fork follow, we must not send a global wildcard resume action
6492 (vCont;c). We can still send process-wide wildcards though. */
6493
6494 /* Start by assuming a global wildcard (vCont;c) is possible. */
6495 may_global_wildcard_vcont = 1;
6496
6497 /* And assume every process is individually wildcard-able too. */
08036331 6498 for (inferior *inf : all_non_exited_inferiors ())
85ad3aaf 6499 {
089354bb
SM
6500 remote_inferior *priv = get_remote_inferior (inf);
6501
6502 priv->may_wildcard_vcont = true;
85ad3aaf
PA
6503 }
6504
6505 /* Check for any pending events (not reported or processed yet) and
6506 disable process and global wildcard resumes appropriately. */
6507 check_pending_events_prevent_wildcard_vcont (&may_global_wildcard_vcont);
6508
08036331 6509 for (thread_info *tp : all_non_exited_threads ())
85ad3aaf
PA
6510 {
6511 /* If a thread of a process is not meant to be resumed, then we
6512 can't wildcard that process. */
6513 if (!tp->executing)
6514 {
089354bb 6515 get_remote_inferior (tp->inf)->may_wildcard_vcont = false;
85ad3aaf
PA
6516
6517 /* And if we can't wildcard a process, we can't wildcard
6518 everything either. */
6519 may_global_wildcard_vcont = 0;
6520 continue;
6521 }
6522
6523 /* If a thread is the parent of an unfollowed fork, then we
6524 can't do a global wildcard, as that would resume the fork
6525 child. */
6526 if (is_pending_fork_parent_thread (tp))
6527 may_global_wildcard_vcont = 0;
6528 }
6529
6530 /* Now let's build the vCont packet(s). Actions must be appended
6531 from narrower to wider scopes (thread -> process -> global). If
6532 we end up with too many actions for a single packet vcont_builder
6533 flushes the current vCont packet to the remote side and starts a
6534 new one. */
6b8edb51 6535 struct vcont_builder vcont_builder (this);
85ad3aaf
PA
6536
6537 /* Threads first. */
08036331 6538 for (thread_info *tp : all_non_exited_threads ())
85ad3aaf 6539 {
7aabaf9d 6540 remote_thread_info *remote_thr = get_remote_thread_info (tp);
85ad3aaf
PA
6541
6542 if (!tp->executing || remote_thr->vcont_resumed)
6543 continue;
6544
6545 gdb_assert (!thread_is_in_step_over_chain (tp));
6546
6547 if (!remote_thr->last_resume_step
6548 && remote_thr->last_resume_sig == GDB_SIGNAL_0
089354bb 6549 && get_remote_inferior (tp->inf)->may_wildcard_vcont)
85ad3aaf
PA
6550 {
6551 /* We'll send a wildcard resume instead. */
6552 remote_thr->vcont_resumed = 1;
6553 continue;
6554 }
6555
f5db4863 6556 vcont_builder.push_action (tp->ptid,
85ad3aaf
PA
6557 remote_thr->last_resume_step,
6558 remote_thr->last_resume_sig);
6559 remote_thr->vcont_resumed = 1;
6560 }
6561
6562 /* Now check whether we can send any process-wide wildcard. This is
6563 to avoid sending a global wildcard in the case nothing is
6564 supposed to be resumed. */
6565 any_process_wildcard = 0;
6566
08036331 6567 for (inferior *inf : all_non_exited_inferiors ())
85ad3aaf 6568 {
089354bb 6569 if (get_remote_inferior (inf)->may_wildcard_vcont)
85ad3aaf
PA
6570 {
6571 any_process_wildcard = 1;
6572 break;
6573 }
6574 }
6575
6576 if (any_process_wildcard)
6577 {
6578 /* If all processes are wildcard-able, then send a single "c"
6579 action, otherwise, send an "all (-1) threads of process"
6580 continue action for each running process, if any. */
6581 if (may_global_wildcard_vcont)
6582 {
f5db4863
PA
6583 vcont_builder.push_action (minus_one_ptid,
6584 false, GDB_SIGNAL_0);
85ad3aaf
PA
6585 }
6586 else
6587 {
08036331 6588 for (inferior *inf : all_non_exited_inferiors ())
85ad3aaf 6589 {
089354bb 6590 if (get_remote_inferior (inf)->may_wildcard_vcont)
85ad3aaf 6591 {
f2907e49 6592 vcont_builder.push_action (ptid_t (inf->pid),
f5db4863 6593 false, GDB_SIGNAL_0);
85ad3aaf
PA
6594 }
6595 }
6596 }
6597 }
6598
f5db4863 6599 vcont_builder.flush ();
85ad3aaf
PA
6600}
6601
c906108c 6602\f
43ff13b4 6603
74531fed
PA
6604/* Non-stop version of target_stop. Uses `vCont;t' to stop a remote
6605 thread, all threads of a remote process, or all threads of all
6606 processes. */
6607
6b8edb51
PA
6608void
6609remote_target::remote_stop_ns (ptid_t ptid)
74531fed
PA
6610{
6611 struct remote_state *rs = get_remote_state ();
6612 char *p = rs->buf;
6613 char *endp = rs->buf + get_remote_packet_size ();
74531fed 6614
4082afcc 6615 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6b8edb51 6616 remote_vcont_probe ();
74531fed 6617
d458bd84 6618 if (!rs->supports_vCont.t)
74531fed
PA
6619 error (_("Remote server does not support stopping threads"));
6620
d7e15655 6621 if (ptid == minus_one_ptid
0e998d96 6622 || (!remote_multi_process_p (rs) && ptid.is_pid ()))
74531fed
PA
6623 p += xsnprintf (p, endp - p, "vCont;t");
6624 else
6625 {
6626 ptid_t nptid;
6627
74531fed
PA
6628 p += xsnprintf (p, endp - p, "vCont;t:");
6629
0e998d96 6630 if (ptid.is_pid ())
74531fed 6631 /* All (-1) threads of process. */
e99b03dc 6632 nptid = ptid_t (ptid.pid (), -1, 0);
74531fed
PA
6633 else
6634 {
6635 /* Small optimization: if we already have a stop reply for
6636 this thread, no use in telling the stub we want this
6637 stopped. */
6638 if (peek_stop_reply (ptid))
6639 return;
6640
6641 nptid = ptid;
6642 }
6643
a9cbf802 6644 write_ptid (p, endp, nptid);
74531fed
PA
6645 }
6646
6647 /* In non-stop, we get an immediate OK reply. The stop reply will
6648 come in asynchronously by notification. */
6649 putpkt (rs->buf);
6650 getpkt (&rs->buf, &rs->buf_size, 0);
6651 if (strcmp (rs->buf, "OK") != 0)
6652 error (_("Stopping %s failed: %s"), target_pid_to_str (ptid), rs->buf);
6653}
6654
bfedc46a
PA
6655/* All-stop version of target_interrupt. Sends a break or a ^C to
6656 interrupt the remote target. It is undefined which thread of which
6657 process reports the interrupt. */
74531fed 6658
6b8edb51
PA
6659void
6660remote_target::remote_interrupt_as ()
74531fed
PA
6661{
6662 struct remote_state *rs = get_remote_state ();
6663
3a29589a
DJ
6664 rs->ctrlc_pending_p = 1;
6665
74531fed
PA
6666 /* If the inferior is stopped already, but the core didn't know
6667 about it yet, just ignore the request. The cached wait status
6668 will be collected in remote_wait. */
6669 if (rs->cached_wait_status)
6670 return;
6671
9a7071a8
JB
6672 /* Send interrupt_sequence to remote target. */
6673 send_interrupt_sequence ();
74531fed
PA
6674}
6675
de979965
PA
6676/* Non-stop version of target_interrupt. Uses `vCtrlC' to interrupt
6677 the remote target. It is undefined which thread of which process
e42de8c7
PA
6678 reports the interrupt. Throws an error if the packet is not
6679 supported by the server. */
de979965 6680
6b8edb51
PA
6681void
6682remote_target::remote_interrupt_ns ()
de979965
PA
6683{
6684 struct remote_state *rs = get_remote_state ();
6685 char *p = rs->buf;
6686 char *endp = rs->buf + get_remote_packet_size ();
6687
6688 xsnprintf (p, endp - p, "vCtrlC");
6689
6690 /* In non-stop, we get an immediate OK reply. The stop reply will
6691 come in asynchronously by notification. */
6692 putpkt (rs->buf);
6693 getpkt (&rs->buf, &rs->buf_size, 0);
6694
6695 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCtrlC]))
6696 {
6697 case PACKET_OK:
6698 break;
6699 case PACKET_UNKNOWN:
e42de8c7 6700 error (_("No support for interrupting the remote target."));
de979965
PA
6701 case PACKET_ERROR:
6702 error (_("Interrupting target failed: %s"), rs->buf);
6703 }
de979965
PA
6704}
6705
bfedc46a 6706/* Implement the to_stop function for the remote targets. */
74531fed 6707
f6ac5f3d
PA
6708void
6709remote_target::stop (ptid_t ptid)
c906108c 6710{
7a292a7a 6711 if (remote_debug)
0f71a2f6 6712 fprintf_unfiltered (gdb_stdlog, "remote_stop called\n");
c906108c 6713
6efcd9a8 6714 if (target_is_non_stop_p ())
74531fed 6715 remote_stop_ns (ptid);
c906108c 6716 else
bfedc46a
PA
6717 {
6718 /* We don't currently have a way to transparently pause the
6719 remote target in all-stop mode. Interrupt it instead. */
de979965 6720 remote_interrupt_as ();
bfedc46a
PA
6721 }
6722}
6723
6724/* Implement the to_interrupt function for the remote targets. */
6725
f6ac5f3d
PA
6726void
6727remote_target::interrupt ()
bfedc46a
PA
6728{
6729 if (remote_debug)
6730 fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n");
6731
e42de8c7
PA
6732 if (target_is_non_stop_p ())
6733 remote_interrupt_ns ();
bfedc46a 6734 else
e42de8c7 6735 remote_interrupt_as ();
c906108c
SS
6736}
6737
93692b58
PA
6738/* Implement the to_pass_ctrlc function for the remote targets. */
6739
f6ac5f3d
PA
6740void
6741remote_target::pass_ctrlc ()
93692b58
PA
6742{
6743 struct remote_state *rs = get_remote_state ();
6744
6745 if (remote_debug)
6746 fprintf_unfiltered (gdb_stdlog, "remote_pass_ctrlc called\n");
6747
6748 /* If we're starting up, we're not fully synced yet. Quit
6749 immediately. */
6750 if (rs->starting_up)
6751 quit ();
6752 /* If ^C has already been sent once, offer to disconnect. */
6753 else if (rs->ctrlc_pending_p)
6754 interrupt_query ();
6755 else
e671cd59 6756 target_interrupt ();
93692b58
PA
6757}
6758
c906108c
SS
6759/* Ask the user what to do when an interrupt is received. */
6760
6b8edb51
PA
6761void
6762remote_target::interrupt_query ()
c906108c 6763{
abc56d60 6764 struct remote_state *rs = get_remote_state ();
c906108c 6765
abc56d60 6766 if (rs->waiting_for_stop_reply && rs->ctrlc_pending_p)
74531fed 6767 {
abc56d60
PA
6768 if (query (_("The target is not responding to interrupt requests.\n"
6769 "Stop debugging it? ")))
74531fed 6770 {
78a095c3 6771 remote_unpush_target ();
abc56d60 6772 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
74531fed
PA
6773 }
6774 }
abc56d60
PA
6775 else
6776 {
6777 if (query (_("Interrupted while waiting for the program.\n"
6778 "Give up waiting? ")))
6779 quit ();
6780 }
c906108c
SS
6781}
6782
6426a772
JM
6783/* Enable/disable target terminal ownership. Most targets can use
6784 terminal groups to control terminal ownership. Remote targets are
6785 different in that explicit transfer of ownership to/from GDB/target
23860348 6786 is required. */
6426a772 6787
f6ac5f3d
PA
6788void
6789remote_target::terminal_inferior ()
6426a772 6790{
6426a772
JM
6791 /* NOTE: At this point we could also register our selves as the
6792 recipient of all input. Any characters typed could then be
23860348 6793 passed on down to the target. */
6426a772
JM
6794}
6795
f6ac5f3d
PA
6796void
6797remote_target::terminal_ours ()
6426a772 6798{
6426a772
JM
6799}
6800
176a6961 6801static void
05be00a8 6802remote_console_output (const char *msg)
c906108c 6803{
05be00a8 6804 const char *p;
c906108c 6805
c5aa993b 6806 for (p = msg; p[0] && p[1]; p += 2)
c906108c
SS
6807 {
6808 char tb[2];
6809 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
a744cf53 6810
c906108c
SS
6811 tb[0] = c;
6812 tb[1] = 0;
43ff13b4 6813 fputs_unfiltered (tb, gdb_stdtarg);
c906108c 6814 }
00db5b94
PA
6815 gdb_flush (gdb_stdtarg);
6816}
74531fed 6817
74531fed
PA
6818DEF_VEC_O(cached_reg_t);
6819
722247f1 6820typedef struct stop_reply
74531fed 6821{
722247f1 6822 struct notif_event base;
74531fed 6823
722247f1 6824 /* The identifier of the thread about this event */
74531fed
PA
6825 ptid_t ptid;
6826
340e3c99 6827 /* The remote state this event is associated with. When the remote
bcc75809
YQ
6828 connection, represented by a remote_state object, is closed,
6829 all the associated stop_reply events should be released. */
6830 struct remote_state *rs;
6831
74531fed
PA
6832 struct target_waitstatus ws;
6833
5cd63fda
PA
6834 /* The architecture associated with the expedited registers. */
6835 gdbarch *arch;
6836
15148d6a
PA
6837 /* Expedited registers. This makes remote debugging a bit more
6838 efficient for those targets that provide critical registers as
6839 part of their normal status mechanism (as another roundtrip to
6840 fetch them is avoided). */
74531fed
PA
6841 VEC(cached_reg_t) *regcache;
6842
f7e6eed5
PA
6843 enum target_stop_reason stop_reason;
6844
74531fed
PA
6845 CORE_ADDR watch_data_address;
6846
dc146f7c 6847 int core;
722247f1 6848} *stop_reply_p;
a744cf53 6849
74531fed
PA
6850static void
6851stop_reply_xfree (struct stop_reply *r)
6852{
f48ff2a7 6853 notif_event_xfree ((struct notif_event *) r);
c906108c
SS
6854}
6855
221e1a37
PA
6856/* Return the length of the stop reply queue. */
6857
6b8edb51
PA
6858int
6859remote_target::stop_reply_queue_length ()
221e1a37 6860{
6b8edb51 6861 remote_state *rs = get_remote_state ();
953edf2b 6862 return rs->stop_reply_queue.size ();
221e1a37
PA
6863}
6864
6b8edb51
PA
6865void
6866remote_notif_stop_parse (remote_target *remote,
bb277751 6867 struct notif_client *self, const char *buf,
722247f1
YQ
6868 struct notif_event *event)
6869{
6b8edb51 6870 remote->remote_parse_stop_reply (buf, (struct stop_reply *) event);
722247f1
YQ
6871}
6872
6873static void
6b8edb51 6874remote_notif_stop_ack (remote_target *remote,
bb277751 6875 struct notif_client *self, const char *buf,
722247f1
YQ
6876 struct notif_event *event)
6877{
6878 struct stop_reply *stop_reply = (struct stop_reply *) event;
6879
6880 /* acknowledge */
6b8edb51 6881 putpkt (remote, self->ack_command);
722247f1
YQ
6882
6883 if (stop_reply->ws.kind == TARGET_WAITKIND_IGNORE)
6b8edb51 6884 {
722247f1
YQ
6885 /* We got an unknown stop reply. */
6886 error (_("Unknown stop reply"));
6b8edb51 6887 }
722247f1 6888
6b8edb51 6889 remote->push_stop_reply (stop_reply);
722247f1
YQ
6890}
6891
6892static int
6b8edb51
PA
6893remote_notif_stop_can_get_pending_events (remote_target *remote,
6894 struct notif_client *self)
722247f1
YQ
6895{
6896 /* We can't get pending events in remote_notif_process for
6897 notification stop, and we have to do this in remote_wait_ns
6898 instead. If we fetch all queued events from stub, remote stub
6899 may exit and we have no chance to process them back in
6900 remote_wait_ns. */
6b8edb51
PA
6901 remote_state *rs = remote->get_remote_state ();
6902 mark_async_event_handler (rs->remote_async_inferior_event_token);
722247f1
YQ
6903 return 0;
6904}
6905
6906static void
6907stop_reply_dtr (struct notif_event *event)
6908{
6909 struct stop_reply *r = (struct stop_reply *) event;
d1dff226
AH
6910 cached_reg_t *reg;
6911 int ix;
6912
6913 for (ix = 0;
6914 VEC_iterate (cached_reg_t, r->regcache, ix, reg);
6915 ix++)
6916 xfree (reg->data);
722247f1
YQ
6917
6918 VEC_free (cached_reg_t, r->regcache);
6919}
6920
6921static struct notif_event *
6922remote_notif_stop_alloc_reply (void)
6923{
8d749320
SM
6924 /* We cast to a pointer to the "base class". */
6925 struct notif_event *r = (struct notif_event *) XNEW (struct stop_reply);
722247f1
YQ
6926
6927 r->dtr = stop_reply_dtr;
6928
6929 return r;
6930}
6931
6932/* A client of notification Stop. */
6933
6934struct notif_client notif_client_stop =
6935{
6936 "Stop",
6937 "vStopped",
6938 remote_notif_stop_parse,
6939 remote_notif_stop_ack,
6940 remote_notif_stop_can_get_pending_events,
6941 remote_notif_stop_alloc_reply,
f48ff2a7 6942 REMOTE_NOTIF_STOP,
722247f1
YQ
6943};
6944
85ad3aaf 6945/* Determine if THREAD_PTID is a pending fork parent thread. ARG contains
cbb8991c
DB
6946 the pid of the process that owns the threads we want to check, or
6947 -1 if we want to check all threads. */
6948
6949static int
6950is_pending_fork_parent (struct target_waitstatus *ws, int event_pid,
6951 ptid_t thread_ptid)
6952{
6953 if (ws->kind == TARGET_WAITKIND_FORKED
6954 || ws->kind == TARGET_WAITKIND_VFORKED)
6955 {
e99b03dc 6956 if (event_pid == -1 || event_pid == thread_ptid.pid ())
cbb8991c
DB
6957 return 1;
6958 }
6959
6960 return 0;
6961}
6962
85ad3aaf
PA
6963/* Return the thread's pending status used to determine whether the
6964 thread is a fork parent stopped at a fork event. */
6965
6966static struct target_waitstatus *
6967thread_pending_fork_status (struct thread_info *thread)
6968{
6969 if (thread->suspend.waitstatus_pending_p)
6970 return &thread->suspend.waitstatus;
6971 else
6972 return &thread->pending_follow;
6973}
6974
6975/* Determine if THREAD is a pending fork parent thread. */
6976
6977static int
6978is_pending_fork_parent_thread (struct thread_info *thread)
6979{
6980 struct target_waitstatus *ws = thread_pending_fork_status (thread);
6981 int pid = -1;
6982
6983 return is_pending_fork_parent (ws, pid, thread->ptid);
6984}
6985
cbb8991c
DB
6986/* If CONTEXT contains any fork child threads that have not been
6987 reported yet, remove them from the CONTEXT list. If such a
6988 thread exists it is because we are stopped at a fork catchpoint
6989 and have not yet called follow_fork, which will set up the
6990 host-side data structures for the new process. */
6991
6b8edb51
PA
6992void
6993remote_target::remove_new_fork_children (threads_listing_context *context)
cbb8991c 6994{
cbb8991c
DB
6995 int pid = -1;
6996 struct notif_client *notif = &notif_client_stop;
cbb8991c
DB
6997
6998 /* For any threads stopped at a fork event, remove the corresponding
6999 fork child threads from the CONTEXT list. */
08036331 7000 for (thread_info *thread : all_non_exited_threads ())
cbb8991c 7001 {
85ad3aaf 7002 struct target_waitstatus *ws = thread_pending_fork_status (thread);
cbb8991c
DB
7003
7004 if (is_pending_fork_parent (ws, pid, thread->ptid))
21fe1c75 7005 context->remove_thread (ws->value.related_pid);
cbb8991c
DB
7006 }
7007
7008 /* Check for any pending fork events (not reported or processed yet)
7009 in process PID and remove those fork child threads from the
7010 CONTEXT list as well. */
7011 remote_notif_get_pending_events (notif);
953edf2b
TT
7012 for (auto &event : get_remote_state ()->stop_reply_queue)
7013 if (event->ws.kind == TARGET_WAITKIND_FORKED
7014 || event->ws.kind == TARGET_WAITKIND_VFORKED
7015 || event->ws.kind == TARGET_WAITKIND_THREAD_EXITED)
7016 context->remove_thread (event->ws.value.related_pid);
85ad3aaf
PA
7017}
7018
7019/* Check whether any event pending in the vStopped queue would prevent
7020 a global or process wildcard vCont action. Clear
7021 *may_global_wildcard if we can't do a global wildcard (vCont;c),
7022 and clear the event inferior's may_wildcard_vcont flag if we can't
7023 do a process-wide wildcard resume (vCont;c:pPID.-1). */
7024
6b8edb51
PA
7025void
7026remote_target::check_pending_events_prevent_wildcard_vcont
7027 (int *may_global_wildcard)
85ad3aaf
PA
7028{
7029 struct notif_client *notif = &notif_client_stop;
7030
7031 remote_notif_get_pending_events (notif);
953edf2b
TT
7032 for (auto &event : get_remote_state ()->stop_reply_queue)
7033 {
7034 if (event->ws.kind == TARGET_WAITKIND_NO_RESUMED
7035 || event->ws.kind == TARGET_WAITKIND_NO_HISTORY)
7036 continue;
85ad3aaf 7037
953edf2b
TT
7038 if (event->ws.kind == TARGET_WAITKIND_FORKED
7039 || event->ws.kind == TARGET_WAITKIND_VFORKED)
7040 *may_global_wildcard = 0;
722247f1 7041
953edf2b 7042 struct inferior *inf = find_inferior_ptid (event->ptid);
722247f1 7043
953edf2b
TT
7044 /* This may be the first time we heard about this process.
7045 Regardless, we must not do a global wildcard resume, otherwise
7046 we'd resume this process too. */
7047 *may_global_wildcard = 0;
7048 if (inf != NULL)
7049 get_remote_inferior (inf)->may_wildcard_vcont = false;
722247f1 7050 }
722247f1
YQ
7051}
7052
f48ff2a7 7053/* Discard all pending stop replies of inferior INF. */
c906108c 7054
6b8edb51
PA
7055void
7056remote_target::discard_pending_stop_replies (struct inferior *inf)
c906108c 7057{
f48ff2a7
YQ
7058 struct stop_reply *reply;
7059 struct remote_state *rs = get_remote_state ();
7060 struct remote_notif_state *rns = rs->notif_state;
7061
7062 /* This function can be notified when an inferior exists. When the
7063 target is not remote, the notification state is NULL. */
7064 if (rs->remote_desc == NULL)
7065 return;
7066
7067 reply = (struct stop_reply *) rns->pending_event[notif_client_stop.id];
c906108c 7068
74531fed 7069 /* Discard the in-flight notification. */
e99b03dc 7070 if (reply != NULL && reply->ptid.pid () == inf->pid)
74531fed 7071 {
722247f1 7072 stop_reply_xfree (reply);
f48ff2a7 7073 rns->pending_event[notif_client_stop.id] = NULL;
74531fed 7074 }
c906108c 7075
74531fed
PA
7076 /* Discard the stop replies we have already pulled with
7077 vStopped. */
953edf2b
TT
7078 auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7079 rs->stop_reply_queue.end (),
7080 [=] (const stop_reply_up &event)
7081 {
7082 return event->ptid.pid () == inf->pid;
7083 });
7084 rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
bcc75809
YQ
7085}
7086
7087/* Discard the stop replies for RS in stop_reply_queue. */
f48ff2a7 7088
6b8edb51
PA
7089void
7090remote_target::discard_pending_stop_replies_in_queue ()
f48ff2a7 7091{
6b8edb51 7092 remote_state *rs = get_remote_state ();
f48ff2a7 7093
f48ff2a7
YQ
7094 /* Discard the stop replies we have already pulled with
7095 vStopped. */
953edf2b
TT
7096 auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7097 rs->stop_reply_queue.end (),
7098 [=] (const stop_reply_up &event)
7099 {
7100 return event->rs == rs;
7101 });
7102 rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
74531fed 7103}
43ff13b4 7104
722247f1
YQ
7105/* Remove the first reply in 'stop_reply_queue' which matches
7106 PTID. */
2e9f7625 7107
6b8edb51
PA
7108struct stop_reply *
7109remote_target::remote_notif_remove_queued_reply (ptid_t ptid)
74531fed 7110{
953edf2b 7111 remote_state *rs = get_remote_state ();
722247f1 7112
953edf2b
TT
7113 auto iter = std::find_if (rs->stop_reply_queue.begin (),
7114 rs->stop_reply_queue.end (),
7115 [=] (const stop_reply_up &event)
7116 {
7117 return event->ptid.matches (ptid);
7118 });
7119 struct stop_reply *result;
7120 if (iter == rs->stop_reply_queue.end ())
7121 result = nullptr;
7122 else
7123 {
7124 result = iter->release ();
7125 rs->stop_reply_queue.erase (iter);
7126 }
722247f1 7127
722247f1
YQ
7128 if (notif_debug)
7129 fprintf_unfiltered (gdb_stdlog,
7130 "notif: discard queued event: 'Stop' in %s\n",
7131 target_pid_to_str (ptid));
a744cf53 7132
953edf2b 7133 return result;
74531fed 7134}
75c99385 7135
74531fed
PA
7136/* Look for a queued stop reply belonging to PTID. If one is found,
7137 remove it from the queue, and return it. Returns NULL if none is
7138 found. If there are still queued events left to process, tell the
7139 event loop to get back to target_wait soon. */
e24a49d8 7140
6b8edb51
PA
7141struct stop_reply *
7142remote_target::queued_stop_reply (ptid_t ptid)
74531fed 7143{
953edf2b 7144 remote_state *rs = get_remote_state ();
722247f1 7145 struct stop_reply *r = remote_notif_remove_queued_reply (ptid);
74531fed 7146
953edf2b 7147 if (!rs->stop_reply_queue.empty ())
6b8edb51 7148 {
6b8edb51
PA
7149 /* There's still at least an event left. */
7150 mark_async_event_handler (rs->remote_async_inferior_event_token);
7151 }
74531fed 7152
722247f1 7153 return r;
74531fed
PA
7154}
7155
7156/* Push a fully parsed stop reply in the stop reply queue. Since we
7157 know that we now have at least one queued event left to pass to the
7158 core side, tell the event loop to get back to target_wait soon. */
7159
6b8edb51
PA
7160void
7161remote_target::push_stop_reply (struct stop_reply *new_event)
74531fed 7162{
6b8edb51 7163 remote_state *rs = get_remote_state ();
953edf2b 7164 rs->stop_reply_queue.push_back (stop_reply_up (new_event));
74531fed 7165
722247f1
YQ
7166 if (notif_debug)
7167 fprintf_unfiltered (gdb_stdlog,
7168 "notif: push 'Stop' %s to queue %d\n",
7169 target_pid_to_str (new_event->ptid),
953edf2b 7170 int (rs->stop_reply_queue.size ()));
74531fed 7171
6b8edb51 7172 mark_async_event_handler (rs->remote_async_inferior_event_token);
74531fed
PA
7173}
7174
7175/* Returns true if we have a stop reply for PTID. */
7176
6b8edb51
PA
7177int
7178remote_target::peek_stop_reply (ptid_t ptid)
74531fed 7179{
6b8edb51 7180 remote_state *rs = get_remote_state ();
953edf2b
TT
7181 for (auto &event : rs->stop_reply_queue)
7182 if (ptid == event->ptid
7183 && event->ws.kind == TARGET_WAITKIND_STOPPED)
7184 return 1;
7185 return 0;
74531fed
PA
7186}
7187
26d56a93
SL
7188/* Helper for remote_parse_stop_reply. Return nonzero if the substring
7189 starting with P and ending with PEND matches PREFIX. */
7190
7191static int
7192strprefix (const char *p, const char *pend, const char *prefix)
7193{
7194 for ( ; p < pend; p++, prefix++)
7195 if (*p != *prefix)
7196 return 0;
7197 return *prefix == '\0';
7198}
7199
74531fed
PA
7200/* Parse the stop reply in BUF. Either the function succeeds, and the
7201 result is stored in EVENT, or throws an error. */
7202
6b8edb51 7203void
bb277751 7204remote_target::remote_parse_stop_reply (const char *buf, stop_reply *event)
74531fed 7205{
5cd63fda 7206 remote_arch_state *rsa = NULL;
74531fed 7207 ULONGEST addr;
256642e8 7208 const char *p;
94585166 7209 int skipregs = 0;
74531fed
PA
7210
7211 event->ptid = null_ptid;
bcc75809 7212 event->rs = get_remote_state ();
74531fed
PA
7213 event->ws.kind = TARGET_WAITKIND_IGNORE;
7214 event->ws.value.integer = 0;
f7e6eed5 7215 event->stop_reason = TARGET_STOPPED_BY_NO_REASON;
74531fed 7216 event->regcache = NULL;
dc146f7c 7217 event->core = -1;
74531fed
PA
7218
7219 switch (buf[0])
7220 {
7221 case 'T': /* Status with PC, SP, FP, ... */
cea39f65
MS
7222 /* Expedited reply, containing Signal, {regno, reg} repeat. */
7223 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
7224 ss = signal number
7225 n... = register number
7226 r... = register contents
7227 */
7228
7229 p = &buf[3]; /* after Txx */
7230 while (*p)
7231 {
256642e8 7232 const char *p1;
cea39f65 7233 int fieldsize;
43ff13b4 7234
1f10ba14
PA
7235 p1 = strchr (p, ':');
7236 if (p1 == NULL)
7237 error (_("Malformed packet(a) (missing colon): %s\n\
7238Packet: '%s'\n"),
7239 p, buf);
7240 if (p == p1)
7241 error (_("Malformed packet(a) (missing register number): %s\n\
7242Packet: '%s'\n"),
7243 p, buf);
3c3bea1c 7244
1f10ba14
PA
7245 /* Some "registers" are actually extended stop information.
7246 Note if you're adding a new entry here: GDB 7.9 and
7247 earlier assume that all register "numbers" that start
7248 with an hex digit are real register numbers. Make sure
7249 the server only sends such a packet if it knows the
7250 client understands it. */
c8e38a49 7251
26d56a93 7252 if (strprefix (p, p1, "thread"))
1f10ba14 7253 event->ptid = read_ptid (++p1, &p);
82075af2
JS
7254 else if (strprefix (p, p1, "syscall_entry"))
7255 {
7256 ULONGEST sysno;
7257
7258 event->ws.kind = TARGET_WAITKIND_SYSCALL_ENTRY;
7259 p = unpack_varlen_hex (++p1, &sysno);
7260 event->ws.value.syscall_number = (int) sysno;
7261 }
7262 else if (strprefix (p, p1, "syscall_return"))
7263 {
7264 ULONGEST sysno;
7265
7266 event->ws.kind = TARGET_WAITKIND_SYSCALL_RETURN;
7267 p = unpack_varlen_hex (++p1, &sysno);
7268 event->ws.value.syscall_number = (int) sysno;
7269 }
26d56a93
SL
7270 else if (strprefix (p, p1, "watch")
7271 || strprefix (p, p1, "rwatch")
7272 || strprefix (p, p1, "awatch"))
cea39f65 7273 {
f7e6eed5 7274 event->stop_reason = TARGET_STOPPED_BY_WATCHPOINT;
1f10ba14
PA
7275 p = unpack_varlen_hex (++p1, &addr);
7276 event->watch_data_address = (CORE_ADDR) addr;
cea39f65 7277 }
26d56a93 7278 else if (strprefix (p, p1, "swbreak"))
f7e6eed5
PA
7279 {
7280 event->stop_reason = TARGET_STOPPED_BY_SW_BREAKPOINT;
7281
7282 /* Make sure the stub doesn't forget to indicate support
7283 with qSupported. */
7284 if (packet_support (PACKET_swbreak_feature) != PACKET_ENABLE)
7285 error (_("Unexpected swbreak stop reason"));
7286
7287 /* The value part is documented as "must be empty",
7288 though we ignore it, in case we ever decide to make
7289 use of it in a backward compatible way. */
8424cc97 7290 p = strchrnul (p1 + 1, ';');
f7e6eed5 7291 }
26d56a93 7292 else if (strprefix (p, p1, "hwbreak"))
f7e6eed5
PA
7293 {
7294 event->stop_reason = TARGET_STOPPED_BY_HW_BREAKPOINT;
7295
7296 /* Make sure the stub doesn't forget to indicate support
7297 with qSupported. */
7298 if (packet_support (PACKET_hwbreak_feature) != PACKET_ENABLE)
7299 error (_("Unexpected hwbreak stop reason"));
7300
7301 /* See above. */
8424cc97 7302 p = strchrnul (p1 + 1, ';');
f7e6eed5 7303 }
26d56a93 7304 else if (strprefix (p, p1, "library"))
cea39f65 7305 {
1f10ba14 7306 event->ws.kind = TARGET_WAITKIND_LOADED;
8424cc97 7307 p = strchrnul (p1 + 1, ';');
1f10ba14 7308 }
26d56a93 7309 else if (strprefix (p, p1, "replaylog"))
1f10ba14
PA
7310 {
7311 event->ws.kind = TARGET_WAITKIND_NO_HISTORY;
7312 /* p1 will indicate "begin" or "end", but it makes
7313 no difference for now, so ignore it. */
8424cc97 7314 p = strchrnul (p1 + 1, ';');
1f10ba14 7315 }
26d56a93 7316 else if (strprefix (p, p1, "core"))
1f10ba14
PA
7317 {
7318 ULONGEST c;
a744cf53 7319
1f10ba14
PA
7320 p = unpack_varlen_hex (++p1, &c);
7321 event->core = c;
cea39f65 7322 }
26d56a93 7323 else if (strprefix (p, p1, "fork"))
de0d863e
DB
7324 {
7325 event->ws.value.related_pid = read_ptid (++p1, &p);
7326 event->ws.kind = TARGET_WAITKIND_FORKED;
7327 }
26d56a93 7328 else if (strprefix (p, p1, "vfork"))
c269dbdb
DB
7329 {
7330 event->ws.value.related_pid = read_ptid (++p1, &p);
7331 event->ws.kind = TARGET_WAITKIND_VFORKED;
7332 }
26d56a93 7333 else if (strprefix (p, p1, "vforkdone"))
c269dbdb
DB
7334 {
7335 event->ws.kind = TARGET_WAITKIND_VFORK_DONE;
8424cc97 7336 p = strchrnul (p1 + 1, ';');
c269dbdb 7337 }
6ab24463 7338 else if (strprefix (p, p1, "exec"))
94585166
DB
7339 {
7340 ULONGEST ignored;
7341 char pathname[PATH_MAX];
7342 int pathlen;
7343
7344 /* Determine the length of the execd pathname. */
7345 p = unpack_varlen_hex (++p1, &ignored);
7346 pathlen = (p - p1) / 2;
7347
7348 /* Save the pathname for event reporting and for
7349 the next run command. */
7350 hex2bin (p1, (gdb_byte *) pathname, pathlen);
7351 pathname[pathlen] = '\0';
7352
7353 /* This is freed during event handling. */
7354 event->ws.value.execd_pathname = xstrdup (pathname);
7355 event->ws.kind = TARGET_WAITKIND_EXECD;
7356
7357 /* Skip the registers included in this packet, since
7358 they may be for an architecture different from the
7359 one used by the original program. */
7360 skipregs = 1;
7361 }
65706a29
PA
7362 else if (strprefix (p, p1, "create"))
7363 {
7364 event->ws.kind = TARGET_WAITKIND_THREAD_CREATED;
8424cc97 7365 p = strchrnul (p1 + 1, ';');
65706a29 7366 }
cea39f65
MS
7367 else
7368 {
1f10ba14 7369 ULONGEST pnum;
256642e8 7370 const char *p_temp;
1f10ba14 7371
94585166
DB
7372 if (skipregs)
7373 {
8424cc97 7374 p = strchrnul (p1 + 1, ';');
94585166
DB
7375 p++;
7376 continue;
7377 }
7378
1f10ba14
PA
7379 /* Maybe a real ``P'' register number. */
7380 p_temp = unpack_varlen_hex (p, &pnum);
7381 /* If the first invalid character is the colon, we got a
7382 register number. Otherwise, it's an unknown stop
7383 reason. */
7384 if (p_temp == p1)
7385 {
5cd63fda
PA
7386 /* If we haven't parsed the event's thread yet, find
7387 it now, in order to find the architecture of the
7388 reported expedited registers. */
7389 if (event->ptid == null_ptid)
7390 {
7391 const char *thr = strstr (p1 + 1, ";thread:");
7392 if (thr != NULL)
7393 event->ptid = read_ptid (thr + strlen (";thread:"),
7394 NULL);
7395 else
3cada740
PA
7396 {
7397 /* Either the current thread hasn't changed,
7398 or the inferior is not multi-threaded.
7399 The event must be for the thread we last
7400 set as (or learned as being) current. */
7401 event->ptid = event->rs->general_thread;
7402 }
5cd63fda
PA
7403 }
7404
7405 if (rsa == NULL)
7406 {
7407 inferior *inf = (event->ptid == null_ptid
7408 ? NULL
7409 : find_inferior_ptid (event->ptid));
7410 /* If this is the first time we learn anything
7411 about this process, skip the registers
7412 included in this packet, since we don't yet
7413 know which architecture to use to parse them.
7414 We'll determine the architecture later when
7415 we process the stop reply and retrieve the
7416 target description, via
7417 remote_notice_new_inferior ->
7418 post_create_inferior. */
7419 if (inf == NULL)
7420 {
7421 p = strchrnul (p1 + 1, ';');
7422 p++;
7423 continue;
7424 }
7425
7426 event->arch = inf->gdbarch;
9d6eea31 7427 rsa = event->rs->get_remote_arch_state (event->arch);
5cd63fda
PA
7428 }
7429
7430 packet_reg *reg
7431 = packet_reg_from_pnum (event->arch, rsa, pnum);
1f10ba14 7432 cached_reg_t cached_reg;
43ff13b4 7433
1f10ba14
PA
7434 if (reg == NULL)
7435 error (_("Remote sent bad register number %s: %s\n\
8a3fe4f8 7436Packet: '%s'\n"),
1f10ba14 7437 hex_string (pnum), p, buf);
c8e38a49 7438
1f10ba14 7439 cached_reg.num = reg->regnum;
d1dff226 7440 cached_reg.data = (gdb_byte *)
5cd63fda 7441 xmalloc (register_size (event->arch, reg->regnum));
4100683b 7442
1f10ba14
PA
7443 p = p1 + 1;
7444 fieldsize = hex2bin (p, cached_reg.data,
5cd63fda 7445 register_size (event->arch, reg->regnum));
1f10ba14 7446 p += 2 * fieldsize;
5cd63fda 7447 if (fieldsize < register_size (event->arch, reg->regnum))
1f10ba14 7448 warning (_("Remote reply is too short: %s"), buf);
74531fed 7449
1f10ba14
PA
7450 VEC_safe_push (cached_reg_t, event->regcache, &cached_reg);
7451 }
7452 else
7453 {
7454 /* Not a number. Silently skip unknown optional
7455 info. */
8424cc97 7456 p = strchrnul (p1 + 1, ';');
1f10ba14 7457 }
cea39f65 7458 }
c8e38a49 7459
cea39f65
MS
7460 if (*p != ';')
7461 error (_("Remote register badly formatted: %s\nhere: %s"),
7462 buf, p);
7463 ++p;
7464 }
5b5596ff
PA
7465
7466 if (event->ws.kind != TARGET_WAITKIND_IGNORE)
7467 break;
7468
c8e38a49
PA
7469 /* fall through */
7470 case 'S': /* Old style status, just signal only. */
3a09da41
PA
7471 {
7472 int sig;
7473
7474 event->ws.kind = TARGET_WAITKIND_STOPPED;
7475 sig = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
7476 if (GDB_SIGNAL_FIRST <= sig && sig < GDB_SIGNAL_LAST)
7477 event->ws.value.sig = (enum gdb_signal) sig;
7478 else
7479 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
7480 }
c8e38a49 7481 break;
65706a29
PA
7482 case 'w': /* Thread exited. */
7483 {
65706a29
PA
7484 ULONGEST value;
7485
7486 event->ws.kind = TARGET_WAITKIND_THREAD_EXITED;
7487 p = unpack_varlen_hex (&buf[1], &value);
7488 event->ws.value.integer = value;
7489 if (*p != ';')
7490 error (_("stop reply packet badly formatted: %s"), buf);
974eac9d 7491 event->ptid = read_ptid (++p, NULL);
65706a29
PA
7492 break;
7493 }
c8e38a49
PA
7494 case 'W': /* Target exited. */
7495 case 'X':
7496 {
c8e38a49
PA
7497 int pid;
7498 ULONGEST value;
82f73884 7499
c8e38a49
PA
7500 /* GDB used to accept only 2 hex chars here. Stubs should
7501 only send more if they detect GDB supports multi-process
7502 support. */
7503 p = unpack_varlen_hex (&buf[1], &value);
82f73884 7504
c8e38a49
PA
7505 if (buf[0] == 'W')
7506 {
7507 /* The remote process exited. */
74531fed
PA
7508 event->ws.kind = TARGET_WAITKIND_EXITED;
7509 event->ws.value.integer = value;
c8e38a49
PA
7510 }
7511 else
7512 {
7513 /* The remote process exited with a signal. */
74531fed 7514 event->ws.kind = TARGET_WAITKIND_SIGNALLED;
3a09da41
PA
7515 if (GDB_SIGNAL_FIRST <= value && value < GDB_SIGNAL_LAST)
7516 event->ws.value.sig = (enum gdb_signal) value;
7517 else
7518 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
c8e38a49 7519 }
82f73884 7520
c8e38a49 7521 /* If no process is specified, assume inferior_ptid. */
e99b03dc 7522 pid = inferior_ptid.pid ();
c8e38a49
PA
7523 if (*p == '\0')
7524 ;
7525 else if (*p == ';')
7526 {
7527 p++;
7528
0b24eb2d 7529 if (*p == '\0')
82f73884 7530 ;
61012eef 7531 else if (startswith (p, "process:"))
82f73884 7532 {
c8e38a49 7533 ULONGEST upid;
a744cf53 7534
c8e38a49
PA
7535 p += sizeof ("process:") - 1;
7536 unpack_varlen_hex (p, &upid);
7537 pid = upid;
82f73884
PA
7538 }
7539 else
7540 error (_("unknown stop reply packet: %s"), buf);
43ff13b4 7541 }
c8e38a49
PA
7542 else
7543 error (_("unknown stop reply packet: %s"), buf);
f2907e49 7544 event->ptid = ptid_t (pid);
74531fed
PA
7545 }
7546 break;
f2faf941
PA
7547 case 'N':
7548 event->ws.kind = TARGET_WAITKIND_NO_RESUMED;
7549 event->ptid = minus_one_ptid;
7550 break;
74531fed
PA
7551 }
7552
d7e15655 7553 if (target_is_non_stop_p () && event->ptid == null_ptid)
74531fed
PA
7554 error (_("No process or thread specified in stop reply: %s"), buf);
7555}
7556
722247f1
YQ
7557/* When the stub wants to tell GDB about a new notification reply, it
7558 sends a notification (%Stop, for example). Those can come it at
7559 any time, hence, we have to make sure that any pending
7560 putpkt/getpkt sequence we're making is finished, before querying
7561 the stub for more events with the corresponding ack command
7562 (vStopped, for example). E.g., if we started a vStopped sequence
7563 immediately upon receiving the notification, something like this
7564 could happen:
74531fed
PA
7565
7566 1.1) --> Hg 1
7567 1.2) <-- OK
7568 1.3) --> g
7569 1.4) <-- %Stop
7570 1.5) --> vStopped
7571 1.6) <-- (registers reply to step #1.3)
7572
7573 Obviously, the reply in step #1.6 would be unexpected to a vStopped
7574 query.
7575
796cb314 7576 To solve this, whenever we parse a %Stop notification successfully,
74531fed
PA
7577 we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
7578 doing whatever we were doing:
7579
7580 2.1) --> Hg 1
7581 2.2) <-- OK
7582 2.3) --> g
7583 2.4) <-- %Stop
7584 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
7585 2.5) <-- (registers reply to step #2.3)
7586
7587 Eventualy after step #2.5, we return to the event loop, which
7588 notices there's an event on the
7589 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
7590 associated callback --- the function below. At this point, we're
7591 always safe to start a vStopped sequence. :
7592
7593 2.6) --> vStopped
7594 2.7) <-- T05 thread:2
7595 2.8) --> vStopped
7596 2.9) --> OK
7597*/
7598
722247f1 7599void
6b8edb51 7600remote_target::remote_notif_get_pending_events (notif_client *nc)
74531fed
PA
7601{
7602 struct remote_state *rs = get_remote_state ();
74531fed 7603
f48ff2a7 7604 if (rs->notif_state->pending_event[nc->id] != NULL)
74531fed 7605 {
722247f1
YQ
7606 if (notif_debug)
7607 fprintf_unfiltered (gdb_stdlog,
7608 "notif: process: '%s' ack pending event\n",
7609 nc->name);
74531fed 7610
722247f1 7611 /* acknowledge */
6b8edb51 7612 nc->ack (this, nc, rs->buf, rs->notif_state->pending_event[nc->id]);
f48ff2a7 7613 rs->notif_state->pending_event[nc->id] = NULL;
74531fed
PA
7614
7615 while (1)
7616 {
7617 getpkt (&rs->buf, &rs->buf_size, 0);
7618 if (strcmp (rs->buf, "OK") == 0)
7619 break;
7620 else
6b8edb51 7621 remote_notif_ack (this, nc, rs->buf);
74531fed
PA
7622 }
7623 }
722247f1
YQ
7624 else
7625 {
7626 if (notif_debug)
7627 fprintf_unfiltered (gdb_stdlog,
7628 "notif: process: '%s' no pending reply\n",
7629 nc->name);
7630 }
74531fed
PA
7631}
7632
6b8edb51
PA
7633/* Wrapper around remote_target::remote_notif_get_pending_events to
7634 avoid having to export the whole remote_target class. */
7635
7636void
7637remote_notif_get_pending_events (remote_target *remote, notif_client *nc)
7638{
7639 remote->remote_notif_get_pending_events (nc);
7640}
7641
74531fed
PA
7642/* Called when it is decided that STOP_REPLY holds the info of the
7643 event that is to be returned to the core. This function always
7644 destroys STOP_REPLY. */
7645
6b8edb51
PA
7646ptid_t
7647remote_target::process_stop_reply (struct stop_reply *stop_reply,
7648 struct target_waitstatus *status)
74531fed
PA
7649{
7650 ptid_t ptid;
7651
7652 *status = stop_reply->ws;
7653 ptid = stop_reply->ptid;
7654
7655 /* If no thread/process was reported by the stub, assume the current
7656 inferior. */
d7e15655 7657 if (ptid == null_ptid)
74531fed
PA
7658 ptid = inferior_ptid;
7659
5f3563ea 7660 if (status->kind != TARGET_WAITKIND_EXITED
f2faf941
PA
7661 && status->kind != TARGET_WAITKIND_SIGNALLED
7662 && status->kind != TARGET_WAITKIND_NO_RESUMED)
74531fed 7663 {
5f3563ea
PA
7664 /* Expedited registers. */
7665 if (stop_reply->regcache)
7666 {
217f1f79 7667 struct regcache *regcache
5cd63fda 7668 = get_thread_arch_regcache (ptid, stop_reply->arch);
5f3563ea
PA
7669 cached_reg_t *reg;
7670 int ix;
7671
7672 for (ix = 0;
d1dff226 7673 VEC_iterate (cached_reg_t, stop_reply->regcache, ix, reg);
5f3563ea 7674 ix++)
d1dff226 7675 {
73e1c03f 7676 regcache->raw_supply (reg->num, reg->data);
d1dff226
AH
7677 xfree (reg->data);
7678 }
7679
5f3563ea
PA
7680 VEC_free (cached_reg_t, stop_reply->regcache);
7681 }
74531fed 7682
1941c569 7683 remote_notice_new_inferior (ptid, 0);
7aabaf9d 7684 remote_thread_info *remote_thr = get_remote_thread_info (ptid);
799a2abe
PA
7685 remote_thr->core = stop_reply->core;
7686 remote_thr->stop_reason = stop_reply->stop_reason;
7687 remote_thr->watch_data_address = stop_reply->watch_data_address;
85ad3aaf 7688 remote_thr->vcont_resumed = 0;
74531fed
PA
7689 }
7690
74531fed
PA
7691 stop_reply_xfree (stop_reply);
7692 return ptid;
7693}
7694
7695/* The non-stop mode version of target_wait. */
7696
6b8edb51
PA
7697ptid_t
7698remote_target::wait_ns (ptid_t ptid, struct target_waitstatus *status, int options)
74531fed
PA
7699{
7700 struct remote_state *rs = get_remote_state ();
74531fed
PA
7701 struct stop_reply *stop_reply;
7702 int ret;
fee9eda9 7703 int is_notif = 0;
74531fed
PA
7704
7705 /* If in non-stop mode, get out of getpkt even if a
7706 notification is received. */
7707
7708 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
fee9eda9 7709 0 /* forever */, &is_notif);
74531fed
PA
7710 while (1)
7711 {
fee9eda9 7712 if (ret != -1 && !is_notif)
74531fed
PA
7713 switch (rs->buf[0])
7714 {
7715 case 'E': /* Error of some sort. */
7716 /* We're out of sync with the target now. Did it continue
7717 or not? We can't tell which thread it was in non-stop,
7718 so just ignore this. */
7719 warning (_("Remote failure reply: %s"), rs->buf);
7720 break;
7721 case 'O': /* Console output. */
7722 remote_console_output (rs->buf + 1);
7723 break;
7724 default:
7725 warning (_("Invalid remote reply: %s"), rs->buf);
7726 break;
7727 }
7728
7729 /* Acknowledge a pending stop reply that may have arrived in the
7730 mean time. */
f48ff2a7 7731 if (rs->notif_state->pending_event[notif_client_stop.id] != NULL)
722247f1 7732 remote_notif_get_pending_events (&notif_client_stop);
74531fed
PA
7733
7734 /* If indeed we noticed a stop reply, we're done. */
7735 stop_reply = queued_stop_reply (ptid);
7736 if (stop_reply != NULL)
7737 return process_stop_reply (stop_reply, status);
7738
47608cb1 7739 /* Still no event. If we're just polling for an event, then
74531fed 7740 return to the event loop. */
47608cb1 7741 if (options & TARGET_WNOHANG)
74531fed
PA
7742 {
7743 status->kind = TARGET_WAITKIND_IGNORE;
7744 return minus_one_ptid;
7745 }
7746
47608cb1 7747 /* Otherwise do a blocking wait. */
74531fed 7748 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
fee9eda9 7749 1 /* forever */, &is_notif);
74531fed
PA
7750 }
7751}
7752
7753/* Wait until the remote machine stops, then return, storing status in
7754 STATUS just as `wait' would. */
7755
6b8edb51
PA
7756ptid_t
7757remote_target::wait_as (ptid_t ptid, target_waitstatus *status, int options)
74531fed
PA
7758{
7759 struct remote_state *rs = get_remote_state ();
74531fed 7760 ptid_t event_ptid = null_ptid;
cea39f65 7761 char *buf;
74531fed
PA
7762 struct stop_reply *stop_reply;
7763
47608cb1
PA
7764 again:
7765
74531fed
PA
7766 status->kind = TARGET_WAITKIND_IGNORE;
7767 status->value.integer = 0;
7768
7769 stop_reply = queued_stop_reply (ptid);
7770 if (stop_reply != NULL)
7771 return process_stop_reply (stop_reply, status);
7772
7773 if (rs->cached_wait_status)
7774 /* Use the cached wait status, but only once. */
7775 rs->cached_wait_status = 0;
7776 else
7777 {
7778 int ret;
722247f1 7779 int is_notif;
567420d1 7780 int forever = ((options & TARGET_WNOHANG) == 0
6b8edb51 7781 && rs->wait_forever_enabled_p);
567420d1
PA
7782
7783 if (!rs->waiting_for_stop_reply)
7784 {
7785 status->kind = TARGET_WAITKIND_NO_RESUMED;
7786 return minus_one_ptid;
7787 }
74531fed 7788
74531fed
PA
7789 /* FIXME: cagney/1999-09-27: If we're in async mode we should
7790 _never_ wait for ever -> test on target_is_async_p().
7791 However, before we do that we need to ensure that the caller
7792 knows how to take the target into/out of async mode. */
722247f1 7793 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
567420d1 7794 forever, &is_notif);
722247f1
YQ
7795
7796 /* GDB gets a notification. Return to core as this event is
7797 not interesting. */
7798 if (ret != -1 && is_notif)
7799 return minus_one_ptid;
567420d1
PA
7800
7801 if (ret == -1 && (options & TARGET_WNOHANG) != 0)
7802 return minus_one_ptid;
74531fed
PA
7803 }
7804
7805 buf = rs->buf;
7806
3a29589a
DJ
7807 /* Assume that the target has acknowledged Ctrl-C unless we receive
7808 an 'F' or 'O' packet. */
7809 if (buf[0] != 'F' && buf[0] != 'O')
7810 rs->ctrlc_pending_p = 0;
7811
74531fed
PA
7812 switch (buf[0])
7813 {
7814 case 'E': /* Error of some sort. */
7815 /* We're out of sync with the target now. Did it continue or
7816 not? Not is more likely, so report a stop. */
29090fb6
LM
7817 rs->waiting_for_stop_reply = 0;
7818
74531fed
PA
7819 warning (_("Remote failure reply: %s"), buf);
7820 status->kind = TARGET_WAITKIND_STOPPED;
a493e3e2 7821 status->value.sig = GDB_SIGNAL_0;
74531fed
PA
7822 break;
7823 case 'F': /* File-I/O request. */
e42e5352
YQ
7824 /* GDB may access the inferior memory while handling the File-I/O
7825 request, but we don't want GDB accessing memory while waiting
7826 for a stop reply. See the comments in putpkt_binary. Set
7827 waiting_for_stop_reply to 0 temporarily. */
7828 rs->waiting_for_stop_reply = 0;
6b8edb51 7829 remote_fileio_request (this, buf, rs->ctrlc_pending_p);
3a29589a 7830 rs->ctrlc_pending_p = 0;
e42e5352
YQ
7831 /* GDB handled the File-I/O request, and the target is running
7832 again. Keep waiting for events. */
7833 rs->waiting_for_stop_reply = 1;
74531fed 7834 break;
f2faf941 7835 case 'N': case 'T': case 'S': case 'X': case 'W':
74531fed 7836 {
29090fb6
LM
7837 /* There is a stop reply to handle. */
7838 rs->waiting_for_stop_reply = 0;
7839
7840 stop_reply
6b8edb51
PA
7841 = (struct stop_reply *) remote_notif_parse (this,
7842 &notif_client_stop,
722247f1 7843 rs->buf);
74531fed 7844
74531fed 7845 event_ptid = process_stop_reply (stop_reply, status);
c8e38a49
PA
7846 break;
7847 }
7848 case 'O': /* Console output. */
7849 remote_console_output (buf + 1);
c8e38a49
PA
7850 break;
7851 case '\0':
b73be471 7852 if (rs->last_sent_signal != GDB_SIGNAL_0)
c8e38a49
PA
7853 {
7854 /* Zero length reply means that we tried 'S' or 'C' and the
7855 remote system doesn't support it. */
223ffa71 7856 target_terminal::ours_for_output ();
c8e38a49
PA
7857 printf_filtered
7858 ("Can't send signals to this remote system. %s not sent.\n",
b73be471
TT
7859 gdb_signal_to_name (rs->last_sent_signal));
7860 rs->last_sent_signal = GDB_SIGNAL_0;
223ffa71 7861 target_terminal::inferior ();
c8e38a49 7862
f5c4fcd9
TT
7863 strcpy (buf, rs->last_sent_step ? "s" : "c");
7864 putpkt (buf);
c8e38a49 7865 break;
43ff13b4 7866 }
86a73007 7867 /* fallthrough */
c8e38a49
PA
7868 default:
7869 warning (_("Invalid remote reply: %s"), buf);
c8e38a49 7870 break;
43ff13b4 7871 }
c8e38a49 7872
f2faf941
PA
7873 if (status->kind == TARGET_WAITKIND_NO_RESUMED)
7874 return minus_one_ptid;
7875 else if (status->kind == TARGET_WAITKIND_IGNORE)
47608cb1
PA
7876 {
7877 /* Nothing interesting happened. If we're doing a non-blocking
7878 poll, we're done. Otherwise, go back to waiting. */
7879 if (options & TARGET_WNOHANG)
7880 return minus_one_ptid;
7881 else
7882 goto again;
7883 }
74531fed
PA
7884 else if (status->kind != TARGET_WAITKIND_EXITED
7885 && status->kind != TARGET_WAITKIND_SIGNALLED)
82f73884 7886 {
d7e15655 7887 if (event_ptid != null_ptid)
47f8a51d 7888 record_currthread (rs, event_ptid);
82f73884
PA
7889 else
7890 event_ptid = inferior_ptid;
43ff13b4 7891 }
74531fed
PA
7892 else
7893 /* A process exit. Invalidate our notion of current thread. */
47f8a51d 7894 record_currthread (rs, minus_one_ptid);
79d7f229 7895
82f73884 7896 return event_ptid;
43ff13b4
JM
7897}
7898
74531fed
PA
7899/* Wait until the remote machine stops, then return, storing status in
7900 STATUS just as `wait' would. */
7901
f6ac5f3d
PA
7902ptid_t
7903remote_target::wait (ptid_t ptid, struct target_waitstatus *status, int options)
c8e38a49
PA
7904{
7905 ptid_t event_ptid;
7906
6efcd9a8 7907 if (target_is_non_stop_p ())
6b8edb51 7908 event_ptid = wait_ns (ptid, status, options);
74531fed 7909 else
6b8edb51 7910 event_ptid = wait_as (ptid, status, options);
c8e38a49 7911
d9d41e78 7912 if (target_is_async_p ())
c8e38a49 7913 {
6b8edb51
PA
7914 remote_state *rs = get_remote_state ();
7915
74531fed
PA
7916 /* If there are are events left in the queue tell the event loop
7917 to return here. */
953edf2b 7918 if (!rs->stop_reply_queue.empty ())
6b8edb51 7919 mark_async_event_handler (rs->remote_async_inferior_event_token);
c8e38a49 7920 }
c8e38a49
PA
7921
7922 return event_ptid;
7923}
7924
74ca34ce 7925/* Fetch a single register using a 'p' packet. */
c906108c 7926
6b8edb51
PA
7927int
7928remote_target::fetch_register_using_p (struct regcache *regcache,
7929 packet_reg *reg)
b96ec7ac 7930{
ac7936df 7931 struct gdbarch *gdbarch = regcache->arch ();
b96ec7ac 7932 struct remote_state *rs = get_remote_state ();
2e9f7625 7933 char *buf, *p;
9890e433 7934 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
b96ec7ac
AC
7935 int i;
7936
4082afcc 7937 if (packet_support (PACKET_p) == PACKET_DISABLE)
74ca34ce
DJ
7938 return 0;
7939
7940 if (reg->pnum == -1)
7941 return 0;
7942
2e9f7625 7943 p = rs->buf;
fcad0fa4 7944 *p++ = 'p';
74ca34ce 7945 p += hexnumstr (p, reg->pnum);
fcad0fa4 7946 *p++ = '\0';
1f4437a4
MS
7947 putpkt (rs->buf);
7948 getpkt (&rs->buf, &rs->buf_size, 0);
3f9a994c 7949
2e9f7625
DJ
7950 buf = rs->buf;
7951
74ca34ce
DJ
7952 switch (packet_ok (buf, &remote_protocol_packets[PACKET_p]))
7953 {
7954 case PACKET_OK:
7955 break;
7956 case PACKET_UNKNOWN:
7957 return 0;
7958 case PACKET_ERROR:
27a9c0bf 7959 error (_("Could not fetch register \"%s\"; remote failure reply '%s'"),
ac7936df 7960 gdbarch_register_name (regcache->arch (),
27a9c0bf
MS
7961 reg->regnum),
7962 buf);
74ca34ce 7963 }
3f9a994c
JB
7964
7965 /* If this register is unfetchable, tell the regcache. */
7966 if (buf[0] == 'x')
8480adf2 7967 {
73e1c03f 7968 regcache->raw_supply (reg->regnum, NULL);
8480adf2 7969 return 1;
b96ec7ac 7970 }
b96ec7ac 7971
3f9a994c
JB
7972 /* Otherwise, parse and supply the value. */
7973 p = buf;
7974 i = 0;
7975 while (p[0] != 0)
7976 {
7977 if (p[1] == 0)
74ca34ce 7978 error (_("fetch_register_using_p: early buf termination"));
3f9a994c
JB
7979
7980 regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
7981 p += 2;
7982 }
73e1c03f 7983 regcache->raw_supply (reg->regnum, regp);
3f9a994c 7984 return 1;
b96ec7ac
AC
7985}
7986
74ca34ce
DJ
7987/* Fetch the registers included in the target's 'g' packet. */
7988
6b8edb51
PA
7989int
7990remote_target::send_g_packet ()
c906108c 7991{
d01949b6 7992 struct remote_state *rs = get_remote_state ();
cea39f65 7993 int buf_len;
c906108c 7994
bba74b36 7995 xsnprintf (rs->buf, get_remote_packet_size (), "g");
b75abf5b
AK
7996 putpkt (rs->buf);
7997 getpkt (&rs->buf, &rs->buf_size, 0);
7998 if (packet_check_result (rs->buf) == PACKET_ERROR)
7999 error (_("Could not read registers; remote failure reply '%s'"),
8000 rs->buf);
c906108c 8001
29709017
DJ
8002 /* We can get out of synch in various cases. If the first character
8003 in the buffer is not a hex character, assume that has happened
8004 and try to fetch another packet to read. */
8005 while ((rs->buf[0] < '0' || rs->buf[0] > '9')
8006 && (rs->buf[0] < 'A' || rs->buf[0] > 'F')
8007 && (rs->buf[0] < 'a' || rs->buf[0] > 'f')
8008 && rs->buf[0] != 'x') /* New: unavailable register value. */
8009 {
8010 if (remote_debug)
8011 fprintf_unfiltered (gdb_stdlog,
8012 "Bad register packet; fetching a new packet\n");
8013 getpkt (&rs->buf, &rs->buf_size, 0);
8014 }
8015
74ca34ce
DJ
8016 buf_len = strlen (rs->buf);
8017
8018 /* Sanity check the received packet. */
8019 if (buf_len % 2 != 0)
8020 error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf);
29709017
DJ
8021
8022 return buf_len / 2;
8023}
8024
6b8edb51
PA
8025void
8026remote_target::process_g_packet (struct regcache *regcache)
29709017 8027{
ac7936df 8028 struct gdbarch *gdbarch = regcache->arch ();
29709017 8029 struct remote_state *rs = get_remote_state ();
9d6eea31 8030 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
29709017
DJ
8031 int i, buf_len;
8032 char *p;
8033 char *regs;
8034
8035 buf_len = strlen (rs->buf);
8036
8037 /* Further sanity checks, with knowledge of the architecture. */
74ca34ce 8038 if (buf_len > 2 * rsa->sizeof_g_packet)
fc809827
SM
8039 error (_("Remote 'g' packet reply is too long (expected %ld bytes, got %d "
8040 "bytes): %s"), rsa->sizeof_g_packet, buf_len / 2, rs->buf);
74ca34ce
DJ
8041
8042 /* Save the size of the packet sent to us by the target. It is used
8043 as a heuristic when determining the max size of packets that the
8044 target can safely receive. */
8045 if (rsa->actual_register_packet_size == 0)
8046 rsa->actual_register_packet_size = buf_len;
8047
8048 /* If this is smaller than we guessed the 'g' packet would be,
8049 update our records. A 'g' reply that doesn't include a register's
8050 value implies either that the register is not available, or that
8051 the 'p' packet must be used. */
8052 if (buf_len < 2 * rsa->sizeof_g_packet)
b323314b 8053 {
9dc193c3 8054 long sizeof_g_packet = buf_len / 2;
74ca34ce 8055
4a22f64d 8056 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
b96ec7ac 8057 {
9dc193c3
LF
8058 long offset = rsa->regs[i].offset;
8059 long reg_size = register_size (gdbarch, i);
8060
74ca34ce
DJ
8061 if (rsa->regs[i].pnum == -1)
8062 continue;
8063
9dc193c3 8064 if (offset >= sizeof_g_packet)
74ca34ce 8065 rsa->regs[i].in_g_packet = 0;
9dc193c3
LF
8066 else if (offset + reg_size > sizeof_g_packet)
8067 error (_("Truncated register %d in remote 'g' packet"), i);
b96ec7ac 8068 else
74ca34ce 8069 rsa->regs[i].in_g_packet = 1;
b96ec7ac 8070 }
9dc193c3
LF
8071
8072 /* Looks valid enough, we can assume this is the correct length
8073 for a 'g' packet. It's important not to adjust
8074 rsa->sizeof_g_packet if we have truncated registers otherwise
8075 this "if" won't be run the next time the method is called
8076 with a packet of the same size and one of the internal errors
8077 below will trigger instead. */
8078 rsa->sizeof_g_packet = sizeof_g_packet;
74ca34ce 8079 }
b323314b 8080
224c3ddb 8081 regs = (char *) alloca (rsa->sizeof_g_packet);
c906108c
SS
8082
8083 /* Unimplemented registers read as all bits zero. */
ea9c271d 8084 memset (regs, 0, rsa->sizeof_g_packet);
c906108c 8085
c906108c
SS
8086 /* Reply describes registers byte by byte, each byte encoded as two
8087 hex characters. Suck them all up, then supply them to the
8088 register cacheing/storage mechanism. */
8089
74ca34ce 8090 p = rs->buf;
ea9c271d 8091 for (i = 0; i < rsa->sizeof_g_packet; i++)
c906108c 8092 {
74ca34ce
DJ
8093 if (p[0] == 0 || p[1] == 0)
8094 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
8095 internal_error (__FILE__, __LINE__,
9b20d036 8096 _("unexpected end of 'g' packet reply"));
74ca34ce 8097
c906108c 8098 if (p[0] == 'x' && p[1] == 'x')
c5aa993b 8099 regs[i] = 0; /* 'x' */
c906108c
SS
8100 else
8101 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
8102 p += 2;
8103 }
8104
a744cf53
MS
8105 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
8106 {
8107 struct packet_reg *r = &rsa->regs[i];
9dc193c3 8108 long reg_size = register_size (gdbarch, i);
a744cf53
MS
8109
8110 if (r->in_g_packet)
8111 {
9dc193c3 8112 if ((r->offset + reg_size) * 2 > strlen (rs->buf))
a744cf53
MS
8113 /* This shouldn't happen - we adjusted in_g_packet above. */
8114 internal_error (__FILE__, __LINE__,
9b20d036 8115 _("unexpected end of 'g' packet reply"));
a744cf53
MS
8116 else if (rs->buf[r->offset * 2] == 'x')
8117 {
8118 gdb_assert (r->offset * 2 < strlen (rs->buf));
8119 /* The register isn't available, mark it as such (at
8120 the same time setting the value to zero). */
73e1c03f 8121 regcache->raw_supply (r->regnum, NULL);
a744cf53
MS
8122 }
8123 else
73e1c03f 8124 regcache->raw_supply (r->regnum, regs + r->offset);
a744cf53
MS
8125 }
8126 }
c906108c
SS
8127}
8128
6b8edb51
PA
8129void
8130remote_target::fetch_registers_using_g (struct regcache *regcache)
29709017
DJ
8131{
8132 send_g_packet ();
56be3814 8133 process_g_packet (regcache);
29709017
DJ
8134}
8135
e6e4e701
PA
8136/* Make the remote selected traceframe match GDB's selected
8137 traceframe. */
8138
6b8edb51
PA
8139void
8140remote_target::set_remote_traceframe ()
e6e4e701
PA
8141{
8142 int newnum;
262e1174 8143 struct remote_state *rs = get_remote_state ();
e6e4e701 8144
262e1174 8145 if (rs->remote_traceframe_number == get_traceframe_number ())
e6e4e701
PA
8146 return;
8147
8148 /* Avoid recursion, remote_trace_find calls us again. */
262e1174 8149 rs->remote_traceframe_number = get_traceframe_number ();
e6e4e701
PA
8150
8151 newnum = target_trace_find (tfind_number,
8152 get_traceframe_number (), 0, 0, NULL);
8153
8154 /* Should not happen. If it does, all bets are off. */
8155 if (newnum != get_traceframe_number ())
8156 warning (_("could not set remote traceframe"));
8157}
8158
f6ac5f3d
PA
8159void
8160remote_target::fetch_registers (struct regcache *regcache, int regnum)
74ca34ce 8161{
ac7936df 8162 struct gdbarch *gdbarch = regcache->arch ();
9d6eea31
PA
8163 struct remote_state *rs = get_remote_state ();
8164 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
74ca34ce
DJ
8165 int i;
8166
e6e4e701 8167 set_remote_traceframe ();
222312d3 8168 set_general_thread (regcache->ptid ());
74ca34ce
DJ
8169
8170 if (regnum >= 0)
8171 {
5cd63fda 8172 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
a744cf53 8173
74ca34ce
DJ
8174 gdb_assert (reg != NULL);
8175
8176 /* If this register might be in the 'g' packet, try that first -
8177 we are likely to read more than one register. If this is the
8178 first 'g' packet, we might be overly optimistic about its
8179 contents, so fall back to 'p'. */
8180 if (reg->in_g_packet)
8181 {
56be3814 8182 fetch_registers_using_g (regcache);
74ca34ce
DJ
8183 if (reg->in_g_packet)
8184 return;
8185 }
8186
56be3814 8187 if (fetch_register_using_p (regcache, reg))
74ca34ce
DJ
8188 return;
8189
8190 /* This register is not available. */
73e1c03f 8191 regcache->raw_supply (reg->regnum, NULL);
74ca34ce
DJ
8192
8193 return;
8194 }
8195
56be3814 8196 fetch_registers_using_g (regcache);
74ca34ce 8197
5cd63fda 8198 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
74ca34ce 8199 if (!rsa->regs[i].in_g_packet)
56be3814 8200 if (!fetch_register_using_p (regcache, &rsa->regs[i]))
74ca34ce
DJ
8201 {
8202 /* This register is not available. */
73e1c03f 8203 regcache->raw_supply (i, NULL);
74ca34ce
DJ
8204 }
8205}
8206
c906108c
SS
8207/* Prepare to store registers. Since we may send them all (using a
8208 'G' request), we have to read out the ones we don't want to change
8209 first. */
8210
f6ac5f3d
PA
8211void
8212remote_target::prepare_to_store (struct regcache *regcache)
c906108c 8213{
9d6eea31
PA
8214 struct remote_state *rs = get_remote_state ();
8215 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
cf0e1e0d 8216 int i;
cf0e1e0d 8217
c906108c 8218 /* Make sure the entire registers array is valid. */
4082afcc 8219 switch (packet_support (PACKET_P))
5a2468f5
JM
8220 {
8221 case PACKET_DISABLE:
8222 case PACKET_SUPPORT_UNKNOWN:
cf0e1e0d 8223 /* Make sure all the necessary registers are cached. */
ac7936df 8224 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
ea9c271d 8225 if (rsa->regs[i].in_g_packet)
0b47d985 8226 regcache->raw_update (rsa->regs[i].regnum);
5a2468f5
JM
8227 break;
8228 case PACKET_ENABLE:
8229 break;
8230 }
8231}
8232
ad10f812 8233/* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
23860348 8234 packet was not recognized. */
5a2468f5 8235
6b8edb51
PA
8236int
8237remote_target::store_register_using_P (const struct regcache *regcache,
8238 packet_reg *reg)
5a2468f5 8239{
ac7936df 8240 struct gdbarch *gdbarch = regcache->arch ();
d01949b6 8241 struct remote_state *rs = get_remote_state ();
5a2468f5 8242 /* Try storing a single register. */
6d820c5c 8243 char *buf = rs->buf;
9890e433 8244 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
5a2468f5 8245 char *p;
5a2468f5 8246
4082afcc 8247 if (packet_support (PACKET_P) == PACKET_DISABLE)
74ca34ce
DJ
8248 return 0;
8249
8250 if (reg->pnum == -1)
8251 return 0;
8252
ea9c271d 8253 xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
5a2468f5 8254 p = buf + strlen (buf);
34a79281 8255 regcache->raw_collect (reg->regnum, regp);
4a22f64d 8256 bin2hex (regp, p, register_size (gdbarch, reg->regnum));
1f4437a4
MS
8257 putpkt (rs->buf);
8258 getpkt (&rs->buf, &rs->buf_size, 0);
5a2468f5 8259
74ca34ce
DJ
8260 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P]))
8261 {
8262 case PACKET_OK:
8263 return 1;
8264 case PACKET_ERROR:
27a9c0bf
MS
8265 error (_("Could not write register \"%s\"; remote failure reply '%s'"),
8266 gdbarch_register_name (gdbarch, reg->regnum), rs->buf);
74ca34ce
DJ
8267 case PACKET_UNKNOWN:
8268 return 0;
8269 default:
8270 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
8271 }
c906108c
SS
8272}
8273
23860348
MS
8274/* Store register REGNUM, or all registers if REGNUM == -1, from the
8275 contents of the register cache buffer. FIXME: ignores errors. */
c906108c 8276
6b8edb51
PA
8277void
8278remote_target::store_registers_using_G (const struct regcache *regcache)
c906108c 8279{
d01949b6 8280 struct remote_state *rs = get_remote_state ();
9d6eea31 8281 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
cfd77fa1 8282 gdb_byte *regs;
c906108c
SS
8283 char *p;
8284
193cb69f
AC
8285 /* Extract all the registers in the regcache copying them into a
8286 local buffer. */
8287 {
b323314b 8288 int i;
a744cf53 8289
224c3ddb 8290 regs = (gdb_byte *) alloca (rsa->sizeof_g_packet);
ea9c271d 8291 memset (regs, 0, rsa->sizeof_g_packet);
ac7936df 8292 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
193cb69f 8293 {
ea9c271d 8294 struct packet_reg *r = &rsa->regs[i];
a744cf53 8295
b323314b 8296 if (r->in_g_packet)
34a79281 8297 regcache->raw_collect (r->regnum, regs + r->offset);
193cb69f
AC
8298 }
8299 }
c906108c
SS
8300
8301 /* Command describes registers byte by byte,
8302 each byte encoded as two hex characters. */
6d820c5c 8303 p = rs->buf;
193cb69f 8304 *p++ = 'G';
74ca34ce 8305 bin2hex (regs, p, rsa->sizeof_g_packet);
1f4437a4
MS
8306 putpkt (rs->buf);
8307 getpkt (&rs->buf, &rs->buf_size, 0);
8308 if (packet_check_result (rs->buf) == PACKET_ERROR)
27a9c0bf
MS
8309 error (_("Could not write registers; remote failure reply '%s'"),
8310 rs->buf);
c906108c 8311}
74ca34ce
DJ
8312
8313/* Store register REGNUM, or all registers if REGNUM == -1, from the contents
8314 of the register cache buffer. FIXME: ignores errors. */
8315
f6ac5f3d
PA
8316void
8317remote_target::store_registers (struct regcache *regcache, int regnum)
74ca34ce 8318{
5cd63fda 8319 struct gdbarch *gdbarch = regcache->arch ();
9d6eea31
PA
8320 struct remote_state *rs = get_remote_state ();
8321 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
74ca34ce
DJ
8322 int i;
8323
e6e4e701 8324 set_remote_traceframe ();
222312d3 8325 set_general_thread (regcache->ptid ());
74ca34ce
DJ
8326
8327 if (regnum >= 0)
8328 {
5cd63fda 8329 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
a744cf53 8330
74ca34ce
DJ
8331 gdb_assert (reg != NULL);
8332
8333 /* Always prefer to store registers using the 'P' packet if
8334 possible; we often change only a small number of registers.
8335 Sometimes we change a larger number; we'd need help from a
8336 higher layer to know to use 'G'. */
56be3814 8337 if (store_register_using_P (regcache, reg))
74ca34ce
DJ
8338 return;
8339
8340 /* For now, don't complain if we have no way to write the
8341 register. GDB loses track of unavailable registers too
8342 easily. Some day, this may be an error. We don't have
0df8b418 8343 any way to read the register, either... */
74ca34ce
DJ
8344 if (!reg->in_g_packet)
8345 return;
8346
56be3814 8347 store_registers_using_G (regcache);
74ca34ce
DJ
8348 return;
8349 }
8350
56be3814 8351 store_registers_using_G (regcache);
74ca34ce 8352
5cd63fda 8353 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
74ca34ce 8354 if (!rsa->regs[i].in_g_packet)
56be3814 8355 if (!store_register_using_P (regcache, &rsa->regs[i]))
74ca34ce
DJ
8356 /* See above for why we do not issue an error here. */
8357 continue;
8358}
c906108c
SS
8359\f
8360
8361/* Return the number of hex digits in num. */
8362
8363static int
fba45db2 8364hexnumlen (ULONGEST num)
c906108c
SS
8365{
8366 int i;
8367
8368 for (i = 0; num != 0; i++)
8369 num >>= 4;
8370
325fac50 8371 return std::max (i, 1);
c906108c
SS
8372}
8373
2df3850c 8374/* Set BUF to the minimum number of hex digits representing NUM. */
c906108c
SS
8375
8376static int
fba45db2 8377hexnumstr (char *buf, ULONGEST num)
c906108c 8378{
c906108c 8379 int len = hexnumlen (num);
a744cf53 8380
2df3850c
JM
8381 return hexnumnstr (buf, num, len);
8382}
8383
c906108c 8384
2df3850c 8385/* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
c906108c 8386
2df3850c 8387static int
fba45db2 8388hexnumnstr (char *buf, ULONGEST num, int width)
2df3850c
JM
8389{
8390 int i;
8391
8392 buf[width] = '\0';
8393
8394 for (i = width - 1; i >= 0; i--)
c906108c 8395 {
c5aa993b 8396 buf[i] = "0123456789abcdef"[(num & 0xf)];
c906108c
SS
8397 num >>= 4;
8398 }
8399
2df3850c 8400 return width;
c906108c
SS
8401}
8402
23860348 8403/* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
c906108c
SS
8404
8405static CORE_ADDR
fba45db2 8406remote_address_masked (CORE_ADDR addr)
c906108c 8407{
883b9c6c 8408 unsigned int address_size = remote_address_size;
a744cf53 8409
911c95a5
UW
8410 /* If "remoteaddresssize" was not set, default to target address size. */
8411 if (!address_size)
f5656ead 8412 address_size = gdbarch_addr_bit (target_gdbarch ());
911c95a5
UW
8413
8414 if (address_size > 0
8415 && address_size < (sizeof (ULONGEST) * 8))
c906108c
SS
8416 {
8417 /* Only create a mask when that mask can safely be constructed
23860348 8418 in a ULONGEST variable. */
c906108c 8419 ULONGEST mask = 1;
a744cf53 8420
911c95a5 8421 mask = (mask << address_size) - 1;
c906108c
SS
8422 addr &= mask;
8423 }
8424 return addr;
8425}
8426
8427/* Determine whether the remote target supports binary downloading.
8428 This is accomplished by sending a no-op memory write of zero length
8429 to the target at the specified address. It does not suffice to send
23860348
MS
8430 the whole packet, since many stubs strip the eighth bit and
8431 subsequently compute a wrong checksum, which causes real havoc with
8432 remote_write_bytes.
7a292a7a 8433
96baa820 8434 NOTE: This can still lose if the serial line is not eight-bit
0df8b418 8435 clean. In cases like this, the user should clear "remote
23860348 8436 X-packet". */
96baa820 8437
6b8edb51
PA
8438void
8439remote_target::check_binary_download (CORE_ADDR addr)
c906108c 8440{
d01949b6 8441 struct remote_state *rs = get_remote_state ();
24b06219 8442
4082afcc 8443 switch (packet_support (PACKET_X))
c906108c 8444 {
96baa820
JM
8445 case PACKET_DISABLE:
8446 break;
8447 case PACKET_ENABLE:
8448 break;
8449 case PACKET_SUPPORT_UNKNOWN:
8450 {
96baa820 8451 char *p;
802188a7 8452
2e9f7625 8453 p = rs->buf;
96baa820
JM
8454 *p++ = 'X';
8455 p += hexnumstr (p, (ULONGEST) addr);
8456 *p++ = ',';
8457 p += hexnumstr (p, (ULONGEST) 0);
8458 *p++ = ':';
8459 *p = '\0';
802188a7 8460
2e9f7625 8461 putpkt_binary (rs->buf, (int) (p - rs->buf));
6d820c5c 8462 getpkt (&rs->buf, &rs->buf_size, 0);
c906108c 8463
2e9f7625 8464 if (rs->buf[0] == '\0')
96baa820
JM
8465 {
8466 if (remote_debug)
8467 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
8468 "binary downloading NOT "
8469 "supported by target\n");
444abaca 8470 remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
96baa820
JM
8471 }
8472 else
8473 {
8474 if (remote_debug)
8475 fprintf_unfiltered (gdb_stdlog,
64b9b334 8476 "binary downloading supported by target\n");
444abaca 8477 remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
96baa820
JM
8478 }
8479 break;
8480 }
c906108c
SS
8481 }
8482}
8483
124e13d9
SM
8484/* Helper function to resize the payload in order to try to get a good
8485 alignment. We try to write an amount of data such that the next write will
8486 start on an address aligned on REMOTE_ALIGN_WRITES. */
8487
8488static int
8489align_for_efficient_write (int todo, CORE_ADDR memaddr)
8490{
8491 return ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr;
8492}
8493
c906108c
SS
8494/* Write memory data directly to the remote machine.
8495 This does not inform the data cache; the data cache uses this.
a76d924d 8496 HEADER is the starting part of the packet.
c906108c
SS
8497 MEMADDR is the address in the remote memory space.
8498 MYADDR is the address of the buffer in our space.
124e13d9
SM
8499 LEN_UNITS is the number of addressable units to write.
8500 UNIT_SIZE is the length in bytes of an addressable unit.
a76d924d
DJ
8501 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
8502 should send data as binary ('X'), or hex-encoded ('M').
8503
8504 The function creates packet of the form
8505 <HEADER><ADDRESS>,<LENGTH>:<DATA>
8506
124e13d9 8507 where encoding of <DATA> is terminated by PACKET_FORMAT.
a76d924d
DJ
8508
8509 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
8510 are omitted.
8511
9b409511 8512 Return the transferred status, error or OK (an
124e13d9
SM
8513 'enum target_xfer_status' value). Save the number of addressable units
8514 transferred in *XFERED_LEN_UNITS. Only transfer a single packet.
8515
8516 On a platform with an addressable memory size of 2 bytes (UNIT_SIZE == 2), an
8517 exchange between gdb and the stub could look like (?? in place of the
8518 checksum):
8519
8520 -> $m1000,4#??
8521 <- aaaabbbbccccdddd
8522
8523 -> $M1000,3:eeeeffffeeee#??
8524 <- OK
8525
8526 -> $m1000,4#??
8527 <- eeeeffffeeeedddd */
c906108c 8528
6b8edb51
PA
8529target_xfer_status
8530remote_target::remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
8531 const gdb_byte *myaddr,
8532 ULONGEST len_units,
8533 int unit_size,
8534 ULONGEST *xfered_len_units,
8535 char packet_format, int use_length)
c906108c 8536{
6d820c5c 8537 struct remote_state *rs = get_remote_state ();
cfd77fa1 8538 char *p;
a76d924d
DJ
8539 char *plen = NULL;
8540 int plenlen = 0;
124e13d9
SM
8541 int todo_units;
8542 int units_written;
8543 int payload_capacity_bytes;
8544 int payload_length_bytes;
a76d924d
DJ
8545
8546 if (packet_format != 'X' && packet_format != 'M')
8547 internal_error (__FILE__, __LINE__,
9b20d036 8548 _("remote_write_bytes_aux: bad packet format"));
c906108c 8549
124e13d9 8550 if (len_units == 0)
9b409511 8551 return TARGET_XFER_EOF;
b2182ed2 8552
124e13d9 8553 payload_capacity_bytes = get_memory_write_packet_size ();
2bc416ba 8554
6d820c5c
DJ
8555 /* The packet buffer will be large enough for the payload;
8556 get_memory_packet_size ensures this. */
a76d924d 8557 rs->buf[0] = '\0';
c906108c 8558
a257b5bb 8559 /* Compute the size of the actual payload by subtracting out the
0df8b418
MS
8560 packet header and footer overhead: "$M<memaddr>,<len>:...#nn". */
8561
124e13d9 8562 payload_capacity_bytes -= strlen ("$,:#NN");
a76d924d 8563 if (!use_length)
0df8b418 8564 /* The comma won't be used. */
124e13d9
SM
8565 payload_capacity_bytes += 1;
8566 payload_capacity_bytes -= strlen (header);
8567 payload_capacity_bytes -= hexnumlen (memaddr);
c906108c 8568
a76d924d 8569 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
917317f4 8570
a76d924d
DJ
8571 strcat (rs->buf, header);
8572 p = rs->buf + strlen (header);
8573
8574 /* Compute a best guess of the number of bytes actually transfered. */
8575 if (packet_format == 'X')
c906108c 8576 {
23860348 8577 /* Best guess at number of bytes that will fit. */
325fac50
PA
8578 todo_units = std::min (len_units,
8579 (ULONGEST) payload_capacity_bytes / unit_size);
a76d924d 8580 if (use_length)
124e13d9 8581 payload_capacity_bytes -= hexnumlen (todo_units);
325fac50 8582 todo_units = std::min (todo_units, payload_capacity_bytes / unit_size);
a76d924d
DJ
8583 }
8584 else
8585 {
124e13d9 8586 /* Number of bytes that will fit. */
325fac50
PA
8587 todo_units
8588 = std::min (len_units,
8589 (ULONGEST) (payload_capacity_bytes / unit_size) / 2);
a76d924d 8590 if (use_length)
124e13d9 8591 payload_capacity_bytes -= hexnumlen (todo_units);
325fac50
PA
8592 todo_units = std::min (todo_units,
8593 (payload_capacity_bytes / unit_size) / 2);
917317f4 8594 }
a76d924d 8595
124e13d9 8596 if (todo_units <= 0)
3de11b2e 8597 internal_error (__FILE__, __LINE__,
405f8e94 8598 _("minimum packet size too small to write data"));
802188a7 8599
6765f3e5
DJ
8600 /* If we already need another packet, then try to align the end
8601 of this packet to a useful boundary. */
124e13d9
SM
8602 if (todo_units > 2 * REMOTE_ALIGN_WRITES && todo_units < len_units)
8603 todo_units = align_for_efficient_write (todo_units, memaddr);
6765f3e5 8604
a257b5bb 8605 /* Append "<memaddr>". */
917317f4
JM
8606 memaddr = remote_address_masked (memaddr);
8607 p += hexnumstr (p, (ULONGEST) memaddr);
a257b5bb 8608
a76d924d
DJ
8609 if (use_length)
8610 {
8611 /* Append ",". */
8612 *p++ = ',';
802188a7 8613
124e13d9
SM
8614 /* Append the length and retain its location and size. It may need to be
8615 adjusted once the packet body has been created. */
a76d924d 8616 plen = p;
124e13d9 8617 plenlen = hexnumstr (p, (ULONGEST) todo_units);
a76d924d
DJ
8618 p += plenlen;
8619 }
a257b5bb
AC
8620
8621 /* Append ":". */
917317f4
JM
8622 *p++ = ':';
8623 *p = '\0';
802188a7 8624
a257b5bb 8625 /* Append the packet body. */
a76d924d 8626 if (packet_format == 'X')
917317f4 8627 {
917317f4
JM
8628 /* Binary mode. Send target system values byte by byte, in
8629 increasing byte addresses. Only escape certain critical
8630 characters. */
124e13d9
SM
8631 payload_length_bytes =
8632 remote_escape_output (myaddr, todo_units, unit_size, (gdb_byte *) p,
8633 &units_written, payload_capacity_bytes);
6765f3e5 8634
124e13d9 8635 /* If not all TODO units fit, then we'll need another packet. Make
9b7194bc
DJ
8636 a second try to keep the end of the packet aligned. Don't do
8637 this if the packet is tiny. */
124e13d9 8638 if (units_written < todo_units && units_written > 2 * REMOTE_ALIGN_WRITES)
6765f3e5 8639 {
124e13d9
SM
8640 int new_todo_units;
8641
8642 new_todo_units = align_for_efficient_write (units_written, memaddr);
8643
8644 if (new_todo_units != units_written)
8645 payload_length_bytes =
8646 remote_escape_output (myaddr, new_todo_units, unit_size,
8647 (gdb_byte *) p, &units_written,
8648 payload_capacity_bytes);
6765f3e5
DJ
8649 }
8650
124e13d9
SM
8651 p += payload_length_bytes;
8652 if (use_length && units_written < todo_units)
c906108c 8653 {
802188a7 8654 /* Escape chars have filled up the buffer prematurely,
124e13d9 8655 and we have actually sent fewer units than planned.
917317f4
JM
8656 Fix-up the length field of the packet. Use the same
8657 number of characters as before. */
124e13d9
SM
8658 plen += hexnumnstr (plen, (ULONGEST) units_written,
8659 plenlen);
917317f4 8660 *plen = ':'; /* overwrite \0 from hexnumnstr() */
c906108c 8661 }
a76d924d
DJ
8662 }
8663 else
8664 {
917317f4
JM
8665 /* Normal mode: Send target system values byte by byte, in
8666 increasing byte addresses. Each byte is encoded as a two hex
8667 value. */
124e13d9
SM
8668 p += 2 * bin2hex (myaddr, p, todo_units * unit_size);
8669 units_written = todo_units;
c906108c 8670 }
802188a7 8671
2e9f7625 8672 putpkt_binary (rs->buf, (int) (p - rs->buf));
6d820c5c 8673 getpkt (&rs->buf, &rs->buf_size, 0);
802188a7 8674
2e9f7625 8675 if (rs->buf[0] == 'E')
00d84524 8676 return TARGET_XFER_E_IO;
802188a7 8677
124e13d9
SM
8678 /* Return UNITS_WRITTEN, not TODO_UNITS, in case escape chars caused us to
8679 send fewer units than we'd planned. */
8680 *xfered_len_units = (ULONGEST) units_written;
92ffd475 8681 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
c906108c
SS
8682}
8683
a76d924d
DJ
8684/* Write memory data directly to the remote machine.
8685 This does not inform the data cache; the data cache uses this.
8686 MEMADDR is the address in the remote memory space.
8687 MYADDR is the address of the buffer in our space.
8688 LEN is the number of bytes.
8689
9b409511
YQ
8690 Return the transferred status, error or OK (an
8691 'enum target_xfer_status' value). Save the number of bytes
8692 transferred in *XFERED_LEN. Only transfer a single packet. */
a76d924d 8693
6b8edb51
PA
8694target_xfer_status
8695remote_target::remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr,
8696 ULONGEST len, int unit_size,
8697 ULONGEST *xfered_len)
a76d924d 8698{
a121b7c1 8699 const char *packet_format = NULL;
a76d924d
DJ
8700
8701 /* Check whether the target supports binary download. */
8702 check_binary_download (memaddr);
8703
4082afcc 8704 switch (packet_support (PACKET_X))
a76d924d
DJ
8705 {
8706 case PACKET_ENABLE:
8707 packet_format = "X";
8708 break;
8709 case PACKET_DISABLE:
8710 packet_format = "M";
8711 break;
8712 case PACKET_SUPPORT_UNKNOWN:
8713 internal_error (__FILE__, __LINE__,
8714 _("remote_write_bytes: bad internal state"));
8715 default:
8716 internal_error (__FILE__, __LINE__, _("bad switch"));
8717 }
8718
8719 return remote_write_bytes_aux (packet_format,
124e13d9 8720 memaddr, myaddr, len, unit_size, xfered_len,
9b409511 8721 packet_format[0], 1);
a76d924d
DJ
8722}
8723
9217e74e
YQ
8724/* Read memory data directly from the remote machine.
8725 This does not use the data cache; the data cache uses this.
8726 MEMADDR is the address in the remote memory space.
8727 MYADDR is the address of the buffer in our space.
124e13d9
SM
8728 LEN_UNITS is the number of addressable memory units to read..
8729 UNIT_SIZE is the length in bytes of an addressable unit.
9217e74e
YQ
8730
8731 Return the transferred status, error or OK (an
8732 'enum target_xfer_status' value). Save the number of bytes
124e13d9
SM
8733 transferred in *XFERED_LEN_UNITS.
8734
8735 See the comment of remote_write_bytes_aux for an example of
8736 memory read/write exchange between gdb and the stub. */
9217e74e 8737
6b8edb51
PA
8738target_xfer_status
8739remote_target::remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr,
8740 ULONGEST len_units,
8741 int unit_size, ULONGEST *xfered_len_units)
9217e74e
YQ
8742{
8743 struct remote_state *rs = get_remote_state ();
124e13d9 8744 int buf_size_bytes; /* Max size of packet output buffer. */
9217e74e 8745 char *p;
124e13d9
SM
8746 int todo_units;
8747 int decoded_bytes;
9217e74e 8748
124e13d9 8749 buf_size_bytes = get_memory_read_packet_size ();
9217e74e
YQ
8750 /* The packet buffer will be large enough for the payload;
8751 get_memory_packet_size ensures this. */
8752
124e13d9 8753 /* Number of units that will fit. */
325fac50
PA
8754 todo_units = std::min (len_units,
8755 (ULONGEST) (buf_size_bytes / unit_size) / 2);
9217e74e
YQ
8756
8757 /* Construct "m"<memaddr>","<len>". */
8758 memaddr = remote_address_masked (memaddr);
8759 p = rs->buf;
8760 *p++ = 'm';
8761 p += hexnumstr (p, (ULONGEST) memaddr);
8762 *p++ = ',';
124e13d9 8763 p += hexnumstr (p, (ULONGEST) todo_units);
9217e74e
YQ
8764 *p = '\0';
8765 putpkt (rs->buf);
8766 getpkt (&rs->buf, &rs->buf_size, 0);
8767 if (rs->buf[0] == 'E'
8768 && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2])
8769 && rs->buf[3] == '\0')
8770 return TARGET_XFER_E_IO;
8771 /* Reply describes memory byte by byte, each byte encoded as two hex
8772 characters. */
8773 p = rs->buf;
124e13d9 8774 decoded_bytes = hex2bin (p, myaddr, todo_units * unit_size);
9217e74e 8775 /* Return what we have. Let higher layers handle partial reads. */
124e13d9 8776 *xfered_len_units = (ULONGEST) (decoded_bytes / unit_size);
92ffd475 8777 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
9217e74e
YQ
8778}
8779
b55fbac4
YQ
8780/* Using the set of read-only target sections of remote, read live
8781 read-only memory.
8acf9577
YQ
8782
8783 For interface/parameters/return description see target.h,
8784 to_xfer_partial. */
8785
6b8edb51
PA
8786target_xfer_status
8787remote_target::remote_xfer_live_readonly_partial (gdb_byte *readbuf,
8788 ULONGEST memaddr,
8789 ULONGEST len,
8790 int unit_size,
8791 ULONGEST *xfered_len)
8acf9577
YQ
8792{
8793 struct target_section *secp;
8794 struct target_section_table *table;
8795
6b8edb51 8796 secp = target_section_by_addr (this, memaddr);
8acf9577
YQ
8797 if (secp != NULL
8798 && (bfd_get_section_flags (secp->the_bfd_section->owner,
8799 secp->the_bfd_section)
8800 & SEC_READONLY))
8801 {
8802 struct target_section *p;
8803 ULONGEST memend = memaddr + len;
8804
6b8edb51 8805 table = target_get_section_table (this);
8acf9577
YQ
8806
8807 for (p = table->sections; p < table->sections_end; p++)
8808 {
8809 if (memaddr >= p->addr)
8810 {
8811 if (memend <= p->endaddr)
8812 {
8813 /* Entire transfer is within this section. */
124e13d9 8814 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 8815 xfered_len);
8acf9577
YQ
8816 }
8817 else if (memaddr >= p->endaddr)
8818 {
8819 /* This section ends before the transfer starts. */
8820 continue;
8821 }
8822 else
8823 {
8824 /* This section overlaps the transfer. Just do half. */
8825 len = p->endaddr - memaddr;
124e13d9 8826 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 8827 xfered_len);
8acf9577
YQ
8828 }
8829 }
8830 }
8831 }
8832
8833 return TARGET_XFER_EOF;
8834}
8835
9217e74e
YQ
8836/* Similar to remote_read_bytes_1, but it reads from the remote stub
8837 first if the requested memory is unavailable in traceframe.
8838 Otherwise, fall back to remote_read_bytes_1. */
c906108c 8839
6b8edb51
PA
8840target_xfer_status
8841remote_target::remote_read_bytes (CORE_ADDR memaddr,
8842 gdb_byte *myaddr, ULONGEST len, int unit_size,
8843 ULONGEST *xfered_len)
c906108c 8844{
6b6aa828 8845 if (len == 0)
96c4f946 8846 return TARGET_XFER_EOF;
b2182ed2 8847
8acf9577
YQ
8848 if (get_traceframe_number () != -1)
8849 {
a79b1bc6 8850 std::vector<mem_range> available;
8acf9577
YQ
8851
8852 /* If we fail to get the set of available memory, then the
8853 target does not support querying traceframe info, and so we
8854 attempt reading from the traceframe anyway (assuming the
8855 target implements the old QTro packet then). */
8856 if (traceframe_available_memory (&available, memaddr, len))
8857 {
a79b1bc6 8858 if (available.empty () || available[0].start != memaddr)
8acf9577
YQ
8859 {
8860 enum target_xfer_status res;
8861
8862 /* Don't read into the traceframe's available
8863 memory. */
a79b1bc6 8864 if (!available.empty ())
8acf9577
YQ
8865 {
8866 LONGEST oldlen = len;
8867
a79b1bc6 8868 len = available[0].start - memaddr;
8acf9577
YQ
8869 gdb_assert (len <= oldlen);
8870 }
8871
8acf9577 8872 /* This goes through the topmost target again. */
6b8edb51 8873 res = remote_xfer_live_readonly_partial (myaddr, memaddr,
124e13d9 8874 len, unit_size, xfered_len);
8acf9577
YQ
8875 if (res == TARGET_XFER_OK)
8876 return TARGET_XFER_OK;
8877 else
8878 {
8879 /* No use trying further, we know some memory starting
8880 at MEMADDR isn't available. */
8881 *xfered_len = len;
92ffd475
PC
8882 return (*xfered_len != 0) ?
8883 TARGET_XFER_UNAVAILABLE : TARGET_XFER_EOF;
8acf9577
YQ
8884 }
8885 }
8886
8887 /* Don't try to read more than how much is available, in
8888 case the target implements the deprecated QTro packet to
8889 cater for older GDBs (the target's knowledge of read-only
8890 sections may be outdated by now). */
a79b1bc6 8891 len = available[0].length;
8acf9577
YQ
8892 }
8893 }
8894
124e13d9 8895 return remote_read_bytes_1 (memaddr, myaddr, len, unit_size, xfered_len);
c906108c 8896}
74531fed 8897
c906108c 8898\f
c906108c 8899
a76d924d
DJ
8900/* Sends a packet with content determined by the printf format string
8901 FORMAT and the remaining arguments, then gets the reply. Returns
8902 whether the packet was a success, a failure, or unknown. */
8903
6b8edb51
PA
8904packet_result
8905remote_target::remote_send_printf (const char *format, ...)
a76d924d
DJ
8906{
8907 struct remote_state *rs = get_remote_state ();
8908 int max_size = get_remote_packet_size ();
a76d924d 8909 va_list ap;
a744cf53 8910
a76d924d
DJ
8911 va_start (ap, format);
8912
8913 rs->buf[0] = '\0';
33b031ce
GB
8914 int size = vsnprintf (rs->buf, max_size, format, ap);
8915
8916 va_end (ap);
8917
8918 if (size >= max_size)
9b20d036 8919 internal_error (__FILE__, __LINE__, _("Too long remote packet."));
a76d924d
DJ
8920
8921 if (putpkt (rs->buf) < 0)
8922 error (_("Communication problem with target."));
8923
8924 rs->buf[0] = '\0';
8925 getpkt (&rs->buf, &rs->buf_size, 0);
8926
8927 return packet_check_result (rs->buf);
8928}
8929
a76d924d
DJ
8930/* Flash writing can take quite some time. We'll set
8931 effectively infinite timeout for flash operations.
8932 In future, we'll need to decide on a better approach. */
8933static const int remote_flash_timeout = 1000;
8934
f6ac5f3d
PA
8935void
8936remote_target::flash_erase (ULONGEST address, LONGEST length)
a76d924d 8937{
f5656ead 8938 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
a76d924d 8939 enum packet_result ret;
2ec845e7
TT
8940 scoped_restore restore_timeout
8941 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
a76d924d
DJ
8942
8943 ret = remote_send_printf ("vFlashErase:%s,%s",
5af949e3 8944 phex (address, addr_size),
a76d924d
DJ
8945 phex (length, 4));
8946 switch (ret)
8947 {
8948 case PACKET_UNKNOWN:
8949 error (_("Remote target does not support flash erase"));
8950 case PACKET_ERROR:
8951 error (_("Error erasing flash with vFlashErase packet"));
8952 default:
8953 break;
8954 }
a76d924d
DJ
8955}
8956
6b8edb51
PA
8957target_xfer_status
8958remote_target::remote_flash_write (ULONGEST address,
8959 ULONGEST length, ULONGEST *xfered_len,
8960 const gdb_byte *data)
a76d924d 8961{
2ec845e7
TT
8962 scoped_restore restore_timeout
8963 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
8964 return remote_write_bytes_aux ("vFlashWrite:", address, data, length, 1,
8965 xfered_len,'X', 0);
a76d924d
DJ
8966}
8967
f6ac5f3d
PA
8968void
8969remote_target::flash_done ()
a76d924d 8970{
a76d924d 8971 int ret;
a76d924d 8972
2ec845e7
TT
8973 scoped_restore restore_timeout
8974 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
8975
a76d924d 8976 ret = remote_send_printf ("vFlashDone");
a76d924d
DJ
8977
8978 switch (ret)
8979 {
8980 case PACKET_UNKNOWN:
8981 error (_("Remote target does not support vFlashDone"));
8982 case PACKET_ERROR:
8983 error (_("Error finishing flash operation"));
8984 default:
8985 break;
8986 }
8987}
8988
f6ac5f3d
PA
8989void
8990remote_target::files_info ()
c906108c
SS
8991{
8992 puts_filtered ("Debugging a target over a serial line.\n");
8993}
8994\f
8995/* Stuff for dealing with the packets which are part of this protocol.
8996 See comment at top of file for details. */
8997
1927e618
PA
8998/* Close/unpush the remote target, and throw a TARGET_CLOSE_ERROR
8999 error to higher layers. Called when a serial error is detected.
9000 The exception message is STRING, followed by a colon and a blank,
d6cb50a2
JK
9001 the system error message for errno at function entry and final dot
9002 for output compatibility with throw_perror_with_name. */
1927e618
PA
9003
9004static void
9005unpush_and_perror (const char *string)
9006{
d6cb50a2 9007 int saved_errno = errno;
1927e618
PA
9008
9009 remote_unpush_target ();
d6cb50a2
JK
9010 throw_error (TARGET_CLOSE_ERROR, "%s: %s.", string,
9011 safe_strerror (saved_errno));
1927e618
PA
9012}
9013
048094ac
PA
9014/* Read a single character from the remote end. The current quit
9015 handler is overridden to avoid quitting in the middle of packet
9016 sequence, as that would break communication with the remote server.
9017 See remote_serial_quit_handler for more detail. */
c906108c 9018
6b8edb51
PA
9019int
9020remote_target::readchar (int timeout)
c906108c
SS
9021{
9022 int ch;
5d93a237 9023 struct remote_state *rs = get_remote_state ();
048094ac 9024
2ec845e7 9025 {
6b8edb51
PA
9026 scoped_restore restore_quit_target
9027 = make_scoped_restore (&curr_quit_handler_target, this);
2ec845e7 9028 scoped_restore restore_quit
6b8edb51 9029 = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
c906108c 9030
2ec845e7 9031 rs->got_ctrlc_during_io = 0;
c906108c 9032
2ec845e7 9033 ch = serial_readchar (rs->remote_desc, timeout);
048094ac 9034
2ec845e7
TT
9035 if (rs->got_ctrlc_during_io)
9036 set_quit_flag ();
9037 }
048094ac 9038
2acceee2 9039 if (ch >= 0)
0876f84a 9040 return ch;
2acceee2
JM
9041
9042 switch ((enum serial_rc) ch)
c906108c
SS
9043 {
9044 case SERIAL_EOF:
78a095c3 9045 remote_unpush_target ();
598d3636 9046 throw_error (TARGET_CLOSE_ERROR, _("Remote connection closed"));
2acceee2 9047 /* no return */
c906108c 9048 case SERIAL_ERROR:
1927e618
PA
9049 unpush_and_perror (_("Remote communication error. "
9050 "Target disconnected."));
2acceee2 9051 /* no return */
c906108c 9052 case SERIAL_TIMEOUT:
2acceee2 9053 break;
c906108c 9054 }
2acceee2 9055 return ch;
c906108c
SS
9056}
9057
c33e31fd 9058/* Wrapper for serial_write that closes the target and throws if
048094ac
PA
9059 writing fails. The current quit handler is overridden to avoid
9060 quitting in the middle of packet sequence, as that would break
9061 communication with the remote server. See
9062 remote_serial_quit_handler for more detail. */
c33e31fd 9063
6b8edb51
PA
9064void
9065remote_target::remote_serial_write (const char *str, int len)
c33e31fd 9066{
5d93a237 9067 struct remote_state *rs = get_remote_state ();
048094ac 9068
6b8edb51
PA
9069 scoped_restore restore_quit_target
9070 = make_scoped_restore (&curr_quit_handler_target, this);
2ec845e7 9071 scoped_restore restore_quit
6b8edb51 9072 = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
048094ac
PA
9073
9074 rs->got_ctrlc_during_io = 0;
5d93a237
TT
9075
9076 if (serial_write (rs->remote_desc, str, len))
c33e31fd 9077 {
1927e618
PA
9078 unpush_and_perror (_("Remote communication error. "
9079 "Target disconnected."));
c33e31fd 9080 }
048094ac
PA
9081
9082 if (rs->got_ctrlc_during_io)
9083 set_quit_flag ();
c33e31fd
PA
9084}
9085
b3ced9ba
PA
9086/* Return a string representing an escaped version of BUF, of len N.
9087 E.g. \n is converted to \\n, \t to \\t, etc. */
6e5abd65 9088
b3ced9ba 9089static std::string
6e5abd65
PA
9090escape_buffer (const char *buf, int n)
9091{
d7e74731 9092 string_file stb;
6e5abd65 9093
d7e74731
PA
9094 stb.putstrn (buf, n, '\\');
9095 return std::move (stb.string ());
6e5abd65
PA
9096}
9097
c906108c
SS
9098/* Display a null-terminated packet on stdout, for debugging, using C
9099 string notation. */
9100
9101static void
baa336ce 9102print_packet (const char *buf)
c906108c
SS
9103{
9104 puts_filtered ("\"");
43e526b9 9105 fputstr_filtered (buf, '"', gdb_stdout);
c906108c
SS
9106 puts_filtered ("\"");
9107}
9108
9109int
6b8edb51 9110remote_target::putpkt (const char *buf)
c906108c
SS
9111{
9112 return putpkt_binary (buf, strlen (buf));
9113}
9114
6b8edb51
PA
9115/* Wrapper around remote_target::putpkt to avoid exporting
9116 remote_target. */
9117
9118int
9119putpkt (remote_target *remote, const char *buf)
9120{
9121 return remote->putpkt (buf);
9122}
9123
c906108c 9124/* Send a packet to the remote machine, with error checking. The data
23860348 9125 of the packet is in BUF. The string in BUF can be at most
ea9c271d 9126 get_remote_packet_size () - 5 to account for the $, # and checksum,
23860348
MS
9127 and for a possible /0 if we are debugging (remote_debug) and want
9128 to print the sent packet as a string. */
c906108c 9129
6b8edb51
PA
9130int
9131remote_target::putpkt_binary (const char *buf, int cnt)
c906108c 9132{
2d717e4f 9133 struct remote_state *rs = get_remote_state ();
c906108c
SS
9134 int i;
9135 unsigned char csum = 0;
b80406ac
TT
9136 gdb::def_vector<char> data (cnt + 6);
9137 char *buf2 = data.data ();
085dd6e6 9138
c906108c
SS
9139 int ch;
9140 int tcount = 0;
9141 char *p;
9142
e24a49d8
PA
9143 /* Catch cases like trying to read memory or listing threads while
9144 we're waiting for a stop reply. The remote server wouldn't be
9145 ready to handle this request, so we'd hang and timeout. We don't
9146 have to worry about this in synchronous mode, because in that
9147 case it's not possible to issue a command while the target is
74531fed
PA
9148 running. This is not a problem in non-stop mode, because in that
9149 case, the stub is always ready to process serial input. */
6efcd9a8
PA
9150 if (!target_is_non_stop_p ()
9151 && target_is_async_p ()
9152 && rs->waiting_for_stop_reply)
9597b22a
DE
9153 {
9154 error (_("Cannot execute this command while the target is running.\n"
9155 "Use the \"interrupt\" command to stop the target\n"
9156 "and then try again."));
9157 }
e24a49d8 9158
2d717e4f
DJ
9159 /* We're sending out a new packet. Make sure we don't look at a
9160 stale cached response. */
9161 rs->cached_wait_status = 0;
9162
c906108c
SS
9163 /* Copy the packet into buffer BUF2, encapsulating it
9164 and giving it a checksum. */
9165
c906108c
SS
9166 p = buf2;
9167 *p++ = '$';
9168
9169 for (i = 0; i < cnt; i++)
9170 {
9171 csum += buf[i];
9172 *p++ = buf[i];
9173 }
9174 *p++ = '#';
9175 *p++ = tohex ((csum >> 4) & 0xf);
9176 *p++ = tohex (csum & 0xf);
9177
9178 /* Send it over and over until we get a positive ack. */
9179
9180 while (1)
9181 {
9182 int started_error_output = 0;
9183
9184 if (remote_debug)
9185 {
9186 *p = '\0';
b3ced9ba 9187
6f8976bf
YQ
9188 int len = (int) (p - buf2);
9189
9190 std::string str
9191 = escape_buffer (buf2, std::min (len, REMOTE_DEBUG_MAX_CHAR));
9192
9193 fprintf_unfiltered (gdb_stdlog, "Sending packet: %s", str.c_str ());
9194
567a3e54
SM
9195 if (len > REMOTE_DEBUG_MAX_CHAR)
9196 fprintf_unfiltered (gdb_stdlog, "[%d bytes omitted]",
9197 len - REMOTE_DEBUG_MAX_CHAR);
6f8976bf
YQ
9198
9199 fprintf_unfiltered (gdb_stdlog, "...");
b3ced9ba 9200
0f71a2f6 9201 gdb_flush (gdb_stdlog);
c906108c 9202 }
c33e31fd 9203 remote_serial_write (buf2, p - buf2);
c906108c 9204
a6f3e723
SL
9205 /* If this is a no acks version of the remote protocol, send the
9206 packet and move on. */
9207 if (rs->noack_mode)
9208 break;
9209
74531fed
PA
9210 /* Read until either a timeout occurs (-2) or '+' is read.
9211 Handle any notification that arrives in the mean time. */
c906108c
SS
9212 while (1)
9213 {
9214 ch = readchar (remote_timeout);
9215
c5aa993b 9216 if (remote_debug)
c906108c
SS
9217 {
9218 switch (ch)
9219 {
9220 case '+':
1216fa2c 9221 case '-':
c906108c
SS
9222 case SERIAL_TIMEOUT:
9223 case '$':
74531fed 9224 case '%':
c906108c
SS
9225 if (started_error_output)
9226 {
9227 putchar_unfiltered ('\n');
9228 started_error_output = 0;
9229 }
9230 }
9231 }
9232
9233 switch (ch)
9234 {
9235 case '+':
9236 if (remote_debug)
0f71a2f6 9237 fprintf_unfiltered (gdb_stdlog, "Ack\n");
c906108c 9238 return 1;
1216fa2c
AC
9239 case '-':
9240 if (remote_debug)
9241 fprintf_unfiltered (gdb_stdlog, "Nak\n");
a17d146e 9242 /* FALLTHROUGH */
c906108c 9243 case SERIAL_TIMEOUT:
c5aa993b 9244 tcount++;
c906108c 9245 if (tcount > 3)
b80406ac 9246 return 0;
23860348 9247 break; /* Retransmit buffer. */
c906108c
SS
9248 case '$':
9249 {
40e3f985 9250 if (remote_debug)
2bc416ba 9251 fprintf_unfiltered (gdb_stdlog,
23860348 9252 "Packet instead of Ack, ignoring it\n");
d6f7abdf
AC
9253 /* It's probably an old response sent because an ACK
9254 was lost. Gobble up the packet and ack it so it
9255 doesn't get retransmitted when we resend this
9256 packet. */
6d820c5c 9257 skip_frame ();
c33e31fd 9258 remote_serial_write ("+", 1);
23860348 9259 continue; /* Now, go look for +. */
c906108c 9260 }
74531fed
PA
9261
9262 case '%':
9263 {
9264 int val;
9265
9266 /* If we got a notification, handle it, and go back to looking
9267 for an ack. */
9268 /* We've found the start of a notification. Now
9269 collect the data. */
9270 val = read_frame (&rs->buf, &rs->buf_size);
9271 if (val >= 0)
9272 {
9273 if (remote_debug)
9274 {
b3ced9ba 9275 std::string str = escape_buffer (rs->buf, val);
6e5abd65 9276
6e5abd65
PA
9277 fprintf_unfiltered (gdb_stdlog,
9278 " Notification received: %s\n",
b3ced9ba 9279 str.c_str ());
74531fed 9280 }
5965e028 9281 handle_notification (rs->notif_state, rs->buf);
74531fed
PA
9282 /* We're in sync now, rewait for the ack. */
9283 tcount = 0;
9284 }
9285 else
9286 {
9287 if (remote_debug)
9288 {
9289 if (!started_error_output)
9290 {
9291 started_error_output = 1;
9292 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
9293 }
9294 fputc_unfiltered (ch & 0177, gdb_stdlog);
9295 fprintf_unfiltered (gdb_stdlog, "%s", rs->buf);
9296 }
9297 }
9298 continue;
9299 }
9300 /* fall-through */
c906108c
SS
9301 default:
9302 if (remote_debug)
9303 {
9304 if (!started_error_output)
9305 {
9306 started_error_output = 1;
0f71a2f6 9307 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
c906108c 9308 }
0f71a2f6 9309 fputc_unfiltered (ch & 0177, gdb_stdlog);
c906108c
SS
9310 }
9311 continue;
9312 }
23860348 9313 break; /* Here to retransmit. */
c906108c
SS
9314 }
9315
9316#if 0
9317 /* This is wrong. If doing a long backtrace, the user should be
c5aa993b
JM
9318 able to get out next time we call QUIT, without anything as
9319 violent as interrupt_query. If we want to provide a way out of
9320 here without getting to the next QUIT, it should be based on
9321 hitting ^C twice as in remote_wait. */
c906108c
SS
9322 if (quit_flag)
9323 {
9324 quit_flag = 0;
9325 interrupt_query ();
9326 }
9327#endif
9328 }
a5c0808e 9329
a6f3e723 9330 return 0;
c906108c
SS
9331}
9332
6d820c5c
DJ
9333/* Come here after finding the start of a frame when we expected an
9334 ack. Do our best to discard the rest of this packet. */
9335
6b8edb51
PA
9336void
9337remote_target::skip_frame ()
6d820c5c
DJ
9338{
9339 int c;
9340
9341 while (1)
9342 {
9343 c = readchar (remote_timeout);
9344 switch (c)
9345 {
9346 case SERIAL_TIMEOUT:
9347 /* Nothing we can do. */
9348 return;
9349 case '#':
9350 /* Discard the two bytes of checksum and stop. */
9351 c = readchar (remote_timeout);
9352 if (c >= 0)
9353 c = readchar (remote_timeout);
9354
9355 return;
9356 case '*': /* Run length encoding. */
9357 /* Discard the repeat count. */
9358 c = readchar (remote_timeout);
9359 if (c < 0)
9360 return;
9361 break;
9362 default:
9363 /* A regular character. */
9364 break;
9365 }
9366 }
9367}
9368
c906108c 9369/* Come here after finding the start of the frame. Collect the rest
6d820c5c
DJ
9370 into *BUF, verifying the checksum, length, and handling run-length
9371 compression. NUL terminate the buffer. If there is not enough room,
9372 expand *BUF using xrealloc.
c906108c 9373
c2d11a7d
JM
9374 Returns -1 on error, number of characters in buffer (ignoring the
9375 trailing NULL) on success. (could be extended to return one of the
23860348 9376 SERIAL status indications). */
c2d11a7d 9377
6b8edb51
PA
9378long
9379remote_target::read_frame (char **buf_p, long *sizeof_buf)
c906108c
SS
9380{
9381 unsigned char csum;
c2d11a7d 9382 long bc;
c906108c 9383 int c;
6d820c5c 9384 char *buf = *buf_p;
a6f3e723 9385 struct remote_state *rs = get_remote_state ();
c906108c
SS
9386
9387 csum = 0;
c2d11a7d 9388 bc = 0;
c906108c
SS
9389
9390 while (1)
9391 {
9392 c = readchar (remote_timeout);
c906108c
SS
9393 switch (c)
9394 {
9395 case SERIAL_TIMEOUT:
9396 if (remote_debug)
0f71a2f6 9397 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog);
c2d11a7d 9398 return -1;
c906108c
SS
9399 case '$':
9400 if (remote_debug)
0f71a2f6
JM
9401 fputs_filtered ("Saw new packet start in middle of old one\n",
9402 gdb_stdlog);
23860348 9403 return -1; /* Start a new packet, count retries. */
c906108c
SS
9404 case '#':
9405 {
9406 unsigned char pktcsum;
e1b09194
AC
9407 int check_0 = 0;
9408 int check_1 = 0;
c906108c 9409
c2d11a7d 9410 buf[bc] = '\0';
c906108c 9411
e1b09194
AC
9412 check_0 = readchar (remote_timeout);
9413 if (check_0 >= 0)
9414 check_1 = readchar (remote_timeout);
802188a7 9415
e1b09194
AC
9416 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
9417 {
9418 if (remote_debug)
2bc416ba 9419 fputs_filtered ("Timeout in checksum, retrying\n",
23860348 9420 gdb_stdlog);
e1b09194
AC
9421 return -1;
9422 }
9423 else if (check_0 < 0 || check_1 < 0)
40e3f985
FN
9424 {
9425 if (remote_debug)
2bc416ba 9426 fputs_filtered ("Communication error in checksum\n",
23860348 9427 gdb_stdlog);
40e3f985
FN
9428 return -1;
9429 }
c906108c 9430
a6f3e723
SL
9431 /* Don't recompute the checksum; with no ack packets we
9432 don't have any way to indicate a packet retransmission
9433 is necessary. */
9434 if (rs->noack_mode)
9435 return bc;
9436
e1b09194 9437 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
c906108c 9438 if (csum == pktcsum)
c2d11a7d 9439 return bc;
c906108c 9440
c5aa993b 9441 if (remote_debug)
c906108c 9442 {
b3ced9ba 9443 std::string str = escape_buffer (buf, bc);
6e5abd65 9444
6e5abd65 9445 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
9446 "Bad checksum, sentsum=0x%x, "
9447 "csum=0x%x, buf=%s\n",
b3ced9ba 9448 pktcsum, csum, str.c_str ());
c906108c 9449 }
c2d11a7d 9450 /* Number of characters in buffer ignoring trailing
23860348 9451 NULL. */
c2d11a7d 9452 return -1;
c906108c 9453 }
23860348 9454 case '*': /* Run length encoding. */
c2c6d25f
JM
9455 {
9456 int repeat;
c906108c 9457
a744cf53 9458 csum += c;
b4501125
AC
9459 c = readchar (remote_timeout);
9460 csum += c;
23860348 9461 repeat = c - ' ' + 3; /* Compute repeat count. */
c906108c 9462
23860348 9463 /* The character before ``*'' is repeated. */
c2d11a7d 9464
6d820c5c 9465 if (repeat > 0 && repeat <= 255 && bc > 0)
c2c6d25f 9466 {
6d820c5c
DJ
9467 if (bc + repeat - 1 >= *sizeof_buf - 1)
9468 {
9469 /* Make some more room in the buffer. */
9470 *sizeof_buf += repeat;
224c3ddb 9471 *buf_p = (char *) xrealloc (*buf_p, *sizeof_buf);
6d820c5c
DJ
9472 buf = *buf_p;
9473 }
9474
c2d11a7d
JM
9475 memset (&buf[bc], buf[bc - 1], repeat);
9476 bc += repeat;
c2c6d25f
JM
9477 continue;
9478 }
9479
c2d11a7d 9480 buf[bc] = '\0';
6d820c5c 9481 printf_filtered (_("Invalid run length encoding: %s\n"), buf);
c2d11a7d 9482 return -1;
c2c6d25f 9483 }
c906108c 9484 default:
6d820c5c 9485 if (bc >= *sizeof_buf - 1)
c906108c 9486 {
6d820c5c
DJ
9487 /* Make some more room in the buffer. */
9488 *sizeof_buf *= 2;
224c3ddb 9489 *buf_p = (char *) xrealloc (*buf_p, *sizeof_buf);
6d820c5c 9490 buf = *buf_p;
c906108c
SS
9491 }
9492
6d820c5c
DJ
9493 buf[bc++] = c;
9494 csum += c;
9495 continue;
c906108c
SS
9496 }
9497 }
9498}
9499
9500/* Read a packet from the remote machine, with error checking, and
6d820c5c
DJ
9501 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
9502 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
9503 rather than timing out; this is used (in synchronous mode) to wait
9504 for a target that is is executing user code to stop. */
d9fcf2fb
JM
9505/* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
9506 don't have to change all the calls to getpkt to deal with the
9507 return value, because at the moment I don't know what the right
23860348 9508 thing to do it for those. */
6b8edb51 9509
c906108c 9510void
6b8edb51 9511remote_target::getpkt (char **buf, long *sizeof_buf, int forever)
d9fcf2fb 9512{
54887903 9513 getpkt_sane (buf, sizeof_buf, forever);
d9fcf2fb
JM
9514}
9515
9516
9517/* Read a packet from the remote machine, with error checking, and
6d820c5c
DJ
9518 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
9519 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
9520 rather than timing out; this is used (in synchronous mode) to wait
9521 for a target that is is executing user code to stop. If FOREVER ==
9522 0, this function is allowed to time out gracefully and return an
74531fed
PA
9523 indication of this to the caller. Otherwise return the number of
9524 bytes read. If EXPECTING_NOTIF, consider receiving a notification
fee9eda9
YQ
9525 enough reason to return to the caller. *IS_NOTIF is an output
9526 boolean that indicates whether *BUF holds a notification or not
9527 (a regular packet). */
74531fed 9528
6b8edb51
PA
9529int
9530remote_target::getpkt_or_notif_sane_1 (char **buf, long *sizeof_buf,
9531 int forever, int expecting_notif,
9532 int *is_notif)
c906108c 9533{
2d717e4f 9534 struct remote_state *rs = get_remote_state ();
c906108c
SS
9535 int c;
9536 int tries;
9537 int timeout;
df4b58fe 9538 int val = -1;
c906108c 9539
2d717e4f
DJ
9540 /* We're reading a new response. Make sure we don't look at a
9541 previously cached response. */
9542 rs->cached_wait_status = 0;
9543
6d820c5c 9544 strcpy (*buf, "timeout");
c906108c
SS
9545
9546 if (forever)
74531fed
PA
9547 timeout = watchdog > 0 ? watchdog : -1;
9548 else if (expecting_notif)
9549 timeout = 0; /* There should already be a char in the buffer. If
9550 not, bail out. */
c906108c
SS
9551 else
9552 timeout = remote_timeout;
9553
9554#define MAX_TRIES 3
9555
74531fed
PA
9556 /* Process any number of notifications, and then return when
9557 we get a packet. */
9558 for (;;)
c906108c 9559 {
d9c43928 9560 /* If we get a timeout or bad checksum, retry up to MAX_TRIES
74531fed
PA
9561 times. */
9562 for (tries = 1; tries <= MAX_TRIES; tries++)
c906108c 9563 {
74531fed
PA
9564 /* This can loop forever if the remote side sends us
9565 characters continuously, but if it pauses, we'll get
9566 SERIAL_TIMEOUT from readchar because of timeout. Then
9567 we'll count that as a retry.
9568
9569 Note that even when forever is set, we will only wait
9570 forever prior to the start of a packet. After that, we
9571 expect characters to arrive at a brisk pace. They should
9572 show up within remote_timeout intervals. */
9573 do
9574 c = readchar (timeout);
9575 while (c != SERIAL_TIMEOUT && c != '$' && c != '%');
c906108c
SS
9576
9577 if (c == SERIAL_TIMEOUT)
9578 {
74531fed
PA
9579 if (expecting_notif)
9580 return -1; /* Don't complain, it's normal to not get
9581 anything in this case. */
9582
23860348 9583 if (forever) /* Watchdog went off? Kill the target. */
c906108c 9584 {
78a095c3 9585 remote_unpush_target ();
598d3636
JK
9586 throw_error (TARGET_CLOSE_ERROR,
9587 _("Watchdog timeout has expired. "
9588 "Target detached."));
c906108c 9589 }
c906108c 9590 if (remote_debug)
0f71a2f6 9591 fputs_filtered ("Timed out.\n", gdb_stdlog);
c906108c 9592 }
74531fed
PA
9593 else
9594 {
9595 /* We've found the start of a packet or notification.
9596 Now collect the data. */
9597 val = read_frame (buf, sizeof_buf);
9598 if (val >= 0)
9599 break;
9600 }
9601
c33e31fd 9602 remote_serial_write ("-", 1);
c906108c 9603 }
c906108c 9604
74531fed
PA
9605 if (tries > MAX_TRIES)
9606 {
9607 /* We have tried hard enough, and just can't receive the
9608 packet/notification. Give up. */
9609 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
c906108c 9610
74531fed
PA
9611 /* Skip the ack char if we're in no-ack mode. */
9612 if (!rs->noack_mode)
c33e31fd 9613 remote_serial_write ("+", 1);
74531fed
PA
9614 return -1;
9615 }
c906108c 9616
74531fed
PA
9617 /* If we got an ordinary packet, return that to our caller. */
9618 if (c == '$')
c906108c
SS
9619 {
9620 if (remote_debug)
43e526b9 9621 {
6f8976bf
YQ
9622 std::string str
9623 = escape_buffer (*buf,
9624 std::min (val, REMOTE_DEBUG_MAX_CHAR));
9625
9626 fprintf_unfiltered (gdb_stdlog, "Packet received: %s",
9627 str.c_str ());
9628
567a3e54
SM
9629 if (val > REMOTE_DEBUG_MAX_CHAR)
9630 fprintf_unfiltered (gdb_stdlog, "[%d bytes omitted]",
9631 val - REMOTE_DEBUG_MAX_CHAR);
6e5abd65 9632
6f8976bf 9633 fprintf_unfiltered (gdb_stdlog, "\n");
43e526b9 9634 }
a6f3e723
SL
9635
9636 /* Skip the ack char if we're in no-ack mode. */
9637 if (!rs->noack_mode)
c33e31fd 9638 remote_serial_write ("+", 1);
fee9eda9
YQ
9639 if (is_notif != NULL)
9640 *is_notif = 0;
0876f84a 9641 return val;
c906108c
SS
9642 }
9643
74531fed
PA
9644 /* If we got a notification, handle it, and go back to looking
9645 for a packet. */
9646 else
9647 {
9648 gdb_assert (c == '%');
9649
9650 if (remote_debug)
9651 {
b3ced9ba 9652 std::string str = escape_buffer (*buf, val);
6e5abd65 9653
6e5abd65
PA
9654 fprintf_unfiltered (gdb_stdlog,
9655 " Notification received: %s\n",
b3ced9ba 9656 str.c_str ());
74531fed 9657 }
fee9eda9
YQ
9658 if (is_notif != NULL)
9659 *is_notif = 1;
c906108c 9660
5965e028 9661 handle_notification (rs->notif_state, *buf);
c906108c 9662
74531fed 9663 /* Notifications require no acknowledgement. */
a6f3e723 9664
74531fed 9665 if (expecting_notif)
fee9eda9 9666 return val;
74531fed
PA
9667 }
9668 }
9669}
9670
6b8edb51
PA
9671int
9672remote_target::getpkt_sane (char **buf, long *sizeof_buf, int forever)
74531fed 9673{
fee9eda9 9674 return getpkt_or_notif_sane_1 (buf, sizeof_buf, forever, 0, NULL);
74531fed
PA
9675}
9676
6b8edb51
PA
9677int
9678remote_target::getpkt_or_notif_sane (char **buf, long *sizeof_buf, int forever,
9679 int *is_notif)
74531fed 9680{
fee9eda9
YQ
9681 return getpkt_or_notif_sane_1 (buf, sizeof_buf, forever, 1,
9682 is_notif);
c906108c 9683}
74531fed 9684
cbb8991c
DB
9685/* Kill any new fork children of process PID that haven't been
9686 processed by follow_fork. */
9687
6b8edb51
PA
9688void
9689remote_target::kill_new_fork_children (int pid)
cbb8991c 9690{
6b8edb51 9691 remote_state *rs = get_remote_state ();
cbb8991c 9692 struct notif_client *notif = &notif_client_stop;
cbb8991c
DB
9693
9694 /* Kill the fork child threads of any threads in process PID
9695 that are stopped at a fork event. */
08036331 9696 for (thread_info *thread : all_non_exited_threads ())
cbb8991c
DB
9697 {
9698 struct target_waitstatus *ws = &thread->pending_follow;
9699
9700 if (is_pending_fork_parent (ws, pid, thread->ptid))
9701 {
953edf2b 9702 int child_pid = ws->value.related_pid.pid ();
cbb8991c
DB
9703 int res;
9704
6b8edb51 9705 res = remote_vkill (child_pid);
cbb8991c
DB
9706 if (res != 0)
9707 error (_("Can't kill fork child process %d"), child_pid);
9708 }
9709 }
9710
9711 /* Check for any pending fork events (not reported or processed yet)
9712 in process PID and kill those fork child threads as well. */
9713 remote_notif_get_pending_events (notif);
953edf2b
TT
9714 for (auto &event : rs->stop_reply_queue)
9715 if (is_pending_fork_parent (&event->ws, pid, event->ptid))
9716 {
9717 int child_pid = event->ws.value.related_pid.pid ();
9718 int res;
9719
9720 res = remote_vkill (child_pid);
9721 if (res != 0)
9722 error (_("Can't kill fork child process %d"), child_pid);
9723 }
cbb8991c
DB
9724}
9725
c906108c 9726\f
8020350c
DB
9727/* Target hook to kill the current inferior. */
9728
f6ac5f3d
PA
9729void
9730remote_target::kill ()
43ff13b4 9731{
8020350c 9732 int res = -1;
e99b03dc 9733 int pid = inferior_ptid.pid ();
8020350c 9734 struct remote_state *rs = get_remote_state ();
0fdf84ca 9735
8020350c 9736 if (packet_support (PACKET_vKill) != PACKET_DISABLE)
0fdf84ca 9737 {
8020350c
DB
9738 /* If we're stopped while forking and we haven't followed yet,
9739 kill the child task. We need to do this before killing the
9740 parent task because if this is a vfork then the parent will
9741 be sleeping. */
6b8edb51 9742 kill_new_fork_children (pid);
8020350c 9743
6b8edb51 9744 res = remote_vkill (pid);
8020350c 9745 if (res == 0)
0fdf84ca 9746 {
bc1e6c81 9747 target_mourn_inferior (inferior_ptid);
0fdf84ca
PA
9748 return;
9749 }
8020350c 9750 }
0fdf84ca 9751
8020350c
DB
9752 /* If we are in 'target remote' mode and we are killing the only
9753 inferior, then we will tell gdbserver to exit and unpush the
9754 target. */
9755 if (res == -1 && !remote_multi_process_p (rs)
9756 && number_of_live_inferiors () == 1)
9757 {
9758 remote_kill_k ();
9759
9760 /* We've killed the remote end, we get to mourn it. If we are
9761 not in extended mode, mourning the inferior also unpushes
9762 remote_ops from the target stack, which closes the remote
9763 connection. */
bc1e6c81 9764 target_mourn_inferior (inferior_ptid);
8020350c
DB
9765
9766 return;
0fdf84ca 9767 }
43ff13b4 9768
8020350c 9769 error (_("Can't kill process"));
43ff13b4
JM
9770}
9771
8020350c
DB
9772/* Send a kill request to the target using the 'vKill' packet. */
9773
6b8edb51
PA
9774int
9775remote_target::remote_vkill (int pid)
82f73884 9776{
4082afcc 9777 if (packet_support (PACKET_vKill) == PACKET_DISABLE)
82f73884
PA
9778 return -1;
9779
6b8edb51
PA
9780 remote_state *rs = get_remote_state ();
9781
82f73884 9782 /* Tell the remote target to detach. */
bba74b36 9783 xsnprintf (rs->buf, get_remote_packet_size (), "vKill;%x", pid);
82f73884
PA
9784 putpkt (rs->buf);
9785 getpkt (&rs->buf, &rs->buf_size, 0);
9786
4082afcc
PA
9787 switch (packet_ok (rs->buf,
9788 &remote_protocol_packets[PACKET_vKill]))
9789 {
9790 case PACKET_OK:
9791 return 0;
9792 case PACKET_ERROR:
9793 return 1;
9794 case PACKET_UNKNOWN:
9795 return -1;
9796 default:
9797 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
9798 }
82f73884
PA
9799}
9800
8020350c
DB
9801/* Send a kill request to the target using the 'k' packet. */
9802
6b8edb51
PA
9803void
9804remote_target::remote_kill_k ()
82f73884 9805{
8020350c
DB
9806 /* Catch errors so the user can quit from gdb even when we
9807 aren't on speaking terms with the remote system. */
9808 TRY
82f73884 9809 {
82f73884 9810 putpkt ("k");
82f73884 9811 }
8020350c
DB
9812 CATCH (ex, RETURN_MASK_ERROR)
9813 {
9814 if (ex.error == TARGET_CLOSE_ERROR)
9815 {
9816 /* If we got an (EOF) error that caused the target
9817 to go away, then we're done, that's what we wanted.
9818 "k" is susceptible to cause a premature EOF, given
9819 that the remote server isn't actually required to
9820 reply to "k", and it can happen that it doesn't
9821 even get to reply ACK to the "k". */
9822 return;
9823 }
82f73884 9824
8020350c
DB
9825 /* Otherwise, something went wrong. We didn't actually kill
9826 the target. Just propagate the exception, and let the
9827 user or higher layers decide what to do. */
9828 throw_exception (ex);
9829 }
9830 END_CATCH
82f73884
PA
9831}
9832
f6ac5f3d
PA
9833void
9834remote_target::mourn_inferior ()
c906108c 9835{
8020350c 9836 struct remote_state *rs = get_remote_state ();
ce5ce7ed 9837
9607784a
PA
9838 /* We're no longer interested in notification events of an inferior
9839 that exited or was killed/detached. */
9840 discard_pending_stop_replies (current_inferior ());
9841
8020350c
DB
9842 /* In 'target remote' mode with one inferior, we close the connection. */
9843 if (!rs->extended && number_of_live_inferiors () <= 1)
9844 {
f6ac5f3d 9845 unpush_target (this);
c906108c 9846
8020350c
DB
9847 /* remote_close takes care of doing most of the clean up. */
9848 generic_mourn_inferior ();
9849 return;
9850 }
c906108c 9851
e24a49d8
PA
9852 /* In case we got here due to an error, but we're going to stay
9853 connected. */
9854 rs->waiting_for_stop_reply = 0;
9855
dc1981d7
PA
9856 /* If the current general thread belonged to the process we just
9857 detached from or has exited, the remote side current general
9858 thread becomes undefined. Considering a case like this:
9859
9860 - We just got here due to a detach.
9861 - The process that we're detaching from happens to immediately
9862 report a global breakpoint being hit in non-stop mode, in the
9863 same thread we had selected before.
9864 - GDB attaches to this process again.
9865 - This event happens to be the next event we handle.
9866
9867 GDB would consider that the current general thread didn't need to
9868 be set on the stub side (with Hg), since for all it knew,
9869 GENERAL_THREAD hadn't changed.
9870
9871 Notice that although in all-stop mode, the remote server always
9872 sets the current thread to the thread reporting the stop event,
9873 that doesn't happen in non-stop mode; in non-stop, the stub *must
9874 not* change the current thread when reporting a breakpoint hit,
9875 due to the decoupling of event reporting and event handling.
9876
9877 To keep things simple, we always invalidate our notion of the
9878 current thread. */
47f8a51d 9879 record_currthread (rs, minus_one_ptid);
dc1981d7 9880
8020350c 9881 /* Call common code to mark the inferior as not running. */
48aa3c27
PA
9882 generic_mourn_inferior ();
9883
d729566a 9884 if (!have_inferiors ())
2d717e4f 9885 {
82f73884
PA
9886 if (!remote_multi_process_p (rs))
9887 {
9888 /* Check whether the target is running now - some remote stubs
9889 automatically restart after kill. */
9890 putpkt ("?");
9891 getpkt (&rs->buf, &rs->buf_size, 0);
9892
9893 if (rs->buf[0] == 'S' || rs->buf[0] == 'T')
9894 {
3e43a32a
MS
9895 /* Assume that the target has been restarted. Set
9896 inferior_ptid so that bits of core GDB realizes
9897 there's something here, e.g., so that the user can
9898 say "kill" again. */
82f73884
PA
9899 inferior_ptid = magic_null_ptid;
9900 }
82f73884 9901 }
2d717e4f
DJ
9902 }
9903}
c906108c 9904
57810aa7 9905bool
f6ac5f3d 9906extended_remote_target::supports_disable_randomization ()
03583c20 9907{
4082afcc 9908 return packet_support (PACKET_QDisableRandomization) == PACKET_ENABLE;
03583c20
UW
9909}
9910
6b8edb51
PA
9911void
9912remote_target::extended_remote_disable_randomization (int val)
03583c20
UW
9913{
9914 struct remote_state *rs = get_remote_state ();
9915 char *reply;
9916
bba74b36
YQ
9917 xsnprintf (rs->buf, get_remote_packet_size (), "QDisableRandomization:%x",
9918 val);
03583c20 9919 putpkt (rs->buf);
b6bb3468 9920 reply = remote_get_noisy_reply ();
03583c20
UW
9921 if (*reply == '\0')
9922 error (_("Target does not support QDisableRandomization."));
9923 if (strcmp (reply, "OK") != 0)
9924 error (_("Bogus QDisableRandomization reply from target: %s"), reply);
9925}
9926
6b8edb51
PA
9927int
9928remote_target::extended_remote_run (const std::string &args)
2d717e4f
DJ
9929{
9930 struct remote_state *rs = get_remote_state ();
2d717e4f 9931 int len;
94585166 9932 const char *remote_exec_file = get_remote_exec_file ();
c906108c 9933
2d717e4f
DJ
9934 /* If the user has disabled vRun support, or we have detected that
9935 support is not available, do not try it. */
4082afcc 9936 if (packet_support (PACKET_vRun) == PACKET_DISABLE)
2d717e4f 9937 return -1;
424163ea 9938
2d717e4f
DJ
9939 strcpy (rs->buf, "vRun;");
9940 len = strlen (rs->buf);
c906108c 9941
2d717e4f
DJ
9942 if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ())
9943 error (_("Remote file name too long for run packet"));
9f1b45b0
TT
9944 len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf + len,
9945 strlen (remote_exec_file));
2d717e4f 9946
7c5ded6a 9947 if (!args.empty ())
2d717e4f 9948 {
2d717e4f 9949 int i;
2d717e4f 9950
773a1edc 9951 gdb_argv argv (args.c_str ());
2d717e4f
DJ
9952 for (i = 0; argv[i] != NULL; i++)
9953 {
9954 if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ())
9955 error (_("Argument list too long for run packet"));
9956 rs->buf[len++] = ';';
9f1b45b0
TT
9957 len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf + len,
9958 strlen (argv[i]));
2d717e4f 9959 }
2d717e4f
DJ
9960 }
9961
9962 rs->buf[len++] = '\0';
9963
9964 putpkt (rs->buf);
9965 getpkt (&rs->buf, &rs->buf_size, 0);
9966
4082afcc 9967 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun]))
2d717e4f 9968 {
4082afcc 9969 case PACKET_OK:
3405876a 9970 /* We have a wait response. All is well. */
2d717e4f 9971 return 0;
4082afcc
PA
9972 case PACKET_UNKNOWN:
9973 return -1;
9974 case PACKET_ERROR:
2d717e4f
DJ
9975 if (remote_exec_file[0] == '\0')
9976 error (_("Running the default executable on the remote target failed; "
9977 "try \"set remote exec-file\"?"));
9978 else
9979 error (_("Running \"%s\" on the remote target failed"),
9980 remote_exec_file);
4082afcc
PA
9981 default:
9982 gdb_assert_not_reached (_("bad switch"));
2d717e4f 9983 }
c906108c
SS
9984}
9985
0a2dde4a
SDJ
9986/* Helper function to send set/unset environment packets. ACTION is
9987 either "set" or "unset". PACKET is either "QEnvironmentHexEncoded"
9988 or "QEnvironmentUnsetVariable". VALUE is the variable to be
9989 sent. */
9990
6b8edb51
PA
9991void
9992remote_target::send_environment_packet (const char *action,
9993 const char *packet,
9994 const char *value)
0a2dde4a 9995{
6b8edb51
PA
9996 remote_state *rs = get_remote_state ();
9997
0a2dde4a
SDJ
9998 /* Convert the environment variable to an hex string, which
9999 is the best format to be transmitted over the wire. */
10000 std::string encoded_value = bin2hex ((const gdb_byte *) value,
10001 strlen (value));
10002
10003 xsnprintf (rs->buf, get_remote_packet_size (),
10004 "%s:%s", packet, encoded_value.c_str ());
10005
10006 putpkt (rs->buf);
10007 getpkt (&rs->buf, &rs->buf_size, 0);
10008 if (strcmp (rs->buf, "OK") != 0)
10009 warning (_("Unable to %s environment variable '%s' on remote."),
10010 action, value);
10011}
10012
10013/* Helper function to handle the QEnvironment* packets. */
10014
6b8edb51
PA
10015void
10016remote_target::extended_remote_environment_support ()
0a2dde4a 10017{
6b8edb51
PA
10018 remote_state *rs = get_remote_state ();
10019
0a2dde4a
SDJ
10020 if (packet_support (PACKET_QEnvironmentReset) != PACKET_DISABLE)
10021 {
10022 putpkt ("QEnvironmentReset");
10023 getpkt (&rs->buf, &rs->buf_size, 0);
10024 if (strcmp (rs->buf, "OK") != 0)
10025 warning (_("Unable to reset environment on remote."));
10026 }
10027
10028 gdb_environ *e = &current_inferior ()->environment;
10029
10030 if (packet_support (PACKET_QEnvironmentHexEncoded) != PACKET_DISABLE)
10031 for (const std::string &el : e->user_set_env ())
6b8edb51 10032 send_environment_packet ("set", "QEnvironmentHexEncoded",
0a2dde4a
SDJ
10033 el.c_str ());
10034
10035 if (packet_support (PACKET_QEnvironmentUnset) != PACKET_DISABLE)
10036 for (const std::string &el : e->user_unset_env ())
6b8edb51 10037 send_environment_packet ("unset", "QEnvironmentUnset", el.c_str ());
0a2dde4a
SDJ
10038}
10039
bc3b087d
SDJ
10040/* Helper function to set the current working directory for the
10041 inferior in the remote target. */
10042
6b8edb51
PA
10043void
10044remote_target::extended_remote_set_inferior_cwd ()
bc3b087d
SDJ
10045{
10046 if (packet_support (PACKET_QSetWorkingDir) != PACKET_DISABLE)
10047 {
10048 const char *inferior_cwd = get_inferior_cwd ();
6b8edb51 10049 remote_state *rs = get_remote_state ();
bc3b087d
SDJ
10050
10051 if (inferior_cwd != NULL)
10052 {
10053 std::string hexpath = bin2hex ((const gdb_byte *) inferior_cwd,
10054 strlen (inferior_cwd));
10055
10056 xsnprintf (rs->buf, get_remote_packet_size (),
10057 "QSetWorkingDir:%s", hexpath.c_str ());
10058 }
10059 else
10060 {
10061 /* An empty inferior_cwd means that the user wants us to
10062 reset the remote server's inferior's cwd. */
10063 xsnprintf (rs->buf, get_remote_packet_size (),
10064 "QSetWorkingDir:");
10065 }
10066
10067 putpkt (rs->buf);
10068 getpkt (&rs->buf, &rs->buf_size, 0);
10069 if (packet_ok (rs->buf,
10070 &remote_protocol_packets[PACKET_QSetWorkingDir])
10071 != PACKET_OK)
10072 error (_("\
10073Remote replied unexpectedly while setting the inferior's working\n\
10074directory: %s"),
10075 rs->buf);
10076
10077 }
10078}
10079
2d717e4f
DJ
10080/* In the extended protocol we want to be able to do things like
10081 "run" and have them basically work as expected. So we need
10082 a special create_inferior function. We support changing the
10083 executable file and the command line arguments, but not the
10084 environment. */
10085
f6ac5f3d
PA
10086void
10087extended_remote_target::create_inferior (const char *exec_file,
10088 const std::string &args,
10089 char **env, int from_tty)
43ff13b4 10090{
3405876a
PA
10091 int run_worked;
10092 char *stop_reply;
10093 struct remote_state *rs = get_remote_state ();
94585166 10094 const char *remote_exec_file = get_remote_exec_file ();
3405876a 10095
43ff13b4 10096 /* If running asynchronously, register the target file descriptor
23860348 10097 with the event loop. */
75c99385 10098 if (target_can_async_p ())
6a3753b3 10099 target_async (1);
43ff13b4 10100
03583c20 10101 /* Disable address space randomization if requested (and supported). */
f6ac5f3d 10102 if (supports_disable_randomization ())
03583c20
UW
10103 extended_remote_disable_randomization (disable_randomization);
10104
aefd8b33
SDJ
10105 /* If startup-with-shell is on, we inform gdbserver to start the
10106 remote inferior using a shell. */
10107 if (packet_support (PACKET_QStartupWithShell) != PACKET_DISABLE)
10108 {
10109 xsnprintf (rs->buf, get_remote_packet_size (),
10110 "QStartupWithShell:%d", startup_with_shell ? 1 : 0);
10111 putpkt (rs->buf);
10112 getpkt (&rs->buf, &rs->buf_size, 0);
10113 if (strcmp (rs->buf, "OK") != 0)
10114 error (_("\
10115Remote replied unexpectedly while setting startup-with-shell: %s"),
10116 rs->buf);
10117 }
10118
6b8edb51 10119 extended_remote_environment_support ();
0a2dde4a 10120
6b8edb51 10121 extended_remote_set_inferior_cwd ();
bc3b087d 10122
43ff13b4 10123 /* Now restart the remote server. */
3405876a
PA
10124 run_worked = extended_remote_run (args) != -1;
10125 if (!run_worked)
2d717e4f
DJ
10126 {
10127 /* vRun was not supported. Fail if we need it to do what the
10128 user requested. */
10129 if (remote_exec_file[0])
10130 error (_("Remote target does not support \"set remote exec-file\""));
7c5ded6a 10131 if (!args.empty ())
65e65158 10132 error (_("Remote target does not support \"set args\" or run ARGS"));
43ff13b4 10133
2d717e4f
DJ
10134 /* Fall back to "R". */
10135 extended_remote_restart ();
10136 }
424163ea 10137
3405876a
PA
10138 /* vRun's success return is a stop reply. */
10139 stop_reply = run_worked ? rs->buf : NULL;
10140 add_current_inferior_and_thread (stop_reply);
c0a2216e 10141
2d717e4f
DJ
10142 /* Get updated offsets, if the stub uses qOffsets. */
10143 get_offsets ();
2d717e4f 10144}
c906108c 10145\f
c5aa993b 10146
b775012e
LM
10147/* Given a location's target info BP_TGT and the packet buffer BUF, output
10148 the list of conditions (in agent expression bytecode format), if any, the
10149 target needs to evaluate. The output is placed into the packet buffer
bba74b36 10150 started from BUF and ended at BUF_END. */
b775012e
LM
10151
10152static int
10153remote_add_target_side_condition (struct gdbarch *gdbarch,
bba74b36
YQ
10154 struct bp_target_info *bp_tgt, char *buf,
10155 char *buf_end)
b775012e 10156{
3cde5c42 10157 if (bp_tgt->conditions.empty ())
b775012e
LM
10158 return 0;
10159
10160 buf += strlen (buf);
bba74b36 10161 xsnprintf (buf, buf_end - buf, "%s", ";");
b775012e
LM
10162 buf++;
10163
83621223 10164 /* Send conditions to the target. */
d538e36d 10165 for (agent_expr *aexpr : bp_tgt->conditions)
b775012e 10166 {
bba74b36 10167 xsnprintf (buf, buf_end - buf, "X%x,", aexpr->len);
b775012e 10168 buf += strlen (buf);
3cde5c42 10169 for (int i = 0; i < aexpr->len; ++i)
b775012e
LM
10170 buf = pack_hex_byte (buf, aexpr->buf[i]);
10171 *buf = '\0';
10172 }
b775012e
LM
10173 return 0;
10174}
10175
d3ce09f5
SS
10176static void
10177remote_add_target_side_commands (struct gdbarch *gdbarch,
10178 struct bp_target_info *bp_tgt, char *buf)
10179{
3cde5c42 10180 if (bp_tgt->tcommands.empty ())
d3ce09f5
SS
10181 return;
10182
10183 buf += strlen (buf);
10184
10185 sprintf (buf, ";cmds:%x,", bp_tgt->persist);
10186 buf += strlen (buf);
10187
10188 /* Concatenate all the agent expressions that are commands into the
10189 cmds parameter. */
df97be55 10190 for (agent_expr *aexpr : bp_tgt->tcommands)
d3ce09f5
SS
10191 {
10192 sprintf (buf, "X%x,", aexpr->len);
10193 buf += strlen (buf);
3cde5c42 10194 for (int i = 0; i < aexpr->len; ++i)
d3ce09f5
SS
10195 buf = pack_hex_byte (buf, aexpr->buf[i]);
10196 *buf = '\0';
10197 }
d3ce09f5
SS
10198}
10199
8181d85f
DJ
10200/* Insert a breakpoint. On targets that have software breakpoint
10201 support, we ask the remote target to do the work; on targets
10202 which don't, we insert a traditional memory breakpoint. */
c906108c 10203
f6ac5f3d
PA
10204int
10205remote_target::insert_breakpoint (struct gdbarch *gdbarch,
10206 struct bp_target_info *bp_tgt)
c906108c 10207{
d471ea57
AC
10208 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
10209 If it succeeds, then set the support to PACKET_ENABLE. If it
10210 fails, and the user has explicitly requested the Z support then
23860348 10211 report an error, otherwise, mark it disabled and go on. */
802188a7 10212
4082afcc 10213 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 10214 {
0d5ed153 10215 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 10216 struct remote_state *rs;
bba74b36 10217 char *p, *endbuf;
4fff2411 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
4fff2411
JZ
10224 rs = get_remote_state ();
10225 p = rs->buf;
bba74b36 10226 endbuf = rs->buf + get_remote_packet_size ();
802188a7 10227
96baa820
JM
10228 *(p++) = 'Z';
10229 *(p++) = '0';
10230 *(p++) = ',';
7c0f6dcc 10231 addr = (ULONGEST) remote_address_masked (addr);
8181d85f 10232 p += hexnumstr (p, addr);
579c6ad9 10233 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
802188a7 10234
f6ac5f3d 10235 if (supports_evaluation_of_breakpoint_conditions ())
bba74b36 10236 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 10237
f6ac5f3d 10238 if (can_run_breakpoint_commands ())
d3ce09f5
SS
10239 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10240
6d820c5c
DJ
10241 putpkt (rs->buf);
10242 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 10243
6d820c5c 10244 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
96baa820 10245 {
d471ea57
AC
10246 case PACKET_ERROR:
10247 return -1;
10248 case PACKET_OK:
10249 return 0;
10250 case PACKET_UNKNOWN:
10251 break;
96baa820
JM
10252 }
10253 }
c906108c 10254
0000e5cc
PA
10255 /* If this breakpoint has target-side commands but this stub doesn't
10256 support Z0 packets, throw error. */
3cde5c42 10257 if (!bp_tgt->tcommands.empty ())
0000e5cc
PA
10258 throw_error (NOT_SUPPORTED_ERROR, _("\
10259Target doesn't support breakpoints that have target side commands."));
10260
f6ac5f3d 10261 return memory_insert_breakpoint (this, gdbarch, bp_tgt);
c906108c
SS
10262}
10263
f6ac5f3d
PA
10264int
10265remote_target::remove_breakpoint (struct gdbarch *gdbarch,
10266 struct bp_target_info *bp_tgt,
10267 enum remove_bp_reason reason)
c906108c 10268{
8181d85f 10269 CORE_ADDR addr = bp_tgt->placed_address;
d01949b6 10270 struct remote_state *rs = get_remote_state ();
96baa820 10271
4082afcc 10272 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 10273 {
6d820c5c 10274 char *p = rs->buf;
bba74b36 10275 char *endbuf = rs->buf + get_remote_packet_size ();
802188a7 10276
28439a30
PA
10277 /* Make sure the remote is pointing at the right process, if
10278 necessary. */
10279 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10280 set_general_process ();
10281
96baa820
JM
10282 *(p++) = 'z';
10283 *(p++) = '0';
10284 *(p++) = ',';
10285
8181d85f
DJ
10286 addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
10287 p += hexnumstr (p, addr);
579c6ad9 10288 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
802188a7 10289
6d820c5c
DJ
10290 putpkt (rs->buf);
10291 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 10292
6d820c5c 10293 return (rs->buf[0] == 'E');
96baa820
JM
10294 }
10295
f6ac5f3d 10296 return memory_remove_breakpoint (this, gdbarch, bp_tgt, reason);
c906108c
SS
10297}
10298
f486487f 10299static enum Z_packet_type
d471ea57
AC
10300watchpoint_to_Z_packet (int type)
10301{
10302 switch (type)
10303 {
10304 case hw_write:
bb858e6a 10305 return Z_PACKET_WRITE_WP;
d471ea57
AC
10306 break;
10307 case hw_read:
bb858e6a 10308 return Z_PACKET_READ_WP;
d471ea57
AC
10309 break;
10310 case hw_access:
bb858e6a 10311 return Z_PACKET_ACCESS_WP;
d471ea57
AC
10312 break;
10313 default:
8e65ff28 10314 internal_error (__FILE__, __LINE__,
e2e0b3e5 10315 _("hw_bp_to_z: bad watchpoint type %d"), type);
d471ea57
AC
10316 }
10317}
10318
f6ac5f3d
PA
10319int
10320remote_target::insert_watchpoint (CORE_ADDR addr, int len,
10321 enum target_hw_bp_type type, struct expression *cond)
96baa820 10322{
d01949b6 10323 struct remote_state *rs = get_remote_state ();
bba74b36 10324 char *endbuf = rs->buf + get_remote_packet_size ();
e514a9d6 10325 char *p;
d471ea57 10326 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
96baa820 10327
4082afcc 10328 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
85d721b8 10329 return 1;
802188a7 10330
28439a30
PA
10331 /* Make sure the remote is pointing at the right process, if
10332 necessary. */
10333 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10334 set_general_process ();
10335
bba74b36 10336 xsnprintf (rs->buf, endbuf - rs->buf, "Z%x,", packet);
6d820c5c 10337 p = strchr (rs->buf, '\0');
96baa820
JM
10338 addr = remote_address_masked (addr);
10339 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 10340 xsnprintf (p, endbuf - p, ",%x", len);
802188a7 10341
6d820c5c
DJ
10342 putpkt (rs->buf);
10343 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 10344
6d820c5c 10345 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
10346 {
10347 case PACKET_ERROR:
d471ea57 10348 return -1;
85d721b8
PA
10349 case PACKET_UNKNOWN:
10350 return 1;
d471ea57
AC
10351 case PACKET_OK:
10352 return 0;
10353 }
8e65ff28 10354 internal_error (__FILE__, __LINE__,
e2e0b3e5 10355 _("remote_insert_watchpoint: reached end of function"));
96baa820
JM
10356}
10357
57810aa7 10358bool
f6ac5f3d
PA
10359remote_target::watchpoint_addr_within_range (CORE_ADDR addr,
10360 CORE_ADDR start, int length)
283002cf
MR
10361{
10362 CORE_ADDR diff = remote_address_masked (addr - start);
10363
10364 return diff < length;
10365}
10366
d471ea57 10367
f6ac5f3d
PA
10368int
10369remote_target::remove_watchpoint (CORE_ADDR addr, int len,
10370 enum target_hw_bp_type type, struct expression *cond)
96baa820 10371{
d01949b6 10372 struct remote_state *rs = get_remote_state ();
bba74b36 10373 char *endbuf = rs->buf + get_remote_packet_size ();
e514a9d6 10374 char *p;
d471ea57
AC
10375 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
10376
4082afcc 10377 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
5cffb350 10378 return -1;
802188a7 10379
28439a30
PA
10380 /* Make sure the remote is pointing at the right process, if
10381 necessary. */
10382 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10383 set_general_process ();
10384
bba74b36 10385 xsnprintf (rs->buf, endbuf - rs->buf, "z%x,", packet);
6d820c5c 10386 p = strchr (rs->buf, '\0');
96baa820
JM
10387 addr = remote_address_masked (addr);
10388 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 10389 xsnprintf (p, endbuf - p, ",%x", len);
6d820c5c
DJ
10390 putpkt (rs->buf);
10391 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 10392
6d820c5c 10393 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
10394 {
10395 case PACKET_ERROR:
10396 case PACKET_UNKNOWN:
10397 return -1;
10398 case PACKET_OK:
10399 return 0;
10400 }
8e65ff28 10401 internal_error (__FILE__, __LINE__,
e2e0b3e5 10402 _("remote_remove_watchpoint: reached end of function"));
96baa820
JM
10403}
10404
3c3bea1c 10405
501eef12 10406int remote_hw_watchpoint_limit = -1;
480a3f21 10407int remote_hw_watchpoint_length_limit = -1;
501eef12 10408int remote_hw_breakpoint_limit = -1;
d471ea57 10409
f6ac5f3d
PA
10410int
10411remote_target::region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
480a3f21
PW
10412{
10413 if (remote_hw_watchpoint_length_limit == 0)
10414 return 0;
10415 else if (remote_hw_watchpoint_length_limit < 0)
10416 return 1;
10417 else if (len <= remote_hw_watchpoint_length_limit)
10418 return 1;
10419 else
10420 return 0;
10421}
10422
f6ac5f3d
PA
10423int
10424remote_target::can_use_hw_breakpoint (enum bptype type, int cnt, int ot)
96baa820 10425{
3c3bea1c
GS
10426 if (type == bp_hardware_breakpoint)
10427 {
10428 if (remote_hw_breakpoint_limit == 0)
10429 return 0;
501eef12
AC
10430 else if (remote_hw_breakpoint_limit < 0)
10431 return 1;
3c3bea1c
GS
10432 else if (cnt <= remote_hw_breakpoint_limit)
10433 return 1;
10434 }
10435 else
10436 {
10437 if (remote_hw_watchpoint_limit == 0)
10438 return 0;
501eef12
AC
10439 else if (remote_hw_watchpoint_limit < 0)
10440 return 1;
3c3bea1c
GS
10441 else if (ot)
10442 return -1;
10443 else if (cnt <= remote_hw_watchpoint_limit)
10444 return 1;
10445 }
10446 return -1;
10447}
10448
f7e6eed5
PA
10449/* The to_stopped_by_sw_breakpoint method of target remote. */
10450
57810aa7 10451bool
f6ac5f3d 10452remote_target::stopped_by_sw_breakpoint ()
f7e6eed5 10453{
799a2abe 10454 struct thread_info *thread = inferior_thread ();
f7e6eed5 10455
799a2abe 10456 return (thread->priv != NULL
7aabaf9d
SM
10457 && (get_remote_thread_info (thread)->stop_reason
10458 == TARGET_STOPPED_BY_SW_BREAKPOINT));
f7e6eed5
PA
10459}
10460
10461/* The to_supports_stopped_by_sw_breakpoint method of target
10462 remote. */
10463
57810aa7 10464bool
f6ac5f3d 10465remote_target::supports_stopped_by_sw_breakpoint ()
f7e6eed5 10466{
f7e6eed5
PA
10467 return (packet_support (PACKET_swbreak_feature) == PACKET_ENABLE);
10468}
10469
10470/* The to_stopped_by_hw_breakpoint method of target remote. */
10471
57810aa7 10472bool
f6ac5f3d 10473remote_target::stopped_by_hw_breakpoint ()
f7e6eed5 10474{
799a2abe 10475 struct thread_info *thread = inferior_thread ();
f7e6eed5 10476
799a2abe 10477 return (thread->priv != NULL
7aabaf9d
SM
10478 && (get_remote_thread_info (thread)->stop_reason
10479 == TARGET_STOPPED_BY_HW_BREAKPOINT));
f7e6eed5
PA
10480}
10481
10482/* The to_supports_stopped_by_hw_breakpoint method of target
10483 remote. */
10484
57810aa7 10485bool
f6ac5f3d 10486remote_target::supports_stopped_by_hw_breakpoint ()
f7e6eed5 10487{
f7e6eed5
PA
10488 return (packet_support (PACKET_hwbreak_feature) == PACKET_ENABLE);
10489}
10490
57810aa7 10491bool
f6ac5f3d 10492remote_target::stopped_by_watchpoint ()
3c3bea1c 10493{
799a2abe 10494 struct thread_info *thread = inferior_thread ();
ee154bee 10495
799a2abe 10496 return (thread->priv != NULL
7aabaf9d
SM
10497 && (get_remote_thread_info (thread)->stop_reason
10498 == TARGET_STOPPED_BY_WATCHPOINT));
3c3bea1c
GS
10499}
10500
57810aa7 10501bool
f6ac5f3d 10502remote_target::stopped_data_address (CORE_ADDR *addr_p)
3c3bea1c 10503{
799a2abe 10504 struct thread_info *thread = inferior_thread ();
a744cf53 10505
799a2abe 10506 if (thread->priv != NULL
7aabaf9d
SM
10507 && (get_remote_thread_info (thread)->stop_reason
10508 == TARGET_STOPPED_BY_WATCHPOINT))
4aa7a7f5 10509 {
7aabaf9d 10510 *addr_p = get_remote_thread_info (thread)->watch_data_address;
57810aa7 10511 return true;
4aa7a7f5
JJ
10512 }
10513
57810aa7 10514 return false;
3c3bea1c
GS
10515}
10516
10517
f6ac5f3d
PA
10518int
10519remote_target::insert_hw_breakpoint (struct gdbarch *gdbarch,
10520 struct bp_target_info *bp_tgt)
3c3bea1c 10521{
0d5ed153 10522 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 10523 struct remote_state *rs;
bba74b36 10524 char *p, *endbuf;
dd61ec5c 10525 char *message;
3c3bea1c 10526
4082afcc 10527 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 10528 return -1;
2bc416ba 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
4fff2411
JZ
10535 rs = get_remote_state ();
10536 p = rs->buf;
bba74b36 10537 endbuf = rs->buf + get_remote_packet_size ();
4fff2411 10538
96baa820
JM
10539 *(p++) = 'Z';
10540 *(p++) = '1';
10541 *(p++) = ',';
802188a7 10542
0d5ed153 10543 addr = remote_address_masked (addr);
96baa820 10544 p += hexnumstr (p, (ULONGEST) addr);
579c6ad9 10545 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
96baa820 10546
f6ac5f3d 10547 if (supports_evaluation_of_breakpoint_conditions ())
bba74b36 10548 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 10549
f6ac5f3d 10550 if (can_run_breakpoint_commands ())
d3ce09f5
SS
10551 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10552
6d820c5c
DJ
10553 putpkt (rs->buf);
10554 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 10555
6d820c5c 10556 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
10557 {
10558 case PACKET_ERROR:
dd61ec5c
MW
10559 if (rs->buf[1] == '.')
10560 {
10561 message = strchr (rs->buf + 2, '.');
10562 if (message)
0316657e 10563 error (_("Remote failure reply: %s"), message + 1);
dd61ec5c
MW
10564 }
10565 return -1;
d471ea57
AC
10566 case PACKET_UNKNOWN:
10567 return -1;
10568 case PACKET_OK:
10569 return 0;
10570 }
8e65ff28 10571 internal_error (__FILE__, __LINE__,
e2e0b3e5 10572 _("remote_insert_hw_breakpoint: reached end of function"));
96baa820
JM
10573}
10574
d471ea57 10575
f6ac5f3d
PA
10576int
10577remote_target::remove_hw_breakpoint (struct gdbarch *gdbarch,
10578 struct bp_target_info *bp_tgt)
96baa820 10579{
8181d85f 10580 CORE_ADDR addr;
d01949b6 10581 struct remote_state *rs = get_remote_state ();
6d820c5c 10582 char *p = rs->buf;
bba74b36 10583 char *endbuf = rs->buf + get_remote_packet_size ();
c8189ed1 10584
4082afcc 10585 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 10586 return -1;
802188a7 10587
28439a30
PA
10588 /* Make sure the remote is pointing at the right process, if
10589 necessary. */
10590 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10591 set_general_process ();
10592
96baa820
JM
10593 *(p++) = 'z';
10594 *(p++) = '1';
10595 *(p++) = ',';
802188a7 10596
8181d85f 10597 addr = remote_address_masked (bp_tgt->placed_address);
96baa820 10598 p += hexnumstr (p, (ULONGEST) addr);
579c6ad9 10599 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
96baa820 10600
6d820c5c
DJ
10601 putpkt (rs->buf);
10602 getpkt (&rs->buf, &rs->buf_size, 0);
802188a7 10603
6d820c5c 10604 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
10605 {
10606 case PACKET_ERROR:
10607 case PACKET_UNKNOWN:
10608 return -1;
10609 case PACKET_OK:
10610 return 0;
10611 }
8e65ff28 10612 internal_error (__FILE__, __LINE__,
e2e0b3e5 10613 _("remote_remove_hw_breakpoint: reached end of function"));
96baa820 10614}
96baa820 10615
4a5e7a5b
PA
10616/* Verify memory using the "qCRC:" request. */
10617
f6ac5f3d
PA
10618int
10619remote_target::verify_memory (const gdb_byte *data, CORE_ADDR lma, ULONGEST size)
4a5e7a5b
PA
10620{
10621 struct remote_state *rs = get_remote_state ();
10622 unsigned long host_crc, target_crc;
10623 char *tmp;
10624
936d2992
PA
10625 /* It doesn't make sense to use qCRC if the remote target is
10626 connected but not running. */
10627 if (target_has_execution && packet_support (PACKET_qCRC) != PACKET_DISABLE)
10628 {
10629 enum packet_result result;
28439a30 10630
936d2992
PA
10631 /* Make sure the remote is pointing at the right process. */
10632 set_general_process ();
4a5e7a5b 10633
936d2992
PA
10634 /* FIXME: assumes lma can fit into long. */
10635 xsnprintf (rs->buf, get_remote_packet_size (), "qCRC:%lx,%lx",
10636 (long) lma, (long) size);
10637 putpkt (rs->buf);
4a5e7a5b 10638
936d2992
PA
10639 /* Be clever; compute the host_crc before waiting for target
10640 reply. */
10641 host_crc = xcrc32 (data, size, 0xffffffff);
10642
10643 getpkt (&rs->buf, &rs->buf_size, 0);
4a5e7a5b 10644
936d2992
PA
10645 result = packet_ok (rs->buf,
10646 &remote_protocol_packets[PACKET_qCRC]);
10647 if (result == PACKET_ERROR)
10648 return -1;
10649 else if (result == PACKET_OK)
10650 {
10651 for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
10652 target_crc = target_crc * 16 + fromhex (*tmp);
4a5e7a5b 10653
936d2992
PA
10654 return (host_crc == target_crc);
10655 }
10656 }
4a5e7a5b 10657
f6ac5f3d 10658 return simple_verify_memory (this, data, lma, size);
4a5e7a5b
PA
10659}
10660
c906108c
SS
10661/* compare-sections command
10662
10663 With no arguments, compares each loadable section in the exec bfd
10664 with the same memory range on the target, and reports mismatches.
4a5e7a5b 10665 Useful for verifying the image on the target against the exec file. */
e514a9d6 10666
c906108c 10667static void
ac88e2de 10668compare_sections_command (const char *args, int from_tty)
c906108c
SS
10669{
10670 asection *s;
ce359b09 10671 const char *sectname;
c906108c
SS
10672 bfd_size_type size;
10673 bfd_vma lma;
10674 int matched = 0;
10675 int mismatched = 0;
4a5e7a5b 10676 int res;
95cf3b38 10677 int read_only = 0;
c906108c
SS
10678
10679 if (!exec_bfd)
8a3fe4f8 10680 error (_("command cannot be used without an exec file"));
c906108c 10681
95cf3b38
DT
10682 if (args != NULL && strcmp (args, "-r") == 0)
10683 {
10684 read_only = 1;
10685 args = NULL;
10686 }
10687
c5aa993b 10688 for (s = exec_bfd->sections; s; s = s->next)
c906108c
SS
10689 {
10690 if (!(s->flags & SEC_LOAD))
0df8b418 10691 continue; /* Skip non-loadable section. */
c906108c 10692
95cf3b38
DT
10693 if (read_only && (s->flags & SEC_READONLY) == 0)
10694 continue; /* Skip writeable sections */
10695
2c500098 10696 size = bfd_get_section_size (s);
c906108c 10697 if (size == 0)
0df8b418 10698 continue; /* Skip zero-length section. */
c906108c 10699
ce359b09 10700 sectname = bfd_get_section_name (exec_bfd, s);
c906108c 10701 if (args && strcmp (args, sectname) != 0)
0df8b418 10702 continue; /* Not the section selected by user. */
c906108c 10703
0df8b418 10704 matched = 1; /* Do this section. */
c906108c 10705 lma = s->lma;
c906108c 10706
b80406ac
TT
10707 gdb::byte_vector sectdata (size);
10708 bfd_get_section_contents (exec_bfd, s, sectdata.data (), 0, size);
c906108c 10709
b80406ac 10710 res = target_verify_memory (sectdata.data (), lma, size);
4a5e7a5b
PA
10711
10712 if (res == -1)
5af949e3 10713 error (_("target memory fault, section %s, range %s -- %s"), sectname,
f5656ead
TT
10714 paddress (target_gdbarch (), lma),
10715 paddress (target_gdbarch (), lma + size));
c906108c 10716
5af949e3 10717 printf_filtered ("Section %s, range %s -- %s: ", sectname,
f5656ead
TT
10718 paddress (target_gdbarch (), lma),
10719 paddress (target_gdbarch (), lma + size));
4a5e7a5b 10720 if (res)
c906108c
SS
10721 printf_filtered ("matched.\n");
10722 else
c5aa993b
JM
10723 {
10724 printf_filtered ("MIS-MATCHED!\n");
10725 mismatched++;
10726 }
c906108c
SS
10727 }
10728 if (mismatched > 0)
936d2992 10729 warning (_("One or more sections of the target image does not match\n\
8a3fe4f8 10730the loaded file\n"));
c906108c 10731 if (args && !matched)
a3f17187 10732 printf_filtered (_("No loaded section named '%s'.\n"), args);
c906108c
SS
10733}
10734
0e7f50da
UW
10735/* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
10736 into remote target. The number of bytes written to the remote
10737 target is returned, or -1 for error. */
10738
6b8edb51
PA
10739target_xfer_status
10740remote_target::remote_write_qxfer (const char *object_name,
10741 const char *annex, const gdb_byte *writebuf,
10742 ULONGEST offset, LONGEST len,
10743 ULONGEST *xfered_len,
10744 struct packet_config *packet)
0e7f50da
UW
10745{
10746 int i, buf_len;
10747 ULONGEST n;
0e7f50da
UW
10748 struct remote_state *rs = get_remote_state ();
10749 int max_size = get_memory_write_packet_size ();
10750
7cc244de 10751 if (packet_config_support (packet) == PACKET_DISABLE)
2ed4b548 10752 return TARGET_XFER_E_IO;
0e7f50da
UW
10753
10754 /* Insert header. */
10755 i = snprintf (rs->buf, max_size,
10756 "qXfer:%s:write:%s:%s:",
10757 object_name, annex ? annex : "",
10758 phex_nz (offset, sizeof offset));
10759 max_size -= (i + 1);
10760
10761 /* Escape as much data as fits into rs->buf. */
10762 buf_len = remote_escape_output
124e13d9 10763 (writebuf, len, 1, (gdb_byte *) rs->buf + i, &max_size, max_size);
0e7f50da
UW
10764
10765 if (putpkt_binary (rs->buf, i + buf_len) < 0
10766 || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0
10767 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 10768 return TARGET_XFER_E_IO;
0e7f50da
UW
10769
10770 unpack_varlen_hex (rs->buf, &n);
9b409511
YQ
10771
10772 *xfered_len = n;
92ffd475 10773 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
0e7f50da
UW
10774}
10775
0876f84a
DJ
10776/* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
10777 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
10778 number of bytes read is returned, or 0 for EOF, or -1 for error.
10779 The number of bytes read may be less than LEN without indicating an
10780 EOF. PACKET is checked and updated to indicate whether the remote
10781 target supports this object. */
10782
6b8edb51
PA
10783target_xfer_status
10784remote_target::remote_read_qxfer (const char *object_name,
10785 const char *annex,
10786 gdb_byte *readbuf, ULONGEST offset,
10787 LONGEST len,
10788 ULONGEST *xfered_len,
10789 struct packet_config *packet)
0876f84a 10790{
0876f84a 10791 struct remote_state *rs = get_remote_state ();
0876f84a
DJ
10792 LONGEST i, n, packet_len;
10793
7cc244de 10794 if (packet_config_support (packet) == PACKET_DISABLE)
2ed4b548 10795 return TARGET_XFER_E_IO;
0876f84a
DJ
10796
10797 /* Check whether we've cached an end-of-object packet that matches
10798 this request. */
8e88304f 10799 if (rs->finished_object)
0876f84a 10800 {
8e88304f
TT
10801 if (strcmp (object_name, rs->finished_object) == 0
10802 && strcmp (annex ? annex : "", rs->finished_annex) == 0
10803 && offset == rs->finished_offset)
9b409511
YQ
10804 return TARGET_XFER_EOF;
10805
0876f84a
DJ
10806
10807 /* Otherwise, we're now reading something different. Discard
10808 the cache. */
8e88304f
TT
10809 xfree (rs->finished_object);
10810 xfree (rs->finished_annex);
10811 rs->finished_object = NULL;
10812 rs->finished_annex = NULL;
0876f84a
DJ
10813 }
10814
10815 /* Request only enough to fit in a single packet. The actual data
10816 may not, since we don't know how much of it will need to be escaped;
10817 the target is free to respond with slightly less data. We subtract
10818 five to account for the response type and the protocol frame. */
768adc05 10819 n = std::min<LONGEST> (get_remote_packet_size () - 5, len);
0876f84a
DJ
10820 snprintf (rs->buf, get_remote_packet_size () - 4, "qXfer:%s:read:%s:%s,%s",
10821 object_name, annex ? annex : "",
10822 phex_nz (offset, sizeof offset),
10823 phex_nz (n, sizeof n));
10824 i = putpkt (rs->buf);
10825 if (i < 0)
2ed4b548 10826 return TARGET_XFER_E_IO;
0876f84a
DJ
10827
10828 rs->buf[0] = '\0';
10829 packet_len = getpkt_sane (&rs->buf, &rs->buf_size, 0);
10830 if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 10831 return TARGET_XFER_E_IO;
0876f84a
DJ
10832
10833 if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
10834 error (_("Unknown remote qXfer reply: %s"), rs->buf);
10835
10836 /* 'm' means there is (or at least might be) more data after this
10837 batch. That does not make sense unless there's at least one byte
10838 of data in this reply. */
10839 if (rs->buf[0] == 'm' && packet_len == 1)
10840 error (_("Remote qXfer reply contained no data."));
10841
10842 /* Got some data. */
bc20a4af
PA
10843 i = remote_unescape_input ((gdb_byte *) rs->buf + 1,
10844 packet_len - 1, readbuf, n);
0876f84a
DJ
10845
10846 /* 'l' is an EOF marker, possibly including a final block of data,
0e7f50da
UW
10847 or possibly empty. If we have the final block of a non-empty
10848 object, record this fact to bypass a subsequent partial read. */
10849 if (rs->buf[0] == 'l' && offset + i > 0)
0876f84a 10850 {
8e88304f
TT
10851 rs->finished_object = xstrdup (object_name);
10852 rs->finished_annex = xstrdup (annex ? annex : "");
10853 rs->finished_offset = offset + i;
0876f84a
DJ
10854 }
10855
9b409511
YQ
10856 if (i == 0)
10857 return TARGET_XFER_EOF;
10858 else
10859 {
10860 *xfered_len = i;
10861 return TARGET_XFER_OK;
10862 }
0876f84a
DJ
10863}
10864
f6ac5f3d
PA
10865enum target_xfer_status
10866remote_target::xfer_partial (enum target_object object,
10867 const char *annex, gdb_byte *readbuf,
10868 const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
10869 ULONGEST *xfered_len)
c906108c 10870{
82f73884 10871 struct remote_state *rs;
c906108c 10872 int i;
6d820c5c 10873 char *p2;
1e3ff5ad 10874 char query_type;
124e13d9 10875 int unit_size = gdbarch_addressable_memory_unit_size (target_gdbarch ());
c906108c 10876
e6e4e701 10877 set_remote_traceframe ();
82f73884
PA
10878 set_general_thread (inferior_ptid);
10879
10880 rs = get_remote_state ();
10881
b2182ed2 10882 /* Handle memory using the standard memory routines. */
21e3b9b9
DJ
10883 if (object == TARGET_OBJECT_MEMORY)
10884 {
2d717e4f
DJ
10885 /* If the remote target is connected but not running, we should
10886 pass this request down to a lower stratum (e.g. the executable
10887 file). */
10888 if (!target_has_execution)
9b409511 10889 return TARGET_XFER_EOF;
2d717e4f 10890
21e3b9b9 10891 if (writebuf != NULL)
124e13d9
SM
10892 return remote_write_bytes (offset, writebuf, len, unit_size,
10893 xfered_len);
21e3b9b9 10894 else
6b8edb51 10895 return remote_read_bytes (offset, readbuf, len, unit_size,
124e13d9 10896 xfered_len);
21e3b9b9
DJ
10897 }
10898
0df8b418 10899 /* Handle SPU memory using qxfer packets. */
0e7f50da
UW
10900 if (object == TARGET_OBJECT_SPU)
10901 {
10902 if (readbuf)
f6ac5f3d 10903 return remote_read_qxfer ("spu", annex, readbuf, offset, len,
9b409511
YQ
10904 xfered_len, &remote_protocol_packets
10905 [PACKET_qXfer_spu_read]);
0e7f50da 10906 else
f6ac5f3d 10907 return remote_write_qxfer ("spu", annex, writebuf, offset, len,
9b409511
YQ
10908 xfered_len, &remote_protocol_packets
10909 [PACKET_qXfer_spu_write]);
0e7f50da
UW
10910 }
10911
4aa995e1
PA
10912 /* Handle extra signal info using qxfer packets. */
10913 if (object == TARGET_OBJECT_SIGNAL_INFO)
10914 {
10915 if (readbuf)
f6ac5f3d 10916 return remote_read_qxfer ("siginfo", annex, readbuf, offset, len,
9b409511 10917 xfered_len, &remote_protocol_packets
4aa995e1
PA
10918 [PACKET_qXfer_siginfo_read]);
10919 else
f6ac5f3d 10920 return remote_write_qxfer ("siginfo", annex,
9b409511 10921 writebuf, offset, len, xfered_len,
4aa995e1
PA
10922 &remote_protocol_packets
10923 [PACKET_qXfer_siginfo_write]);
10924 }
10925
0fb4aa4b
PA
10926 if (object == TARGET_OBJECT_STATIC_TRACE_DATA)
10927 {
10928 if (readbuf)
f6ac5f3d 10929 return remote_read_qxfer ("statictrace", annex,
9b409511 10930 readbuf, offset, len, xfered_len,
0fb4aa4b
PA
10931 &remote_protocol_packets
10932 [PACKET_qXfer_statictrace_read]);
10933 else
2ed4b548 10934 return TARGET_XFER_E_IO;
0fb4aa4b
PA
10935 }
10936
a76d924d
DJ
10937 /* Only handle flash writes. */
10938 if (writebuf != NULL)
10939 {
a76d924d
DJ
10940 switch (object)
10941 {
10942 case TARGET_OBJECT_FLASH:
6b8edb51 10943 return remote_flash_write (offset, len, xfered_len,
9b409511 10944 writebuf);
a76d924d
DJ
10945
10946 default:
2ed4b548 10947 return TARGET_XFER_E_IO;
a76d924d
DJ
10948 }
10949 }
4b8a223f 10950
1e3ff5ad
AC
10951 /* Map pre-existing objects onto letters. DO NOT do this for new
10952 objects!!! Instead specify new query packets. */
10953 switch (object)
c906108c 10954 {
1e3ff5ad
AC
10955 case TARGET_OBJECT_AVR:
10956 query_type = 'R';
10957 break;
802188a7
RM
10958
10959 case TARGET_OBJECT_AUXV:
0876f84a 10960 gdb_assert (annex == NULL);
f6ac5f3d 10961 return remote_read_qxfer ("auxv", annex, readbuf, offset, len,
9b409511 10962 xfered_len,
0876f84a 10963 &remote_protocol_packets[PACKET_qXfer_auxv]);
802188a7 10964
23181151
DJ
10965 case TARGET_OBJECT_AVAILABLE_FEATURES:
10966 return remote_read_qxfer
f6ac5f3d 10967 ("features", annex, readbuf, offset, len, xfered_len,
23181151
DJ
10968 &remote_protocol_packets[PACKET_qXfer_features]);
10969
cfa9d6d9
DJ
10970 case TARGET_OBJECT_LIBRARIES:
10971 return remote_read_qxfer
f6ac5f3d 10972 ("libraries", annex, readbuf, offset, len, xfered_len,
cfa9d6d9
DJ
10973 &remote_protocol_packets[PACKET_qXfer_libraries]);
10974
2268b414
JK
10975 case TARGET_OBJECT_LIBRARIES_SVR4:
10976 return remote_read_qxfer
f6ac5f3d 10977 ("libraries-svr4", annex, readbuf, offset, len, xfered_len,
2268b414
JK
10978 &remote_protocol_packets[PACKET_qXfer_libraries_svr4]);
10979
fd79ecee
DJ
10980 case TARGET_OBJECT_MEMORY_MAP:
10981 gdb_assert (annex == NULL);
f6ac5f3d 10982 return remote_read_qxfer ("memory-map", annex, readbuf, offset, len,
9b409511 10983 xfered_len,
fd79ecee
DJ
10984 &remote_protocol_packets[PACKET_qXfer_memory_map]);
10985
07e059b5
VP
10986 case TARGET_OBJECT_OSDATA:
10987 /* Should only get here if we're connected. */
5d93a237 10988 gdb_assert (rs->remote_desc);
07e059b5 10989 return remote_read_qxfer
f6ac5f3d 10990 ("osdata", annex, readbuf, offset, len, xfered_len,
07e059b5
VP
10991 &remote_protocol_packets[PACKET_qXfer_osdata]);
10992
dc146f7c
VP
10993 case TARGET_OBJECT_THREADS:
10994 gdb_assert (annex == NULL);
f6ac5f3d 10995 return remote_read_qxfer ("threads", annex, readbuf, offset, len,
9b409511 10996 xfered_len,
dc146f7c
VP
10997 &remote_protocol_packets[PACKET_qXfer_threads]);
10998
b3b9301e
PA
10999 case TARGET_OBJECT_TRACEFRAME_INFO:
11000 gdb_assert (annex == NULL);
11001 return remote_read_qxfer
f6ac5f3d 11002 ("traceframe-info", annex, readbuf, offset, len, xfered_len,
b3b9301e 11003 &remote_protocol_packets[PACKET_qXfer_traceframe_info]);
78d85199
YQ
11004
11005 case TARGET_OBJECT_FDPIC:
f6ac5f3d 11006 return remote_read_qxfer ("fdpic", annex, readbuf, offset, len,
9b409511 11007 xfered_len,
78d85199 11008 &remote_protocol_packets[PACKET_qXfer_fdpic]);
169081d0
TG
11009
11010 case TARGET_OBJECT_OPENVMS_UIB:
f6ac5f3d 11011 return remote_read_qxfer ("uib", annex, readbuf, offset, len,
9b409511 11012 xfered_len,
169081d0
TG
11013 &remote_protocol_packets[PACKET_qXfer_uib]);
11014
9accd112 11015 case TARGET_OBJECT_BTRACE:
f6ac5f3d 11016 return remote_read_qxfer ("btrace", annex, readbuf, offset, len,
9b409511 11017 xfered_len,
9accd112
MM
11018 &remote_protocol_packets[PACKET_qXfer_btrace]);
11019
f4abbc16 11020 case TARGET_OBJECT_BTRACE_CONF:
f6ac5f3d 11021 return remote_read_qxfer ("btrace-conf", annex, readbuf, offset,
f4abbc16
MM
11022 len, xfered_len,
11023 &remote_protocol_packets[PACKET_qXfer_btrace_conf]);
11024
c78fa86a 11025 case TARGET_OBJECT_EXEC_FILE:
f6ac5f3d 11026 return remote_read_qxfer ("exec-file", annex, readbuf, offset,
c78fa86a
GB
11027 len, xfered_len,
11028 &remote_protocol_packets[PACKET_qXfer_exec_file]);
11029
1e3ff5ad 11030 default:
2ed4b548 11031 return TARGET_XFER_E_IO;
c906108c
SS
11032 }
11033
0df8b418 11034 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
24b06219 11035 large enough let the caller deal with it. */
ea9c271d 11036 if (len < get_remote_packet_size ())
2ed4b548 11037 return TARGET_XFER_E_IO;
ea9c271d 11038 len = get_remote_packet_size ();
1e3ff5ad 11039
23860348 11040 /* Except for querying the minimum buffer size, target must be open. */
5d93a237 11041 if (!rs->remote_desc)
8a3fe4f8 11042 error (_("remote query is only available after target open"));
c906108c 11043
1e3ff5ad 11044 gdb_assert (annex != NULL);
4b8a223f 11045 gdb_assert (readbuf != NULL);
c906108c 11046
6d820c5c 11047 p2 = rs->buf;
c906108c
SS
11048 *p2++ = 'q';
11049 *p2++ = query_type;
11050
23860348
MS
11051 /* We used one buffer char for the remote protocol q command and
11052 another for the query type. As the remote protocol encapsulation
11053 uses 4 chars plus one extra in case we are debugging
11054 (remote_debug), we have PBUFZIZ - 7 left to pack the query
11055 string. */
c906108c 11056 i = 0;
ea9c271d 11057 while (annex[i] && (i < (get_remote_packet_size () - 8)))
c906108c 11058 {
1e3ff5ad
AC
11059 /* Bad caller may have sent forbidden characters. */
11060 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
11061 *p2++ = annex[i];
c906108c
SS
11062 i++;
11063 }
1e3ff5ad
AC
11064 *p2 = '\0';
11065 gdb_assert (annex[i] == '\0');
c906108c 11066
6d820c5c 11067 i = putpkt (rs->buf);
c5aa993b 11068 if (i < 0)
2ed4b548 11069 return TARGET_XFER_E_IO;
c906108c 11070
6d820c5c
DJ
11071 getpkt (&rs->buf, &rs->buf_size, 0);
11072 strcpy ((char *) readbuf, rs->buf);
c906108c 11073
9b409511 11074 *xfered_len = strlen ((char *) readbuf);
92ffd475 11075 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
c906108c
SS
11076}
11077
09c98b44
DB
11078/* Implementation of to_get_memory_xfer_limit. */
11079
f6ac5f3d
PA
11080ULONGEST
11081remote_target::get_memory_xfer_limit ()
09c98b44
DB
11082{
11083 return get_memory_write_packet_size ();
11084}
11085
f6ac5f3d
PA
11086int
11087remote_target::search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
11088 const gdb_byte *pattern, ULONGEST pattern_len,
11089 CORE_ADDR *found_addrp)
08388c79 11090{
f5656ead 11091 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
08388c79
DE
11092 struct remote_state *rs = get_remote_state ();
11093 int max_size = get_memory_write_packet_size ();
11094 struct packet_config *packet =
11095 &remote_protocol_packets[PACKET_qSearch_memory];
0df8b418
MS
11096 /* Number of packet bytes used to encode the pattern;
11097 this could be more than PATTERN_LEN due to escape characters. */
08388c79 11098 int escaped_pattern_len;
0df8b418 11099 /* Amount of pattern that was encodable in the packet. */
08388c79
DE
11100 int used_pattern_len;
11101 int i;
11102 int found;
11103 ULONGEST found_addr;
11104
7cc244de
PA
11105 /* Don't go to the target if we don't have to. This is done before
11106 checking packet_config_support to avoid the possibility that a
11107 success for this edge case means the facility works in
11108 general. */
08388c79
DE
11109 if (pattern_len > search_space_len)
11110 return 0;
11111 if (pattern_len == 0)
11112 {
11113 *found_addrp = start_addr;
11114 return 1;
11115 }
11116
11117 /* If we already know the packet isn't supported, fall back to the simple
11118 way of searching memory. */
11119
4082afcc 11120 if (packet_config_support (packet) == PACKET_DISABLE)
08388c79
DE
11121 {
11122 /* Target doesn't provided special support, fall back and use the
11123 standard support (copy memory and do the search here). */
f6ac5f3d 11124 return simple_search_memory (this, start_addr, search_space_len,
08388c79
DE
11125 pattern, pattern_len, found_addrp);
11126 }
11127
28439a30
PA
11128 /* Make sure the remote is pointing at the right process. */
11129 set_general_process ();
11130
08388c79
DE
11131 /* Insert header. */
11132 i = snprintf (rs->buf, max_size,
11133 "qSearch:memory:%s;%s;",
5af949e3 11134 phex_nz (start_addr, addr_size),
08388c79
DE
11135 phex_nz (search_space_len, sizeof (search_space_len)));
11136 max_size -= (i + 1);
11137
11138 /* Escape as much data as fits into rs->buf. */
11139 escaped_pattern_len =
124e13d9 11140 remote_escape_output (pattern, pattern_len, 1, (gdb_byte *) rs->buf + i,
08388c79
DE
11141 &used_pattern_len, max_size);
11142
11143 /* Bail if the pattern is too large. */
11144 if (used_pattern_len != pattern_len)
9b20d036 11145 error (_("Pattern is too large to transmit to remote target."));
08388c79
DE
11146
11147 if (putpkt_binary (rs->buf, i + escaped_pattern_len) < 0
11148 || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0
11149 || packet_ok (rs->buf, packet) != PACKET_OK)
11150 {
11151 /* The request may not have worked because the command is not
11152 supported. If so, fall back to the simple way. */
7cc244de 11153 if (packet_config_support (packet) == PACKET_DISABLE)
08388c79 11154 {
f6ac5f3d 11155 return simple_search_memory (this, start_addr, search_space_len,
08388c79
DE
11156 pattern, pattern_len, found_addrp);
11157 }
11158 return -1;
11159 }
11160
11161 if (rs->buf[0] == '0')
11162 found = 0;
11163 else if (rs->buf[0] == '1')
11164 {
11165 found = 1;
11166 if (rs->buf[1] != ',')
10e0fa18 11167 error (_("Unknown qSearch:memory reply: %s"), rs->buf);
08388c79
DE
11168 unpack_varlen_hex (rs->buf + 2, &found_addr);
11169 *found_addrp = found_addr;
11170 }
11171 else
10e0fa18 11172 error (_("Unknown qSearch:memory reply: %s"), rs->buf);
08388c79
DE
11173
11174 return found;
11175}
11176
f6ac5f3d
PA
11177void
11178remote_target::rcmd (const char *command, struct ui_file *outbuf)
96baa820 11179{
d01949b6 11180 struct remote_state *rs = get_remote_state ();
2e9f7625 11181 char *p = rs->buf;
96baa820 11182
5d93a237 11183 if (!rs->remote_desc)
8a3fe4f8 11184 error (_("remote rcmd is only available after target open"));
96baa820 11185
23860348 11186 /* Send a NULL command across as an empty command. */
7be570e7
JM
11187 if (command == NULL)
11188 command = "";
11189
23860348 11190 /* The query prefix. */
2e9f7625
DJ
11191 strcpy (rs->buf, "qRcmd,");
11192 p = strchr (rs->buf, '\0');
96baa820 11193
3e43a32a
MS
11194 if ((strlen (rs->buf) + strlen (command) * 2 + 8/*misc*/)
11195 > get_remote_packet_size ())
8a3fe4f8 11196 error (_("\"monitor\" command ``%s'' is too long."), command);
96baa820 11197
23860348 11198 /* Encode the actual command. */
a30bf1f1 11199 bin2hex ((const gdb_byte *) command, p, strlen (command));
96baa820 11200
6d820c5c 11201 if (putpkt (rs->buf) < 0)
8a3fe4f8 11202 error (_("Communication problem with target."));
96baa820
JM
11203
11204 /* get/display the response */
11205 while (1)
11206 {
2e9f7625
DJ
11207 char *buf;
11208
00bf0b85 11209 /* XXX - see also remote_get_noisy_reply(). */
5b37825d 11210 QUIT; /* Allow user to bail out with ^C. */
2e9f7625 11211 rs->buf[0] = '\0';
5b37825d
PW
11212 if (getpkt_sane (&rs->buf, &rs->buf_size, 0) == -1)
11213 {
11214 /* Timeout. Continue to (try to) read responses.
11215 This is better than stopping with an error, assuming the stub
11216 is still executing the (long) monitor command.
11217 If needed, the user can interrupt gdb using C-c, obtaining
11218 an effect similar to stop on timeout. */
11219 continue;
11220 }
2e9f7625 11221 buf = rs->buf;
96baa820 11222 if (buf[0] == '\0')
8a3fe4f8 11223 error (_("Target does not support this command."));
96baa820
JM
11224 if (buf[0] == 'O' && buf[1] != 'K')
11225 {
23860348 11226 remote_console_output (buf + 1); /* 'O' message from stub. */
96baa820
JM
11227 continue;
11228 }
11229 if (strcmp (buf, "OK") == 0)
11230 break;
7be570e7
JM
11231 if (strlen (buf) == 3 && buf[0] == 'E'
11232 && isdigit (buf[1]) && isdigit (buf[2]))
11233 {
8a3fe4f8 11234 error (_("Protocol error with Rcmd"));
7be570e7 11235 }
96baa820
JM
11236 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
11237 {
11238 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
a744cf53 11239
96baa820
JM
11240 fputc_unfiltered (c, outbuf);
11241 }
11242 break;
11243 }
11244}
11245
f6ac5f3d
PA
11246std::vector<mem_region>
11247remote_target::memory_map ()
fd79ecee 11248{
a664f67e 11249 std::vector<mem_region> result;
9018be22 11250 gdb::optional<gdb::char_vector> text
8b88a78e 11251 = target_read_stralloc (current_top_target (), TARGET_OBJECT_MEMORY_MAP, NULL);
fd79ecee
DJ
11252
11253 if (text)
9018be22 11254 result = parse_memory_map (text->data ());
fd79ecee
DJ
11255
11256 return result;
11257}
11258
c906108c 11259static void
ac88e2de 11260packet_command (const char *args, int from_tty)
c906108c 11261{
6b8edb51 11262 remote_target *remote = get_current_remote_target ();
c906108c 11263
6b8edb51 11264 if (remote == nullptr)
8a3fe4f8 11265 error (_("command can only be used with remote target"));
c906108c 11266
6b8edb51
PA
11267 remote->packet_command (args, from_tty);
11268}
11269
11270void
11271remote_target::packet_command (const char *args, int from_tty)
11272{
c5aa993b 11273 if (!args)
8a3fe4f8 11274 error (_("remote-packet command requires packet text as argument"));
c906108c
SS
11275
11276 puts_filtered ("sending: ");
11277 print_packet (args);
11278 puts_filtered ("\n");
11279 putpkt (args);
11280
6b8edb51
PA
11281 remote_state *rs = get_remote_state ();
11282
6d820c5c 11283 getpkt (&rs->buf, &rs->buf_size, 0);
c906108c 11284 puts_filtered ("received: ");
6d820c5c 11285 print_packet (rs->buf);
c906108c
SS
11286 puts_filtered ("\n");
11287}
11288
11289#if 0
23860348 11290/* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
c906108c 11291
a14ed312 11292static void display_thread_info (struct gdb_ext_thread_info *info);
c906108c 11293
a14ed312 11294static void threadset_test_cmd (char *cmd, int tty);
c906108c 11295
a14ed312 11296static void threadalive_test (char *cmd, int tty);
c906108c 11297
a14ed312 11298static void threadlist_test_cmd (char *cmd, int tty);
c906108c 11299
23860348 11300int get_and_display_threadinfo (threadref *ref);
c906108c 11301
a14ed312 11302static void threadinfo_test_cmd (char *cmd, int tty);
c906108c 11303
23860348 11304static int thread_display_step (threadref *ref, void *context);
c906108c 11305
a14ed312 11306static void threadlist_update_test_cmd (char *cmd, int tty);
c906108c 11307
a14ed312 11308static void init_remote_threadtests (void);
c906108c 11309
23860348 11310#define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
c906108c
SS
11311
11312static void
0b39b52e 11313threadset_test_cmd (const char *cmd, int tty)
c906108c
SS
11314{
11315 int sample_thread = SAMPLE_THREAD;
11316
a3f17187 11317 printf_filtered (_("Remote threadset test\n"));
79d7f229 11318 set_general_thread (sample_thread);
c906108c
SS
11319}
11320
11321
11322static void
0b39b52e 11323threadalive_test (const char *cmd, int tty)
c906108c
SS
11324{
11325 int sample_thread = SAMPLE_THREAD;
e99b03dc 11326 int pid = inferior_ptid.pid ();
fd79271b 11327 ptid_t ptid = ptid_t (pid, sample_thread, 0);
c906108c 11328
79d7f229 11329 if (remote_thread_alive (ptid))
c906108c
SS
11330 printf_filtered ("PASS: Thread alive test\n");
11331 else
11332 printf_filtered ("FAIL: Thread alive test\n");
11333}
11334
23860348 11335void output_threadid (char *title, threadref *ref);
c906108c
SS
11336
11337void
fba45db2 11338output_threadid (char *title, threadref *ref)
c906108c
SS
11339{
11340 char hexid[20];
11341
23860348 11342 pack_threadid (&hexid[0], ref); /* Convert threead id into hex. */
c906108c
SS
11343 hexid[16] = 0;
11344 printf_filtered ("%s %s\n", title, (&hexid[0]));
11345}
11346
11347static void
0b39b52e 11348threadlist_test_cmd (const char *cmd, int tty)
c906108c
SS
11349{
11350 int startflag = 1;
11351 threadref nextthread;
11352 int done, result_count;
11353 threadref threadlist[3];
11354
11355 printf_filtered ("Remote Threadlist test\n");
11356 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
11357 &result_count, &threadlist[0]))
11358 printf_filtered ("FAIL: threadlist test\n");
11359 else
11360 {
11361 threadref *scan = threadlist;
11362 threadref *limit = scan + result_count;
11363
11364 while (scan < limit)
11365 output_threadid (" thread ", scan++);
11366 }
11367}
11368
11369void
fba45db2 11370display_thread_info (struct gdb_ext_thread_info *info)
c906108c
SS
11371{
11372 output_threadid ("Threadid: ", &info->threadid);
11373 printf_filtered ("Name: %s\n ", info->shortname);
11374 printf_filtered ("State: %s\n", info->display);
11375 printf_filtered ("other: %s\n\n", info->more_display);
11376}
11377
11378int
fba45db2 11379get_and_display_threadinfo (threadref *ref)
c906108c
SS
11380{
11381 int result;
11382 int set;
11383 struct gdb_ext_thread_info threadinfo;
11384
11385 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
11386 | TAG_MOREDISPLAY | TAG_DISPLAY;
11387 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
11388 display_thread_info (&threadinfo);
11389 return result;
11390}
11391
11392static void
0b39b52e 11393threadinfo_test_cmd (const char *cmd, int tty)
c906108c
SS
11394{
11395 int athread = SAMPLE_THREAD;
11396 threadref thread;
11397 int set;
11398
11399 int_to_threadref (&thread, athread);
11400 printf_filtered ("Remote Threadinfo test\n");
11401 if (!get_and_display_threadinfo (&thread))
11402 printf_filtered ("FAIL cannot get thread info\n");
11403}
11404
11405static int
fba45db2 11406thread_display_step (threadref *ref, void *context)
c906108c
SS
11407{
11408 /* output_threadid(" threadstep ",ref); *//* simple test */
11409 return get_and_display_threadinfo (ref);
11410}
11411
11412static void
0b39b52e 11413threadlist_update_test_cmd (const char *cmd, int tty)
c906108c
SS
11414{
11415 printf_filtered ("Remote Threadlist update test\n");
11416 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
11417}
11418
11419static void
11420init_remote_threadtests (void)
11421{
3e43a32a
MS
11422 add_com ("tlist", class_obscure, threadlist_test_cmd,
11423 _("Fetch and print the remote list of "
11424 "thread identifiers, one pkt only"));
c906108c 11425 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
1bedd215 11426 _("Fetch and display info about one thread"));
c906108c 11427 add_com ("tset", class_obscure, threadset_test_cmd,
1bedd215 11428 _("Test setting to a different thread"));
c906108c 11429 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
1bedd215 11430 _("Iterate through updating all remote thread info"));
c906108c 11431 add_com ("talive", class_obscure, threadalive_test,
1bedd215 11432 _(" Remote thread alive test "));
c906108c
SS
11433}
11434
11435#endif /* 0 */
11436
f3fb8c85
MS
11437/* Convert a thread ID to a string. Returns the string in a static
11438 buffer. */
11439
f6ac5f3d
PA
11440const char *
11441remote_target::pid_to_str (ptid_t ptid)
f3fb8c85 11442{
79d7f229 11443 static char buf[64];
82f73884 11444 struct remote_state *rs = get_remote_state ();
f3fb8c85 11445
d7e15655 11446 if (ptid == null_ptid)
7cee1e54 11447 return normal_pid_to_str (ptid);
0e998d96 11448 else if (ptid.is_pid ())
ecd0ada5
PA
11449 {
11450 /* Printing an inferior target id. */
11451
11452 /* When multi-process extensions are off, there's no way in the
11453 remote protocol to know the remote process id, if there's any
11454 at all. There's one exception --- when we're connected with
11455 target extended-remote, and we manually attached to a process
11456 with "attach PID". We don't record anywhere a flag that
11457 allows us to distinguish that case from the case of
11458 connecting with extended-remote and the stub already being
11459 attached to a process, and reporting yes to qAttached, hence
11460 no smart special casing here. */
11461 if (!remote_multi_process_p (rs))
11462 {
11463 xsnprintf (buf, sizeof buf, "Remote target");
11464 return buf;
11465 }
11466
11467 return normal_pid_to_str (ptid);
82f73884 11468 }
ecd0ada5 11469 else
79d7f229 11470 {
d7e15655 11471 if (magic_null_ptid == ptid)
ecd0ada5 11472 xsnprintf (buf, sizeof buf, "Thread <main>");
8020350c 11473 else if (remote_multi_process_p (rs))
e38504b3 11474 if (ptid.lwp () == 0)
de0d863e
DB
11475 return normal_pid_to_str (ptid);
11476 else
11477 xsnprintf (buf, sizeof buf, "Thread %d.%ld",
e38504b3 11478 ptid.pid (), ptid.lwp ());
ecd0ada5
PA
11479 else
11480 xsnprintf (buf, sizeof buf, "Thread %ld",
e38504b3 11481 ptid.lwp ());
79d7f229
PA
11482 return buf;
11483 }
f3fb8c85
MS
11484}
11485
38691318
KB
11486/* Get the address of the thread local variable in OBJFILE which is
11487 stored at OFFSET within the thread local storage for thread PTID. */
11488
f6ac5f3d
PA
11489CORE_ADDR
11490remote_target::get_thread_local_address (ptid_t ptid, CORE_ADDR lm,
11491 CORE_ADDR offset)
38691318 11492{
4082afcc 11493 if (packet_support (PACKET_qGetTLSAddr) != PACKET_DISABLE)
38691318
KB
11494 {
11495 struct remote_state *rs = get_remote_state ();
6d820c5c 11496 char *p = rs->buf;
82f73884 11497 char *endp = rs->buf + get_remote_packet_size ();
571dd617 11498 enum packet_result result;
38691318
KB
11499
11500 strcpy (p, "qGetTLSAddr:");
11501 p += strlen (p);
82f73884 11502 p = write_ptid (p, endp, ptid);
38691318
KB
11503 *p++ = ',';
11504 p += hexnumstr (p, offset);
11505 *p++ = ',';
11506 p += hexnumstr (p, lm);
11507 *p++ = '\0';
11508
6d820c5c
DJ
11509 putpkt (rs->buf);
11510 getpkt (&rs->buf, &rs->buf_size, 0);
3e43a32a
MS
11511 result = packet_ok (rs->buf,
11512 &remote_protocol_packets[PACKET_qGetTLSAddr]);
571dd617 11513 if (result == PACKET_OK)
38691318 11514 {
b926417a 11515 ULONGEST addr;
38691318 11516
b926417a
TT
11517 unpack_varlen_hex (rs->buf, &addr);
11518 return addr;
38691318 11519 }
571dd617 11520 else if (result == PACKET_UNKNOWN)
109c3e39
AC
11521 throw_error (TLS_GENERIC_ERROR,
11522 _("Remote target doesn't support qGetTLSAddr packet"));
38691318 11523 else
109c3e39
AC
11524 throw_error (TLS_GENERIC_ERROR,
11525 _("Remote target failed to process qGetTLSAddr request"));
38691318
KB
11526 }
11527 else
109c3e39
AC
11528 throw_error (TLS_GENERIC_ERROR,
11529 _("TLS not supported or disabled on this target"));
38691318
KB
11530 /* Not reached. */
11531 return 0;
11532}
11533
711e434b
PM
11534/* Provide thread local base, i.e. Thread Information Block address.
11535 Returns 1 if ptid is found and thread_local_base is non zero. */
11536
57810aa7 11537bool
f6ac5f3d 11538remote_target::get_tib_address (ptid_t ptid, CORE_ADDR *addr)
711e434b 11539{
4082afcc 11540 if (packet_support (PACKET_qGetTIBAddr) != PACKET_DISABLE)
711e434b
PM
11541 {
11542 struct remote_state *rs = get_remote_state ();
11543 char *p = rs->buf;
11544 char *endp = rs->buf + get_remote_packet_size ();
11545 enum packet_result result;
11546
11547 strcpy (p, "qGetTIBAddr:");
11548 p += strlen (p);
11549 p = write_ptid (p, endp, ptid);
11550 *p++ = '\0';
11551
11552 putpkt (rs->buf);
11553 getpkt (&rs->buf, &rs->buf_size, 0);
11554 result = packet_ok (rs->buf,
11555 &remote_protocol_packets[PACKET_qGetTIBAddr]);
11556 if (result == PACKET_OK)
11557 {
b926417a
TT
11558 ULONGEST val;
11559 unpack_varlen_hex (rs->buf, &val);
711e434b 11560 if (addr)
b926417a 11561 *addr = (CORE_ADDR) val;
57810aa7 11562 return true;
711e434b
PM
11563 }
11564 else if (result == PACKET_UNKNOWN)
11565 error (_("Remote target doesn't support qGetTIBAddr packet"));
11566 else
11567 error (_("Remote target failed to process qGetTIBAddr request"));
11568 }
11569 else
11570 error (_("qGetTIBAddr not supported or disabled on this target"));
11571 /* Not reached. */
57810aa7 11572 return false;
711e434b
PM
11573}
11574
29709017
DJ
11575/* Support for inferring a target description based on the current
11576 architecture and the size of a 'g' packet. While the 'g' packet
11577 can have any size (since optional registers can be left off the
11578 end), some sizes are easily recognizable given knowledge of the
11579 approximate architecture. */
11580
11581struct remote_g_packet_guess
11582{
eefce37f
TT
11583 remote_g_packet_guess (int bytes_, const struct target_desc *tdesc_)
11584 : bytes (bytes_),
11585 tdesc (tdesc_)
11586 {
11587 }
11588
29709017
DJ
11589 int bytes;
11590 const struct target_desc *tdesc;
11591};
29709017 11592
eefce37f 11593struct remote_g_packet_data : public allocate_on_obstack
29709017 11594{
eefce37f 11595 std::vector<remote_g_packet_guess> guesses;
29709017
DJ
11596};
11597
11598static struct gdbarch_data *remote_g_packet_data_handle;
11599
11600static void *
11601remote_g_packet_data_init (struct obstack *obstack)
11602{
eefce37f 11603 return new (obstack) remote_g_packet_data;
29709017
DJ
11604}
11605
11606void
11607register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes,
11608 const struct target_desc *tdesc)
11609{
11610 struct remote_g_packet_data *data
19ba03f4
SM
11611 = ((struct remote_g_packet_data *)
11612 gdbarch_data (gdbarch, remote_g_packet_data_handle));
29709017
DJ
11613
11614 gdb_assert (tdesc != NULL);
11615
eefce37f
TT
11616 for (const remote_g_packet_guess &guess : data->guesses)
11617 if (guess.bytes == bytes)
29709017 11618 internal_error (__FILE__, __LINE__,
9b20d036 11619 _("Duplicate g packet description added for size %d"),
29709017
DJ
11620 bytes);
11621
eefce37f 11622 data->guesses.emplace_back (bytes, tdesc);
29709017
DJ
11623}
11624
eefce37f
TT
11625/* Return true if remote_read_description would do anything on this target
11626 and architecture, false otherwise. */
d962ef82 11627
eefce37f 11628static bool
d962ef82
DJ
11629remote_read_description_p (struct target_ops *target)
11630{
11631 struct remote_g_packet_data *data
19ba03f4
SM
11632 = ((struct remote_g_packet_data *)
11633 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
d962ef82 11634
eefce37f 11635 return !data->guesses.empty ();
d962ef82
DJ
11636}
11637
f6ac5f3d
PA
11638const struct target_desc *
11639remote_target::read_description ()
29709017
DJ
11640{
11641 struct remote_g_packet_data *data
19ba03f4
SM
11642 = ((struct remote_g_packet_data *)
11643 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
29709017 11644
d962ef82
DJ
11645 /* Do not try this during initial connection, when we do not know
11646 whether there is a running but stopped thread. */
d7e15655 11647 if (!target_has_execution || inferior_ptid == null_ptid)
b6a8c27b 11648 return beneath ()->read_description ();
d962ef82 11649
eefce37f 11650 if (!data->guesses.empty ())
29709017 11651 {
29709017
DJ
11652 int bytes = send_g_packet ();
11653
eefce37f
TT
11654 for (const remote_g_packet_guess &guess : data->guesses)
11655 if (guess.bytes == bytes)
11656 return guess.tdesc;
29709017
DJ
11657
11658 /* We discard the g packet. A minor optimization would be to
11659 hold on to it, and fill the register cache once we have selected
11660 an architecture, but it's too tricky to do safely. */
11661 }
11662
b6a8c27b 11663 return beneath ()->read_description ();
29709017
DJ
11664}
11665
a6b151f1
DJ
11666/* Remote file transfer support. This is host-initiated I/O, not
11667 target-initiated; for target-initiated, see remote-fileio.c. */
11668
11669/* If *LEFT is at least the length of STRING, copy STRING to
11670 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11671 decrease *LEFT. Otherwise raise an error. */
11672
11673static void
a121b7c1 11674remote_buffer_add_string (char **buffer, int *left, const char *string)
a6b151f1
DJ
11675{
11676 int len = strlen (string);
11677
11678 if (len > *left)
11679 error (_("Packet too long for target."));
11680
11681 memcpy (*buffer, string, len);
11682 *buffer += len;
11683 *left -= len;
11684
11685 /* NUL-terminate the buffer as a convenience, if there is
11686 room. */
11687 if (*left)
11688 **buffer = '\0';
11689}
11690
11691/* If *LEFT is large enough, hex encode LEN bytes from BYTES into
11692 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11693 decrease *LEFT. Otherwise raise an error. */
11694
11695static void
11696remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes,
11697 int len)
11698{
11699 if (2 * len > *left)
11700 error (_("Packet too long for target."));
11701
11702 bin2hex (bytes, *buffer, len);
11703 *buffer += 2 * len;
11704 *left -= 2 * len;
11705
11706 /* NUL-terminate the buffer as a convenience, if there is
11707 room. */
11708 if (*left)
11709 **buffer = '\0';
11710}
11711
11712/* If *LEFT is large enough, convert VALUE to hex and add it to
11713 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11714 decrease *LEFT. Otherwise raise an error. */
11715
11716static void
11717remote_buffer_add_int (char **buffer, int *left, ULONGEST value)
11718{
11719 int len = hexnumlen (value);
11720
11721 if (len > *left)
11722 error (_("Packet too long for target."));
11723
11724 hexnumstr (*buffer, value);
11725 *buffer += len;
11726 *left -= len;
11727
11728 /* NUL-terminate the buffer as a convenience, if there is
11729 room. */
11730 if (*left)
11731 **buffer = '\0';
11732}
11733
11734/* Parse an I/O result packet from BUFFER. Set RETCODE to the return
11735 value, *REMOTE_ERRNO to the remote error number or zero if none
11736 was included, and *ATTACHMENT to point to the start of the annex
11737 if any. The length of the packet isn't needed here; there may
11738 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
11739
11740 Return 0 if the packet could be parsed, -1 if it could not. If
11741 -1 is returned, the other variables may not be initialized. */
11742
11743static int
11744remote_hostio_parse_result (char *buffer, int *retcode,
11745 int *remote_errno, char **attachment)
11746{
11747 char *p, *p2;
11748
11749 *remote_errno = 0;
11750 *attachment = NULL;
11751
11752 if (buffer[0] != 'F')
11753 return -1;
11754
11755 errno = 0;
11756 *retcode = strtol (&buffer[1], &p, 16);
11757 if (errno != 0 || p == &buffer[1])
11758 return -1;
11759
11760 /* Check for ",errno". */
11761 if (*p == ',')
11762 {
11763 errno = 0;
11764 *remote_errno = strtol (p + 1, &p2, 16);
11765 if (errno != 0 || p + 1 == p2)
11766 return -1;
11767 p = p2;
11768 }
11769
11770 /* Check for ";attachment". If there is no attachment, the
11771 packet should end here. */
11772 if (*p == ';')
11773 {
11774 *attachment = p + 1;
11775 return 0;
11776 }
11777 else if (*p == '\0')
11778 return 0;
11779 else
11780 return -1;
11781}
11782
11783/* Send a prepared I/O packet to the target and read its response.
11784 The prepared packet is in the global RS->BUF before this function
11785 is called, and the answer is there when we return.
11786
11787 COMMAND_BYTES is the length of the request to send, which may include
11788 binary data. WHICH_PACKET is the packet configuration to check
11789 before attempting a packet. If an error occurs, *REMOTE_ERRNO
11790 is set to the error number and -1 is returned. Otherwise the value
11791 returned by the function is returned.
11792
11793 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
11794 attachment is expected; an error will be reported if there's a
11795 mismatch. If one is found, *ATTACHMENT will be set to point into
11796 the packet buffer and *ATTACHMENT_LEN will be set to the
11797 attachment's length. */
11798
6b8edb51
PA
11799int
11800remote_target::remote_hostio_send_command (int command_bytes, int which_packet,
11801 int *remote_errno, char **attachment,
11802 int *attachment_len)
a6b151f1
DJ
11803{
11804 struct remote_state *rs = get_remote_state ();
11805 int ret, bytes_read;
11806 char *attachment_tmp;
11807
20db9c52 11808 if (packet_support (which_packet) == PACKET_DISABLE)
a6b151f1
DJ
11809 {
11810 *remote_errno = FILEIO_ENOSYS;
11811 return -1;
11812 }
11813
11814 putpkt_binary (rs->buf, command_bytes);
11815 bytes_read = getpkt_sane (&rs->buf, &rs->buf_size, 0);
11816
11817 /* If it timed out, something is wrong. Don't try to parse the
11818 buffer. */
11819 if (bytes_read < 0)
11820 {
11821 *remote_errno = FILEIO_EINVAL;
11822 return -1;
11823 }
11824
11825 switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet]))
11826 {
11827 case PACKET_ERROR:
11828 *remote_errno = FILEIO_EINVAL;
11829 return -1;
11830 case PACKET_UNKNOWN:
11831 *remote_errno = FILEIO_ENOSYS;
11832 return -1;
11833 case PACKET_OK:
11834 break;
11835 }
11836
11837 if (remote_hostio_parse_result (rs->buf, &ret, remote_errno,
11838 &attachment_tmp))
11839 {
11840 *remote_errno = FILEIO_EINVAL;
11841 return -1;
11842 }
11843
11844 /* Make sure we saw an attachment if and only if we expected one. */
11845 if ((attachment_tmp == NULL && attachment != NULL)
11846 || (attachment_tmp != NULL && attachment == NULL))
11847 {
11848 *remote_errno = FILEIO_EINVAL;
11849 return -1;
11850 }
11851
11852 /* If an attachment was found, it must point into the packet buffer;
11853 work out how many bytes there were. */
11854 if (attachment_tmp != NULL)
11855 {
11856 *attachment = attachment_tmp;
11857 *attachment_len = bytes_read - (*attachment - rs->buf);
11858 }
11859
11860 return ret;
11861}
11862
dd194f6b 11863/* See declaration.h. */
80152258 11864
dd194f6b
PA
11865void
11866readahead_cache::invalidate ()
80152258 11867{
dd194f6b 11868 this->fd = -1;
80152258
PA
11869}
11870
dd194f6b 11871/* See declaration.h. */
80152258 11872
dd194f6b
PA
11873void
11874readahead_cache::invalidate_fd (int fd)
80152258 11875{
dd194f6b
PA
11876 if (this->fd == fd)
11877 this->fd = -1;
80152258
PA
11878}
11879
15a201c8
GB
11880/* Set the filesystem remote_hostio functions that take FILENAME
11881 arguments will use. Return 0 on success, or -1 if an error
11882 occurs (and set *REMOTE_ERRNO). */
11883
6b8edb51
PA
11884int
11885remote_target::remote_hostio_set_filesystem (struct inferior *inf,
11886 int *remote_errno)
15a201c8
GB
11887{
11888 struct remote_state *rs = get_remote_state ();
11889 int required_pid = (inf == NULL || inf->fake_pid_p) ? 0 : inf->pid;
11890 char *p = rs->buf;
11891 int left = get_remote_packet_size () - 1;
11892 char arg[9];
11893 int ret;
11894
11895 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11896 return 0;
11897
11898 if (rs->fs_pid != -1 && required_pid == rs->fs_pid)
11899 return 0;
11900
11901 remote_buffer_add_string (&p, &left, "vFile:setfs:");
11902
11903 xsnprintf (arg, sizeof (arg), "%x", required_pid);
11904 remote_buffer_add_string (&p, &left, arg);
11905
11906 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_setfs,
11907 remote_errno, NULL, NULL);
11908
11909 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11910 return 0;
11911
11912 if (ret == 0)
11913 rs->fs_pid = required_pid;
11914
11915 return ret;
11916}
11917
12e2a5fd 11918/* Implementation of to_fileio_open. */
a6b151f1 11919
6b8edb51
PA
11920int
11921remote_target::remote_hostio_open (inferior *inf, const char *filename,
11922 int flags, int mode, int warn_if_slow,
11923 int *remote_errno)
a6b151f1
DJ
11924{
11925 struct remote_state *rs = get_remote_state ();
11926 char *p = rs->buf;
11927 int left = get_remote_packet_size () - 1;
11928
4313b8c0
GB
11929 if (warn_if_slow)
11930 {
11931 static int warning_issued = 0;
11932
11933 printf_unfiltered (_("Reading %s from remote target...\n"),
11934 filename);
11935
11936 if (!warning_issued)
11937 {
11938 warning (_("File transfers from remote targets can be slow."
11939 " Use \"set sysroot\" to access files locally"
11940 " instead."));
11941 warning_issued = 1;
11942 }
11943 }
11944
15a201c8
GB
11945 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
11946 return -1;
11947
a6b151f1
DJ
11948 remote_buffer_add_string (&p, &left, "vFile:open:");
11949
11950 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
11951 strlen (filename));
11952 remote_buffer_add_string (&p, &left, ",");
11953
11954 remote_buffer_add_int (&p, &left, flags);
11955 remote_buffer_add_string (&p, &left, ",");
11956
11957 remote_buffer_add_int (&p, &left, mode);
11958
11959 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_open,
11960 remote_errno, NULL, NULL);
11961}
11962
f6ac5f3d
PA
11963int
11964remote_target::fileio_open (struct inferior *inf, const char *filename,
11965 int flags, int mode, int warn_if_slow,
11966 int *remote_errno)
11967{
6b8edb51 11968 return remote_hostio_open (inf, filename, flags, mode, warn_if_slow,
f6ac5f3d
PA
11969 remote_errno);
11970}
11971
12e2a5fd 11972/* Implementation of to_fileio_pwrite. */
a6b151f1 11973
6b8edb51
PA
11974int
11975remote_target::remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
11976 ULONGEST offset, int *remote_errno)
a6b151f1
DJ
11977{
11978 struct remote_state *rs = get_remote_state ();
11979 char *p = rs->buf;
11980 int left = get_remote_packet_size ();
11981 int out_len;
11982
dd194f6b 11983 rs->readahead_cache.invalidate_fd (fd);
80152258 11984
a6b151f1
DJ
11985 remote_buffer_add_string (&p, &left, "vFile:pwrite:");
11986
11987 remote_buffer_add_int (&p, &left, fd);
11988 remote_buffer_add_string (&p, &left, ",");
11989
11990 remote_buffer_add_int (&p, &left, offset);
11991 remote_buffer_add_string (&p, &left, ",");
11992
124e13d9 11993 p += remote_escape_output (write_buf, len, 1, (gdb_byte *) p, &out_len,
a6b151f1
DJ
11994 get_remote_packet_size () - (p - rs->buf));
11995
11996 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_pwrite,
11997 remote_errno, NULL, NULL);
11998}
11999
f6ac5f3d
PA
12000int
12001remote_target::fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
12002 ULONGEST offset, int *remote_errno)
12003{
6b8edb51 12004 return remote_hostio_pwrite (fd, write_buf, len, offset, remote_errno);
f6ac5f3d
PA
12005}
12006
80152258
PA
12007/* Helper for the implementation of to_fileio_pread. Read the file
12008 from the remote side with vFile:pread. */
a6b151f1 12009
6b8edb51
PA
12010int
12011remote_target::remote_hostio_pread_vFile (int fd, gdb_byte *read_buf, int len,
12012 ULONGEST offset, int *remote_errno)
a6b151f1
DJ
12013{
12014 struct remote_state *rs = get_remote_state ();
12015 char *p = rs->buf;
12016 char *attachment;
12017 int left = get_remote_packet_size ();
12018 int ret, attachment_len;
12019 int read_len;
12020
12021 remote_buffer_add_string (&p, &left, "vFile:pread:");
12022
12023 remote_buffer_add_int (&p, &left, fd);
12024 remote_buffer_add_string (&p, &left, ",");
12025
12026 remote_buffer_add_int (&p, &left, len);
12027 remote_buffer_add_string (&p, &left, ",");
12028
12029 remote_buffer_add_int (&p, &left, offset);
12030
12031 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_pread,
12032 remote_errno, &attachment,
12033 &attachment_len);
12034
12035 if (ret < 0)
12036 return ret;
12037
bc20a4af 12038 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
a6b151f1
DJ
12039 read_buf, len);
12040 if (read_len != ret)
12041 error (_("Read returned %d, but %d bytes."), ret, (int) read_len);
12042
12043 return ret;
12044}
12045
dd194f6b 12046/* See declaration.h. */
80152258 12047
dd194f6b
PA
12048int
12049readahead_cache::pread (int fd, gdb_byte *read_buf, size_t len,
12050 ULONGEST offset)
80152258 12051{
dd194f6b
PA
12052 if (this->fd == fd
12053 && this->offset <= offset
12054 && offset < this->offset + this->bufsize)
80152258 12055 {
dd194f6b 12056 ULONGEST max = this->offset + this->bufsize;
80152258
PA
12057
12058 if (offset + len > max)
12059 len = max - offset;
12060
dd194f6b 12061 memcpy (read_buf, this->buf + offset - this->offset, len);
80152258
PA
12062 return len;
12063 }
12064
12065 return 0;
12066}
12067
12068/* Implementation of to_fileio_pread. */
12069
6b8edb51
PA
12070int
12071remote_target::remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
12072 ULONGEST offset, int *remote_errno)
80152258
PA
12073{
12074 int ret;
12075 struct remote_state *rs = get_remote_state ();
dd194f6b 12076 readahead_cache *cache = &rs->readahead_cache;
80152258 12077
dd194f6b 12078 ret = cache->pread (fd, read_buf, len, offset);
80152258
PA
12079 if (ret > 0)
12080 {
12081 cache->hit_count++;
12082
12083 if (remote_debug)
12084 fprintf_unfiltered (gdb_stdlog, "readahead cache hit %s\n",
12085 pulongest (cache->hit_count));
12086 return ret;
12087 }
12088
12089 cache->miss_count++;
12090 if (remote_debug)
12091 fprintf_unfiltered (gdb_stdlog, "readahead cache miss %s\n",
12092 pulongest (cache->miss_count));
12093
12094 cache->fd = fd;
12095 cache->offset = offset;
12096 cache->bufsize = get_remote_packet_size ();
224c3ddb 12097 cache->buf = (gdb_byte *) xrealloc (cache->buf, cache->bufsize);
80152258 12098
6b8edb51 12099 ret = remote_hostio_pread_vFile (cache->fd, cache->buf, cache->bufsize,
80152258
PA
12100 cache->offset, remote_errno);
12101 if (ret <= 0)
12102 {
dd194f6b 12103 cache->invalidate_fd (fd);
80152258
PA
12104 return ret;
12105 }
12106
12107 cache->bufsize = ret;
dd194f6b 12108 return cache->pread (fd, read_buf, len, offset);
80152258
PA
12109}
12110
f6ac5f3d
PA
12111int
12112remote_target::fileio_pread (int fd, gdb_byte *read_buf, int len,
12113 ULONGEST offset, int *remote_errno)
12114{
6b8edb51 12115 return remote_hostio_pread (fd, read_buf, len, offset, remote_errno);
f6ac5f3d
PA
12116}
12117
12e2a5fd 12118/* Implementation of to_fileio_close. */
a6b151f1 12119
6b8edb51
PA
12120int
12121remote_target::remote_hostio_close (int fd, int *remote_errno)
a6b151f1
DJ
12122{
12123 struct remote_state *rs = get_remote_state ();
12124 char *p = rs->buf;
12125 int left = get_remote_packet_size () - 1;
12126
dd194f6b 12127 rs->readahead_cache.invalidate_fd (fd);
80152258 12128
a6b151f1
DJ
12129 remote_buffer_add_string (&p, &left, "vFile:close:");
12130
12131 remote_buffer_add_int (&p, &left, fd);
12132
12133 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_close,
12134 remote_errno, NULL, NULL);
12135}
12136
f6ac5f3d
PA
12137int
12138remote_target::fileio_close (int fd, int *remote_errno)
12139{
6b8edb51 12140 return remote_hostio_close (fd, remote_errno);
f6ac5f3d
PA
12141}
12142
12e2a5fd 12143/* Implementation of to_fileio_unlink. */
a6b151f1 12144
6b8edb51
PA
12145int
12146remote_target::remote_hostio_unlink (inferior *inf, const char *filename,
12147 int *remote_errno)
a6b151f1
DJ
12148{
12149 struct remote_state *rs = get_remote_state ();
12150 char *p = rs->buf;
12151 int left = get_remote_packet_size () - 1;
12152
15a201c8
GB
12153 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
12154 return -1;
12155
a6b151f1
DJ
12156 remote_buffer_add_string (&p, &left, "vFile:unlink:");
12157
12158 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12159 strlen (filename));
12160
12161 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_unlink,
12162 remote_errno, NULL, NULL);
12163}
12164
f6ac5f3d
PA
12165int
12166remote_target::fileio_unlink (struct inferior *inf, const char *filename,
12167 int *remote_errno)
12168{
6b8edb51 12169 return remote_hostio_unlink (inf, filename, remote_errno);
f6ac5f3d
PA
12170}
12171
12e2a5fd 12172/* Implementation of to_fileio_readlink. */
b9e7b9c3 12173
f6ac5f3d
PA
12174gdb::optional<std::string>
12175remote_target::fileio_readlink (struct inferior *inf, const char *filename,
12176 int *remote_errno)
b9e7b9c3
UW
12177{
12178 struct remote_state *rs = get_remote_state ();
12179 char *p = rs->buf;
12180 char *attachment;
12181 int left = get_remote_packet_size ();
12182 int len, attachment_len;
12183 int read_len;
b9e7b9c3 12184
15a201c8 12185 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
e0d3522b 12186 return {};
15a201c8 12187
b9e7b9c3
UW
12188 remote_buffer_add_string (&p, &left, "vFile:readlink:");
12189
12190 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12191 strlen (filename));
12192
12193 len = remote_hostio_send_command (p - rs->buf, PACKET_vFile_readlink,
12194 remote_errno, &attachment,
12195 &attachment_len);
12196
12197 if (len < 0)
e0d3522b 12198 return {};
b9e7b9c3 12199
e0d3522b 12200 std::string ret (len, '\0');
b9e7b9c3 12201
bc20a4af 12202 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
e0d3522b 12203 (gdb_byte *) &ret[0], len);
b9e7b9c3
UW
12204 if (read_len != len)
12205 error (_("Readlink returned %d, but %d bytes."), len, read_len);
12206
b9e7b9c3
UW
12207 return ret;
12208}
12209
12e2a5fd 12210/* Implementation of to_fileio_fstat. */
0a93529c 12211
f6ac5f3d
PA
12212int
12213remote_target::fileio_fstat (int fd, struct stat *st, int *remote_errno)
0a93529c
GB
12214{
12215 struct remote_state *rs = get_remote_state ();
12216 char *p = rs->buf;
12217 int left = get_remote_packet_size ();
12218 int attachment_len, ret;
12219 char *attachment;
12220 struct fio_stat fst;
12221 int read_len;
12222
464b0089
GB
12223 remote_buffer_add_string (&p, &left, "vFile:fstat:");
12224
12225 remote_buffer_add_int (&p, &left, fd);
12226
12227 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_fstat,
12228 remote_errno, &attachment,
12229 &attachment_len);
12230 if (ret < 0)
0a93529c 12231 {
464b0089
GB
12232 if (*remote_errno != FILEIO_ENOSYS)
12233 return ret;
12234
0a93529c
GB
12235 /* Strictly we should return -1, ENOSYS here, but when
12236 "set sysroot remote:" was implemented in August 2008
12237 BFD's need for a stat function was sidestepped with
12238 this hack. This was not remedied until March 2015
12239 so we retain the previous behavior to avoid breaking
12240 compatibility.
12241
12242 Note that the memset is a March 2015 addition; older
12243 GDBs set st_size *and nothing else* so the structure
12244 would have garbage in all other fields. This might
12245 break something but retaining the previous behavior
12246 here would be just too wrong. */
12247
12248 memset (st, 0, sizeof (struct stat));
12249 st->st_size = INT_MAX;
12250 return 0;
12251 }
12252
0a93529c
GB
12253 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
12254 (gdb_byte *) &fst, sizeof (fst));
12255
12256 if (read_len != ret)
12257 error (_("vFile:fstat returned %d, but %d bytes."), ret, read_len);
12258
12259 if (read_len != sizeof (fst))
12260 error (_("vFile:fstat returned %d bytes, but expecting %d."),
12261 read_len, (int) sizeof (fst));
12262
12263 remote_fileio_to_host_stat (&fst, st);
12264
12265 return 0;
12266}
12267
12e2a5fd 12268/* Implementation of to_filesystem_is_local. */
e3dd7556 12269
57810aa7 12270bool
f6ac5f3d 12271remote_target::filesystem_is_local ()
e3dd7556
GB
12272{
12273 /* Valgrind GDB presents itself as a remote target but works
12274 on the local filesystem: it does not implement remote get
12275 and users are not expected to set a sysroot. To handle
12276 this case we treat the remote filesystem as local if the
12277 sysroot is exactly TARGET_SYSROOT_PREFIX and if the stub
12278 does not support vFile:open. */
a3be80c3 12279 if (strcmp (gdb_sysroot, TARGET_SYSROOT_PREFIX) == 0)
e3dd7556
GB
12280 {
12281 enum packet_support ps = packet_support (PACKET_vFile_open);
12282
12283 if (ps == PACKET_SUPPORT_UNKNOWN)
12284 {
12285 int fd, remote_errno;
12286
12287 /* Try opening a file to probe support. The supplied
12288 filename is irrelevant, we only care about whether
12289 the stub recognizes the packet or not. */
6b8edb51 12290 fd = remote_hostio_open (NULL, "just probing",
4313b8c0 12291 FILEIO_O_RDONLY, 0700, 0,
e3dd7556
GB
12292 &remote_errno);
12293
12294 if (fd >= 0)
6b8edb51 12295 remote_hostio_close (fd, &remote_errno);
e3dd7556
GB
12296
12297 ps = packet_support (PACKET_vFile_open);
12298 }
12299
12300 if (ps == PACKET_DISABLE)
12301 {
12302 static int warning_issued = 0;
12303
12304 if (!warning_issued)
12305 {
12306 warning (_("remote target does not support file"
12307 " transfer, attempting to access files"
12308 " from local filesystem."));
12309 warning_issued = 1;
12310 }
12311
57810aa7 12312 return true;
e3dd7556
GB
12313 }
12314 }
12315
57810aa7 12316 return false;
e3dd7556
GB
12317}
12318
a6b151f1
DJ
12319static int
12320remote_fileio_errno_to_host (int errnum)
12321{
12322 switch (errnum)
12323 {
12324 case FILEIO_EPERM:
12325 return EPERM;
12326 case FILEIO_ENOENT:
12327 return ENOENT;
12328 case FILEIO_EINTR:
12329 return EINTR;
12330 case FILEIO_EIO:
12331 return EIO;
12332 case FILEIO_EBADF:
12333 return EBADF;
12334 case FILEIO_EACCES:
12335 return EACCES;
12336 case FILEIO_EFAULT:
12337 return EFAULT;
12338 case FILEIO_EBUSY:
12339 return EBUSY;
12340 case FILEIO_EEXIST:
12341 return EEXIST;
12342 case FILEIO_ENODEV:
12343 return ENODEV;
12344 case FILEIO_ENOTDIR:
12345 return ENOTDIR;
12346 case FILEIO_EISDIR:
12347 return EISDIR;
12348 case FILEIO_EINVAL:
12349 return EINVAL;
12350 case FILEIO_ENFILE:
12351 return ENFILE;
12352 case FILEIO_EMFILE:
12353 return EMFILE;
12354 case FILEIO_EFBIG:
12355 return EFBIG;
12356 case FILEIO_ENOSPC:
12357 return ENOSPC;
12358 case FILEIO_ESPIPE:
12359 return ESPIPE;
12360 case FILEIO_EROFS:
12361 return EROFS;
12362 case FILEIO_ENOSYS:
12363 return ENOSYS;
12364 case FILEIO_ENAMETOOLONG:
12365 return ENAMETOOLONG;
12366 }
12367 return -1;
12368}
12369
12370static char *
12371remote_hostio_error (int errnum)
12372{
12373 int host_error = remote_fileio_errno_to_host (errnum);
12374
12375 if (host_error == -1)
12376 error (_("Unknown remote I/O error %d"), errnum);
12377 else
12378 error (_("Remote I/O error: %s"), safe_strerror (host_error));
12379}
12380
440b7aec
PA
12381/* A RAII wrapper around a remote file descriptor. */
12382
12383class scoped_remote_fd
a6b151f1 12384{
440b7aec 12385public:
6b8edb51
PA
12386 scoped_remote_fd (remote_target *remote, int fd)
12387 : m_remote (remote), m_fd (fd)
440b7aec
PA
12388 {
12389 }
a6b151f1 12390
440b7aec
PA
12391 ~scoped_remote_fd ()
12392 {
12393 if (m_fd != -1)
12394 {
12395 try
12396 {
12397 int remote_errno;
6b8edb51 12398 m_remote->remote_hostio_close (m_fd, &remote_errno);
440b7aec
PA
12399 }
12400 catch (...)
12401 {
12402 /* Swallow exception before it escapes the dtor. If
12403 something goes wrong, likely the connection is gone,
12404 and there's nothing else that can be done. */
12405 }
12406 }
12407 }
12408
12409 DISABLE_COPY_AND_ASSIGN (scoped_remote_fd);
12410
12411 /* Release ownership of the file descriptor, and return it. */
12412 int release () noexcept
12413 {
12414 int fd = m_fd;
12415 m_fd = -1;
12416 return fd;
12417 }
12418
12419 /* Return the owned file descriptor. */
12420 int get () const noexcept
12421 {
12422 return m_fd;
12423 }
12424
12425private:
6b8edb51
PA
12426 /* The remote target. */
12427 remote_target *m_remote;
12428
440b7aec
PA
12429 /* The owned remote I/O file descriptor. */
12430 int m_fd;
12431};
a6b151f1
DJ
12432
12433void
12434remote_file_put (const char *local_file, const char *remote_file, int from_tty)
6b8edb51
PA
12435{
12436 remote_target *remote = get_current_remote_target ();
12437
12438 if (remote == nullptr)
12439 error (_("command can only be used with remote target"));
12440
12441 remote->remote_file_put (local_file, remote_file, from_tty);
12442}
12443
12444void
12445remote_target::remote_file_put (const char *local_file, const char *remote_file,
12446 int from_tty)
a6b151f1 12447{
440b7aec 12448 int retcode, remote_errno, bytes, io_size;
a6b151f1
DJ
12449 int bytes_in_buffer;
12450 int saw_eof;
12451 ULONGEST offset;
a6b151f1 12452
d419f42d 12453 gdb_file_up file = gdb_fopen_cloexec (local_file, "rb");
a6b151f1
DJ
12454 if (file == NULL)
12455 perror_with_name (local_file);
a6b151f1 12456
440b7aec 12457 scoped_remote_fd fd
6b8edb51
PA
12458 (this, remote_hostio_open (NULL,
12459 remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT
12460 | FILEIO_O_TRUNC),
12461 0700, 0, &remote_errno));
440b7aec 12462 if (fd.get () == -1)
a6b151f1
DJ
12463 remote_hostio_error (remote_errno);
12464
12465 /* Send up to this many bytes at once. They won't all fit in the
12466 remote packet limit, so we'll transfer slightly fewer. */
12467 io_size = get_remote_packet_size ();
5ca3b260 12468 gdb::byte_vector buffer (io_size);
a6b151f1 12469
a6b151f1
DJ
12470 bytes_in_buffer = 0;
12471 saw_eof = 0;
12472 offset = 0;
12473 while (bytes_in_buffer || !saw_eof)
12474 {
12475 if (!saw_eof)
12476 {
5ca3b260 12477 bytes = fread (buffer.data () + bytes_in_buffer, 1,
3e43a32a 12478 io_size - bytes_in_buffer,
d419f42d 12479 file.get ());
a6b151f1
DJ
12480 if (bytes == 0)
12481 {
d419f42d 12482 if (ferror (file.get ()))
a6b151f1
DJ
12483 error (_("Error reading %s."), local_file);
12484 else
12485 {
12486 /* EOF. Unless there is something still in the
12487 buffer from the last iteration, we are done. */
12488 saw_eof = 1;
12489 if (bytes_in_buffer == 0)
12490 break;
12491 }
12492 }
12493 }
12494 else
12495 bytes = 0;
12496
12497 bytes += bytes_in_buffer;
12498 bytes_in_buffer = 0;
12499
5ca3b260 12500 retcode = remote_hostio_pwrite (fd.get (), buffer.data (), bytes,
3e43a32a 12501 offset, &remote_errno);
a6b151f1
DJ
12502
12503 if (retcode < 0)
12504 remote_hostio_error (remote_errno);
12505 else if (retcode == 0)
12506 error (_("Remote write of %d bytes returned 0!"), bytes);
12507 else if (retcode < bytes)
12508 {
12509 /* Short write. Save the rest of the read data for the next
12510 write. */
12511 bytes_in_buffer = bytes - retcode;
5ca3b260 12512 memmove (buffer.data (), buffer.data () + retcode, bytes_in_buffer);
a6b151f1
DJ
12513 }
12514
12515 offset += retcode;
12516 }
12517
6b8edb51 12518 if (remote_hostio_close (fd.release (), &remote_errno))
a6b151f1
DJ
12519 remote_hostio_error (remote_errno);
12520
12521 if (from_tty)
12522 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file);
a6b151f1
DJ
12523}
12524
12525void
12526remote_file_get (const char *remote_file, const char *local_file, int from_tty)
6b8edb51
PA
12527{
12528 remote_target *remote = get_current_remote_target ();
12529
12530 if (remote == nullptr)
12531 error (_("command can only be used with remote target"));
12532
12533 remote->remote_file_get (remote_file, local_file, from_tty);
12534}
12535
12536void
12537remote_target::remote_file_get (const char *remote_file, const char *local_file,
12538 int from_tty)
a6b151f1 12539{
440b7aec 12540 int remote_errno, bytes, io_size;
a6b151f1 12541 ULONGEST offset;
a6b151f1 12542
440b7aec 12543 scoped_remote_fd fd
6b8edb51
PA
12544 (this, remote_hostio_open (NULL,
12545 remote_file, FILEIO_O_RDONLY, 0, 0,
12546 &remote_errno));
440b7aec 12547 if (fd.get () == -1)
a6b151f1
DJ
12548 remote_hostio_error (remote_errno);
12549
d419f42d 12550 gdb_file_up file = gdb_fopen_cloexec (local_file, "wb");
a6b151f1
DJ
12551 if (file == NULL)
12552 perror_with_name (local_file);
a6b151f1
DJ
12553
12554 /* Send up to this many bytes at once. They won't all fit in the
12555 remote packet limit, so we'll transfer slightly fewer. */
12556 io_size = get_remote_packet_size ();
5ca3b260 12557 gdb::byte_vector buffer (io_size);
a6b151f1 12558
a6b151f1
DJ
12559 offset = 0;
12560 while (1)
12561 {
5ca3b260 12562 bytes = remote_hostio_pread (fd.get (), buffer.data (), io_size, offset,
440b7aec 12563 &remote_errno);
a6b151f1
DJ
12564 if (bytes == 0)
12565 /* Success, but no bytes, means end-of-file. */
12566 break;
12567 if (bytes == -1)
12568 remote_hostio_error (remote_errno);
12569
12570 offset += bytes;
12571
5ca3b260 12572 bytes = fwrite (buffer.data (), 1, bytes, file.get ());
a6b151f1
DJ
12573 if (bytes == 0)
12574 perror_with_name (local_file);
12575 }
12576
6b8edb51 12577 if (remote_hostio_close (fd.release (), &remote_errno))
a6b151f1
DJ
12578 remote_hostio_error (remote_errno);
12579
12580 if (from_tty)
12581 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file);
a6b151f1
DJ
12582}
12583
12584void
12585remote_file_delete (const char *remote_file, int from_tty)
12586{
6b8edb51 12587 remote_target *remote = get_current_remote_target ();
a6b151f1 12588
6b8edb51 12589 if (remote == nullptr)
a6b151f1
DJ
12590 error (_("command can only be used with remote target"));
12591
6b8edb51
PA
12592 remote->remote_file_delete (remote_file, from_tty);
12593}
12594
12595void
12596remote_target::remote_file_delete (const char *remote_file, int from_tty)
12597{
12598 int retcode, remote_errno;
12599
12600 retcode = remote_hostio_unlink (NULL, remote_file, &remote_errno);
a6b151f1
DJ
12601 if (retcode == -1)
12602 remote_hostio_error (remote_errno);
12603
12604 if (from_tty)
12605 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file);
12606}
12607
12608static void
ac88e2de 12609remote_put_command (const char *args, int from_tty)
a6b151f1 12610{
d1a41061
PP
12611 if (args == NULL)
12612 error_no_arg (_("file to put"));
12613
773a1edc 12614 gdb_argv argv (args);
a6b151f1
DJ
12615 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12616 error (_("Invalid parameters to remote put"));
12617
12618 remote_file_put (argv[0], argv[1], from_tty);
a6b151f1
DJ
12619}
12620
12621static void
ac88e2de 12622remote_get_command (const char *args, int from_tty)
a6b151f1 12623{
d1a41061
PP
12624 if (args == NULL)
12625 error_no_arg (_("file to get"));
12626
773a1edc 12627 gdb_argv argv (args);
a6b151f1
DJ
12628 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12629 error (_("Invalid parameters to remote get"));
12630
12631 remote_file_get (argv[0], argv[1], from_tty);
a6b151f1
DJ
12632}
12633
12634static void
ac88e2de 12635remote_delete_command (const char *args, int from_tty)
a6b151f1 12636{
d1a41061
PP
12637 if (args == NULL)
12638 error_no_arg (_("file to delete"));
12639
773a1edc 12640 gdb_argv argv (args);
a6b151f1
DJ
12641 if (argv[0] == NULL || argv[1] != NULL)
12642 error (_("Invalid parameters to remote delete"));
12643
12644 remote_file_delete (argv[0], from_tty);
a6b151f1
DJ
12645}
12646
12647static void
981a3fb3 12648remote_command (const char *args, int from_tty)
a6b151f1 12649{
635c7e8a 12650 help_list (remote_cmdlist, "remote ", all_commands, gdb_stdout);
a6b151f1
DJ
12651}
12652
57810aa7 12653bool
f6ac5f3d 12654remote_target::can_execute_reverse ()
b2175913 12655{
4082afcc
PA
12656 if (packet_support (PACKET_bs) == PACKET_ENABLE
12657 || packet_support (PACKET_bc) == PACKET_ENABLE)
57810aa7 12658 return true;
40ab02ce 12659 else
57810aa7 12660 return false;
b2175913
MS
12661}
12662
57810aa7 12663bool
f6ac5f3d 12664remote_target::supports_non_stop ()
74531fed 12665{
57810aa7 12666 return true;
74531fed
PA
12667}
12668
57810aa7 12669bool
f6ac5f3d 12670remote_target::supports_disable_randomization ()
03583c20
UW
12671{
12672 /* Only supported in extended mode. */
57810aa7 12673 return false;
03583c20
UW
12674}
12675
57810aa7 12676bool
f6ac5f3d 12677remote_target::supports_multi_process ()
8a305172
PA
12678{
12679 struct remote_state *rs = get_remote_state ();
a744cf53 12680
8020350c 12681 return remote_multi_process_p (rs);
8a305172
PA
12682}
12683
70221824 12684static int
f6ac5f3d 12685remote_supports_cond_tracepoints ()
782b2b07 12686{
4082afcc 12687 return packet_support (PACKET_ConditionalTracepoints) == PACKET_ENABLE;
782b2b07
SS
12688}
12689
57810aa7 12690bool
f6ac5f3d 12691remote_target::supports_evaluation_of_breakpoint_conditions ()
3788aec7 12692{
4082afcc 12693 return packet_support (PACKET_ConditionalBreakpoints) == PACKET_ENABLE;
3788aec7
LM
12694}
12695
70221824 12696static int
f6ac5f3d 12697remote_supports_fast_tracepoints ()
7a697b8d 12698{
4082afcc 12699 return packet_support (PACKET_FastTracepoints) == PACKET_ENABLE;
7a697b8d
SS
12700}
12701
0fb4aa4b 12702static int
f6ac5f3d 12703remote_supports_static_tracepoints ()
0fb4aa4b 12704{
4082afcc 12705 return packet_support (PACKET_StaticTracepoints) == PACKET_ENABLE;
0fb4aa4b
PA
12706}
12707
1e4d1764 12708static int
f6ac5f3d 12709remote_supports_install_in_trace ()
1e4d1764 12710{
4082afcc 12711 return packet_support (PACKET_InstallInTrace) == PACKET_ENABLE;
1e4d1764
YQ
12712}
12713
57810aa7 12714bool
f6ac5f3d 12715remote_target::supports_enable_disable_tracepoint ()
d248b706 12716{
4082afcc
PA
12717 return (packet_support (PACKET_EnableDisableTracepoints_feature)
12718 == PACKET_ENABLE);
d248b706
KY
12719}
12720
57810aa7 12721bool
f6ac5f3d 12722remote_target::supports_string_tracing ()
3065dfb6 12723{
4082afcc 12724 return packet_support (PACKET_tracenz_feature) == PACKET_ENABLE;
3065dfb6
SS
12725}
12726
57810aa7 12727bool
f6ac5f3d 12728remote_target::can_run_breakpoint_commands ()
d3ce09f5 12729{
4082afcc 12730 return packet_support (PACKET_BreakpointCommands) == PACKET_ENABLE;
d3ce09f5
SS
12731}
12732
f6ac5f3d
PA
12733void
12734remote_target::trace_init ()
35b1e5cc 12735{
b6bb3468
PA
12736 struct remote_state *rs = get_remote_state ();
12737
35b1e5cc 12738 putpkt ("QTinit");
b6bb3468
PA
12739 remote_get_noisy_reply ();
12740 if (strcmp (rs->buf, "OK") != 0)
35b1e5cc
SS
12741 error (_("Target does not support this command."));
12742}
12743
409873ef
SS
12744/* Recursive routine to walk through command list including loops, and
12745 download packets for each command. */
12746
6b8edb51
PA
12747void
12748remote_target::remote_download_command_source (int num, ULONGEST addr,
12749 struct command_line *cmds)
409873ef
SS
12750{
12751 struct remote_state *rs = get_remote_state ();
12752 struct command_line *cmd;
12753
12754 for (cmd = cmds; cmd; cmd = cmd->next)
12755 {
0df8b418 12756 QUIT; /* Allow user to bail out with ^C. */
409873ef
SS
12757 strcpy (rs->buf, "QTDPsrc:");
12758 encode_source_string (num, addr, "cmd", cmd->line,
12759 rs->buf + strlen (rs->buf),
12760 rs->buf_size - strlen (rs->buf));
12761 putpkt (rs->buf);
b6bb3468
PA
12762 remote_get_noisy_reply ();
12763 if (strcmp (rs->buf, "OK"))
409873ef
SS
12764 warning (_("Target does not support source download."));
12765
12766 if (cmd->control_type == while_control
12767 || cmd->control_type == while_stepping_control)
12768 {
12973681 12769 remote_download_command_source (num, addr, cmd->body_list_0.get ());
409873ef 12770
0df8b418 12771 QUIT; /* Allow user to bail out with ^C. */
409873ef
SS
12772 strcpy (rs->buf, "QTDPsrc:");
12773 encode_source_string (num, addr, "cmd", "end",
12774 rs->buf + strlen (rs->buf),
12775 rs->buf_size - strlen (rs->buf));
12776 putpkt (rs->buf);
b6bb3468
PA
12777 remote_get_noisy_reply ();
12778 if (strcmp (rs->buf, "OK"))
409873ef
SS
12779 warning (_("Target does not support source download."));
12780 }
12781 }
12782}
12783
f6ac5f3d
PA
12784void
12785remote_target::download_tracepoint (struct bp_location *loc)
35b1e5cc
SS
12786{
12787 CORE_ADDR tpaddr;
409873ef 12788 char addrbuf[40];
b44ec619
SM
12789 std::vector<std::string> tdp_actions;
12790 std::vector<std::string> stepping_actions;
35b1e5cc 12791 char *pkt;
e8ba3115 12792 struct breakpoint *b = loc->owner;
d9b3f62e 12793 struct tracepoint *t = (struct tracepoint *) b;
b6bb3468 12794 struct remote_state *rs = get_remote_state ();
3df3a985 12795 int ret;
ff36536c 12796 const char *err_msg = _("Tracepoint packet too large for target.");
3df3a985
PFC
12797 size_t size_left;
12798
12799 /* We use a buffer other than rs->buf because we'll build strings
12800 across multiple statements, and other statements in between could
12801 modify rs->buf. */
12802 gdb::char_vector buf (get_remote_packet_size ());
35b1e5cc 12803
dc673c81 12804 encode_actions_rsp (loc, &tdp_actions, &stepping_actions);
e8ba3115
YQ
12805
12806 tpaddr = loc->address;
12807 sprintf_vma (addrbuf, tpaddr);
3df3a985
PFC
12808 ret = snprintf (buf.data (), buf.size (), "QTDP:%x:%s:%c:%lx:%x",
12809 b->number, addrbuf, /* address */
12810 (b->enable_state == bp_enabled ? 'E' : 'D'),
12811 t->step_count, t->pass_count);
12812
12813 if (ret < 0 || ret >= buf.size ())
a7f25a84 12814 error ("%s", err_msg);
3df3a985 12815
e8ba3115
YQ
12816 /* Fast tracepoints are mostly handled by the target, but we can
12817 tell the target how big of an instruction block should be moved
12818 around. */
12819 if (b->type == bp_fast_tracepoint)
12820 {
12821 /* Only test for support at download time; we may not know
12822 target capabilities at definition time. */
12823 if (remote_supports_fast_tracepoints ())
35b1e5cc 12824 {
6b940e6a
PL
12825 if (gdbarch_fast_tracepoint_valid_at (loc->gdbarch, tpaddr,
12826 NULL))
3df3a985
PFC
12827 {
12828 size_left = buf.size () - strlen (buf.data ());
12829 ret = snprintf (buf.data () + strlen (buf.data ()),
12830 size_left, ":F%x",
12831 gdb_insn_length (loc->gdbarch, tpaddr));
12832
12833 if (ret < 0 || ret >= size_left)
a7f25a84 12834 error ("%s", err_msg);
3df3a985 12835 }
35b1e5cc 12836 else
e8ba3115
YQ
12837 /* If it passed validation at definition but fails now,
12838 something is very wrong. */
12839 internal_error (__FILE__, __LINE__,
12840 _("Fast tracepoint not "
12841 "valid during download"));
35b1e5cc 12842 }
e8ba3115
YQ
12843 else
12844 /* Fast tracepoints are functionally identical to regular
12845 tracepoints, so don't take lack of support as a reason to
12846 give up on the trace run. */
12847 warning (_("Target does not support fast tracepoints, "
12848 "downloading %d as regular tracepoint"), b->number);
12849 }
12850 else if (b->type == bp_static_tracepoint)
12851 {
12852 /* Only test for support at download time; we may not know
12853 target capabilities at definition time. */
12854 if (remote_supports_static_tracepoints ())
0fb4aa4b 12855 {
e8ba3115 12856 struct static_tracepoint_marker marker;
0fb4aa4b 12857
e8ba3115 12858 if (target_static_tracepoint_marker_at (tpaddr, &marker))
3df3a985
PFC
12859 {
12860 size_left = buf.size () - strlen (buf.data ());
12861 ret = snprintf (buf.data () + strlen (buf.data ()),
12862 size_left, ":S");
12863
12864 if (ret < 0 || ret >= size_left)
a7f25a84 12865 error ("%s", err_msg);
3df3a985 12866 }
0fb4aa4b 12867 else
e8ba3115 12868 error (_("Static tracepoint not valid during download"));
0fb4aa4b 12869 }
e8ba3115
YQ
12870 else
12871 /* Fast tracepoints are functionally identical to regular
12872 tracepoints, so don't take lack of support as a reason
12873 to give up on the trace run. */
12874 error (_("Target does not support static tracepoints"));
12875 }
12876 /* If the tracepoint has a conditional, make it into an agent
12877 expression and append to the definition. */
12878 if (loc->cond)
12879 {
12880 /* Only test support at download time, we may not know target
12881 capabilities at definition time. */
12882 if (remote_supports_cond_tracepoints ())
35b1e5cc 12883 {
3df3a985
PFC
12884 agent_expr_up aexpr = gen_eval_for_expr (tpaddr,
12885 loc->cond.get ());
12886
12887 size_left = buf.size () - strlen (buf.data ());
12888
12889 ret = snprintf (buf.data () + strlen (buf.data ()),
12890 size_left, ":X%x,", aexpr->len);
12891
12892 if (ret < 0 || ret >= size_left)
a7f25a84 12893 error ("%s", err_msg);
3df3a985
PFC
12894
12895 size_left = buf.size () - strlen (buf.data ());
12896
12897 /* Two bytes to encode each aexpr byte, plus the terminating
12898 null byte. */
12899 if (aexpr->len * 2 + 1 > size_left)
a7f25a84 12900 error ("%s", err_msg);
3df3a985
PFC
12901
12902 pkt = buf.data () + strlen (buf.data ());
12903
b44ec619 12904 for (int ndx = 0; ndx < aexpr->len; ++ndx)
e8ba3115
YQ
12905 pkt = pack_hex_byte (pkt, aexpr->buf[ndx]);
12906 *pkt = '\0';
35b1e5cc 12907 }
e8ba3115
YQ
12908 else
12909 warning (_("Target does not support conditional tracepoints, "
12910 "ignoring tp %d cond"), b->number);
12911 }
35b1e5cc 12912
d9b3f62e 12913 if (b->commands || *default_collect)
3df3a985
PFC
12914 {
12915 size_left = buf.size () - strlen (buf.data ());
12916
12917 ret = snprintf (buf.data () + strlen (buf.data ()),
12918 size_left, "-");
12919
12920 if (ret < 0 || ret >= size_left)
a7f25a84 12921 error ("%s", err_msg);
3df3a985
PFC
12922 }
12923
12924 putpkt (buf.data ());
b6bb3468
PA
12925 remote_get_noisy_reply ();
12926 if (strcmp (rs->buf, "OK"))
e8ba3115 12927 error (_("Target does not support tracepoints."));
35b1e5cc 12928
e8ba3115 12929 /* do_single_steps (t); */
b44ec619
SM
12930 for (auto action_it = tdp_actions.begin ();
12931 action_it != tdp_actions.end (); action_it++)
e8ba3115 12932 {
b44ec619
SM
12933 QUIT; /* Allow user to bail out with ^C. */
12934
aa6f3694 12935 bool has_more = ((action_it + 1) != tdp_actions.end ()
b44ec619
SM
12936 || !stepping_actions.empty ());
12937
3df3a985
PFC
12938 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%c",
12939 b->number, addrbuf, /* address */
12940 action_it->c_str (),
12941 has_more ? '-' : 0);
12942
12943 if (ret < 0 || ret >= buf.size ())
a7f25a84 12944 error ("%s", err_msg);
3df3a985
PFC
12945
12946 putpkt (buf.data ());
b44ec619
SM
12947 remote_get_noisy_reply ();
12948 if (strcmp (rs->buf, "OK"))
12949 error (_("Error on target while setting tracepoints."));
e8ba3115 12950 }
409873ef 12951
05abfc39
PFC
12952 for (auto action_it = stepping_actions.begin ();
12953 action_it != stepping_actions.end (); action_it++)
12954 {
12955 QUIT; /* Allow user to bail out with ^C. */
12956
12957 bool is_first = action_it == stepping_actions.begin ();
aa6f3694 12958 bool has_more = (action_it + 1) != stepping_actions.end ();
05abfc39 12959
3df3a985
PFC
12960 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%s%s",
12961 b->number, addrbuf, /* address */
12962 is_first ? "S" : "",
12963 action_it->c_str (),
12964 has_more ? "-" : "");
12965
12966 if (ret < 0 || ret >= buf.size ())
a7f25a84 12967 error ("%s", err_msg);
3df3a985
PFC
12968
12969 putpkt (buf.data ());
05abfc39
PFC
12970 remote_get_noisy_reply ();
12971 if (strcmp (rs->buf, "OK"))
12972 error (_("Error on target while setting tracepoints."));
12973 }
b44ec619 12974
4082afcc 12975 if (packet_support (PACKET_TracepointSource) == PACKET_ENABLE)
e8ba3115 12976 {
f00aae0f 12977 if (b->location != NULL)
409873ef 12978 {
3df3a985
PFC
12979 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
12980
12981 if (ret < 0 || ret >= buf.size ())
a7f25a84 12982 error ("%s", err_msg);
3df3a985 12983
f00aae0f 12984 encode_source_string (b->number, loc->address, "at",
d28cd78a 12985 event_location_to_string (b->location.get ()),
3df3a985
PFC
12986 buf.data () + strlen (buf.data ()),
12987 buf.size () - strlen (buf.data ()));
12988 putpkt (buf.data ());
b6bb3468
PA
12989 remote_get_noisy_reply ();
12990 if (strcmp (rs->buf, "OK"))
e8ba3115 12991 warning (_("Target does not support source download."));
409873ef 12992 }
e8ba3115
YQ
12993 if (b->cond_string)
12994 {
3df3a985
PFC
12995 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
12996
12997 if (ret < 0 || ret >= buf.size ())
a7f25a84 12998 error ("%s", err_msg);
3df3a985 12999
e8ba3115 13000 encode_source_string (b->number, loc->address,
3df3a985
PFC
13001 "cond", b->cond_string,
13002 buf.data () + strlen (buf.data ()),
13003 buf.size () - strlen (buf.data ()));
13004 putpkt (buf.data ());
b6bb3468
PA
13005 remote_get_noisy_reply ();
13006 if (strcmp (rs->buf, "OK"))
e8ba3115
YQ
13007 warning (_("Target does not support source download."));
13008 }
13009 remote_download_command_source (b->number, loc->address,
13010 breakpoint_commands (b));
35b1e5cc 13011 }
35b1e5cc
SS
13012}
13013
57810aa7 13014bool
f6ac5f3d 13015remote_target::can_download_tracepoint ()
1e4d1764 13016{
1e51243a
PA
13017 struct remote_state *rs = get_remote_state ();
13018 struct trace_status *ts;
13019 int status;
13020
13021 /* Don't try to install tracepoints until we've relocated our
13022 symbols, and fetched and merged the target's tracepoint list with
13023 ours. */
13024 if (rs->starting_up)
57810aa7 13025 return false;
1e51243a
PA
13026
13027 ts = current_trace_status ();
f6ac5f3d 13028 status = get_trace_status (ts);
1e4d1764
YQ
13029
13030 if (status == -1 || !ts->running_known || !ts->running)
57810aa7 13031 return false;
1e4d1764
YQ
13032
13033 /* If we are in a tracing experiment, but remote stub doesn't support
13034 installing tracepoint in trace, we have to return. */
13035 if (!remote_supports_install_in_trace ())
57810aa7 13036 return false;
1e4d1764 13037
57810aa7 13038 return true;
1e4d1764
YQ
13039}
13040
13041
f6ac5f3d
PA
13042void
13043remote_target::download_trace_state_variable (const trace_state_variable &tsv)
35b1e5cc
SS
13044{
13045 struct remote_state *rs = get_remote_state ();
00bf0b85 13046 char *p;
35b1e5cc 13047
bba74b36 13048 xsnprintf (rs->buf, get_remote_packet_size (), "QTDV:%x:%s:%x:",
c252925c
SM
13049 tsv.number, phex ((ULONGEST) tsv.initial_value, 8),
13050 tsv.builtin);
00bf0b85 13051 p = rs->buf + strlen (rs->buf);
c252925c 13052 if ((p - rs->buf) + tsv.name.length () * 2 >= get_remote_packet_size ())
00bf0b85 13053 error (_("Trace state variable name too long for tsv definition packet"));
c252925c 13054 p += 2 * bin2hex ((gdb_byte *) (tsv.name.data ()), p, tsv.name.length ());
00bf0b85 13055 *p++ = '\0';
35b1e5cc 13056 putpkt (rs->buf);
b6bb3468
PA
13057 remote_get_noisy_reply ();
13058 if (*rs->buf == '\0')
ad91cd99 13059 error (_("Target does not support this command."));
b6bb3468 13060 if (strcmp (rs->buf, "OK") != 0)
ad91cd99 13061 error (_("Error on target while downloading trace state variable."));
35b1e5cc
SS
13062}
13063
f6ac5f3d
PA
13064void
13065remote_target::enable_tracepoint (struct bp_location *location)
d248b706
KY
13066{
13067 struct remote_state *rs = get_remote_state ();
13068 char addr_buf[40];
13069
13070 sprintf_vma (addr_buf, location->address);
bba74b36
YQ
13071 xsnprintf (rs->buf, get_remote_packet_size (), "QTEnable:%x:%s",
13072 location->owner->number, addr_buf);
d248b706 13073 putpkt (rs->buf);
b6bb3468 13074 remote_get_noisy_reply ();
d248b706
KY
13075 if (*rs->buf == '\0')
13076 error (_("Target does not support enabling tracepoints while a trace run is ongoing."));
13077 if (strcmp (rs->buf, "OK") != 0)
13078 error (_("Error on target while enabling tracepoint."));
13079}
13080
f6ac5f3d
PA
13081void
13082remote_target::disable_tracepoint (struct bp_location *location)
d248b706
KY
13083{
13084 struct remote_state *rs = get_remote_state ();
13085 char addr_buf[40];
13086
13087 sprintf_vma (addr_buf, location->address);
bba74b36
YQ
13088 xsnprintf (rs->buf, get_remote_packet_size (), "QTDisable:%x:%s",
13089 location->owner->number, addr_buf);
d248b706 13090 putpkt (rs->buf);
b6bb3468 13091 remote_get_noisy_reply ();
d248b706
KY
13092 if (*rs->buf == '\0')
13093 error (_("Target does not support disabling tracepoints while a trace run is ongoing."));
13094 if (strcmp (rs->buf, "OK") != 0)
13095 error (_("Error on target while disabling tracepoint."));
13096}
13097
f6ac5f3d
PA
13098void
13099remote_target::trace_set_readonly_regions ()
35b1e5cc
SS
13100{
13101 asection *s;
81b9b86e 13102 bfd *abfd = NULL;
35b1e5cc 13103 bfd_size_type size;
608bcef2 13104 bfd_vma vma;
35b1e5cc 13105 int anysecs = 0;
c2fa21f1 13106 int offset = 0;
35b1e5cc
SS
13107
13108 if (!exec_bfd)
13109 return; /* No information to give. */
13110
b6bb3468
PA
13111 struct remote_state *rs = get_remote_state ();
13112
13113 strcpy (rs->buf, "QTro");
13114 offset = strlen (rs->buf);
35b1e5cc
SS
13115 for (s = exec_bfd->sections; s; s = s->next)
13116 {
13117 char tmp1[40], tmp2[40];
c2fa21f1 13118 int sec_length;
35b1e5cc
SS
13119
13120 if ((s->flags & SEC_LOAD) == 0 ||
0df8b418 13121 /* (s->flags & SEC_CODE) == 0 || */
35b1e5cc
SS
13122 (s->flags & SEC_READONLY) == 0)
13123 continue;
13124
13125 anysecs = 1;
81b9b86e 13126 vma = bfd_get_section_vma (abfd, s);
35b1e5cc 13127 size = bfd_get_section_size (s);
608bcef2
HZ
13128 sprintf_vma (tmp1, vma);
13129 sprintf_vma (tmp2, vma + size);
c2fa21f1 13130 sec_length = 1 + strlen (tmp1) + 1 + strlen (tmp2);
b6bb3468 13131 if (offset + sec_length + 1 > rs->buf_size)
c2fa21f1 13132 {
4082afcc 13133 if (packet_support (PACKET_qXfer_traceframe_info) != PACKET_ENABLE)
864ac8a7 13134 warning (_("\
c2fa21f1
HZ
13135Too many sections for read-only sections definition packet."));
13136 break;
13137 }
b6bb3468 13138 xsnprintf (rs->buf + offset, rs->buf_size - offset, ":%s,%s",
bba74b36 13139 tmp1, tmp2);
c2fa21f1 13140 offset += sec_length;
35b1e5cc
SS
13141 }
13142 if (anysecs)
13143 {
b6bb3468
PA
13144 putpkt (rs->buf);
13145 getpkt (&rs->buf, &rs->buf_size, 0);
35b1e5cc
SS
13146 }
13147}
13148
f6ac5f3d
PA
13149void
13150remote_target::trace_start ()
35b1e5cc 13151{
b6bb3468
PA
13152 struct remote_state *rs = get_remote_state ();
13153
35b1e5cc 13154 putpkt ("QTStart");
b6bb3468
PA
13155 remote_get_noisy_reply ();
13156 if (*rs->buf == '\0')
ad91cd99 13157 error (_("Target does not support this command."));
b6bb3468
PA
13158 if (strcmp (rs->buf, "OK") != 0)
13159 error (_("Bogus reply from target: %s"), rs->buf);
35b1e5cc
SS
13160}
13161
f6ac5f3d
PA
13162int
13163remote_target::get_trace_status (struct trace_status *ts)
35b1e5cc 13164{
953b98d1 13165 /* Initialize it just to avoid a GCC false warning. */
f652de6f 13166 char *p = NULL;
0df8b418 13167 /* FIXME we need to get register block size some other way. */
00bf0b85 13168 extern int trace_regblock_size;
bd3eecc3 13169 enum packet_result result;
b6bb3468 13170 struct remote_state *rs = get_remote_state ();
bd3eecc3 13171
4082afcc 13172 if (packet_support (PACKET_qTStatus) == PACKET_DISABLE)
bd3eecc3 13173 return -1;
a744cf53 13174
5cd63fda 13175 trace_regblock_size
9d6eea31 13176 = rs->get_remote_arch_state (target_gdbarch ())->sizeof_g_packet;
00bf0b85 13177
049dc89b
JK
13178 putpkt ("qTStatus");
13179
492d29ea 13180 TRY
67f41397 13181 {
b6bb3468 13182 p = remote_get_noisy_reply ();
67f41397 13183 }
492d29ea 13184 CATCH (ex, RETURN_MASK_ERROR)
67f41397 13185 {
598d3636
JK
13186 if (ex.error != TARGET_CLOSE_ERROR)
13187 {
13188 exception_fprintf (gdb_stderr, ex, "qTStatus: ");
13189 return -1;
13190 }
13191 throw_exception (ex);
67f41397 13192 }
492d29ea 13193 END_CATCH
00bf0b85 13194
bd3eecc3
PA
13195 result = packet_ok (p, &remote_protocol_packets[PACKET_qTStatus]);
13196
00bf0b85 13197 /* If the remote target doesn't do tracing, flag it. */
bd3eecc3 13198 if (result == PACKET_UNKNOWN)
00bf0b85 13199 return -1;
35b1e5cc 13200
00bf0b85 13201 /* We're working with a live target. */
f5911ea1 13202 ts->filename = NULL;
00bf0b85 13203
00bf0b85 13204 if (*p++ != 'T')
b6bb3468 13205 error (_("Bogus trace status reply from target: %s"), rs->buf);
35b1e5cc 13206
84cebc4a
YQ
13207 /* Function 'parse_trace_status' sets default value of each field of
13208 'ts' at first, so we don't have to do it here. */
00bf0b85
SS
13209 parse_trace_status (p, ts);
13210
13211 return ts->running;
35b1e5cc
SS
13212}
13213
f6ac5f3d
PA
13214void
13215remote_target::get_tracepoint_status (struct breakpoint *bp,
13216 struct uploaded_tp *utp)
f196051f
SS
13217{
13218 struct remote_state *rs = get_remote_state ();
f196051f
SS
13219 char *reply;
13220 struct bp_location *loc;
13221 struct tracepoint *tp = (struct tracepoint *) bp;
bba74b36 13222 size_t size = get_remote_packet_size ();
f196051f
SS
13223
13224 if (tp)
13225 {
c1fc2657 13226 tp->hit_count = 0;
f196051f 13227 tp->traceframe_usage = 0;
c1fc2657 13228 for (loc = tp->loc; loc; loc = loc->next)
f196051f
SS
13229 {
13230 /* If the tracepoint was never downloaded, don't go asking for
13231 any status. */
13232 if (tp->number_on_target == 0)
13233 continue;
bba74b36
YQ
13234 xsnprintf (rs->buf, size, "qTP:%x:%s", tp->number_on_target,
13235 phex_nz (loc->address, 0));
f196051f 13236 putpkt (rs->buf);
b6bb3468 13237 reply = remote_get_noisy_reply ();
f196051f
SS
13238 if (reply && *reply)
13239 {
13240 if (*reply == 'V')
13241 parse_tracepoint_status (reply + 1, bp, utp);
13242 }
13243 }
13244 }
13245 else if (utp)
13246 {
13247 utp->hit_count = 0;
13248 utp->traceframe_usage = 0;
bba74b36
YQ
13249 xsnprintf (rs->buf, size, "qTP:%x:%s", utp->number,
13250 phex_nz (utp->addr, 0));
f196051f 13251 putpkt (rs->buf);
b6bb3468 13252 reply = remote_get_noisy_reply ();
f196051f
SS
13253 if (reply && *reply)
13254 {
13255 if (*reply == 'V')
13256 parse_tracepoint_status (reply + 1, bp, utp);
13257 }
13258 }
13259}
13260
f6ac5f3d
PA
13261void
13262remote_target::trace_stop ()
35b1e5cc 13263{
b6bb3468
PA
13264 struct remote_state *rs = get_remote_state ();
13265
35b1e5cc 13266 putpkt ("QTStop");
b6bb3468
PA
13267 remote_get_noisy_reply ();
13268 if (*rs->buf == '\0')
ad91cd99 13269 error (_("Target does not support this command."));
b6bb3468
PA
13270 if (strcmp (rs->buf, "OK") != 0)
13271 error (_("Bogus reply from target: %s"), rs->buf);
35b1e5cc
SS
13272}
13273
f6ac5f3d
PA
13274int
13275remote_target::trace_find (enum trace_find_type type, int num,
13276 CORE_ADDR addr1, CORE_ADDR addr2,
13277 int *tpp)
35b1e5cc
SS
13278{
13279 struct remote_state *rs = get_remote_state ();
bba74b36 13280 char *endbuf = rs->buf + get_remote_packet_size ();
35b1e5cc
SS
13281 char *p, *reply;
13282 int target_frameno = -1, target_tracept = -1;
13283
e6e4e701
PA
13284 /* Lookups other than by absolute frame number depend on the current
13285 trace selected, so make sure it is correct on the remote end
13286 first. */
13287 if (type != tfind_number)
13288 set_remote_traceframe ();
13289
35b1e5cc
SS
13290 p = rs->buf;
13291 strcpy (p, "QTFrame:");
13292 p = strchr (p, '\0');
13293 switch (type)
13294 {
13295 case tfind_number:
bba74b36 13296 xsnprintf (p, endbuf - p, "%x", num);
35b1e5cc
SS
13297 break;
13298 case tfind_pc:
bba74b36 13299 xsnprintf (p, endbuf - p, "pc:%s", phex_nz (addr1, 0));
35b1e5cc
SS
13300 break;
13301 case tfind_tp:
bba74b36 13302 xsnprintf (p, endbuf - p, "tdp:%x", num);
35b1e5cc
SS
13303 break;
13304 case tfind_range:
bba74b36
YQ
13305 xsnprintf (p, endbuf - p, "range:%s:%s", phex_nz (addr1, 0),
13306 phex_nz (addr2, 0));
35b1e5cc
SS
13307 break;
13308 case tfind_outside:
bba74b36
YQ
13309 xsnprintf (p, endbuf - p, "outside:%s:%s", phex_nz (addr1, 0),
13310 phex_nz (addr2, 0));
35b1e5cc
SS
13311 break;
13312 default:
9b20d036 13313 error (_("Unknown trace find type %d"), type);
35b1e5cc
SS
13314 }
13315
13316 putpkt (rs->buf);
b6bb3468 13317 reply = remote_get_noisy_reply ();
ad91cd99
PA
13318 if (*reply == '\0')
13319 error (_("Target does not support this command."));
35b1e5cc
SS
13320
13321 while (reply && *reply)
13322 switch (*reply)
13323 {
13324 case 'F':
f197e0f1
VP
13325 p = ++reply;
13326 target_frameno = (int) strtol (p, &reply, 16);
13327 if (reply == p)
13328 error (_("Unable to parse trace frame number"));
e6e4e701
PA
13329 /* Don't update our remote traceframe number cache on failure
13330 to select a remote traceframe. */
f197e0f1
VP
13331 if (target_frameno == -1)
13332 return -1;
35b1e5cc
SS
13333 break;
13334 case 'T':
f197e0f1
VP
13335 p = ++reply;
13336 target_tracept = (int) strtol (p, &reply, 16);
13337 if (reply == p)
13338 error (_("Unable to parse tracepoint number"));
35b1e5cc
SS
13339 break;
13340 case 'O': /* "OK"? */
13341 if (reply[1] == 'K' && reply[2] == '\0')
13342 reply += 2;
13343 else
13344 error (_("Bogus reply from target: %s"), reply);
13345 break;
13346 default:
13347 error (_("Bogus reply from target: %s"), reply);
13348 }
13349 if (tpp)
13350 *tpp = target_tracept;
e6e4e701 13351
262e1174 13352 rs->remote_traceframe_number = target_frameno;
35b1e5cc
SS
13353 return target_frameno;
13354}
13355
57810aa7 13356bool
f6ac5f3d 13357remote_target::get_trace_state_variable_value (int tsvnum, LONGEST *val)
35b1e5cc
SS
13358{
13359 struct remote_state *rs = get_remote_state ();
13360 char *reply;
13361 ULONGEST uval;
13362
e6e4e701
PA
13363 set_remote_traceframe ();
13364
bba74b36 13365 xsnprintf (rs->buf, get_remote_packet_size (), "qTV:%x", tsvnum);
35b1e5cc 13366 putpkt (rs->buf);
b6bb3468 13367 reply = remote_get_noisy_reply ();
35b1e5cc
SS
13368 if (reply && *reply)
13369 {
13370 if (*reply == 'V')
13371 {
13372 unpack_varlen_hex (reply + 1, &uval);
13373 *val = (LONGEST) uval;
57810aa7 13374 return true;
35b1e5cc
SS
13375 }
13376 }
57810aa7 13377 return false;
35b1e5cc
SS
13378}
13379
f6ac5f3d
PA
13380int
13381remote_target::save_trace_data (const char *filename)
00bf0b85
SS
13382{
13383 struct remote_state *rs = get_remote_state ();
13384 char *p, *reply;
13385
13386 p = rs->buf;
13387 strcpy (p, "QTSave:");
13388 p += strlen (p);
13389 if ((p - rs->buf) + strlen (filename) * 2 >= get_remote_packet_size ())
13390 error (_("Remote file name too long for trace save packet"));
9f1b45b0 13391 p += 2 * bin2hex ((gdb_byte *) filename, p, strlen (filename));
00bf0b85
SS
13392 *p++ = '\0';
13393 putpkt (rs->buf);
b6bb3468 13394 reply = remote_get_noisy_reply ();
d6c5869f 13395 if (*reply == '\0')
ad91cd99
PA
13396 error (_("Target does not support this command."));
13397 if (strcmp (reply, "OK") != 0)
13398 error (_("Bogus reply from target: %s"), reply);
00bf0b85
SS
13399 return 0;
13400}
13401
13402/* This is basically a memory transfer, but needs to be its own packet
13403 because we don't know how the target actually organizes its trace
13404 memory, plus we want to be able to ask for as much as possible, but
13405 not be unhappy if we don't get as much as we ask for. */
13406
f6ac5f3d
PA
13407LONGEST
13408remote_target::get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len)
00bf0b85
SS
13409{
13410 struct remote_state *rs = get_remote_state ();
13411 char *reply;
13412 char *p;
13413 int rslt;
13414
13415 p = rs->buf;
13416 strcpy (p, "qTBuffer:");
13417 p += strlen (p);
13418 p += hexnumstr (p, offset);
13419 *p++ = ',';
13420 p += hexnumstr (p, len);
13421 *p++ = '\0';
13422
13423 putpkt (rs->buf);
b6bb3468 13424 reply = remote_get_noisy_reply ();
00bf0b85
SS
13425 if (reply && *reply)
13426 {
13427 /* 'l' by itself means we're at the end of the buffer and
13428 there is nothing more to get. */
13429 if (*reply == 'l')
13430 return 0;
13431
13432 /* Convert the reply into binary. Limit the number of bytes to
13433 convert according to our passed-in buffer size, rather than
13434 what was returned in the packet; if the target is
13435 unexpectedly generous and gives us a bigger reply than we
13436 asked for, we don't want to crash. */
b6bb3468 13437 rslt = hex2bin (reply, buf, len);
00bf0b85
SS
13438 return rslt;
13439 }
13440
13441 /* Something went wrong, flag as an error. */
13442 return -1;
13443}
13444
f6ac5f3d
PA
13445void
13446remote_target::set_disconnected_tracing (int val)
35b1e5cc
SS
13447{
13448 struct remote_state *rs = get_remote_state ();
13449
4082afcc 13450 if (packet_support (PACKET_DisconnectedTracing_feature) == PACKET_ENABLE)
33da3f1c 13451 {
ad91cd99
PA
13452 char *reply;
13453
bba74b36 13454 xsnprintf (rs->buf, get_remote_packet_size (), "QTDisconnected:%x", val);
33da3f1c 13455 putpkt (rs->buf);
b6bb3468 13456 reply = remote_get_noisy_reply ();
ad91cd99 13457 if (*reply == '\0')
33da3f1c 13458 error (_("Target does not support this command."));
ad91cd99
PA
13459 if (strcmp (reply, "OK") != 0)
13460 error (_("Bogus reply from target: %s"), reply);
33da3f1c
SS
13461 }
13462 else if (val)
13463 warning (_("Target does not support disconnected tracing."));
35b1e5cc
SS
13464}
13465
f6ac5f3d
PA
13466int
13467remote_target::core_of_thread (ptid_t ptid)
dc146f7c
VP
13468{
13469 struct thread_info *info = find_thread_ptid (ptid);
a744cf53 13470
7aabaf9d
SM
13471 if (info != NULL && info->priv != NULL)
13472 return get_remote_thread_info (info)->core;
13473
dc146f7c
VP
13474 return -1;
13475}
13476
f6ac5f3d
PA
13477void
13478remote_target::set_circular_trace_buffer (int val)
4daf5ac0
SS
13479{
13480 struct remote_state *rs = get_remote_state ();
ad91cd99 13481 char *reply;
4daf5ac0 13482
bba74b36 13483 xsnprintf (rs->buf, get_remote_packet_size (), "QTBuffer:circular:%x", val);
4daf5ac0 13484 putpkt (rs->buf);
b6bb3468 13485 reply = remote_get_noisy_reply ();
ad91cd99 13486 if (*reply == '\0')
4daf5ac0 13487 error (_("Target does not support this command."));
ad91cd99
PA
13488 if (strcmp (reply, "OK") != 0)
13489 error (_("Bogus reply from target: %s"), reply);
4daf5ac0
SS
13490}
13491
f6ac5f3d
PA
13492traceframe_info_up
13493remote_target::traceframe_info ()
b3b9301e 13494{
9018be22 13495 gdb::optional<gdb::char_vector> text
8b88a78e 13496 = target_read_stralloc (current_top_target (), TARGET_OBJECT_TRACEFRAME_INFO,
b7b030ad 13497 NULL);
9018be22
SM
13498 if (text)
13499 return parse_traceframe_info (text->data ());
b3b9301e
PA
13500
13501 return NULL;
13502}
13503
405f8e94
SS
13504/* Handle the qTMinFTPILen packet. Returns the minimum length of
13505 instruction on which a fast tracepoint may be placed. Returns -1
13506 if the packet is not supported, and 0 if the minimum instruction
13507 length is unknown. */
13508
f6ac5f3d
PA
13509int
13510remote_target::get_min_fast_tracepoint_insn_len ()
405f8e94
SS
13511{
13512 struct remote_state *rs = get_remote_state ();
13513 char *reply;
13514
e886a173
PA
13515 /* If we're not debugging a process yet, the IPA can't be
13516 loaded. */
13517 if (!target_has_execution)
13518 return 0;
13519
13520 /* Make sure the remote is pointing at the right process. */
13521 set_general_process ();
13522
bba74b36 13523 xsnprintf (rs->buf, get_remote_packet_size (), "qTMinFTPILen");
405f8e94 13524 putpkt (rs->buf);
b6bb3468 13525 reply = remote_get_noisy_reply ();
405f8e94
SS
13526 if (*reply == '\0')
13527 return -1;
13528 else
13529 {
13530 ULONGEST min_insn_len;
13531
13532 unpack_varlen_hex (reply, &min_insn_len);
13533
13534 return (int) min_insn_len;
13535 }
13536}
13537
f6ac5f3d
PA
13538void
13539remote_target::set_trace_buffer_size (LONGEST val)
f6f899bf 13540{
4082afcc 13541 if (packet_support (PACKET_QTBuffer_size) != PACKET_DISABLE)
f6f899bf
HAQ
13542 {
13543 struct remote_state *rs = get_remote_state ();
13544 char *buf = rs->buf;
13545 char *endbuf = rs->buf + get_remote_packet_size ();
13546 enum packet_result result;
13547
13548 gdb_assert (val >= 0 || val == -1);
13549 buf += xsnprintf (buf, endbuf - buf, "QTBuffer:size:");
13550 /* Send -1 as literal "-1" to avoid host size dependency. */
13551 if (val < 0)
13552 {
13553 *buf++ = '-';
13554 buf += hexnumstr (buf, (ULONGEST) -val);
13555 }
13556 else
13557 buf += hexnumstr (buf, (ULONGEST) val);
13558
13559 putpkt (rs->buf);
b6bb3468 13560 remote_get_noisy_reply ();
f6f899bf
HAQ
13561 result = packet_ok (rs->buf,
13562 &remote_protocol_packets[PACKET_QTBuffer_size]);
13563
13564 if (result != PACKET_OK)
13565 warning (_("Bogus reply from target: %s"), rs->buf);
13566 }
13567}
13568
57810aa7 13569bool
f6ac5f3d
PA
13570remote_target::set_trace_notes (const char *user, const char *notes,
13571 const char *stop_notes)
f196051f
SS
13572{
13573 struct remote_state *rs = get_remote_state ();
13574 char *reply;
13575 char *buf = rs->buf;
13576 char *endbuf = rs->buf + get_remote_packet_size ();
13577 int nbytes;
13578
13579 buf += xsnprintf (buf, endbuf - buf, "QTNotes:");
13580 if (user)
13581 {
13582 buf += xsnprintf (buf, endbuf - buf, "user:");
9f1b45b0 13583 nbytes = bin2hex ((gdb_byte *) user, buf, strlen (user));
f196051f
SS
13584 buf += 2 * nbytes;
13585 *buf++ = ';';
13586 }
13587 if (notes)
13588 {
13589 buf += xsnprintf (buf, endbuf - buf, "notes:");
9f1b45b0 13590 nbytes = bin2hex ((gdb_byte *) notes, buf, strlen (notes));
f196051f
SS
13591 buf += 2 * nbytes;
13592 *buf++ = ';';
13593 }
13594 if (stop_notes)
13595 {
13596 buf += xsnprintf (buf, endbuf - buf, "tstop:");
9f1b45b0 13597 nbytes = bin2hex ((gdb_byte *) stop_notes, buf, strlen (stop_notes));
f196051f
SS
13598 buf += 2 * nbytes;
13599 *buf++ = ';';
13600 }
13601 /* Ensure the buffer is terminated. */
13602 *buf = '\0';
13603
13604 putpkt (rs->buf);
b6bb3468 13605 reply = remote_get_noisy_reply ();
f196051f 13606 if (*reply == '\0')
57810aa7 13607 return false;
f196051f
SS
13608
13609 if (strcmp (reply, "OK") != 0)
13610 error (_("Bogus reply from target: %s"), reply);
13611
57810aa7 13612 return true;
f196051f
SS
13613}
13614
57810aa7
PA
13615bool
13616remote_target::use_agent (bool use)
d1feda86 13617{
4082afcc 13618 if (packet_support (PACKET_QAgent) != PACKET_DISABLE)
d1feda86
YQ
13619 {
13620 struct remote_state *rs = get_remote_state ();
13621
13622 /* If the stub supports QAgent. */
bba74b36 13623 xsnprintf (rs->buf, get_remote_packet_size (), "QAgent:%d", use);
d1feda86
YQ
13624 putpkt (rs->buf);
13625 getpkt (&rs->buf, &rs->buf_size, 0);
13626
13627 if (strcmp (rs->buf, "OK") == 0)
13628 {
f6ac5f3d 13629 ::use_agent = use;
57810aa7 13630 return true;
d1feda86
YQ
13631 }
13632 }
13633
57810aa7 13634 return false;
d1feda86
YQ
13635}
13636
57810aa7 13637bool
f6ac5f3d 13638remote_target::can_use_agent ()
d1feda86 13639{
4082afcc 13640 return (packet_support (PACKET_QAgent) != PACKET_DISABLE);
d1feda86
YQ
13641}
13642
9accd112
MM
13643struct btrace_target_info
13644{
13645 /* The ptid of the traced thread. */
13646 ptid_t ptid;
f4abbc16
MM
13647
13648 /* The obtained branch trace configuration. */
13649 struct btrace_config conf;
9accd112
MM
13650};
13651
f4abbc16
MM
13652/* Reset our idea of our target's btrace configuration. */
13653
13654static void
6b8edb51 13655remote_btrace_reset (remote_state *rs)
f4abbc16 13656{
f4abbc16
MM
13657 memset (&rs->btrace_config, 0, sizeof (rs->btrace_config));
13658}
13659
f4abbc16
MM
13660/* Synchronize the configuration with the target. */
13661
6b8edb51
PA
13662void
13663remote_target::btrace_sync_conf (const btrace_config *conf)
f4abbc16 13664{
d33501a5
MM
13665 struct packet_config *packet;
13666 struct remote_state *rs;
13667 char *buf, *pos, *endbuf;
13668
13669 rs = get_remote_state ();
13670 buf = rs->buf;
13671 endbuf = buf + get_remote_packet_size ();
13672
13673 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_bts_size];
13674 if (packet_config_support (packet) == PACKET_ENABLE
13675 && conf->bts.size != rs->btrace_config.bts.size)
13676 {
13677 pos = buf;
13678 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13679 conf->bts.size);
13680
13681 putpkt (buf);
13682 getpkt (&buf, &rs->buf_size, 0);
13683
13684 if (packet_ok (buf, packet) == PACKET_ERROR)
13685 {
13686 if (buf[0] == 'E' && buf[1] == '.')
13687 error (_("Failed to configure the BTS buffer size: %s"), buf + 2);
13688 else
13689 error (_("Failed to configure the BTS buffer size."));
13690 }
13691
13692 rs->btrace_config.bts.size = conf->bts.size;
13693 }
b20a6524
MM
13694
13695 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_pt_size];
13696 if (packet_config_support (packet) == PACKET_ENABLE
13697 && conf->pt.size != rs->btrace_config.pt.size)
13698 {
13699 pos = buf;
13700 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13701 conf->pt.size);
13702
13703 putpkt (buf);
13704 getpkt (&buf, &rs->buf_size, 0);
13705
13706 if (packet_ok (buf, packet) == PACKET_ERROR)
13707 {
13708 if (buf[0] == 'E' && buf[1] == '.')
13709 error (_("Failed to configure the trace buffer size: %s"), buf + 2);
13710 else
13711 error (_("Failed to configure the trace buffer size."));
13712 }
13713
13714 rs->btrace_config.pt.size = conf->pt.size;
13715 }
f4abbc16
MM
13716}
13717
13718/* Read the current thread's btrace configuration from the target and
13719 store it into CONF. */
13720
13721static void
13722btrace_read_config (struct btrace_config *conf)
13723{
9018be22 13724 gdb::optional<gdb::char_vector> xml
8b88a78e 13725 = target_read_stralloc (current_top_target (), TARGET_OBJECT_BTRACE_CONF, "");
9018be22
SM
13726 if (xml)
13727 parse_xml_btrace_conf (conf, xml->data ());
f4abbc16
MM
13728}
13729
c0272db5
TW
13730/* Maybe reopen target btrace. */
13731
6b8edb51
PA
13732void
13733remote_target::remote_btrace_maybe_reopen ()
c0272db5
TW
13734{
13735 struct remote_state *rs = get_remote_state ();
c0272db5 13736 int btrace_target_pushed = 0;
15766370 13737#if !defined (HAVE_LIBIPT)
c0272db5 13738 int warned = 0;
15766370 13739#endif
c0272db5 13740
5ed8105e
PA
13741 scoped_restore_current_thread restore_thread;
13742
08036331 13743 for (thread_info *tp : all_non_exited_threads ())
c0272db5
TW
13744 {
13745 set_general_thread (tp->ptid);
13746
13747 memset (&rs->btrace_config, 0x00, sizeof (struct btrace_config));
13748 btrace_read_config (&rs->btrace_config);
13749
13750 if (rs->btrace_config.format == BTRACE_FORMAT_NONE)
13751 continue;
13752
13753#if !defined (HAVE_LIBIPT)
13754 if (rs->btrace_config.format == BTRACE_FORMAT_PT)
13755 {
13756 if (!warned)
13757 {
13758 warned = 1;
c4e12631
MM
13759 warning (_("Target is recording using Intel Processor Trace "
13760 "but support was disabled at compile time."));
c0272db5
TW
13761 }
13762
13763 continue;
13764 }
13765#endif /* !defined (HAVE_LIBIPT) */
13766
13767 /* Push target, once, but before anything else happens. This way our
13768 changes to the threads will be cleaned up by unpushing the target
13769 in case btrace_read_config () throws. */
13770 if (!btrace_target_pushed)
13771 {
13772 btrace_target_pushed = 1;
13773 record_btrace_push_target ();
13774 printf_filtered (_("Target is recording using %s.\n"),
13775 btrace_format_string (rs->btrace_config.format));
13776 }
13777
13778 tp->btrace.target = XCNEW (struct btrace_target_info);
13779 tp->btrace.target->ptid = tp->ptid;
13780 tp->btrace.target->conf = rs->btrace_config;
13781 }
c0272db5
TW
13782}
13783
9accd112
MM
13784/* Enable branch tracing. */
13785
f6ac5f3d
PA
13786struct btrace_target_info *
13787remote_target::enable_btrace (ptid_t ptid, const struct btrace_config *conf)
9accd112
MM
13788{
13789 struct btrace_target_info *tinfo = NULL;
b20a6524 13790 struct packet_config *packet = NULL;
9accd112
MM
13791 struct remote_state *rs = get_remote_state ();
13792 char *buf = rs->buf;
13793 char *endbuf = rs->buf + get_remote_packet_size ();
13794
b20a6524
MM
13795 switch (conf->format)
13796 {
13797 case BTRACE_FORMAT_BTS:
13798 packet = &remote_protocol_packets[PACKET_Qbtrace_bts];
13799 break;
13800
13801 case BTRACE_FORMAT_PT:
13802 packet = &remote_protocol_packets[PACKET_Qbtrace_pt];
13803 break;
13804 }
13805
13806 if (packet == NULL || packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13807 error (_("Target does not support branch tracing."));
13808
f4abbc16
MM
13809 btrace_sync_conf (conf);
13810
9accd112
MM
13811 set_general_thread (ptid);
13812
13813 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
13814 putpkt (rs->buf);
13815 getpkt (&rs->buf, &rs->buf_size, 0);
13816
13817 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
13818 {
13819 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
13820 error (_("Could not enable branch tracing for %s: %s"),
13821 target_pid_to_str (ptid), rs->buf + 2);
13822 else
13823 error (_("Could not enable branch tracing for %s."),
13824 target_pid_to_str (ptid));
13825 }
13826
8d749320 13827 tinfo = XCNEW (struct btrace_target_info);
9accd112
MM
13828 tinfo->ptid = ptid;
13829
f4abbc16
MM
13830 /* If we fail to read the configuration, we lose some information, but the
13831 tracing itself is not impacted. */
492d29ea
PA
13832 TRY
13833 {
13834 btrace_read_config (&tinfo->conf);
13835 }
13836 CATCH (err, RETURN_MASK_ERROR)
13837 {
13838 if (err.message != NULL)
13839 warning ("%s", err.message);
13840 }
13841 END_CATCH
f4abbc16 13842
9accd112
MM
13843 return tinfo;
13844}
13845
13846/* Disable branch tracing. */
13847
f6ac5f3d
PA
13848void
13849remote_target::disable_btrace (struct btrace_target_info *tinfo)
9accd112
MM
13850{
13851 struct packet_config *packet = &remote_protocol_packets[PACKET_Qbtrace_off];
13852 struct remote_state *rs = get_remote_state ();
13853 char *buf = rs->buf;
13854 char *endbuf = rs->buf + get_remote_packet_size ();
13855
4082afcc 13856 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13857 error (_("Target does not support branch tracing."));
13858
13859 set_general_thread (tinfo->ptid);
13860
13861 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
13862 putpkt (rs->buf);
13863 getpkt (&rs->buf, &rs->buf_size, 0);
13864
13865 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
13866 {
13867 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
13868 error (_("Could not disable branch tracing for %s: %s"),
13869 target_pid_to_str (tinfo->ptid), rs->buf + 2);
13870 else
13871 error (_("Could not disable branch tracing for %s."),
13872 target_pid_to_str (tinfo->ptid));
13873 }
13874
13875 xfree (tinfo);
13876}
13877
13878/* Teardown branch tracing. */
13879
f6ac5f3d
PA
13880void
13881remote_target::teardown_btrace (struct btrace_target_info *tinfo)
9accd112
MM
13882{
13883 /* We must not talk to the target during teardown. */
13884 xfree (tinfo);
13885}
13886
13887/* Read the branch trace. */
13888
f6ac5f3d
PA
13889enum btrace_error
13890remote_target::read_btrace (struct btrace_data *btrace,
13891 struct btrace_target_info *tinfo,
13892 enum btrace_read_type type)
9accd112
MM
13893{
13894 struct packet_config *packet = &remote_protocol_packets[PACKET_qXfer_btrace];
9accd112 13895 const char *annex;
9accd112 13896
4082afcc 13897 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13898 error (_("Target does not support branch tracing."));
13899
13900#if !defined(HAVE_LIBEXPAT)
13901 error (_("Cannot process branch tracing result. XML parsing not supported."));
13902#endif
13903
13904 switch (type)
13905 {
864089d2 13906 case BTRACE_READ_ALL:
9accd112
MM
13907 annex = "all";
13908 break;
864089d2 13909 case BTRACE_READ_NEW:
9accd112
MM
13910 annex = "new";
13911 break;
969c39fb
MM
13912 case BTRACE_READ_DELTA:
13913 annex = "delta";
13914 break;
9accd112
MM
13915 default:
13916 internal_error (__FILE__, __LINE__,
13917 _("Bad branch tracing read type: %u."),
13918 (unsigned int) type);
13919 }
13920
9018be22 13921 gdb::optional<gdb::char_vector> xml
8b88a78e 13922 = target_read_stralloc (current_top_target (), TARGET_OBJECT_BTRACE, annex);
9018be22 13923 if (!xml)
969c39fb 13924 return BTRACE_ERR_UNKNOWN;
9accd112 13925
9018be22 13926 parse_xml_btrace (btrace, xml->data ());
9accd112 13927
969c39fb 13928 return BTRACE_ERR_NONE;
9accd112
MM
13929}
13930
f6ac5f3d
PA
13931const struct btrace_config *
13932remote_target::btrace_conf (const struct btrace_target_info *tinfo)
f4abbc16
MM
13933{
13934 return &tinfo->conf;
13935}
13936
57810aa7 13937bool
f6ac5f3d 13938remote_target::augmented_libraries_svr4_read ()
ced63ec0 13939{
4082afcc
PA
13940 return (packet_support (PACKET_augmented_libraries_svr4_read_feature)
13941 == PACKET_ENABLE);
ced63ec0
GB
13942}
13943
9dd130a0
TT
13944/* Implementation of to_load. */
13945
f6ac5f3d
PA
13946void
13947remote_target::load (const char *name, int from_tty)
9dd130a0
TT
13948{
13949 generic_load (name, from_tty);
13950}
13951
c78fa86a
GB
13952/* Accepts an integer PID; returns a string representing a file that
13953 can be opened on the remote side to get the symbols for the child
13954 process. Returns NULL if the operation is not supported. */
13955
f6ac5f3d
PA
13956char *
13957remote_target::pid_to_exec_file (int pid)
c78fa86a 13958{
9018be22 13959 static gdb::optional<gdb::char_vector> filename;
835205d0
GB
13960 struct inferior *inf;
13961 char *annex = NULL;
c78fa86a
GB
13962
13963 if (packet_support (PACKET_qXfer_exec_file) != PACKET_ENABLE)
13964 return NULL;
13965
835205d0
GB
13966 inf = find_inferior_pid (pid);
13967 if (inf == NULL)
13968 internal_error (__FILE__, __LINE__,
13969 _("not currently attached to process %d"), pid);
13970
13971 if (!inf->fake_pid_p)
13972 {
13973 const int annex_size = 9;
13974
224c3ddb 13975 annex = (char *) alloca (annex_size);
835205d0
GB
13976 xsnprintf (annex, annex_size, "%x", pid);
13977 }
13978
8b88a78e 13979 filename = target_read_stralloc (current_top_target (),
c78fa86a
GB
13980 TARGET_OBJECT_EXEC_FILE, annex);
13981
9018be22 13982 return filename ? filename->data () : nullptr;
c78fa86a
GB
13983}
13984
750ce8d1
YQ
13985/* Implement the to_can_do_single_step target_ops method. */
13986
f6ac5f3d
PA
13987int
13988remote_target::can_do_single_step ()
750ce8d1
YQ
13989{
13990 /* We can only tell whether target supports single step or not by
13991 supported s and S vCont actions if the stub supports vContSupported
13992 feature. If the stub doesn't support vContSupported feature,
13993 we have conservatively to think target doesn't supports single
13994 step. */
13995 if (packet_support (PACKET_vContSupported) == PACKET_ENABLE)
13996 {
13997 struct remote_state *rs = get_remote_state ();
13998
13999 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6b8edb51 14000 remote_vcont_probe ();
750ce8d1
YQ
14001
14002 return rs->supports_vCont.s && rs->supports_vCont.S;
14003 }
14004 else
14005 return 0;
14006}
14007
3a00c802
PA
14008/* Implementation of the to_execution_direction method for the remote
14009 target. */
14010
f6ac5f3d
PA
14011enum exec_direction_kind
14012remote_target::execution_direction ()
3a00c802
PA
14013{
14014 struct remote_state *rs = get_remote_state ();
14015
14016 return rs->last_resume_exec_dir;
14017}
14018
f6327dcb
KB
14019/* Return pointer to the thread_info struct which corresponds to
14020 THREAD_HANDLE (having length HANDLE_LEN). */
14021
f6ac5f3d
PA
14022thread_info *
14023remote_target::thread_handle_to_thread_info (const gdb_byte *thread_handle,
14024 int handle_len,
14025 inferior *inf)
f6327dcb 14026{
08036331 14027 for (thread_info *tp : all_non_exited_threads ())
f6327dcb 14028 {
7aabaf9d 14029 remote_thread_info *priv = get_remote_thread_info (tp);
f6327dcb
KB
14030
14031 if (tp->inf == inf && priv != NULL)
14032 {
7aabaf9d 14033 if (handle_len != priv->thread_handle.size ())
f6327dcb 14034 error (_("Thread handle size mismatch: %d vs %zu (from remote)"),
7aabaf9d
SM
14035 handle_len, priv->thread_handle.size ());
14036 if (memcmp (thread_handle, priv->thread_handle.data (),
f6327dcb
KB
14037 handle_len) == 0)
14038 return tp;
14039 }
14040 }
14041
14042 return NULL;
14043}
14044
57810aa7 14045bool
f6ac5f3d 14046remote_target::can_async_p ()
6426a772 14047{
5d93a237
TT
14048 struct remote_state *rs = get_remote_state ();
14049
3015c064
SM
14050 /* We don't go async if the user has explicitly prevented it with the
14051 "maint set target-async" command. */
c6ebd6cf 14052 if (!target_async_permitted)
57810aa7 14053 return false;
75c99385 14054
23860348 14055 /* We're async whenever the serial device is. */
5d93a237 14056 return serial_can_async_p (rs->remote_desc);
6426a772
JM
14057}
14058
57810aa7 14059bool
f6ac5f3d 14060remote_target::is_async_p ()
6426a772 14061{
5d93a237
TT
14062 struct remote_state *rs = get_remote_state ();
14063
c6ebd6cf 14064 if (!target_async_permitted)
75c99385 14065 /* We only enable async when the user specifically asks for it. */
57810aa7 14066 return false;
75c99385 14067
23860348 14068 /* We're async whenever the serial device is. */
5d93a237 14069 return serial_is_async_p (rs->remote_desc);
6426a772
JM
14070}
14071
2acceee2
JM
14072/* Pass the SERIAL event on and up to the client. One day this code
14073 will be able to delay notifying the client of an event until the
23860348 14074 point where an entire packet has been received. */
2acceee2 14075
2acceee2
JM
14076static serial_event_ftype remote_async_serial_handler;
14077
6426a772 14078static void
819cc324 14079remote_async_serial_handler (struct serial *scb, void *context)
6426a772 14080{
2acceee2
JM
14081 /* Don't propogate error information up to the client. Instead let
14082 the client find out about the error by querying the target. */
6a3753b3 14083 inferior_event_handler (INF_REG_EVENT, NULL);
2acceee2
JM
14084}
14085
74531fed
PA
14086static void
14087remote_async_inferior_event_handler (gdb_client_data data)
14088{
6b8edb51 14089 inferior_event_handler (INF_REG_EVENT, data);
74531fed
PA
14090}
14091
f6ac5f3d
PA
14092void
14093remote_target::async (int enable)
2acceee2 14094{
5d93a237
TT
14095 struct remote_state *rs = get_remote_state ();
14096
6a3753b3 14097 if (enable)
2acceee2 14098 {
88b496c3 14099 serial_async (rs->remote_desc, remote_async_serial_handler, rs);
b7d2e916
PA
14100
14101 /* If there are pending events in the stop reply queue tell the
14102 event loop to process them. */
953edf2b 14103 if (!rs->stop_reply_queue.empty ())
6b8edb51 14104 mark_async_event_handler (rs->remote_async_inferior_event_token);
6efcd9a8
PA
14105 /* For simplicity, below we clear the pending events token
14106 without remembering whether it is marked, so here we always
14107 mark it. If there's actually no pending notification to
14108 process, this ends up being a no-op (other than a spurious
14109 event-loop wakeup). */
14110 if (target_is_non_stop_p ())
14111 mark_async_event_handler (rs->notif_state->get_pending_events_token);
2acceee2
JM
14112 }
14113 else
b7d2e916
PA
14114 {
14115 serial_async (rs->remote_desc, NULL, NULL);
6efcd9a8
PA
14116 /* If the core is disabling async, it doesn't want to be
14117 disturbed with target events. Clear all async event sources
14118 too. */
6b8edb51 14119 clear_async_event_handler (rs->remote_async_inferior_event_token);
6efcd9a8
PA
14120 if (target_is_non_stop_p ())
14121 clear_async_event_handler (rs->notif_state->get_pending_events_token);
b7d2e916 14122 }
6426a772
JM
14123}
14124
65706a29
PA
14125/* Implementation of the to_thread_events method. */
14126
f6ac5f3d
PA
14127void
14128remote_target::thread_events (int enable)
65706a29
PA
14129{
14130 struct remote_state *rs = get_remote_state ();
14131 size_t size = get_remote_packet_size ();
65706a29
PA
14132
14133 if (packet_support (PACKET_QThreadEvents) == PACKET_DISABLE)
14134 return;
14135
14136 xsnprintf (rs->buf, size, "QThreadEvents:%x", enable ? 1 : 0);
14137 putpkt (rs->buf);
14138 getpkt (&rs->buf, &rs->buf_size, 0);
14139
14140 switch (packet_ok (rs->buf,
14141 &remote_protocol_packets[PACKET_QThreadEvents]))
14142 {
14143 case PACKET_OK:
14144 if (strcmp (rs->buf, "OK") != 0)
14145 error (_("Remote refused setting thread events: %s"), rs->buf);
14146 break;
14147 case PACKET_ERROR:
14148 warning (_("Remote failure reply: %s"), rs->buf);
14149 break;
14150 case PACKET_UNKNOWN:
14151 break;
14152 }
14153}
14154
5a2468f5 14155static void
981a3fb3 14156set_remote_cmd (const char *args, int from_tty)
5a2468f5 14157{
635c7e8a 14158 help_list (remote_set_cmdlist, "set remote ", all_commands, gdb_stdout);
5a2468f5
JM
14159}
14160
d471ea57 14161static void
981a3fb3 14162show_remote_cmd (const char *args, int from_tty)
d471ea57 14163{
37a105a1 14164 /* We can't just use cmd_show_list here, because we want to skip
427c3a89 14165 the redundant "show remote Z-packet" and the legacy aliases. */
37a105a1 14166 struct cmd_list_element *list = remote_show_cmdlist;
79a45e25 14167 struct ui_out *uiout = current_uiout;
37a105a1 14168
2e783024 14169 ui_out_emit_tuple tuple_emitter (uiout, "showlist");
37a105a1
DJ
14170 for (; list != NULL; list = list->next)
14171 if (strcmp (list->name, "Z-packet") == 0)
14172 continue;
427c3a89
DJ
14173 else if (list->type == not_set_cmd)
14174 /* Alias commands are exactly like the original, except they
14175 don't have the normal type. */
14176 continue;
14177 else
37a105a1 14178 {
2e783024 14179 ui_out_emit_tuple option_emitter (uiout, "option");
a744cf53 14180
112e8700
SM
14181 uiout->field_string ("name", list->name);
14182 uiout->text (": ");
427c3a89 14183 if (list->type == show_cmd)
f5c4fcd9 14184 do_show_command (NULL, from_tty, list);
427c3a89
DJ
14185 else
14186 cmd_func (list, NULL, from_tty);
37a105a1 14187 }
d471ea57 14188}
5a2468f5 14189
0f71a2f6 14190
23860348 14191/* Function to be called whenever a new objfile (shlib) is detected. */
dc8acb97
MS
14192static void
14193remote_new_objfile (struct objfile *objfile)
14194{
6b8edb51 14195 remote_target *remote = get_current_remote_target ();
5d93a237 14196
6b8edb51
PA
14197 if (remote != NULL) /* Have a remote connection. */
14198 remote->remote_check_symbols ();
dc8acb97
MS
14199}
14200
00bf0b85
SS
14201/* Pull all the tracepoints defined on the target and create local
14202 data structures representing them. We don't want to create real
14203 tracepoints yet, we don't want to mess up the user's existing
14204 collection. */
14205
f6ac5f3d
PA
14206int
14207remote_target::upload_tracepoints (struct uploaded_tp **utpp)
d5551862 14208{
00bf0b85
SS
14209 struct remote_state *rs = get_remote_state ();
14210 char *p;
d5551862 14211
00bf0b85
SS
14212 /* Ask for a first packet of tracepoint definition. */
14213 putpkt ("qTfP");
14214 getpkt (&rs->buf, &rs->buf_size, 0);
14215 p = rs->buf;
14216 while (*p && *p != 'l')
d5551862 14217 {
00bf0b85
SS
14218 parse_tracepoint_definition (p, utpp);
14219 /* Ask for another packet of tracepoint definition. */
14220 putpkt ("qTsP");
14221 getpkt (&rs->buf, &rs->buf_size, 0);
14222 p = rs->buf;
d5551862 14223 }
00bf0b85 14224 return 0;
d5551862
SS
14225}
14226
f6ac5f3d
PA
14227int
14228remote_target::upload_trace_state_variables (struct uploaded_tsv **utsvp)
d5551862 14229{
00bf0b85 14230 struct remote_state *rs = get_remote_state ();
d5551862 14231 char *p;
d5551862 14232
00bf0b85
SS
14233 /* Ask for a first packet of variable definition. */
14234 putpkt ("qTfV");
d5551862
SS
14235 getpkt (&rs->buf, &rs->buf_size, 0);
14236 p = rs->buf;
00bf0b85 14237 while (*p && *p != 'l')
d5551862 14238 {
00bf0b85
SS
14239 parse_tsv_definition (p, utsvp);
14240 /* Ask for another packet of variable definition. */
14241 putpkt ("qTsV");
d5551862
SS
14242 getpkt (&rs->buf, &rs->buf_size, 0);
14243 p = rs->buf;
14244 }
00bf0b85 14245 return 0;
d5551862
SS
14246}
14247
c1e36e3e
PA
14248/* The "set/show range-stepping" show hook. */
14249
14250static void
14251show_range_stepping (struct ui_file *file, int from_tty,
14252 struct cmd_list_element *c,
14253 const char *value)
14254{
14255 fprintf_filtered (file,
14256 _("Debugger's willingness to use range stepping "
14257 "is %s.\n"), value);
14258}
14259
6b8edb51
PA
14260/* Return true if the vCont;r action is supported by the remote
14261 stub. */
14262
14263bool
14264remote_target::vcont_r_supported ()
14265{
14266 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
14267 remote_vcont_probe ();
14268
14269 return (packet_support (PACKET_vCont) == PACKET_ENABLE
14270 && get_remote_state ()->supports_vCont.r);
14271}
14272
c1e36e3e
PA
14273/* The "set/show range-stepping" set hook. */
14274
14275static void
eb4c3f4a 14276set_range_stepping (const char *ignore_args, int from_tty,
c1e36e3e
PA
14277 struct cmd_list_element *c)
14278{
6b8edb51
PA
14279 /* When enabling, check whether range stepping is actually supported
14280 by the target, and warn if not. */
c1e36e3e
PA
14281 if (use_range_stepping)
14282 {
6b8edb51
PA
14283 remote_target *remote = get_current_remote_target ();
14284 if (remote == NULL
14285 || !remote->vcont_r_supported ())
14286 warning (_("Range stepping is not supported by the current target"));
c1e36e3e
PA
14287 }
14288}
14289
c906108c 14290void
fba45db2 14291_initialize_remote (void)
c906108c 14292{
9a7071a8 14293 struct cmd_list_element *cmd;
6f937416 14294 const char *cmd_name;
ea9c271d 14295
0f71a2f6 14296 /* architecture specific data */
29709017
DJ
14297 remote_g_packet_data_handle =
14298 gdbarch_data_register_pre_init (remote_g_packet_data_init);
d01949b6 14299
94585166
DB
14300 remote_pspace_data
14301 = register_program_space_data_with_cleanup (NULL,
14302 remote_pspace_data_cleanup);
14303
d9f719f1
PA
14304 add_target (remote_target_info, remote_target::open);
14305 add_target (extended_remote_target_info, extended_remote_target::open);
cce74817 14306
dc8acb97 14307 /* Hook into new objfile notification. */
76727919 14308 gdb::observers::new_objfile.attach (remote_new_objfile);
dc8acb97 14309
c906108c
SS
14310#if 0
14311 init_remote_threadtests ();
14312#endif
14313
23860348 14314 /* set/show remote ... */
d471ea57 14315
1bedd215 14316 add_prefix_cmd ("remote", class_maintenance, set_remote_cmd, _("\
5a2468f5
JM
14317Remote protocol specific variables\n\
14318Configure various remote-protocol specific variables such as\n\
1bedd215 14319the packets being used"),
cff3e48b 14320 &remote_set_cmdlist, "set remote ",
23860348 14321 0 /* allow-unknown */, &setlist);
1bedd215 14322 add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
5a2468f5
JM
14323Remote protocol specific variables\n\
14324Configure various remote-protocol specific variables such as\n\
1bedd215 14325the packets being used"),
cff3e48b 14326 &remote_show_cmdlist, "show remote ",
23860348 14327 0 /* allow-unknown */, &showlist);
5a2468f5 14328
1a966eab
AC
14329 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
14330Compare section data on target to the exec file.\n\
95cf3b38
DT
14331Argument is a single section name (default: all loaded sections).\n\
14332To compare only read-only loaded sections, specify the -r option."),
c906108c
SS
14333 &cmdlist);
14334
1a966eab
AC
14335 add_cmd ("packet", class_maintenance, packet_command, _("\
14336Send an arbitrary packet to a remote target.\n\
c906108c
SS
14337 maintenance packet TEXT\n\
14338If GDB is talking to an inferior via the GDB serial protocol, then\n\
14339this command sends the string TEXT to the inferior, and displays the\n\
14340response packet. GDB supplies the initial `$' character, and the\n\
1a966eab 14341terminating `#' character and checksum."),
c906108c
SS
14342 &maintenancelist);
14343
7915a72c
AC
14344 add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
14345Set whether to send break if interrupted."), _("\
14346Show whether to send break if interrupted."), _("\
14347If set, a break, instead of a cntrl-c, is sent to the remote target."),
9a7071a8 14348 set_remotebreak, show_remotebreak,
e707bbc2 14349 &setlist, &showlist);
9a7071a8
JB
14350 cmd_name = "remotebreak";
14351 cmd = lookup_cmd (&cmd_name, setlist, "", -1, 1);
14352 deprecate_cmd (cmd, "set remote interrupt-sequence");
14353 cmd_name = "remotebreak"; /* needed because lookup_cmd updates the pointer */
14354 cmd = lookup_cmd (&cmd_name, showlist, "", -1, 1);
14355 deprecate_cmd (cmd, "show remote interrupt-sequence");
14356
14357 add_setshow_enum_cmd ("interrupt-sequence", class_support,
3e43a32a
MS
14358 interrupt_sequence_modes, &interrupt_sequence_mode,
14359 _("\
9a7071a8
JB
14360Set interrupt sequence to remote target."), _("\
14361Show interrupt sequence to remote target."), _("\
14362Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."),
14363 NULL, show_interrupt_sequence,
14364 &remote_set_cmdlist,
14365 &remote_show_cmdlist);
14366
14367 add_setshow_boolean_cmd ("interrupt-on-connect", class_support,
14368 &interrupt_on_connect, _("\
14369Set whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
14370Show whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
14371If set, interrupt sequence is sent to remote target."),
14372 NULL, NULL,
14373 &remote_set_cmdlist, &remote_show_cmdlist);
c906108c 14374
23860348 14375 /* Install commands for configuring memory read/write packets. */
11cf8741 14376
1a966eab
AC
14377 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
14378Set the maximum number of bytes per memory write packet (deprecated)."),
11cf8741 14379 &setlist);
1a966eab
AC
14380 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
14381Show the maximum number of bytes per memory write packet (deprecated)."),
11cf8741
JM
14382 &showlist);
14383 add_cmd ("memory-write-packet-size", no_class,
1a966eab
AC
14384 set_memory_write_packet_size, _("\
14385Set the maximum number of bytes per memory-write packet.\n\
14386Specify the number of bytes in a packet or 0 (zero) for the\n\
14387default packet size. The actual limit is further reduced\n\
14388dependent on the target. Specify ``fixed'' to disable the\n\
14389further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
14390 &remote_set_cmdlist);
14391 add_cmd ("memory-read-packet-size", no_class,
1a966eab
AC
14392 set_memory_read_packet_size, _("\
14393Set the maximum number of bytes per memory-read packet.\n\
14394Specify the number of bytes in a packet or 0 (zero) for the\n\
14395default packet size. The actual limit is further reduced\n\
14396dependent on the target. Specify ``fixed'' to disable the\n\
14397further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
14398 &remote_set_cmdlist);
14399 add_cmd ("memory-write-packet-size", no_class,
14400 show_memory_write_packet_size,
1a966eab 14401 _("Show the maximum number of bytes per memory-write packet."),
11cf8741
JM
14402 &remote_show_cmdlist);
14403 add_cmd ("memory-read-packet-size", no_class,
14404 show_memory_read_packet_size,
1a966eab 14405 _("Show the maximum number of bytes per memory-read packet."),
11cf8741 14406 &remote_show_cmdlist);
c906108c 14407
055303e2 14408 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-limit", no_class,
7915a72c
AC
14409 &remote_hw_watchpoint_limit, _("\
14410Set the maximum number of target hardware watchpoints."), _("\
14411Show the maximum number of target hardware watchpoints."), _("\
055303e2
AB
14412Specify \"unlimited\" for unlimited hardware watchpoints."),
14413 NULL, show_hardware_watchpoint_limit,
14414 &remote_set_cmdlist,
14415 &remote_show_cmdlist);
14416 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-length-limit",
14417 no_class,
480a3f21
PW
14418 &remote_hw_watchpoint_length_limit, _("\
14419Set the maximum length (in bytes) of a target hardware watchpoint."), _("\
14420Show the maximum length (in bytes) of a target hardware watchpoint."), _("\
055303e2
AB
14421Specify \"unlimited\" to allow watchpoints of unlimited size."),
14422 NULL, show_hardware_watchpoint_length_limit,
480a3f21 14423 &remote_set_cmdlist, &remote_show_cmdlist);
055303e2 14424 add_setshow_zuinteger_unlimited_cmd ("hardware-breakpoint-limit", no_class,
7915a72c
AC
14425 &remote_hw_breakpoint_limit, _("\
14426Set the maximum number of target hardware breakpoints."), _("\
14427Show the maximum number of target hardware breakpoints."), _("\
055303e2
AB
14428Specify \"unlimited\" for unlimited hardware breakpoints."),
14429 NULL, show_hardware_breakpoint_limit,
b3f42336 14430 &remote_set_cmdlist, &remote_show_cmdlist);
501eef12 14431
1b493192
PA
14432 add_setshow_zuinteger_cmd ("remoteaddresssize", class_obscure,
14433 &remote_address_size, _("\
4d28ad1e
AC
14434Set the maximum size of the address (in bits) in a memory packet."), _("\
14435Show the maximum size of the address (in bits) in a memory packet."), NULL,
1b493192
PA
14436 NULL,
14437 NULL, /* FIXME: i18n: */
14438 &setlist, &showlist);
c906108c 14439
ca4f7f8b
PA
14440 init_all_packet_configs ();
14441
444abaca 14442 add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
bb572ddd 14443 "X", "binary-download", 1);
0f71a2f6 14444
444abaca 14445 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
bb572ddd 14446 "vCont", "verbose-resume", 0);
506fb367 14447
89be2091
DJ
14448 add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals],
14449 "QPassSignals", "pass-signals", 0);
14450
82075af2
JS
14451 add_packet_config_cmd (&remote_protocol_packets[PACKET_QCatchSyscalls],
14452 "QCatchSyscalls", "catch-syscalls", 0);
14453
9b224c5e
PA
14454 add_packet_config_cmd (&remote_protocol_packets[PACKET_QProgramSignals],
14455 "QProgramSignals", "program-signals", 0);
14456
bc3b087d
SDJ
14457 add_packet_config_cmd (&remote_protocol_packets[PACKET_QSetWorkingDir],
14458 "QSetWorkingDir", "set-working-dir", 0);
14459
aefd8b33
SDJ
14460 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartupWithShell],
14461 "QStartupWithShell", "startup-with-shell", 0);
14462
0a2dde4a
SDJ
14463 add_packet_config_cmd (&remote_protocol_packets
14464 [PACKET_QEnvironmentHexEncoded],
14465 "QEnvironmentHexEncoded", "environment-hex-encoded",
14466 0);
14467
14468 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentReset],
14469 "QEnvironmentReset", "environment-reset",
14470 0);
14471
14472 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentUnset],
14473 "QEnvironmentUnset", "environment-unset",
14474 0);
14475
444abaca 14476 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
bb572ddd 14477 "qSymbol", "symbol-lookup", 0);
dc8acb97 14478
444abaca 14479 add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
bb572ddd 14480 "P", "set-register", 1);
d471ea57 14481
444abaca 14482 add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
bb572ddd 14483 "p", "fetch-register", 1);
b96ec7ac 14484
444abaca 14485 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
bb572ddd 14486 "Z0", "software-breakpoint", 0);
d471ea57 14487
444abaca 14488 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
bb572ddd 14489 "Z1", "hardware-breakpoint", 0);
d471ea57 14490
444abaca 14491 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
bb572ddd 14492 "Z2", "write-watchpoint", 0);
d471ea57 14493
444abaca 14494 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
bb572ddd 14495 "Z3", "read-watchpoint", 0);
d471ea57 14496
444abaca 14497 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
bb572ddd 14498 "Z4", "access-watchpoint", 0);
d471ea57 14499
0876f84a
DJ
14500 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
14501 "qXfer:auxv:read", "read-aux-vector", 0);
802188a7 14502
c78fa86a
GB
14503 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_exec_file],
14504 "qXfer:exec-file:read", "pid-to-exec-file", 0);
14505
23181151
DJ
14506 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features],
14507 "qXfer:features:read", "target-features", 0);
14508
cfa9d6d9
DJ
14509 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries],
14510 "qXfer:libraries:read", "library-info", 0);
14511
2268b414
JK
14512 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries_svr4],
14513 "qXfer:libraries-svr4:read", "library-info-svr4", 0);
14514
fd79ecee
DJ
14515 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
14516 "qXfer:memory-map:read", "memory-map", 0);
14517
0e7f50da
UW
14518 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_read],
14519 "qXfer:spu:read", "read-spu-object", 0);
14520
14521 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_write],
14522 "qXfer:spu:write", "write-spu-object", 0);
14523
07e059b5
VP
14524 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata],
14525 "qXfer:osdata:read", "osdata", 0);
14526
dc146f7c
VP
14527 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_threads],
14528 "qXfer:threads:read", "threads", 0);
14529
4aa995e1
PA
14530 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read],
14531 "qXfer:siginfo:read", "read-siginfo-object", 0);
14532
14533 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write],
14534 "qXfer:siginfo:write", "write-siginfo-object", 0);
14535
b3b9301e
PA
14536 add_packet_config_cmd
14537 (&remote_protocol_packets[PACKET_qXfer_traceframe_info],
eb9fe518 14538 "qXfer:traceframe-info:read", "traceframe-info", 0);
b3b9301e 14539
169081d0
TG
14540 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_uib],
14541 "qXfer:uib:read", "unwind-info-block", 0);
14542
444abaca 14543 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
38691318 14544 "qGetTLSAddr", "get-thread-local-storage-address",
38691318
KB
14545 0);
14546
711e434b
PM
14547 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTIBAddr],
14548 "qGetTIBAddr", "get-thread-information-block-address",
14549 0);
14550
40ab02ce
MS
14551 add_packet_config_cmd (&remote_protocol_packets[PACKET_bc],
14552 "bc", "reverse-continue", 0);
14553
14554 add_packet_config_cmd (&remote_protocol_packets[PACKET_bs],
14555 "bs", "reverse-step", 0);
14556
be2a5f71
DJ
14557 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
14558 "qSupported", "supported-packets", 0);
14559
08388c79
DE
14560 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory],
14561 "qSearch:memory", "search-memory", 0);
14562
bd3eecc3
PA
14563 add_packet_config_cmd (&remote_protocol_packets[PACKET_qTStatus],
14564 "qTStatus", "trace-status", 0);
14565
15a201c8
GB
14566 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_setfs],
14567 "vFile:setfs", "hostio-setfs", 0);
14568
a6b151f1
DJ
14569 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open],
14570 "vFile:open", "hostio-open", 0);
14571
14572 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread],
14573 "vFile:pread", "hostio-pread", 0);
14574
14575 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite],
14576 "vFile:pwrite", "hostio-pwrite", 0);
14577
14578 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close],
14579 "vFile:close", "hostio-close", 0);
14580
14581 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink],
14582 "vFile:unlink", "hostio-unlink", 0);
14583
b9e7b9c3
UW
14584 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_readlink],
14585 "vFile:readlink", "hostio-readlink", 0);
14586
0a93529c
GB
14587 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_fstat],
14588 "vFile:fstat", "hostio-fstat", 0);
14589
2d717e4f
DJ
14590 add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach],
14591 "vAttach", "attach", 0);
14592
14593 add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun],
14594 "vRun", "run", 0);
14595
a6f3e723
SL
14596 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode],
14597 "QStartNoAckMode", "noack", 0);
14598
82f73884
PA
14599 add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill],
14600 "vKill", "kill", 0);
14601
0b16c5cf
PA
14602 add_packet_config_cmd (&remote_protocol_packets[PACKET_qAttached],
14603 "qAttached", "query-attached", 0);
14604
782b2b07 14605 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalTracepoints],
3e43a32a
MS
14606 "ConditionalTracepoints",
14607 "conditional-tracepoints", 0);
3788aec7
LM
14608
14609 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalBreakpoints],
14610 "ConditionalBreakpoints",
14611 "conditional-breakpoints", 0);
14612
d3ce09f5
SS
14613 add_packet_config_cmd (&remote_protocol_packets[PACKET_BreakpointCommands],
14614 "BreakpointCommands",
14615 "breakpoint-commands", 0);
14616
7a697b8d
SS
14617 add_packet_config_cmd (&remote_protocol_packets[PACKET_FastTracepoints],
14618 "FastTracepoints", "fast-tracepoints", 0);
782b2b07 14619
409873ef
SS
14620 add_packet_config_cmd (&remote_protocol_packets[PACKET_TracepointSource],
14621 "TracepointSource", "TracepointSource", 0);
14622
d914c394
SS
14623 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAllow],
14624 "QAllow", "allow", 0);
14625
0fb4aa4b
PA
14626 add_packet_config_cmd (&remote_protocol_packets[PACKET_StaticTracepoints],
14627 "StaticTracepoints", "static-tracepoints", 0);
14628
1e4d1764
YQ
14629 add_packet_config_cmd (&remote_protocol_packets[PACKET_InstallInTrace],
14630 "InstallInTrace", "install-in-trace", 0);
14631
0fb4aa4b
PA
14632 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_statictrace_read],
14633 "qXfer:statictrace:read", "read-sdata-object", 0);
14634
78d85199
YQ
14635 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_fdpic],
14636 "qXfer:fdpic:read", "read-fdpic-loadmap", 0);
14637
03583c20
UW
14638 add_packet_config_cmd (&remote_protocol_packets[PACKET_QDisableRandomization],
14639 "QDisableRandomization", "disable-randomization", 0);
14640
d1feda86
YQ
14641 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAgent],
14642 "QAgent", "agent", 0);
14643
f6f899bf
HAQ
14644 add_packet_config_cmd (&remote_protocol_packets[PACKET_QTBuffer_size],
14645 "QTBuffer:size", "trace-buffer-size", 0);
14646
9accd112
MM
14647 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_off],
14648 "Qbtrace:off", "disable-btrace", 0);
14649
14650 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_bts],
b20a6524
MM
14651 "Qbtrace:bts", "enable-btrace-bts", 0);
14652
14653 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_pt],
14654 "Qbtrace:pt", "enable-btrace-pt", 0);
9accd112
MM
14655
14656 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace],
14657 "qXfer:btrace", "read-btrace", 0);
14658
f4abbc16
MM
14659 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace_conf],
14660 "qXfer:btrace-conf", "read-btrace-conf", 0);
14661
d33501a5
MM
14662 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_bts_size],
14663 "Qbtrace-conf:bts:size", "btrace-conf-bts-size", 0);
14664
73b8c1fd
PA
14665 add_packet_config_cmd (&remote_protocol_packets[PACKET_multiprocess_feature],
14666 "multiprocess-feature", "multiprocess-feature", 0);
14667
f7e6eed5
PA
14668 add_packet_config_cmd (&remote_protocol_packets[PACKET_swbreak_feature],
14669 "swbreak-feature", "swbreak-feature", 0);
14670
14671 add_packet_config_cmd (&remote_protocol_packets[PACKET_hwbreak_feature],
14672 "hwbreak-feature", "hwbreak-feature", 0);
14673
89245bc0
DB
14674 add_packet_config_cmd (&remote_protocol_packets[PACKET_fork_event_feature],
14675 "fork-event-feature", "fork-event-feature", 0);
14676
14677 add_packet_config_cmd (&remote_protocol_packets[PACKET_vfork_event_feature],
14678 "vfork-event-feature", "vfork-event-feature", 0);
14679
b20a6524
MM
14680 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_pt_size],
14681 "Qbtrace-conf:pt:size", "btrace-conf-pt-size", 0);
14682
750ce8d1
YQ
14683 add_packet_config_cmd (&remote_protocol_packets[PACKET_vContSupported],
14684 "vContSupported", "verbose-resume-supported", 0);
14685
94585166
DB
14686 add_packet_config_cmd (&remote_protocol_packets[PACKET_exec_event_feature],
14687 "exec-event-feature", "exec-event-feature", 0);
14688
de979965
PA
14689 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCtrlC],
14690 "vCtrlC", "ctrl-c", 0);
14691
65706a29
PA
14692 add_packet_config_cmd (&remote_protocol_packets[PACKET_QThreadEvents],
14693 "QThreadEvents", "thread-events", 0);
14694
f2faf941
PA
14695 add_packet_config_cmd (&remote_protocol_packets[PACKET_no_resumed],
14696 "N stop reply", "no-resumed-stop-reply", 0);
14697
0b736949
DB
14698 /* Assert that we've registered "set remote foo-packet" commands
14699 for all packet configs. */
ca4f7f8b
PA
14700 {
14701 int i;
14702
14703 for (i = 0; i < PACKET_MAX; i++)
14704 {
14705 /* Ideally all configs would have a command associated. Some
14706 still don't though. */
14707 int excepted;
14708
14709 switch (i)
14710 {
14711 case PACKET_QNonStop:
ca4f7f8b
PA
14712 case PACKET_EnableDisableTracepoints_feature:
14713 case PACKET_tracenz_feature:
14714 case PACKET_DisconnectedTracing_feature:
14715 case PACKET_augmented_libraries_svr4_read_feature:
936d2992
PA
14716 case PACKET_qCRC:
14717 /* Additions to this list need to be well justified:
14718 pre-existing packets are OK; new packets are not. */
ca4f7f8b
PA
14719 excepted = 1;
14720 break;
14721 default:
14722 excepted = 0;
14723 break;
14724 }
14725
14726 /* This catches both forgetting to add a config command, and
14727 forgetting to remove a packet from the exception list. */
14728 gdb_assert (excepted == (remote_protocol_packets[i].name == NULL));
14729 }
14730 }
14731
37a105a1
DJ
14732 /* Keep the old ``set remote Z-packet ...'' working. Each individual
14733 Z sub-packet has its own set and show commands, but users may
14734 have sets to this variable in their .gdbinit files (or in their
14735 documentation). */
e9e68a56 14736 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
7915a72c
AC
14737 &remote_Z_packet_detect, _("\
14738Set use of remote protocol `Z' packets"), _("\
14739Show use of remote protocol `Z' packets "), _("\
3b64bf98 14740When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
7915a72c 14741packets."),
e9e68a56 14742 set_remote_protocol_Z_packet_cmd,
3e43a32a
MS
14743 show_remote_protocol_Z_packet_cmd,
14744 /* FIXME: i18n: Use of remote protocol
14745 `Z' packets is %s. */
e9e68a56 14746 &remote_set_cmdlist, &remote_show_cmdlist);
449092f6 14747
a6b151f1
DJ
14748 add_prefix_cmd ("remote", class_files, remote_command, _("\
14749Manipulate files on the remote system\n\
14750Transfer files to and from the remote target system."),
14751 &remote_cmdlist, "remote ",
14752 0 /* allow-unknown */, &cmdlist);
14753
14754 add_cmd ("put", class_files, remote_put_command,
14755 _("Copy a local file to the remote system."),
14756 &remote_cmdlist);
14757
14758 add_cmd ("get", class_files, remote_get_command,
14759 _("Copy a remote file to the local system."),
14760 &remote_cmdlist);
14761
14762 add_cmd ("delete", class_files, remote_delete_command,
14763 _("Delete a remote file."),
14764 &remote_cmdlist);
14765
2d717e4f 14766 add_setshow_string_noescape_cmd ("exec-file", class_files,
94585166 14767 &remote_exec_file_var, _("\
2d717e4f 14768Set the remote pathname for \"run\""), _("\
94585166
DB
14769Show the remote pathname for \"run\""), NULL,
14770 set_remote_exec_file,
14771 show_remote_exec_file,
14772 &remote_set_cmdlist,
14773 &remote_show_cmdlist);
2d717e4f 14774
c1e36e3e
PA
14775 add_setshow_boolean_cmd ("range-stepping", class_run,
14776 &use_range_stepping, _("\
14777Enable or disable range stepping."), _("\
14778Show whether target-assisted range stepping is enabled."), _("\
14779If on, and the target supports it, when stepping a source line, GDB\n\
14780tells the target to step the corresponding range of addresses itself instead\n\
14781of issuing multiple single-steps. This speeds up source level\n\
14782stepping. If off, GDB always issues single-steps, even if range\n\
14783stepping is supported by the target. The default is on."),
14784 set_range_stepping,
14785 show_range_stepping,
14786 &setlist,
14787 &showlist);
14788
449092f6
CV
14789 /* Eventually initialize fileio. See fileio.c */
14790 initialize_remote_fileio (remote_set_cmdlist, remote_show_cmdlist);
79d7f229 14791
ba348170 14792 /* Take advantage of the fact that the TID field is not used, to tag
79d7f229 14793 special ptids with it set to != 0. */
fd79271b
TT
14794 magic_null_ptid = ptid_t (42000, -1, 1);
14795 not_sent_ptid = ptid_t (42000, -2, 1);
14796 any_thread_ptid = ptid_t (42000, 0, 1);
c906108c 14797}