1 /* Remote target communications for serial-line targets in custom GDB protocol
3 Copyright (C) 1988-2021 Free Software Foundation, Inc.
5 This file is part of GDB.
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
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
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.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20 /* See the GDB User Guide for details of the GDB remote protocol. */
30 #include "process-stratum-target.h"
33 #include "gdb-stabs.h"
34 #include "gdbthread.h"
36 #include "remote-notif.h"
39 #include "observable.h"
41 #include "cli/cli-decode.h"
42 #include "cli/cli-setshow.h"
43 #include "target-descriptions.h"
45 #include "gdbsupport/filestuff.h"
46 #include "gdbsupport/rsp-low.h"
50 #include "gdbsupport/gdb_sys_time.h"
52 #include "gdbsupport/event-loop.h"
53 #include "event-top.h"
61 #include "remote-fileio.h"
62 #include "gdb/fileio.h"
64 #include "xml-support.h"
66 #include "memory-map.h"
68 #include "tracepoint.h"
71 #include "gdbsupport/agent.h"
73 #include "record-btrace.h"
75 #include "gdbsupport/scoped_restore.h"
76 #include "gdbsupport/environ.h"
77 #include "gdbsupport/byte-vector.h"
78 #include "gdbsupport/search.h"
80 #include <unordered_map>
81 #include "async-event.h"
82 #include "gdbsupport/selftest.h"
84 /* The remote target. */
86 static const char remote_doc[] = N_("\
87 Use a remote computer via a serial line, using a gdb-specific protocol.\n\
88 Specify the serial device it is connected to\n\
89 (e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).");
93 bool remote_debug = false;
95 #define OPAQUETHREADBYTES 8
97 /* a 64 bit opaque identifier */
98 typedef unsigned char threadref[OPAQUETHREADBYTES];
100 struct gdb_ext_thread_info;
101 struct threads_listing_context;
102 typedef int (*rmt_thread_action) (threadref *ref, void *context);
103 struct protocol_feature;
107 typedef std::unique_ptr<stop_reply> stop_reply_up;
109 /* Generic configuration support for packets the stub optionally
110 supports. Allows the user to specify the use of the packet as well
111 as allowing GDB to auto-detect support in the remote stub. */
115 PACKET_SUPPORT_UNKNOWN = 0,
120 /* Analyze a packet's return value and update the packet config
130 struct threads_listing_context;
132 /* Stub vCont actions support.
134 Each field is a boolean flag indicating whether the stub reports
135 support for the corresponding action. */
137 struct vCont_action_support
152 /* About this many threadids fit in a packet. */
154 #define MAXTHREADLISTRESULTS 32
156 /* Data for the vFile:pread readahead cache. */
158 struct readahead_cache
160 /* Invalidate the readahead cache. */
163 /* Invalidate the readahead cache if it is holding data for FD. */
164 void invalidate_fd (int fd);
166 /* Serve pread from the readahead cache. Returns number of bytes
167 read, or 0 if the request can't be served from the cache. */
168 int pread (int fd, gdb_byte *read_buf, size_t len, ULONGEST offset);
170 /* The file descriptor for the file that is being cached. -1 if the
174 /* The offset into the file that the cache buffer corresponds
178 /* The buffer holding the cache contents. */
179 gdb_byte *buf = nullptr;
180 /* The buffer's size. We try to read as much as fits into a packet
184 /* Cache hit and miss counters. */
185 ULONGEST hit_count = 0;
186 ULONGEST miss_count = 0;
189 /* Description of the remote protocol for a given architecture. */
193 long offset; /* Offset into G packet. */
194 long regnum; /* GDB's internal register number. */
195 LONGEST pnum; /* Remote protocol register number. */
196 int in_g_packet; /* Always part of G packet. */
197 /* long size in bytes; == register_size (target_gdbarch (), regnum);
199 /* char *name; == gdbarch_register_name (target_gdbarch (), regnum);
203 struct remote_arch_state
205 explicit remote_arch_state (struct gdbarch *gdbarch);
207 /* Description of the remote protocol registers. */
208 long sizeof_g_packet;
210 /* Description of the remote protocol registers indexed by REGNUM
211 (making an array gdbarch_num_regs in size). */
212 std::unique_ptr<packet_reg[]> regs;
214 /* This is the size (in chars) of the first response to the ``g''
215 packet. It is used as a heuristic when determining the maximum
216 size of memory-read and memory-write packets. A target will
217 typically only reserve a buffer large enough to hold the ``g''
218 packet. The size does not include packet overhead (headers and
220 long actual_register_packet_size;
222 /* This is the maximum size (in chars) of a non read/write packet.
223 It is also used as a cap on the size of read/write packets. */
224 long remote_packet_size;
227 /* Description of the remote protocol state for the currently
228 connected target. This is per-target state, and independent of the
229 selected architecture. */
238 /* Get the remote arch state for GDBARCH. */
239 struct remote_arch_state *get_remote_arch_state (struct gdbarch *gdbarch);
243 /* A buffer to use for incoming packets, and its current size. The
244 buffer is grown dynamically for larger incoming packets.
245 Outgoing packets may also be constructed in this buffer.
246 The size of the buffer is always at least REMOTE_PACKET_SIZE;
247 REMOTE_PACKET_SIZE should be used to limit the length of outgoing
249 gdb::char_vector buf;
251 /* True if we're going through initial connection setup (finding out
252 about the remote side's threads, relocating symbols, etc.). */
253 bool starting_up = false;
255 /* If we negotiated packet size explicitly (and thus can bypass
256 heuristics for the largest packet size that will not overflow
257 a buffer in the stub), this will be set to that packet size.
258 Otherwise zero, meaning to use the guessed size. */
259 long explicit_packet_size = 0;
261 /* remote_wait is normally called when the target is running and
262 waits for a stop reply packet. But sometimes we need to call it
263 when the target is already stopped. We can send a "?" packet
264 and have remote_wait read the response. Or, if we already have
265 the response, we can stash it in BUF and tell remote_wait to
266 skip calling getpkt. This flag is set when BUF contains a
267 stop reply packet and the target is not waiting. */
268 int cached_wait_status = 0;
270 /* True, if in no ack mode. That is, neither GDB nor the stub will
271 expect acks from each other. The connection is assumed to be
273 bool noack_mode = false;
275 /* True if we're connected in extended remote mode. */
276 bool extended = false;
278 /* True if we resumed the target and we're waiting for the target to
279 stop. In the mean time, we can't start another command/query.
280 The remote server wouldn't be ready to process it, so we'd
281 timeout waiting for a reply that would never come and eventually
282 we'd close the connection. This can happen in asynchronous mode
283 because we allow GDB commands while the target is running. */
284 bool waiting_for_stop_reply = false;
286 /* The status of the stub support for the various vCont actions. */
287 vCont_action_support supports_vCont;
288 /* Whether vCont support was probed already. This is a workaround
289 until packet_support is per-connection. */
290 bool supports_vCont_probed;
292 /* True if the user has pressed Ctrl-C, but the target hasn't
293 responded to that. */
294 bool ctrlc_pending_p = false;
296 /* True if we saw a Ctrl-C while reading or writing from/to the
297 remote descriptor. At that point it is not safe to send a remote
298 interrupt packet, so we instead remember we saw the Ctrl-C and
299 process it once we're done with sending/receiving the current
300 packet, which should be shortly. If however that takes too long,
301 and the user presses Ctrl-C again, we offer to disconnect. */
302 bool got_ctrlc_during_io = false;
304 /* Descriptor for I/O to remote machine. Initialize it to NULL so that
305 remote_open knows that we don't have a file open when the program
307 struct serial *remote_desc = nullptr;
309 /* These are the threads which we last sent to the remote system. The
310 TID member will be -1 for all or -2 for not sent yet. */
311 ptid_t general_thread = null_ptid;
312 ptid_t continue_thread = null_ptid;
314 /* This is the traceframe which we last selected on the remote system.
315 It will be -1 if no traceframe is selected. */
316 int remote_traceframe_number = -1;
318 char *last_pass_packet = nullptr;
320 /* The last QProgramSignals packet sent to the target. We bypass
321 sending a new program signals list down to the target if the new
322 packet is exactly the same as the last we sent. IOW, we only let
323 the target know about program signals list changes. */
324 char *last_program_signals_packet = nullptr;
326 gdb_signal last_sent_signal = GDB_SIGNAL_0;
328 bool last_sent_step = false;
330 /* The execution direction of the last resume we got. */
331 exec_direction_kind last_resume_exec_dir = EXEC_FORWARD;
333 char *finished_object = nullptr;
334 char *finished_annex = nullptr;
335 ULONGEST finished_offset = 0;
337 /* Should we try the 'ThreadInfo' query packet?
339 This variable (NOT available to the user: auto-detect only!)
340 determines whether GDB will use the new, simpler "ThreadInfo"
341 query or the older, more complex syntax for thread queries.
342 This is an auto-detect variable (set to true at each connect,
343 and set to false when the target fails to recognize it). */
344 bool use_threadinfo_query = false;
345 bool use_threadextra_query = false;
347 threadref echo_nextthread {};
348 threadref nextthread {};
349 threadref resultthreadlist[MAXTHREADLISTRESULTS] {};
351 /* The state of remote notification. */
352 struct remote_notif_state *notif_state = nullptr;
354 /* The branch trace configuration. */
355 struct btrace_config btrace_config {};
357 /* The argument to the last "vFile:setfs:" packet we sent, used
358 to avoid sending repeated unnecessary "vFile:setfs:" packets.
359 Initialized to -1 to indicate that no "vFile:setfs:" packet
360 has yet been sent. */
363 /* A readahead cache for vFile:pread. Often, reading a binary
364 involves a sequence of small reads. E.g., when parsing an ELF
365 file. A readahead cache helps mostly the case of remote
366 debugging on a connection with higher latency, due to the
367 request/reply nature of the RSP. We only cache data for a single
368 file descriptor at a time. */
369 struct readahead_cache readahead_cache;
371 /* The list of already fetched and acknowledged stop events. This
372 queue is used for notification Stop, and other notifications
373 don't need queue for their events, because the notification
374 events of Stop can't be consumed immediately, so that events
375 should be queued first, and be consumed by remote_wait_{ns,as}
376 one per time. Other notifications can consume their events
377 immediately, so queue is not needed for them. */
378 std::vector<stop_reply_up> stop_reply_queue;
380 /* Asynchronous signal handle registered as event loop source for
381 when we have pending events ready to be passed to the core. */
382 struct async_event_handler *remote_async_inferior_event_token = nullptr;
384 /* FIXME: cagney/1999-09-23: Even though getpkt was called with
385 ``forever'' still use the normal timeout mechanism. This is
386 currently used by the ASYNC code to guarentee that target reads
387 during the initial connect always time-out. Once getpkt has been
388 modified to return a timeout indication and, in turn
389 remote_wait()/wait_for_inferior() have gained a timeout parameter
391 int wait_forever_enabled_p = 1;
394 /* Mapping of remote protocol data for each gdbarch. Usually there
395 is only one entry here, though we may see more with stubs that
396 support multi-process. */
397 std::unordered_map<struct gdbarch *, remote_arch_state>
401 static const target_info remote_target_info = {
403 N_("Remote serial target in gdb-specific protocol"),
407 class remote_target : public process_stratum_target
410 remote_target () = default;
411 ~remote_target () override;
413 const target_info &info () const override
414 { return remote_target_info; }
416 const char *connection_string () override;
418 thread_control_capabilities get_thread_control_capabilities () override
419 { return tc_schedlock; }
421 /* Open a remote connection. */
422 static void open (const char *, int);
424 void close () override;
426 void detach (inferior *, int) override;
427 void disconnect (const char *, int) override;
429 void commit_resumed () override;
430 void resume (ptid_t, int, enum gdb_signal) override;
431 ptid_t wait (ptid_t, struct target_waitstatus *, target_wait_flags) override;
432 bool has_pending_events () override;
434 void fetch_registers (struct regcache *, int) override;
435 void store_registers (struct regcache *, int) override;
436 void prepare_to_store (struct regcache *) override;
438 void files_info () override;
440 int insert_breakpoint (struct gdbarch *, struct bp_target_info *) override;
442 int remove_breakpoint (struct gdbarch *, struct bp_target_info *,
443 enum remove_bp_reason) override;
446 bool stopped_by_sw_breakpoint () override;
447 bool supports_stopped_by_sw_breakpoint () override;
449 bool stopped_by_hw_breakpoint () override;
451 bool supports_stopped_by_hw_breakpoint () override;
453 bool stopped_by_watchpoint () override;
455 bool stopped_data_address (CORE_ADDR *) override;
457 bool watchpoint_addr_within_range (CORE_ADDR, CORE_ADDR, int) override;
459 int can_use_hw_breakpoint (enum bptype, int, int) override;
461 int insert_hw_breakpoint (struct gdbarch *, struct bp_target_info *) override;
463 int remove_hw_breakpoint (struct gdbarch *, struct bp_target_info *) override;
465 int region_ok_for_hw_watchpoint (CORE_ADDR, int) override;
467 int insert_watchpoint (CORE_ADDR, int, enum target_hw_bp_type,
468 struct expression *) override;
470 int remove_watchpoint (CORE_ADDR, int, enum target_hw_bp_type,
471 struct expression *) override;
473 void kill () override;
475 void load (const char *, int) override;
477 void mourn_inferior () override;
479 void pass_signals (gdb::array_view<const unsigned char>) override;
481 int set_syscall_catchpoint (int, bool, int,
482 gdb::array_view<const int>) override;
484 void program_signals (gdb::array_view<const unsigned char>) override;
486 bool thread_alive (ptid_t ptid) override;
488 const char *thread_name (struct thread_info *) override;
490 void update_thread_list () override;
492 std::string pid_to_str (ptid_t) override;
494 const char *extra_thread_info (struct thread_info *) override;
496 ptid_t get_ada_task_ptid (long lwp, long thread) override;
498 thread_info *thread_handle_to_thread_info (const gdb_byte *thread_handle,
500 inferior *inf) override;
502 gdb::byte_vector thread_info_to_thread_handle (struct thread_info *tp)
505 void stop (ptid_t) override;
507 void interrupt () override;
509 void pass_ctrlc () override;
511 enum target_xfer_status xfer_partial (enum target_object object,
514 const gdb_byte *writebuf,
515 ULONGEST offset, ULONGEST len,
516 ULONGEST *xfered_len) override;
518 ULONGEST get_memory_xfer_limit () override;
520 void rcmd (const char *command, struct ui_file *output) override;
522 char *pid_to_exec_file (int pid) override;
524 void log_command (const char *cmd) override
526 serial_log_command (this, cmd);
529 CORE_ADDR get_thread_local_address (ptid_t ptid,
530 CORE_ADDR load_module_addr,
531 CORE_ADDR offset) override;
533 bool can_execute_reverse () override;
535 std::vector<mem_region> memory_map () override;
537 void flash_erase (ULONGEST address, LONGEST length) override;
539 void flash_done () override;
541 const struct target_desc *read_description () override;
543 int search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
544 const gdb_byte *pattern, ULONGEST pattern_len,
545 CORE_ADDR *found_addrp) override;
547 bool can_async_p () override;
549 bool is_async_p () override;
551 void async (int) override;
553 int async_wait_fd () override;
555 void thread_events (int) override;
557 int can_do_single_step () override;
559 void terminal_inferior () override;
561 void terminal_ours () override;
563 bool supports_non_stop () override;
565 bool supports_multi_process () override;
567 bool supports_disable_randomization () override;
569 bool filesystem_is_local () override;
572 int fileio_open (struct inferior *inf, const char *filename,
573 int flags, int mode, int warn_if_slow,
574 int *target_errno) override;
576 int fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
577 ULONGEST offset, int *target_errno) override;
579 int fileio_pread (int fd, gdb_byte *read_buf, int len,
580 ULONGEST offset, int *target_errno) override;
582 int fileio_fstat (int fd, struct stat *sb, int *target_errno) override;
584 int fileio_close (int fd, int *target_errno) override;
586 int fileio_unlink (struct inferior *inf,
587 const char *filename,
588 int *target_errno) override;
590 gdb::optional<std::string>
591 fileio_readlink (struct inferior *inf,
592 const char *filename,
593 int *target_errno) override;
595 bool supports_enable_disable_tracepoint () override;
597 bool supports_string_tracing () override;
599 bool supports_evaluation_of_breakpoint_conditions () override;
601 bool can_run_breakpoint_commands () override;
603 void trace_init () override;
605 void download_tracepoint (struct bp_location *location) override;
607 bool can_download_tracepoint () override;
609 void download_trace_state_variable (const trace_state_variable &tsv) override;
611 void enable_tracepoint (struct bp_location *location) override;
613 void disable_tracepoint (struct bp_location *location) override;
615 void trace_set_readonly_regions () override;
617 void trace_start () override;
619 int get_trace_status (struct trace_status *ts) override;
621 void get_tracepoint_status (struct breakpoint *tp, struct uploaded_tp *utp)
624 void trace_stop () override;
626 int trace_find (enum trace_find_type type, int num,
627 CORE_ADDR addr1, CORE_ADDR addr2, int *tpp) override;
629 bool get_trace_state_variable_value (int tsv, LONGEST *val) override;
631 int save_trace_data (const char *filename) override;
633 int upload_tracepoints (struct uploaded_tp **utpp) override;
635 int upload_trace_state_variables (struct uploaded_tsv **utsvp) override;
637 LONGEST get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len) override;
639 int get_min_fast_tracepoint_insn_len () override;
641 void set_disconnected_tracing (int val) override;
643 void set_circular_trace_buffer (int val) override;
645 void set_trace_buffer_size (LONGEST val) override;
647 bool set_trace_notes (const char *user, const char *notes,
648 const char *stopnotes) override;
650 int core_of_thread (ptid_t ptid) override;
652 int verify_memory (const gdb_byte *data,
653 CORE_ADDR memaddr, ULONGEST size) override;
656 bool get_tib_address (ptid_t ptid, CORE_ADDR *addr) override;
658 void set_permissions () override;
660 bool static_tracepoint_marker_at (CORE_ADDR,
661 struct static_tracepoint_marker *marker)
664 std::vector<static_tracepoint_marker>
665 static_tracepoint_markers_by_strid (const char *id) override;
667 traceframe_info_up traceframe_info () override;
669 bool use_agent (bool use) override;
670 bool can_use_agent () override;
672 struct btrace_target_info *enable_btrace (ptid_t ptid,
673 const struct btrace_config *conf) override;
675 void disable_btrace (struct btrace_target_info *tinfo) override;
677 void teardown_btrace (struct btrace_target_info *tinfo) override;
679 enum btrace_error read_btrace (struct btrace_data *data,
680 struct btrace_target_info *btinfo,
681 enum btrace_read_type type) override;
683 const struct btrace_config *btrace_conf (const struct btrace_target_info *) override;
684 bool augmented_libraries_svr4_read () override;
685 bool follow_fork (bool, bool) override;
686 void follow_exec (struct inferior *, const char *) override;
687 int insert_fork_catchpoint (int) override;
688 int remove_fork_catchpoint (int) override;
689 int insert_vfork_catchpoint (int) override;
690 int remove_vfork_catchpoint (int) override;
691 int insert_exec_catchpoint (int) override;
692 int remove_exec_catchpoint (int) override;
693 enum exec_direction_kind execution_direction () override;
695 bool supports_memory_tagging () override;
697 bool fetch_memtags (CORE_ADDR address, size_t len,
698 gdb::byte_vector &tags, int type) override;
700 bool store_memtags (CORE_ADDR address, size_t len,
701 const gdb::byte_vector &tags, int type) override;
703 public: /* Remote specific methods. */
705 void remote_download_command_source (int num, ULONGEST addr,
706 struct command_line *cmds);
708 void remote_file_put (const char *local_file, const char *remote_file,
710 void remote_file_get (const char *remote_file, const char *local_file,
712 void remote_file_delete (const char *remote_file, int from_tty);
714 int remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
715 ULONGEST offset, int *remote_errno);
716 int remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
717 ULONGEST offset, int *remote_errno);
718 int remote_hostio_pread_vFile (int fd, gdb_byte *read_buf, int len,
719 ULONGEST offset, int *remote_errno);
721 int remote_hostio_send_command (int command_bytes, int which_packet,
722 int *remote_errno, const char **attachment,
723 int *attachment_len);
724 int remote_hostio_set_filesystem (struct inferior *inf,
726 /* We should get rid of this and use fileio_open directly. */
727 int remote_hostio_open (struct inferior *inf, const char *filename,
728 int flags, int mode, int warn_if_slow,
730 int remote_hostio_close (int fd, int *remote_errno);
732 int remote_hostio_unlink (inferior *inf, const char *filename,
735 struct remote_state *get_remote_state ();
737 long get_remote_packet_size (void);
738 long get_memory_packet_size (struct memory_packet_config *config);
740 long get_memory_write_packet_size ();
741 long get_memory_read_packet_size ();
743 char *append_pending_thread_resumptions (char *p, char *endp,
745 static void open_1 (const char *name, int from_tty, int extended_p);
746 void start_remote (int from_tty, int extended_p);
747 void remote_detach_1 (struct inferior *inf, int from_tty);
749 char *append_resumption (char *p, char *endp,
750 ptid_t ptid, int step, gdb_signal siggnal);
751 int remote_resume_with_vcont (ptid_t ptid, int step,
754 thread_info *add_current_inferior_and_thread (const char *wait_status);
756 ptid_t wait_ns (ptid_t ptid, struct target_waitstatus *status,
757 target_wait_flags options);
758 ptid_t wait_as (ptid_t ptid, target_waitstatus *status,
759 target_wait_flags options);
761 ptid_t process_stop_reply (struct stop_reply *stop_reply,
762 target_waitstatus *status);
764 ptid_t select_thread_for_ambiguous_stop_reply
765 (const struct target_waitstatus *status);
767 void remote_notice_new_inferior (ptid_t currthread, int executing);
769 void process_initial_stop_replies (int from_tty);
771 thread_info *remote_add_thread (ptid_t ptid, bool running, bool executing);
773 void btrace_sync_conf (const btrace_config *conf);
775 void remote_btrace_maybe_reopen ();
777 void remove_new_fork_children (threads_listing_context *context);
778 void kill_new_fork_children (int pid);
779 void discard_pending_stop_replies (struct inferior *inf);
780 int stop_reply_queue_length ();
782 void check_pending_events_prevent_wildcard_vcont
783 (int *may_global_wildcard_vcont);
785 void discard_pending_stop_replies_in_queue ();
786 struct stop_reply *remote_notif_remove_queued_reply (ptid_t ptid);
787 struct stop_reply *queued_stop_reply (ptid_t ptid);
788 int peek_stop_reply (ptid_t ptid);
789 void remote_parse_stop_reply (const char *buf, stop_reply *event);
791 void remote_stop_ns (ptid_t ptid);
792 void remote_interrupt_as ();
793 void remote_interrupt_ns ();
795 char *remote_get_noisy_reply ();
796 int remote_query_attached (int pid);
797 inferior *remote_add_inferior (bool fake_pid_p, int pid, int attached,
800 ptid_t remote_current_thread (ptid_t oldpid);
801 ptid_t get_current_thread (const char *wait_status);
803 void set_thread (ptid_t ptid, int gen);
804 void set_general_thread (ptid_t ptid);
805 void set_continue_thread (ptid_t ptid);
806 void set_general_process ();
808 char *write_ptid (char *buf, const char *endbuf, ptid_t ptid);
810 int remote_unpack_thread_info_response (const char *pkt, threadref *expectedref,
811 gdb_ext_thread_info *info);
812 int remote_get_threadinfo (threadref *threadid, int fieldset,
813 gdb_ext_thread_info *info);
815 int parse_threadlist_response (const char *pkt, int result_limit,
816 threadref *original_echo,
817 threadref *resultlist,
819 int remote_get_threadlist (int startflag, threadref *nextthread,
820 int result_limit, int *done, int *result_count,
821 threadref *threadlist);
823 int remote_threadlist_iterator (rmt_thread_action stepfunction,
824 void *context, int looplimit);
826 int remote_get_threads_with_ql (threads_listing_context *context);
827 int remote_get_threads_with_qxfer (threads_listing_context *context);
828 int remote_get_threads_with_qthreadinfo (threads_listing_context *context);
830 void extended_remote_restart ();
834 void remote_check_symbols ();
836 void remote_supported_packet (const struct protocol_feature *feature,
837 enum packet_support support,
838 const char *argument);
840 void remote_query_supported ();
842 void remote_packet_size (const protocol_feature *feature,
843 packet_support support, const char *value);
845 void remote_serial_quit_handler ();
847 void remote_detach_pid (int pid);
849 void remote_vcont_probe ();
851 void remote_resume_with_hc (ptid_t ptid, int step,
854 void send_interrupt_sequence ();
855 void interrupt_query ();
857 void remote_notif_get_pending_events (notif_client *nc);
859 int fetch_register_using_p (struct regcache *regcache,
861 int send_g_packet ();
862 void process_g_packet (struct regcache *regcache);
863 void fetch_registers_using_g (struct regcache *regcache);
864 int store_register_using_P (const struct regcache *regcache,
866 void store_registers_using_G (const struct regcache *regcache);
868 void set_remote_traceframe ();
870 void check_binary_download (CORE_ADDR addr);
872 target_xfer_status remote_write_bytes_aux (const char *header,
874 const gdb_byte *myaddr,
877 ULONGEST *xfered_len_units,
881 target_xfer_status remote_write_bytes (CORE_ADDR memaddr,
882 const gdb_byte *myaddr, ULONGEST len,
883 int unit_size, ULONGEST *xfered_len);
885 target_xfer_status remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr,
887 int unit_size, ULONGEST *xfered_len_units);
889 target_xfer_status remote_xfer_live_readonly_partial (gdb_byte *readbuf,
893 ULONGEST *xfered_len);
895 target_xfer_status remote_read_bytes (CORE_ADDR memaddr,
896 gdb_byte *myaddr, ULONGEST len,
898 ULONGEST *xfered_len);
900 packet_result remote_send_printf (const char *format, ...)
901 ATTRIBUTE_PRINTF (2, 3);
903 target_xfer_status remote_flash_write (ULONGEST address,
904 ULONGEST length, ULONGEST *xfered_len,
905 const gdb_byte *data);
907 int readchar (int timeout);
909 void remote_serial_write (const char *str, int len);
911 int putpkt (const char *buf);
912 int putpkt_binary (const char *buf, int cnt);
914 int putpkt (const gdb::char_vector &buf)
916 return putpkt (buf.data ());
920 long read_frame (gdb::char_vector *buf_p);
921 void getpkt (gdb::char_vector *buf, int forever);
922 int getpkt_or_notif_sane_1 (gdb::char_vector *buf, int forever,
923 int expecting_notif, int *is_notif);
924 int getpkt_sane (gdb::char_vector *buf, int forever);
925 int getpkt_or_notif_sane (gdb::char_vector *buf, int forever,
927 int remote_vkill (int pid);
928 void remote_kill_k ();
930 void extended_remote_disable_randomization (int val);
931 int extended_remote_run (const std::string &args);
933 void send_environment_packet (const char *action,
937 void extended_remote_environment_support ();
938 void extended_remote_set_inferior_cwd ();
940 target_xfer_status remote_write_qxfer (const char *object_name,
942 const gdb_byte *writebuf,
943 ULONGEST offset, LONGEST len,
944 ULONGEST *xfered_len,
945 struct packet_config *packet);
947 target_xfer_status remote_read_qxfer (const char *object_name,
949 gdb_byte *readbuf, ULONGEST offset,
951 ULONGEST *xfered_len,
952 struct packet_config *packet);
954 void push_stop_reply (struct stop_reply *new_event);
956 bool vcont_r_supported ();
958 void packet_command (const char *args, int from_tty);
960 private: /* data fields */
962 /* The remote state. Don't reference this directly. Use the
963 get_remote_state method instead. */
964 remote_state m_remote_state;
967 static const target_info extended_remote_target_info = {
969 N_("Extended remote serial target in gdb-specific protocol"),
973 /* Set up the extended remote target by extending the standard remote
974 target and adding to it. */
976 class extended_remote_target final : public remote_target
979 const target_info &info () const override
980 { return extended_remote_target_info; }
982 /* Open an extended-remote connection. */
983 static void open (const char *, int);
985 bool can_create_inferior () override { return true; }
986 void create_inferior (const char *, const std::string &,
987 char **, int) override;
989 void detach (inferior *, int) override;
991 bool can_attach () override { return true; }
992 void attach (const char *, int) override;
994 void post_attach (int) override;
995 bool supports_disable_randomization () override;
998 /* Per-program-space data key. */
999 static const struct program_space_key<char, gdb::xfree_deleter<char>>
1002 /* The variable registered as the control variable used by the
1003 remote exec-file commands. While the remote exec-file setting is
1004 per-program-space, the set/show machinery uses this as the
1005 location of the remote exec-file value. */
1006 static char *remote_exec_file_var;
1008 /* The size to align memory write packets, when practical. The protocol
1009 does not guarantee any alignment, and gdb will generate short
1010 writes and unaligned writes, but even as a best-effort attempt this
1011 can improve bulk transfers. For instance, if a write is misaligned
1012 relative to the target's data bus, the stub may need to make an extra
1013 round trip fetching data from the target. This doesn't make a
1014 huge difference, but it's easy to do, so we try to be helpful.
1016 The alignment chosen is arbitrary; usually data bus width is
1017 important here, not the possibly larger cache line size. */
1018 enum { REMOTE_ALIGN_WRITES = 16 };
1020 /* Prototypes for local functions. */
1022 static int hexnumlen (ULONGEST num);
1024 static int stubhex (int ch);
1026 static int hexnumstr (char *, ULONGEST);
1028 static int hexnumnstr (char *, ULONGEST, int);
1030 static CORE_ADDR remote_address_masked (CORE_ADDR);
1032 static void print_packet (const char *);
1034 static int stub_unpack_int (const char *buff, int fieldlength);
1036 struct packet_config;
1038 static void show_packet_config_cmd (struct packet_config *config);
1040 static void show_remote_protocol_packet_cmd (struct ui_file *file,
1042 struct cmd_list_element *c,
1045 static ptid_t read_ptid (const char *buf, const char **obuf);
1047 static void remote_async_inferior_event_handler (gdb_client_data);
1049 static bool remote_read_description_p (struct target_ops *target);
1051 static void remote_console_output (const char *msg);
1053 static void remote_btrace_reset (remote_state *rs);
1055 static void remote_unpush_and_throw (remote_target *target);
1059 static struct cmd_list_element *remote_cmdlist;
1061 /* For "set remote" and "show remote". */
1063 static struct cmd_list_element *remote_set_cmdlist;
1064 static struct cmd_list_element *remote_show_cmdlist;
1066 /* Controls whether GDB is willing to use range stepping. */
1068 static bool use_range_stepping = true;
1070 /* From the remote target's point of view, each thread is in one of these three
1072 enum class resume_state
1074 /* Not resumed - we haven't been asked to resume this thread. */
1077 /* We have been asked to resume this thread, but haven't sent a vCont action
1078 for it yet. We'll need to consider it next time commit_resume is
1080 RESUMED_PENDING_VCONT,
1082 /* We have been asked to resume this thread, and we have sent a vCont action
1087 /* Information about a thread's pending vCont-resume. Used when a thread is in
1088 the remote_resume_state::RESUMED_PENDING_VCONT state. remote_target::resume
1089 stores this information which is then picked up by
1090 remote_target::commit_resume to know which is the proper action for this
1091 thread to include in the vCont packet. */
1092 struct resumed_pending_vcont_info
1094 /* True if the last resume call for this thread was a step request, false
1095 if a continue request. */
1098 /* The signal specified in the last resume call for this thread. */
1102 /* Private data that we'll store in (struct thread_info)->priv. */
1103 struct remote_thread_info : public private_thread_info
1109 /* Thread handle, perhaps a pthread_t or thread_t value, stored as a
1110 sequence of bytes. */
1111 gdb::byte_vector thread_handle;
1113 /* Whether the target stopped for a breakpoint/watchpoint. */
1114 enum target_stop_reason stop_reason = TARGET_STOPPED_BY_NO_REASON;
1116 /* This is set to the data address of the access causing the target
1117 to stop for a watchpoint. */
1118 CORE_ADDR watch_data_address = 0;
1120 /* Get the thread's resume state. */
1121 enum resume_state get_resume_state () const
1123 return m_resume_state;
1126 /* Put the thread in the NOT_RESUMED state. */
1127 void set_not_resumed ()
1129 m_resume_state = resume_state::NOT_RESUMED;
1132 /* Put the thread in the RESUMED_PENDING_VCONT state. */
1133 void set_resumed_pending_vcont (bool step, gdb_signal sig)
1135 m_resume_state = resume_state::RESUMED_PENDING_VCONT;
1136 m_resumed_pending_vcont_info.step = step;
1137 m_resumed_pending_vcont_info.sig = sig;
1140 /* Get the information this thread's pending vCont-resumption.
1142 Must only be called if the thread is in the RESUMED_PENDING_VCONT resume
1144 const struct resumed_pending_vcont_info &resumed_pending_vcont_info () const
1146 gdb_assert (m_resume_state == resume_state::RESUMED_PENDING_VCONT);
1148 return m_resumed_pending_vcont_info;
1151 /* Put the thread in the VCONT_RESUMED state. */
1154 m_resume_state = resume_state::RESUMED;
1158 /* Resume state for this thread. This is used to implement vCont action
1159 coalescing (only when the target operates in non-stop mode).
1161 remote_target::resume moves the thread to the RESUMED_PENDING_VCONT state,
1162 which notes that this thread must be considered in the next commit_resume
1165 remote_target::commit_resume sends a vCont packet with actions for the
1166 threads in the RESUMED_PENDING_VCONT state and moves them to the
1167 VCONT_RESUMED state.
1169 When reporting a stop to the core for a thread, that thread is moved back
1170 to the NOT_RESUMED state. */
1171 enum resume_state m_resume_state = resume_state::NOT_RESUMED;
1173 /* Extra info used if the thread is in the RESUMED_PENDING_VCONT state. */
1174 struct resumed_pending_vcont_info m_resumed_pending_vcont_info;
1177 remote_state::remote_state ()
1182 remote_state::~remote_state ()
1184 xfree (this->last_pass_packet);
1185 xfree (this->last_program_signals_packet);
1186 xfree (this->finished_object);
1187 xfree (this->finished_annex);
1190 /* Utility: generate error from an incoming stub packet. */
1192 trace_error (char *buf)
1195 return; /* not an error msg */
1198 case '1': /* malformed packet error */
1199 if (*++buf == '0') /* general case: */
1200 error (_("remote.c: error in outgoing packet."));
1202 error (_("remote.c: error in outgoing packet at field #%ld."),
1203 strtol (buf, NULL, 16));
1205 error (_("Target returns error code '%s'."), buf);
1209 /* Utility: wait for reply from stub, while accepting "O" packets. */
1212 remote_target::remote_get_noisy_reply ()
1214 struct remote_state *rs = get_remote_state ();
1216 do /* Loop on reply from remote stub. */
1220 QUIT; /* Allow user to bail out with ^C. */
1221 getpkt (&rs->buf, 0);
1222 buf = rs->buf.data ();
1225 else if (startswith (buf, "qRelocInsn:"))
1228 CORE_ADDR from, to, org_to;
1230 int adjusted_size = 0;
1233 p = buf + strlen ("qRelocInsn:");
1234 pp = unpack_varlen_hex (p, &ul);
1236 error (_("invalid qRelocInsn packet: %s"), buf);
1240 unpack_varlen_hex (p, &ul);
1247 gdbarch_relocate_instruction (target_gdbarch (), &to, from);
1250 catch (const gdb_exception &ex)
1252 if (ex.error == MEMORY_ERROR)
1254 /* Propagate memory errors silently back to the
1255 target. The stub may have limited the range of
1256 addresses we can write to, for example. */
1260 /* Something unexpectedly bad happened. Be verbose
1261 so we can tell what, and propagate the error back
1262 to the stub, so it doesn't get stuck waiting for
1264 exception_fprintf (gdb_stderr, ex,
1265 _("warning: relocating instruction: "));
1272 adjusted_size = to - org_to;
1274 xsnprintf (buf, rs->buf.size (), "qRelocInsn:%x", adjusted_size);
1278 else if (buf[0] == 'O' && buf[1] != 'K')
1279 remote_console_output (buf + 1); /* 'O' message from stub */
1281 return buf; /* Here's the actual reply. */
1286 struct remote_arch_state *
1287 remote_state::get_remote_arch_state (struct gdbarch *gdbarch)
1289 remote_arch_state *rsa;
1291 auto it = this->m_arch_states.find (gdbarch);
1292 if (it == this->m_arch_states.end ())
1294 auto p = this->m_arch_states.emplace (std::piecewise_construct,
1295 std::forward_as_tuple (gdbarch),
1296 std::forward_as_tuple (gdbarch));
1297 rsa = &p.first->second;
1299 /* Make sure that the packet buffer is plenty big enough for
1300 this architecture. */
1301 if (this->buf.size () < rsa->remote_packet_size)
1302 this->buf.resize (2 * rsa->remote_packet_size);
1310 /* Fetch the global remote target state. */
1313 remote_target::get_remote_state ()
1315 /* Make sure that the remote architecture state has been
1316 initialized, because doing so might reallocate rs->buf. Any
1317 function which calls getpkt also needs to be mindful of changes
1318 to rs->buf, but this call limits the number of places which run
1320 m_remote_state.get_remote_arch_state (target_gdbarch ());
1322 return &m_remote_state;
1325 /* Fetch the remote exec-file from the current program space. */
1328 get_remote_exec_file (void)
1330 char *remote_exec_file;
1332 remote_exec_file = remote_pspace_data.get (current_program_space);
1333 if (remote_exec_file == NULL)
1336 return remote_exec_file;
1339 /* Set the remote exec file for PSPACE. */
1342 set_pspace_remote_exec_file (struct program_space *pspace,
1343 const char *remote_exec_file)
1345 char *old_file = remote_pspace_data.get (pspace);
1348 remote_pspace_data.set (pspace, xstrdup (remote_exec_file));
1351 /* The "set/show remote exec-file" set command hook. */
1354 set_remote_exec_file (const char *ignored, int from_tty,
1355 struct cmd_list_element *c)
1357 gdb_assert (remote_exec_file_var != NULL);
1358 set_pspace_remote_exec_file (current_program_space, remote_exec_file_var);
1361 /* The "set/show remote exec-file" show command hook. */
1364 show_remote_exec_file (struct ui_file *file, int from_tty,
1365 struct cmd_list_element *cmd, const char *value)
1367 fprintf_filtered (file, "%s\n", get_remote_exec_file ());
1371 map_regcache_remote_table (struct gdbarch *gdbarch, struct packet_reg *regs)
1373 int regnum, num_remote_regs, offset;
1374 struct packet_reg **remote_regs;
1376 for (regnum = 0; regnum < gdbarch_num_regs (gdbarch); regnum++)
1378 struct packet_reg *r = ®s[regnum];
1380 if (register_size (gdbarch, regnum) == 0)
1381 /* Do not try to fetch zero-sized (placeholder) registers. */
1384 r->pnum = gdbarch_remote_register_number (gdbarch, regnum);
1389 /* Define the g/G packet format as the contents of each register
1390 with a remote protocol number, in order of ascending protocol
1393 remote_regs = XALLOCAVEC (struct packet_reg *, gdbarch_num_regs (gdbarch));
1394 for (num_remote_regs = 0, regnum = 0;
1395 regnum < gdbarch_num_regs (gdbarch);
1397 if (regs[regnum].pnum != -1)
1398 remote_regs[num_remote_regs++] = ®s[regnum];
1400 std::sort (remote_regs, remote_regs + num_remote_regs,
1401 [] (const packet_reg *a, const packet_reg *b)
1402 { return a->pnum < b->pnum; });
1404 for (regnum = 0, offset = 0; regnum < num_remote_regs; regnum++)
1406 remote_regs[regnum]->in_g_packet = 1;
1407 remote_regs[regnum]->offset = offset;
1408 offset += register_size (gdbarch, remote_regs[regnum]->regnum);
1414 /* Given the architecture described by GDBARCH, return the remote
1415 protocol register's number and the register's offset in the g/G
1416 packets of GDB register REGNUM, in PNUM and POFFSET respectively.
1417 If the target does not have a mapping for REGNUM, return false,
1418 otherwise, return true. */
1421 remote_register_number_and_offset (struct gdbarch *gdbarch, int regnum,
1422 int *pnum, int *poffset)
1424 gdb_assert (regnum < gdbarch_num_regs (gdbarch));
1426 std::vector<packet_reg> regs (gdbarch_num_regs (gdbarch));
1428 map_regcache_remote_table (gdbarch, regs.data ());
1430 *pnum = regs[regnum].pnum;
1431 *poffset = regs[regnum].offset;
1436 remote_arch_state::remote_arch_state (struct gdbarch *gdbarch)
1438 /* Use the architecture to build a regnum<->pnum table, which will be
1439 1:1 unless a feature set specifies otherwise. */
1440 this->regs.reset (new packet_reg [gdbarch_num_regs (gdbarch)] ());
1442 /* Record the maximum possible size of the g packet - it may turn out
1444 this->sizeof_g_packet
1445 = map_regcache_remote_table (gdbarch, this->regs.get ());
1447 /* Default maximum number of characters in a packet body. Many
1448 remote stubs have a hardwired buffer size of 400 bytes
1449 (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
1450 as the maximum packet-size to ensure that the packet and an extra
1451 NUL character can always fit in the buffer. This stops GDB
1452 trashing stubs that try to squeeze an extra NUL into what is
1453 already a full buffer (As of 1999-12-04 that was most stubs). */
1454 this->remote_packet_size = 400 - 1;
1456 /* This one is filled in when a ``g'' packet is received. */
1457 this->actual_register_packet_size = 0;
1459 /* Should rsa->sizeof_g_packet needs more space than the
1460 default, adjust the size accordingly. Remember that each byte is
1461 encoded as two characters. 32 is the overhead for the packet
1462 header / footer. NOTE: cagney/1999-10-26: I suspect that 8
1463 (``$NN:G...#NN'') is a better guess, the below has been padded a
1465 if (this->sizeof_g_packet > ((this->remote_packet_size - 32) / 2))
1466 this->remote_packet_size = (this->sizeof_g_packet * 2 + 32);
1469 /* Get a pointer to the current remote target. If not connected to a
1470 remote target, return NULL. */
1472 static remote_target *
1473 get_current_remote_target ()
1475 target_ops *proc_target = current_inferior ()->process_target ();
1476 return dynamic_cast<remote_target *> (proc_target);
1479 /* Return the current allowed size of a remote packet. This is
1480 inferred from the current architecture, and should be used to
1481 limit the length of outgoing packets. */
1483 remote_target::get_remote_packet_size ()
1485 struct remote_state *rs = get_remote_state ();
1486 remote_arch_state *rsa = rs->get_remote_arch_state (target_gdbarch ());
1488 if (rs->explicit_packet_size)
1489 return rs->explicit_packet_size;
1491 return rsa->remote_packet_size;
1494 static struct packet_reg *
1495 packet_reg_from_regnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
1498 if (regnum < 0 && regnum >= gdbarch_num_regs (gdbarch))
1502 struct packet_reg *r = &rsa->regs[regnum];
1504 gdb_assert (r->regnum == regnum);
1509 static struct packet_reg *
1510 packet_reg_from_pnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
1515 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
1517 struct packet_reg *r = &rsa->regs[i];
1519 if (r->pnum == pnum)
1525 /* Allow the user to specify what sequence to send to the remote
1526 when he requests a program interruption: Although ^C is usually
1527 what remote systems expect (this is the default, here), it is
1528 sometimes preferable to send a break. On other systems such
1529 as the Linux kernel, a break followed by g, which is Magic SysRq g
1530 is required in order to interrupt the execution. */
1531 const char interrupt_sequence_control_c[] = "Ctrl-C";
1532 const char interrupt_sequence_break[] = "BREAK";
1533 const char interrupt_sequence_break_g[] = "BREAK-g";
1534 static const char *const interrupt_sequence_modes[] =
1536 interrupt_sequence_control_c,
1537 interrupt_sequence_break,
1538 interrupt_sequence_break_g,
1541 static const char *interrupt_sequence_mode = interrupt_sequence_control_c;
1544 show_interrupt_sequence (struct ui_file *file, int from_tty,
1545 struct cmd_list_element *c,
1548 if (interrupt_sequence_mode == interrupt_sequence_control_c)
1549 fprintf_filtered (file,
1550 _("Send the ASCII ETX character (Ctrl-c) "
1551 "to the remote target to interrupt the "
1552 "execution of the program.\n"));
1553 else if (interrupt_sequence_mode == interrupt_sequence_break)
1554 fprintf_filtered (file,
1555 _("send a break signal to the remote target "
1556 "to interrupt the execution of the program.\n"));
1557 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
1558 fprintf_filtered (file,
1559 _("Send a break signal and 'g' a.k.a. Magic SysRq g to "
1560 "the remote target to interrupt the execution "
1561 "of Linux kernel.\n"));
1563 internal_error (__FILE__, __LINE__,
1564 _("Invalid value for interrupt_sequence_mode: %s."),
1565 interrupt_sequence_mode);
1568 /* This boolean variable specifies whether interrupt_sequence is sent
1569 to the remote target when gdb connects to it.
1570 This is mostly needed when you debug the Linux kernel: The Linux kernel
1571 expects BREAK g which is Magic SysRq g for connecting gdb. */
1572 static bool interrupt_on_connect = false;
1574 /* This variable is used to implement the "set/show remotebreak" commands.
1575 Since these commands are now deprecated in favor of "set/show remote
1576 interrupt-sequence", it no longer has any effect on the code. */
1577 static bool remote_break;
1580 set_remotebreak (const char *args, int from_tty, struct cmd_list_element *c)
1583 interrupt_sequence_mode = interrupt_sequence_break;
1585 interrupt_sequence_mode = interrupt_sequence_control_c;
1589 show_remotebreak (struct ui_file *file, int from_tty,
1590 struct cmd_list_element *c,
1595 /* This variable sets the number of bits in an address that are to be
1596 sent in a memory ("M" or "m") packet. Normally, after stripping
1597 leading zeros, the entire address would be sent. This variable
1598 restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
1599 initial implementation of remote.c restricted the address sent in
1600 memory packets to ``host::sizeof long'' bytes - (typically 32
1601 bits). Consequently, for 64 bit targets, the upper 32 bits of an
1602 address was never sent. Since fixing this bug may cause a break in
1603 some remote targets this variable is principally provided to
1604 facilitate backward compatibility. */
1606 static unsigned int remote_address_size;
1609 /* User configurable variables for the number of characters in a
1610 memory read/write packet. MIN (rsa->remote_packet_size,
1611 rsa->sizeof_g_packet) is the default. Some targets need smaller
1612 values (fifo overruns, et.al.) and some users need larger values
1613 (speed up transfers). The variables ``preferred_*'' (the user
1614 request), ``current_*'' (what was actually set) and ``forced_*''
1615 (Positive - a soft limit, negative - a hard limit). */
1617 struct memory_packet_config
1624 /* The default max memory-write-packet-size, when the setting is
1625 "fixed". The 16k is historical. (It came from older GDB's using
1626 alloca for buffers and the knowledge (folklore?) that some hosts
1627 don't cope very well with large alloca calls.) */
1628 #define DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED 16384
1630 /* The minimum remote packet size for memory transfers. Ensures we
1631 can write at least one byte. */
1632 #define MIN_MEMORY_PACKET_SIZE 20
1634 /* Get the memory packet size, assuming it is fixed. */
1637 get_fixed_memory_packet_size (struct memory_packet_config *config)
1639 gdb_assert (config->fixed_p);
1641 if (config->size <= 0)
1642 return DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED;
1644 return config->size;
1647 /* Compute the current size of a read/write packet. Since this makes
1648 use of ``actual_register_packet_size'' the computation is dynamic. */
1651 remote_target::get_memory_packet_size (struct memory_packet_config *config)
1653 struct remote_state *rs = get_remote_state ();
1654 remote_arch_state *rsa = rs->get_remote_arch_state (target_gdbarch ());
1657 if (config->fixed_p)
1658 what_they_get = get_fixed_memory_packet_size (config);
1661 what_they_get = get_remote_packet_size ();
1662 /* Limit the packet to the size specified by the user. */
1663 if (config->size > 0
1664 && what_they_get > config->size)
1665 what_they_get = config->size;
1667 /* Limit it to the size of the targets ``g'' response unless we have
1668 permission from the stub to use a larger packet size. */
1669 if (rs->explicit_packet_size == 0
1670 && rsa->actual_register_packet_size > 0
1671 && what_they_get > rsa->actual_register_packet_size)
1672 what_they_get = rsa->actual_register_packet_size;
1674 if (what_they_get < MIN_MEMORY_PACKET_SIZE)
1675 what_they_get = MIN_MEMORY_PACKET_SIZE;
1677 /* Make sure there is room in the global buffer for this packet
1678 (including its trailing NUL byte). */
1679 if (rs->buf.size () < what_they_get + 1)
1680 rs->buf.resize (2 * what_they_get);
1682 return what_they_get;
1685 /* Update the size of a read/write packet. If they user wants
1686 something really big then do a sanity check. */
1689 set_memory_packet_size (const char *args, struct memory_packet_config *config)
1691 int fixed_p = config->fixed_p;
1692 long size = config->size;
1695 error (_("Argument required (integer, `fixed' or `limited')."));
1696 else if (strcmp (args, "hard") == 0
1697 || strcmp (args, "fixed") == 0)
1699 else if (strcmp (args, "soft") == 0
1700 || strcmp (args, "limit") == 0)
1706 size = strtoul (args, &end, 0);
1708 error (_("Invalid %s (bad syntax)."), config->name);
1710 /* Instead of explicitly capping the size of a packet to or
1711 disallowing it, the user is allowed to set the size to
1712 something arbitrarily large. */
1716 if (fixed_p && !config->fixed_p)
1718 /* So that the query shows the correct value. */
1719 long query_size = (size <= 0
1720 ? DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED
1723 if (! query (_("The target may not be able to correctly handle a %s\n"
1724 "of %ld bytes. Change the packet size? "),
1725 config->name, query_size))
1726 error (_("Packet size not changed."));
1728 /* Update the config. */
1729 config->fixed_p = fixed_p;
1730 config->size = size;
1734 show_memory_packet_size (struct memory_packet_config *config)
1736 if (config->size == 0)
1737 printf_filtered (_("The %s is 0 (default). "), config->name);
1739 printf_filtered (_("The %s is %ld. "), config->name, config->size);
1740 if (config->fixed_p)
1741 printf_filtered (_("Packets are fixed at %ld bytes.\n"),
1742 get_fixed_memory_packet_size (config));
1745 remote_target *remote = get_current_remote_target ();
1748 printf_filtered (_("Packets are limited to %ld bytes.\n"),
1749 remote->get_memory_packet_size (config));
1751 puts_filtered ("The actual limit will be further reduced "
1752 "dependent on the target.\n");
1756 /* FIXME: needs to be per-remote-target. */
1757 static struct memory_packet_config memory_write_packet_config =
1759 "memory-write-packet-size",
1763 set_memory_write_packet_size (const char *args, int from_tty)
1765 set_memory_packet_size (args, &memory_write_packet_config);
1769 show_memory_write_packet_size (const char *args, int from_tty)
1771 show_memory_packet_size (&memory_write_packet_config);
1774 /* Show the number of hardware watchpoints that can be used. */
1777 show_hardware_watchpoint_limit (struct ui_file *file, int from_tty,
1778 struct cmd_list_element *c,
1781 fprintf_filtered (file, _("The maximum number of target hardware "
1782 "watchpoints is %s.\n"), value);
1785 /* Show the length limit (in bytes) for hardware watchpoints. */
1788 show_hardware_watchpoint_length_limit (struct ui_file *file, int from_tty,
1789 struct cmd_list_element *c,
1792 fprintf_filtered (file, _("The maximum length (in bytes) of a target "
1793 "hardware watchpoint is %s.\n"), value);
1796 /* Show the number of hardware breakpoints that can be used. */
1799 show_hardware_breakpoint_limit (struct ui_file *file, int from_tty,
1800 struct cmd_list_element *c,
1803 fprintf_filtered (file, _("The maximum number of target hardware "
1804 "breakpoints is %s.\n"), value);
1807 /* Controls the maximum number of characters to display in the debug output
1808 for each remote packet. The remaining characters are omitted. */
1810 static int remote_packet_max_chars = 512;
1812 /* Show the maximum number of characters to display for each remote packet
1813 when remote debugging is enabled. */
1816 show_remote_packet_max_chars (struct ui_file *file, int from_tty,
1817 struct cmd_list_element *c,
1820 fprintf_filtered (file, _("Number of remote packet characters to "
1821 "display is %s.\n"), value);
1825 remote_target::get_memory_write_packet_size ()
1827 return get_memory_packet_size (&memory_write_packet_config);
1830 /* FIXME: needs to be per-remote-target. */
1831 static struct memory_packet_config memory_read_packet_config =
1833 "memory-read-packet-size",
1837 set_memory_read_packet_size (const char *args, int from_tty)
1839 set_memory_packet_size (args, &memory_read_packet_config);
1843 show_memory_read_packet_size (const char *args, int from_tty)
1845 show_memory_packet_size (&memory_read_packet_config);
1849 remote_target::get_memory_read_packet_size ()
1851 long size = get_memory_packet_size (&memory_read_packet_config);
1853 /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
1854 extra buffer size argument before the memory read size can be
1855 increased beyond this. */
1856 if (size > get_remote_packet_size ())
1857 size = get_remote_packet_size ();
1863 struct packet_config
1868 /* If auto, GDB auto-detects support for this packet or feature,
1869 either through qSupported, or by trying the packet and looking
1870 at the response. If true, GDB assumes the target supports this
1871 packet. If false, the packet is disabled. Configs that don't
1872 have an associated command always have this set to auto. */
1873 enum auto_boolean detect;
1875 /* Does the target support this packet? */
1876 enum packet_support support;
1879 static enum packet_support packet_config_support (struct packet_config *config);
1880 static enum packet_support packet_support (int packet);
1883 show_packet_config_cmd (struct packet_config *config)
1885 const char *support = "internal-error";
1887 switch (packet_config_support (config))
1890 support = "enabled";
1892 case PACKET_DISABLE:
1893 support = "disabled";
1895 case PACKET_SUPPORT_UNKNOWN:
1896 support = "unknown";
1899 switch (config->detect)
1901 case AUTO_BOOLEAN_AUTO:
1902 printf_filtered (_("Support for the `%s' packet "
1903 "is auto-detected, currently %s.\n"),
1904 config->name, support);
1906 case AUTO_BOOLEAN_TRUE:
1907 case AUTO_BOOLEAN_FALSE:
1908 printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
1909 config->name, support);
1915 add_packet_config_cmd (struct packet_config *config, const char *name,
1916 const char *title, int legacy)
1922 config->name = name;
1923 config->title = title;
1924 set_doc = xstrprintf ("Set use of remote protocol `%s' (%s) packet.",
1926 show_doc = xstrprintf ("Show current use of remote "
1927 "protocol `%s' (%s) packet.",
1929 /* set/show TITLE-packet {auto,on,off} */
1930 cmd_name = xstrprintf ("%s-packet", title);
1931 add_setshow_auto_boolean_cmd (cmd_name, class_obscure,
1932 &config->detect, set_doc,
1933 show_doc, NULL, /* help_doc */
1935 show_remote_protocol_packet_cmd,
1936 &remote_set_cmdlist, &remote_show_cmdlist);
1937 /* The command code copies the documentation strings. */
1940 /* set/show remote NAME-packet {auto,on,off} -- legacy. */
1945 legacy_name = xstrprintf ("%s-packet", name);
1946 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
1947 &remote_set_cmdlist);
1948 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
1949 &remote_show_cmdlist);
1953 static enum packet_result
1954 packet_check_result (const char *buf)
1958 /* The stub recognized the packet request. Check that the
1959 operation succeeded. */
1961 && isxdigit (buf[1]) && isxdigit (buf[2])
1963 /* "Enn" - definitely an error. */
1964 return PACKET_ERROR;
1966 /* Always treat "E." as an error. This will be used for
1967 more verbose error messages, such as E.memtypes. */
1968 if (buf[0] == 'E' && buf[1] == '.')
1969 return PACKET_ERROR;
1971 /* The packet may or may not be OK. Just assume it is. */
1975 /* The stub does not support the packet. */
1976 return PACKET_UNKNOWN;
1979 static enum packet_result
1980 packet_check_result (const gdb::char_vector &buf)
1982 return packet_check_result (buf.data ());
1985 static enum packet_result
1986 packet_ok (const char *buf, struct packet_config *config)
1988 enum packet_result result;
1990 if (config->detect != AUTO_BOOLEAN_TRUE
1991 && config->support == PACKET_DISABLE)
1992 internal_error (__FILE__, __LINE__,
1993 _("packet_ok: attempt to use a disabled packet"));
1995 result = packet_check_result (buf);
2000 /* The stub recognized the packet request. */
2001 if (config->support == PACKET_SUPPORT_UNKNOWN)
2003 remote_debug_printf ("Packet %s (%s) is supported",
2004 config->name, config->title);
2005 config->support = PACKET_ENABLE;
2008 case PACKET_UNKNOWN:
2009 /* The stub does not support the packet. */
2010 if (config->detect == AUTO_BOOLEAN_AUTO
2011 && config->support == PACKET_ENABLE)
2013 /* If the stub previously indicated that the packet was
2014 supported then there is a protocol error. */
2015 error (_("Protocol error: %s (%s) conflicting enabled responses."),
2016 config->name, config->title);
2018 else if (config->detect == AUTO_BOOLEAN_TRUE)
2020 /* The user set it wrong. */
2021 error (_("Enabled packet %s (%s) not recognized by stub"),
2022 config->name, config->title);
2025 remote_debug_printf ("Packet %s (%s) is NOT supported",
2026 config->name, config->title);
2027 config->support = PACKET_DISABLE;
2034 static enum packet_result
2035 packet_ok (const gdb::char_vector &buf, struct packet_config *config)
2037 return packet_ok (buf.data (), config);
2054 PACKET_vFile_pwrite,
2056 PACKET_vFile_unlink,
2057 PACKET_vFile_readlink,
2060 PACKET_qXfer_features,
2061 PACKET_qXfer_exec_file,
2062 PACKET_qXfer_libraries,
2063 PACKET_qXfer_libraries_svr4,
2064 PACKET_qXfer_memory_map,
2065 PACKET_qXfer_osdata,
2066 PACKET_qXfer_threads,
2067 PACKET_qXfer_statictrace_read,
2068 PACKET_qXfer_traceframe_info,
2074 PACKET_QPassSignals,
2075 PACKET_QCatchSyscalls,
2076 PACKET_QProgramSignals,
2077 PACKET_QSetWorkingDir,
2078 PACKET_QStartupWithShell,
2079 PACKET_QEnvironmentHexEncoded,
2080 PACKET_QEnvironmentReset,
2081 PACKET_QEnvironmentUnset,
2083 PACKET_qSearch_memory,
2086 PACKET_QStartNoAckMode,
2088 PACKET_qXfer_siginfo_read,
2089 PACKET_qXfer_siginfo_write,
2092 /* Support for conditional tracepoints. */
2093 PACKET_ConditionalTracepoints,
2095 /* Support for target-side breakpoint conditions. */
2096 PACKET_ConditionalBreakpoints,
2098 /* Support for target-side breakpoint commands. */
2099 PACKET_BreakpointCommands,
2101 /* Support for fast tracepoints. */
2102 PACKET_FastTracepoints,
2104 /* Support for static tracepoints. */
2105 PACKET_StaticTracepoints,
2107 /* Support for installing tracepoints while a trace experiment is
2109 PACKET_InstallInTrace,
2113 PACKET_TracepointSource,
2116 PACKET_QDisableRandomization,
2118 PACKET_QTBuffer_size,
2122 PACKET_qXfer_btrace,
2124 /* Support for the QNonStop packet. */
2127 /* Support for the QThreadEvents packet. */
2128 PACKET_QThreadEvents,
2130 /* Support for multi-process extensions. */
2131 PACKET_multiprocess_feature,
2133 /* Support for enabling and disabling tracepoints while a trace
2134 experiment is running. */
2135 PACKET_EnableDisableTracepoints_feature,
2137 /* Support for collecting strings using the tracenz bytecode. */
2138 PACKET_tracenz_feature,
2140 /* Support for continuing to run a trace experiment while GDB is
2142 PACKET_DisconnectedTracing_feature,
2144 /* Support for qXfer:libraries-svr4:read with a non-empty annex. */
2145 PACKET_augmented_libraries_svr4_read_feature,
2147 /* Support for the qXfer:btrace-conf:read packet. */
2148 PACKET_qXfer_btrace_conf,
2150 /* Support for the Qbtrace-conf:bts:size packet. */
2151 PACKET_Qbtrace_conf_bts_size,
2153 /* Support for swbreak+ feature. */
2154 PACKET_swbreak_feature,
2156 /* Support for hwbreak+ feature. */
2157 PACKET_hwbreak_feature,
2159 /* Support for fork events. */
2160 PACKET_fork_event_feature,
2162 /* Support for vfork events. */
2163 PACKET_vfork_event_feature,
2165 /* Support for the Qbtrace-conf:pt:size packet. */
2166 PACKET_Qbtrace_conf_pt_size,
2168 /* Support for exec events. */
2169 PACKET_exec_event_feature,
2171 /* Support for query supported vCont actions. */
2172 PACKET_vContSupported,
2174 /* Support remote CTRL-C. */
2177 /* Support TARGET_WAITKIND_NO_RESUMED. */
2180 /* Support for memory tagging, allocation tag fetch/store
2181 packets and the tag violation stop replies. */
2182 PACKET_memory_tagging_feature,
2187 /* FIXME: needs to be per-remote-target. Ignoring this for now,
2188 assuming all remote targets are the same server (thus all support
2189 the same packets). */
2190 static struct packet_config remote_protocol_packets[PACKET_MAX];
2192 /* Returns the packet's corresponding "set remote foo-packet" command
2193 state. See struct packet_config for more details. */
2195 static enum auto_boolean
2196 packet_set_cmd_state (int packet)
2198 return remote_protocol_packets[packet].detect;
2201 /* Returns whether a given packet or feature is supported. This takes
2202 into account the state of the corresponding "set remote foo-packet"
2203 command, which may be used to bypass auto-detection. */
2205 static enum packet_support
2206 packet_config_support (struct packet_config *config)
2208 switch (config->detect)
2210 case AUTO_BOOLEAN_TRUE:
2211 return PACKET_ENABLE;
2212 case AUTO_BOOLEAN_FALSE:
2213 return PACKET_DISABLE;
2214 case AUTO_BOOLEAN_AUTO:
2215 return config->support;
2217 gdb_assert_not_reached (_("bad switch"));
2221 /* Same as packet_config_support, but takes the packet's enum value as
2224 static enum packet_support
2225 packet_support (int packet)
2227 struct packet_config *config = &remote_protocol_packets[packet];
2229 return packet_config_support (config);
2233 show_remote_protocol_packet_cmd (struct ui_file *file, int from_tty,
2234 struct cmd_list_element *c,
2237 struct packet_config *packet;
2239 for (packet = remote_protocol_packets;
2240 packet < &remote_protocol_packets[PACKET_MAX];
2243 if (&packet->detect == c->var)
2245 show_packet_config_cmd (packet);
2249 internal_error (__FILE__, __LINE__, _("Could not find config for %s"),
2253 /* Should we try one of the 'Z' requests? */
2257 Z_PACKET_SOFTWARE_BP,
2258 Z_PACKET_HARDWARE_BP,
2265 /* For compatibility with older distributions. Provide a ``set remote
2266 Z-packet ...'' command that updates all the Z packet types. */
2268 static enum auto_boolean remote_Z_packet_detect;
2271 set_remote_protocol_Z_packet_cmd (const char *args, int from_tty,
2272 struct cmd_list_element *c)
2276 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
2277 remote_protocol_packets[PACKET_Z0 + i].detect = remote_Z_packet_detect;
2281 show_remote_protocol_Z_packet_cmd (struct ui_file *file, int from_tty,
2282 struct cmd_list_element *c,
2287 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
2289 show_packet_config_cmd (&remote_protocol_packets[PACKET_Z0 + i]);
2293 /* Returns true if the multi-process extensions are in effect. */
2296 remote_multi_process_p (struct remote_state *rs)
2298 return packet_support (PACKET_multiprocess_feature) == PACKET_ENABLE;
2301 /* Returns true if fork events are supported. */
2304 remote_fork_event_p (struct remote_state *rs)
2306 return packet_support (PACKET_fork_event_feature) == PACKET_ENABLE;
2309 /* Returns true if vfork events are supported. */
2312 remote_vfork_event_p (struct remote_state *rs)
2314 return packet_support (PACKET_vfork_event_feature) == PACKET_ENABLE;
2317 /* Returns true if exec events are supported. */
2320 remote_exec_event_p (struct remote_state *rs)
2322 return packet_support (PACKET_exec_event_feature) == PACKET_ENABLE;
2325 /* Returns true if memory tagging is supported, false otherwise. */
2328 remote_memory_tagging_p ()
2330 return packet_support (PACKET_memory_tagging_feature) == PACKET_ENABLE;
2333 /* Insert fork catchpoint target routine. If fork events are enabled
2334 then return success, nothing more to do. */
2337 remote_target::insert_fork_catchpoint (int pid)
2339 struct remote_state *rs = get_remote_state ();
2341 return !remote_fork_event_p (rs);
2344 /* Remove fork catchpoint target routine. Nothing to do, just
2348 remote_target::remove_fork_catchpoint (int pid)
2353 /* Insert vfork catchpoint target routine. If vfork events are enabled
2354 then return success, nothing more to do. */
2357 remote_target::insert_vfork_catchpoint (int pid)
2359 struct remote_state *rs = get_remote_state ();
2361 return !remote_vfork_event_p (rs);
2364 /* Remove vfork catchpoint target routine. Nothing to do, just
2368 remote_target::remove_vfork_catchpoint (int pid)
2373 /* Insert exec catchpoint target routine. If exec events are
2374 enabled, just return success. */
2377 remote_target::insert_exec_catchpoint (int pid)
2379 struct remote_state *rs = get_remote_state ();
2381 return !remote_exec_event_p (rs);
2384 /* Remove exec catchpoint target routine. Nothing to do, just
2388 remote_target::remove_exec_catchpoint (int pid)
2395 /* Take advantage of the fact that the TID field is not used, to tag
2396 special ptids with it set to != 0. */
2397 static const ptid_t magic_null_ptid (42000, -1, 1);
2398 static const ptid_t not_sent_ptid (42000, -2, 1);
2399 static const ptid_t any_thread_ptid (42000, 0, 1);
2401 /* Find out if the stub attached to PID (and hence GDB should offer to
2402 detach instead of killing it when bailing out). */
2405 remote_target::remote_query_attached (int pid)
2407 struct remote_state *rs = get_remote_state ();
2408 size_t size = get_remote_packet_size ();
2410 if (packet_support (PACKET_qAttached) == PACKET_DISABLE)
2413 if (remote_multi_process_p (rs))
2414 xsnprintf (rs->buf.data (), size, "qAttached:%x", pid);
2416 xsnprintf (rs->buf.data (), size, "qAttached");
2419 getpkt (&rs->buf, 0);
2421 switch (packet_ok (rs->buf,
2422 &remote_protocol_packets[PACKET_qAttached]))
2425 if (strcmp (rs->buf.data (), "1") == 0)
2429 warning (_("Remote failure reply: %s"), rs->buf.data ());
2431 case PACKET_UNKNOWN:
2438 /* Add PID to GDB's inferior table. If FAKE_PID_P is true, then PID
2439 has been invented by GDB, instead of reported by the target. Since
2440 we can be connected to a remote system before before knowing about
2441 any inferior, mark the target with execution when we find the first
2442 inferior. If ATTACHED is 1, then we had just attached to this
2443 inferior. If it is 0, then we just created this inferior. If it
2444 is -1, then try querying the remote stub to find out if it had
2445 attached to the inferior or not. If TRY_OPEN_EXEC is true then
2446 attempt to open this inferior's executable as the main executable
2447 if no main executable is open already. */
2450 remote_target::remote_add_inferior (bool fake_pid_p, int pid, int attached,
2453 struct inferior *inf;
2455 /* Check whether this process we're learning about is to be
2456 considered attached, or if is to be considered to have been
2457 spawned by the stub. */
2459 attached = remote_query_attached (pid);
2461 if (gdbarch_has_global_solist (target_gdbarch ()))
2463 /* If the target shares code across all inferiors, then every
2464 attach adds a new inferior. */
2465 inf = add_inferior (pid);
2467 /* ... and every inferior is bound to the same program space.
2468 However, each inferior may still have its own address
2470 inf->aspace = maybe_new_address_space ();
2471 inf->pspace = current_program_space;
2475 /* In the traditional debugging scenario, there's a 1-1 match
2476 between program/address spaces. We simply bind the inferior
2477 to the program space's address space. */
2478 inf = current_inferior ();
2480 /* However, if the current inferior is already bound to a
2481 process, find some other empty inferior. */
2485 for (inferior *it : all_inferiors ())
2494 /* Since all inferiors were already bound to a process, add
2496 inf = add_inferior_with_spaces ();
2498 switch_to_inferior_no_thread (inf);
2499 inf->push_target (this);
2500 inferior_appeared (inf, pid);
2503 inf->attach_flag = attached;
2504 inf->fake_pid_p = fake_pid_p;
2506 /* If no main executable is currently open then attempt to
2507 open the file that was executed to create this inferior. */
2508 if (try_open_exec && get_exec_file (0) == NULL)
2509 exec_file_locate_attach (pid, 0, 1);
2511 /* Check for exec file mismatch, and let the user solve it. */
2512 validate_exec_file (1);
2517 static remote_thread_info *get_remote_thread_info (thread_info *thread);
2518 static remote_thread_info *get_remote_thread_info (remote_target *target,
2521 /* Add thread PTID to GDB's thread list. Tag it as executing/running
2522 according to RUNNING. */
2525 remote_target::remote_add_thread (ptid_t ptid, bool running, bool executing)
2527 struct remote_state *rs = get_remote_state ();
2528 struct thread_info *thread;
2530 /* GDB historically didn't pull threads in the initial connection
2531 setup. If the remote target doesn't even have a concept of
2532 threads (e.g., a bare-metal target), even if internally we
2533 consider that a single-threaded target, mentioning a new thread
2534 might be confusing to the user. Be silent then, preserving the
2535 age old behavior. */
2536 if (rs->starting_up)
2537 thread = add_thread_silent (this, ptid);
2539 thread = add_thread (this, ptid);
2541 /* We start by assuming threads are resumed. That state then gets updated
2542 when we process a matching stop reply. */
2543 get_remote_thread_info (thread)->set_resumed ();
2545 set_executing (this, ptid, executing);
2546 set_running (this, ptid, running);
2551 /* Come here when we learn about a thread id from the remote target.
2552 It may be the first time we hear about such thread, so take the
2553 opportunity to add it to GDB's thread list. In case this is the
2554 first time we're noticing its corresponding inferior, add it to
2555 GDB's inferior list as well. EXECUTING indicates whether the
2556 thread is (internally) executing or stopped. */
2559 remote_target::remote_notice_new_inferior (ptid_t currthread, int executing)
2561 /* In non-stop mode, we assume new found threads are (externally)
2562 running until proven otherwise with a stop reply. In all-stop,
2563 we can only get here if all threads are stopped. */
2564 int running = target_is_non_stop_p () ? 1 : 0;
2566 /* If this is a new thread, add it to GDB's thread list.
2567 If we leave it up to WFI to do this, bad things will happen. */
2569 thread_info *tp = find_thread_ptid (this, currthread);
2570 if (tp != NULL && tp->state == THREAD_EXITED)
2572 /* We're seeing an event on a thread id we knew had exited.
2573 This has to be a new thread reusing the old id. Add it. */
2574 remote_add_thread (currthread, running, executing);
2578 if (!in_thread_list (this, currthread))
2580 struct inferior *inf = NULL;
2581 int pid = currthread.pid ();
2583 if (inferior_ptid.is_pid ()
2584 && pid == inferior_ptid.pid ())
2586 /* inferior_ptid has no thread member yet. This can happen
2587 with the vAttach -> remote_wait,"TAAthread:" path if the
2588 stub doesn't support qC. This is the first stop reported
2589 after an attach, so this is the main thread. Update the
2590 ptid in the thread list. */
2591 if (in_thread_list (this, ptid_t (pid)))
2592 thread_change_ptid (this, inferior_ptid, currthread);
2596 = remote_add_thread (currthread, running, executing);
2597 switch_to_thread (thr);
2602 if (magic_null_ptid == inferior_ptid)
2604 /* inferior_ptid is not set yet. This can happen with the
2605 vRun -> remote_wait,"TAAthread:" path if the stub
2606 doesn't support qC. This is the first stop reported
2607 after an attach, so this is the main thread. Update the
2608 ptid in the thread list. */
2609 thread_change_ptid (this, inferior_ptid, currthread);
2613 /* When connecting to a target remote, or to a target
2614 extended-remote which already was debugging an inferior, we
2615 may not know about it yet. Add it before adding its child
2616 thread, so notifications are emitted in a sensible order. */
2617 if (find_inferior_pid (this, currthread.pid ()) == NULL)
2619 struct remote_state *rs = get_remote_state ();
2620 bool fake_pid_p = !remote_multi_process_p (rs);
2622 inf = remote_add_inferior (fake_pid_p,
2623 currthread.pid (), -1, 1);
2626 /* This is really a new thread. Add it. */
2627 thread_info *new_thr
2628 = remote_add_thread (currthread, running, executing);
2630 /* If we found a new inferior, let the common code do whatever
2631 it needs to with it (e.g., read shared libraries, insert
2632 breakpoints), unless we're just setting up an all-stop
2636 struct remote_state *rs = get_remote_state ();
2638 if (!rs->starting_up)
2639 notice_new_inferior (new_thr, executing, 0);
2644 /* Return THREAD's private thread data, creating it if necessary. */
2646 static remote_thread_info *
2647 get_remote_thread_info (thread_info *thread)
2649 gdb_assert (thread != NULL);
2651 if (thread->priv == NULL)
2652 thread->priv.reset (new remote_thread_info);
2654 return static_cast<remote_thread_info *> (thread->priv.get ());
2657 /* Return PTID's private thread data, creating it if necessary. */
2659 static remote_thread_info *
2660 get_remote_thread_info (remote_target *target, ptid_t ptid)
2662 thread_info *thr = find_thread_ptid (target, ptid);
2663 return get_remote_thread_info (thr);
2666 /* Call this function as a result of
2667 1) A halt indication (T packet) containing a thread id
2668 2) A direct query of currthread
2669 3) Successful execution of set thread */
2672 record_currthread (struct remote_state *rs, ptid_t currthread)
2674 rs->general_thread = currthread;
2677 /* If 'QPassSignals' is supported, tell the remote stub what signals
2678 it can simply pass through to the inferior without reporting. */
2681 remote_target::pass_signals (gdb::array_view<const unsigned char> pass_signals)
2683 if (packet_support (PACKET_QPassSignals) != PACKET_DISABLE)
2685 char *pass_packet, *p;
2687 struct remote_state *rs = get_remote_state ();
2689 gdb_assert (pass_signals.size () < 256);
2690 for (size_t i = 0; i < pass_signals.size (); i++)
2692 if (pass_signals[i])
2695 pass_packet = (char *) xmalloc (count * 3 + strlen ("QPassSignals:") + 1);
2696 strcpy (pass_packet, "QPassSignals:");
2697 p = pass_packet + strlen (pass_packet);
2698 for (size_t i = 0; i < pass_signals.size (); i++)
2700 if (pass_signals[i])
2703 *p++ = tohex (i >> 4);
2704 *p++ = tohex (i & 15);
2713 if (!rs->last_pass_packet || strcmp (rs->last_pass_packet, pass_packet))
2715 putpkt (pass_packet);
2716 getpkt (&rs->buf, 0);
2717 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QPassSignals]);
2718 xfree (rs->last_pass_packet);
2719 rs->last_pass_packet = pass_packet;
2722 xfree (pass_packet);
2726 /* If 'QCatchSyscalls' is supported, tell the remote stub
2727 to report syscalls to GDB. */
2730 remote_target::set_syscall_catchpoint (int pid, bool needed, int any_count,
2731 gdb::array_view<const int> syscall_counts)
2733 const char *catch_packet;
2734 enum packet_result result;
2737 if (packet_support (PACKET_QCatchSyscalls) == PACKET_DISABLE)
2739 /* Not supported. */
2743 if (needed && any_count == 0)
2745 /* Count how many syscalls are to be caught. */
2746 for (size_t i = 0; i < syscall_counts.size (); i++)
2748 if (syscall_counts[i] != 0)
2753 remote_debug_printf ("pid %d needed %d any_count %d n_sysno %d",
2754 pid, needed, any_count, n_sysno);
2756 std::string built_packet;
2759 /* Prepare a packet with the sysno list, assuming max 8+1
2760 characters for a sysno. If the resulting packet size is too
2761 big, fallback on the non-selective packet. */
2762 const int maxpktsz = strlen ("QCatchSyscalls:1") + n_sysno * 9 + 1;
2763 built_packet.reserve (maxpktsz);
2764 built_packet = "QCatchSyscalls:1";
2767 /* Add in each syscall to be caught. */
2768 for (size_t i = 0; i < syscall_counts.size (); i++)
2770 if (syscall_counts[i] != 0)
2771 string_appendf (built_packet, ";%zx", i);
2774 if (built_packet.size () > get_remote_packet_size ())
2776 /* catch_packet too big. Fallback to less efficient
2777 non selective mode, with GDB doing the filtering. */
2778 catch_packet = "QCatchSyscalls:1";
2781 catch_packet = built_packet.c_str ();
2784 catch_packet = "QCatchSyscalls:0";
2786 struct remote_state *rs = get_remote_state ();
2788 putpkt (catch_packet);
2789 getpkt (&rs->buf, 0);
2790 result = packet_ok (rs->buf, &remote_protocol_packets[PACKET_QCatchSyscalls]);
2791 if (result == PACKET_OK)
2797 /* If 'QProgramSignals' is supported, tell the remote stub what
2798 signals it should pass through to the inferior when detaching. */
2801 remote_target::program_signals (gdb::array_view<const unsigned char> signals)
2803 if (packet_support (PACKET_QProgramSignals) != PACKET_DISABLE)
2807 struct remote_state *rs = get_remote_state ();
2809 gdb_assert (signals.size () < 256);
2810 for (size_t i = 0; i < signals.size (); i++)
2815 packet = (char *) xmalloc (count * 3 + strlen ("QProgramSignals:") + 1);
2816 strcpy (packet, "QProgramSignals:");
2817 p = packet + strlen (packet);
2818 for (size_t i = 0; i < signals.size (); i++)
2820 if (signal_pass_state (i))
2823 *p++ = tohex (i >> 4);
2824 *p++ = tohex (i & 15);
2833 if (!rs->last_program_signals_packet
2834 || strcmp (rs->last_program_signals_packet, packet) != 0)
2837 getpkt (&rs->buf, 0);
2838 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QProgramSignals]);
2839 xfree (rs->last_program_signals_packet);
2840 rs->last_program_signals_packet = packet;
2847 /* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
2848 MINUS_ONE_PTID, set the thread to -1, so the stub returns the
2849 thread. If GEN is set, set the general thread, if not, then set
2850 the step/continue thread. */
2852 remote_target::set_thread (ptid_t ptid, int gen)
2854 struct remote_state *rs = get_remote_state ();
2855 ptid_t state = gen ? rs->general_thread : rs->continue_thread;
2856 char *buf = rs->buf.data ();
2857 char *endbuf = buf + get_remote_packet_size ();
2863 *buf++ = gen ? 'g' : 'c';
2864 if (ptid == magic_null_ptid)
2865 xsnprintf (buf, endbuf - buf, "0");
2866 else if (ptid == any_thread_ptid)
2867 xsnprintf (buf, endbuf - buf, "0");
2868 else if (ptid == minus_one_ptid)
2869 xsnprintf (buf, endbuf - buf, "-1");
2871 write_ptid (buf, endbuf, ptid);
2873 getpkt (&rs->buf, 0);
2875 rs->general_thread = ptid;
2877 rs->continue_thread = ptid;
2881 remote_target::set_general_thread (ptid_t ptid)
2883 set_thread (ptid, 1);
2887 remote_target::set_continue_thread (ptid_t ptid)
2889 set_thread (ptid, 0);
2892 /* Change the remote current process. Which thread within the process
2893 ends up selected isn't important, as long as it is the same process
2894 as what INFERIOR_PTID points to.
2896 This comes from that fact that there is no explicit notion of
2897 "selected process" in the protocol. The selected process for
2898 general operations is the process the selected general thread
2902 remote_target::set_general_process ()
2904 struct remote_state *rs = get_remote_state ();
2906 /* If the remote can't handle multiple processes, don't bother. */
2907 if (!remote_multi_process_p (rs))
2910 /* We only need to change the remote current thread if it's pointing
2911 at some other process. */
2912 if (rs->general_thread.pid () != inferior_ptid.pid ())
2913 set_general_thread (inferior_ptid);
2917 /* Return nonzero if this is the main thread that we made up ourselves
2918 to model non-threaded targets as single-threaded. */
2921 remote_thread_always_alive (ptid_t ptid)
2923 if (ptid == magic_null_ptid)
2924 /* The main thread is always alive. */
2927 if (ptid.pid () != 0 && ptid.lwp () == 0)
2928 /* The main thread is always alive. This can happen after a
2929 vAttach, if the remote side doesn't support
2936 /* Return nonzero if the thread PTID is still alive on the remote
2940 remote_target::thread_alive (ptid_t ptid)
2942 struct remote_state *rs = get_remote_state ();
2945 /* Check if this is a thread that we made up ourselves to model
2946 non-threaded targets as single-threaded. */
2947 if (remote_thread_always_alive (ptid))
2950 p = rs->buf.data ();
2951 endp = p + get_remote_packet_size ();
2954 write_ptid (p, endp, ptid);
2957 getpkt (&rs->buf, 0);
2958 return (rs->buf[0] == 'O' && rs->buf[1] == 'K');
2961 /* Return a pointer to a thread name if we know it and NULL otherwise.
2962 The thread_info object owns the memory for the name. */
2965 remote_target::thread_name (struct thread_info *info)
2967 if (info->priv != NULL)
2969 const std::string &name = get_remote_thread_info (info)->name;
2970 return !name.empty () ? name.c_str () : NULL;
2976 /* About these extended threadlist and threadinfo packets. They are
2977 variable length packets but, the fields within them are often fixed
2978 length. They are redundant enough to send over UDP as is the
2979 remote protocol in general. There is a matching unit test module
2982 /* WARNING: This threadref data structure comes from the remote O.S.,
2983 libstub protocol encoding, and remote.c. It is not particularly
2986 /* Right now, the internal structure is int. We want it to be bigger.
2987 Plan to fix this. */
2989 typedef int gdb_threadref; /* Internal GDB thread reference. */
2991 /* gdb_ext_thread_info is an internal GDB data structure which is
2992 equivalent to the reply of the remote threadinfo packet. */
2994 struct gdb_ext_thread_info
2996 threadref threadid; /* External form of thread reference. */
2997 int active; /* Has state interesting to GDB?
2999 char display[256]; /* Brief state display, name,
3000 blocked/suspended. */
3001 char shortname[32]; /* To be used to name threads. */
3002 char more_display[256]; /* Long info, statistics, queue depth,
3006 /* The volume of remote transfers can be limited by submitting
3007 a mask containing bits specifying the desired information.
3008 Use a union of these values as the 'selection' parameter to
3009 get_thread_info. FIXME: Make these TAG names more thread specific. */
3011 #define TAG_THREADID 1
3012 #define TAG_EXISTS 2
3013 #define TAG_DISPLAY 4
3014 #define TAG_THREADNAME 8
3015 #define TAG_MOREDISPLAY 16
3017 #define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
3019 static const char *unpack_nibble (const char *buf, int *val);
3021 static const char *unpack_byte (const char *buf, int *value);
3023 static char *pack_int (char *buf, int value);
3025 static const char *unpack_int (const char *buf, int *value);
3027 static const char *unpack_string (const char *src, char *dest, int length);
3029 static char *pack_threadid (char *pkt, threadref *id);
3031 static const char *unpack_threadid (const char *inbuf, threadref *id);
3033 void int_to_threadref (threadref *id, int value);
3035 static int threadref_to_int (threadref *ref);
3037 static void copy_threadref (threadref *dest, threadref *src);
3039 static int threadmatch (threadref *dest, threadref *src);
3041 static char *pack_threadinfo_request (char *pkt, int mode,
3044 static char *pack_threadlist_request (char *pkt, int startflag,
3046 threadref *nextthread);
3048 static int remote_newthread_step (threadref *ref, void *context);
3051 /* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the
3052 buffer we're allowed to write to. Returns
3053 BUF+CHARACTERS_WRITTEN. */
3056 remote_target::write_ptid (char *buf, const char *endbuf, ptid_t ptid)
3059 struct remote_state *rs = get_remote_state ();
3061 if (remote_multi_process_p (rs))
3065 buf += xsnprintf (buf, endbuf - buf, "p-%x.", -pid);
3067 buf += xsnprintf (buf, endbuf - buf, "p%x.", pid);
3071 buf += xsnprintf (buf, endbuf - buf, "-%x", -tid);
3073 buf += xsnprintf (buf, endbuf - buf, "%x", tid);
3078 /* Extract a PTID from BUF. If non-null, OBUF is set to one past the
3079 last parsed char. Returns null_ptid if no thread id is found, and
3080 throws an error if the thread id has an invalid format. */
3083 read_ptid (const char *buf, const char **obuf)
3085 const char *p = buf;
3087 ULONGEST pid = 0, tid = 0;
3091 /* Multi-process ptid. */
3092 pp = unpack_varlen_hex (p + 1, &pid);
3094 error (_("invalid remote ptid: %s"), p);
3097 pp = unpack_varlen_hex (p + 1, &tid);
3100 return ptid_t (pid, tid, 0);
3103 /* No multi-process. Just a tid. */
3104 pp = unpack_varlen_hex (p, &tid);
3106 /* Return null_ptid when no thread id is found. */
3114 /* Since the stub is not sending a process id, then default to
3115 what's in inferior_ptid, unless it's null at this point. If so,
3116 then since there's no way to know the pid of the reported
3117 threads, use the magic number. */
3118 if (inferior_ptid == null_ptid)
3119 pid = magic_null_ptid.pid ();
3121 pid = inferior_ptid.pid ();
3125 return ptid_t (pid, tid, 0);
3131 if (ch >= 'a' && ch <= 'f')
3132 return ch - 'a' + 10;
3133 if (ch >= '0' && ch <= '9')
3135 if (ch >= 'A' && ch <= 'F')
3136 return ch - 'A' + 10;
3141 stub_unpack_int (const char *buff, int fieldlength)
3148 nibble = stubhex (*buff++);
3152 retval = retval << 4;
3158 unpack_nibble (const char *buf, int *val)
3160 *val = fromhex (*buf++);
3165 unpack_byte (const char *buf, int *value)
3167 *value = stub_unpack_int (buf, 2);
3172 pack_int (char *buf, int value)
3174 buf = pack_hex_byte (buf, (value >> 24) & 0xff);
3175 buf = pack_hex_byte (buf, (value >> 16) & 0xff);
3176 buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
3177 buf = pack_hex_byte (buf, (value & 0xff));
3182 unpack_int (const char *buf, int *value)
3184 *value = stub_unpack_int (buf, 8);
3188 #if 0 /* Currently unused, uncomment when needed. */
3189 static char *pack_string (char *pkt, char *string);
3192 pack_string (char *pkt, char *string)
3197 len = strlen (string);
3199 len = 200; /* Bigger than most GDB packets, junk??? */
3200 pkt = pack_hex_byte (pkt, len);
3204 if ((ch == '\0') || (ch == '#'))
3205 ch = '*'; /* Protect encapsulation. */
3210 #endif /* 0 (unused) */
3213 unpack_string (const char *src, char *dest, int length)
3222 pack_threadid (char *pkt, threadref *id)
3225 unsigned char *altid;
3227 altid = (unsigned char *) id;
3228 limit = pkt + BUF_THREAD_ID_SIZE;
3230 pkt = pack_hex_byte (pkt, *altid++);
3236 unpack_threadid (const char *inbuf, threadref *id)
3239 const char *limit = inbuf + BUF_THREAD_ID_SIZE;
3242 altref = (char *) id;
3244 while (inbuf < limit)
3246 x = stubhex (*inbuf++);
3247 y = stubhex (*inbuf++);
3248 *altref++ = (x << 4) | y;
3253 /* Externally, threadrefs are 64 bits but internally, they are still
3254 ints. This is due to a mismatch of specifications. We would like
3255 to use 64bit thread references internally. This is an adapter
3259 int_to_threadref (threadref *id, int value)
3261 unsigned char *scan;
3263 scan = (unsigned char *) id;
3269 *scan++ = (value >> 24) & 0xff;
3270 *scan++ = (value >> 16) & 0xff;
3271 *scan++ = (value >> 8) & 0xff;
3272 *scan++ = (value & 0xff);
3276 threadref_to_int (threadref *ref)
3279 unsigned char *scan;
3285 value = (value << 8) | ((*scan++) & 0xff);
3290 copy_threadref (threadref *dest, threadref *src)
3293 unsigned char *csrc, *cdest;
3295 csrc = (unsigned char *) src;
3296 cdest = (unsigned char *) dest;
3303 threadmatch (threadref *dest, threadref *src)
3305 /* Things are broken right now, so just assume we got a match. */
3307 unsigned char *srcp, *destp;
3309 srcp = (char *) src;
3310 destp = (char *) dest;
3314 result &= (*srcp++ == *destp++) ? 1 : 0;
3321 threadid:1, # always request threadid
3328 /* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
3331 pack_threadinfo_request (char *pkt, int mode, threadref *id)
3333 *pkt++ = 'q'; /* Info Query */
3334 *pkt++ = 'P'; /* process or thread info */
3335 pkt = pack_int (pkt, mode); /* mode */
3336 pkt = pack_threadid (pkt, id); /* threadid */
3337 *pkt = '\0'; /* terminate */
3341 /* These values tag the fields in a thread info response packet. */
3342 /* Tagging the fields allows us to request specific fields and to
3343 add more fields as time goes by. */
3345 #define TAG_THREADID 1 /* Echo the thread identifier. */
3346 #define TAG_EXISTS 2 /* Is this process defined enough to
3347 fetch registers and its stack? */
3348 #define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
3349 #define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
3350 #define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
3354 remote_target::remote_unpack_thread_info_response (const char *pkt,
3355 threadref *expectedref,
3356 gdb_ext_thread_info *info)
3358 struct remote_state *rs = get_remote_state ();
3362 const char *limit = pkt + rs->buf.size (); /* Plausible parsing limit. */
3365 /* info->threadid = 0; FIXME: implement zero_threadref. */
3367 info->display[0] = '\0';
3368 info->shortname[0] = '\0';
3369 info->more_display[0] = '\0';
3371 /* Assume the characters indicating the packet type have been
3373 pkt = unpack_int (pkt, &mask); /* arg mask */
3374 pkt = unpack_threadid (pkt, &ref);
3377 warning (_("Incomplete response to threadinfo request."));
3378 if (!threadmatch (&ref, expectedref))
3379 { /* This is an answer to a different request. */
3380 warning (_("ERROR RMT Thread info mismatch."));
3383 copy_threadref (&info->threadid, &ref);
3385 /* Loop on tagged fields , try to bail if something goes wrong. */
3387 /* Packets are terminated with nulls. */
3388 while ((pkt < limit) && mask && *pkt)
3390 pkt = unpack_int (pkt, &tag); /* tag */
3391 pkt = unpack_byte (pkt, &length); /* length */
3392 if (!(tag & mask)) /* Tags out of synch with mask. */
3394 warning (_("ERROR RMT: threadinfo tag mismatch."));
3398 if (tag == TAG_THREADID)
3402 warning (_("ERROR RMT: length of threadid is not 16."));
3406 pkt = unpack_threadid (pkt, &ref);
3407 mask = mask & ~TAG_THREADID;
3410 if (tag == TAG_EXISTS)
3412 info->active = stub_unpack_int (pkt, length);
3414 mask = mask & ~(TAG_EXISTS);
3417 warning (_("ERROR RMT: 'exists' length too long."));
3423 if (tag == TAG_THREADNAME)
3425 pkt = unpack_string (pkt, &info->shortname[0], length);
3426 mask = mask & ~TAG_THREADNAME;
3429 if (tag == TAG_DISPLAY)
3431 pkt = unpack_string (pkt, &info->display[0], length);
3432 mask = mask & ~TAG_DISPLAY;
3435 if (tag == TAG_MOREDISPLAY)
3437 pkt = unpack_string (pkt, &info->more_display[0], length);
3438 mask = mask & ~TAG_MOREDISPLAY;
3441 warning (_("ERROR RMT: unknown thread info tag."));
3442 break; /* Not a tag we know about. */
3448 remote_target::remote_get_threadinfo (threadref *threadid,
3450 gdb_ext_thread_info *info)
3452 struct remote_state *rs = get_remote_state ();
3455 pack_threadinfo_request (rs->buf.data (), fieldset, threadid);
3457 getpkt (&rs->buf, 0);
3459 if (rs->buf[0] == '\0')
3462 result = remote_unpack_thread_info_response (&rs->buf[2],
3467 /* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
3470 pack_threadlist_request (char *pkt, int startflag, int threadcount,
3471 threadref *nextthread)
3473 *pkt++ = 'q'; /* info query packet */
3474 *pkt++ = 'L'; /* Process LIST or threadLIST request */
3475 pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */
3476 pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */
3477 pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */
3482 /* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
3485 remote_target::parse_threadlist_response (const char *pkt, int result_limit,
3486 threadref *original_echo,
3487 threadref *resultlist,
3490 struct remote_state *rs = get_remote_state ();
3491 int count, resultcount, done;
3494 /* Assume the 'q' and 'M chars have been stripped. */
3495 const char *limit = pkt + (rs->buf.size () - BUF_THREAD_ID_SIZE);
3496 /* done parse past here */
3497 pkt = unpack_byte (pkt, &count); /* count field */
3498 pkt = unpack_nibble (pkt, &done);
3499 /* The first threadid is the argument threadid. */
3500 pkt = unpack_threadid (pkt, original_echo); /* should match query packet */
3501 while ((count-- > 0) && (pkt < limit))
3503 pkt = unpack_threadid (pkt, resultlist++);
3504 if (resultcount++ >= result_limit)
3512 /* Fetch the next batch of threads from the remote. Returns -1 if the
3513 qL packet is not supported, 0 on error and 1 on success. */
3516 remote_target::remote_get_threadlist (int startflag, threadref *nextthread,
3517 int result_limit, int *done, int *result_count,
3518 threadref *threadlist)
3520 struct remote_state *rs = get_remote_state ();
3523 /* Truncate result limit to be smaller than the packet size. */
3524 if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10)
3525 >= get_remote_packet_size ())
3526 result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2;
3528 pack_threadlist_request (rs->buf.data (), startflag, result_limit,
3531 getpkt (&rs->buf, 0);
3532 if (rs->buf[0] == '\0')
3534 /* Packet not supported. */
3539 parse_threadlist_response (&rs->buf[2], result_limit,
3540 &rs->echo_nextthread, threadlist, done);
3542 if (!threadmatch (&rs->echo_nextthread, nextthread))
3544 /* FIXME: This is a good reason to drop the packet. */
3545 /* Possibly, there is a duplicate response. */
3547 retransmit immediatly - race conditions
3548 retransmit after timeout - yes
3550 wait for packet, then exit
3552 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
3553 return 0; /* I choose simply exiting. */
3555 if (*result_count <= 0)
3559 warning (_("RMT ERROR : failed to get remote thread list."));
3562 return result; /* break; */
3564 if (*result_count > result_limit)
3567 warning (_("RMT ERROR: threadlist response longer than requested."));
3573 /* Fetch the list of remote threads, with the qL packet, and call
3574 STEPFUNCTION for each thread found. Stops iterating and returns 1
3575 if STEPFUNCTION returns true. Stops iterating and returns 0 if the
3576 STEPFUNCTION returns false. If the packet is not supported,
3580 remote_target::remote_threadlist_iterator (rmt_thread_action stepfunction,
3581 void *context, int looplimit)
3583 struct remote_state *rs = get_remote_state ();
3584 int done, i, result_count;
3592 if (loopcount++ > looplimit)
3595 warning (_("Remote fetch threadlist -infinite loop-."));
3598 result = remote_get_threadlist (startflag, &rs->nextthread,
3599 MAXTHREADLISTRESULTS,
3600 &done, &result_count,
3601 rs->resultthreadlist);
3604 /* Clear for later iterations. */
3606 /* Setup to resume next batch of thread references, set nextthread. */
3607 if (result_count >= 1)
3608 copy_threadref (&rs->nextthread,
3609 &rs->resultthreadlist[result_count - 1]);
3611 while (result_count--)
3613 if (!(*stepfunction) (&rs->resultthreadlist[i++], context))
3623 /* A thread found on the remote target. */
3627 explicit thread_item (ptid_t ptid_)
3631 thread_item (thread_item &&other) = default;
3632 thread_item &operator= (thread_item &&other) = default;
3634 DISABLE_COPY_AND_ASSIGN (thread_item);
3636 /* The thread's PTID. */
3639 /* The thread's extra info. */
3642 /* The thread's name. */
3645 /* The core the thread was running on. -1 if not known. */
3648 /* The thread handle associated with the thread. */
3649 gdb::byte_vector thread_handle;
3652 /* Context passed around to the various methods listing remote
3653 threads. As new threads are found, they're added to the ITEMS
3656 struct threads_listing_context
3658 /* Return true if this object contains an entry for a thread with ptid
3661 bool contains_thread (ptid_t ptid) const
3663 auto match_ptid = [&] (const thread_item &item)
3665 return item.ptid == ptid;
3668 auto it = std::find_if (this->items.begin (),
3672 return it != this->items.end ();
3675 /* Remove the thread with ptid PTID. */
3677 void remove_thread (ptid_t ptid)
3679 auto match_ptid = [&] (const thread_item &item)
3681 return item.ptid == ptid;
3684 auto it = std::remove_if (this->items.begin (),
3688 if (it != this->items.end ())
3689 this->items.erase (it);
3692 /* The threads found on the remote target. */
3693 std::vector<thread_item> items;
3697 remote_newthread_step (threadref *ref, void *data)
3699 struct threads_listing_context *context
3700 = (struct threads_listing_context *) data;
3701 int pid = inferior_ptid.pid ();
3702 int lwp = threadref_to_int (ref);
3703 ptid_t ptid (pid, lwp);
3705 context->items.emplace_back (ptid);
3707 return 1; /* continue iterator */
3710 #define CRAZY_MAX_THREADS 1000
3713 remote_target::remote_current_thread (ptid_t oldpid)
3715 struct remote_state *rs = get_remote_state ();
3718 getpkt (&rs->buf, 0);
3719 if (rs->buf[0] == 'Q' && rs->buf[1] == 'C')
3724 result = read_ptid (&rs->buf[2], &obuf);
3726 remote_debug_printf ("warning: garbage in qC reply");
3734 /* List remote threads using the deprecated qL packet. */
3737 remote_target::remote_get_threads_with_ql (threads_listing_context *context)
3739 if (remote_threadlist_iterator (remote_newthread_step, context,
3740 CRAZY_MAX_THREADS) >= 0)
3746 #if defined(HAVE_LIBEXPAT)
3749 start_thread (struct gdb_xml_parser *parser,
3750 const struct gdb_xml_element *element,
3752 std::vector<gdb_xml_value> &attributes)
3754 struct threads_listing_context *data
3755 = (struct threads_listing_context *) user_data;
3756 struct gdb_xml_value *attr;
3758 char *id = (char *) xml_find_attribute (attributes, "id")->value.get ();
3759 ptid_t ptid = read_ptid (id, NULL);
3761 data->items.emplace_back (ptid);
3762 thread_item &item = data->items.back ();
3764 attr = xml_find_attribute (attributes, "core");
3766 item.core = *(ULONGEST *) attr->value.get ();
3768 attr = xml_find_attribute (attributes, "name");
3770 item.name = (const char *) attr->value.get ();
3772 attr = xml_find_attribute (attributes, "handle");
3774 item.thread_handle = hex2bin ((const char *) attr->value.get ());
3778 end_thread (struct gdb_xml_parser *parser,
3779 const struct gdb_xml_element *element,
3780 void *user_data, const char *body_text)
3782 struct threads_listing_context *data
3783 = (struct threads_listing_context *) user_data;
3785 if (body_text != NULL && *body_text != '\0')
3786 data->items.back ().extra = body_text;
3789 const struct gdb_xml_attribute thread_attributes[] = {
3790 { "id", GDB_XML_AF_NONE, NULL, NULL },
3791 { "core", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
3792 { "name", GDB_XML_AF_OPTIONAL, NULL, NULL },
3793 { "handle", GDB_XML_AF_OPTIONAL, NULL, NULL },
3794 { NULL, GDB_XML_AF_NONE, NULL, NULL }
3797 const struct gdb_xml_element thread_children[] = {
3798 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3801 const struct gdb_xml_element threads_children[] = {
3802 { "thread", thread_attributes, thread_children,
3803 GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL,
3804 start_thread, end_thread },
3805 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3808 const struct gdb_xml_element threads_elements[] = {
3809 { "threads", NULL, threads_children,
3810 GDB_XML_EF_NONE, NULL, NULL },
3811 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3816 /* List remote threads using qXfer:threads:read. */
3819 remote_target::remote_get_threads_with_qxfer (threads_listing_context *context)
3821 #if defined(HAVE_LIBEXPAT)
3822 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
3824 gdb::optional<gdb::char_vector> xml
3825 = target_read_stralloc (this, TARGET_OBJECT_THREADS, NULL);
3827 if (xml && (*xml)[0] != '\0')
3829 gdb_xml_parse_quick (_("threads"), "threads.dtd",
3830 threads_elements, xml->data (), context);
3840 /* List remote threads using qfThreadInfo/qsThreadInfo. */
3843 remote_target::remote_get_threads_with_qthreadinfo (threads_listing_context *context)
3845 struct remote_state *rs = get_remote_state ();
3847 if (rs->use_threadinfo_query)
3851 putpkt ("qfThreadInfo");
3852 getpkt (&rs->buf, 0);
3853 bufp = rs->buf.data ();
3854 if (bufp[0] != '\0') /* q packet recognized */
3856 while (*bufp++ == 'm') /* reply contains one or more TID */
3860 ptid_t ptid = read_ptid (bufp, &bufp);
3861 context->items.emplace_back (ptid);
3863 while (*bufp++ == ','); /* comma-separated list */
3864 putpkt ("qsThreadInfo");
3865 getpkt (&rs->buf, 0);
3866 bufp = rs->buf.data ();
3872 /* Packet not recognized. */
3873 rs->use_threadinfo_query = 0;
3880 /* Return true if INF only has one non-exited thread. */
3883 has_single_non_exited_thread (inferior *inf)
3886 for (thread_info *tp ATTRIBUTE_UNUSED : inf->non_exited_threads ())
3892 /* Implement the to_update_thread_list function for the remote
3896 remote_target::update_thread_list ()
3898 struct threads_listing_context context;
3901 /* We have a few different mechanisms to fetch the thread list. Try
3902 them all, starting with the most preferred one first, falling
3903 back to older methods. */
3904 if (remote_get_threads_with_qxfer (&context)
3905 || remote_get_threads_with_qthreadinfo (&context)
3906 || remote_get_threads_with_ql (&context))
3910 if (context.items.empty ()
3911 && remote_thread_always_alive (inferior_ptid))
3913 /* Some targets don't really support threads, but still
3914 reply an (empty) thread list in response to the thread
3915 listing packets, instead of replying "packet not
3916 supported". Exit early so we don't delete the main
3921 /* CONTEXT now holds the current thread list on the remote
3922 target end. Delete GDB-side threads no longer found on the
3924 for (thread_info *tp : all_threads_safe ())
3926 if (tp->inf->process_target () != this)
3929 if (!context.contains_thread (tp->ptid))
3931 /* Do not remove the thread if it is the last thread in
3932 the inferior. This situation happens when we have a
3933 pending exit process status to process. Otherwise we
3934 may end up with a seemingly live inferior (i.e. pid
3935 != 0) that has no threads. */
3936 if (has_single_non_exited_thread (tp->inf))
3944 /* Remove any unreported fork child threads from CONTEXT so
3945 that we don't interfere with follow fork, which is where
3946 creation of such threads is handled. */
3947 remove_new_fork_children (&context);
3949 /* And now add threads we don't know about yet to our list. */
3950 for (thread_item &item : context.items)
3952 if (item.ptid != null_ptid)
3954 /* In non-stop mode, we assume new found threads are
3955 executing until proven otherwise with a stop reply.
3956 In all-stop, we can only get here if all threads are
3958 int executing = target_is_non_stop_p () ? 1 : 0;
3960 remote_notice_new_inferior (item.ptid, executing);
3962 thread_info *tp = find_thread_ptid (this, item.ptid);
3963 remote_thread_info *info = get_remote_thread_info (tp);
3964 info->core = item.core;
3965 info->extra = std::move (item.extra);
3966 info->name = std::move (item.name);
3967 info->thread_handle = std::move (item.thread_handle);
3974 /* If no thread listing method is supported, then query whether
3975 each known thread is alive, one by one, with the T packet.
3976 If the target doesn't support threads at all, then this is a
3977 no-op. See remote_thread_alive. */
3983 * Collect a descriptive string about the given thread.
3984 * The target may say anything it wants to about the thread
3985 * (typically info about its blocked / runnable state, name, etc.).
3986 * This string will appear in the info threads display.
3988 * Optional: targets are not required to implement this function.
3992 remote_target::extra_thread_info (thread_info *tp)
3994 struct remote_state *rs = get_remote_state ();
3997 struct gdb_ext_thread_info threadinfo;
3999 if (rs->remote_desc == 0) /* paranoia */
4000 internal_error (__FILE__, __LINE__,
4001 _("remote_threads_extra_info"));
4003 if (tp->ptid == magic_null_ptid
4004 || (tp->ptid.pid () != 0 && tp->ptid.lwp () == 0))
4005 /* This is the main thread which was added by GDB. The remote
4006 server doesn't know about it. */
4009 std::string &extra = get_remote_thread_info (tp)->extra;
4011 /* If already have cached info, use it. */
4012 if (!extra.empty ())
4013 return extra.c_str ();
4015 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
4017 /* If we're using qXfer:threads:read, then the extra info is
4018 included in the XML. So if we didn't have anything cached,
4019 it's because there's really no extra info. */
4023 if (rs->use_threadextra_query)
4025 char *b = rs->buf.data ();
4026 char *endb = b + get_remote_packet_size ();
4028 xsnprintf (b, endb - b, "qThreadExtraInfo,");
4030 write_ptid (b, endb, tp->ptid);
4033 getpkt (&rs->buf, 0);
4034 if (rs->buf[0] != 0)
4036 extra.resize (strlen (rs->buf.data ()) / 2);
4037 hex2bin (rs->buf.data (), (gdb_byte *) &extra[0], extra.size ());
4038 return extra.c_str ();
4042 /* If the above query fails, fall back to the old method. */
4043 rs->use_threadextra_query = 0;
4044 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
4045 | TAG_MOREDISPLAY | TAG_DISPLAY;
4046 int_to_threadref (&id, tp->ptid.lwp ());
4047 if (remote_get_threadinfo (&id, set, &threadinfo))
4048 if (threadinfo.active)
4050 if (*threadinfo.shortname)
4051 string_appendf (extra, " Name: %s", threadinfo.shortname);
4052 if (*threadinfo.display)
4054 if (!extra.empty ())
4056 string_appendf (extra, " State: %s", threadinfo.display);
4058 if (*threadinfo.more_display)
4060 if (!extra.empty ())
4062 string_appendf (extra, " Priority: %s", threadinfo.more_display);
4064 return extra.c_str ();
4071 remote_target::static_tracepoint_marker_at (CORE_ADDR addr,
4072 struct static_tracepoint_marker *marker)
4074 struct remote_state *rs = get_remote_state ();
4075 char *p = rs->buf.data ();
4077 xsnprintf (p, get_remote_packet_size (), "qTSTMat:");
4079 p += hexnumstr (p, addr);
4081 getpkt (&rs->buf, 0);
4082 p = rs->buf.data ();
4085 error (_("Remote failure reply: %s"), p);
4089 parse_static_tracepoint_marker_definition (p, NULL, marker);
4096 std::vector<static_tracepoint_marker>
4097 remote_target::static_tracepoint_markers_by_strid (const char *strid)
4099 struct remote_state *rs = get_remote_state ();
4100 std::vector<static_tracepoint_marker> markers;
4102 static_tracepoint_marker marker;
4104 /* Ask for a first packet of static tracepoint marker
4107 getpkt (&rs->buf, 0);
4108 p = rs->buf.data ();
4110 error (_("Remote failure reply: %s"), p);
4116 parse_static_tracepoint_marker_definition (p, &p, &marker);
4118 if (strid == NULL || marker.str_id == strid)
4119 markers.push_back (std::move (marker));
4121 while (*p++ == ','); /* comma-separated list */
4122 /* Ask for another packet of static tracepoint definition. */
4124 getpkt (&rs->buf, 0);
4125 p = rs->buf.data ();
4132 /* Implement the to_get_ada_task_ptid function for the remote targets. */
4135 remote_target::get_ada_task_ptid (long lwp, long thread)
4137 return ptid_t (inferior_ptid.pid (), lwp, 0);
4141 /* Restart the remote side; this is an extended protocol operation. */
4144 remote_target::extended_remote_restart ()
4146 struct remote_state *rs = get_remote_state ();
4148 /* Send the restart command; for reasons I don't understand the
4149 remote side really expects a number after the "R". */
4150 xsnprintf (rs->buf.data (), get_remote_packet_size (), "R%x", 0);
4153 remote_fileio_reset ();
4156 /* Clean up connection to a remote debugger. */
4159 remote_target::close ()
4161 /* Make sure we leave stdin registered in the event loop. */
4164 trace_reset_local_state ();
4169 remote_target::~remote_target ()
4171 struct remote_state *rs = get_remote_state ();
4173 /* Check for NULL because we may get here with a partially
4174 constructed target/connection. */
4175 if (rs->remote_desc == nullptr)
4178 serial_close (rs->remote_desc);
4180 /* We are destroying the remote target, so we should discard
4181 everything of this target. */
4182 discard_pending_stop_replies_in_queue ();
4184 if (rs->remote_async_inferior_event_token)
4185 delete_async_event_handler (&rs->remote_async_inferior_event_token);
4187 delete rs->notif_state;
4190 /* Query the remote side for the text, data and bss offsets. */
4193 remote_target::get_offsets ()
4195 struct remote_state *rs = get_remote_state ();
4198 int lose, num_segments = 0, do_sections, do_segments;
4199 CORE_ADDR text_addr, data_addr, bss_addr, segments[2];
4201 if (current_program_space->symfile_object_file == NULL)
4204 putpkt ("qOffsets");
4205 getpkt (&rs->buf, 0);
4206 buf = rs->buf.data ();
4208 if (buf[0] == '\000')
4209 return; /* Return silently. Stub doesn't support
4213 warning (_("Remote failure reply: %s"), buf);
4217 /* Pick up each field in turn. This used to be done with scanf, but
4218 scanf will make trouble if CORE_ADDR size doesn't match
4219 conversion directives correctly. The following code will work
4220 with any size of CORE_ADDR. */
4221 text_addr = data_addr = bss_addr = 0;
4225 if (startswith (ptr, "Text="))
4228 /* Don't use strtol, could lose on big values. */
4229 while (*ptr && *ptr != ';')
4230 text_addr = (text_addr << 4) + fromhex (*ptr++);
4232 if (startswith (ptr, ";Data="))
4235 while (*ptr && *ptr != ';')
4236 data_addr = (data_addr << 4) + fromhex (*ptr++);
4241 if (!lose && startswith (ptr, ";Bss="))
4244 while (*ptr && *ptr != ';')
4245 bss_addr = (bss_addr << 4) + fromhex (*ptr++);
4247 if (bss_addr != data_addr)
4248 warning (_("Target reported unsupported offsets: %s"), buf);
4253 else if (startswith (ptr, "TextSeg="))
4256 /* Don't use strtol, could lose on big values. */
4257 while (*ptr && *ptr != ';')
4258 text_addr = (text_addr << 4) + fromhex (*ptr++);
4261 if (startswith (ptr, ";DataSeg="))
4264 while (*ptr && *ptr != ';')
4265 data_addr = (data_addr << 4) + fromhex (*ptr++);
4273 error (_("Malformed response to offset query, %s"), buf);
4274 else if (*ptr != '\0')
4275 warning (_("Target reported unsupported offsets: %s"), buf);
4277 objfile *objf = current_program_space->symfile_object_file;
4278 section_offsets offs = objf->section_offsets;
4280 symfile_segment_data_up data = get_symfile_segment_data (objf->obfd);
4281 do_segments = (data != NULL);
4282 do_sections = num_segments == 0;
4284 if (num_segments > 0)
4286 segments[0] = text_addr;
4287 segments[1] = data_addr;
4289 /* If we have two segments, we can still try to relocate everything
4290 by assuming that the .text and .data offsets apply to the whole
4291 text and data segments. Convert the offsets given in the packet
4292 to base addresses for symfile_map_offsets_to_segments. */
4293 else if (data != nullptr && data->segments.size () == 2)
4295 segments[0] = data->segments[0].base + text_addr;
4296 segments[1] = data->segments[1].base + data_addr;
4299 /* If the object file has only one segment, assume that it is text
4300 rather than data; main programs with no writable data are rare,
4301 but programs with no code are useless. Of course the code might
4302 have ended up in the data segment... to detect that we would need
4303 the permissions here. */
4304 else if (data && data->segments.size () == 1)
4306 segments[0] = data->segments[0].base + text_addr;
4309 /* There's no way to relocate by segment. */
4315 int ret = symfile_map_offsets_to_segments (objf->obfd,
4317 num_segments, segments);
4319 if (ret == 0 && !do_sections)
4320 error (_("Can not handle qOffsets TextSeg "
4321 "response with this symbol file"));
4329 offs[SECT_OFF_TEXT (objf)] = text_addr;
4331 /* This is a temporary kludge to force data and bss to use the
4332 same offsets because that's what nlmconv does now. The real
4333 solution requires changes to the stub and remote.c that I
4334 don't have time to do right now. */
4336 offs[SECT_OFF_DATA (objf)] = data_addr;
4337 offs[SECT_OFF_BSS (objf)] = data_addr;
4340 objfile_relocate (objf, offs);
4343 /* Send interrupt_sequence to remote target. */
4346 remote_target::send_interrupt_sequence ()
4348 struct remote_state *rs = get_remote_state ();
4350 if (interrupt_sequence_mode == interrupt_sequence_control_c)
4351 remote_serial_write ("\x03", 1);
4352 else if (interrupt_sequence_mode == interrupt_sequence_break)
4353 serial_send_break (rs->remote_desc);
4354 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
4356 serial_send_break (rs->remote_desc);
4357 remote_serial_write ("g", 1);
4360 internal_error (__FILE__, __LINE__,
4361 _("Invalid value for interrupt_sequence_mode: %s."),
4362 interrupt_sequence_mode);
4366 /* If STOP_REPLY is a T stop reply, look for the "thread" register,
4367 and extract the PTID. Returns NULL_PTID if not found. */
4370 stop_reply_extract_thread (const char *stop_reply)
4372 if (stop_reply[0] == 'T' && strlen (stop_reply) > 3)
4376 /* Txx r:val ; r:val (...) */
4379 /* Look for "register" named "thread". */
4384 p1 = strchr (p, ':');
4388 if (strncmp (p, "thread", p1 - p) == 0)
4389 return read_ptid (++p1, &p);
4391 p1 = strchr (p, ';');
4403 /* Determine the remote side's current thread. If we have a stop
4404 reply handy (in WAIT_STATUS), maybe it's a T stop reply with a
4405 "thread" register we can extract the current thread from. If not,
4406 ask the remote which is the current thread with qC. The former
4407 method avoids a roundtrip. */
4410 remote_target::get_current_thread (const char *wait_status)
4412 ptid_t ptid = null_ptid;
4414 /* Note we don't use remote_parse_stop_reply as that makes use of
4415 the target architecture, which we haven't yet fully determined at
4417 if (wait_status != NULL)
4418 ptid = stop_reply_extract_thread (wait_status);
4419 if (ptid == null_ptid)
4420 ptid = remote_current_thread (inferior_ptid);
4425 /* Query the remote target for which is the current thread/process,
4426 add it to our tables, and update INFERIOR_PTID. The caller is
4427 responsible for setting the state such that the remote end is ready
4428 to return the current thread.
4430 This function is called after handling the '?' or 'vRun' packets,
4431 whose response is a stop reply from which we can also try
4432 extracting the thread. If the target doesn't support the explicit
4433 qC query, we infer the current thread from that stop reply, passed
4434 in in WAIT_STATUS, which may be NULL.
4436 The function returns pointer to the main thread of the inferior. */
4439 remote_target::add_current_inferior_and_thread (const char *wait_status)
4441 struct remote_state *rs = get_remote_state ();
4442 bool fake_pid_p = false;
4444 switch_to_no_thread ();
4446 /* Now, if we have thread information, update the current thread's
4448 ptid_t curr_ptid = get_current_thread (wait_status);
4450 if (curr_ptid != null_ptid)
4452 if (!remote_multi_process_p (rs))
4457 /* Without this, some commands which require an active target
4458 (such as kill) won't work. This variable serves (at least)
4459 double duty as both the pid of the target process (if it has
4460 such), and as a flag indicating that a target is active. */
4461 curr_ptid = magic_null_ptid;
4465 remote_add_inferior (fake_pid_p, curr_ptid.pid (), -1, 1);
4467 /* Add the main thread and switch to it. Don't try reading
4468 registers yet, since we haven't fetched the target description
4470 thread_info *tp = add_thread_silent (this, curr_ptid);
4471 switch_to_thread_no_regs (tp);
4476 /* Print info about a thread that was found already stopped on
4480 print_one_stopped_thread (struct thread_info *thread)
4482 struct target_waitstatus *ws = &thread->suspend.waitstatus;
4484 switch_to_thread (thread);
4485 thread->suspend.stop_pc = get_frame_pc (get_current_frame ());
4486 set_current_sal_from_frame (get_current_frame ());
4488 thread->suspend.waitstatus_pending_p = 0;
4490 if (ws->kind == TARGET_WAITKIND_STOPPED)
4492 enum gdb_signal sig = ws->value.sig;
4494 if (signal_print_state (sig))
4495 gdb::observers::signal_received.notify (sig);
4497 gdb::observers::normal_stop.notify (NULL, 1);
4500 /* Process all initial stop replies the remote side sent in response
4501 to the ? packet. These indicate threads that were already stopped
4502 on initial connection. We mark these threads as stopped and print
4503 their current frame before giving the user the prompt. */
4506 remote_target::process_initial_stop_replies (int from_tty)
4508 int pending_stop_replies = stop_reply_queue_length ();
4509 struct thread_info *selected = NULL;
4510 struct thread_info *lowest_stopped = NULL;
4511 struct thread_info *first = NULL;
4513 /* Consume the initial pending events. */
4514 while (pending_stop_replies-- > 0)
4516 ptid_t waiton_ptid = minus_one_ptid;
4518 struct target_waitstatus ws;
4519 int ignore_event = 0;
4521 memset (&ws, 0, sizeof (ws));
4522 event_ptid = target_wait (waiton_ptid, &ws, TARGET_WNOHANG);
4524 print_target_wait_results (waiton_ptid, event_ptid, &ws);
4528 case TARGET_WAITKIND_IGNORE:
4529 case TARGET_WAITKIND_NO_RESUMED:
4530 case TARGET_WAITKIND_SIGNALLED:
4531 case TARGET_WAITKIND_EXITED:
4532 /* We shouldn't see these, but if we do, just ignore. */
4533 remote_debug_printf ("event ignored");
4537 case TARGET_WAITKIND_EXECD:
4538 xfree (ws.value.execd_pathname);
4547 thread_info *evthread = find_thread_ptid (this, event_ptid);
4549 if (ws.kind == TARGET_WAITKIND_STOPPED)
4551 enum gdb_signal sig = ws.value.sig;
4553 /* Stubs traditionally report SIGTRAP as initial signal,
4554 instead of signal 0. Suppress it. */
4555 if (sig == GDB_SIGNAL_TRAP)
4557 evthread->suspend.stop_signal = sig;
4561 evthread->suspend.waitstatus = ws;
4563 if (ws.kind != TARGET_WAITKIND_STOPPED
4564 || ws.value.sig != GDB_SIGNAL_0)
4565 evthread->suspend.waitstatus_pending_p = 1;
4567 set_executing (this, event_ptid, false);
4568 set_running (this, event_ptid, false);
4569 get_remote_thread_info (evthread)->set_not_resumed ();
4572 /* "Notice" the new inferiors before anything related to
4573 registers/memory. */
4574 for (inferior *inf : all_non_exited_inferiors (this))
4576 inf->needs_setup = 1;
4580 thread_info *thread = any_live_thread_of_inferior (inf);
4581 notice_new_inferior (thread, thread->state == THREAD_RUNNING,
4586 /* If all-stop on top of non-stop, pause all threads. Note this
4587 records the threads' stop pc, so must be done after "noticing"
4591 stop_all_threads ();
4593 /* If all threads of an inferior were already stopped, we
4594 haven't setup the inferior yet. */
4595 for (inferior *inf : all_non_exited_inferiors (this))
4597 if (inf->needs_setup)
4599 thread_info *thread = any_live_thread_of_inferior (inf);
4600 switch_to_thread_no_regs (thread);
4606 /* Now go over all threads that are stopped, and print their current
4607 frame. If all-stop, then if there's a signalled thread, pick
4609 for (thread_info *thread : all_non_exited_threads (this))
4615 thread->set_running (false);
4616 else if (thread->state != THREAD_STOPPED)
4619 if (selected == NULL
4620 && thread->suspend.waitstatus_pending_p)
4623 if (lowest_stopped == NULL
4624 || thread->inf->num < lowest_stopped->inf->num
4625 || thread->per_inf_num < lowest_stopped->per_inf_num)
4626 lowest_stopped = thread;
4629 print_one_stopped_thread (thread);
4632 /* In all-stop, we only print the status of one thread, and leave
4633 others with their status pending. */
4636 thread_info *thread = selected;
4638 thread = lowest_stopped;
4642 print_one_stopped_thread (thread);
4645 /* For "info program". */
4646 thread_info *thread = inferior_thread ();
4647 if (thread->state == THREAD_STOPPED)
4648 set_last_target_status (this, inferior_ptid, thread->suspend.waitstatus);
4651 /* Start the remote connection and sync state. */
4654 remote_target::start_remote (int from_tty, int extended_p)
4656 REMOTE_SCOPED_DEBUG_ENTER_EXIT;
4658 struct remote_state *rs = get_remote_state ();
4659 struct packet_config *noack_config;
4661 /* Signal other parts that we're going through the initial setup,
4662 and so things may not be stable yet. E.g., we don't try to
4663 install tracepoints until we've relocated symbols. Also, a
4664 Ctrl-C before we're connected and synced up can't interrupt the
4665 target. Instead, it offers to drop the (potentially wedged)
4667 rs->starting_up = 1;
4671 if (interrupt_on_connect)
4672 send_interrupt_sequence ();
4674 /* Ack any packet which the remote side has already sent. */
4675 remote_serial_write ("+", 1);
4677 /* The first packet we send to the target is the optional "supported
4678 packets" request. If the target can answer this, it will tell us
4679 which later probes to skip. */
4680 remote_query_supported ();
4682 /* If the stub wants to get a QAllow, compose one and send it. */
4683 if (packet_support (PACKET_QAllow) != PACKET_DISABLE)
4686 /* gdbserver < 7.7 (before its fix from 2013-12-11) did reply to any
4687 unknown 'v' packet with string "OK". "OK" gets interpreted by GDB
4688 as a reply to known packet. For packet "vFile:setfs:" it is an
4689 invalid reply and GDB would return error in
4690 remote_hostio_set_filesystem, making remote files access impossible.
4691 Disable "vFile:setfs:" in such case. Do not disable other 'v' packets as
4692 other "vFile" packets get correctly detected even on gdbserver < 7.7. */
4694 const char v_mustreplyempty[] = "vMustReplyEmpty";
4696 putpkt (v_mustreplyempty);
4697 getpkt (&rs->buf, 0);
4698 if (strcmp (rs->buf.data (), "OK") == 0)
4699 remote_protocol_packets[PACKET_vFile_setfs].support = PACKET_DISABLE;
4700 else if (strcmp (rs->buf.data (), "") != 0)
4701 error (_("Remote replied unexpectedly to '%s': %s"), v_mustreplyempty,
4705 /* Next, we possibly activate noack mode.
4707 If the QStartNoAckMode packet configuration is set to AUTO,
4708 enable noack mode if the stub reported a wish for it with
4711 If set to TRUE, then enable noack mode even if the stub didn't
4712 report it in qSupported. If the stub doesn't reply OK, the
4713 session ends with an error.
4715 If FALSE, then don't activate noack mode, regardless of what the
4716 stub claimed should be the default with qSupported. */
4718 noack_config = &remote_protocol_packets[PACKET_QStartNoAckMode];
4719 if (packet_config_support (noack_config) != PACKET_DISABLE)
4721 putpkt ("QStartNoAckMode");
4722 getpkt (&rs->buf, 0);
4723 if (packet_ok (rs->buf, noack_config) == PACKET_OK)
4729 /* Tell the remote that we are using the extended protocol. */
4731 getpkt (&rs->buf, 0);
4734 /* Let the target know which signals it is allowed to pass down to
4736 update_signals_program_target ();
4738 /* Next, if the target can specify a description, read it. We do
4739 this before anything involving memory or registers. */
4740 target_find_description ();
4742 /* Next, now that we know something about the target, update the
4743 address spaces in the program spaces. */
4744 update_address_spaces ();
4746 /* On OSs where the list of libraries is global to all
4747 processes, we fetch them early. */
4748 if (gdbarch_has_global_solist (target_gdbarch ()))
4749 solib_add (NULL, from_tty, auto_solib_add);
4751 if (target_is_non_stop_p ())
4753 if (packet_support (PACKET_QNonStop) != PACKET_ENABLE)
4754 error (_("Non-stop mode requested, but remote "
4755 "does not support non-stop"));
4757 putpkt ("QNonStop:1");
4758 getpkt (&rs->buf, 0);
4760 if (strcmp (rs->buf.data (), "OK") != 0)
4761 error (_("Remote refused setting non-stop mode with: %s"),
4764 /* Find about threads and processes the stub is already
4765 controlling. We default to adding them in the running state.
4766 The '?' query below will then tell us about which threads are
4768 this->update_thread_list ();
4770 else if (packet_support (PACKET_QNonStop) == PACKET_ENABLE)
4772 /* Don't assume that the stub can operate in all-stop mode.
4773 Request it explicitly. */
4774 putpkt ("QNonStop:0");
4775 getpkt (&rs->buf, 0);
4777 if (strcmp (rs->buf.data (), "OK") != 0)
4778 error (_("Remote refused setting all-stop mode with: %s"),
4782 /* Upload TSVs regardless of whether the target is running or not. The
4783 remote stub, such as GDBserver, may have some predefined or builtin
4784 TSVs, even if the target is not running. */
4785 if (get_trace_status (current_trace_status ()) != -1)
4787 struct uploaded_tsv *uploaded_tsvs = NULL;
4789 upload_trace_state_variables (&uploaded_tsvs);
4790 merge_uploaded_trace_state_variables (&uploaded_tsvs);
4793 /* Check whether the target is running now. */
4795 getpkt (&rs->buf, 0);
4797 if (!target_is_non_stop_p ())
4799 char *wait_status = NULL;
4801 if (rs->buf[0] == 'W' || rs->buf[0] == 'X')
4804 error (_("The target is not running (try extended-remote?)"));
4806 /* We're connected, but not running. Drop out before we
4807 call start_remote. */
4808 rs->starting_up = 0;
4813 /* Save the reply for later. */
4814 wait_status = (char *) alloca (strlen (rs->buf.data ()) + 1);
4815 strcpy (wait_status, rs->buf.data ());
4818 /* Fetch thread list. */
4819 target_update_thread_list ();
4821 /* Let the stub know that we want it to return the thread. */
4822 set_continue_thread (minus_one_ptid);
4824 if (thread_count (this) == 0)
4826 /* Target has no concept of threads at all. GDB treats
4827 non-threaded target as single-threaded; add a main
4829 thread_info *tp = add_current_inferior_and_thread (wait_status);
4830 get_remote_thread_info (tp)->set_resumed ();
4834 /* We have thread information; select the thread the target
4835 says should be current. If we're reconnecting to a
4836 multi-threaded program, this will ideally be the thread
4837 that last reported an event before GDB disconnected. */
4838 ptid_t curr_thread = get_current_thread (wait_status);
4839 if (curr_thread == null_ptid)
4841 /* Odd... The target was able to list threads, but not
4842 tell us which thread was current (no "thread"
4843 register in T stop reply?). Just pick the first
4844 thread in the thread list then. */
4846 remote_debug_printf ("warning: couldn't determine remote "
4847 "current thread; picking first in list.");
4849 for (thread_info *tp : all_non_exited_threads (this,
4852 switch_to_thread (tp);
4857 switch_to_thread (find_thread_ptid (this, curr_thread));
4860 /* init_wait_for_inferior should be called before get_offsets in order
4861 to manage `inserted' flag in bp loc in a correct state.
4862 breakpoint_init_inferior, called from init_wait_for_inferior, set
4863 `inserted' flag to 0, while before breakpoint_re_set, called from
4864 start_remote, set `inserted' flag to 1. In the initialization of
4865 inferior, breakpoint_init_inferior should be called first, and then
4866 breakpoint_re_set can be called. If this order is broken, state of
4867 `inserted' flag is wrong, and cause some problems on breakpoint
4869 init_wait_for_inferior ();
4871 get_offsets (); /* Get text, data & bss offsets. */
4873 /* If we could not find a description using qXfer, and we know
4874 how to do it some other way, try again. This is not
4875 supported for non-stop; it could be, but it is tricky if
4876 there are no stopped threads when we connect. */
4877 if (remote_read_description_p (this)
4878 && gdbarch_target_desc (target_gdbarch ()) == NULL)
4880 target_clear_description ();
4881 target_find_description ();
4884 /* Use the previously fetched status. */
4885 gdb_assert (wait_status != NULL);
4886 strcpy (rs->buf.data (), wait_status);
4887 rs->cached_wait_status = 1;
4889 ::start_remote (from_tty); /* Initialize gdb process mechanisms. */
4893 /* Clear WFI global state. Do this before finding about new
4894 threads and inferiors, and setting the current inferior.
4895 Otherwise we would clear the proceed status of the current
4896 inferior when we want its stop_soon state to be preserved
4897 (see notice_new_inferior). */
4898 init_wait_for_inferior ();
4900 /* In non-stop, we will either get an "OK", meaning that there
4901 are no stopped threads at this time; or, a regular stop
4902 reply. In the latter case, there may be more than one thread
4903 stopped --- we pull them all out using the vStopped
4905 if (strcmp (rs->buf.data (), "OK") != 0)
4907 struct notif_client *notif = ¬if_client_stop;
4909 /* remote_notif_get_pending_replies acks this one, and gets
4911 rs->notif_state->pending_event[notif_client_stop.id]
4912 = remote_notif_parse (this, notif, rs->buf.data ());
4913 remote_notif_get_pending_events (notif);
4916 if (thread_count (this) == 0)
4919 error (_("The target is not running (try extended-remote?)"));
4921 /* We're connected, but not running. Drop out before we
4922 call start_remote. */
4923 rs->starting_up = 0;
4927 /* Report all signals during attach/startup. */
4930 /* If there are already stopped threads, mark them stopped and
4931 report their stops before giving the prompt to the user. */
4932 process_initial_stop_replies (from_tty);
4934 if (target_can_async_p ())
4938 /* If we connected to a live target, do some additional setup. */
4939 if (target_has_execution ())
4941 /* No use without a symbol-file. */
4942 if (current_program_space->symfile_object_file)
4943 remote_check_symbols ();
4946 /* Possibly the target has been engaged in a trace run started
4947 previously; find out where things are at. */
4948 if (get_trace_status (current_trace_status ()) != -1)
4950 struct uploaded_tp *uploaded_tps = NULL;
4952 if (current_trace_status ()->running)
4953 printf_filtered (_("Trace is already running on the target.\n"));
4955 upload_tracepoints (&uploaded_tps);
4957 merge_uploaded_tracepoints (&uploaded_tps);
4960 /* Possibly the target has been engaged in a btrace record started
4961 previously; find out where things are at. */
4962 remote_btrace_maybe_reopen ();
4964 /* The thread and inferior lists are now synchronized with the
4965 target, our symbols have been relocated, and we're merged the
4966 target's tracepoints with ours. We're done with basic start
4968 rs->starting_up = 0;
4970 /* Maybe breakpoints are global and need to be inserted now. */
4971 if (breakpoints_should_be_inserted_now ())
4972 insert_breakpoints ();
4976 remote_target::connection_string ()
4978 remote_state *rs = get_remote_state ();
4980 if (rs->remote_desc->name != NULL)
4981 return rs->remote_desc->name;
4986 /* Open a connection to a remote debugger.
4987 NAME is the filename used for communication. */
4990 remote_target::open (const char *name, int from_tty)
4992 open_1 (name, from_tty, 0);
4995 /* Open a connection to a remote debugger using the extended
4996 remote gdb protocol. NAME is the filename used for communication. */
4999 extended_remote_target::open (const char *name, int from_tty)
5001 open_1 (name, from_tty, 1 /*extended_p */);
5004 /* Reset all packets back to "unknown support". Called when opening a
5005 new connection to a remote target. */
5008 reset_all_packet_configs_support (void)
5012 for (i = 0; i < PACKET_MAX; i++)
5013 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
5016 /* Initialize all packet configs. */
5019 init_all_packet_configs (void)
5023 for (i = 0; i < PACKET_MAX; i++)
5025 remote_protocol_packets[i].detect = AUTO_BOOLEAN_AUTO;
5026 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
5030 /* Symbol look-up. */
5033 remote_target::remote_check_symbols ()
5038 /* The remote side has no concept of inferiors that aren't running
5039 yet, it only knows about running processes. If we're connected
5040 but our current inferior is not running, we should not invite the
5041 remote target to request symbol lookups related to its
5042 (unrelated) current process. */
5043 if (!target_has_execution ())
5046 if (packet_support (PACKET_qSymbol) == PACKET_DISABLE)
5049 /* Make sure the remote is pointing at the right process. Note
5050 there's no way to select "no process". */
5051 set_general_process ();
5053 /* Allocate a message buffer. We can't reuse the input buffer in RS,
5054 because we need both at the same time. */
5055 gdb::char_vector msg (get_remote_packet_size ());
5056 gdb::char_vector reply (get_remote_packet_size ());
5058 /* Invite target to request symbol lookups. */
5060 putpkt ("qSymbol::");
5062 packet_ok (reply, &remote_protocol_packets[PACKET_qSymbol]);
5064 while (startswith (reply.data (), "qSymbol:"))
5066 struct bound_minimal_symbol sym;
5069 end = hex2bin (tmp, reinterpret_cast <gdb_byte *> (msg.data ()),
5072 sym = lookup_minimal_symbol (msg.data (), NULL, NULL);
5073 if (sym.minsym == NULL)
5074 xsnprintf (msg.data (), get_remote_packet_size (), "qSymbol::%s",
5078 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
5079 CORE_ADDR sym_addr = BMSYMBOL_VALUE_ADDRESS (sym);
5081 /* If this is a function address, return the start of code
5082 instead of any data function descriptor. */
5083 sym_addr = gdbarch_convert_from_func_ptr_addr
5084 (target_gdbarch (), sym_addr, current_inferior ()->top_target ());
5086 xsnprintf (msg.data (), get_remote_packet_size (), "qSymbol:%s:%s",
5087 phex_nz (sym_addr, addr_size), &reply[8]);
5090 putpkt (msg.data ());
5095 static struct serial *
5096 remote_serial_open (const char *name)
5098 static int udp_warning = 0;
5100 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
5101 of in ser-tcp.c, because it is the remote protocol assuming that the
5102 serial connection is reliable and not the serial connection promising
5104 if (!udp_warning && startswith (name, "udp:"))
5106 warning (_("The remote protocol may be unreliable over UDP.\n"
5107 "Some events may be lost, rendering further debugging "
5112 return serial_open (name);
5115 /* Inform the target of our permission settings. The permission flags
5116 work without this, but if the target knows the settings, it can do
5117 a couple things. First, it can add its own check, to catch cases
5118 that somehow manage to get by the permissions checks in target
5119 methods. Second, if the target is wired to disallow particular
5120 settings (for instance, a system in the field that is not set up to
5121 be able to stop at a breakpoint), it can object to any unavailable
5125 remote_target::set_permissions ()
5127 struct remote_state *rs = get_remote_state ();
5129 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QAllow:"
5130 "WriteReg:%x;WriteMem:%x;"
5131 "InsertBreak:%x;InsertTrace:%x;"
5132 "InsertFastTrace:%x;Stop:%x",
5133 may_write_registers, may_write_memory,
5134 may_insert_breakpoints, may_insert_tracepoints,
5135 may_insert_fast_tracepoints, may_stop);
5137 getpkt (&rs->buf, 0);
5139 /* If the target didn't like the packet, warn the user. Do not try
5140 to undo the user's settings, that would just be maddening. */
5141 if (strcmp (rs->buf.data (), "OK") != 0)
5142 warning (_("Remote refused setting permissions with: %s"),
5146 /* This type describes each known response to the qSupported
5148 struct protocol_feature
5150 /* The name of this protocol feature. */
5153 /* The default for this protocol feature. */
5154 enum packet_support default_support;
5156 /* The function to call when this feature is reported, or after
5157 qSupported processing if the feature is not supported.
5158 The first argument points to this structure. The second
5159 argument indicates whether the packet requested support be
5160 enabled, disabled, or probed (or the default, if this function
5161 is being called at the end of processing and this feature was
5162 not reported). The third argument may be NULL; if not NULL, it
5163 is a NUL-terminated string taken from the packet following
5164 this feature's name and an equals sign. */
5165 void (*func) (remote_target *remote, const struct protocol_feature *,
5166 enum packet_support, const char *);
5168 /* The corresponding packet for this feature. Only used if
5169 FUNC is remote_supported_packet. */
5174 remote_supported_packet (remote_target *remote,
5175 const struct protocol_feature *feature,
5176 enum packet_support support,
5177 const char *argument)
5181 warning (_("Remote qSupported response supplied an unexpected value for"
5182 " \"%s\"."), feature->name);
5186 remote_protocol_packets[feature->packet].support = support;
5190 remote_target::remote_packet_size (const protocol_feature *feature,
5191 enum packet_support support, const char *value)
5193 struct remote_state *rs = get_remote_state ();
5198 if (support != PACKET_ENABLE)
5201 if (value == NULL || *value == '\0')
5203 warning (_("Remote target reported \"%s\" without a size."),
5209 packet_size = strtol (value, &value_end, 16);
5210 if (errno != 0 || *value_end != '\0' || packet_size < 0)
5212 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
5213 feature->name, value);
5217 /* Record the new maximum packet size. */
5218 rs->explicit_packet_size = packet_size;
5222 remote_packet_size (remote_target *remote, const protocol_feature *feature,
5223 enum packet_support support, const char *value)
5225 remote->remote_packet_size (feature, support, value);
5228 static const struct protocol_feature remote_protocol_features[] = {
5229 { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 },
5230 { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet,
5231 PACKET_qXfer_auxv },
5232 { "qXfer:exec-file:read", PACKET_DISABLE, remote_supported_packet,
5233 PACKET_qXfer_exec_file },
5234 { "qXfer:features:read", PACKET_DISABLE, remote_supported_packet,
5235 PACKET_qXfer_features },
5236 { "qXfer:libraries:read", PACKET_DISABLE, remote_supported_packet,
5237 PACKET_qXfer_libraries },
5238 { "qXfer:libraries-svr4:read", PACKET_DISABLE, remote_supported_packet,
5239 PACKET_qXfer_libraries_svr4 },
5240 { "augmented-libraries-svr4-read", PACKET_DISABLE,
5241 remote_supported_packet, PACKET_augmented_libraries_svr4_read_feature },
5242 { "qXfer:memory-map:read", PACKET_DISABLE, remote_supported_packet,
5243 PACKET_qXfer_memory_map },
5244 { "qXfer:osdata:read", PACKET_DISABLE, remote_supported_packet,
5245 PACKET_qXfer_osdata },
5246 { "qXfer:threads:read", PACKET_DISABLE, remote_supported_packet,
5247 PACKET_qXfer_threads },
5248 { "qXfer:traceframe-info:read", PACKET_DISABLE, remote_supported_packet,
5249 PACKET_qXfer_traceframe_info },
5250 { "QPassSignals", PACKET_DISABLE, remote_supported_packet,
5251 PACKET_QPassSignals },
5252 { "QCatchSyscalls", PACKET_DISABLE, remote_supported_packet,
5253 PACKET_QCatchSyscalls },
5254 { "QProgramSignals", PACKET_DISABLE, remote_supported_packet,
5255 PACKET_QProgramSignals },
5256 { "QSetWorkingDir", PACKET_DISABLE, remote_supported_packet,
5257 PACKET_QSetWorkingDir },
5258 { "QStartupWithShell", PACKET_DISABLE, remote_supported_packet,
5259 PACKET_QStartupWithShell },
5260 { "QEnvironmentHexEncoded", PACKET_DISABLE, remote_supported_packet,
5261 PACKET_QEnvironmentHexEncoded },
5262 { "QEnvironmentReset", PACKET_DISABLE, remote_supported_packet,
5263 PACKET_QEnvironmentReset },
5264 { "QEnvironmentUnset", PACKET_DISABLE, remote_supported_packet,
5265 PACKET_QEnvironmentUnset },
5266 { "QStartNoAckMode", PACKET_DISABLE, remote_supported_packet,
5267 PACKET_QStartNoAckMode },
5268 { "multiprocess", PACKET_DISABLE, remote_supported_packet,
5269 PACKET_multiprocess_feature },
5270 { "QNonStop", PACKET_DISABLE, remote_supported_packet, PACKET_QNonStop },
5271 { "qXfer:siginfo:read", PACKET_DISABLE, remote_supported_packet,
5272 PACKET_qXfer_siginfo_read },
5273 { "qXfer:siginfo:write", PACKET_DISABLE, remote_supported_packet,
5274 PACKET_qXfer_siginfo_write },
5275 { "ConditionalTracepoints", PACKET_DISABLE, remote_supported_packet,
5276 PACKET_ConditionalTracepoints },
5277 { "ConditionalBreakpoints", PACKET_DISABLE, remote_supported_packet,
5278 PACKET_ConditionalBreakpoints },
5279 { "BreakpointCommands", PACKET_DISABLE, remote_supported_packet,
5280 PACKET_BreakpointCommands },
5281 { "FastTracepoints", PACKET_DISABLE, remote_supported_packet,
5282 PACKET_FastTracepoints },
5283 { "StaticTracepoints", PACKET_DISABLE, remote_supported_packet,
5284 PACKET_StaticTracepoints },
5285 {"InstallInTrace", PACKET_DISABLE, remote_supported_packet,
5286 PACKET_InstallInTrace},
5287 { "DisconnectedTracing", PACKET_DISABLE, remote_supported_packet,
5288 PACKET_DisconnectedTracing_feature },
5289 { "ReverseContinue", PACKET_DISABLE, remote_supported_packet,
5291 { "ReverseStep", PACKET_DISABLE, remote_supported_packet,
5293 { "TracepointSource", PACKET_DISABLE, remote_supported_packet,
5294 PACKET_TracepointSource },
5295 { "QAllow", PACKET_DISABLE, remote_supported_packet,
5297 { "EnableDisableTracepoints", PACKET_DISABLE, remote_supported_packet,
5298 PACKET_EnableDisableTracepoints_feature },
5299 { "qXfer:fdpic:read", PACKET_DISABLE, remote_supported_packet,
5300 PACKET_qXfer_fdpic },
5301 { "qXfer:uib:read", PACKET_DISABLE, remote_supported_packet,
5303 { "QDisableRandomization", PACKET_DISABLE, remote_supported_packet,
5304 PACKET_QDisableRandomization },
5305 { "QAgent", PACKET_DISABLE, remote_supported_packet, PACKET_QAgent},
5306 { "QTBuffer:size", PACKET_DISABLE,
5307 remote_supported_packet, PACKET_QTBuffer_size},
5308 { "tracenz", PACKET_DISABLE, remote_supported_packet, PACKET_tracenz_feature },
5309 { "Qbtrace:off", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_off },
5310 { "Qbtrace:bts", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_bts },
5311 { "Qbtrace:pt", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_pt },
5312 { "qXfer:btrace:read", PACKET_DISABLE, remote_supported_packet,
5313 PACKET_qXfer_btrace },
5314 { "qXfer:btrace-conf:read", PACKET_DISABLE, remote_supported_packet,
5315 PACKET_qXfer_btrace_conf },
5316 { "Qbtrace-conf:bts:size", PACKET_DISABLE, remote_supported_packet,
5317 PACKET_Qbtrace_conf_bts_size },
5318 { "swbreak", PACKET_DISABLE, remote_supported_packet, PACKET_swbreak_feature },
5319 { "hwbreak", PACKET_DISABLE, remote_supported_packet, PACKET_hwbreak_feature },
5320 { "fork-events", PACKET_DISABLE, remote_supported_packet,
5321 PACKET_fork_event_feature },
5322 { "vfork-events", PACKET_DISABLE, remote_supported_packet,
5323 PACKET_vfork_event_feature },
5324 { "exec-events", PACKET_DISABLE, remote_supported_packet,
5325 PACKET_exec_event_feature },
5326 { "Qbtrace-conf:pt:size", PACKET_DISABLE, remote_supported_packet,
5327 PACKET_Qbtrace_conf_pt_size },
5328 { "vContSupported", PACKET_DISABLE, remote_supported_packet, PACKET_vContSupported },
5329 { "QThreadEvents", PACKET_DISABLE, remote_supported_packet, PACKET_QThreadEvents },
5330 { "no-resumed", PACKET_DISABLE, remote_supported_packet, PACKET_no_resumed },
5331 { "memory-tagging", PACKET_DISABLE, remote_supported_packet,
5332 PACKET_memory_tagging_feature },
5335 static char *remote_support_xml;
5337 /* Register string appended to "xmlRegisters=" in qSupported query. */
5340 register_remote_support_xml (const char *xml)
5342 #if defined(HAVE_LIBEXPAT)
5343 if (remote_support_xml == NULL)
5344 remote_support_xml = concat ("xmlRegisters=", xml, (char *) NULL);
5347 char *copy = xstrdup (remote_support_xml + 13);
5349 char *p = strtok_r (copy, ",", &saveptr);
5353 if (strcmp (p, xml) == 0)
5360 while ((p = strtok_r (NULL, ",", &saveptr)) != NULL);
5363 remote_support_xml = reconcat (remote_support_xml,
5364 remote_support_xml, ",", xml,
5371 remote_query_supported_append (std::string *msg, const char *append)
5375 msg->append (append);
5379 remote_target::remote_query_supported ()
5381 struct remote_state *rs = get_remote_state ();
5384 unsigned char seen [ARRAY_SIZE (remote_protocol_features)];
5386 /* The packet support flags are handled differently for this packet
5387 than for most others. We treat an error, a disabled packet, and
5388 an empty response identically: any features which must be reported
5389 to be used will be automatically disabled. An empty buffer
5390 accomplishes this, since that is also the representation for a list
5391 containing no features. */
5394 if (packet_support (PACKET_qSupported) != PACKET_DISABLE)
5398 if (packet_set_cmd_state (PACKET_multiprocess_feature) != AUTO_BOOLEAN_FALSE)
5399 remote_query_supported_append (&q, "multiprocess+");
5401 if (packet_set_cmd_state (PACKET_swbreak_feature) != AUTO_BOOLEAN_FALSE)
5402 remote_query_supported_append (&q, "swbreak+");
5403 if (packet_set_cmd_state (PACKET_hwbreak_feature) != AUTO_BOOLEAN_FALSE)
5404 remote_query_supported_append (&q, "hwbreak+");
5406 remote_query_supported_append (&q, "qRelocInsn+");
5408 if (packet_set_cmd_state (PACKET_fork_event_feature)
5409 != AUTO_BOOLEAN_FALSE)
5410 remote_query_supported_append (&q, "fork-events+");
5411 if (packet_set_cmd_state (PACKET_vfork_event_feature)
5412 != AUTO_BOOLEAN_FALSE)
5413 remote_query_supported_append (&q, "vfork-events+");
5414 if (packet_set_cmd_state (PACKET_exec_event_feature)
5415 != AUTO_BOOLEAN_FALSE)
5416 remote_query_supported_append (&q, "exec-events+");
5418 if (packet_set_cmd_state (PACKET_vContSupported) != AUTO_BOOLEAN_FALSE)
5419 remote_query_supported_append (&q, "vContSupported+");
5421 if (packet_set_cmd_state (PACKET_QThreadEvents) != AUTO_BOOLEAN_FALSE)
5422 remote_query_supported_append (&q, "QThreadEvents+");
5424 if (packet_set_cmd_state (PACKET_no_resumed) != AUTO_BOOLEAN_FALSE)
5425 remote_query_supported_append (&q, "no-resumed+");
5427 if (packet_set_cmd_state (PACKET_memory_tagging_feature)
5428 != AUTO_BOOLEAN_FALSE)
5429 remote_query_supported_append (&q, "memory-tagging+");
5431 /* Keep this one last to work around a gdbserver <= 7.10 bug in
5432 the qSupported:xmlRegisters=i386 handling. */
5433 if (remote_support_xml != NULL
5434 && packet_support (PACKET_qXfer_features) != PACKET_DISABLE)
5435 remote_query_supported_append (&q, remote_support_xml);
5437 q = "qSupported:" + q;
5438 putpkt (q.c_str ());
5440 getpkt (&rs->buf, 0);
5442 /* If an error occured, warn, but do not return - just reset the
5443 buffer to empty and go on to disable features. */
5444 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported])
5447 warning (_("Remote failure reply: %s"), rs->buf.data ());
5452 memset (seen, 0, sizeof (seen));
5454 next = rs->buf.data ();
5457 enum packet_support is_supported;
5458 char *p, *end, *name_end, *value;
5460 /* First separate out this item from the rest of the packet. If
5461 there's another item after this, we overwrite the separator
5462 (terminated strings are much easier to work with). */
5464 end = strchr (p, ';');
5467 end = p + strlen (p);
5477 warning (_("empty item in \"qSupported\" response"));
5482 name_end = strchr (p, '=');
5485 /* This is a name=value entry. */
5486 is_supported = PACKET_ENABLE;
5487 value = name_end + 1;
5496 is_supported = PACKET_ENABLE;
5500 is_supported = PACKET_DISABLE;
5504 is_supported = PACKET_SUPPORT_UNKNOWN;
5508 warning (_("unrecognized item \"%s\" "
5509 "in \"qSupported\" response"), p);
5515 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
5516 if (strcmp (remote_protocol_features[i].name, p) == 0)
5518 const struct protocol_feature *feature;
5521 feature = &remote_protocol_features[i];
5522 feature->func (this, feature, is_supported, value);
5527 /* If we increased the packet size, make sure to increase the global
5528 buffer size also. We delay this until after parsing the entire
5529 qSupported packet, because this is the same buffer we were
5531 if (rs->buf.size () < rs->explicit_packet_size)
5532 rs->buf.resize (rs->explicit_packet_size);
5534 /* Handle the defaults for unmentioned features. */
5535 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
5538 const struct protocol_feature *feature;
5540 feature = &remote_protocol_features[i];
5541 feature->func (this, feature, feature->default_support, NULL);
5545 /* Serial QUIT handler for the remote serial descriptor.
5547 Defers handling a Ctrl-C until we're done with the current
5548 command/response packet sequence, unless:
5550 - We're setting up the connection. Don't send a remote interrupt
5551 request, as we're not fully synced yet. Quit immediately
5554 - The target has been resumed in the foreground
5555 (target_terminal::is_ours is false) with a synchronous resume
5556 packet, and we're blocked waiting for the stop reply, thus a
5557 Ctrl-C should be immediately sent to the target.
5559 - We get a second Ctrl-C while still within the same serial read or
5560 write. In that case the serial is seemingly wedged --- offer to
5563 - We see a second Ctrl-C without target response, after having
5564 previously interrupted the target. In that case the target/stub
5565 is probably wedged --- offer to quit/disconnect.
5569 remote_target::remote_serial_quit_handler ()
5571 struct remote_state *rs = get_remote_state ();
5573 if (check_quit_flag ())
5575 /* If we're starting up, we're not fully synced yet. Quit
5577 if (rs->starting_up)
5579 else if (rs->got_ctrlc_during_io)
5581 if (query (_("The target is not responding to GDB commands.\n"
5582 "Stop debugging it? ")))
5583 remote_unpush_and_throw (this);
5585 /* If ^C has already been sent once, offer to disconnect. */
5586 else if (!target_terminal::is_ours () && rs->ctrlc_pending_p)
5588 /* All-stop protocol, and blocked waiting for stop reply. Send
5589 an interrupt request. */
5590 else if (!target_terminal::is_ours () && rs->waiting_for_stop_reply)
5591 target_interrupt ();
5593 rs->got_ctrlc_during_io = 1;
5597 /* The remote_target that is current while the quit handler is
5598 overridden with remote_serial_quit_handler. */
5599 static remote_target *curr_quit_handler_target;
5602 remote_serial_quit_handler ()
5604 curr_quit_handler_target->remote_serial_quit_handler ();
5607 /* Remove the remote target from the target stack of each inferior
5608 that is using it. Upper targets depend on it so remove them
5612 remote_unpush_target (remote_target *target)
5614 /* We have to unpush the target from all inferiors, even those that
5616 scoped_restore_current_inferior restore_current_inferior;
5618 for (inferior *inf : all_inferiors (target))
5620 switch_to_inferior_no_thread (inf);
5621 pop_all_targets_at_and_above (process_stratum);
5622 generic_mourn_inferior ();
5627 remote_unpush_and_throw (remote_target *target)
5629 remote_unpush_target (target);
5630 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
5634 remote_target::open_1 (const char *name, int from_tty, int extended_p)
5636 remote_target *curr_remote = get_current_remote_target ();
5639 error (_("To open a remote debug connection, you need to specify what\n"
5640 "serial device is attached to the remote system\n"
5641 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
5643 /* If we're connected to a running target, target_preopen will kill it.
5644 Ask this question first, before target_preopen has a chance to kill
5646 if (curr_remote != NULL && !target_has_execution ())
5649 && !query (_("Already connected to a remote target. Disconnect? ")))
5650 error (_("Still connected."));
5653 /* Here the possibly existing remote target gets unpushed. */
5654 target_preopen (from_tty);
5656 remote_fileio_reset ();
5657 reopen_exec_file ();
5660 remote_target *remote
5661 = (extended_p ? new extended_remote_target () : new remote_target ());
5662 target_ops_up target_holder (remote);
5664 remote_state *rs = remote->get_remote_state ();
5666 /* See FIXME above. */
5667 if (!target_async_permitted)
5668 rs->wait_forever_enabled_p = 1;
5670 rs->remote_desc = remote_serial_open (name);
5671 if (!rs->remote_desc)
5672 perror_with_name (name);
5674 if (baud_rate != -1)
5676 if (serial_setbaudrate (rs->remote_desc, baud_rate))
5678 /* The requested speed could not be set. Error out to
5679 top level after closing remote_desc. Take care to
5680 set remote_desc to NULL to avoid closing remote_desc
5682 serial_close (rs->remote_desc);
5683 rs->remote_desc = NULL;
5684 perror_with_name (name);
5688 serial_setparity (rs->remote_desc, serial_parity);
5689 serial_raw (rs->remote_desc);
5691 /* If there is something sitting in the buffer we might take it as a
5692 response to a command, which would be bad. */
5693 serial_flush_input (rs->remote_desc);
5697 puts_filtered ("Remote debugging using ");
5698 puts_filtered (name);
5699 puts_filtered ("\n");
5702 /* Switch to using the remote target now. */
5703 current_inferior ()->push_target (std::move (target_holder));
5705 /* Register extra event sources in the event loop. */
5706 rs->remote_async_inferior_event_token
5707 = create_async_event_handler (remote_async_inferior_event_handler, nullptr,
5709 rs->notif_state = remote_notif_state_allocate (remote);
5711 /* Reset the target state; these things will be queried either by
5712 remote_query_supported or as they are needed. */
5713 reset_all_packet_configs_support ();
5714 rs->cached_wait_status = 0;
5715 rs->explicit_packet_size = 0;
5717 rs->extended = extended_p;
5718 rs->waiting_for_stop_reply = 0;
5719 rs->ctrlc_pending_p = 0;
5720 rs->got_ctrlc_during_io = 0;
5722 rs->general_thread = not_sent_ptid;
5723 rs->continue_thread = not_sent_ptid;
5724 rs->remote_traceframe_number = -1;
5726 rs->last_resume_exec_dir = EXEC_FORWARD;
5728 /* Probe for ability to use "ThreadInfo" query, as required. */
5729 rs->use_threadinfo_query = 1;
5730 rs->use_threadextra_query = 1;
5732 rs->readahead_cache.invalidate ();
5734 if (target_async_permitted)
5736 /* FIXME: cagney/1999-09-23: During the initial connection it is
5737 assumed that the target is already ready and able to respond to
5738 requests. Unfortunately remote_start_remote() eventually calls
5739 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
5740 around this. Eventually a mechanism that allows
5741 wait_for_inferior() to expect/get timeouts will be
5743 rs->wait_forever_enabled_p = 0;
5746 /* First delete any symbols previously loaded from shared libraries. */
5747 no_shared_libraries (NULL, 0);
5749 /* Start the remote connection. If error() or QUIT, discard this
5750 target (we'd otherwise be in an inconsistent state) and then
5751 propogate the error on up the exception chain. This ensures that
5752 the caller doesn't stumble along blindly assuming that the
5753 function succeeded. The CLI doesn't have this problem but other
5754 UI's, such as MI do.
5756 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
5757 this function should return an error indication letting the
5758 caller restore the previous state. Unfortunately the command
5759 ``target remote'' is directly wired to this function making that
5760 impossible. On a positive note, the CLI side of this problem has
5761 been fixed - the function set_cmd_context() makes it possible for
5762 all the ``target ....'' commands to share a common callback
5763 function. See cli-dump.c. */
5768 remote->start_remote (from_tty, extended_p);
5770 catch (const gdb_exception &ex)
5772 /* Pop the partially set up target - unless something else did
5773 already before throwing the exception. */
5774 if (ex.error != TARGET_CLOSE_ERROR)
5775 remote_unpush_target (remote);
5780 remote_btrace_reset (rs);
5782 if (target_async_permitted)
5783 rs->wait_forever_enabled_p = 1;
5786 /* Detach the specified process. */
5789 remote_target::remote_detach_pid (int pid)
5791 struct remote_state *rs = get_remote_state ();
5793 /* This should not be necessary, but the handling for D;PID in
5794 GDBserver versions prior to 8.2 incorrectly assumes that the
5795 selected process points to the same process we're detaching,
5796 leading to misbehavior (and possibly GDBserver crashing) when it
5797 does not. Since it's easy and cheap, work around it by forcing
5798 GDBserver to select GDB's current process. */
5799 set_general_process ();
5801 if (remote_multi_process_p (rs))
5802 xsnprintf (rs->buf.data (), get_remote_packet_size (), "D;%x", pid);
5804 strcpy (rs->buf.data (), "D");
5807 getpkt (&rs->buf, 0);
5809 if (rs->buf[0] == 'O' && rs->buf[1] == 'K')
5811 else if (rs->buf[0] == '\0')
5812 error (_("Remote doesn't know how to detach"));
5814 error (_("Can't detach process."));
5817 /* This detaches a program to which we previously attached, using
5818 inferior_ptid to identify the process. After this is done, GDB
5819 can be used to debug some other program. We better not have left
5820 any breakpoints in the target program or it'll die when it hits
5824 remote_target::remote_detach_1 (inferior *inf, int from_tty)
5826 int pid = inferior_ptid.pid ();
5827 struct remote_state *rs = get_remote_state ();
5830 if (!target_has_execution ())
5831 error (_("No process to detach from."));
5833 target_announce_detach (from_tty);
5835 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
5837 /* If we're in breakpoints-always-inserted mode, or the inferior
5838 is running, we have to remove breakpoints before detaching.
5839 We don't do this in common code instead because not all
5840 targets support removing breakpoints while the target is
5841 running. The remote target / gdbserver does, though. */
5842 remove_breakpoints_inf (current_inferior ());
5845 /* Tell the remote target to detach. */
5846 remote_detach_pid (pid);
5848 /* Exit only if this is the only active inferior. */
5849 if (from_tty && !rs->extended && number_of_live_inferiors (this) == 1)
5850 puts_filtered (_("Ending remote debugging.\n"));
5852 thread_info *tp = find_thread_ptid (this, inferior_ptid);
5854 /* Check to see if we are detaching a fork parent. Note that if we
5855 are detaching a fork child, tp == NULL. */
5856 is_fork_parent = (tp != NULL
5857 && tp->pending_follow.kind == TARGET_WAITKIND_FORKED);
5859 /* If doing detach-on-fork, we don't mourn, because that will delete
5860 breakpoints that should be available for the followed inferior. */
5861 if (!is_fork_parent)
5863 /* Save the pid as a string before mourning, since that will
5864 unpush the remote target, and we need the string after. */
5865 std::string infpid = target_pid_to_str (ptid_t (pid));
5867 target_mourn_inferior (inferior_ptid);
5868 if (print_inferior_events)
5869 printf_unfiltered (_("[Inferior %d (%s) detached]\n"),
5870 inf->num, infpid.c_str ());
5874 switch_to_no_thread ();
5875 detach_inferior (current_inferior ());
5880 remote_target::detach (inferior *inf, int from_tty)
5882 remote_detach_1 (inf, from_tty);
5886 extended_remote_target::detach (inferior *inf, int from_tty)
5888 remote_detach_1 (inf, from_tty);
5891 /* Target follow-fork function for remote targets. On entry, and
5892 at return, the current inferior is the fork parent.
5894 Note that although this is currently only used for extended-remote,
5895 it is named remote_follow_fork in anticipation of using it for the
5896 remote target as well. */
5899 remote_target::follow_fork (bool follow_child, bool detach_fork)
5901 struct remote_state *rs = get_remote_state ();
5902 enum target_waitkind kind = inferior_thread ()->pending_follow.kind;
5904 if ((kind == TARGET_WAITKIND_FORKED && remote_fork_event_p (rs))
5905 || (kind == TARGET_WAITKIND_VFORKED && remote_vfork_event_p (rs)))
5907 /* When following the parent and detaching the child, we detach
5908 the child here. For the case of following the child and
5909 detaching the parent, the detach is done in the target-
5910 independent follow fork code in infrun.c. We can't use
5911 target_detach when detaching an unfollowed child because
5912 the client side doesn't know anything about the child. */
5913 if (detach_fork && !follow_child)
5915 /* Detach the fork child. */
5919 child_ptid = inferior_thread ()->pending_follow.value.related_pid;
5920 child_pid = child_ptid.pid ();
5922 remote_detach_pid (child_pid);
5929 /* Target follow-exec function for remote targets. Save EXECD_PATHNAME
5930 in the program space of the new inferior. On entry and at return the
5931 current inferior is the exec'ing inferior. INF is the new exec'd
5932 inferior, which may be the same as the exec'ing inferior unless
5933 follow-exec-mode is "new". */
5936 remote_target::follow_exec (struct inferior *inf, const char *execd_pathname)
5938 /* We know that this is a target file name, so if it has the "target:"
5939 prefix we strip it off before saving it in the program space. */
5940 if (is_target_filename (execd_pathname))
5941 execd_pathname += strlen (TARGET_SYSROOT_PREFIX);
5943 set_pspace_remote_exec_file (inf->pspace, execd_pathname);
5946 /* Same as remote_detach, but don't send the "D" packet; just disconnect. */
5949 remote_target::disconnect (const char *args, int from_tty)
5952 error (_("Argument given to \"disconnect\" when remotely debugging."));
5954 /* Make sure we unpush even the extended remote targets. Calling
5955 target_mourn_inferior won't unpush, and
5956 remote_target::mourn_inferior won't unpush if there is more than
5957 one inferior left. */
5958 remote_unpush_target (this);
5961 puts_filtered ("Ending remote debugging.\n");
5964 /* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
5965 be chatty about it. */
5968 extended_remote_target::attach (const char *args, int from_tty)
5970 struct remote_state *rs = get_remote_state ();
5972 char *wait_status = NULL;
5974 pid = parse_pid_to_attach (args);
5976 /* Remote PID can be freely equal to getpid, do not check it here the same
5977 way as in other targets. */
5979 if (packet_support (PACKET_vAttach) == PACKET_DISABLE)
5980 error (_("This target does not support attaching to a process"));
5984 const char *exec_file = get_exec_file (0);
5987 printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file,
5988 target_pid_to_str (ptid_t (pid)).c_str ());
5990 printf_unfiltered (_("Attaching to %s\n"),
5991 target_pid_to_str (ptid_t (pid)).c_str ());
5994 xsnprintf (rs->buf.data (), get_remote_packet_size (), "vAttach;%x", pid);
5996 getpkt (&rs->buf, 0);
5998 switch (packet_ok (rs->buf,
5999 &remote_protocol_packets[PACKET_vAttach]))
6002 if (!target_is_non_stop_p ())
6004 /* Save the reply for later. */
6005 wait_status = (char *) alloca (strlen (rs->buf.data ()) + 1);
6006 strcpy (wait_status, rs->buf.data ());
6008 else if (strcmp (rs->buf.data (), "OK") != 0)
6009 error (_("Attaching to %s failed with: %s"),
6010 target_pid_to_str (ptid_t (pid)).c_str (),
6013 case PACKET_UNKNOWN:
6014 error (_("This target does not support attaching to a process"));
6016 error (_("Attaching to %s failed"),
6017 target_pid_to_str (ptid_t (pid)).c_str ());
6020 switch_to_inferior_no_thread (remote_add_inferior (false, pid, 1, 0));
6022 inferior_ptid = ptid_t (pid);
6024 if (target_is_non_stop_p ())
6026 /* Get list of threads. */
6027 update_thread_list ();
6029 thread_info *thread = first_thread_of_inferior (current_inferior ());
6030 if (thread != nullptr)
6031 switch_to_thread (thread);
6033 /* Invalidate our notion of the remote current thread. */
6034 record_currthread (rs, minus_one_ptid);
6038 /* Now, if we have thread information, update the main thread's
6040 ptid_t curr_ptid = remote_current_thread (ptid_t (pid));
6042 /* Add the main thread to the thread list. */
6043 thread_info *thr = add_thread_silent (this, curr_ptid);
6045 switch_to_thread (thr);
6047 /* Don't consider the thread stopped until we've processed the
6048 saved stop reply. */
6049 set_executing (this, thr->ptid, true);
6052 /* Next, if the target can specify a description, read it. We do
6053 this before anything involving memory or registers. */
6054 target_find_description ();
6056 if (!target_is_non_stop_p ())
6058 /* Use the previously fetched status. */
6059 gdb_assert (wait_status != NULL);
6061 if (target_can_async_p ())
6063 struct notif_event *reply
6064 = remote_notif_parse (this, ¬if_client_stop, wait_status);
6066 push_stop_reply ((struct stop_reply *) reply);
6072 gdb_assert (wait_status != NULL);
6073 strcpy (rs->buf.data (), wait_status);
6074 rs->cached_wait_status = 1;
6079 gdb_assert (wait_status == NULL);
6081 gdb_assert (target_can_async_p ());
6086 /* Implementation of the to_post_attach method. */
6089 extended_remote_target::post_attach (int pid)
6091 /* Get text, data & bss offsets. */
6094 /* In certain cases GDB might not have had the chance to start
6095 symbol lookup up until now. This could happen if the debugged
6096 binary is not using shared libraries, the vsyscall page is not
6097 present (on Linux) and the binary itself hadn't changed since the
6098 debugging process was started. */
6099 if (current_program_space->symfile_object_file != NULL)
6100 remote_check_symbols();
6104 /* Check for the availability of vCont. This function should also check
6108 remote_target::remote_vcont_probe ()
6110 remote_state *rs = get_remote_state ();
6113 strcpy (rs->buf.data (), "vCont?");
6115 getpkt (&rs->buf, 0);
6116 buf = rs->buf.data ();
6118 /* Make sure that the features we assume are supported. */
6119 if (startswith (buf, "vCont"))
6122 int support_c, support_C;
6124 rs->supports_vCont.s = 0;
6125 rs->supports_vCont.S = 0;
6128 rs->supports_vCont.t = 0;
6129 rs->supports_vCont.r = 0;
6130 while (p && *p == ';')
6133 if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
6134 rs->supports_vCont.s = 1;
6135 else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
6136 rs->supports_vCont.S = 1;
6137 else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
6139 else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
6141 else if (*p == 't' && (*(p + 1) == ';' || *(p + 1) == 0))
6142 rs->supports_vCont.t = 1;
6143 else if (*p == 'r' && (*(p + 1) == ';' || *(p + 1) == 0))
6144 rs->supports_vCont.r = 1;
6146 p = strchr (p, ';');
6149 /* If c, and C are not all supported, we can't use vCont. Clearing
6150 BUF will make packet_ok disable the packet. */
6151 if (!support_c || !support_C)
6155 packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCont]);
6156 rs->supports_vCont_probed = true;
6159 /* Helper function for building "vCont" resumptions. Write a
6160 resumption to P. ENDP points to one-passed-the-end of the buffer
6161 we're allowed to write to. Returns BUF+CHARACTERS_WRITTEN. The
6162 thread to be resumed is PTID; STEP and SIGGNAL indicate whether the
6163 resumed thread should be single-stepped and/or signalled. If PTID
6164 equals minus_one_ptid, then all threads are resumed; if PTID
6165 represents a process, then all threads of the process are resumed;
6166 the thread to be stepped and/or signalled is given in the global
6170 remote_target::append_resumption (char *p, char *endp,
6171 ptid_t ptid, int step, gdb_signal siggnal)
6173 struct remote_state *rs = get_remote_state ();
6175 if (step && siggnal != GDB_SIGNAL_0)
6176 p += xsnprintf (p, endp - p, ";S%02x", siggnal);
6178 /* GDB is willing to range step. */
6179 && use_range_stepping
6180 /* Target supports range stepping. */
6181 && rs->supports_vCont.r
6182 /* We don't currently support range stepping multiple
6183 threads with a wildcard (though the protocol allows it,
6184 so stubs shouldn't make an active effort to forbid
6186 && !(remote_multi_process_p (rs) && ptid.is_pid ()))
6188 struct thread_info *tp;
6190 if (ptid == minus_one_ptid)
6192 /* If we don't know about the target thread's tid, then
6193 we're resuming magic_null_ptid (see caller). */
6194 tp = find_thread_ptid (this, magic_null_ptid);
6197 tp = find_thread_ptid (this, ptid);
6198 gdb_assert (tp != NULL);
6200 if (tp->control.may_range_step)
6202 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
6204 p += xsnprintf (p, endp - p, ";r%s,%s",
6205 phex_nz (tp->control.step_range_start,
6207 phex_nz (tp->control.step_range_end,
6211 p += xsnprintf (p, endp - p, ";s");
6214 p += xsnprintf (p, endp - p, ";s");
6215 else if (siggnal != GDB_SIGNAL_0)
6216 p += xsnprintf (p, endp - p, ";C%02x", siggnal);
6218 p += xsnprintf (p, endp - p, ";c");
6220 if (remote_multi_process_p (rs) && ptid.is_pid ())
6224 /* All (-1) threads of process. */
6225 nptid = ptid_t (ptid.pid (), -1, 0);
6227 p += xsnprintf (p, endp - p, ":");
6228 p = write_ptid (p, endp, nptid);
6230 else if (ptid != minus_one_ptid)
6232 p += xsnprintf (p, endp - p, ":");
6233 p = write_ptid (p, endp, ptid);
6239 /* Clear the thread's private info on resume. */
6242 resume_clear_thread_private_info (struct thread_info *thread)
6244 if (thread->priv != NULL)
6246 remote_thread_info *priv = get_remote_thread_info (thread);
6248 priv->stop_reason = TARGET_STOPPED_BY_NO_REASON;
6249 priv->watch_data_address = 0;
6253 /* Append a vCont continue-with-signal action for threads that have a
6254 non-zero stop signal. */
6257 remote_target::append_pending_thread_resumptions (char *p, char *endp,
6260 for (thread_info *thread : all_non_exited_threads (this, ptid))
6261 if (inferior_ptid != thread->ptid
6262 && thread->suspend.stop_signal != GDB_SIGNAL_0)
6264 p = append_resumption (p, endp, thread->ptid,
6265 0, thread->suspend.stop_signal);
6266 thread->suspend.stop_signal = GDB_SIGNAL_0;
6267 resume_clear_thread_private_info (thread);
6273 /* Set the target running, using the packets that use Hc
6277 remote_target::remote_resume_with_hc (ptid_t ptid, int step,
6280 struct remote_state *rs = get_remote_state ();
6283 rs->last_sent_signal = siggnal;
6284 rs->last_sent_step = step;
6286 /* The c/s/C/S resume packets use Hc, so set the continue
6288 if (ptid == minus_one_ptid)
6289 set_continue_thread (any_thread_ptid);
6291 set_continue_thread (ptid);
6293 for (thread_info *thread : all_non_exited_threads (this))
6294 resume_clear_thread_private_info (thread);
6296 buf = rs->buf.data ();
6297 if (::execution_direction == EXEC_REVERSE)
6299 /* We don't pass signals to the target in reverse exec mode. */
6300 if (info_verbose && siggnal != GDB_SIGNAL_0)
6301 warning (_(" - Can't pass signal %d to target in reverse: ignored."),
6304 if (step && packet_support (PACKET_bs) == PACKET_DISABLE)
6305 error (_("Remote reverse-step not supported."));
6306 if (!step && packet_support (PACKET_bc) == PACKET_DISABLE)
6307 error (_("Remote reverse-continue not supported."));
6309 strcpy (buf, step ? "bs" : "bc");
6311 else if (siggnal != GDB_SIGNAL_0)
6313 buf[0] = step ? 'S' : 'C';
6314 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
6315 buf[2] = tohex (((int) siggnal) & 0xf);
6319 strcpy (buf, step ? "s" : "c");
6324 /* Resume the remote inferior by using a "vCont" packet. The thread
6325 to be resumed is PTID; STEP and SIGGNAL indicate whether the
6326 resumed thread should be single-stepped and/or signalled. If PTID
6327 equals minus_one_ptid, then all threads are resumed; the thread to
6328 be stepped and/or signalled is given in the global INFERIOR_PTID.
6329 This function returns non-zero iff it resumes the inferior.
6331 This function issues a strict subset of all possible vCont commands
6335 remote_target::remote_resume_with_vcont (ptid_t ptid, int step,
6336 enum gdb_signal siggnal)
6338 struct remote_state *rs = get_remote_state ();
6342 /* No reverse execution actions defined for vCont. */
6343 if (::execution_direction == EXEC_REVERSE)
6346 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6347 remote_vcont_probe ();
6349 if (packet_support (PACKET_vCont) == PACKET_DISABLE)
6352 p = rs->buf.data ();
6353 endp = p + get_remote_packet_size ();
6355 /* If we could generate a wider range of packets, we'd have to worry
6356 about overflowing BUF. Should there be a generic
6357 "multi-part-packet" packet? */
6359 p += xsnprintf (p, endp - p, "vCont");
6361 if (ptid == magic_null_ptid)
6363 /* MAGIC_NULL_PTID means that we don't have any active threads,
6364 so we don't have any TID numbers the inferior will
6365 understand. Make sure to only send forms that do not specify
6367 append_resumption (p, endp, minus_one_ptid, step, siggnal);
6369 else if (ptid == minus_one_ptid || ptid.is_pid ())
6371 /* Resume all threads (of all processes, or of a single
6372 process), with preference for INFERIOR_PTID. This assumes
6373 inferior_ptid belongs to the set of all threads we are about
6375 if (step || siggnal != GDB_SIGNAL_0)
6377 /* Step inferior_ptid, with or without signal. */
6378 p = append_resumption (p, endp, inferior_ptid, step, siggnal);
6381 /* Also pass down any pending signaled resumption for other
6382 threads not the current. */
6383 p = append_pending_thread_resumptions (p, endp, ptid);
6385 /* And continue others without a signal. */
6386 append_resumption (p, endp, ptid, /*step=*/ 0, GDB_SIGNAL_0);
6390 /* Scheduler locking; resume only PTID. */
6391 append_resumption (p, endp, ptid, step, siggnal);
6394 gdb_assert (strlen (rs->buf.data ()) < get_remote_packet_size ());
6397 if (target_is_non_stop_p ())
6399 /* In non-stop, the stub replies to vCont with "OK". The stop
6400 reply will be reported asynchronously by means of a `%Stop'
6402 getpkt (&rs->buf, 0);
6403 if (strcmp (rs->buf.data (), "OK") != 0)
6404 error (_("Unexpected vCont reply in non-stop mode: %s"),
6411 /* Tell the remote machine to resume. */
6414 remote_target::resume (ptid_t ptid, int step, enum gdb_signal siggnal)
6416 struct remote_state *rs = get_remote_state ();
6418 /* When connected in non-stop mode, the core resumes threads
6419 individually. Resuming remote threads directly in target_resume
6420 would thus result in sending one packet per thread. Instead, to
6421 minimize roundtrip latency, here we just store the resume
6422 request (put the thread in RESUMED_PENDING_VCONT state); the actual remote
6423 resumption will be done in remote_target::commit_resume, where we'll be
6424 able to do vCont action coalescing. */
6425 if (target_is_non_stop_p () && ::execution_direction != EXEC_REVERSE)
6427 remote_thread_info *remote_thr;
6429 if (minus_one_ptid == ptid || ptid.is_pid ())
6430 remote_thr = get_remote_thread_info (this, inferior_ptid);
6432 remote_thr = get_remote_thread_info (this, ptid);
6434 /* We don't expect the core to ask to resume an already resumed (from
6435 its point of view) thread. */
6436 gdb_assert (remote_thr->get_resume_state () == resume_state::NOT_RESUMED);
6438 remote_thr->set_resumed_pending_vcont (step, siggnal);
6442 /* In all-stop, we can't mark REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN
6443 (explained in remote-notif.c:handle_notification) so
6444 remote_notif_process is not called. We need find a place where
6445 it is safe to start a 'vNotif' sequence. It is good to do it
6446 before resuming inferior, because inferior was stopped and no RSP
6447 traffic at that moment. */
6448 if (!target_is_non_stop_p ())
6449 remote_notif_process (rs->notif_state, ¬if_client_stop);
6451 rs->last_resume_exec_dir = ::execution_direction;
6453 /* Prefer vCont, and fallback to s/c/S/C, which use Hc. */
6454 if (!remote_resume_with_vcont (ptid, step, siggnal))
6455 remote_resume_with_hc (ptid, step, siggnal);
6457 /* Update resumed state tracked by the remote target. */
6458 for (thread_info *tp : all_non_exited_threads (this, ptid))
6459 get_remote_thread_info (tp)->set_resumed ();
6461 /* We are about to start executing the inferior, let's register it
6462 with the event loop. NOTE: this is the one place where all the
6463 execution commands end up. We could alternatively do this in each
6464 of the execution commands in infcmd.c. */
6465 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
6466 into infcmd.c in order to allow inferior function calls to work
6467 NOT asynchronously. */
6468 if (target_can_async_p ())
6471 /* We've just told the target to resume. The remote server will
6472 wait for the inferior to stop, and then send a stop reply. In
6473 the mean time, we can't start another command/query ourselves
6474 because the stub wouldn't be ready to process it. This applies
6475 only to the base all-stop protocol, however. In non-stop (which
6476 only supports vCont), the stub replies with an "OK", and is
6477 immediate able to process further serial input. */
6478 if (!target_is_non_stop_p ())
6479 rs->waiting_for_stop_reply = 1;
6482 static int is_pending_fork_parent_thread (struct thread_info *thread);
6484 /* Private per-inferior info for target remote processes. */
6486 struct remote_inferior : public private_inferior
6488 /* Whether we can send a wildcard vCont for this process. */
6489 bool may_wildcard_vcont = true;
6492 /* Get the remote private inferior data associated to INF. */
6494 static remote_inferior *
6495 get_remote_inferior (inferior *inf)
6497 if (inf->priv == NULL)
6498 inf->priv.reset (new remote_inferior);
6500 return static_cast<remote_inferior *> (inf->priv.get ());
6503 struct stop_reply : public notif_event
6507 /* The identifier of the thread about this event */
6510 /* The remote state this event is associated with. When the remote
6511 connection, represented by a remote_state object, is closed,
6512 all the associated stop_reply events should be released. */
6513 struct remote_state *rs;
6515 struct target_waitstatus ws;
6517 /* The architecture associated with the expedited registers. */
6520 /* Expedited registers. This makes remote debugging a bit more
6521 efficient for those targets that provide critical registers as
6522 part of their normal status mechanism (as another roundtrip to
6523 fetch them is avoided). */
6524 std::vector<cached_reg_t> regcache;
6526 enum target_stop_reason stop_reason;
6528 CORE_ADDR watch_data_address;
6533 /* Class used to track the construction of a vCont packet in the
6534 outgoing packet buffer. This is used to send multiple vCont
6535 packets if we have more actions than would fit a single packet. */
6540 explicit vcont_builder (remote_target *remote)
6547 void push_action (ptid_t ptid, bool step, gdb_signal siggnal);
6552 /* The remote target. */
6553 remote_target *m_remote;
6555 /* Pointer to the first action. P points here if no action has been
6557 char *m_first_action;
6559 /* Where the next action will be appended. */
6562 /* The end of the buffer. Must never write past this. */
6566 /* Prepare the outgoing buffer for a new vCont packet. */
6569 vcont_builder::restart ()
6571 struct remote_state *rs = m_remote->get_remote_state ();
6573 m_p = rs->buf.data ();
6574 m_endp = m_p + m_remote->get_remote_packet_size ();
6575 m_p += xsnprintf (m_p, m_endp - m_p, "vCont");
6576 m_first_action = m_p;
6579 /* If the vCont packet being built has any action, send it to the
6583 vcont_builder::flush ()
6585 struct remote_state *rs;
6587 if (m_p == m_first_action)
6590 rs = m_remote->get_remote_state ();
6591 m_remote->putpkt (rs->buf);
6592 m_remote->getpkt (&rs->buf, 0);
6593 if (strcmp (rs->buf.data (), "OK") != 0)
6594 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf.data ());
6597 /* The largest action is range-stepping, with its two addresses. This
6598 is more than sufficient. If a new, bigger action is created, it'll
6599 quickly trigger a failed assertion in append_resumption (and we'll
6601 #define MAX_ACTION_SIZE 200
6603 /* Append a new vCont action in the outgoing packet being built. If
6604 the action doesn't fit the packet along with previous actions, push
6605 what we've got so far to the remote end and start over a new vCont
6606 packet (with the new action). */
6609 vcont_builder::push_action (ptid_t ptid, bool step, gdb_signal siggnal)
6611 char buf[MAX_ACTION_SIZE + 1];
6613 char *endp = m_remote->append_resumption (buf, buf + sizeof (buf),
6614 ptid, step, siggnal);
6616 /* Check whether this new action would fit in the vCont packet along
6617 with previous actions. If not, send what we've got so far and
6618 start a new vCont packet. */
6619 size_t rsize = endp - buf;
6620 if (rsize > m_endp - m_p)
6625 /* Should now fit. */
6626 gdb_assert (rsize <= m_endp - m_p);
6629 memcpy (m_p, buf, rsize);
6634 /* to_commit_resume implementation. */
6637 remote_target::commit_resumed ()
6639 int any_process_wildcard;
6640 int may_global_wildcard_vcont;
6642 /* If connected in all-stop mode, we'd send the remote resume
6643 request directly from remote_resume. Likewise if
6644 reverse-debugging, as there are no defined vCont actions for
6645 reverse execution. */
6646 if (!target_is_non_stop_p () || ::execution_direction == EXEC_REVERSE)
6649 /* Try to send wildcard actions ("vCont;c" or "vCont;c:pPID.-1")
6650 instead of resuming all threads of each process individually.
6651 However, if any thread of a process must remain halted, we can't
6652 send wildcard resumes and must send one action per thread.
6654 Care must be taken to not resume threads/processes the server
6655 side already told us are stopped, but the core doesn't know about
6656 yet, because the events are still in the vStopped notification
6659 #1 => vCont s:p1.1;c
6661 #3 <= %Stopped T05 p1.1
6666 #8 (infrun handles the stop for p1.1 and continues stepping)
6667 #9 => vCont s:p1.1;c
6669 The last vCont above would resume thread p1.2 by mistake, because
6670 the server has no idea that the event for p1.2 had not been
6673 The server side must similarly ignore resume actions for the
6674 thread that has a pending %Stopped notification (and any other
6675 threads with events pending), until GDB acks the notification
6676 with vStopped. Otherwise, e.g., the following case is
6679 #1 => g (or any other packet)
6681 #3 <= %Stopped T05 p1.2
6682 #4 => vCont s:p1.1;c
6685 Above, the server must not resume thread p1.2. GDB can't know
6686 that p1.2 stopped until it acks the %Stopped notification, and
6687 since from GDB's perspective all threads should be running, it
6690 Finally, special care must also be given to handling fork/vfork
6691 events. A (v)fork event actually tells us that two processes
6692 stopped -- the parent and the child. Until we follow the fork,
6693 we must not resume the child. Therefore, if we have a pending
6694 fork follow, we must not send a global wildcard resume action
6695 (vCont;c). We can still send process-wide wildcards though. */
6697 /* Start by assuming a global wildcard (vCont;c) is possible. */
6698 may_global_wildcard_vcont = 1;
6700 /* And assume every process is individually wildcard-able too. */
6701 for (inferior *inf : all_non_exited_inferiors (this))
6703 remote_inferior *priv = get_remote_inferior (inf);
6705 priv->may_wildcard_vcont = true;
6708 /* Check for any pending events (not reported or processed yet) and
6709 disable process and global wildcard resumes appropriately. */
6710 check_pending_events_prevent_wildcard_vcont (&may_global_wildcard_vcont);
6712 bool any_pending_vcont_resume = false;
6714 for (thread_info *tp : all_non_exited_threads (this))
6716 remote_thread_info *priv = get_remote_thread_info (tp);
6718 /* If a thread of a process is not meant to be resumed, then we
6719 can't wildcard that process. */
6720 if (priv->get_resume_state () == resume_state::NOT_RESUMED)
6722 get_remote_inferior (tp->inf)->may_wildcard_vcont = false;
6724 /* And if we can't wildcard a process, we can't wildcard
6725 everything either. */
6726 may_global_wildcard_vcont = 0;
6730 if (priv->get_resume_state () == resume_state::RESUMED_PENDING_VCONT)
6731 any_pending_vcont_resume = true;
6733 /* If a thread is the parent of an unfollowed fork, then we
6734 can't do a global wildcard, as that would resume the fork
6736 if (is_pending_fork_parent_thread (tp))
6737 may_global_wildcard_vcont = 0;
6740 /* We didn't have any resumed thread pending a vCont resume, so nothing to
6742 if (!any_pending_vcont_resume)
6745 /* Now let's build the vCont packet(s). Actions must be appended
6746 from narrower to wider scopes (thread -> process -> global). If
6747 we end up with too many actions for a single packet vcont_builder
6748 flushes the current vCont packet to the remote side and starts a
6750 struct vcont_builder vcont_builder (this);
6752 /* Threads first. */
6753 for (thread_info *tp : all_non_exited_threads (this))
6755 remote_thread_info *remote_thr = get_remote_thread_info (tp);
6757 /* If the thread was previously vCont-resumed, no need to send a specific
6758 action for it. If we didn't receive a resume request for it, don't
6759 send an action for it either. */
6760 if (remote_thr->get_resume_state () != resume_state::RESUMED_PENDING_VCONT)
6763 gdb_assert (!thread_is_in_step_over_chain (tp));
6765 /* We should never be commit-resuming a thread that has a stop reply.
6766 Otherwise, we would end up reporting a stop event for a thread while
6767 it is running on the remote target. */
6768 remote_state *rs = get_remote_state ();
6769 for (const auto &stop_reply : rs->stop_reply_queue)
6770 gdb_assert (stop_reply->ptid != tp->ptid);
6772 const resumed_pending_vcont_info &info
6773 = remote_thr->resumed_pending_vcont_info ();
6775 /* Check if we need to send a specific action for this thread. If not,
6776 it will be included in a wildcard resume instead. */
6777 if (info.step || info.sig != GDB_SIGNAL_0
6778 || !get_remote_inferior (tp->inf)->may_wildcard_vcont)
6779 vcont_builder.push_action (tp->ptid, info.step, info.sig);
6781 remote_thr->set_resumed ();
6784 /* Now check whether we can send any process-wide wildcard. This is
6785 to avoid sending a global wildcard in the case nothing is
6786 supposed to be resumed. */
6787 any_process_wildcard = 0;
6789 for (inferior *inf : all_non_exited_inferiors (this))
6791 if (get_remote_inferior (inf)->may_wildcard_vcont)
6793 any_process_wildcard = 1;
6798 if (any_process_wildcard)
6800 /* If all processes are wildcard-able, then send a single "c"
6801 action, otherwise, send an "all (-1) threads of process"
6802 continue action for each running process, if any. */
6803 if (may_global_wildcard_vcont)
6805 vcont_builder.push_action (minus_one_ptid,
6806 false, GDB_SIGNAL_0);
6810 for (inferior *inf : all_non_exited_inferiors (this))
6812 if (get_remote_inferior (inf)->may_wildcard_vcont)
6814 vcont_builder.push_action (ptid_t (inf->pid),
6815 false, GDB_SIGNAL_0);
6821 vcont_builder.flush ();
6824 /* Implementation of target_has_pending_events. */
6827 remote_target::has_pending_events ()
6829 if (target_can_async_p ())
6831 remote_state *rs = get_remote_state ();
6833 if (async_event_handler_marked (rs->remote_async_inferior_event_token))
6836 /* Note that BUFCNT can be negative, indicating sticky
6838 if (rs->remote_desc->bufcnt != 0)
6846 /* Non-stop version of target_stop. Uses `vCont;t' to stop a remote
6847 thread, all threads of a remote process, or all threads of all
6851 remote_target::remote_stop_ns (ptid_t ptid)
6853 struct remote_state *rs = get_remote_state ();
6854 char *p = rs->buf.data ();
6855 char *endp = p + get_remote_packet_size ();
6857 /* If any thread that needs to stop was resumed but pending a vCont
6858 resume, generate a phony stop_reply. However, first check
6859 whether the thread wasn't resumed with a signal. Generating a
6860 phony stop in that case would result in losing the signal. */
6861 bool needs_commit = false;
6862 for (thread_info *tp : all_non_exited_threads (this, ptid))
6864 remote_thread_info *remote_thr = get_remote_thread_info (tp);
6866 if (remote_thr->get_resume_state ()
6867 == resume_state::RESUMED_PENDING_VCONT)
6869 const resumed_pending_vcont_info &info
6870 = remote_thr->resumed_pending_vcont_info ();
6871 if (info.sig != GDB_SIGNAL_0)
6873 /* This signal must be forwarded to the inferior. We
6874 could commit-resume just this thread, but its simpler
6875 to just commit-resume everything. */
6876 needs_commit = true;
6885 for (thread_info *tp : all_non_exited_threads (this, ptid))
6887 remote_thread_info *remote_thr = get_remote_thread_info (tp);
6889 if (remote_thr->get_resume_state ()
6890 == resume_state::RESUMED_PENDING_VCONT)
6892 remote_debug_printf ("Enqueueing phony stop reply for thread pending "
6893 "vCont-resume (%d, %ld, %ld)", tp->ptid.pid(),
6894 tp->ptid.lwp (), tp->ptid.tid ());
6896 /* Check that the thread wasn't resumed with a signal.
6897 Generating a phony stop would result in losing the
6899 const resumed_pending_vcont_info &info
6900 = remote_thr->resumed_pending_vcont_info ();
6901 gdb_assert (info.sig == GDB_SIGNAL_0);
6903 stop_reply *sr = new stop_reply ();
6904 sr->ptid = tp->ptid;
6906 sr->ws.kind = TARGET_WAITKIND_STOPPED;
6907 sr->ws.value.sig = GDB_SIGNAL_0;
6908 sr->arch = tp->inf->gdbarch;
6909 sr->stop_reason = TARGET_STOPPED_BY_NO_REASON;
6910 sr->watch_data_address = 0;
6912 this->push_stop_reply (sr);
6914 /* Pretend that this thread was actually resumed on the
6915 remote target, then stopped. If we leave it in the
6916 RESUMED_PENDING_VCONT state and the commit_resumed
6917 method is called while the stop reply is still in the
6918 queue, we'll end up reporting a stop event to the core
6919 for that thread while it is running on the remote
6920 target... that would be bad. */
6921 remote_thr->set_resumed ();
6925 /* FIXME: This supports_vCont_probed check is a workaround until
6926 packet_support is per-connection. */
6927 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN
6928 || !rs->supports_vCont_probed)
6929 remote_vcont_probe ();
6931 if (!rs->supports_vCont.t)
6932 error (_("Remote server does not support stopping threads"));
6934 if (ptid == minus_one_ptid
6935 || (!remote_multi_process_p (rs) && ptid.is_pid ()))
6936 p += xsnprintf (p, endp - p, "vCont;t");
6941 p += xsnprintf (p, endp - p, "vCont;t:");
6944 /* All (-1) threads of process. */
6945 nptid = ptid_t (ptid.pid (), -1, 0);
6948 /* Small optimization: if we already have a stop reply for
6949 this thread, no use in telling the stub we want this
6951 if (peek_stop_reply (ptid))
6957 write_ptid (p, endp, nptid);
6960 /* In non-stop, we get an immediate OK reply. The stop reply will
6961 come in asynchronously by notification. */
6963 getpkt (&rs->buf, 0);
6964 if (strcmp (rs->buf.data (), "OK") != 0)
6965 error (_("Stopping %s failed: %s"), target_pid_to_str (ptid).c_str (),
6969 /* All-stop version of target_interrupt. Sends a break or a ^C to
6970 interrupt the remote target. It is undefined which thread of which
6971 process reports the interrupt. */
6974 remote_target::remote_interrupt_as ()
6976 struct remote_state *rs = get_remote_state ();
6978 rs->ctrlc_pending_p = 1;
6980 /* If the inferior is stopped already, but the core didn't know
6981 about it yet, just ignore the request. The cached wait status
6982 will be collected in remote_wait. */
6983 if (rs->cached_wait_status)
6986 /* Send interrupt_sequence to remote target. */
6987 send_interrupt_sequence ();
6990 /* Non-stop version of target_interrupt. Uses `vCtrlC' to interrupt
6991 the remote target. It is undefined which thread of which process
6992 reports the interrupt. Throws an error if the packet is not
6993 supported by the server. */
6996 remote_target::remote_interrupt_ns ()
6998 struct remote_state *rs = get_remote_state ();
6999 char *p = rs->buf.data ();
7000 char *endp = p + get_remote_packet_size ();
7002 xsnprintf (p, endp - p, "vCtrlC");
7004 /* In non-stop, we get an immediate OK reply. The stop reply will
7005 come in asynchronously by notification. */
7007 getpkt (&rs->buf, 0);
7009 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCtrlC]))
7013 case PACKET_UNKNOWN:
7014 error (_("No support for interrupting the remote target."));
7016 error (_("Interrupting target failed: %s"), rs->buf.data ());
7020 /* Implement the to_stop function for the remote targets. */
7023 remote_target::stop (ptid_t ptid)
7025 REMOTE_SCOPED_DEBUG_ENTER_EXIT;
7027 if (target_is_non_stop_p ())
7028 remote_stop_ns (ptid);
7031 /* We don't currently have a way to transparently pause the
7032 remote target in all-stop mode. Interrupt it instead. */
7033 remote_interrupt_as ();
7037 /* Implement the to_interrupt function for the remote targets. */
7040 remote_target::interrupt ()
7042 REMOTE_SCOPED_DEBUG_ENTER_EXIT;
7044 if (target_is_non_stop_p ())
7045 remote_interrupt_ns ();
7047 remote_interrupt_as ();
7050 /* Implement the to_pass_ctrlc function for the remote targets. */
7053 remote_target::pass_ctrlc ()
7055 REMOTE_SCOPED_DEBUG_ENTER_EXIT;
7057 struct remote_state *rs = get_remote_state ();
7059 /* If we're starting up, we're not fully synced yet. Quit
7061 if (rs->starting_up)
7063 /* If ^C has already been sent once, offer to disconnect. */
7064 else if (rs->ctrlc_pending_p)
7067 target_interrupt ();
7070 /* Ask the user what to do when an interrupt is received. */
7073 remote_target::interrupt_query ()
7075 struct remote_state *rs = get_remote_state ();
7077 if (rs->waiting_for_stop_reply && rs->ctrlc_pending_p)
7079 if (query (_("The target is not responding to interrupt requests.\n"
7080 "Stop debugging it? ")))
7082 remote_unpush_target (this);
7083 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
7088 if (query (_("Interrupted while waiting for the program.\n"
7089 "Give up waiting? ")))
7094 /* Enable/disable target terminal ownership. Most targets can use
7095 terminal groups to control terminal ownership. Remote targets are
7096 different in that explicit transfer of ownership to/from GDB/target
7100 remote_target::terminal_inferior ()
7102 /* NOTE: At this point we could also register our selves as the
7103 recipient of all input. Any characters typed could then be
7104 passed on down to the target. */
7108 remote_target::terminal_ours ()
7113 remote_console_output (const char *msg)
7117 for (p = msg; p[0] && p[1]; p += 2)
7120 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
7124 gdb_stdtarg->puts (tb);
7126 gdb_stdtarg->flush ();
7129 /* Return the length of the stop reply queue. */
7132 remote_target::stop_reply_queue_length ()
7134 remote_state *rs = get_remote_state ();
7135 return rs->stop_reply_queue.size ();
7139 remote_notif_stop_parse (remote_target *remote,
7140 struct notif_client *self, const char *buf,
7141 struct notif_event *event)
7143 remote->remote_parse_stop_reply (buf, (struct stop_reply *) event);
7147 remote_notif_stop_ack (remote_target *remote,
7148 struct notif_client *self, const char *buf,
7149 struct notif_event *event)
7151 struct stop_reply *stop_reply = (struct stop_reply *) event;
7154 putpkt (remote, self->ack_command);
7156 /* Kind can be TARGET_WAITKIND_IGNORE if we have meanwhile discarded
7157 the notification. It was left in the queue because we need to
7158 acknowledge it and pull the rest of the notifications out. */
7159 if (stop_reply->ws.kind != TARGET_WAITKIND_IGNORE)
7160 remote->push_stop_reply (stop_reply);
7164 remote_notif_stop_can_get_pending_events (remote_target *remote,
7165 struct notif_client *self)
7167 /* We can't get pending events in remote_notif_process for
7168 notification stop, and we have to do this in remote_wait_ns
7169 instead. If we fetch all queued events from stub, remote stub
7170 may exit and we have no chance to process them back in
7172 remote_state *rs = remote->get_remote_state ();
7173 mark_async_event_handler (rs->remote_async_inferior_event_token);
7177 stop_reply::~stop_reply ()
7179 for (cached_reg_t ® : regcache)
7183 static notif_event_up
7184 remote_notif_stop_alloc_reply ()
7186 return notif_event_up (new struct stop_reply ());
7189 /* A client of notification Stop. */
7191 struct notif_client notif_client_stop =
7195 remote_notif_stop_parse,
7196 remote_notif_stop_ack,
7197 remote_notif_stop_can_get_pending_events,
7198 remote_notif_stop_alloc_reply,
7202 /* Determine if THREAD_PTID is a pending fork parent thread. ARG contains
7203 the pid of the process that owns the threads we want to check, or
7204 -1 if we want to check all threads. */
7207 is_pending_fork_parent (struct target_waitstatus *ws, int event_pid,
7210 if (ws->kind == TARGET_WAITKIND_FORKED
7211 || ws->kind == TARGET_WAITKIND_VFORKED)
7213 if (event_pid == -1 || event_pid == thread_ptid.pid ())
7220 /* Return the thread's pending status used to determine whether the
7221 thread is a fork parent stopped at a fork event. */
7223 static struct target_waitstatus *
7224 thread_pending_fork_status (struct thread_info *thread)
7226 if (thread->suspend.waitstatus_pending_p)
7227 return &thread->suspend.waitstatus;
7229 return &thread->pending_follow;
7232 /* Determine if THREAD is a pending fork parent thread. */
7235 is_pending_fork_parent_thread (struct thread_info *thread)
7237 struct target_waitstatus *ws = thread_pending_fork_status (thread);
7240 return is_pending_fork_parent (ws, pid, thread->ptid);
7243 /* If CONTEXT contains any fork child threads that have not been
7244 reported yet, remove them from the CONTEXT list. If such a
7245 thread exists it is because we are stopped at a fork catchpoint
7246 and have not yet called follow_fork, which will set up the
7247 host-side data structures for the new process. */
7250 remote_target::remove_new_fork_children (threads_listing_context *context)
7253 struct notif_client *notif = ¬if_client_stop;
7255 /* For any threads stopped at a fork event, remove the corresponding
7256 fork child threads from the CONTEXT list. */
7257 for (thread_info *thread : all_non_exited_threads (this))
7259 struct target_waitstatus *ws = thread_pending_fork_status (thread);
7261 if (is_pending_fork_parent (ws, pid, thread->ptid))
7262 context->remove_thread (ws->value.related_pid);
7265 /* Check for any pending fork events (not reported or processed yet)
7266 in process PID and remove those fork child threads from the
7267 CONTEXT list as well. */
7268 remote_notif_get_pending_events (notif);
7269 for (auto &event : get_remote_state ()->stop_reply_queue)
7270 if (event->ws.kind == TARGET_WAITKIND_FORKED
7271 || event->ws.kind == TARGET_WAITKIND_VFORKED
7272 || event->ws.kind == TARGET_WAITKIND_THREAD_EXITED)
7273 context->remove_thread (event->ws.value.related_pid);
7276 /* Check whether any event pending in the vStopped queue would prevent
7277 a global or process wildcard vCont action. Clear
7278 *may_global_wildcard if we can't do a global wildcard (vCont;c),
7279 and clear the event inferior's may_wildcard_vcont flag if we can't
7280 do a process-wide wildcard resume (vCont;c:pPID.-1). */
7283 remote_target::check_pending_events_prevent_wildcard_vcont
7284 (int *may_global_wildcard)
7286 struct notif_client *notif = ¬if_client_stop;
7288 remote_notif_get_pending_events (notif);
7289 for (auto &event : get_remote_state ()->stop_reply_queue)
7291 if (event->ws.kind == TARGET_WAITKIND_NO_RESUMED
7292 || event->ws.kind == TARGET_WAITKIND_NO_HISTORY)
7295 if (event->ws.kind == TARGET_WAITKIND_FORKED
7296 || event->ws.kind == TARGET_WAITKIND_VFORKED)
7297 *may_global_wildcard = 0;
7299 /* This may be the first time we heard about this process.
7300 Regardless, we must not do a global wildcard resume, otherwise
7301 we'd resume this process too. */
7302 *may_global_wildcard = 0;
7303 if (event->ptid != null_ptid)
7305 inferior *inf = find_inferior_ptid (this, event->ptid);
7307 get_remote_inferior (inf)->may_wildcard_vcont = false;
7312 /* Discard all pending stop replies of inferior INF. */
7315 remote_target::discard_pending_stop_replies (struct inferior *inf)
7317 struct stop_reply *reply;
7318 struct remote_state *rs = get_remote_state ();
7319 struct remote_notif_state *rns = rs->notif_state;
7321 /* This function can be notified when an inferior exists. When the
7322 target is not remote, the notification state is NULL. */
7323 if (rs->remote_desc == NULL)
7326 reply = (struct stop_reply *) rns->pending_event[notif_client_stop.id];
7328 /* Discard the in-flight notification. */
7329 if (reply != NULL && reply->ptid.pid () == inf->pid)
7331 /* Leave the notification pending, since the server expects that
7332 we acknowledge it with vStopped. But clear its contents, so
7333 that later on when we acknowledge it, we also discard it. */
7334 reply->ws.kind = TARGET_WAITKIND_IGNORE;
7337 fprintf_unfiltered (gdb_stdlog,
7338 "discarded in-flight notification\n");
7341 /* Discard the stop replies we have already pulled with
7343 auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7344 rs->stop_reply_queue.end (),
7345 [=] (const stop_reply_up &event)
7347 return event->ptid.pid () == inf->pid;
7349 rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
7352 /* Discard the stop replies for RS in stop_reply_queue. */
7355 remote_target::discard_pending_stop_replies_in_queue ()
7357 remote_state *rs = get_remote_state ();
7359 /* Discard the stop replies we have already pulled with
7361 auto iter = std::remove_if (rs->stop_reply_queue.begin (),
7362 rs->stop_reply_queue.end (),
7363 [=] (const stop_reply_up &event)
7365 return event->rs == rs;
7367 rs->stop_reply_queue.erase (iter, rs->stop_reply_queue.end ());
7370 /* Remove the first reply in 'stop_reply_queue' which matches
7374 remote_target::remote_notif_remove_queued_reply (ptid_t ptid)
7376 remote_state *rs = get_remote_state ();
7378 auto iter = std::find_if (rs->stop_reply_queue.begin (),
7379 rs->stop_reply_queue.end (),
7380 [=] (const stop_reply_up &event)
7382 return event->ptid.matches (ptid);
7384 struct stop_reply *result;
7385 if (iter == rs->stop_reply_queue.end ())
7389 result = iter->release ();
7390 rs->stop_reply_queue.erase (iter);
7394 fprintf_unfiltered (gdb_stdlog,
7395 "notif: discard queued event: 'Stop' in %s\n",
7396 target_pid_to_str (ptid).c_str ());
7401 /* Look for a queued stop reply belonging to PTID. If one is found,
7402 remove it from the queue, and return it. Returns NULL if none is
7403 found. If there are still queued events left to process, tell the
7404 event loop to get back to target_wait soon. */
7407 remote_target::queued_stop_reply (ptid_t ptid)
7409 remote_state *rs = get_remote_state ();
7410 struct stop_reply *r = remote_notif_remove_queued_reply (ptid);
7412 if (!rs->stop_reply_queue.empty ())
7414 /* There's still at least an event left. */
7415 mark_async_event_handler (rs->remote_async_inferior_event_token);
7421 /* Push a fully parsed stop reply in the stop reply queue. Since we
7422 know that we now have at least one queued event left to pass to the
7423 core side, tell the event loop to get back to target_wait soon. */
7426 remote_target::push_stop_reply (struct stop_reply *new_event)
7428 remote_state *rs = get_remote_state ();
7429 rs->stop_reply_queue.push_back (stop_reply_up (new_event));
7432 fprintf_unfiltered (gdb_stdlog,
7433 "notif: push 'Stop' %s to queue %d\n",
7434 target_pid_to_str (new_event->ptid).c_str (),
7435 int (rs->stop_reply_queue.size ()));
7437 mark_async_event_handler (rs->remote_async_inferior_event_token);
7440 /* Returns true if we have a stop reply for PTID. */
7443 remote_target::peek_stop_reply (ptid_t ptid)
7445 remote_state *rs = get_remote_state ();
7446 for (auto &event : rs->stop_reply_queue)
7447 if (ptid == event->ptid
7448 && event->ws.kind == TARGET_WAITKIND_STOPPED)
7453 /* Helper for remote_parse_stop_reply. Return nonzero if the substring
7454 starting with P and ending with PEND matches PREFIX. */
7457 strprefix (const char *p, const char *pend, const char *prefix)
7459 for ( ; p < pend; p++, prefix++)
7462 return *prefix == '\0';
7465 /* Parse the stop reply in BUF. Either the function succeeds, and the
7466 result is stored in EVENT, or throws an error. */
7469 remote_target::remote_parse_stop_reply (const char *buf, stop_reply *event)
7471 remote_arch_state *rsa = NULL;
7476 event->ptid = null_ptid;
7477 event->rs = get_remote_state ();
7478 event->ws.kind = TARGET_WAITKIND_IGNORE;
7479 event->ws.value.integer = 0;
7480 event->stop_reason = TARGET_STOPPED_BY_NO_REASON;
7481 event->regcache.clear ();
7486 case 'T': /* Status with PC, SP, FP, ... */
7487 /* Expedited reply, containing Signal, {regno, reg} repeat. */
7488 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
7490 n... = register number
7491 r... = register contents
7494 p = &buf[3]; /* after Txx */
7500 p1 = strchr (p, ':');
7502 error (_("Malformed packet(a) (missing colon): %s\n\
7506 error (_("Malformed packet(a) (missing register number): %s\n\
7510 /* Some "registers" are actually extended stop information.
7511 Note if you're adding a new entry here: GDB 7.9 and
7512 earlier assume that all register "numbers" that start
7513 with an hex digit are real register numbers. Make sure
7514 the server only sends such a packet if it knows the
7515 client understands it. */
7517 if (strprefix (p, p1, "thread"))
7518 event->ptid = read_ptid (++p1, &p);
7519 else if (strprefix (p, p1, "syscall_entry"))
7523 event->ws.kind = TARGET_WAITKIND_SYSCALL_ENTRY;
7524 p = unpack_varlen_hex (++p1, &sysno);
7525 event->ws.value.syscall_number = (int) sysno;
7527 else if (strprefix (p, p1, "syscall_return"))
7531 event->ws.kind = TARGET_WAITKIND_SYSCALL_RETURN;
7532 p = unpack_varlen_hex (++p1, &sysno);
7533 event->ws.value.syscall_number = (int) sysno;
7535 else if (strprefix (p, p1, "watch")
7536 || strprefix (p, p1, "rwatch")
7537 || strprefix (p, p1, "awatch"))
7539 event->stop_reason = TARGET_STOPPED_BY_WATCHPOINT;
7540 p = unpack_varlen_hex (++p1, &addr);
7541 event->watch_data_address = (CORE_ADDR) addr;
7543 else if (strprefix (p, p1, "swbreak"))
7545 event->stop_reason = TARGET_STOPPED_BY_SW_BREAKPOINT;
7547 /* Make sure the stub doesn't forget to indicate support
7549 if (packet_support (PACKET_swbreak_feature) != PACKET_ENABLE)
7550 error (_("Unexpected swbreak stop reason"));
7552 /* The value part is documented as "must be empty",
7553 though we ignore it, in case we ever decide to make
7554 use of it in a backward compatible way. */
7555 p = strchrnul (p1 + 1, ';');
7557 else if (strprefix (p, p1, "hwbreak"))
7559 event->stop_reason = TARGET_STOPPED_BY_HW_BREAKPOINT;
7561 /* Make sure the stub doesn't forget to indicate support
7563 if (packet_support (PACKET_hwbreak_feature) != PACKET_ENABLE)
7564 error (_("Unexpected hwbreak stop reason"));
7567 p = strchrnul (p1 + 1, ';');
7569 else if (strprefix (p, p1, "library"))
7571 event->ws.kind = TARGET_WAITKIND_LOADED;
7572 p = strchrnul (p1 + 1, ';');
7574 else if (strprefix (p, p1, "replaylog"))
7576 event->ws.kind = TARGET_WAITKIND_NO_HISTORY;
7577 /* p1 will indicate "begin" or "end", but it makes
7578 no difference for now, so ignore it. */
7579 p = strchrnul (p1 + 1, ';');
7581 else if (strprefix (p, p1, "core"))
7585 p = unpack_varlen_hex (++p1, &c);
7588 else if (strprefix (p, p1, "fork"))
7590 event->ws.value.related_pid = read_ptid (++p1, &p);
7591 event->ws.kind = TARGET_WAITKIND_FORKED;
7593 else if (strprefix (p, p1, "vfork"))
7595 event->ws.value.related_pid = read_ptid (++p1, &p);
7596 event->ws.kind = TARGET_WAITKIND_VFORKED;
7598 else if (strprefix (p, p1, "vforkdone"))
7600 event->ws.kind = TARGET_WAITKIND_VFORK_DONE;
7601 p = strchrnul (p1 + 1, ';');
7603 else if (strprefix (p, p1, "exec"))
7608 /* Determine the length of the execd pathname. */
7609 p = unpack_varlen_hex (++p1, &ignored);
7610 pathlen = (p - p1) / 2;
7612 /* Save the pathname for event reporting and for
7613 the next run command. */
7614 gdb::unique_xmalloc_ptr<char[]> pathname
7615 ((char *) xmalloc (pathlen + 1));
7616 hex2bin (p1, (gdb_byte *) pathname.get (), pathlen);
7617 pathname[pathlen] = '\0';
7619 /* This is freed during event handling. */
7620 event->ws.value.execd_pathname = pathname.release ();
7621 event->ws.kind = TARGET_WAITKIND_EXECD;
7623 /* Skip the registers included in this packet, since
7624 they may be for an architecture different from the
7625 one used by the original program. */
7628 else if (strprefix (p, p1, "create"))
7630 event->ws.kind = TARGET_WAITKIND_THREAD_CREATED;
7631 p = strchrnul (p1 + 1, ';');
7640 p = strchrnul (p1 + 1, ';');
7645 /* Maybe a real ``P'' register number. */
7646 p_temp = unpack_varlen_hex (p, &pnum);
7647 /* If the first invalid character is the colon, we got a
7648 register number. Otherwise, it's an unknown stop
7652 /* If we haven't parsed the event's thread yet, find
7653 it now, in order to find the architecture of the
7654 reported expedited registers. */
7655 if (event->ptid == null_ptid)
7657 /* If there is no thread-id information then leave
7658 the event->ptid as null_ptid. Later in
7659 process_stop_reply we will pick a suitable
7661 const char *thr = strstr (p1 + 1, ";thread:");
7663 event->ptid = read_ptid (thr + strlen (";thread:"),
7670 = (event->ptid == null_ptid
7672 : find_inferior_ptid (this, event->ptid));
7673 /* If this is the first time we learn anything
7674 about this process, skip the registers
7675 included in this packet, since we don't yet
7676 know which architecture to use to parse them.
7677 We'll determine the architecture later when
7678 we process the stop reply and retrieve the
7679 target description, via
7680 remote_notice_new_inferior ->
7681 post_create_inferior. */
7684 p = strchrnul (p1 + 1, ';');
7689 event->arch = inf->gdbarch;
7690 rsa = event->rs->get_remote_arch_state (event->arch);
7694 = packet_reg_from_pnum (event->arch, rsa, pnum);
7695 cached_reg_t cached_reg;
7698 error (_("Remote sent bad register number %s: %s\n\
7700 hex_string (pnum), p, buf);
7702 cached_reg.num = reg->regnum;
7703 cached_reg.data = (gdb_byte *)
7704 xmalloc (register_size (event->arch, reg->regnum));
7707 fieldsize = hex2bin (p, cached_reg.data,
7708 register_size (event->arch, reg->regnum));
7710 if (fieldsize < register_size (event->arch, reg->regnum))
7711 warning (_("Remote reply is too short: %s"), buf);
7713 event->regcache.push_back (cached_reg);
7717 /* Not a number. Silently skip unknown optional
7719 p = strchrnul (p1 + 1, ';');
7724 error (_("Remote register badly formatted: %s\nhere: %s"),
7729 if (event->ws.kind != TARGET_WAITKIND_IGNORE)
7733 case 'S': /* Old style status, just signal only. */
7737 event->ws.kind = TARGET_WAITKIND_STOPPED;
7738 sig = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
7739 if (GDB_SIGNAL_FIRST <= sig && sig < GDB_SIGNAL_LAST)
7740 event->ws.value.sig = (enum gdb_signal) sig;
7742 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
7745 case 'w': /* Thread exited. */
7749 event->ws.kind = TARGET_WAITKIND_THREAD_EXITED;
7750 p = unpack_varlen_hex (&buf[1], &value);
7751 event->ws.value.integer = value;
7753 error (_("stop reply packet badly formatted: %s"), buf);
7754 event->ptid = read_ptid (++p, NULL);
7757 case 'W': /* Target exited. */
7762 /* GDB used to accept only 2 hex chars here. Stubs should
7763 only send more if they detect GDB supports multi-process
7765 p = unpack_varlen_hex (&buf[1], &value);
7769 /* The remote process exited. */
7770 event->ws.kind = TARGET_WAITKIND_EXITED;
7771 event->ws.value.integer = value;
7775 /* The remote process exited with a signal. */
7776 event->ws.kind = TARGET_WAITKIND_SIGNALLED;
7777 if (GDB_SIGNAL_FIRST <= value && value < GDB_SIGNAL_LAST)
7778 event->ws.value.sig = (enum gdb_signal) value;
7780 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
7783 /* If no process is specified, return null_ptid, and let the
7784 caller figure out the right process to use. */
7794 else if (startswith (p, "process:"))
7798 p += sizeof ("process:") - 1;
7799 unpack_varlen_hex (p, &upid);
7803 error (_("unknown stop reply packet: %s"), buf);
7806 error (_("unknown stop reply packet: %s"), buf);
7807 event->ptid = ptid_t (pid);
7811 event->ws.kind = TARGET_WAITKIND_NO_RESUMED;
7812 event->ptid = minus_one_ptid;
7817 /* When the stub wants to tell GDB about a new notification reply, it
7818 sends a notification (%Stop, for example). Those can come it at
7819 any time, hence, we have to make sure that any pending
7820 putpkt/getpkt sequence we're making is finished, before querying
7821 the stub for more events with the corresponding ack command
7822 (vStopped, for example). E.g., if we started a vStopped sequence
7823 immediately upon receiving the notification, something like this
7831 1.6) <-- (registers reply to step #1.3)
7833 Obviously, the reply in step #1.6 would be unexpected to a vStopped
7836 To solve this, whenever we parse a %Stop notification successfully,
7837 we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
7838 doing whatever we were doing:
7844 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
7845 2.5) <-- (registers reply to step #2.3)
7847 Eventually after step #2.5, we return to the event loop, which
7848 notices there's an event on the
7849 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
7850 associated callback --- the function below. At this point, we're
7851 always safe to start a vStopped sequence. :
7854 2.7) <-- T05 thread:2
7860 remote_target::remote_notif_get_pending_events (notif_client *nc)
7862 struct remote_state *rs = get_remote_state ();
7864 if (rs->notif_state->pending_event[nc->id] != NULL)
7867 fprintf_unfiltered (gdb_stdlog,
7868 "notif: process: '%s' ack pending event\n",
7872 nc->ack (this, nc, rs->buf.data (),
7873 rs->notif_state->pending_event[nc->id]);
7874 rs->notif_state->pending_event[nc->id] = NULL;
7878 getpkt (&rs->buf, 0);
7879 if (strcmp (rs->buf.data (), "OK") == 0)
7882 remote_notif_ack (this, nc, rs->buf.data ());
7888 fprintf_unfiltered (gdb_stdlog,
7889 "notif: process: '%s' no pending reply\n",
7894 /* Wrapper around remote_target::remote_notif_get_pending_events to
7895 avoid having to export the whole remote_target class. */
7898 remote_notif_get_pending_events (remote_target *remote, notif_client *nc)
7900 remote->remote_notif_get_pending_events (nc);
7903 /* Called from process_stop_reply when the stop packet we are responding
7904 to didn't include a process-id or thread-id. STATUS is the stop event
7905 we are responding to.
7907 It is the task of this function to select a suitable thread (or process)
7908 and return its ptid, this is the thread (or process) we will assume the
7909 stop event came from.
7911 In some cases there isn't really any choice about which thread (or
7912 process) is selected, a basic remote with a single process containing a
7913 single thread might choose not to send any process-id or thread-id in
7914 its stop packets, this function will select and return the one and only
7917 However, if a target supports multiple threads (or processes) and still
7918 doesn't include a thread-id (or process-id) in its stop packet then
7919 first, this is a badly behaving target, and second, we're going to have
7920 to select a thread (or process) at random and use that. This function
7921 will print a warning to the user if it detects that there is the
7922 possibility that GDB is guessing which thread (or process) to
7925 Note that this is called before GDB fetches the updated thread list from the
7926 target. So it's possible for the stop reply to be ambiguous and for GDB to
7927 not realize it. For example, if there's initially one thread, the target
7928 spawns a second thread, and then sends a stop reply without an id that
7929 concerns the first thread. GDB will assume the stop reply is about the
7930 first thread - the only thread it knows about - without printing a warning.
7931 Anyway, if the remote meant for the stop reply to be about the second thread,
7932 then it would be really broken, because GDB doesn't know about that thread
7936 remote_target::select_thread_for_ambiguous_stop_reply
7937 (const struct target_waitstatus *status)
7939 /* Some stop events apply to all threads in an inferior, while others
7940 only apply to a single thread. */
7941 bool process_wide_stop
7942 = (status->kind == TARGET_WAITKIND_EXITED
7943 || status->kind == TARGET_WAITKIND_SIGNALLED);
7945 thread_info *first_resumed_thread = nullptr;
7946 bool ambiguous = false;
7948 /* Consider all non-exited threads of the target, find the first resumed
7950 for (thread_info *thr : all_non_exited_threads (this))
7952 remote_thread_info *remote_thr = get_remote_thread_info (thr);
7954 if (remote_thr->get_resume_state () != resume_state::RESUMED)
7957 if (first_resumed_thread == nullptr)
7958 first_resumed_thread = thr;
7959 else if (!process_wide_stop
7960 || first_resumed_thread->ptid.pid () != thr->ptid.pid ())
7964 gdb_assert (first_resumed_thread != nullptr);
7966 /* Warn if the remote target is sending ambiguous stop replies. */
7969 static bool warned = false;
7973 /* If you are seeing this warning then the remote target has
7974 stopped without specifying a thread-id, but the target
7975 does have multiple threads (or inferiors), and so GDB is
7976 having to guess which thread stopped.
7978 Examples of what might cause this are the target sending
7979 and 'S' stop packet, or a 'T' stop packet and not
7980 including a thread-id.
7982 Additionally, the target might send a 'W' or 'X packet
7983 without including a process-id, when the target has
7984 multiple running inferiors. */
7985 if (process_wide_stop)
7986 warning (_("multi-inferior target stopped without "
7987 "sending a process-id, using first "
7988 "non-exited inferior"));
7990 warning (_("multi-threaded target stopped without "
7991 "sending a thread-id, using first "
7992 "non-exited thread"));
7997 /* If this is a stop for all threads then don't use a particular threads
7998 ptid, instead create a new ptid where only the pid field is set. */
7999 if (process_wide_stop)
8000 return ptid_t (first_resumed_thread->ptid.pid ());
8002 return first_resumed_thread->ptid;
8005 /* Called when it is decided that STOP_REPLY holds the info of the
8006 event that is to be returned to the core. This function always
8007 destroys STOP_REPLY. */
8010 remote_target::process_stop_reply (struct stop_reply *stop_reply,
8011 struct target_waitstatus *status)
8013 *status = stop_reply->ws;
8014 ptid_t ptid = stop_reply->ptid;
8016 /* If no thread/process was reported by the stub then select a suitable
8018 if (ptid == null_ptid)
8019 ptid = select_thread_for_ambiguous_stop_reply (status);
8020 gdb_assert (ptid != null_ptid);
8022 if (status->kind != TARGET_WAITKIND_EXITED
8023 && status->kind != TARGET_WAITKIND_SIGNALLED
8024 && status->kind != TARGET_WAITKIND_NO_RESUMED)
8026 /* Expedited registers. */
8027 if (!stop_reply->regcache.empty ())
8029 struct regcache *regcache
8030 = get_thread_arch_regcache (this, ptid, stop_reply->arch);
8032 for (cached_reg_t ® : stop_reply->regcache)
8034 regcache->raw_supply (reg.num, reg.data);
8038 stop_reply->regcache.clear ();
8041 remote_notice_new_inferior (ptid, 0);
8042 remote_thread_info *remote_thr = get_remote_thread_info (this, ptid);
8043 remote_thr->core = stop_reply->core;
8044 remote_thr->stop_reason = stop_reply->stop_reason;
8045 remote_thr->watch_data_address = stop_reply->watch_data_address;
8047 if (target_is_non_stop_p ())
8049 /* If the target works in non-stop mode, a stop-reply indicates that
8050 only this thread stopped. */
8051 remote_thr->set_not_resumed ();
8055 /* If the target works in all-stop mode, a stop-reply indicates that
8056 all the target's threads stopped. */
8057 for (thread_info *tp : all_non_exited_threads (this))
8058 get_remote_thread_info (tp)->set_not_resumed ();
8066 /* The non-stop mode version of target_wait. */
8069 remote_target::wait_ns (ptid_t ptid, struct target_waitstatus *status,
8070 target_wait_flags options)
8072 struct remote_state *rs = get_remote_state ();
8073 struct stop_reply *stop_reply;
8077 /* If in non-stop mode, get out of getpkt even if a
8078 notification is received. */
8080 ret = getpkt_or_notif_sane (&rs->buf, 0 /* forever */, &is_notif);
8083 if (ret != -1 && !is_notif)
8086 case 'E': /* Error of some sort. */
8087 /* We're out of sync with the target now. Did it continue
8088 or not? We can't tell which thread it was in non-stop,
8089 so just ignore this. */
8090 warning (_("Remote failure reply: %s"), rs->buf.data ());
8092 case 'O': /* Console output. */
8093 remote_console_output (&rs->buf[1]);
8096 warning (_("Invalid remote reply: %s"), rs->buf.data ());
8100 /* Acknowledge a pending stop reply that may have arrived in the
8102 if (rs->notif_state->pending_event[notif_client_stop.id] != NULL)
8103 remote_notif_get_pending_events (¬if_client_stop);
8105 /* If indeed we noticed a stop reply, we're done. */
8106 stop_reply = queued_stop_reply (ptid);
8107 if (stop_reply != NULL)
8108 return process_stop_reply (stop_reply, status);
8110 /* Still no event. If we're just polling for an event, then
8111 return to the event loop. */
8112 if (options & TARGET_WNOHANG)
8114 status->kind = TARGET_WAITKIND_IGNORE;
8115 return minus_one_ptid;
8118 /* Otherwise do a blocking wait. */
8119 ret = getpkt_or_notif_sane (&rs->buf, 1 /* forever */, &is_notif);
8123 /* Return the first resumed thread. */
8126 first_remote_resumed_thread (remote_target *target)
8128 for (thread_info *tp : all_non_exited_threads (target, minus_one_ptid))
8134 /* Wait until the remote machine stops, then return, storing status in
8135 STATUS just as `wait' would. */
8138 remote_target::wait_as (ptid_t ptid, target_waitstatus *status,
8139 target_wait_flags options)
8141 struct remote_state *rs = get_remote_state ();
8142 ptid_t event_ptid = null_ptid;
8144 struct stop_reply *stop_reply;
8148 status->kind = TARGET_WAITKIND_IGNORE;
8149 status->value.integer = 0;
8151 stop_reply = queued_stop_reply (ptid);
8152 if (stop_reply != NULL)
8153 return process_stop_reply (stop_reply, status);
8155 if (rs->cached_wait_status)
8156 /* Use the cached wait status, but only once. */
8157 rs->cached_wait_status = 0;
8162 int forever = ((options & TARGET_WNOHANG) == 0
8163 && rs->wait_forever_enabled_p);
8165 if (!rs->waiting_for_stop_reply)
8167 status->kind = TARGET_WAITKIND_NO_RESUMED;
8168 return minus_one_ptid;
8171 /* FIXME: cagney/1999-09-27: If we're in async mode we should
8172 _never_ wait for ever -> test on target_is_async_p().
8173 However, before we do that we need to ensure that the caller
8174 knows how to take the target into/out of async mode. */
8175 ret = getpkt_or_notif_sane (&rs->buf, forever, &is_notif);
8177 /* GDB gets a notification. Return to core as this event is
8179 if (ret != -1 && is_notif)
8180 return minus_one_ptid;
8182 if (ret == -1 && (options & TARGET_WNOHANG) != 0)
8183 return minus_one_ptid;
8186 buf = rs->buf.data ();
8188 /* Assume that the target has acknowledged Ctrl-C unless we receive
8189 an 'F' or 'O' packet. */
8190 if (buf[0] != 'F' && buf[0] != 'O')
8191 rs->ctrlc_pending_p = 0;
8195 case 'E': /* Error of some sort. */
8196 /* We're out of sync with the target now. Did it continue or
8197 not? Not is more likely, so report a stop. */
8198 rs->waiting_for_stop_reply = 0;
8200 warning (_("Remote failure reply: %s"), buf);
8201 status->kind = TARGET_WAITKIND_STOPPED;
8202 status->value.sig = GDB_SIGNAL_0;
8204 case 'F': /* File-I/O request. */
8205 /* GDB may access the inferior memory while handling the File-I/O
8206 request, but we don't want GDB accessing memory while waiting
8207 for a stop reply. See the comments in putpkt_binary. Set
8208 waiting_for_stop_reply to 0 temporarily. */
8209 rs->waiting_for_stop_reply = 0;
8210 remote_fileio_request (this, buf, rs->ctrlc_pending_p);
8211 rs->ctrlc_pending_p = 0;
8212 /* GDB handled the File-I/O request, and the target is running
8213 again. Keep waiting for events. */
8214 rs->waiting_for_stop_reply = 1;
8216 case 'N': case 'T': case 'S': case 'X': case 'W':
8218 /* There is a stop reply to handle. */
8219 rs->waiting_for_stop_reply = 0;
8222 = (struct stop_reply *) remote_notif_parse (this,
8226 event_ptid = process_stop_reply (stop_reply, status);
8229 case 'O': /* Console output. */
8230 remote_console_output (buf + 1);
8233 if (rs->last_sent_signal != GDB_SIGNAL_0)
8235 /* Zero length reply means that we tried 'S' or 'C' and the
8236 remote system doesn't support it. */
8237 target_terminal::ours_for_output ();
8239 ("Can't send signals to this remote system. %s not sent.\n",
8240 gdb_signal_to_name (rs->last_sent_signal));
8241 rs->last_sent_signal = GDB_SIGNAL_0;
8242 target_terminal::inferior ();
8244 strcpy (buf, rs->last_sent_step ? "s" : "c");
8250 warning (_("Invalid remote reply: %s"), buf);
8254 if (status->kind == TARGET_WAITKIND_NO_RESUMED)
8255 return minus_one_ptid;
8256 else if (status->kind == TARGET_WAITKIND_IGNORE)
8258 /* Nothing interesting happened. If we're doing a non-blocking
8259 poll, we're done. Otherwise, go back to waiting. */
8260 if (options & TARGET_WNOHANG)
8261 return minus_one_ptid;
8265 else if (status->kind != TARGET_WAITKIND_EXITED
8266 && status->kind != TARGET_WAITKIND_SIGNALLED)
8268 if (event_ptid != null_ptid)
8269 record_currthread (rs, event_ptid);
8271 event_ptid = first_remote_resumed_thread (this);
8275 /* A process exit. Invalidate our notion of current thread. */
8276 record_currthread (rs, minus_one_ptid);
8277 /* It's possible that the packet did not include a pid. */
8278 if (event_ptid == null_ptid)
8279 event_ptid = first_remote_resumed_thread (this);
8280 /* EVENT_PTID could still be NULL_PTID. Double-check. */
8281 if (event_ptid == null_ptid)
8282 event_ptid = magic_null_ptid;
8288 /* Wait until the remote machine stops, then return, storing status in
8289 STATUS just as `wait' would. */
8292 remote_target::wait (ptid_t ptid, struct target_waitstatus *status,
8293 target_wait_flags options)
8295 REMOTE_SCOPED_DEBUG_ENTER_EXIT;
8297 remote_state *rs = get_remote_state ();
8299 /* Start by clearing the flag that asks for our wait method to be called,
8300 we'll mark it again at the end if needed. */
8301 if (target_is_async_p ())
8302 clear_async_event_handler (rs->remote_async_inferior_event_token);
8306 if (target_is_non_stop_p ())
8307 event_ptid = wait_ns (ptid, status, options);
8309 event_ptid = wait_as (ptid, status, options);
8311 if (target_is_async_p ())
8313 /* If there are events left in the queue, or unacknowledged
8314 notifications, then tell the event loop to call us again. */
8315 if (!rs->stop_reply_queue.empty ()
8316 || rs->notif_state->pending_event[notif_client_stop.id] != nullptr)
8317 mark_async_event_handler (rs->remote_async_inferior_event_token);
8323 /* Fetch a single register using a 'p' packet. */
8326 remote_target::fetch_register_using_p (struct regcache *regcache,
8329 struct gdbarch *gdbarch = regcache->arch ();
8330 struct remote_state *rs = get_remote_state ();
8332 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
8335 if (packet_support (PACKET_p) == PACKET_DISABLE)
8338 if (reg->pnum == -1)
8341 p = rs->buf.data ();
8343 p += hexnumstr (p, reg->pnum);
8346 getpkt (&rs->buf, 0);
8348 buf = rs->buf.data ();
8350 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_p]))
8354 case PACKET_UNKNOWN:
8357 error (_("Could not fetch register \"%s\"; remote failure reply '%s'"),
8358 gdbarch_register_name (regcache->arch (),
8363 /* If this register is unfetchable, tell the regcache. */
8366 regcache->raw_supply (reg->regnum, NULL);
8370 /* Otherwise, parse and supply the value. */
8376 error (_("fetch_register_using_p: early buf termination"));
8378 regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
8381 regcache->raw_supply (reg->regnum, regp);
8385 /* Fetch the registers included in the target's 'g' packet. */
8388 remote_target::send_g_packet ()
8390 struct remote_state *rs = get_remote_state ();
8393 xsnprintf (rs->buf.data (), get_remote_packet_size (), "g");
8395 getpkt (&rs->buf, 0);
8396 if (packet_check_result (rs->buf) == PACKET_ERROR)
8397 error (_("Could not read registers; remote failure reply '%s'"),
8400 /* We can get out of synch in various cases. If the first character
8401 in the buffer is not a hex character, assume that has happened
8402 and try to fetch another packet to read. */
8403 while ((rs->buf[0] < '0' || rs->buf[0] > '9')
8404 && (rs->buf[0] < 'A' || rs->buf[0] > 'F')
8405 && (rs->buf[0] < 'a' || rs->buf[0] > 'f')
8406 && rs->buf[0] != 'x') /* New: unavailable register value. */
8408 remote_debug_printf ("Bad register packet; fetching a new packet");
8409 getpkt (&rs->buf, 0);
8412 buf_len = strlen (rs->buf.data ());
8414 /* Sanity check the received packet. */
8415 if (buf_len % 2 != 0)
8416 error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf.data ());
8422 remote_target::process_g_packet (struct regcache *regcache)
8424 struct gdbarch *gdbarch = regcache->arch ();
8425 struct remote_state *rs = get_remote_state ();
8426 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
8431 buf_len = strlen (rs->buf.data ());
8433 /* Further sanity checks, with knowledge of the architecture. */
8434 if (buf_len > 2 * rsa->sizeof_g_packet)
8435 error (_("Remote 'g' packet reply is too long (expected %ld bytes, got %d "
8437 rsa->sizeof_g_packet, buf_len / 2,
8440 /* Save the size of the packet sent to us by the target. It is used
8441 as a heuristic when determining the max size of packets that the
8442 target can safely receive. */
8443 if (rsa->actual_register_packet_size == 0)
8444 rsa->actual_register_packet_size = buf_len;
8446 /* If this is smaller than we guessed the 'g' packet would be,
8447 update our records. A 'g' reply that doesn't include a register's
8448 value implies either that the register is not available, or that
8449 the 'p' packet must be used. */
8450 if (buf_len < 2 * rsa->sizeof_g_packet)
8452 long sizeof_g_packet = buf_len / 2;
8454 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
8456 long offset = rsa->regs[i].offset;
8457 long reg_size = register_size (gdbarch, i);
8459 if (rsa->regs[i].pnum == -1)
8462 if (offset >= sizeof_g_packet)
8463 rsa->regs[i].in_g_packet = 0;
8464 else if (offset + reg_size > sizeof_g_packet)
8465 error (_("Truncated register %d in remote 'g' packet"), i);
8467 rsa->regs[i].in_g_packet = 1;
8470 /* Looks valid enough, we can assume this is the correct length
8471 for a 'g' packet. It's important not to adjust
8472 rsa->sizeof_g_packet if we have truncated registers otherwise
8473 this "if" won't be run the next time the method is called
8474 with a packet of the same size and one of the internal errors
8475 below will trigger instead. */
8476 rsa->sizeof_g_packet = sizeof_g_packet;
8479 regs = (char *) alloca (rsa->sizeof_g_packet);
8481 /* Unimplemented registers read as all bits zero. */
8482 memset (regs, 0, rsa->sizeof_g_packet);
8484 /* Reply describes registers byte by byte, each byte encoded as two
8485 hex characters. Suck them all up, then supply them to the
8486 register cacheing/storage mechanism. */
8488 p = rs->buf.data ();
8489 for (i = 0; i < rsa->sizeof_g_packet; i++)
8491 if (p[0] == 0 || p[1] == 0)
8492 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
8493 internal_error (__FILE__, __LINE__,
8494 _("unexpected end of 'g' packet reply"));
8496 if (p[0] == 'x' && p[1] == 'x')
8497 regs[i] = 0; /* 'x' */
8499 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
8503 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
8505 struct packet_reg *r = &rsa->regs[i];
8506 long reg_size = register_size (gdbarch, i);
8510 if ((r->offset + reg_size) * 2 > strlen (rs->buf.data ()))
8511 /* This shouldn't happen - we adjusted in_g_packet above. */
8512 internal_error (__FILE__, __LINE__,
8513 _("unexpected end of 'g' packet reply"));
8514 else if (rs->buf[r->offset * 2] == 'x')
8516 gdb_assert (r->offset * 2 < strlen (rs->buf.data ()));
8517 /* The register isn't available, mark it as such (at
8518 the same time setting the value to zero). */
8519 regcache->raw_supply (r->regnum, NULL);
8522 regcache->raw_supply (r->regnum, regs + r->offset);
8528 remote_target::fetch_registers_using_g (struct regcache *regcache)
8531 process_g_packet (regcache);
8534 /* Make the remote selected traceframe match GDB's selected
8538 remote_target::set_remote_traceframe ()
8541 struct remote_state *rs = get_remote_state ();
8543 if (rs->remote_traceframe_number == get_traceframe_number ())
8546 /* Avoid recursion, remote_trace_find calls us again. */
8547 rs->remote_traceframe_number = get_traceframe_number ();
8549 newnum = target_trace_find (tfind_number,
8550 get_traceframe_number (), 0, 0, NULL);
8552 /* Should not happen. If it does, all bets are off. */
8553 if (newnum != get_traceframe_number ())
8554 warning (_("could not set remote traceframe"));
8558 remote_target::fetch_registers (struct regcache *regcache, int regnum)
8560 struct gdbarch *gdbarch = regcache->arch ();
8561 struct remote_state *rs = get_remote_state ();
8562 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
8565 set_remote_traceframe ();
8566 set_general_thread (regcache->ptid ());
8570 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
8572 gdb_assert (reg != NULL);
8574 /* If this register might be in the 'g' packet, try that first -
8575 we are likely to read more than one register. If this is the
8576 first 'g' packet, we might be overly optimistic about its
8577 contents, so fall back to 'p'. */
8578 if (reg->in_g_packet)
8580 fetch_registers_using_g (regcache);
8581 if (reg->in_g_packet)
8585 if (fetch_register_using_p (regcache, reg))
8588 /* This register is not available. */
8589 regcache->raw_supply (reg->regnum, NULL);
8594 fetch_registers_using_g (regcache);
8596 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
8597 if (!rsa->regs[i].in_g_packet)
8598 if (!fetch_register_using_p (regcache, &rsa->regs[i]))
8600 /* This register is not available. */
8601 regcache->raw_supply (i, NULL);
8605 /* Prepare to store registers. Since we may send them all (using a
8606 'G' request), we have to read out the ones we don't want to change
8610 remote_target::prepare_to_store (struct regcache *regcache)
8612 struct remote_state *rs = get_remote_state ();
8613 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
8616 /* Make sure the entire registers array is valid. */
8617 switch (packet_support (PACKET_P))
8619 case PACKET_DISABLE:
8620 case PACKET_SUPPORT_UNKNOWN:
8621 /* Make sure all the necessary registers are cached. */
8622 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
8623 if (rsa->regs[i].in_g_packet)
8624 regcache->raw_update (rsa->regs[i].regnum);
8631 /* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
8632 packet was not recognized. */
8635 remote_target::store_register_using_P (const struct regcache *regcache,
8638 struct gdbarch *gdbarch = regcache->arch ();
8639 struct remote_state *rs = get_remote_state ();
8640 /* Try storing a single register. */
8641 char *buf = rs->buf.data ();
8642 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
8645 if (packet_support (PACKET_P) == PACKET_DISABLE)
8648 if (reg->pnum == -1)
8651 xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
8652 p = buf + strlen (buf);
8653 regcache->raw_collect (reg->regnum, regp);
8654 bin2hex (regp, p, register_size (gdbarch, reg->regnum));
8656 getpkt (&rs->buf, 0);
8658 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P]))
8663 error (_("Could not write register \"%s\"; remote failure reply '%s'"),
8664 gdbarch_register_name (gdbarch, reg->regnum), rs->buf.data ());
8665 case PACKET_UNKNOWN:
8668 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
8672 /* Store register REGNUM, or all registers if REGNUM == -1, from the
8673 contents of the register cache buffer. FIXME: ignores errors. */
8676 remote_target::store_registers_using_G (const struct regcache *regcache)
8678 struct remote_state *rs = get_remote_state ();
8679 remote_arch_state *rsa = rs->get_remote_arch_state (regcache->arch ());
8683 /* Extract all the registers in the regcache copying them into a
8688 regs = (gdb_byte *) alloca (rsa->sizeof_g_packet);
8689 memset (regs, 0, rsa->sizeof_g_packet);
8690 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
8692 struct packet_reg *r = &rsa->regs[i];
8695 regcache->raw_collect (r->regnum, regs + r->offset);
8699 /* Command describes registers byte by byte,
8700 each byte encoded as two hex characters. */
8701 p = rs->buf.data ();
8703 bin2hex (regs, p, rsa->sizeof_g_packet);
8705 getpkt (&rs->buf, 0);
8706 if (packet_check_result (rs->buf) == PACKET_ERROR)
8707 error (_("Could not write registers; remote failure reply '%s'"),
8711 /* Store register REGNUM, or all registers if REGNUM == -1, from the contents
8712 of the register cache buffer. FIXME: ignores errors. */
8715 remote_target::store_registers (struct regcache *regcache, int regnum)
8717 struct gdbarch *gdbarch = regcache->arch ();
8718 struct remote_state *rs = get_remote_state ();
8719 remote_arch_state *rsa = rs->get_remote_arch_state (gdbarch);
8722 set_remote_traceframe ();
8723 set_general_thread (regcache->ptid ());
8727 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
8729 gdb_assert (reg != NULL);
8731 /* Always prefer to store registers using the 'P' packet if
8732 possible; we often change only a small number of registers.
8733 Sometimes we change a larger number; we'd need help from a
8734 higher layer to know to use 'G'. */
8735 if (store_register_using_P (regcache, reg))
8738 /* For now, don't complain if we have no way to write the
8739 register. GDB loses track of unavailable registers too
8740 easily. Some day, this may be an error. We don't have
8741 any way to read the register, either... */
8742 if (!reg->in_g_packet)
8745 store_registers_using_G (regcache);
8749 store_registers_using_G (regcache);
8751 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
8752 if (!rsa->regs[i].in_g_packet)
8753 if (!store_register_using_P (regcache, &rsa->regs[i]))
8754 /* See above for why we do not issue an error here. */
8759 /* Return the number of hex digits in num. */
8762 hexnumlen (ULONGEST num)
8766 for (i = 0; num != 0; i++)
8769 return std::max (i, 1);
8772 /* Set BUF to the minimum number of hex digits representing NUM. */
8775 hexnumstr (char *buf, ULONGEST num)
8777 int len = hexnumlen (num);
8779 return hexnumnstr (buf, num, len);
8783 /* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
8786 hexnumnstr (char *buf, ULONGEST num, int width)
8792 for (i = width - 1; i >= 0; i--)
8794 buf[i] = "0123456789abcdef"[(num & 0xf)];
8801 /* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
8804 remote_address_masked (CORE_ADDR addr)
8806 unsigned int address_size = remote_address_size;
8808 /* If "remoteaddresssize" was not set, default to target address size. */
8810 address_size = gdbarch_addr_bit (target_gdbarch ());
8812 if (address_size > 0
8813 && address_size < (sizeof (ULONGEST) * 8))
8815 /* Only create a mask when that mask can safely be constructed
8816 in a ULONGEST variable. */
8819 mask = (mask << address_size) - 1;
8825 /* Determine whether the remote target supports binary downloading.
8826 This is accomplished by sending a no-op memory write of zero length
8827 to the target at the specified address. It does not suffice to send
8828 the whole packet, since many stubs strip the eighth bit and
8829 subsequently compute a wrong checksum, which causes real havoc with
8832 NOTE: This can still lose if the serial line is not eight-bit
8833 clean. In cases like this, the user should clear "remote
8837 remote_target::check_binary_download (CORE_ADDR addr)
8839 struct remote_state *rs = get_remote_state ();
8841 switch (packet_support (PACKET_X))
8843 case PACKET_DISABLE:
8847 case PACKET_SUPPORT_UNKNOWN:
8851 p = rs->buf.data ();
8853 p += hexnumstr (p, (ULONGEST) addr);
8855 p += hexnumstr (p, (ULONGEST) 0);
8859 putpkt_binary (rs->buf.data (), (int) (p - rs->buf.data ()));
8860 getpkt (&rs->buf, 0);
8862 if (rs->buf[0] == '\0')
8864 remote_debug_printf ("binary downloading NOT supported by target");
8865 remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
8869 remote_debug_printf ("binary downloading supported by target");
8870 remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
8877 /* Helper function to resize the payload in order to try to get a good
8878 alignment. We try to write an amount of data such that the next write will
8879 start on an address aligned on REMOTE_ALIGN_WRITES. */
8882 align_for_efficient_write (int todo, CORE_ADDR memaddr)
8884 return ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr;
8887 /* Write memory data directly to the remote machine.
8888 This does not inform the data cache; the data cache uses this.
8889 HEADER is the starting part of the packet.
8890 MEMADDR is the address in the remote memory space.
8891 MYADDR is the address of the buffer in our space.
8892 LEN_UNITS is the number of addressable units to write.
8893 UNIT_SIZE is the length in bytes of an addressable unit.
8894 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
8895 should send data as binary ('X'), or hex-encoded ('M').
8897 The function creates packet of the form
8898 <HEADER><ADDRESS>,<LENGTH>:<DATA>
8900 where encoding of <DATA> is terminated by PACKET_FORMAT.
8902 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
8905 Return the transferred status, error or OK (an
8906 'enum target_xfer_status' value). Save the number of addressable units
8907 transferred in *XFERED_LEN_UNITS. Only transfer a single packet.
8909 On a platform with an addressable memory size of 2 bytes (UNIT_SIZE == 2), an
8910 exchange between gdb and the stub could look like (?? in place of the
8916 -> $M1000,3:eeeeffffeeee#??
8920 <- eeeeffffeeeedddd */
8923 remote_target::remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
8924 const gdb_byte *myaddr,
8927 ULONGEST *xfered_len_units,
8928 char packet_format, int use_length)
8930 struct remote_state *rs = get_remote_state ();
8936 int payload_capacity_bytes;
8937 int payload_length_bytes;
8939 if (packet_format != 'X' && packet_format != 'M')
8940 internal_error (__FILE__, __LINE__,
8941 _("remote_write_bytes_aux: bad packet format"));
8944 return TARGET_XFER_EOF;
8946 payload_capacity_bytes = get_memory_write_packet_size ();
8948 /* The packet buffer will be large enough for the payload;
8949 get_memory_packet_size ensures this. */
8952 /* Compute the size of the actual payload by subtracting out the
8953 packet header and footer overhead: "$M<memaddr>,<len>:...#nn". */
8955 payload_capacity_bytes -= strlen ("$,:#NN");
8957 /* The comma won't be used. */
8958 payload_capacity_bytes += 1;
8959 payload_capacity_bytes -= strlen (header);
8960 payload_capacity_bytes -= hexnumlen (memaddr);
8962 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
8964 strcat (rs->buf.data (), header);
8965 p = rs->buf.data () + strlen (header);
8967 /* Compute a best guess of the number of bytes actually transfered. */
8968 if (packet_format == 'X')
8970 /* Best guess at number of bytes that will fit. */
8971 todo_units = std::min (len_units,
8972 (ULONGEST) payload_capacity_bytes / unit_size);
8974 payload_capacity_bytes -= hexnumlen (todo_units);
8975 todo_units = std::min (todo_units, payload_capacity_bytes / unit_size);
8979 /* Number of bytes that will fit. */
8981 = std::min (len_units,
8982 (ULONGEST) (payload_capacity_bytes / unit_size) / 2);
8984 payload_capacity_bytes -= hexnumlen (todo_units);
8985 todo_units = std::min (todo_units,
8986 (payload_capacity_bytes / unit_size) / 2);
8989 if (todo_units <= 0)
8990 internal_error (__FILE__, __LINE__,
8991 _("minimum packet size too small to write data"));
8993 /* If we already need another packet, then try to align the end
8994 of this packet to a useful boundary. */
8995 if (todo_units > 2 * REMOTE_ALIGN_WRITES && todo_units < len_units)
8996 todo_units = align_for_efficient_write (todo_units, memaddr);
8998 /* Append "<memaddr>". */
8999 memaddr = remote_address_masked (memaddr);
9000 p += hexnumstr (p, (ULONGEST) memaddr);
9007 /* Append the length and retain its location and size. It may need to be
9008 adjusted once the packet body has been created. */
9010 plenlen = hexnumstr (p, (ULONGEST) todo_units);
9018 /* Append the packet body. */
9019 if (packet_format == 'X')
9021 /* Binary mode. Send target system values byte by byte, in
9022 increasing byte addresses. Only escape certain critical
9024 payload_length_bytes =
9025 remote_escape_output (myaddr, todo_units, unit_size, (gdb_byte *) p,
9026 &units_written, payload_capacity_bytes);
9028 /* If not all TODO units fit, then we'll need another packet. Make
9029 a second try to keep the end of the packet aligned. Don't do
9030 this if the packet is tiny. */
9031 if (units_written < todo_units && units_written > 2 * REMOTE_ALIGN_WRITES)
9035 new_todo_units = align_for_efficient_write (units_written, memaddr);
9037 if (new_todo_units != units_written)
9038 payload_length_bytes =
9039 remote_escape_output (myaddr, new_todo_units, unit_size,
9040 (gdb_byte *) p, &units_written,
9041 payload_capacity_bytes);
9044 p += payload_length_bytes;
9045 if (use_length && units_written < todo_units)
9047 /* Escape chars have filled up the buffer prematurely,
9048 and we have actually sent fewer units than planned.
9049 Fix-up the length field of the packet. Use the same
9050 number of characters as before. */
9051 plen += hexnumnstr (plen, (ULONGEST) units_written,
9053 *plen = ':'; /* overwrite \0 from hexnumnstr() */
9058 /* Normal mode: Send target system values byte by byte, in
9059 increasing byte addresses. Each byte is encoded as a two hex
9061 p += 2 * bin2hex (myaddr, p, todo_units * unit_size);
9062 units_written = todo_units;
9065 putpkt_binary (rs->buf.data (), (int) (p - rs->buf.data ()));
9066 getpkt (&rs->buf, 0);
9068 if (rs->buf[0] == 'E')
9069 return TARGET_XFER_E_IO;
9071 /* Return UNITS_WRITTEN, not TODO_UNITS, in case escape chars caused us to
9072 send fewer units than we'd planned. */
9073 *xfered_len_units = (ULONGEST) units_written;
9074 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
9077 /* Write memory data directly to the remote machine.
9078 This does not inform the data cache; the data cache uses this.
9079 MEMADDR is the address in the remote memory space.
9080 MYADDR is the address of the buffer in our space.
9081 LEN is the number of bytes.
9083 Return the transferred status, error or OK (an
9084 'enum target_xfer_status' value). Save the number of bytes
9085 transferred in *XFERED_LEN. Only transfer a single packet. */
9088 remote_target::remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr,
9089 ULONGEST len, int unit_size,
9090 ULONGEST *xfered_len)
9092 const char *packet_format = NULL;
9094 /* Check whether the target supports binary download. */
9095 check_binary_download (memaddr);
9097 switch (packet_support (PACKET_X))
9100 packet_format = "X";
9102 case PACKET_DISABLE:
9103 packet_format = "M";
9105 case PACKET_SUPPORT_UNKNOWN:
9106 internal_error (__FILE__, __LINE__,
9107 _("remote_write_bytes: bad internal state"));
9109 internal_error (__FILE__, __LINE__, _("bad switch"));
9112 return remote_write_bytes_aux (packet_format,
9113 memaddr, myaddr, len, unit_size, xfered_len,
9114 packet_format[0], 1);
9117 /* Read memory data directly from the remote machine.
9118 This does not use the data cache; the data cache uses this.
9119 MEMADDR is the address in the remote memory space.
9120 MYADDR is the address of the buffer in our space.
9121 LEN_UNITS is the number of addressable memory units to read..
9122 UNIT_SIZE is the length in bytes of an addressable unit.
9124 Return the transferred status, error or OK (an
9125 'enum target_xfer_status' value). Save the number of bytes
9126 transferred in *XFERED_LEN_UNITS.
9128 See the comment of remote_write_bytes_aux for an example of
9129 memory read/write exchange between gdb and the stub. */
9132 remote_target::remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr,
9134 int unit_size, ULONGEST *xfered_len_units)
9136 struct remote_state *rs = get_remote_state ();
9137 int buf_size_bytes; /* Max size of packet output buffer. */
9142 buf_size_bytes = get_memory_read_packet_size ();
9143 /* The packet buffer will be large enough for the payload;
9144 get_memory_packet_size ensures this. */
9146 /* Number of units that will fit. */
9147 todo_units = std::min (len_units,
9148 (ULONGEST) (buf_size_bytes / unit_size) / 2);
9150 /* Construct "m"<memaddr>","<len>". */
9151 memaddr = remote_address_masked (memaddr);
9152 p = rs->buf.data ();
9154 p += hexnumstr (p, (ULONGEST) memaddr);
9156 p += hexnumstr (p, (ULONGEST) todo_units);
9159 getpkt (&rs->buf, 0);
9160 if (rs->buf[0] == 'E'
9161 && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2])
9162 && rs->buf[3] == '\0')
9163 return TARGET_XFER_E_IO;
9164 /* Reply describes memory byte by byte, each byte encoded as two hex
9166 p = rs->buf.data ();
9167 decoded_bytes = hex2bin (p, myaddr, todo_units * unit_size);
9168 /* Return what we have. Let higher layers handle partial reads. */
9169 *xfered_len_units = (ULONGEST) (decoded_bytes / unit_size);
9170 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
9173 /* Using the set of read-only target sections of remote, read live
9176 For interface/parameters/return description see target.h,
9180 remote_target::remote_xfer_live_readonly_partial (gdb_byte *readbuf,
9184 ULONGEST *xfered_len)
9186 const struct target_section *secp;
9188 secp = target_section_by_addr (this, memaddr);
9190 && (bfd_section_flags (secp->the_bfd_section) & SEC_READONLY))
9192 ULONGEST memend = memaddr + len;
9194 const target_section_table *table = target_get_section_table (this);
9195 for (const target_section &p : *table)
9197 if (memaddr >= p.addr)
9199 if (memend <= p.endaddr)
9201 /* Entire transfer is within this section. */
9202 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
9205 else if (memaddr >= p.endaddr)
9207 /* This section ends before the transfer starts. */
9212 /* This section overlaps the transfer. Just do half. */
9213 len = p.endaddr - memaddr;
9214 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
9221 return TARGET_XFER_EOF;
9224 /* Similar to remote_read_bytes_1, but it reads from the remote stub
9225 first if the requested memory is unavailable in traceframe.
9226 Otherwise, fall back to remote_read_bytes_1. */
9229 remote_target::remote_read_bytes (CORE_ADDR memaddr,
9230 gdb_byte *myaddr, ULONGEST len, int unit_size,
9231 ULONGEST *xfered_len)
9234 return TARGET_XFER_EOF;
9236 if (get_traceframe_number () != -1)
9238 std::vector<mem_range> available;
9240 /* If we fail to get the set of available memory, then the
9241 target does not support querying traceframe info, and so we
9242 attempt reading from the traceframe anyway (assuming the
9243 target implements the old QTro packet then). */
9244 if (traceframe_available_memory (&available, memaddr, len))
9246 if (available.empty () || available[0].start != memaddr)
9248 enum target_xfer_status res;
9250 /* Don't read into the traceframe's available
9252 if (!available.empty ())
9254 LONGEST oldlen = len;
9256 len = available[0].start - memaddr;
9257 gdb_assert (len <= oldlen);
9260 /* This goes through the topmost target again. */
9261 res = remote_xfer_live_readonly_partial (myaddr, memaddr,
9262 len, unit_size, xfered_len);
9263 if (res == TARGET_XFER_OK)
9264 return TARGET_XFER_OK;
9267 /* No use trying further, we know some memory starting
9268 at MEMADDR isn't available. */
9270 return (*xfered_len != 0) ?
9271 TARGET_XFER_UNAVAILABLE : TARGET_XFER_EOF;
9275 /* Don't try to read more than how much is available, in
9276 case the target implements the deprecated QTro packet to
9277 cater for older GDBs (the target's knowledge of read-only
9278 sections may be outdated by now). */
9279 len = available[0].length;
9283 return remote_read_bytes_1 (memaddr, myaddr, len, unit_size, xfered_len);
9288 /* Sends a packet with content determined by the printf format string
9289 FORMAT and the remaining arguments, then gets the reply. Returns
9290 whether the packet was a success, a failure, or unknown. */
9293 remote_target::remote_send_printf (const char *format, ...)
9295 struct remote_state *rs = get_remote_state ();
9296 int max_size = get_remote_packet_size ();
9299 va_start (ap, format);
9302 int size = vsnprintf (rs->buf.data (), max_size, format, ap);
9306 if (size >= max_size)
9307 internal_error (__FILE__, __LINE__, _("Too long remote packet."));
9309 if (putpkt (rs->buf) < 0)
9310 error (_("Communication problem with target."));
9313 getpkt (&rs->buf, 0);
9315 return packet_check_result (rs->buf);
9318 /* Flash writing can take quite some time. We'll set
9319 effectively infinite timeout for flash operations.
9320 In future, we'll need to decide on a better approach. */
9321 static const int remote_flash_timeout = 1000;
9324 remote_target::flash_erase (ULONGEST address, LONGEST length)
9326 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
9327 enum packet_result ret;
9328 scoped_restore restore_timeout
9329 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
9331 ret = remote_send_printf ("vFlashErase:%s,%s",
9332 phex (address, addr_size),
9336 case PACKET_UNKNOWN:
9337 error (_("Remote target does not support flash erase"));
9339 error (_("Error erasing flash with vFlashErase packet"));
9346 remote_target::remote_flash_write (ULONGEST address,
9347 ULONGEST length, ULONGEST *xfered_len,
9348 const gdb_byte *data)
9350 scoped_restore restore_timeout
9351 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
9352 return remote_write_bytes_aux ("vFlashWrite:", address, data, length, 1,
9357 remote_target::flash_done ()
9361 scoped_restore restore_timeout
9362 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
9364 ret = remote_send_printf ("vFlashDone");
9368 case PACKET_UNKNOWN:
9369 error (_("Remote target does not support vFlashDone"));
9371 error (_("Error finishing flash operation"));
9378 remote_target::files_info ()
9380 puts_filtered ("Debugging a target over a serial line.\n");
9383 /* Stuff for dealing with the packets which are part of this protocol.
9384 See comment at top of file for details. */
9386 /* Close/unpush the remote target, and throw a TARGET_CLOSE_ERROR
9387 error to higher layers. Called when a serial error is detected.
9388 The exception message is STRING, followed by a colon and a blank,
9389 the system error message for errno at function entry and final dot
9390 for output compatibility with throw_perror_with_name. */
9393 unpush_and_perror (remote_target *target, const char *string)
9395 int saved_errno = errno;
9397 remote_unpush_target (target);
9398 throw_error (TARGET_CLOSE_ERROR, "%s: %s.", string,
9399 safe_strerror (saved_errno));
9402 /* Read a single character from the remote end. The current quit
9403 handler is overridden to avoid quitting in the middle of packet
9404 sequence, as that would break communication with the remote server.
9405 See remote_serial_quit_handler for more detail. */
9408 remote_target::readchar (int timeout)
9411 struct remote_state *rs = get_remote_state ();
9414 scoped_restore restore_quit_target
9415 = make_scoped_restore (&curr_quit_handler_target, this);
9416 scoped_restore restore_quit
9417 = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
9419 rs->got_ctrlc_during_io = 0;
9421 ch = serial_readchar (rs->remote_desc, timeout);
9423 if (rs->got_ctrlc_during_io)
9430 switch ((enum serial_rc) ch)
9433 remote_unpush_target (this);
9434 throw_error (TARGET_CLOSE_ERROR, _("Remote connection closed"));
9437 unpush_and_perror (this, _("Remote communication error. "
9438 "Target disconnected."));
9440 case SERIAL_TIMEOUT:
9446 /* Wrapper for serial_write that closes the target and throws if
9447 writing fails. The current quit handler is overridden to avoid
9448 quitting in the middle of packet sequence, as that would break
9449 communication with the remote server. See
9450 remote_serial_quit_handler for more detail. */
9453 remote_target::remote_serial_write (const char *str, int len)
9455 struct remote_state *rs = get_remote_state ();
9457 scoped_restore restore_quit_target
9458 = make_scoped_restore (&curr_quit_handler_target, this);
9459 scoped_restore restore_quit
9460 = make_scoped_restore (&quit_handler, ::remote_serial_quit_handler);
9462 rs->got_ctrlc_during_io = 0;
9464 if (serial_write (rs->remote_desc, str, len))
9466 unpush_and_perror (this, _("Remote communication error. "
9467 "Target disconnected."));
9470 if (rs->got_ctrlc_during_io)
9474 /* Return a string representing an escaped version of BUF, of len N.
9475 E.g. \n is converted to \\n, \t to \\t, etc. */
9478 escape_buffer (const char *buf, int n)
9482 stb.putstrn (buf, n, '\\');
9483 return std::move (stb.string ());
9486 /* Display a null-terminated packet on stdout, for debugging, using C
9490 print_packet (const char *buf)
9492 puts_filtered ("\"");
9493 fputstr_filtered (buf, '"', gdb_stdout);
9494 puts_filtered ("\"");
9498 remote_target::putpkt (const char *buf)
9500 return putpkt_binary (buf, strlen (buf));
9503 /* Wrapper around remote_target::putpkt to avoid exporting
9507 putpkt (remote_target *remote, const char *buf)
9509 return remote->putpkt (buf);
9512 /* Send a packet to the remote machine, with error checking. The data
9513 of the packet is in BUF. The string in BUF can be at most
9514 get_remote_packet_size () - 5 to account for the $, # and checksum,
9515 and for a possible /0 if we are debugging (remote_debug) and want
9516 to print the sent packet as a string. */
9519 remote_target::putpkt_binary (const char *buf, int cnt)
9521 struct remote_state *rs = get_remote_state ();
9523 unsigned char csum = 0;
9524 gdb::def_vector<char> data (cnt + 6);
9525 char *buf2 = data.data ();
9531 /* Catch cases like trying to read memory or listing threads while
9532 we're waiting for a stop reply. The remote server wouldn't be
9533 ready to handle this request, so we'd hang and timeout. We don't
9534 have to worry about this in synchronous mode, because in that
9535 case it's not possible to issue a command while the target is
9536 running. This is not a problem in non-stop mode, because in that
9537 case, the stub is always ready to process serial input. */
9538 if (!target_is_non_stop_p ()
9539 && target_is_async_p ()
9540 && rs->waiting_for_stop_reply)
9542 error (_("Cannot execute this command while the target is running.\n"
9543 "Use the \"interrupt\" command to stop the target\n"
9544 "and then try again."));
9547 /* We're sending out a new packet. Make sure we don't look at a
9548 stale cached response. */
9549 rs->cached_wait_status = 0;
9551 /* Copy the packet into buffer BUF2, encapsulating it
9552 and giving it a checksum. */
9557 for (i = 0; i < cnt; i++)
9563 *p++ = tohex ((csum >> 4) & 0xf);
9564 *p++ = tohex (csum & 0xf);
9566 /* Send it over and over until we get a positive ack. */
9574 int len = (int) (p - buf2);
9577 if (remote_packet_max_chars < 0)
9580 max_chars = remote_packet_max_chars;
9583 = escape_buffer (buf2, std::min (len, max_chars));
9585 if (len > max_chars)
9586 remote_debug_printf_nofunc
9587 ("Sending packet: %s [%d bytes omitted]", str.c_str (),
9590 remote_debug_printf_nofunc ("Sending packet: %s", str.c_str ());
9592 remote_serial_write (buf2, p - buf2);
9594 /* If this is a no acks version of the remote protocol, send the
9595 packet and move on. */
9599 /* Read until either a timeout occurs (-2) or '+' is read.
9600 Handle any notification that arrives in the mean time. */
9603 ch = readchar (remote_timeout);
9608 remote_debug_printf_nofunc ("Received Ack");
9611 remote_debug_printf_nofunc ("Received Nak");
9613 case SERIAL_TIMEOUT:
9617 break; /* Retransmit buffer. */
9620 remote_debug_printf ("Packet instead of Ack, ignoring it");
9621 /* It's probably an old response sent because an ACK
9622 was lost. Gobble up the packet and ack it so it
9623 doesn't get retransmitted when we resend this
9626 remote_serial_write ("+", 1);
9627 continue; /* Now, go look for +. */
9634 /* If we got a notification, handle it, and go back to looking
9636 /* We've found the start of a notification. Now
9637 collect the data. */
9638 val = read_frame (&rs->buf);
9641 remote_debug_printf_nofunc
9642 (" Notification received: %s",
9643 escape_buffer (rs->buf.data (), val).c_str ());
9645 handle_notification (rs->notif_state, rs->buf.data ());
9646 /* We're in sync now, rewait for the ack. */
9650 remote_debug_printf_nofunc ("Junk: %c%s", ch & 0177,
9656 remote_debug_printf_nofunc ("Junk: %c%s", ch & 0177,
9660 break; /* Here to retransmit. */
9664 /* This is wrong. If doing a long backtrace, the user should be
9665 able to get out next time we call QUIT, without anything as
9666 violent as interrupt_query. If we want to provide a way out of
9667 here without getting to the next QUIT, it should be based on
9668 hitting ^C twice as in remote_wait. */
9680 /* Come here after finding the start of a frame when we expected an
9681 ack. Do our best to discard the rest of this packet. */
9684 remote_target::skip_frame ()
9690 c = readchar (remote_timeout);
9693 case SERIAL_TIMEOUT:
9694 /* Nothing we can do. */
9697 /* Discard the two bytes of checksum and stop. */
9698 c = readchar (remote_timeout);
9700 c = readchar (remote_timeout);
9703 case '*': /* Run length encoding. */
9704 /* Discard the repeat count. */
9705 c = readchar (remote_timeout);
9710 /* A regular character. */
9716 /* Come here after finding the start of the frame. Collect the rest
9717 into *BUF, verifying the checksum, length, and handling run-length
9718 compression. NUL terminate the buffer. If there is not enough room,
9721 Returns -1 on error, number of characters in buffer (ignoring the
9722 trailing NULL) on success. (could be extended to return one of the
9723 SERIAL status indications). */
9726 remote_target::read_frame (gdb::char_vector *buf_p)
9731 char *buf = buf_p->data ();
9732 struct remote_state *rs = get_remote_state ();
9739 c = readchar (remote_timeout);
9742 case SERIAL_TIMEOUT:
9743 remote_debug_printf ("Timeout in mid-packet, retrying");
9747 remote_debug_printf ("Saw new packet start in middle of old one");
9748 return -1; /* Start a new packet, count retries. */
9752 unsigned char pktcsum;
9758 check_0 = readchar (remote_timeout);
9760 check_1 = readchar (remote_timeout);
9762 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
9764 remote_debug_printf ("Timeout in checksum, retrying");
9767 else if (check_0 < 0 || check_1 < 0)
9769 remote_debug_printf ("Communication error in checksum");
9773 /* Don't recompute the checksum; with no ack packets we
9774 don't have any way to indicate a packet retransmission
9779 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
9780 if (csum == pktcsum)
9784 ("Bad checksum, sentsum=0x%x, csum=0x%x, buf=%s",
9785 pktcsum, csum, escape_buffer (buf, bc).c_str ());
9787 /* Number of characters in buffer ignoring trailing
9791 case '*': /* Run length encoding. */
9796 c = readchar (remote_timeout);
9798 repeat = c - ' ' + 3; /* Compute repeat count. */
9800 /* The character before ``*'' is repeated. */
9802 if (repeat > 0 && repeat <= 255 && bc > 0)
9804 if (bc + repeat - 1 >= buf_p->size () - 1)
9806 /* Make some more room in the buffer. */
9807 buf_p->resize (buf_p->size () + repeat);
9808 buf = buf_p->data ();
9811 memset (&buf[bc], buf[bc - 1], repeat);
9817 printf_filtered (_("Invalid run length encoding: %s\n"), buf);
9821 if (bc >= buf_p->size () - 1)
9823 /* Make some more room in the buffer. */
9824 buf_p->resize (buf_p->size () * 2);
9825 buf = buf_p->data ();
9835 /* Set this to the maximum number of seconds to wait instead of waiting forever
9836 in target_wait(). If this timer times out, then it generates an error and
9837 the command is aborted. This replaces most of the need for timeouts in the
9838 GDB test suite, and makes it possible to distinguish between a hung target
9839 and one with slow communications. */
9841 static int watchdog = 0;
9843 show_watchdog (struct ui_file *file, int from_tty,
9844 struct cmd_list_element *c, const char *value)
9846 fprintf_filtered (file, _("Watchdog timer is %s.\n"), value);
9849 /* Read a packet from the remote machine, with error checking, and
9850 store it in *BUF. Resize *BUF if necessary to hold the result. If
9851 FOREVER, wait forever rather than timing out; this is used (in
9852 synchronous mode) to wait for a target that is is executing user
9854 /* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
9855 don't have to change all the calls to getpkt to deal with the
9856 return value, because at the moment I don't know what the right
9857 thing to do it for those. */
9860 remote_target::getpkt (gdb::char_vector *buf, int forever)
9862 getpkt_sane (buf, forever);
9866 /* Read a packet from the remote machine, with error checking, and
9867 store it in *BUF. Resize *BUF if necessary to hold the result. If
9868 FOREVER, wait forever rather than timing out; this is used (in
9869 synchronous mode) to wait for a target that is is executing user
9870 code to stop. If FOREVER == 0, this function is allowed to time
9871 out gracefully and return an indication of this to the caller.
9872 Otherwise return the number of bytes read. If EXPECTING_NOTIF,
9873 consider receiving a notification enough reason to return to the
9874 caller. *IS_NOTIF is an output boolean that indicates whether *BUF
9875 holds a notification or not (a regular packet). */
9878 remote_target::getpkt_or_notif_sane_1 (gdb::char_vector *buf,
9879 int forever, int expecting_notif,
9882 struct remote_state *rs = get_remote_state ();
9888 /* We're reading a new response. Make sure we don't look at a
9889 previously cached response. */
9890 rs->cached_wait_status = 0;
9892 strcpy (buf->data (), "timeout");
9895 timeout = watchdog > 0 ? watchdog : -1;
9896 else if (expecting_notif)
9897 timeout = 0; /* There should already be a char in the buffer. If
9900 timeout = remote_timeout;
9904 /* Process any number of notifications, and then return when
9908 /* If we get a timeout or bad checksum, retry up to MAX_TRIES
9910 for (tries = 1; tries <= MAX_TRIES; tries++)
9912 /* This can loop forever if the remote side sends us
9913 characters continuously, but if it pauses, we'll get
9914 SERIAL_TIMEOUT from readchar because of timeout. Then
9915 we'll count that as a retry.
9917 Note that even when forever is set, we will only wait
9918 forever prior to the start of a packet. After that, we
9919 expect characters to arrive at a brisk pace. They should
9920 show up within remote_timeout intervals. */
9922 c = readchar (timeout);
9923 while (c != SERIAL_TIMEOUT && c != '$' && c != '%');
9925 if (c == SERIAL_TIMEOUT)
9927 if (expecting_notif)
9928 return -1; /* Don't complain, it's normal to not get
9929 anything in this case. */
9931 if (forever) /* Watchdog went off? Kill the target. */
9933 remote_unpush_target (this);
9934 throw_error (TARGET_CLOSE_ERROR,
9935 _("Watchdog timeout has expired. "
9936 "Target detached."));
9939 remote_debug_printf ("Timed out.");
9943 /* We've found the start of a packet or notification.
9944 Now collect the data. */
9945 val = read_frame (buf);
9950 remote_serial_write ("-", 1);
9953 if (tries > MAX_TRIES)
9955 /* We have tried hard enough, and just can't receive the
9956 packet/notification. Give up. */
9957 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
9959 /* Skip the ack char if we're in no-ack mode. */
9960 if (!rs->noack_mode)
9961 remote_serial_write ("+", 1);
9965 /* If we got an ordinary packet, return that to our caller. */
9972 if (remote_packet_max_chars < 0)
9975 max_chars = remote_packet_max_chars;
9978 = escape_buffer (buf->data (),
9979 std::min (val, max_chars));
9981 if (val > max_chars)
9982 remote_debug_printf_nofunc
9983 ("Packet received: %s [%d bytes omitted]", str.c_str (),
9986 remote_debug_printf_nofunc ("Packet received: %s",
9990 /* Skip the ack char if we're in no-ack mode. */
9991 if (!rs->noack_mode)
9992 remote_serial_write ("+", 1);
9993 if (is_notif != NULL)
9998 /* If we got a notification, handle it, and go back to looking
10002 gdb_assert (c == '%');
10004 remote_debug_printf_nofunc
10005 (" Notification received: %s",
10006 escape_buffer (buf->data (), val).c_str ());
10008 if (is_notif != NULL)
10011 handle_notification (rs->notif_state, buf->data ());
10013 /* Notifications require no acknowledgement. */
10015 if (expecting_notif)
10022 remote_target::getpkt_sane (gdb::char_vector *buf, int forever)
10024 return getpkt_or_notif_sane_1 (buf, forever, 0, NULL);
10028 remote_target::getpkt_or_notif_sane (gdb::char_vector *buf, int forever,
10031 return getpkt_or_notif_sane_1 (buf, forever, 1, is_notif);
10034 /* Kill any new fork children of process PID that haven't been
10035 processed by follow_fork. */
10038 remote_target::kill_new_fork_children (int pid)
10040 remote_state *rs = get_remote_state ();
10041 struct notif_client *notif = ¬if_client_stop;
10043 /* Kill the fork child threads of any threads in process PID
10044 that are stopped at a fork event. */
10045 for (thread_info *thread : all_non_exited_threads (this))
10047 struct target_waitstatus *ws = &thread->pending_follow;
10049 if (is_pending_fork_parent (ws, pid, thread->ptid))
10051 int child_pid = ws->value.related_pid.pid ();
10054 res = remote_vkill (child_pid);
10056 error (_("Can't kill fork child process %d"), child_pid);
10060 /* Check for any pending fork events (not reported or processed yet)
10061 in process PID and kill those fork child threads as well. */
10062 remote_notif_get_pending_events (notif);
10063 for (auto &event : rs->stop_reply_queue)
10064 if (is_pending_fork_parent (&event->ws, pid, event->ptid))
10066 int child_pid = event->ws.value.related_pid.pid ();
10069 res = remote_vkill (child_pid);
10071 error (_("Can't kill fork child process %d"), child_pid);
10076 /* Target hook to kill the current inferior. */
10079 remote_target::kill ()
10082 int pid = inferior_ptid.pid ();
10083 struct remote_state *rs = get_remote_state ();
10085 if (packet_support (PACKET_vKill) != PACKET_DISABLE)
10087 /* If we're stopped while forking and we haven't followed yet,
10088 kill the child task. We need to do this before killing the
10089 parent task because if this is a vfork then the parent will
10091 kill_new_fork_children (pid);
10093 res = remote_vkill (pid);
10096 target_mourn_inferior (inferior_ptid);
10101 /* If we are in 'target remote' mode and we are killing the only
10102 inferior, then we will tell gdbserver to exit and unpush the
10104 if (res == -1 && !remote_multi_process_p (rs)
10105 && number_of_live_inferiors (this) == 1)
10109 /* We've killed the remote end, we get to mourn it. If we are
10110 not in extended mode, mourning the inferior also unpushes
10111 remote_ops from the target stack, which closes the remote
10113 target_mourn_inferior (inferior_ptid);
10118 error (_("Can't kill process"));
10121 /* Send a kill request to the target using the 'vKill' packet. */
10124 remote_target::remote_vkill (int pid)
10126 if (packet_support (PACKET_vKill) == PACKET_DISABLE)
10129 remote_state *rs = get_remote_state ();
10131 /* Tell the remote target to detach. */
10132 xsnprintf (rs->buf.data (), get_remote_packet_size (), "vKill;%x", pid);
10134 getpkt (&rs->buf, 0);
10136 switch (packet_ok (rs->buf,
10137 &remote_protocol_packets[PACKET_vKill]))
10143 case PACKET_UNKNOWN:
10146 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
10150 /* Send a kill request to the target using the 'k' packet. */
10153 remote_target::remote_kill_k ()
10155 /* Catch errors so the user can quit from gdb even when we
10156 aren't on speaking terms with the remote system. */
10161 catch (const gdb_exception_error &ex)
10163 if (ex.error == TARGET_CLOSE_ERROR)
10165 /* If we got an (EOF) error that caused the target
10166 to go away, then we're done, that's what we wanted.
10167 "k" is susceptible to cause a premature EOF, given
10168 that the remote server isn't actually required to
10169 reply to "k", and it can happen that it doesn't
10170 even get to reply ACK to the "k". */
10174 /* Otherwise, something went wrong. We didn't actually kill
10175 the target. Just propagate the exception, and let the
10176 user or higher layers decide what to do. */
10182 remote_target::mourn_inferior ()
10184 struct remote_state *rs = get_remote_state ();
10186 /* We're no longer interested in notification events of an inferior
10187 that exited or was killed/detached. */
10188 discard_pending_stop_replies (current_inferior ());
10190 /* In 'target remote' mode with one inferior, we close the connection. */
10191 if (!rs->extended && number_of_live_inferiors (this) <= 1)
10193 remote_unpush_target (this);
10197 /* In case we got here due to an error, but we're going to stay
10199 rs->waiting_for_stop_reply = 0;
10201 /* If the current general thread belonged to the process we just
10202 detached from or has exited, the remote side current general
10203 thread becomes undefined. Considering a case like this:
10205 - We just got here due to a detach.
10206 - The process that we're detaching from happens to immediately
10207 report a global breakpoint being hit in non-stop mode, in the
10208 same thread we had selected before.
10209 - GDB attaches to this process again.
10210 - This event happens to be the next event we handle.
10212 GDB would consider that the current general thread didn't need to
10213 be set on the stub side (with Hg), since for all it knew,
10214 GENERAL_THREAD hadn't changed.
10216 Notice that although in all-stop mode, the remote server always
10217 sets the current thread to the thread reporting the stop event,
10218 that doesn't happen in non-stop mode; in non-stop, the stub *must
10219 not* change the current thread when reporting a breakpoint hit,
10220 due to the decoupling of event reporting and event handling.
10222 To keep things simple, we always invalidate our notion of the
10224 record_currthread (rs, minus_one_ptid);
10226 /* Call common code to mark the inferior as not running. */
10227 generic_mourn_inferior ();
10231 extended_remote_target::supports_disable_randomization ()
10233 return packet_support (PACKET_QDisableRandomization) == PACKET_ENABLE;
10237 remote_target::extended_remote_disable_randomization (int val)
10239 struct remote_state *rs = get_remote_state ();
10242 xsnprintf (rs->buf.data (), get_remote_packet_size (),
10243 "QDisableRandomization:%x", val);
10245 reply = remote_get_noisy_reply ();
10246 if (*reply == '\0')
10247 error (_("Target does not support QDisableRandomization."));
10248 if (strcmp (reply, "OK") != 0)
10249 error (_("Bogus QDisableRandomization reply from target: %s"), reply);
10253 remote_target::extended_remote_run (const std::string &args)
10255 struct remote_state *rs = get_remote_state ();
10257 const char *remote_exec_file = get_remote_exec_file ();
10259 /* If the user has disabled vRun support, or we have detected that
10260 support is not available, do not try it. */
10261 if (packet_support (PACKET_vRun) == PACKET_DISABLE)
10264 strcpy (rs->buf.data (), "vRun;");
10265 len = strlen (rs->buf.data ());
10267 if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ())
10268 error (_("Remote file name too long for run packet"));
10269 len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf.data () + len,
10270 strlen (remote_exec_file));
10272 if (!args.empty ())
10276 gdb_argv argv (args.c_str ());
10277 for (i = 0; argv[i] != NULL; i++)
10279 if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ())
10280 error (_("Argument list too long for run packet"));
10281 rs->buf[len++] = ';';
10282 len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf.data () + len,
10287 rs->buf[len++] = '\0';
10290 getpkt (&rs->buf, 0);
10292 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun]))
10295 /* We have a wait response. All is well. */
10297 case PACKET_UNKNOWN:
10300 if (remote_exec_file[0] == '\0')
10301 error (_("Running the default executable on the remote target failed; "
10302 "try \"set remote exec-file\"?"));
10304 error (_("Running \"%s\" on the remote target failed"),
10307 gdb_assert_not_reached (_("bad switch"));
10311 /* Helper function to send set/unset environment packets. ACTION is
10312 either "set" or "unset". PACKET is either "QEnvironmentHexEncoded"
10313 or "QEnvironmentUnsetVariable". VALUE is the variable to be
10317 remote_target::send_environment_packet (const char *action,
10318 const char *packet,
10321 remote_state *rs = get_remote_state ();
10323 /* Convert the environment variable to an hex string, which
10324 is the best format to be transmitted over the wire. */
10325 std::string encoded_value = bin2hex ((const gdb_byte *) value,
10328 xsnprintf (rs->buf.data (), get_remote_packet_size (),
10329 "%s:%s", packet, encoded_value.c_str ());
10332 getpkt (&rs->buf, 0);
10333 if (strcmp (rs->buf.data (), "OK") != 0)
10334 warning (_("Unable to %s environment variable '%s' on remote."),
10338 /* Helper function to handle the QEnvironment* packets. */
10341 remote_target::extended_remote_environment_support ()
10343 remote_state *rs = get_remote_state ();
10345 if (packet_support (PACKET_QEnvironmentReset) != PACKET_DISABLE)
10347 putpkt ("QEnvironmentReset");
10348 getpkt (&rs->buf, 0);
10349 if (strcmp (rs->buf.data (), "OK") != 0)
10350 warning (_("Unable to reset environment on remote."));
10353 gdb_environ *e = ¤t_inferior ()->environment;
10355 if (packet_support (PACKET_QEnvironmentHexEncoded) != PACKET_DISABLE)
10356 for (const std::string &el : e->user_set_env ())
10357 send_environment_packet ("set", "QEnvironmentHexEncoded",
10360 if (packet_support (PACKET_QEnvironmentUnset) != PACKET_DISABLE)
10361 for (const std::string &el : e->user_unset_env ())
10362 send_environment_packet ("unset", "QEnvironmentUnset", el.c_str ());
10365 /* Helper function to set the current working directory for the
10366 inferior in the remote target. */
10369 remote_target::extended_remote_set_inferior_cwd ()
10371 if (packet_support (PACKET_QSetWorkingDir) != PACKET_DISABLE)
10373 const char *inferior_cwd = get_inferior_cwd ();
10374 remote_state *rs = get_remote_state ();
10376 if (inferior_cwd != NULL)
10378 std::string hexpath = bin2hex ((const gdb_byte *) inferior_cwd,
10379 strlen (inferior_cwd));
10381 xsnprintf (rs->buf.data (), get_remote_packet_size (),
10382 "QSetWorkingDir:%s", hexpath.c_str ());
10386 /* An empty inferior_cwd means that the user wants us to
10387 reset the remote server's inferior's cwd. */
10388 xsnprintf (rs->buf.data (), get_remote_packet_size (),
10389 "QSetWorkingDir:");
10393 getpkt (&rs->buf, 0);
10394 if (packet_ok (rs->buf,
10395 &remote_protocol_packets[PACKET_QSetWorkingDir])
10398 Remote replied unexpectedly while setting the inferior's working\n\
10405 /* In the extended protocol we want to be able to do things like
10406 "run" and have them basically work as expected. So we need
10407 a special create_inferior function. We support changing the
10408 executable file and the command line arguments, but not the
10412 extended_remote_target::create_inferior (const char *exec_file,
10413 const std::string &args,
10414 char **env, int from_tty)
10418 struct remote_state *rs = get_remote_state ();
10419 const char *remote_exec_file = get_remote_exec_file ();
10421 /* If running asynchronously, register the target file descriptor
10422 with the event loop. */
10423 if (target_can_async_p ())
10426 /* Disable address space randomization if requested (and supported). */
10427 if (supports_disable_randomization ())
10428 extended_remote_disable_randomization (disable_randomization);
10430 /* If startup-with-shell is on, we inform gdbserver to start the
10431 remote inferior using a shell. */
10432 if (packet_support (PACKET_QStartupWithShell) != PACKET_DISABLE)
10434 xsnprintf (rs->buf.data (), get_remote_packet_size (),
10435 "QStartupWithShell:%d", startup_with_shell ? 1 : 0);
10437 getpkt (&rs->buf, 0);
10438 if (strcmp (rs->buf.data (), "OK") != 0)
10440 Remote replied unexpectedly while setting startup-with-shell: %s"),
10444 extended_remote_environment_support ();
10446 extended_remote_set_inferior_cwd ();
10448 /* Now restart the remote server. */
10449 run_worked = extended_remote_run (args) != -1;
10452 /* vRun was not supported. Fail if we need it to do what the
10454 if (remote_exec_file[0])
10455 error (_("Remote target does not support \"set remote exec-file\""));
10456 if (!args.empty ())
10457 error (_("Remote target does not support \"set args\" or run ARGS"));
10459 /* Fall back to "R". */
10460 extended_remote_restart ();
10463 /* vRun's success return is a stop reply. */
10464 stop_reply = run_worked ? rs->buf.data () : NULL;
10465 add_current_inferior_and_thread (stop_reply);
10467 /* Get updated offsets, if the stub uses qOffsets. */
10472 /* Given a location's target info BP_TGT and the packet buffer BUF, output
10473 the list of conditions (in agent expression bytecode format), if any, the
10474 target needs to evaluate. The output is placed into the packet buffer
10475 started from BUF and ended at BUF_END. */
10478 remote_add_target_side_condition (struct gdbarch *gdbarch,
10479 struct bp_target_info *bp_tgt, char *buf,
10482 if (bp_tgt->conditions.empty ())
10485 buf += strlen (buf);
10486 xsnprintf (buf, buf_end - buf, "%s", ";");
10489 /* Send conditions to the target. */
10490 for (agent_expr *aexpr : bp_tgt->conditions)
10492 xsnprintf (buf, buf_end - buf, "X%x,", aexpr->len);
10493 buf += strlen (buf);
10494 for (int i = 0; i < aexpr->len; ++i)
10495 buf = pack_hex_byte (buf, aexpr->buf[i]);
10502 remote_add_target_side_commands (struct gdbarch *gdbarch,
10503 struct bp_target_info *bp_tgt, char *buf)
10505 if (bp_tgt->tcommands.empty ())
10508 buf += strlen (buf);
10510 sprintf (buf, ";cmds:%x,", bp_tgt->persist);
10511 buf += strlen (buf);
10513 /* Concatenate all the agent expressions that are commands into the
10515 for (agent_expr *aexpr : bp_tgt->tcommands)
10517 sprintf (buf, "X%x,", aexpr->len);
10518 buf += strlen (buf);
10519 for (int i = 0; i < aexpr->len; ++i)
10520 buf = pack_hex_byte (buf, aexpr->buf[i]);
10525 /* Insert a breakpoint. On targets that have software breakpoint
10526 support, we ask the remote target to do the work; on targets
10527 which don't, we insert a traditional memory breakpoint. */
10530 remote_target::insert_breakpoint (struct gdbarch *gdbarch,
10531 struct bp_target_info *bp_tgt)
10533 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
10534 If it succeeds, then set the support to PACKET_ENABLE. If it
10535 fails, and the user has explicitly requested the Z support then
10536 report an error, otherwise, mark it disabled and go on. */
10538 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
10540 CORE_ADDR addr = bp_tgt->reqstd_address;
10541 struct remote_state *rs;
10544 /* Make sure the remote is pointing at the right process, if
10546 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10547 set_general_process ();
10549 rs = get_remote_state ();
10550 p = rs->buf.data ();
10551 endbuf = p + get_remote_packet_size ();
10556 addr = (ULONGEST) remote_address_masked (addr);
10557 p += hexnumstr (p, addr);
10558 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
10560 if (supports_evaluation_of_breakpoint_conditions ())
10561 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
10563 if (can_run_breakpoint_commands ())
10564 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10567 getpkt (&rs->buf, 0);
10569 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
10575 case PACKET_UNKNOWN:
10580 /* If this breakpoint has target-side commands but this stub doesn't
10581 support Z0 packets, throw error. */
10582 if (!bp_tgt->tcommands.empty ())
10583 throw_error (NOT_SUPPORTED_ERROR, _("\
10584 Target doesn't support breakpoints that have target side commands."));
10586 return memory_insert_breakpoint (this, gdbarch, bp_tgt);
10590 remote_target::remove_breakpoint (struct gdbarch *gdbarch,
10591 struct bp_target_info *bp_tgt,
10592 enum remove_bp_reason reason)
10594 CORE_ADDR addr = bp_tgt->placed_address;
10595 struct remote_state *rs = get_remote_state ();
10597 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
10599 char *p = rs->buf.data ();
10600 char *endbuf = p + get_remote_packet_size ();
10602 /* Make sure the remote is pointing at the right process, if
10604 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10605 set_general_process ();
10611 addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
10612 p += hexnumstr (p, addr);
10613 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
10616 getpkt (&rs->buf, 0);
10618 return (rs->buf[0] == 'E');
10621 return memory_remove_breakpoint (this, gdbarch, bp_tgt, reason);
10624 static enum Z_packet_type
10625 watchpoint_to_Z_packet (int type)
10630 return Z_PACKET_WRITE_WP;
10633 return Z_PACKET_READ_WP;
10636 return Z_PACKET_ACCESS_WP;
10639 internal_error (__FILE__, __LINE__,
10640 _("hw_bp_to_z: bad watchpoint type %d"), type);
10645 remote_target::insert_watchpoint (CORE_ADDR addr, int len,
10646 enum target_hw_bp_type type, struct expression *cond)
10648 struct remote_state *rs = get_remote_state ();
10649 char *endbuf = rs->buf.data () + get_remote_packet_size ();
10651 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
10653 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
10656 /* Make sure the remote is pointing at the right process, if
10658 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10659 set_general_process ();
10661 xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "Z%x,", packet);
10662 p = strchr (rs->buf.data (), '\0');
10663 addr = remote_address_masked (addr);
10664 p += hexnumstr (p, (ULONGEST) addr);
10665 xsnprintf (p, endbuf - p, ",%x", len);
10668 getpkt (&rs->buf, 0);
10670 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
10674 case PACKET_UNKNOWN:
10679 internal_error (__FILE__, __LINE__,
10680 _("remote_insert_watchpoint: reached end of function"));
10684 remote_target::watchpoint_addr_within_range (CORE_ADDR addr,
10685 CORE_ADDR start, int length)
10687 CORE_ADDR diff = remote_address_masked (addr - start);
10689 return diff < length;
10694 remote_target::remove_watchpoint (CORE_ADDR addr, int len,
10695 enum target_hw_bp_type type, struct expression *cond)
10697 struct remote_state *rs = get_remote_state ();
10698 char *endbuf = rs->buf.data () + get_remote_packet_size ();
10700 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
10702 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
10705 /* Make sure the remote is pointing at the right process, if
10707 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10708 set_general_process ();
10710 xsnprintf (rs->buf.data (), endbuf - rs->buf.data (), "z%x,", packet);
10711 p = strchr (rs->buf.data (), '\0');
10712 addr = remote_address_masked (addr);
10713 p += hexnumstr (p, (ULONGEST) addr);
10714 xsnprintf (p, endbuf - p, ",%x", len);
10716 getpkt (&rs->buf, 0);
10718 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
10721 case PACKET_UNKNOWN:
10726 internal_error (__FILE__, __LINE__,
10727 _("remote_remove_watchpoint: reached end of function"));
10731 static int remote_hw_watchpoint_limit = -1;
10732 static int remote_hw_watchpoint_length_limit = -1;
10733 static int remote_hw_breakpoint_limit = -1;
10736 remote_target::region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
10738 if (remote_hw_watchpoint_length_limit == 0)
10740 else if (remote_hw_watchpoint_length_limit < 0)
10742 else if (len <= remote_hw_watchpoint_length_limit)
10749 remote_target::can_use_hw_breakpoint (enum bptype type, int cnt, int ot)
10751 if (type == bp_hardware_breakpoint)
10753 if (remote_hw_breakpoint_limit == 0)
10755 else if (remote_hw_breakpoint_limit < 0)
10757 else if (cnt <= remote_hw_breakpoint_limit)
10762 if (remote_hw_watchpoint_limit == 0)
10764 else if (remote_hw_watchpoint_limit < 0)
10768 else if (cnt <= remote_hw_watchpoint_limit)
10774 /* The to_stopped_by_sw_breakpoint method of target remote. */
10777 remote_target::stopped_by_sw_breakpoint ()
10779 struct thread_info *thread = inferior_thread ();
10781 return (thread->priv != NULL
10782 && (get_remote_thread_info (thread)->stop_reason
10783 == TARGET_STOPPED_BY_SW_BREAKPOINT));
10786 /* The to_supports_stopped_by_sw_breakpoint method of target
10790 remote_target::supports_stopped_by_sw_breakpoint ()
10792 return (packet_support (PACKET_swbreak_feature) == PACKET_ENABLE);
10795 /* The to_stopped_by_hw_breakpoint method of target remote. */
10798 remote_target::stopped_by_hw_breakpoint ()
10800 struct thread_info *thread = inferior_thread ();
10802 return (thread->priv != NULL
10803 && (get_remote_thread_info (thread)->stop_reason
10804 == TARGET_STOPPED_BY_HW_BREAKPOINT));
10807 /* The to_supports_stopped_by_hw_breakpoint method of target
10811 remote_target::supports_stopped_by_hw_breakpoint ()
10813 return (packet_support (PACKET_hwbreak_feature) == PACKET_ENABLE);
10817 remote_target::stopped_by_watchpoint ()
10819 struct thread_info *thread = inferior_thread ();
10821 return (thread->priv != NULL
10822 && (get_remote_thread_info (thread)->stop_reason
10823 == TARGET_STOPPED_BY_WATCHPOINT));
10827 remote_target::stopped_data_address (CORE_ADDR *addr_p)
10829 struct thread_info *thread = inferior_thread ();
10831 if (thread->priv != NULL
10832 && (get_remote_thread_info (thread)->stop_reason
10833 == TARGET_STOPPED_BY_WATCHPOINT))
10835 *addr_p = get_remote_thread_info (thread)->watch_data_address;
10844 remote_target::insert_hw_breakpoint (struct gdbarch *gdbarch,
10845 struct bp_target_info *bp_tgt)
10847 CORE_ADDR addr = bp_tgt->reqstd_address;
10848 struct remote_state *rs;
10852 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
10855 /* Make sure the remote is pointing at the right process, if
10857 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10858 set_general_process ();
10860 rs = get_remote_state ();
10861 p = rs->buf.data ();
10862 endbuf = p + get_remote_packet_size ();
10868 addr = remote_address_masked (addr);
10869 p += hexnumstr (p, (ULONGEST) addr);
10870 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
10872 if (supports_evaluation_of_breakpoint_conditions ())
10873 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
10875 if (can_run_breakpoint_commands ())
10876 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10879 getpkt (&rs->buf, 0);
10881 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
10884 if (rs->buf[1] == '.')
10886 message = strchr (&rs->buf[2], '.');
10888 error (_("Remote failure reply: %s"), message + 1);
10891 case PACKET_UNKNOWN:
10896 internal_error (__FILE__, __LINE__,
10897 _("remote_insert_hw_breakpoint: reached end of function"));
10902 remote_target::remove_hw_breakpoint (struct gdbarch *gdbarch,
10903 struct bp_target_info *bp_tgt)
10906 struct remote_state *rs = get_remote_state ();
10907 char *p = rs->buf.data ();
10908 char *endbuf = p + get_remote_packet_size ();
10910 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
10913 /* Make sure the remote is pointing at the right process, if
10915 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10916 set_general_process ();
10922 addr = remote_address_masked (bp_tgt->placed_address);
10923 p += hexnumstr (p, (ULONGEST) addr);
10924 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
10927 getpkt (&rs->buf, 0);
10929 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
10932 case PACKET_UNKNOWN:
10937 internal_error (__FILE__, __LINE__,
10938 _("remote_remove_hw_breakpoint: reached end of function"));
10941 /* Verify memory using the "qCRC:" request. */
10944 remote_target::verify_memory (const gdb_byte *data, CORE_ADDR lma, ULONGEST size)
10946 struct remote_state *rs = get_remote_state ();
10947 unsigned long host_crc, target_crc;
10950 /* It doesn't make sense to use qCRC if the remote target is
10951 connected but not running. */
10952 if (target_has_execution ()
10953 && packet_support (PACKET_qCRC) != PACKET_DISABLE)
10955 enum packet_result result;
10957 /* Make sure the remote is pointing at the right process. */
10958 set_general_process ();
10960 /* FIXME: assumes lma can fit into long. */
10961 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qCRC:%lx,%lx",
10962 (long) lma, (long) size);
10965 /* Be clever; compute the host_crc before waiting for target
10967 host_crc = xcrc32 (data, size, 0xffffffff);
10969 getpkt (&rs->buf, 0);
10971 result = packet_ok (rs->buf,
10972 &remote_protocol_packets[PACKET_qCRC]);
10973 if (result == PACKET_ERROR)
10975 else if (result == PACKET_OK)
10977 for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
10978 target_crc = target_crc * 16 + fromhex (*tmp);
10980 return (host_crc == target_crc);
10984 return simple_verify_memory (this, data, lma, size);
10987 /* compare-sections command
10989 With no arguments, compares each loadable section in the exec bfd
10990 with the same memory range on the target, and reports mismatches.
10991 Useful for verifying the image on the target against the exec file. */
10994 compare_sections_command (const char *args, int from_tty)
10997 const char *sectname;
10998 bfd_size_type size;
11001 int mismatched = 0;
11005 if (!current_program_space->exec_bfd ())
11006 error (_("command cannot be used without an exec file"));
11008 if (args != NULL && strcmp (args, "-r") == 0)
11014 for (s = current_program_space->exec_bfd ()->sections; s; s = s->next)
11016 if (!(s->flags & SEC_LOAD))
11017 continue; /* Skip non-loadable section. */
11019 if (read_only && (s->flags & SEC_READONLY) == 0)
11020 continue; /* Skip writeable sections */
11022 size = bfd_section_size (s);
11024 continue; /* Skip zero-length section. */
11026 sectname = bfd_section_name (s);
11027 if (args && strcmp (args, sectname) != 0)
11028 continue; /* Not the section selected by user. */
11030 matched = 1; /* Do this section. */
11033 gdb::byte_vector sectdata (size);
11034 bfd_get_section_contents (current_program_space->exec_bfd (), s,
11035 sectdata.data (), 0, size);
11037 res = target_verify_memory (sectdata.data (), lma, size);
11040 error (_("target memory fault, section %s, range %s -- %s"), sectname,
11041 paddress (target_gdbarch (), lma),
11042 paddress (target_gdbarch (), lma + size));
11044 printf_filtered ("Section %s, range %s -- %s: ", sectname,
11045 paddress (target_gdbarch (), lma),
11046 paddress (target_gdbarch (), lma + size));
11048 printf_filtered ("matched.\n");
11051 printf_filtered ("MIS-MATCHED!\n");
11055 if (mismatched > 0)
11056 warning (_("One or more sections of the target image does not match\n\
11057 the loaded file\n"));
11058 if (args && !matched)
11059 printf_filtered (_("No loaded section named '%s'.\n"), args);
11062 /* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
11063 into remote target. The number of bytes written to the remote
11064 target is returned, or -1 for error. */
11067 remote_target::remote_write_qxfer (const char *object_name,
11068 const char *annex, const gdb_byte *writebuf,
11069 ULONGEST offset, LONGEST len,
11070 ULONGEST *xfered_len,
11071 struct packet_config *packet)
11075 struct remote_state *rs = get_remote_state ();
11076 int max_size = get_memory_write_packet_size ();
11078 if (packet_config_support (packet) == PACKET_DISABLE)
11079 return TARGET_XFER_E_IO;
11081 /* Insert header. */
11082 i = snprintf (rs->buf.data (), max_size,
11083 "qXfer:%s:write:%s:%s:",
11084 object_name, annex ? annex : "",
11085 phex_nz (offset, sizeof offset));
11086 max_size -= (i + 1);
11088 /* Escape as much data as fits into rs->buf. */
11089 buf_len = remote_escape_output
11090 (writebuf, len, 1, (gdb_byte *) rs->buf.data () + i, &max_size, max_size);
11092 if (putpkt_binary (rs->buf.data (), i + buf_len) < 0
11093 || getpkt_sane (&rs->buf, 0) < 0
11094 || packet_ok (rs->buf, packet) != PACKET_OK)
11095 return TARGET_XFER_E_IO;
11097 unpack_varlen_hex (rs->buf.data (), &n);
11100 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
11103 /* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
11104 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
11105 number of bytes read is returned, or 0 for EOF, or -1 for error.
11106 The number of bytes read may be less than LEN without indicating an
11107 EOF. PACKET is checked and updated to indicate whether the remote
11108 target supports this object. */
11111 remote_target::remote_read_qxfer (const char *object_name,
11113 gdb_byte *readbuf, ULONGEST offset,
11115 ULONGEST *xfered_len,
11116 struct packet_config *packet)
11118 struct remote_state *rs = get_remote_state ();
11119 LONGEST i, n, packet_len;
11121 if (packet_config_support (packet) == PACKET_DISABLE)
11122 return TARGET_XFER_E_IO;
11124 /* Check whether we've cached an end-of-object packet that matches
11126 if (rs->finished_object)
11128 if (strcmp (object_name, rs->finished_object) == 0
11129 && strcmp (annex ? annex : "", rs->finished_annex) == 0
11130 && offset == rs->finished_offset)
11131 return TARGET_XFER_EOF;
11134 /* Otherwise, we're now reading something different. Discard
11136 xfree (rs->finished_object);
11137 xfree (rs->finished_annex);
11138 rs->finished_object = NULL;
11139 rs->finished_annex = NULL;
11142 /* Request only enough to fit in a single packet. The actual data
11143 may not, since we don't know how much of it will need to be escaped;
11144 the target is free to respond with slightly less data. We subtract
11145 five to account for the response type and the protocol frame. */
11146 n = std::min<LONGEST> (get_remote_packet_size () - 5, len);
11147 snprintf (rs->buf.data (), get_remote_packet_size () - 4,
11148 "qXfer:%s:read:%s:%s,%s",
11149 object_name, annex ? annex : "",
11150 phex_nz (offset, sizeof offset),
11151 phex_nz (n, sizeof n));
11152 i = putpkt (rs->buf);
11154 return TARGET_XFER_E_IO;
11157 packet_len = getpkt_sane (&rs->buf, 0);
11158 if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
11159 return TARGET_XFER_E_IO;
11161 if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
11162 error (_("Unknown remote qXfer reply: %s"), rs->buf.data ());
11164 /* 'm' means there is (or at least might be) more data after this
11165 batch. That does not make sense unless there's at least one byte
11166 of data in this reply. */
11167 if (rs->buf[0] == 'm' && packet_len == 1)
11168 error (_("Remote qXfer reply contained no data."));
11170 /* Got some data. */
11171 i = remote_unescape_input ((gdb_byte *) rs->buf.data () + 1,
11172 packet_len - 1, readbuf, n);
11174 /* 'l' is an EOF marker, possibly including a final block of data,
11175 or possibly empty. If we have the final block of a non-empty
11176 object, record this fact to bypass a subsequent partial read. */
11177 if (rs->buf[0] == 'l' && offset + i > 0)
11179 rs->finished_object = xstrdup (object_name);
11180 rs->finished_annex = xstrdup (annex ? annex : "");
11181 rs->finished_offset = offset + i;
11185 return TARGET_XFER_EOF;
11189 return TARGET_XFER_OK;
11193 enum target_xfer_status
11194 remote_target::xfer_partial (enum target_object object,
11195 const char *annex, gdb_byte *readbuf,
11196 const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
11197 ULONGEST *xfered_len)
11199 struct remote_state *rs;
11203 int unit_size = gdbarch_addressable_memory_unit_size (target_gdbarch ());
11205 set_remote_traceframe ();
11206 set_general_thread (inferior_ptid);
11208 rs = get_remote_state ();
11210 /* Handle memory using the standard memory routines. */
11211 if (object == TARGET_OBJECT_MEMORY)
11213 /* If the remote target is connected but not running, we should
11214 pass this request down to a lower stratum (e.g. the executable
11216 if (!target_has_execution ())
11217 return TARGET_XFER_EOF;
11219 if (writebuf != NULL)
11220 return remote_write_bytes (offset, writebuf, len, unit_size,
11223 return remote_read_bytes (offset, readbuf, len, unit_size,
11227 /* Handle extra signal info using qxfer packets. */
11228 if (object == TARGET_OBJECT_SIGNAL_INFO)
11231 return remote_read_qxfer ("siginfo", annex, readbuf, offset, len,
11232 xfered_len, &remote_protocol_packets
11233 [PACKET_qXfer_siginfo_read]);
11235 return remote_write_qxfer ("siginfo", annex,
11236 writebuf, offset, len, xfered_len,
11237 &remote_protocol_packets
11238 [PACKET_qXfer_siginfo_write]);
11241 if (object == TARGET_OBJECT_STATIC_TRACE_DATA)
11244 return remote_read_qxfer ("statictrace", annex,
11245 readbuf, offset, len, xfered_len,
11246 &remote_protocol_packets
11247 [PACKET_qXfer_statictrace_read]);
11249 return TARGET_XFER_E_IO;
11252 /* Only handle flash writes. */
11253 if (writebuf != NULL)
11257 case TARGET_OBJECT_FLASH:
11258 return remote_flash_write (offset, len, xfered_len,
11262 return TARGET_XFER_E_IO;
11266 /* Map pre-existing objects onto letters. DO NOT do this for new
11267 objects!!! Instead specify new query packets. */
11270 case TARGET_OBJECT_AVR:
11274 case TARGET_OBJECT_AUXV:
11275 gdb_assert (annex == NULL);
11276 return remote_read_qxfer ("auxv", annex, readbuf, offset, len,
11278 &remote_protocol_packets[PACKET_qXfer_auxv]);
11280 case TARGET_OBJECT_AVAILABLE_FEATURES:
11281 return remote_read_qxfer
11282 ("features", annex, readbuf, offset, len, xfered_len,
11283 &remote_protocol_packets[PACKET_qXfer_features]);
11285 case TARGET_OBJECT_LIBRARIES:
11286 return remote_read_qxfer
11287 ("libraries", annex, readbuf, offset, len, xfered_len,
11288 &remote_protocol_packets[PACKET_qXfer_libraries]);
11290 case TARGET_OBJECT_LIBRARIES_SVR4:
11291 return remote_read_qxfer
11292 ("libraries-svr4", annex, readbuf, offset, len, xfered_len,
11293 &remote_protocol_packets[PACKET_qXfer_libraries_svr4]);
11295 case TARGET_OBJECT_MEMORY_MAP:
11296 gdb_assert (annex == NULL);
11297 return remote_read_qxfer ("memory-map", annex, readbuf, offset, len,
11299 &remote_protocol_packets[PACKET_qXfer_memory_map]);
11301 case TARGET_OBJECT_OSDATA:
11302 /* Should only get here if we're connected. */
11303 gdb_assert (rs->remote_desc);
11304 return remote_read_qxfer
11305 ("osdata", annex, readbuf, offset, len, xfered_len,
11306 &remote_protocol_packets[PACKET_qXfer_osdata]);
11308 case TARGET_OBJECT_THREADS:
11309 gdb_assert (annex == NULL);
11310 return remote_read_qxfer ("threads", annex, readbuf, offset, len,
11312 &remote_protocol_packets[PACKET_qXfer_threads]);
11314 case TARGET_OBJECT_TRACEFRAME_INFO:
11315 gdb_assert (annex == NULL);
11316 return remote_read_qxfer
11317 ("traceframe-info", annex, readbuf, offset, len, xfered_len,
11318 &remote_protocol_packets[PACKET_qXfer_traceframe_info]);
11320 case TARGET_OBJECT_FDPIC:
11321 return remote_read_qxfer ("fdpic", annex, readbuf, offset, len,
11323 &remote_protocol_packets[PACKET_qXfer_fdpic]);
11325 case TARGET_OBJECT_OPENVMS_UIB:
11326 return remote_read_qxfer ("uib", annex, readbuf, offset, len,
11328 &remote_protocol_packets[PACKET_qXfer_uib]);
11330 case TARGET_OBJECT_BTRACE:
11331 return remote_read_qxfer ("btrace", annex, readbuf, offset, len,
11333 &remote_protocol_packets[PACKET_qXfer_btrace]);
11335 case TARGET_OBJECT_BTRACE_CONF:
11336 return remote_read_qxfer ("btrace-conf", annex, readbuf, offset,
11338 &remote_protocol_packets[PACKET_qXfer_btrace_conf]);
11340 case TARGET_OBJECT_EXEC_FILE:
11341 return remote_read_qxfer ("exec-file", annex, readbuf, offset,
11343 &remote_protocol_packets[PACKET_qXfer_exec_file]);
11346 return TARGET_XFER_E_IO;
11349 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
11350 large enough let the caller deal with it. */
11351 if (len < get_remote_packet_size ())
11352 return TARGET_XFER_E_IO;
11353 len = get_remote_packet_size ();
11355 /* Except for querying the minimum buffer size, target must be open. */
11356 if (!rs->remote_desc)
11357 error (_("remote query is only available after target open"));
11359 gdb_assert (annex != NULL);
11360 gdb_assert (readbuf != NULL);
11362 p2 = rs->buf.data ();
11364 *p2++ = query_type;
11366 /* We used one buffer char for the remote protocol q command and
11367 another for the query type. As the remote protocol encapsulation
11368 uses 4 chars plus one extra in case we are debugging
11369 (remote_debug), we have PBUFZIZ - 7 left to pack the query
11372 while (annex[i] && (i < (get_remote_packet_size () - 8)))
11374 /* Bad caller may have sent forbidden characters. */
11375 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
11380 gdb_assert (annex[i] == '\0');
11382 i = putpkt (rs->buf);
11384 return TARGET_XFER_E_IO;
11386 getpkt (&rs->buf, 0);
11387 strcpy ((char *) readbuf, rs->buf.data ());
11389 *xfered_len = strlen ((char *) readbuf);
11390 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
11393 /* Implementation of to_get_memory_xfer_limit. */
11396 remote_target::get_memory_xfer_limit ()
11398 return get_memory_write_packet_size ();
11402 remote_target::search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
11403 const gdb_byte *pattern, ULONGEST pattern_len,
11404 CORE_ADDR *found_addrp)
11406 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
11407 struct remote_state *rs = get_remote_state ();
11408 int max_size = get_memory_write_packet_size ();
11409 struct packet_config *packet =
11410 &remote_protocol_packets[PACKET_qSearch_memory];
11411 /* Number of packet bytes used to encode the pattern;
11412 this could be more than PATTERN_LEN due to escape characters. */
11413 int escaped_pattern_len;
11414 /* Amount of pattern that was encodable in the packet. */
11415 int used_pattern_len;
11418 ULONGEST found_addr;
11420 auto read_memory = [=] (CORE_ADDR addr, gdb_byte *result, size_t len)
11422 return (target_read (this, TARGET_OBJECT_MEMORY, NULL, result, addr, len)
11426 /* Don't go to the target if we don't have to. This is done before
11427 checking packet_config_support to avoid the possibility that a
11428 success for this edge case means the facility works in
11430 if (pattern_len > search_space_len)
11432 if (pattern_len == 0)
11434 *found_addrp = start_addr;
11438 /* If we already know the packet isn't supported, fall back to the simple
11439 way of searching memory. */
11441 if (packet_config_support (packet) == PACKET_DISABLE)
11443 /* Target doesn't provided special support, fall back and use the
11444 standard support (copy memory and do the search here). */
11445 return simple_search_memory (read_memory, start_addr, search_space_len,
11446 pattern, pattern_len, found_addrp);
11449 /* Make sure the remote is pointing at the right process. */
11450 set_general_process ();
11452 /* Insert header. */
11453 i = snprintf (rs->buf.data (), max_size,
11454 "qSearch:memory:%s;%s;",
11455 phex_nz (start_addr, addr_size),
11456 phex_nz (search_space_len, sizeof (search_space_len)));
11457 max_size -= (i + 1);
11459 /* Escape as much data as fits into rs->buf. */
11460 escaped_pattern_len =
11461 remote_escape_output (pattern, pattern_len, 1,
11462 (gdb_byte *) rs->buf.data () + i,
11463 &used_pattern_len, max_size);
11465 /* Bail if the pattern is too large. */
11466 if (used_pattern_len != pattern_len)
11467 error (_("Pattern is too large to transmit to remote target."));
11469 if (putpkt_binary (rs->buf.data (), i + escaped_pattern_len) < 0
11470 || getpkt_sane (&rs->buf, 0) < 0
11471 || packet_ok (rs->buf, packet) != PACKET_OK)
11473 /* The request may not have worked because the command is not
11474 supported. If so, fall back to the simple way. */
11475 if (packet_config_support (packet) == PACKET_DISABLE)
11477 return simple_search_memory (read_memory, start_addr, search_space_len,
11478 pattern, pattern_len, found_addrp);
11483 if (rs->buf[0] == '0')
11485 else if (rs->buf[0] == '1')
11488 if (rs->buf[1] != ',')
11489 error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ());
11490 unpack_varlen_hex (&rs->buf[2], &found_addr);
11491 *found_addrp = found_addr;
11494 error (_("Unknown qSearch:memory reply: %s"), rs->buf.data ());
11500 remote_target::rcmd (const char *command, struct ui_file *outbuf)
11502 struct remote_state *rs = get_remote_state ();
11503 char *p = rs->buf.data ();
11505 if (!rs->remote_desc)
11506 error (_("remote rcmd is only available after target open"));
11508 /* Send a NULL command across as an empty command. */
11509 if (command == NULL)
11512 /* The query prefix. */
11513 strcpy (rs->buf.data (), "qRcmd,");
11514 p = strchr (rs->buf.data (), '\0');
11516 if ((strlen (rs->buf.data ()) + strlen (command) * 2 + 8/*misc*/)
11517 > get_remote_packet_size ())
11518 error (_("\"monitor\" command ``%s'' is too long."), command);
11520 /* Encode the actual command. */
11521 bin2hex ((const gdb_byte *) command, p, strlen (command));
11523 if (putpkt (rs->buf) < 0)
11524 error (_("Communication problem with target."));
11526 /* get/display the response */
11531 /* XXX - see also remote_get_noisy_reply(). */
11532 QUIT; /* Allow user to bail out with ^C. */
11534 if (getpkt_sane (&rs->buf, 0) == -1)
11536 /* Timeout. Continue to (try to) read responses.
11537 This is better than stopping with an error, assuming the stub
11538 is still executing the (long) monitor command.
11539 If needed, the user can interrupt gdb using C-c, obtaining
11540 an effect similar to stop on timeout. */
11543 buf = rs->buf.data ();
11544 if (buf[0] == '\0')
11545 error (_("Target does not support this command."));
11546 if (buf[0] == 'O' && buf[1] != 'K')
11548 remote_console_output (buf + 1); /* 'O' message from stub. */
11551 if (strcmp (buf, "OK") == 0)
11553 if (strlen (buf) == 3 && buf[0] == 'E'
11554 && isdigit (buf[1]) && isdigit (buf[2]))
11556 error (_("Protocol error with Rcmd"));
11558 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
11560 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
11562 fputc_unfiltered (c, outbuf);
11568 std::vector<mem_region>
11569 remote_target::memory_map ()
11571 std::vector<mem_region> result;
11572 gdb::optional<gdb::char_vector> text
11573 = target_read_stralloc (current_inferior ()->top_target (),
11574 TARGET_OBJECT_MEMORY_MAP, NULL);
11577 result = parse_memory_map (text->data ());
11583 packet_command (const char *args, int from_tty)
11585 remote_target *remote = get_current_remote_target ();
11587 if (remote == nullptr)
11588 error (_("command can only be used with remote target"));
11590 remote->packet_command (args, from_tty);
11594 remote_target::packet_command (const char *args, int from_tty)
11597 error (_("remote-packet command requires packet text as argument"));
11599 puts_filtered ("sending: ");
11600 print_packet (args);
11601 puts_filtered ("\n");
11604 remote_state *rs = get_remote_state ();
11606 getpkt (&rs->buf, 0);
11607 puts_filtered ("received: ");
11608 print_packet (rs->buf.data ());
11609 puts_filtered ("\n");
11613 /* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
11615 static void display_thread_info (struct gdb_ext_thread_info *info);
11617 static void threadset_test_cmd (char *cmd, int tty);
11619 static void threadalive_test (char *cmd, int tty);
11621 static void threadlist_test_cmd (char *cmd, int tty);
11623 int get_and_display_threadinfo (threadref *ref);
11625 static void threadinfo_test_cmd (char *cmd, int tty);
11627 static int thread_display_step (threadref *ref, void *context);
11629 static void threadlist_update_test_cmd (char *cmd, int tty);
11631 static void init_remote_threadtests (void);
11633 #define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
11636 threadset_test_cmd (const char *cmd, int tty)
11638 int sample_thread = SAMPLE_THREAD;
11640 printf_filtered (_("Remote threadset test\n"));
11641 set_general_thread (sample_thread);
11646 threadalive_test (const char *cmd, int tty)
11648 int sample_thread = SAMPLE_THREAD;
11649 int pid = inferior_ptid.pid ();
11650 ptid_t ptid = ptid_t (pid, sample_thread, 0);
11652 if (remote_thread_alive (ptid))
11653 printf_filtered ("PASS: Thread alive test\n");
11655 printf_filtered ("FAIL: Thread alive test\n");
11658 void output_threadid (char *title, threadref *ref);
11661 output_threadid (char *title, threadref *ref)
11665 pack_threadid (&hexid[0], ref); /* Convert thread id into hex. */
11667 printf_filtered ("%s %s\n", title, (&hexid[0]));
11671 threadlist_test_cmd (const char *cmd, int tty)
11674 threadref nextthread;
11675 int done, result_count;
11676 threadref threadlist[3];
11678 printf_filtered ("Remote Threadlist test\n");
11679 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
11680 &result_count, &threadlist[0]))
11681 printf_filtered ("FAIL: threadlist test\n");
11684 threadref *scan = threadlist;
11685 threadref *limit = scan + result_count;
11687 while (scan < limit)
11688 output_threadid (" thread ", scan++);
11693 display_thread_info (struct gdb_ext_thread_info *info)
11695 output_threadid ("Threadid: ", &info->threadid);
11696 printf_filtered ("Name: %s\n ", info->shortname);
11697 printf_filtered ("State: %s\n", info->display);
11698 printf_filtered ("other: %s\n\n", info->more_display);
11702 get_and_display_threadinfo (threadref *ref)
11706 struct gdb_ext_thread_info threadinfo;
11708 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
11709 | TAG_MOREDISPLAY | TAG_DISPLAY;
11710 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
11711 display_thread_info (&threadinfo);
11716 threadinfo_test_cmd (const char *cmd, int tty)
11718 int athread = SAMPLE_THREAD;
11722 int_to_threadref (&thread, athread);
11723 printf_filtered ("Remote Threadinfo test\n");
11724 if (!get_and_display_threadinfo (&thread))
11725 printf_filtered ("FAIL cannot get thread info\n");
11729 thread_display_step (threadref *ref, void *context)
11731 /* output_threadid(" threadstep ",ref); *//* simple test */
11732 return get_and_display_threadinfo (ref);
11736 threadlist_update_test_cmd (const char *cmd, int tty)
11738 printf_filtered ("Remote Threadlist update test\n");
11739 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
11743 init_remote_threadtests (void)
11745 add_com ("tlist", class_obscure, threadlist_test_cmd,
11746 _("Fetch and print the remote list of "
11747 "thread identifiers, one pkt only."));
11748 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
11749 _("Fetch and display info about one thread."));
11750 add_com ("tset", class_obscure, threadset_test_cmd,
11751 _("Test setting to a different thread."));
11752 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
11753 _("Iterate through updating all remote thread info."));
11754 add_com ("talive", class_obscure, threadalive_test,
11755 _("Remote thread alive test."));
11760 /* Convert a thread ID to a string. */
11763 remote_target::pid_to_str (ptid_t ptid)
11765 struct remote_state *rs = get_remote_state ();
11767 if (ptid == null_ptid)
11768 return normal_pid_to_str (ptid);
11769 else if (ptid.is_pid ())
11771 /* Printing an inferior target id. */
11773 /* When multi-process extensions are off, there's no way in the
11774 remote protocol to know the remote process id, if there's any
11775 at all. There's one exception --- when we're connected with
11776 target extended-remote, and we manually attached to a process
11777 with "attach PID". We don't record anywhere a flag that
11778 allows us to distinguish that case from the case of
11779 connecting with extended-remote and the stub already being
11780 attached to a process, and reporting yes to qAttached, hence
11781 no smart special casing here. */
11782 if (!remote_multi_process_p (rs))
11783 return "Remote target";
11785 return normal_pid_to_str (ptid);
11789 if (magic_null_ptid == ptid)
11790 return "Thread <main>";
11791 else if (remote_multi_process_p (rs))
11792 if (ptid.lwp () == 0)
11793 return normal_pid_to_str (ptid);
11795 return string_printf ("Thread %d.%ld",
11796 ptid.pid (), ptid.lwp ());
11798 return string_printf ("Thread %ld", ptid.lwp ());
11802 /* Get the address of the thread local variable in OBJFILE which is
11803 stored at OFFSET within the thread local storage for thread PTID. */
11806 remote_target::get_thread_local_address (ptid_t ptid, CORE_ADDR lm,
11809 if (packet_support (PACKET_qGetTLSAddr) != PACKET_DISABLE)
11811 struct remote_state *rs = get_remote_state ();
11812 char *p = rs->buf.data ();
11813 char *endp = p + get_remote_packet_size ();
11814 enum packet_result result;
11816 strcpy (p, "qGetTLSAddr:");
11818 p = write_ptid (p, endp, ptid);
11820 p += hexnumstr (p, offset);
11822 p += hexnumstr (p, lm);
11826 getpkt (&rs->buf, 0);
11827 result = packet_ok (rs->buf,
11828 &remote_protocol_packets[PACKET_qGetTLSAddr]);
11829 if (result == PACKET_OK)
11833 unpack_varlen_hex (rs->buf.data (), &addr);
11836 else if (result == PACKET_UNKNOWN)
11837 throw_error (TLS_GENERIC_ERROR,
11838 _("Remote target doesn't support qGetTLSAddr packet"));
11840 throw_error (TLS_GENERIC_ERROR,
11841 _("Remote target failed to process qGetTLSAddr request"));
11844 throw_error (TLS_GENERIC_ERROR,
11845 _("TLS not supported or disabled on this target"));
11850 /* Provide thread local base, i.e. Thread Information Block address.
11851 Returns 1 if ptid is found and thread_local_base is non zero. */
11854 remote_target::get_tib_address (ptid_t ptid, CORE_ADDR *addr)
11856 if (packet_support (PACKET_qGetTIBAddr) != PACKET_DISABLE)
11858 struct remote_state *rs = get_remote_state ();
11859 char *p = rs->buf.data ();
11860 char *endp = p + get_remote_packet_size ();
11861 enum packet_result result;
11863 strcpy (p, "qGetTIBAddr:");
11865 p = write_ptid (p, endp, ptid);
11869 getpkt (&rs->buf, 0);
11870 result = packet_ok (rs->buf,
11871 &remote_protocol_packets[PACKET_qGetTIBAddr]);
11872 if (result == PACKET_OK)
11875 unpack_varlen_hex (rs->buf.data (), &val);
11877 *addr = (CORE_ADDR) val;
11880 else if (result == PACKET_UNKNOWN)
11881 error (_("Remote target doesn't support qGetTIBAddr packet"));
11883 error (_("Remote target failed to process qGetTIBAddr request"));
11886 error (_("qGetTIBAddr not supported or disabled on this target"));
11891 /* Support for inferring a target description based on the current
11892 architecture and the size of a 'g' packet. While the 'g' packet
11893 can have any size (since optional registers can be left off the
11894 end), some sizes are easily recognizable given knowledge of the
11895 approximate architecture. */
11897 struct remote_g_packet_guess
11899 remote_g_packet_guess (int bytes_, const struct target_desc *tdesc_)
11906 const struct target_desc *tdesc;
11909 struct remote_g_packet_data : public allocate_on_obstack
11911 std::vector<remote_g_packet_guess> guesses;
11914 static struct gdbarch_data *remote_g_packet_data_handle;
11917 remote_g_packet_data_init (struct obstack *obstack)
11919 return new (obstack) remote_g_packet_data;
11923 register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes,
11924 const struct target_desc *tdesc)
11926 struct remote_g_packet_data *data
11927 = ((struct remote_g_packet_data *)
11928 gdbarch_data (gdbarch, remote_g_packet_data_handle));
11930 gdb_assert (tdesc != NULL);
11932 for (const remote_g_packet_guess &guess : data->guesses)
11933 if (guess.bytes == bytes)
11934 internal_error (__FILE__, __LINE__,
11935 _("Duplicate g packet description added for size %d"),
11938 data->guesses.emplace_back (bytes, tdesc);
11941 /* Return true if remote_read_description would do anything on this target
11942 and architecture, false otherwise. */
11945 remote_read_description_p (struct target_ops *target)
11947 struct remote_g_packet_data *data
11948 = ((struct remote_g_packet_data *)
11949 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
11951 return !data->guesses.empty ();
11954 const struct target_desc *
11955 remote_target::read_description ()
11957 struct remote_g_packet_data *data
11958 = ((struct remote_g_packet_data *)
11959 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
11961 /* Do not try this during initial connection, when we do not know
11962 whether there is a running but stopped thread. */
11963 if (!target_has_execution () || inferior_ptid == null_ptid)
11964 return beneath ()->read_description ();
11966 if (!data->guesses.empty ())
11968 int bytes = send_g_packet ();
11970 for (const remote_g_packet_guess &guess : data->guesses)
11971 if (guess.bytes == bytes)
11972 return guess.tdesc;
11974 /* We discard the g packet. A minor optimization would be to
11975 hold on to it, and fill the register cache once we have selected
11976 an architecture, but it's too tricky to do safely. */
11979 return beneath ()->read_description ();
11982 /* Remote file transfer support. This is host-initiated I/O, not
11983 target-initiated; for target-initiated, see remote-fileio.c. */
11985 /* If *LEFT is at least the length of STRING, copy STRING to
11986 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11987 decrease *LEFT. Otherwise raise an error. */
11990 remote_buffer_add_string (char **buffer, int *left, const char *string)
11992 int len = strlen (string);
11995 error (_("Packet too long for target."));
11997 memcpy (*buffer, string, len);
12001 /* NUL-terminate the buffer as a convenience, if there is
12007 /* If *LEFT is large enough, hex encode LEN bytes from BYTES into
12008 *BUFFER, update *BUFFER to point to the new end of the buffer, and
12009 decrease *LEFT. Otherwise raise an error. */
12012 remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes,
12015 if (2 * len > *left)
12016 error (_("Packet too long for target."));
12018 bin2hex (bytes, *buffer, len);
12019 *buffer += 2 * len;
12022 /* NUL-terminate the buffer as a convenience, if there is
12028 /* If *LEFT is large enough, convert VALUE to hex and add it to
12029 *BUFFER, update *BUFFER to point to the new end of the buffer, and
12030 decrease *LEFT. Otherwise raise an error. */
12033 remote_buffer_add_int (char **buffer, int *left, ULONGEST value)
12035 int len = hexnumlen (value);
12038 error (_("Packet too long for target."));
12040 hexnumstr (*buffer, value);
12044 /* NUL-terminate the buffer as a convenience, if there is
12050 /* Parse an I/O result packet from BUFFER. Set RETCODE to the return
12051 value, *REMOTE_ERRNO to the remote error number or zero if none
12052 was included, and *ATTACHMENT to point to the start of the annex
12053 if any. The length of the packet isn't needed here; there may
12054 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
12056 Return 0 if the packet could be parsed, -1 if it could not. If
12057 -1 is returned, the other variables may not be initialized. */
12060 remote_hostio_parse_result (const char *buffer, int *retcode,
12061 int *remote_errno, const char **attachment)
12066 *attachment = NULL;
12068 if (buffer[0] != 'F')
12072 *retcode = strtol (&buffer[1], &p, 16);
12073 if (errno != 0 || p == &buffer[1])
12076 /* Check for ",errno". */
12080 *remote_errno = strtol (p + 1, &p2, 16);
12081 if (errno != 0 || p + 1 == p2)
12086 /* Check for ";attachment". If there is no attachment, the
12087 packet should end here. */
12090 *attachment = p + 1;
12093 else if (*p == '\0')
12099 /* Send a prepared I/O packet to the target and read its response.
12100 The prepared packet is in the global RS->BUF before this function
12101 is called, and the answer is there when we return.
12103 COMMAND_BYTES is the length of the request to send, which may include
12104 binary data. WHICH_PACKET is the packet configuration to check
12105 before attempting a packet. If an error occurs, *REMOTE_ERRNO
12106 is set to the error number and -1 is returned. Otherwise the value
12107 returned by the function is returned.
12109 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
12110 attachment is expected; an error will be reported if there's a
12111 mismatch. If one is found, *ATTACHMENT will be set to point into
12112 the packet buffer and *ATTACHMENT_LEN will be set to the
12113 attachment's length. */
12116 remote_target::remote_hostio_send_command (int command_bytes, int which_packet,
12117 int *remote_errno, const char **attachment,
12118 int *attachment_len)
12120 struct remote_state *rs = get_remote_state ();
12121 int ret, bytes_read;
12122 const char *attachment_tmp;
12124 if (packet_support (which_packet) == PACKET_DISABLE)
12126 *remote_errno = FILEIO_ENOSYS;
12130 putpkt_binary (rs->buf.data (), command_bytes);
12131 bytes_read = getpkt_sane (&rs->buf, 0);
12133 /* If it timed out, something is wrong. Don't try to parse the
12135 if (bytes_read < 0)
12137 *remote_errno = FILEIO_EINVAL;
12141 switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet]))
12144 *remote_errno = FILEIO_EINVAL;
12146 case PACKET_UNKNOWN:
12147 *remote_errno = FILEIO_ENOSYS;
12153 if (remote_hostio_parse_result (rs->buf.data (), &ret, remote_errno,
12156 *remote_errno = FILEIO_EINVAL;
12160 /* Make sure we saw an attachment if and only if we expected one. */
12161 if ((attachment_tmp == NULL && attachment != NULL)
12162 || (attachment_tmp != NULL && attachment == NULL))
12164 *remote_errno = FILEIO_EINVAL;
12168 /* If an attachment was found, it must point into the packet buffer;
12169 work out how many bytes there were. */
12170 if (attachment_tmp != NULL)
12172 *attachment = attachment_tmp;
12173 *attachment_len = bytes_read - (*attachment - rs->buf.data ());
12179 /* See declaration.h. */
12182 readahead_cache::invalidate ()
12187 /* See declaration.h. */
12190 readahead_cache::invalidate_fd (int fd)
12192 if (this->fd == fd)
12196 /* Set the filesystem remote_hostio functions that take FILENAME
12197 arguments will use. Return 0 on success, or -1 if an error
12198 occurs (and set *REMOTE_ERRNO). */
12201 remote_target::remote_hostio_set_filesystem (struct inferior *inf,
12204 struct remote_state *rs = get_remote_state ();
12205 int required_pid = (inf == NULL || inf->fake_pid_p) ? 0 : inf->pid;
12206 char *p = rs->buf.data ();
12207 int left = get_remote_packet_size () - 1;
12211 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
12214 if (rs->fs_pid != -1 && required_pid == rs->fs_pid)
12217 remote_buffer_add_string (&p, &left, "vFile:setfs:");
12219 xsnprintf (arg, sizeof (arg), "%x", required_pid);
12220 remote_buffer_add_string (&p, &left, arg);
12222 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_setfs,
12223 remote_errno, NULL, NULL);
12225 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
12229 rs->fs_pid = required_pid;
12234 /* Implementation of to_fileio_open. */
12237 remote_target::remote_hostio_open (inferior *inf, const char *filename,
12238 int flags, int mode, int warn_if_slow,
12241 struct remote_state *rs = get_remote_state ();
12242 char *p = rs->buf.data ();
12243 int left = get_remote_packet_size () - 1;
12247 static int warning_issued = 0;
12249 printf_unfiltered (_("Reading %s from remote target...\n"),
12252 if (!warning_issued)
12254 warning (_("File transfers from remote targets can be slow."
12255 " Use \"set sysroot\" to access files locally"
12257 warning_issued = 1;
12261 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
12264 remote_buffer_add_string (&p, &left, "vFile:open:");
12266 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12267 strlen (filename));
12268 remote_buffer_add_string (&p, &left, ",");
12270 remote_buffer_add_int (&p, &left, flags);
12271 remote_buffer_add_string (&p, &left, ",");
12273 remote_buffer_add_int (&p, &left, mode);
12275 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_open,
12276 remote_errno, NULL, NULL);
12280 remote_target::fileio_open (struct inferior *inf, const char *filename,
12281 int flags, int mode, int warn_if_slow,
12284 return remote_hostio_open (inf, filename, flags, mode, warn_if_slow,
12288 /* Implementation of to_fileio_pwrite. */
12291 remote_target::remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
12292 ULONGEST offset, int *remote_errno)
12294 struct remote_state *rs = get_remote_state ();
12295 char *p = rs->buf.data ();
12296 int left = get_remote_packet_size ();
12299 rs->readahead_cache.invalidate_fd (fd);
12301 remote_buffer_add_string (&p, &left, "vFile:pwrite:");
12303 remote_buffer_add_int (&p, &left, fd);
12304 remote_buffer_add_string (&p, &left, ",");
12306 remote_buffer_add_int (&p, &left, offset);
12307 remote_buffer_add_string (&p, &left, ",");
12309 p += remote_escape_output (write_buf, len, 1, (gdb_byte *) p, &out_len,
12310 (get_remote_packet_size ()
12311 - (p - rs->buf.data ())));
12313 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pwrite,
12314 remote_errno, NULL, NULL);
12318 remote_target::fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
12319 ULONGEST offset, int *remote_errno)
12321 return remote_hostio_pwrite (fd, write_buf, len, offset, remote_errno);
12324 /* Helper for the implementation of to_fileio_pread. Read the file
12325 from the remote side with vFile:pread. */
12328 remote_target::remote_hostio_pread_vFile (int fd, gdb_byte *read_buf, int len,
12329 ULONGEST offset, int *remote_errno)
12331 struct remote_state *rs = get_remote_state ();
12332 char *p = rs->buf.data ();
12333 const char *attachment;
12334 int left = get_remote_packet_size ();
12335 int ret, attachment_len;
12338 remote_buffer_add_string (&p, &left, "vFile:pread:");
12340 remote_buffer_add_int (&p, &left, fd);
12341 remote_buffer_add_string (&p, &left, ",");
12343 remote_buffer_add_int (&p, &left, len);
12344 remote_buffer_add_string (&p, &left, ",");
12346 remote_buffer_add_int (&p, &left, offset);
12348 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_pread,
12349 remote_errno, &attachment,
12355 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
12357 if (read_len != ret)
12358 error (_("Read returned %d, but %d bytes."), ret, (int) read_len);
12363 /* See declaration.h. */
12366 readahead_cache::pread (int fd, gdb_byte *read_buf, size_t len,
12370 && this->offset <= offset
12371 && offset < this->offset + this->bufsize)
12373 ULONGEST max = this->offset + this->bufsize;
12375 if (offset + len > max)
12376 len = max - offset;
12378 memcpy (read_buf, this->buf + offset - this->offset, len);
12385 /* Implementation of to_fileio_pread. */
12388 remote_target::remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
12389 ULONGEST offset, int *remote_errno)
12392 struct remote_state *rs = get_remote_state ();
12393 readahead_cache *cache = &rs->readahead_cache;
12395 ret = cache->pread (fd, read_buf, len, offset);
12398 cache->hit_count++;
12400 remote_debug_printf ("readahead cache hit %s",
12401 pulongest (cache->hit_count));
12405 cache->miss_count++;
12407 remote_debug_printf ("readahead cache miss %s",
12408 pulongest (cache->miss_count));
12411 cache->offset = offset;
12412 cache->bufsize = get_remote_packet_size ();
12413 cache->buf = (gdb_byte *) xrealloc (cache->buf, cache->bufsize);
12415 ret = remote_hostio_pread_vFile (cache->fd, cache->buf, cache->bufsize,
12416 cache->offset, remote_errno);
12419 cache->invalidate_fd (fd);
12423 cache->bufsize = ret;
12424 return cache->pread (fd, read_buf, len, offset);
12428 remote_target::fileio_pread (int fd, gdb_byte *read_buf, int len,
12429 ULONGEST offset, int *remote_errno)
12431 return remote_hostio_pread (fd, read_buf, len, offset, remote_errno);
12434 /* Implementation of to_fileio_close. */
12437 remote_target::remote_hostio_close (int fd, int *remote_errno)
12439 struct remote_state *rs = get_remote_state ();
12440 char *p = rs->buf.data ();
12441 int left = get_remote_packet_size () - 1;
12443 rs->readahead_cache.invalidate_fd (fd);
12445 remote_buffer_add_string (&p, &left, "vFile:close:");
12447 remote_buffer_add_int (&p, &left, fd);
12449 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_close,
12450 remote_errno, NULL, NULL);
12454 remote_target::fileio_close (int fd, int *remote_errno)
12456 return remote_hostio_close (fd, remote_errno);
12459 /* Implementation of to_fileio_unlink. */
12462 remote_target::remote_hostio_unlink (inferior *inf, const char *filename,
12465 struct remote_state *rs = get_remote_state ();
12466 char *p = rs->buf.data ();
12467 int left = get_remote_packet_size () - 1;
12469 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
12472 remote_buffer_add_string (&p, &left, "vFile:unlink:");
12474 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12475 strlen (filename));
12477 return remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_unlink,
12478 remote_errno, NULL, NULL);
12482 remote_target::fileio_unlink (struct inferior *inf, const char *filename,
12485 return remote_hostio_unlink (inf, filename, remote_errno);
12488 /* Implementation of to_fileio_readlink. */
12490 gdb::optional<std::string>
12491 remote_target::fileio_readlink (struct inferior *inf, const char *filename,
12494 struct remote_state *rs = get_remote_state ();
12495 char *p = rs->buf.data ();
12496 const char *attachment;
12497 int left = get_remote_packet_size ();
12498 int len, attachment_len;
12501 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
12504 remote_buffer_add_string (&p, &left, "vFile:readlink:");
12506 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
12507 strlen (filename));
12509 len = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_readlink,
12510 remote_errno, &attachment,
12516 std::string ret (len, '\0');
12518 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
12519 (gdb_byte *) &ret[0], len);
12520 if (read_len != len)
12521 error (_("Readlink returned %d, but %d bytes."), len, read_len);
12526 /* Implementation of to_fileio_fstat. */
12529 remote_target::fileio_fstat (int fd, struct stat *st, int *remote_errno)
12531 struct remote_state *rs = get_remote_state ();
12532 char *p = rs->buf.data ();
12533 int left = get_remote_packet_size ();
12534 int attachment_len, ret;
12535 const char *attachment;
12536 struct fio_stat fst;
12539 remote_buffer_add_string (&p, &left, "vFile:fstat:");
12541 remote_buffer_add_int (&p, &left, fd);
12543 ret = remote_hostio_send_command (p - rs->buf.data (), PACKET_vFile_fstat,
12544 remote_errno, &attachment,
12548 if (*remote_errno != FILEIO_ENOSYS)
12551 /* Strictly we should return -1, ENOSYS here, but when
12552 "set sysroot remote:" was implemented in August 2008
12553 BFD's need for a stat function was sidestepped with
12554 this hack. This was not remedied until March 2015
12555 so we retain the previous behavior to avoid breaking
12558 Note that the memset is a March 2015 addition; older
12559 GDBs set st_size *and nothing else* so the structure
12560 would have garbage in all other fields. This might
12561 break something but retaining the previous behavior
12562 here would be just too wrong. */
12564 memset (st, 0, sizeof (struct stat));
12565 st->st_size = INT_MAX;
12569 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
12570 (gdb_byte *) &fst, sizeof (fst));
12572 if (read_len != ret)
12573 error (_("vFile:fstat returned %d, but %d bytes."), ret, read_len);
12575 if (read_len != sizeof (fst))
12576 error (_("vFile:fstat returned %d bytes, but expecting %d."),
12577 read_len, (int) sizeof (fst));
12579 remote_fileio_to_host_stat (&fst, st);
12584 /* Implementation of to_filesystem_is_local. */
12587 remote_target::filesystem_is_local ()
12589 /* Valgrind GDB presents itself as a remote target but works
12590 on the local filesystem: it does not implement remote get
12591 and users are not expected to set a sysroot. To handle
12592 this case we treat the remote filesystem as local if the
12593 sysroot is exactly TARGET_SYSROOT_PREFIX and if the stub
12594 does not support vFile:open. */
12595 if (strcmp (gdb_sysroot, TARGET_SYSROOT_PREFIX) == 0)
12597 enum packet_support ps = packet_support (PACKET_vFile_open);
12599 if (ps == PACKET_SUPPORT_UNKNOWN)
12601 int fd, remote_errno;
12603 /* Try opening a file to probe support. The supplied
12604 filename is irrelevant, we only care about whether
12605 the stub recognizes the packet or not. */
12606 fd = remote_hostio_open (NULL, "just probing",
12607 FILEIO_O_RDONLY, 0700, 0,
12611 remote_hostio_close (fd, &remote_errno);
12613 ps = packet_support (PACKET_vFile_open);
12616 if (ps == PACKET_DISABLE)
12618 static int warning_issued = 0;
12620 if (!warning_issued)
12622 warning (_("remote target does not support file"
12623 " transfer, attempting to access files"
12624 " from local filesystem."));
12625 warning_issued = 1;
12636 remote_fileio_errno_to_host (int errnum)
12642 case FILEIO_ENOENT:
12650 case FILEIO_EACCES:
12652 case FILEIO_EFAULT:
12656 case FILEIO_EEXIST:
12658 case FILEIO_ENODEV:
12660 case FILEIO_ENOTDIR:
12662 case FILEIO_EISDIR:
12664 case FILEIO_EINVAL:
12666 case FILEIO_ENFILE:
12668 case FILEIO_EMFILE:
12672 case FILEIO_ENOSPC:
12674 case FILEIO_ESPIPE:
12678 case FILEIO_ENOSYS:
12680 case FILEIO_ENAMETOOLONG:
12681 return ENAMETOOLONG;
12687 remote_hostio_error (int errnum)
12689 int host_error = remote_fileio_errno_to_host (errnum);
12691 if (host_error == -1)
12692 error (_("Unknown remote I/O error %d"), errnum);
12694 error (_("Remote I/O error: %s"), safe_strerror (host_error));
12697 /* A RAII wrapper around a remote file descriptor. */
12699 class scoped_remote_fd
12702 scoped_remote_fd (remote_target *remote, int fd)
12703 : m_remote (remote), m_fd (fd)
12707 ~scoped_remote_fd ()
12714 m_remote->remote_hostio_close (m_fd, &remote_errno);
12718 /* Swallow exception before it escapes the dtor. If
12719 something goes wrong, likely the connection is gone,
12720 and there's nothing else that can be done. */
12725 DISABLE_COPY_AND_ASSIGN (scoped_remote_fd);
12727 /* Release ownership of the file descriptor, and return it. */
12728 ATTRIBUTE_UNUSED_RESULT int release () noexcept
12735 /* Return the owned file descriptor. */
12736 int get () const noexcept
12742 /* The remote target. */
12743 remote_target *m_remote;
12745 /* The owned remote I/O file descriptor. */
12750 remote_file_put (const char *local_file, const char *remote_file, int from_tty)
12752 remote_target *remote = get_current_remote_target ();
12754 if (remote == nullptr)
12755 error (_("command can only be used with remote target"));
12757 remote->remote_file_put (local_file, remote_file, from_tty);
12761 remote_target::remote_file_put (const char *local_file, const char *remote_file,
12764 int retcode, remote_errno, bytes, io_size;
12765 int bytes_in_buffer;
12769 gdb_file_up file = gdb_fopen_cloexec (local_file, "rb");
12771 perror_with_name (local_file);
12773 scoped_remote_fd fd
12774 (this, remote_hostio_open (NULL,
12775 remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT
12777 0700, 0, &remote_errno));
12778 if (fd.get () == -1)
12779 remote_hostio_error (remote_errno);
12781 /* Send up to this many bytes at once. They won't all fit in the
12782 remote packet limit, so we'll transfer slightly fewer. */
12783 io_size = get_remote_packet_size ();
12784 gdb::byte_vector buffer (io_size);
12786 bytes_in_buffer = 0;
12789 while (bytes_in_buffer || !saw_eof)
12793 bytes = fread (buffer.data () + bytes_in_buffer, 1,
12794 io_size - bytes_in_buffer,
12798 if (ferror (file.get ()))
12799 error (_("Error reading %s."), local_file);
12802 /* EOF. Unless there is something still in the
12803 buffer from the last iteration, we are done. */
12805 if (bytes_in_buffer == 0)
12813 bytes += bytes_in_buffer;
12814 bytes_in_buffer = 0;
12816 retcode = remote_hostio_pwrite (fd.get (), buffer.data (), bytes,
12817 offset, &remote_errno);
12820 remote_hostio_error (remote_errno);
12821 else if (retcode == 0)
12822 error (_("Remote write of %d bytes returned 0!"), bytes);
12823 else if (retcode < bytes)
12825 /* Short write. Save the rest of the read data for the next
12827 bytes_in_buffer = bytes - retcode;
12828 memmove (buffer.data (), buffer.data () + retcode, bytes_in_buffer);
12834 if (remote_hostio_close (fd.release (), &remote_errno))
12835 remote_hostio_error (remote_errno);
12838 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file);
12842 remote_file_get (const char *remote_file, const char *local_file, int from_tty)
12844 remote_target *remote = get_current_remote_target ();
12846 if (remote == nullptr)
12847 error (_("command can only be used with remote target"));
12849 remote->remote_file_get (remote_file, local_file, from_tty);
12853 remote_target::remote_file_get (const char *remote_file, const char *local_file,
12856 int remote_errno, bytes, io_size;
12859 scoped_remote_fd fd
12860 (this, remote_hostio_open (NULL,
12861 remote_file, FILEIO_O_RDONLY, 0, 0,
12863 if (fd.get () == -1)
12864 remote_hostio_error (remote_errno);
12866 gdb_file_up file = gdb_fopen_cloexec (local_file, "wb");
12868 perror_with_name (local_file);
12870 /* Send up to this many bytes at once. They won't all fit in the
12871 remote packet limit, so we'll transfer slightly fewer. */
12872 io_size = get_remote_packet_size ();
12873 gdb::byte_vector buffer (io_size);
12878 bytes = remote_hostio_pread (fd.get (), buffer.data (), io_size, offset,
12881 /* Success, but no bytes, means end-of-file. */
12884 remote_hostio_error (remote_errno);
12888 bytes = fwrite (buffer.data (), 1, bytes, file.get ());
12890 perror_with_name (local_file);
12893 if (remote_hostio_close (fd.release (), &remote_errno))
12894 remote_hostio_error (remote_errno);
12897 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file);
12901 remote_file_delete (const char *remote_file, int from_tty)
12903 remote_target *remote = get_current_remote_target ();
12905 if (remote == nullptr)
12906 error (_("command can only be used with remote target"));
12908 remote->remote_file_delete (remote_file, from_tty);
12912 remote_target::remote_file_delete (const char *remote_file, int from_tty)
12914 int retcode, remote_errno;
12916 retcode = remote_hostio_unlink (NULL, remote_file, &remote_errno);
12918 remote_hostio_error (remote_errno);
12921 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file);
12925 remote_put_command (const char *args, int from_tty)
12928 error_no_arg (_("file to put"));
12930 gdb_argv argv (args);
12931 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12932 error (_("Invalid parameters to remote put"));
12934 remote_file_put (argv[0], argv[1], from_tty);
12938 remote_get_command (const char *args, int from_tty)
12941 error_no_arg (_("file to get"));
12943 gdb_argv argv (args);
12944 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12945 error (_("Invalid parameters to remote get"));
12947 remote_file_get (argv[0], argv[1], from_tty);
12951 remote_delete_command (const char *args, int from_tty)
12954 error_no_arg (_("file to delete"));
12956 gdb_argv argv (args);
12957 if (argv[0] == NULL || argv[1] != NULL)
12958 error (_("Invalid parameters to remote delete"));
12960 remote_file_delete (argv[0], from_tty);
12964 remote_target::can_execute_reverse ()
12966 if (packet_support (PACKET_bs) == PACKET_ENABLE
12967 || packet_support (PACKET_bc) == PACKET_ENABLE)
12974 remote_target::supports_non_stop ()
12980 remote_target::supports_disable_randomization ()
12982 /* Only supported in extended mode. */
12987 remote_target::supports_multi_process ()
12989 struct remote_state *rs = get_remote_state ();
12991 return remote_multi_process_p (rs);
12995 remote_supports_cond_tracepoints ()
12997 return packet_support (PACKET_ConditionalTracepoints) == PACKET_ENABLE;
13001 remote_target::supports_evaluation_of_breakpoint_conditions ()
13003 return packet_support (PACKET_ConditionalBreakpoints) == PACKET_ENABLE;
13007 remote_supports_fast_tracepoints ()
13009 return packet_support (PACKET_FastTracepoints) == PACKET_ENABLE;
13013 remote_supports_static_tracepoints ()
13015 return packet_support (PACKET_StaticTracepoints) == PACKET_ENABLE;
13019 remote_supports_install_in_trace ()
13021 return packet_support (PACKET_InstallInTrace) == PACKET_ENABLE;
13025 remote_target::supports_enable_disable_tracepoint ()
13027 return (packet_support (PACKET_EnableDisableTracepoints_feature)
13032 remote_target::supports_string_tracing ()
13034 return packet_support (PACKET_tracenz_feature) == PACKET_ENABLE;
13038 remote_target::can_run_breakpoint_commands ()
13040 return packet_support (PACKET_BreakpointCommands) == PACKET_ENABLE;
13044 remote_target::trace_init ()
13046 struct remote_state *rs = get_remote_state ();
13049 remote_get_noisy_reply ();
13050 if (strcmp (rs->buf.data (), "OK") != 0)
13051 error (_("Target does not support this command."));
13054 /* Recursive routine to walk through command list including loops, and
13055 download packets for each command. */
13058 remote_target::remote_download_command_source (int num, ULONGEST addr,
13059 struct command_line *cmds)
13061 struct remote_state *rs = get_remote_state ();
13062 struct command_line *cmd;
13064 for (cmd = cmds; cmd; cmd = cmd->next)
13066 QUIT; /* Allow user to bail out with ^C. */
13067 strcpy (rs->buf.data (), "QTDPsrc:");
13068 encode_source_string (num, addr, "cmd", cmd->line,
13069 rs->buf.data () + strlen (rs->buf.data ()),
13070 rs->buf.size () - strlen (rs->buf.data ()));
13072 remote_get_noisy_reply ();
13073 if (strcmp (rs->buf.data (), "OK"))
13074 warning (_("Target does not support source download."));
13076 if (cmd->control_type == while_control
13077 || cmd->control_type == while_stepping_control)
13079 remote_download_command_source (num, addr, cmd->body_list_0.get ());
13081 QUIT; /* Allow user to bail out with ^C. */
13082 strcpy (rs->buf.data (), "QTDPsrc:");
13083 encode_source_string (num, addr, "cmd", "end",
13084 rs->buf.data () + strlen (rs->buf.data ()),
13085 rs->buf.size () - strlen (rs->buf.data ()));
13087 remote_get_noisy_reply ();
13088 if (strcmp (rs->buf.data (), "OK"))
13089 warning (_("Target does not support source download."));
13095 remote_target::download_tracepoint (struct bp_location *loc)
13099 std::vector<std::string> tdp_actions;
13100 std::vector<std::string> stepping_actions;
13102 struct breakpoint *b = loc->owner;
13103 struct tracepoint *t = (struct tracepoint *) b;
13104 struct remote_state *rs = get_remote_state ();
13106 const char *err_msg = _("Tracepoint packet too large for target.");
13109 /* We use a buffer other than rs->buf because we'll build strings
13110 across multiple statements, and other statements in between could
13112 gdb::char_vector buf (get_remote_packet_size ());
13114 encode_actions_rsp (loc, &tdp_actions, &stepping_actions);
13116 tpaddr = loc->address;
13117 strcpy (addrbuf, phex (tpaddr, sizeof (CORE_ADDR)));
13118 ret = snprintf (buf.data (), buf.size (), "QTDP:%x:%s:%c:%lx:%x",
13119 b->number, addrbuf, /* address */
13120 (b->enable_state == bp_enabled ? 'E' : 'D'),
13121 t->step_count, t->pass_count);
13123 if (ret < 0 || ret >= buf.size ())
13124 error ("%s", err_msg);
13126 /* Fast tracepoints are mostly handled by the target, but we can
13127 tell the target how big of an instruction block should be moved
13129 if (b->type == bp_fast_tracepoint)
13131 /* Only test for support at download time; we may not know
13132 target capabilities at definition time. */
13133 if (remote_supports_fast_tracepoints ())
13135 if (gdbarch_fast_tracepoint_valid_at (loc->gdbarch, tpaddr,
13138 size_left = buf.size () - strlen (buf.data ());
13139 ret = snprintf (buf.data () + strlen (buf.data ()),
13141 gdb_insn_length (loc->gdbarch, tpaddr));
13143 if (ret < 0 || ret >= size_left)
13144 error ("%s", err_msg);
13147 /* If it passed validation at definition but fails now,
13148 something is very wrong. */
13149 internal_error (__FILE__, __LINE__,
13150 _("Fast tracepoint not "
13151 "valid during download"));
13154 /* Fast tracepoints are functionally identical to regular
13155 tracepoints, so don't take lack of support as a reason to
13156 give up on the trace run. */
13157 warning (_("Target does not support fast tracepoints, "
13158 "downloading %d as regular tracepoint"), b->number);
13160 else if (b->type == bp_static_tracepoint)
13162 /* Only test for support at download time; we may not know
13163 target capabilities at definition time. */
13164 if (remote_supports_static_tracepoints ())
13166 struct static_tracepoint_marker marker;
13168 if (target_static_tracepoint_marker_at (tpaddr, &marker))
13170 size_left = buf.size () - strlen (buf.data ());
13171 ret = snprintf (buf.data () + strlen (buf.data ()),
13174 if (ret < 0 || ret >= size_left)
13175 error ("%s", err_msg);
13178 error (_("Static tracepoint not valid during download"));
13181 /* Fast tracepoints are functionally identical to regular
13182 tracepoints, so don't take lack of support as a reason
13183 to give up on the trace run. */
13184 error (_("Target does not support static tracepoints"));
13186 /* If the tracepoint has a conditional, make it into an agent
13187 expression and append to the definition. */
13190 /* Only test support at download time, we may not know target
13191 capabilities at definition time. */
13192 if (remote_supports_cond_tracepoints ())
13194 agent_expr_up aexpr = gen_eval_for_expr (tpaddr,
13197 size_left = buf.size () - strlen (buf.data ());
13199 ret = snprintf (buf.data () + strlen (buf.data ()),
13200 size_left, ":X%x,", aexpr->len);
13202 if (ret < 0 || ret >= size_left)
13203 error ("%s", err_msg);
13205 size_left = buf.size () - strlen (buf.data ());
13207 /* Two bytes to encode each aexpr byte, plus the terminating
13209 if (aexpr->len * 2 + 1 > size_left)
13210 error ("%s", err_msg);
13212 pkt = buf.data () + strlen (buf.data ());
13214 for (int ndx = 0; ndx < aexpr->len; ++ndx)
13215 pkt = pack_hex_byte (pkt, aexpr->buf[ndx]);
13219 warning (_("Target does not support conditional tracepoints, "
13220 "ignoring tp %d cond"), b->number);
13223 if (b->commands || *default_collect)
13225 size_left = buf.size () - strlen (buf.data ());
13227 ret = snprintf (buf.data () + strlen (buf.data ()),
13230 if (ret < 0 || ret >= size_left)
13231 error ("%s", err_msg);
13234 putpkt (buf.data ());
13235 remote_get_noisy_reply ();
13236 if (strcmp (rs->buf.data (), "OK"))
13237 error (_("Target does not support tracepoints."));
13239 /* do_single_steps (t); */
13240 for (auto action_it = tdp_actions.begin ();
13241 action_it != tdp_actions.end (); action_it++)
13243 QUIT; /* Allow user to bail out with ^C. */
13245 bool has_more = ((action_it + 1) != tdp_actions.end ()
13246 || !stepping_actions.empty ());
13248 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%c",
13249 b->number, addrbuf, /* address */
13250 action_it->c_str (),
13251 has_more ? '-' : 0);
13253 if (ret < 0 || ret >= buf.size ())
13254 error ("%s", err_msg);
13256 putpkt (buf.data ());
13257 remote_get_noisy_reply ();
13258 if (strcmp (rs->buf.data (), "OK"))
13259 error (_("Error on target while setting tracepoints."));
13262 for (auto action_it = stepping_actions.begin ();
13263 action_it != stepping_actions.end (); action_it++)
13265 QUIT; /* Allow user to bail out with ^C. */
13267 bool is_first = action_it == stepping_actions.begin ();
13268 bool has_more = (action_it + 1) != stepping_actions.end ();
13270 ret = snprintf (buf.data (), buf.size (), "QTDP:-%x:%s:%s%s%s",
13271 b->number, addrbuf, /* address */
13272 is_first ? "S" : "",
13273 action_it->c_str (),
13274 has_more ? "-" : "");
13276 if (ret < 0 || ret >= buf.size ())
13277 error ("%s", err_msg);
13279 putpkt (buf.data ());
13280 remote_get_noisy_reply ();
13281 if (strcmp (rs->buf.data (), "OK"))
13282 error (_("Error on target while setting tracepoints."));
13285 if (packet_support (PACKET_TracepointSource) == PACKET_ENABLE)
13287 if (b->location != NULL)
13289 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
13291 if (ret < 0 || ret >= buf.size ())
13292 error ("%s", err_msg);
13294 encode_source_string (b->number, loc->address, "at",
13295 event_location_to_string (b->location.get ()),
13296 buf.data () + strlen (buf.data ()),
13297 buf.size () - strlen (buf.data ()));
13298 putpkt (buf.data ());
13299 remote_get_noisy_reply ();
13300 if (strcmp (rs->buf.data (), "OK"))
13301 warning (_("Target does not support source download."));
13303 if (b->cond_string)
13305 ret = snprintf (buf.data (), buf.size (), "QTDPsrc:");
13307 if (ret < 0 || ret >= buf.size ())
13308 error ("%s", err_msg);
13310 encode_source_string (b->number, loc->address,
13311 "cond", b->cond_string,
13312 buf.data () + strlen (buf.data ()),
13313 buf.size () - strlen (buf.data ()));
13314 putpkt (buf.data ());
13315 remote_get_noisy_reply ();
13316 if (strcmp (rs->buf.data (), "OK"))
13317 warning (_("Target does not support source download."));
13319 remote_download_command_source (b->number, loc->address,
13320 breakpoint_commands (b));
13325 remote_target::can_download_tracepoint ()
13327 struct remote_state *rs = get_remote_state ();
13328 struct trace_status *ts;
13331 /* Don't try to install tracepoints until we've relocated our
13332 symbols, and fetched and merged the target's tracepoint list with
13334 if (rs->starting_up)
13337 ts = current_trace_status ();
13338 status = get_trace_status (ts);
13340 if (status == -1 || !ts->running_known || !ts->running)
13343 /* If we are in a tracing experiment, but remote stub doesn't support
13344 installing tracepoint in trace, we have to return. */
13345 if (!remote_supports_install_in_trace ())
13353 remote_target::download_trace_state_variable (const trace_state_variable &tsv)
13355 struct remote_state *rs = get_remote_state ();
13358 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDV:%x:%s:%x:",
13359 tsv.number, phex ((ULONGEST) tsv.initial_value, 8),
13361 p = rs->buf.data () + strlen (rs->buf.data ());
13362 if ((p - rs->buf.data ()) + tsv.name.length () * 2
13363 >= get_remote_packet_size ())
13364 error (_("Trace state variable name too long for tsv definition packet"));
13365 p += 2 * bin2hex ((gdb_byte *) (tsv.name.data ()), p, tsv.name.length ());
13368 remote_get_noisy_reply ();
13369 if (rs->buf[0] == '\0')
13370 error (_("Target does not support this command."));
13371 if (strcmp (rs->buf.data (), "OK") != 0)
13372 error (_("Error on target while downloading trace state variable."));
13376 remote_target::enable_tracepoint (struct bp_location *location)
13378 struct remote_state *rs = get_remote_state ();
13380 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTEnable:%x:%s",
13381 location->owner->number,
13382 phex (location->address, sizeof (CORE_ADDR)));
13384 remote_get_noisy_reply ();
13385 if (rs->buf[0] == '\0')
13386 error (_("Target does not support enabling tracepoints while a trace run is ongoing."));
13387 if (strcmp (rs->buf.data (), "OK") != 0)
13388 error (_("Error on target while enabling tracepoint."));
13392 remote_target::disable_tracepoint (struct bp_location *location)
13394 struct remote_state *rs = get_remote_state ();
13396 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QTDisable:%x:%s",
13397 location->owner->number,
13398 phex (location->address, sizeof (CORE_ADDR)));
13400 remote_get_noisy_reply ();
13401 if (rs->buf[0] == '\0')
13402 error (_("Target does not support disabling tracepoints while a trace run is ongoing."));
13403 if (strcmp (rs->buf.data (), "OK") != 0)
13404 error (_("Error on target while disabling tracepoint."));
13408 remote_target::trace_set_readonly_regions ()
13411 bfd_size_type size;
13416 if (!current_program_space->exec_bfd ())
13417 return; /* No information to give. */
13419 struct remote_state *rs = get_remote_state ();
13421 strcpy (rs->buf.data (), "QTro");
13422 offset = strlen (rs->buf.data ());
13423 for (s = current_program_space->exec_bfd ()->sections; s; s = s->next)
13425 char tmp1[40], tmp2[40];
13428 if ((s->flags & SEC_LOAD) == 0 ||
13429 /* (s->flags & SEC_CODE) == 0 || */
13430 (s->flags & SEC_READONLY) == 0)
13434 vma = bfd_section_vma (s);
13435 size = bfd_section_size (s);
13436 sprintf_vma (tmp1, vma);
13437 sprintf_vma (tmp2, vma + size);
13438 sec_length = 1 + strlen (tmp1) + 1 + strlen (tmp2);
13439 if (offset + sec_length + 1 > rs->buf.size ())
13441 if (packet_support (PACKET_qXfer_traceframe_info) != PACKET_ENABLE)
13443 Too many sections for read-only sections definition packet."));
13446 xsnprintf (rs->buf.data () + offset, rs->buf.size () - offset, ":%s,%s",
13448 offset += sec_length;
13453 getpkt (&rs->buf, 0);
13458 remote_target::trace_start ()
13460 struct remote_state *rs = get_remote_state ();
13462 putpkt ("QTStart");
13463 remote_get_noisy_reply ();
13464 if (rs->buf[0] == '\0')
13465 error (_("Target does not support this command."));
13466 if (strcmp (rs->buf.data (), "OK") != 0)
13467 error (_("Bogus reply from target: %s"), rs->buf.data ());
13471 remote_target::get_trace_status (struct trace_status *ts)
13473 /* Initialize it just to avoid a GCC false warning. */
13475 enum packet_result result;
13476 struct remote_state *rs = get_remote_state ();
13478 if (packet_support (PACKET_qTStatus) == PACKET_DISABLE)
13481 /* FIXME we need to get register block size some other way. */
13482 trace_regblock_size
13483 = rs->get_remote_arch_state (target_gdbarch ())->sizeof_g_packet;
13485 putpkt ("qTStatus");
13489 p = remote_get_noisy_reply ();
13491 catch (const gdb_exception_error &ex)
13493 if (ex.error != TARGET_CLOSE_ERROR)
13495 exception_fprintf (gdb_stderr, ex, "qTStatus: ");
13501 result = packet_ok (p, &remote_protocol_packets[PACKET_qTStatus]);
13503 /* If the remote target doesn't do tracing, flag it. */
13504 if (result == PACKET_UNKNOWN)
13507 /* We're working with a live target. */
13508 ts->filename = NULL;
13511 error (_("Bogus trace status reply from target: %s"), rs->buf.data ());
13513 /* Function 'parse_trace_status' sets default value of each field of
13514 'ts' at first, so we don't have to do it here. */
13515 parse_trace_status (p, ts);
13517 return ts->running;
13521 remote_target::get_tracepoint_status (struct breakpoint *bp,
13522 struct uploaded_tp *utp)
13524 struct remote_state *rs = get_remote_state ();
13526 struct bp_location *loc;
13527 struct tracepoint *tp = (struct tracepoint *) bp;
13528 size_t size = get_remote_packet_size ();
13533 tp->traceframe_usage = 0;
13534 for (loc = tp->loc; loc; loc = loc->next)
13536 /* If the tracepoint was never downloaded, don't go asking for
13538 if (tp->number_on_target == 0)
13540 xsnprintf (rs->buf.data (), size, "qTP:%x:%s", tp->number_on_target,
13541 phex_nz (loc->address, 0));
13543 reply = remote_get_noisy_reply ();
13544 if (reply && *reply)
13547 parse_tracepoint_status (reply + 1, bp, utp);
13553 utp->hit_count = 0;
13554 utp->traceframe_usage = 0;
13555 xsnprintf (rs->buf.data (), size, "qTP:%x:%s", utp->number,
13556 phex_nz (utp->addr, 0));
13558 reply = remote_get_noisy_reply ();
13559 if (reply && *reply)
13562 parse_tracepoint_status (reply + 1, bp, utp);
13568 remote_target::trace_stop ()
13570 struct remote_state *rs = get_remote_state ();
13573 remote_get_noisy_reply ();
13574 if (rs->buf[0] == '\0')
13575 error (_("Target does not support this command."));
13576 if (strcmp (rs->buf.data (), "OK") != 0)
13577 error (_("Bogus reply from target: %s"), rs->buf.data ());
13581 remote_target::trace_find (enum trace_find_type type, int num,
13582 CORE_ADDR addr1, CORE_ADDR addr2,
13585 struct remote_state *rs = get_remote_state ();
13586 char *endbuf = rs->buf.data () + get_remote_packet_size ();
13588 int target_frameno = -1, target_tracept = -1;
13590 /* Lookups other than by absolute frame number depend on the current
13591 trace selected, so make sure it is correct on the remote end
13593 if (type != tfind_number)
13594 set_remote_traceframe ();
13596 p = rs->buf.data ();
13597 strcpy (p, "QTFrame:");
13598 p = strchr (p, '\0');
13602 xsnprintf (p, endbuf - p, "%x", num);
13605 xsnprintf (p, endbuf - p, "pc:%s", phex_nz (addr1, 0));
13608 xsnprintf (p, endbuf - p, "tdp:%x", num);
13611 xsnprintf (p, endbuf - p, "range:%s:%s", phex_nz (addr1, 0),
13612 phex_nz (addr2, 0));
13614 case tfind_outside:
13615 xsnprintf (p, endbuf - p, "outside:%s:%s", phex_nz (addr1, 0),
13616 phex_nz (addr2, 0));
13619 error (_("Unknown trace find type %d"), type);
13623 reply = remote_get_noisy_reply ();
13624 if (*reply == '\0')
13625 error (_("Target does not support this command."));
13627 while (reply && *reply)
13632 target_frameno = (int) strtol (p, &reply, 16);
13634 error (_("Unable to parse trace frame number"));
13635 /* Don't update our remote traceframe number cache on failure
13636 to select a remote traceframe. */
13637 if (target_frameno == -1)
13642 target_tracept = (int) strtol (p, &reply, 16);
13644 error (_("Unable to parse tracepoint number"));
13646 case 'O': /* "OK"? */
13647 if (reply[1] == 'K' && reply[2] == '\0')
13650 error (_("Bogus reply from target: %s"), reply);
13653 error (_("Bogus reply from target: %s"), reply);
13656 *tpp = target_tracept;
13658 rs->remote_traceframe_number = target_frameno;
13659 return target_frameno;
13663 remote_target::get_trace_state_variable_value (int tsvnum, LONGEST *val)
13665 struct remote_state *rs = get_remote_state ();
13669 set_remote_traceframe ();
13671 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTV:%x", tsvnum);
13673 reply = remote_get_noisy_reply ();
13674 if (reply && *reply)
13678 unpack_varlen_hex (reply + 1, &uval);
13679 *val = (LONGEST) uval;
13687 remote_target::save_trace_data (const char *filename)
13689 struct remote_state *rs = get_remote_state ();
13692 p = rs->buf.data ();
13693 strcpy (p, "QTSave:");
13695 if ((p - rs->buf.data ()) + strlen (filename) * 2
13696 >= get_remote_packet_size ())
13697 error (_("Remote file name too long for trace save packet"));
13698 p += 2 * bin2hex ((gdb_byte *) filename, p, strlen (filename));
13701 reply = remote_get_noisy_reply ();
13702 if (*reply == '\0')
13703 error (_("Target does not support this command."));
13704 if (strcmp (reply, "OK") != 0)
13705 error (_("Bogus reply from target: %s"), reply);
13709 /* This is basically a memory transfer, but needs to be its own packet
13710 because we don't know how the target actually organizes its trace
13711 memory, plus we want to be able to ask for as much as possible, but
13712 not be unhappy if we don't get as much as we ask for. */
13715 remote_target::get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len)
13717 struct remote_state *rs = get_remote_state ();
13722 p = rs->buf.data ();
13723 strcpy (p, "qTBuffer:");
13725 p += hexnumstr (p, offset);
13727 p += hexnumstr (p, len);
13731 reply = remote_get_noisy_reply ();
13732 if (reply && *reply)
13734 /* 'l' by itself means we're at the end of the buffer and
13735 there is nothing more to get. */
13739 /* Convert the reply into binary. Limit the number of bytes to
13740 convert according to our passed-in buffer size, rather than
13741 what was returned in the packet; if the target is
13742 unexpectedly generous and gives us a bigger reply than we
13743 asked for, we don't want to crash. */
13744 rslt = hex2bin (reply, buf, len);
13748 /* Something went wrong, flag as an error. */
13753 remote_target::set_disconnected_tracing (int val)
13755 struct remote_state *rs = get_remote_state ();
13757 if (packet_support (PACKET_DisconnectedTracing_feature) == PACKET_ENABLE)
13761 xsnprintf (rs->buf.data (), get_remote_packet_size (),
13762 "QTDisconnected:%x", val);
13764 reply = remote_get_noisy_reply ();
13765 if (*reply == '\0')
13766 error (_("Target does not support this command."));
13767 if (strcmp (reply, "OK") != 0)
13768 error (_("Bogus reply from target: %s"), reply);
13771 warning (_("Target does not support disconnected tracing."));
13775 remote_target::core_of_thread (ptid_t ptid)
13777 thread_info *info = find_thread_ptid (this, ptid);
13779 if (info != NULL && info->priv != NULL)
13780 return get_remote_thread_info (info)->core;
13786 remote_target::set_circular_trace_buffer (int val)
13788 struct remote_state *rs = get_remote_state ();
13791 xsnprintf (rs->buf.data (), get_remote_packet_size (),
13792 "QTBuffer:circular:%x", val);
13794 reply = remote_get_noisy_reply ();
13795 if (*reply == '\0')
13796 error (_("Target does not support this command."));
13797 if (strcmp (reply, "OK") != 0)
13798 error (_("Bogus reply from target: %s"), reply);
13802 remote_target::traceframe_info ()
13804 gdb::optional<gdb::char_vector> text
13805 = target_read_stralloc (current_inferior ()->top_target (),
13806 TARGET_OBJECT_TRACEFRAME_INFO,
13809 return parse_traceframe_info (text->data ());
13814 /* Handle the qTMinFTPILen packet. Returns the minimum length of
13815 instruction on which a fast tracepoint may be placed. Returns -1
13816 if the packet is not supported, and 0 if the minimum instruction
13817 length is unknown. */
13820 remote_target::get_min_fast_tracepoint_insn_len ()
13822 struct remote_state *rs = get_remote_state ();
13825 /* If we're not debugging a process yet, the IPA can't be
13827 if (!target_has_execution ())
13830 /* Make sure the remote is pointing at the right process. */
13831 set_general_process ();
13833 xsnprintf (rs->buf.data (), get_remote_packet_size (), "qTMinFTPILen");
13835 reply = remote_get_noisy_reply ();
13836 if (*reply == '\0')
13840 ULONGEST min_insn_len;
13842 unpack_varlen_hex (reply, &min_insn_len);
13844 return (int) min_insn_len;
13849 remote_target::set_trace_buffer_size (LONGEST val)
13851 if (packet_support (PACKET_QTBuffer_size) != PACKET_DISABLE)
13853 struct remote_state *rs = get_remote_state ();
13854 char *buf = rs->buf.data ();
13855 char *endbuf = buf + get_remote_packet_size ();
13856 enum packet_result result;
13858 gdb_assert (val >= 0 || val == -1);
13859 buf += xsnprintf (buf, endbuf - buf, "QTBuffer:size:");
13860 /* Send -1 as literal "-1" to avoid host size dependency. */
13864 buf += hexnumstr (buf, (ULONGEST) -val);
13867 buf += hexnumstr (buf, (ULONGEST) val);
13870 remote_get_noisy_reply ();
13871 result = packet_ok (rs->buf,
13872 &remote_protocol_packets[PACKET_QTBuffer_size]);
13874 if (result != PACKET_OK)
13875 warning (_("Bogus reply from target: %s"), rs->buf.data ());
13880 remote_target::set_trace_notes (const char *user, const char *notes,
13881 const char *stop_notes)
13883 struct remote_state *rs = get_remote_state ();
13885 char *buf = rs->buf.data ();
13886 char *endbuf = buf + get_remote_packet_size ();
13889 buf += xsnprintf (buf, endbuf - buf, "QTNotes:");
13892 buf += xsnprintf (buf, endbuf - buf, "user:");
13893 nbytes = bin2hex ((gdb_byte *) user, buf, strlen (user));
13899 buf += xsnprintf (buf, endbuf - buf, "notes:");
13900 nbytes = bin2hex ((gdb_byte *) notes, buf, strlen (notes));
13906 buf += xsnprintf (buf, endbuf - buf, "tstop:");
13907 nbytes = bin2hex ((gdb_byte *) stop_notes, buf, strlen (stop_notes));
13911 /* Ensure the buffer is terminated. */
13915 reply = remote_get_noisy_reply ();
13916 if (*reply == '\0')
13919 if (strcmp (reply, "OK") != 0)
13920 error (_("Bogus reply from target: %s"), reply);
13926 remote_target::use_agent (bool use)
13928 if (packet_support (PACKET_QAgent) != PACKET_DISABLE)
13930 struct remote_state *rs = get_remote_state ();
13932 /* If the stub supports QAgent. */
13933 xsnprintf (rs->buf.data (), get_remote_packet_size (), "QAgent:%d", use);
13935 getpkt (&rs->buf, 0);
13937 if (strcmp (rs->buf.data (), "OK") == 0)
13948 remote_target::can_use_agent ()
13950 return (packet_support (PACKET_QAgent) != PACKET_DISABLE);
13953 struct btrace_target_info
13955 /* The ptid of the traced thread. */
13958 /* The obtained branch trace configuration. */
13959 struct btrace_config conf;
13962 /* Reset our idea of our target's btrace configuration. */
13965 remote_btrace_reset (remote_state *rs)
13967 memset (&rs->btrace_config, 0, sizeof (rs->btrace_config));
13970 /* Synchronize the configuration with the target. */
13973 remote_target::btrace_sync_conf (const btrace_config *conf)
13975 struct packet_config *packet;
13976 struct remote_state *rs;
13977 char *buf, *pos, *endbuf;
13979 rs = get_remote_state ();
13980 buf = rs->buf.data ();
13981 endbuf = buf + get_remote_packet_size ();
13983 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_bts_size];
13984 if (packet_config_support (packet) == PACKET_ENABLE
13985 && conf->bts.size != rs->btrace_config.bts.size)
13988 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13992 getpkt (&rs->buf, 0);
13994 if (packet_ok (buf, packet) == PACKET_ERROR)
13996 if (buf[0] == 'E' && buf[1] == '.')
13997 error (_("Failed to configure the BTS buffer size: %s"), buf + 2);
13999 error (_("Failed to configure the BTS buffer size."));
14002 rs->btrace_config.bts.size = conf->bts.size;
14005 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_pt_size];
14006 if (packet_config_support (packet) == PACKET_ENABLE
14007 && conf->pt.size != rs->btrace_config.pt.size)
14010 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
14014 getpkt (&rs->buf, 0);
14016 if (packet_ok (buf, packet) == PACKET_ERROR)
14018 if (buf[0] == 'E' && buf[1] == '.')
14019 error (_("Failed to configure the trace buffer size: %s"), buf + 2);
14021 error (_("Failed to configure the trace buffer size."));
14024 rs->btrace_config.pt.size = conf->pt.size;
14028 /* Read the current thread's btrace configuration from the target and
14029 store it into CONF. */
14032 btrace_read_config (struct btrace_config *conf)
14034 gdb::optional<gdb::char_vector> xml
14035 = target_read_stralloc (current_inferior ()->top_target (),
14036 TARGET_OBJECT_BTRACE_CONF, "");
14038 parse_xml_btrace_conf (conf, xml->data ());
14041 /* Maybe reopen target btrace. */
14044 remote_target::remote_btrace_maybe_reopen ()
14046 struct remote_state *rs = get_remote_state ();
14047 int btrace_target_pushed = 0;
14048 #if !defined (HAVE_LIBIPT)
14052 /* Don't bother walking the entirety of the remote thread list when
14053 we know the feature isn't supported by the remote. */
14054 if (packet_support (PACKET_qXfer_btrace_conf) != PACKET_ENABLE)
14057 scoped_restore_current_thread restore_thread;
14059 for (thread_info *tp : all_non_exited_threads (this))
14061 set_general_thread (tp->ptid);
14063 memset (&rs->btrace_config, 0x00, sizeof (struct btrace_config));
14064 btrace_read_config (&rs->btrace_config);
14066 if (rs->btrace_config.format == BTRACE_FORMAT_NONE)
14069 #if !defined (HAVE_LIBIPT)
14070 if (rs->btrace_config.format == BTRACE_FORMAT_PT)
14075 warning (_("Target is recording using Intel Processor Trace "
14076 "but support was disabled at compile time."));
14081 #endif /* !defined (HAVE_LIBIPT) */
14083 /* Push target, once, but before anything else happens. This way our
14084 changes to the threads will be cleaned up by unpushing the target
14085 in case btrace_read_config () throws. */
14086 if (!btrace_target_pushed)
14088 btrace_target_pushed = 1;
14089 record_btrace_push_target ();
14090 printf_filtered (_("Target is recording using %s.\n"),
14091 btrace_format_string (rs->btrace_config.format));
14094 tp->btrace.target = XCNEW (struct btrace_target_info);
14095 tp->btrace.target->ptid = tp->ptid;
14096 tp->btrace.target->conf = rs->btrace_config;
14100 /* Enable branch tracing. */
14102 struct btrace_target_info *
14103 remote_target::enable_btrace (ptid_t ptid, const struct btrace_config *conf)
14105 struct btrace_target_info *tinfo = NULL;
14106 struct packet_config *packet = NULL;
14107 struct remote_state *rs = get_remote_state ();
14108 char *buf = rs->buf.data ();
14109 char *endbuf = buf + get_remote_packet_size ();
14111 switch (conf->format)
14113 case BTRACE_FORMAT_BTS:
14114 packet = &remote_protocol_packets[PACKET_Qbtrace_bts];
14117 case BTRACE_FORMAT_PT:
14118 packet = &remote_protocol_packets[PACKET_Qbtrace_pt];
14122 if (packet == NULL || packet_config_support (packet) != PACKET_ENABLE)
14123 error (_("Target does not support branch tracing."));
14125 btrace_sync_conf (conf);
14127 set_general_thread (ptid);
14129 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
14131 getpkt (&rs->buf, 0);
14133 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
14135 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
14136 error (_("Could not enable branch tracing for %s: %s"),
14137 target_pid_to_str (ptid).c_str (), &rs->buf[2]);
14139 error (_("Could not enable branch tracing for %s."),
14140 target_pid_to_str (ptid).c_str ());
14143 tinfo = XCNEW (struct btrace_target_info);
14144 tinfo->ptid = ptid;
14146 /* If we fail to read the configuration, we lose some information, but the
14147 tracing itself is not impacted. */
14150 btrace_read_config (&tinfo->conf);
14152 catch (const gdb_exception_error &err)
14154 if (err.message != NULL)
14155 warning ("%s", err.what ());
14161 /* Disable branch tracing. */
14164 remote_target::disable_btrace (struct btrace_target_info *tinfo)
14166 struct packet_config *packet = &remote_protocol_packets[PACKET_Qbtrace_off];
14167 struct remote_state *rs = get_remote_state ();
14168 char *buf = rs->buf.data ();
14169 char *endbuf = buf + get_remote_packet_size ();
14171 if (packet_config_support (packet) != PACKET_ENABLE)
14172 error (_("Target does not support branch tracing."));
14174 set_general_thread (tinfo->ptid);
14176 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
14178 getpkt (&rs->buf, 0);
14180 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
14182 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
14183 error (_("Could not disable branch tracing for %s: %s"),
14184 target_pid_to_str (tinfo->ptid).c_str (), &rs->buf[2]);
14186 error (_("Could not disable branch tracing for %s."),
14187 target_pid_to_str (tinfo->ptid).c_str ());
14193 /* Teardown branch tracing. */
14196 remote_target::teardown_btrace (struct btrace_target_info *tinfo)
14198 /* We must not talk to the target during teardown. */
14202 /* Read the branch trace. */
14205 remote_target::read_btrace (struct btrace_data *btrace,
14206 struct btrace_target_info *tinfo,
14207 enum btrace_read_type type)
14209 struct packet_config *packet = &remote_protocol_packets[PACKET_qXfer_btrace];
14212 if (packet_config_support (packet) != PACKET_ENABLE)
14213 error (_("Target does not support branch tracing."));
14215 #if !defined(HAVE_LIBEXPAT)
14216 error (_("Cannot process branch tracing result. XML parsing not supported."));
14221 case BTRACE_READ_ALL:
14224 case BTRACE_READ_NEW:
14227 case BTRACE_READ_DELTA:
14231 internal_error (__FILE__, __LINE__,
14232 _("Bad branch tracing read type: %u."),
14233 (unsigned int) type);
14236 gdb::optional<gdb::char_vector> xml
14237 = target_read_stralloc (current_inferior ()->top_target (),
14238 TARGET_OBJECT_BTRACE, annex);
14240 return BTRACE_ERR_UNKNOWN;
14242 parse_xml_btrace (btrace, xml->data ());
14244 return BTRACE_ERR_NONE;
14247 const struct btrace_config *
14248 remote_target::btrace_conf (const struct btrace_target_info *tinfo)
14250 return &tinfo->conf;
14254 remote_target::augmented_libraries_svr4_read ()
14256 return (packet_support (PACKET_augmented_libraries_svr4_read_feature)
14260 /* Implementation of to_load. */
14263 remote_target::load (const char *name, int from_tty)
14265 generic_load (name, from_tty);
14268 /* Accepts an integer PID; returns a string representing a file that
14269 can be opened on the remote side to get the symbols for the child
14270 process. Returns NULL if the operation is not supported. */
14273 remote_target::pid_to_exec_file (int pid)
14275 static gdb::optional<gdb::char_vector> filename;
14276 char *annex = NULL;
14278 if (packet_support (PACKET_qXfer_exec_file) != PACKET_ENABLE)
14281 inferior *inf = find_inferior_pid (this, pid);
14283 internal_error (__FILE__, __LINE__,
14284 _("not currently attached to process %d"), pid);
14286 if (!inf->fake_pid_p)
14288 const int annex_size = 9;
14290 annex = (char *) alloca (annex_size);
14291 xsnprintf (annex, annex_size, "%x", pid);
14294 filename = target_read_stralloc (current_inferior ()->top_target (),
14295 TARGET_OBJECT_EXEC_FILE, annex);
14297 return filename ? filename->data () : nullptr;
14300 /* Implement the to_can_do_single_step target_ops method. */
14303 remote_target::can_do_single_step ()
14305 /* We can only tell whether target supports single step or not by
14306 supported s and S vCont actions if the stub supports vContSupported
14307 feature. If the stub doesn't support vContSupported feature,
14308 we have conservatively to think target doesn't supports single
14310 if (packet_support (PACKET_vContSupported) == PACKET_ENABLE)
14312 struct remote_state *rs = get_remote_state ();
14314 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
14315 remote_vcont_probe ();
14317 return rs->supports_vCont.s && rs->supports_vCont.S;
14323 /* Implementation of the to_execution_direction method for the remote
14326 enum exec_direction_kind
14327 remote_target::execution_direction ()
14329 struct remote_state *rs = get_remote_state ();
14331 return rs->last_resume_exec_dir;
14334 /* Return pointer to the thread_info struct which corresponds to
14335 THREAD_HANDLE (having length HANDLE_LEN). */
14338 remote_target::thread_handle_to_thread_info (const gdb_byte *thread_handle,
14342 for (thread_info *tp : all_non_exited_threads (this))
14344 remote_thread_info *priv = get_remote_thread_info (tp);
14346 if (tp->inf == inf && priv != NULL)
14348 if (handle_len != priv->thread_handle.size ())
14349 error (_("Thread handle size mismatch: %d vs %zu (from remote)"),
14350 handle_len, priv->thread_handle.size ());
14351 if (memcmp (thread_handle, priv->thread_handle.data (),
14361 remote_target::thread_info_to_thread_handle (struct thread_info *tp)
14363 remote_thread_info *priv = get_remote_thread_info (tp);
14364 return priv->thread_handle;
14368 remote_target::can_async_p ()
14370 struct remote_state *rs = get_remote_state ();
14372 /* We don't go async if the user has explicitly prevented it with the
14373 "maint set target-async" command. */
14374 if (!target_async_permitted)
14377 /* We're async whenever the serial device is. */
14378 return serial_can_async_p (rs->remote_desc);
14382 remote_target::is_async_p ()
14384 struct remote_state *rs = get_remote_state ();
14386 if (!target_async_permitted)
14387 /* We only enable async when the user specifically asks for it. */
14390 /* We're async whenever the serial device is. */
14391 return serial_is_async_p (rs->remote_desc);
14394 /* Pass the SERIAL event on and up to the client. One day this code
14395 will be able to delay notifying the client of an event until the
14396 point where an entire packet has been received. */
14398 static serial_event_ftype remote_async_serial_handler;
14401 remote_async_serial_handler (struct serial *scb, void *context)
14403 /* Don't propogate error information up to the client. Instead let
14404 the client find out about the error by querying the target. */
14405 inferior_event_handler (INF_REG_EVENT);
14409 remote_async_inferior_event_handler (gdb_client_data data)
14411 inferior_event_handler (INF_REG_EVENT);
14415 remote_target::async_wait_fd ()
14417 struct remote_state *rs = get_remote_state ();
14418 return rs->remote_desc->fd;
14422 remote_target::async (int enable)
14424 struct remote_state *rs = get_remote_state ();
14428 serial_async (rs->remote_desc, remote_async_serial_handler, rs);
14430 /* If there are pending events in the stop reply queue tell the
14431 event loop to process them. */
14432 if (!rs->stop_reply_queue.empty ())
14433 mark_async_event_handler (rs->remote_async_inferior_event_token);
14434 /* For simplicity, below we clear the pending events token
14435 without remembering whether it is marked, so here we always
14436 mark it. If there's actually no pending notification to
14437 process, this ends up being a no-op (other than a spurious
14438 event-loop wakeup). */
14439 if (target_is_non_stop_p ())
14440 mark_async_event_handler (rs->notif_state->get_pending_events_token);
14444 serial_async (rs->remote_desc, NULL, NULL);
14445 /* If the core is disabling async, it doesn't want to be
14446 disturbed with target events. Clear all async event sources
14448 clear_async_event_handler (rs->remote_async_inferior_event_token);
14449 if (target_is_non_stop_p ())
14450 clear_async_event_handler (rs->notif_state->get_pending_events_token);
14454 /* Implementation of the to_thread_events method. */
14457 remote_target::thread_events (int enable)
14459 struct remote_state *rs = get_remote_state ();
14460 size_t size = get_remote_packet_size ();
14462 if (packet_support (PACKET_QThreadEvents) == PACKET_DISABLE)
14465 xsnprintf (rs->buf.data (), size, "QThreadEvents:%x", enable ? 1 : 0);
14467 getpkt (&rs->buf, 0);
14469 switch (packet_ok (rs->buf,
14470 &remote_protocol_packets[PACKET_QThreadEvents]))
14473 if (strcmp (rs->buf.data (), "OK") != 0)
14474 error (_("Remote refused setting thread events: %s"), rs->buf.data ());
14477 warning (_("Remote failure reply: %s"), rs->buf.data ());
14479 case PACKET_UNKNOWN:
14485 show_remote_cmd (const char *args, int from_tty)
14487 /* We can't just use cmd_show_list here, because we want to skip
14488 the redundant "show remote Z-packet" and the legacy aliases. */
14489 struct cmd_list_element *list = remote_show_cmdlist;
14490 struct ui_out *uiout = current_uiout;
14492 ui_out_emit_tuple tuple_emitter (uiout, "showlist");
14493 for (; list != NULL; list = list->next)
14494 if (strcmp (list->name, "Z-packet") == 0)
14496 else if (list->type == not_set_cmd)
14497 /* Alias commands are exactly like the original, except they
14498 don't have the normal type. */
14502 ui_out_emit_tuple option_emitter (uiout, "option");
14504 uiout->field_string ("name", list->name);
14505 uiout->text (": ");
14506 if (list->type == show_cmd)
14507 do_show_command (NULL, from_tty, list);
14509 cmd_func (list, NULL, from_tty);
14514 /* Function to be called whenever a new objfile (shlib) is detected. */
14516 remote_new_objfile (struct objfile *objfile)
14518 remote_target *remote = get_current_remote_target ();
14520 if (remote != NULL) /* Have a remote connection. */
14521 remote->remote_check_symbols ();
14524 /* Pull all the tracepoints defined on the target and create local
14525 data structures representing them. We don't want to create real
14526 tracepoints yet, we don't want to mess up the user's existing
14530 remote_target::upload_tracepoints (struct uploaded_tp **utpp)
14532 struct remote_state *rs = get_remote_state ();
14535 /* Ask for a first packet of tracepoint definition. */
14537 getpkt (&rs->buf, 0);
14538 p = rs->buf.data ();
14539 while (*p && *p != 'l')
14541 parse_tracepoint_definition (p, utpp);
14542 /* Ask for another packet of tracepoint definition. */
14544 getpkt (&rs->buf, 0);
14545 p = rs->buf.data ();
14551 remote_target::upload_trace_state_variables (struct uploaded_tsv **utsvp)
14553 struct remote_state *rs = get_remote_state ();
14556 /* Ask for a first packet of variable definition. */
14558 getpkt (&rs->buf, 0);
14559 p = rs->buf.data ();
14560 while (*p && *p != 'l')
14562 parse_tsv_definition (p, utsvp);
14563 /* Ask for another packet of variable definition. */
14565 getpkt (&rs->buf, 0);
14566 p = rs->buf.data ();
14571 /* The "set/show range-stepping" show hook. */
14574 show_range_stepping (struct ui_file *file, int from_tty,
14575 struct cmd_list_element *c,
14578 fprintf_filtered (file,
14579 _("Debugger's willingness to use range stepping "
14580 "is %s.\n"), value);
14583 /* Return true if the vCont;r action is supported by the remote
14587 remote_target::vcont_r_supported ()
14589 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
14590 remote_vcont_probe ();
14592 return (packet_support (PACKET_vCont) == PACKET_ENABLE
14593 && get_remote_state ()->supports_vCont.r);
14596 /* The "set/show range-stepping" set hook. */
14599 set_range_stepping (const char *ignore_args, int from_tty,
14600 struct cmd_list_element *c)
14602 /* When enabling, check whether range stepping is actually supported
14603 by the target, and warn if not. */
14604 if (use_range_stepping)
14606 remote_target *remote = get_current_remote_target ();
14608 || !remote->vcont_r_supported ())
14609 warning (_("Range stepping is not supported by the current target"));
14614 show_remote_debug (struct ui_file *file, int from_tty,
14615 struct cmd_list_element *c, const char *value)
14617 fprintf_filtered (file, _("Debugging of remote protocol is %s.\n"),
14622 show_remote_timeout (struct ui_file *file, int from_tty,
14623 struct cmd_list_element *c, const char *value)
14625 fprintf_filtered (file,
14626 _("Timeout limit to wait for target to respond is %s.\n"),
14630 /* Implement the "supports_memory_tagging" target_ops method. */
14633 remote_target::supports_memory_tagging ()
14635 return remote_memory_tagging_p ();
14638 /* Create the qMemTags packet given ADDRESS, LEN and TYPE. */
14641 create_fetch_memtags_request (gdb::char_vector &packet, CORE_ADDR address,
14642 size_t len, int type)
14644 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
14646 std::string request = string_printf ("qMemTags:%s,%s:%s",
14647 phex_nz (address, addr_size),
14648 phex_nz (len, sizeof (len)),
14649 phex_nz (type, sizeof (type)));
14651 strcpy (packet.data (), request.c_str ());
14654 /* Parse the qMemTags packet reply into TAGS.
14656 Return true if successful, false otherwise. */
14659 parse_fetch_memtags_reply (const gdb::char_vector &reply,
14660 gdb::byte_vector &tags)
14662 if (reply.empty () || reply[0] == 'E' || reply[0] != 'm')
14665 /* Copy the tag data. */
14666 tags = hex2bin (reply.data () + 1);
14671 /* Create the QMemTags packet given ADDRESS, LEN, TYPE and TAGS. */
14674 create_store_memtags_request (gdb::char_vector &packet, CORE_ADDR address,
14675 size_t len, int type,
14676 const gdb::byte_vector &tags)
14678 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
14680 /* Put together the main packet, address and length. */
14681 std::string request = string_printf ("QMemTags:%s,%s:%s:",
14682 phex_nz (address, addr_size),
14683 phex_nz (len, sizeof (len)),
14684 phex_nz (type, sizeof (type)));
14685 request += bin2hex (tags.data (), tags.size ());
14687 /* Check if we have exceeded the maximum packet size. */
14688 if (packet.size () < request.length ())
14689 error (_("Contents too big for packet QMemTags."));
14691 strcpy (packet.data (), request.c_str ());
14694 /* Implement the "fetch_memtags" target_ops method. */
14697 remote_target::fetch_memtags (CORE_ADDR address, size_t len,
14698 gdb::byte_vector &tags, int type)
14700 /* Make sure the qMemTags packet is supported. */
14701 if (!remote_memory_tagging_p ())
14702 gdb_assert_not_reached ("remote fetch_memtags called with packet disabled");
14704 struct remote_state *rs = get_remote_state ();
14706 create_fetch_memtags_request (rs->buf, address, len, type);
14709 getpkt (&rs->buf, 0);
14711 return parse_fetch_memtags_reply (rs->buf, tags);
14714 /* Implement the "store_memtags" target_ops method. */
14717 remote_target::store_memtags (CORE_ADDR address, size_t len,
14718 const gdb::byte_vector &tags, int type)
14720 /* Make sure the QMemTags packet is supported. */
14721 if (!remote_memory_tagging_p ())
14722 gdb_assert_not_reached ("remote store_memtags called with packet disabled");
14724 struct remote_state *rs = get_remote_state ();
14726 create_store_memtags_request (rs->buf, address, len, type, tags);
14729 getpkt (&rs->buf, 0);
14731 /* Verify if the request was successful. */
14732 return packet_check_result (rs->buf.data ()) == PACKET_OK;
14737 namespace selftests {
14740 test_memory_tagging_functions ()
14742 remote_target remote;
14744 struct packet_config *config
14745 = &remote_protocol_packets[PACKET_memory_tagging_feature];
14747 scoped_restore restore_memtag_support_
14748 = make_scoped_restore (&config->support);
14750 /* Test memory tagging packet support. */
14751 config->support = PACKET_SUPPORT_UNKNOWN;
14752 SELF_CHECK (remote.supports_memory_tagging () == false);
14753 config->support = PACKET_DISABLE;
14754 SELF_CHECK (remote.supports_memory_tagging () == false);
14755 config->support = PACKET_ENABLE;
14756 SELF_CHECK (remote.supports_memory_tagging () == true);
14758 /* Setup testing. */
14759 gdb::char_vector packet;
14760 gdb::byte_vector tags, bv;
14761 std::string expected, reply;
14762 packet.resize (32000);
14764 /* Test creating a qMemTags request. */
14766 expected = "qMemTags:0,0:0";
14767 create_fetch_memtags_request (packet, 0x0, 0x0, 0);
14768 SELF_CHECK (strcmp (packet.data (), expected.c_str ()) == 0);
14770 expected = "qMemTags:deadbeef,10:1";
14771 create_fetch_memtags_request (packet, 0xdeadbeef, 16, 1);
14772 SELF_CHECK (strcmp (packet.data (), expected.c_str ()) == 0);
14774 /* Test parsing a qMemTags reply. */
14776 /* Error reply, tags vector unmodified. */
14778 strcpy (packet.data (), reply.c_str ());
14780 SELF_CHECK (parse_fetch_memtags_reply (packet, tags) == false);
14781 SELF_CHECK (tags.size () == 0);
14783 /* Valid reply, tags vector updated. */
14787 for (int i = 0; i < 5; i++)
14790 reply = "m" + bin2hex (bv.data (), bv.size ());
14791 strcpy (packet.data (), reply.c_str ());
14793 SELF_CHECK (parse_fetch_memtags_reply (packet, tags) == true);
14794 SELF_CHECK (tags.size () == 5);
14796 for (int i = 0; i < 5; i++)
14797 SELF_CHECK (tags[i] == i);
14799 /* Test creating a QMemTags request. */
14801 /* Empty tag data. */
14803 expected = "QMemTags:0,0:0:";
14804 create_store_memtags_request (packet, 0x0, 0x0, 0, tags);
14805 SELF_CHECK (memcmp (packet.data (), expected.c_str (),
14806 expected.length ()) == 0);
14808 /* Non-empty tag data. */
14810 for (int i = 0; i < 5; i++)
14811 tags.push_back (i);
14812 expected = "QMemTags:deadbeef,ff:1:0001020304";
14813 create_store_memtags_request (packet, 0xdeadbeef, 255, 1, tags);
14814 SELF_CHECK (memcmp (packet.data (), expected.c_str (),
14815 expected.length ()) == 0);
14818 } // namespace selftests
14819 #endif /* GDB_SELF_TEST */
14821 void _initialize_remote ();
14823 _initialize_remote ()
14825 struct cmd_list_element *cmd;
14826 const char *cmd_name;
14828 /* architecture specific data */
14829 remote_g_packet_data_handle =
14830 gdbarch_data_register_pre_init (remote_g_packet_data_init);
14832 add_target (remote_target_info, remote_target::open);
14833 add_target (extended_remote_target_info, extended_remote_target::open);
14835 /* Hook into new objfile notification. */
14836 gdb::observers::new_objfile.attach (remote_new_objfile);
14839 init_remote_threadtests ();
14842 /* set/show remote ... */
14844 add_basic_prefix_cmd ("remote", class_maintenance, _("\
14845 Remote protocol specific variables.\n\
14846 Configure various remote-protocol specific variables such as\n\
14847 the packets being used."),
14848 &remote_set_cmdlist, "set remote ",
14849 0 /* allow-unknown */, &setlist);
14850 add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
14851 Remote protocol specific variables.\n\
14852 Configure various remote-protocol specific variables such as\n\
14853 the packets being used."),
14854 &remote_show_cmdlist, "show remote ",
14855 0 /* allow-unknown */, &showlist);
14857 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
14858 Compare section data on target to the exec file.\n\
14859 Argument is a single section name (default: all loaded sections).\n\
14860 To compare only read-only loaded sections, specify the -r option."),
14863 add_cmd ("packet", class_maintenance, packet_command, _("\
14864 Send an arbitrary packet to a remote target.\n\
14865 maintenance packet TEXT\n\
14866 If GDB is talking to an inferior via the GDB serial protocol, then\n\
14867 this command sends the string TEXT to the inferior, and displays the\n\
14868 response packet. GDB supplies the initial `$' character, and the\n\
14869 terminating `#' character and checksum."),
14872 add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
14873 Set whether to send break if interrupted."), _("\
14874 Show whether to send break if interrupted."), _("\
14875 If set, a break, instead of a cntrl-c, is sent to the remote target."),
14876 set_remotebreak, show_remotebreak,
14877 &setlist, &showlist);
14878 cmd_name = "remotebreak";
14879 cmd = lookup_cmd (&cmd_name, setlist, "", NULL, -1, 1);
14880 deprecate_cmd (cmd, "set remote interrupt-sequence");
14881 cmd_name = "remotebreak"; /* needed because lookup_cmd updates the pointer */
14882 cmd = lookup_cmd (&cmd_name, showlist, "", NULL, -1, 1);
14883 deprecate_cmd (cmd, "show remote interrupt-sequence");
14885 add_setshow_enum_cmd ("interrupt-sequence", class_support,
14886 interrupt_sequence_modes, &interrupt_sequence_mode,
14888 Set interrupt sequence to remote target."), _("\
14889 Show interrupt sequence to remote target."), _("\
14890 Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."),
14891 NULL, show_interrupt_sequence,
14892 &remote_set_cmdlist,
14893 &remote_show_cmdlist);
14895 add_setshow_boolean_cmd ("interrupt-on-connect", class_support,
14896 &interrupt_on_connect, _("\
14897 Set whether interrupt-sequence is sent to remote target when gdb connects to."), _("\
14898 Show whether interrupt-sequence is sent to remote target when gdb connects to."), _("\
14899 If set, interrupt sequence is sent to remote target."),
14901 &remote_set_cmdlist, &remote_show_cmdlist);
14903 /* Install commands for configuring memory read/write packets. */
14905 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
14906 Set the maximum number of bytes per memory write packet (deprecated)."),
14908 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
14909 Show the maximum number of bytes per memory write packet (deprecated)."),
14911 add_cmd ("memory-write-packet-size", no_class,
14912 set_memory_write_packet_size, _("\
14913 Set the maximum number of bytes per memory-write packet.\n\
14914 Specify the number of bytes in a packet or 0 (zero) for the\n\
14915 default packet size. The actual limit is further reduced\n\
14916 dependent on the target. Specify ``fixed'' to disable the\n\
14917 further restriction and ``limit'' to enable that restriction."),
14918 &remote_set_cmdlist);
14919 add_cmd ("memory-read-packet-size", no_class,
14920 set_memory_read_packet_size, _("\
14921 Set the maximum number of bytes per memory-read packet.\n\
14922 Specify the number of bytes in a packet or 0 (zero) for the\n\
14923 default packet size. The actual limit is further reduced\n\
14924 dependent on the target. Specify ``fixed'' to disable the\n\
14925 further restriction and ``limit'' to enable that restriction."),
14926 &remote_set_cmdlist);
14927 add_cmd ("memory-write-packet-size", no_class,
14928 show_memory_write_packet_size,
14929 _("Show the maximum number of bytes per memory-write packet."),
14930 &remote_show_cmdlist);
14931 add_cmd ("memory-read-packet-size", no_class,
14932 show_memory_read_packet_size,
14933 _("Show the maximum number of bytes per memory-read packet."),
14934 &remote_show_cmdlist);
14936 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-limit", no_class,
14937 &remote_hw_watchpoint_limit, _("\
14938 Set the maximum number of target hardware watchpoints."), _("\
14939 Show the maximum number of target hardware watchpoints."), _("\
14940 Specify \"unlimited\" for unlimited hardware watchpoints."),
14941 NULL, show_hardware_watchpoint_limit,
14942 &remote_set_cmdlist,
14943 &remote_show_cmdlist);
14944 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-length-limit",
14946 &remote_hw_watchpoint_length_limit, _("\
14947 Set the maximum length (in bytes) of a target hardware watchpoint."), _("\
14948 Show the maximum length (in bytes) of a target hardware watchpoint."), _("\
14949 Specify \"unlimited\" to allow watchpoints of unlimited size."),
14950 NULL, show_hardware_watchpoint_length_limit,
14951 &remote_set_cmdlist, &remote_show_cmdlist);
14952 add_setshow_zuinteger_unlimited_cmd ("hardware-breakpoint-limit", no_class,
14953 &remote_hw_breakpoint_limit, _("\
14954 Set the maximum number of target hardware breakpoints."), _("\
14955 Show the maximum number of target hardware breakpoints."), _("\
14956 Specify \"unlimited\" for unlimited hardware breakpoints."),
14957 NULL, show_hardware_breakpoint_limit,
14958 &remote_set_cmdlist, &remote_show_cmdlist);
14960 add_setshow_zuinteger_cmd ("remoteaddresssize", class_obscure,
14961 &remote_address_size, _("\
14962 Set the maximum size of the address (in bits) in a memory packet."), _("\
14963 Show the maximum size of the address (in bits) in a memory packet."), NULL,
14965 NULL, /* FIXME: i18n: */
14966 &setlist, &showlist);
14968 init_all_packet_configs ();
14970 add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
14971 "X", "binary-download", 1);
14973 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
14974 "vCont", "verbose-resume", 0);
14976 add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals],
14977 "QPassSignals", "pass-signals", 0);
14979 add_packet_config_cmd (&remote_protocol_packets[PACKET_QCatchSyscalls],
14980 "QCatchSyscalls", "catch-syscalls", 0);
14982 add_packet_config_cmd (&remote_protocol_packets[PACKET_QProgramSignals],
14983 "QProgramSignals", "program-signals", 0);
14985 add_packet_config_cmd (&remote_protocol_packets[PACKET_QSetWorkingDir],
14986 "QSetWorkingDir", "set-working-dir", 0);
14988 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartupWithShell],
14989 "QStartupWithShell", "startup-with-shell", 0);
14991 add_packet_config_cmd (&remote_protocol_packets
14992 [PACKET_QEnvironmentHexEncoded],
14993 "QEnvironmentHexEncoded", "environment-hex-encoded",
14996 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentReset],
14997 "QEnvironmentReset", "environment-reset",
15000 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentUnset],
15001 "QEnvironmentUnset", "environment-unset",
15004 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
15005 "qSymbol", "symbol-lookup", 0);
15007 add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
15008 "P", "set-register", 1);
15010 add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
15011 "p", "fetch-register", 1);
15013 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
15014 "Z0", "software-breakpoint", 0);
15016 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
15017 "Z1", "hardware-breakpoint", 0);
15019 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
15020 "Z2", "write-watchpoint", 0);
15022 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
15023 "Z3", "read-watchpoint", 0);
15025 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
15026 "Z4", "access-watchpoint", 0);
15028 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
15029 "qXfer:auxv:read", "read-aux-vector", 0);
15031 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_exec_file],
15032 "qXfer:exec-file:read", "pid-to-exec-file", 0);
15034 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features],
15035 "qXfer:features:read", "target-features", 0);
15037 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries],
15038 "qXfer:libraries:read", "library-info", 0);
15040 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries_svr4],
15041 "qXfer:libraries-svr4:read", "library-info-svr4", 0);
15043 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
15044 "qXfer:memory-map:read", "memory-map", 0);
15046 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata],
15047 "qXfer:osdata:read", "osdata", 0);
15049 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_threads],
15050 "qXfer:threads:read", "threads", 0);
15052 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read],
15053 "qXfer:siginfo:read", "read-siginfo-object", 0);
15055 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write],
15056 "qXfer:siginfo:write", "write-siginfo-object", 0);
15058 add_packet_config_cmd
15059 (&remote_protocol_packets[PACKET_qXfer_traceframe_info],
15060 "qXfer:traceframe-info:read", "traceframe-info", 0);
15062 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_uib],
15063 "qXfer:uib:read", "unwind-info-block", 0);
15065 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
15066 "qGetTLSAddr", "get-thread-local-storage-address",
15069 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTIBAddr],
15070 "qGetTIBAddr", "get-thread-information-block-address",
15073 add_packet_config_cmd (&remote_protocol_packets[PACKET_bc],
15074 "bc", "reverse-continue", 0);
15076 add_packet_config_cmd (&remote_protocol_packets[PACKET_bs],
15077 "bs", "reverse-step", 0);
15079 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
15080 "qSupported", "supported-packets", 0);
15082 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory],
15083 "qSearch:memory", "search-memory", 0);
15085 add_packet_config_cmd (&remote_protocol_packets[PACKET_qTStatus],
15086 "qTStatus", "trace-status", 0);
15088 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_setfs],
15089 "vFile:setfs", "hostio-setfs", 0);
15091 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open],
15092 "vFile:open", "hostio-open", 0);
15094 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread],
15095 "vFile:pread", "hostio-pread", 0);
15097 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite],
15098 "vFile:pwrite", "hostio-pwrite", 0);
15100 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close],
15101 "vFile:close", "hostio-close", 0);
15103 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink],
15104 "vFile:unlink", "hostio-unlink", 0);
15106 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_readlink],
15107 "vFile:readlink", "hostio-readlink", 0);
15109 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_fstat],
15110 "vFile:fstat", "hostio-fstat", 0);
15112 add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach],
15113 "vAttach", "attach", 0);
15115 add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun],
15118 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode],
15119 "QStartNoAckMode", "noack", 0);
15121 add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill],
15122 "vKill", "kill", 0);
15124 add_packet_config_cmd (&remote_protocol_packets[PACKET_qAttached],
15125 "qAttached", "query-attached", 0);
15127 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalTracepoints],
15128 "ConditionalTracepoints",
15129 "conditional-tracepoints", 0);
15131 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalBreakpoints],
15132 "ConditionalBreakpoints",
15133 "conditional-breakpoints", 0);
15135 add_packet_config_cmd (&remote_protocol_packets[PACKET_BreakpointCommands],
15136 "BreakpointCommands",
15137 "breakpoint-commands", 0);
15139 add_packet_config_cmd (&remote_protocol_packets[PACKET_FastTracepoints],
15140 "FastTracepoints", "fast-tracepoints", 0);
15142 add_packet_config_cmd (&remote_protocol_packets[PACKET_TracepointSource],
15143 "TracepointSource", "TracepointSource", 0);
15145 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAllow],
15146 "QAllow", "allow", 0);
15148 add_packet_config_cmd (&remote_protocol_packets[PACKET_StaticTracepoints],
15149 "StaticTracepoints", "static-tracepoints", 0);
15151 add_packet_config_cmd (&remote_protocol_packets[PACKET_InstallInTrace],
15152 "InstallInTrace", "install-in-trace", 0);
15154 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_statictrace_read],
15155 "qXfer:statictrace:read", "read-sdata-object", 0);
15157 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_fdpic],
15158 "qXfer:fdpic:read", "read-fdpic-loadmap", 0);
15160 add_packet_config_cmd (&remote_protocol_packets[PACKET_QDisableRandomization],
15161 "QDisableRandomization", "disable-randomization", 0);
15163 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAgent],
15164 "QAgent", "agent", 0);
15166 add_packet_config_cmd (&remote_protocol_packets[PACKET_QTBuffer_size],
15167 "QTBuffer:size", "trace-buffer-size", 0);
15169 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_off],
15170 "Qbtrace:off", "disable-btrace", 0);
15172 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_bts],
15173 "Qbtrace:bts", "enable-btrace-bts", 0);
15175 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_pt],
15176 "Qbtrace:pt", "enable-btrace-pt", 0);
15178 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace],
15179 "qXfer:btrace", "read-btrace", 0);
15181 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace_conf],
15182 "qXfer:btrace-conf", "read-btrace-conf", 0);
15184 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_bts_size],
15185 "Qbtrace-conf:bts:size", "btrace-conf-bts-size", 0);
15187 add_packet_config_cmd (&remote_protocol_packets[PACKET_multiprocess_feature],
15188 "multiprocess-feature", "multiprocess-feature", 0);
15190 add_packet_config_cmd (&remote_protocol_packets[PACKET_swbreak_feature],
15191 "swbreak-feature", "swbreak-feature", 0);
15193 add_packet_config_cmd (&remote_protocol_packets[PACKET_hwbreak_feature],
15194 "hwbreak-feature", "hwbreak-feature", 0);
15196 add_packet_config_cmd (&remote_protocol_packets[PACKET_fork_event_feature],
15197 "fork-event-feature", "fork-event-feature", 0);
15199 add_packet_config_cmd (&remote_protocol_packets[PACKET_vfork_event_feature],
15200 "vfork-event-feature", "vfork-event-feature", 0);
15202 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_pt_size],
15203 "Qbtrace-conf:pt:size", "btrace-conf-pt-size", 0);
15205 add_packet_config_cmd (&remote_protocol_packets[PACKET_vContSupported],
15206 "vContSupported", "verbose-resume-supported", 0);
15208 add_packet_config_cmd (&remote_protocol_packets[PACKET_exec_event_feature],
15209 "exec-event-feature", "exec-event-feature", 0);
15211 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCtrlC],
15212 "vCtrlC", "ctrl-c", 0);
15214 add_packet_config_cmd (&remote_protocol_packets[PACKET_QThreadEvents],
15215 "QThreadEvents", "thread-events", 0);
15217 add_packet_config_cmd (&remote_protocol_packets[PACKET_no_resumed],
15218 "N stop reply", "no-resumed-stop-reply", 0);
15220 add_packet_config_cmd (&remote_protocol_packets[PACKET_memory_tagging_feature],
15221 "memory-tagging-feature", "memory-tagging-feature", 0);
15223 /* Assert that we've registered "set remote foo-packet" commands
15224 for all packet configs. */
15228 for (i = 0; i < PACKET_MAX; i++)
15230 /* Ideally all configs would have a command associated. Some
15231 still don't though. */
15236 case PACKET_QNonStop:
15237 case PACKET_EnableDisableTracepoints_feature:
15238 case PACKET_tracenz_feature:
15239 case PACKET_DisconnectedTracing_feature:
15240 case PACKET_augmented_libraries_svr4_read_feature:
15242 /* Additions to this list need to be well justified:
15243 pre-existing packets are OK; new packets are not. */
15251 /* This catches both forgetting to add a config command, and
15252 forgetting to remove a packet from the exception list. */
15253 gdb_assert (excepted == (remote_protocol_packets[i].name == NULL));
15257 /* Keep the old ``set remote Z-packet ...'' working. Each individual
15258 Z sub-packet has its own set and show commands, but users may
15259 have sets to this variable in their .gdbinit files (or in their
15261 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
15262 &remote_Z_packet_detect, _("\
15263 Set use of remote protocol `Z' packets."), _("\
15264 Show use of remote protocol `Z' packets."), _("\
15265 When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
15267 set_remote_protocol_Z_packet_cmd,
15268 show_remote_protocol_Z_packet_cmd,
15269 /* FIXME: i18n: Use of remote protocol
15270 `Z' packets is %s. */
15271 &remote_set_cmdlist, &remote_show_cmdlist);
15273 add_basic_prefix_cmd ("remote", class_files, _("\
15274 Manipulate files on the remote system.\n\
15275 Transfer files to and from the remote target system."),
15276 &remote_cmdlist, "remote ",
15277 0 /* allow-unknown */, &cmdlist);
15279 add_cmd ("put", class_files, remote_put_command,
15280 _("Copy a local file to the remote system."),
15283 add_cmd ("get", class_files, remote_get_command,
15284 _("Copy a remote file to the local system."),
15287 add_cmd ("delete", class_files, remote_delete_command,
15288 _("Delete a remote file."),
15291 add_setshow_string_noescape_cmd ("exec-file", class_files,
15292 &remote_exec_file_var, _("\
15293 Set the remote pathname for \"run\"."), _("\
15294 Show the remote pathname for \"run\"."), NULL,
15295 set_remote_exec_file,
15296 show_remote_exec_file,
15297 &remote_set_cmdlist,
15298 &remote_show_cmdlist);
15300 add_setshow_boolean_cmd ("range-stepping", class_run,
15301 &use_range_stepping, _("\
15302 Enable or disable range stepping."), _("\
15303 Show whether target-assisted range stepping is enabled."), _("\
15304 If on, and the target supports it, when stepping a source line, GDB\n\
15305 tells the target to step the corresponding range of addresses itself instead\n\
15306 of issuing multiple single-steps. This speeds up source level\n\
15307 stepping. If off, GDB always issues single-steps, even if range\n\
15308 stepping is supported by the target. The default is on."),
15309 set_range_stepping,
15310 show_range_stepping,
15314 add_setshow_zinteger_cmd ("watchdog", class_maintenance, &watchdog, _("\
15315 Set watchdog timer."), _("\
15316 Show watchdog timer."), _("\
15317 When non-zero, this timeout is used instead of waiting forever for a target\n\
15318 to finish a low-level step or continue operation. If the specified amount\n\
15319 of time passes without a response from the target, an error occurs."),
15322 &setlist, &showlist);
15324 add_setshow_zuinteger_unlimited_cmd ("remote-packet-max-chars", no_class,
15325 &remote_packet_max_chars, _("\
15326 Set the maximum number of characters to display for each remote packet."), _("\
15327 Show the maximum number of characters to display for each remote packet."), _("\
15328 Specify \"unlimited\" to display all the characters."),
15329 NULL, show_remote_packet_max_chars,
15330 &setdebuglist, &showdebuglist);
15332 add_setshow_boolean_cmd ("remote", no_class, &remote_debug,
15333 _("Set debugging of remote protocol."),
15334 _("Show debugging of remote protocol."),
15336 When enabled, each packet sent or received with the remote target\n\
15340 &setdebuglist, &showdebuglist);
15342 add_setshow_zuinteger_unlimited_cmd ("remotetimeout", no_class,
15343 &remote_timeout, _("\
15344 Set timeout limit to wait for target to respond."), _("\
15345 Show timeout limit to wait for target to respond."), _("\
15346 This value is used to set the time limit for gdb to wait for a response\n\
15347 from the target."),
15349 show_remote_timeout,
15350 &setlist, &showlist);
15352 /* Eventually initialize fileio. See fileio.c */
15353 initialize_remote_fileio (&remote_set_cmdlist, &remote_show_cmdlist);
15356 selftests::register_test ("remote_memory_tagging",
15357 selftests::test_memory_tagging_functions);