1 /* Remote target communications for serial-line targets in custom GDB protocol
3 Copyright (C) 1988-2018 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 "terminal.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 "filestuff.h"
50 #include "gdb_sys_time.h"
52 #include "event-loop.h"
53 #include "event-top.h"
59 #include "gdbcore.h" /* for exec_bfd */
61 #include "remote-fileio.h"
62 #include "gdb/fileio.h"
64 #include "xml-support.h"
66 #include "memory-map.h"
68 #include "tracepoint.h"
73 #include "record-btrace.h"
75 #include "common/scoped_restore.h"
77 #include "common/byte-vector.h"
78 #include <unordered_map>
80 /* The remote target. */
82 static const char remote_doc
[] = N_("\
83 Use a remote computer via a serial line, using a gdb-specific protocol.\n\
84 Specify the serial device it is connected to\n\
85 (e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).");
87 static const target_info remote_target_info
= {
89 N_("Remote serial target in gdb-specific protocol"),
93 class remote_target
: public target_ops
98 to_stratum
= process_stratum
;
101 const target_info
&info () const override
102 { return remote_target_info
; }
104 thread_control_capabilities
get_thread_control_capabilities () override
105 { return tc_schedlock
; }
107 /* Open a remote connection. */
108 static void open (const char *, int);
110 void close () override
;
112 void detach (inferior
*, int) override
;
113 void disconnect (const char *, int) override
;
115 void commit_resume () override
;
116 void resume (ptid_t
, int, enum gdb_signal
) override
;
117 ptid_t
wait (ptid_t
, struct target_waitstatus
*, int) override
;
119 void fetch_registers (struct regcache
*, int) override
;
120 void store_registers (struct regcache
*, int) override
;
121 void prepare_to_store (struct regcache
*) override
;
123 void files_info () override
;
125 int insert_breakpoint (struct gdbarch
*, struct bp_target_info
*) override
;
127 int remove_breakpoint (struct gdbarch
*, struct bp_target_info
*,
128 enum remove_bp_reason
) override
;
131 bool stopped_by_sw_breakpoint () override
;
132 bool supports_stopped_by_sw_breakpoint () override
;
134 bool stopped_by_hw_breakpoint () override
;
136 bool supports_stopped_by_hw_breakpoint () override
;
138 bool stopped_by_watchpoint () override
;
140 bool stopped_data_address (CORE_ADDR
*) override
;
142 bool watchpoint_addr_within_range (CORE_ADDR
, CORE_ADDR
, int) override
;
144 int can_use_hw_breakpoint (enum bptype
, int, int) override
;
146 int insert_hw_breakpoint (struct gdbarch
*, struct bp_target_info
*) override
;
148 int remove_hw_breakpoint (struct gdbarch
*, struct bp_target_info
*) override
;
150 int region_ok_for_hw_watchpoint (CORE_ADDR
, int) override
;
152 int insert_watchpoint (CORE_ADDR
, int, enum target_hw_bp_type
,
153 struct expression
*) override
;
155 int remove_watchpoint (CORE_ADDR
, int, enum target_hw_bp_type
,
156 struct expression
*) override
;
158 void kill () override
;
160 void load (const char *, int) override
;
162 void mourn_inferior () override
;
164 void pass_signals (int, unsigned char *) override
;
166 int set_syscall_catchpoint (int, bool, int,
167 gdb::array_view
<const int>) override
;
169 void program_signals (int, unsigned char *) override
;
171 bool thread_alive (ptid_t ptid
) override
;
173 const char *thread_name (struct thread_info
*) override
;
175 void update_thread_list () override
;
177 const char *pid_to_str (ptid_t
) override
;
179 const char *extra_thread_info (struct thread_info
*) override
;
181 ptid_t
get_ada_task_ptid (long lwp
, long thread
) override
;
183 thread_info
*thread_handle_to_thread_info (const gdb_byte
*thread_handle
,
185 inferior
*inf
) override
;
187 void stop (ptid_t
) override
;
189 void interrupt () override
;
191 void pass_ctrlc () override
;
193 enum target_xfer_status
xfer_partial (enum target_object object
,
196 const gdb_byte
*writebuf
,
197 ULONGEST offset
, ULONGEST len
,
198 ULONGEST
*xfered_len
) override
;
200 ULONGEST
get_memory_xfer_limit () override
;
202 void rcmd (const char *command
, struct ui_file
*output
) override
;
204 char *pid_to_exec_file (int pid
) override
;
206 void log_command (const char *cmd
) override
208 serial_log_command (this, cmd
);
211 CORE_ADDR
get_thread_local_address (ptid_t ptid
,
212 CORE_ADDR load_module_addr
,
213 CORE_ADDR offset
) override
;
215 bool has_all_memory () override
{ return default_child_has_all_memory (); }
216 bool has_memory () override
{ return default_child_has_memory (); }
217 bool has_stack () override
{ return default_child_has_stack (); }
218 bool has_registers () override
{ return default_child_has_registers (); }
219 bool has_execution (ptid_t ptid
) override
{ return default_child_has_execution (ptid
); }
221 bool can_execute_reverse () override
;
223 std::vector
<mem_region
> memory_map () override
;
225 void flash_erase (ULONGEST address
, LONGEST length
) override
;
227 void flash_done () override
;
229 const struct target_desc
*read_description () override
;
231 int search_memory (CORE_ADDR start_addr
, ULONGEST search_space_len
,
232 const gdb_byte
*pattern
, ULONGEST pattern_len
,
233 CORE_ADDR
*found_addrp
) override
;
235 bool can_async_p () override
;
237 bool is_async_p () override
;
239 void async (int) override
;
241 void thread_events (int) override
;
243 int can_do_single_step () override
;
245 void terminal_inferior () override
;
247 void terminal_ours () override
;
249 bool supports_non_stop () override
;
251 bool supports_multi_process () override
;
253 bool supports_disable_randomization () override
;
255 bool filesystem_is_local () override
;
258 int fileio_open (struct inferior
*inf
, const char *filename
,
259 int flags
, int mode
, int warn_if_slow
,
260 int *target_errno
) override
;
262 int fileio_pwrite (int fd
, const gdb_byte
*write_buf
, int len
,
263 ULONGEST offset
, int *target_errno
) override
;
265 int fileio_pread (int fd
, gdb_byte
*read_buf
, int len
,
266 ULONGEST offset
, int *target_errno
) override
;
268 int fileio_fstat (int fd
, struct stat
*sb
, int *target_errno
) override
;
270 int fileio_close (int fd
, int *target_errno
) override
;
272 int fileio_unlink (struct inferior
*inf
,
273 const char *filename
,
274 int *target_errno
) override
;
276 gdb::optional
<std::string
>
277 fileio_readlink (struct inferior
*inf
,
278 const char *filename
,
279 int *target_errno
) override
;
281 bool supports_enable_disable_tracepoint () override
;
283 bool supports_string_tracing () override
;
285 bool supports_evaluation_of_breakpoint_conditions () override
;
287 bool can_run_breakpoint_commands () override
;
289 void trace_init () override
;
291 void download_tracepoint (struct bp_location
*location
) override
;
293 bool can_download_tracepoint () override
;
295 void download_trace_state_variable (const trace_state_variable
&tsv
) override
;
297 void enable_tracepoint (struct bp_location
*location
) override
;
299 void disable_tracepoint (struct bp_location
*location
) override
;
301 void trace_set_readonly_regions () override
;
303 void trace_start () override
;
305 int get_trace_status (struct trace_status
*ts
) override
;
307 void get_tracepoint_status (struct breakpoint
*tp
, struct uploaded_tp
*utp
)
310 void trace_stop () override
;
312 int trace_find (enum trace_find_type type
, int num
,
313 CORE_ADDR addr1
, CORE_ADDR addr2
, int *tpp
) override
;
315 bool get_trace_state_variable_value (int tsv
, LONGEST
*val
) override
;
317 int save_trace_data (const char *filename
) override
;
319 int upload_tracepoints (struct uploaded_tp
**utpp
) override
;
321 int upload_trace_state_variables (struct uploaded_tsv
**utsvp
) override
;
323 LONGEST
get_raw_trace_data (gdb_byte
*buf
, ULONGEST offset
, LONGEST len
) override
;
325 int get_min_fast_tracepoint_insn_len () override
;
327 void set_disconnected_tracing (int val
) override
;
329 void set_circular_trace_buffer (int val
) override
;
331 void set_trace_buffer_size (LONGEST val
) override
;
333 bool set_trace_notes (const char *user
, const char *notes
,
334 const char *stopnotes
) override
;
336 int core_of_thread (ptid_t ptid
) override
;
338 int verify_memory (const gdb_byte
*data
,
339 CORE_ADDR memaddr
, ULONGEST size
) override
;
342 bool get_tib_address (ptid_t ptid
, CORE_ADDR
*addr
) override
;
344 void set_permissions () override
;
346 bool static_tracepoint_marker_at (CORE_ADDR
,
347 struct static_tracepoint_marker
*marker
)
350 std::vector
<static_tracepoint_marker
>
351 static_tracepoint_markers_by_strid (const char *id
) override
;
353 traceframe_info_up
traceframe_info () override
;
355 bool use_agent (bool use
) override
;
356 bool can_use_agent () override
;
358 struct btrace_target_info
*enable_btrace (ptid_t ptid
,
359 const struct btrace_config
*conf
) override
;
361 void disable_btrace (struct btrace_target_info
*tinfo
) override
;
363 void teardown_btrace (struct btrace_target_info
*tinfo
) override
;
365 enum btrace_error
read_btrace (struct btrace_data
*data
,
366 struct btrace_target_info
*btinfo
,
367 enum btrace_read_type type
) override
;
369 const struct btrace_config
*btrace_conf (const struct btrace_target_info
*) override
;
370 bool augmented_libraries_svr4_read () override
;
371 int follow_fork (int, int) override
;
372 void follow_exec (struct inferior
*, char *) override
;
373 int insert_fork_catchpoint (int) override
;
374 int remove_fork_catchpoint (int) override
;
375 int insert_vfork_catchpoint (int) override
;
376 int remove_vfork_catchpoint (int) override
;
377 int insert_exec_catchpoint (int) override
;
378 int remove_exec_catchpoint (int) override
;
379 enum exec_direction_kind
execution_direction () override
;
382 static void open_1 (const char *name
, int from_tty
, int extended_p
);
383 void start_remote (int from_tty
, int extended_p
);
386 static const target_info extended_remote_target_info
= {
388 N_("Extended remote serial target in gdb-specific protocol"),
392 /* Set up the extended remote target by extending the standard remote
393 target and adding to it. */
395 class extended_remote_target final
: public remote_target
398 const target_info
&info () const override
399 { return extended_remote_target_info
; }
401 /* Open an extended-remote connection. */
402 static void open (const char *, int);
404 bool can_create_inferior () override
{ return true; }
405 void create_inferior (const char *, const std::string
&,
406 char **, int) override
;
408 void detach (inferior
*, int) override
;
410 bool can_attach () override
{ return true; }
411 void attach (const char *, int) override
;
413 void post_attach (int) override
;
414 bool supports_disable_randomization () override
;
417 /* Per-program-space data key. */
418 static const struct program_space_data
*remote_pspace_data
;
420 /* The variable registered as the control variable used by the
421 remote exec-file commands. While the remote exec-file setting is
422 per-program-space, the set/show machinery uses this as the
423 location of the remote exec-file value. */
424 static char *remote_exec_file_var
;
426 /* The size to align memory write packets, when practical. The protocol
427 does not guarantee any alignment, and gdb will generate short
428 writes and unaligned writes, but even as a best-effort attempt this
429 can improve bulk transfers. For instance, if a write is misaligned
430 relative to the target's data bus, the stub may need to make an extra
431 round trip fetching data from the target. This doesn't make a
432 huge difference, but it's easy to do, so we try to be helpful.
434 The alignment chosen is arbitrary; usually data bus width is
435 important here, not the possibly larger cache line size. */
436 enum { REMOTE_ALIGN_WRITES
= 16 };
438 /* Prototypes for local functions. */
439 static int getpkt_sane (char **buf
, long *sizeof_buf
, int forever
);
440 static int getpkt_or_notif_sane (char **buf
, long *sizeof_buf
,
441 int forever
, int *is_notif
);
445 static int remote_vkill (int pid
, struct remote_state
*rs
);
447 static void remote_kill_k (void);
449 static int readchar (int timeout
);
451 static void remote_serial_write (const char *str
, int len
);
453 static void interrupt_query (void);
455 static void set_general_thread (ptid_t ptid
);
456 static void set_continue_thread (ptid_t ptid
);
458 static void get_offsets (void);
460 static void skip_frame (void);
462 static long read_frame (char **buf_p
, long *sizeof_buf
);
464 static int hexnumlen (ULONGEST num
);
466 static int stubhex (int ch
);
468 static int hexnumstr (char *, ULONGEST
);
470 static int hexnumnstr (char *, ULONGEST
, int);
472 static CORE_ADDR
remote_address_masked (CORE_ADDR
);
474 static void print_packet (const char *);
476 static int stub_unpack_int (char *buff
, int fieldlength
);
478 static ptid_t
remote_current_thread (ptid_t oldptid
);
480 static int putpkt_binary (const char *buf
, int cnt
);
482 static void check_binary_download (CORE_ADDR addr
);
484 struct packet_config
;
486 static void show_packet_config_cmd (struct packet_config
*config
);
488 static void show_remote_protocol_packet_cmd (struct ui_file
*file
,
490 struct cmd_list_element
*c
,
493 static char *write_ptid (char *buf
, const char *endbuf
, ptid_t ptid
);
494 static ptid_t
read_ptid (const char *buf
, const char **obuf
);
496 static void remote_query_supported (void);
498 static void remote_check_symbols (void);
501 static void stop_reply_xfree (struct stop_reply
*);
502 static void remote_parse_stop_reply (char *, struct stop_reply
*);
503 static void push_stop_reply (struct stop_reply
*);
504 static void discard_pending_stop_replies_in_queue (struct remote_state
*);
505 static int peek_stop_reply (ptid_t ptid
);
507 struct threads_listing_context
;
508 static void remove_new_fork_children (struct threads_listing_context
*);
510 static void remote_async_inferior_event_handler (gdb_client_data
);
512 static int remote_read_description_p (struct target_ops
*target
);
514 static void remote_console_output (char *msg
);
516 static void remote_btrace_reset (void);
518 static void remote_btrace_maybe_reopen (void);
520 static int stop_reply_queue_length (void);
522 static void remote_unpush_and_throw (void);
524 static struct remote_state
*get_remote_state (void);
528 static struct cmd_list_element
*remote_cmdlist
;
530 /* For "set remote" and "show remote". */
532 static struct cmd_list_element
*remote_set_cmdlist
;
533 static struct cmd_list_element
*remote_show_cmdlist
;
535 /* Stub vCont actions support.
537 Each field is a boolean flag indicating whether the stub reports
538 support for the corresponding action. */
540 struct vCont_action_support
555 /* Controls whether GDB is willing to use range stepping. */
557 static int use_range_stepping
= 1;
559 #define OPAQUETHREADBYTES 8
561 /* a 64 bit opaque identifier */
562 typedef unsigned char threadref
[OPAQUETHREADBYTES
];
564 /* About this many threadisds fit in a packet. */
566 #define MAXTHREADLISTRESULTS 32
568 /* The max number of chars in debug output. The rest of chars are
571 #define REMOTE_DEBUG_MAX_CHAR 512
573 /* Data for the vFile:pread readahead cache. */
575 struct readahead_cache
577 /* Invalidate the readahead cache. */
580 /* Invalidate the readahead cache if it is holding data for FD. */
581 void invalidate_fd (int fd
);
583 /* Serve pread from the readahead cache. Returns number of bytes
584 read, or 0 if the request can't be served from the cache. */
585 int pread (int fd
, gdb_byte
*read_buf
, size_t len
, ULONGEST offset
);
587 /* The file descriptor for the file that is being cached. -1 if the
591 /* The offset into the file that the cache buffer corresponds
595 /* The buffer holding the cache contents. */
596 gdb_byte
*buf
= nullptr;
597 /* The buffer's size. We try to read as much as fits into a packet
601 /* Cache hit and miss counters. */
602 ULONGEST hit_count
= 0;
603 ULONGEST miss_count
= 0;
606 /* Description of the remote protocol for a given architecture. */
610 long offset
; /* Offset into G packet. */
611 long regnum
; /* GDB's internal register number. */
612 LONGEST pnum
; /* Remote protocol register number. */
613 int in_g_packet
; /* Always part of G packet. */
614 /* long size in bytes; == register_size (target_gdbarch (), regnum);
616 /* char *name; == gdbarch_register_name (target_gdbarch (), regnum);
620 struct remote_arch_state
622 explicit remote_arch_state (struct gdbarch
*gdbarch
);
624 /* Description of the remote protocol registers. */
625 long sizeof_g_packet
;
627 /* Description of the remote protocol registers indexed by REGNUM
628 (making an array gdbarch_num_regs in size). */
629 std::unique_ptr
<packet_reg
[]> regs
;
631 /* This is the size (in chars) of the first response to the ``g''
632 packet. It is used as a heuristic when determining the maximum
633 size of memory-read and memory-write packets. A target will
634 typically only reserve a buffer large enough to hold the ``g''
635 packet. The size does not include packet overhead (headers and
637 long actual_register_packet_size
;
639 /* This is the maximum size (in chars) of a non read/write packet.
640 It is also used as a cap on the size of read/write packets. */
641 long remote_packet_size
;
644 /* Description of the remote protocol state for the currently
645 connected target. This is per-target state, and independent of the
646 selected architecture. */
655 /* Get the remote arch state for GDBARCH. */
656 struct remote_arch_state
*get_remote_arch_state (struct gdbarch
*gdbarch
);
660 /* A buffer to use for incoming packets, and its current size. The
661 buffer is grown dynamically for larger incoming packets.
662 Outgoing packets may also be constructed in this buffer.
663 BUF_SIZE is always at least REMOTE_PACKET_SIZE;
664 REMOTE_PACKET_SIZE should be used to limit the length of outgoing
669 /* True if we're going through initial connection setup (finding out
670 about the remote side's threads, relocating symbols, etc.). */
671 bool starting_up
= false;
673 /* If we negotiated packet size explicitly (and thus can bypass
674 heuristics for the largest packet size that will not overflow
675 a buffer in the stub), this will be set to that packet size.
676 Otherwise zero, meaning to use the guessed size. */
677 long explicit_packet_size
= 0;
679 /* remote_wait is normally called when the target is running and
680 waits for a stop reply packet. But sometimes we need to call it
681 when the target is already stopped. We can send a "?" packet
682 and have remote_wait read the response. Or, if we already have
683 the response, we can stash it in BUF and tell remote_wait to
684 skip calling getpkt. This flag is set when BUF contains a
685 stop reply packet and the target is not waiting. */
686 int cached_wait_status
= 0;
688 /* True, if in no ack mode. That is, neither GDB nor the stub will
689 expect acks from each other. The connection is assumed to be
691 bool noack_mode
= false;
693 /* True if we're connected in extended remote mode. */
694 bool extended
= false;
696 /* True if we resumed the target and we're waiting for the target to
697 stop. In the mean time, we can't start another command/query.
698 The remote server wouldn't be ready to process it, so we'd
699 timeout waiting for a reply that would never come and eventually
700 we'd close the connection. This can happen in asynchronous mode
701 because we allow GDB commands while the target is running. */
702 bool waiting_for_stop_reply
= false;
704 /* The status of the stub support for the various vCont actions. */
705 vCont_action_support supports_vCont
;
707 /* True if the user has pressed Ctrl-C, but the target hasn't
708 responded to that. */
709 bool ctrlc_pending_p
= false;
711 /* True if we saw a Ctrl-C while reading or writing from/to the
712 remote descriptor. At that point it is not safe to send a remote
713 interrupt packet, so we instead remember we saw the Ctrl-C and
714 process it once we're done with sending/receiving the current
715 packet, which should be shortly. If however that takes too long,
716 and the user presses Ctrl-C again, we offer to disconnect. */
717 bool got_ctrlc_during_io
= false;
719 /* Descriptor for I/O to remote machine. Initialize it to NULL so that
720 remote_open knows that we don't have a file open when the program
722 struct serial
*remote_desc
= nullptr;
724 /* These are the threads which we last sent to the remote system. The
725 TID member will be -1 for all or -2 for not sent yet. */
726 ptid_t general_thread
= null_ptid
;
727 ptid_t continue_thread
= null_ptid
;
729 /* This is the traceframe which we last selected on the remote system.
730 It will be -1 if no traceframe is selected. */
731 int remote_traceframe_number
= -1;
733 char *last_pass_packet
= nullptr;
735 /* The last QProgramSignals packet sent to the target. We bypass
736 sending a new program signals list down to the target if the new
737 packet is exactly the same as the last we sent. IOW, we only let
738 the target know about program signals list changes. */
739 char *last_program_signals_packet
= nullptr;
741 gdb_signal last_sent_signal
= GDB_SIGNAL_0
;
743 bool last_sent_step
= false;
745 /* The execution direction of the last resume we got. */
746 exec_direction_kind last_resume_exec_dir
= EXEC_FORWARD
;
748 char *finished_object
= nullptr;
749 char *finished_annex
= nullptr;
750 ULONGEST finished_offset
= 0;
752 /* Should we try the 'ThreadInfo' query packet?
754 This variable (NOT available to the user: auto-detect only!)
755 determines whether GDB will use the new, simpler "ThreadInfo"
756 query or the older, more complex syntax for thread queries.
757 This is an auto-detect variable (set to true at each connect,
758 and set to false when the target fails to recognize it). */
759 bool use_threadinfo_query
= false;
760 bool use_threadextra_query
= false;
762 threadref echo_nextthread
{};
763 threadref nextthread
{};
764 threadref resultthreadlist
[MAXTHREADLISTRESULTS
] {};
766 /* The state of remote notification. */
767 struct remote_notif_state
*notif_state
= nullptr;
769 /* The branch trace configuration. */
770 struct btrace_config btrace_config
{};
772 /* The argument to the last "vFile:setfs:" packet we sent, used
773 to avoid sending repeated unnecessary "vFile:setfs:" packets.
774 Initialized to -1 to indicate that no "vFile:setfs:" packet
775 has yet been sent. */
778 /* A readahead cache for vFile:pread. Often, reading a binary
779 involves a sequence of small reads. E.g., when parsing an ELF
780 file. A readahead cache helps mostly the case of remote
781 debugging on a connection with higher latency, due to the
782 request/reply nature of the RSP. We only cache data for a single
783 file descriptor at a time. */
784 struct readahead_cache readahead_cache
;
787 /* Mapping of remote protocol data for each gdbarch. Usually there
788 is only one entry here, though we may see more with stubs that
789 support multi-process. */
790 std::unordered_map
<struct gdbarch
*, remote_arch_state
>
794 /* Private data that we'll store in (struct thread_info)->priv. */
795 struct remote_thread_info
: public private_thread_info
801 /* Thread handle, perhaps a pthread_t or thread_t value, stored as a
802 sequence of bytes. */
803 gdb::byte_vector thread_handle
;
805 /* Whether the target stopped for a breakpoint/watchpoint. */
806 enum target_stop_reason stop_reason
= TARGET_STOPPED_BY_NO_REASON
;
808 /* This is set to the data address of the access causing the target
809 to stop for a watchpoint. */
810 CORE_ADDR watch_data_address
= 0;
812 /* Fields used by the vCont action coalescing implemented in
813 remote_resume / remote_commit_resume. remote_resume stores each
814 thread's last resume request in these fields, so that a later
815 remote_commit_resume knows which is the proper action for this
816 thread to include in the vCont packet. */
818 /* True if the last target_resume call for this thread was a step
819 request, false if a continue request. */
820 int last_resume_step
= 0;
822 /* The signal specified in the last target_resume call for this
824 gdb_signal last_resume_sig
= GDB_SIGNAL_0
;
826 /* Whether this thread was already vCont-resumed on the remote
828 int vcont_resumed
= 0;
831 remote_state::remote_state ()
833 /* The default buffer size is unimportant; it will be expanded
834 whenever a larger buffer is needed. */
835 this->buf_size
= 400;
836 this->buf
= (char *) xmalloc (this->buf_size
);
839 remote_state::~remote_state ()
841 xfree (this->last_pass_packet
);
842 xfree (this->last_program_signals_packet
);
844 xfree (this->finished_object
);
845 xfree (this->finished_annex
);
848 /* This data could be associated with a target, but we do not always
849 have access to the current target when we need it, so for now it is
850 static. This will be fine for as long as only one target is in use
852 static struct remote_state
*remote_state
;
854 static struct remote_state
*
855 get_remote_state_raw (void)
860 /* Utility: generate error from an incoming stub packet. */
862 trace_error (char *buf
)
865 return; /* not an error msg */
868 case '1': /* malformed packet error */
869 if (*++buf
== '0') /* general case: */
870 error (_("remote.c: error in outgoing packet."));
872 error (_("remote.c: error in outgoing packet at field #%ld."),
873 strtol (buf
, NULL
, 16));
875 error (_("Target returns error code '%s'."), buf
);
879 /* Utility: wait for reply from stub, while accepting "O" packets. */
882 remote_get_noisy_reply ()
884 struct remote_state
*rs
= get_remote_state ();
886 do /* Loop on reply from remote stub. */
890 QUIT
; /* Allow user to bail out with ^C. */
891 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
895 else if (startswith (buf
, "qRelocInsn:"))
898 CORE_ADDR from
, to
, org_to
;
900 int adjusted_size
= 0;
903 p
= buf
+ strlen ("qRelocInsn:");
904 pp
= unpack_varlen_hex (p
, &ul
);
906 error (_("invalid qRelocInsn packet: %s"), buf
);
910 unpack_varlen_hex (p
, &ul
);
917 gdbarch_relocate_instruction (target_gdbarch (), &to
, from
);
920 CATCH (ex
, RETURN_MASK_ALL
)
922 if (ex
.error
== MEMORY_ERROR
)
924 /* Propagate memory errors silently back to the
925 target. The stub may have limited the range of
926 addresses we can write to, for example. */
930 /* Something unexpectedly bad happened. Be verbose
931 so we can tell what, and propagate the error back
932 to the stub, so it doesn't get stuck waiting for
934 exception_fprintf (gdb_stderr
, ex
,
935 _("warning: relocating instruction: "));
943 adjusted_size
= to
- org_to
;
945 xsnprintf (buf
, rs
->buf_size
, "qRelocInsn:%x", adjusted_size
);
949 else if (buf
[0] == 'O' && buf
[1] != 'K')
950 remote_console_output (buf
+ 1); /* 'O' message from stub */
952 return buf
; /* Here's the actual reply. */
957 struct remote_arch_state
*
958 remote_state::get_remote_arch_state (struct gdbarch
*gdbarch
)
960 remote_arch_state
*rsa
;
962 auto it
= this->m_arch_states
.find (gdbarch
);
963 if (it
== this->m_arch_states
.end ())
965 auto p
= this->m_arch_states
.emplace (std::piecewise_construct
,
966 std::forward_as_tuple (gdbarch
),
967 std::forward_as_tuple (gdbarch
));
968 rsa
= &p
.first
->second
;
970 /* Make sure that the packet buffer is plenty big enough for
971 this architecture. */
972 if (this->buf_size
< rsa
->remote_packet_size
)
974 this->buf_size
= 2 * rsa
->remote_packet_size
;
975 this->buf
= (char *) xrealloc (this->buf
, this->buf_size
);
984 /* Fetch the global remote target state. */
986 static struct remote_state
*
987 get_remote_state (void)
989 struct remote_state
*rs
= get_remote_state_raw ();
991 /* Make sure that the remote architecture state has been
992 initialized, because doing so might reallocate rs->buf. Any
993 function which calls getpkt also needs to be mindful of changes
994 to rs->buf, but this call limits the number of places which run
996 rs
->get_remote_arch_state (target_gdbarch ());
1001 /* Cleanup routine for the remote module's pspace data. */
1004 remote_pspace_data_cleanup (struct program_space
*pspace
, void *arg
)
1006 char *remote_exec_file
= (char *) arg
;
1008 xfree (remote_exec_file
);
1011 /* Fetch the remote exec-file from the current program space. */
1014 get_remote_exec_file (void)
1016 char *remote_exec_file
;
1019 = (char *) program_space_data (current_program_space
,
1020 remote_pspace_data
);
1021 if (remote_exec_file
== NULL
)
1024 return remote_exec_file
;
1027 /* Set the remote exec file for PSPACE. */
1030 set_pspace_remote_exec_file (struct program_space
*pspace
,
1031 char *remote_exec_file
)
1033 char *old_file
= (char *) program_space_data (pspace
, remote_pspace_data
);
1036 set_program_space_data (pspace
, remote_pspace_data
,
1037 xstrdup (remote_exec_file
));
1040 /* The "set/show remote exec-file" set command hook. */
1043 set_remote_exec_file (const char *ignored
, int from_tty
,
1044 struct cmd_list_element
*c
)
1046 gdb_assert (remote_exec_file_var
!= NULL
);
1047 set_pspace_remote_exec_file (current_program_space
, remote_exec_file_var
);
1050 /* The "set/show remote exec-file" show command hook. */
1053 show_remote_exec_file (struct ui_file
*file
, int from_tty
,
1054 struct cmd_list_element
*cmd
, const char *value
)
1056 fprintf_filtered (file
, "%s\n", remote_exec_file_var
);
1060 compare_pnums (const void *lhs_
, const void *rhs_
)
1062 const struct packet_reg
* const *lhs
1063 = (const struct packet_reg
* const *) lhs_
;
1064 const struct packet_reg
* const *rhs
1065 = (const struct packet_reg
* const *) rhs_
;
1067 if ((*lhs
)->pnum
< (*rhs
)->pnum
)
1069 else if ((*lhs
)->pnum
== (*rhs
)->pnum
)
1076 map_regcache_remote_table (struct gdbarch
*gdbarch
, struct packet_reg
*regs
)
1078 int regnum
, num_remote_regs
, offset
;
1079 struct packet_reg
**remote_regs
;
1081 for (regnum
= 0; regnum
< gdbarch_num_regs (gdbarch
); regnum
++)
1083 struct packet_reg
*r
= ®s
[regnum
];
1085 if (register_size (gdbarch
, regnum
) == 0)
1086 /* Do not try to fetch zero-sized (placeholder) registers. */
1089 r
->pnum
= gdbarch_remote_register_number (gdbarch
, regnum
);
1094 /* Define the g/G packet format as the contents of each register
1095 with a remote protocol number, in order of ascending protocol
1098 remote_regs
= XALLOCAVEC (struct packet_reg
*, gdbarch_num_regs (gdbarch
));
1099 for (num_remote_regs
= 0, regnum
= 0;
1100 regnum
< gdbarch_num_regs (gdbarch
);
1102 if (regs
[regnum
].pnum
!= -1)
1103 remote_regs
[num_remote_regs
++] = ®s
[regnum
];
1105 qsort (remote_regs
, num_remote_regs
, sizeof (struct packet_reg
*),
1108 for (regnum
= 0, offset
= 0; regnum
< num_remote_regs
; regnum
++)
1110 remote_regs
[regnum
]->in_g_packet
= 1;
1111 remote_regs
[regnum
]->offset
= offset
;
1112 offset
+= register_size (gdbarch
, remote_regs
[regnum
]->regnum
);
1118 /* Given the architecture described by GDBARCH, return the remote
1119 protocol register's number and the register's offset in the g/G
1120 packets of GDB register REGNUM, in PNUM and POFFSET respectively.
1121 If the target does not have a mapping for REGNUM, return false,
1122 otherwise, return true. */
1125 remote_register_number_and_offset (struct gdbarch
*gdbarch
, int regnum
,
1126 int *pnum
, int *poffset
)
1128 gdb_assert (regnum
< gdbarch_num_regs (gdbarch
));
1130 std::vector
<packet_reg
> regs (gdbarch_num_regs (gdbarch
));
1132 map_regcache_remote_table (gdbarch
, regs
.data ());
1134 *pnum
= regs
[regnum
].pnum
;
1135 *poffset
= regs
[regnum
].offset
;
1140 remote_arch_state::remote_arch_state (struct gdbarch
*gdbarch
)
1142 /* Use the architecture to build a regnum<->pnum table, which will be
1143 1:1 unless a feature set specifies otherwise. */
1144 this->regs
.reset (new packet_reg
[gdbarch_num_regs (gdbarch
)] ());
1146 /* Record the maximum possible size of the g packet - it may turn out
1148 this->sizeof_g_packet
1149 = map_regcache_remote_table (gdbarch
, this->regs
.get ());
1151 /* Default maximum number of characters in a packet body. Many
1152 remote stubs have a hardwired buffer size of 400 bytes
1153 (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
1154 as the maximum packet-size to ensure that the packet and an extra
1155 NUL character can always fit in the buffer. This stops GDB
1156 trashing stubs that try to squeeze an extra NUL into what is
1157 already a full buffer (As of 1999-12-04 that was most stubs). */
1158 this->remote_packet_size
= 400 - 1;
1160 /* This one is filled in when a ``g'' packet is received. */
1161 this->actual_register_packet_size
= 0;
1163 /* Should rsa->sizeof_g_packet needs more space than the
1164 default, adjust the size accordingly. Remember that each byte is
1165 encoded as two characters. 32 is the overhead for the packet
1166 header / footer. NOTE: cagney/1999-10-26: I suspect that 8
1167 (``$NN:G...#NN'') is a better guess, the below has been padded a
1169 if (this->sizeof_g_packet
> ((this->remote_packet_size
- 32) / 2))
1170 this->remote_packet_size
= (this->sizeof_g_packet
* 2 + 32);
1173 /* Return the current allowed size of a remote packet. This is
1174 inferred from the current architecture, and should be used to
1175 limit the length of outgoing packets. */
1177 get_remote_packet_size (void)
1179 struct remote_state
*rs
= get_remote_state ();
1180 remote_arch_state
*rsa
= rs
->get_remote_arch_state (target_gdbarch ());
1182 if (rs
->explicit_packet_size
)
1183 return rs
->explicit_packet_size
;
1185 return rsa
->remote_packet_size
;
1188 static struct packet_reg
*
1189 packet_reg_from_regnum (struct gdbarch
*gdbarch
, struct remote_arch_state
*rsa
,
1192 if (regnum
< 0 && regnum
>= gdbarch_num_regs (gdbarch
))
1196 struct packet_reg
*r
= &rsa
->regs
[regnum
];
1198 gdb_assert (r
->regnum
== regnum
);
1203 static struct packet_reg
*
1204 packet_reg_from_pnum (struct gdbarch
*gdbarch
, struct remote_arch_state
*rsa
,
1209 for (i
= 0; i
< gdbarch_num_regs (gdbarch
); i
++)
1211 struct packet_reg
*r
= &rsa
->regs
[i
];
1213 if (r
->pnum
== pnum
)
1219 static remote_target remote_ops
;
1221 static extended_remote_target extended_remote_ops
;
1223 /* FIXME: cagney/1999-09-23: Even though getpkt was called with
1224 ``forever'' still use the normal timeout mechanism. This is
1225 currently used by the ASYNC code to guarentee that target reads
1226 during the initial connect always time-out. Once getpkt has been
1227 modified to return a timeout indication and, in turn
1228 remote_wait()/wait_for_inferior() have gained a timeout parameter
1229 this can go away. */
1230 static int wait_forever_enabled_p
= 1;
1232 /* Allow the user to specify what sequence to send to the remote
1233 when he requests a program interruption: Although ^C is usually
1234 what remote systems expect (this is the default, here), it is
1235 sometimes preferable to send a break. On other systems such
1236 as the Linux kernel, a break followed by g, which is Magic SysRq g
1237 is required in order to interrupt the execution. */
1238 const char interrupt_sequence_control_c
[] = "Ctrl-C";
1239 const char interrupt_sequence_break
[] = "BREAK";
1240 const char interrupt_sequence_break_g
[] = "BREAK-g";
1241 static const char *const interrupt_sequence_modes
[] =
1243 interrupt_sequence_control_c
,
1244 interrupt_sequence_break
,
1245 interrupt_sequence_break_g
,
1248 static const char *interrupt_sequence_mode
= interrupt_sequence_control_c
;
1251 show_interrupt_sequence (struct ui_file
*file
, int from_tty
,
1252 struct cmd_list_element
*c
,
1255 if (interrupt_sequence_mode
== interrupt_sequence_control_c
)
1256 fprintf_filtered (file
,
1257 _("Send the ASCII ETX character (Ctrl-c) "
1258 "to the remote target to interrupt the "
1259 "execution of the program.\n"));
1260 else if (interrupt_sequence_mode
== interrupt_sequence_break
)
1261 fprintf_filtered (file
,
1262 _("send a break signal to the remote target "
1263 "to interrupt the execution of the program.\n"));
1264 else if (interrupt_sequence_mode
== interrupt_sequence_break_g
)
1265 fprintf_filtered (file
,
1266 _("Send a break signal and 'g' a.k.a. Magic SysRq g to "
1267 "the remote target to interrupt the execution "
1268 "of Linux kernel.\n"));
1270 internal_error (__FILE__
, __LINE__
,
1271 _("Invalid value for interrupt_sequence_mode: %s."),
1272 interrupt_sequence_mode
);
1275 /* This boolean variable specifies whether interrupt_sequence is sent
1276 to the remote target when gdb connects to it.
1277 This is mostly needed when you debug the Linux kernel: The Linux kernel
1278 expects BREAK g which is Magic SysRq g for connecting gdb. */
1279 static int interrupt_on_connect
= 0;
1281 /* This variable is used to implement the "set/show remotebreak" commands.
1282 Since these commands are now deprecated in favor of "set/show remote
1283 interrupt-sequence", it no longer has any effect on the code. */
1284 static int remote_break
;
1287 set_remotebreak (const char *args
, int from_tty
, struct cmd_list_element
*c
)
1290 interrupt_sequence_mode
= interrupt_sequence_break
;
1292 interrupt_sequence_mode
= interrupt_sequence_control_c
;
1296 show_remotebreak (struct ui_file
*file
, int from_tty
,
1297 struct cmd_list_element
*c
,
1302 /* This variable sets the number of bits in an address that are to be
1303 sent in a memory ("M" or "m") packet. Normally, after stripping
1304 leading zeros, the entire address would be sent. This variable
1305 restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
1306 initial implementation of remote.c restricted the address sent in
1307 memory packets to ``host::sizeof long'' bytes - (typically 32
1308 bits). Consequently, for 64 bit targets, the upper 32 bits of an
1309 address was never sent. Since fixing this bug may cause a break in
1310 some remote targets this variable is principly provided to
1311 facilitate backward compatibility. */
1313 static unsigned int remote_address_size
;
1316 /* User configurable variables for the number of characters in a
1317 memory read/write packet. MIN (rsa->remote_packet_size,
1318 rsa->sizeof_g_packet) is the default. Some targets need smaller
1319 values (fifo overruns, et.al.) and some users need larger values
1320 (speed up transfers). The variables ``preferred_*'' (the user
1321 request), ``current_*'' (what was actually set) and ``forced_*''
1322 (Positive - a soft limit, negative - a hard limit). */
1324 struct memory_packet_config
1331 /* The default max memory-write-packet-size, when the setting is
1332 "fixed". The 16k is historical. (It came from older GDB's using
1333 alloca for buffers and the knowledge (folklore?) that some hosts
1334 don't cope very well with large alloca calls.) */
1335 #define DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED 16384
1337 /* The minimum remote packet size for memory transfers. Ensures we
1338 can write at least one byte. */
1339 #define MIN_MEMORY_PACKET_SIZE 20
1341 /* Get the memory packet size, assuming it is fixed. */
1344 get_fixed_memory_packet_size (struct memory_packet_config
*config
)
1346 gdb_assert (config
->fixed_p
);
1348 if (config
->size
<= 0)
1349 return DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED
;
1351 return config
->size
;
1354 /* Compute the current size of a read/write packet. Since this makes
1355 use of ``actual_register_packet_size'' the computation is dynamic. */
1358 get_memory_packet_size (struct memory_packet_config
*config
)
1360 struct remote_state
*rs
= get_remote_state ();
1361 remote_arch_state
*rsa
= rs
->get_remote_arch_state (target_gdbarch ());
1364 if (config
->fixed_p
)
1365 what_they_get
= get_fixed_memory_packet_size (config
);
1368 what_they_get
= get_remote_packet_size ();
1369 /* Limit the packet to the size specified by the user. */
1370 if (config
->size
> 0
1371 && what_they_get
> config
->size
)
1372 what_they_get
= config
->size
;
1374 /* Limit it to the size of the targets ``g'' response unless we have
1375 permission from the stub to use a larger packet size. */
1376 if (rs
->explicit_packet_size
== 0
1377 && rsa
->actual_register_packet_size
> 0
1378 && what_they_get
> rsa
->actual_register_packet_size
)
1379 what_they_get
= rsa
->actual_register_packet_size
;
1381 if (what_they_get
< MIN_MEMORY_PACKET_SIZE
)
1382 what_they_get
= MIN_MEMORY_PACKET_SIZE
;
1384 /* Make sure there is room in the global buffer for this packet
1385 (including its trailing NUL byte). */
1386 if (rs
->buf_size
< what_they_get
+ 1)
1388 rs
->buf_size
= 2 * what_they_get
;
1389 rs
->buf
= (char *) xrealloc (rs
->buf
, 2 * what_they_get
);
1392 return what_they_get
;
1395 /* Update the size of a read/write packet. If they user wants
1396 something really big then do a sanity check. */
1399 set_memory_packet_size (const char *args
, struct memory_packet_config
*config
)
1401 int fixed_p
= config
->fixed_p
;
1402 long size
= config
->size
;
1405 error (_("Argument required (integer, `fixed' or `limited')."));
1406 else if (strcmp (args
, "hard") == 0
1407 || strcmp (args
, "fixed") == 0)
1409 else if (strcmp (args
, "soft") == 0
1410 || strcmp (args
, "limit") == 0)
1416 size
= strtoul (args
, &end
, 0);
1418 error (_("Invalid %s (bad syntax)."), config
->name
);
1420 /* Instead of explicitly capping the size of a packet to or
1421 disallowing it, the user is allowed to set the size to
1422 something arbitrarily large. */
1426 if (fixed_p
&& !config
->fixed_p
)
1428 /* So that the query shows the correct value. */
1429 long query_size
= (size
<= 0
1430 ? DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED
1433 if (! query (_("The target may not be able to correctly handle a %s\n"
1434 "of %ld bytes. Change the packet size? "),
1435 config
->name
, query_size
))
1436 error (_("Packet size not changed."));
1438 /* Update the config. */
1439 config
->fixed_p
= fixed_p
;
1440 config
->size
= size
;
1444 show_memory_packet_size (struct memory_packet_config
*config
)
1446 if (config
->size
== 0)
1447 printf_filtered (_("The %s is 0 (default). "), config
->name
);
1449 printf_filtered (_("The %s is %ld. "), config
->name
, config
->size
);
1450 if (config
->fixed_p
)
1451 printf_filtered (_("Packets are fixed at %ld bytes.\n"),
1452 get_fixed_memory_packet_size (config
));
1455 struct remote_state
*rs
= get_remote_state ();
1457 if (rs
->remote_desc
!= NULL
)
1458 printf_filtered (_("Packets are limited to %ld bytes.\n"),
1459 get_memory_packet_size (config
));
1461 puts_filtered ("The actual limit will be further reduced "
1462 "dependent on the target.\n");
1466 static struct memory_packet_config memory_write_packet_config
=
1468 "memory-write-packet-size",
1472 set_memory_write_packet_size (const char *args
, int from_tty
)
1474 set_memory_packet_size (args
, &memory_write_packet_config
);
1478 show_memory_write_packet_size (const char *args
, int from_tty
)
1480 show_memory_packet_size (&memory_write_packet_config
);
1484 get_memory_write_packet_size (void)
1486 return get_memory_packet_size (&memory_write_packet_config
);
1489 static struct memory_packet_config memory_read_packet_config
=
1491 "memory-read-packet-size",
1495 set_memory_read_packet_size (const char *args
, int from_tty
)
1497 set_memory_packet_size (args
, &memory_read_packet_config
);
1501 show_memory_read_packet_size (const char *args
, int from_tty
)
1503 show_memory_packet_size (&memory_read_packet_config
);
1507 get_memory_read_packet_size (void)
1509 long size
= get_memory_packet_size (&memory_read_packet_config
);
1511 /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
1512 extra buffer size argument before the memory read size can be
1513 increased beyond this. */
1514 if (size
> get_remote_packet_size ())
1515 size
= get_remote_packet_size ();
1520 /* Generic configuration support for packets the stub optionally
1521 supports. Allows the user to specify the use of the packet as well
1522 as allowing GDB to auto-detect support in the remote stub. */
1526 PACKET_SUPPORT_UNKNOWN
= 0,
1531 struct packet_config
1536 /* If auto, GDB auto-detects support for this packet or feature,
1537 either through qSupported, or by trying the packet and looking
1538 at the response. If true, GDB assumes the target supports this
1539 packet. If false, the packet is disabled. Configs that don't
1540 have an associated command always have this set to auto. */
1541 enum auto_boolean detect
;
1543 /* Does the target support this packet? */
1544 enum packet_support support
;
1547 /* Analyze a packet's return value and update the packet config
1557 static enum packet_support
packet_config_support (struct packet_config
*config
);
1558 static enum packet_support
packet_support (int packet
);
1561 show_packet_config_cmd (struct packet_config
*config
)
1563 const char *support
= "internal-error";
1565 switch (packet_config_support (config
))
1568 support
= "enabled";
1570 case PACKET_DISABLE
:
1571 support
= "disabled";
1573 case PACKET_SUPPORT_UNKNOWN
:
1574 support
= "unknown";
1577 switch (config
->detect
)
1579 case AUTO_BOOLEAN_AUTO
:
1580 printf_filtered (_("Support for the `%s' packet "
1581 "is auto-detected, currently %s.\n"),
1582 config
->name
, support
);
1584 case AUTO_BOOLEAN_TRUE
:
1585 case AUTO_BOOLEAN_FALSE
:
1586 printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
1587 config
->name
, support
);
1593 add_packet_config_cmd (struct packet_config
*config
, const char *name
,
1594 const char *title
, int legacy
)
1600 config
->name
= name
;
1601 config
->title
= title
;
1602 set_doc
= xstrprintf ("Set use of remote protocol `%s' (%s) packet",
1604 show_doc
= xstrprintf ("Show current use of remote "
1605 "protocol `%s' (%s) packet",
1607 /* set/show TITLE-packet {auto,on,off} */
1608 cmd_name
= xstrprintf ("%s-packet", title
);
1609 add_setshow_auto_boolean_cmd (cmd_name
, class_obscure
,
1610 &config
->detect
, set_doc
,
1611 show_doc
, NULL
, /* help_doc */
1613 show_remote_protocol_packet_cmd
,
1614 &remote_set_cmdlist
, &remote_show_cmdlist
);
1615 /* The command code copies the documentation strings. */
1618 /* set/show remote NAME-packet {auto,on,off} -- legacy. */
1623 legacy_name
= xstrprintf ("%s-packet", name
);
1624 add_alias_cmd (legacy_name
, cmd_name
, class_obscure
, 0,
1625 &remote_set_cmdlist
);
1626 add_alias_cmd (legacy_name
, cmd_name
, class_obscure
, 0,
1627 &remote_show_cmdlist
);
1631 static enum packet_result
1632 packet_check_result (const char *buf
)
1636 /* The stub recognized the packet request. Check that the
1637 operation succeeded. */
1639 && isxdigit (buf
[1]) && isxdigit (buf
[2])
1641 /* "Enn" - definitly an error. */
1642 return PACKET_ERROR
;
1644 /* Always treat "E." as an error. This will be used for
1645 more verbose error messages, such as E.memtypes. */
1646 if (buf
[0] == 'E' && buf
[1] == '.')
1647 return PACKET_ERROR
;
1649 /* The packet may or may not be OK. Just assume it is. */
1653 /* The stub does not support the packet. */
1654 return PACKET_UNKNOWN
;
1657 static enum packet_result
1658 packet_ok (const char *buf
, struct packet_config
*config
)
1660 enum packet_result result
;
1662 if (config
->detect
!= AUTO_BOOLEAN_TRUE
1663 && config
->support
== PACKET_DISABLE
)
1664 internal_error (__FILE__
, __LINE__
,
1665 _("packet_ok: attempt to use a disabled packet"));
1667 result
= packet_check_result (buf
);
1672 /* The stub recognized the packet request. */
1673 if (config
->support
== PACKET_SUPPORT_UNKNOWN
)
1676 fprintf_unfiltered (gdb_stdlog
,
1677 "Packet %s (%s) is supported\n",
1678 config
->name
, config
->title
);
1679 config
->support
= PACKET_ENABLE
;
1682 case PACKET_UNKNOWN
:
1683 /* The stub does not support the packet. */
1684 if (config
->detect
== AUTO_BOOLEAN_AUTO
1685 && config
->support
== PACKET_ENABLE
)
1687 /* If the stub previously indicated that the packet was
1688 supported then there is a protocol error. */
1689 error (_("Protocol error: %s (%s) conflicting enabled responses."),
1690 config
->name
, config
->title
);
1692 else if (config
->detect
== AUTO_BOOLEAN_TRUE
)
1694 /* The user set it wrong. */
1695 error (_("Enabled packet %s (%s) not recognized by stub"),
1696 config
->name
, config
->title
);
1700 fprintf_unfiltered (gdb_stdlog
,
1701 "Packet %s (%s) is NOT supported\n",
1702 config
->name
, config
->title
);
1703 config
->support
= PACKET_DISABLE
;
1724 PACKET_vFile_pwrite
,
1726 PACKET_vFile_unlink
,
1727 PACKET_vFile_readlink
,
1730 PACKET_qXfer_features
,
1731 PACKET_qXfer_exec_file
,
1732 PACKET_qXfer_libraries
,
1733 PACKET_qXfer_libraries_svr4
,
1734 PACKET_qXfer_memory_map
,
1735 PACKET_qXfer_spu_read
,
1736 PACKET_qXfer_spu_write
,
1737 PACKET_qXfer_osdata
,
1738 PACKET_qXfer_threads
,
1739 PACKET_qXfer_statictrace_read
,
1740 PACKET_qXfer_traceframe_info
,
1746 PACKET_QPassSignals
,
1747 PACKET_QCatchSyscalls
,
1748 PACKET_QProgramSignals
,
1749 PACKET_QSetWorkingDir
,
1750 PACKET_QStartupWithShell
,
1751 PACKET_QEnvironmentHexEncoded
,
1752 PACKET_QEnvironmentReset
,
1753 PACKET_QEnvironmentUnset
,
1755 PACKET_qSearch_memory
,
1758 PACKET_QStartNoAckMode
,
1760 PACKET_qXfer_siginfo_read
,
1761 PACKET_qXfer_siginfo_write
,
1764 /* Support for conditional tracepoints. */
1765 PACKET_ConditionalTracepoints
,
1767 /* Support for target-side breakpoint conditions. */
1768 PACKET_ConditionalBreakpoints
,
1770 /* Support for target-side breakpoint commands. */
1771 PACKET_BreakpointCommands
,
1773 /* Support for fast tracepoints. */
1774 PACKET_FastTracepoints
,
1776 /* Support for static tracepoints. */
1777 PACKET_StaticTracepoints
,
1779 /* Support for installing tracepoints while a trace experiment is
1781 PACKET_InstallInTrace
,
1785 PACKET_TracepointSource
,
1788 PACKET_QDisableRandomization
,
1790 PACKET_QTBuffer_size
,
1794 PACKET_qXfer_btrace
,
1796 /* Support for the QNonStop packet. */
1799 /* Support for the QThreadEvents packet. */
1800 PACKET_QThreadEvents
,
1802 /* Support for multi-process extensions. */
1803 PACKET_multiprocess_feature
,
1805 /* Support for enabling and disabling tracepoints while a trace
1806 experiment is running. */
1807 PACKET_EnableDisableTracepoints_feature
,
1809 /* Support for collecting strings using the tracenz bytecode. */
1810 PACKET_tracenz_feature
,
1812 /* Support for continuing to run a trace experiment while GDB is
1814 PACKET_DisconnectedTracing_feature
,
1816 /* Support for qXfer:libraries-svr4:read with a non-empty annex. */
1817 PACKET_augmented_libraries_svr4_read_feature
,
1819 /* Support for the qXfer:btrace-conf:read packet. */
1820 PACKET_qXfer_btrace_conf
,
1822 /* Support for the Qbtrace-conf:bts:size packet. */
1823 PACKET_Qbtrace_conf_bts_size
,
1825 /* Support for swbreak+ feature. */
1826 PACKET_swbreak_feature
,
1828 /* Support for hwbreak+ feature. */
1829 PACKET_hwbreak_feature
,
1831 /* Support for fork events. */
1832 PACKET_fork_event_feature
,
1834 /* Support for vfork events. */
1835 PACKET_vfork_event_feature
,
1837 /* Support for the Qbtrace-conf:pt:size packet. */
1838 PACKET_Qbtrace_conf_pt_size
,
1840 /* Support for exec events. */
1841 PACKET_exec_event_feature
,
1843 /* Support for query supported vCont actions. */
1844 PACKET_vContSupported
,
1846 /* Support remote CTRL-C. */
1849 /* Support TARGET_WAITKIND_NO_RESUMED. */
1855 static struct packet_config remote_protocol_packets
[PACKET_MAX
];
1857 /* Returns the packet's corresponding "set remote foo-packet" command
1858 state. See struct packet_config for more details. */
1860 static enum auto_boolean
1861 packet_set_cmd_state (int packet
)
1863 return remote_protocol_packets
[packet
].detect
;
1866 /* Returns whether a given packet or feature is supported. This takes
1867 into account the state of the corresponding "set remote foo-packet"
1868 command, which may be used to bypass auto-detection. */
1870 static enum packet_support
1871 packet_config_support (struct packet_config
*config
)
1873 switch (config
->detect
)
1875 case AUTO_BOOLEAN_TRUE
:
1876 return PACKET_ENABLE
;
1877 case AUTO_BOOLEAN_FALSE
:
1878 return PACKET_DISABLE
;
1879 case AUTO_BOOLEAN_AUTO
:
1880 return config
->support
;
1882 gdb_assert_not_reached (_("bad switch"));
1886 /* Same as packet_config_support, but takes the packet's enum value as
1889 static enum packet_support
1890 packet_support (int packet
)
1892 struct packet_config
*config
= &remote_protocol_packets
[packet
];
1894 return packet_config_support (config
);
1898 show_remote_protocol_packet_cmd (struct ui_file
*file
, int from_tty
,
1899 struct cmd_list_element
*c
,
1902 struct packet_config
*packet
;
1904 for (packet
= remote_protocol_packets
;
1905 packet
< &remote_protocol_packets
[PACKET_MAX
];
1908 if (&packet
->detect
== c
->var
)
1910 show_packet_config_cmd (packet
);
1914 internal_error (__FILE__
, __LINE__
, _("Could not find config for %s"),
1918 /* Should we try one of the 'Z' requests? */
1922 Z_PACKET_SOFTWARE_BP
,
1923 Z_PACKET_HARDWARE_BP
,
1930 /* For compatibility with older distributions. Provide a ``set remote
1931 Z-packet ...'' command that updates all the Z packet types. */
1933 static enum auto_boolean remote_Z_packet_detect
;
1936 set_remote_protocol_Z_packet_cmd (const char *args
, int from_tty
,
1937 struct cmd_list_element
*c
)
1941 for (i
= 0; i
< NR_Z_PACKET_TYPES
; i
++)
1942 remote_protocol_packets
[PACKET_Z0
+ i
].detect
= remote_Z_packet_detect
;
1946 show_remote_protocol_Z_packet_cmd (struct ui_file
*file
, int from_tty
,
1947 struct cmd_list_element
*c
,
1952 for (i
= 0; i
< NR_Z_PACKET_TYPES
; i
++)
1954 show_packet_config_cmd (&remote_protocol_packets
[PACKET_Z0
+ i
]);
1958 /* Returns true if the multi-process extensions are in effect. */
1961 remote_multi_process_p (struct remote_state
*rs
)
1963 return packet_support (PACKET_multiprocess_feature
) == PACKET_ENABLE
;
1966 /* Returns true if fork events are supported. */
1969 remote_fork_event_p (struct remote_state
*rs
)
1971 return packet_support (PACKET_fork_event_feature
) == PACKET_ENABLE
;
1974 /* Returns true if vfork events are supported. */
1977 remote_vfork_event_p (struct remote_state
*rs
)
1979 return packet_support (PACKET_vfork_event_feature
) == PACKET_ENABLE
;
1982 /* Returns true if exec events are supported. */
1985 remote_exec_event_p (struct remote_state
*rs
)
1987 return packet_support (PACKET_exec_event_feature
) == PACKET_ENABLE
;
1990 /* Insert fork catchpoint target routine. If fork events are enabled
1991 then return success, nothing more to do. */
1994 remote_target::insert_fork_catchpoint (int pid
)
1996 struct remote_state
*rs
= get_remote_state ();
1998 return !remote_fork_event_p (rs
);
2001 /* Remove fork catchpoint target routine. Nothing to do, just
2005 remote_target::remove_fork_catchpoint (int pid
)
2010 /* Insert vfork catchpoint target routine. If vfork events are enabled
2011 then return success, nothing more to do. */
2014 remote_target::insert_vfork_catchpoint (int pid
)
2016 struct remote_state
*rs
= get_remote_state ();
2018 return !remote_vfork_event_p (rs
);
2021 /* Remove vfork catchpoint target routine. Nothing to do, just
2025 remote_target::remove_vfork_catchpoint (int pid
)
2030 /* Insert exec catchpoint target routine. If exec events are
2031 enabled, just return success. */
2034 remote_target::insert_exec_catchpoint (int pid
)
2036 struct remote_state
*rs
= get_remote_state ();
2038 return !remote_exec_event_p (rs
);
2041 /* Remove exec catchpoint target routine. Nothing to do, just
2045 remote_target::remove_exec_catchpoint (int pid
)
2051 /* Asynchronous signal handle registered as event loop source for
2052 when we have pending events ready to be passed to the core. */
2054 static struct async_event_handler
*remote_async_inferior_event_token
;
2058 static ptid_t magic_null_ptid
;
2059 static ptid_t not_sent_ptid
;
2060 static ptid_t any_thread_ptid
;
2062 /* Find out if the stub attached to PID (and hence GDB should offer to
2063 detach instead of killing it when bailing out). */
2066 remote_query_attached (int pid
)
2068 struct remote_state
*rs
= get_remote_state ();
2069 size_t size
= get_remote_packet_size ();
2071 if (packet_support (PACKET_qAttached
) == PACKET_DISABLE
)
2074 if (remote_multi_process_p (rs
))
2075 xsnprintf (rs
->buf
, size
, "qAttached:%x", pid
);
2077 xsnprintf (rs
->buf
, size
, "qAttached");
2080 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
2082 switch (packet_ok (rs
->buf
,
2083 &remote_protocol_packets
[PACKET_qAttached
]))
2086 if (strcmp (rs
->buf
, "1") == 0)
2090 warning (_("Remote failure reply: %s"), rs
->buf
);
2092 case PACKET_UNKNOWN
:
2099 /* Add PID to GDB's inferior table. If FAKE_PID_P is true, then PID
2100 has been invented by GDB, instead of reported by the target. Since
2101 we can be connected to a remote system before before knowing about
2102 any inferior, mark the target with execution when we find the first
2103 inferior. If ATTACHED is 1, then we had just attached to this
2104 inferior. If it is 0, then we just created this inferior. If it
2105 is -1, then try querying the remote stub to find out if it had
2106 attached to the inferior or not. If TRY_OPEN_EXEC is true then
2107 attempt to open this inferior's executable as the main executable
2108 if no main executable is open already. */
2110 static struct inferior
*
2111 remote_add_inferior (int fake_pid_p
, int pid
, int attached
,
2114 struct inferior
*inf
;
2116 /* Check whether this process we're learning about is to be
2117 considered attached, or if is to be considered to have been
2118 spawned by the stub. */
2120 attached
= remote_query_attached (pid
);
2122 if (gdbarch_has_global_solist (target_gdbarch ()))
2124 /* If the target shares code across all inferiors, then every
2125 attach adds a new inferior. */
2126 inf
= add_inferior (pid
);
2128 /* ... and every inferior is bound to the same program space.
2129 However, each inferior may still have its own address
2131 inf
->aspace
= maybe_new_address_space ();
2132 inf
->pspace
= current_program_space
;
2136 /* In the traditional debugging scenario, there's a 1-1 match
2137 between program/address spaces. We simply bind the inferior
2138 to the program space's address space. */
2139 inf
= current_inferior ();
2140 inferior_appeared (inf
, pid
);
2143 inf
->attach_flag
= attached
;
2144 inf
->fake_pid_p
= fake_pid_p
;
2146 /* If no main executable is currently open then attempt to
2147 open the file that was executed to create this inferior. */
2148 if (try_open_exec
&& get_exec_file (0) == NULL
)
2149 exec_file_locate_attach (pid
, 0, 1);
2154 static remote_thread_info
*get_remote_thread_info (thread_info
*thread
);
2156 /* Add thread PTID to GDB's thread list. Tag it as executing/running
2157 according to RUNNING. */
2160 remote_add_thread (ptid_t ptid
, int running
, int executing
)
2162 struct remote_state
*rs
= get_remote_state ();
2163 struct thread_info
*thread
;
2165 /* GDB historically didn't pull threads in the initial connection
2166 setup. If the remote target doesn't even have a concept of
2167 threads (e.g., a bare-metal target), even if internally we
2168 consider that a single-threaded target, mentioning a new thread
2169 might be confusing to the user. Be silent then, preserving the
2170 age old behavior. */
2171 if (rs
->starting_up
)
2172 thread
= add_thread_silent (ptid
);
2174 thread
= add_thread (ptid
);
2176 get_remote_thread_info (thread
)->vcont_resumed
= executing
;
2177 set_executing (ptid
, executing
);
2178 set_running (ptid
, running
);
2181 /* Come here when we learn about a thread id from the remote target.
2182 It may be the first time we hear about such thread, so take the
2183 opportunity to add it to GDB's thread list. In case this is the
2184 first time we're noticing its corresponding inferior, add it to
2185 GDB's inferior list as well. EXECUTING indicates whether the
2186 thread is (internally) executing or stopped. */
2189 remote_notice_new_inferior (ptid_t currthread
, int executing
)
2191 /* In non-stop mode, we assume new found threads are (externally)
2192 running until proven otherwise with a stop reply. In all-stop,
2193 we can only get here if all threads are stopped. */
2194 int running
= target_is_non_stop_p () ? 1 : 0;
2196 /* If this is a new thread, add it to GDB's thread list.
2197 If we leave it up to WFI to do this, bad things will happen. */
2199 if (in_thread_list (currthread
) && is_exited (currthread
))
2201 /* We're seeing an event on a thread id we knew had exited.
2202 This has to be a new thread reusing the old id. Add it. */
2203 remote_add_thread (currthread
, running
, executing
);
2207 if (!in_thread_list (currthread
))
2209 struct inferior
*inf
= NULL
;
2210 int pid
= ptid_get_pid (currthread
);
2212 if (ptid_is_pid (inferior_ptid
)
2213 && pid
== ptid_get_pid (inferior_ptid
))
2215 /* inferior_ptid has no thread member yet. This can happen
2216 with the vAttach -> remote_wait,"TAAthread:" path if the
2217 stub doesn't support qC. This is the first stop reported
2218 after an attach, so this is the main thread. Update the
2219 ptid in the thread list. */
2220 if (in_thread_list (pid_to_ptid (pid
)))
2221 thread_change_ptid (inferior_ptid
, currthread
);
2224 remote_add_thread (currthread
, running
, executing
);
2225 inferior_ptid
= currthread
;
2230 if (ptid_equal (magic_null_ptid
, inferior_ptid
))
2232 /* inferior_ptid is not set yet. This can happen with the
2233 vRun -> remote_wait,"TAAthread:" path if the stub
2234 doesn't support qC. This is the first stop reported
2235 after an attach, so this is the main thread. Update the
2236 ptid in the thread list. */
2237 thread_change_ptid (inferior_ptid
, currthread
);
2241 /* When connecting to a target remote, or to a target
2242 extended-remote which already was debugging an inferior, we
2243 may not know about it yet. Add it before adding its child
2244 thread, so notifications are emitted in a sensible order. */
2245 if (!in_inferior_list (ptid_get_pid (currthread
)))
2247 struct remote_state
*rs
= get_remote_state ();
2248 int fake_pid_p
= !remote_multi_process_p (rs
);
2250 inf
= remote_add_inferior (fake_pid_p
,
2251 ptid_get_pid (currthread
), -1, 1);
2254 /* This is really a new thread. Add it. */
2255 remote_add_thread (currthread
, running
, executing
);
2257 /* If we found a new inferior, let the common code do whatever
2258 it needs to with it (e.g., read shared libraries, insert
2259 breakpoints), unless we're just setting up an all-stop
2263 struct remote_state
*rs
= get_remote_state ();
2265 if (!rs
->starting_up
)
2266 notice_new_inferior (currthread
, executing
, 0);
2271 /* Return THREAD's private thread data, creating it if necessary. */
2273 static remote_thread_info
*
2274 get_remote_thread_info (thread_info
*thread
)
2276 gdb_assert (thread
!= NULL
);
2278 if (thread
->priv
== NULL
)
2279 thread
->priv
.reset (new remote_thread_info
);
2281 return static_cast<remote_thread_info
*> (thread
->priv
.get ());
2284 /* Return PTID's private thread data, creating it if necessary. */
2286 static remote_thread_info
*
2287 get_remote_thread_info (ptid_t ptid
)
2289 struct thread_info
*info
= find_thread_ptid (ptid
);
2291 return get_remote_thread_info (info
);
2294 /* Call this function as a result of
2295 1) A halt indication (T packet) containing a thread id
2296 2) A direct query of currthread
2297 3) Successful execution of set thread */
2300 record_currthread (struct remote_state
*rs
, ptid_t currthread
)
2302 rs
->general_thread
= currthread
;
2305 /* If 'QPassSignals' is supported, tell the remote stub what signals
2306 it can simply pass through to the inferior without reporting. */
2309 remote_target::pass_signals (int numsigs
, unsigned char *pass_signals
)
2311 if (packet_support (PACKET_QPassSignals
) != PACKET_DISABLE
)
2313 char *pass_packet
, *p
;
2315 struct remote_state
*rs
= get_remote_state ();
2317 gdb_assert (numsigs
< 256);
2318 for (i
= 0; i
< numsigs
; i
++)
2320 if (pass_signals
[i
])
2323 pass_packet
= (char *) xmalloc (count
* 3 + strlen ("QPassSignals:") + 1);
2324 strcpy (pass_packet
, "QPassSignals:");
2325 p
= pass_packet
+ strlen (pass_packet
);
2326 for (i
= 0; i
< numsigs
; i
++)
2328 if (pass_signals
[i
])
2331 *p
++ = tohex (i
>> 4);
2332 *p
++ = tohex (i
& 15);
2341 if (!rs
->last_pass_packet
|| strcmp (rs
->last_pass_packet
, pass_packet
))
2343 putpkt (pass_packet
);
2344 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
2345 packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_QPassSignals
]);
2346 if (rs
->last_pass_packet
)
2347 xfree (rs
->last_pass_packet
);
2348 rs
->last_pass_packet
= pass_packet
;
2351 xfree (pass_packet
);
2355 /* If 'QCatchSyscalls' is supported, tell the remote stub
2356 to report syscalls to GDB. */
2359 remote_target::set_syscall_catchpoint (int pid
, bool needed
, int any_count
,
2360 gdb::array_view
<const int> syscall_counts
)
2362 const char *catch_packet
;
2363 enum packet_result result
;
2366 if (packet_support (PACKET_QCatchSyscalls
) == PACKET_DISABLE
)
2368 /* Not supported. */
2372 if (needed
&& any_count
== 0)
2374 /* Count how many syscalls are to be caught. */
2375 for (size_t i
= 0; i
< syscall_counts
.size (); i
++)
2377 if (syscall_counts
[i
] != 0)
2384 fprintf_unfiltered (gdb_stdlog
,
2385 "remote_set_syscall_catchpoint "
2386 "pid %d needed %d any_count %d n_sysno %d\n",
2387 pid
, needed
, any_count
, n_sysno
);
2390 std::string built_packet
;
2393 /* Prepare a packet with the sysno list, assuming max 8+1
2394 characters for a sysno. If the resulting packet size is too
2395 big, fallback on the non-selective packet. */
2396 const int maxpktsz
= strlen ("QCatchSyscalls:1") + n_sysno
* 9 + 1;
2397 built_packet
.reserve (maxpktsz
);
2398 built_packet
= "QCatchSyscalls:1";
2401 /* Add in each syscall to be caught. */
2402 for (size_t i
= 0; i
< syscall_counts
.size (); i
++)
2404 if (syscall_counts
[i
] != 0)
2405 string_appendf (built_packet
, ";%zx", i
);
2408 if (built_packet
.size () > get_remote_packet_size ())
2410 /* catch_packet too big. Fallback to less efficient
2411 non selective mode, with GDB doing the filtering. */
2412 catch_packet
= "QCatchSyscalls:1";
2415 catch_packet
= built_packet
.c_str ();
2418 catch_packet
= "QCatchSyscalls:0";
2420 struct remote_state
*rs
= get_remote_state ();
2422 putpkt (catch_packet
);
2423 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
2424 result
= packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_QCatchSyscalls
]);
2425 if (result
== PACKET_OK
)
2431 /* If 'QProgramSignals' is supported, tell the remote stub what
2432 signals it should pass through to the inferior when detaching. */
2435 remote_target::program_signals (int numsigs
, unsigned char *signals
)
2437 if (packet_support (PACKET_QProgramSignals
) != PACKET_DISABLE
)
2441 struct remote_state
*rs
= get_remote_state ();
2443 gdb_assert (numsigs
< 256);
2444 for (i
= 0; i
< numsigs
; i
++)
2449 packet
= (char *) xmalloc (count
* 3 + strlen ("QProgramSignals:") + 1);
2450 strcpy (packet
, "QProgramSignals:");
2451 p
= packet
+ strlen (packet
);
2452 for (i
= 0; i
< numsigs
; i
++)
2454 if (signal_pass_state (i
))
2457 *p
++ = tohex (i
>> 4);
2458 *p
++ = tohex (i
& 15);
2467 if (!rs
->last_program_signals_packet
2468 || strcmp (rs
->last_program_signals_packet
, packet
) != 0)
2471 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
2472 packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_QProgramSignals
]);
2473 xfree (rs
->last_program_signals_packet
);
2474 rs
->last_program_signals_packet
= packet
;
2481 /* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
2482 MINUS_ONE_PTID, set the thread to -1, so the stub returns the
2483 thread. If GEN is set, set the general thread, if not, then set
2484 the step/continue thread. */
2486 set_thread (ptid_t ptid
, int gen
)
2488 struct remote_state
*rs
= get_remote_state ();
2489 ptid_t state
= gen
? rs
->general_thread
: rs
->continue_thread
;
2490 char *buf
= rs
->buf
;
2491 char *endbuf
= rs
->buf
+ get_remote_packet_size ();
2493 if (ptid_equal (state
, ptid
))
2497 *buf
++ = gen
? 'g' : 'c';
2498 if (ptid_equal (ptid
, magic_null_ptid
))
2499 xsnprintf (buf
, endbuf
- buf
, "0");
2500 else if (ptid_equal (ptid
, any_thread_ptid
))
2501 xsnprintf (buf
, endbuf
- buf
, "0");
2502 else if (ptid_equal (ptid
, minus_one_ptid
))
2503 xsnprintf (buf
, endbuf
- buf
, "-1");
2505 write_ptid (buf
, endbuf
, ptid
);
2507 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
2509 rs
->general_thread
= ptid
;
2511 rs
->continue_thread
= ptid
;
2515 set_general_thread (ptid_t ptid
)
2517 set_thread (ptid
, 1);
2521 set_continue_thread (ptid_t ptid
)
2523 set_thread (ptid
, 0);
2526 /* Change the remote current process. Which thread within the process
2527 ends up selected isn't important, as long as it is the same process
2528 as what INFERIOR_PTID points to.
2530 This comes from that fact that there is no explicit notion of
2531 "selected process" in the protocol. The selected process for
2532 general operations is the process the selected general thread
2536 set_general_process (void)
2538 struct remote_state
*rs
= get_remote_state ();
2540 /* If the remote can't handle multiple processes, don't bother. */
2541 if (!remote_multi_process_p (rs
))
2544 /* We only need to change the remote current thread if it's pointing
2545 at some other process. */
2546 if (ptid_get_pid (rs
->general_thread
) != ptid_get_pid (inferior_ptid
))
2547 set_general_thread (inferior_ptid
);
2551 /* Return nonzero if this is the main thread that we made up ourselves
2552 to model non-threaded targets as single-threaded. */
2555 remote_thread_always_alive (ptid_t ptid
)
2557 if (ptid_equal (ptid
, magic_null_ptid
))
2558 /* The main thread is always alive. */
2561 if (ptid_get_pid (ptid
) != 0 && ptid_get_lwp (ptid
) == 0)
2562 /* The main thread is always alive. This can happen after a
2563 vAttach, if the remote side doesn't support
2570 /* Return nonzero if the thread PTID is still alive on the remote
2574 remote_target::thread_alive (ptid_t ptid
)
2576 struct remote_state
*rs
= get_remote_state ();
2579 /* Check if this is a thread that we made up ourselves to model
2580 non-threaded targets as single-threaded. */
2581 if (remote_thread_always_alive (ptid
))
2585 endp
= rs
->buf
+ get_remote_packet_size ();
2588 write_ptid (p
, endp
, ptid
);
2591 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
2592 return (rs
->buf
[0] == 'O' && rs
->buf
[1] == 'K');
2595 /* Return a pointer to a thread name if we know it and NULL otherwise.
2596 The thread_info object owns the memory for the name. */
2599 remote_target::thread_name (struct thread_info
*info
)
2601 if (info
->priv
!= NULL
)
2603 const std::string
&name
= get_remote_thread_info (info
)->name
;
2604 return !name
.empty () ? name
.c_str () : NULL
;
2610 /* About these extended threadlist and threadinfo packets. They are
2611 variable length packets but, the fields within them are often fixed
2612 length. They are redundent enough to send over UDP as is the
2613 remote protocol in general. There is a matching unit test module
2616 /* WARNING: This threadref data structure comes from the remote O.S.,
2617 libstub protocol encoding, and remote.c. It is not particularly
2620 /* Right now, the internal structure is int. We want it to be bigger.
2621 Plan to fix this. */
2623 typedef int gdb_threadref
; /* Internal GDB thread reference. */
2625 /* gdb_ext_thread_info is an internal GDB data structure which is
2626 equivalent to the reply of the remote threadinfo packet. */
2628 struct gdb_ext_thread_info
2630 threadref threadid
; /* External form of thread reference. */
2631 int active
; /* Has state interesting to GDB?
2633 char display
[256]; /* Brief state display, name,
2634 blocked/suspended. */
2635 char shortname
[32]; /* To be used to name threads. */
2636 char more_display
[256]; /* Long info, statistics, queue depth,
2640 /* The volume of remote transfers can be limited by submitting
2641 a mask containing bits specifying the desired information.
2642 Use a union of these values as the 'selection' parameter to
2643 get_thread_info. FIXME: Make these TAG names more thread specific. */
2645 #define TAG_THREADID 1
2646 #define TAG_EXISTS 2
2647 #define TAG_DISPLAY 4
2648 #define TAG_THREADNAME 8
2649 #define TAG_MOREDISPLAY 16
2651 #define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
2653 static char *unpack_nibble (char *buf
, int *val
);
2655 static char *unpack_byte (char *buf
, int *value
);
2657 static char *pack_int (char *buf
, int value
);
2659 static char *unpack_int (char *buf
, int *value
);
2661 static char *unpack_string (char *src
, char *dest
, int length
);
2663 static char *pack_threadid (char *pkt
, threadref
*id
);
2665 static char *unpack_threadid (char *inbuf
, threadref
*id
);
2667 void int_to_threadref (threadref
*id
, int value
);
2669 static int threadref_to_int (threadref
*ref
);
2671 static void copy_threadref (threadref
*dest
, threadref
*src
);
2673 static int threadmatch (threadref
*dest
, threadref
*src
);
2675 static char *pack_threadinfo_request (char *pkt
, int mode
,
2678 static int remote_unpack_thread_info_response (char *pkt
,
2679 threadref
*expectedref
,
2680 struct gdb_ext_thread_info
2684 static int remote_get_threadinfo (threadref
*threadid
,
2685 int fieldset
, /*TAG mask */
2686 struct gdb_ext_thread_info
*info
);
2688 static char *pack_threadlist_request (char *pkt
, int startflag
,
2690 threadref
*nextthread
);
2692 static int parse_threadlist_response (char *pkt
,
2694 threadref
*original_echo
,
2695 threadref
*resultlist
,
2698 static int remote_get_threadlist (int startflag
,
2699 threadref
*nextthread
,
2703 threadref
*threadlist
);
2705 typedef int (*rmt_thread_action
) (threadref
*ref
, void *context
);
2707 static int remote_threadlist_iterator (rmt_thread_action stepfunction
,
2708 void *context
, int looplimit
);
2710 static int remote_newthread_step (threadref
*ref
, void *context
);
2713 /* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the
2714 buffer we're allowed to write to. Returns
2715 BUF+CHARACTERS_WRITTEN. */
2718 write_ptid (char *buf
, const char *endbuf
, ptid_t ptid
)
2721 struct remote_state
*rs
= get_remote_state ();
2723 if (remote_multi_process_p (rs
))
2725 pid
= ptid_get_pid (ptid
);
2727 buf
+= xsnprintf (buf
, endbuf
- buf
, "p-%x.", -pid
);
2729 buf
+= xsnprintf (buf
, endbuf
- buf
, "p%x.", pid
);
2731 tid
= ptid_get_lwp (ptid
);
2733 buf
+= xsnprintf (buf
, endbuf
- buf
, "-%x", -tid
);
2735 buf
+= xsnprintf (buf
, endbuf
- buf
, "%x", tid
);
2740 /* Extract a PTID from BUF. If non-null, OBUF is set to one past the
2741 last parsed char. Returns null_ptid if no thread id is found, and
2742 throws an error if the thread id has an invalid format. */
2745 read_ptid (const char *buf
, const char **obuf
)
2747 const char *p
= buf
;
2749 ULONGEST pid
= 0, tid
= 0;
2753 /* Multi-process ptid. */
2754 pp
= unpack_varlen_hex (p
+ 1, &pid
);
2756 error (_("invalid remote ptid: %s"), p
);
2759 pp
= unpack_varlen_hex (p
+ 1, &tid
);
2762 return ptid_build (pid
, tid
, 0);
2765 /* No multi-process. Just a tid. */
2766 pp
= unpack_varlen_hex (p
, &tid
);
2768 /* Return null_ptid when no thread id is found. */
2776 /* Since the stub is not sending a process id, then default to
2777 what's in inferior_ptid, unless it's null at this point. If so,
2778 then since there's no way to know the pid of the reported
2779 threads, use the magic number. */
2780 if (ptid_equal (inferior_ptid
, null_ptid
))
2781 pid
= ptid_get_pid (magic_null_ptid
);
2783 pid
= ptid_get_pid (inferior_ptid
);
2787 return ptid_build (pid
, tid
, 0);
2793 if (ch
>= 'a' && ch
<= 'f')
2794 return ch
- 'a' + 10;
2795 if (ch
>= '0' && ch
<= '9')
2797 if (ch
>= 'A' && ch
<= 'F')
2798 return ch
- 'A' + 10;
2803 stub_unpack_int (char *buff
, int fieldlength
)
2810 nibble
= stubhex (*buff
++);
2814 retval
= retval
<< 4;
2820 unpack_nibble (char *buf
, int *val
)
2822 *val
= fromhex (*buf
++);
2827 unpack_byte (char *buf
, int *value
)
2829 *value
= stub_unpack_int (buf
, 2);
2834 pack_int (char *buf
, int value
)
2836 buf
= pack_hex_byte (buf
, (value
>> 24) & 0xff);
2837 buf
= pack_hex_byte (buf
, (value
>> 16) & 0xff);
2838 buf
= pack_hex_byte (buf
, (value
>> 8) & 0x0ff);
2839 buf
= pack_hex_byte (buf
, (value
& 0xff));
2844 unpack_int (char *buf
, int *value
)
2846 *value
= stub_unpack_int (buf
, 8);
2850 #if 0 /* Currently unused, uncomment when needed. */
2851 static char *pack_string (char *pkt
, char *string
);
2854 pack_string (char *pkt
, char *string
)
2859 len
= strlen (string
);
2861 len
= 200; /* Bigger than most GDB packets, junk??? */
2862 pkt
= pack_hex_byte (pkt
, len
);
2866 if ((ch
== '\0') || (ch
== '#'))
2867 ch
= '*'; /* Protect encapsulation. */
2872 #endif /* 0 (unused) */
2875 unpack_string (char *src
, char *dest
, int length
)
2884 pack_threadid (char *pkt
, threadref
*id
)
2887 unsigned char *altid
;
2889 altid
= (unsigned char *) id
;
2890 limit
= pkt
+ BUF_THREAD_ID_SIZE
;
2892 pkt
= pack_hex_byte (pkt
, *altid
++);
2898 unpack_threadid (char *inbuf
, threadref
*id
)
2901 char *limit
= inbuf
+ BUF_THREAD_ID_SIZE
;
2904 altref
= (char *) id
;
2906 while (inbuf
< limit
)
2908 x
= stubhex (*inbuf
++);
2909 y
= stubhex (*inbuf
++);
2910 *altref
++ = (x
<< 4) | y
;
2915 /* Externally, threadrefs are 64 bits but internally, they are still
2916 ints. This is due to a mismatch of specifications. We would like
2917 to use 64bit thread references internally. This is an adapter
2921 int_to_threadref (threadref
*id
, int value
)
2923 unsigned char *scan
;
2925 scan
= (unsigned char *) id
;
2931 *scan
++ = (value
>> 24) & 0xff;
2932 *scan
++ = (value
>> 16) & 0xff;
2933 *scan
++ = (value
>> 8) & 0xff;
2934 *scan
++ = (value
& 0xff);
2938 threadref_to_int (threadref
*ref
)
2941 unsigned char *scan
;
2947 value
= (value
<< 8) | ((*scan
++) & 0xff);
2952 copy_threadref (threadref
*dest
, threadref
*src
)
2955 unsigned char *csrc
, *cdest
;
2957 csrc
= (unsigned char *) src
;
2958 cdest
= (unsigned char *) dest
;
2965 threadmatch (threadref
*dest
, threadref
*src
)
2967 /* Things are broken right now, so just assume we got a match. */
2969 unsigned char *srcp
, *destp
;
2971 srcp
= (char *) src
;
2972 destp
= (char *) dest
;
2976 result
&= (*srcp
++ == *destp
++) ? 1 : 0;
2983 threadid:1, # always request threadid
2990 /* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
2993 pack_threadinfo_request (char *pkt
, int mode
, threadref
*id
)
2995 *pkt
++ = 'q'; /* Info Query */
2996 *pkt
++ = 'P'; /* process or thread info */
2997 pkt
= pack_int (pkt
, mode
); /* mode */
2998 pkt
= pack_threadid (pkt
, id
); /* threadid */
2999 *pkt
= '\0'; /* terminate */
3003 /* These values tag the fields in a thread info response packet. */
3004 /* Tagging the fields allows us to request specific fields and to
3005 add more fields as time goes by. */
3007 #define TAG_THREADID 1 /* Echo the thread identifier. */
3008 #define TAG_EXISTS 2 /* Is this process defined enough to
3009 fetch registers and its stack? */
3010 #define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
3011 #define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
3012 #define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
3016 remote_unpack_thread_info_response (char *pkt
, threadref
*expectedref
,
3017 struct gdb_ext_thread_info
*info
)
3019 struct remote_state
*rs
= get_remote_state ();
3023 char *limit
= pkt
+ rs
->buf_size
; /* Plausible parsing limit. */
3026 /* info->threadid = 0; FIXME: implement zero_threadref. */
3028 info
->display
[0] = '\0';
3029 info
->shortname
[0] = '\0';
3030 info
->more_display
[0] = '\0';
3032 /* Assume the characters indicating the packet type have been
3034 pkt
= unpack_int (pkt
, &mask
); /* arg mask */
3035 pkt
= unpack_threadid (pkt
, &ref
);
3038 warning (_("Incomplete response to threadinfo request."));
3039 if (!threadmatch (&ref
, expectedref
))
3040 { /* This is an answer to a different request. */
3041 warning (_("ERROR RMT Thread info mismatch."));
3044 copy_threadref (&info
->threadid
, &ref
);
3046 /* Loop on tagged fields , try to bail if somthing goes wrong. */
3048 /* Packets are terminated with nulls. */
3049 while ((pkt
< limit
) && mask
&& *pkt
)
3051 pkt
= unpack_int (pkt
, &tag
); /* tag */
3052 pkt
= unpack_byte (pkt
, &length
); /* length */
3053 if (!(tag
& mask
)) /* Tags out of synch with mask. */
3055 warning (_("ERROR RMT: threadinfo tag mismatch."));
3059 if (tag
== TAG_THREADID
)
3063 warning (_("ERROR RMT: length of threadid is not 16."));
3067 pkt
= unpack_threadid (pkt
, &ref
);
3068 mask
= mask
& ~TAG_THREADID
;
3071 if (tag
== TAG_EXISTS
)
3073 info
->active
= stub_unpack_int (pkt
, length
);
3075 mask
= mask
& ~(TAG_EXISTS
);
3078 warning (_("ERROR RMT: 'exists' length too long."));
3084 if (tag
== TAG_THREADNAME
)
3086 pkt
= unpack_string (pkt
, &info
->shortname
[0], length
);
3087 mask
= mask
& ~TAG_THREADNAME
;
3090 if (tag
== TAG_DISPLAY
)
3092 pkt
= unpack_string (pkt
, &info
->display
[0], length
);
3093 mask
= mask
& ~TAG_DISPLAY
;
3096 if (tag
== TAG_MOREDISPLAY
)
3098 pkt
= unpack_string (pkt
, &info
->more_display
[0], length
);
3099 mask
= mask
& ~TAG_MOREDISPLAY
;
3102 warning (_("ERROR RMT: unknown thread info tag."));
3103 break; /* Not a tag we know about. */
3109 remote_get_threadinfo (threadref
*threadid
, int fieldset
, /* TAG mask */
3110 struct gdb_ext_thread_info
*info
)
3112 struct remote_state
*rs
= get_remote_state ();
3115 pack_threadinfo_request (rs
->buf
, fieldset
, threadid
);
3117 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
3119 if (rs
->buf
[0] == '\0')
3122 result
= remote_unpack_thread_info_response (rs
->buf
+ 2,
3127 /* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
3130 pack_threadlist_request (char *pkt
, int startflag
, int threadcount
,
3131 threadref
*nextthread
)
3133 *pkt
++ = 'q'; /* info query packet */
3134 *pkt
++ = 'L'; /* Process LIST or threadLIST request */
3135 pkt
= pack_nibble (pkt
, startflag
); /* initflag 1 bytes */
3136 pkt
= pack_hex_byte (pkt
, threadcount
); /* threadcount 2 bytes */
3137 pkt
= pack_threadid (pkt
, nextthread
); /* 64 bit thread identifier */
3142 /* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
3145 parse_threadlist_response (char *pkt
, int result_limit
,
3146 threadref
*original_echo
, threadref
*resultlist
,
3149 struct remote_state
*rs
= get_remote_state ();
3151 int count
, resultcount
, done
;
3154 /* Assume the 'q' and 'M chars have been stripped. */
3155 limit
= pkt
+ (rs
->buf_size
- BUF_THREAD_ID_SIZE
);
3156 /* done parse past here */
3157 pkt
= unpack_byte (pkt
, &count
); /* count field */
3158 pkt
= unpack_nibble (pkt
, &done
);
3159 /* The first threadid is the argument threadid. */
3160 pkt
= unpack_threadid (pkt
, original_echo
); /* should match query packet */
3161 while ((count
-- > 0) && (pkt
< limit
))
3163 pkt
= unpack_threadid (pkt
, resultlist
++);
3164 if (resultcount
++ >= result_limit
)
3172 /* Fetch the next batch of threads from the remote. Returns -1 if the
3173 qL packet is not supported, 0 on error and 1 on success. */
3176 remote_get_threadlist (int startflag
, threadref
*nextthread
, int result_limit
,
3177 int *done
, int *result_count
, threadref
*threadlist
)
3179 struct remote_state
*rs
= get_remote_state ();
3182 /* Trancate result limit to be smaller than the packet size. */
3183 if ((((result_limit
+ 1) * BUF_THREAD_ID_SIZE
) + 10)
3184 >= get_remote_packet_size ())
3185 result_limit
= (get_remote_packet_size () / BUF_THREAD_ID_SIZE
) - 2;
3187 pack_threadlist_request (rs
->buf
, startflag
, result_limit
, nextthread
);
3189 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
3190 if (*rs
->buf
== '\0')
3192 /* Packet not supported. */
3197 parse_threadlist_response (rs
->buf
+ 2, result_limit
,
3198 &rs
->echo_nextthread
, threadlist
, done
);
3200 if (!threadmatch (&rs
->echo_nextthread
, nextthread
))
3202 /* FIXME: This is a good reason to drop the packet. */
3203 /* Possably, there is a duplicate response. */
3205 retransmit immediatly - race conditions
3206 retransmit after timeout - yes
3208 wait for packet, then exit
3210 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
3211 return 0; /* I choose simply exiting. */
3213 if (*result_count
<= 0)
3217 warning (_("RMT ERROR : failed to get remote thread list."));
3220 return result
; /* break; */
3222 if (*result_count
> result_limit
)
3225 warning (_("RMT ERROR: threadlist response longer than requested."));
3231 /* Fetch the list of remote threads, with the qL packet, and call
3232 STEPFUNCTION for each thread found. Stops iterating and returns 1
3233 if STEPFUNCTION returns true. Stops iterating and returns 0 if the
3234 STEPFUNCTION returns false. If the packet is not supported,
3238 remote_threadlist_iterator (rmt_thread_action stepfunction
, void *context
,
3241 struct remote_state
*rs
= get_remote_state ();
3242 int done
, i
, result_count
;
3250 if (loopcount
++ > looplimit
)
3253 warning (_("Remote fetch threadlist -infinite loop-."));
3256 result
= remote_get_threadlist (startflag
, &rs
->nextthread
,
3257 MAXTHREADLISTRESULTS
,
3258 &done
, &result_count
,
3259 rs
->resultthreadlist
);
3262 /* Clear for later iterations. */
3264 /* Setup to resume next batch of thread references, set nextthread. */
3265 if (result_count
>= 1)
3266 copy_threadref (&rs
->nextthread
,
3267 &rs
->resultthreadlist
[result_count
- 1]);
3269 while (result_count
--)
3271 if (!(*stepfunction
) (&rs
->resultthreadlist
[i
++], context
))
3281 /* A thread found on the remote target. */
3285 explicit thread_item (ptid_t ptid_
)
3289 thread_item (thread_item
&&other
) = default;
3290 thread_item
&operator= (thread_item
&&other
) = default;
3292 DISABLE_COPY_AND_ASSIGN (thread_item
);
3294 /* The thread's PTID. */
3297 /* The thread's extra info. */
3300 /* The thread's name. */
3303 /* The core the thread was running on. -1 if not known. */
3306 /* The thread handle associated with the thread. */
3307 gdb::byte_vector thread_handle
;
3310 /* Context passed around to the various methods listing remote
3311 threads. As new threads are found, they're added to the ITEMS
3314 struct threads_listing_context
3316 /* Return true if this object contains an entry for a thread with ptid
3319 bool contains_thread (ptid_t ptid
) const
3321 auto match_ptid
= [&] (const thread_item
&item
)
3323 return item
.ptid
== ptid
;
3326 auto it
= std::find_if (this->items
.begin (),
3330 return it
!= this->items
.end ();
3333 /* Remove the thread with ptid PTID. */
3335 void remove_thread (ptid_t ptid
)
3337 auto match_ptid
= [&] (const thread_item
&item
)
3339 return item
.ptid
== ptid
;
3342 auto it
= std::remove_if (this->items
.begin (),
3346 if (it
!= this->items
.end ())
3347 this->items
.erase (it
);
3350 /* The threads found on the remote target. */
3351 std::vector
<thread_item
> items
;
3355 remote_newthread_step (threadref
*ref
, void *data
)
3357 struct threads_listing_context
*context
3358 = (struct threads_listing_context
*) data
;
3359 int pid
= inferior_ptid
.pid ();
3360 int lwp
= threadref_to_int (ref
);
3361 ptid_t
ptid (pid
, lwp
);
3363 context
->items
.emplace_back (ptid
);
3365 return 1; /* continue iterator */
3368 #define CRAZY_MAX_THREADS 1000
3371 remote_current_thread (ptid_t oldpid
)
3373 struct remote_state
*rs
= get_remote_state ();
3376 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
3377 if (rs
->buf
[0] == 'Q' && rs
->buf
[1] == 'C')
3382 result
= read_ptid (&rs
->buf
[2], &obuf
);
3383 if (*obuf
!= '\0' && remote_debug
)
3384 fprintf_unfiltered (gdb_stdlog
,
3385 "warning: garbage in qC reply\n");
3393 /* List remote threads using the deprecated qL packet. */
3396 remote_get_threads_with_ql (struct target_ops
*ops
,
3397 struct threads_listing_context
*context
)
3399 if (remote_threadlist_iterator (remote_newthread_step
, context
,
3400 CRAZY_MAX_THREADS
) >= 0)
3406 #if defined(HAVE_LIBEXPAT)
3409 start_thread (struct gdb_xml_parser
*parser
,
3410 const struct gdb_xml_element
*element
,
3412 std::vector
<gdb_xml_value
> &attributes
)
3414 struct threads_listing_context
*data
3415 = (struct threads_listing_context
*) user_data
;
3416 struct gdb_xml_value
*attr
;
3418 char *id
= (char *) xml_find_attribute (attributes
, "id")->value
.get ();
3419 ptid_t ptid
= read_ptid (id
, NULL
);
3421 data
->items
.emplace_back (ptid
);
3422 thread_item
&item
= data
->items
.back ();
3424 attr
= xml_find_attribute (attributes
, "core");
3426 item
.core
= *(ULONGEST
*) attr
->value
.get ();
3428 attr
= xml_find_attribute (attributes
, "name");
3430 item
.name
= (const char *) attr
->value
.get ();
3432 attr
= xml_find_attribute (attributes
, "handle");
3434 item
.thread_handle
= hex2bin ((const char *) attr
->value
.get ());
3438 end_thread (struct gdb_xml_parser
*parser
,
3439 const struct gdb_xml_element
*element
,
3440 void *user_data
, const char *body_text
)
3442 struct threads_listing_context
*data
3443 = (struct threads_listing_context
*) user_data
;
3445 if (body_text
!= NULL
&& *body_text
!= '\0')
3446 data
->items
.back ().extra
= body_text
;
3449 const struct gdb_xml_attribute thread_attributes
[] = {
3450 { "id", GDB_XML_AF_NONE
, NULL
, NULL
},
3451 { "core", GDB_XML_AF_OPTIONAL
, gdb_xml_parse_attr_ulongest
, NULL
},
3452 { "name", GDB_XML_AF_OPTIONAL
, NULL
, NULL
},
3453 { "handle", GDB_XML_AF_OPTIONAL
, NULL
, NULL
},
3454 { NULL
, GDB_XML_AF_NONE
, NULL
, NULL
}
3457 const struct gdb_xml_element thread_children
[] = {
3458 { NULL
, NULL
, NULL
, GDB_XML_EF_NONE
, NULL
, NULL
}
3461 const struct gdb_xml_element threads_children
[] = {
3462 { "thread", thread_attributes
, thread_children
,
3463 GDB_XML_EF_REPEATABLE
| GDB_XML_EF_OPTIONAL
,
3464 start_thread
, end_thread
},
3465 { NULL
, NULL
, NULL
, GDB_XML_EF_NONE
, NULL
, NULL
}
3468 const struct gdb_xml_element threads_elements
[] = {
3469 { "threads", NULL
, threads_children
,
3470 GDB_XML_EF_NONE
, NULL
, NULL
},
3471 { NULL
, NULL
, NULL
, GDB_XML_EF_NONE
, NULL
, NULL
}
3476 /* List remote threads using qXfer:threads:read. */
3479 remote_get_threads_with_qxfer (struct target_ops
*ops
,
3480 struct threads_listing_context
*context
)
3482 #if defined(HAVE_LIBEXPAT)
3483 if (packet_support (PACKET_qXfer_threads
) == PACKET_ENABLE
)
3485 gdb::optional
<gdb::char_vector
> xml
3486 = target_read_stralloc (ops
, TARGET_OBJECT_THREADS
, NULL
);
3488 if (xml
&& (*xml
)[0] != '\0')
3490 gdb_xml_parse_quick (_("threads"), "threads.dtd",
3491 threads_elements
, xml
->data (), context
);
3501 /* List remote threads using qfThreadInfo/qsThreadInfo. */
3504 remote_get_threads_with_qthreadinfo (struct target_ops
*ops
,
3505 struct threads_listing_context
*context
)
3507 struct remote_state
*rs
= get_remote_state ();
3509 if (rs
->use_threadinfo_query
)
3513 putpkt ("qfThreadInfo");
3514 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
3516 if (bufp
[0] != '\0') /* q packet recognized */
3518 while (*bufp
++ == 'm') /* reply contains one or more TID */
3522 ptid_t ptid
= read_ptid (bufp
, &bufp
);
3523 context
->items
.emplace_back (ptid
);
3525 while (*bufp
++ == ','); /* comma-separated list */
3526 putpkt ("qsThreadInfo");
3527 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
3534 /* Packet not recognized. */
3535 rs
->use_threadinfo_query
= 0;
3542 /* Implement the to_update_thread_list function for the remote
3546 remote_target::update_thread_list ()
3548 struct threads_listing_context context
;
3551 /* We have a few different mechanisms to fetch the thread list. Try
3552 them all, starting with the most preferred one first, falling
3553 back to older methods. */
3554 if (remote_get_threads_with_qxfer (this, &context
)
3555 || remote_get_threads_with_qthreadinfo (this, &context
)
3556 || remote_get_threads_with_ql (this, &context
))
3558 struct thread_info
*tp
, *tmp
;
3562 if (context
.items
.empty ()
3563 && remote_thread_always_alive (inferior_ptid
))
3565 /* Some targets don't really support threads, but still
3566 reply an (empty) thread list in response to the thread
3567 listing packets, instead of replying "packet not
3568 supported". Exit early so we don't delete the main
3573 /* CONTEXT now holds the current thread list on the remote
3574 target end. Delete GDB-side threads no longer found on the
3576 ALL_THREADS_SAFE (tp
, tmp
)
3578 if (!context
.contains_thread (tp
->ptid
))
3581 delete_thread (tp
->ptid
);
3585 /* Remove any unreported fork child threads from CONTEXT so
3586 that we don't interfere with follow fork, which is where
3587 creation of such threads is handled. */
3588 remove_new_fork_children (&context
);
3590 /* And now add threads we don't know about yet to our list. */
3591 for (thread_item
&item
: context
.items
)
3593 if (item
.ptid
!= null_ptid
)
3595 /* In non-stop mode, we assume new found threads are
3596 executing until proven otherwise with a stop reply.
3597 In all-stop, we can only get here if all threads are
3599 int executing
= target_is_non_stop_p () ? 1 : 0;
3601 remote_notice_new_inferior (item
.ptid
, executing
);
3603 remote_thread_info
*info
= get_remote_thread_info (item
.ptid
);
3604 info
->core
= item
.core
;
3605 info
->extra
= std::move (item
.extra
);
3606 info
->name
= std::move (item
.name
);
3607 info
->thread_handle
= std::move (item
.thread_handle
);
3614 /* If no thread listing method is supported, then query whether
3615 each known thread is alive, one by one, with the T packet.
3616 If the target doesn't support threads at all, then this is a
3617 no-op. See remote_thread_alive. */
3623 * Collect a descriptive string about the given thread.
3624 * The target may say anything it wants to about the thread
3625 * (typically info about its blocked / runnable state, name, etc.).
3626 * This string will appear in the info threads display.
3628 * Optional: targets are not required to implement this function.
3632 remote_target::extra_thread_info (thread_info
*tp
)
3634 struct remote_state
*rs
= get_remote_state ();
3638 struct gdb_ext_thread_info threadinfo
;
3639 static char display_buf
[100]; /* arbitrary... */
3640 int n
= 0; /* position in display_buf */
3642 if (rs
->remote_desc
== 0) /* paranoia */
3643 internal_error (__FILE__
, __LINE__
,
3644 _("remote_threads_extra_info"));
3646 if (ptid_equal (tp
->ptid
, magic_null_ptid
)
3647 || (ptid_get_pid (tp
->ptid
) != 0 && ptid_get_lwp (tp
->ptid
) == 0))
3648 /* This is the main thread which was added by GDB. The remote
3649 server doesn't know about it. */
3652 if (packet_support (PACKET_qXfer_threads
) == PACKET_ENABLE
)
3654 struct thread_info
*info
= find_thread_ptid (tp
->ptid
);
3656 if (info
!= NULL
&& info
->priv
!= NULL
)
3658 const std::string
&extra
= get_remote_thread_info (info
)->extra
;
3659 return !extra
.empty () ? extra
.c_str () : NULL
;
3665 if (rs
->use_threadextra_query
)
3668 char *endb
= rs
->buf
+ get_remote_packet_size ();
3670 xsnprintf (b
, endb
- b
, "qThreadExtraInfo,");
3672 write_ptid (b
, endb
, tp
->ptid
);
3675 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
3676 if (rs
->buf
[0] != 0)
3678 n
= std::min (strlen (rs
->buf
) / 2, sizeof (display_buf
));
3679 result
= hex2bin (rs
->buf
, (gdb_byte
*) display_buf
, n
);
3680 display_buf
[result
] = '\0';
3685 /* If the above query fails, fall back to the old method. */
3686 rs
->use_threadextra_query
= 0;
3687 set
= TAG_THREADID
| TAG_EXISTS
| TAG_THREADNAME
3688 | TAG_MOREDISPLAY
| TAG_DISPLAY
;
3689 int_to_threadref (&id
, ptid_get_lwp (tp
->ptid
));
3690 if (remote_get_threadinfo (&id
, set
, &threadinfo
))
3691 if (threadinfo
.active
)
3693 if (*threadinfo
.shortname
)
3694 n
+= xsnprintf (&display_buf
[0], sizeof (display_buf
) - n
,
3695 " Name: %s,", threadinfo
.shortname
);
3696 if (*threadinfo
.display
)
3697 n
+= xsnprintf (&display_buf
[n
], sizeof (display_buf
) - n
,
3698 " State: %s,", threadinfo
.display
);
3699 if (*threadinfo
.more_display
)
3700 n
+= xsnprintf (&display_buf
[n
], sizeof (display_buf
) - n
,
3701 " Priority: %s", threadinfo
.more_display
);
3705 /* For purely cosmetic reasons, clear up trailing commas. */
3706 if (',' == display_buf
[n
-1])
3707 display_buf
[n
-1] = ' ';
3716 remote_target::static_tracepoint_marker_at (CORE_ADDR addr
,
3717 struct static_tracepoint_marker
*marker
)
3719 struct remote_state
*rs
= get_remote_state ();
3722 xsnprintf (p
, get_remote_packet_size (), "qTSTMat:");
3724 p
+= hexnumstr (p
, addr
);
3726 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
3730 error (_("Remote failure reply: %s"), p
);
3734 parse_static_tracepoint_marker_definition (p
, NULL
, marker
);
3741 std::vector
<static_tracepoint_marker
>
3742 remote_target::static_tracepoint_markers_by_strid (const char *strid
)
3744 struct remote_state
*rs
= get_remote_state ();
3745 std::vector
<static_tracepoint_marker
> markers
;
3747 static_tracepoint_marker marker
;
3749 /* Ask for a first packet of static tracepoint marker
3752 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
3755 error (_("Remote failure reply: %s"), p
);
3761 parse_static_tracepoint_marker_definition (p
, &p
, &marker
);
3763 if (strid
== NULL
|| marker
.str_id
== strid
)
3764 markers
.push_back (std::move (marker
));
3766 while (*p
++ == ','); /* comma-separated list */
3767 /* Ask for another packet of static tracepoint definition. */
3769 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
3777 /* Implement the to_get_ada_task_ptid function for the remote targets. */
3780 remote_target::get_ada_task_ptid (long lwp
, long thread
)
3782 return ptid_build (ptid_get_pid (inferior_ptid
), lwp
, 0);
3786 /* Restart the remote side; this is an extended protocol operation. */
3789 extended_remote_restart (void)
3791 struct remote_state
*rs
= get_remote_state ();
3793 /* Send the restart command; for reasons I don't understand the
3794 remote side really expects a number after the "R". */
3795 xsnprintf (rs
->buf
, get_remote_packet_size (), "R%x", 0);
3798 remote_fileio_reset ();
3801 /* Clean up connection to a remote debugger. */
3804 remote_target::close ()
3806 struct remote_state
*rs
= get_remote_state ();
3808 if (rs
->remote_desc
== NULL
)
3809 return; /* already closed */
3811 /* Make sure we leave stdin registered in the event loop. */
3814 serial_close (rs
->remote_desc
);
3815 rs
->remote_desc
= NULL
;
3817 /* We don't have a connection to the remote stub anymore. Get rid
3818 of all the inferiors and their threads we were controlling.
3819 Reset inferior_ptid to null_ptid first, as otherwise has_stack_frame
3820 will be unable to find the thread corresponding to (pid, 0, 0). */
3821 inferior_ptid
= null_ptid
;
3822 discard_all_inferiors ();
3824 /* We are closing the remote target, so we should discard
3825 everything of this target. */
3826 discard_pending_stop_replies_in_queue (rs
);
3828 if (remote_async_inferior_event_token
)
3829 delete_async_event_handler (&remote_async_inferior_event_token
);
3831 remote_notif_state_xfree (rs
->notif_state
);
3833 trace_reset_local_state ();
3836 /* Query the remote side for the text, data and bss offsets. */
3841 struct remote_state
*rs
= get_remote_state ();
3844 int lose
, num_segments
= 0, do_sections
, do_segments
;
3845 CORE_ADDR text_addr
, data_addr
, bss_addr
, segments
[2];
3846 struct section_offsets
*offs
;
3847 struct symfile_segment_data
*data
;
3849 if (symfile_objfile
== NULL
)
3852 putpkt ("qOffsets");
3853 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
3856 if (buf
[0] == '\000')
3857 return; /* Return silently. Stub doesn't support
3861 warning (_("Remote failure reply: %s"), buf
);
3865 /* Pick up each field in turn. This used to be done with scanf, but
3866 scanf will make trouble if CORE_ADDR size doesn't match
3867 conversion directives correctly. The following code will work
3868 with any size of CORE_ADDR. */
3869 text_addr
= data_addr
= bss_addr
= 0;
3873 if (startswith (ptr
, "Text="))
3876 /* Don't use strtol, could lose on big values. */
3877 while (*ptr
&& *ptr
!= ';')
3878 text_addr
= (text_addr
<< 4) + fromhex (*ptr
++);
3880 if (startswith (ptr
, ";Data="))
3883 while (*ptr
&& *ptr
!= ';')
3884 data_addr
= (data_addr
<< 4) + fromhex (*ptr
++);
3889 if (!lose
&& startswith (ptr
, ";Bss="))
3892 while (*ptr
&& *ptr
!= ';')
3893 bss_addr
= (bss_addr
<< 4) + fromhex (*ptr
++);
3895 if (bss_addr
!= data_addr
)
3896 warning (_("Target reported unsupported offsets: %s"), buf
);
3901 else if (startswith (ptr
, "TextSeg="))
3904 /* Don't use strtol, could lose on big values. */
3905 while (*ptr
&& *ptr
!= ';')
3906 text_addr
= (text_addr
<< 4) + fromhex (*ptr
++);
3909 if (startswith (ptr
, ";DataSeg="))
3912 while (*ptr
&& *ptr
!= ';')
3913 data_addr
= (data_addr
<< 4) + fromhex (*ptr
++);
3921 error (_("Malformed response to offset query, %s"), buf
);
3922 else if (*ptr
!= '\0')
3923 warning (_("Target reported unsupported offsets: %s"), buf
);
3925 offs
= ((struct section_offsets
*)
3926 alloca (SIZEOF_N_SECTION_OFFSETS (symfile_objfile
->num_sections
)));
3927 memcpy (offs
, symfile_objfile
->section_offsets
,
3928 SIZEOF_N_SECTION_OFFSETS (symfile_objfile
->num_sections
));
3930 data
= get_symfile_segment_data (symfile_objfile
->obfd
);
3931 do_segments
= (data
!= NULL
);
3932 do_sections
= num_segments
== 0;
3934 if (num_segments
> 0)
3936 segments
[0] = text_addr
;
3937 segments
[1] = data_addr
;
3939 /* If we have two segments, we can still try to relocate everything
3940 by assuming that the .text and .data offsets apply to the whole
3941 text and data segments. Convert the offsets given in the packet
3942 to base addresses for symfile_map_offsets_to_segments. */
3943 else if (data
&& data
->num_segments
== 2)
3945 segments
[0] = data
->segment_bases
[0] + text_addr
;
3946 segments
[1] = data
->segment_bases
[1] + data_addr
;
3949 /* If the object file has only one segment, assume that it is text
3950 rather than data; main programs with no writable data are rare,
3951 but programs with no code are useless. Of course the code might
3952 have ended up in the data segment... to detect that we would need
3953 the permissions here. */
3954 else if (data
&& data
->num_segments
== 1)
3956 segments
[0] = data
->segment_bases
[0] + text_addr
;
3959 /* There's no way to relocate by segment. */
3965 int ret
= symfile_map_offsets_to_segments (symfile_objfile
->obfd
, data
,
3966 offs
, num_segments
, segments
);
3968 if (ret
== 0 && !do_sections
)
3969 error (_("Can not handle qOffsets TextSeg "
3970 "response with this symbol file"));
3977 free_symfile_segment_data (data
);
3981 offs
->offsets
[SECT_OFF_TEXT (symfile_objfile
)] = text_addr
;
3983 /* This is a temporary kludge to force data and bss to use the
3984 same offsets because that's what nlmconv does now. The real
3985 solution requires changes to the stub and remote.c that I
3986 don't have time to do right now. */
3988 offs
->offsets
[SECT_OFF_DATA (symfile_objfile
)] = data_addr
;
3989 offs
->offsets
[SECT_OFF_BSS (symfile_objfile
)] = data_addr
;
3992 objfile_relocate (symfile_objfile
, offs
);
3995 /* Send interrupt_sequence to remote target. */
3997 send_interrupt_sequence (void)
3999 struct remote_state
*rs
= get_remote_state ();
4001 if (interrupt_sequence_mode
== interrupt_sequence_control_c
)
4002 remote_serial_write ("\x03", 1);
4003 else if (interrupt_sequence_mode
== interrupt_sequence_break
)
4004 serial_send_break (rs
->remote_desc
);
4005 else if (interrupt_sequence_mode
== interrupt_sequence_break_g
)
4007 serial_send_break (rs
->remote_desc
);
4008 remote_serial_write ("g", 1);
4011 internal_error (__FILE__
, __LINE__
,
4012 _("Invalid value for interrupt_sequence_mode: %s."),
4013 interrupt_sequence_mode
);
4017 /* If STOP_REPLY is a T stop reply, look for the "thread" register,
4018 and extract the PTID. Returns NULL_PTID if not found. */
4021 stop_reply_extract_thread (char *stop_reply
)
4023 if (stop_reply
[0] == 'T' && strlen (stop_reply
) > 3)
4027 /* Txx r:val ; r:val (...) */
4030 /* Look for "register" named "thread". */
4035 p1
= strchr (p
, ':');
4039 if (strncmp (p
, "thread", p1
- p
) == 0)
4040 return read_ptid (++p1
, &p
);
4042 p1
= strchr (p
, ';');
4054 /* Determine the remote side's current thread. If we have a stop
4055 reply handy (in WAIT_STATUS), maybe it's a T stop reply with a
4056 "thread" register we can extract the current thread from. If not,
4057 ask the remote which is the current thread with qC. The former
4058 method avoids a roundtrip. */
4061 get_current_thread (char *wait_status
)
4063 ptid_t ptid
= null_ptid
;
4065 /* Note we don't use remote_parse_stop_reply as that makes use of
4066 the target architecture, which we haven't yet fully determined at
4068 if (wait_status
!= NULL
)
4069 ptid
= stop_reply_extract_thread (wait_status
);
4070 if (ptid_equal (ptid
, null_ptid
))
4071 ptid
= remote_current_thread (inferior_ptid
);
4076 /* Query the remote target for which is the current thread/process,
4077 add it to our tables, and update INFERIOR_PTID. The caller is
4078 responsible for setting the state such that the remote end is ready
4079 to return the current thread.
4081 This function is called after handling the '?' or 'vRun' packets,
4082 whose response is a stop reply from which we can also try
4083 extracting the thread. If the target doesn't support the explicit
4084 qC query, we infer the current thread from that stop reply, passed
4085 in in WAIT_STATUS, which may be NULL. */
4088 add_current_inferior_and_thread (char *wait_status
)
4090 struct remote_state
*rs
= get_remote_state ();
4093 inferior_ptid
= null_ptid
;
4095 /* Now, if we have thread information, update inferior_ptid. */
4096 ptid_t curr_ptid
= get_current_thread (wait_status
);
4098 if (curr_ptid
!= null_ptid
)
4100 if (!remote_multi_process_p (rs
))
4105 /* Without this, some commands which require an active target
4106 (such as kill) won't work. This variable serves (at least)
4107 double duty as both the pid of the target process (if it has
4108 such), and as a flag indicating that a target is active. */
4109 curr_ptid
= magic_null_ptid
;
4113 remote_add_inferior (fake_pid_p
, ptid_get_pid (curr_ptid
), -1, 1);
4115 /* Add the main thread and switch to it. Don't try reading
4116 registers yet, since we haven't fetched the target description
4118 thread_info
*tp
= add_thread_silent (curr_ptid
);
4119 switch_to_thread_no_regs (tp
);
4122 /* Print info about a thread that was found already stopped on
4126 print_one_stopped_thread (struct thread_info
*thread
)
4128 struct target_waitstatus
*ws
= &thread
->suspend
.waitstatus
;
4130 switch_to_thread (thread
->ptid
);
4131 stop_pc
= get_frame_pc (get_current_frame ());
4132 set_current_sal_from_frame (get_current_frame ());
4134 thread
->suspend
.waitstatus_pending_p
= 0;
4136 if (ws
->kind
== TARGET_WAITKIND_STOPPED
)
4138 enum gdb_signal sig
= ws
->value
.sig
;
4140 if (signal_print_state (sig
))
4141 gdb::observers::signal_received
.notify (sig
);
4143 gdb::observers::normal_stop
.notify (NULL
, 1);
4146 /* Process all initial stop replies the remote side sent in response
4147 to the ? packet. These indicate threads that were already stopped
4148 on initial connection. We mark these threads as stopped and print
4149 their current frame before giving the user the prompt. */
4152 process_initial_stop_replies (int from_tty
)
4154 int pending_stop_replies
= stop_reply_queue_length ();
4155 struct inferior
*inf
;
4156 struct thread_info
*thread
;
4157 struct thread_info
*selected
= NULL
;
4158 struct thread_info
*lowest_stopped
= NULL
;
4159 struct thread_info
*first
= NULL
;
4161 /* Consume the initial pending events. */
4162 while (pending_stop_replies
-- > 0)
4164 ptid_t waiton_ptid
= minus_one_ptid
;
4166 struct target_waitstatus ws
;
4167 int ignore_event
= 0;
4168 struct thread_info
*thread
;
4170 memset (&ws
, 0, sizeof (ws
));
4171 event_ptid
= target_wait (waiton_ptid
, &ws
, TARGET_WNOHANG
);
4173 print_target_wait_results (waiton_ptid
, event_ptid
, &ws
);
4177 case TARGET_WAITKIND_IGNORE
:
4178 case TARGET_WAITKIND_NO_RESUMED
:
4179 case TARGET_WAITKIND_SIGNALLED
:
4180 case TARGET_WAITKIND_EXITED
:
4181 /* We shouldn't see these, but if we do, just ignore. */
4183 fprintf_unfiltered (gdb_stdlog
, "remote: event ignored\n");
4187 case TARGET_WAITKIND_EXECD
:
4188 xfree (ws
.value
.execd_pathname
);
4197 thread
= find_thread_ptid (event_ptid
);
4199 if (ws
.kind
== TARGET_WAITKIND_STOPPED
)
4201 enum gdb_signal sig
= ws
.value
.sig
;
4203 /* Stubs traditionally report SIGTRAP as initial signal,
4204 instead of signal 0. Suppress it. */
4205 if (sig
== GDB_SIGNAL_TRAP
)
4207 thread
->suspend
.stop_signal
= sig
;
4211 thread
->suspend
.waitstatus
= ws
;
4213 if (ws
.kind
!= TARGET_WAITKIND_STOPPED
4214 || ws
.value
.sig
!= GDB_SIGNAL_0
)
4215 thread
->suspend
.waitstatus_pending_p
= 1;
4217 set_executing (event_ptid
, 0);
4218 set_running (event_ptid
, 0);
4219 get_remote_thread_info (thread
)->vcont_resumed
= 0;
4222 /* "Notice" the new inferiors before anything related to
4223 registers/memory. */
4229 inf
->needs_setup
= 1;
4233 thread
= any_live_thread_of_process (inf
->pid
);
4234 notice_new_inferior (thread
->ptid
,
4235 thread
->state
== THREAD_RUNNING
,
4240 /* If all-stop on top of non-stop, pause all threads. Note this
4241 records the threads' stop pc, so must be done after "noticing"
4245 stop_all_threads ();
4247 /* If all threads of an inferior were already stopped, we
4248 haven't setup the inferior yet. */
4254 if (inf
->needs_setup
)
4256 thread
= any_live_thread_of_process (inf
->pid
);
4257 switch_to_thread_no_regs (thread
);
4263 /* Now go over all threads that are stopped, and print their current
4264 frame. If all-stop, then if there's a signalled thread, pick
4266 ALL_NON_EXITED_THREADS (thread
)
4272 set_running (thread
->ptid
, 0);
4273 else if (thread
->state
!= THREAD_STOPPED
)
4276 if (selected
== NULL
4277 && thread
->suspend
.waitstatus_pending_p
)
4280 if (lowest_stopped
== NULL
4281 || thread
->inf
->num
< lowest_stopped
->inf
->num
4282 || thread
->per_inf_num
< lowest_stopped
->per_inf_num
)
4283 lowest_stopped
= thread
;
4286 print_one_stopped_thread (thread
);
4289 /* In all-stop, we only print the status of one thread, and leave
4290 others with their status pending. */
4295 thread
= lowest_stopped
;
4299 print_one_stopped_thread (thread
);
4302 /* For "info program". */
4303 thread
= inferior_thread ();
4304 if (thread
->state
== THREAD_STOPPED
)
4305 set_last_target_status (inferior_ptid
, thread
->suspend
.waitstatus
);
4308 /* Start the remote connection and sync state. */
4311 remote_target::start_remote (int from_tty
, int extended_p
)
4313 struct remote_state
*rs
= get_remote_state ();
4314 struct packet_config
*noack_config
;
4315 char *wait_status
= NULL
;
4317 /* Signal other parts that we're going through the initial setup,
4318 and so things may not be stable yet. E.g., we don't try to
4319 install tracepoints until we've relocated symbols. Also, a
4320 Ctrl-C before we're connected and synced up can't interrupt the
4321 target. Instead, it offers to drop the (potentially wedged)
4323 rs
->starting_up
= 1;
4327 if (interrupt_on_connect
)
4328 send_interrupt_sequence ();
4330 /* Ack any packet which the remote side has already sent. */
4331 remote_serial_write ("+", 1);
4333 /* The first packet we send to the target is the optional "supported
4334 packets" request. If the target can answer this, it will tell us
4335 which later probes to skip. */
4336 remote_query_supported ();
4338 /* If the stub wants to get a QAllow, compose one and send it. */
4339 if (packet_support (PACKET_QAllow
) != PACKET_DISABLE
)
4342 /* gdbserver < 7.7 (before its fix from 2013-12-11) did reply to any
4343 unknown 'v' packet with string "OK". "OK" gets interpreted by GDB
4344 as a reply to known packet. For packet "vFile:setfs:" it is an
4345 invalid reply and GDB would return error in
4346 remote_hostio_set_filesystem, making remote files access impossible.
4347 Disable "vFile:setfs:" in such case. Do not disable other 'v' packets as
4348 other "vFile" packets get correctly detected even on gdbserver < 7.7. */
4350 const char v_mustreplyempty
[] = "vMustReplyEmpty";
4352 putpkt (v_mustreplyempty
);
4353 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
4354 if (strcmp (rs
->buf
, "OK") == 0)
4355 remote_protocol_packets
[PACKET_vFile_setfs
].support
= PACKET_DISABLE
;
4356 else if (strcmp (rs
->buf
, "") != 0)
4357 error (_("Remote replied unexpectedly to '%s': %s"), v_mustreplyempty
,
4361 /* Next, we possibly activate noack mode.
4363 If the QStartNoAckMode packet configuration is set to AUTO,
4364 enable noack mode if the stub reported a wish for it with
4367 If set to TRUE, then enable noack mode even if the stub didn't
4368 report it in qSupported. If the stub doesn't reply OK, the
4369 session ends with an error.
4371 If FALSE, then don't activate noack mode, regardless of what the
4372 stub claimed should be the default with qSupported. */
4374 noack_config
= &remote_protocol_packets
[PACKET_QStartNoAckMode
];
4375 if (packet_config_support (noack_config
) != PACKET_DISABLE
)
4377 putpkt ("QStartNoAckMode");
4378 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
4379 if (packet_ok (rs
->buf
, noack_config
) == PACKET_OK
)
4385 /* Tell the remote that we are using the extended protocol. */
4387 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
4390 /* Let the target know which signals it is allowed to pass down to
4392 update_signals_program_target ();
4394 /* Next, if the target can specify a description, read it. We do
4395 this before anything involving memory or registers. */
4396 target_find_description ();
4398 /* Next, now that we know something about the target, update the
4399 address spaces in the program spaces. */
4400 update_address_spaces ();
4402 /* On OSs where the list of libraries is global to all
4403 processes, we fetch them early. */
4404 if (gdbarch_has_global_solist (target_gdbarch ()))
4405 solib_add (NULL
, from_tty
, auto_solib_add
);
4407 if (target_is_non_stop_p ())
4409 if (packet_support (PACKET_QNonStop
) != PACKET_ENABLE
)
4410 error (_("Non-stop mode requested, but remote "
4411 "does not support non-stop"));
4413 putpkt ("QNonStop:1");
4414 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
4416 if (strcmp (rs
->buf
, "OK") != 0)
4417 error (_("Remote refused setting non-stop mode with: %s"), rs
->buf
);
4419 /* Find about threads and processes the stub is already
4420 controlling. We default to adding them in the running state.
4421 The '?' query below will then tell us about which threads are
4423 this->update_thread_list ();
4425 else if (packet_support (PACKET_QNonStop
) == PACKET_ENABLE
)
4427 /* Don't assume that the stub can operate in all-stop mode.
4428 Request it explicitly. */
4429 putpkt ("QNonStop:0");
4430 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
4432 if (strcmp (rs
->buf
, "OK") != 0)
4433 error (_("Remote refused setting all-stop mode with: %s"), rs
->buf
);
4436 /* Upload TSVs regardless of whether the target is running or not. The
4437 remote stub, such as GDBserver, may have some predefined or builtin
4438 TSVs, even if the target is not running. */
4439 if (get_trace_status (current_trace_status ()) != -1)
4441 struct uploaded_tsv
*uploaded_tsvs
= NULL
;
4443 upload_trace_state_variables (&uploaded_tsvs
);
4444 merge_uploaded_trace_state_variables (&uploaded_tsvs
);
4447 /* Check whether the target is running now. */
4449 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
4451 if (!target_is_non_stop_p ())
4453 if (rs
->buf
[0] == 'W' || rs
->buf
[0] == 'X')
4456 error (_("The target is not running (try extended-remote?)"));
4458 /* We're connected, but not running. Drop out before we
4459 call start_remote. */
4460 rs
->starting_up
= 0;
4465 /* Save the reply for later. */
4466 wait_status
= (char *) alloca (strlen (rs
->buf
) + 1);
4467 strcpy (wait_status
, rs
->buf
);
4470 /* Fetch thread list. */
4471 target_update_thread_list ();
4473 /* Let the stub know that we want it to return the thread. */
4474 set_continue_thread (minus_one_ptid
);
4476 if (thread_count () == 0)
4478 /* Target has no concept of threads at all. GDB treats
4479 non-threaded target as single-threaded; add a main
4481 add_current_inferior_and_thread (wait_status
);
4485 /* We have thread information; select the thread the target
4486 says should be current. If we're reconnecting to a
4487 multi-threaded program, this will ideally be the thread
4488 that last reported an event before GDB disconnected. */
4489 inferior_ptid
= get_current_thread (wait_status
);
4490 if (ptid_equal (inferior_ptid
, null_ptid
))
4492 /* Odd... The target was able to list threads, but not
4493 tell us which thread was current (no "thread"
4494 register in T stop reply?). Just pick the first
4495 thread in the thread list then. */
4498 fprintf_unfiltered (gdb_stdlog
,
4499 "warning: couldn't determine remote "
4500 "current thread; picking first in list.\n");
4502 inferior_ptid
= thread_list
->ptid
;
4506 /* init_wait_for_inferior should be called before get_offsets in order
4507 to manage `inserted' flag in bp loc in a correct state.
4508 breakpoint_init_inferior, called from init_wait_for_inferior, set
4509 `inserted' flag to 0, while before breakpoint_re_set, called from
4510 start_remote, set `inserted' flag to 1. In the initialization of
4511 inferior, breakpoint_init_inferior should be called first, and then
4512 breakpoint_re_set can be called. If this order is broken, state of
4513 `inserted' flag is wrong, and cause some problems on breakpoint
4515 init_wait_for_inferior ();
4517 get_offsets (); /* Get text, data & bss offsets. */
4519 /* If we could not find a description using qXfer, and we know
4520 how to do it some other way, try again. This is not
4521 supported for non-stop; it could be, but it is tricky if
4522 there are no stopped threads when we connect. */
4523 if (remote_read_description_p (this)
4524 && gdbarch_target_desc (target_gdbarch ()) == NULL
)
4526 target_clear_description ();
4527 target_find_description ();
4530 /* Use the previously fetched status. */
4531 gdb_assert (wait_status
!= NULL
);
4532 strcpy (rs
->buf
, wait_status
);
4533 rs
->cached_wait_status
= 1;
4535 ::start_remote (from_tty
); /* Initialize gdb process mechanisms. */
4539 /* Clear WFI global state. Do this before finding about new
4540 threads and inferiors, and setting the current inferior.
4541 Otherwise we would clear the proceed status of the current
4542 inferior when we want its stop_soon state to be preserved
4543 (see notice_new_inferior). */
4544 init_wait_for_inferior ();
4546 /* In non-stop, we will either get an "OK", meaning that there
4547 are no stopped threads at this time; or, a regular stop
4548 reply. In the latter case, there may be more than one thread
4549 stopped --- we pull them all out using the vStopped
4551 if (strcmp (rs
->buf
, "OK") != 0)
4553 struct notif_client
*notif
= ¬if_client_stop
;
4555 /* remote_notif_get_pending_replies acks this one, and gets
4557 rs
->notif_state
->pending_event
[notif_client_stop
.id
]
4558 = remote_notif_parse (notif
, rs
->buf
);
4559 remote_notif_get_pending_events (notif
);
4562 if (thread_count () == 0)
4565 error (_("The target is not running (try extended-remote?)"));
4567 /* We're connected, but not running. Drop out before we
4568 call start_remote. */
4569 rs
->starting_up
= 0;
4573 /* In non-stop mode, any cached wait status will be stored in
4574 the stop reply queue. */
4575 gdb_assert (wait_status
== NULL
);
4577 /* Report all signals during attach/startup. */
4578 pass_signals (0, NULL
);
4580 /* If there are already stopped threads, mark them stopped and
4581 report their stops before giving the prompt to the user. */
4582 process_initial_stop_replies (from_tty
);
4584 if (target_can_async_p ())
4588 /* If we connected to a live target, do some additional setup. */
4589 if (target_has_execution
)
4591 if (symfile_objfile
) /* No use without a symbol-file. */
4592 remote_check_symbols ();
4595 /* Possibly the target has been engaged in a trace run started
4596 previously; find out where things are at. */
4597 if (get_trace_status (current_trace_status ()) != -1)
4599 struct uploaded_tp
*uploaded_tps
= NULL
;
4601 if (current_trace_status ()->running
)
4602 printf_filtered (_("Trace is already running on the target.\n"));
4604 upload_tracepoints (&uploaded_tps
);
4606 merge_uploaded_tracepoints (&uploaded_tps
);
4609 /* Possibly the target has been engaged in a btrace record started
4610 previously; find out where things are at. */
4611 remote_btrace_maybe_reopen ();
4613 /* The thread and inferior lists are now synchronized with the
4614 target, our symbols have been relocated, and we're merged the
4615 target's tracepoints with ours. We're done with basic start
4617 rs
->starting_up
= 0;
4619 /* Maybe breakpoints are global and need to be inserted now. */
4620 if (breakpoints_should_be_inserted_now ())
4621 insert_breakpoints ();
4624 /* Open a connection to a remote debugger.
4625 NAME is the filename used for communication. */
4628 remote_target::open (const char *name
, int from_tty
)
4630 open_1 (name
, from_tty
, 0);
4633 /* Open a connection to a remote debugger using the extended
4634 remote gdb protocol. NAME is the filename used for communication. */
4637 extended_remote_target::open (const char *name
, int from_tty
)
4639 open_1 (name
, from_tty
, 1 /*extended_p */);
4642 /* Reset all packets back to "unknown support". Called when opening a
4643 new connection to a remote target. */
4646 reset_all_packet_configs_support (void)
4650 for (i
= 0; i
< PACKET_MAX
; i
++)
4651 remote_protocol_packets
[i
].support
= PACKET_SUPPORT_UNKNOWN
;
4654 /* Initialize all packet configs. */
4657 init_all_packet_configs (void)
4661 for (i
= 0; i
< PACKET_MAX
; i
++)
4663 remote_protocol_packets
[i
].detect
= AUTO_BOOLEAN_AUTO
;
4664 remote_protocol_packets
[i
].support
= PACKET_SUPPORT_UNKNOWN
;
4668 /* Symbol look-up. */
4671 remote_check_symbols (void)
4673 char *msg
, *reply
, *tmp
;
4676 struct cleanup
*old_chain
;
4678 /* The remote side has no concept of inferiors that aren't running
4679 yet, it only knows about running processes. If we're connected
4680 but our current inferior is not running, we should not invite the
4681 remote target to request symbol lookups related to its
4682 (unrelated) current process. */
4683 if (!target_has_execution
)
4686 if (packet_support (PACKET_qSymbol
) == PACKET_DISABLE
)
4689 /* Make sure the remote is pointing at the right process. Note
4690 there's no way to select "no process". */
4691 set_general_process ();
4693 /* Allocate a message buffer. We can't reuse the input buffer in RS,
4694 because we need both at the same time. */
4695 msg
= (char *) xmalloc (get_remote_packet_size ());
4696 old_chain
= make_cleanup (xfree
, msg
);
4697 reply
= (char *) xmalloc (get_remote_packet_size ());
4698 make_cleanup (free_current_contents
, &reply
);
4699 reply_size
= get_remote_packet_size ();
4701 /* Invite target to request symbol lookups. */
4703 putpkt ("qSymbol::");
4704 getpkt (&reply
, &reply_size
, 0);
4705 packet_ok (reply
, &remote_protocol_packets
[PACKET_qSymbol
]);
4707 while (startswith (reply
, "qSymbol:"))
4709 struct bound_minimal_symbol sym
;
4712 end
= hex2bin (tmp
, (gdb_byte
*) msg
, strlen (tmp
) / 2);
4714 sym
= lookup_minimal_symbol (msg
, NULL
, NULL
);
4715 if (sym
.minsym
== NULL
)
4716 xsnprintf (msg
, get_remote_packet_size (), "qSymbol::%s", &reply
[8]);
4719 int addr_size
= gdbarch_addr_bit (target_gdbarch ()) / 8;
4720 CORE_ADDR sym_addr
= BMSYMBOL_VALUE_ADDRESS (sym
);
4722 /* If this is a function address, return the start of code
4723 instead of any data function descriptor. */
4724 sym_addr
= gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
4728 xsnprintf (msg
, get_remote_packet_size (), "qSymbol:%s:%s",
4729 phex_nz (sym_addr
, addr_size
), &reply
[8]);
4733 getpkt (&reply
, &reply_size
, 0);
4736 do_cleanups (old_chain
);
4739 static struct serial
*
4740 remote_serial_open (const char *name
)
4742 static int udp_warning
= 0;
4744 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
4745 of in ser-tcp.c, because it is the remote protocol assuming that the
4746 serial connection is reliable and not the serial connection promising
4748 if (!udp_warning
&& startswith (name
, "udp:"))
4750 warning (_("The remote protocol may be unreliable over UDP.\n"
4751 "Some events may be lost, rendering further debugging "
4756 return serial_open (name
);
4759 /* Inform the target of our permission settings. The permission flags
4760 work without this, but if the target knows the settings, it can do
4761 a couple things. First, it can add its own check, to catch cases
4762 that somehow manage to get by the permissions checks in target
4763 methods. Second, if the target is wired to disallow particular
4764 settings (for instance, a system in the field that is not set up to
4765 be able to stop at a breakpoint), it can object to any unavailable
4769 remote_target::set_permissions ()
4771 struct remote_state
*rs
= get_remote_state ();
4773 xsnprintf (rs
->buf
, get_remote_packet_size (), "QAllow:"
4774 "WriteReg:%x;WriteMem:%x;"
4775 "InsertBreak:%x;InsertTrace:%x;"
4776 "InsertFastTrace:%x;Stop:%x",
4777 may_write_registers
, may_write_memory
,
4778 may_insert_breakpoints
, may_insert_tracepoints
,
4779 may_insert_fast_tracepoints
, may_stop
);
4781 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
4783 /* If the target didn't like the packet, warn the user. Do not try
4784 to undo the user's settings, that would just be maddening. */
4785 if (strcmp (rs
->buf
, "OK") != 0)
4786 warning (_("Remote refused setting permissions with: %s"), rs
->buf
);
4789 /* This type describes each known response to the qSupported
4791 struct protocol_feature
4793 /* The name of this protocol feature. */
4796 /* The default for this protocol feature. */
4797 enum packet_support default_support
;
4799 /* The function to call when this feature is reported, or after
4800 qSupported processing if the feature is not supported.
4801 The first argument points to this structure. The second
4802 argument indicates whether the packet requested support be
4803 enabled, disabled, or probed (or the default, if this function
4804 is being called at the end of processing and this feature was
4805 not reported). The third argument may be NULL; if not NULL, it
4806 is a NUL-terminated string taken from the packet following
4807 this feature's name and an equals sign. */
4808 void (*func
) (const struct protocol_feature
*, enum packet_support
,
4811 /* The corresponding packet for this feature. Only used if
4812 FUNC is remote_supported_packet. */
4817 remote_supported_packet (const struct protocol_feature
*feature
,
4818 enum packet_support support
,
4819 const char *argument
)
4823 warning (_("Remote qSupported response supplied an unexpected value for"
4824 " \"%s\"."), feature
->name
);
4828 remote_protocol_packets
[feature
->packet
].support
= support
;
4832 remote_packet_size (const struct protocol_feature
*feature
,
4833 enum packet_support support
, const char *value
)
4835 struct remote_state
*rs
= get_remote_state ();
4840 if (support
!= PACKET_ENABLE
)
4843 if (value
== NULL
|| *value
== '\0')
4845 warning (_("Remote target reported \"%s\" without a size."),
4851 packet_size
= strtol (value
, &value_end
, 16);
4852 if (errno
!= 0 || *value_end
!= '\0' || packet_size
< 0)
4854 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
4855 feature
->name
, value
);
4859 /* Record the new maximum packet size. */
4860 rs
->explicit_packet_size
= packet_size
;
4863 static const struct protocol_feature remote_protocol_features
[] = {
4864 { "PacketSize", PACKET_DISABLE
, remote_packet_size
, -1 },
4865 { "qXfer:auxv:read", PACKET_DISABLE
, remote_supported_packet
,
4866 PACKET_qXfer_auxv
},
4867 { "qXfer:exec-file:read", PACKET_DISABLE
, remote_supported_packet
,
4868 PACKET_qXfer_exec_file
},
4869 { "qXfer:features:read", PACKET_DISABLE
, remote_supported_packet
,
4870 PACKET_qXfer_features
},
4871 { "qXfer:libraries:read", PACKET_DISABLE
, remote_supported_packet
,
4872 PACKET_qXfer_libraries
},
4873 { "qXfer:libraries-svr4:read", PACKET_DISABLE
, remote_supported_packet
,
4874 PACKET_qXfer_libraries_svr4
},
4875 { "augmented-libraries-svr4-read", PACKET_DISABLE
,
4876 remote_supported_packet
, PACKET_augmented_libraries_svr4_read_feature
},
4877 { "qXfer:memory-map:read", PACKET_DISABLE
, remote_supported_packet
,
4878 PACKET_qXfer_memory_map
},
4879 { "qXfer:spu:read", PACKET_DISABLE
, remote_supported_packet
,
4880 PACKET_qXfer_spu_read
},
4881 { "qXfer:spu:write", PACKET_DISABLE
, remote_supported_packet
,
4882 PACKET_qXfer_spu_write
},
4883 { "qXfer:osdata:read", PACKET_DISABLE
, remote_supported_packet
,
4884 PACKET_qXfer_osdata
},
4885 { "qXfer:threads:read", PACKET_DISABLE
, remote_supported_packet
,
4886 PACKET_qXfer_threads
},
4887 { "qXfer:traceframe-info:read", PACKET_DISABLE
, remote_supported_packet
,
4888 PACKET_qXfer_traceframe_info
},
4889 { "QPassSignals", PACKET_DISABLE
, remote_supported_packet
,
4890 PACKET_QPassSignals
},
4891 { "QCatchSyscalls", PACKET_DISABLE
, remote_supported_packet
,
4892 PACKET_QCatchSyscalls
},
4893 { "QProgramSignals", PACKET_DISABLE
, remote_supported_packet
,
4894 PACKET_QProgramSignals
},
4895 { "QSetWorkingDir", PACKET_DISABLE
, remote_supported_packet
,
4896 PACKET_QSetWorkingDir
},
4897 { "QStartupWithShell", PACKET_DISABLE
, remote_supported_packet
,
4898 PACKET_QStartupWithShell
},
4899 { "QEnvironmentHexEncoded", PACKET_DISABLE
, remote_supported_packet
,
4900 PACKET_QEnvironmentHexEncoded
},
4901 { "QEnvironmentReset", PACKET_DISABLE
, remote_supported_packet
,
4902 PACKET_QEnvironmentReset
},
4903 { "QEnvironmentUnset", PACKET_DISABLE
, remote_supported_packet
,
4904 PACKET_QEnvironmentUnset
},
4905 { "QStartNoAckMode", PACKET_DISABLE
, remote_supported_packet
,
4906 PACKET_QStartNoAckMode
},
4907 { "multiprocess", PACKET_DISABLE
, remote_supported_packet
,
4908 PACKET_multiprocess_feature
},
4909 { "QNonStop", PACKET_DISABLE
, remote_supported_packet
, PACKET_QNonStop
},
4910 { "qXfer:siginfo:read", PACKET_DISABLE
, remote_supported_packet
,
4911 PACKET_qXfer_siginfo_read
},
4912 { "qXfer:siginfo:write", PACKET_DISABLE
, remote_supported_packet
,
4913 PACKET_qXfer_siginfo_write
},
4914 { "ConditionalTracepoints", PACKET_DISABLE
, remote_supported_packet
,
4915 PACKET_ConditionalTracepoints
},
4916 { "ConditionalBreakpoints", PACKET_DISABLE
, remote_supported_packet
,
4917 PACKET_ConditionalBreakpoints
},
4918 { "BreakpointCommands", PACKET_DISABLE
, remote_supported_packet
,
4919 PACKET_BreakpointCommands
},
4920 { "FastTracepoints", PACKET_DISABLE
, remote_supported_packet
,
4921 PACKET_FastTracepoints
},
4922 { "StaticTracepoints", PACKET_DISABLE
, remote_supported_packet
,
4923 PACKET_StaticTracepoints
},
4924 {"InstallInTrace", PACKET_DISABLE
, remote_supported_packet
,
4925 PACKET_InstallInTrace
},
4926 { "DisconnectedTracing", PACKET_DISABLE
, remote_supported_packet
,
4927 PACKET_DisconnectedTracing_feature
},
4928 { "ReverseContinue", PACKET_DISABLE
, remote_supported_packet
,
4930 { "ReverseStep", PACKET_DISABLE
, remote_supported_packet
,
4932 { "TracepointSource", PACKET_DISABLE
, remote_supported_packet
,
4933 PACKET_TracepointSource
},
4934 { "QAllow", PACKET_DISABLE
, remote_supported_packet
,
4936 { "EnableDisableTracepoints", PACKET_DISABLE
, remote_supported_packet
,
4937 PACKET_EnableDisableTracepoints_feature
},
4938 { "qXfer:fdpic:read", PACKET_DISABLE
, remote_supported_packet
,
4939 PACKET_qXfer_fdpic
},
4940 { "qXfer:uib:read", PACKET_DISABLE
, remote_supported_packet
,
4942 { "QDisableRandomization", PACKET_DISABLE
, remote_supported_packet
,
4943 PACKET_QDisableRandomization
},
4944 { "QAgent", PACKET_DISABLE
, remote_supported_packet
, PACKET_QAgent
},
4945 { "QTBuffer:size", PACKET_DISABLE
,
4946 remote_supported_packet
, PACKET_QTBuffer_size
},
4947 { "tracenz", PACKET_DISABLE
, remote_supported_packet
, PACKET_tracenz_feature
},
4948 { "Qbtrace:off", PACKET_DISABLE
, remote_supported_packet
, PACKET_Qbtrace_off
},
4949 { "Qbtrace:bts", PACKET_DISABLE
, remote_supported_packet
, PACKET_Qbtrace_bts
},
4950 { "Qbtrace:pt", PACKET_DISABLE
, remote_supported_packet
, PACKET_Qbtrace_pt
},
4951 { "qXfer:btrace:read", PACKET_DISABLE
, remote_supported_packet
,
4952 PACKET_qXfer_btrace
},
4953 { "qXfer:btrace-conf:read", PACKET_DISABLE
, remote_supported_packet
,
4954 PACKET_qXfer_btrace_conf
},
4955 { "Qbtrace-conf:bts:size", PACKET_DISABLE
, remote_supported_packet
,
4956 PACKET_Qbtrace_conf_bts_size
},
4957 { "swbreak", PACKET_DISABLE
, remote_supported_packet
, PACKET_swbreak_feature
},
4958 { "hwbreak", PACKET_DISABLE
, remote_supported_packet
, PACKET_hwbreak_feature
},
4959 { "fork-events", PACKET_DISABLE
, remote_supported_packet
,
4960 PACKET_fork_event_feature
},
4961 { "vfork-events", PACKET_DISABLE
, remote_supported_packet
,
4962 PACKET_vfork_event_feature
},
4963 { "exec-events", PACKET_DISABLE
, remote_supported_packet
,
4964 PACKET_exec_event_feature
},
4965 { "Qbtrace-conf:pt:size", PACKET_DISABLE
, remote_supported_packet
,
4966 PACKET_Qbtrace_conf_pt_size
},
4967 { "vContSupported", PACKET_DISABLE
, remote_supported_packet
, PACKET_vContSupported
},
4968 { "QThreadEvents", PACKET_DISABLE
, remote_supported_packet
, PACKET_QThreadEvents
},
4969 { "no-resumed", PACKET_DISABLE
, remote_supported_packet
, PACKET_no_resumed
},
4972 static char *remote_support_xml
;
4974 /* Register string appended to "xmlRegisters=" in qSupported query. */
4977 register_remote_support_xml (const char *xml
)
4979 #if defined(HAVE_LIBEXPAT)
4980 if (remote_support_xml
== NULL
)
4981 remote_support_xml
= concat ("xmlRegisters=", xml
, (char *) NULL
);
4984 char *copy
= xstrdup (remote_support_xml
+ 13);
4985 char *p
= strtok (copy
, ",");
4989 if (strcmp (p
, xml
) == 0)
4996 while ((p
= strtok (NULL
, ",")) != NULL
);
4999 remote_support_xml
= reconcat (remote_support_xml
,
5000 remote_support_xml
, ",", xml
,
5007 remote_query_supported_append (std::string
*msg
, const char *append
)
5011 msg
->append (append
);
5015 remote_query_supported (void)
5017 struct remote_state
*rs
= get_remote_state ();
5020 unsigned char seen
[ARRAY_SIZE (remote_protocol_features
)];
5022 /* The packet support flags are handled differently for this packet
5023 than for most others. We treat an error, a disabled packet, and
5024 an empty response identically: any features which must be reported
5025 to be used will be automatically disabled. An empty buffer
5026 accomplishes this, since that is also the representation for a list
5027 containing no features. */
5030 if (packet_support (PACKET_qSupported
) != PACKET_DISABLE
)
5034 if (packet_set_cmd_state (PACKET_multiprocess_feature
) != AUTO_BOOLEAN_FALSE
)
5035 remote_query_supported_append (&q
, "multiprocess+");
5037 if (packet_set_cmd_state (PACKET_swbreak_feature
) != AUTO_BOOLEAN_FALSE
)
5038 remote_query_supported_append (&q
, "swbreak+");
5039 if (packet_set_cmd_state (PACKET_hwbreak_feature
) != AUTO_BOOLEAN_FALSE
)
5040 remote_query_supported_append (&q
, "hwbreak+");
5042 remote_query_supported_append (&q
, "qRelocInsn+");
5044 if (packet_set_cmd_state (PACKET_fork_event_feature
)
5045 != AUTO_BOOLEAN_FALSE
)
5046 remote_query_supported_append (&q
, "fork-events+");
5047 if (packet_set_cmd_state (PACKET_vfork_event_feature
)
5048 != AUTO_BOOLEAN_FALSE
)
5049 remote_query_supported_append (&q
, "vfork-events+");
5050 if (packet_set_cmd_state (PACKET_exec_event_feature
)
5051 != AUTO_BOOLEAN_FALSE
)
5052 remote_query_supported_append (&q
, "exec-events+");
5054 if (packet_set_cmd_state (PACKET_vContSupported
) != AUTO_BOOLEAN_FALSE
)
5055 remote_query_supported_append (&q
, "vContSupported+");
5057 if (packet_set_cmd_state (PACKET_QThreadEvents
) != AUTO_BOOLEAN_FALSE
)
5058 remote_query_supported_append (&q
, "QThreadEvents+");
5060 if (packet_set_cmd_state (PACKET_no_resumed
) != AUTO_BOOLEAN_FALSE
)
5061 remote_query_supported_append (&q
, "no-resumed+");
5063 /* Keep this one last to work around a gdbserver <= 7.10 bug in
5064 the qSupported:xmlRegisters=i386 handling. */
5065 if (remote_support_xml
!= NULL
5066 && packet_support (PACKET_qXfer_features
) != PACKET_DISABLE
)
5067 remote_query_supported_append (&q
, remote_support_xml
);
5069 q
= "qSupported:" + q
;
5070 putpkt (q
.c_str ());
5072 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
5074 /* If an error occured, warn, but do not return - just reset the
5075 buffer to empty and go on to disable features. */
5076 if (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_qSupported
])
5079 warning (_("Remote failure reply: %s"), rs
->buf
);
5084 memset (seen
, 0, sizeof (seen
));
5089 enum packet_support is_supported
;
5090 char *p
, *end
, *name_end
, *value
;
5092 /* First separate out this item from the rest of the packet. If
5093 there's another item after this, we overwrite the separator
5094 (terminated strings are much easier to work with). */
5096 end
= strchr (p
, ';');
5099 end
= p
+ strlen (p
);
5109 warning (_("empty item in \"qSupported\" response"));
5114 name_end
= strchr (p
, '=');
5117 /* This is a name=value entry. */
5118 is_supported
= PACKET_ENABLE
;
5119 value
= name_end
+ 1;
5128 is_supported
= PACKET_ENABLE
;
5132 is_supported
= PACKET_DISABLE
;
5136 is_supported
= PACKET_SUPPORT_UNKNOWN
;
5140 warning (_("unrecognized item \"%s\" "
5141 "in \"qSupported\" response"), p
);
5147 for (i
= 0; i
< ARRAY_SIZE (remote_protocol_features
); i
++)
5148 if (strcmp (remote_protocol_features
[i
].name
, p
) == 0)
5150 const struct protocol_feature
*feature
;
5153 feature
= &remote_protocol_features
[i
];
5154 feature
->func (feature
, is_supported
, value
);
5159 /* If we increased the packet size, make sure to increase the global
5160 buffer size also. We delay this until after parsing the entire
5161 qSupported packet, because this is the same buffer we were
5163 if (rs
->buf_size
< rs
->explicit_packet_size
)
5165 rs
->buf_size
= rs
->explicit_packet_size
;
5166 rs
->buf
= (char *) xrealloc (rs
->buf
, rs
->buf_size
);
5169 /* Handle the defaults for unmentioned features. */
5170 for (i
= 0; i
< ARRAY_SIZE (remote_protocol_features
); i
++)
5173 const struct protocol_feature
*feature
;
5175 feature
= &remote_protocol_features
[i
];
5176 feature
->func (feature
, feature
->default_support
, NULL
);
5180 /* Serial QUIT handler for the remote serial descriptor.
5182 Defers handling a Ctrl-C until we're done with the current
5183 command/response packet sequence, unless:
5185 - We're setting up the connection. Don't send a remote interrupt
5186 request, as we're not fully synced yet. Quit immediately
5189 - The target has been resumed in the foreground
5190 (target_terminal::is_ours is false) with a synchronous resume
5191 packet, and we're blocked waiting for the stop reply, thus a
5192 Ctrl-C should be immediately sent to the target.
5194 - We get a second Ctrl-C while still within the same serial read or
5195 write. In that case the serial is seemingly wedged --- offer to
5198 - We see a second Ctrl-C without target response, after having
5199 previously interrupted the target. In that case the target/stub
5200 is probably wedged --- offer to quit/disconnect.
5204 remote_serial_quit_handler (void)
5206 struct remote_state
*rs
= get_remote_state ();
5208 if (check_quit_flag ())
5210 /* If we're starting up, we're not fully synced yet. Quit
5212 if (rs
->starting_up
)
5214 else if (rs
->got_ctrlc_during_io
)
5216 if (query (_("The target is not responding to GDB commands.\n"
5217 "Stop debugging it? ")))
5218 remote_unpush_and_throw ();
5220 /* If ^C has already been sent once, offer to disconnect. */
5221 else if (!target_terminal::is_ours () && rs
->ctrlc_pending_p
)
5223 /* All-stop protocol, and blocked waiting for stop reply. Send
5224 an interrupt request. */
5225 else if (!target_terminal::is_ours () && rs
->waiting_for_stop_reply
)
5226 target_interrupt ();
5228 rs
->got_ctrlc_during_io
= 1;
5232 /* Remove any of the remote.c targets from target stack. Upper targets depend
5233 on it so remove them first. */
5236 remote_unpush_target (void)
5238 pop_all_targets_at_and_above (process_stratum
);
5242 remote_unpush_and_throw (void)
5244 remote_unpush_target ();
5245 throw_error (TARGET_CLOSE_ERROR
, _("Disconnected from target."));
5249 remote_target::open_1 (const char *name
, int from_tty
, int extended_p
)
5251 struct remote_state
*rs
= get_remote_state ();
5254 error (_("To open a remote debug connection, you need to specify what\n"
5255 "serial device is attached to the remote system\n"
5256 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
5258 /* See FIXME above. */
5259 if (!target_async_permitted
)
5260 wait_forever_enabled_p
= 1;
5262 /* If we're connected to a running target, target_preopen will kill it.
5263 Ask this question first, before target_preopen has a chance to kill
5265 if (rs
->remote_desc
!= NULL
&& !have_inferiors ())
5268 && !query (_("Already connected to a remote target. Disconnect? ")))
5269 error (_("Still connected."));
5272 /* Here the possibly existing remote target gets unpushed. */
5273 target_preopen (from_tty
);
5275 /* Make sure we send the passed signals list the next time we resume. */
5276 xfree (rs
->last_pass_packet
);
5277 rs
->last_pass_packet
= NULL
;
5279 /* Make sure we send the program signals list the next time we
5281 xfree (rs
->last_program_signals_packet
);
5282 rs
->last_program_signals_packet
= NULL
;
5284 remote_fileio_reset ();
5285 reopen_exec_file ();
5288 rs
->remote_desc
= remote_serial_open (name
);
5289 if (!rs
->remote_desc
)
5290 perror_with_name (name
);
5292 if (baud_rate
!= -1)
5294 if (serial_setbaudrate (rs
->remote_desc
, baud_rate
))
5296 /* The requested speed could not be set. Error out to
5297 top level after closing remote_desc. Take care to
5298 set remote_desc to NULL to avoid closing remote_desc
5300 serial_close (rs
->remote_desc
);
5301 rs
->remote_desc
= NULL
;
5302 perror_with_name (name
);
5306 serial_setparity (rs
->remote_desc
, serial_parity
);
5307 serial_raw (rs
->remote_desc
);
5309 /* If there is something sitting in the buffer we might take it as a
5310 response to a command, which would be bad. */
5311 serial_flush_input (rs
->remote_desc
);
5315 puts_filtered ("Remote debugging using ");
5316 puts_filtered (name
);
5317 puts_filtered ("\n");
5320 remote_target
*target
5321 = extended_p
? &extended_remote_ops
: &remote_ops
;
5322 push_target (target
); /* Switch to using remote target now. */
5324 /* Register extra event sources in the event loop. */
5325 remote_async_inferior_event_token
5326 = create_async_event_handler (remote_async_inferior_event_handler
,
5328 rs
->notif_state
= remote_notif_state_allocate ();
5330 /* Reset the target state; these things will be queried either by
5331 remote_query_supported or as they are needed. */
5332 reset_all_packet_configs_support ();
5333 rs
->cached_wait_status
= 0;
5334 rs
->explicit_packet_size
= 0;
5336 rs
->extended
= extended_p
;
5337 rs
->waiting_for_stop_reply
= 0;
5338 rs
->ctrlc_pending_p
= 0;
5339 rs
->got_ctrlc_during_io
= 0;
5341 rs
->general_thread
= not_sent_ptid
;
5342 rs
->continue_thread
= not_sent_ptid
;
5343 rs
->remote_traceframe_number
= -1;
5345 rs
->last_resume_exec_dir
= EXEC_FORWARD
;
5347 /* Probe for ability to use "ThreadInfo" query, as required. */
5348 rs
->use_threadinfo_query
= 1;
5349 rs
->use_threadextra_query
= 1;
5351 rs
->readahead_cache
.invalidate ();
5353 if (target_async_permitted
)
5355 /* FIXME: cagney/1999-09-23: During the initial connection it is
5356 assumed that the target is already ready and able to respond to
5357 requests. Unfortunately remote_start_remote() eventually calls
5358 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
5359 around this. Eventually a mechanism that allows
5360 wait_for_inferior() to expect/get timeouts will be
5362 wait_forever_enabled_p
= 0;
5365 /* First delete any symbols previously loaded from shared libraries. */
5366 no_shared_libraries (NULL
, 0);
5369 init_thread_list ();
5371 /* Start the remote connection. If error() or QUIT, discard this
5372 target (we'd otherwise be in an inconsistent state) and then
5373 propogate the error on up the exception chain. This ensures that
5374 the caller doesn't stumble along blindly assuming that the
5375 function succeeded. The CLI doesn't have this problem but other
5376 UI's, such as MI do.
5378 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
5379 this function should return an error indication letting the
5380 caller restore the previous state. Unfortunately the command
5381 ``target remote'' is directly wired to this function making that
5382 impossible. On a positive note, the CLI side of this problem has
5383 been fixed - the function set_cmd_context() makes it possible for
5384 all the ``target ....'' commands to share a common callback
5385 function. See cli-dump.c. */
5390 target
->start_remote (from_tty
, extended_p
);
5392 CATCH (ex
, RETURN_MASK_ALL
)
5394 /* Pop the partially set up target - unless something else did
5395 already before throwing the exception. */
5396 if (rs
->remote_desc
!= NULL
)
5397 remote_unpush_target ();
5398 if (target_async_permitted
)
5399 wait_forever_enabled_p
= 1;
5400 throw_exception (ex
);
5405 remote_btrace_reset ();
5407 if (target_async_permitted
)
5408 wait_forever_enabled_p
= 1;
5411 /* Detach the specified process. */
5414 remote_detach_pid (int pid
)
5416 struct remote_state
*rs
= get_remote_state ();
5418 if (remote_multi_process_p (rs
))
5419 xsnprintf (rs
->buf
, get_remote_packet_size (), "D;%x", pid
);
5421 strcpy (rs
->buf
, "D");
5424 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
5426 if (rs
->buf
[0] == 'O' && rs
->buf
[1] == 'K')
5428 else if (rs
->buf
[0] == '\0')
5429 error (_("Remote doesn't know how to detach"));
5431 error (_("Can't detach process."));
5434 /* This detaches a program to which we previously attached, using
5435 inferior_ptid to identify the process. After this is done, GDB
5436 can be used to debug some other program. We better not have left
5437 any breakpoints in the target program or it'll die when it hits
5441 remote_detach_1 (int from_tty
, inferior
*inf
)
5443 int pid
= ptid_get_pid (inferior_ptid
);
5444 struct remote_state
*rs
= get_remote_state ();
5445 struct thread_info
*tp
= find_thread_ptid (inferior_ptid
);
5448 if (!target_has_execution
)
5449 error (_("No process to detach from."));
5451 target_announce_detach (from_tty
);
5453 /* Tell the remote target to detach. */
5454 remote_detach_pid (pid
);
5456 /* Exit only if this is the only active inferior. */
5457 if (from_tty
&& !rs
->extended
&& number_of_live_inferiors () == 1)
5458 puts_filtered (_("Ending remote debugging.\n"));
5460 /* Check to see if we are detaching a fork parent. Note that if we
5461 are detaching a fork child, tp == NULL. */
5462 is_fork_parent
= (tp
!= NULL
5463 && tp
->pending_follow
.kind
== TARGET_WAITKIND_FORKED
);
5465 /* If doing detach-on-fork, we don't mourn, because that will delete
5466 breakpoints that should be available for the followed inferior. */
5467 if (!is_fork_parent
)
5469 /* Save the pid as a string before mourning, since that will
5470 unpush the remote target, and we need the string after. */
5471 std::string infpid
= target_pid_to_str (pid_to_ptid (pid
));
5473 target_mourn_inferior (inferior_ptid
);
5474 if (print_inferior_events
)
5475 printf_unfiltered (_("[Inferior %d (%s) detached]\n"),
5476 inf
->num
, infpid
.c_str ());
5480 inferior_ptid
= null_ptid
;
5481 detach_inferior (pid
);
5486 remote_target::detach (inferior
*inf
, int from_tty
)
5488 remote_detach_1 (from_tty
, inf
);
5492 extended_remote_target::detach (inferior
*inf
, int from_tty
)
5494 remote_detach_1 (from_tty
, inf
);
5497 /* Target follow-fork function for remote targets. On entry, and
5498 at return, the current inferior is the fork parent.
5500 Note that although this is currently only used for extended-remote,
5501 it is named remote_follow_fork in anticipation of using it for the
5502 remote target as well. */
5505 remote_target::follow_fork (int follow_child
, int detach_fork
)
5507 struct remote_state
*rs
= get_remote_state ();
5508 enum target_waitkind kind
= inferior_thread ()->pending_follow
.kind
;
5510 if ((kind
== TARGET_WAITKIND_FORKED
&& remote_fork_event_p (rs
))
5511 || (kind
== TARGET_WAITKIND_VFORKED
&& remote_vfork_event_p (rs
)))
5513 /* When following the parent and detaching the child, we detach
5514 the child here. For the case of following the child and
5515 detaching the parent, the detach is done in the target-
5516 independent follow fork code in infrun.c. We can't use
5517 target_detach when detaching an unfollowed child because
5518 the client side doesn't know anything about the child. */
5519 if (detach_fork
&& !follow_child
)
5521 /* Detach the fork child. */
5525 child_ptid
= inferior_thread ()->pending_follow
.value
.related_pid
;
5526 child_pid
= ptid_get_pid (child_ptid
);
5528 remote_detach_pid (child_pid
);
5534 /* Target follow-exec function for remote targets. Save EXECD_PATHNAME
5535 in the program space of the new inferior. On entry and at return the
5536 current inferior is the exec'ing inferior. INF is the new exec'd
5537 inferior, which may be the same as the exec'ing inferior unless
5538 follow-exec-mode is "new". */
5541 remote_target::follow_exec (struct inferior
*inf
, char *execd_pathname
)
5543 /* We know that this is a target file name, so if it has the "target:"
5544 prefix we strip it off before saving it in the program space. */
5545 if (is_target_filename (execd_pathname
))
5546 execd_pathname
+= strlen (TARGET_SYSROOT_PREFIX
);
5548 set_pspace_remote_exec_file (inf
->pspace
, execd_pathname
);
5551 /* Same as remote_detach, but don't send the "D" packet; just disconnect. */
5554 remote_target::disconnect (const char *args
, int from_tty
)
5557 error (_("Argument given to \"disconnect\" when remotely debugging."));
5559 /* Make sure we unpush even the extended remote targets. Calling
5560 target_mourn_inferior won't unpush, and remote_mourn won't
5561 unpush if there is more than one inferior left. */
5562 unpush_target (this);
5563 generic_mourn_inferior ();
5566 puts_filtered ("Ending remote debugging.\n");
5569 /* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
5570 be chatty about it. */
5573 extended_remote_target::attach (const char *args
, int from_tty
)
5575 struct remote_state
*rs
= get_remote_state ();
5577 char *wait_status
= NULL
;
5579 pid
= parse_pid_to_attach (args
);
5581 /* Remote PID can be freely equal to getpid, do not check it here the same
5582 way as in other targets. */
5584 if (packet_support (PACKET_vAttach
) == PACKET_DISABLE
)
5585 error (_("This target does not support attaching to a process"));
5589 char *exec_file
= get_exec_file (0);
5592 printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file
,
5593 target_pid_to_str (pid_to_ptid (pid
)));
5595 printf_unfiltered (_("Attaching to %s\n"),
5596 target_pid_to_str (pid_to_ptid (pid
)));
5598 gdb_flush (gdb_stdout
);
5601 xsnprintf (rs
->buf
, get_remote_packet_size (), "vAttach;%x", pid
);
5603 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
5605 switch (packet_ok (rs
->buf
,
5606 &remote_protocol_packets
[PACKET_vAttach
]))
5609 if (!target_is_non_stop_p ())
5611 /* Save the reply for later. */
5612 wait_status
= (char *) alloca (strlen (rs
->buf
) + 1);
5613 strcpy (wait_status
, rs
->buf
);
5615 else if (strcmp (rs
->buf
, "OK") != 0)
5616 error (_("Attaching to %s failed with: %s"),
5617 target_pid_to_str (pid_to_ptid (pid
)),
5620 case PACKET_UNKNOWN
:
5621 error (_("This target does not support attaching to a process"));
5623 error (_("Attaching to %s failed"),
5624 target_pid_to_str (pid_to_ptid (pid
)));
5627 set_current_inferior (remote_add_inferior (0, pid
, 1, 0));
5629 inferior_ptid
= pid_to_ptid (pid
);
5631 if (target_is_non_stop_p ())
5633 struct thread_info
*thread
;
5635 /* Get list of threads. */
5636 update_thread_list ();
5638 thread
= first_thread_of_process (pid
);
5640 inferior_ptid
= thread
->ptid
;
5642 inferior_ptid
= pid_to_ptid (pid
);
5644 /* Invalidate our notion of the remote current thread. */
5645 record_currthread (rs
, minus_one_ptid
);
5649 /* Now, if we have thread information, update inferior_ptid. */
5650 inferior_ptid
= remote_current_thread (inferior_ptid
);
5652 /* Add the main thread to the thread list. */
5653 thread_info
*thr
= add_thread_silent (inferior_ptid
);
5654 /* Don't consider the thread stopped until we've processed the
5655 saved stop reply. */
5656 set_executing (thr
->ptid
, true);
5659 /* Next, if the target can specify a description, read it. We do
5660 this before anything involving memory or registers. */
5661 target_find_description ();
5663 if (!target_is_non_stop_p ())
5665 /* Use the previously fetched status. */
5666 gdb_assert (wait_status
!= NULL
);
5668 if (target_can_async_p ())
5670 struct notif_event
*reply
5671 = remote_notif_parse (¬if_client_stop
, wait_status
);
5673 push_stop_reply ((struct stop_reply
*) reply
);
5679 gdb_assert (wait_status
!= NULL
);
5680 strcpy (rs
->buf
, wait_status
);
5681 rs
->cached_wait_status
= 1;
5685 gdb_assert (wait_status
== NULL
);
5688 /* Implementation of the to_post_attach method. */
5691 extended_remote_target::post_attach (int pid
)
5693 /* Get text, data & bss offsets. */
5696 /* In certain cases GDB might not have had the chance to start
5697 symbol lookup up until now. This could happen if the debugged
5698 binary is not using shared libraries, the vsyscall page is not
5699 present (on Linux) and the binary itself hadn't changed since the
5700 debugging process was started. */
5701 if (symfile_objfile
!= NULL
)
5702 remote_check_symbols();
5706 /* Check for the availability of vCont. This function should also check
5710 remote_vcont_probe (struct remote_state
*rs
)
5714 strcpy (rs
->buf
, "vCont?");
5716 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
5719 /* Make sure that the features we assume are supported. */
5720 if (startswith (buf
, "vCont"))
5723 int support_c
, support_C
;
5725 rs
->supports_vCont
.s
= 0;
5726 rs
->supports_vCont
.S
= 0;
5729 rs
->supports_vCont
.t
= 0;
5730 rs
->supports_vCont
.r
= 0;
5731 while (p
&& *p
== ';')
5734 if (*p
== 's' && (*(p
+ 1) == ';' || *(p
+ 1) == 0))
5735 rs
->supports_vCont
.s
= 1;
5736 else if (*p
== 'S' && (*(p
+ 1) == ';' || *(p
+ 1) == 0))
5737 rs
->supports_vCont
.S
= 1;
5738 else if (*p
== 'c' && (*(p
+ 1) == ';' || *(p
+ 1) == 0))
5740 else if (*p
== 'C' && (*(p
+ 1) == ';' || *(p
+ 1) == 0))
5742 else if (*p
== 't' && (*(p
+ 1) == ';' || *(p
+ 1) == 0))
5743 rs
->supports_vCont
.t
= 1;
5744 else if (*p
== 'r' && (*(p
+ 1) == ';' || *(p
+ 1) == 0))
5745 rs
->supports_vCont
.r
= 1;
5747 p
= strchr (p
, ';');
5750 /* If c, and C are not all supported, we can't use vCont. Clearing
5751 BUF will make packet_ok disable the packet. */
5752 if (!support_c
|| !support_C
)
5756 packet_ok (buf
, &remote_protocol_packets
[PACKET_vCont
]);
5759 /* Helper function for building "vCont" resumptions. Write a
5760 resumption to P. ENDP points to one-passed-the-end of the buffer
5761 we're allowed to write to. Returns BUF+CHARACTERS_WRITTEN. The
5762 thread to be resumed is PTID; STEP and SIGGNAL indicate whether the
5763 resumed thread should be single-stepped and/or signalled. If PTID
5764 equals minus_one_ptid, then all threads are resumed; if PTID
5765 represents a process, then all threads of the process are resumed;
5766 the thread to be stepped and/or signalled is given in the global
5770 append_resumption (char *p
, char *endp
,
5771 ptid_t ptid
, int step
, enum gdb_signal siggnal
)
5773 struct remote_state
*rs
= get_remote_state ();
5775 if (step
&& siggnal
!= GDB_SIGNAL_0
)
5776 p
+= xsnprintf (p
, endp
- p
, ";S%02x", siggnal
);
5778 /* GDB is willing to range step. */
5779 && use_range_stepping
5780 /* Target supports range stepping. */
5781 && rs
->supports_vCont
.r
5782 /* We don't currently support range stepping multiple
5783 threads with a wildcard (though the protocol allows it,
5784 so stubs shouldn't make an active effort to forbid
5786 && !(remote_multi_process_p (rs
) && ptid_is_pid (ptid
)))
5788 struct thread_info
*tp
;
5790 if (ptid_equal (ptid
, minus_one_ptid
))
5792 /* If we don't know about the target thread's tid, then
5793 we're resuming magic_null_ptid (see caller). */
5794 tp
= find_thread_ptid (magic_null_ptid
);
5797 tp
= find_thread_ptid (ptid
);
5798 gdb_assert (tp
!= NULL
);
5800 if (tp
->control
.may_range_step
)
5802 int addr_size
= gdbarch_addr_bit (target_gdbarch ()) / 8;
5804 p
+= xsnprintf (p
, endp
- p
, ";r%s,%s",
5805 phex_nz (tp
->control
.step_range_start
,
5807 phex_nz (tp
->control
.step_range_end
,
5811 p
+= xsnprintf (p
, endp
- p
, ";s");
5814 p
+= xsnprintf (p
, endp
- p
, ";s");
5815 else if (siggnal
!= GDB_SIGNAL_0
)
5816 p
+= xsnprintf (p
, endp
- p
, ";C%02x", siggnal
);
5818 p
+= xsnprintf (p
, endp
- p
, ";c");
5820 if (remote_multi_process_p (rs
) && ptid_is_pid (ptid
))
5824 /* All (-1) threads of process. */
5825 nptid
= ptid_build (ptid_get_pid (ptid
), -1, 0);
5827 p
+= xsnprintf (p
, endp
- p
, ":");
5828 p
= write_ptid (p
, endp
, nptid
);
5830 else if (!ptid_equal (ptid
, minus_one_ptid
))
5832 p
+= xsnprintf (p
, endp
- p
, ":");
5833 p
= write_ptid (p
, endp
, ptid
);
5839 /* Clear the thread's private info on resume. */
5842 resume_clear_thread_private_info (struct thread_info
*thread
)
5844 if (thread
->priv
!= NULL
)
5846 remote_thread_info
*priv
= get_remote_thread_info (thread
);
5848 priv
->stop_reason
= TARGET_STOPPED_BY_NO_REASON
;
5849 priv
->watch_data_address
= 0;
5853 /* Append a vCont continue-with-signal action for threads that have a
5854 non-zero stop signal. */
5857 append_pending_thread_resumptions (char *p
, char *endp
, ptid_t ptid
)
5859 struct thread_info
*thread
;
5861 ALL_NON_EXITED_THREADS (thread
)
5862 if (ptid_match (thread
->ptid
, ptid
)
5863 && !ptid_equal (inferior_ptid
, thread
->ptid
)
5864 && thread
->suspend
.stop_signal
!= GDB_SIGNAL_0
)
5866 p
= append_resumption (p
, endp
, thread
->ptid
,
5867 0, thread
->suspend
.stop_signal
);
5868 thread
->suspend
.stop_signal
= GDB_SIGNAL_0
;
5869 resume_clear_thread_private_info (thread
);
5875 /* Set the target running, using the packets that use Hc
5879 remote_resume_with_hc (struct target_ops
*ops
,
5880 ptid_t ptid
, int step
, enum gdb_signal siggnal
)
5882 struct remote_state
*rs
= get_remote_state ();
5883 struct thread_info
*thread
;
5886 rs
->last_sent_signal
= siggnal
;
5887 rs
->last_sent_step
= step
;
5889 /* The c/s/C/S resume packets use Hc, so set the continue
5891 if (ptid_equal (ptid
, minus_one_ptid
))
5892 set_continue_thread (any_thread_ptid
);
5894 set_continue_thread (ptid
);
5896 ALL_NON_EXITED_THREADS (thread
)
5897 resume_clear_thread_private_info (thread
);
5900 if (execution_direction
== EXEC_REVERSE
)
5902 /* We don't pass signals to the target in reverse exec mode. */
5903 if (info_verbose
&& siggnal
!= GDB_SIGNAL_0
)
5904 warning (_(" - Can't pass signal %d to target in reverse: ignored."),
5907 if (step
&& packet_support (PACKET_bs
) == PACKET_DISABLE
)
5908 error (_("Remote reverse-step not supported."));
5909 if (!step
&& packet_support (PACKET_bc
) == PACKET_DISABLE
)
5910 error (_("Remote reverse-continue not supported."));
5912 strcpy (buf
, step
? "bs" : "bc");
5914 else if (siggnal
!= GDB_SIGNAL_0
)
5916 buf
[0] = step
? 'S' : 'C';
5917 buf
[1] = tohex (((int) siggnal
>> 4) & 0xf);
5918 buf
[2] = tohex (((int) siggnal
) & 0xf);
5922 strcpy (buf
, step
? "s" : "c");
5927 /* Resume the remote inferior by using a "vCont" packet. The thread
5928 to be resumed is PTID; STEP and SIGGNAL indicate whether the
5929 resumed thread should be single-stepped and/or signalled. If PTID
5930 equals minus_one_ptid, then all threads are resumed; the thread to
5931 be stepped and/or signalled is given in the global INFERIOR_PTID.
5932 This function returns non-zero iff it resumes the inferior.
5934 This function issues a strict subset of all possible vCont commands
5938 remote_resume_with_vcont (ptid_t ptid
, int step
, enum gdb_signal siggnal
)
5940 struct remote_state
*rs
= get_remote_state ();
5944 /* No reverse execution actions defined for vCont. */
5945 if (execution_direction
== EXEC_REVERSE
)
5948 if (packet_support (PACKET_vCont
) == PACKET_SUPPORT_UNKNOWN
)
5949 remote_vcont_probe (rs
);
5951 if (packet_support (PACKET_vCont
) == PACKET_DISABLE
)
5955 endp
= rs
->buf
+ get_remote_packet_size ();
5957 /* If we could generate a wider range of packets, we'd have to worry
5958 about overflowing BUF. Should there be a generic
5959 "multi-part-packet" packet? */
5961 p
+= xsnprintf (p
, endp
- p
, "vCont");
5963 if (ptid_equal (ptid
, magic_null_ptid
))
5965 /* MAGIC_NULL_PTID means that we don't have any active threads,
5966 so we don't have any TID numbers the inferior will
5967 understand. Make sure to only send forms that do not specify
5969 append_resumption (p
, endp
, minus_one_ptid
, step
, siggnal
);
5971 else if (ptid_equal (ptid
, minus_one_ptid
) || ptid_is_pid (ptid
))
5973 /* Resume all threads (of all processes, or of a single
5974 process), with preference for INFERIOR_PTID. This assumes
5975 inferior_ptid belongs to the set of all threads we are about
5977 if (step
|| siggnal
!= GDB_SIGNAL_0
)
5979 /* Step inferior_ptid, with or without signal. */
5980 p
= append_resumption (p
, endp
, inferior_ptid
, step
, siggnal
);
5983 /* Also pass down any pending signaled resumption for other
5984 threads not the current. */
5985 p
= append_pending_thread_resumptions (p
, endp
, ptid
);
5987 /* And continue others without a signal. */
5988 append_resumption (p
, endp
, ptid
, /*step=*/ 0, GDB_SIGNAL_0
);
5992 /* Scheduler locking; resume only PTID. */
5993 append_resumption (p
, endp
, ptid
, step
, siggnal
);
5996 gdb_assert (strlen (rs
->buf
) < get_remote_packet_size ());
5999 if (target_is_non_stop_p ())
6001 /* In non-stop, the stub replies to vCont with "OK". The stop
6002 reply will be reported asynchronously by means of a `%Stop'
6004 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
6005 if (strcmp (rs
->buf
, "OK") != 0)
6006 error (_("Unexpected vCont reply in non-stop mode: %s"), rs
->buf
);
6012 /* Tell the remote machine to resume. */
6015 remote_target::resume (ptid_t ptid
, int step
, enum gdb_signal siggnal
)
6017 struct remote_state
*rs
= get_remote_state ();
6019 /* When connected in non-stop mode, the core resumes threads
6020 individually. Resuming remote threads directly in target_resume
6021 would thus result in sending one packet per thread. Instead, to
6022 minimize roundtrip latency, here we just store the resume
6023 request; the actual remote resumption will be done in
6024 target_commit_resume / remote_commit_resume, where we'll be able
6025 to do vCont action coalescing. */
6026 if (target_is_non_stop_p () && ::execution_direction
!= EXEC_REVERSE
)
6028 remote_thread_info
*remote_thr
;
6030 if (ptid_equal (minus_one_ptid
, ptid
) || ptid_is_pid (ptid
))
6031 remote_thr
= get_remote_thread_info (inferior_ptid
);
6033 remote_thr
= get_remote_thread_info (ptid
);
6035 remote_thr
->last_resume_step
= step
;
6036 remote_thr
->last_resume_sig
= siggnal
;
6040 /* In all-stop, we can't mark REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN
6041 (explained in remote-notif.c:handle_notification) so
6042 remote_notif_process is not called. We need find a place where
6043 it is safe to start a 'vNotif' sequence. It is good to do it
6044 before resuming inferior, because inferior was stopped and no RSP
6045 traffic at that moment. */
6046 if (!target_is_non_stop_p ())
6047 remote_notif_process (rs
->notif_state
, ¬if_client_stop
);
6049 rs
->last_resume_exec_dir
= ::execution_direction
;
6051 /* Prefer vCont, and fallback to s/c/S/C, which use Hc. */
6052 if (!remote_resume_with_vcont (ptid
, step
, siggnal
))
6053 remote_resume_with_hc (this, ptid
, step
, siggnal
);
6055 /* We are about to start executing the inferior, let's register it
6056 with the event loop. NOTE: this is the one place where all the
6057 execution commands end up. We could alternatively do this in each
6058 of the execution commands in infcmd.c. */
6059 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
6060 into infcmd.c in order to allow inferior function calls to work
6061 NOT asynchronously. */
6062 if (target_can_async_p ())
6065 /* We've just told the target to resume. The remote server will
6066 wait for the inferior to stop, and then send a stop reply. In
6067 the mean time, we can't start another command/query ourselves
6068 because the stub wouldn't be ready to process it. This applies
6069 only to the base all-stop protocol, however. In non-stop (which
6070 only supports vCont), the stub replies with an "OK", and is
6071 immediate able to process further serial input. */
6072 if (!target_is_non_stop_p ())
6073 rs
->waiting_for_stop_reply
= 1;
6076 static void check_pending_events_prevent_wildcard_vcont
6077 (int *may_global_wildcard_vcont
);
6078 static int is_pending_fork_parent_thread (struct thread_info
*thread
);
6080 /* Private per-inferior info for target remote processes. */
6082 struct remote_inferior
: public private_inferior
6084 /* Whether we can send a wildcard vCont for this process. */
6085 bool may_wildcard_vcont
= true;
6088 /* Get the remote private inferior data associated to INF. */
6090 static remote_inferior
*
6091 get_remote_inferior (inferior
*inf
)
6093 if (inf
->priv
== NULL
)
6094 inf
->priv
.reset (new remote_inferior
);
6096 return static_cast<remote_inferior
*> (inf
->priv
.get ());
6099 /* Structure used to track the construction of a vCont packet in the
6100 outgoing packet buffer. This is used to send multiple vCont
6101 packets if we have more actions than would fit a single packet. */
6103 struct vcont_builder
6105 /* Pointer to the first action. P points here if no action has been
6109 /* Where the next action will be appended. */
6112 /* The end of the buffer. Must never write past this. */
6116 /* Prepare the outgoing buffer for a new vCont packet. */
6119 vcont_builder_restart (struct vcont_builder
*builder
)
6121 struct remote_state
*rs
= get_remote_state ();
6123 builder
->p
= rs
->buf
;
6124 builder
->endp
= rs
->buf
+ get_remote_packet_size ();
6125 builder
->p
+= xsnprintf (builder
->p
, builder
->endp
- builder
->p
, "vCont");
6126 builder
->first_action
= builder
->p
;
6129 /* If the vCont packet being built has any action, send it to the
6133 vcont_builder_flush (struct vcont_builder
*builder
)
6135 struct remote_state
*rs
;
6137 if (builder
->p
== builder
->first_action
)
6140 rs
= get_remote_state ();
6142 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
6143 if (strcmp (rs
->buf
, "OK") != 0)
6144 error (_("Unexpected vCont reply in non-stop mode: %s"), rs
->buf
);
6147 /* The largest action is range-stepping, with its two addresses. This
6148 is more than sufficient. If a new, bigger action is created, it'll
6149 quickly trigger a failed assertion in append_resumption (and we'll
6151 #define MAX_ACTION_SIZE 200
6153 /* Append a new vCont action in the outgoing packet being built. If
6154 the action doesn't fit the packet along with previous actions, push
6155 what we've got so far to the remote end and start over a new vCont
6156 packet (with the new action). */
6159 vcont_builder_push_action (struct vcont_builder
*builder
,
6160 ptid_t ptid
, int step
, enum gdb_signal siggnal
)
6162 char buf
[MAX_ACTION_SIZE
+ 1];
6166 endp
= append_resumption (buf
, buf
+ sizeof (buf
),
6167 ptid
, step
, siggnal
);
6169 /* Check whether this new action would fit in the vCont packet along
6170 with previous actions. If not, send what we've got so far and
6171 start a new vCont packet. */
6173 if (rsize
> builder
->endp
- builder
->p
)
6175 vcont_builder_flush (builder
);
6176 vcont_builder_restart (builder
);
6178 /* Should now fit. */
6179 gdb_assert (rsize
<= builder
->endp
- builder
->p
);
6182 memcpy (builder
->p
, buf
, rsize
);
6183 builder
->p
+= rsize
;
6187 /* to_commit_resume implementation. */
6190 remote_target::commit_resume ()
6192 struct inferior
*inf
;
6193 struct thread_info
*tp
;
6194 int any_process_wildcard
;
6195 int may_global_wildcard_vcont
;
6196 struct vcont_builder vcont_builder
;
6198 /* If connected in all-stop mode, we'd send the remote resume
6199 request directly from remote_resume. Likewise if
6200 reverse-debugging, as there are no defined vCont actions for
6201 reverse execution. */
6202 if (!target_is_non_stop_p () || ::execution_direction
== EXEC_REVERSE
)
6205 /* Try to send wildcard actions ("vCont;c" or "vCont;c:pPID.-1")
6206 instead of resuming all threads of each process individually.
6207 However, if any thread of a process must remain halted, we can't
6208 send wildcard resumes and must send one action per thread.
6210 Care must be taken to not resume threads/processes the server
6211 side already told us are stopped, but the core doesn't know about
6212 yet, because the events are still in the vStopped notification
6215 #1 => vCont s:p1.1;c
6217 #3 <= %Stopped T05 p1.1
6222 #8 (infrun handles the stop for p1.1 and continues stepping)
6223 #9 => vCont s:p1.1;c
6225 The last vCont above would resume thread p1.2 by mistake, because
6226 the server has no idea that the event for p1.2 had not been
6229 The server side must similarly ignore resume actions for the
6230 thread that has a pending %Stopped notification (and any other
6231 threads with events pending), until GDB acks the notification
6232 with vStopped. Otherwise, e.g., the following case is
6235 #1 => g (or any other packet)
6237 #3 <= %Stopped T05 p1.2
6238 #4 => vCont s:p1.1;c
6241 Above, the server must not resume thread p1.2. GDB can't know
6242 that p1.2 stopped until it acks the %Stopped notification, and
6243 since from GDB's perspective all threads should be running, it
6246 Finally, special care must also be given to handling fork/vfork
6247 events. A (v)fork event actually tells us that two processes
6248 stopped -- the parent and the child. Until we follow the fork,
6249 we must not resume the child. Therefore, if we have a pending
6250 fork follow, we must not send a global wildcard resume action
6251 (vCont;c). We can still send process-wide wildcards though. */
6253 /* Start by assuming a global wildcard (vCont;c) is possible. */
6254 may_global_wildcard_vcont
= 1;
6256 /* And assume every process is individually wildcard-able too. */
6257 ALL_NON_EXITED_INFERIORS (inf
)
6259 remote_inferior
*priv
= get_remote_inferior (inf
);
6261 priv
->may_wildcard_vcont
= true;
6264 /* Check for any pending events (not reported or processed yet) and
6265 disable process and global wildcard resumes appropriately. */
6266 check_pending_events_prevent_wildcard_vcont (&may_global_wildcard_vcont
);
6268 ALL_NON_EXITED_THREADS (tp
)
6270 /* If a thread of a process is not meant to be resumed, then we
6271 can't wildcard that process. */
6274 get_remote_inferior (tp
->inf
)->may_wildcard_vcont
= false;
6276 /* And if we can't wildcard a process, we can't wildcard
6277 everything either. */
6278 may_global_wildcard_vcont
= 0;
6282 /* If a thread is the parent of an unfollowed fork, then we
6283 can't do a global wildcard, as that would resume the fork
6285 if (is_pending_fork_parent_thread (tp
))
6286 may_global_wildcard_vcont
= 0;
6289 /* Now let's build the vCont packet(s). Actions must be appended
6290 from narrower to wider scopes (thread -> process -> global). If
6291 we end up with too many actions for a single packet vcont_builder
6292 flushes the current vCont packet to the remote side and starts a
6294 vcont_builder_restart (&vcont_builder
);
6296 /* Threads first. */
6297 ALL_NON_EXITED_THREADS (tp
)
6299 remote_thread_info
*remote_thr
= get_remote_thread_info (tp
);
6301 if (!tp
->executing
|| remote_thr
->vcont_resumed
)
6304 gdb_assert (!thread_is_in_step_over_chain (tp
));
6306 if (!remote_thr
->last_resume_step
6307 && remote_thr
->last_resume_sig
== GDB_SIGNAL_0
6308 && get_remote_inferior (tp
->inf
)->may_wildcard_vcont
)
6310 /* We'll send a wildcard resume instead. */
6311 remote_thr
->vcont_resumed
= 1;
6315 vcont_builder_push_action (&vcont_builder
, tp
->ptid
,
6316 remote_thr
->last_resume_step
,
6317 remote_thr
->last_resume_sig
);
6318 remote_thr
->vcont_resumed
= 1;
6321 /* Now check whether we can send any process-wide wildcard. This is
6322 to avoid sending a global wildcard in the case nothing is
6323 supposed to be resumed. */
6324 any_process_wildcard
= 0;
6326 ALL_NON_EXITED_INFERIORS (inf
)
6328 if (get_remote_inferior (inf
)->may_wildcard_vcont
)
6330 any_process_wildcard
= 1;
6335 if (any_process_wildcard
)
6337 /* If all processes are wildcard-able, then send a single "c"
6338 action, otherwise, send an "all (-1) threads of process"
6339 continue action for each running process, if any. */
6340 if (may_global_wildcard_vcont
)
6342 vcont_builder_push_action (&vcont_builder
, minus_one_ptid
,
6347 ALL_NON_EXITED_INFERIORS (inf
)
6349 if (get_remote_inferior (inf
)->may_wildcard_vcont
)
6351 vcont_builder_push_action (&vcont_builder
,
6352 pid_to_ptid (inf
->pid
),
6359 vcont_builder_flush (&vcont_builder
);
6364 /* Non-stop version of target_stop. Uses `vCont;t' to stop a remote
6365 thread, all threads of a remote process, or all threads of all
6369 remote_stop_ns (ptid_t ptid
)
6371 struct remote_state
*rs
= get_remote_state ();
6373 char *endp
= rs
->buf
+ get_remote_packet_size ();
6375 if (packet_support (PACKET_vCont
) == PACKET_SUPPORT_UNKNOWN
)
6376 remote_vcont_probe (rs
);
6378 if (!rs
->supports_vCont
.t
)
6379 error (_("Remote server does not support stopping threads"));
6381 if (ptid_equal (ptid
, minus_one_ptid
)
6382 || (!remote_multi_process_p (rs
) && ptid_is_pid (ptid
)))
6383 p
+= xsnprintf (p
, endp
- p
, "vCont;t");
6388 p
+= xsnprintf (p
, endp
- p
, "vCont;t:");
6390 if (ptid_is_pid (ptid
))
6391 /* All (-1) threads of process. */
6392 nptid
= ptid_build (ptid_get_pid (ptid
), -1, 0);
6395 /* Small optimization: if we already have a stop reply for
6396 this thread, no use in telling the stub we want this
6398 if (peek_stop_reply (ptid
))
6404 write_ptid (p
, endp
, nptid
);
6407 /* In non-stop, we get an immediate OK reply. The stop reply will
6408 come in asynchronously by notification. */
6410 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
6411 if (strcmp (rs
->buf
, "OK") != 0)
6412 error (_("Stopping %s failed: %s"), target_pid_to_str (ptid
), rs
->buf
);
6415 /* All-stop version of target_interrupt. Sends a break or a ^C to
6416 interrupt the remote target. It is undefined which thread of which
6417 process reports the interrupt. */
6420 remote_interrupt_as (void)
6422 struct remote_state
*rs
= get_remote_state ();
6424 rs
->ctrlc_pending_p
= 1;
6426 /* If the inferior is stopped already, but the core didn't know
6427 about it yet, just ignore the request. The cached wait status
6428 will be collected in remote_wait. */
6429 if (rs
->cached_wait_status
)
6432 /* Send interrupt_sequence to remote target. */
6433 send_interrupt_sequence ();
6436 /* Non-stop version of target_interrupt. Uses `vCtrlC' to interrupt
6437 the remote target. It is undefined which thread of which process
6438 reports the interrupt. Throws an error if the packet is not
6439 supported by the server. */
6442 remote_interrupt_ns (void)
6444 struct remote_state
*rs
= get_remote_state ();
6446 char *endp
= rs
->buf
+ get_remote_packet_size ();
6448 xsnprintf (p
, endp
- p
, "vCtrlC");
6450 /* In non-stop, we get an immediate OK reply. The stop reply will
6451 come in asynchronously by notification. */
6453 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
6455 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_vCtrlC
]))
6459 case PACKET_UNKNOWN
:
6460 error (_("No support for interrupting the remote target."));
6462 error (_("Interrupting target failed: %s"), rs
->buf
);
6466 /* Implement the to_stop function for the remote targets. */
6469 remote_target::stop (ptid_t ptid
)
6472 fprintf_unfiltered (gdb_stdlog
, "remote_stop called\n");
6474 if (target_is_non_stop_p ())
6475 remote_stop_ns (ptid
);
6478 /* We don't currently have a way to transparently pause the
6479 remote target in all-stop mode. Interrupt it instead. */
6480 remote_interrupt_as ();
6484 /* Implement the to_interrupt function for the remote targets. */
6487 remote_target::interrupt ()
6490 fprintf_unfiltered (gdb_stdlog
, "remote_interrupt called\n");
6492 if (target_is_non_stop_p ())
6493 remote_interrupt_ns ();
6495 remote_interrupt_as ();
6498 /* Implement the to_pass_ctrlc function for the remote targets. */
6501 remote_target::pass_ctrlc ()
6503 struct remote_state
*rs
= get_remote_state ();
6506 fprintf_unfiltered (gdb_stdlog
, "remote_pass_ctrlc called\n");
6508 /* If we're starting up, we're not fully synced yet. Quit
6510 if (rs
->starting_up
)
6512 /* If ^C has already been sent once, offer to disconnect. */
6513 else if (rs
->ctrlc_pending_p
)
6516 target_interrupt ();
6519 /* Ask the user what to do when an interrupt is received. */
6522 interrupt_query (void)
6524 struct remote_state
*rs
= get_remote_state ();
6526 if (rs
->waiting_for_stop_reply
&& rs
->ctrlc_pending_p
)
6528 if (query (_("The target is not responding to interrupt requests.\n"
6529 "Stop debugging it? ")))
6531 remote_unpush_target ();
6532 throw_error (TARGET_CLOSE_ERROR
, _("Disconnected from target."));
6537 if (query (_("Interrupted while waiting for the program.\n"
6538 "Give up waiting? ")))
6543 /* Enable/disable target terminal ownership. Most targets can use
6544 terminal groups to control terminal ownership. Remote targets are
6545 different in that explicit transfer of ownership to/from GDB/target
6549 remote_target::terminal_inferior ()
6551 /* NOTE: At this point we could also register our selves as the
6552 recipient of all input. Any characters typed could then be
6553 passed on down to the target. */
6557 remote_target::terminal_ours ()
6562 remote_console_output (char *msg
)
6566 for (p
= msg
; p
[0] && p
[1]; p
+= 2)
6569 char c
= fromhex (p
[0]) * 16 + fromhex (p
[1]);
6573 fputs_unfiltered (tb
, gdb_stdtarg
);
6575 gdb_flush (gdb_stdtarg
);
6578 DEF_VEC_O(cached_reg_t
);
6580 typedef struct stop_reply
6582 struct notif_event base
;
6584 /* The identifier of the thread about this event */
6587 /* The remote state this event is associated with. When the remote
6588 connection, represented by a remote_state object, is closed,
6589 all the associated stop_reply events should be released. */
6590 struct remote_state
*rs
;
6592 struct target_waitstatus ws
;
6594 /* The architecture associated with the expedited registers. */
6597 /* Expedited registers. This makes remote debugging a bit more
6598 efficient for those targets that provide critical registers as
6599 part of their normal status mechanism (as another roundtrip to
6600 fetch them is avoided). */
6601 VEC(cached_reg_t
) *regcache
;
6603 enum target_stop_reason stop_reason
;
6605 CORE_ADDR watch_data_address
;
6610 DECLARE_QUEUE_P (stop_reply_p
);
6611 DEFINE_QUEUE_P (stop_reply_p
);
6612 /* The list of already fetched and acknowledged stop events. This
6613 queue is used for notification Stop, and other notifications
6614 don't need queue for their events, because the notification events
6615 of Stop can't be consumed immediately, so that events should be
6616 queued first, and be consumed by remote_wait_{ns,as} one per
6617 time. Other notifications can consume their events immediately,
6618 so queue is not needed for them. */
6619 static QUEUE (stop_reply_p
) *stop_reply_queue
;
6622 stop_reply_xfree (struct stop_reply
*r
)
6624 notif_event_xfree ((struct notif_event
*) r
);
6627 /* Return the length of the stop reply queue. */
6630 stop_reply_queue_length (void)
6632 return QUEUE_length (stop_reply_p
, stop_reply_queue
);
6636 remote_notif_stop_parse (struct notif_client
*self
, char *buf
,
6637 struct notif_event
*event
)
6639 remote_parse_stop_reply (buf
, (struct stop_reply
*) event
);
6643 remote_notif_stop_ack (struct notif_client
*self
, char *buf
,
6644 struct notif_event
*event
)
6646 struct stop_reply
*stop_reply
= (struct stop_reply
*) event
;
6649 putpkt (self
->ack_command
);
6651 if (stop_reply
->ws
.kind
== TARGET_WAITKIND_IGNORE
)
6652 /* We got an unknown stop reply. */
6653 error (_("Unknown stop reply"));
6655 push_stop_reply (stop_reply
);
6659 remote_notif_stop_can_get_pending_events (struct notif_client
*self
)
6661 /* We can't get pending events in remote_notif_process for
6662 notification stop, and we have to do this in remote_wait_ns
6663 instead. If we fetch all queued events from stub, remote stub
6664 may exit and we have no chance to process them back in
6666 mark_async_event_handler (remote_async_inferior_event_token
);
6671 stop_reply_dtr (struct notif_event
*event
)
6673 struct stop_reply
*r
= (struct stop_reply
*) event
;
6678 VEC_iterate (cached_reg_t
, r
->regcache
, ix
, reg
);
6682 VEC_free (cached_reg_t
, r
->regcache
);
6685 static struct notif_event
*
6686 remote_notif_stop_alloc_reply (void)
6688 /* We cast to a pointer to the "base class". */
6689 struct notif_event
*r
= (struct notif_event
*) XNEW (struct stop_reply
);
6691 r
->dtr
= stop_reply_dtr
;
6696 /* A client of notification Stop. */
6698 struct notif_client notif_client_stop
=
6702 remote_notif_stop_parse
,
6703 remote_notif_stop_ack
,
6704 remote_notif_stop_can_get_pending_events
,
6705 remote_notif_stop_alloc_reply
,
6709 /* A parameter to pass data in and out. */
6711 struct queue_iter_param
6714 struct stop_reply
*output
;
6717 /* Determine if THREAD_PTID is a pending fork parent thread. ARG contains
6718 the pid of the process that owns the threads we want to check, or
6719 -1 if we want to check all threads. */
6722 is_pending_fork_parent (struct target_waitstatus
*ws
, int event_pid
,
6725 if (ws
->kind
== TARGET_WAITKIND_FORKED
6726 || ws
->kind
== TARGET_WAITKIND_VFORKED
)
6728 if (event_pid
== -1 || event_pid
== ptid_get_pid (thread_ptid
))
6735 /* Return the thread's pending status used to determine whether the
6736 thread is a fork parent stopped at a fork event. */
6738 static struct target_waitstatus
*
6739 thread_pending_fork_status (struct thread_info
*thread
)
6741 if (thread
->suspend
.waitstatus_pending_p
)
6742 return &thread
->suspend
.waitstatus
;
6744 return &thread
->pending_follow
;
6747 /* Determine if THREAD is a pending fork parent thread. */
6750 is_pending_fork_parent_thread (struct thread_info
*thread
)
6752 struct target_waitstatus
*ws
= thread_pending_fork_status (thread
);
6755 return is_pending_fork_parent (ws
, pid
, thread
->ptid
);
6758 /* Check whether EVENT is a fork event, and if it is, remove the
6759 fork child from the context list passed in DATA. */
6762 remove_child_of_pending_fork (QUEUE (stop_reply_p
) *q
,
6763 QUEUE_ITER (stop_reply_p
) *iter
,
6767 struct queue_iter_param
*param
= (struct queue_iter_param
*) data
;
6768 struct threads_listing_context
*context
6769 = (struct threads_listing_context
*) param
->input
;
6771 if (event
->ws
.kind
== TARGET_WAITKIND_FORKED
6772 || event
->ws
.kind
== TARGET_WAITKIND_VFORKED
6773 || event
->ws
.kind
== TARGET_WAITKIND_THREAD_EXITED
)
6774 context
->remove_thread (event
->ws
.value
.related_pid
);
6779 /* If CONTEXT contains any fork child threads that have not been
6780 reported yet, remove them from the CONTEXT list. If such a
6781 thread exists it is because we are stopped at a fork catchpoint
6782 and have not yet called follow_fork, which will set up the
6783 host-side data structures for the new process. */
6786 remove_new_fork_children (struct threads_listing_context
*context
)
6788 struct thread_info
* thread
;
6790 struct notif_client
*notif
= ¬if_client_stop
;
6791 struct queue_iter_param param
;
6793 /* For any threads stopped at a fork event, remove the corresponding
6794 fork child threads from the CONTEXT list. */
6795 ALL_NON_EXITED_THREADS (thread
)
6797 struct target_waitstatus
*ws
= thread_pending_fork_status (thread
);
6799 if (is_pending_fork_parent (ws
, pid
, thread
->ptid
))
6800 context
->remove_thread (ws
->value
.related_pid
);
6803 /* Check for any pending fork events (not reported or processed yet)
6804 in process PID and remove those fork child threads from the
6805 CONTEXT list as well. */
6806 remote_notif_get_pending_events (notif
);
6807 param
.input
= context
;
6808 param
.output
= NULL
;
6809 QUEUE_iterate (stop_reply_p
, stop_reply_queue
,
6810 remove_child_of_pending_fork
, ¶m
);
6813 /* Check whether EVENT would prevent a global or process wildcard
6817 check_pending_event_prevents_wildcard_vcont_callback
6818 (QUEUE (stop_reply_p
) *q
,
6819 QUEUE_ITER (stop_reply_p
) *iter
,
6823 struct inferior
*inf
;
6824 int *may_global_wildcard_vcont
= (int *) data
;
6826 if (event
->ws
.kind
== TARGET_WAITKIND_NO_RESUMED
6827 || event
->ws
.kind
== TARGET_WAITKIND_NO_HISTORY
)
6830 if (event
->ws
.kind
== TARGET_WAITKIND_FORKED
6831 || event
->ws
.kind
== TARGET_WAITKIND_VFORKED
)
6832 *may_global_wildcard_vcont
= 0;
6834 inf
= find_inferior_ptid (event
->ptid
);
6836 /* This may be the first time we heard about this process.
6837 Regardless, we must not do a global wildcard resume, otherwise
6838 we'd resume this process too. */
6839 *may_global_wildcard_vcont
= 0;
6841 get_remote_inferior (inf
)->may_wildcard_vcont
= false;
6846 /* Check whether any event pending in the vStopped queue would prevent
6847 a global or process wildcard vCont action. Clear
6848 *may_global_wildcard if we can't do a global wildcard (vCont;c),
6849 and clear the event inferior's may_wildcard_vcont flag if we can't
6850 do a process-wide wildcard resume (vCont;c:pPID.-1). */
6853 check_pending_events_prevent_wildcard_vcont (int *may_global_wildcard
)
6855 struct notif_client
*notif
= ¬if_client_stop
;
6857 remote_notif_get_pending_events (notif
);
6858 QUEUE_iterate (stop_reply_p
, stop_reply_queue
,
6859 check_pending_event_prevents_wildcard_vcont_callback
,
6860 may_global_wildcard
);
6863 /* Remove stop replies in the queue if its pid is equal to the given
6867 remove_stop_reply_for_inferior (QUEUE (stop_reply_p
) *q
,
6868 QUEUE_ITER (stop_reply_p
) *iter
,
6872 struct queue_iter_param
*param
= (struct queue_iter_param
*) data
;
6873 struct inferior
*inf
= (struct inferior
*) param
->input
;
6875 if (ptid_get_pid (event
->ptid
) == inf
->pid
)
6877 stop_reply_xfree (event
);
6878 QUEUE_remove_elem (stop_reply_p
, q
, iter
);
6884 /* Discard all pending stop replies of inferior INF. */
6887 discard_pending_stop_replies (struct inferior
*inf
)
6889 struct queue_iter_param param
;
6890 struct stop_reply
*reply
;
6891 struct remote_state
*rs
= get_remote_state ();
6892 struct remote_notif_state
*rns
= rs
->notif_state
;
6894 /* This function can be notified when an inferior exists. When the
6895 target is not remote, the notification state is NULL. */
6896 if (rs
->remote_desc
== NULL
)
6899 reply
= (struct stop_reply
*) rns
->pending_event
[notif_client_stop
.id
];
6901 /* Discard the in-flight notification. */
6902 if (reply
!= NULL
&& ptid_get_pid (reply
->ptid
) == inf
->pid
)
6904 stop_reply_xfree (reply
);
6905 rns
->pending_event
[notif_client_stop
.id
] = NULL
;
6909 param
.output
= NULL
;
6910 /* Discard the stop replies we have already pulled with
6912 QUEUE_iterate (stop_reply_p
, stop_reply_queue
,
6913 remove_stop_reply_for_inferior
, ¶m
);
6916 /* If its remote state is equal to the given remote state,
6917 remove EVENT from the stop reply queue. */
6920 remove_stop_reply_of_remote_state (QUEUE (stop_reply_p
) *q
,
6921 QUEUE_ITER (stop_reply_p
) *iter
,
6925 struct queue_iter_param
*param
= (struct queue_iter_param
*) data
;
6926 struct remote_state
*rs
= (struct remote_state
*) param
->input
;
6928 if (event
->rs
== rs
)
6930 stop_reply_xfree (event
);
6931 QUEUE_remove_elem (stop_reply_p
, q
, iter
);
6937 /* Discard the stop replies for RS in stop_reply_queue. */
6940 discard_pending_stop_replies_in_queue (struct remote_state
*rs
)
6942 struct queue_iter_param param
;
6945 param
.output
= NULL
;
6946 /* Discard the stop replies we have already pulled with
6948 QUEUE_iterate (stop_reply_p
, stop_reply_queue
,
6949 remove_stop_reply_of_remote_state
, ¶m
);
6952 /* A parameter to pass data in and out. */
6955 remote_notif_remove_once_on_match (QUEUE (stop_reply_p
) *q
,
6956 QUEUE_ITER (stop_reply_p
) *iter
,
6960 struct queue_iter_param
*param
= (struct queue_iter_param
*) data
;
6961 ptid_t
*ptid
= (ptid_t
*) param
->input
;
6963 if (ptid_match (event
->ptid
, *ptid
))
6965 param
->output
= event
;
6966 QUEUE_remove_elem (stop_reply_p
, q
, iter
);
6973 /* Remove the first reply in 'stop_reply_queue' which matches
6976 static struct stop_reply
*
6977 remote_notif_remove_queued_reply (ptid_t ptid
)
6979 struct queue_iter_param param
;
6981 param
.input
= &ptid
;
6982 param
.output
= NULL
;
6984 QUEUE_iterate (stop_reply_p
, stop_reply_queue
,
6985 remote_notif_remove_once_on_match
, ¶m
);
6987 fprintf_unfiltered (gdb_stdlog
,
6988 "notif: discard queued event: 'Stop' in %s\n",
6989 target_pid_to_str (ptid
));
6991 return param
.output
;
6994 /* Look for a queued stop reply belonging to PTID. If one is found,
6995 remove it from the queue, and return it. Returns NULL if none is
6996 found. If there are still queued events left to process, tell the
6997 event loop to get back to target_wait soon. */
6999 static struct stop_reply
*
7000 queued_stop_reply (ptid_t ptid
)
7002 struct stop_reply
*r
= remote_notif_remove_queued_reply (ptid
);
7004 if (!QUEUE_is_empty (stop_reply_p
, stop_reply_queue
))
7005 /* There's still at least an event left. */
7006 mark_async_event_handler (remote_async_inferior_event_token
);
7011 /* Push a fully parsed stop reply in the stop reply queue. Since we
7012 know that we now have at least one queued event left to pass to the
7013 core side, tell the event loop to get back to target_wait soon. */
7016 push_stop_reply (struct stop_reply
*new_event
)
7018 QUEUE_enque (stop_reply_p
, stop_reply_queue
, new_event
);
7021 fprintf_unfiltered (gdb_stdlog
,
7022 "notif: push 'Stop' %s to queue %d\n",
7023 target_pid_to_str (new_event
->ptid
),
7024 QUEUE_length (stop_reply_p
,
7027 mark_async_event_handler (remote_async_inferior_event_token
);
7031 stop_reply_match_ptid_and_ws (QUEUE (stop_reply_p
) *q
,
7032 QUEUE_ITER (stop_reply_p
) *iter
,
7033 struct stop_reply
*event
,
7036 ptid_t
*ptid
= (ptid_t
*) data
;
7038 return !(ptid_equal (*ptid
, event
->ptid
)
7039 && event
->ws
.kind
== TARGET_WAITKIND_STOPPED
);
7042 /* Returns true if we have a stop reply for PTID. */
7045 peek_stop_reply (ptid_t ptid
)
7047 return !QUEUE_iterate (stop_reply_p
, stop_reply_queue
,
7048 stop_reply_match_ptid_and_ws
, &ptid
);
7051 /* Helper for remote_parse_stop_reply. Return nonzero if the substring
7052 starting with P and ending with PEND matches PREFIX. */
7055 strprefix (const char *p
, const char *pend
, const char *prefix
)
7057 for ( ; p
< pend
; p
++, prefix
++)
7060 return *prefix
== '\0';
7063 /* Parse the stop reply in BUF. Either the function succeeds, and the
7064 result is stored in EVENT, or throws an error. */
7067 remote_parse_stop_reply (char *buf
, struct stop_reply
*event
)
7069 remote_arch_state
*rsa
= NULL
;
7074 event
->ptid
= null_ptid
;
7075 event
->rs
= get_remote_state ();
7076 event
->ws
.kind
= TARGET_WAITKIND_IGNORE
;
7077 event
->ws
.value
.integer
= 0;
7078 event
->stop_reason
= TARGET_STOPPED_BY_NO_REASON
;
7079 event
->regcache
= NULL
;
7084 case 'T': /* Status with PC, SP, FP, ... */
7085 /* Expedited reply, containing Signal, {regno, reg} repeat. */
7086 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
7088 n... = register number
7089 r... = register contents
7092 p
= &buf
[3]; /* after Txx */
7098 p1
= strchr (p
, ':');
7100 error (_("Malformed packet(a) (missing colon): %s\n\
7104 error (_("Malformed packet(a) (missing register number): %s\n\
7108 /* Some "registers" are actually extended stop information.
7109 Note if you're adding a new entry here: GDB 7.9 and
7110 earlier assume that all register "numbers" that start
7111 with an hex digit are real register numbers. Make sure
7112 the server only sends such a packet if it knows the
7113 client understands it. */
7115 if (strprefix (p
, p1
, "thread"))
7116 event
->ptid
= read_ptid (++p1
, &p
);
7117 else if (strprefix (p
, p1
, "syscall_entry"))
7121 event
->ws
.kind
= TARGET_WAITKIND_SYSCALL_ENTRY
;
7122 p
= unpack_varlen_hex (++p1
, &sysno
);
7123 event
->ws
.value
.syscall_number
= (int) sysno
;
7125 else if (strprefix (p
, p1
, "syscall_return"))
7129 event
->ws
.kind
= TARGET_WAITKIND_SYSCALL_RETURN
;
7130 p
= unpack_varlen_hex (++p1
, &sysno
);
7131 event
->ws
.value
.syscall_number
= (int) sysno
;
7133 else if (strprefix (p
, p1
, "watch")
7134 || strprefix (p
, p1
, "rwatch")
7135 || strprefix (p
, p1
, "awatch"))
7137 event
->stop_reason
= TARGET_STOPPED_BY_WATCHPOINT
;
7138 p
= unpack_varlen_hex (++p1
, &addr
);
7139 event
->watch_data_address
= (CORE_ADDR
) addr
;
7141 else if (strprefix (p
, p1
, "swbreak"))
7143 event
->stop_reason
= TARGET_STOPPED_BY_SW_BREAKPOINT
;
7145 /* Make sure the stub doesn't forget to indicate support
7147 if (packet_support (PACKET_swbreak_feature
) != PACKET_ENABLE
)
7148 error (_("Unexpected swbreak stop reason"));
7150 /* The value part is documented as "must be empty",
7151 though we ignore it, in case we ever decide to make
7152 use of it in a backward compatible way. */
7153 p
= strchrnul (p1
+ 1, ';');
7155 else if (strprefix (p
, p1
, "hwbreak"))
7157 event
->stop_reason
= TARGET_STOPPED_BY_HW_BREAKPOINT
;
7159 /* Make sure the stub doesn't forget to indicate support
7161 if (packet_support (PACKET_hwbreak_feature
) != PACKET_ENABLE
)
7162 error (_("Unexpected hwbreak stop reason"));
7165 p
= strchrnul (p1
+ 1, ';');
7167 else if (strprefix (p
, p1
, "library"))
7169 event
->ws
.kind
= TARGET_WAITKIND_LOADED
;
7170 p
= strchrnul (p1
+ 1, ';');
7172 else if (strprefix (p
, p1
, "replaylog"))
7174 event
->ws
.kind
= TARGET_WAITKIND_NO_HISTORY
;
7175 /* p1 will indicate "begin" or "end", but it makes
7176 no difference for now, so ignore it. */
7177 p
= strchrnul (p1
+ 1, ';');
7179 else if (strprefix (p
, p1
, "core"))
7183 p
= unpack_varlen_hex (++p1
, &c
);
7186 else if (strprefix (p
, p1
, "fork"))
7188 event
->ws
.value
.related_pid
= read_ptid (++p1
, &p
);
7189 event
->ws
.kind
= TARGET_WAITKIND_FORKED
;
7191 else if (strprefix (p
, p1
, "vfork"))
7193 event
->ws
.value
.related_pid
= read_ptid (++p1
, &p
);
7194 event
->ws
.kind
= TARGET_WAITKIND_VFORKED
;
7196 else if (strprefix (p
, p1
, "vforkdone"))
7198 event
->ws
.kind
= TARGET_WAITKIND_VFORK_DONE
;
7199 p
= strchrnul (p1
+ 1, ';');
7201 else if (strprefix (p
, p1
, "exec"))
7204 char pathname
[PATH_MAX
];
7207 /* Determine the length of the execd pathname. */
7208 p
= unpack_varlen_hex (++p1
, &ignored
);
7209 pathlen
= (p
- p1
) / 2;
7211 /* Save the pathname for event reporting and for
7212 the next run command. */
7213 hex2bin (p1
, (gdb_byte
*) pathname
, pathlen
);
7214 pathname
[pathlen
] = '\0';
7216 /* This is freed during event handling. */
7217 event
->ws
.value
.execd_pathname
= xstrdup (pathname
);
7218 event
->ws
.kind
= TARGET_WAITKIND_EXECD
;
7220 /* Skip the registers included in this packet, since
7221 they may be for an architecture different from the
7222 one used by the original program. */
7225 else if (strprefix (p
, p1
, "create"))
7227 event
->ws
.kind
= TARGET_WAITKIND_THREAD_CREATED
;
7228 p
= strchrnul (p1
+ 1, ';');
7237 p
= strchrnul (p1
+ 1, ';');
7242 /* Maybe a real ``P'' register number. */
7243 p_temp
= unpack_varlen_hex (p
, &pnum
);
7244 /* If the first invalid character is the colon, we got a
7245 register number. Otherwise, it's an unknown stop
7249 /* If we haven't parsed the event's thread yet, find
7250 it now, in order to find the architecture of the
7251 reported expedited registers. */
7252 if (event
->ptid
== null_ptid
)
7254 const char *thr
= strstr (p1
+ 1, ";thread:");
7256 event
->ptid
= read_ptid (thr
+ strlen (";thread:"),
7260 /* Either the current thread hasn't changed,
7261 or the inferior is not multi-threaded.
7262 The event must be for the thread we last
7263 set as (or learned as being) current. */
7264 event
->ptid
= event
->rs
->general_thread
;
7270 inferior
*inf
= (event
->ptid
== null_ptid
7272 : find_inferior_ptid (event
->ptid
));
7273 /* If this is the first time we learn anything
7274 about this process, skip the registers
7275 included in this packet, since we don't yet
7276 know which architecture to use to parse them.
7277 We'll determine the architecture later when
7278 we process the stop reply and retrieve the
7279 target description, via
7280 remote_notice_new_inferior ->
7281 post_create_inferior. */
7284 p
= strchrnul (p1
+ 1, ';');
7289 event
->arch
= inf
->gdbarch
;
7290 rsa
= event
->rs
->get_remote_arch_state (event
->arch
);
7294 = packet_reg_from_pnum (event
->arch
, rsa
, pnum
);
7295 cached_reg_t cached_reg
;
7298 error (_("Remote sent bad register number %s: %s\n\
7300 hex_string (pnum
), p
, buf
);
7302 cached_reg
.num
= reg
->regnum
;
7303 cached_reg
.data
= (gdb_byte
*)
7304 xmalloc (register_size (event
->arch
, reg
->regnum
));
7307 fieldsize
= hex2bin (p
, cached_reg
.data
,
7308 register_size (event
->arch
, reg
->regnum
));
7310 if (fieldsize
< register_size (event
->arch
, reg
->regnum
))
7311 warning (_("Remote reply is too short: %s"), buf
);
7313 VEC_safe_push (cached_reg_t
, event
->regcache
, &cached_reg
);
7317 /* Not a number. Silently skip unknown optional
7319 p
= strchrnul (p1
+ 1, ';');
7324 error (_("Remote register badly formatted: %s\nhere: %s"),
7329 if (event
->ws
.kind
!= TARGET_WAITKIND_IGNORE
)
7333 case 'S': /* Old style status, just signal only. */
7337 event
->ws
.kind
= TARGET_WAITKIND_STOPPED
;
7338 sig
= (fromhex (buf
[1]) << 4) + fromhex (buf
[2]);
7339 if (GDB_SIGNAL_FIRST
<= sig
&& sig
< GDB_SIGNAL_LAST
)
7340 event
->ws
.value
.sig
= (enum gdb_signal
) sig
;
7342 event
->ws
.value
.sig
= GDB_SIGNAL_UNKNOWN
;
7345 case 'w': /* Thread exited. */
7350 event
->ws
.kind
= TARGET_WAITKIND_THREAD_EXITED
;
7351 p
= unpack_varlen_hex (&buf
[1], &value
);
7352 event
->ws
.value
.integer
= value
;
7354 error (_("stop reply packet badly formatted: %s"), buf
);
7355 event
->ptid
= read_ptid (++p
, NULL
);
7358 case 'W': /* Target exited. */
7365 /* GDB used to accept only 2 hex chars here. Stubs should
7366 only send more if they detect GDB supports multi-process
7368 p
= unpack_varlen_hex (&buf
[1], &value
);
7372 /* The remote process exited. */
7373 event
->ws
.kind
= TARGET_WAITKIND_EXITED
;
7374 event
->ws
.value
.integer
= value
;
7378 /* The remote process exited with a signal. */
7379 event
->ws
.kind
= TARGET_WAITKIND_SIGNALLED
;
7380 if (GDB_SIGNAL_FIRST
<= value
&& value
< GDB_SIGNAL_LAST
)
7381 event
->ws
.value
.sig
= (enum gdb_signal
) value
;
7383 event
->ws
.value
.sig
= GDB_SIGNAL_UNKNOWN
;
7386 /* If no process is specified, assume inferior_ptid. */
7387 pid
= ptid_get_pid (inferior_ptid
);
7396 else if (startswith (p
, "process:"))
7400 p
+= sizeof ("process:") - 1;
7401 unpack_varlen_hex (p
, &upid
);
7405 error (_("unknown stop reply packet: %s"), buf
);
7408 error (_("unknown stop reply packet: %s"), buf
);
7409 event
->ptid
= pid_to_ptid (pid
);
7413 event
->ws
.kind
= TARGET_WAITKIND_NO_RESUMED
;
7414 event
->ptid
= minus_one_ptid
;
7418 if (target_is_non_stop_p () && ptid_equal (event
->ptid
, null_ptid
))
7419 error (_("No process or thread specified in stop reply: %s"), buf
);
7422 /* When the stub wants to tell GDB about a new notification reply, it
7423 sends a notification (%Stop, for example). Those can come it at
7424 any time, hence, we have to make sure that any pending
7425 putpkt/getpkt sequence we're making is finished, before querying
7426 the stub for more events with the corresponding ack command
7427 (vStopped, for example). E.g., if we started a vStopped sequence
7428 immediately upon receiving the notification, something like this
7436 1.6) <-- (registers reply to step #1.3)
7438 Obviously, the reply in step #1.6 would be unexpected to a vStopped
7441 To solve this, whenever we parse a %Stop notification successfully,
7442 we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
7443 doing whatever we were doing:
7449 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
7450 2.5) <-- (registers reply to step #2.3)
7452 Eventualy after step #2.5, we return to the event loop, which
7453 notices there's an event on the
7454 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
7455 associated callback --- the function below. At this point, we're
7456 always safe to start a vStopped sequence. :
7459 2.7) <-- T05 thread:2
7465 remote_notif_get_pending_events (struct notif_client
*nc
)
7467 struct remote_state
*rs
= get_remote_state ();
7469 if (rs
->notif_state
->pending_event
[nc
->id
] != NULL
)
7472 fprintf_unfiltered (gdb_stdlog
,
7473 "notif: process: '%s' ack pending event\n",
7477 nc
->ack (nc
, rs
->buf
, rs
->notif_state
->pending_event
[nc
->id
]);
7478 rs
->notif_state
->pending_event
[nc
->id
] = NULL
;
7482 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
7483 if (strcmp (rs
->buf
, "OK") == 0)
7486 remote_notif_ack (nc
, rs
->buf
);
7492 fprintf_unfiltered (gdb_stdlog
,
7493 "notif: process: '%s' no pending reply\n",
7498 /* Called when it is decided that STOP_REPLY holds the info of the
7499 event that is to be returned to the core. This function always
7500 destroys STOP_REPLY. */
7503 process_stop_reply (struct stop_reply
*stop_reply
,
7504 struct target_waitstatus
*status
)
7508 *status
= stop_reply
->ws
;
7509 ptid
= stop_reply
->ptid
;
7511 /* If no thread/process was reported by the stub, assume the current
7513 if (ptid_equal (ptid
, null_ptid
))
7514 ptid
= inferior_ptid
;
7516 if (status
->kind
!= TARGET_WAITKIND_EXITED
7517 && status
->kind
!= TARGET_WAITKIND_SIGNALLED
7518 && status
->kind
!= TARGET_WAITKIND_NO_RESUMED
)
7520 /* Expedited registers. */
7521 if (stop_reply
->regcache
)
7523 struct regcache
*regcache
7524 = get_thread_arch_regcache (ptid
, stop_reply
->arch
);
7529 VEC_iterate (cached_reg_t
, stop_reply
->regcache
, ix
, reg
);
7532 regcache_raw_supply (regcache
, reg
->num
, reg
->data
);
7536 VEC_free (cached_reg_t
, stop_reply
->regcache
);
7539 remote_notice_new_inferior (ptid
, 0);
7540 remote_thread_info
*remote_thr
= get_remote_thread_info (ptid
);
7541 remote_thr
->core
= stop_reply
->core
;
7542 remote_thr
->stop_reason
= stop_reply
->stop_reason
;
7543 remote_thr
->watch_data_address
= stop_reply
->watch_data_address
;
7544 remote_thr
->vcont_resumed
= 0;
7547 stop_reply_xfree (stop_reply
);
7551 /* The non-stop mode version of target_wait. */
7554 remote_wait_ns (ptid_t ptid
, struct target_waitstatus
*status
, int options
)
7556 struct remote_state
*rs
= get_remote_state ();
7557 struct stop_reply
*stop_reply
;
7561 /* If in non-stop mode, get out of getpkt even if a
7562 notification is received. */
7564 ret
= getpkt_or_notif_sane (&rs
->buf
, &rs
->buf_size
,
7565 0 /* forever */, &is_notif
);
7568 if (ret
!= -1 && !is_notif
)
7571 case 'E': /* Error of some sort. */
7572 /* We're out of sync with the target now. Did it continue
7573 or not? We can't tell which thread it was in non-stop,
7574 so just ignore this. */
7575 warning (_("Remote failure reply: %s"), rs
->buf
);
7577 case 'O': /* Console output. */
7578 remote_console_output (rs
->buf
+ 1);
7581 warning (_("Invalid remote reply: %s"), rs
->buf
);
7585 /* Acknowledge a pending stop reply that may have arrived in the
7587 if (rs
->notif_state
->pending_event
[notif_client_stop
.id
] != NULL
)
7588 remote_notif_get_pending_events (¬if_client_stop
);
7590 /* If indeed we noticed a stop reply, we're done. */
7591 stop_reply
= queued_stop_reply (ptid
);
7592 if (stop_reply
!= NULL
)
7593 return process_stop_reply (stop_reply
, status
);
7595 /* Still no event. If we're just polling for an event, then
7596 return to the event loop. */
7597 if (options
& TARGET_WNOHANG
)
7599 status
->kind
= TARGET_WAITKIND_IGNORE
;
7600 return minus_one_ptid
;
7603 /* Otherwise do a blocking wait. */
7604 ret
= getpkt_or_notif_sane (&rs
->buf
, &rs
->buf_size
,
7605 1 /* forever */, &is_notif
);
7609 /* Wait until the remote machine stops, then return, storing status in
7610 STATUS just as `wait' would. */
7613 remote_wait_as (ptid_t ptid
, struct target_waitstatus
*status
, int options
)
7615 struct remote_state
*rs
= get_remote_state ();
7616 ptid_t event_ptid
= null_ptid
;
7618 struct stop_reply
*stop_reply
;
7622 status
->kind
= TARGET_WAITKIND_IGNORE
;
7623 status
->value
.integer
= 0;
7625 stop_reply
= queued_stop_reply (ptid
);
7626 if (stop_reply
!= NULL
)
7627 return process_stop_reply (stop_reply
, status
);
7629 if (rs
->cached_wait_status
)
7630 /* Use the cached wait status, but only once. */
7631 rs
->cached_wait_status
= 0;
7636 int forever
= ((options
& TARGET_WNOHANG
) == 0
7637 && wait_forever_enabled_p
);
7639 if (!rs
->waiting_for_stop_reply
)
7641 status
->kind
= TARGET_WAITKIND_NO_RESUMED
;
7642 return minus_one_ptid
;
7645 /* FIXME: cagney/1999-09-27: If we're in async mode we should
7646 _never_ wait for ever -> test on target_is_async_p().
7647 However, before we do that we need to ensure that the caller
7648 knows how to take the target into/out of async mode. */
7649 ret
= getpkt_or_notif_sane (&rs
->buf
, &rs
->buf_size
,
7650 forever
, &is_notif
);
7652 /* GDB gets a notification. Return to core as this event is
7654 if (ret
!= -1 && is_notif
)
7655 return minus_one_ptid
;
7657 if (ret
== -1 && (options
& TARGET_WNOHANG
) != 0)
7658 return minus_one_ptid
;
7663 /* Assume that the target has acknowledged Ctrl-C unless we receive
7664 an 'F' or 'O' packet. */
7665 if (buf
[0] != 'F' && buf
[0] != 'O')
7666 rs
->ctrlc_pending_p
= 0;
7670 case 'E': /* Error of some sort. */
7671 /* We're out of sync with the target now. Did it continue or
7672 not? Not is more likely, so report a stop. */
7673 rs
->waiting_for_stop_reply
= 0;
7675 warning (_("Remote failure reply: %s"), buf
);
7676 status
->kind
= TARGET_WAITKIND_STOPPED
;
7677 status
->value
.sig
= GDB_SIGNAL_0
;
7679 case 'F': /* File-I/O request. */
7680 /* GDB may access the inferior memory while handling the File-I/O
7681 request, but we don't want GDB accessing memory while waiting
7682 for a stop reply. See the comments in putpkt_binary. Set
7683 waiting_for_stop_reply to 0 temporarily. */
7684 rs
->waiting_for_stop_reply
= 0;
7685 remote_fileio_request (buf
, rs
->ctrlc_pending_p
);
7686 rs
->ctrlc_pending_p
= 0;
7687 /* GDB handled the File-I/O request, and the target is running
7688 again. Keep waiting for events. */
7689 rs
->waiting_for_stop_reply
= 1;
7691 case 'N': case 'T': case 'S': case 'X': case 'W':
7693 struct stop_reply
*stop_reply
;
7695 /* There is a stop reply to handle. */
7696 rs
->waiting_for_stop_reply
= 0;
7699 = (struct stop_reply
*) remote_notif_parse (¬if_client_stop
,
7702 event_ptid
= process_stop_reply (stop_reply
, status
);
7705 case 'O': /* Console output. */
7706 remote_console_output (buf
+ 1);
7709 if (rs
->last_sent_signal
!= GDB_SIGNAL_0
)
7711 /* Zero length reply means that we tried 'S' or 'C' and the
7712 remote system doesn't support it. */
7713 target_terminal::ours_for_output ();
7715 ("Can't send signals to this remote system. %s not sent.\n",
7716 gdb_signal_to_name (rs
->last_sent_signal
));
7717 rs
->last_sent_signal
= GDB_SIGNAL_0
;
7718 target_terminal::inferior ();
7720 strcpy (buf
, rs
->last_sent_step
? "s" : "c");
7726 warning (_("Invalid remote reply: %s"), buf
);
7730 if (status
->kind
== TARGET_WAITKIND_NO_RESUMED
)
7731 return minus_one_ptid
;
7732 else if (status
->kind
== TARGET_WAITKIND_IGNORE
)
7734 /* Nothing interesting happened. If we're doing a non-blocking
7735 poll, we're done. Otherwise, go back to waiting. */
7736 if (options
& TARGET_WNOHANG
)
7737 return minus_one_ptid
;
7741 else if (status
->kind
!= TARGET_WAITKIND_EXITED
7742 && status
->kind
!= TARGET_WAITKIND_SIGNALLED
)
7744 if (!ptid_equal (event_ptid
, null_ptid
))
7745 record_currthread (rs
, event_ptid
);
7747 event_ptid
= inferior_ptid
;
7750 /* A process exit. Invalidate our notion of current thread. */
7751 record_currthread (rs
, minus_one_ptid
);
7756 /* Wait until the remote machine stops, then return, storing status in
7757 STATUS just as `wait' would. */
7760 remote_target::wait (ptid_t ptid
, struct target_waitstatus
*status
, int options
)
7764 if (target_is_non_stop_p ())
7765 event_ptid
= remote_wait_ns (ptid
, status
, options
);
7767 event_ptid
= remote_wait_as (ptid
, status
, options
);
7769 if (target_is_async_p ())
7771 /* If there are are events left in the queue tell the event loop
7773 if (!QUEUE_is_empty (stop_reply_p
, stop_reply_queue
))
7774 mark_async_event_handler (remote_async_inferior_event_token
);
7780 /* Fetch a single register using a 'p' packet. */
7783 fetch_register_using_p (struct regcache
*regcache
, struct packet_reg
*reg
)
7785 struct gdbarch
*gdbarch
= regcache
->arch ();
7786 struct remote_state
*rs
= get_remote_state ();
7788 gdb_byte
*regp
= (gdb_byte
*) alloca (register_size (gdbarch
, reg
->regnum
));
7791 if (packet_support (PACKET_p
) == PACKET_DISABLE
)
7794 if (reg
->pnum
== -1)
7799 p
+= hexnumstr (p
, reg
->pnum
);
7802 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
7806 switch (packet_ok (buf
, &remote_protocol_packets
[PACKET_p
]))
7810 case PACKET_UNKNOWN
:
7813 error (_("Could not fetch register \"%s\"; remote failure reply '%s'"),
7814 gdbarch_register_name (regcache
->arch (),
7819 /* If this register is unfetchable, tell the regcache. */
7822 regcache_raw_supply (regcache
, reg
->regnum
, NULL
);
7826 /* Otherwise, parse and supply the value. */
7832 error (_("fetch_register_using_p: early buf termination"));
7834 regp
[i
++] = fromhex (p
[0]) * 16 + fromhex (p
[1]);
7837 regcache_raw_supply (regcache
, reg
->regnum
, regp
);
7841 /* Fetch the registers included in the target's 'g' packet. */
7844 send_g_packet (void)
7846 struct remote_state
*rs
= get_remote_state ();
7849 xsnprintf (rs
->buf
, get_remote_packet_size (), "g");
7851 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
7852 if (packet_check_result (rs
->buf
) == PACKET_ERROR
)
7853 error (_("Could not read registers; remote failure reply '%s'"),
7856 /* We can get out of synch in various cases. If the first character
7857 in the buffer is not a hex character, assume that has happened
7858 and try to fetch another packet to read. */
7859 while ((rs
->buf
[0] < '0' || rs
->buf
[0] > '9')
7860 && (rs
->buf
[0] < 'A' || rs
->buf
[0] > 'F')
7861 && (rs
->buf
[0] < 'a' || rs
->buf
[0] > 'f')
7862 && rs
->buf
[0] != 'x') /* New: unavailable register value. */
7865 fprintf_unfiltered (gdb_stdlog
,
7866 "Bad register packet; fetching a new packet\n");
7867 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
7870 buf_len
= strlen (rs
->buf
);
7872 /* Sanity check the received packet. */
7873 if (buf_len
% 2 != 0)
7874 error (_("Remote 'g' packet reply is of odd length: %s"), rs
->buf
);
7880 process_g_packet (struct regcache
*regcache
)
7882 struct gdbarch
*gdbarch
= regcache
->arch ();
7883 struct remote_state
*rs
= get_remote_state ();
7884 remote_arch_state
*rsa
= rs
->get_remote_arch_state (gdbarch
);
7889 buf_len
= strlen (rs
->buf
);
7891 /* Further sanity checks, with knowledge of the architecture. */
7892 if (buf_len
> 2 * rsa
->sizeof_g_packet
)
7893 error (_("Remote 'g' packet reply is too long (expected %ld bytes, got %d "
7894 "bytes): %s"), rsa
->sizeof_g_packet
, buf_len
/ 2, rs
->buf
);
7896 /* Save the size of the packet sent to us by the target. It is used
7897 as a heuristic when determining the max size of packets that the
7898 target can safely receive. */
7899 if (rsa
->actual_register_packet_size
== 0)
7900 rsa
->actual_register_packet_size
= buf_len
;
7902 /* If this is smaller than we guessed the 'g' packet would be,
7903 update our records. A 'g' reply that doesn't include a register's
7904 value implies either that the register is not available, or that
7905 the 'p' packet must be used. */
7906 if (buf_len
< 2 * rsa
->sizeof_g_packet
)
7908 long sizeof_g_packet
= buf_len
/ 2;
7910 for (i
= 0; i
< gdbarch_num_regs (gdbarch
); i
++)
7912 long offset
= rsa
->regs
[i
].offset
;
7913 long reg_size
= register_size (gdbarch
, i
);
7915 if (rsa
->regs
[i
].pnum
== -1)
7918 if (offset
>= sizeof_g_packet
)
7919 rsa
->regs
[i
].in_g_packet
= 0;
7920 else if (offset
+ reg_size
> sizeof_g_packet
)
7921 error (_("Truncated register %d in remote 'g' packet"), i
);
7923 rsa
->regs
[i
].in_g_packet
= 1;
7926 /* Looks valid enough, we can assume this is the correct length
7927 for a 'g' packet. It's important not to adjust
7928 rsa->sizeof_g_packet if we have truncated registers otherwise
7929 this "if" won't be run the next time the method is called
7930 with a packet of the same size and one of the internal errors
7931 below will trigger instead. */
7932 rsa
->sizeof_g_packet
= sizeof_g_packet
;
7935 regs
= (char *) alloca (rsa
->sizeof_g_packet
);
7937 /* Unimplemented registers read as all bits zero. */
7938 memset (regs
, 0, rsa
->sizeof_g_packet
);
7940 /* Reply describes registers byte by byte, each byte encoded as two
7941 hex characters. Suck them all up, then supply them to the
7942 register cacheing/storage mechanism. */
7945 for (i
= 0; i
< rsa
->sizeof_g_packet
; i
++)
7947 if (p
[0] == 0 || p
[1] == 0)
7948 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
7949 internal_error (__FILE__
, __LINE__
,
7950 _("unexpected end of 'g' packet reply"));
7952 if (p
[0] == 'x' && p
[1] == 'x')
7953 regs
[i
] = 0; /* 'x' */
7955 regs
[i
] = fromhex (p
[0]) * 16 + fromhex (p
[1]);
7959 for (i
= 0; i
< gdbarch_num_regs (gdbarch
); i
++)
7961 struct packet_reg
*r
= &rsa
->regs
[i
];
7962 long reg_size
= register_size (gdbarch
, i
);
7966 if ((r
->offset
+ reg_size
) * 2 > strlen (rs
->buf
))
7967 /* This shouldn't happen - we adjusted in_g_packet above. */
7968 internal_error (__FILE__
, __LINE__
,
7969 _("unexpected end of 'g' packet reply"));
7970 else if (rs
->buf
[r
->offset
* 2] == 'x')
7972 gdb_assert (r
->offset
* 2 < strlen (rs
->buf
));
7973 /* The register isn't available, mark it as such (at
7974 the same time setting the value to zero). */
7975 regcache_raw_supply (regcache
, r
->regnum
, NULL
);
7978 regcache_raw_supply (regcache
, r
->regnum
,
7985 fetch_registers_using_g (struct regcache
*regcache
)
7988 process_g_packet (regcache
);
7991 /* Make the remote selected traceframe match GDB's selected
7995 set_remote_traceframe (void)
7998 struct remote_state
*rs
= get_remote_state ();
8000 if (rs
->remote_traceframe_number
== get_traceframe_number ())
8003 /* Avoid recursion, remote_trace_find calls us again. */
8004 rs
->remote_traceframe_number
= get_traceframe_number ();
8006 newnum
= target_trace_find (tfind_number
,
8007 get_traceframe_number (), 0, 0, NULL
);
8009 /* Should not happen. If it does, all bets are off. */
8010 if (newnum
!= get_traceframe_number ())
8011 warning (_("could not set remote traceframe"));
8015 remote_target::fetch_registers (struct regcache
*regcache
, int regnum
)
8017 struct gdbarch
*gdbarch
= regcache
->arch ();
8018 struct remote_state
*rs
= get_remote_state ();
8019 remote_arch_state
*rsa
= rs
->get_remote_arch_state (gdbarch
);
8022 set_remote_traceframe ();
8023 set_general_thread (regcache_get_ptid (regcache
));
8027 packet_reg
*reg
= packet_reg_from_regnum (gdbarch
, rsa
, regnum
);
8029 gdb_assert (reg
!= NULL
);
8031 /* If this register might be in the 'g' packet, try that first -
8032 we are likely to read more than one register. If this is the
8033 first 'g' packet, we might be overly optimistic about its
8034 contents, so fall back to 'p'. */
8035 if (reg
->in_g_packet
)
8037 fetch_registers_using_g (regcache
);
8038 if (reg
->in_g_packet
)
8042 if (fetch_register_using_p (regcache
, reg
))
8045 /* This register is not available. */
8046 regcache_raw_supply (regcache
, reg
->regnum
, NULL
);
8051 fetch_registers_using_g (regcache
);
8053 for (i
= 0; i
< gdbarch_num_regs (gdbarch
); i
++)
8054 if (!rsa
->regs
[i
].in_g_packet
)
8055 if (!fetch_register_using_p (regcache
, &rsa
->regs
[i
]))
8057 /* This register is not available. */
8058 regcache_raw_supply (regcache
, i
, NULL
);
8062 /* Prepare to store registers. Since we may send them all (using a
8063 'G' request), we have to read out the ones we don't want to change
8067 remote_target::prepare_to_store (struct regcache
*regcache
)
8069 struct remote_state
*rs
= get_remote_state ();
8070 remote_arch_state
*rsa
= rs
->get_remote_arch_state (regcache
->arch ());
8073 /* Make sure the entire registers array is valid. */
8074 switch (packet_support (PACKET_P
))
8076 case PACKET_DISABLE
:
8077 case PACKET_SUPPORT_UNKNOWN
:
8078 /* Make sure all the necessary registers are cached. */
8079 for (i
= 0; i
< gdbarch_num_regs (regcache
->arch ()); i
++)
8080 if (rsa
->regs
[i
].in_g_packet
)
8081 regcache_raw_update (regcache
, rsa
->regs
[i
].regnum
);
8088 /* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
8089 packet was not recognized. */
8092 store_register_using_P (const struct regcache
*regcache
,
8093 struct packet_reg
*reg
)
8095 struct gdbarch
*gdbarch
= regcache
->arch ();
8096 struct remote_state
*rs
= get_remote_state ();
8097 /* Try storing a single register. */
8098 char *buf
= rs
->buf
;
8099 gdb_byte
*regp
= (gdb_byte
*) alloca (register_size (gdbarch
, reg
->regnum
));
8102 if (packet_support (PACKET_P
) == PACKET_DISABLE
)
8105 if (reg
->pnum
== -1)
8108 xsnprintf (buf
, get_remote_packet_size (), "P%s=", phex_nz (reg
->pnum
, 0));
8109 p
= buf
+ strlen (buf
);
8110 regcache_raw_collect (regcache
, reg
->regnum
, regp
);
8111 bin2hex (regp
, p
, register_size (gdbarch
, reg
->regnum
));
8113 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
8115 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_P
]))
8120 error (_("Could not write register \"%s\"; remote failure reply '%s'"),
8121 gdbarch_register_name (gdbarch
, reg
->regnum
), rs
->buf
);
8122 case PACKET_UNKNOWN
:
8125 internal_error (__FILE__
, __LINE__
, _("Bad result from packet_ok"));
8129 /* Store register REGNUM, or all registers if REGNUM == -1, from the
8130 contents of the register cache buffer. FIXME: ignores errors. */
8133 store_registers_using_G (const struct regcache
*regcache
)
8135 struct remote_state
*rs
= get_remote_state ();
8136 remote_arch_state
*rsa
= rs
->get_remote_arch_state (regcache
->arch ());
8140 /* Extract all the registers in the regcache copying them into a
8145 regs
= (gdb_byte
*) alloca (rsa
->sizeof_g_packet
);
8146 memset (regs
, 0, rsa
->sizeof_g_packet
);
8147 for (i
= 0; i
< gdbarch_num_regs (regcache
->arch ()); i
++)
8149 struct packet_reg
*r
= &rsa
->regs
[i
];
8152 regcache_raw_collect (regcache
, r
->regnum
, regs
+ r
->offset
);
8156 /* Command describes registers byte by byte,
8157 each byte encoded as two hex characters. */
8160 bin2hex (regs
, p
, rsa
->sizeof_g_packet
);
8162 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
8163 if (packet_check_result (rs
->buf
) == PACKET_ERROR
)
8164 error (_("Could not write registers; remote failure reply '%s'"),
8168 /* Store register REGNUM, or all registers if REGNUM == -1, from the contents
8169 of the register cache buffer. FIXME: ignores errors. */
8172 remote_target::store_registers (struct regcache
*regcache
, int regnum
)
8174 struct gdbarch
*gdbarch
= regcache
->arch ();
8175 struct remote_state
*rs
= get_remote_state ();
8176 remote_arch_state
*rsa
= rs
->get_remote_arch_state (gdbarch
);
8179 set_remote_traceframe ();
8180 set_general_thread (regcache_get_ptid (regcache
));
8184 packet_reg
*reg
= packet_reg_from_regnum (gdbarch
, rsa
, regnum
);
8186 gdb_assert (reg
!= NULL
);
8188 /* Always prefer to store registers using the 'P' packet if
8189 possible; we often change only a small number of registers.
8190 Sometimes we change a larger number; we'd need help from a
8191 higher layer to know to use 'G'. */
8192 if (store_register_using_P (regcache
, reg
))
8195 /* For now, don't complain if we have no way to write the
8196 register. GDB loses track of unavailable registers too
8197 easily. Some day, this may be an error. We don't have
8198 any way to read the register, either... */
8199 if (!reg
->in_g_packet
)
8202 store_registers_using_G (regcache
);
8206 store_registers_using_G (regcache
);
8208 for (i
= 0; i
< gdbarch_num_regs (gdbarch
); i
++)
8209 if (!rsa
->regs
[i
].in_g_packet
)
8210 if (!store_register_using_P (regcache
, &rsa
->regs
[i
]))
8211 /* See above for why we do not issue an error here. */
8216 /* Return the number of hex digits in num. */
8219 hexnumlen (ULONGEST num
)
8223 for (i
= 0; num
!= 0; i
++)
8226 return std::max (i
, 1);
8229 /* Set BUF to the minimum number of hex digits representing NUM. */
8232 hexnumstr (char *buf
, ULONGEST num
)
8234 int len
= hexnumlen (num
);
8236 return hexnumnstr (buf
, num
, len
);
8240 /* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
8243 hexnumnstr (char *buf
, ULONGEST num
, int width
)
8249 for (i
= width
- 1; i
>= 0; i
--)
8251 buf
[i
] = "0123456789abcdef"[(num
& 0xf)];
8258 /* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
8261 remote_address_masked (CORE_ADDR addr
)
8263 unsigned int address_size
= remote_address_size
;
8265 /* If "remoteaddresssize" was not set, default to target address size. */
8267 address_size
= gdbarch_addr_bit (target_gdbarch ());
8269 if (address_size
> 0
8270 && address_size
< (sizeof (ULONGEST
) * 8))
8272 /* Only create a mask when that mask can safely be constructed
8273 in a ULONGEST variable. */
8276 mask
= (mask
<< address_size
) - 1;
8282 /* Determine whether the remote target supports binary downloading.
8283 This is accomplished by sending a no-op memory write of zero length
8284 to the target at the specified address. It does not suffice to send
8285 the whole packet, since many stubs strip the eighth bit and
8286 subsequently compute a wrong checksum, which causes real havoc with
8289 NOTE: This can still lose if the serial line is not eight-bit
8290 clean. In cases like this, the user should clear "remote
8294 check_binary_download (CORE_ADDR addr
)
8296 struct remote_state
*rs
= get_remote_state ();
8298 switch (packet_support (PACKET_X
))
8300 case PACKET_DISABLE
:
8304 case PACKET_SUPPORT_UNKNOWN
:
8310 p
+= hexnumstr (p
, (ULONGEST
) addr
);
8312 p
+= hexnumstr (p
, (ULONGEST
) 0);
8316 putpkt_binary (rs
->buf
, (int) (p
- rs
->buf
));
8317 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
8319 if (rs
->buf
[0] == '\0')
8322 fprintf_unfiltered (gdb_stdlog
,
8323 "binary downloading NOT "
8324 "supported by target\n");
8325 remote_protocol_packets
[PACKET_X
].support
= PACKET_DISABLE
;
8330 fprintf_unfiltered (gdb_stdlog
,
8331 "binary downloading supported by target\n");
8332 remote_protocol_packets
[PACKET_X
].support
= PACKET_ENABLE
;
8339 /* Helper function to resize the payload in order to try to get a good
8340 alignment. We try to write an amount of data such that the next write will
8341 start on an address aligned on REMOTE_ALIGN_WRITES. */
8344 align_for_efficient_write (int todo
, CORE_ADDR memaddr
)
8346 return ((memaddr
+ todo
) & ~(REMOTE_ALIGN_WRITES
- 1)) - memaddr
;
8349 /* Write memory data directly to the remote machine.
8350 This does not inform the data cache; the data cache uses this.
8351 HEADER is the starting part of the packet.
8352 MEMADDR is the address in the remote memory space.
8353 MYADDR is the address of the buffer in our space.
8354 LEN_UNITS is the number of addressable units to write.
8355 UNIT_SIZE is the length in bytes of an addressable unit.
8356 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
8357 should send data as binary ('X'), or hex-encoded ('M').
8359 The function creates packet of the form
8360 <HEADER><ADDRESS>,<LENGTH>:<DATA>
8362 where encoding of <DATA> is terminated by PACKET_FORMAT.
8364 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
8367 Return the transferred status, error or OK (an
8368 'enum target_xfer_status' value). Save the number of addressable units
8369 transferred in *XFERED_LEN_UNITS. Only transfer a single packet.
8371 On a platform with an addressable memory size of 2 bytes (UNIT_SIZE == 2), an
8372 exchange between gdb and the stub could look like (?? in place of the
8378 -> $M1000,3:eeeeffffeeee#??
8382 <- eeeeffffeeeedddd */
8384 static enum target_xfer_status
8385 remote_write_bytes_aux (const char *header
, CORE_ADDR memaddr
,
8386 const gdb_byte
*myaddr
, ULONGEST len_units
,
8387 int unit_size
, ULONGEST
*xfered_len_units
,
8388 char packet_format
, int use_length
)
8390 struct remote_state
*rs
= get_remote_state ();
8396 int payload_capacity_bytes
;
8397 int payload_length_bytes
;
8399 if (packet_format
!= 'X' && packet_format
!= 'M')
8400 internal_error (__FILE__
, __LINE__
,
8401 _("remote_write_bytes_aux: bad packet format"));
8404 return TARGET_XFER_EOF
;
8406 payload_capacity_bytes
= get_memory_write_packet_size ();
8408 /* The packet buffer will be large enough for the payload;
8409 get_memory_packet_size ensures this. */
8412 /* Compute the size of the actual payload by subtracting out the
8413 packet header and footer overhead: "$M<memaddr>,<len>:...#nn". */
8415 payload_capacity_bytes
-= strlen ("$,:#NN");
8417 /* The comma won't be used. */
8418 payload_capacity_bytes
+= 1;
8419 payload_capacity_bytes
-= strlen (header
);
8420 payload_capacity_bytes
-= hexnumlen (memaddr
);
8422 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
8424 strcat (rs
->buf
, header
);
8425 p
= rs
->buf
+ strlen (header
);
8427 /* Compute a best guess of the number of bytes actually transfered. */
8428 if (packet_format
== 'X')
8430 /* Best guess at number of bytes that will fit. */
8431 todo_units
= std::min (len_units
,
8432 (ULONGEST
) payload_capacity_bytes
/ unit_size
);
8434 payload_capacity_bytes
-= hexnumlen (todo_units
);
8435 todo_units
= std::min (todo_units
, payload_capacity_bytes
/ unit_size
);
8439 /* Number of bytes that will fit. */
8441 = std::min (len_units
,
8442 (ULONGEST
) (payload_capacity_bytes
/ unit_size
) / 2);
8444 payload_capacity_bytes
-= hexnumlen (todo_units
);
8445 todo_units
= std::min (todo_units
,
8446 (payload_capacity_bytes
/ unit_size
) / 2);
8449 if (todo_units
<= 0)
8450 internal_error (__FILE__
, __LINE__
,
8451 _("minimum packet size too small to write data"));
8453 /* If we already need another packet, then try to align the end
8454 of this packet to a useful boundary. */
8455 if (todo_units
> 2 * REMOTE_ALIGN_WRITES
&& todo_units
< len_units
)
8456 todo_units
= align_for_efficient_write (todo_units
, memaddr
);
8458 /* Append "<memaddr>". */
8459 memaddr
= remote_address_masked (memaddr
);
8460 p
+= hexnumstr (p
, (ULONGEST
) memaddr
);
8467 /* Append the length and retain its location and size. It may need to be
8468 adjusted once the packet body has been created. */
8470 plenlen
= hexnumstr (p
, (ULONGEST
) todo_units
);
8478 /* Append the packet body. */
8479 if (packet_format
== 'X')
8481 /* Binary mode. Send target system values byte by byte, in
8482 increasing byte addresses. Only escape certain critical
8484 payload_length_bytes
=
8485 remote_escape_output (myaddr
, todo_units
, unit_size
, (gdb_byte
*) p
,
8486 &units_written
, payload_capacity_bytes
);
8488 /* If not all TODO units fit, then we'll need another packet. Make
8489 a second try to keep the end of the packet aligned. Don't do
8490 this if the packet is tiny. */
8491 if (units_written
< todo_units
&& units_written
> 2 * REMOTE_ALIGN_WRITES
)
8495 new_todo_units
= align_for_efficient_write (units_written
, memaddr
);
8497 if (new_todo_units
!= units_written
)
8498 payload_length_bytes
=
8499 remote_escape_output (myaddr
, new_todo_units
, unit_size
,
8500 (gdb_byte
*) p
, &units_written
,
8501 payload_capacity_bytes
);
8504 p
+= payload_length_bytes
;
8505 if (use_length
&& units_written
< todo_units
)
8507 /* Escape chars have filled up the buffer prematurely,
8508 and we have actually sent fewer units than planned.
8509 Fix-up the length field of the packet. Use the same
8510 number of characters as before. */
8511 plen
+= hexnumnstr (plen
, (ULONGEST
) units_written
,
8513 *plen
= ':'; /* overwrite \0 from hexnumnstr() */
8518 /* Normal mode: Send target system values byte by byte, in
8519 increasing byte addresses. Each byte is encoded as a two hex
8521 p
+= 2 * bin2hex (myaddr
, p
, todo_units
* unit_size
);
8522 units_written
= todo_units
;
8525 putpkt_binary (rs
->buf
, (int) (p
- rs
->buf
));
8526 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
8528 if (rs
->buf
[0] == 'E')
8529 return TARGET_XFER_E_IO
;
8531 /* Return UNITS_WRITTEN, not TODO_UNITS, in case escape chars caused us to
8532 send fewer units than we'd planned. */
8533 *xfered_len_units
= (ULONGEST
) units_written
;
8534 return (*xfered_len_units
!= 0) ? TARGET_XFER_OK
: TARGET_XFER_EOF
;
8537 /* Write memory data directly to the remote machine.
8538 This does not inform the data cache; the data cache uses this.
8539 MEMADDR is the address in the remote memory space.
8540 MYADDR is the address of the buffer in our space.
8541 LEN is the number of bytes.
8543 Return the transferred status, error or OK (an
8544 'enum target_xfer_status' value). Save the number of bytes
8545 transferred in *XFERED_LEN. Only transfer a single packet. */
8547 static enum target_xfer_status
8548 remote_write_bytes (CORE_ADDR memaddr
, const gdb_byte
*myaddr
, ULONGEST len
,
8549 int unit_size
, ULONGEST
*xfered_len
)
8551 const char *packet_format
= NULL
;
8553 /* Check whether the target supports binary download. */
8554 check_binary_download (memaddr
);
8556 switch (packet_support (PACKET_X
))
8559 packet_format
= "X";
8561 case PACKET_DISABLE
:
8562 packet_format
= "M";
8564 case PACKET_SUPPORT_UNKNOWN
:
8565 internal_error (__FILE__
, __LINE__
,
8566 _("remote_write_bytes: bad internal state"));
8568 internal_error (__FILE__
, __LINE__
, _("bad switch"));
8571 return remote_write_bytes_aux (packet_format
,
8572 memaddr
, myaddr
, len
, unit_size
, xfered_len
,
8573 packet_format
[0], 1);
8576 /* Read memory data directly from the remote machine.
8577 This does not use the data cache; the data cache uses this.
8578 MEMADDR is the address in the remote memory space.
8579 MYADDR is the address of the buffer in our space.
8580 LEN_UNITS is the number of addressable memory units to read..
8581 UNIT_SIZE is the length in bytes of an addressable unit.
8583 Return the transferred status, error or OK (an
8584 'enum target_xfer_status' value). Save the number of bytes
8585 transferred in *XFERED_LEN_UNITS.
8587 See the comment of remote_write_bytes_aux for an example of
8588 memory read/write exchange between gdb and the stub. */
8590 static enum target_xfer_status
8591 remote_read_bytes_1 (CORE_ADDR memaddr
, gdb_byte
*myaddr
, ULONGEST len_units
,
8592 int unit_size
, ULONGEST
*xfered_len_units
)
8594 struct remote_state
*rs
= get_remote_state ();
8595 int buf_size_bytes
; /* Max size of packet output buffer. */
8600 buf_size_bytes
= get_memory_read_packet_size ();
8601 /* The packet buffer will be large enough for the payload;
8602 get_memory_packet_size ensures this. */
8604 /* Number of units that will fit. */
8605 todo_units
= std::min (len_units
,
8606 (ULONGEST
) (buf_size_bytes
/ unit_size
) / 2);
8608 /* Construct "m"<memaddr>","<len>". */
8609 memaddr
= remote_address_masked (memaddr
);
8612 p
+= hexnumstr (p
, (ULONGEST
) memaddr
);
8614 p
+= hexnumstr (p
, (ULONGEST
) todo_units
);
8617 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
8618 if (rs
->buf
[0] == 'E'
8619 && isxdigit (rs
->buf
[1]) && isxdigit (rs
->buf
[2])
8620 && rs
->buf
[3] == '\0')
8621 return TARGET_XFER_E_IO
;
8622 /* Reply describes memory byte by byte, each byte encoded as two hex
8625 decoded_bytes
= hex2bin (p
, myaddr
, todo_units
* unit_size
);
8626 /* Return what we have. Let higher layers handle partial reads. */
8627 *xfered_len_units
= (ULONGEST
) (decoded_bytes
/ unit_size
);
8628 return (*xfered_len_units
!= 0) ? TARGET_XFER_OK
: TARGET_XFER_EOF
;
8631 /* Using the set of read-only target sections of remote, read live
8634 For interface/parameters/return description see target.h,
8637 static enum target_xfer_status
8638 remote_xfer_live_readonly_partial (struct target_ops
*ops
, gdb_byte
*readbuf
,
8639 ULONGEST memaddr
, ULONGEST len
,
8640 int unit_size
, ULONGEST
*xfered_len
)
8642 struct target_section
*secp
;
8643 struct target_section_table
*table
;
8645 secp
= target_section_by_addr (ops
, memaddr
);
8647 && (bfd_get_section_flags (secp
->the_bfd_section
->owner
,
8648 secp
->the_bfd_section
)
8651 struct target_section
*p
;
8652 ULONGEST memend
= memaddr
+ len
;
8654 table
= target_get_section_table (ops
);
8656 for (p
= table
->sections
; p
< table
->sections_end
; p
++)
8658 if (memaddr
>= p
->addr
)
8660 if (memend
<= p
->endaddr
)
8662 /* Entire transfer is within this section. */
8663 return remote_read_bytes_1 (memaddr
, readbuf
, len
, unit_size
,
8666 else if (memaddr
>= p
->endaddr
)
8668 /* This section ends before the transfer starts. */
8673 /* This section overlaps the transfer. Just do half. */
8674 len
= p
->endaddr
- memaddr
;
8675 return remote_read_bytes_1 (memaddr
, readbuf
, len
, unit_size
,
8682 return TARGET_XFER_EOF
;
8685 /* Similar to remote_read_bytes_1, but it reads from the remote stub
8686 first if the requested memory is unavailable in traceframe.
8687 Otherwise, fall back to remote_read_bytes_1. */
8689 static enum target_xfer_status
8690 remote_read_bytes (struct target_ops
*ops
, CORE_ADDR memaddr
,
8691 gdb_byte
*myaddr
, ULONGEST len
, int unit_size
,
8692 ULONGEST
*xfered_len
)
8695 return TARGET_XFER_EOF
;
8697 if (get_traceframe_number () != -1)
8699 std::vector
<mem_range
> available
;
8701 /* If we fail to get the set of available memory, then the
8702 target does not support querying traceframe info, and so we
8703 attempt reading from the traceframe anyway (assuming the
8704 target implements the old QTro packet then). */
8705 if (traceframe_available_memory (&available
, memaddr
, len
))
8707 if (available
.empty () || available
[0].start
!= memaddr
)
8709 enum target_xfer_status res
;
8711 /* Don't read into the traceframe's available
8713 if (!available
.empty ())
8715 LONGEST oldlen
= len
;
8717 len
= available
[0].start
- memaddr
;
8718 gdb_assert (len
<= oldlen
);
8721 /* This goes through the topmost target again. */
8722 res
= remote_xfer_live_readonly_partial (ops
, myaddr
, memaddr
,
8723 len
, unit_size
, xfered_len
);
8724 if (res
== TARGET_XFER_OK
)
8725 return TARGET_XFER_OK
;
8728 /* No use trying further, we know some memory starting
8729 at MEMADDR isn't available. */
8731 return (*xfered_len
!= 0) ?
8732 TARGET_XFER_UNAVAILABLE
: TARGET_XFER_EOF
;
8736 /* Don't try to read more than how much is available, in
8737 case the target implements the deprecated QTro packet to
8738 cater for older GDBs (the target's knowledge of read-only
8739 sections may be outdated by now). */
8740 len
= available
[0].length
;
8744 return remote_read_bytes_1 (memaddr
, myaddr
, len
, unit_size
, xfered_len
);
8749 /* Sends a packet with content determined by the printf format string
8750 FORMAT and the remaining arguments, then gets the reply. Returns
8751 whether the packet was a success, a failure, or unknown. */
8753 static enum packet_result
remote_send_printf (const char *format
, ...)
8754 ATTRIBUTE_PRINTF (1, 2);
8756 static enum packet_result
8757 remote_send_printf (const char *format
, ...)
8759 struct remote_state
*rs
= get_remote_state ();
8760 int max_size
= get_remote_packet_size ();
8763 va_start (ap
, format
);
8766 if (vsnprintf (rs
->buf
, max_size
, format
, ap
) >= max_size
)
8767 internal_error (__FILE__
, __LINE__
, _("Too long remote packet."));
8769 if (putpkt (rs
->buf
) < 0)
8770 error (_("Communication problem with target."));
8773 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
8775 return packet_check_result (rs
->buf
);
8778 /* Flash writing can take quite some time. We'll set
8779 effectively infinite timeout for flash operations.
8780 In future, we'll need to decide on a better approach. */
8781 static const int remote_flash_timeout
= 1000;
8784 remote_target::flash_erase (ULONGEST address
, LONGEST length
)
8786 int addr_size
= gdbarch_addr_bit (target_gdbarch ()) / 8;
8787 enum packet_result ret
;
8788 scoped_restore restore_timeout
8789 = make_scoped_restore (&remote_timeout
, remote_flash_timeout
);
8791 ret
= remote_send_printf ("vFlashErase:%s,%s",
8792 phex (address
, addr_size
),
8796 case PACKET_UNKNOWN
:
8797 error (_("Remote target does not support flash erase"));
8799 error (_("Error erasing flash with vFlashErase packet"));
8805 static enum target_xfer_status
8806 remote_flash_write (struct target_ops
*ops
, ULONGEST address
,
8807 ULONGEST length
, ULONGEST
*xfered_len
,
8808 const gdb_byte
*data
)
8810 scoped_restore restore_timeout
8811 = make_scoped_restore (&remote_timeout
, remote_flash_timeout
);
8812 return remote_write_bytes_aux ("vFlashWrite:", address
, data
, length
, 1,
8817 remote_target::flash_done ()
8821 scoped_restore restore_timeout
8822 = make_scoped_restore (&remote_timeout
, remote_flash_timeout
);
8824 ret
= remote_send_printf ("vFlashDone");
8828 case PACKET_UNKNOWN
:
8829 error (_("Remote target does not support vFlashDone"));
8831 error (_("Error finishing flash operation"));
8838 remote_target::files_info ()
8840 puts_filtered ("Debugging a target over a serial line.\n");
8843 /* Stuff for dealing with the packets which are part of this protocol.
8844 See comment at top of file for details. */
8846 /* Close/unpush the remote target, and throw a TARGET_CLOSE_ERROR
8847 error to higher layers. Called when a serial error is detected.
8848 The exception message is STRING, followed by a colon and a blank,
8849 the system error message for errno at function entry and final dot
8850 for output compatibility with throw_perror_with_name. */
8853 unpush_and_perror (const char *string
)
8855 int saved_errno
= errno
;
8857 remote_unpush_target ();
8858 throw_error (TARGET_CLOSE_ERROR
, "%s: %s.", string
,
8859 safe_strerror (saved_errno
));
8862 /* Read a single character from the remote end. The current quit
8863 handler is overridden to avoid quitting in the middle of packet
8864 sequence, as that would break communication with the remote server.
8865 See remote_serial_quit_handler for more detail. */
8868 readchar (int timeout
)
8871 struct remote_state
*rs
= get_remote_state ();
8874 scoped_restore restore_quit
8875 = make_scoped_restore (&quit_handler
, remote_serial_quit_handler
);
8877 rs
->got_ctrlc_during_io
= 0;
8879 ch
= serial_readchar (rs
->remote_desc
, timeout
);
8881 if (rs
->got_ctrlc_during_io
)
8888 switch ((enum serial_rc
) ch
)
8891 remote_unpush_target ();
8892 throw_error (TARGET_CLOSE_ERROR
, _("Remote connection closed"));
8895 unpush_and_perror (_("Remote communication error. "
8896 "Target disconnected."));
8898 case SERIAL_TIMEOUT
:
8904 /* Wrapper for serial_write that closes the target and throws if
8905 writing fails. The current quit handler is overridden to avoid
8906 quitting in the middle of packet sequence, as that would break
8907 communication with the remote server. See
8908 remote_serial_quit_handler for more detail. */
8911 remote_serial_write (const char *str
, int len
)
8913 struct remote_state
*rs
= get_remote_state ();
8915 scoped_restore restore_quit
8916 = make_scoped_restore (&quit_handler
, remote_serial_quit_handler
);
8918 rs
->got_ctrlc_during_io
= 0;
8920 if (serial_write (rs
->remote_desc
, str
, len
))
8922 unpush_and_perror (_("Remote communication error. "
8923 "Target disconnected."));
8926 if (rs
->got_ctrlc_during_io
)
8930 /* Return a string representing an escaped version of BUF, of len N.
8931 E.g. \n is converted to \\n, \t to \\t, etc. */
8934 escape_buffer (const char *buf
, int n
)
8938 stb
.putstrn (buf
, n
, '\\');
8939 return std::move (stb
.string ());
8942 /* Display a null-terminated packet on stdout, for debugging, using C
8946 print_packet (const char *buf
)
8948 puts_filtered ("\"");
8949 fputstr_filtered (buf
, '"', gdb_stdout
);
8950 puts_filtered ("\"");
8954 putpkt (const char *buf
)
8956 return putpkt_binary (buf
, strlen (buf
));
8959 /* Send a packet to the remote machine, with error checking. The data
8960 of the packet is in BUF. The string in BUF can be at most
8961 get_remote_packet_size () - 5 to account for the $, # and checksum,
8962 and for a possible /0 if we are debugging (remote_debug) and want
8963 to print the sent packet as a string. */
8966 putpkt_binary (const char *buf
, int cnt
)
8968 struct remote_state
*rs
= get_remote_state ();
8970 unsigned char csum
= 0;
8971 gdb::def_vector
<char> data (cnt
+ 6);
8972 char *buf2
= data
.data ();
8978 /* Catch cases like trying to read memory or listing threads while
8979 we're waiting for a stop reply. The remote server wouldn't be
8980 ready to handle this request, so we'd hang and timeout. We don't
8981 have to worry about this in synchronous mode, because in that
8982 case it's not possible to issue a command while the target is
8983 running. This is not a problem in non-stop mode, because in that
8984 case, the stub is always ready to process serial input. */
8985 if (!target_is_non_stop_p ()
8986 && target_is_async_p ()
8987 && rs
->waiting_for_stop_reply
)
8989 error (_("Cannot execute this command while the target is running.\n"
8990 "Use the \"interrupt\" command to stop the target\n"
8991 "and then try again."));
8994 /* We're sending out a new packet. Make sure we don't look at a
8995 stale cached response. */
8996 rs
->cached_wait_status
= 0;
8998 /* Copy the packet into buffer BUF2, encapsulating it
8999 and giving it a checksum. */
9004 for (i
= 0; i
< cnt
; i
++)
9010 *p
++ = tohex ((csum
>> 4) & 0xf);
9011 *p
++ = tohex (csum
& 0xf);
9013 /* Send it over and over until we get a positive ack. */
9017 int started_error_output
= 0;
9023 int len
= (int) (p
- buf2
);
9026 = escape_buffer (buf2
, std::min (len
, REMOTE_DEBUG_MAX_CHAR
));
9028 fprintf_unfiltered (gdb_stdlog
, "Sending packet: %s", str
.c_str ());
9030 if (len
> REMOTE_DEBUG_MAX_CHAR
)
9031 fprintf_unfiltered (gdb_stdlog
, "[%d bytes omitted]",
9032 len
- REMOTE_DEBUG_MAX_CHAR
);
9034 fprintf_unfiltered (gdb_stdlog
, "...");
9036 gdb_flush (gdb_stdlog
);
9038 remote_serial_write (buf2
, p
- buf2
);
9040 /* If this is a no acks version of the remote protocol, send the
9041 packet and move on. */
9045 /* Read until either a timeout occurs (-2) or '+' is read.
9046 Handle any notification that arrives in the mean time. */
9049 ch
= readchar (remote_timeout
);
9057 case SERIAL_TIMEOUT
:
9060 if (started_error_output
)
9062 putchar_unfiltered ('\n');
9063 started_error_output
= 0;
9072 fprintf_unfiltered (gdb_stdlog
, "Ack\n");
9076 fprintf_unfiltered (gdb_stdlog
, "Nak\n");
9078 case SERIAL_TIMEOUT
:
9082 break; /* Retransmit buffer. */
9086 fprintf_unfiltered (gdb_stdlog
,
9087 "Packet instead of Ack, ignoring it\n");
9088 /* It's probably an old response sent because an ACK
9089 was lost. Gobble up the packet and ack it so it
9090 doesn't get retransmitted when we resend this
9093 remote_serial_write ("+", 1);
9094 continue; /* Now, go look for +. */
9101 /* If we got a notification, handle it, and go back to looking
9103 /* We've found the start of a notification. Now
9104 collect the data. */
9105 val
= read_frame (&rs
->buf
, &rs
->buf_size
);
9110 std::string str
= escape_buffer (rs
->buf
, val
);
9112 fprintf_unfiltered (gdb_stdlog
,
9113 " Notification received: %s\n",
9116 handle_notification (rs
->notif_state
, rs
->buf
);
9117 /* We're in sync now, rewait for the ack. */
9124 if (!started_error_output
)
9126 started_error_output
= 1;
9127 fprintf_unfiltered (gdb_stdlog
, "putpkt: Junk: ");
9129 fputc_unfiltered (ch
& 0177, gdb_stdlog
);
9130 fprintf_unfiltered (gdb_stdlog
, "%s", rs
->buf
);
9139 if (!started_error_output
)
9141 started_error_output
= 1;
9142 fprintf_unfiltered (gdb_stdlog
, "putpkt: Junk: ");
9144 fputc_unfiltered (ch
& 0177, gdb_stdlog
);
9148 break; /* Here to retransmit. */
9152 /* This is wrong. If doing a long backtrace, the user should be
9153 able to get out next time we call QUIT, without anything as
9154 violent as interrupt_query. If we want to provide a way out of
9155 here without getting to the next QUIT, it should be based on
9156 hitting ^C twice as in remote_wait. */
9168 /* Come here after finding the start of a frame when we expected an
9169 ack. Do our best to discard the rest of this packet. */
9178 c
= readchar (remote_timeout
);
9181 case SERIAL_TIMEOUT
:
9182 /* Nothing we can do. */
9185 /* Discard the two bytes of checksum and stop. */
9186 c
= readchar (remote_timeout
);
9188 c
= readchar (remote_timeout
);
9191 case '*': /* Run length encoding. */
9192 /* Discard the repeat count. */
9193 c
= readchar (remote_timeout
);
9198 /* A regular character. */
9204 /* Come here after finding the start of the frame. Collect the rest
9205 into *BUF, verifying the checksum, length, and handling run-length
9206 compression. NUL terminate the buffer. If there is not enough room,
9207 expand *BUF using xrealloc.
9209 Returns -1 on error, number of characters in buffer (ignoring the
9210 trailing NULL) on success. (could be extended to return one of the
9211 SERIAL status indications). */
9214 read_frame (char **buf_p
,
9221 struct remote_state
*rs
= get_remote_state ();
9228 c
= readchar (remote_timeout
);
9231 case SERIAL_TIMEOUT
:
9233 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog
);
9237 fputs_filtered ("Saw new packet start in middle of old one\n",
9239 return -1; /* Start a new packet, count retries. */
9242 unsigned char pktcsum
;
9248 check_0
= readchar (remote_timeout
);
9250 check_1
= readchar (remote_timeout
);
9252 if (check_0
== SERIAL_TIMEOUT
|| check_1
== SERIAL_TIMEOUT
)
9255 fputs_filtered ("Timeout in checksum, retrying\n",
9259 else if (check_0
< 0 || check_1
< 0)
9262 fputs_filtered ("Communication error in checksum\n",
9267 /* Don't recompute the checksum; with no ack packets we
9268 don't have any way to indicate a packet retransmission
9273 pktcsum
= (fromhex (check_0
) << 4) | fromhex (check_1
);
9274 if (csum
== pktcsum
)
9279 std::string str
= escape_buffer (buf
, bc
);
9281 fprintf_unfiltered (gdb_stdlog
,
9282 "Bad checksum, sentsum=0x%x, "
9283 "csum=0x%x, buf=%s\n",
9284 pktcsum
, csum
, str
.c_str ());
9286 /* Number of characters in buffer ignoring trailing
9290 case '*': /* Run length encoding. */
9295 c
= readchar (remote_timeout
);
9297 repeat
= c
- ' ' + 3; /* Compute repeat count. */
9299 /* The character before ``*'' is repeated. */
9301 if (repeat
> 0 && repeat
<= 255 && bc
> 0)
9303 if (bc
+ repeat
- 1 >= *sizeof_buf
- 1)
9305 /* Make some more room in the buffer. */
9306 *sizeof_buf
+= repeat
;
9307 *buf_p
= (char *) xrealloc (*buf_p
, *sizeof_buf
);
9311 memset (&buf
[bc
], buf
[bc
- 1], repeat
);
9317 printf_filtered (_("Invalid run length encoding: %s\n"), buf
);
9321 if (bc
>= *sizeof_buf
- 1)
9323 /* Make some more room in the buffer. */
9325 *buf_p
= (char *) xrealloc (*buf_p
, *sizeof_buf
);
9336 /* Read a packet from the remote machine, with error checking, and
9337 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
9338 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
9339 rather than timing out; this is used (in synchronous mode) to wait
9340 for a target that is is executing user code to stop. */
9341 /* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
9342 don't have to change all the calls to getpkt to deal with the
9343 return value, because at the moment I don't know what the right
9344 thing to do it for those. */
9350 getpkt_sane (buf
, sizeof_buf
, forever
);
9354 /* Read a packet from the remote machine, with error checking, and
9355 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
9356 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
9357 rather than timing out; this is used (in synchronous mode) to wait
9358 for a target that is is executing user code to stop. If FOREVER ==
9359 0, this function is allowed to time out gracefully and return an
9360 indication of this to the caller. Otherwise return the number of
9361 bytes read. If EXPECTING_NOTIF, consider receiving a notification
9362 enough reason to return to the caller. *IS_NOTIF is an output
9363 boolean that indicates whether *BUF holds a notification or not
9364 (a regular packet). */
9367 getpkt_or_notif_sane_1 (char **buf
, long *sizeof_buf
, int forever
,
9368 int expecting_notif
, int *is_notif
)
9370 struct remote_state
*rs
= get_remote_state ();
9376 /* We're reading a new response. Make sure we don't look at a
9377 previously cached response. */
9378 rs
->cached_wait_status
= 0;
9380 strcpy (*buf
, "timeout");
9383 timeout
= watchdog
> 0 ? watchdog
: -1;
9384 else if (expecting_notif
)
9385 timeout
= 0; /* There should already be a char in the buffer. If
9388 timeout
= remote_timeout
;
9392 /* Process any number of notifications, and then return when
9396 /* If we get a timeout or bad checksum, retry up to MAX_TRIES
9398 for (tries
= 1; tries
<= MAX_TRIES
; tries
++)
9400 /* This can loop forever if the remote side sends us
9401 characters continuously, but if it pauses, we'll get
9402 SERIAL_TIMEOUT from readchar because of timeout. Then
9403 we'll count that as a retry.
9405 Note that even when forever is set, we will only wait
9406 forever prior to the start of a packet. After that, we
9407 expect characters to arrive at a brisk pace. They should
9408 show up within remote_timeout intervals. */
9410 c
= readchar (timeout
);
9411 while (c
!= SERIAL_TIMEOUT
&& c
!= '$' && c
!= '%');
9413 if (c
== SERIAL_TIMEOUT
)
9415 if (expecting_notif
)
9416 return -1; /* Don't complain, it's normal to not get
9417 anything in this case. */
9419 if (forever
) /* Watchdog went off? Kill the target. */
9421 remote_unpush_target ();
9422 throw_error (TARGET_CLOSE_ERROR
,
9423 _("Watchdog timeout has expired. "
9424 "Target detached."));
9427 fputs_filtered ("Timed out.\n", gdb_stdlog
);
9431 /* We've found the start of a packet or notification.
9432 Now collect the data. */
9433 val
= read_frame (buf
, sizeof_buf
);
9438 remote_serial_write ("-", 1);
9441 if (tries
> MAX_TRIES
)
9443 /* We have tried hard enough, and just can't receive the
9444 packet/notification. Give up. */
9445 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
9447 /* Skip the ack char if we're in no-ack mode. */
9448 if (!rs
->noack_mode
)
9449 remote_serial_write ("+", 1);
9453 /* If we got an ordinary packet, return that to our caller. */
9459 = escape_buffer (*buf
,
9460 std::min (val
, REMOTE_DEBUG_MAX_CHAR
));
9462 fprintf_unfiltered (gdb_stdlog
, "Packet received: %s",
9465 if (val
> REMOTE_DEBUG_MAX_CHAR
)
9466 fprintf_unfiltered (gdb_stdlog
, "[%d bytes omitted]",
9467 val
- REMOTE_DEBUG_MAX_CHAR
);
9469 fprintf_unfiltered (gdb_stdlog
, "\n");
9472 /* Skip the ack char if we're in no-ack mode. */
9473 if (!rs
->noack_mode
)
9474 remote_serial_write ("+", 1);
9475 if (is_notif
!= NULL
)
9480 /* If we got a notification, handle it, and go back to looking
9484 gdb_assert (c
== '%');
9488 std::string str
= escape_buffer (*buf
, val
);
9490 fprintf_unfiltered (gdb_stdlog
,
9491 " Notification received: %s\n",
9494 if (is_notif
!= NULL
)
9497 handle_notification (rs
->notif_state
, *buf
);
9499 /* Notifications require no acknowledgement. */
9501 if (expecting_notif
)
9508 getpkt_sane (char **buf
, long *sizeof_buf
, int forever
)
9510 return getpkt_or_notif_sane_1 (buf
, sizeof_buf
, forever
, 0, NULL
);
9514 getpkt_or_notif_sane (char **buf
, long *sizeof_buf
, int forever
,
9517 return getpkt_or_notif_sane_1 (buf
, sizeof_buf
, forever
, 1,
9521 /* Check whether EVENT is a fork event for the process specified
9522 by the pid passed in DATA, and if it is, kill the fork child. */
9525 kill_child_of_pending_fork (QUEUE (stop_reply_p
) *q
,
9526 QUEUE_ITER (stop_reply_p
) *iter
,
9530 struct queue_iter_param
*param
= (struct queue_iter_param
*) data
;
9531 int parent_pid
= *(int *) param
->input
;
9533 if (is_pending_fork_parent (&event
->ws
, parent_pid
, event
->ptid
))
9535 struct remote_state
*rs
= get_remote_state ();
9536 int child_pid
= ptid_get_pid (event
->ws
.value
.related_pid
);
9539 res
= remote_vkill (child_pid
, rs
);
9541 error (_("Can't kill fork child process %d"), child_pid
);
9547 /* Kill any new fork children of process PID that haven't been
9548 processed by follow_fork. */
9551 kill_new_fork_children (int pid
, struct remote_state
*rs
)
9553 struct thread_info
*thread
;
9554 struct notif_client
*notif
= ¬if_client_stop
;
9555 struct queue_iter_param param
;
9557 /* Kill the fork child threads of any threads in process PID
9558 that are stopped at a fork event. */
9559 ALL_NON_EXITED_THREADS (thread
)
9561 struct target_waitstatus
*ws
= &thread
->pending_follow
;
9563 if (is_pending_fork_parent (ws
, pid
, thread
->ptid
))
9565 struct remote_state
*rs
= get_remote_state ();
9566 int child_pid
= ptid_get_pid (ws
->value
.related_pid
);
9569 res
= remote_vkill (child_pid
, rs
);
9571 error (_("Can't kill fork child process %d"), child_pid
);
9575 /* Check for any pending fork events (not reported or processed yet)
9576 in process PID and kill those fork child threads as well. */
9577 remote_notif_get_pending_events (notif
);
9579 param
.output
= NULL
;
9580 QUEUE_iterate (stop_reply_p
, stop_reply_queue
,
9581 kill_child_of_pending_fork
, ¶m
);
9585 /* Target hook to kill the current inferior. */
9588 remote_target::kill ()
9591 int pid
= ptid_get_pid (inferior_ptid
);
9592 struct remote_state
*rs
= get_remote_state ();
9594 if (packet_support (PACKET_vKill
) != PACKET_DISABLE
)
9596 /* If we're stopped while forking and we haven't followed yet,
9597 kill the child task. We need to do this before killing the
9598 parent task because if this is a vfork then the parent will
9600 kill_new_fork_children (pid
, rs
);
9602 res
= remote_vkill (pid
, rs
);
9605 target_mourn_inferior (inferior_ptid
);
9610 /* If we are in 'target remote' mode and we are killing the only
9611 inferior, then we will tell gdbserver to exit and unpush the
9613 if (res
== -1 && !remote_multi_process_p (rs
)
9614 && number_of_live_inferiors () == 1)
9618 /* We've killed the remote end, we get to mourn it. If we are
9619 not in extended mode, mourning the inferior also unpushes
9620 remote_ops from the target stack, which closes the remote
9622 target_mourn_inferior (inferior_ptid
);
9627 error (_("Can't kill process"));
9630 /* Send a kill request to the target using the 'vKill' packet. */
9633 remote_vkill (int pid
, struct remote_state
*rs
)
9635 if (packet_support (PACKET_vKill
) == PACKET_DISABLE
)
9638 /* Tell the remote target to detach. */
9639 xsnprintf (rs
->buf
, get_remote_packet_size (), "vKill;%x", pid
);
9641 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
9643 switch (packet_ok (rs
->buf
,
9644 &remote_protocol_packets
[PACKET_vKill
]))
9650 case PACKET_UNKNOWN
:
9653 internal_error (__FILE__
, __LINE__
, _("Bad result from packet_ok"));
9657 /* Send a kill request to the target using the 'k' packet. */
9660 remote_kill_k (void)
9662 /* Catch errors so the user can quit from gdb even when we
9663 aren't on speaking terms with the remote system. */
9668 CATCH (ex
, RETURN_MASK_ERROR
)
9670 if (ex
.error
== TARGET_CLOSE_ERROR
)
9672 /* If we got an (EOF) error that caused the target
9673 to go away, then we're done, that's what we wanted.
9674 "k" is susceptible to cause a premature EOF, given
9675 that the remote server isn't actually required to
9676 reply to "k", and it can happen that it doesn't
9677 even get to reply ACK to the "k". */
9681 /* Otherwise, something went wrong. We didn't actually kill
9682 the target. Just propagate the exception, and let the
9683 user or higher layers decide what to do. */
9684 throw_exception (ex
);
9690 remote_target::mourn_inferior ()
9692 struct remote_state
*rs
= get_remote_state ();
9694 /* We're no longer interested in notification events of an inferior
9695 that exited or was killed/detached. */
9696 discard_pending_stop_replies (current_inferior ());
9698 /* In 'target remote' mode with one inferior, we close the connection. */
9699 if (!rs
->extended
&& number_of_live_inferiors () <= 1)
9701 unpush_target (this);
9703 /* remote_close takes care of doing most of the clean up. */
9704 generic_mourn_inferior ();
9708 /* In case we got here due to an error, but we're going to stay
9710 rs
->waiting_for_stop_reply
= 0;
9712 /* If the current general thread belonged to the process we just
9713 detached from or has exited, the remote side current general
9714 thread becomes undefined. Considering a case like this:
9716 - We just got here due to a detach.
9717 - The process that we're detaching from happens to immediately
9718 report a global breakpoint being hit in non-stop mode, in the
9719 same thread we had selected before.
9720 - GDB attaches to this process again.
9721 - This event happens to be the next event we handle.
9723 GDB would consider that the current general thread didn't need to
9724 be set on the stub side (with Hg), since for all it knew,
9725 GENERAL_THREAD hadn't changed.
9727 Notice that although in all-stop mode, the remote server always
9728 sets the current thread to the thread reporting the stop event,
9729 that doesn't happen in non-stop mode; in non-stop, the stub *must
9730 not* change the current thread when reporting a breakpoint hit,
9731 due to the decoupling of event reporting and event handling.
9733 To keep things simple, we always invalidate our notion of the
9735 record_currthread (rs
, minus_one_ptid
);
9737 /* Call common code to mark the inferior as not running. */
9738 generic_mourn_inferior ();
9740 if (!have_inferiors ())
9742 if (!remote_multi_process_p (rs
))
9744 /* Check whether the target is running now - some remote stubs
9745 automatically restart after kill. */
9747 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
9749 if (rs
->buf
[0] == 'S' || rs
->buf
[0] == 'T')
9751 /* Assume that the target has been restarted. Set
9752 inferior_ptid so that bits of core GDB realizes
9753 there's something here, e.g., so that the user can
9754 say "kill" again. */
9755 inferior_ptid
= magic_null_ptid
;
9762 extended_remote_target::supports_disable_randomization ()
9764 return packet_support (PACKET_QDisableRandomization
) == PACKET_ENABLE
;
9768 extended_remote_disable_randomization (int val
)
9770 struct remote_state
*rs
= get_remote_state ();
9773 xsnprintf (rs
->buf
, get_remote_packet_size (), "QDisableRandomization:%x",
9776 reply
= remote_get_noisy_reply ();
9778 error (_("Target does not support QDisableRandomization."));
9779 if (strcmp (reply
, "OK") != 0)
9780 error (_("Bogus QDisableRandomization reply from target: %s"), reply
);
9784 extended_remote_run (const std::string
&args
)
9786 struct remote_state
*rs
= get_remote_state ();
9788 const char *remote_exec_file
= get_remote_exec_file ();
9790 /* If the user has disabled vRun support, or we have detected that
9791 support is not available, do not try it. */
9792 if (packet_support (PACKET_vRun
) == PACKET_DISABLE
)
9795 strcpy (rs
->buf
, "vRun;");
9796 len
= strlen (rs
->buf
);
9798 if (strlen (remote_exec_file
) * 2 + len
>= get_remote_packet_size ())
9799 error (_("Remote file name too long for run packet"));
9800 len
+= 2 * bin2hex ((gdb_byte
*) remote_exec_file
, rs
->buf
+ len
,
9801 strlen (remote_exec_file
));
9807 gdb_argv
argv (args
.c_str ());
9808 for (i
= 0; argv
[i
] != NULL
; i
++)
9810 if (strlen (argv
[i
]) * 2 + 1 + len
>= get_remote_packet_size ())
9811 error (_("Argument list too long for run packet"));
9812 rs
->buf
[len
++] = ';';
9813 len
+= 2 * bin2hex ((gdb_byte
*) argv
[i
], rs
->buf
+ len
,
9818 rs
->buf
[len
++] = '\0';
9821 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
9823 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_vRun
]))
9826 /* We have a wait response. All is well. */
9828 case PACKET_UNKNOWN
:
9831 if (remote_exec_file
[0] == '\0')
9832 error (_("Running the default executable on the remote target failed; "
9833 "try \"set remote exec-file\"?"));
9835 error (_("Running \"%s\" on the remote target failed"),
9838 gdb_assert_not_reached (_("bad switch"));
9842 /* Helper function to send set/unset environment packets. ACTION is
9843 either "set" or "unset". PACKET is either "QEnvironmentHexEncoded"
9844 or "QEnvironmentUnsetVariable". VALUE is the variable to be
9848 send_environment_packet (struct remote_state
*rs
,
9853 /* Convert the environment variable to an hex string, which
9854 is the best format to be transmitted over the wire. */
9855 std::string encoded_value
= bin2hex ((const gdb_byte
*) value
,
9858 xsnprintf (rs
->buf
, get_remote_packet_size (),
9859 "%s:%s", packet
, encoded_value
.c_str ());
9862 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
9863 if (strcmp (rs
->buf
, "OK") != 0)
9864 warning (_("Unable to %s environment variable '%s' on remote."),
9868 /* Helper function to handle the QEnvironment* packets. */
9871 extended_remote_environment_support (struct remote_state
*rs
)
9873 if (packet_support (PACKET_QEnvironmentReset
) != PACKET_DISABLE
)
9875 putpkt ("QEnvironmentReset");
9876 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
9877 if (strcmp (rs
->buf
, "OK") != 0)
9878 warning (_("Unable to reset environment on remote."));
9881 gdb_environ
*e
= ¤t_inferior ()->environment
;
9883 if (packet_support (PACKET_QEnvironmentHexEncoded
) != PACKET_DISABLE
)
9884 for (const std::string
&el
: e
->user_set_env ())
9885 send_environment_packet (rs
, "set", "QEnvironmentHexEncoded",
9888 if (packet_support (PACKET_QEnvironmentUnset
) != PACKET_DISABLE
)
9889 for (const std::string
&el
: e
->user_unset_env ())
9890 send_environment_packet (rs
, "unset", "QEnvironmentUnset", el
.c_str ());
9893 /* Helper function to set the current working directory for the
9894 inferior in the remote target. */
9897 extended_remote_set_inferior_cwd (struct remote_state
*rs
)
9899 if (packet_support (PACKET_QSetWorkingDir
) != PACKET_DISABLE
)
9901 const char *inferior_cwd
= get_inferior_cwd ();
9903 if (inferior_cwd
!= NULL
)
9905 std::string hexpath
= bin2hex ((const gdb_byte
*) inferior_cwd
,
9906 strlen (inferior_cwd
));
9908 xsnprintf (rs
->buf
, get_remote_packet_size (),
9909 "QSetWorkingDir:%s", hexpath
.c_str ());
9913 /* An empty inferior_cwd means that the user wants us to
9914 reset the remote server's inferior's cwd. */
9915 xsnprintf (rs
->buf
, get_remote_packet_size (),
9920 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
9921 if (packet_ok (rs
->buf
,
9922 &remote_protocol_packets
[PACKET_QSetWorkingDir
])
9925 Remote replied unexpectedly while setting the inferior's working\n\
9932 /* In the extended protocol we want to be able to do things like
9933 "run" and have them basically work as expected. So we need
9934 a special create_inferior function. We support changing the
9935 executable file and the command line arguments, but not the
9939 extended_remote_target::create_inferior (const char *exec_file
,
9940 const std::string
&args
,
9941 char **env
, int from_tty
)
9945 struct remote_state
*rs
= get_remote_state ();
9946 const char *remote_exec_file
= get_remote_exec_file ();
9948 /* If running asynchronously, register the target file descriptor
9949 with the event loop. */
9950 if (target_can_async_p ())
9953 /* Disable address space randomization if requested (and supported). */
9954 if (supports_disable_randomization ())
9955 extended_remote_disable_randomization (disable_randomization
);
9957 /* If startup-with-shell is on, we inform gdbserver to start the
9958 remote inferior using a shell. */
9959 if (packet_support (PACKET_QStartupWithShell
) != PACKET_DISABLE
)
9961 xsnprintf (rs
->buf
, get_remote_packet_size (),
9962 "QStartupWithShell:%d", startup_with_shell
? 1 : 0);
9964 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
9965 if (strcmp (rs
->buf
, "OK") != 0)
9967 Remote replied unexpectedly while setting startup-with-shell: %s"),
9971 extended_remote_environment_support (rs
);
9973 extended_remote_set_inferior_cwd (rs
);
9975 /* Now restart the remote server. */
9976 run_worked
= extended_remote_run (args
) != -1;
9979 /* vRun was not supported. Fail if we need it to do what the
9981 if (remote_exec_file
[0])
9982 error (_("Remote target does not support \"set remote exec-file\""));
9984 error (_("Remote target does not support \"set args\" or run <ARGS>"));
9986 /* Fall back to "R". */
9987 extended_remote_restart ();
9990 if (!have_inferiors ())
9992 /* Clean up from the last time we ran, before we mark the target
9993 running again. This will mark breakpoints uninserted, and
9994 get_offsets may insert breakpoints. */
9995 init_thread_list ();
9996 init_wait_for_inferior ();
9999 /* vRun's success return is a stop reply. */
10000 stop_reply
= run_worked
? rs
->buf
: NULL
;
10001 add_current_inferior_and_thread (stop_reply
);
10003 /* Get updated offsets, if the stub uses qOffsets. */
10008 /* Given a location's target info BP_TGT and the packet buffer BUF, output
10009 the list of conditions (in agent expression bytecode format), if any, the
10010 target needs to evaluate. The output is placed into the packet buffer
10011 started from BUF and ended at BUF_END. */
10014 remote_add_target_side_condition (struct gdbarch
*gdbarch
,
10015 struct bp_target_info
*bp_tgt
, char *buf
,
10018 if (bp_tgt
->conditions
.empty ())
10021 buf
+= strlen (buf
);
10022 xsnprintf (buf
, buf_end
- buf
, "%s", ";");
10025 /* Send conditions to the target. */
10026 for (agent_expr
*aexpr
: bp_tgt
->conditions
)
10028 xsnprintf (buf
, buf_end
- buf
, "X%x,", aexpr
->len
);
10029 buf
+= strlen (buf
);
10030 for (int i
= 0; i
< aexpr
->len
; ++i
)
10031 buf
= pack_hex_byte (buf
, aexpr
->buf
[i
]);
10038 remote_add_target_side_commands (struct gdbarch
*gdbarch
,
10039 struct bp_target_info
*bp_tgt
, char *buf
)
10041 if (bp_tgt
->tcommands
.empty ())
10044 buf
+= strlen (buf
);
10046 sprintf (buf
, ";cmds:%x,", bp_tgt
->persist
);
10047 buf
+= strlen (buf
);
10049 /* Concatenate all the agent expressions that are commands into the
10051 for (agent_expr
*aexpr
: bp_tgt
->tcommands
)
10053 sprintf (buf
, "X%x,", aexpr
->len
);
10054 buf
+= strlen (buf
);
10055 for (int i
= 0; i
< aexpr
->len
; ++i
)
10056 buf
= pack_hex_byte (buf
, aexpr
->buf
[i
]);
10061 /* Insert a breakpoint. On targets that have software breakpoint
10062 support, we ask the remote target to do the work; on targets
10063 which don't, we insert a traditional memory breakpoint. */
10066 remote_target::insert_breakpoint (struct gdbarch
*gdbarch
,
10067 struct bp_target_info
*bp_tgt
)
10069 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
10070 If it succeeds, then set the support to PACKET_ENABLE. If it
10071 fails, and the user has explicitly requested the Z support then
10072 report an error, otherwise, mark it disabled and go on. */
10074 if (packet_support (PACKET_Z0
) != PACKET_DISABLE
)
10076 CORE_ADDR addr
= bp_tgt
->reqstd_address
;
10077 struct remote_state
*rs
;
10080 /* Make sure the remote is pointing at the right process, if
10082 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10083 set_general_process ();
10085 rs
= get_remote_state ();
10087 endbuf
= rs
->buf
+ get_remote_packet_size ();
10092 addr
= (ULONGEST
) remote_address_masked (addr
);
10093 p
+= hexnumstr (p
, addr
);
10094 xsnprintf (p
, endbuf
- p
, ",%d", bp_tgt
->kind
);
10096 if (supports_evaluation_of_breakpoint_conditions ())
10097 remote_add_target_side_condition (gdbarch
, bp_tgt
, p
, endbuf
);
10099 if (can_run_breakpoint_commands ())
10100 remote_add_target_side_commands (gdbarch
, bp_tgt
, p
);
10103 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
10105 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_Z0
]))
10111 case PACKET_UNKNOWN
:
10116 /* If this breakpoint has target-side commands but this stub doesn't
10117 support Z0 packets, throw error. */
10118 if (!bp_tgt
->tcommands
.empty ())
10119 throw_error (NOT_SUPPORTED_ERROR
, _("\
10120 Target doesn't support breakpoints that have target side commands."));
10122 return memory_insert_breakpoint (this, gdbarch
, bp_tgt
);
10126 remote_target::remove_breakpoint (struct gdbarch
*gdbarch
,
10127 struct bp_target_info
*bp_tgt
,
10128 enum remove_bp_reason reason
)
10130 CORE_ADDR addr
= bp_tgt
->placed_address
;
10131 struct remote_state
*rs
= get_remote_state ();
10133 if (packet_support (PACKET_Z0
) != PACKET_DISABLE
)
10136 char *endbuf
= rs
->buf
+ get_remote_packet_size ();
10138 /* Make sure the remote is pointing at the right process, if
10140 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10141 set_general_process ();
10147 addr
= (ULONGEST
) remote_address_masked (bp_tgt
->placed_address
);
10148 p
+= hexnumstr (p
, addr
);
10149 xsnprintf (p
, endbuf
- p
, ",%d", bp_tgt
->kind
);
10152 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
10154 return (rs
->buf
[0] == 'E');
10157 return memory_remove_breakpoint (this, gdbarch
, bp_tgt
, reason
);
10160 static enum Z_packet_type
10161 watchpoint_to_Z_packet (int type
)
10166 return Z_PACKET_WRITE_WP
;
10169 return Z_PACKET_READ_WP
;
10172 return Z_PACKET_ACCESS_WP
;
10175 internal_error (__FILE__
, __LINE__
,
10176 _("hw_bp_to_z: bad watchpoint type %d"), type
);
10181 remote_target::insert_watchpoint (CORE_ADDR addr
, int len
,
10182 enum target_hw_bp_type type
, struct expression
*cond
)
10184 struct remote_state
*rs
= get_remote_state ();
10185 char *endbuf
= rs
->buf
+ get_remote_packet_size ();
10187 enum Z_packet_type packet
= watchpoint_to_Z_packet (type
);
10189 if (packet_support (PACKET_Z0
+ packet
) == PACKET_DISABLE
)
10192 /* Make sure the remote is pointing at the right process, if
10194 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10195 set_general_process ();
10197 xsnprintf (rs
->buf
, endbuf
- rs
->buf
, "Z%x,", packet
);
10198 p
= strchr (rs
->buf
, '\0');
10199 addr
= remote_address_masked (addr
);
10200 p
+= hexnumstr (p
, (ULONGEST
) addr
);
10201 xsnprintf (p
, endbuf
- p
, ",%x", len
);
10204 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
10206 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_Z0
+ packet
]))
10210 case PACKET_UNKNOWN
:
10215 internal_error (__FILE__
, __LINE__
,
10216 _("remote_insert_watchpoint: reached end of function"));
10220 remote_target::watchpoint_addr_within_range (CORE_ADDR addr
,
10221 CORE_ADDR start
, int length
)
10223 CORE_ADDR diff
= remote_address_masked (addr
- start
);
10225 return diff
< length
;
10230 remote_target::remove_watchpoint (CORE_ADDR addr
, int len
,
10231 enum target_hw_bp_type type
, struct expression
*cond
)
10233 struct remote_state
*rs
= get_remote_state ();
10234 char *endbuf
= rs
->buf
+ get_remote_packet_size ();
10236 enum Z_packet_type packet
= watchpoint_to_Z_packet (type
);
10238 if (packet_support (PACKET_Z0
+ packet
) == PACKET_DISABLE
)
10241 /* Make sure the remote is pointing at the right process, if
10243 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10244 set_general_process ();
10246 xsnprintf (rs
->buf
, endbuf
- rs
->buf
, "z%x,", packet
);
10247 p
= strchr (rs
->buf
, '\0');
10248 addr
= remote_address_masked (addr
);
10249 p
+= hexnumstr (p
, (ULONGEST
) addr
);
10250 xsnprintf (p
, endbuf
- p
, ",%x", len
);
10252 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
10254 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_Z0
+ packet
]))
10257 case PACKET_UNKNOWN
:
10262 internal_error (__FILE__
, __LINE__
,
10263 _("remote_remove_watchpoint: reached end of function"));
10267 int remote_hw_watchpoint_limit
= -1;
10268 int remote_hw_watchpoint_length_limit
= -1;
10269 int remote_hw_breakpoint_limit
= -1;
10272 remote_target::region_ok_for_hw_watchpoint (CORE_ADDR addr
, int len
)
10274 if (remote_hw_watchpoint_length_limit
== 0)
10276 else if (remote_hw_watchpoint_length_limit
< 0)
10278 else if (len
<= remote_hw_watchpoint_length_limit
)
10285 remote_target::can_use_hw_breakpoint (enum bptype type
, int cnt
, int ot
)
10287 if (type
== bp_hardware_breakpoint
)
10289 if (remote_hw_breakpoint_limit
== 0)
10291 else if (remote_hw_breakpoint_limit
< 0)
10293 else if (cnt
<= remote_hw_breakpoint_limit
)
10298 if (remote_hw_watchpoint_limit
== 0)
10300 else if (remote_hw_watchpoint_limit
< 0)
10304 else if (cnt
<= remote_hw_watchpoint_limit
)
10310 /* The to_stopped_by_sw_breakpoint method of target remote. */
10313 remote_target::stopped_by_sw_breakpoint ()
10315 struct thread_info
*thread
= inferior_thread ();
10317 return (thread
->priv
!= NULL
10318 && (get_remote_thread_info (thread
)->stop_reason
10319 == TARGET_STOPPED_BY_SW_BREAKPOINT
));
10322 /* The to_supports_stopped_by_sw_breakpoint method of target
10326 remote_target::supports_stopped_by_sw_breakpoint ()
10328 return (packet_support (PACKET_swbreak_feature
) == PACKET_ENABLE
);
10331 /* The to_stopped_by_hw_breakpoint method of target remote. */
10334 remote_target::stopped_by_hw_breakpoint ()
10336 struct thread_info
*thread
= inferior_thread ();
10338 return (thread
->priv
!= NULL
10339 && (get_remote_thread_info (thread
)->stop_reason
10340 == TARGET_STOPPED_BY_HW_BREAKPOINT
));
10343 /* The to_supports_stopped_by_hw_breakpoint method of target
10347 remote_target::supports_stopped_by_hw_breakpoint ()
10349 return (packet_support (PACKET_hwbreak_feature
) == PACKET_ENABLE
);
10353 remote_target::stopped_by_watchpoint ()
10355 struct thread_info
*thread
= inferior_thread ();
10357 return (thread
->priv
!= NULL
10358 && (get_remote_thread_info (thread
)->stop_reason
10359 == TARGET_STOPPED_BY_WATCHPOINT
));
10363 remote_target::stopped_data_address (CORE_ADDR
*addr_p
)
10365 struct thread_info
*thread
= inferior_thread ();
10367 if (thread
->priv
!= NULL
10368 && (get_remote_thread_info (thread
)->stop_reason
10369 == TARGET_STOPPED_BY_WATCHPOINT
))
10371 *addr_p
= get_remote_thread_info (thread
)->watch_data_address
;
10380 remote_target::insert_hw_breakpoint (struct gdbarch
*gdbarch
,
10381 struct bp_target_info
*bp_tgt
)
10383 CORE_ADDR addr
= bp_tgt
->reqstd_address
;
10384 struct remote_state
*rs
;
10388 if (packet_support (PACKET_Z1
) == PACKET_DISABLE
)
10391 /* Make sure the remote is pointing at the right process, if
10393 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10394 set_general_process ();
10396 rs
= get_remote_state ();
10398 endbuf
= rs
->buf
+ get_remote_packet_size ();
10404 addr
= remote_address_masked (addr
);
10405 p
+= hexnumstr (p
, (ULONGEST
) addr
);
10406 xsnprintf (p
, endbuf
- p
, ",%x", bp_tgt
->kind
);
10408 if (supports_evaluation_of_breakpoint_conditions ())
10409 remote_add_target_side_condition (gdbarch
, bp_tgt
, p
, endbuf
);
10411 if (can_run_breakpoint_commands ())
10412 remote_add_target_side_commands (gdbarch
, bp_tgt
, p
);
10415 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
10417 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_Z1
]))
10420 if (rs
->buf
[1] == '.')
10422 message
= strchr (rs
->buf
+ 2, '.');
10424 error (_("Remote failure reply: %s"), message
+ 1);
10427 case PACKET_UNKNOWN
:
10432 internal_error (__FILE__
, __LINE__
,
10433 _("remote_insert_hw_breakpoint: reached end of function"));
10438 remote_target::remove_hw_breakpoint (struct gdbarch
*gdbarch
,
10439 struct bp_target_info
*bp_tgt
)
10442 struct remote_state
*rs
= get_remote_state ();
10444 char *endbuf
= rs
->buf
+ get_remote_packet_size ();
10446 if (packet_support (PACKET_Z1
) == PACKET_DISABLE
)
10449 /* Make sure the remote is pointing at the right process, if
10451 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10452 set_general_process ();
10458 addr
= remote_address_masked (bp_tgt
->placed_address
);
10459 p
+= hexnumstr (p
, (ULONGEST
) addr
);
10460 xsnprintf (p
, endbuf
- p
, ",%x", bp_tgt
->kind
);
10463 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
10465 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_Z1
]))
10468 case PACKET_UNKNOWN
:
10473 internal_error (__FILE__
, __LINE__
,
10474 _("remote_remove_hw_breakpoint: reached end of function"));
10477 /* Verify memory using the "qCRC:" request. */
10480 remote_target::verify_memory (const gdb_byte
*data
, CORE_ADDR lma
, ULONGEST size
)
10482 struct remote_state
*rs
= get_remote_state ();
10483 unsigned long host_crc
, target_crc
;
10486 /* It doesn't make sense to use qCRC if the remote target is
10487 connected but not running. */
10488 if (target_has_execution
&& packet_support (PACKET_qCRC
) != PACKET_DISABLE
)
10490 enum packet_result result
;
10492 /* Make sure the remote is pointing at the right process. */
10493 set_general_process ();
10495 /* FIXME: assumes lma can fit into long. */
10496 xsnprintf (rs
->buf
, get_remote_packet_size (), "qCRC:%lx,%lx",
10497 (long) lma
, (long) size
);
10500 /* Be clever; compute the host_crc before waiting for target
10502 host_crc
= xcrc32 (data
, size
, 0xffffffff);
10504 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
10506 result
= packet_ok (rs
->buf
,
10507 &remote_protocol_packets
[PACKET_qCRC
]);
10508 if (result
== PACKET_ERROR
)
10510 else if (result
== PACKET_OK
)
10512 for (target_crc
= 0, tmp
= &rs
->buf
[1]; *tmp
; tmp
++)
10513 target_crc
= target_crc
* 16 + fromhex (*tmp
);
10515 return (host_crc
== target_crc
);
10519 return simple_verify_memory (this, data
, lma
, size
);
10522 /* compare-sections command
10524 With no arguments, compares each loadable section in the exec bfd
10525 with the same memory range on the target, and reports mismatches.
10526 Useful for verifying the image on the target against the exec file. */
10529 compare_sections_command (const char *args
, int from_tty
)
10532 const char *sectname
;
10533 bfd_size_type size
;
10536 int mismatched
= 0;
10541 error (_("command cannot be used without an exec file"));
10543 if (args
!= NULL
&& strcmp (args
, "-r") == 0)
10549 for (s
= exec_bfd
->sections
; s
; s
= s
->next
)
10551 if (!(s
->flags
& SEC_LOAD
))
10552 continue; /* Skip non-loadable section. */
10554 if (read_only
&& (s
->flags
& SEC_READONLY
) == 0)
10555 continue; /* Skip writeable sections */
10557 size
= bfd_get_section_size (s
);
10559 continue; /* Skip zero-length section. */
10561 sectname
= bfd_get_section_name (exec_bfd
, s
);
10562 if (args
&& strcmp (args
, sectname
) != 0)
10563 continue; /* Not the section selected by user. */
10565 matched
= 1; /* Do this section. */
10568 gdb::byte_vector
sectdata (size
);
10569 bfd_get_section_contents (exec_bfd
, s
, sectdata
.data (), 0, size
);
10571 res
= target_verify_memory (sectdata
.data (), lma
, size
);
10574 error (_("target memory fault, section %s, range %s -- %s"), sectname
,
10575 paddress (target_gdbarch (), lma
),
10576 paddress (target_gdbarch (), lma
+ size
));
10578 printf_filtered ("Section %s, range %s -- %s: ", sectname
,
10579 paddress (target_gdbarch (), lma
),
10580 paddress (target_gdbarch (), lma
+ size
));
10582 printf_filtered ("matched.\n");
10585 printf_filtered ("MIS-MATCHED!\n");
10589 if (mismatched
> 0)
10590 warning (_("One or more sections of the target image does not match\n\
10591 the loaded file\n"));
10592 if (args
&& !matched
)
10593 printf_filtered (_("No loaded section named '%s'.\n"), args
);
10596 /* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
10597 into remote target. The number of bytes written to the remote
10598 target is returned, or -1 for error. */
10600 static enum target_xfer_status
10601 remote_write_qxfer (const char *object_name
,
10602 const char *annex
, const gdb_byte
*writebuf
,
10603 ULONGEST offset
, LONGEST len
, ULONGEST
*xfered_len
,
10604 struct packet_config
*packet
)
10608 struct remote_state
*rs
= get_remote_state ();
10609 int max_size
= get_memory_write_packet_size ();
10611 if (packet_config_support (packet
) == PACKET_DISABLE
)
10612 return TARGET_XFER_E_IO
;
10614 /* Insert header. */
10615 i
= snprintf (rs
->buf
, max_size
,
10616 "qXfer:%s:write:%s:%s:",
10617 object_name
, annex
? annex
: "",
10618 phex_nz (offset
, sizeof offset
));
10619 max_size
-= (i
+ 1);
10621 /* Escape as much data as fits into rs->buf. */
10622 buf_len
= remote_escape_output
10623 (writebuf
, len
, 1, (gdb_byte
*) rs
->buf
+ i
, &max_size
, max_size
);
10625 if (putpkt_binary (rs
->buf
, i
+ buf_len
) < 0
10626 || getpkt_sane (&rs
->buf
, &rs
->buf_size
, 0) < 0
10627 || packet_ok (rs
->buf
, packet
) != PACKET_OK
)
10628 return TARGET_XFER_E_IO
;
10630 unpack_varlen_hex (rs
->buf
, &n
);
10633 return (*xfered_len
!= 0) ? TARGET_XFER_OK
: TARGET_XFER_EOF
;
10636 /* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
10637 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
10638 number of bytes read is returned, or 0 for EOF, or -1 for error.
10639 The number of bytes read may be less than LEN without indicating an
10640 EOF. PACKET is checked and updated to indicate whether the remote
10641 target supports this object. */
10643 static enum target_xfer_status
10644 remote_read_qxfer (const char *object_name
,
10646 gdb_byte
*readbuf
, ULONGEST offset
, LONGEST len
,
10647 ULONGEST
*xfered_len
,
10648 struct packet_config
*packet
)
10650 struct remote_state
*rs
= get_remote_state ();
10651 LONGEST i
, n
, packet_len
;
10653 if (packet_config_support (packet
) == PACKET_DISABLE
)
10654 return TARGET_XFER_E_IO
;
10656 /* Check whether we've cached an end-of-object packet that matches
10658 if (rs
->finished_object
)
10660 if (strcmp (object_name
, rs
->finished_object
) == 0
10661 && strcmp (annex
? annex
: "", rs
->finished_annex
) == 0
10662 && offset
== rs
->finished_offset
)
10663 return TARGET_XFER_EOF
;
10666 /* Otherwise, we're now reading something different. Discard
10668 xfree (rs
->finished_object
);
10669 xfree (rs
->finished_annex
);
10670 rs
->finished_object
= NULL
;
10671 rs
->finished_annex
= NULL
;
10674 /* Request only enough to fit in a single packet. The actual data
10675 may not, since we don't know how much of it will need to be escaped;
10676 the target is free to respond with slightly less data. We subtract
10677 five to account for the response type and the protocol frame. */
10678 n
= std::min
<LONGEST
> (get_remote_packet_size () - 5, len
);
10679 snprintf (rs
->buf
, get_remote_packet_size () - 4, "qXfer:%s:read:%s:%s,%s",
10680 object_name
, annex
? annex
: "",
10681 phex_nz (offset
, sizeof offset
),
10682 phex_nz (n
, sizeof n
));
10683 i
= putpkt (rs
->buf
);
10685 return TARGET_XFER_E_IO
;
10688 packet_len
= getpkt_sane (&rs
->buf
, &rs
->buf_size
, 0);
10689 if (packet_len
< 0 || packet_ok (rs
->buf
, packet
) != PACKET_OK
)
10690 return TARGET_XFER_E_IO
;
10692 if (rs
->buf
[0] != 'l' && rs
->buf
[0] != 'm')
10693 error (_("Unknown remote qXfer reply: %s"), rs
->buf
);
10695 /* 'm' means there is (or at least might be) more data after this
10696 batch. That does not make sense unless there's at least one byte
10697 of data in this reply. */
10698 if (rs
->buf
[0] == 'm' && packet_len
== 1)
10699 error (_("Remote qXfer reply contained no data."));
10701 /* Got some data. */
10702 i
= remote_unescape_input ((gdb_byte
*) rs
->buf
+ 1,
10703 packet_len
- 1, readbuf
, n
);
10705 /* 'l' is an EOF marker, possibly including a final block of data,
10706 or possibly empty. If we have the final block of a non-empty
10707 object, record this fact to bypass a subsequent partial read. */
10708 if (rs
->buf
[0] == 'l' && offset
+ i
> 0)
10710 rs
->finished_object
= xstrdup (object_name
);
10711 rs
->finished_annex
= xstrdup (annex
? annex
: "");
10712 rs
->finished_offset
= offset
+ i
;
10716 return TARGET_XFER_EOF
;
10720 return TARGET_XFER_OK
;
10724 enum target_xfer_status
10725 remote_target::xfer_partial (enum target_object object
,
10726 const char *annex
, gdb_byte
*readbuf
,
10727 const gdb_byte
*writebuf
, ULONGEST offset
, ULONGEST len
,
10728 ULONGEST
*xfered_len
)
10730 struct remote_state
*rs
;
10734 int unit_size
= gdbarch_addressable_memory_unit_size (target_gdbarch ());
10736 set_remote_traceframe ();
10737 set_general_thread (inferior_ptid
);
10739 rs
= get_remote_state ();
10741 /* Handle memory using the standard memory routines. */
10742 if (object
== TARGET_OBJECT_MEMORY
)
10744 /* If the remote target is connected but not running, we should
10745 pass this request down to a lower stratum (e.g. the executable
10747 if (!target_has_execution
)
10748 return TARGET_XFER_EOF
;
10750 if (writebuf
!= NULL
)
10751 return remote_write_bytes (offset
, writebuf
, len
, unit_size
,
10754 return remote_read_bytes (this, offset
, readbuf
, len
, unit_size
,
10758 /* Handle SPU memory using qxfer packets. */
10759 if (object
== TARGET_OBJECT_SPU
)
10762 return remote_read_qxfer ("spu", annex
, readbuf
, offset
, len
,
10763 xfered_len
, &remote_protocol_packets
10764 [PACKET_qXfer_spu_read
]);
10766 return remote_write_qxfer ("spu", annex
, writebuf
, offset
, len
,
10767 xfered_len
, &remote_protocol_packets
10768 [PACKET_qXfer_spu_write
]);
10771 /* Handle extra signal info using qxfer packets. */
10772 if (object
== TARGET_OBJECT_SIGNAL_INFO
)
10775 return remote_read_qxfer ("siginfo", annex
, readbuf
, offset
, len
,
10776 xfered_len
, &remote_protocol_packets
10777 [PACKET_qXfer_siginfo_read
]);
10779 return remote_write_qxfer ("siginfo", annex
,
10780 writebuf
, offset
, len
, xfered_len
,
10781 &remote_protocol_packets
10782 [PACKET_qXfer_siginfo_write
]);
10785 if (object
== TARGET_OBJECT_STATIC_TRACE_DATA
)
10788 return remote_read_qxfer ("statictrace", annex
,
10789 readbuf
, offset
, len
, xfered_len
,
10790 &remote_protocol_packets
10791 [PACKET_qXfer_statictrace_read
]);
10793 return TARGET_XFER_E_IO
;
10796 /* Only handle flash writes. */
10797 if (writebuf
!= NULL
)
10801 case TARGET_OBJECT_FLASH
:
10802 return remote_flash_write (this, offset
, len
, xfered_len
,
10806 return TARGET_XFER_E_IO
;
10810 /* Map pre-existing objects onto letters. DO NOT do this for new
10811 objects!!! Instead specify new query packets. */
10814 case TARGET_OBJECT_AVR
:
10818 case TARGET_OBJECT_AUXV
:
10819 gdb_assert (annex
== NULL
);
10820 return remote_read_qxfer ("auxv", annex
, readbuf
, offset
, len
,
10822 &remote_protocol_packets
[PACKET_qXfer_auxv
]);
10824 case TARGET_OBJECT_AVAILABLE_FEATURES
:
10825 return remote_read_qxfer
10826 ("features", annex
, readbuf
, offset
, len
, xfered_len
,
10827 &remote_protocol_packets
[PACKET_qXfer_features
]);
10829 case TARGET_OBJECT_LIBRARIES
:
10830 return remote_read_qxfer
10831 ("libraries", annex
, readbuf
, offset
, len
, xfered_len
,
10832 &remote_protocol_packets
[PACKET_qXfer_libraries
]);
10834 case TARGET_OBJECT_LIBRARIES_SVR4
:
10835 return remote_read_qxfer
10836 ("libraries-svr4", annex
, readbuf
, offset
, len
, xfered_len
,
10837 &remote_protocol_packets
[PACKET_qXfer_libraries_svr4
]);
10839 case TARGET_OBJECT_MEMORY_MAP
:
10840 gdb_assert (annex
== NULL
);
10841 return remote_read_qxfer ("memory-map", annex
, readbuf
, offset
, len
,
10843 &remote_protocol_packets
[PACKET_qXfer_memory_map
]);
10845 case TARGET_OBJECT_OSDATA
:
10846 /* Should only get here if we're connected. */
10847 gdb_assert (rs
->remote_desc
);
10848 return remote_read_qxfer
10849 ("osdata", annex
, readbuf
, offset
, len
, xfered_len
,
10850 &remote_protocol_packets
[PACKET_qXfer_osdata
]);
10852 case TARGET_OBJECT_THREADS
:
10853 gdb_assert (annex
== NULL
);
10854 return remote_read_qxfer ("threads", annex
, readbuf
, offset
, len
,
10856 &remote_protocol_packets
[PACKET_qXfer_threads
]);
10858 case TARGET_OBJECT_TRACEFRAME_INFO
:
10859 gdb_assert (annex
== NULL
);
10860 return remote_read_qxfer
10861 ("traceframe-info", annex
, readbuf
, offset
, len
, xfered_len
,
10862 &remote_protocol_packets
[PACKET_qXfer_traceframe_info
]);
10864 case TARGET_OBJECT_FDPIC
:
10865 return remote_read_qxfer ("fdpic", annex
, readbuf
, offset
, len
,
10867 &remote_protocol_packets
[PACKET_qXfer_fdpic
]);
10869 case TARGET_OBJECT_OPENVMS_UIB
:
10870 return remote_read_qxfer ("uib", annex
, readbuf
, offset
, len
,
10872 &remote_protocol_packets
[PACKET_qXfer_uib
]);
10874 case TARGET_OBJECT_BTRACE
:
10875 return remote_read_qxfer ("btrace", annex
, readbuf
, offset
, len
,
10877 &remote_protocol_packets
[PACKET_qXfer_btrace
]);
10879 case TARGET_OBJECT_BTRACE_CONF
:
10880 return remote_read_qxfer ("btrace-conf", annex
, readbuf
, offset
,
10882 &remote_protocol_packets
[PACKET_qXfer_btrace_conf
]);
10884 case TARGET_OBJECT_EXEC_FILE
:
10885 return remote_read_qxfer ("exec-file", annex
, readbuf
, offset
,
10887 &remote_protocol_packets
[PACKET_qXfer_exec_file
]);
10890 return TARGET_XFER_E_IO
;
10893 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
10894 large enough let the caller deal with it. */
10895 if (len
< get_remote_packet_size ())
10896 return TARGET_XFER_E_IO
;
10897 len
= get_remote_packet_size ();
10899 /* Except for querying the minimum buffer size, target must be open. */
10900 if (!rs
->remote_desc
)
10901 error (_("remote query is only available after target open"));
10903 gdb_assert (annex
!= NULL
);
10904 gdb_assert (readbuf
!= NULL
);
10908 *p2
++ = query_type
;
10910 /* We used one buffer char for the remote protocol q command and
10911 another for the query type. As the remote protocol encapsulation
10912 uses 4 chars plus one extra in case we are debugging
10913 (remote_debug), we have PBUFZIZ - 7 left to pack the query
10916 while (annex
[i
] && (i
< (get_remote_packet_size () - 8)))
10918 /* Bad caller may have sent forbidden characters. */
10919 gdb_assert (isprint (annex
[i
]) && annex
[i
] != '$' && annex
[i
] != '#');
10924 gdb_assert (annex
[i
] == '\0');
10926 i
= putpkt (rs
->buf
);
10928 return TARGET_XFER_E_IO
;
10930 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
10931 strcpy ((char *) readbuf
, rs
->buf
);
10933 *xfered_len
= strlen ((char *) readbuf
);
10934 return (*xfered_len
!= 0) ? TARGET_XFER_OK
: TARGET_XFER_EOF
;
10937 /* Implementation of to_get_memory_xfer_limit. */
10940 remote_target::get_memory_xfer_limit ()
10942 return get_memory_write_packet_size ();
10946 remote_target::search_memory (CORE_ADDR start_addr
, ULONGEST search_space_len
,
10947 const gdb_byte
*pattern
, ULONGEST pattern_len
,
10948 CORE_ADDR
*found_addrp
)
10950 int addr_size
= gdbarch_addr_bit (target_gdbarch ()) / 8;
10951 struct remote_state
*rs
= get_remote_state ();
10952 int max_size
= get_memory_write_packet_size ();
10953 struct packet_config
*packet
=
10954 &remote_protocol_packets
[PACKET_qSearch_memory
];
10955 /* Number of packet bytes used to encode the pattern;
10956 this could be more than PATTERN_LEN due to escape characters. */
10957 int escaped_pattern_len
;
10958 /* Amount of pattern that was encodable in the packet. */
10959 int used_pattern_len
;
10962 ULONGEST found_addr
;
10964 /* Don't go to the target if we don't have to. This is done before
10965 checking packet_config_support to avoid the possibility that a
10966 success for this edge case means the facility works in
10968 if (pattern_len
> search_space_len
)
10970 if (pattern_len
== 0)
10972 *found_addrp
= start_addr
;
10976 /* If we already know the packet isn't supported, fall back to the simple
10977 way of searching memory. */
10979 if (packet_config_support (packet
) == PACKET_DISABLE
)
10981 /* Target doesn't provided special support, fall back and use the
10982 standard support (copy memory and do the search here). */
10983 return simple_search_memory (this, start_addr
, search_space_len
,
10984 pattern
, pattern_len
, found_addrp
);
10987 /* Make sure the remote is pointing at the right process. */
10988 set_general_process ();
10990 /* Insert header. */
10991 i
= snprintf (rs
->buf
, max_size
,
10992 "qSearch:memory:%s;%s;",
10993 phex_nz (start_addr
, addr_size
),
10994 phex_nz (search_space_len
, sizeof (search_space_len
)));
10995 max_size
-= (i
+ 1);
10997 /* Escape as much data as fits into rs->buf. */
10998 escaped_pattern_len
=
10999 remote_escape_output (pattern
, pattern_len
, 1, (gdb_byte
*) rs
->buf
+ i
,
11000 &used_pattern_len
, max_size
);
11002 /* Bail if the pattern is too large. */
11003 if (used_pattern_len
!= pattern_len
)
11004 error (_("Pattern is too large to transmit to remote target."));
11006 if (putpkt_binary (rs
->buf
, i
+ escaped_pattern_len
) < 0
11007 || getpkt_sane (&rs
->buf
, &rs
->buf_size
, 0) < 0
11008 || packet_ok (rs
->buf
, packet
) != PACKET_OK
)
11010 /* The request may not have worked because the command is not
11011 supported. If so, fall back to the simple way. */
11012 if (packet_config_support (packet
) == PACKET_DISABLE
)
11014 return simple_search_memory (this, start_addr
, search_space_len
,
11015 pattern
, pattern_len
, found_addrp
);
11020 if (rs
->buf
[0] == '0')
11022 else if (rs
->buf
[0] == '1')
11025 if (rs
->buf
[1] != ',')
11026 error (_("Unknown qSearch:memory reply: %s"), rs
->buf
);
11027 unpack_varlen_hex (rs
->buf
+ 2, &found_addr
);
11028 *found_addrp
= found_addr
;
11031 error (_("Unknown qSearch:memory reply: %s"), rs
->buf
);
11037 remote_target::rcmd (const char *command
, struct ui_file
*outbuf
)
11039 struct remote_state
*rs
= get_remote_state ();
11042 if (!rs
->remote_desc
)
11043 error (_("remote rcmd is only available after target open"));
11045 /* Send a NULL command across as an empty command. */
11046 if (command
== NULL
)
11049 /* The query prefix. */
11050 strcpy (rs
->buf
, "qRcmd,");
11051 p
= strchr (rs
->buf
, '\0');
11053 if ((strlen (rs
->buf
) + strlen (command
) * 2 + 8/*misc*/)
11054 > get_remote_packet_size ())
11055 error (_("\"monitor\" command ``%s'' is too long."), command
);
11057 /* Encode the actual command. */
11058 bin2hex ((const gdb_byte
*) command
, p
, strlen (command
));
11060 if (putpkt (rs
->buf
) < 0)
11061 error (_("Communication problem with target."));
11063 /* get/display the response */
11068 /* XXX - see also remote_get_noisy_reply(). */
11069 QUIT
; /* Allow user to bail out with ^C. */
11071 if (getpkt_sane (&rs
->buf
, &rs
->buf_size
, 0) == -1)
11073 /* Timeout. Continue to (try to) read responses.
11074 This is better than stopping with an error, assuming the stub
11075 is still executing the (long) monitor command.
11076 If needed, the user can interrupt gdb using C-c, obtaining
11077 an effect similar to stop on timeout. */
11081 if (buf
[0] == '\0')
11082 error (_("Target does not support this command."));
11083 if (buf
[0] == 'O' && buf
[1] != 'K')
11085 remote_console_output (buf
+ 1); /* 'O' message from stub. */
11088 if (strcmp (buf
, "OK") == 0)
11090 if (strlen (buf
) == 3 && buf
[0] == 'E'
11091 && isdigit (buf
[1]) && isdigit (buf
[2]))
11093 error (_("Protocol error with Rcmd"));
11095 for (p
= buf
; p
[0] != '\0' && p
[1] != '\0'; p
+= 2)
11097 char c
= (fromhex (p
[0]) << 4) + fromhex (p
[1]);
11099 fputc_unfiltered (c
, outbuf
);
11105 std::vector
<mem_region
>
11106 remote_target::memory_map ()
11108 std::vector
<mem_region
> result
;
11109 gdb::optional
<gdb::char_vector
> text
11110 = target_read_stralloc (target_stack
, TARGET_OBJECT_MEMORY_MAP
, NULL
);
11113 result
= parse_memory_map (text
->data ());
11119 packet_command (const char *args
, int from_tty
)
11121 struct remote_state
*rs
= get_remote_state ();
11123 if (!rs
->remote_desc
)
11124 error (_("command can only be used with remote target"));
11127 error (_("remote-packet command requires packet text as argument"));
11129 puts_filtered ("sending: ");
11130 print_packet (args
);
11131 puts_filtered ("\n");
11134 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
11135 puts_filtered ("received: ");
11136 print_packet (rs
->buf
);
11137 puts_filtered ("\n");
11141 /* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
11143 static void display_thread_info (struct gdb_ext_thread_info
*info
);
11145 static void threadset_test_cmd (char *cmd
, int tty
);
11147 static void threadalive_test (char *cmd
, int tty
);
11149 static void threadlist_test_cmd (char *cmd
, int tty
);
11151 int get_and_display_threadinfo (threadref
*ref
);
11153 static void threadinfo_test_cmd (char *cmd
, int tty
);
11155 static int thread_display_step (threadref
*ref
, void *context
);
11157 static void threadlist_update_test_cmd (char *cmd
, int tty
);
11159 static void init_remote_threadtests (void);
11161 #define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
11164 threadset_test_cmd (const char *cmd
, int tty
)
11166 int sample_thread
= SAMPLE_THREAD
;
11168 printf_filtered (_("Remote threadset test\n"));
11169 set_general_thread (sample_thread
);
11174 threadalive_test (const char *cmd
, int tty
)
11176 int sample_thread
= SAMPLE_THREAD
;
11177 int pid
= ptid_get_pid (inferior_ptid
);
11178 ptid_t ptid
= ptid_build (pid
, sample_thread
, 0);
11180 if (remote_thread_alive (ptid
))
11181 printf_filtered ("PASS: Thread alive test\n");
11183 printf_filtered ("FAIL: Thread alive test\n");
11186 void output_threadid (char *title
, threadref
*ref
);
11189 output_threadid (char *title
, threadref
*ref
)
11193 pack_threadid (&hexid
[0], ref
); /* Convert threead id into hex. */
11195 printf_filtered ("%s %s\n", title
, (&hexid
[0]));
11199 threadlist_test_cmd (const char *cmd
, int tty
)
11202 threadref nextthread
;
11203 int done
, result_count
;
11204 threadref threadlist
[3];
11206 printf_filtered ("Remote Threadlist test\n");
11207 if (!remote_get_threadlist (startflag
, &nextthread
, 3, &done
,
11208 &result_count
, &threadlist
[0]))
11209 printf_filtered ("FAIL: threadlist test\n");
11212 threadref
*scan
= threadlist
;
11213 threadref
*limit
= scan
+ result_count
;
11215 while (scan
< limit
)
11216 output_threadid (" thread ", scan
++);
11221 display_thread_info (struct gdb_ext_thread_info
*info
)
11223 output_threadid ("Threadid: ", &info
->threadid
);
11224 printf_filtered ("Name: %s\n ", info
->shortname
);
11225 printf_filtered ("State: %s\n", info
->display
);
11226 printf_filtered ("other: %s\n\n", info
->more_display
);
11230 get_and_display_threadinfo (threadref
*ref
)
11234 struct gdb_ext_thread_info threadinfo
;
11236 set
= TAG_THREADID
| TAG_EXISTS
| TAG_THREADNAME
11237 | TAG_MOREDISPLAY
| TAG_DISPLAY
;
11238 if (0 != (result
= remote_get_threadinfo (ref
, set
, &threadinfo
)))
11239 display_thread_info (&threadinfo
);
11244 threadinfo_test_cmd (const char *cmd
, int tty
)
11246 int athread
= SAMPLE_THREAD
;
11250 int_to_threadref (&thread
, athread
);
11251 printf_filtered ("Remote Threadinfo test\n");
11252 if (!get_and_display_threadinfo (&thread
))
11253 printf_filtered ("FAIL cannot get thread info\n");
11257 thread_display_step (threadref
*ref
, void *context
)
11259 /* output_threadid(" threadstep ",ref); *//* simple test */
11260 return get_and_display_threadinfo (ref
);
11264 threadlist_update_test_cmd (const char *cmd
, int tty
)
11266 printf_filtered ("Remote Threadlist update test\n");
11267 remote_threadlist_iterator (thread_display_step
, 0, CRAZY_MAX_THREADS
);
11271 init_remote_threadtests (void)
11273 add_com ("tlist", class_obscure
, threadlist_test_cmd
,
11274 _("Fetch and print the remote list of "
11275 "thread identifiers, one pkt only"));
11276 add_com ("tinfo", class_obscure
, threadinfo_test_cmd
,
11277 _("Fetch and display info about one thread"));
11278 add_com ("tset", class_obscure
, threadset_test_cmd
,
11279 _("Test setting to a different thread"));
11280 add_com ("tupd", class_obscure
, threadlist_update_test_cmd
,
11281 _("Iterate through updating all remote thread info"));
11282 add_com ("talive", class_obscure
, threadalive_test
,
11283 _(" Remote thread alive test "));
11288 /* Convert a thread ID to a string. Returns the string in a static
11292 remote_target::pid_to_str (ptid_t ptid
)
11294 static char buf
[64];
11295 struct remote_state
*rs
= get_remote_state ();
11297 if (ptid_equal (ptid
, null_ptid
))
11298 return normal_pid_to_str (ptid
);
11299 else if (ptid_is_pid (ptid
))
11301 /* Printing an inferior target id. */
11303 /* When multi-process extensions are off, there's no way in the
11304 remote protocol to know the remote process id, if there's any
11305 at all. There's one exception --- when we're connected with
11306 target extended-remote, and we manually attached to a process
11307 with "attach PID". We don't record anywhere a flag that
11308 allows us to distinguish that case from the case of
11309 connecting with extended-remote and the stub already being
11310 attached to a process, and reporting yes to qAttached, hence
11311 no smart special casing here. */
11312 if (!remote_multi_process_p (rs
))
11314 xsnprintf (buf
, sizeof buf
, "Remote target");
11318 return normal_pid_to_str (ptid
);
11322 if (ptid_equal (magic_null_ptid
, ptid
))
11323 xsnprintf (buf
, sizeof buf
, "Thread <main>");
11324 else if (remote_multi_process_p (rs
))
11325 if (ptid_get_lwp (ptid
) == 0)
11326 return normal_pid_to_str (ptid
);
11328 xsnprintf (buf
, sizeof buf
, "Thread %d.%ld",
11329 ptid_get_pid (ptid
), ptid_get_lwp (ptid
));
11331 xsnprintf (buf
, sizeof buf
, "Thread %ld",
11332 ptid_get_lwp (ptid
));
11337 /* Get the address of the thread local variable in OBJFILE which is
11338 stored at OFFSET within the thread local storage for thread PTID. */
11341 remote_target::get_thread_local_address (ptid_t ptid
, CORE_ADDR lm
,
11344 if (packet_support (PACKET_qGetTLSAddr
) != PACKET_DISABLE
)
11346 struct remote_state
*rs
= get_remote_state ();
11348 char *endp
= rs
->buf
+ get_remote_packet_size ();
11349 enum packet_result result
;
11351 strcpy (p
, "qGetTLSAddr:");
11353 p
= write_ptid (p
, endp
, ptid
);
11355 p
+= hexnumstr (p
, offset
);
11357 p
+= hexnumstr (p
, lm
);
11361 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
11362 result
= packet_ok (rs
->buf
,
11363 &remote_protocol_packets
[PACKET_qGetTLSAddr
]);
11364 if (result
== PACKET_OK
)
11368 unpack_varlen_hex (rs
->buf
, &result
);
11371 else if (result
== PACKET_UNKNOWN
)
11372 throw_error (TLS_GENERIC_ERROR
,
11373 _("Remote target doesn't support qGetTLSAddr packet"));
11375 throw_error (TLS_GENERIC_ERROR
,
11376 _("Remote target failed to process qGetTLSAddr request"));
11379 throw_error (TLS_GENERIC_ERROR
,
11380 _("TLS not supported or disabled on this target"));
11385 /* Provide thread local base, i.e. Thread Information Block address.
11386 Returns 1 if ptid is found and thread_local_base is non zero. */
11389 remote_target::get_tib_address (ptid_t ptid
, CORE_ADDR
*addr
)
11391 if (packet_support (PACKET_qGetTIBAddr
) != PACKET_DISABLE
)
11393 struct remote_state
*rs
= get_remote_state ();
11395 char *endp
= rs
->buf
+ get_remote_packet_size ();
11396 enum packet_result result
;
11398 strcpy (p
, "qGetTIBAddr:");
11400 p
= write_ptid (p
, endp
, ptid
);
11404 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
11405 result
= packet_ok (rs
->buf
,
11406 &remote_protocol_packets
[PACKET_qGetTIBAddr
]);
11407 if (result
== PACKET_OK
)
11411 unpack_varlen_hex (rs
->buf
, &result
);
11413 *addr
= (CORE_ADDR
) result
;
11416 else if (result
== PACKET_UNKNOWN
)
11417 error (_("Remote target doesn't support qGetTIBAddr packet"));
11419 error (_("Remote target failed to process qGetTIBAddr request"));
11422 error (_("qGetTIBAddr not supported or disabled on this target"));
11427 /* Support for inferring a target description based on the current
11428 architecture and the size of a 'g' packet. While the 'g' packet
11429 can have any size (since optional registers can be left off the
11430 end), some sizes are easily recognizable given knowledge of the
11431 approximate architecture. */
11433 struct remote_g_packet_guess
11436 const struct target_desc
*tdesc
;
11438 typedef struct remote_g_packet_guess remote_g_packet_guess_s
;
11439 DEF_VEC_O(remote_g_packet_guess_s
);
11441 struct remote_g_packet_data
11443 VEC(remote_g_packet_guess_s
) *guesses
;
11446 static struct gdbarch_data
*remote_g_packet_data_handle
;
11449 remote_g_packet_data_init (struct obstack
*obstack
)
11451 return OBSTACK_ZALLOC (obstack
, struct remote_g_packet_data
);
11455 register_remote_g_packet_guess (struct gdbarch
*gdbarch
, int bytes
,
11456 const struct target_desc
*tdesc
)
11458 struct remote_g_packet_data
*data
11459 = ((struct remote_g_packet_data
*)
11460 gdbarch_data (gdbarch
, remote_g_packet_data_handle
));
11461 struct remote_g_packet_guess new_guess
, *guess
;
11464 gdb_assert (tdesc
!= NULL
);
11467 VEC_iterate (remote_g_packet_guess_s
, data
->guesses
, ix
, guess
);
11469 if (guess
->bytes
== bytes
)
11470 internal_error (__FILE__
, __LINE__
,
11471 _("Duplicate g packet description added for size %d"),
11474 new_guess
.bytes
= bytes
;
11475 new_guess
.tdesc
= tdesc
;
11476 VEC_safe_push (remote_g_packet_guess_s
, data
->guesses
, &new_guess
);
11479 /* Return 1 if remote_read_description would do anything on this target
11480 and architecture, 0 otherwise. */
11483 remote_read_description_p (struct target_ops
*target
)
11485 struct remote_g_packet_data
*data
11486 = ((struct remote_g_packet_data
*)
11487 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle
));
11489 if (!VEC_empty (remote_g_packet_guess_s
, data
->guesses
))
11495 const struct target_desc
*
11496 remote_target::read_description ()
11498 struct remote_g_packet_data
*data
11499 = ((struct remote_g_packet_data
*)
11500 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle
));
11502 /* Do not try this during initial connection, when we do not know
11503 whether there is a running but stopped thread. */
11504 if (!target_has_execution
|| ptid_equal (inferior_ptid
, null_ptid
))
11505 return beneath
->read_description ();
11507 if (!VEC_empty (remote_g_packet_guess_s
, data
->guesses
))
11509 struct remote_g_packet_guess
*guess
;
11511 int bytes
= send_g_packet ();
11514 VEC_iterate (remote_g_packet_guess_s
, data
->guesses
, ix
, guess
);
11516 if (guess
->bytes
== bytes
)
11517 return guess
->tdesc
;
11519 /* We discard the g packet. A minor optimization would be to
11520 hold on to it, and fill the register cache once we have selected
11521 an architecture, but it's too tricky to do safely. */
11524 return beneath
->read_description ();
11527 /* Remote file transfer support. This is host-initiated I/O, not
11528 target-initiated; for target-initiated, see remote-fileio.c. */
11530 /* If *LEFT is at least the length of STRING, copy STRING to
11531 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11532 decrease *LEFT. Otherwise raise an error. */
11535 remote_buffer_add_string (char **buffer
, int *left
, const char *string
)
11537 int len
= strlen (string
);
11540 error (_("Packet too long for target."));
11542 memcpy (*buffer
, string
, len
);
11546 /* NUL-terminate the buffer as a convenience, if there is
11552 /* If *LEFT is large enough, hex encode LEN bytes from BYTES into
11553 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11554 decrease *LEFT. Otherwise raise an error. */
11557 remote_buffer_add_bytes (char **buffer
, int *left
, const gdb_byte
*bytes
,
11560 if (2 * len
> *left
)
11561 error (_("Packet too long for target."));
11563 bin2hex (bytes
, *buffer
, len
);
11564 *buffer
+= 2 * len
;
11567 /* NUL-terminate the buffer as a convenience, if there is
11573 /* If *LEFT is large enough, convert VALUE to hex and add it to
11574 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11575 decrease *LEFT. Otherwise raise an error. */
11578 remote_buffer_add_int (char **buffer
, int *left
, ULONGEST value
)
11580 int len
= hexnumlen (value
);
11583 error (_("Packet too long for target."));
11585 hexnumstr (*buffer
, value
);
11589 /* NUL-terminate the buffer as a convenience, if there is
11595 /* Parse an I/O result packet from BUFFER. Set RETCODE to the return
11596 value, *REMOTE_ERRNO to the remote error number or zero if none
11597 was included, and *ATTACHMENT to point to the start of the annex
11598 if any. The length of the packet isn't needed here; there may
11599 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
11601 Return 0 if the packet could be parsed, -1 if it could not. If
11602 -1 is returned, the other variables may not be initialized. */
11605 remote_hostio_parse_result (char *buffer
, int *retcode
,
11606 int *remote_errno
, char **attachment
)
11611 *attachment
= NULL
;
11613 if (buffer
[0] != 'F')
11617 *retcode
= strtol (&buffer
[1], &p
, 16);
11618 if (errno
!= 0 || p
== &buffer
[1])
11621 /* Check for ",errno". */
11625 *remote_errno
= strtol (p
+ 1, &p2
, 16);
11626 if (errno
!= 0 || p
+ 1 == p2
)
11631 /* Check for ";attachment". If there is no attachment, the
11632 packet should end here. */
11635 *attachment
= p
+ 1;
11638 else if (*p
== '\0')
11644 /* Send a prepared I/O packet to the target and read its response.
11645 The prepared packet is in the global RS->BUF before this function
11646 is called, and the answer is there when we return.
11648 COMMAND_BYTES is the length of the request to send, which may include
11649 binary data. WHICH_PACKET is the packet configuration to check
11650 before attempting a packet. If an error occurs, *REMOTE_ERRNO
11651 is set to the error number and -1 is returned. Otherwise the value
11652 returned by the function is returned.
11654 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
11655 attachment is expected; an error will be reported if there's a
11656 mismatch. If one is found, *ATTACHMENT will be set to point into
11657 the packet buffer and *ATTACHMENT_LEN will be set to the
11658 attachment's length. */
11661 remote_hostio_send_command (int command_bytes
, int which_packet
,
11662 int *remote_errno
, char **attachment
,
11663 int *attachment_len
)
11665 struct remote_state
*rs
= get_remote_state ();
11666 int ret
, bytes_read
;
11667 char *attachment_tmp
;
11669 if (packet_support (which_packet
) == PACKET_DISABLE
)
11671 *remote_errno
= FILEIO_ENOSYS
;
11675 putpkt_binary (rs
->buf
, command_bytes
);
11676 bytes_read
= getpkt_sane (&rs
->buf
, &rs
->buf_size
, 0);
11678 /* If it timed out, something is wrong. Don't try to parse the
11680 if (bytes_read
< 0)
11682 *remote_errno
= FILEIO_EINVAL
;
11686 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[which_packet
]))
11689 *remote_errno
= FILEIO_EINVAL
;
11691 case PACKET_UNKNOWN
:
11692 *remote_errno
= FILEIO_ENOSYS
;
11698 if (remote_hostio_parse_result (rs
->buf
, &ret
, remote_errno
,
11701 *remote_errno
= FILEIO_EINVAL
;
11705 /* Make sure we saw an attachment if and only if we expected one. */
11706 if ((attachment_tmp
== NULL
&& attachment
!= NULL
)
11707 || (attachment_tmp
!= NULL
&& attachment
== NULL
))
11709 *remote_errno
= FILEIO_EINVAL
;
11713 /* If an attachment was found, it must point into the packet buffer;
11714 work out how many bytes there were. */
11715 if (attachment_tmp
!= NULL
)
11717 *attachment
= attachment_tmp
;
11718 *attachment_len
= bytes_read
- (*attachment
- rs
->buf
);
11724 /* See declaration.h. */
11727 readahead_cache::invalidate ()
11732 /* See declaration.h. */
11735 readahead_cache::invalidate_fd (int fd
)
11737 if (this->fd
== fd
)
11741 /* Set the filesystem remote_hostio functions that take FILENAME
11742 arguments will use. Return 0 on success, or -1 if an error
11743 occurs (and set *REMOTE_ERRNO). */
11746 remote_hostio_set_filesystem (struct inferior
*inf
, int *remote_errno
)
11748 struct remote_state
*rs
= get_remote_state ();
11749 int required_pid
= (inf
== NULL
|| inf
->fake_pid_p
) ? 0 : inf
->pid
;
11751 int left
= get_remote_packet_size () - 1;
11755 if (packet_support (PACKET_vFile_setfs
) == PACKET_DISABLE
)
11758 if (rs
->fs_pid
!= -1 && required_pid
== rs
->fs_pid
)
11761 remote_buffer_add_string (&p
, &left
, "vFile:setfs:");
11763 xsnprintf (arg
, sizeof (arg
), "%x", required_pid
);
11764 remote_buffer_add_string (&p
, &left
, arg
);
11766 ret
= remote_hostio_send_command (p
- rs
->buf
, PACKET_vFile_setfs
,
11767 remote_errno
, NULL
, NULL
);
11769 if (packet_support (PACKET_vFile_setfs
) == PACKET_DISABLE
)
11773 rs
->fs_pid
= required_pid
;
11778 /* Implementation of to_fileio_open. */
11781 remote_hostio_open (struct target_ops
*self
,
11782 struct inferior
*inf
, const char *filename
,
11783 int flags
, int mode
, int warn_if_slow
,
11786 struct remote_state
*rs
= get_remote_state ();
11788 int left
= get_remote_packet_size () - 1;
11792 static int warning_issued
= 0;
11794 printf_unfiltered (_("Reading %s from remote target...\n"),
11797 if (!warning_issued
)
11799 warning (_("File transfers from remote targets can be slow."
11800 " Use \"set sysroot\" to access files locally"
11802 warning_issued
= 1;
11806 if (remote_hostio_set_filesystem (inf
, remote_errno
) != 0)
11809 remote_buffer_add_string (&p
, &left
, "vFile:open:");
11811 remote_buffer_add_bytes (&p
, &left
, (const gdb_byte
*) filename
,
11812 strlen (filename
));
11813 remote_buffer_add_string (&p
, &left
, ",");
11815 remote_buffer_add_int (&p
, &left
, flags
);
11816 remote_buffer_add_string (&p
, &left
, ",");
11818 remote_buffer_add_int (&p
, &left
, mode
);
11820 return remote_hostio_send_command (p
- rs
->buf
, PACKET_vFile_open
,
11821 remote_errno
, NULL
, NULL
);
11825 remote_target::fileio_open (struct inferior
*inf
, const char *filename
,
11826 int flags
, int mode
, int warn_if_slow
,
11829 return remote_hostio_open (this, inf
, filename
, flags
, mode
, warn_if_slow
,
11833 /* Implementation of to_fileio_pwrite. */
11836 remote_hostio_pwrite (struct target_ops
*self
,
11837 int fd
, const gdb_byte
*write_buf
, int len
,
11838 ULONGEST offset
, int *remote_errno
)
11840 struct remote_state
*rs
= get_remote_state ();
11842 int left
= get_remote_packet_size ();
11845 rs
->readahead_cache
.invalidate_fd (fd
);
11847 remote_buffer_add_string (&p
, &left
, "vFile:pwrite:");
11849 remote_buffer_add_int (&p
, &left
, fd
);
11850 remote_buffer_add_string (&p
, &left
, ",");
11852 remote_buffer_add_int (&p
, &left
, offset
);
11853 remote_buffer_add_string (&p
, &left
, ",");
11855 p
+= remote_escape_output (write_buf
, len
, 1, (gdb_byte
*) p
, &out_len
,
11856 get_remote_packet_size () - (p
- rs
->buf
));
11858 return remote_hostio_send_command (p
- rs
->buf
, PACKET_vFile_pwrite
,
11859 remote_errno
, NULL
, NULL
);
11863 remote_target::fileio_pwrite (int fd
, const gdb_byte
*write_buf
, int len
,
11864 ULONGEST offset
, int *remote_errno
)
11866 return remote_hostio_pwrite (this, fd
, write_buf
, len
, offset
, remote_errno
);
11869 /* Helper for the implementation of to_fileio_pread. Read the file
11870 from the remote side with vFile:pread. */
11873 remote_hostio_pread_vFile (struct target_ops
*self
,
11874 int fd
, gdb_byte
*read_buf
, int len
,
11875 ULONGEST offset
, int *remote_errno
)
11877 struct remote_state
*rs
= get_remote_state ();
11880 int left
= get_remote_packet_size ();
11881 int ret
, attachment_len
;
11884 remote_buffer_add_string (&p
, &left
, "vFile:pread:");
11886 remote_buffer_add_int (&p
, &left
, fd
);
11887 remote_buffer_add_string (&p
, &left
, ",");
11889 remote_buffer_add_int (&p
, &left
, len
);
11890 remote_buffer_add_string (&p
, &left
, ",");
11892 remote_buffer_add_int (&p
, &left
, offset
);
11894 ret
= remote_hostio_send_command (p
- rs
->buf
, PACKET_vFile_pread
,
11895 remote_errno
, &attachment
,
11901 read_len
= remote_unescape_input ((gdb_byte
*) attachment
, attachment_len
,
11903 if (read_len
!= ret
)
11904 error (_("Read returned %d, but %d bytes."), ret
, (int) read_len
);
11909 /* See declaration.h. */
11912 readahead_cache::pread (int fd
, gdb_byte
*read_buf
, size_t len
,
11916 && this->offset
<= offset
11917 && offset
< this->offset
+ this->bufsize
)
11919 ULONGEST max
= this->offset
+ this->bufsize
;
11921 if (offset
+ len
> max
)
11922 len
= max
- offset
;
11924 memcpy (read_buf
, this->buf
+ offset
- this->offset
, len
);
11931 /* Implementation of to_fileio_pread. */
11934 remote_hostio_pread (struct target_ops
*self
,
11935 int fd
, gdb_byte
*read_buf
, int len
,
11936 ULONGEST offset
, int *remote_errno
)
11939 struct remote_state
*rs
= get_remote_state ();
11940 readahead_cache
*cache
= &rs
->readahead_cache
;
11942 ret
= cache
->pread (fd
, read_buf
, len
, offset
);
11945 cache
->hit_count
++;
11948 fprintf_unfiltered (gdb_stdlog
, "readahead cache hit %s\n",
11949 pulongest (cache
->hit_count
));
11953 cache
->miss_count
++;
11955 fprintf_unfiltered (gdb_stdlog
, "readahead cache miss %s\n",
11956 pulongest (cache
->miss_count
));
11959 cache
->offset
= offset
;
11960 cache
->bufsize
= get_remote_packet_size ();
11961 cache
->buf
= (gdb_byte
*) xrealloc (cache
->buf
, cache
->bufsize
);
11963 ret
= remote_hostio_pread_vFile (self
, cache
->fd
, cache
->buf
, cache
->bufsize
,
11964 cache
->offset
, remote_errno
);
11967 cache
->invalidate_fd (fd
);
11971 cache
->bufsize
= ret
;
11972 return cache
->pread (fd
, read_buf
, len
, offset
);
11976 remote_target::fileio_pread (int fd
, gdb_byte
*read_buf
, int len
,
11977 ULONGEST offset
, int *remote_errno
)
11979 return remote_hostio_pread (this, fd
, read_buf
, len
, offset
, remote_errno
);
11982 /* Implementation of to_fileio_close. */
11985 remote_hostio_close (struct target_ops
*self
, int fd
, int *remote_errno
)
11987 struct remote_state
*rs
= get_remote_state ();
11989 int left
= get_remote_packet_size () - 1;
11991 rs
->readahead_cache
.invalidate_fd (fd
);
11993 remote_buffer_add_string (&p
, &left
, "vFile:close:");
11995 remote_buffer_add_int (&p
, &left
, fd
);
11997 return remote_hostio_send_command (p
- rs
->buf
, PACKET_vFile_close
,
11998 remote_errno
, NULL
, NULL
);
12002 remote_target::fileio_close (int fd
, int *remote_errno
)
12004 return remote_hostio_close (this, fd
, remote_errno
);
12007 /* Implementation of to_fileio_unlink. */
12010 remote_hostio_unlink (struct target_ops
*self
,
12011 struct inferior
*inf
, const char *filename
,
12014 struct remote_state
*rs
= get_remote_state ();
12016 int left
= get_remote_packet_size () - 1;
12018 if (remote_hostio_set_filesystem (inf
, remote_errno
) != 0)
12021 remote_buffer_add_string (&p
, &left
, "vFile:unlink:");
12023 remote_buffer_add_bytes (&p
, &left
, (const gdb_byte
*) filename
,
12024 strlen (filename
));
12026 return remote_hostio_send_command (p
- rs
->buf
, PACKET_vFile_unlink
,
12027 remote_errno
, NULL
, NULL
);
12031 remote_target::fileio_unlink (struct inferior
*inf
, const char *filename
,
12034 return remote_hostio_unlink (this, inf
, filename
, remote_errno
);
12037 /* Implementation of to_fileio_readlink. */
12039 gdb::optional
<std::string
>
12040 remote_target::fileio_readlink (struct inferior
*inf
, const char *filename
,
12043 struct remote_state
*rs
= get_remote_state ();
12046 int left
= get_remote_packet_size ();
12047 int len
, attachment_len
;
12050 if (remote_hostio_set_filesystem (inf
, remote_errno
) != 0)
12053 remote_buffer_add_string (&p
, &left
, "vFile:readlink:");
12055 remote_buffer_add_bytes (&p
, &left
, (const gdb_byte
*) filename
,
12056 strlen (filename
));
12058 len
= remote_hostio_send_command (p
- rs
->buf
, PACKET_vFile_readlink
,
12059 remote_errno
, &attachment
,
12065 std::string
ret (len
, '\0');
12067 read_len
= remote_unescape_input ((gdb_byte
*) attachment
, attachment_len
,
12068 (gdb_byte
*) &ret
[0], len
);
12069 if (read_len
!= len
)
12070 error (_("Readlink returned %d, but %d bytes."), len
, read_len
);
12075 /* Implementation of to_fileio_fstat. */
12078 remote_target::fileio_fstat (int fd
, struct stat
*st
, int *remote_errno
)
12080 struct remote_state
*rs
= get_remote_state ();
12082 int left
= get_remote_packet_size ();
12083 int attachment_len
, ret
;
12085 struct fio_stat fst
;
12088 remote_buffer_add_string (&p
, &left
, "vFile:fstat:");
12090 remote_buffer_add_int (&p
, &left
, fd
);
12092 ret
= remote_hostio_send_command (p
- rs
->buf
, PACKET_vFile_fstat
,
12093 remote_errno
, &attachment
,
12097 if (*remote_errno
!= FILEIO_ENOSYS
)
12100 /* Strictly we should return -1, ENOSYS here, but when
12101 "set sysroot remote:" was implemented in August 2008
12102 BFD's need for a stat function was sidestepped with
12103 this hack. This was not remedied until March 2015
12104 so we retain the previous behavior to avoid breaking
12107 Note that the memset is a March 2015 addition; older
12108 GDBs set st_size *and nothing else* so the structure
12109 would have garbage in all other fields. This might
12110 break something but retaining the previous behavior
12111 here would be just too wrong. */
12113 memset (st
, 0, sizeof (struct stat
));
12114 st
->st_size
= INT_MAX
;
12118 read_len
= remote_unescape_input ((gdb_byte
*) attachment
, attachment_len
,
12119 (gdb_byte
*) &fst
, sizeof (fst
));
12121 if (read_len
!= ret
)
12122 error (_("vFile:fstat returned %d, but %d bytes."), ret
, read_len
);
12124 if (read_len
!= sizeof (fst
))
12125 error (_("vFile:fstat returned %d bytes, but expecting %d."),
12126 read_len
, (int) sizeof (fst
));
12128 remote_fileio_to_host_stat (&fst
, st
);
12133 /* Implementation of to_filesystem_is_local. */
12136 remote_target::filesystem_is_local ()
12138 /* Valgrind GDB presents itself as a remote target but works
12139 on the local filesystem: it does not implement remote get
12140 and users are not expected to set a sysroot. To handle
12141 this case we treat the remote filesystem as local if the
12142 sysroot is exactly TARGET_SYSROOT_PREFIX and if the stub
12143 does not support vFile:open. */
12144 if (strcmp (gdb_sysroot
, TARGET_SYSROOT_PREFIX
) == 0)
12146 enum packet_support ps
= packet_support (PACKET_vFile_open
);
12148 if (ps
== PACKET_SUPPORT_UNKNOWN
)
12150 int fd
, remote_errno
;
12152 /* Try opening a file to probe support. The supplied
12153 filename is irrelevant, we only care about whether
12154 the stub recognizes the packet or not. */
12155 fd
= remote_hostio_open (this, NULL
, "just probing",
12156 FILEIO_O_RDONLY
, 0700, 0,
12160 remote_hostio_close (this, fd
, &remote_errno
);
12162 ps
= packet_support (PACKET_vFile_open
);
12165 if (ps
== PACKET_DISABLE
)
12167 static int warning_issued
= 0;
12169 if (!warning_issued
)
12171 warning (_("remote target does not support file"
12172 " transfer, attempting to access files"
12173 " from local filesystem."));
12174 warning_issued
= 1;
12185 remote_fileio_errno_to_host (int errnum
)
12191 case FILEIO_ENOENT
:
12199 case FILEIO_EACCES
:
12201 case FILEIO_EFAULT
:
12205 case FILEIO_EEXIST
:
12207 case FILEIO_ENODEV
:
12209 case FILEIO_ENOTDIR
:
12211 case FILEIO_EISDIR
:
12213 case FILEIO_EINVAL
:
12215 case FILEIO_ENFILE
:
12217 case FILEIO_EMFILE
:
12221 case FILEIO_ENOSPC
:
12223 case FILEIO_ESPIPE
:
12227 case FILEIO_ENOSYS
:
12229 case FILEIO_ENAMETOOLONG
:
12230 return ENAMETOOLONG
;
12236 remote_hostio_error (int errnum
)
12238 int host_error
= remote_fileio_errno_to_host (errnum
);
12240 if (host_error
== -1)
12241 error (_("Unknown remote I/O error %d"), errnum
);
12243 error (_("Remote I/O error: %s"), safe_strerror (host_error
));
12246 /* A RAII wrapper around a remote file descriptor. */
12248 class scoped_remote_fd
12251 explicit scoped_remote_fd (int fd
)
12256 ~scoped_remote_fd ()
12263 remote_hostio_close (find_target_at (process_stratum
),
12264 m_fd
, &remote_errno
);
12268 /* Swallow exception before it escapes the dtor. If
12269 something goes wrong, likely the connection is gone,
12270 and there's nothing else that can be done. */
12275 DISABLE_COPY_AND_ASSIGN (scoped_remote_fd
);
12277 /* Release ownership of the file descriptor, and return it. */
12278 int release () noexcept
12285 /* Return the owned file descriptor. */
12286 int get () const noexcept
12292 /* The owned remote I/O file descriptor. */
12297 remote_file_put (const char *local_file
, const char *remote_file
, int from_tty
)
12299 struct cleanup
*back_to
;
12300 int retcode
, remote_errno
, bytes
, io_size
;
12302 int bytes_in_buffer
;
12305 struct remote_state
*rs
= get_remote_state ();
12307 if (!rs
->remote_desc
)
12308 error (_("command can only be used with remote target"));
12310 gdb_file_up file
= gdb_fopen_cloexec (local_file
, "rb");
12312 perror_with_name (local_file
);
12314 scoped_remote_fd fd
12315 (remote_hostio_open (find_target_at (process_stratum
), NULL
,
12316 remote_file
, (FILEIO_O_WRONLY
| FILEIO_O_CREAT
12318 0700, 0, &remote_errno
));
12319 if (fd
.get () == -1)
12320 remote_hostio_error (remote_errno
);
12322 /* Send up to this many bytes at once. They won't all fit in the
12323 remote packet limit, so we'll transfer slightly fewer. */
12324 io_size
= get_remote_packet_size ();
12325 buffer
= (gdb_byte
*) xmalloc (io_size
);
12326 back_to
= make_cleanup (xfree
, buffer
);
12328 bytes_in_buffer
= 0;
12331 while (bytes_in_buffer
|| !saw_eof
)
12335 bytes
= fread (buffer
+ bytes_in_buffer
, 1,
12336 io_size
- bytes_in_buffer
,
12340 if (ferror (file
.get ()))
12341 error (_("Error reading %s."), local_file
);
12344 /* EOF. Unless there is something still in the
12345 buffer from the last iteration, we are done. */
12347 if (bytes_in_buffer
== 0)
12355 bytes
+= bytes_in_buffer
;
12356 bytes_in_buffer
= 0;
12358 retcode
= remote_hostio_pwrite (find_target_at (process_stratum
),
12359 fd
.get (), buffer
, bytes
,
12360 offset
, &remote_errno
);
12363 remote_hostio_error (remote_errno
);
12364 else if (retcode
== 0)
12365 error (_("Remote write of %d bytes returned 0!"), bytes
);
12366 else if (retcode
< bytes
)
12368 /* Short write. Save the rest of the read data for the next
12370 bytes_in_buffer
= bytes
- retcode
;
12371 memmove (buffer
, buffer
+ retcode
, bytes_in_buffer
);
12377 if (remote_hostio_close (find_target_at (process_stratum
),
12378 fd
.release (), &remote_errno
))
12379 remote_hostio_error (remote_errno
);
12382 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file
);
12383 do_cleanups (back_to
);
12387 remote_file_get (const char *remote_file
, const char *local_file
, int from_tty
)
12389 struct cleanup
*back_to
;
12390 int remote_errno
, bytes
, io_size
;
12393 struct remote_state
*rs
= get_remote_state ();
12395 if (!rs
->remote_desc
)
12396 error (_("command can only be used with remote target"));
12398 scoped_remote_fd fd
12399 (remote_hostio_open (find_target_at (process_stratum
), NULL
,
12400 remote_file
, FILEIO_O_RDONLY
, 0, 0,
12402 if (fd
.get () == -1)
12403 remote_hostio_error (remote_errno
);
12405 gdb_file_up file
= gdb_fopen_cloexec (local_file
, "wb");
12407 perror_with_name (local_file
);
12409 /* Send up to this many bytes at once. They won't all fit in the
12410 remote packet limit, so we'll transfer slightly fewer. */
12411 io_size
= get_remote_packet_size ();
12412 buffer
= (gdb_byte
*) xmalloc (io_size
);
12413 back_to
= make_cleanup (xfree
, buffer
);
12418 bytes
= remote_hostio_pread (find_target_at (process_stratum
),
12419 fd
.get (), buffer
, io_size
, offset
,
12422 /* Success, but no bytes, means end-of-file. */
12425 remote_hostio_error (remote_errno
);
12429 bytes
= fwrite (buffer
, 1, bytes
, file
.get ());
12431 perror_with_name (local_file
);
12434 if (remote_hostio_close (find_target_at (process_stratum
),
12435 fd
.release (), &remote_errno
))
12436 remote_hostio_error (remote_errno
);
12439 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file
);
12440 do_cleanups (back_to
);
12444 remote_file_delete (const char *remote_file
, int from_tty
)
12446 int retcode
, remote_errno
;
12447 struct remote_state
*rs
= get_remote_state ();
12449 if (!rs
->remote_desc
)
12450 error (_("command can only be used with remote target"));
12452 retcode
= remote_hostio_unlink (find_target_at (process_stratum
),
12453 NULL
, remote_file
, &remote_errno
);
12455 remote_hostio_error (remote_errno
);
12458 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file
);
12462 remote_put_command (const char *args
, int from_tty
)
12465 error_no_arg (_("file to put"));
12467 gdb_argv
argv (args
);
12468 if (argv
[0] == NULL
|| argv
[1] == NULL
|| argv
[2] != NULL
)
12469 error (_("Invalid parameters to remote put"));
12471 remote_file_put (argv
[0], argv
[1], from_tty
);
12475 remote_get_command (const char *args
, int from_tty
)
12478 error_no_arg (_("file to get"));
12480 gdb_argv
argv (args
);
12481 if (argv
[0] == NULL
|| argv
[1] == NULL
|| argv
[2] != NULL
)
12482 error (_("Invalid parameters to remote get"));
12484 remote_file_get (argv
[0], argv
[1], from_tty
);
12488 remote_delete_command (const char *args
, int from_tty
)
12491 error_no_arg (_("file to delete"));
12493 gdb_argv
argv (args
);
12494 if (argv
[0] == NULL
|| argv
[1] != NULL
)
12495 error (_("Invalid parameters to remote delete"));
12497 remote_file_delete (argv
[0], from_tty
);
12501 remote_command (const char *args
, int from_tty
)
12503 help_list (remote_cmdlist
, "remote ", all_commands
, gdb_stdout
);
12507 remote_target::can_execute_reverse ()
12509 if (packet_support (PACKET_bs
) == PACKET_ENABLE
12510 || packet_support (PACKET_bc
) == PACKET_ENABLE
)
12517 remote_target::supports_non_stop ()
12523 remote_target::supports_disable_randomization ()
12525 /* Only supported in extended mode. */
12530 remote_target::supports_multi_process ()
12532 struct remote_state
*rs
= get_remote_state ();
12534 return remote_multi_process_p (rs
);
12538 remote_supports_cond_tracepoints ()
12540 return packet_support (PACKET_ConditionalTracepoints
) == PACKET_ENABLE
;
12544 remote_target::supports_evaluation_of_breakpoint_conditions ()
12546 return packet_support (PACKET_ConditionalBreakpoints
) == PACKET_ENABLE
;
12550 remote_supports_fast_tracepoints ()
12552 return packet_support (PACKET_FastTracepoints
) == PACKET_ENABLE
;
12556 remote_supports_static_tracepoints ()
12558 return packet_support (PACKET_StaticTracepoints
) == PACKET_ENABLE
;
12562 remote_supports_install_in_trace ()
12564 return packet_support (PACKET_InstallInTrace
) == PACKET_ENABLE
;
12568 remote_target::supports_enable_disable_tracepoint ()
12570 return (packet_support (PACKET_EnableDisableTracepoints_feature
)
12575 remote_target::supports_string_tracing ()
12577 return packet_support (PACKET_tracenz_feature
) == PACKET_ENABLE
;
12581 remote_target::can_run_breakpoint_commands ()
12583 return packet_support (PACKET_BreakpointCommands
) == PACKET_ENABLE
;
12587 remote_target::trace_init ()
12589 struct remote_state
*rs
= get_remote_state ();
12592 remote_get_noisy_reply ();
12593 if (strcmp (rs
->buf
, "OK") != 0)
12594 error (_("Target does not support this command."));
12597 /* Recursive routine to walk through command list including loops, and
12598 download packets for each command. */
12601 remote_download_command_source (int num
, ULONGEST addr
,
12602 struct command_line
*cmds
)
12604 struct remote_state
*rs
= get_remote_state ();
12605 struct command_line
*cmd
;
12607 for (cmd
= cmds
; cmd
; cmd
= cmd
->next
)
12609 QUIT
; /* Allow user to bail out with ^C. */
12610 strcpy (rs
->buf
, "QTDPsrc:");
12611 encode_source_string (num
, addr
, "cmd", cmd
->line
,
12612 rs
->buf
+ strlen (rs
->buf
),
12613 rs
->buf_size
- strlen (rs
->buf
));
12615 remote_get_noisy_reply ();
12616 if (strcmp (rs
->buf
, "OK"))
12617 warning (_("Target does not support source download."));
12619 if (cmd
->control_type
== while_control
12620 || cmd
->control_type
== while_stepping_control
)
12622 remote_download_command_source (num
, addr
, cmd
->body_list_0
.get ());
12624 QUIT
; /* Allow user to bail out with ^C. */
12625 strcpy (rs
->buf
, "QTDPsrc:");
12626 encode_source_string (num
, addr
, "cmd", "end",
12627 rs
->buf
+ strlen (rs
->buf
),
12628 rs
->buf_size
- strlen (rs
->buf
));
12630 remote_get_noisy_reply ();
12631 if (strcmp (rs
->buf
, "OK"))
12632 warning (_("Target does not support source download."));
12638 remote_target::download_tracepoint (struct bp_location
*loc
)
12640 #define BUF_SIZE 2048
12644 char buf
[BUF_SIZE
];
12645 std::vector
<std::string
> tdp_actions
;
12646 std::vector
<std::string
> stepping_actions
;
12648 struct breakpoint
*b
= loc
->owner
;
12649 struct tracepoint
*t
= (struct tracepoint
*) b
;
12650 struct remote_state
*rs
= get_remote_state ();
12652 encode_actions_rsp (loc
, &tdp_actions
, &stepping_actions
);
12654 tpaddr
= loc
->address
;
12655 sprintf_vma (addrbuf
, tpaddr
);
12656 xsnprintf (buf
, BUF_SIZE
, "QTDP:%x:%s:%c:%lx:%x", b
->number
,
12657 addrbuf
, /* address */
12658 (b
->enable_state
== bp_enabled
? 'E' : 'D'),
12659 t
->step_count
, t
->pass_count
);
12660 /* Fast tracepoints are mostly handled by the target, but we can
12661 tell the target how big of an instruction block should be moved
12663 if (b
->type
== bp_fast_tracepoint
)
12665 /* Only test for support at download time; we may not know
12666 target capabilities at definition time. */
12667 if (remote_supports_fast_tracepoints ())
12669 if (gdbarch_fast_tracepoint_valid_at (loc
->gdbarch
, tpaddr
,
12671 xsnprintf (buf
+ strlen (buf
), BUF_SIZE
- strlen (buf
), ":F%x",
12672 gdb_insn_length (loc
->gdbarch
, tpaddr
));
12674 /* If it passed validation at definition but fails now,
12675 something is very wrong. */
12676 internal_error (__FILE__
, __LINE__
,
12677 _("Fast tracepoint not "
12678 "valid during download"));
12681 /* Fast tracepoints are functionally identical to regular
12682 tracepoints, so don't take lack of support as a reason to
12683 give up on the trace run. */
12684 warning (_("Target does not support fast tracepoints, "
12685 "downloading %d as regular tracepoint"), b
->number
);
12687 else if (b
->type
== bp_static_tracepoint
)
12689 /* Only test for support at download time; we may not know
12690 target capabilities at definition time. */
12691 if (remote_supports_static_tracepoints ())
12693 struct static_tracepoint_marker marker
;
12695 if (target_static_tracepoint_marker_at (tpaddr
, &marker
))
12696 strcat (buf
, ":S");
12698 error (_("Static tracepoint not valid during download"));
12701 /* Fast tracepoints are functionally identical to regular
12702 tracepoints, so don't take lack of support as a reason
12703 to give up on the trace run. */
12704 error (_("Target does not support static tracepoints"));
12706 /* If the tracepoint has a conditional, make it into an agent
12707 expression and append to the definition. */
12710 /* Only test support at download time, we may not know target
12711 capabilities at definition time. */
12712 if (remote_supports_cond_tracepoints ())
12714 agent_expr_up aexpr
= gen_eval_for_expr (tpaddr
, loc
->cond
.get ());
12715 xsnprintf (buf
+ strlen (buf
), BUF_SIZE
- strlen (buf
), ":X%x,",
12717 pkt
= buf
+ strlen (buf
);
12718 for (int ndx
= 0; ndx
< aexpr
->len
; ++ndx
)
12719 pkt
= pack_hex_byte (pkt
, aexpr
->buf
[ndx
]);
12723 warning (_("Target does not support conditional tracepoints, "
12724 "ignoring tp %d cond"), b
->number
);
12727 if (b
->commands
|| *default_collect
)
12730 remote_get_noisy_reply ();
12731 if (strcmp (rs
->buf
, "OK"))
12732 error (_("Target does not support tracepoints."));
12734 /* do_single_steps (t); */
12735 for (auto action_it
= tdp_actions
.begin ();
12736 action_it
!= tdp_actions
.end (); action_it
++)
12738 QUIT
; /* Allow user to bail out with ^C. */
12740 bool has_more
= (action_it
!= tdp_actions
.end ()
12741 || !stepping_actions
.empty ());
12743 xsnprintf (buf
, BUF_SIZE
, "QTDP:-%x:%s:%s%c",
12744 b
->number
, addrbuf
, /* address */
12745 action_it
->c_str (),
12746 has_more
? '-' : 0);
12748 remote_get_noisy_reply ();
12749 if (strcmp (rs
->buf
, "OK"))
12750 error (_("Error on target while setting tracepoints."));
12753 for (auto action_it
= stepping_actions
.begin ();
12754 action_it
!= stepping_actions
.end (); action_it
++)
12756 QUIT
; /* Allow user to bail out with ^C. */
12758 bool is_first
= action_it
== stepping_actions
.begin ();
12759 bool has_more
= action_it
!= stepping_actions
.end ();
12761 xsnprintf (buf
, BUF_SIZE
, "QTDP:-%x:%s:%s%s%s",
12762 b
->number
, addrbuf
, /* address */
12763 is_first
? "S" : "",
12764 action_it
->c_str (),
12765 has_more
? "-" : "");
12767 remote_get_noisy_reply ();
12768 if (strcmp (rs
->buf
, "OK"))
12769 error (_("Error on target while setting tracepoints."));
12772 if (packet_support (PACKET_TracepointSource
) == PACKET_ENABLE
)
12774 if (b
->location
!= NULL
)
12776 strcpy (buf
, "QTDPsrc:");
12777 encode_source_string (b
->number
, loc
->address
, "at",
12778 event_location_to_string (b
->location
.get ()),
12779 buf
+ strlen (buf
), 2048 - strlen (buf
));
12781 remote_get_noisy_reply ();
12782 if (strcmp (rs
->buf
, "OK"))
12783 warning (_("Target does not support source download."));
12785 if (b
->cond_string
)
12787 strcpy (buf
, "QTDPsrc:");
12788 encode_source_string (b
->number
, loc
->address
,
12789 "cond", b
->cond_string
, buf
+ strlen (buf
),
12790 2048 - strlen (buf
));
12792 remote_get_noisy_reply ();
12793 if (strcmp (rs
->buf
, "OK"))
12794 warning (_("Target does not support source download."));
12796 remote_download_command_source (b
->number
, loc
->address
,
12797 breakpoint_commands (b
));
12802 remote_target::can_download_tracepoint ()
12804 struct remote_state
*rs
= get_remote_state ();
12805 struct trace_status
*ts
;
12808 /* Don't try to install tracepoints until we've relocated our
12809 symbols, and fetched and merged the target's tracepoint list with
12811 if (rs
->starting_up
)
12814 ts
= current_trace_status ();
12815 status
= get_trace_status (ts
);
12817 if (status
== -1 || !ts
->running_known
|| !ts
->running
)
12820 /* If we are in a tracing experiment, but remote stub doesn't support
12821 installing tracepoint in trace, we have to return. */
12822 if (!remote_supports_install_in_trace ())
12830 remote_target::download_trace_state_variable (const trace_state_variable
&tsv
)
12832 struct remote_state
*rs
= get_remote_state ();
12835 xsnprintf (rs
->buf
, get_remote_packet_size (), "QTDV:%x:%s:%x:",
12836 tsv
.number
, phex ((ULONGEST
) tsv
.initial_value
, 8),
12838 p
= rs
->buf
+ strlen (rs
->buf
);
12839 if ((p
- rs
->buf
) + tsv
.name
.length () * 2 >= get_remote_packet_size ())
12840 error (_("Trace state variable name too long for tsv definition packet"));
12841 p
+= 2 * bin2hex ((gdb_byte
*) (tsv
.name
.data ()), p
, tsv
.name
.length ());
12844 remote_get_noisy_reply ();
12845 if (*rs
->buf
== '\0')
12846 error (_("Target does not support this command."));
12847 if (strcmp (rs
->buf
, "OK") != 0)
12848 error (_("Error on target while downloading trace state variable."));
12852 remote_target::enable_tracepoint (struct bp_location
*location
)
12854 struct remote_state
*rs
= get_remote_state ();
12857 sprintf_vma (addr_buf
, location
->address
);
12858 xsnprintf (rs
->buf
, get_remote_packet_size (), "QTEnable:%x:%s",
12859 location
->owner
->number
, addr_buf
);
12861 remote_get_noisy_reply ();
12862 if (*rs
->buf
== '\0')
12863 error (_("Target does not support enabling tracepoints while a trace run is ongoing."));
12864 if (strcmp (rs
->buf
, "OK") != 0)
12865 error (_("Error on target while enabling tracepoint."));
12869 remote_target::disable_tracepoint (struct bp_location
*location
)
12871 struct remote_state
*rs
= get_remote_state ();
12874 sprintf_vma (addr_buf
, location
->address
);
12875 xsnprintf (rs
->buf
, get_remote_packet_size (), "QTDisable:%x:%s",
12876 location
->owner
->number
, addr_buf
);
12878 remote_get_noisy_reply ();
12879 if (*rs
->buf
== '\0')
12880 error (_("Target does not support disabling tracepoints while a trace run is ongoing."));
12881 if (strcmp (rs
->buf
, "OK") != 0)
12882 error (_("Error on target while disabling tracepoint."));
12886 remote_target::trace_set_readonly_regions ()
12890 bfd_size_type size
;
12896 return; /* No information to give. */
12898 struct remote_state
*rs
= get_remote_state ();
12900 strcpy (rs
->buf
, "QTro");
12901 offset
= strlen (rs
->buf
);
12902 for (s
= exec_bfd
->sections
; s
; s
= s
->next
)
12904 char tmp1
[40], tmp2
[40];
12907 if ((s
->flags
& SEC_LOAD
) == 0 ||
12908 /* (s->flags & SEC_CODE) == 0 || */
12909 (s
->flags
& SEC_READONLY
) == 0)
12913 vma
= bfd_get_section_vma (abfd
, s
);
12914 size
= bfd_get_section_size (s
);
12915 sprintf_vma (tmp1
, vma
);
12916 sprintf_vma (tmp2
, vma
+ size
);
12917 sec_length
= 1 + strlen (tmp1
) + 1 + strlen (tmp2
);
12918 if (offset
+ sec_length
+ 1 > rs
->buf_size
)
12920 if (packet_support (PACKET_qXfer_traceframe_info
) != PACKET_ENABLE
)
12922 Too many sections for read-only sections definition packet."));
12925 xsnprintf (rs
->buf
+ offset
, rs
->buf_size
- offset
, ":%s,%s",
12927 offset
+= sec_length
;
12932 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
12937 remote_target::trace_start ()
12939 struct remote_state
*rs
= get_remote_state ();
12941 putpkt ("QTStart");
12942 remote_get_noisy_reply ();
12943 if (*rs
->buf
== '\0')
12944 error (_("Target does not support this command."));
12945 if (strcmp (rs
->buf
, "OK") != 0)
12946 error (_("Bogus reply from target: %s"), rs
->buf
);
12950 remote_target::get_trace_status (struct trace_status
*ts
)
12952 /* Initialize it just to avoid a GCC false warning. */
12954 /* FIXME we need to get register block size some other way. */
12955 extern int trace_regblock_size
;
12956 enum packet_result result
;
12957 struct remote_state
*rs
= get_remote_state ();
12959 if (packet_support (PACKET_qTStatus
) == PACKET_DISABLE
)
12962 trace_regblock_size
12963 = rs
->get_remote_arch_state (target_gdbarch ())->sizeof_g_packet
;
12965 putpkt ("qTStatus");
12969 p
= remote_get_noisy_reply ();
12971 CATCH (ex
, RETURN_MASK_ERROR
)
12973 if (ex
.error
!= TARGET_CLOSE_ERROR
)
12975 exception_fprintf (gdb_stderr
, ex
, "qTStatus: ");
12978 throw_exception (ex
);
12982 result
= packet_ok (p
, &remote_protocol_packets
[PACKET_qTStatus
]);
12984 /* If the remote target doesn't do tracing, flag it. */
12985 if (result
== PACKET_UNKNOWN
)
12988 /* We're working with a live target. */
12989 ts
->filename
= NULL
;
12992 error (_("Bogus trace status reply from target: %s"), rs
->buf
);
12994 /* Function 'parse_trace_status' sets default value of each field of
12995 'ts' at first, so we don't have to do it here. */
12996 parse_trace_status (p
, ts
);
12998 return ts
->running
;
13002 remote_target::get_tracepoint_status (struct breakpoint
*bp
,
13003 struct uploaded_tp
*utp
)
13005 struct remote_state
*rs
= get_remote_state ();
13007 struct bp_location
*loc
;
13008 struct tracepoint
*tp
= (struct tracepoint
*) bp
;
13009 size_t size
= get_remote_packet_size ();
13014 tp
->traceframe_usage
= 0;
13015 for (loc
= tp
->loc
; loc
; loc
= loc
->next
)
13017 /* If the tracepoint was never downloaded, don't go asking for
13019 if (tp
->number_on_target
== 0)
13021 xsnprintf (rs
->buf
, size
, "qTP:%x:%s", tp
->number_on_target
,
13022 phex_nz (loc
->address
, 0));
13024 reply
= remote_get_noisy_reply ();
13025 if (reply
&& *reply
)
13028 parse_tracepoint_status (reply
+ 1, bp
, utp
);
13034 utp
->hit_count
= 0;
13035 utp
->traceframe_usage
= 0;
13036 xsnprintf (rs
->buf
, size
, "qTP:%x:%s", utp
->number
,
13037 phex_nz (utp
->addr
, 0));
13039 reply
= remote_get_noisy_reply ();
13040 if (reply
&& *reply
)
13043 parse_tracepoint_status (reply
+ 1, bp
, utp
);
13049 remote_target::trace_stop ()
13051 struct remote_state
*rs
= get_remote_state ();
13054 remote_get_noisy_reply ();
13055 if (*rs
->buf
== '\0')
13056 error (_("Target does not support this command."));
13057 if (strcmp (rs
->buf
, "OK") != 0)
13058 error (_("Bogus reply from target: %s"), rs
->buf
);
13062 remote_target::trace_find (enum trace_find_type type
, int num
,
13063 CORE_ADDR addr1
, CORE_ADDR addr2
,
13066 struct remote_state
*rs
= get_remote_state ();
13067 char *endbuf
= rs
->buf
+ get_remote_packet_size ();
13069 int target_frameno
= -1, target_tracept
= -1;
13071 /* Lookups other than by absolute frame number depend on the current
13072 trace selected, so make sure it is correct on the remote end
13074 if (type
!= tfind_number
)
13075 set_remote_traceframe ();
13078 strcpy (p
, "QTFrame:");
13079 p
= strchr (p
, '\0');
13083 xsnprintf (p
, endbuf
- p
, "%x", num
);
13086 xsnprintf (p
, endbuf
- p
, "pc:%s", phex_nz (addr1
, 0));
13089 xsnprintf (p
, endbuf
- p
, "tdp:%x", num
);
13092 xsnprintf (p
, endbuf
- p
, "range:%s:%s", phex_nz (addr1
, 0),
13093 phex_nz (addr2
, 0));
13095 case tfind_outside
:
13096 xsnprintf (p
, endbuf
- p
, "outside:%s:%s", phex_nz (addr1
, 0),
13097 phex_nz (addr2
, 0));
13100 error (_("Unknown trace find type %d"), type
);
13104 reply
= remote_get_noisy_reply ();
13105 if (*reply
== '\0')
13106 error (_("Target does not support this command."));
13108 while (reply
&& *reply
)
13113 target_frameno
= (int) strtol (p
, &reply
, 16);
13115 error (_("Unable to parse trace frame number"));
13116 /* Don't update our remote traceframe number cache on failure
13117 to select a remote traceframe. */
13118 if (target_frameno
== -1)
13123 target_tracept
= (int) strtol (p
, &reply
, 16);
13125 error (_("Unable to parse tracepoint number"));
13127 case 'O': /* "OK"? */
13128 if (reply
[1] == 'K' && reply
[2] == '\0')
13131 error (_("Bogus reply from target: %s"), reply
);
13134 error (_("Bogus reply from target: %s"), reply
);
13137 *tpp
= target_tracept
;
13139 rs
->remote_traceframe_number
= target_frameno
;
13140 return target_frameno
;
13144 remote_target::get_trace_state_variable_value (int tsvnum
, LONGEST
*val
)
13146 struct remote_state
*rs
= get_remote_state ();
13150 set_remote_traceframe ();
13152 xsnprintf (rs
->buf
, get_remote_packet_size (), "qTV:%x", tsvnum
);
13154 reply
= remote_get_noisy_reply ();
13155 if (reply
&& *reply
)
13159 unpack_varlen_hex (reply
+ 1, &uval
);
13160 *val
= (LONGEST
) uval
;
13168 remote_target::save_trace_data (const char *filename
)
13170 struct remote_state
*rs
= get_remote_state ();
13174 strcpy (p
, "QTSave:");
13176 if ((p
- rs
->buf
) + strlen (filename
) * 2 >= get_remote_packet_size ())
13177 error (_("Remote file name too long for trace save packet"));
13178 p
+= 2 * bin2hex ((gdb_byte
*) filename
, p
, strlen (filename
));
13181 reply
= remote_get_noisy_reply ();
13182 if (*reply
== '\0')
13183 error (_("Target does not support this command."));
13184 if (strcmp (reply
, "OK") != 0)
13185 error (_("Bogus reply from target: %s"), reply
);
13189 /* This is basically a memory transfer, but needs to be its own packet
13190 because we don't know how the target actually organizes its trace
13191 memory, plus we want to be able to ask for as much as possible, but
13192 not be unhappy if we don't get as much as we ask for. */
13195 remote_target::get_raw_trace_data (gdb_byte
*buf
, ULONGEST offset
, LONGEST len
)
13197 struct remote_state
*rs
= get_remote_state ();
13203 strcpy (p
, "qTBuffer:");
13205 p
+= hexnumstr (p
, offset
);
13207 p
+= hexnumstr (p
, len
);
13211 reply
= remote_get_noisy_reply ();
13212 if (reply
&& *reply
)
13214 /* 'l' by itself means we're at the end of the buffer and
13215 there is nothing more to get. */
13219 /* Convert the reply into binary. Limit the number of bytes to
13220 convert according to our passed-in buffer size, rather than
13221 what was returned in the packet; if the target is
13222 unexpectedly generous and gives us a bigger reply than we
13223 asked for, we don't want to crash. */
13224 rslt
= hex2bin (reply
, buf
, len
);
13228 /* Something went wrong, flag as an error. */
13233 remote_target::set_disconnected_tracing (int val
)
13235 struct remote_state
*rs
= get_remote_state ();
13237 if (packet_support (PACKET_DisconnectedTracing_feature
) == PACKET_ENABLE
)
13241 xsnprintf (rs
->buf
, get_remote_packet_size (), "QTDisconnected:%x", val
);
13243 reply
= remote_get_noisy_reply ();
13244 if (*reply
== '\0')
13245 error (_("Target does not support this command."));
13246 if (strcmp (reply
, "OK") != 0)
13247 error (_("Bogus reply from target: %s"), reply
);
13250 warning (_("Target does not support disconnected tracing."));
13254 remote_target::core_of_thread (ptid_t ptid
)
13256 struct thread_info
*info
= find_thread_ptid (ptid
);
13258 if (info
!= NULL
&& info
->priv
!= NULL
)
13259 return get_remote_thread_info (info
)->core
;
13265 remote_target::set_circular_trace_buffer (int val
)
13267 struct remote_state
*rs
= get_remote_state ();
13270 xsnprintf (rs
->buf
, get_remote_packet_size (), "QTBuffer:circular:%x", val
);
13272 reply
= remote_get_noisy_reply ();
13273 if (*reply
== '\0')
13274 error (_("Target does not support this command."));
13275 if (strcmp (reply
, "OK") != 0)
13276 error (_("Bogus reply from target: %s"), reply
);
13280 remote_target::traceframe_info ()
13282 gdb::optional
<gdb::char_vector
> text
13283 = target_read_stralloc (target_stack
, TARGET_OBJECT_TRACEFRAME_INFO
,
13286 return parse_traceframe_info (text
->data ());
13291 /* Handle the qTMinFTPILen packet. Returns the minimum length of
13292 instruction on which a fast tracepoint may be placed. Returns -1
13293 if the packet is not supported, and 0 if the minimum instruction
13294 length is unknown. */
13297 remote_target::get_min_fast_tracepoint_insn_len ()
13299 struct remote_state
*rs
= get_remote_state ();
13302 /* If we're not debugging a process yet, the IPA can't be
13304 if (!target_has_execution
)
13307 /* Make sure the remote is pointing at the right process. */
13308 set_general_process ();
13310 xsnprintf (rs
->buf
, get_remote_packet_size (), "qTMinFTPILen");
13312 reply
= remote_get_noisy_reply ();
13313 if (*reply
== '\0')
13317 ULONGEST min_insn_len
;
13319 unpack_varlen_hex (reply
, &min_insn_len
);
13321 return (int) min_insn_len
;
13326 remote_target::set_trace_buffer_size (LONGEST val
)
13328 if (packet_support (PACKET_QTBuffer_size
) != PACKET_DISABLE
)
13330 struct remote_state
*rs
= get_remote_state ();
13331 char *buf
= rs
->buf
;
13332 char *endbuf
= rs
->buf
+ get_remote_packet_size ();
13333 enum packet_result result
;
13335 gdb_assert (val
>= 0 || val
== -1);
13336 buf
+= xsnprintf (buf
, endbuf
- buf
, "QTBuffer:size:");
13337 /* Send -1 as literal "-1" to avoid host size dependency. */
13341 buf
+= hexnumstr (buf
, (ULONGEST
) -val
);
13344 buf
+= hexnumstr (buf
, (ULONGEST
) val
);
13347 remote_get_noisy_reply ();
13348 result
= packet_ok (rs
->buf
,
13349 &remote_protocol_packets
[PACKET_QTBuffer_size
]);
13351 if (result
!= PACKET_OK
)
13352 warning (_("Bogus reply from target: %s"), rs
->buf
);
13357 remote_target::set_trace_notes (const char *user
, const char *notes
,
13358 const char *stop_notes
)
13360 struct remote_state
*rs
= get_remote_state ();
13362 char *buf
= rs
->buf
;
13363 char *endbuf
= rs
->buf
+ get_remote_packet_size ();
13366 buf
+= xsnprintf (buf
, endbuf
- buf
, "QTNotes:");
13369 buf
+= xsnprintf (buf
, endbuf
- buf
, "user:");
13370 nbytes
= bin2hex ((gdb_byte
*) user
, buf
, strlen (user
));
13376 buf
+= xsnprintf (buf
, endbuf
- buf
, "notes:");
13377 nbytes
= bin2hex ((gdb_byte
*) notes
, buf
, strlen (notes
));
13383 buf
+= xsnprintf (buf
, endbuf
- buf
, "tstop:");
13384 nbytes
= bin2hex ((gdb_byte
*) stop_notes
, buf
, strlen (stop_notes
));
13388 /* Ensure the buffer is terminated. */
13392 reply
= remote_get_noisy_reply ();
13393 if (*reply
== '\0')
13396 if (strcmp (reply
, "OK") != 0)
13397 error (_("Bogus reply from target: %s"), reply
);
13403 remote_target::use_agent (bool use
)
13405 if (packet_support (PACKET_QAgent
) != PACKET_DISABLE
)
13407 struct remote_state
*rs
= get_remote_state ();
13409 /* If the stub supports QAgent. */
13410 xsnprintf (rs
->buf
, get_remote_packet_size (), "QAgent:%d", use
);
13412 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
13414 if (strcmp (rs
->buf
, "OK") == 0)
13425 remote_target::can_use_agent ()
13427 return (packet_support (PACKET_QAgent
) != PACKET_DISABLE
);
13430 struct btrace_target_info
13432 /* The ptid of the traced thread. */
13435 /* The obtained branch trace configuration. */
13436 struct btrace_config conf
;
13439 /* Reset our idea of our target's btrace configuration. */
13442 remote_btrace_reset (void)
13444 struct remote_state
*rs
= get_remote_state ();
13446 memset (&rs
->btrace_config
, 0, sizeof (rs
->btrace_config
));
13449 /* Synchronize the configuration with the target. */
13452 btrace_sync_conf (const struct btrace_config
*conf
)
13454 struct packet_config
*packet
;
13455 struct remote_state
*rs
;
13456 char *buf
, *pos
, *endbuf
;
13458 rs
= get_remote_state ();
13460 endbuf
= buf
+ get_remote_packet_size ();
13462 packet
= &remote_protocol_packets
[PACKET_Qbtrace_conf_bts_size
];
13463 if (packet_config_support (packet
) == PACKET_ENABLE
13464 && conf
->bts
.size
!= rs
->btrace_config
.bts
.size
)
13467 pos
+= xsnprintf (pos
, endbuf
- pos
, "%s=0x%x", packet
->name
,
13471 getpkt (&buf
, &rs
->buf_size
, 0);
13473 if (packet_ok (buf
, packet
) == PACKET_ERROR
)
13475 if (buf
[0] == 'E' && buf
[1] == '.')
13476 error (_("Failed to configure the BTS buffer size: %s"), buf
+ 2);
13478 error (_("Failed to configure the BTS buffer size."));
13481 rs
->btrace_config
.bts
.size
= conf
->bts
.size
;
13484 packet
= &remote_protocol_packets
[PACKET_Qbtrace_conf_pt_size
];
13485 if (packet_config_support (packet
) == PACKET_ENABLE
13486 && conf
->pt
.size
!= rs
->btrace_config
.pt
.size
)
13489 pos
+= xsnprintf (pos
, endbuf
- pos
, "%s=0x%x", packet
->name
,
13493 getpkt (&buf
, &rs
->buf_size
, 0);
13495 if (packet_ok (buf
, packet
) == PACKET_ERROR
)
13497 if (buf
[0] == 'E' && buf
[1] == '.')
13498 error (_("Failed to configure the trace buffer size: %s"), buf
+ 2);
13500 error (_("Failed to configure the trace buffer size."));
13503 rs
->btrace_config
.pt
.size
= conf
->pt
.size
;
13507 /* Read the current thread's btrace configuration from the target and
13508 store it into CONF. */
13511 btrace_read_config (struct btrace_config
*conf
)
13513 gdb::optional
<gdb::char_vector
> xml
13514 = target_read_stralloc (target_stack
, TARGET_OBJECT_BTRACE_CONF
, "");
13516 parse_xml_btrace_conf (conf
, xml
->data ());
13519 /* Maybe reopen target btrace. */
13522 remote_btrace_maybe_reopen (void)
13524 struct remote_state
*rs
= get_remote_state ();
13525 struct thread_info
*tp
;
13526 int btrace_target_pushed
= 0;
13529 scoped_restore_current_thread restore_thread
;
13531 ALL_NON_EXITED_THREADS (tp
)
13533 set_general_thread (tp
->ptid
);
13535 memset (&rs
->btrace_config
, 0x00, sizeof (struct btrace_config
));
13536 btrace_read_config (&rs
->btrace_config
);
13538 if (rs
->btrace_config
.format
== BTRACE_FORMAT_NONE
)
13541 #if !defined (HAVE_LIBIPT)
13542 if (rs
->btrace_config
.format
== BTRACE_FORMAT_PT
)
13547 warning (_("Target is recording using Intel Processor Trace "
13548 "but support was disabled at compile time."));
13553 #endif /* !defined (HAVE_LIBIPT) */
13555 /* Push target, once, but before anything else happens. This way our
13556 changes to the threads will be cleaned up by unpushing the target
13557 in case btrace_read_config () throws. */
13558 if (!btrace_target_pushed
)
13560 btrace_target_pushed
= 1;
13561 record_btrace_push_target ();
13562 printf_filtered (_("Target is recording using %s.\n"),
13563 btrace_format_string (rs
->btrace_config
.format
));
13566 tp
->btrace
.target
= XCNEW (struct btrace_target_info
);
13567 tp
->btrace
.target
->ptid
= tp
->ptid
;
13568 tp
->btrace
.target
->conf
= rs
->btrace_config
;
13572 /* Enable branch tracing. */
13574 struct btrace_target_info
*
13575 remote_target::enable_btrace (ptid_t ptid
, const struct btrace_config
*conf
)
13577 struct btrace_target_info
*tinfo
= NULL
;
13578 struct packet_config
*packet
= NULL
;
13579 struct remote_state
*rs
= get_remote_state ();
13580 char *buf
= rs
->buf
;
13581 char *endbuf
= rs
->buf
+ get_remote_packet_size ();
13583 switch (conf
->format
)
13585 case BTRACE_FORMAT_BTS
:
13586 packet
= &remote_protocol_packets
[PACKET_Qbtrace_bts
];
13589 case BTRACE_FORMAT_PT
:
13590 packet
= &remote_protocol_packets
[PACKET_Qbtrace_pt
];
13594 if (packet
== NULL
|| packet_config_support (packet
) != PACKET_ENABLE
)
13595 error (_("Target does not support branch tracing."));
13597 btrace_sync_conf (conf
);
13599 set_general_thread (ptid
);
13601 buf
+= xsnprintf (buf
, endbuf
- buf
, "%s", packet
->name
);
13603 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
13605 if (packet_ok (rs
->buf
, packet
) == PACKET_ERROR
)
13607 if (rs
->buf
[0] == 'E' && rs
->buf
[1] == '.')
13608 error (_("Could not enable branch tracing for %s: %s"),
13609 target_pid_to_str (ptid
), rs
->buf
+ 2);
13611 error (_("Could not enable branch tracing for %s."),
13612 target_pid_to_str (ptid
));
13615 tinfo
= XCNEW (struct btrace_target_info
);
13616 tinfo
->ptid
= ptid
;
13618 /* If we fail to read the configuration, we lose some information, but the
13619 tracing itself is not impacted. */
13622 btrace_read_config (&tinfo
->conf
);
13624 CATCH (err
, RETURN_MASK_ERROR
)
13626 if (err
.message
!= NULL
)
13627 warning ("%s", err
.message
);
13634 /* Disable branch tracing. */
13637 remote_target::disable_btrace (struct btrace_target_info
*tinfo
)
13639 struct packet_config
*packet
= &remote_protocol_packets
[PACKET_Qbtrace_off
];
13640 struct remote_state
*rs
= get_remote_state ();
13641 char *buf
= rs
->buf
;
13642 char *endbuf
= rs
->buf
+ get_remote_packet_size ();
13644 if (packet_config_support (packet
) != PACKET_ENABLE
)
13645 error (_("Target does not support branch tracing."));
13647 set_general_thread (tinfo
->ptid
);
13649 buf
+= xsnprintf (buf
, endbuf
- buf
, "%s", packet
->name
);
13651 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
13653 if (packet_ok (rs
->buf
, packet
) == PACKET_ERROR
)
13655 if (rs
->buf
[0] == 'E' && rs
->buf
[1] == '.')
13656 error (_("Could not disable branch tracing for %s: %s"),
13657 target_pid_to_str (tinfo
->ptid
), rs
->buf
+ 2);
13659 error (_("Could not disable branch tracing for %s."),
13660 target_pid_to_str (tinfo
->ptid
));
13666 /* Teardown branch tracing. */
13669 remote_target::teardown_btrace (struct btrace_target_info
*tinfo
)
13671 /* We must not talk to the target during teardown. */
13675 /* Read the branch trace. */
13678 remote_target::read_btrace (struct btrace_data
*btrace
,
13679 struct btrace_target_info
*tinfo
,
13680 enum btrace_read_type type
)
13682 struct packet_config
*packet
= &remote_protocol_packets
[PACKET_qXfer_btrace
];
13685 if (packet_config_support (packet
) != PACKET_ENABLE
)
13686 error (_("Target does not support branch tracing."));
13688 #if !defined(HAVE_LIBEXPAT)
13689 error (_("Cannot process branch tracing result. XML parsing not supported."));
13694 case BTRACE_READ_ALL
:
13697 case BTRACE_READ_NEW
:
13700 case BTRACE_READ_DELTA
:
13704 internal_error (__FILE__
, __LINE__
,
13705 _("Bad branch tracing read type: %u."),
13706 (unsigned int) type
);
13709 gdb::optional
<gdb::char_vector
> xml
13710 = target_read_stralloc (target_stack
, TARGET_OBJECT_BTRACE
, annex
);
13712 return BTRACE_ERR_UNKNOWN
;
13714 parse_xml_btrace (btrace
, xml
->data ());
13716 return BTRACE_ERR_NONE
;
13719 const struct btrace_config
*
13720 remote_target::btrace_conf (const struct btrace_target_info
*tinfo
)
13722 return &tinfo
->conf
;
13726 remote_target::augmented_libraries_svr4_read ()
13728 return (packet_support (PACKET_augmented_libraries_svr4_read_feature
)
13732 /* Implementation of to_load. */
13735 remote_target::load (const char *name
, int from_tty
)
13737 generic_load (name
, from_tty
);
13740 /* Accepts an integer PID; returns a string representing a file that
13741 can be opened on the remote side to get the symbols for the child
13742 process. Returns NULL if the operation is not supported. */
13745 remote_target::pid_to_exec_file (int pid
)
13747 static gdb::optional
<gdb::char_vector
> filename
;
13748 struct inferior
*inf
;
13749 char *annex
= NULL
;
13751 if (packet_support (PACKET_qXfer_exec_file
) != PACKET_ENABLE
)
13754 inf
= find_inferior_pid (pid
);
13756 internal_error (__FILE__
, __LINE__
,
13757 _("not currently attached to process %d"), pid
);
13759 if (!inf
->fake_pid_p
)
13761 const int annex_size
= 9;
13763 annex
= (char *) alloca (annex_size
);
13764 xsnprintf (annex
, annex_size
, "%x", pid
);
13767 filename
= target_read_stralloc (target_stack
,
13768 TARGET_OBJECT_EXEC_FILE
, annex
);
13770 return filename
? filename
->data () : nullptr;
13773 /* Implement the to_can_do_single_step target_ops method. */
13776 remote_target::can_do_single_step ()
13778 /* We can only tell whether target supports single step or not by
13779 supported s and S vCont actions if the stub supports vContSupported
13780 feature. If the stub doesn't support vContSupported feature,
13781 we have conservatively to think target doesn't supports single
13783 if (packet_support (PACKET_vContSupported
) == PACKET_ENABLE
)
13785 struct remote_state
*rs
= get_remote_state ();
13787 if (packet_support (PACKET_vCont
) == PACKET_SUPPORT_UNKNOWN
)
13788 remote_vcont_probe (rs
);
13790 return rs
->supports_vCont
.s
&& rs
->supports_vCont
.S
;
13796 /* Implementation of the to_execution_direction method for the remote
13799 enum exec_direction_kind
13800 remote_target::execution_direction ()
13802 struct remote_state
*rs
= get_remote_state ();
13804 return rs
->last_resume_exec_dir
;
13807 /* Return pointer to the thread_info struct which corresponds to
13808 THREAD_HANDLE (having length HANDLE_LEN). */
13811 remote_target::thread_handle_to_thread_info (const gdb_byte
*thread_handle
,
13815 struct thread_info
*tp
;
13817 ALL_NON_EXITED_THREADS (tp
)
13819 remote_thread_info
*priv
= get_remote_thread_info (tp
);
13821 if (tp
->inf
== inf
&& priv
!= NULL
)
13823 if (handle_len
!= priv
->thread_handle
.size ())
13824 error (_("Thread handle size mismatch: %d vs %zu (from remote)"),
13825 handle_len
, priv
->thread_handle
.size ());
13826 if (memcmp (thread_handle
, priv
->thread_handle
.data (),
13836 remote_target::can_async_p ()
13838 struct remote_state
*rs
= get_remote_state ();
13840 /* We don't go async if the user has explicitly prevented it with the
13841 "maint set target-async" command. */
13842 if (!target_async_permitted
)
13845 /* We're async whenever the serial device is. */
13846 return serial_can_async_p (rs
->remote_desc
);
13850 remote_target::is_async_p ()
13852 struct remote_state
*rs
= get_remote_state ();
13854 if (!target_async_permitted
)
13855 /* We only enable async when the user specifically asks for it. */
13858 /* We're async whenever the serial device is. */
13859 return serial_is_async_p (rs
->remote_desc
);
13862 /* Pass the SERIAL event on and up to the client. One day this code
13863 will be able to delay notifying the client of an event until the
13864 point where an entire packet has been received. */
13866 static serial_event_ftype remote_async_serial_handler
;
13869 remote_async_serial_handler (struct serial
*scb
, void *context
)
13871 /* Don't propogate error information up to the client. Instead let
13872 the client find out about the error by querying the target. */
13873 inferior_event_handler (INF_REG_EVENT
, NULL
);
13877 remote_async_inferior_event_handler (gdb_client_data data
)
13879 inferior_event_handler (INF_REG_EVENT
, NULL
);
13883 remote_target::async (int enable
)
13885 struct remote_state
*rs
= get_remote_state ();
13889 serial_async (rs
->remote_desc
, remote_async_serial_handler
, rs
);
13891 /* If there are pending events in the stop reply queue tell the
13892 event loop to process them. */
13893 if (!QUEUE_is_empty (stop_reply_p
, stop_reply_queue
))
13894 mark_async_event_handler (remote_async_inferior_event_token
);
13895 /* For simplicity, below we clear the pending events token
13896 without remembering whether it is marked, so here we always
13897 mark it. If there's actually no pending notification to
13898 process, this ends up being a no-op (other than a spurious
13899 event-loop wakeup). */
13900 if (target_is_non_stop_p ())
13901 mark_async_event_handler (rs
->notif_state
->get_pending_events_token
);
13905 serial_async (rs
->remote_desc
, NULL
, NULL
);
13906 /* If the core is disabling async, it doesn't want to be
13907 disturbed with target events. Clear all async event sources
13909 clear_async_event_handler (remote_async_inferior_event_token
);
13910 if (target_is_non_stop_p ())
13911 clear_async_event_handler (rs
->notif_state
->get_pending_events_token
);
13915 /* Implementation of the to_thread_events method. */
13918 remote_target::thread_events (int enable
)
13920 struct remote_state
*rs
= get_remote_state ();
13921 size_t size
= get_remote_packet_size ();
13923 if (packet_support (PACKET_QThreadEvents
) == PACKET_DISABLE
)
13926 xsnprintf (rs
->buf
, size
, "QThreadEvents:%x", enable
? 1 : 0);
13928 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
13930 switch (packet_ok (rs
->buf
,
13931 &remote_protocol_packets
[PACKET_QThreadEvents
]))
13934 if (strcmp (rs
->buf
, "OK") != 0)
13935 error (_("Remote refused setting thread events: %s"), rs
->buf
);
13938 warning (_("Remote failure reply: %s"), rs
->buf
);
13940 case PACKET_UNKNOWN
:
13946 set_remote_cmd (const char *args
, int from_tty
)
13948 help_list (remote_set_cmdlist
, "set remote ", all_commands
, gdb_stdout
);
13952 show_remote_cmd (const char *args
, int from_tty
)
13954 /* We can't just use cmd_show_list here, because we want to skip
13955 the redundant "show remote Z-packet" and the legacy aliases. */
13956 struct cmd_list_element
*list
= remote_show_cmdlist
;
13957 struct ui_out
*uiout
= current_uiout
;
13959 ui_out_emit_tuple
tuple_emitter (uiout
, "showlist");
13960 for (; list
!= NULL
; list
= list
->next
)
13961 if (strcmp (list
->name
, "Z-packet") == 0)
13963 else if (list
->type
== not_set_cmd
)
13964 /* Alias commands are exactly like the original, except they
13965 don't have the normal type. */
13969 ui_out_emit_tuple
option_emitter (uiout
, "option");
13971 uiout
->field_string ("name", list
->name
);
13972 uiout
->text (": ");
13973 if (list
->type
== show_cmd
)
13974 do_show_command (NULL
, from_tty
, list
);
13976 cmd_func (list
, NULL
, from_tty
);
13981 /* Function to be called whenever a new objfile (shlib) is detected. */
13983 remote_new_objfile (struct objfile
*objfile
)
13985 struct remote_state
*rs
= get_remote_state ();
13987 if (rs
->remote_desc
!= 0) /* Have a remote connection. */
13988 remote_check_symbols ();
13991 /* Pull all the tracepoints defined on the target and create local
13992 data structures representing them. We don't want to create real
13993 tracepoints yet, we don't want to mess up the user's existing
13997 remote_target::upload_tracepoints (struct uploaded_tp
**utpp
)
13999 struct remote_state
*rs
= get_remote_state ();
14002 /* Ask for a first packet of tracepoint definition. */
14004 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
14006 while (*p
&& *p
!= 'l')
14008 parse_tracepoint_definition (p
, utpp
);
14009 /* Ask for another packet of tracepoint definition. */
14011 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
14018 remote_target::upload_trace_state_variables (struct uploaded_tsv
**utsvp
)
14020 struct remote_state
*rs
= get_remote_state ();
14023 /* Ask for a first packet of variable definition. */
14025 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
14027 while (*p
&& *p
!= 'l')
14029 parse_tsv_definition (p
, utsvp
);
14030 /* Ask for another packet of variable definition. */
14032 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
14038 /* The "set/show range-stepping" show hook. */
14041 show_range_stepping (struct ui_file
*file
, int from_tty
,
14042 struct cmd_list_element
*c
,
14045 fprintf_filtered (file
,
14046 _("Debugger's willingness to use range stepping "
14047 "is %s.\n"), value
);
14050 /* The "set/show range-stepping" set hook. */
14053 set_range_stepping (const char *ignore_args
, int from_tty
,
14054 struct cmd_list_element
*c
)
14056 struct remote_state
*rs
= get_remote_state ();
14058 /* Whene enabling, check whether range stepping is actually
14059 supported by the target, and warn if not. */
14060 if (use_range_stepping
)
14062 if (rs
->remote_desc
!= NULL
)
14064 if (packet_support (PACKET_vCont
) == PACKET_SUPPORT_UNKNOWN
)
14065 remote_vcont_probe (rs
);
14067 if (packet_support (PACKET_vCont
) == PACKET_ENABLE
14068 && rs
->supports_vCont
.r
)
14072 warning (_("Range stepping is not supported by the current target"));
14077 _initialize_remote (void)
14079 struct cmd_list_element
*cmd
;
14080 const char *cmd_name
;
14082 /* architecture specific data */
14083 remote_g_packet_data_handle
=
14084 gdbarch_data_register_pre_init (remote_g_packet_data_init
);
14087 = register_program_space_data_with_cleanup (NULL
,
14088 remote_pspace_data_cleanup
);
14090 /* Initialize the per-target state. At the moment there is only one
14091 of these, not one per target. Only one target is active at a
14093 remote_state
= new struct remote_state ();
14095 add_target (remote_target_info
, remote_target::open
);
14096 add_target (extended_remote_target_info
, extended_remote_target::open
);
14098 /* Hook into new objfile notification. */
14099 gdb::observers::new_objfile
.attach (remote_new_objfile
);
14102 init_remote_threadtests ();
14105 stop_reply_queue
= QUEUE_alloc (stop_reply_p
, stop_reply_xfree
);
14106 /* set/show remote ... */
14108 add_prefix_cmd ("remote", class_maintenance
, set_remote_cmd
, _("\
14109 Remote protocol specific variables\n\
14110 Configure various remote-protocol specific variables such as\n\
14111 the packets being used"),
14112 &remote_set_cmdlist
, "set remote ",
14113 0 /* allow-unknown */, &setlist
);
14114 add_prefix_cmd ("remote", class_maintenance
, show_remote_cmd
, _("\
14115 Remote protocol specific variables\n\
14116 Configure various remote-protocol specific variables such as\n\
14117 the packets being used"),
14118 &remote_show_cmdlist
, "show remote ",
14119 0 /* allow-unknown */, &showlist
);
14121 add_cmd ("compare-sections", class_obscure
, compare_sections_command
, _("\
14122 Compare section data on target to the exec file.\n\
14123 Argument is a single section name (default: all loaded sections).\n\
14124 To compare only read-only loaded sections, specify the -r option."),
14127 add_cmd ("packet", class_maintenance
, packet_command
, _("\
14128 Send an arbitrary packet to a remote target.\n\
14129 maintenance packet TEXT\n\
14130 If GDB is talking to an inferior via the GDB serial protocol, then\n\
14131 this command sends the string TEXT to the inferior, and displays the\n\
14132 response packet. GDB supplies the initial `$' character, and the\n\
14133 terminating `#' character and checksum."),
14136 add_setshow_boolean_cmd ("remotebreak", no_class
, &remote_break
, _("\
14137 Set whether to send break if interrupted."), _("\
14138 Show whether to send break if interrupted."), _("\
14139 If set, a break, instead of a cntrl-c, is sent to the remote target."),
14140 set_remotebreak
, show_remotebreak
,
14141 &setlist
, &showlist
);
14142 cmd_name
= "remotebreak";
14143 cmd
= lookup_cmd (&cmd_name
, setlist
, "", -1, 1);
14144 deprecate_cmd (cmd
, "set remote interrupt-sequence");
14145 cmd_name
= "remotebreak"; /* needed because lookup_cmd updates the pointer */
14146 cmd
= lookup_cmd (&cmd_name
, showlist
, "", -1, 1);
14147 deprecate_cmd (cmd
, "show remote interrupt-sequence");
14149 add_setshow_enum_cmd ("interrupt-sequence", class_support
,
14150 interrupt_sequence_modes
, &interrupt_sequence_mode
,
14152 Set interrupt sequence to remote target."), _("\
14153 Show interrupt sequence to remote target."), _("\
14154 Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."),
14155 NULL
, show_interrupt_sequence
,
14156 &remote_set_cmdlist
,
14157 &remote_show_cmdlist
);
14159 add_setshow_boolean_cmd ("interrupt-on-connect", class_support
,
14160 &interrupt_on_connect
, _("\
14161 Set whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
14162 Show whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
14163 If set, interrupt sequence is sent to remote target."),
14165 &remote_set_cmdlist
, &remote_show_cmdlist
);
14167 /* Install commands for configuring memory read/write packets. */
14169 add_cmd ("remotewritesize", no_class
, set_memory_write_packet_size
, _("\
14170 Set the maximum number of bytes per memory write packet (deprecated)."),
14172 add_cmd ("remotewritesize", no_class
, show_memory_write_packet_size
, _("\
14173 Show the maximum number of bytes per memory write packet (deprecated)."),
14175 add_cmd ("memory-write-packet-size", no_class
,
14176 set_memory_write_packet_size
, _("\
14177 Set the maximum number of bytes per memory-write packet.\n\
14178 Specify the number of bytes in a packet or 0 (zero) for the\n\
14179 default packet size. The actual limit is further reduced\n\
14180 dependent on the target. Specify ``fixed'' to disable the\n\
14181 further restriction and ``limit'' to enable that restriction."),
14182 &remote_set_cmdlist
);
14183 add_cmd ("memory-read-packet-size", no_class
,
14184 set_memory_read_packet_size
, _("\
14185 Set the maximum number of bytes per memory-read packet.\n\
14186 Specify the number of bytes in a packet or 0 (zero) for the\n\
14187 default packet size. The actual limit is further reduced\n\
14188 dependent on the target. Specify ``fixed'' to disable the\n\
14189 further restriction and ``limit'' to enable that restriction."),
14190 &remote_set_cmdlist
);
14191 add_cmd ("memory-write-packet-size", no_class
,
14192 show_memory_write_packet_size
,
14193 _("Show the maximum number of bytes per memory-write packet."),
14194 &remote_show_cmdlist
);
14195 add_cmd ("memory-read-packet-size", no_class
,
14196 show_memory_read_packet_size
,
14197 _("Show the maximum number of bytes per memory-read packet."),
14198 &remote_show_cmdlist
);
14200 add_setshow_zinteger_cmd ("hardware-watchpoint-limit", no_class
,
14201 &remote_hw_watchpoint_limit
, _("\
14202 Set the maximum number of target hardware watchpoints."), _("\
14203 Show the maximum number of target hardware watchpoints."), _("\
14204 Specify a negative limit for unlimited."),
14205 NULL
, NULL
, /* FIXME: i18n: The maximum
14206 number of target hardware
14207 watchpoints is %s. */
14208 &remote_set_cmdlist
, &remote_show_cmdlist
);
14209 add_setshow_zinteger_cmd ("hardware-watchpoint-length-limit", no_class
,
14210 &remote_hw_watchpoint_length_limit
, _("\
14211 Set the maximum length (in bytes) of a target hardware watchpoint."), _("\
14212 Show the maximum length (in bytes) of a target hardware watchpoint."), _("\
14213 Specify a negative limit for unlimited."),
14214 NULL
, NULL
, /* FIXME: i18n: The maximum
14215 length (in bytes) of a target
14216 hardware watchpoint is %s. */
14217 &remote_set_cmdlist
, &remote_show_cmdlist
);
14218 add_setshow_zinteger_cmd ("hardware-breakpoint-limit", no_class
,
14219 &remote_hw_breakpoint_limit
, _("\
14220 Set the maximum number of target hardware breakpoints."), _("\
14221 Show the maximum number of target hardware breakpoints."), _("\
14222 Specify a negative limit for unlimited."),
14223 NULL
, NULL
, /* FIXME: i18n: The maximum
14224 number of target hardware
14225 breakpoints is %s. */
14226 &remote_set_cmdlist
, &remote_show_cmdlist
);
14228 add_setshow_zuinteger_cmd ("remoteaddresssize", class_obscure
,
14229 &remote_address_size
, _("\
14230 Set the maximum size of the address (in bits) in a memory packet."), _("\
14231 Show the maximum size of the address (in bits) in a memory packet."), NULL
,
14233 NULL
, /* FIXME: i18n: */
14234 &setlist
, &showlist
);
14236 init_all_packet_configs ();
14238 add_packet_config_cmd (&remote_protocol_packets
[PACKET_X
],
14239 "X", "binary-download", 1);
14241 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vCont
],
14242 "vCont", "verbose-resume", 0);
14244 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QPassSignals
],
14245 "QPassSignals", "pass-signals", 0);
14247 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QCatchSyscalls
],
14248 "QCatchSyscalls", "catch-syscalls", 0);
14250 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QProgramSignals
],
14251 "QProgramSignals", "program-signals", 0);
14253 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QSetWorkingDir
],
14254 "QSetWorkingDir", "set-working-dir", 0);
14256 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QStartupWithShell
],
14257 "QStartupWithShell", "startup-with-shell", 0);
14259 add_packet_config_cmd (&remote_protocol_packets
14260 [PACKET_QEnvironmentHexEncoded
],
14261 "QEnvironmentHexEncoded", "environment-hex-encoded",
14264 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QEnvironmentReset
],
14265 "QEnvironmentReset", "environment-reset",
14268 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QEnvironmentUnset
],
14269 "QEnvironmentUnset", "environment-unset",
14272 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qSymbol
],
14273 "qSymbol", "symbol-lookup", 0);
14275 add_packet_config_cmd (&remote_protocol_packets
[PACKET_P
],
14276 "P", "set-register", 1);
14278 add_packet_config_cmd (&remote_protocol_packets
[PACKET_p
],
14279 "p", "fetch-register", 1);
14281 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Z0
],
14282 "Z0", "software-breakpoint", 0);
14284 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Z1
],
14285 "Z1", "hardware-breakpoint", 0);
14287 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Z2
],
14288 "Z2", "write-watchpoint", 0);
14290 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Z3
],
14291 "Z3", "read-watchpoint", 0);
14293 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Z4
],
14294 "Z4", "access-watchpoint", 0);
14296 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_auxv
],
14297 "qXfer:auxv:read", "read-aux-vector", 0);
14299 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_exec_file
],
14300 "qXfer:exec-file:read", "pid-to-exec-file", 0);
14302 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_features
],
14303 "qXfer:features:read", "target-features", 0);
14305 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_libraries
],
14306 "qXfer:libraries:read", "library-info", 0);
14308 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_libraries_svr4
],
14309 "qXfer:libraries-svr4:read", "library-info-svr4", 0);
14311 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_memory_map
],
14312 "qXfer:memory-map:read", "memory-map", 0);
14314 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_spu_read
],
14315 "qXfer:spu:read", "read-spu-object", 0);
14317 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_spu_write
],
14318 "qXfer:spu:write", "write-spu-object", 0);
14320 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_osdata
],
14321 "qXfer:osdata:read", "osdata", 0);
14323 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_threads
],
14324 "qXfer:threads:read", "threads", 0);
14326 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_siginfo_read
],
14327 "qXfer:siginfo:read", "read-siginfo-object", 0);
14329 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_siginfo_write
],
14330 "qXfer:siginfo:write", "write-siginfo-object", 0);
14332 add_packet_config_cmd
14333 (&remote_protocol_packets
[PACKET_qXfer_traceframe_info
],
14334 "qXfer:traceframe-info:read", "traceframe-info", 0);
14336 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_uib
],
14337 "qXfer:uib:read", "unwind-info-block", 0);
14339 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qGetTLSAddr
],
14340 "qGetTLSAddr", "get-thread-local-storage-address",
14343 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qGetTIBAddr
],
14344 "qGetTIBAddr", "get-thread-information-block-address",
14347 add_packet_config_cmd (&remote_protocol_packets
[PACKET_bc
],
14348 "bc", "reverse-continue", 0);
14350 add_packet_config_cmd (&remote_protocol_packets
[PACKET_bs
],
14351 "bs", "reverse-step", 0);
14353 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qSupported
],
14354 "qSupported", "supported-packets", 0);
14356 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qSearch_memory
],
14357 "qSearch:memory", "search-memory", 0);
14359 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qTStatus
],
14360 "qTStatus", "trace-status", 0);
14362 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vFile_setfs
],
14363 "vFile:setfs", "hostio-setfs", 0);
14365 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vFile_open
],
14366 "vFile:open", "hostio-open", 0);
14368 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vFile_pread
],
14369 "vFile:pread", "hostio-pread", 0);
14371 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vFile_pwrite
],
14372 "vFile:pwrite", "hostio-pwrite", 0);
14374 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vFile_close
],
14375 "vFile:close", "hostio-close", 0);
14377 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vFile_unlink
],
14378 "vFile:unlink", "hostio-unlink", 0);
14380 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vFile_readlink
],
14381 "vFile:readlink", "hostio-readlink", 0);
14383 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vFile_fstat
],
14384 "vFile:fstat", "hostio-fstat", 0);
14386 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vAttach
],
14387 "vAttach", "attach", 0);
14389 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vRun
],
14392 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QStartNoAckMode
],
14393 "QStartNoAckMode", "noack", 0);
14395 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vKill
],
14396 "vKill", "kill", 0);
14398 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qAttached
],
14399 "qAttached", "query-attached", 0);
14401 add_packet_config_cmd (&remote_protocol_packets
[PACKET_ConditionalTracepoints
],
14402 "ConditionalTracepoints",
14403 "conditional-tracepoints", 0);
14405 add_packet_config_cmd (&remote_protocol_packets
[PACKET_ConditionalBreakpoints
],
14406 "ConditionalBreakpoints",
14407 "conditional-breakpoints", 0);
14409 add_packet_config_cmd (&remote_protocol_packets
[PACKET_BreakpointCommands
],
14410 "BreakpointCommands",
14411 "breakpoint-commands", 0);
14413 add_packet_config_cmd (&remote_protocol_packets
[PACKET_FastTracepoints
],
14414 "FastTracepoints", "fast-tracepoints", 0);
14416 add_packet_config_cmd (&remote_protocol_packets
[PACKET_TracepointSource
],
14417 "TracepointSource", "TracepointSource", 0);
14419 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QAllow
],
14420 "QAllow", "allow", 0);
14422 add_packet_config_cmd (&remote_protocol_packets
[PACKET_StaticTracepoints
],
14423 "StaticTracepoints", "static-tracepoints", 0);
14425 add_packet_config_cmd (&remote_protocol_packets
[PACKET_InstallInTrace
],
14426 "InstallInTrace", "install-in-trace", 0);
14428 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_statictrace_read
],
14429 "qXfer:statictrace:read", "read-sdata-object", 0);
14431 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_fdpic
],
14432 "qXfer:fdpic:read", "read-fdpic-loadmap", 0);
14434 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QDisableRandomization
],
14435 "QDisableRandomization", "disable-randomization", 0);
14437 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QAgent
],
14438 "QAgent", "agent", 0);
14440 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QTBuffer_size
],
14441 "QTBuffer:size", "trace-buffer-size", 0);
14443 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Qbtrace_off
],
14444 "Qbtrace:off", "disable-btrace", 0);
14446 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Qbtrace_bts
],
14447 "Qbtrace:bts", "enable-btrace-bts", 0);
14449 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Qbtrace_pt
],
14450 "Qbtrace:pt", "enable-btrace-pt", 0);
14452 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_btrace
],
14453 "qXfer:btrace", "read-btrace", 0);
14455 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_btrace_conf
],
14456 "qXfer:btrace-conf", "read-btrace-conf", 0);
14458 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Qbtrace_conf_bts_size
],
14459 "Qbtrace-conf:bts:size", "btrace-conf-bts-size", 0);
14461 add_packet_config_cmd (&remote_protocol_packets
[PACKET_multiprocess_feature
],
14462 "multiprocess-feature", "multiprocess-feature", 0);
14464 add_packet_config_cmd (&remote_protocol_packets
[PACKET_swbreak_feature
],
14465 "swbreak-feature", "swbreak-feature", 0);
14467 add_packet_config_cmd (&remote_protocol_packets
[PACKET_hwbreak_feature
],
14468 "hwbreak-feature", "hwbreak-feature", 0);
14470 add_packet_config_cmd (&remote_protocol_packets
[PACKET_fork_event_feature
],
14471 "fork-event-feature", "fork-event-feature", 0);
14473 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vfork_event_feature
],
14474 "vfork-event-feature", "vfork-event-feature", 0);
14476 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Qbtrace_conf_pt_size
],
14477 "Qbtrace-conf:pt:size", "btrace-conf-pt-size", 0);
14479 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vContSupported
],
14480 "vContSupported", "verbose-resume-supported", 0);
14482 add_packet_config_cmd (&remote_protocol_packets
[PACKET_exec_event_feature
],
14483 "exec-event-feature", "exec-event-feature", 0);
14485 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vCtrlC
],
14486 "vCtrlC", "ctrl-c", 0);
14488 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QThreadEvents
],
14489 "QThreadEvents", "thread-events", 0);
14491 add_packet_config_cmd (&remote_protocol_packets
[PACKET_no_resumed
],
14492 "N stop reply", "no-resumed-stop-reply", 0);
14494 /* Assert that we've registered "set remote foo-packet" commands
14495 for all packet configs. */
14499 for (i
= 0; i
< PACKET_MAX
; i
++)
14501 /* Ideally all configs would have a command associated. Some
14502 still don't though. */
14507 case PACKET_QNonStop
:
14508 case PACKET_EnableDisableTracepoints_feature
:
14509 case PACKET_tracenz_feature
:
14510 case PACKET_DisconnectedTracing_feature
:
14511 case PACKET_augmented_libraries_svr4_read_feature
:
14513 /* Additions to this list need to be well justified:
14514 pre-existing packets are OK; new packets are not. */
14522 /* This catches both forgetting to add a config command, and
14523 forgetting to remove a packet from the exception list. */
14524 gdb_assert (excepted
== (remote_protocol_packets
[i
].name
== NULL
));
14528 /* Keep the old ``set remote Z-packet ...'' working. Each individual
14529 Z sub-packet has its own set and show commands, but users may
14530 have sets to this variable in their .gdbinit files (or in their
14532 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure
,
14533 &remote_Z_packet_detect
, _("\
14534 Set use of remote protocol `Z' packets"), _("\
14535 Show use of remote protocol `Z' packets "), _("\
14536 When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
14538 set_remote_protocol_Z_packet_cmd
,
14539 show_remote_protocol_Z_packet_cmd
,
14540 /* FIXME: i18n: Use of remote protocol
14541 `Z' packets is %s. */
14542 &remote_set_cmdlist
, &remote_show_cmdlist
);
14544 add_prefix_cmd ("remote", class_files
, remote_command
, _("\
14545 Manipulate files on the remote system\n\
14546 Transfer files to and from the remote target system."),
14547 &remote_cmdlist
, "remote ",
14548 0 /* allow-unknown */, &cmdlist
);
14550 add_cmd ("put", class_files
, remote_put_command
,
14551 _("Copy a local file to the remote system."),
14554 add_cmd ("get", class_files
, remote_get_command
,
14555 _("Copy a remote file to the local system."),
14558 add_cmd ("delete", class_files
, remote_delete_command
,
14559 _("Delete a remote file."),
14562 add_setshow_string_noescape_cmd ("exec-file", class_files
,
14563 &remote_exec_file_var
, _("\
14564 Set the remote pathname for \"run\""), _("\
14565 Show the remote pathname for \"run\""), NULL
,
14566 set_remote_exec_file
,
14567 show_remote_exec_file
,
14568 &remote_set_cmdlist
,
14569 &remote_show_cmdlist
);
14571 add_setshow_boolean_cmd ("range-stepping", class_run
,
14572 &use_range_stepping
, _("\
14573 Enable or disable range stepping."), _("\
14574 Show whether target-assisted range stepping is enabled."), _("\
14575 If on, and the target supports it, when stepping a source line, GDB\n\
14576 tells the target to step the corresponding range of addresses itself instead\n\
14577 of issuing multiple single-steps. This speeds up source level\n\
14578 stepping. If off, GDB always issues single-steps, even if range\n\
14579 stepping is supported by the target. The default is on."),
14580 set_range_stepping
,
14581 show_range_stepping
,
14585 /* Eventually initialize fileio. See fileio.c */
14586 initialize_remote_fileio (remote_set_cmdlist
, remote_show_cmdlist
);
14588 /* Take advantage of the fact that the TID field is not used, to tag
14589 special ptids with it set to != 0. */
14590 magic_null_ptid
= ptid_build (42000, -1, 1);
14591 not_sent_ptid
= ptid_build (42000, -2, 1);
14592 any_thread_ptid
= ptid_build (42000, 0, 1);