1 /* Remote target communications for serial-line targets in custom GDB protocol
3 Copyright (C) 1988-2019 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20 /* See the GDB User Guide for details of the GDB remote protocol. */
30 #include "process-stratum-target.h"
33 #include "gdb-stabs.h"
34 #include "gdbthread.h"
36 #include "remote-notif.h"
39 #include "observable.h"
41 #include "cli/cli-decode.h"
42 #include "cli/cli-setshow.h"
43 #include "target-descriptions.h"
45 #include "gdbsupport/filestuff.h"
46 #include "gdbsupport/rsp-low.h"
50 #include "gdbsupport/gdb_sys_time.h"
52 #include "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"
71 #include "gdbsupport/agent.h"
73 #include "record-btrace.h"
75 #include "gdbsupport/scoped_restore.h"
76 #include "gdbsupport/environ.h"
77 #include "gdbsupport/byte-vector.h"
79 #include <unordered_map>
81 /* The remote target. */
83 static const char remote_doc
[] = N_("\
84 Use a remote computer via a serial line, using a gdb-specific protocol.\n\
85 Specify the serial device it is connected to\n\
86 (e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).");
88 #define OPAQUETHREADBYTES 8
90 /* a 64 bit opaque identifier */
91 typedef unsigned char threadref
[OPAQUETHREADBYTES
];
93 struct gdb_ext_thread_info
;
94 struct threads_listing_context
;
95 typedef int (*rmt_thread_action
) (threadref
*ref
, void *context
);
96 struct protocol_feature
;
100 typedef std::unique_ptr
<stop_reply
> stop_reply_up
;
102 /* Generic configuration support for packets the stub optionally
103 supports. Allows the user to specify the use of the packet as well
104 as allowing GDB to auto-detect support in the remote stub. */
108 PACKET_SUPPORT_UNKNOWN
= 0,
113 /* Analyze a packet's return value and update the packet config
123 struct threads_listing_context
;
125 /* Stub vCont actions support.
127 Each field is a boolean flag indicating whether the stub reports
128 support for the corresponding action. */
130 struct vCont_action_support
145 /* About this many threadids fit in a packet. */
147 #define MAXTHREADLISTRESULTS 32
149 /* Data for the vFile:pread readahead cache. */
151 struct readahead_cache
153 /* Invalidate the readahead cache. */
156 /* Invalidate the readahead cache if it is holding data for FD. */
157 void invalidate_fd (int fd
);
159 /* Serve pread from the readahead cache. Returns number of bytes
160 read, or 0 if the request can't be served from the cache. */
161 int pread (int fd
, gdb_byte
*read_buf
, size_t len
, ULONGEST offset
);
163 /* The file descriptor for the file that is being cached. -1 if the
167 /* The offset into the file that the cache buffer corresponds
171 /* The buffer holding the cache contents. */
172 gdb_byte
*buf
= nullptr;
173 /* The buffer's size. We try to read as much as fits into a packet
177 /* Cache hit and miss counters. */
178 ULONGEST hit_count
= 0;
179 ULONGEST miss_count
= 0;
182 /* Description of the remote protocol for a given architecture. */
186 long offset
; /* Offset into G packet. */
187 long regnum
; /* GDB's internal register number. */
188 LONGEST pnum
; /* Remote protocol register number. */
189 int in_g_packet
; /* Always part of G packet. */
190 /* long size in bytes; == register_size (target_gdbarch (), regnum);
192 /* char *name; == gdbarch_register_name (target_gdbarch (), regnum);
196 struct remote_arch_state
198 explicit remote_arch_state (struct gdbarch
*gdbarch
);
200 /* Description of the remote protocol registers. */
201 long sizeof_g_packet
;
203 /* Description of the remote protocol registers indexed by REGNUM
204 (making an array gdbarch_num_regs in size). */
205 std::unique_ptr
<packet_reg
[]> regs
;
207 /* This is the size (in chars) of the first response to the ``g''
208 packet. It is used as a heuristic when determining the maximum
209 size of memory-read and memory-write packets. A target will
210 typically only reserve a buffer large enough to hold the ``g''
211 packet. The size does not include packet overhead (headers and
213 long actual_register_packet_size
;
215 /* This is the maximum size (in chars) of a non read/write packet.
216 It is also used as a cap on the size of read/write packets. */
217 long remote_packet_size
;
220 /* Description of the remote protocol state for the currently
221 connected target. This is per-target state, and independent of the
222 selected architecture. */
231 /* Get the remote arch state for GDBARCH. */
232 struct remote_arch_state
*get_remote_arch_state (struct gdbarch
*gdbarch
);
236 /* A buffer to use for incoming packets, and its current size. The
237 buffer is grown dynamically for larger incoming packets.
238 Outgoing packets may also be constructed in this buffer.
239 The size of the buffer is always at least REMOTE_PACKET_SIZE;
240 REMOTE_PACKET_SIZE should be used to limit the length of outgoing
242 gdb::char_vector buf
;
244 /* True if we're going through initial connection setup (finding out
245 about the remote side's threads, relocating symbols, etc.). */
246 bool starting_up
= false;
248 /* If we negotiated packet size explicitly (and thus can bypass
249 heuristics for the largest packet size that will not overflow
250 a buffer in the stub), this will be set to that packet size.
251 Otherwise zero, meaning to use the guessed size. */
252 long explicit_packet_size
= 0;
254 /* remote_wait is normally called when the target is running and
255 waits for a stop reply packet. But sometimes we need to call it
256 when the target is already stopped. We can send a "?" packet
257 and have remote_wait read the response. Or, if we already have
258 the response, we can stash it in BUF and tell remote_wait to
259 skip calling getpkt. This flag is set when BUF contains a
260 stop reply packet and the target is not waiting. */
261 int cached_wait_status
= 0;
263 /* True, if in no ack mode. That is, neither GDB nor the stub will
264 expect acks from each other. The connection is assumed to be
266 bool noack_mode
= false;
268 /* True if we're connected in extended remote mode. */
269 bool extended
= false;
271 /* True if we resumed the target and we're waiting for the target to
272 stop. In the mean time, we can't start another command/query.
273 The remote server wouldn't be ready to process it, so we'd
274 timeout waiting for a reply that would never come and eventually
275 we'd close the connection. This can happen in asynchronous mode
276 because we allow GDB commands while the target is running. */
277 bool waiting_for_stop_reply
= false;
279 /* The status of the stub support for the various vCont actions. */
280 vCont_action_support supports_vCont
;
282 /* True if the user has pressed Ctrl-C, but the target hasn't
283 responded to that. */
284 bool ctrlc_pending_p
= false;
286 /* True if we saw a Ctrl-C while reading or writing from/to the
287 remote descriptor. At that point it is not safe to send a remote
288 interrupt packet, so we instead remember we saw the Ctrl-C and
289 process it once we're done with sending/receiving the current
290 packet, which should be shortly. If however that takes too long,
291 and the user presses Ctrl-C again, we offer to disconnect. */
292 bool got_ctrlc_during_io
= false;
294 /* Descriptor for I/O to remote machine. Initialize it to NULL so that
295 remote_open knows that we don't have a file open when the program
297 struct serial
*remote_desc
= nullptr;
299 /* These are the threads which we last sent to the remote system. The
300 TID member will be -1 for all or -2 for not sent yet. */
301 ptid_t general_thread
= null_ptid
;
302 ptid_t continue_thread
= null_ptid
;
304 /* This is the traceframe which we last selected on the remote system.
305 It will be -1 if no traceframe is selected. */
306 int remote_traceframe_number
= -1;
308 char *last_pass_packet
= nullptr;
310 /* The last QProgramSignals packet sent to the target. We bypass
311 sending a new program signals list down to the target if the new
312 packet is exactly the same as the last we sent. IOW, we only let
313 the target know about program signals list changes. */
314 char *last_program_signals_packet
= nullptr;
316 gdb_signal last_sent_signal
= GDB_SIGNAL_0
;
318 bool last_sent_step
= false;
320 /* The execution direction of the last resume we got. */
321 exec_direction_kind last_resume_exec_dir
= EXEC_FORWARD
;
323 char *finished_object
= nullptr;
324 char *finished_annex
= nullptr;
325 ULONGEST finished_offset
= 0;
327 /* Should we try the 'ThreadInfo' query packet?
329 This variable (NOT available to the user: auto-detect only!)
330 determines whether GDB will use the new, simpler "ThreadInfo"
331 query or the older, more complex syntax for thread queries.
332 This is an auto-detect variable (set to true at each connect,
333 and set to false when the target fails to recognize it). */
334 bool use_threadinfo_query
= false;
335 bool use_threadextra_query
= false;
337 threadref echo_nextthread
{};
338 threadref nextthread
{};
339 threadref resultthreadlist
[MAXTHREADLISTRESULTS
] {};
341 /* The state of remote notification. */
342 struct remote_notif_state
*notif_state
= nullptr;
344 /* The branch trace configuration. */
345 struct btrace_config btrace_config
{};
347 /* The argument to the last "vFile:setfs:" packet we sent, used
348 to avoid sending repeated unnecessary "vFile:setfs:" packets.
349 Initialized to -1 to indicate that no "vFile:setfs:" packet
350 has yet been sent. */
353 /* A readahead cache for vFile:pread. Often, reading a binary
354 involves a sequence of small reads. E.g., when parsing an ELF
355 file. A readahead cache helps mostly the case of remote
356 debugging on a connection with higher latency, due to the
357 request/reply nature of the RSP. We only cache data for a single
358 file descriptor at a time. */
359 struct readahead_cache readahead_cache
;
361 /* The list of already fetched and acknowledged stop events. This
362 queue is used for notification Stop, and other notifications
363 don't need queue for their events, because the notification
364 events of Stop can't be consumed immediately, so that events
365 should be queued first, and be consumed by remote_wait_{ns,as}
366 one per time. Other notifications can consume their events
367 immediately, so queue is not needed for them. */
368 std::vector
<stop_reply_up
> stop_reply_queue
;
370 /* Asynchronous signal handle registered as event loop source for
371 when we have pending events ready to be passed to the core. */
372 struct async_event_handler
*remote_async_inferior_event_token
= nullptr;
374 /* FIXME: cagney/1999-09-23: Even though getpkt was called with
375 ``forever'' still use the normal timeout mechanism. This is
376 currently used by the ASYNC code to guarentee that target reads
377 during the initial connect always time-out. Once getpkt has been
378 modified to return a timeout indication and, in turn
379 remote_wait()/wait_for_inferior() have gained a timeout parameter
381 int wait_forever_enabled_p
= 1;
384 /* Mapping of remote protocol data for each gdbarch. Usually there
385 is only one entry here, though we may see more with stubs that
386 support multi-process. */
387 std::unordered_map
<struct gdbarch
*, remote_arch_state
>
391 static const target_info remote_target_info
= {
393 N_("Remote serial target in gdb-specific protocol"),
397 class remote_target
: public process_stratum_target
400 remote_target () = default;
401 ~remote_target () override
;
403 const target_info
&info () const override
404 { return remote_target_info
; }
406 thread_control_capabilities
get_thread_control_capabilities () override
407 { return tc_schedlock
; }
409 /* Open a remote connection. */
410 static void open (const char *, int);
412 void close () override
;
414 void detach (inferior
*, int) override
;
415 void disconnect (const char *, int) override
;
417 void commit_resume () override
;
418 void resume (ptid_t
, int, enum gdb_signal
) override
;
419 ptid_t
wait (ptid_t
, struct target_waitstatus
*, int) override
;
421 void fetch_registers (struct regcache
*, int) override
;
422 void store_registers (struct regcache
*, int) override
;
423 void prepare_to_store (struct regcache
*) override
;
425 void files_info () override
;
427 int insert_breakpoint (struct gdbarch
*, struct bp_target_info
*) override
;
429 int remove_breakpoint (struct gdbarch
*, struct bp_target_info
*,
430 enum remove_bp_reason
) override
;
433 bool stopped_by_sw_breakpoint () override
;
434 bool supports_stopped_by_sw_breakpoint () override
;
436 bool stopped_by_hw_breakpoint () override
;
438 bool supports_stopped_by_hw_breakpoint () override
;
440 bool stopped_by_watchpoint () override
;
442 bool stopped_data_address (CORE_ADDR
*) override
;
444 bool watchpoint_addr_within_range (CORE_ADDR
, CORE_ADDR
, int) override
;
446 int can_use_hw_breakpoint (enum bptype
, int, int) override
;
448 int insert_hw_breakpoint (struct gdbarch
*, struct bp_target_info
*) override
;
450 int remove_hw_breakpoint (struct gdbarch
*, struct bp_target_info
*) override
;
452 int region_ok_for_hw_watchpoint (CORE_ADDR
, int) override
;
454 int insert_watchpoint (CORE_ADDR
, int, enum target_hw_bp_type
,
455 struct expression
*) override
;
457 int remove_watchpoint (CORE_ADDR
, int, enum target_hw_bp_type
,
458 struct expression
*) override
;
460 void kill () override
;
462 void load (const char *, int) override
;
464 void mourn_inferior () override
;
466 void pass_signals (gdb::array_view
<const unsigned char>) override
;
468 int set_syscall_catchpoint (int, bool, int,
469 gdb::array_view
<const int>) override
;
471 void program_signals (gdb::array_view
<const unsigned char>) override
;
473 bool thread_alive (ptid_t ptid
) override
;
475 const char *thread_name (struct thread_info
*) override
;
477 void update_thread_list () override
;
479 std::string
pid_to_str (ptid_t
) override
;
481 const char *extra_thread_info (struct thread_info
*) override
;
483 ptid_t
get_ada_task_ptid (long lwp
, long thread
) override
;
485 thread_info
*thread_handle_to_thread_info (const gdb_byte
*thread_handle
,
487 inferior
*inf
) override
;
489 gdb::byte_vector
thread_info_to_thread_handle (struct thread_info
*tp
)
492 void stop (ptid_t
) override
;
494 void interrupt () override
;
496 void pass_ctrlc () override
;
498 enum target_xfer_status
xfer_partial (enum target_object object
,
501 const gdb_byte
*writebuf
,
502 ULONGEST offset
, ULONGEST len
,
503 ULONGEST
*xfered_len
) override
;
505 ULONGEST
get_memory_xfer_limit () override
;
507 void rcmd (const char *command
, struct ui_file
*output
) override
;
509 char *pid_to_exec_file (int pid
) override
;
511 void log_command (const char *cmd
) override
513 serial_log_command (this, cmd
);
516 CORE_ADDR
get_thread_local_address (ptid_t ptid
,
517 CORE_ADDR load_module_addr
,
518 CORE_ADDR offset
) override
;
520 bool can_execute_reverse () override
;
522 std::vector
<mem_region
> memory_map () override
;
524 void flash_erase (ULONGEST address
, LONGEST length
) override
;
526 void flash_done () override
;
528 const struct target_desc
*read_description () override
;
530 int search_memory (CORE_ADDR start_addr
, ULONGEST search_space_len
,
531 const gdb_byte
*pattern
, ULONGEST pattern_len
,
532 CORE_ADDR
*found_addrp
) override
;
534 bool can_async_p () override
;
536 bool is_async_p () override
;
538 void async (int) override
;
540 void thread_events (int) override
;
542 int can_do_single_step () override
;
544 void terminal_inferior () override
;
546 void terminal_ours () override
;
548 bool supports_non_stop () override
;
550 bool supports_multi_process () override
;
552 bool supports_disable_randomization () override
;
554 bool filesystem_is_local () override
;
557 int fileio_open (struct inferior
*inf
, const char *filename
,
558 int flags
, int mode
, int warn_if_slow
,
559 int *target_errno
) override
;
561 int fileio_pwrite (int fd
, const gdb_byte
*write_buf
, int len
,
562 ULONGEST offset
, int *target_errno
) override
;
564 int fileio_pread (int fd
, gdb_byte
*read_buf
, int len
,
565 ULONGEST offset
, int *target_errno
) override
;
567 int fileio_fstat (int fd
, struct stat
*sb
, int *target_errno
) override
;
569 int fileio_close (int fd
, int *target_errno
) override
;
571 int fileio_unlink (struct inferior
*inf
,
572 const char *filename
,
573 int *target_errno
) override
;
575 gdb::optional
<std::string
>
576 fileio_readlink (struct inferior
*inf
,
577 const char *filename
,
578 int *target_errno
) override
;
580 bool supports_enable_disable_tracepoint () override
;
582 bool supports_string_tracing () override
;
584 bool supports_evaluation_of_breakpoint_conditions () override
;
586 bool can_run_breakpoint_commands () override
;
588 void trace_init () override
;
590 void download_tracepoint (struct bp_location
*location
) override
;
592 bool can_download_tracepoint () override
;
594 void download_trace_state_variable (const trace_state_variable
&tsv
) override
;
596 void enable_tracepoint (struct bp_location
*location
) override
;
598 void disable_tracepoint (struct bp_location
*location
) override
;
600 void trace_set_readonly_regions () override
;
602 void trace_start () override
;
604 int get_trace_status (struct trace_status
*ts
) override
;
606 void get_tracepoint_status (struct breakpoint
*tp
, struct uploaded_tp
*utp
)
609 void trace_stop () override
;
611 int trace_find (enum trace_find_type type
, int num
,
612 CORE_ADDR addr1
, CORE_ADDR addr2
, int *tpp
) override
;
614 bool get_trace_state_variable_value (int tsv
, LONGEST
*val
) override
;
616 int save_trace_data (const char *filename
) override
;
618 int upload_tracepoints (struct uploaded_tp
**utpp
) override
;
620 int upload_trace_state_variables (struct uploaded_tsv
**utsvp
) override
;
622 LONGEST
get_raw_trace_data (gdb_byte
*buf
, ULONGEST offset
, LONGEST len
) override
;
624 int get_min_fast_tracepoint_insn_len () override
;
626 void set_disconnected_tracing (int val
) override
;
628 void set_circular_trace_buffer (int val
) override
;
630 void set_trace_buffer_size (LONGEST val
) override
;
632 bool set_trace_notes (const char *user
, const char *notes
,
633 const char *stopnotes
) override
;
635 int core_of_thread (ptid_t ptid
) override
;
637 int verify_memory (const gdb_byte
*data
,
638 CORE_ADDR memaddr
, ULONGEST size
) override
;
641 bool get_tib_address (ptid_t ptid
, CORE_ADDR
*addr
) override
;
643 void set_permissions () override
;
645 bool static_tracepoint_marker_at (CORE_ADDR
,
646 struct static_tracepoint_marker
*marker
)
649 std::vector
<static_tracepoint_marker
>
650 static_tracepoint_markers_by_strid (const char *id
) override
;
652 traceframe_info_up
traceframe_info () override
;
654 bool use_agent (bool use
) override
;
655 bool can_use_agent () override
;
657 struct btrace_target_info
*enable_btrace (ptid_t ptid
,
658 const struct btrace_config
*conf
) override
;
660 void disable_btrace (struct btrace_target_info
*tinfo
) override
;
662 void teardown_btrace (struct btrace_target_info
*tinfo
) override
;
664 enum btrace_error
read_btrace (struct btrace_data
*data
,
665 struct btrace_target_info
*btinfo
,
666 enum btrace_read_type type
) override
;
668 const struct btrace_config
*btrace_conf (const struct btrace_target_info
*) override
;
669 bool augmented_libraries_svr4_read () override
;
670 int follow_fork (int, int) override
;
671 void follow_exec (struct inferior
*, const char *) override
;
672 int insert_fork_catchpoint (int) override
;
673 int remove_fork_catchpoint (int) override
;
674 int insert_vfork_catchpoint (int) override
;
675 int remove_vfork_catchpoint (int) override
;
676 int insert_exec_catchpoint (int) override
;
677 int remove_exec_catchpoint (int) override
;
678 enum exec_direction_kind
execution_direction () override
;
680 public: /* Remote specific methods. */
682 void remote_download_command_source (int num
, ULONGEST addr
,
683 struct command_line
*cmds
);
685 void remote_file_put (const char *local_file
, const char *remote_file
,
687 void remote_file_get (const char *remote_file
, const char *local_file
,
689 void remote_file_delete (const char *remote_file
, int from_tty
);
691 int remote_hostio_pread (int fd
, gdb_byte
*read_buf
, int len
,
692 ULONGEST offset
, int *remote_errno
);
693 int remote_hostio_pwrite (int fd
, const gdb_byte
*write_buf
, int len
,
694 ULONGEST offset
, int *remote_errno
);
695 int remote_hostio_pread_vFile (int fd
, gdb_byte
*read_buf
, int len
,
696 ULONGEST offset
, int *remote_errno
);
698 int remote_hostio_send_command (int command_bytes
, int which_packet
,
699 int *remote_errno
, char **attachment
,
700 int *attachment_len
);
701 int remote_hostio_set_filesystem (struct inferior
*inf
,
703 /* We should get rid of this and use fileio_open directly. */
704 int remote_hostio_open (struct inferior
*inf
, const char *filename
,
705 int flags
, int mode
, int warn_if_slow
,
707 int remote_hostio_close (int fd
, int *remote_errno
);
709 int remote_hostio_unlink (inferior
*inf
, const char *filename
,
712 struct remote_state
*get_remote_state ();
714 long get_remote_packet_size (void);
715 long get_memory_packet_size (struct memory_packet_config
*config
);
717 long get_memory_write_packet_size ();
718 long get_memory_read_packet_size ();
720 char *append_pending_thread_resumptions (char *p
, char *endp
,
722 static void open_1 (const char *name
, int from_tty
, int extended_p
);
723 void start_remote (int from_tty
, int extended_p
);
724 void remote_detach_1 (struct inferior
*inf
, int from_tty
);
726 char *append_resumption (char *p
, char *endp
,
727 ptid_t ptid
, int step
, gdb_signal siggnal
);
728 int remote_resume_with_vcont (ptid_t ptid
, int step
,
731 void add_current_inferior_and_thread (char *wait_status
);
733 ptid_t
wait_ns (ptid_t ptid
, struct target_waitstatus
*status
,
735 ptid_t
wait_as (ptid_t ptid
, target_waitstatus
*status
,
738 ptid_t
process_stop_reply (struct stop_reply
*stop_reply
,
739 target_waitstatus
*status
);
741 void remote_notice_new_inferior (ptid_t currthread
, int executing
);
743 void process_initial_stop_replies (int from_tty
);
745 thread_info
*remote_add_thread (ptid_t ptid
, bool running
, bool executing
);
747 void btrace_sync_conf (const btrace_config
*conf
);
749 void remote_btrace_maybe_reopen ();
751 void remove_new_fork_children (threads_listing_context
*context
);
752 void kill_new_fork_children (int pid
);
753 void discard_pending_stop_replies (struct inferior
*inf
);
754 int stop_reply_queue_length ();
756 void check_pending_events_prevent_wildcard_vcont
757 (int *may_global_wildcard_vcont
);
759 void discard_pending_stop_replies_in_queue ();
760 struct stop_reply
*remote_notif_remove_queued_reply (ptid_t ptid
);
761 struct stop_reply
*queued_stop_reply (ptid_t ptid
);
762 int peek_stop_reply (ptid_t ptid
);
763 void remote_parse_stop_reply (const char *buf
, stop_reply
*event
);
765 void remote_stop_ns (ptid_t ptid
);
766 void remote_interrupt_as ();
767 void remote_interrupt_ns ();
769 char *remote_get_noisy_reply ();
770 int remote_query_attached (int pid
);
771 inferior
*remote_add_inferior (bool fake_pid_p
, int pid
, int attached
,
774 ptid_t
remote_current_thread (ptid_t oldpid
);
775 ptid_t
get_current_thread (char *wait_status
);
777 void set_thread (ptid_t ptid
, int gen
);
778 void set_general_thread (ptid_t ptid
);
779 void set_continue_thread (ptid_t ptid
);
780 void set_general_process ();
782 char *write_ptid (char *buf
, const char *endbuf
, ptid_t ptid
);
784 int remote_unpack_thread_info_response (char *pkt
, threadref
*expectedref
,
785 gdb_ext_thread_info
*info
);
786 int remote_get_threadinfo (threadref
*threadid
, int fieldset
,
787 gdb_ext_thread_info
*info
);
789 int parse_threadlist_response (char *pkt
, int result_limit
,
790 threadref
*original_echo
,
791 threadref
*resultlist
,
793 int remote_get_threadlist (int startflag
, threadref
*nextthread
,
794 int result_limit
, int *done
, int *result_count
,
795 threadref
*threadlist
);
797 int remote_threadlist_iterator (rmt_thread_action stepfunction
,
798 void *context
, int looplimit
);
800 int remote_get_threads_with_ql (threads_listing_context
*context
);
801 int remote_get_threads_with_qxfer (threads_listing_context
*context
);
802 int remote_get_threads_with_qthreadinfo (threads_listing_context
*context
);
804 void extended_remote_restart ();
808 void remote_check_symbols ();
810 void remote_supported_packet (const struct protocol_feature
*feature
,
811 enum packet_support support
,
812 const char *argument
);
814 void remote_query_supported ();
816 void remote_packet_size (const protocol_feature
*feature
,
817 packet_support support
, const char *value
);
819 void remote_serial_quit_handler ();
821 void remote_detach_pid (int pid
);
823 void remote_vcont_probe ();
825 void remote_resume_with_hc (ptid_t ptid
, int step
,
828 void send_interrupt_sequence ();
829 void interrupt_query ();
831 void remote_notif_get_pending_events (notif_client
*nc
);
833 int fetch_register_using_p (struct regcache
*regcache
,
835 int send_g_packet ();
836 void process_g_packet (struct regcache
*regcache
);
837 void fetch_registers_using_g (struct regcache
*regcache
);
838 int store_register_using_P (const struct regcache
*regcache
,
840 void store_registers_using_G (const struct regcache
*regcache
);
842 void set_remote_traceframe ();
844 void check_binary_download (CORE_ADDR addr
);
846 target_xfer_status
remote_write_bytes_aux (const char *header
,
848 const gdb_byte
*myaddr
,
851 ULONGEST
*xfered_len_units
,
855 target_xfer_status
remote_write_bytes (CORE_ADDR memaddr
,
856 const gdb_byte
*myaddr
, ULONGEST len
,
857 int unit_size
, ULONGEST
*xfered_len
);
859 target_xfer_status
remote_read_bytes_1 (CORE_ADDR memaddr
, gdb_byte
*myaddr
,
861 int unit_size
, ULONGEST
*xfered_len_units
);
863 target_xfer_status
remote_xfer_live_readonly_partial (gdb_byte
*readbuf
,
867 ULONGEST
*xfered_len
);
869 target_xfer_status
remote_read_bytes (CORE_ADDR memaddr
,
870 gdb_byte
*myaddr
, ULONGEST len
,
872 ULONGEST
*xfered_len
);
874 packet_result
remote_send_printf (const char *format
, ...)
875 ATTRIBUTE_PRINTF (2, 3);
877 target_xfer_status
remote_flash_write (ULONGEST address
,
878 ULONGEST length
, ULONGEST
*xfered_len
,
879 const gdb_byte
*data
);
881 int readchar (int timeout
);
883 void remote_serial_write (const char *str
, int len
);
885 int putpkt (const char *buf
);
886 int putpkt_binary (const char *buf
, int cnt
);
888 int putpkt (const gdb::char_vector
&buf
)
890 return putpkt (buf
.data ());
894 long read_frame (gdb::char_vector
*buf_p
);
895 void getpkt (gdb::char_vector
*buf
, int forever
);
896 int getpkt_or_notif_sane_1 (gdb::char_vector
*buf
, int forever
,
897 int expecting_notif
, int *is_notif
);
898 int getpkt_sane (gdb::char_vector
*buf
, int forever
);
899 int getpkt_or_notif_sane (gdb::char_vector
*buf
, int forever
,
901 int remote_vkill (int pid
);
902 void remote_kill_k ();
904 void extended_remote_disable_randomization (int val
);
905 int extended_remote_run (const std::string
&args
);
907 void send_environment_packet (const char *action
,
911 void extended_remote_environment_support ();
912 void extended_remote_set_inferior_cwd ();
914 target_xfer_status
remote_write_qxfer (const char *object_name
,
916 const gdb_byte
*writebuf
,
917 ULONGEST offset
, LONGEST len
,
918 ULONGEST
*xfered_len
,
919 struct packet_config
*packet
);
921 target_xfer_status
remote_read_qxfer (const char *object_name
,
923 gdb_byte
*readbuf
, ULONGEST offset
,
925 ULONGEST
*xfered_len
,
926 struct packet_config
*packet
);
928 void push_stop_reply (struct stop_reply
*new_event
);
930 bool vcont_r_supported ();
932 void packet_command (const char *args
, int from_tty
);
934 private: /* data fields */
936 /* The remote state. Don't reference this directly. Use the
937 get_remote_state method instead. */
938 remote_state m_remote_state
;
941 static const target_info extended_remote_target_info
= {
943 N_("Extended remote serial target in gdb-specific protocol"),
947 /* Set up the extended remote target by extending the standard remote
948 target and adding to it. */
950 class extended_remote_target final
: public remote_target
953 const target_info
&info () const override
954 { return extended_remote_target_info
; }
956 /* Open an extended-remote connection. */
957 static void open (const char *, int);
959 bool can_create_inferior () override
{ return true; }
960 void create_inferior (const char *, const std::string
&,
961 char **, int) override
;
963 void detach (inferior
*, int) override
;
965 bool can_attach () override
{ return true; }
966 void attach (const char *, int) override
;
968 void post_attach (int) override
;
969 bool supports_disable_randomization () override
;
972 /* Per-program-space data key. */
973 static const struct program_space_key
<char, gdb::xfree_deleter
<char>>
976 /* The variable registered as the control variable used by the
977 remote exec-file commands. While the remote exec-file setting is
978 per-program-space, the set/show machinery uses this as the
979 location of the remote exec-file value. */
980 static char *remote_exec_file_var
;
982 /* The size to align memory write packets, when practical. The protocol
983 does not guarantee any alignment, and gdb will generate short
984 writes and unaligned writes, but even as a best-effort attempt this
985 can improve bulk transfers. For instance, if a write is misaligned
986 relative to the target's data bus, the stub may need to make an extra
987 round trip fetching data from the target. This doesn't make a
988 huge difference, but it's easy to do, so we try to be helpful.
990 The alignment chosen is arbitrary; usually data bus width is
991 important here, not the possibly larger cache line size. */
992 enum { REMOTE_ALIGN_WRITES
= 16 };
994 /* Prototypes for local functions. */
996 static int hexnumlen (ULONGEST num
);
998 static int stubhex (int ch
);
1000 static int hexnumstr (char *, ULONGEST
);
1002 static int hexnumnstr (char *, ULONGEST
, int);
1004 static CORE_ADDR
remote_address_masked (CORE_ADDR
);
1006 static void print_packet (const char *);
1008 static int stub_unpack_int (char *buff
, int fieldlength
);
1010 struct packet_config
;
1012 static void show_packet_config_cmd (struct packet_config
*config
);
1014 static void show_remote_protocol_packet_cmd (struct ui_file
*file
,
1016 struct cmd_list_element
*c
,
1019 static ptid_t
read_ptid (const char *buf
, const char **obuf
);
1021 static void remote_async_inferior_event_handler (gdb_client_data
);
1023 static bool remote_read_description_p (struct target_ops
*target
);
1025 static void remote_console_output (const char *msg
);
1027 static void remote_btrace_reset (remote_state
*rs
);
1029 static void remote_unpush_and_throw (void);
1033 static struct cmd_list_element
*remote_cmdlist
;
1035 /* For "set remote" and "show remote". */
1037 static struct cmd_list_element
*remote_set_cmdlist
;
1038 static struct cmd_list_element
*remote_show_cmdlist
;
1040 /* Controls whether GDB is willing to use range stepping. */
1042 static bool use_range_stepping
= true;
1044 /* Private data that we'll store in (struct thread_info)->priv. */
1045 struct remote_thread_info
: public private_thread_info
1051 /* Thread handle, perhaps a pthread_t or thread_t value, stored as a
1052 sequence of bytes. */
1053 gdb::byte_vector thread_handle
;
1055 /* Whether the target stopped for a breakpoint/watchpoint. */
1056 enum target_stop_reason stop_reason
= TARGET_STOPPED_BY_NO_REASON
;
1058 /* This is set to the data address of the access causing the target
1059 to stop for a watchpoint. */
1060 CORE_ADDR watch_data_address
= 0;
1062 /* Fields used by the vCont action coalescing implemented in
1063 remote_resume / remote_commit_resume. remote_resume stores each
1064 thread's last resume request in these fields, so that a later
1065 remote_commit_resume knows which is the proper action for this
1066 thread to include in the vCont packet. */
1068 /* True if the last target_resume call for this thread was a step
1069 request, false if a continue request. */
1070 int last_resume_step
= 0;
1072 /* The signal specified in the last target_resume call for this
1074 gdb_signal last_resume_sig
= GDB_SIGNAL_0
;
1076 /* Whether this thread was already vCont-resumed on the remote
1078 int vcont_resumed
= 0;
1081 remote_state::remote_state ()
1086 remote_state::~remote_state ()
1088 xfree (this->last_pass_packet
);
1089 xfree (this->last_program_signals_packet
);
1090 xfree (this->finished_object
);
1091 xfree (this->finished_annex
);
1094 /* Utility: generate error from an incoming stub packet. */
1096 trace_error (char *buf
)
1099 return; /* not an error msg */
1102 case '1': /* malformed packet error */
1103 if (*++buf
== '0') /* general case: */
1104 error (_("remote.c: error in outgoing packet."));
1106 error (_("remote.c: error in outgoing packet at field #%ld."),
1107 strtol (buf
, NULL
, 16));
1109 error (_("Target returns error code '%s'."), buf
);
1113 /* Utility: wait for reply from stub, while accepting "O" packets. */
1116 remote_target::remote_get_noisy_reply ()
1118 struct remote_state
*rs
= get_remote_state ();
1120 do /* Loop on reply from remote stub. */
1124 QUIT
; /* Allow user to bail out with ^C. */
1125 getpkt (&rs
->buf
, 0);
1126 buf
= rs
->buf
.data ();
1129 else if (startswith (buf
, "qRelocInsn:"))
1132 CORE_ADDR from
, to
, org_to
;
1134 int adjusted_size
= 0;
1137 p
= buf
+ strlen ("qRelocInsn:");
1138 pp
= unpack_varlen_hex (p
, &ul
);
1140 error (_("invalid qRelocInsn packet: %s"), buf
);
1144 unpack_varlen_hex (p
, &ul
);
1151 gdbarch_relocate_instruction (target_gdbarch (), &to
, from
);
1154 catch (const gdb_exception
&ex
)
1156 if (ex
.error
== MEMORY_ERROR
)
1158 /* Propagate memory errors silently back to the
1159 target. The stub may have limited the range of
1160 addresses we can write to, for example. */
1164 /* Something unexpectedly bad happened. Be verbose
1165 so we can tell what, and propagate the error back
1166 to the stub, so it doesn't get stuck waiting for
1168 exception_fprintf (gdb_stderr
, ex
,
1169 _("warning: relocating instruction: "));
1176 adjusted_size
= to
- org_to
;
1178 xsnprintf (buf
, rs
->buf
.size (), "qRelocInsn:%x", adjusted_size
);
1182 else if (buf
[0] == 'O' && buf
[1] != 'K')
1183 remote_console_output (buf
+ 1); /* 'O' message from stub */
1185 return buf
; /* Here's the actual reply. */
1190 struct remote_arch_state
*
1191 remote_state::get_remote_arch_state (struct gdbarch
*gdbarch
)
1193 remote_arch_state
*rsa
;
1195 auto it
= this->m_arch_states
.find (gdbarch
);
1196 if (it
== this->m_arch_states
.end ())
1198 auto p
= this->m_arch_states
.emplace (std::piecewise_construct
,
1199 std::forward_as_tuple (gdbarch
),
1200 std::forward_as_tuple (gdbarch
));
1201 rsa
= &p
.first
->second
;
1203 /* Make sure that the packet buffer is plenty big enough for
1204 this architecture. */
1205 if (this->buf
.size () < rsa
->remote_packet_size
)
1206 this->buf
.resize (2 * rsa
->remote_packet_size
);
1214 /* Fetch the global remote target state. */
1217 remote_target::get_remote_state ()
1219 /* Make sure that the remote architecture state has been
1220 initialized, because doing so might reallocate rs->buf. Any
1221 function which calls getpkt also needs to be mindful of changes
1222 to rs->buf, but this call limits the number of places which run
1224 m_remote_state
.get_remote_arch_state (target_gdbarch ());
1226 return &m_remote_state
;
1229 /* Fetch the remote exec-file from the current program space. */
1232 get_remote_exec_file (void)
1234 char *remote_exec_file
;
1236 remote_exec_file
= remote_pspace_data
.get (current_program_space
);
1237 if (remote_exec_file
== NULL
)
1240 return remote_exec_file
;
1243 /* Set the remote exec file for PSPACE. */
1246 set_pspace_remote_exec_file (struct program_space
*pspace
,
1247 const char *remote_exec_file
)
1249 char *old_file
= remote_pspace_data
.get (pspace
);
1252 remote_pspace_data
.set (pspace
, xstrdup (remote_exec_file
));
1255 /* The "set/show remote exec-file" set command hook. */
1258 set_remote_exec_file (const char *ignored
, int from_tty
,
1259 struct cmd_list_element
*c
)
1261 gdb_assert (remote_exec_file_var
!= NULL
);
1262 set_pspace_remote_exec_file (current_program_space
, remote_exec_file_var
);
1265 /* The "set/show remote exec-file" show command hook. */
1268 show_remote_exec_file (struct ui_file
*file
, int from_tty
,
1269 struct cmd_list_element
*cmd
, const char *value
)
1271 fprintf_filtered (file
, "%s\n", remote_exec_file_var
);
1275 map_regcache_remote_table (struct gdbarch
*gdbarch
, struct packet_reg
*regs
)
1277 int regnum
, num_remote_regs
, offset
;
1278 struct packet_reg
**remote_regs
;
1280 for (regnum
= 0; regnum
< gdbarch_num_regs (gdbarch
); regnum
++)
1282 struct packet_reg
*r
= ®s
[regnum
];
1284 if (register_size (gdbarch
, regnum
) == 0)
1285 /* Do not try to fetch zero-sized (placeholder) registers. */
1288 r
->pnum
= gdbarch_remote_register_number (gdbarch
, regnum
);
1293 /* Define the g/G packet format as the contents of each register
1294 with a remote protocol number, in order of ascending protocol
1297 remote_regs
= XALLOCAVEC (struct packet_reg
*, gdbarch_num_regs (gdbarch
));
1298 for (num_remote_regs
= 0, regnum
= 0;
1299 regnum
< gdbarch_num_regs (gdbarch
);
1301 if (regs
[regnum
].pnum
!= -1)
1302 remote_regs
[num_remote_regs
++] = ®s
[regnum
];
1304 std::sort (remote_regs
, remote_regs
+ num_remote_regs
,
1305 [] (const packet_reg
*a
, const packet_reg
*b
)
1306 { return a
->pnum
< b
->pnum
; });
1308 for (regnum
= 0, offset
= 0; regnum
< num_remote_regs
; regnum
++)
1310 remote_regs
[regnum
]->in_g_packet
= 1;
1311 remote_regs
[regnum
]->offset
= offset
;
1312 offset
+= register_size (gdbarch
, remote_regs
[regnum
]->regnum
);
1318 /* Given the architecture described by GDBARCH, return the remote
1319 protocol register's number and the register's offset in the g/G
1320 packets of GDB register REGNUM, in PNUM and POFFSET respectively.
1321 If the target does not have a mapping for REGNUM, return false,
1322 otherwise, return true. */
1325 remote_register_number_and_offset (struct gdbarch
*gdbarch
, int regnum
,
1326 int *pnum
, int *poffset
)
1328 gdb_assert (regnum
< gdbarch_num_regs (gdbarch
));
1330 std::vector
<packet_reg
> regs (gdbarch_num_regs (gdbarch
));
1332 map_regcache_remote_table (gdbarch
, regs
.data ());
1334 *pnum
= regs
[regnum
].pnum
;
1335 *poffset
= regs
[regnum
].offset
;
1340 remote_arch_state::remote_arch_state (struct gdbarch
*gdbarch
)
1342 /* Use the architecture to build a regnum<->pnum table, which will be
1343 1:1 unless a feature set specifies otherwise. */
1344 this->regs
.reset (new packet_reg
[gdbarch_num_regs (gdbarch
)] ());
1346 /* Record the maximum possible size of the g packet - it may turn out
1348 this->sizeof_g_packet
1349 = map_regcache_remote_table (gdbarch
, this->regs
.get ());
1351 /* Default maximum number of characters in a packet body. Many
1352 remote stubs have a hardwired buffer size of 400 bytes
1353 (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
1354 as the maximum packet-size to ensure that the packet and an extra
1355 NUL character can always fit in the buffer. This stops GDB
1356 trashing stubs that try to squeeze an extra NUL into what is
1357 already a full buffer (As of 1999-12-04 that was most stubs). */
1358 this->remote_packet_size
= 400 - 1;
1360 /* This one is filled in when a ``g'' packet is received. */
1361 this->actual_register_packet_size
= 0;
1363 /* Should rsa->sizeof_g_packet needs more space than the
1364 default, adjust the size accordingly. Remember that each byte is
1365 encoded as two characters. 32 is the overhead for the packet
1366 header / footer. NOTE: cagney/1999-10-26: I suspect that 8
1367 (``$NN:G...#NN'') is a better guess, the below has been padded a
1369 if (this->sizeof_g_packet
> ((this->remote_packet_size
- 32) / 2))
1370 this->remote_packet_size
= (this->sizeof_g_packet
* 2 + 32);
1373 /* Get a pointer to the current remote target. If not connected to a
1374 remote target, return NULL. */
1376 static remote_target
*
1377 get_current_remote_target ()
1379 target_ops
*proc_target
= find_target_at (process_stratum
);
1380 return dynamic_cast<remote_target
*> (proc_target
);
1383 /* Return the current allowed size of a remote packet. This is
1384 inferred from the current architecture, and should be used to
1385 limit the length of outgoing packets. */
1387 remote_target::get_remote_packet_size ()
1389 struct remote_state
*rs
= get_remote_state ();
1390 remote_arch_state
*rsa
= rs
->get_remote_arch_state (target_gdbarch ());
1392 if (rs
->explicit_packet_size
)
1393 return rs
->explicit_packet_size
;
1395 return rsa
->remote_packet_size
;
1398 static struct packet_reg
*
1399 packet_reg_from_regnum (struct gdbarch
*gdbarch
, struct remote_arch_state
*rsa
,
1402 if (regnum
< 0 && regnum
>= gdbarch_num_regs (gdbarch
))
1406 struct packet_reg
*r
= &rsa
->regs
[regnum
];
1408 gdb_assert (r
->regnum
== regnum
);
1413 static struct packet_reg
*
1414 packet_reg_from_pnum (struct gdbarch
*gdbarch
, struct remote_arch_state
*rsa
,
1419 for (i
= 0; i
< gdbarch_num_regs (gdbarch
); i
++)
1421 struct packet_reg
*r
= &rsa
->regs
[i
];
1423 if (r
->pnum
== pnum
)
1429 /* Allow the user to specify what sequence to send to the remote
1430 when he requests a program interruption: Although ^C is usually
1431 what remote systems expect (this is the default, here), it is
1432 sometimes preferable to send a break. On other systems such
1433 as the Linux kernel, a break followed by g, which is Magic SysRq g
1434 is required in order to interrupt the execution. */
1435 const char interrupt_sequence_control_c
[] = "Ctrl-C";
1436 const char interrupt_sequence_break
[] = "BREAK";
1437 const char interrupt_sequence_break_g
[] = "BREAK-g";
1438 static const char *const interrupt_sequence_modes
[] =
1440 interrupt_sequence_control_c
,
1441 interrupt_sequence_break
,
1442 interrupt_sequence_break_g
,
1445 static const char *interrupt_sequence_mode
= interrupt_sequence_control_c
;
1448 show_interrupt_sequence (struct ui_file
*file
, int from_tty
,
1449 struct cmd_list_element
*c
,
1452 if (interrupt_sequence_mode
== interrupt_sequence_control_c
)
1453 fprintf_filtered (file
,
1454 _("Send the ASCII ETX character (Ctrl-c) "
1455 "to the remote target to interrupt the "
1456 "execution of the program.\n"));
1457 else if (interrupt_sequence_mode
== interrupt_sequence_break
)
1458 fprintf_filtered (file
,
1459 _("send a break signal to the remote target "
1460 "to interrupt the execution of the program.\n"));
1461 else if (interrupt_sequence_mode
== interrupt_sequence_break_g
)
1462 fprintf_filtered (file
,
1463 _("Send a break signal and 'g' a.k.a. Magic SysRq g to "
1464 "the remote target to interrupt the execution "
1465 "of Linux kernel.\n"));
1467 internal_error (__FILE__
, __LINE__
,
1468 _("Invalid value for interrupt_sequence_mode: %s."),
1469 interrupt_sequence_mode
);
1472 /* This boolean variable specifies whether interrupt_sequence is sent
1473 to the remote target when gdb connects to it.
1474 This is mostly needed when you debug the Linux kernel: The Linux kernel
1475 expects BREAK g which is Magic SysRq g for connecting gdb. */
1476 static bool interrupt_on_connect
= false;
1478 /* This variable is used to implement the "set/show remotebreak" commands.
1479 Since these commands are now deprecated in favor of "set/show remote
1480 interrupt-sequence", it no longer has any effect on the code. */
1481 static bool remote_break
;
1484 set_remotebreak (const char *args
, int from_tty
, struct cmd_list_element
*c
)
1487 interrupt_sequence_mode
= interrupt_sequence_break
;
1489 interrupt_sequence_mode
= interrupt_sequence_control_c
;
1493 show_remotebreak (struct ui_file
*file
, int from_tty
,
1494 struct cmd_list_element
*c
,
1499 /* This variable sets the number of bits in an address that are to be
1500 sent in a memory ("M" or "m") packet. Normally, after stripping
1501 leading zeros, the entire address would be sent. This variable
1502 restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
1503 initial implementation of remote.c restricted the address sent in
1504 memory packets to ``host::sizeof long'' bytes - (typically 32
1505 bits). Consequently, for 64 bit targets, the upper 32 bits of an
1506 address was never sent. Since fixing this bug may cause a break in
1507 some remote targets this variable is principally provided to
1508 facilitate backward compatibility. */
1510 static unsigned int remote_address_size
;
1513 /* User configurable variables for the number of characters in a
1514 memory read/write packet. MIN (rsa->remote_packet_size,
1515 rsa->sizeof_g_packet) is the default. Some targets need smaller
1516 values (fifo overruns, et.al.) and some users need larger values
1517 (speed up transfers). The variables ``preferred_*'' (the user
1518 request), ``current_*'' (what was actually set) and ``forced_*''
1519 (Positive - a soft limit, negative - a hard limit). */
1521 struct memory_packet_config
1528 /* The default max memory-write-packet-size, when the setting is
1529 "fixed". The 16k is historical. (It came from older GDB's using
1530 alloca for buffers and the knowledge (folklore?) that some hosts
1531 don't cope very well with large alloca calls.) */
1532 #define DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED 16384
1534 /* The minimum remote packet size for memory transfers. Ensures we
1535 can write at least one byte. */
1536 #define MIN_MEMORY_PACKET_SIZE 20
1538 /* Get the memory packet size, assuming it is fixed. */
1541 get_fixed_memory_packet_size (struct memory_packet_config
*config
)
1543 gdb_assert (config
->fixed_p
);
1545 if (config
->size
<= 0)
1546 return DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED
;
1548 return config
->size
;
1551 /* Compute the current size of a read/write packet. Since this makes
1552 use of ``actual_register_packet_size'' the computation is dynamic. */
1555 remote_target::get_memory_packet_size (struct memory_packet_config
*config
)
1557 struct remote_state
*rs
= get_remote_state ();
1558 remote_arch_state
*rsa
= rs
->get_remote_arch_state (target_gdbarch ());
1561 if (config
->fixed_p
)
1562 what_they_get
= get_fixed_memory_packet_size (config
);
1565 what_they_get
= get_remote_packet_size ();
1566 /* Limit the packet to the size specified by the user. */
1567 if (config
->size
> 0
1568 && what_they_get
> config
->size
)
1569 what_they_get
= config
->size
;
1571 /* Limit it to the size of the targets ``g'' response unless we have
1572 permission from the stub to use a larger packet size. */
1573 if (rs
->explicit_packet_size
== 0
1574 && rsa
->actual_register_packet_size
> 0
1575 && what_they_get
> rsa
->actual_register_packet_size
)
1576 what_they_get
= rsa
->actual_register_packet_size
;
1578 if (what_they_get
< MIN_MEMORY_PACKET_SIZE
)
1579 what_they_get
= MIN_MEMORY_PACKET_SIZE
;
1581 /* Make sure there is room in the global buffer for this packet
1582 (including its trailing NUL byte). */
1583 if (rs
->buf
.size () < what_they_get
+ 1)
1584 rs
->buf
.resize (2 * what_they_get
);
1586 return what_they_get
;
1589 /* Update the size of a read/write packet. If they user wants
1590 something really big then do a sanity check. */
1593 set_memory_packet_size (const char *args
, struct memory_packet_config
*config
)
1595 int fixed_p
= config
->fixed_p
;
1596 long size
= config
->size
;
1599 error (_("Argument required (integer, `fixed' or `limited')."));
1600 else if (strcmp (args
, "hard") == 0
1601 || strcmp (args
, "fixed") == 0)
1603 else if (strcmp (args
, "soft") == 0
1604 || strcmp (args
, "limit") == 0)
1610 size
= strtoul (args
, &end
, 0);
1612 error (_("Invalid %s (bad syntax)."), config
->name
);
1614 /* Instead of explicitly capping the size of a packet to or
1615 disallowing it, the user is allowed to set the size to
1616 something arbitrarily large. */
1620 if (fixed_p
&& !config
->fixed_p
)
1622 /* So that the query shows the correct value. */
1623 long query_size
= (size
<= 0
1624 ? DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED
1627 if (! query (_("The target may not be able to correctly handle a %s\n"
1628 "of %ld bytes. Change the packet size? "),
1629 config
->name
, query_size
))
1630 error (_("Packet size not changed."));
1632 /* Update the config. */
1633 config
->fixed_p
= fixed_p
;
1634 config
->size
= size
;
1638 show_memory_packet_size (struct memory_packet_config
*config
)
1640 if (config
->size
== 0)
1641 printf_filtered (_("The %s is 0 (default). "), config
->name
);
1643 printf_filtered (_("The %s is %ld. "), config
->name
, config
->size
);
1644 if (config
->fixed_p
)
1645 printf_filtered (_("Packets are fixed at %ld bytes.\n"),
1646 get_fixed_memory_packet_size (config
));
1649 remote_target
*remote
= get_current_remote_target ();
1652 printf_filtered (_("Packets are limited to %ld bytes.\n"),
1653 remote
->get_memory_packet_size (config
));
1655 puts_filtered ("The actual limit will be further reduced "
1656 "dependent on the target.\n");
1660 static struct memory_packet_config memory_write_packet_config
=
1662 "memory-write-packet-size",
1666 set_memory_write_packet_size (const char *args
, int from_tty
)
1668 set_memory_packet_size (args
, &memory_write_packet_config
);
1672 show_memory_write_packet_size (const char *args
, int from_tty
)
1674 show_memory_packet_size (&memory_write_packet_config
);
1677 /* Show the number of hardware watchpoints that can be used. */
1680 show_hardware_watchpoint_limit (struct ui_file
*file
, int from_tty
,
1681 struct cmd_list_element
*c
,
1684 fprintf_filtered (file
, _("The maximum number of target hardware "
1685 "watchpoints is %s.\n"), value
);
1688 /* Show the length limit (in bytes) for hardware watchpoints. */
1691 show_hardware_watchpoint_length_limit (struct ui_file
*file
, int from_tty
,
1692 struct cmd_list_element
*c
,
1695 fprintf_filtered (file
, _("The maximum length (in bytes) of a target "
1696 "hardware watchpoint is %s.\n"), value
);
1699 /* Show the number of hardware breakpoints that can be used. */
1702 show_hardware_breakpoint_limit (struct ui_file
*file
, int from_tty
,
1703 struct cmd_list_element
*c
,
1706 fprintf_filtered (file
, _("The maximum number of target hardware "
1707 "breakpoints is %s.\n"), value
);
1710 /* Controls the maximum number of characters to display in the debug output
1711 for each remote packet. The remaining characters are omitted. */
1713 static int remote_packet_max_chars
= 512;
1715 /* Show the maximum number of characters to display for each remote packet
1716 when remote debugging is enabled. */
1719 show_remote_packet_max_chars (struct ui_file
*file
, int from_tty
,
1720 struct cmd_list_element
*c
,
1723 fprintf_filtered (file
, _("Number of remote packet characters to "
1724 "display is %s.\n"), value
);
1728 remote_target::get_memory_write_packet_size ()
1730 return get_memory_packet_size (&memory_write_packet_config
);
1733 static struct memory_packet_config memory_read_packet_config
=
1735 "memory-read-packet-size",
1739 set_memory_read_packet_size (const char *args
, int from_tty
)
1741 set_memory_packet_size (args
, &memory_read_packet_config
);
1745 show_memory_read_packet_size (const char *args
, int from_tty
)
1747 show_memory_packet_size (&memory_read_packet_config
);
1751 remote_target::get_memory_read_packet_size ()
1753 long size
= get_memory_packet_size (&memory_read_packet_config
);
1755 /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
1756 extra buffer size argument before the memory read size can be
1757 increased beyond this. */
1758 if (size
> get_remote_packet_size ())
1759 size
= get_remote_packet_size ();
1765 struct packet_config
1770 /* If auto, GDB auto-detects support for this packet or feature,
1771 either through qSupported, or by trying the packet and looking
1772 at the response. If true, GDB assumes the target supports this
1773 packet. If false, the packet is disabled. Configs that don't
1774 have an associated command always have this set to auto. */
1775 enum auto_boolean detect
;
1777 /* Does the target support this packet? */
1778 enum packet_support support
;
1781 static enum packet_support
packet_config_support (struct packet_config
*config
);
1782 static enum packet_support
packet_support (int packet
);
1785 show_packet_config_cmd (struct packet_config
*config
)
1787 const char *support
= "internal-error";
1789 switch (packet_config_support (config
))
1792 support
= "enabled";
1794 case PACKET_DISABLE
:
1795 support
= "disabled";
1797 case PACKET_SUPPORT_UNKNOWN
:
1798 support
= "unknown";
1801 switch (config
->detect
)
1803 case AUTO_BOOLEAN_AUTO
:
1804 printf_filtered (_("Support for the `%s' packet "
1805 "is auto-detected, currently %s.\n"),
1806 config
->name
, support
);
1808 case AUTO_BOOLEAN_TRUE
:
1809 case AUTO_BOOLEAN_FALSE
:
1810 printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
1811 config
->name
, support
);
1817 add_packet_config_cmd (struct packet_config
*config
, const char *name
,
1818 const char *title
, int legacy
)
1824 config
->name
= name
;
1825 config
->title
= title
;
1826 set_doc
= xstrprintf ("Set use of remote protocol `%s' (%s) packet.",
1828 show_doc
= xstrprintf ("Show current use of remote "
1829 "protocol `%s' (%s) packet.",
1831 /* set/show TITLE-packet {auto,on,off} */
1832 cmd_name
= xstrprintf ("%s-packet", title
);
1833 add_setshow_auto_boolean_cmd (cmd_name
, class_obscure
,
1834 &config
->detect
, set_doc
,
1835 show_doc
, NULL
, /* help_doc */
1837 show_remote_protocol_packet_cmd
,
1838 &remote_set_cmdlist
, &remote_show_cmdlist
);
1839 /* The command code copies the documentation strings. */
1842 /* set/show remote NAME-packet {auto,on,off} -- legacy. */
1847 legacy_name
= xstrprintf ("%s-packet", name
);
1848 add_alias_cmd (legacy_name
, cmd_name
, class_obscure
, 0,
1849 &remote_set_cmdlist
);
1850 add_alias_cmd (legacy_name
, cmd_name
, class_obscure
, 0,
1851 &remote_show_cmdlist
);
1855 static enum packet_result
1856 packet_check_result (const char *buf
)
1860 /* The stub recognized the packet request. Check that the
1861 operation succeeded. */
1863 && isxdigit (buf
[1]) && isxdigit (buf
[2])
1865 /* "Enn" - definitely an error. */
1866 return PACKET_ERROR
;
1868 /* Always treat "E." as an error. This will be used for
1869 more verbose error messages, such as E.memtypes. */
1870 if (buf
[0] == 'E' && buf
[1] == '.')
1871 return PACKET_ERROR
;
1873 /* The packet may or may not be OK. Just assume it is. */
1877 /* The stub does not support the packet. */
1878 return PACKET_UNKNOWN
;
1881 static enum packet_result
1882 packet_check_result (const gdb::char_vector
&buf
)
1884 return packet_check_result (buf
.data ());
1887 static enum packet_result
1888 packet_ok (const char *buf
, struct packet_config
*config
)
1890 enum packet_result result
;
1892 if (config
->detect
!= AUTO_BOOLEAN_TRUE
1893 && config
->support
== PACKET_DISABLE
)
1894 internal_error (__FILE__
, __LINE__
,
1895 _("packet_ok: attempt to use a disabled packet"));
1897 result
= packet_check_result (buf
);
1902 /* The stub recognized the packet request. */
1903 if (config
->support
== PACKET_SUPPORT_UNKNOWN
)
1906 fprintf_unfiltered (gdb_stdlog
,
1907 "Packet %s (%s) is supported\n",
1908 config
->name
, config
->title
);
1909 config
->support
= PACKET_ENABLE
;
1912 case PACKET_UNKNOWN
:
1913 /* The stub does not support the packet. */
1914 if (config
->detect
== AUTO_BOOLEAN_AUTO
1915 && config
->support
== PACKET_ENABLE
)
1917 /* If the stub previously indicated that the packet was
1918 supported then there is a protocol error. */
1919 error (_("Protocol error: %s (%s) conflicting enabled responses."),
1920 config
->name
, config
->title
);
1922 else if (config
->detect
== AUTO_BOOLEAN_TRUE
)
1924 /* The user set it wrong. */
1925 error (_("Enabled packet %s (%s) not recognized by stub"),
1926 config
->name
, config
->title
);
1930 fprintf_unfiltered (gdb_stdlog
,
1931 "Packet %s (%s) is NOT supported\n",
1932 config
->name
, config
->title
);
1933 config
->support
= PACKET_DISABLE
;
1940 static enum packet_result
1941 packet_ok (const gdb::char_vector
&buf
, struct packet_config
*config
)
1943 return packet_ok (buf
.data (), config
);
1960 PACKET_vFile_pwrite
,
1962 PACKET_vFile_unlink
,
1963 PACKET_vFile_readlink
,
1966 PACKET_qXfer_features
,
1967 PACKET_qXfer_exec_file
,
1968 PACKET_qXfer_libraries
,
1969 PACKET_qXfer_libraries_svr4
,
1970 PACKET_qXfer_memory_map
,
1971 PACKET_qXfer_osdata
,
1972 PACKET_qXfer_threads
,
1973 PACKET_qXfer_statictrace_read
,
1974 PACKET_qXfer_traceframe_info
,
1980 PACKET_QPassSignals
,
1981 PACKET_QCatchSyscalls
,
1982 PACKET_QProgramSignals
,
1983 PACKET_QSetWorkingDir
,
1984 PACKET_QStartupWithShell
,
1985 PACKET_QEnvironmentHexEncoded
,
1986 PACKET_QEnvironmentReset
,
1987 PACKET_QEnvironmentUnset
,
1989 PACKET_qSearch_memory
,
1992 PACKET_QStartNoAckMode
,
1994 PACKET_qXfer_siginfo_read
,
1995 PACKET_qXfer_siginfo_write
,
1998 /* Support for conditional tracepoints. */
1999 PACKET_ConditionalTracepoints
,
2001 /* Support for target-side breakpoint conditions. */
2002 PACKET_ConditionalBreakpoints
,
2004 /* Support for target-side breakpoint commands. */
2005 PACKET_BreakpointCommands
,
2007 /* Support for fast tracepoints. */
2008 PACKET_FastTracepoints
,
2010 /* Support for static tracepoints. */
2011 PACKET_StaticTracepoints
,
2013 /* Support for installing tracepoints while a trace experiment is
2015 PACKET_InstallInTrace
,
2019 PACKET_TracepointSource
,
2022 PACKET_QDisableRandomization
,
2024 PACKET_QTBuffer_size
,
2028 PACKET_qXfer_btrace
,
2030 /* Support for the QNonStop packet. */
2033 /* Support for the QThreadEvents packet. */
2034 PACKET_QThreadEvents
,
2036 /* Support for multi-process extensions. */
2037 PACKET_multiprocess_feature
,
2039 /* Support for enabling and disabling tracepoints while a trace
2040 experiment is running. */
2041 PACKET_EnableDisableTracepoints_feature
,
2043 /* Support for collecting strings using the tracenz bytecode. */
2044 PACKET_tracenz_feature
,
2046 /* Support for continuing to run a trace experiment while GDB is
2048 PACKET_DisconnectedTracing_feature
,
2050 /* Support for qXfer:libraries-svr4:read with a non-empty annex. */
2051 PACKET_augmented_libraries_svr4_read_feature
,
2053 /* Support for the qXfer:btrace-conf:read packet. */
2054 PACKET_qXfer_btrace_conf
,
2056 /* Support for the Qbtrace-conf:bts:size packet. */
2057 PACKET_Qbtrace_conf_bts_size
,
2059 /* Support for swbreak+ feature. */
2060 PACKET_swbreak_feature
,
2062 /* Support for hwbreak+ feature. */
2063 PACKET_hwbreak_feature
,
2065 /* Support for fork events. */
2066 PACKET_fork_event_feature
,
2068 /* Support for vfork events. */
2069 PACKET_vfork_event_feature
,
2071 /* Support for the Qbtrace-conf:pt:size packet. */
2072 PACKET_Qbtrace_conf_pt_size
,
2074 /* Support for exec events. */
2075 PACKET_exec_event_feature
,
2077 /* Support for query supported vCont actions. */
2078 PACKET_vContSupported
,
2080 /* Support remote CTRL-C. */
2083 /* Support TARGET_WAITKIND_NO_RESUMED. */
2089 static struct packet_config remote_protocol_packets
[PACKET_MAX
];
2091 /* Returns the packet's corresponding "set remote foo-packet" command
2092 state. See struct packet_config for more details. */
2094 static enum auto_boolean
2095 packet_set_cmd_state (int packet
)
2097 return remote_protocol_packets
[packet
].detect
;
2100 /* Returns whether a given packet or feature is supported. This takes
2101 into account the state of the corresponding "set remote foo-packet"
2102 command, which may be used to bypass auto-detection. */
2104 static enum packet_support
2105 packet_config_support (struct packet_config
*config
)
2107 switch (config
->detect
)
2109 case AUTO_BOOLEAN_TRUE
:
2110 return PACKET_ENABLE
;
2111 case AUTO_BOOLEAN_FALSE
:
2112 return PACKET_DISABLE
;
2113 case AUTO_BOOLEAN_AUTO
:
2114 return config
->support
;
2116 gdb_assert_not_reached (_("bad switch"));
2120 /* Same as packet_config_support, but takes the packet's enum value as
2123 static enum packet_support
2124 packet_support (int packet
)
2126 struct packet_config
*config
= &remote_protocol_packets
[packet
];
2128 return packet_config_support (config
);
2132 show_remote_protocol_packet_cmd (struct ui_file
*file
, int from_tty
,
2133 struct cmd_list_element
*c
,
2136 struct packet_config
*packet
;
2138 for (packet
= remote_protocol_packets
;
2139 packet
< &remote_protocol_packets
[PACKET_MAX
];
2142 if (&packet
->detect
== c
->var
)
2144 show_packet_config_cmd (packet
);
2148 internal_error (__FILE__
, __LINE__
, _("Could not find config for %s"),
2152 /* Should we try one of the 'Z' requests? */
2156 Z_PACKET_SOFTWARE_BP
,
2157 Z_PACKET_HARDWARE_BP
,
2164 /* For compatibility with older distributions. Provide a ``set remote
2165 Z-packet ...'' command that updates all the Z packet types. */
2167 static enum auto_boolean remote_Z_packet_detect
;
2170 set_remote_protocol_Z_packet_cmd (const char *args
, int from_tty
,
2171 struct cmd_list_element
*c
)
2175 for (i
= 0; i
< NR_Z_PACKET_TYPES
; i
++)
2176 remote_protocol_packets
[PACKET_Z0
+ i
].detect
= remote_Z_packet_detect
;
2180 show_remote_protocol_Z_packet_cmd (struct ui_file
*file
, int from_tty
,
2181 struct cmd_list_element
*c
,
2186 for (i
= 0; i
< NR_Z_PACKET_TYPES
; i
++)
2188 show_packet_config_cmd (&remote_protocol_packets
[PACKET_Z0
+ i
]);
2192 /* Returns true if the multi-process extensions are in effect. */
2195 remote_multi_process_p (struct remote_state
*rs
)
2197 return packet_support (PACKET_multiprocess_feature
) == PACKET_ENABLE
;
2200 /* Returns true if fork events are supported. */
2203 remote_fork_event_p (struct remote_state
*rs
)
2205 return packet_support (PACKET_fork_event_feature
) == PACKET_ENABLE
;
2208 /* Returns true if vfork events are supported. */
2211 remote_vfork_event_p (struct remote_state
*rs
)
2213 return packet_support (PACKET_vfork_event_feature
) == PACKET_ENABLE
;
2216 /* Returns true if exec events are supported. */
2219 remote_exec_event_p (struct remote_state
*rs
)
2221 return packet_support (PACKET_exec_event_feature
) == PACKET_ENABLE
;
2224 /* Insert fork catchpoint target routine. If fork events are enabled
2225 then return success, nothing more to do. */
2228 remote_target::insert_fork_catchpoint (int pid
)
2230 struct remote_state
*rs
= get_remote_state ();
2232 return !remote_fork_event_p (rs
);
2235 /* Remove fork catchpoint target routine. Nothing to do, just
2239 remote_target::remove_fork_catchpoint (int pid
)
2244 /* Insert vfork catchpoint target routine. If vfork events are enabled
2245 then return success, nothing more to do. */
2248 remote_target::insert_vfork_catchpoint (int pid
)
2250 struct remote_state
*rs
= get_remote_state ();
2252 return !remote_vfork_event_p (rs
);
2255 /* Remove vfork catchpoint target routine. Nothing to do, just
2259 remote_target::remove_vfork_catchpoint (int pid
)
2264 /* Insert exec catchpoint target routine. If exec events are
2265 enabled, just return success. */
2268 remote_target::insert_exec_catchpoint (int pid
)
2270 struct remote_state
*rs
= get_remote_state ();
2272 return !remote_exec_event_p (rs
);
2275 /* Remove exec catchpoint target routine. Nothing to do, just
2279 remote_target::remove_exec_catchpoint (int pid
)
2286 /* Take advantage of the fact that the TID field is not used, to tag
2287 special ptids with it set to != 0. */
2288 static const ptid_t
magic_null_ptid (42000, -1, 1);
2289 static const ptid_t
not_sent_ptid (42000, -2, 1);
2290 static const ptid_t
any_thread_ptid (42000, 0, 1);
2292 /* Find out if the stub attached to PID (and hence GDB should offer to
2293 detach instead of killing it when bailing out). */
2296 remote_target::remote_query_attached (int pid
)
2298 struct remote_state
*rs
= get_remote_state ();
2299 size_t size
= get_remote_packet_size ();
2301 if (packet_support (PACKET_qAttached
) == PACKET_DISABLE
)
2304 if (remote_multi_process_p (rs
))
2305 xsnprintf (rs
->buf
.data (), size
, "qAttached:%x", pid
);
2307 xsnprintf (rs
->buf
.data (), size
, "qAttached");
2310 getpkt (&rs
->buf
, 0);
2312 switch (packet_ok (rs
->buf
,
2313 &remote_protocol_packets
[PACKET_qAttached
]))
2316 if (strcmp (rs
->buf
.data (), "1") == 0)
2320 warning (_("Remote failure reply: %s"), rs
->buf
.data ());
2322 case PACKET_UNKNOWN
:
2329 /* Add PID to GDB's inferior table. If FAKE_PID_P is true, then PID
2330 has been invented by GDB, instead of reported by the target. Since
2331 we can be connected to a remote system before before knowing about
2332 any inferior, mark the target with execution when we find the first
2333 inferior. If ATTACHED is 1, then we had just attached to this
2334 inferior. If it is 0, then we just created this inferior. If it
2335 is -1, then try querying the remote stub to find out if it had
2336 attached to the inferior or not. If TRY_OPEN_EXEC is true then
2337 attempt to open this inferior's executable as the main executable
2338 if no main executable is open already. */
2341 remote_target::remote_add_inferior (bool fake_pid_p
, int pid
, int attached
,
2344 struct inferior
*inf
;
2346 /* Check whether this process we're learning about is to be
2347 considered attached, or if is to be considered to have been
2348 spawned by the stub. */
2350 attached
= remote_query_attached (pid
);
2352 if (gdbarch_has_global_solist (target_gdbarch ()))
2354 /* If the target shares code across all inferiors, then every
2355 attach adds a new inferior. */
2356 inf
= add_inferior (pid
);
2358 /* ... and every inferior is bound to the same program space.
2359 However, each inferior may still have its own address
2361 inf
->aspace
= maybe_new_address_space ();
2362 inf
->pspace
= current_program_space
;
2366 /* In the traditional debugging scenario, there's a 1-1 match
2367 between program/address spaces. We simply bind the inferior
2368 to the program space's address space. */
2369 inf
= current_inferior ();
2370 inferior_appeared (inf
, pid
);
2373 inf
->attach_flag
= attached
;
2374 inf
->fake_pid_p
= fake_pid_p
;
2376 /* If no main executable is currently open then attempt to
2377 open the file that was executed to create this inferior. */
2378 if (try_open_exec
&& get_exec_file (0) == NULL
)
2379 exec_file_locate_attach (pid
, 0, 1);
2384 static remote_thread_info
*get_remote_thread_info (thread_info
*thread
);
2385 static remote_thread_info
*get_remote_thread_info (ptid_t ptid
);
2387 /* Add thread PTID to GDB's thread list. Tag it as executing/running
2388 according to RUNNING. */
2391 remote_target::remote_add_thread (ptid_t ptid
, bool running
, bool executing
)
2393 struct remote_state
*rs
= get_remote_state ();
2394 struct thread_info
*thread
;
2396 /* GDB historically didn't pull threads in the initial connection
2397 setup. If the remote target doesn't even have a concept of
2398 threads (e.g., a bare-metal target), even if internally we
2399 consider that a single-threaded target, mentioning a new thread
2400 might be confusing to the user. Be silent then, preserving the
2401 age old behavior. */
2402 if (rs
->starting_up
)
2403 thread
= add_thread_silent (ptid
);
2405 thread
= add_thread (ptid
);
2407 get_remote_thread_info (thread
)->vcont_resumed
= executing
;
2408 set_executing (ptid
, executing
);
2409 set_running (ptid
, running
);
2414 /* Come here when we learn about a thread id from the remote target.
2415 It may be the first time we hear about such thread, so take the
2416 opportunity to add it to GDB's thread list. In case this is the
2417 first time we're noticing its corresponding inferior, add it to
2418 GDB's inferior list as well. EXECUTING indicates whether the
2419 thread is (internally) executing or stopped. */
2422 remote_target::remote_notice_new_inferior (ptid_t currthread
, int executing
)
2424 /* In non-stop mode, we assume new found threads are (externally)
2425 running until proven otherwise with a stop reply. In all-stop,
2426 we can only get here if all threads are stopped. */
2427 int running
= target_is_non_stop_p () ? 1 : 0;
2429 /* If this is a new thread, add it to GDB's thread list.
2430 If we leave it up to WFI to do this, bad things will happen. */
2432 thread_info
*tp
= find_thread_ptid (currthread
);
2433 if (tp
!= NULL
&& tp
->state
== THREAD_EXITED
)
2435 /* We're seeing an event on a thread id we knew had exited.
2436 This has to be a new thread reusing the old id. Add it. */
2437 remote_add_thread (currthread
, running
, executing
);
2441 if (!in_thread_list (currthread
))
2443 struct inferior
*inf
= NULL
;
2444 int pid
= currthread
.pid ();
2446 if (inferior_ptid
.is_pid ()
2447 && pid
== inferior_ptid
.pid ())
2449 /* inferior_ptid has no thread member yet. This can happen
2450 with the vAttach -> remote_wait,"TAAthread:" path if the
2451 stub doesn't support qC. This is the first stop reported
2452 after an attach, so this is the main thread. Update the
2453 ptid in the thread list. */
2454 if (in_thread_list (ptid_t (pid
)))
2455 thread_change_ptid (inferior_ptid
, currthread
);
2458 remote_add_thread (currthread
, running
, executing
);
2459 inferior_ptid
= currthread
;
2464 if (magic_null_ptid
== inferior_ptid
)
2466 /* inferior_ptid is not set yet. This can happen with the
2467 vRun -> remote_wait,"TAAthread:" path if the stub
2468 doesn't support qC. This is the first stop reported
2469 after an attach, so this is the main thread. Update the
2470 ptid in the thread list. */
2471 thread_change_ptid (inferior_ptid
, currthread
);
2475 /* When connecting to a target remote, or to a target
2476 extended-remote which already was debugging an inferior, we
2477 may not know about it yet. Add it before adding its child
2478 thread, so notifications are emitted in a sensible order. */
2479 if (find_inferior_pid (currthread
.pid ()) == NULL
)
2481 struct remote_state
*rs
= get_remote_state ();
2482 bool fake_pid_p
= !remote_multi_process_p (rs
);
2484 inf
= remote_add_inferior (fake_pid_p
,
2485 currthread
.pid (), -1, 1);
2488 /* This is really a new thread. Add it. */
2489 thread_info
*new_thr
2490 = remote_add_thread (currthread
, running
, executing
);
2492 /* If we found a new inferior, let the common code do whatever
2493 it needs to with it (e.g., read shared libraries, insert
2494 breakpoints), unless we're just setting up an all-stop
2498 struct remote_state
*rs
= get_remote_state ();
2500 if (!rs
->starting_up
)
2501 notice_new_inferior (new_thr
, executing
, 0);
2506 /* Return THREAD's private thread data, creating it if necessary. */
2508 static remote_thread_info
*
2509 get_remote_thread_info (thread_info
*thread
)
2511 gdb_assert (thread
!= NULL
);
2513 if (thread
->priv
== NULL
)
2514 thread
->priv
.reset (new remote_thread_info
);
2516 return static_cast<remote_thread_info
*> (thread
->priv
.get ());
2519 static remote_thread_info
*
2520 get_remote_thread_info (ptid_t ptid
)
2522 thread_info
*thr
= find_thread_ptid (ptid
);
2523 return get_remote_thread_info (thr
);
2526 /* Call this function as a result of
2527 1) A halt indication (T packet) containing a thread id
2528 2) A direct query of currthread
2529 3) Successful execution of set thread */
2532 record_currthread (struct remote_state
*rs
, ptid_t currthread
)
2534 rs
->general_thread
= currthread
;
2537 /* If 'QPassSignals' is supported, tell the remote stub what signals
2538 it can simply pass through to the inferior without reporting. */
2541 remote_target::pass_signals (gdb::array_view
<const unsigned char> pass_signals
)
2543 if (packet_support (PACKET_QPassSignals
) != PACKET_DISABLE
)
2545 char *pass_packet
, *p
;
2547 struct remote_state
*rs
= get_remote_state ();
2549 gdb_assert (pass_signals
.size () < 256);
2550 for (size_t i
= 0; i
< pass_signals
.size (); i
++)
2552 if (pass_signals
[i
])
2555 pass_packet
= (char *) xmalloc (count
* 3 + strlen ("QPassSignals:") + 1);
2556 strcpy (pass_packet
, "QPassSignals:");
2557 p
= pass_packet
+ strlen (pass_packet
);
2558 for (size_t i
= 0; i
< pass_signals
.size (); i
++)
2560 if (pass_signals
[i
])
2563 *p
++ = tohex (i
>> 4);
2564 *p
++ = tohex (i
& 15);
2573 if (!rs
->last_pass_packet
|| strcmp (rs
->last_pass_packet
, pass_packet
))
2575 putpkt (pass_packet
);
2576 getpkt (&rs
->buf
, 0);
2577 packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_QPassSignals
]);
2578 if (rs
->last_pass_packet
)
2579 xfree (rs
->last_pass_packet
);
2580 rs
->last_pass_packet
= pass_packet
;
2583 xfree (pass_packet
);
2587 /* If 'QCatchSyscalls' is supported, tell the remote stub
2588 to report syscalls to GDB. */
2591 remote_target::set_syscall_catchpoint (int pid
, bool needed
, int any_count
,
2592 gdb::array_view
<const int> syscall_counts
)
2594 const char *catch_packet
;
2595 enum packet_result result
;
2598 if (packet_support (PACKET_QCatchSyscalls
) == PACKET_DISABLE
)
2600 /* Not supported. */
2604 if (needed
&& any_count
== 0)
2606 /* Count how many syscalls are to be caught. */
2607 for (size_t i
= 0; i
< syscall_counts
.size (); i
++)
2609 if (syscall_counts
[i
] != 0)
2616 fprintf_unfiltered (gdb_stdlog
,
2617 "remote_set_syscall_catchpoint "
2618 "pid %d needed %d any_count %d n_sysno %d\n",
2619 pid
, needed
, any_count
, n_sysno
);
2622 std::string built_packet
;
2625 /* Prepare a packet with the sysno list, assuming max 8+1
2626 characters for a sysno. If the resulting packet size is too
2627 big, fallback on the non-selective packet. */
2628 const int maxpktsz
= strlen ("QCatchSyscalls:1") + n_sysno
* 9 + 1;
2629 built_packet
.reserve (maxpktsz
);
2630 built_packet
= "QCatchSyscalls:1";
2633 /* Add in each syscall to be caught. */
2634 for (size_t i
= 0; i
< syscall_counts
.size (); i
++)
2636 if (syscall_counts
[i
] != 0)
2637 string_appendf (built_packet
, ";%zx", i
);
2640 if (built_packet
.size () > get_remote_packet_size ())
2642 /* catch_packet too big. Fallback to less efficient
2643 non selective mode, with GDB doing the filtering. */
2644 catch_packet
= "QCatchSyscalls:1";
2647 catch_packet
= built_packet
.c_str ();
2650 catch_packet
= "QCatchSyscalls:0";
2652 struct remote_state
*rs
= get_remote_state ();
2654 putpkt (catch_packet
);
2655 getpkt (&rs
->buf
, 0);
2656 result
= packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_QCatchSyscalls
]);
2657 if (result
== PACKET_OK
)
2663 /* If 'QProgramSignals' is supported, tell the remote stub what
2664 signals it should pass through to the inferior when detaching. */
2667 remote_target::program_signals (gdb::array_view
<const unsigned char> signals
)
2669 if (packet_support (PACKET_QProgramSignals
) != PACKET_DISABLE
)
2673 struct remote_state
*rs
= get_remote_state ();
2675 gdb_assert (signals
.size () < 256);
2676 for (size_t i
= 0; i
< signals
.size (); i
++)
2681 packet
= (char *) xmalloc (count
* 3 + strlen ("QProgramSignals:") + 1);
2682 strcpy (packet
, "QProgramSignals:");
2683 p
= packet
+ strlen (packet
);
2684 for (size_t i
= 0; i
< signals
.size (); i
++)
2686 if (signal_pass_state (i
))
2689 *p
++ = tohex (i
>> 4);
2690 *p
++ = tohex (i
& 15);
2699 if (!rs
->last_program_signals_packet
2700 || strcmp (rs
->last_program_signals_packet
, packet
) != 0)
2703 getpkt (&rs
->buf
, 0);
2704 packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_QProgramSignals
]);
2705 xfree (rs
->last_program_signals_packet
);
2706 rs
->last_program_signals_packet
= packet
;
2713 /* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
2714 MINUS_ONE_PTID, set the thread to -1, so the stub returns the
2715 thread. If GEN is set, set the general thread, if not, then set
2716 the step/continue thread. */
2718 remote_target::set_thread (ptid_t ptid
, int gen
)
2720 struct remote_state
*rs
= get_remote_state ();
2721 ptid_t state
= gen
? rs
->general_thread
: rs
->continue_thread
;
2722 char *buf
= rs
->buf
.data ();
2723 char *endbuf
= buf
+ get_remote_packet_size ();
2729 *buf
++ = gen
? 'g' : 'c';
2730 if (ptid
== magic_null_ptid
)
2731 xsnprintf (buf
, endbuf
- buf
, "0");
2732 else if (ptid
== any_thread_ptid
)
2733 xsnprintf (buf
, endbuf
- buf
, "0");
2734 else if (ptid
== minus_one_ptid
)
2735 xsnprintf (buf
, endbuf
- buf
, "-1");
2737 write_ptid (buf
, endbuf
, ptid
);
2739 getpkt (&rs
->buf
, 0);
2741 rs
->general_thread
= ptid
;
2743 rs
->continue_thread
= ptid
;
2747 remote_target::set_general_thread (ptid_t ptid
)
2749 set_thread (ptid
, 1);
2753 remote_target::set_continue_thread (ptid_t ptid
)
2755 set_thread (ptid
, 0);
2758 /* Change the remote current process. Which thread within the process
2759 ends up selected isn't important, as long as it is the same process
2760 as what INFERIOR_PTID points to.
2762 This comes from that fact that there is no explicit notion of
2763 "selected process" in the protocol. The selected process for
2764 general operations is the process the selected general thread
2768 remote_target::set_general_process ()
2770 struct remote_state
*rs
= get_remote_state ();
2772 /* If the remote can't handle multiple processes, don't bother. */
2773 if (!remote_multi_process_p (rs
))
2776 /* We only need to change the remote current thread if it's pointing
2777 at some other process. */
2778 if (rs
->general_thread
.pid () != inferior_ptid
.pid ())
2779 set_general_thread (inferior_ptid
);
2783 /* Return nonzero if this is the main thread that we made up ourselves
2784 to model non-threaded targets as single-threaded. */
2787 remote_thread_always_alive (ptid_t ptid
)
2789 if (ptid
== magic_null_ptid
)
2790 /* The main thread is always alive. */
2793 if (ptid
.pid () != 0 && ptid
.lwp () == 0)
2794 /* The main thread is always alive. This can happen after a
2795 vAttach, if the remote side doesn't support
2802 /* Return nonzero if the thread PTID is still alive on the remote
2806 remote_target::thread_alive (ptid_t ptid
)
2808 struct remote_state
*rs
= get_remote_state ();
2811 /* Check if this is a thread that we made up ourselves to model
2812 non-threaded targets as single-threaded. */
2813 if (remote_thread_always_alive (ptid
))
2816 p
= rs
->buf
.data ();
2817 endp
= p
+ get_remote_packet_size ();
2820 write_ptid (p
, endp
, ptid
);
2823 getpkt (&rs
->buf
, 0);
2824 return (rs
->buf
[0] == 'O' && rs
->buf
[1] == 'K');
2827 /* Return a pointer to a thread name if we know it and NULL otherwise.
2828 The thread_info object owns the memory for the name. */
2831 remote_target::thread_name (struct thread_info
*info
)
2833 if (info
->priv
!= NULL
)
2835 const std::string
&name
= get_remote_thread_info (info
)->name
;
2836 return !name
.empty () ? name
.c_str () : NULL
;
2842 /* About these extended threadlist and threadinfo packets. They are
2843 variable length packets but, the fields within them are often fixed
2844 length. They are redundant enough to send over UDP as is the
2845 remote protocol in general. There is a matching unit test module
2848 /* WARNING: This threadref data structure comes from the remote O.S.,
2849 libstub protocol encoding, and remote.c. It is not particularly
2852 /* Right now, the internal structure is int. We want it to be bigger.
2853 Plan to fix this. */
2855 typedef int gdb_threadref
; /* Internal GDB thread reference. */
2857 /* gdb_ext_thread_info is an internal GDB data structure which is
2858 equivalent to the reply of the remote threadinfo packet. */
2860 struct gdb_ext_thread_info
2862 threadref threadid
; /* External form of thread reference. */
2863 int active
; /* Has state interesting to GDB?
2865 char display
[256]; /* Brief state display, name,
2866 blocked/suspended. */
2867 char shortname
[32]; /* To be used to name threads. */
2868 char more_display
[256]; /* Long info, statistics, queue depth,
2872 /* The volume of remote transfers can be limited by submitting
2873 a mask containing bits specifying the desired information.
2874 Use a union of these values as the 'selection' parameter to
2875 get_thread_info. FIXME: Make these TAG names more thread specific. */
2877 #define TAG_THREADID 1
2878 #define TAG_EXISTS 2
2879 #define TAG_DISPLAY 4
2880 #define TAG_THREADNAME 8
2881 #define TAG_MOREDISPLAY 16
2883 #define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
2885 static char *unpack_nibble (char *buf
, int *val
);
2887 static char *unpack_byte (char *buf
, int *value
);
2889 static char *pack_int (char *buf
, int value
);
2891 static char *unpack_int (char *buf
, int *value
);
2893 static char *unpack_string (char *src
, char *dest
, int length
);
2895 static char *pack_threadid (char *pkt
, threadref
*id
);
2897 static char *unpack_threadid (char *inbuf
, threadref
*id
);
2899 void int_to_threadref (threadref
*id
, int value
);
2901 static int threadref_to_int (threadref
*ref
);
2903 static void copy_threadref (threadref
*dest
, threadref
*src
);
2905 static int threadmatch (threadref
*dest
, threadref
*src
);
2907 static char *pack_threadinfo_request (char *pkt
, int mode
,
2910 static char *pack_threadlist_request (char *pkt
, int startflag
,
2912 threadref
*nextthread
);
2914 static int remote_newthread_step (threadref
*ref
, void *context
);
2917 /* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the
2918 buffer we're allowed to write to. Returns
2919 BUF+CHARACTERS_WRITTEN. */
2922 remote_target::write_ptid (char *buf
, const char *endbuf
, ptid_t ptid
)
2925 struct remote_state
*rs
= get_remote_state ();
2927 if (remote_multi_process_p (rs
))
2931 buf
+= xsnprintf (buf
, endbuf
- buf
, "p-%x.", -pid
);
2933 buf
+= xsnprintf (buf
, endbuf
- buf
, "p%x.", pid
);
2937 buf
+= xsnprintf (buf
, endbuf
- buf
, "-%x", -tid
);
2939 buf
+= xsnprintf (buf
, endbuf
- buf
, "%x", tid
);
2944 /* Extract a PTID from BUF. If non-null, OBUF is set to one past the
2945 last parsed char. Returns null_ptid if no thread id is found, and
2946 throws an error if the thread id has an invalid format. */
2949 read_ptid (const char *buf
, const char **obuf
)
2951 const char *p
= buf
;
2953 ULONGEST pid
= 0, tid
= 0;
2957 /* Multi-process ptid. */
2958 pp
= unpack_varlen_hex (p
+ 1, &pid
);
2960 error (_("invalid remote ptid: %s"), p
);
2963 pp
= unpack_varlen_hex (p
+ 1, &tid
);
2966 return ptid_t (pid
, tid
, 0);
2969 /* No multi-process. Just a tid. */
2970 pp
= unpack_varlen_hex (p
, &tid
);
2972 /* Return null_ptid when no thread id is found. */
2980 /* Since the stub is not sending a process id, then default to
2981 what's in inferior_ptid, unless it's null at this point. If so,
2982 then since there's no way to know the pid of the reported
2983 threads, use the magic number. */
2984 if (inferior_ptid
== null_ptid
)
2985 pid
= magic_null_ptid
.pid ();
2987 pid
= inferior_ptid
.pid ();
2991 return ptid_t (pid
, tid
, 0);
2997 if (ch
>= 'a' && ch
<= 'f')
2998 return ch
- 'a' + 10;
2999 if (ch
>= '0' && ch
<= '9')
3001 if (ch
>= 'A' && ch
<= 'F')
3002 return ch
- 'A' + 10;
3007 stub_unpack_int (char *buff
, int fieldlength
)
3014 nibble
= stubhex (*buff
++);
3018 retval
= retval
<< 4;
3024 unpack_nibble (char *buf
, int *val
)
3026 *val
= fromhex (*buf
++);
3031 unpack_byte (char *buf
, int *value
)
3033 *value
= stub_unpack_int (buf
, 2);
3038 pack_int (char *buf
, int value
)
3040 buf
= pack_hex_byte (buf
, (value
>> 24) & 0xff);
3041 buf
= pack_hex_byte (buf
, (value
>> 16) & 0xff);
3042 buf
= pack_hex_byte (buf
, (value
>> 8) & 0x0ff);
3043 buf
= pack_hex_byte (buf
, (value
& 0xff));
3048 unpack_int (char *buf
, int *value
)
3050 *value
= stub_unpack_int (buf
, 8);
3054 #if 0 /* Currently unused, uncomment when needed. */
3055 static char *pack_string (char *pkt
, char *string
);
3058 pack_string (char *pkt
, char *string
)
3063 len
= strlen (string
);
3065 len
= 200; /* Bigger than most GDB packets, junk??? */
3066 pkt
= pack_hex_byte (pkt
, len
);
3070 if ((ch
== '\0') || (ch
== '#'))
3071 ch
= '*'; /* Protect encapsulation. */
3076 #endif /* 0 (unused) */
3079 unpack_string (char *src
, char *dest
, int length
)
3088 pack_threadid (char *pkt
, threadref
*id
)
3091 unsigned char *altid
;
3093 altid
= (unsigned char *) id
;
3094 limit
= pkt
+ BUF_THREAD_ID_SIZE
;
3096 pkt
= pack_hex_byte (pkt
, *altid
++);
3102 unpack_threadid (char *inbuf
, threadref
*id
)
3105 char *limit
= inbuf
+ BUF_THREAD_ID_SIZE
;
3108 altref
= (char *) id
;
3110 while (inbuf
< limit
)
3112 x
= stubhex (*inbuf
++);
3113 y
= stubhex (*inbuf
++);
3114 *altref
++ = (x
<< 4) | y
;
3119 /* Externally, threadrefs are 64 bits but internally, they are still
3120 ints. This is due to a mismatch of specifications. We would like
3121 to use 64bit thread references internally. This is an adapter
3125 int_to_threadref (threadref
*id
, int value
)
3127 unsigned char *scan
;
3129 scan
= (unsigned char *) id
;
3135 *scan
++ = (value
>> 24) & 0xff;
3136 *scan
++ = (value
>> 16) & 0xff;
3137 *scan
++ = (value
>> 8) & 0xff;
3138 *scan
++ = (value
& 0xff);
3142 threadref_to_int (threadref
*ref
)
3145 unsigned char *scan
;
3151 value
= (value
<< 8) | ((*scan
++) & 0xff);
3156 copy_threadref (threadref
*dest
, threadref
*src
)
3159 unsigned char *csrc
, *cdest
;
3161 csrc
= (unsigned char *) src
;
3162 cdest
= (unsigned char *) dest
;
3169 threadmatch (threadref
*dest
, threadref
*src
)
3171 /* Things are broken right now, so just assume we got a match. */
3173 unsigned char *srcp
, *destp
;
3175 srcp
= (char *) src
;
3176 destp
= (char *) dest
;
3180 result
&= (*srcp
++ == *destp
++) ? 1 : 0;
3187 threadid:1, # always request threadid
3194 /* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
3197 pack_threadinfo_request (char *pkt
, int mode
, threadref
*id
)
3199 *pkt
++ = 'q'; /* Info Query */
3200 *pkt
++ = 'P'; /* process or thread info */
3201 pkt
= pack_int (pkt
, mode
); /* mode */
3202 pkt
= pack_threadid (pkt
, id
); /* threadid */
3203 *pkt
= '\0'; /* terminate */
3207 /* These values tag the fields in a thread info response packet. */
3208 /* Tagging the fields allows us to request specific fields and to
3209 add more fields as time goes by. */
3211 #define TAG_THREADID 1 /* Echo the thread identifier. */
3212 #define TAG_EXISTS 2 /* Is this process defined enough to
3213 fetch registers and its stack? */
3214 #define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
3215 #define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
3216 #define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
3220 remote_target::remote_unpack_thread_info_response (char *pkt
,
3221 threadref
*expectedref
,
3222 gdb_ext_thread_info
*info
)
3224 struct remote_state
*rs
= get_remote_state ();
3228 char *limit
= pkt
+ rs
->buf
.size (); /* Plausible parsing limit. */
3231 /* info->threadid = 0; FIXME: implement zero_threadref. */
3233 info
->display
[0] = '\0';
3234 info
->shortname
[0] = '\0';
3235 info
->more_display
[0] = '\0';
3237 /* Assume the characters indicating the packet type have been
3239 pkt
= unpack_int (pkt
, &mask
); /* arg mask */
3240 pkt
= unpack_threadid (pkt
, &ref
);
3243 warning (_("Incomplete response to threadinfo request."));
3244 if (!threadmatch (&ref
, expectedref
))
3245 { /* This is an answer to a different request. */
3246 warning (_("ERROR RMT Thread info mismatch."));
3249 copy_threadref (&info
->threadid
, &ref
);
3251 /* Loop on tagged fields , try to bail if something goes wrong. */
3253 /* Packets are terminated with nulls. */
3254 while ((pkt
< limit
) && mask
&& *pkt
)
3256 pkt
= unpack_int (pkt
, &tag
); /* tag */
3257 pkt
= unpack_byte (pkt
, &length
); /* length */
3258 if (!(tag
& mask
)) /* Tags out of synch with mask. */
3260 warning (_("ERROR RMT: threadinfo tag mismatch."));
3264 if (tag
== TAG_THREADID
)
3268 warning (_("ERROR RMT: length of threadid is not 16."));
3272 pkt
= unpack_threadid (pkt
, &ref
);
3273 mask
= mask
& ~TAG_THREADID
;
3276 if (tag
== TAG_EXISTS
)
3278 info
->active
= stub_unpack_int (pkt
, length
);
3280 mask
= mask
& ~(TAG_EXISTS
);
3283 warning (_("ERROR RMT: 'exists' length too long."));
3289 if (tag
== TAG_THREADNAME
)
3291 pkt
= unpack_string (pkt
, &info
->shortname
[0], length
);
3292 mask
= mask
& ~TAG_THREADNAME
;
3295 if (tag
== TAG_DISPLAY
)
3297 pkt
= unpack_string (pkt
, &info
->display
[0], length
);
3298 mask
= mask
& ~TAG_DISPLAY
;
3301 if (tag
== TAG_MOREDISPLAY
)
3303 pkt
= unpack_string (pkt
, &info
->more_display
[0], length
);
3304 mask
= mask
& ~TAG_MOREDISPLAY
;
3307 warning (_("ERROR RMT: unknown thread info tag."));
3308 break; /* Not a tag we know about. */
3314 remote_target::remote_get_threadinfo (threadref
*threadid
,
3316 gdb_ext_thread_info
*info
)
3318 struct remote_state
*rs
= get_remote_state ();
3321 pack_threadinfo_request (rs
->buf
.data (), fieldset
, threadid
);
3323 getpkt (&rs
->buf
, 0);
3325 if (rs
->buf
[0] == '\0')
3328 result
= remote_unpack_thread_info_response (&rs
->buf
[2],
3333 /* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
3336 pack_threadlist_request (char *pkt
, int startflag
, int threadcount
,
3337 threadref
*nextthread
)
3339 *pkt
++ = 'q'; /* info query packet */
3340 *pkt
++ = 'L'; /* Process LIST or threadLIST request */
3341 pkt
= pack_nibble (pkt
, startflag
); /* initflag 1 bytes */
3342 pkt
= pack_hex_byte (pkt
, threadcount
); /* threadcount 2 bytes */
3343 pkt
= pack_threadid (pkt
, nextthread
); /* 64 bit thread identifier */
3348 /* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
3351 remote_target::parse_threadlist_response (char *pkt
, int result_limit
,
3352 threadref
*original_echo
,
3353 threadref
*resultlist
,
3356 struct remote_state
*rs
= get_remote_state ();
3358 int count
, resultcount
, done
;
3361 /* Assume the 'q' and 'M chars have been stripped. */
3362 limit
= pkt
+ (rs
->buf
.size () - BUF_THREAD_ID_SIZE
);
3363 /* done parse past here */
3364 pkt
= unpack_byte (pkt
, &count
); /* count field */
3365 pkt
= unpack_nibble (pkt
, &done
);
3366 /* The first threadid is the argument threadid. */
3367 pkt
= unpack_threadid (pkt
, original_echo
); /* should match query packet */
3368 while ((count
-- > 0) && (pkt
< limit
))
3370 pkt
= unpack_threadid (pkt
, resultlist
++);
3371 if (resultcount
++ >= result_limit
)
3379 /* Fetch the next batch of threads from the remote. Returns -1 if the
3380 qL packet is not supported, 0 on error and 1 on success. */
3383 remote_target::remote_get_threadlist (int startflag
, threadref
*nextthread
,
3384 int result_limit
, int *done
, int *result_count
,
3385 threadref
*threadlist
)
3387 struct remote_state
*rs
= get_remote_state ();
3390 /* Truncate result limit to be smaller than the packet size. */
3391 if ((((result_limit
+ 1) * BUF_THREAD_ID_SIZE
) + 10)
3392 >= get_remote_packet_size ())
3393 result_limit
= (get_remote_packet_size () / BUF_THREAD_ID_SIZE
) - 2;
3395 pack_threadlist_request (rs
->buf
.data (), startflag
, result_limit
,
3398 getpkt (&rs
->buf
, 0);
3399 if (rs
->buf
[0] == '\0')
3401 /* Packet not supported. */
3406 parse_threadlist_response (&rs
->buf
[2], result_limit
,
3407 &rs
->echo_nextthread
, threadlist
, done
);
3409 if (!threadmatch (&rs
->echo_nextthread
, nextthread
))
3411 /* FIXME: This is a good reason to drop the packet. */
3412 /* Possibly, there is a duplicate response. */
3414 retransmit immediatly - race conditions
3415 retransmit after timeout - yes
3417 wait for packet, then exit
3419 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
3420 return 0; /* I choose simply exiting. */
3422 if (*result_count
<= 0)
3426 warning (_("RMT ERROR : failed to get remote thread list."));
3429 return result
; /* break; */
3431 if (*result_count
> result_limit
)
3434 warning (_("RMT ERROR: threadlist response longer than requested."));
3440 /* Fetch the list of remote threads, with the qL packet, and call
3441 STEPFUNCTION for each thread found. Stops iterating and returns 1
3442 if STEPFUNCTION returns true. Stops iterating and returns 0 if the
3443 STEPFUNCTION returns false. If the packet is not supported,
3447 remote_target::remote_threadlist_iterator (rmt_thread_action stepfunction
,
3448 void *context
, int looplimit
)
3450 struct remote_state
*rs
= get_remote_state ();
3451 int done
, i
, result_count
;
3459 if (loopcount
++ > looplimit
)
3462 warning (_("Remote fetch threadlist -infinite loop-."));
3465 result
= remote_get_threadlist (startflag
, &rs
->nextthread
,
3466 MAXTHREADLISTRESULTS
,
3467 &done
, &result_count
,
3468 rs
->resultthreadlist
);
3471 /* Clear for later iterations. */
3473 /* Setup to resume next batch of thread references, set nextthread. */
3474 if (result_count
>= 1)
3475 copy_threadref (&rs
->nextthread
,
3476 &rs
->resultthreadlist
[result_count
- 1]);
3478 while (result_count
--)
3480 if (!(*stepfunction
) (&rs
->resultthreadlist
[i
++], context
))
3490 /* A thread found on the remote target. */
3494 explicit thread_item (ptid_t ptid_
)
3498 thread_item (thread_item
&&other
) = default;
3499 thread_item
&operator= (thread_item
&&other
) = default;
3501 DISABLE_COPY_AND_ASSIGN (thread_item
);
3503 /* The thread's PTID. */
3506 /* The thread's extra info. */
3509 /* The thread's name. */
3512 /* The core the thread was running on. -1 if not known. */
3515 /* The thread handle associated with the thread. */
3516 gdb::byte_vector thread_handle
;
3519 /* Context passed around to the various methods listing remote
3520 threads. As new threads are found, they're added to the ITEMS
3523 struct threads_listing_context
3525 /* Return true if this object contains an entry for a thread with ptid
3528 bool contains_thread (ptid_t ptid
) const
3530 auto match_ptid
= [&] (const thread_item
&item
)
3532 return item
.ptid
== ptid
;
3535 auto it
= std::find_if (this->items
.begin (),
3539 return it
!= this->items
.end ();
3542 /* Remove the thread with ptid PTID. */
3544 void remove_thread (ptid_t ptid
)
3546 auto match_ptid
= [&] (const thread_item
&item
)
3548 return item
.ptid
== ptid
;
3551 auto it
= std::remove_if (this->items
.begin (),
3555 if (it
!= this->items
.end ())
3556 this->items
.erase (it
);
3559 /* The threads found on the remote target. */
3560 std::vector
<thread_item
> items
;
3564 remote_newthread_step (threadref
*ref
, void *data
)
3566 struct threads_listing_context
*context
3567 = (struct threads_listing_context
*) data
;
3568 int pid
= inferior_ptid
.pid ();
3569 int lwp
= threadref_to_int (ref
);
3570 ptid_t
ptid (pid
, lwp
);
3572 context
->items
.emplace_back (ptid
);
3574 return 1; /* continue iterator */
3577 #define CRAZY_MAX_THREADS 1000
3580 remote_target::remote_current_thread (ptid_t oldpid
)
3582 struct remote_state
*rs
= get_remote_state ();
3585 getpkt (&rs
->buf
, 0);
3586 if (rs
->buf
[0] == 'Q' && rs
->buf
[1] == 'C')
3591 result
= read_ptid (&rs
->buf
[2], &obuf
);
3592 if (*obuf
!= '\0' && remote_debug
)
3593 fprintf_unfiltered (gdb_stdlog
,
3594 "warning: garbage in qC reply\n");
3602 /* List remote threads using the deprecated qL packet. */
3605 remote_target::remote_get_threads_with_ql (threads_listing_context
*context
)
3607 if (remote_threadlist_iterator (remote_newthread_step
, context
,
3608 CRAZY_MAX_THREADS
) >= 0)
3614 #if defined(HAVE_LIBEXPAT)
3617 start_thread (struct gdb_xml_parser
*parser
,
3618 const struct gdb_xml_element
*element
,
3620 std::vector
<gdb_xml_value
> &attributes
)
3622 struct threads_listing_context
*data
3623 = (struct threads_listing_context
*) user_data
;
3624 struct gdb_xml_value
*attr
;
3626 char *id
= (char *) xml_find_attribute (attributes
, "id")->value
.get ();
3627 ptid_t ptid
= read_ptid (id
, NULL
);
3629 data
->items
.emplace_back (ptid
);
3630 thread_item
&item
= data
->items
.back ();
3632 attr
= xml_find_attribute (attributes
, "core");
3634 item
.core
= *(ULONGEST
*) attr
->value
.get ();
3636 attr
= xml_find_attribute (attributes
, "name");
3638 item
.name
= (const char *) attr
->value
.get ();
3640 attr
= xml_find_attribute (attributes
, "handle");
3642 item
.thread_handle
= hex2bin ((const char *) attr
->value
.get ());
3646 end_thread (struct gdb_xml_parser
*parser
,
3647 const struct gdb_xml_element
*element
,
3648 void *user_data
, const char *body_text
)
3650 struct threads_listing_context
*data
3651 = (struct threads_listing_context
*) user_data
;
3653 if (body_text
!= NULL
&& *body_text
!= '\0')
3654 data
->items
.back ().extra
= body_text
;
3657 const struct gdb_xml_attribute thread_attributes
[] = {
3658 { "id", GDB_XML_AF_NONE
, NULL
, NULL
},
3659 { "core", GDB_XML_AF_OPTIONAL
, gdb_xml_parse_attr_ulongest
, NULL
},
3660 { "name", GDB_XML_AF_OPTIONAL
, NULL
, NULL
},
3661 { "handle", GDB_XML_AF_OPTIONAL
, NULL
, NULL
},
3662 { NULL
, GDB_XML_AF_NONE
, NULL
, NULL
}
3665 const struct gdb_xml_element thread_children
[] = {
3666 { NULL
, NULL
, NULL
, GDB_XML_EF_NONE
, NULL
, NULL
}
3669 const struct gdb_xml_element threads_children
[] = {
3670 { "thread", thread_attributes
, thread_children
,
3671 GDB_XML_EF_REPEATABLE
| GDB_XML_EF_OPTIONAL
,
3672 start_thread
, end_thread
},
3673 { NULL
, NULL
, NULL
, GDB_XML_EF_NONE
, NULL
, NULL
}
3676 const struct gdb_xml_element threads_elements
[] = {
3677 { "threads", NULL
, threads_children
,
3678 GDB_XML_EF_NONE
, NULL
, NULL
},
3679 { NULL
, NULL
, NULL
, GDB_XML_EF_NONE
, NULL
, NULL
}
3684 /* List remote threads using qXfer:threads:read. */
3687 remote_target::remote_get_threads_with_qxfer (threads_listing_context
*context
)
3689 #if defined(HAVE_LIBEXPAT)
3690 if (packet_support (PACKET_qXfer_threads
) == PACKET_ENABLE
)
3692 gdb::optional
<gdb::char_vector
> xml
3693 = target_read_stralloc (this, TARGET_OBJECT_THREADS
, NULL
);
3695 if (xml
&& (*xml
)[0] != '\0')
3697 gdb_xml_parse_quick (_("threads"), "threads.dtd",
3698 threads_elements
, xml
->data (), context
);
3708 /* List remote threads using qfThreadInfo/qsThreadInfo. */
3711 remote_target::remote_get_threads_with_qthreadinfo (threads_listing_context
*context
)
3713 struct remote_state
*rs
= get_remote_state ();
3715 if (rs
->use_threadinfo_query
)
3719 putpkt ("qfThreadInfo");
3720 getpkt (&rs
->buf
, 0);
3721 bufp
= rs
->buf
.data ();
3722 if (bufp
[0] != '\0') /* q packet recognized */
3724 while (*bufp
++ == 'm') /* reply contains one or more TID */
3728 ptid_t ptid
= read_ptid (bufp
, &bufp
);
3729 context
->items
.emplace_back (ptid
);
3731 while (*bufp
++ == ','); /* comma-separated list */
3732 putpkt ("qsThreadInfo");
3733 getpkt (&rs
->buf
, 0);
3734 bufp
= rs
->buf
.data ();
3740 /* Packet not recognized. */
3741 rs
->use_threadinfo_query
= 0;
3748 /* Implement the to_update_thread_list function for the remote
3752 remote_target::update_thread_list ()
3754 struct threads_listing_context context
;
3757 /* We have a few different mechanisms to fetch the thread list. Try
3758 them all, starting with the most preferred one first, falling
3759 back to older methods. */
3760 if (remote_get_threads_with_qxfer (&context
)
3761 || remote_get_threads_with_qthreadinfo (&context
)
3762 || remote_get_threads_with_ql (&context
))
3766 if (context
.items
.empty ()
3767 && remote_thread_always_alive (inferior_ptid
))
3769 /* Some targets don't really support threads, but still
3770 reply an (empty) thread list in response to the thread
3771 listing packets, instead of replying "packet not
3772 supported". Exit early so we don't delete the main
3777 /* CONTEXT now holds the current thread list on the remote
3778 target end. Delete GDB-side threads no longer found on the
3780 for (thread_info
*tp
: all_threads_safe ())
3782 if (!context
.contains_thread (tp
->ptid
))
3789 /* Remove any unreported fork child threads from CONTEXT so
3790 that we don't interfere with follow fork, which is where
3791 creation of such threads is handled. */
3792 remove_new_fork_children (&context
);
3794 /* And now add threads we don't know about yet to our list. */
3795 for (thread_item
&item
: context
.items
)
3797 if (item
.ptid
!= null_ptid
)
3799 /* In non-stop mode, we assume new found threads are
3800 executing until proven otherwise with a stop reply.
3801 In all-stop, we can only get here if all threads are
3803 int executing
= target_is_non_stop_p () ? 1 : 0;
3805 remote_notice_new_inferior (item
.ptid
, executing
);
3807 thread_info
*tp
= find_thread_ptid (item
.ptid
);
3808 remote_thread_info
*info
= get_remote_thread_info (tp
);
3809 info
->core
= item
.core
;
3810 info
->extra
= std::move (item
.extra
);
3811 info
->name
= std::move (item
.name
);
3812 info
->thread_handle
= std::move (item
.thread_handle
);
3819 /* If no thread listing method is supported, then query whether
3820 each known thread is alive, one by one, with the T packet.
3821 If the target doesn't support threads at all, then this is a
3822 no-op. See remote_thread_alive. */
3828 * Collect a descriptive string about the given thread.
3829 * The target may say anything it wants to about the thread
3830 * (typically info about its blocked / runnable state, name, etc.).
3831 * This string will appear in the info threads display.
3833 * Optional: targets are not required to implement this function.
3837 remote_target::extra_thread_info (thread_info
*tp
)
3839 struct remote_state
*rs
= get_remote_state ();
3842 struct gdb_ext_thread_info threadinfo
;
3844 if (rs
->remote_desc
== 0) /* paranoia */
3845 internal_error (__FILE__
, __LINE__
,
3846 _("remote_threads_extra_info"));
3848 if (tp
->ptid
== magic_null_ptid
3849 || (tp
->ptid
.pid () != 0 && tp
->ptid
.lwp () == 0))
3850 /* This is the main thread which was added by GDB. The remote
3851 server doesn't know about it. */
3854 std::string
&extra
= get_remote_thread_info (tp
)->extra
;
3856 /* If already have cached info, use it. */
3857 if (!extra
.empty ())
3858 return extra
.c_str ();
3860 if (packet_support (PACKET_qXfer_threads
) == PACKET_ENABLE
)
3862 /* If we're using qXfer:threads:read, then the extra info is
3863 included in the XML. So if we didn't have anything cached,
3864 it's because there's really no extra info. */
3868 if (rs
->use_threadextra_query
)
3870 char *b
= rs
->buf
.data ();
3871 char *endb
= b
+ get_remote_packet_size ();
3873 xsnprintf (b
, endb
- b
, "qThreadExtraInfo,");
3875 write_ptid (b
, endb
, tp
->ptid
);
3878 getpkt (&rs
->buf
, 0);
3879 if (rs
->buf
[0] != 0)
3881 extra
.resize (strlen (rs
->buf
.data ()) / 2);
3882 hex2bin (rs
->buf
.data (), (gdb_byte
*) &extra
[0], extra
.size ());
3883 return extra
.c_str ();
3887 /* If the above query fails, fall back to the old method. */
3888 rs
->use_threadextra_query
= 0;
3889 set
= TAG_THREADID
| TAG_EXISTS
| TAG_THREADNAME
3890 | TAG_MOREDISPLAY
| TAG_DISPLAY
;
3891 int_to_threadref (&id
, tp
->ptid
.lwp ());
3892 if (remote_get_threadinfo (&id
, set
, &threadinfo
))
3893 if (threadinfo
.active
)
3895 if (*threadinfo
.shortname
)
3896 string_appendf (extra
, " Name: %s", threadinfo
.shortname
);
3897 if (*threadinfo
.display
)
3899 if (!extra
.empty ())
3901 string_appendf (extra
, " State: %s", threadinfo
.display
);
3903 if (*threadinfo
.more_display
)
3905 if (!extra
.empty ())
3907 string_appendf (extra
, " Priority: %s", threadinfo
.more_display
);
3909 return extra
.c_str ();
3916 remote_target::static_tracepoint_marker_at (CORE_ADDR addr
,
3917 struct static_tracepoint_marker
*marker
)
3919 struct remote_state
*rs
= get_remote_state ();
3920 char *p
= rs
->buf
.data ();
3922 xsnprintf (p
, get_remote_packet_size (), "qTSTMat:");
3924 p
+= hexnumstr (p
, addr
);
3926 getpkt (&rs
->buf
, 0);
3927 p
= rs
->buf
.data ();
3930 error (_("Remote failure reply: %s"), p
);
3934 parse_static_tracepoint_marker_definition (p
, NULL
, marker
);
3941 std::vector
<static_tracepoint_marker
>
3942 remote_target::static_tracepoint_markers_by_strid (const char *strid
)
3944 struct remote_state
*rs
= get_remote_state ();
3945 std::vector
<static_tracepoint_marker
> markers
;
3947 static_tracepoint_marker marker
;
3949 /* Ask for a first packet of static tracepoint marker
3952 getpkt (&rs
->buf
, 0);
3953 p
= rs
->buf
.data ();
3955 error (_("Remote failure reply: %s"), p
);
3961 parse_static_tracepoint_marker_definition (p
, &p
, &marker
);
3963 if (strid
== NULL
|| marker
.str_id
== strid
)
3964 markers
.push_back (std::move (marker
));
3966 while (*p
++ == ','); /* comma-separated list */
3967 /* Ask for another packet of static tracepoint definition. */
3969 getpkt (&rs
->buf
, 0);
3970 p
= rs
->buf
.data ();
3977 /* Implement the to_get_ada_task_ptid function for the remote targets. */
3980 remote_target::get_ada_task_ptid (long lwp
, long thread
)
3982 return ptid_t (inferior_ptid
.pid (), lwp
, 0);
3986 /* Restart the remote side; this is an extended protocol operation. */
3989 remote_target::extended_remote_restart ()
3991 struct remote_state
*rs
= get_remote_state ();
3993 /* Send the restart command; for reasons I don't understand the
3994 remote side really expects a number after the "R". */
3995 xsnprintf (rs
->buf
.data (), get_remote_packet_size (), "R%x", 0);
3998 remote_fileio_reset ();
4001 /* Clean up connection to a remote debugger. */
4004 remote_target::close ()
4006 /* Make sure we leave stdin registered in the event loop. */
4009 /* We don't have a connection to the remote stub anymore. Get rid
4010 of all the inferiors and their threads we were controlling.
4011 Reset inferior_ptid to null_ptid first, as otherwise has_stack_frame
4012 will be unable to find the thread corresponding to (pid, 0, 0). */
4013 inferior_ptid
= null_ptid
;
4014 discard_all_inferiors ();
4016 trace_reset_local_state ();
4021 remote_target::~remote_target ()
4023 struct remote_state
*rs
= get_remote_state ();
4025 /* Check for NULL because we may get here with a partially
4026 constructed target/connection. */
4027 if (rs
->remote_desc
== nullptr)
4030 serial_close (rs
->remote_desc
);
4032 /* We are destroying the remote target, so we should discard
4033 everything of this target. */
4034 discard_pending_stop_replies_in_queue ();
4036 if (rs
->remote_async_inferior_event_token
)
4037 delete_async_event_handler (&rs
->remote_async_inferior_event_token
);
4039 delete rs
->notif_state
;
4042 /* Query the remote side for the text, data and bss offsets. */
4045 remote_target::get_offsets ()
4047 struct remote_state
*rs
= get_remote_state ();
4050 int lose
, num_segments
= 0, do_sections
, do_segments
;
4051 CORE_ADDR text_addr
, data_addr
, bss_addr
, segments
[2];
4052 struct section_offsets
*offs
;
4053 struct symfile_segment_data
*data
;
4055 if (symfile_objfile
== NULL
)
4058 putpkt ("qOffsets");
4059 getpkt (&rs
->buf
, 0);
4060 buf
= rs
->buf
.data ();
4062 if (buf
[0] == '\000')
4063 return; /* Return silently. Stub doesn't support
4067 warning (_("Remote failure reply: %s"), buf
);
4071 /* Pick up each field in turn. This used to be done with scanf, but
4072 scanf will make trouble if CORE_ADDR size doesn't match
4073 conversion directives correctly. The following code will work
4074 with any size of CORE_ADDR. */
4075 text_addr
= data_addr
= bss_addr
= 0;
4079 if (startswith (ptr
, "Text="))
4082 /* Don't use strtol, could lose on big values. */
4083 while (*ptr
&& *ptr
!= ';')
4084 text_addr
= (text_addr
<< 4) + fromhex (*ptr
++);
4086 if (startswith (ptr
, ";Data="))
4089 while (*ptr
&& *ptr
!= ';')
4090 data_addr
= (data_addr
<< 4) + fromhex (*ptr
++);
4095 if (!lose
&& startswith (ptr
, ";Bss="))
4098 while (*ptr
&& *ptr
!= ';')
4099 bss_addr
= (bss_addr
<< 4) + fromhex (*ptr
++);
4101 if (bss_addr
!= data_addr
)
4102 warning (_("Target reported unsupported offsets: %s"), buf
);
4107 else if (startswith (ptr
, "TextSeg="))
4110 /* Don't use strtol, could lose on big values. */
4111 while (*ptr
&& *ptr
!= ';')
4112 text_addr
= (text_addr
<< 4) + fromhex (*ptr
++);
4115 if (startswith (ptr
, ";DataSeg="))
4118 while (*ptr
&& *ptr
!= ';')
4119 data_addr
= (data_addr
<< 4) + fromhex (*ptr
++);
4127 error (_("Malformed response to offset query, %s"), buf
);
4128 else if (*ptr
!= '\0')
4129 warning (_("Target reported unsupported offsets: %s"), buf
);
4131 offs
= ((struct section_offsets
*)
4132 alloca (SIZEOF_N_SECTION_OFFSETS (symfile_objfile
->num_sections
)));
4133 memcpy (offs
, symfile_objfile
->section_offsets
,
4134 SIZEOF_N_SECTION_OFFSETS (symfile_objfile
->num_sections
));
4136 data
= get_symfile_segment_data (symfile_objfile
->obfd
);
4137 do_segments
= (data
!= NULL
);
4138 do_sections
= num_segments
== 0;
4140 if (num_segments
> 0)
4142 segments
[0] = text_addr
;
4143 segments
[1] = data_addr
;
4145 /* If we have two segments, we can still try to relocate everything
4146 by assuming that the .text and .data offsets apply to the whole
4147 text and data segments. Convert the offsets given in the packet
4148 to base addresses for symfile_map_offsets_to_segments. */
4149 else if (data
&& data
->num_segments
== 2)
4151 segments
[0] = data
->segment_bases
[0] + text_addr
;
4152 segments
[1] = data
->segment_bases
[1] + data_addr
;
4155 /* If the object file has only one segment, assume that it is text
4156 rather than data; main programs with no writable data are rare,
4157 but programs with no code are useless. Of course the code might
4158 have ended up in the data segment... to detect that we would need
4159 the permissions here. */
4160 else if (data
&& data
->num_segments
== 1)
4162 segments
[0] = data
->segment_bases
[0] + text_addr
;
4165 /* There's no way to relocate by segment. */
4171 int ret
= symfile_map_offsets_to_segments (symfile_objfile
->obfd
, data
,
4172 offs
, num_segments
, segments
);
4174 if (ret
== 0 && !do_sections
)
4175 error (_("Can not handle qOffsets TextSeg "
4176 "response with this symbol file"));
4183 free_symfile_segment_data (data
);
4187 offs
->offsets
[SECT_OFF_TEXT (symfile_objfile
)] = text_addr
;
4189 /* This is a temporary kludge to force data and bss to use the
4190 same offsets because that's what nlmconv does now. The real
4191 solution requires changes to the stub and remote.c that I
4192 don't have time to do right now. */
4194 offs
->offsets
[SECT_OFF_DATA (symfile_objfile
)] = data_addr
;
4195 offs
->offsets
[SECT_OFF_BSS (symfile_objfile
)] = data_addr
;
4198 objfile_relocate (symfile_objfile
, offs
);
4201 /* Send interrupt_sequence to remote target. */
4204 remote_target::send_interrupt_sequence ()
4206 struct remote_state
*rs
= get_remote_state ();
4208 if (interrupt_sequence_mode
== interrupt_sequence_control_c
)
4209 remote_serial_write ("\x03", 1);
4210 else if (interrupt_sequence_mode
== interrupt_sequence_break
)
4211 serial_send_break (rs
->remote_desc
);
4212 else if (interrupt_sequence_mode
== interrupt_sequence_break_g
)
4214 serial_send_break (rs
->remote_desc
);
4215 remote_serial_write ("g", 1);
4218 internal_error (__FILE__
, __LINE__
,
4219 _("Invalid value for interrupt_sequence_mode: %s."),
4220 interrupt_sequence_mode
);
4224 /* If STOP_REPLY is a T stop reply, look for the "thread" register,
4225 and extract the PTID. Returns NULL_PTID if not found. */
4228 stop_reply_extract_thread (char *stop_reply
)
4230 if (stop_reply
[0] == 'T' && strlen (stop_reply
) > 3)
4234 /* Txx r:val ; r:val (...) */
4237 /* Look for "register" named "thread". */
4242 p1
= strchr (p
, ':');
4246 if (strncmp (p
, "thread", p1
- p
) == 0)
4247 return read_ptid (++p1
, &p
);
4249 p1
= strchr (p
, ';');
4261 /* Determine the remote side's current thread. If we have a stop
4262 reply handy (in WAIT_STATUS), maybe it's a T stop reply with a
4263 "thread" register we can extract the current thread from. If not,
4264 ask the remote which is the current thread with qC. The former
4265 method avoids a roundtrip. */
4268 remote_target::get_current_thread (char *wait_status
)
4270 ptid_t ptid
= null_ptid
;
4272 /* Note we don't use remote_parse_stop_reply as that makes use of
4273 the target architecture, which we haven't yet fully determined at
4275 if (wait_status
!= NULL
)
4276 ptid
= stop_reply_extract_thread (wait_status
);
4277 if (ptid
== null_ptid
)
4278 ptid
= remote_current_thread (inferior_ptid
);
4283 /* Query the remote target for which is the current thread/process,
4284 add it to our tables, and update INFERIOR_PTID. The caller is
4285 responsible for setting the state such that the remote end is ready
4286 to return the current thread.
4288 This function is called after handling the '?' or 'vRun' packets,
4289 whose response is a stop reply from which we can also try
4290 extracting the thread. If the target doesn't support the explicit
4291 qC query, we infer the current thread from that stop reply, passed
4292 in in WAIT_STATUS, which may be NULL. */
4295 remote_target::add_current_inferior_and_thread (char *wait_status
)
4297 struct remote_state
*rs
= get_remote_state ();
4298 bool fake_pid_p
= false;
4300 inferior_ptid
= null_ptid
;
4302 /* Now, if we have thread information, update inferior_ptid. */
4303 ptid_t curr_ptid
= get_current_thread (wait_status
);
4305 if (curr_ptid
!= null_ptid
)
4307 if (!remote_multi_process_p (rs
))
4312 /* Without this, some commands which require an active target
4313 (such as kill) won't work. This variable serves (at least)
4314 double duty as both the pid of the target process (if it has
4315 such), and as a flag indicating that a target is active. */
4316 curr_ptid
= magic_null_ptid
;
4320 remote_add_inferior (fake_pid_p
, curr_ptid
.pid (), -1, 1);
4322 /* Add the main thread and switch to it. Don't try reading
4323 registers yet, since we haven't fetched the target description
4325 thread_info
*tp
= add_thread_silent (curr_ptid
);
4326 switch_to_thread_no_regs (tp
);
4329 /* Print info about a thread that was found already stopped on
4333 print_one_stopped_thread (struct thread_info
*thread
)
4335 struct target_waitstatus
*ws
= &thread
->suspend
.waitstatus
;
4337 switch_to_thread (thread
);
4338 thread
->suspend
.stop_pc
= get_frame_pc (get_current_frame ());
4339 set_current_sal_from_frame (get_current_frame ());
4341 thread
->suspend
.waitstatus_pending_p
= 0;
4343 if (ws
->kind
== TARGET_WAITKIND_STOPPED
)
4345 enum gdb_signal sig
= ws
->value
.sig
;
4347 if (signal_print_state (sig
))
4348 gdb::observers::signal_received
.notify (sig
);
4350 gdb::observers::normal_stop
.notify (NULL
, 1);
4353 /* Process all initial stop replies the remote side sent in response
4354 to the ? packet. These indicate threads that were already stopped
4355 on initial connection. We mark these threads as stopped and print
4356 their current frame before giving the user the prompt. */
4359 remote_target::process_initial_stop_replies (int from_tty
)
4361 int pending_stop_replies
= stop_reply_queue_length ();
4362 struct thread_info
*selected
= NULL
;
4363 struct thread_info
*lowest_stopped
= NULL
;
4364 struct thread_info
*first
= NULL
;
4366 /* Consume the initial pending events. */
4367 while (pending_stop_replies
-- > 0)
4369 ptid_t waiton_ptid
= minus_one_ptid
;
4371 struct target_waitstatus ws
;
4372 int ignore_event
= 0;
4374 memset (&ws
, 0, sizeof (ws
));
4375 event_ptid
= target_wait (waiton_ptid
, &ws
, TARGET_WNOHANG
);
4377 print_target_wait_results (waiton_ptid
, event_ptid
, &ws
);
4381 case TARGET_WAITKIND_IGNORE
:
4382 case TARGET_WAITKIND_NO_RESUMED
:
4383 case TARGET_WAITKIND_SIGNALLED
:
4384 case TARGET_WAITKIND_EXITED
:
4385 /* We shouldn't see these, but if we do, just ignore. */
4387 fprintf_unfiltered (gdb_stdlog
, "remote: event ignored\n");
4391 case TARGET_WAITKIND_EXECD
:
4392 xfree (ws
.value
.execd_pathname
);
4401 struct thread_info
*evthread
= find_thread_ptid (event_ptid
);
4403 if (ws
.kind
== TARGET_WAITKIND_STOPPED
)
4405 enum gdb_signal sig
= ws
.value
.sig
;
4407 /* Stubs traditionally report SIGTRAP as initial signal,
4408 instead of signal 0. Suppress it. */
4409 if (sig
== GDB_SIGNAL_TRAP
)
4411 evthread
->suspend
.stop_signal
= sig
;
4415 evthread
->suspend
.waitstatus
= ws
;
4417 if (ws
.kind
!= TARGET_WAITKIND_STOPPED
4418 || ws
.value
.sig
!= GDB_SIGNAL_0
)
4419 evthread
->suspend
.waitstatus_pending_p
= 1;
4421 set_executing (event_ptid
, 0);
4422 set_running (event_ptid
, 0);
4423 get_remote_thread_info (evthread
)->vcont_resumed
= 0;
4426 /* "Notice" the new inferiors before anything related to
4427 registers/memory. */
4428 for (inferior
*inf
: all_non_exited_inferiors ())
4430 inf
->needs_setup
= 1;
4434 thread_info
*thread
= any_live_thread_of_inferior (inf
);
4435 notice_new_inferior (thread
, thread
->state
== THREAD_RUNNING
,
4440 /* If all-stop on top of non-stop, pause all threads. Note this
4441 records the threads' stop pc, so must be done after "noticing"
4445 stop_all_threads ();
4447 /* If all threads of an inferior were already stopped, we
4448 haven't setup the inferior yet. */
4449 for (inferior
*inf
: all_non_exited_inferiors ())
4451 if (inf
->needs_setup
)
4453 thread_info
*thread
= any_live_thread_of_inferior (inf
);
4454 switch_to_thread_no_regs (thread
);
4460 /* Now go over all threads that are stopped, and print their current
4461 frame. If all-stop, then if there's a signalled thread, pick
4463 for (thread_info
*thread
: all_non_exited_threads ())
4469 thread
->set_running (false);
4470 else if (thread
->state
!= THREAD_STOPPED
)
4473 if (selected
== NULL
4474 && thread
->suspend
.waitstatus_pending_p
)
4477 if (lowest_stopped
== NULL
4478 || thread
->inf
->num
< lowest_stopped
->inf
->num
4479 || thread
->per_inf_num
< lowest_stopped
->per_inf_num
)
4480 lowest_stopped
= thread
;
4483 print_one_stopped_thread (thread
);
4486 /* In all-stop, we only print the status of one thread, and leave
4487 others with their status pending. */
4490 thread_info
*thread
= selected
;
4492 thread
= lowest_stopped
;
4496 print_one_stopped_thread (thread
);
4499 /* For "info program". */
4500 thread_info
*thread
= inferior_thread ();
4501 if (thread
->state
== THREAD_STOPPED
)
4502 set_last_target_status (inferior_ptid
, thread
->suspend
.waitstatus
);
4505 /* Start the remote connection and sync state. */
4508 remote_target::start_remote (int from_tty
, int extended_p
)
4510 struct remote_state
*rs
= get_remote_state ();
4511 struct packet_config
*noack_config
;
4512 char *wait_status
= NULL
;
4514 /* Signal other parts that we're going through the initial setup,
4515 and so things may not be stable yet. E.g., we don't try to
4516 install tracepoints until we've relocated symbols. Also, a
4517 Ctrl-C before we're connected and synced up can't interrupt the
4518 target. Instead, it offers to drop the (potentially wedged)
4520 rs
->starting_up
= 1;
4524 if (interrupt_on_connect
)
4525 send_interrupt_sequence ();
4527 /* Ack any packet which the remote side has already sent. */
4528 remote_serial_write ("+", 1);
4530 /* The first packet we send to the target is the optional "supported
4531 packets" request. If the target can answer this, it will tell us
4532 which later probes to skip. */
4533 remote_query_supported ();
4535 /* If the stub wants to get a QAllow, compose one and send it. */
4536 if (packet_support (PACKET_QAllow
) != PACKET_DISABLE
)
4539 /* gdbserver < 7.7 (before its fix from 2013-12-11) did reply to any
4540 unknown 'v' packet with string "OK". "OK" gets interpreted by GDB
4541 as a reply to known packet. For packet "vFile:setfs:" it is an
4542 invalid reply and GDB would return error in
4543 remote_hostio_set_filesystem, making remote files access impossible.
4544 Disable "vFile:setfs:" in such case. Do not disable other 'v' packets as
4545 other "vFile" packets get correctly detected even on gdbserver < 7.7. */
4547 const char v_mustreplyempty
[] = "vMustReplyEmpty";
4549 putpkt (v_mustreplyempty
);
4550 getpkt (&rs
->buf
, 0);
4551 if (strcmp (rs
->buf
.data (), "OK") == 0)
4552 remote_protocol_packets
[PACKET_vFile_setfs
].support
= PACKET_DISABLE
;
4553 else if (strcmp (rs
->buf
.data (), "") != 0)
4554 error (_("Remote replied unexpectedly to '%s': %s"), v_mustreplyempty
,
4558 /* Next, we possibly activate noack mode.
4560 If the QStartNoAckMode packet configuration is set to AUTO,
4561 enable noack mode if the stub reported a wish for it with
4564 If set to TRUE, then enable noack mode even if the stub didn't
4565 report it in qSupported. If the stub doesn't reply OK, the
4566 session ends with an error.
4568 If FALSE, then don't activate noack mode, regardless of what the
4569 stub claimed should be the default with qSupported. */
4571 noack_config
= &remote_protocol_packets
[PACKET_QStartNoAckMode
];
4572 if (packet_config_support (noack_config
) != PACKET_DISABLE
)
4574 putpkt ("QStartNoAckMode");
4575 getpkt (&rs
->buf
, 0);
4576 if (packet_ok (rs
->buf
, noack_config
) == PACKET_OK
)
4582 /* Tell the remote that we are using the extended protocol. */
4584 getpkt (&rs
->buf
, 0);
4587 /* Let the target know which signals it is allowed to pass down to
4589 update_signals_program_target ();
4591 /* Next, if the target can specify a description, read it. We do
4592 this before anything involving memory or registers. */
4593 target_find_description ();
4595 /* Next, now that we know something about the target, update the
4596 address spaces in the program spaces. */
4597 update_address_spaces ();
4599 /* On OSs where the list of libraries is global to all
4600 processes, we fetch them early. */
4601 if (gdbarch_has_global_solist (target_gdbarch ()))
4602 solib_add (NULL
, from_tty
, auto_solib_add
);
4604 if (target_is_non_stop_p ())
4606 if (packet_support (PACKET_QNonStop
) != PACKET_ENABLE
)
4607 error (_("Non-stop mode requested, but remote "
4608 "does not support non-stop"));
4610 putpkt ("QNonStop:1");
4611 getpkt (&rs
->buf
, 0);
4613 if (strcmp (rs
->buf
.data (), "OK") != 0)
4614 error (_("Remote refused setting non-stop mode with: %s"),
4617 /* Find about threads and processes the stub is already
4618 controlling. We default to adding them in the running state.
4619 The '?' query below will then tell us about which threads are
4621 this->update_thread_list ();
4623 else if (packet_support (PACKET_QNonStop
) == PACKET_ENABLE
)
4625 /* Don't assume that the stub can operate in all-stop mode.
4626 Request it explicitly. */
4627 putpkt ("QNonStop:0");
4628 getpkt (&rs
->buf
, 0);
4630 if (strcmp (rs
->buf
.data (), "OK") != 0)
4631 error (_("Remote refused setting all-stop mode with: %s"),
4635 /* Upload TSVs regardless of whether the target is running or not. The
4636 remote stub, such as GDBserver, may have some predefined or builtin
4637 TSVs, even if the target is not running. */
4638 if (get_trace_status (current_trace_status ()) != -1)
4640 struct uploaded_tsv
*uploaded_tsvs
= NULL
;
4642 upload_trace_state_variables (&uploaded_tsvs
);
4643 merge_uploaded_trace_state_variables (&uploaded_tsvs
);
4646 /* Check whether the target is running now. */
4648 getpkt (&rs
->buf
, 0);
4650 if (!target_is_non_stop_p ())
4652 if (rs
->buf
[0] == 'W' || rs
->buf
[0] == 'X')
4655 error (_("The target is not running (try extended-remote?)"));
4657 /* We're connected, but not running. Drop out before we
4658 call start_remote. */
4659 rs
->starting_up
= 0;
4664 /* Save the reply for later. */
4665 wait_status
= (char *) alloca (strlen (rs
->buf
.data ()) + 1);
4666 strcpy (wait_status
, rs
->buf
.data ());
4669 /* Fetch thread list. */
4670 target_update_thread_list ();
4672 /* Let the stub know that we want it to return the thread. */
4673 set_continue_thread (minus_one_ptid
);
4675 if (thread_count () == 0)
4677 /* Target has no concept of threads at all. GDB treats
4678 non-threaded target as single-threaded; add a main
4680 add_current_inferior_and_thread (wait_status
);
4684 /* We have thread information; select the thread the target
4685 says should be current. If we're reconnecting to a
4686 multi-threaded program, this will ideally be the thread
4687 that last reported an event before GDB disconnected. */
4688 inferior_ptid
= get_current_thread (wait_status
);
4689 if (inferior_ptid
== null_ptid
)
4691 /* Odd... The target was able to list threads, but not
4692 tell us which thread was current (no "thread"
4693 register in T stop reply?). Just pick the first
4694 thread in the thread list then. */
4697 fprintf_unfiltered (gdb_stdlog
,
4698 "warning: couldn't determine remote "
4699 "current thread; picking first in list.\n");
4701 inferior_ptid
= inferior_list
->thread_list
->ptid
;
4705 /* init_wait_for_inferior should be called before get_offsets in order
4706 to manage `inserted' flag in bp loc in a correct state.
4707 breakpoint_init_inferior, called from init_wait_for_inferior, set
4708 `inserted' flag to 0, while before breakpoint_re_set, called from
4709 start_remote, set `inserted' flag to 1. In the initialization of
4710 inferior, breakpoint_init_inferior should be called first, and then
4711 breakpoint_re_set can be called. If this order is broken, state of
4712 `inserted' flag is wrong, and cause some problems on breakpoint
4714 init_wait_for_inferior ();
4716 get_offsets (); /* Get text, data & bss offsets. */
4718 /* If we could not find a description using qXfer, and we know
4719 how to do it some other way, try again. This is not
4720 supported for non-stop; it could be, but it is tricky if
4721 there are no stopped threads when we connect. */
4722 if (remote_read_description_p (this)
4723 && gdbarch_target_desc (target_gdbarch ()) == NULL
)
4725 target_clear_description ();
4726 target_find_description ();
4729 /* Use the previously fetched status. */
4730 gdb_assert (wait_status
!= NULL
);
4731 strcpy (rs
->buf
.data (), wait_status
);
4732 rs
->cached_wait_status
= 1;
4734 ::start_remote (from_tty
); /* Initialize gdb process mechanisms. */
4738 /* Clear WFI global state. Do this before finding about new
4739 threads and inferiors, and setting the current inferior.
4740 Otherwise we would clear the proceed status of the current
4741 inferior when we want its stop_soon state to be preserved
4742 (see notice_new_inferior). */
4743 init_wait_for_inferior ();
4745 /* In non-stop, we will either get an "OK", meaning that there
4746 are no stopped threads at this time; or, a regular stop
4747 reply. In the latter case, there may be more than one thread
4748 stopped --- we pull them all out using the vStopped
4750 if (strcmp (rs
->buf
.data (), "OK") != 0)
4752 struct notif_client
*notif
= ¬if_client_stop
;
4754 /* remote_notif_get_pending_replies acks this one, and gets
4756 rs
->notif_state
->pending_event
[notif_client_stop
.id
]
4757 = remote_notif_parse (this, notif
, rs
->buf
.data ());
4758 remote_notif_get_pending_events (notif
);
4761 if (thread_count () == 0)
4764 error (_("The target is not running (try extended-remote?)"));
4766 /* We're connected, but not running. Drop out before we
4767 call start_remote. */
4768 rs
->starting_up
= 0;
4772 /* In non-stop mode, any cached wait status will be stored in
4773 the stop reply queue. */
4774 gdb_assert (wait_status
== NULL
);
4776 /* Report all signals during attach/startup. */
4779 /* If there are already stopped threads, mark them stopped and
4780 report their stops before giving the prompt to the user. */
4781 process_initial_stop_replies (from_tty
);
4783 if (target_can_async_p ())
4787 /* If we connected to a live target, do some additional setup. */
4788 if (target_has_execution
)
4790 if (symfile_objfile
) /* No use without a symbol-file. */
4791 remote_check_symbols ();
4794 /* Possibly the target has been engaged in a trace run started
4795 previously; find out where things are at. */
4796 if (get_trace_status (current_trace_status ()) != -1)
4798 struct uploaded_tp
*uploaded_tps
= NULL
;
4800 if (current_trace_status ()->running
)
4801 printf_filtered (_("Trace is already running on the target.\n"));
4803 upload_tracepoints (&uploaded_tps
);
4805 merge_uploaded_tracepoints (&uploaded_tps
);
4808 /* Possibly the target has been engaged in a btrace record started
4809 previously; find out where things are at. */
4810 remote_btrace_maybe_reopen ();
4812 /* The thread and inferior lists are now synchronized with the
4813 target, our symbols have been relocated, and we're merged the
4814 target's tracepoints with ours. We're done with basic start
4816 rs
->starting_up
= 0;
4818 /* Maybe breakpoints are global and need to be inserted now. */
4819 if (breakpoints_should_be_inserted_now ())
4820 insert_breakpoints ();
4823 /* Open a connection to a remote debugger.
4824 NAME is the filename used for communication. */
4827 remote_target::open (const char *name
, int from_tty
)
4829 open_1 (name
, from_tty
, 0);
4832 /* Open a connection to a remote debugger using the extended
4833 remote gdb protocol. NAME is the filename used for communication. */
4836 extended_remote_target::open (const char *name
, int from_tty
)
4838 open_1 (name
, from_tty
, 1 /*extended_p */);
4841 /* Reset all packets back to "unknown support". Called when opening a
4842 new connection to a remote target. */
4845 reset_all_packet_configs_support (void)
4849 for (i
= 0; i
< PACKET_MAX
; i
++)
4850 remote_protocol_packets
[i
].support
= PACKET_SUPPORT_UNKNOWN
;
4853 /* Initialize all packet configs. */
4856 init_all_packet_configs (void)
4860 for (i
= 0; i
< PACKET_MAX
; i
++)
4862 remote_protocol_packets
[i
].detect
= AUTO_BOOLEAN_AUTO
;
4863 remote_protocol_packets
[i
].support
= PACKET_SUPPORT_UNKNOWN
;
4867 /* Symbol look-up. */
4870 remote_target::remote_check_symbols ()
4875 /* The remote side has no concept of inferiors that aren't running
4876 yet, it only knows about running processes. If we're connected
4877 but our current inferior is not running, we should not invite the
4878 remote target to request symbol lookups related to its
4879 (unrelated) current process. */
4880 if (!target_has_execution
)
4883 if (packet_support (PACKET_qSymbol
) == PACKET_DISABLE
)
4886 /* Make sure the remote is pointing at the right process. Note
4887 there's no way to select "no process". */
4888 set_general_process ();
4890 /* Allocate a message buffer. We can't reuse the input buffer in RS,
4891 because we need both at the same time. */
4892 gdb::char_vector
msg (get_remote_packet_size ());
4893 gdb::char_vector
reply (get_remote_packet_size ());
4895 /* Invite target to request symbol lookups. */
4897 putpkt ("qSymbol::");
4899 packet_ok (reply
, &remote_protocol_packets
[PACKET_qSymbol
]);
4901 while (startswith (reply
.data (), "qSymbol:"))
4903 struct bound_minimal_symbol sym
;
4906 end
= hex2bin (tmp
, reinterpret_cast <gdb_byte
*> (msg
.data ()),
4909 sym
= lookup_minimal_symbol (msg
.data (), NULL
, NULL
);
4910 if (sym
.minsym
== NULL
)
4911 xsnprintf (msg
.data (), get_remote_packet_size (), "qSymbol::%s",
4915 int addr_size
= gdbarch_addr_bit (target_gdbarch ()) / 8;
4916 CORE_ADDR sym_addr
= BMSYMBOL_VALUE_ADDRESS (sym
);
4918 /* If this is a function address, return the start of code
4919 instead of any data function descriptor. */
4920 sym_addr
= gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
4922 current_top_target ());
4924 xsnprintf (msg
.data (), get_remote_packet_size (), "qSymbol:%s:%s",
4925 phex_nz (sym_addr
, addr_size
), &reply
[8]);
4928 putpkt (msg
.data ());
4933 static struct serial
*
4934 remote_serial_open (const char *name
)
4936 static int udp_warning
= 0;
4938 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
4939 of in ser-tcp.c, because it is the remote protocol assuming that the
4940 serial connection is reliable and not the serial connection promising
4942 if (!udp_warning
&& startswith (name
, "udp:"))
4944 warning (_("The remote protocol may be unreliable over UDP.\n"
4945 "Some events may be lost, rendering further debugging "
4950 return serial_open (name
);
4953 /* Inform the target of our permission settings. The permission flags
4954 work without this, but if the target knows the settings, it can do
4955 a couple things. First, it can add its own check, to catch cases
4956 that somehow manage to get by the permissions checks in target
4957 methods. Second, if the target is wired to disallow particular
4958 settings (for instance, a system in the field that is not set up to
4959 be able to stop at a breakpoint), it can object to any unavailable
4963 remote_target::set_permissions ()
4965 struct remote_state
*rs
= get_remote_state ();
4967 xsnprintf (rs
->buf
.data (), get_remote_packet_size (), "QAllow:"
4968 "WriteReg:%x;WriteMem:%x;"
4969 "InsertBreak:%x;InsertTrace:%x;"
4970 "InsertFastTrace:%x;Stop:%x",
4971 may_write_registers
, may_write_memory
,
4972 may_insert_breakpoints
, may_insert_tracepoints
,
4973 may_insert_fast_tracepoints
, may_stop
);
4975 getpkt (&rs
->buf
, 0);
4977 /* If the target didn't like the packet, warn the user. Do not try
4978 to undo the user's settings, that would just be maddening. */
4979 if (strcmp (rs
->buf
.data (), "OK") != 0)
4980 warning (_("Remote refused setting permissions with: %s"),
4984 /* This type describes each known response to the qSupported
4986 struct protocol_feature
4988 /* The name of this protocol feature. */
4991 /* The default for this protocol feature. */
4992 enum packet_support default_support
;
4994 /* The function to call when this feature is reported, or after
4995 qSupported processing if the feature is not supported.
4996 The first argument points to this structure. The second
4997 argument indicates whether the packet requested support be
4998 enabled, disabled, or probed (or the default, if this function
4999 is being called at the end of processing and this feature was
5000 not reported). The third argument may be NULL; if not NULL, it
5001 is a NUL-terminated string taken from the packet following
5002 this feature's name and an equals sign. */
5003 void (*func
) (remote_target
*remote
, const struct protocol_feature
*,
5004 enum packet_support
, const char *);
5006 /* The corresponding packet for this feature. Only used if
5007 FUNC is remote_supported_packet. */
5012 remote_supported_packet (remote_target
*remote
,
5013 const struct protocol_feature
*feature
,
5014 enum packet_support support
,
5015 const char *argument
)
5019 warning (_("Remote qSupported response supplied an unexpected value for"
5020 " \"%s\"."), feature
->name
);
5024 remote_protocol_packets
[feature
->packet
].support
= support
;
5028 remote_target::remote_packet_size (const protocol_feature
*feature
,
5029 enum packet_support support
, const char *value
)
5031 struct remote_state
*rs
= get_remote_state ();
5036 if (support
!= PACKET_ENABLE
)
5039 if (value
== NULL
|| *value
== '\0')
5041 warning (_("Remote target reported \"%s\" without a size."),
5047 packet_size
= strtol (value
, &value_end
, 16);
5048 if (errno
!= 0 || *value_end
!= '\0' || packet_size
< 0)
5050 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
5051 feature
->name
, value
);
5055 /* Record the new maximum packet size. */
5056 rs
->explicit_packet_size
= packet_size
;
5060 remote_packet_size (remote_target
*remote
, const protocol_feature
*feature
,
5061 enum packet_support support
, const char *value
)
5063 remote
->remote_packet_size (feature
, support
, value
);
5066 static const struct protocol_feature remote_protocol_features
[] = {
5067 { "PacketSize", PACKET_DISABLE
, remote_packet_size
, -1 },
5068 { "qXfer:auxv:read", PACKET_DISABLE
, remote_supported_packet
,
5069 PACKET_qXfer_auxv
},
5070 { "qXfer:exec-file:read", PACKET_DISABLE
, remote_supported_packet
,
5071 PACKET_qXfer_exec_file
},
5072 { "qXfer:features:read", PACKET_DISABLE
, remote_supported_packet
,
5073 PACKET_qXfer_features
},
5074 { "qXfer:libraries:read", PACKET_DISABLE
, remote_supported_packet
,
5075 PACKET_qXfer_libraries
},
5076 { "qXfer:libraries-svr4:read", PACKET_DISABLE
, remote_supported_packet
,
5077 PACKET_qXfer_libraries_svr4
},
5078 { "augmented-libraries-svr4-read", PACKET_DISABLE
,
5079 remote_supported_packet
, PACKET_augmented_libraries_svr4_read_feature
},
5080 { "qXfer:memory-map:read", PACKET_DISABLE
, remote_supported_packet
,
5081 PACKET_qXfer_memory_map
},
5082 { "qXfer:osdata:read", PACKET_DISABLE
, remote_supported_packet
,
5083 PACKET_qXfer_osdata
},
5084 { "qXfer:threads:read", PACKET_DISABLE
, remote_supported_packet
,
5085 PACKET_qXfer_threads
},
5086 { "qXfer:traceframe-info:read", PACKET_DISABLE
, remote_supported_packet
,
5087 PACKET_qXfer_traceframe_info
},
5088 { "QPassSignals", PACKET_DISABLE
, remote_supported_packet
,
5089 PACKET_QPassSignals
},
5090 { "QCatchSyscalls", PACKET_DISABLE
, remote_supported_packet
,
5091 PACKET_QCatchSyscalls
},
5092 { "QProgramSignals", PACKET_DISABLE
, remote_supported_packet
,
5093 PACKET_QProgramSignals
},
5094 { "QSetWorkingDir", PACKET_DISABLE
, remote_supported_packet
,
5095 PACKET_QSetWorkingDir
},
5096 { "QStartupWithShell", PACKET_DISABLE
, remote_supported_packet
,
5097 PACKET_QStartupWithShell
},
5098 { "QEnvironmentHexEncoded", PACKET_DISABLE
, remote_supported_packet
,
5099 PACKET_QEnvironmentHexEncoded
},
5100 { "QEnvironmentReset", PACKET_DISABLE
, remote_supported_packet
,
5101 PACKET_QEnvironmentReset
},
5102 { "QEnvironmentUnset", PACKET_DISABLE
, remote_supported_packet
,
5103 PACKET_QEnvironmentUnset
},
5104 { "QStartNoAckMode", PACKET_DISABLE
, remote_supported_packet
,
5105 PACKET_QStartNoAckMode
},
5106 { "multiprocess", PACKET_DISABLE
, remote_supported_packet
,
5107 PACKET_multiprocess_feature
},
5108 { "QNonStop", PACKET_DISABLE
, remote_supported_packet
, PACKET_QNonStop
},
5109 { "qXfer:siginfo:read", PACKET_DISABLE
, remote_supported_packet
,
5110 PACKET_qXfer_siginfo_read
},
5111 { "qXfer:siginfo:write", PACKET_DISABLE
, remote_supported_packet
,
5112 PACKET_qXfer_siginfo_write
},
5113 { "ConditionalTracepoints", PACKET_DISABLE
, remote_supported_packet
,
5114 PACKET_ConditionalTracepoints
},
5115 { "ConditionalBreakpoints", PACKET_DISABLE
, remote_supported_packet
,
5116 PACKET_ConditionalBreakpoints
},
5117 { "BreakpointCommands", PACKET_DISABLE
, remote_supported_packet
,
5118 PACKET_BreakpointCommands
},
5119 { "FastTracepoints", PACKET_DISABLE
, remote_supported_packet
,
5120 PACKET_FastTracepoints
},
5121 { "StaticTracepoints", PACKET_DISABLE
, remote_supported_packet
,
5122 PACKET_StaticTracepoints
},
5123 {"InstallInTrace", PACKET_DISABLE
, remote_supported_packet
,
5124 PACKET_InstallInTrace
},
5125 { "DisconnectedTracing", PACKET_DISABLE
, remote_supported_packet
,
5126 PACKET_DisconnectedTracing_feature
},
5127 { "ReverseContinue", PACKET_DISABLE
, remote_supported_packet
,
5129 { "ReverseStep", PACKET_DISABLE
, remote_supported_packet
,
5131 { "TracepointSource", PACKET_DISABLE
, remote_supported_packet
,
5132 PACKET_TracepointSource
},
5133 { "QAllow", PACKET_DISABLE
, remote_supported_packet
,
5135 { "EnableDisableTracepoints", PACKET_DISABLE
, remote_supported_packet
,
5136 PACKET_EnableDisableTracepoints_feature
},
5137 { "qXfer:fdpic:read", PACKET_DISABLE
, remote_supported_packet
,
5138 PACKET_qXfer_fdpic
},
5139 { "qXfer:uib:read", PACKET_DISABLE
, remote_supported_packet
,
5141 { "QDisableRandomization", PACKET_DISABLE
, remote_supported_packet
,
5142 PACKET_QDisableRandomization
},
5143 { "QAgent", PACKET_DISABLE
, remote_supported_packet
, PACKET_QAgent
},
5144 { "QTBuffer:size", PACKET_DISABLE
,
5145 remote_supported_packet
, PACKET_QTBuffer_size
},
5146 { "tracenz", PACKET_DISABLE
, remote_supported_packet
, PACKET_tracenz_feature
},
5147 { "Qbtrace:off", PACKET_DISABLE
, remote_supported_packet
, PACKET_Qbtrace_off
},
5148 { "Qbtrace:bts", PACKET_DISABLE
, remote_supported_packet
, PACKET_Qbtrace_bts
},
5149 { "Qbtrace:pt", PACKET_DISABLE
, remote_supported_packet
, PACKET_Qbtrace_pt
},
5150 { "qXfer:btrace:read", PACKET_DISABLE
, remote_supported_packet
,
5151 PACKET_qXfer_btrace
},
5152 { "qXfer:btrace-conf:read", PACKET_DISABLE
, remote_supported_packet
,
5153 PACKET_qXfer_btrace_conf
},
5154 { "Qbtrace-conf:bts:size", PACKET_DISABLE
, remote_supported_packet
,
5155 PACKET_Qbtrace_conf_bts_size
},
5156 { "swbreak", PACKET_DISABLE
, remote_supported_packet
, PACKET_swbreak_feature
},
5157 { "hwbreak", PACKET_DISABLE
, remote_supported_packet
, PACKET_hwbreak_feature
},
5158 { "fork-events", PACKET_DISABLE
, remote_supported_packet
,
5159 PACKET_fork_event_feature
},
5160 { "vfork-events", PACKET_DISABLE
, remote_supported_packet
,
5161 PACKET_vfork_event_feature
},
5162 { "exec-events", PACKET_DISABLE
, remote_supported_packet
,
5163 PACKET_exec_event_feature
},
5164 { "Qbtrace-conf:pt:size", PACKET_DISABLE
, remote_supported_packet
,
5165 PACKET_Qbtrace_conf_pt_size
},
5166 { "vContSupported", PACKET_DISABLE
, remote_supported_packet
, PACKET_vContSupported
},
5167 { "QThreadEvents", PACKET_DISABLE
, remote_supported_packet
, PACKET_QThreadEvents
},
5168 { "no-resumed", PACKET_DISABLE
, remote_supported_packet
, PACKET_no_resumed
},
5171 static char *remote_support_xml
;
5173 /* Register string appended to "xmlRegisters=" in qSupported query. */
5176 register_remote_support_xml (const char *xml
)
5178 #if defined(HAVE_LIBEXPAT)
5179 if (remote_support_xml
== NULL
)
5180 remote_support_xml
= concat ("xmlRegisters=", xml
, (char *) NULL
);
5183 char *copy
= xstrdup (remote_support_xml
+ 13);
5185 char *p
= strtok_r (copy
, ",", &saveptr
);
5189 if (strcmp (p
, xml
) == 0)
5196 while ((p
= strtok_r (NULL
, ",", &saveptr
)) != NULL
);
5199 remote_support_xml
= reconcat (remote_support_xml
,
5200 remote_support_xml
, ",", xml
,
5207 remote_query_supported_append (std::string
*msg
, const char *append
)
5211 msg
->append (append
);
5215 remote_target::remote_query_supported ()
5217 struct remote_state
*rs
= get_remote_state ();
5220 unsigned char seen
[ARRAY_SIZE (remote_protocol_features
)];
5222 /* The packet support flags are handled differently for this packet
5223 than for most others. We treat an error, a disabled packet, and
5224 an empty response identically: any features which must be reported
5225 to be used will be automatically disabled. An empty buffer
5226 accomplishes this, since that is also the representation for a list
5227 containing no features. */
5230 if (packet_support (PACKET_qSupported
) != PACKET_DISABLE
)
5234 if (packet_set_cmd_state (PACKET_multiprocess_feature
) != AUTO_BOOLEAN_FALSE
)
5235 remote_query_supported_append (&q
, "multiprocess+");
5237 if (packet_set_cmd_state (PACKET_swbreak_feature
) != AUTO_BOOLEAN_FALSE
)
5238 remote_query_supported_append (&q
, "swbreak+");
5239 if (packet_set_cmd_state (PACKET_hwbreak_feature
) != AUTO_BOOLEAN_FALSE
)
5240 remote_query_supported_append (&q
, "hwbreak+");
5242 remote_query_supported_append (&q
, "qRelocInsn+");
5244 if (packet_set_cmd_state (PACKET_fork_event_feature
)
5245 != AUTO_BOOLEAN_FALSE
)
5246 remote_query_supported_append (&q
, "fork-events+");
5247 if (packet_set_cmd_state (PACKET_vfork_event_feature
)
5248 != AUTO_BOOLEAN_FALSE
)
5249 remote_query_supported_append (&q
, "vfork-events+");
5250 if (packet_set_cmd_state (PACKET_exec_event_feature
)
5251 != AUTO_BOOLEAN_FALSE
)
5252 remote_query_supported_append (&q
, "exec-events+");
5254 if (packet_set_cmd_state (PACKET_vContSupported
) != AUTO_BOOLEAN_FALSE
)
5255 remote_query_supported_append (&q
, "vContSupported+");
5257 if (packet_set_cmd_state (PACKET_QThreadEvents
) != AUTO_BOOLEAN_FALSE
)
5258 remote_query_supported_append (&q
, "QThreadEvents+");
5260 if (packet_set_cmd_state (PACKET_no_resumed
) != AUTO_BOOLEAN_FALSE
)
5261 remote_query_supported_append (&q
, "no-resumed+");
5263 /* Keep this one last to work around a gdbserver <= 7.10 bug in
5264 the qSupported:xmlRegisters=i386 handling. */
5265 if (remote_support_xml
!= NULL
5266 && packet_support (PACKET_qXfer_features
) != PACKET_DISABLE
)
5267 remote_query_supported_append (&q
, remote_support_xml
);
5269 q
= "qSupported:" + q
;
5270 putpkt (q
.c_str ());
5272 getpkt (&rs
->buf
, 0);
5274 /* If an error occured, warn, but do not return - just reset the
5275 buffer to empty and go on to disable features. */
5276 if (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_qSupported
])
5279 warning (_("Remote failure reply: %s"), rs
->buf
.data ());
5284 memset (seen
, 0, sizeof (seen
));
5286 next
= rs
->buf
.data ();
5289 enum packet_support is_supported
;
5290 char *p
, *end
, *name_end
, *value
;
5292 /* First separate out this item from the rest of the packet. If
5293 there's another item after this, we overwrite the separator
5294 (terminated strings are much easier to work with). */
5296 end
= strchr (p
, ';');
5299 end
= p
+ strlen (p
);
5309 warning (_("empty item in \"qSupported\" response"));
5314 name_end
= strchr (p
, '=');
5317 /* This is a name=value entry. */
5318 is_supported
= PACKET_ENABLE
;
5319 value
= name_end
+ 1;
5328 is_supported
= PACKET_ENABLE
;
5332 is_supported
= PACKET_DISABLE
;
5336 is_supported
= PACKET_SUPPORT_UNKNOWN
;
5340 warning (_("unrecognized item \"%s\" "
5341 "in \"qSupported\" response"), p
);
5347 for (i
= 0; i
< ARRAY_SIZE (remote_protocol_features
); i
++)
5348 if (strcmp (remote_protocol_features
[i
].name
, p
) == 0)
5350 const struct protocol_feature
*feature
;
5353 feature
= &remote_protocol_features
[i
];
5354 feature
->func (this, feature
, is_supported
, value
);
5359 /* If we increased the packet size, make sure to increase the global
5360 buffer size also. We delay this until after parsing the entire
5361 qSupported packet, because this is the same buffer we were
5363 if (rs
->buf
.size () < rs
->explicit_packet_size
)
5364 rs
->buf
.resize (rs
->explicit_packet_size
);
5366 /* Handle the defaults for unmentioned features. */
5367 for (i
= 0; i
< ARRAY_SIZE (remote_protocol_features
); i
++)
5370 const struct protocol_feature
*feature
;
5372 feature
= &remote_protocol_features
[i
];
5373 feature
->func (this, feature
, feature
->default_support
, NULL
);
5377 /* Serial QUIT handler for the remote serial descriptor.
5379 Defers handling a Ctrl-C until we're done with the current
5380 command/response packet sequence, unless:
5382 - We're setting up the connection. Don't send a remote interrupt
5383 request, as we're not fully synced yet. Quit immediately
5386 - The target has been resumed in the foreground
5387 (target_terminal::is_ours is false) with a synchronous resume
5388 packet, and we're blocked waiting for the stop reply, thus a
5389 Ctrl-C should be immediately sent to the target.
5391 - We get a second Ctrl-C while still within the same serial read or
5392 write. In that case the serial is seemingly wedged --- offer to
5395 - We see a second Ctrl-C without target response, after having
5396 previously interrupted the target. In that case the target/stub
5397 is probably wedged --- offer to quit/disconnect.
5401 remote_target::remote_serial_quit_handler ()
5403 struct remote_state
*rs
= get_remote_state ();
5405 if (check_quit_flag ())
5407 /* If we're starting up, we're not fully synced yet. Quit
5409 if (rs
->starting_up
)
5411 else if (rs
->got_ctrlc_during_io
)
5413 if (query (_("The target is not responding to GDB commands.\n"
5414 "Stop debugging it? ")))
5415 remote_unpush_and_throw ();
5417 /* If ^C has already been sent once, offer to disconnect. */
5418 else if (!target_terminal::is_ours () && rs
->ctrlc_pending_p
)
5420 /* All-stop protocol, and blocked waiting for stop reply. Send
5421 an interrupt request. */
5422 else if (!target_terminal::is_ours () && rs
->waiting_for_stop_reply
)
5423 target_interrupt ();
5425 rs
->got_ctrlc_during_io
= 1;
5429 /* The remote_target that is current while the quit handler is
5430 overridden with remote_serial_quit_handler. */
5431 static remote_target
*curr_quit_handler_target
;
5434 remote_serial_quit_handler ()
5436 curr_quit_handler_target
->remote_serial_quit_handler ();
5439 /* Remove any of the remote.c targets from target stack. Upper targets depend
5440 on it so remove them first. */
5443 remote_unpush_target (void)
5445 pop_all_targets_at_and_above (process_stratum
);
5449 remote_unpush_and_throw (void)
5451 remote_unpush_target ();
5452 throw_error (TARGET_CLOSE_ERROR
, _("Disconnected from target."));
5456 remote_target::open_1 (const char *name
, int from_tty
, int extended_p
)
5458 remote_target
*curr_remote
= get_current_remote_target ();
5461 error (_("To open a remote debug connection, you need to specify what\n"
5462 "serial device is attached to the remote system\n"
5463 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
5465 /* If we're connected to a running target, target_preopen will kill it.
5466 Ask this question first, before target_preopen has a chance to kill
5468 if (curr_remote
!= NULL
&& !have_inferiors ())
5471 && !query (_("Already connected to a remote target. Disconnect? ")))
5472 error (_("Still connected."));
5475 /* Here the possibly existing remote target gets unpushed. */
5476 target_preopen (from_tty
);
5478 remote_fileio_reset ();
5479 reopen_exec_file ();
5482 remote_target
*remote
5483 = (extended_p
? new extended_remote_target () : new remote_target ());
5484 target_ops_up
target_holder (remote
);
5486 remote_state
*rs
= remote
->get_remote_state ();
5488 /* See FIXME above. */
5489 if (!target_async_permitted
)
5490 rs
->wait_forever_enabled_p
= 1;
5492 rs
->remote_desc
= remote_serial_open (name
);
5493 if (!rs
->remote_desc
)
5494 perror_with_name (name
);
5496 if (baud_rate
!= -1)
5498 if (serial_setbaudrate (rs
->remote_desc
, baud_rate
))
5500 /* The requested speed could not be set. Error out to
5501 top level after closing remote_desc. Take care to
5502 set remote_desc to NULL to avoid closing remote_desc
5504 serial_close (rs
->remote_desc
);
5505 rs
->remote_desc
= NULL
;
5506 perror_with_name (name
);
5510 serial_setparity (rs
->remote_desc
, serial_parity
);
5511 serial_raw (rs
->remote_desc
);
5513 /* If there is something sitting in the buffer we might take it as a
5514 response to a command, which would be bad. */
5515 serial_flush_input (rs
->remote_desc
);
5519 puts_filtered ("Remote debugging using ");
5520 puts_filtered (name
);
5521 puts_filtered ("\n");
5524 /* Switch to using the remote target now. */
5525 push_target (std::move (target_holder
));
5527 /* Register extra event sources in the event loop. */
5528 rs
->remote_async_inferior_event_token
5529 = create_async_event_handler (remote_async_inferior_event_handler
,
5531 rs
->notif_state
= remote_notif_state_allocate (remote
);
5533 /* Reset the target state; these things will be queried either by
5534 remote_query_supported or as they are needed. */
5535 reset_all_packet_configs_support ();
5536 rs
->cached_wait_status
= 0;
5537 rs
->explicit_packet_size
= 0;
5539 rs
->extended
= extended_p
;
5540 rs
->waiting_for_stop_reply
= 0;
5541 rs
->ctrlc_pending_p
= 0;
5542 rs
->got_ctrlc_during_io
= 0;
5544 rs
->general_thread
= not_sent_ptid
;
5545 rs
->continue_thread
= not_sent_ptid
;
5546 rs
->remote_traceframe_number
= -1;
5548 rs
->last_resume_exec_dir
= EXEC_FORWARD
;
5550 /* Probe for ability to use "ThreadInfo" query, as required. */
5551 rs
->use_threadinfo_query
= 1;
5552 rs
->use_threadextra_query
= 1;
5554 rs
->readahead_cache
.invalidate ();
5556 if (target_async_permitted
)
5558 /* FIXME: cagney/1999-09-23: During the initial connection it is
5559 assumed that the target is already ready and able to respond to
5560 requests. Unfortunately remote_start_remote() eventually calls
5561 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
5562 around this. Eventually a mechanism that allows
5563 wait_for_inferior() to expect/get timeouts will be
5565 rs
->wait_forever_enabled_p
= 0;
5568 /* First delete any symbols previously loaded from shared libraries. */
5569 no_shared_libraries (NULL
, 0);
5571 /* Start the remote connection. If error() or QUIT, discard this
5572 target (we'd otherwise be in an inconsistent state) and then
5573 propogate the error on up the exception chain. This ensures that
5574 the caller doesn't stumble along blindly assuming that the
5575 function succeeded. The CLI doesn't have this problem but other
5576 UI's, such as MI do.
5578 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
5579 this function should return an error indication letting the
5580 caller restore the previous state. Unfortunately the command
5581 ``target remote'' is directly wired to this function making that
5582 impossible. On a positive note, the CLI side of this problem has
5583 been fixed - the function set_cmd_context() makes it possible for
5584 all the ``target ....'' commands to share a common callback
5585 function. See cli-dump.c. */
5590 remote
->start_remote (from_tty
, extended_p
);
5592 catch (const gdb_exception
&ex
)
5594 /* Pop the partially set up target - unless something else did
5595 already before throwing the exception. */
5596 if (ex
.error
!= TARGET_CLOSE_ERROR
)
5597 remote_unpush_target ();
5602 remote_btrace_reset (rs
);
5604 if (target_async_permitted
)
5605 rs
->wait_forever_enabled_p
= 1;
5608 /* Detach the specified process. */
5611 remote_target::remote_detach_pid (int pid
)
5613 struct remote_state
*rs
= get_remote_state ();
5615 /* This should not be necessary, but the handling for D;PID in
5616 GDBserver versions prior to 8.2 incorrectly assumes that the
5617 selected process points to the same process we're detaching,
5618 leading to misbehavior (and possibly GDBserver crashing) when it
5619 does not. Since it's easy and cheap, work around it by forcing
5620 GDBserver to select GDB's current process. */
5621 set_general_process ();
5623 if (remote_multi_process_p (rs
))
5624 xsnprintf (rs
->buf
.data (), get_remote_packet_size (), "D;%x", pid
);
5626 strcpy (rs
->buf
.data (), "D");
5629 getpkt (&rs
->buf
, 0);
5631 if (rs
->buf
[0] == 'O' && rs
->buf
[1] == 'K')
5633 else if (rs
->buf
[0] == '\0')
5634 error (_("Remote doesn't know how to detach"));
5636 error (_("Can't detach process."));
5639 /* This detaches a program to which we previously attached, using
5640 inferior_ptid to identify the process. After this is done, GDB
5641 can be used to debug some other program. We better not have left
5642 any breakpoints in the target program or it'll die when it hits
5646 remote_target::remote_detach_1 (inferior
*inf
, int from_tty
)
5648 int pid
= inferior_ptid
.pid ();
5649 struct remote_state
*rs
= get_remote_state ();
5652 if (!target_has_execution
)
5653 error (_("No process to detach from."));
5655 target_announce_detach (from_tty
);
5657 /* Tell the remote target to detach. */
5658 remote_detach_pid (pid
);
5660 /* Exit only if this is the only active inferior. */
5661 if (from_tty
&& !rs
->extended
&& number_of_live_inferiors () == 1)
5662 puts_filtered (_("Ending remote debugging.\n"));
5664 struct thread_info
*tp
= find_thread_ptid (inferior_ptid
);
5666 /* Check to see if we are detaching a fork parent. Note that if we
5667 are detaching a fork child, tp == NULL. */
5668 is_fork_parent
= (tp
!= NULL
5669 && tp
->pending_follow
.kind
== TARGET_WAITKIND_FORKED
);
5671 /* If doing detach-on-fork, we don't mourn, because that will delete
5672 breakpoints that should be available for the followed inferior. */
5673 if (!is_fork_parent
)
5675 /* Save the pid as a string before mourning, since that will
5676 unpush the remote target, and we need the string after. */
5677 std::string infpid
= target_pid_to_str (ptid_t (pid
));
5679 target_mourn_inferior (inferior_ptid
);
5680 if (print_inferior_events
)
5681 printf_unfiltered (_("[Inferior %d (%s) detached]\n"),
5682 inf
->num
, infpid
.c_str ());
5686 inferior_ptid
= null_ptid
;
5687 detach_inferior (current_inferior ());
5692 remote_target::detach (inferior
*inf
, int from_tty
)
5694 remote_detach_1 (inf
, from_tty
);
5698 extended_remote_target::detach (inferior
*inf
, int from_tty
)
5700 remote_detach_1 (inf
, from_tty
);
5703 /* Target follow-fork function for remote targets. On entry, and
5704 at return, the current inferior is the fork parent.
5706 Note that although this is currently only used for extended-remote,
5707 it is named remote_follow_fork in anticipation of using it for the
5708 remote target as well. */
5711 remote_target::follow_fork (int follow_child
, int detach_fork
)
5713 struct remote_state
*rs
= get_remote_state ();
5714 enum target_waitkind kind
= inferior_thread ()->pending_follow
.kind
;
5716 if ((kind
== TARGET_WAITKIND_FORKED
&& remote_fork_event_p (rs
))
5717 || (kind
== TARGET_WAITKIND_VFORKED
&& remote_vfork_event_p (rs
)))
5719 /* When following the parent and detaching the child, we detach
5720 the child here. For the case of following the child and
5721 detaching the parent, the detach is done in the target-
5722 independent follow fork code in infrun.c. We can't use
5723 target_detach when detaching an unfollowed child because
5724 the client side doesn't know anything about the child. */
5725 if (detach_fork
&& !follow_child
)
5727 /* Detach the fork child. */
5731 child_ptid
= inferior_thread ()->pending_follow
.value
.related_pid
;
5732 child_pid
= child_ptid
.pid ();
5734 remote_detach_pid (child_pid
);
5740 /* Target follow-exec function for remote targets. Save EXECD_PATHNAME
5741 in the program space of the new inferior. On entry and at return the
5742 current inferior is the exec'ing inferior. INF is the new exec'd
5743 inferior, which may be the same as the exec'ing inferior unless
5744 follow-exec-mode is "new". */
5747 remote_target::follow_exec (struct inferior
*inf
, const char *execd_pathname
)
5749 /* We know that this is a target file name, so if it has the "target:"
5750 prefix we strip it off before saving it in the program space. */
5751 if (is_target_filename (execd_pathname
))
5752 execd_pathname
+= strlen (TARGET_SYSROOT_PREFIX
);
5754 set_pspace_remote_exec_file (inf
->pspace
, execd_pathname
);
5757 /* Same as remote_detach, but don't send the "D" packet; just disconnect. */
5760 remote_target::disconnect (const char *args
, int from_tty
)
5763 error (_("Argument given to \"disconnect\" when remotely debugging."));
5765 /* Make sure we unpush even the extended remote targets. Calling
5766 target_mourn_inferior won't unpush, and remote_mourn won't
5767 unpush if there is more than one inferior left. */
5768 unpush_target (this);
5769 generic_mourn_inferior ();
5772 puts_filtered ("Ending remote debugging.\n");
5775 /* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
5776 be chatty about it. */
5779 extended_remote_target::attach (const char *args
, int from_tty
)
5781 struct remote_state
*rs
= get_remote_state ();
5783 char *wait_status
= NULL
;
5785 pid
= parse_pid_to_attach (args
);
5787 /* Remote PID can be freely equal to getpid, do not check it here the same
5788 way as in other targets. */
5790 if (packet_support (PACKET_vAttach
) == PACKET_DISABLE
)
5791 error (_("This target does not support attaching to a process"));
5795 const char *exec_file
= get_exec_file (0);
5798 printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file
,
5799 target_pid_to_str (ptid_t (pid
)).c_str ());
5801 printf_unfiltered (_("Attaching to %s\n"),
5802 target_pid_to_str (ptid_t (pid
)).c_str ());
5805 xsnprintf (rs
->buf
.data (), get_remote_packet_size (), "vAttach;%x", pid
);
5807 getpkt (&rs
->buf
, 0);
5809 switch (packet_ok (rs
->buf
,
5810 &remote_protocol_packets
[PACKET_vAttach
]))
5813 if (!target_is_non_stop_p ())
5815 /* Save the reply for later. */
5816 wait_status
= (char *) alloca (strlen (rs
->buf
.data ()) + 1);
5817 strcpy (wait_status
, rs
->buf
.data ());
5819 else if (strcmp (rs
->buf
.data (), "OK") != 0)
5820 error (_("Attaching to %s failed with: %s"),
5821 target_pid_to_str (ptid_t (pid
)).c_str (),
5824 case PACKET_UNKNOWN
:
5825 error (_("This target does not support attaching to a process"));
5827 error (_("Attaching to %s failed"),
5828 target_pid_to_str (ptid_t (pid
)).c_str ());
5831 set_current_inferior (remote_add_inferior (false, pid
, 1, 0));
5833 inferior_ptid
= ptid_t (pid
);
5835 if (target_is_non_stop_p ())
5837 struct thread_info
*thread
;
5839 /* Get list of threads. */
5840 update_thread_list ();
5842 thread
= first_thread_of_inferior (current_inferior ());
5844 inferior_ptid
= thread
->ptid
;
5846 inferior_ptid
= ptid_t (pid
);
5848 /* Invalidate our notion of the remote current thread. */
5849 record_currthread (rs
, minus_one_ptid
);
5853 /* Now, if we have thread information, update inferior_ptid. */
5854 inferior_ptid
= remote_current_thread (inferior_ptid
);
5856 /* Add the main thread to the thread list. */
5857 thread_info
*thr
= add_thread_silent (inferior_ptid
);
5858 /* Don't consider the thread stopped until we've processed the
5859 saved stop reply. */
5860 set_executing (thr
->ptid
, true);
5863 /* Next, if the target can specify a description, read it. We do
5864 this before anything involving memory or registers. */
5865 target_find_description ();
5867 if (!target_is_non_stop_p ())
5869 /* Use the previously fetched status. */
5870 gdb_assert (wait_status
!= NULL
);
5872 if (target_can_async_p ())
5874 struct notif_event
*reply
5875 = remote_notif_parse (this, ¬if_client_stop
, wait_status
);
5877 push_stop_reply ((struct stop_reply
*) reply
);
5883 gdb_assert (wait_status
!= NULL
);
5884 strcpy (rs
->buf
.data (), wait_status
);
5885 rs
->cached_wait_status
= 1;
5889 gdb_assert (wait_status
== NULL
);
5892 /* Implementation of the to_post_attach method. */
5895 extended_remote_target::post_attach (int pid
)
5897 /* Get text, data & bss offsets. */
5900 /* In certain cases GDB might not have had the chance to start
5901 symbol lookup up until now. This could happen if the debugged
5902 binary is not using shared libraries, the vsyscall page is not
5903 present (on Linux) and the binary itself hadn't changed since the
5904 debugging process was started. */
5905 if (symfile_objfile
!= NULL
)
5906 remote_check_symbols();
5910 /* Check for the availability of vCont. This function should also check
5914 remote_target::remote_vcont_probe ()
5916 remote_state
*rs
= get_remote_state ();
5919 strcpy (rs
->buf
.data (), "vCont?");
5921 getpkt (&rs
->buf
, 0);
5922 buf
= rs
->buf
.data ();
5924 /* Make sure that the features we assume are supported. */
5925 if (startswith (buf
, "vCont"))
5928 int support_c
, support_C
;
5930 rs
->supports_vCont
.s
= 0;
5931 rs
->supports_vCont
.S
= 0;
5934 rs
->supports_vCont
.t
= 0;
5935 rs
->supports_vCont
.r
= 0;
5936 while (p
&& *p
== ';')
5939 if (*p
== 's' && (*(p
+ 1) == ';' || *(p
+ 1) == 0))
5940 rs
->supports_vCont
.s
= 1;
5941 else if (*p
== 'S' && (*(p
+ 1) == ';' || *(p
+ 1) == 0))
5942 rs
->supports_vCont
.S
= 1;
5943 else if (*p
== 'c' && (*(p
+ 1) == ';' || *(p
+ 1) == 0))
5945 else if (*p
== 'C' && (*(p
+ 1) == ';' || *(p
+ 1) == 0))
5947 else if (*p
== 't' && (*(p
+ 1) == ';' || *(p
+ 1) == 0))
5948 rs
->supports_vCont
.t
= 1;
5949 else if (*p
== 'r' && (*(p
+ 1) == ';' || *(p
+ 1) == 0))
5950 rs
->supports_vCont
.r
= 1;
5952 p
= strchr (p
, ';');
5955 /* If c, and C are not all supported, we can't use vCont. Clearing
5956 BUF will make packet_ok disable the packet. */
5957 if (!support_c
|| !support_C
)
5961 packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_vCont
]);
5964 /* Helper function for building "vCont" resumptions. Write a
5965 resumption to P. ENDP points to one-passed-the-end of the buffer
5966 we're allowed to write to. Returns BUF+CHARACTERS_WRITTEN. The
5967 thread to be resumed is PTID; STEP and SIGGNAL indicate whether the
5968 resumed thread should be single-stepped and/or signalled. If PTID
5969 equals minus_one_ptid, then all threads are resumed; if PTID
5970 represents a process, then all threads of the process are resumed;
5971 the thread to be stepped and/or signalled is given in the global
5975 remote_target::append_resumption (char *p
, char *endp
,
5976 ptid_t ptid
, int step
, gdb_signal siggnal
)
5978 struct remote_state
*rs
= get_remote_state ();
5980 if (step
&& siggnal
!= GDB_SIGNAL_0
)
5981 p
+= xsnprintf (p
, endp
- p
, ";S%02x", siggnal
);
5983 /* GDB is willing to range step. */
5984 && use_range_stepping
5985 /* Target supports range stepping. */
5986 && rs
->supports_vCont
.r
5987 /* We don't currently support range stepping multiple
5988 threads with a wildcard (though the protocol allows it,
5989 so stubs shouldn't make an active effort to forbid
5991 && !(remote_multi_process_p (rs
) && ptid
.is_pid ()))
5993 struct thread_info
*tp
;
5995 if (ptid
== minus_one_ptid
)
5997 /* If we don't know about the target thread's tid, then
5998 we're resuming magic_null_ptid (see caller). */
5999 tp
= find_thread_ptid (magic_null_ptid
);
6002 tp
= find_thread_ptid (ptid
);
6003 gdb_assert (tp
!= NULL
);
6005 if (tp
->control
.may_range_step
)
6007 int addr_size
= gdbarch_addr_bit (target_gdbarch ()) / 8;
6009 p
+= xsnprintf (p
, endp
- p
, ";r%s,%s",
6010 phex_nz (tp
->control
.step_range_start
,
6012 phex_nz (tp
->control
.step_range_end
,
6016 p
+= xsnprintf (p
, endp
- p
, ";s");
6019 p
+= xsnprintf (p
, endp
- p
, ";s");
6020 else if (siggnal
!= GDB_SIGNAL_0
)
6021 p
+= xsnprintf (p
, endp
- p
, ";C%02x", siggnal
);
6023 p
+= xsnprintf (p
, endp
- p
, ";c");
6025 if (remote_multi_process_p (rs
) && ptid
.is_pid ())
6029 /* All (-1) threads of process. */
6030 nptid
= ptid_t (ptid
.pid (), -1, 0);
6032 p
+= xsnprintf (p
, endp
- p
, ":");
6033 p
= write_ptid (p
, endp
, nptid
);
6035 else if (ptid
!= minus_one_ptid
)
6037 p
+= xsnprintf (p
, endp
- p
, ":");
6038 p
= write_ptid (p
, endp
, ptid
);
6044 /* Clear the thread's private info on resume. */
6047 resume_clear_thread_private_info (struct thread_info
*thread
)
6049 if (thread
->priv
!= NULL
)
6051 remote_thread_info
*priv
= get_remote_thread_info (thread
);
6053 priv
->stop_reason
= TARGET_STOPPED_BY_NO_REASON
;
6054 priv
->watch_data_address
= 0;
6058 /* Append a vCont continue-with-signal action for threads that have a
6059 non-zero stop signal. */
6062 remote_target::append_pending_thread_resumptions (char *p
, char *endp
,
6065 for (thread_info
*thread
: all_non_exited_threads (ptid
))
6066 if (inferior_ptid
!= thread
->ptid
6067 && thread
->suspend
.stop_signal
!= GDB_SIGNAL_0
)
6069 p
= append_resumption (p
, endp
, thread
->ptid
,
6070 0, thread
->suspend
.stop_signal
);
6071 thread
->suspend
.stop_signal
= GDB_SIGNAL_0
;
6072 resume_clear_thread_private_info (thread
);
6078 /* Set the target running, using the packets that use Hc
6082 remote_target::remote_resume_with_hc (ptid_t ptid
, int step
,
6085 struct remote_state
*rs
= get_remote_state ();
6088 rs
->last_sent_signal
= siggnal
;
6089 rs
->last_sent_step
= step
;
6091 /* The c/s/C/S resume packets use Hc, so set the continue
6093 if (ptid
== minus_one_ptid
)
6094 set_continue_thread (any_thread_ptid
);
6096 set_continue_thread (ptid
);
6098 for (thread_info
*thread
: all_non_exited_threads ())
6099 resume_clear_thread_private_info (thread
);
6101 buf
= rs
->buf
.data ();
6102 if (::execution_direction
== EXEC_REVERSE
)
6104 /* We don't pass signals to the target in reverse exec mode. */
6105 if (info_verbose
&& siggnal
!= GDB_SIGNAL_0
)
6106 warning (_(" - Can't pass signal %d to target in reverse: ignored."),
6109 if (step
&& packet_support (PACKET_bs
) == PACKET_DISABLE
)
6110 error (_("Remote reverse-step not supported."));
6111 if (!step
&& packet_support (PACKET_bc
) == PACKET_DISABLE
)
6112 error (_("Remote reverse-continue not supported."));
6114 strcpy (buf
, step
? "bs" : "bc");
6116 else if (siggnal
!= GDB_SIGNAL_0
)
6118 buf
[0] = step
? 'S' : 'C';
6119 buf
[1] = tohex (((int) siggnal
>> 4) & 0xf);
6120 buf
[2] = tohex (((int) siggnal
) & 0xf);
6124 strcpy (buf
, step
? "s" : "c");
6129 /* Resume the remote inferior by using a "vCont" packet. The thread
6130 to be resumed is PTID; STEP and SIGGNAL indicate whether the
6131 resumed thread should be single-stepped and/or signalled. If PTID
6132 equals minus_one_ptid, then all threads are resumed; the thread to
6133 be stepped and/or signalled is given in the global INFERIOR_PTID.
6134 This function returns non-zero iff it resumes the inferior.
6136 This function issues a strict subset of all possible vCont commands
6140 remote_target::remote_resume_with_vcont (ptid_t ptid
, int step
,
6141 enum gdb_signal siggnal
)
6143 struct remote_state
*rs
= get_remote_state ();
6147 /* No reverse execution actions defined for vCont. */
6148 if (::execution_direction
== EXEC_REVERSE
)
6151 if (packet_support (PACKET_vCont
) == PACKET_SUPPORT_UNKNOWN
)
6152 remote_vcont_probe ();
6154 if (packet_support (PACKET_vCont
) == PACKET_DISABLE
)
6157 p
= rs
->buf
.data ();
6158 endp
= p
+ get_remote_packet_size ();
6160 /* If we could generate a wider range of packets, we'd have to worry
6161 about overflowing BUF. Should there be a generic
6162 "multi-part-packet" packet? */
6164 p
+= xsnprintf (p
, endp
- p
, "vCont");
6166 if (ptid
== magic_null_ptid
)
6168 /* MAGIC_NULL_PTID means that we don't have any active threads,
6169 so we don't have any TID numbers the inferior will
6170 understand. Make sure to only send forms that do not specify
6172 append_resumption (p
, endp
, minus_one_ptid
, step
, siggnal
);
6174 else if (ptid
== minus_one_ptid
|| ptid
.is_pid ())
6176 /* Resume all threads (of all processes, or of a single
6177 process), with preference for INFERIOR_PTID. This assumes
6178 inferior_ptid belongs to the set of all threads we are about
6180 if (step
|| siggnal
!= GDB_SIGNAL_0
)
6182 /* Step inferior_ptid, with or without signal. */
6183 p
= append_resumption (p
, endp
, inferior_ptid
, step
, siggnal
);
6186 /* Also pass down any pending signaled resumption for other
6187 threads not the current. */
6188 p
= append_pending_thread_resumptions (p
, endp
, ptid
);
6190 /* And continue others without a signal. */
6191 append_resumption (p
, endp
, ptid
, /*step=*/ 0, GDB_SIGNAL_0
);
6195 /* Scheduler locking; resume only PTID. */
6196 append_resumption (p
, endp
, ptid
, step
, siggnal
);
6199 gdb_assert (strlen (rs
->buf
.data ()) < get_remote_packet_size ());
6202 if (target_is_non_stop_p ())
6204 /* In non-stop, the stub replies to vCont with "OK". The stop
6205 reply will be reported asynchronously by means of a `%Stop'
6207 getpkt (&rs
->buf
, 0);
6208 if (strcmp (rs
->buf
.data (), "OK") != 0)
6209 error (_("Unexpected vCont reply in non-stop mode: %s"),
6216 /* Tell the remote machine to resume. */
6219 remote_target::resume (ptid_t ptid
, int step
, enum gdb_signal siggnal
)
6221 struct remote_state
*rs
= get_remote_state ();
6223 /* When connected in non-stop mode, the core resumes threads
6224 individually. Resuming remote threads directly in target_resume
6225 would thus result in sending one packet per thread. Instead, to
6226 minimize roundtrip latency, here we just store the resume
6227 request; the actual remote resumption will be done in
6228 target_commit_resume / remote_commit_resume, where we'll be able
6229 to do vCont action coalescing. */
6230 if (target_is_non_stop_p () && ::execution_direction
!= EXEC_REVERSE
)
6232 remote_thread_info
*remote_thr
;
6234 if (minus_one_ptid
== ptid
|| ptid
.is_pid ())
6235 remote_thr
= get_remote_thread_info (inferior_ptid
);
6237 remote_thr
= get_remote_thread_info (ptid
);
6239 remote_thr
->last_resume_step
= step
;
6240 remote_thr
->last_resume_sig
= siggnal
;
6244 /* In all-stop, we can't mark REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN
6245 (explained in remote-notif.c:handle_notification) so
6246 remote_notif_process is not called. We need find a place where
6247 it is safe to start a 'vNotif' sequence. It is good to do it
6248 before resuming inferior, because inferior was stopped and no RSP
6249 traffic at that moment. */
6250 if (!target_is_non_stop_p ())
6251 remote_notif_process (rs
->notif_state
, ¬if_client_stop
);
6253 rs
->last_resume_exec_dir
= ::execution_direction
;
6255 /* Prefer vCont, and fallback to s/c/S/C, which use Hc. */
6256 if (!remote_resume_with_vcont (ptid
, step
, siggnal
))
6257 remote_resume_with_hc (ptid
, step
, siggnal
);
6259 /* We are about to start executing the inferior, let's register it
6260 with the event loop. NOTE: this is the one place where all the
6261 execution commands end up. We could alternatively do this in each
6262 of the execution commands in infcmd.c. */
6263 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
6264 into infcmd.c in order to allow inferior function calls to work
6265 NOT asynchronously. */
6266 if (target_can_async_p ())
6269 /* We've just told the target to resume. The remote server will
6270 wait for the inferior to stop, and then send a stop reply. In
6271 the mean time, we can't start another command/query ourselves
6272 because the stub wouldn't be ready to process it. This applies
6273 only to the base all-stop protocol, however. In non-stop (which
6274 only supports vCont), the stub replies with an "OK", and is
6275 immediate able to process further serial input. */
6276 if (!target_is_non_stop_p ())
6277 rs
->waiting_for_stop_reply
= 1;
6280 static int is_pending_fork_parent_thread (struct thread_info
*thread
);
6282 /* Private per-inferior info for target remote processes. */
6284 struct remote_inferior
: public private_inferior
6286 /* Whether we can send a wildcard vCont for this process. */
6287 bool may_wildcard_vcont
= true;
6290 /* Get the remote private inferior data associated to INF. */
6292 static remote_inferior
*
6293 get_remote_inferior (inferior
*inf
)
6295 if (inf
->priv
== NULL
)
6296 inf
->priv
.reset (new remote_inferior
);
6298 return static_cast<remote_inferior
*> (inf
->priv
.get ());
6301 /* Class used to track the construction of a vCont packet in the
6302 outgoing packet buffer. This is used to send multiple vCont
6303 packets if we have more actions than would fit a single packet. */
6308 explicit vcont_builder (remote_target
*remote
)
6315 void push_action (ptid_t ptid
, bool step
, gdb_signal siggnal
);
6320 /* The remote target. */
6321 remote_target
*m_remote
;
6323 /* Pointer to the first action. P points here if no action has been
6325 char *m_first_action
;
6327 /* Where the next action will be appended. */
6330 /* The end of the buffer. Must never write past this. */
6334 /* Prepare the outgoing buffer for a new vCont packet. */
6337 vcont_builder::restart ()
6339 struct remote_state
*rs
= m_remote
->get_remote_state ();
6341 m_p
= rs
->buf
.data ();
6342 m_endp
= m_p
+ m_remote
->get_remote_packet_size ();
6343 m_p
+= xsnprintf (m_p
, m_endp
- m_p
, "vCont");
6344 m_first_action
= m_p
;
6347 /* If the vCont packet being built has any action, send it to the
6351 vcont_builder::flush ()
6353 struct remote_state
*rs
;
6355 if (m_p
== m_first_action
)
6358 rs
= m_remote
->get_remote_state ();
6359 m_remote
->putpkt (rs
->buf
);
6360 m_remote
->getpkt (&rs
->buf
, 0);
6361 if (strcmp (rs
->buf
.data (), "OK") != 0)
6362 error (_("Unexpected vCont reply in non-stop mode: %s"), rs
->buf
.data ());
6365 /* The largest action is range-stepping, with its two addresses. This
6366 is more than sufficient. If a new, bigger action is created, it'll
6367 quickly trigger a failed assertion in append_resumption (and we'll
6369 #define MAX_ACTION_SIZE 200
6371 /* Append a new vCont action in the outgoing packet being built. If
6372 the action doesn't fit the packet along with previous actions, push
6373 what we've got so far to the remote end and start over a new vCont
6374 packet (with the new action). */
6377 vcont_builder::push_action (ptid_t ptid
, bool step
, gdb_signal siggnal
)
6379 char buf
[MAX_ACTION_SIZE
+ 1];
6381 char *endp
= m_remote
->append_resumption (buf
, buf
+ sizeof (buf
),
6382 ptid
, step
, siggnal
);
6384 /* Check whether this new action would fit in the vCont packet along
6385 with previous actions. If not, send what we've got so far and
6386 start a new vCont packet. */
6387 size_t rsize
= endp
- buf
;
6388 if (rsize
> m_endp
- m_p
)
6393 /* Should now fit. */
6394 gdb_assert (rsize
<= m_endp
- m_p
);
6397 memcpy (m_p
, buf
, rsize
);
6402 /* to_commit_resume implementation. */
6405 remote_target::commit_resume ()
6407 int any_process_wildcard
;
6408 int may_global_wildcard_vcont
;
6410 /* If connected in all-stop mode, we'd send the remote resume
6411 request directly from remote_resume. Likewise if
6412 reverse-debugging, as there are no defined vCont actions for
6413 reverse execution. */
6414 if (!target_is_non_stop_p () || ::execution_direction
== EXEC_REVERSE
)
6417 /* Try to send wildcard actions ("vCont;c" or "vCont;c:pPID.-1")
6418 instead of resuming all threads of each process individually.
6419 However, if any thread of a process must remain halted, we can't
6420 send wildcard resumes and must send one action per thread.
6422 Care must be taken to not resume threads/processes the server
6423 side already told us are stopped, but the core doesn't know about
6424 yet, because the events are still in the vStopped notification
6427 #1 => vCont s:p1.1;c
6429 #3 <= %Stopped T05 p1.1
6434 #8 (infrun handles the stop for p1.1 and continues stepping)
6435 #9 => vCont s:p1.1;c
6437 The last vCont above would resume thread p1.2 by mistake, because
6438 the server has no idea that the event for p1.2 had not been
6441 The server side must similarly ignore resume actions for the
6442 thread that has a pending %Stopped notification (and any other
6443 threads with events pending), until GDB acks the notification
6444 with vStopped. Otherwise, e.g., the following case is
6447 #1 => g (or any other packet)
6449 #3 <= %Stopped T05 p1.2
6450 #4 => vCont s:p1.1;c
6453 Above, the server must not resume thread p1.2. GDB can't know
6454 that p1.2 stopped until it acks the %Stopped notification, and
6455 since from GDB's perspective all threads should be running, it
6458 Finally, special care must also be given to handling fork/vfork
6459 events. A (v)fork event actually tells us that two processes
6460 stopped -- the parent and the child. Until we follow the fork,
6461 we must not resume the child. Therefore, if we have a pending
6462 fork follow, we must not send a global wildcard resume action
6463 (vCont;c). We can still send process-wide wildcards though. */
6465 /* Start by assuming a global wildcard (vCont;c) is possible. */
6466 may_global_wildcard_vcont
= 1;
6468 /* And assume every process is individually wildcard-able too. */
6469 for (inferior
*inf
: all_non_exited_inferiors ())
6471 remote_inferior
*priv
= get_remote_inferior (inf
);
6473 priv
->may_wildcard_vcont
= true;
6476 /* Check for any pending events (not reported or processed yet) and
6477 disable process and global wildcard resumes appropriately. */
6478 check_pending_events_prevent_wildcard_vcont (&may_global_wildcard_vcont
);
6480 for (thread_info
*tp
: all_non_exited_threads ())
6482 /* If a thread of a process is not meant to be resumed, then we
6483 can't wildcard that process. */
6486 get_remote_inferior (tp
->inf
)->may_wildcard_vcont
= false;
6488 /* And if we can't wildcard a process, we can't wildcard
6489 everything either. */
6490 may_global_wildcard_vcont
= 0;
6494 /* If a thread is the parent of an unfollowed fork, then we
6495 can't do a global wildcard, as that would resume the fork
6497 if (is_pending_fork_parent_thread (tp
))
6498 may_global_wildcard_vcont
= 0;
6501 /* Now let's build the vCont packet(s). Actions must be appended
6502 from narrower to wider scopes (thread -> process -> global). If
6503 we end up with too many actions for a single packet vcont_builder
6504 flushes the current vCont packet to the remote side and starts a
6506 struct vcont_builder
vcont_builder (this);
6508 /* Threads first. */
6509 for (thread_info
*tp
: all_non_exited_threads ())
6511 remote_thread_info
*remote_thr
= get_remote_thread_info (tp
);
6513 if (!tp
->executing
|| remote_thr
->vcont_resumed
)
6516 gdb_assert (!thread_is_in_step_over_chain (tp
));
6518 if (!remote_thr
->last_resume_step
6519 && remote_thr
->last_resume_sig
== GDB_SIGNAL_0
6520 && get_remote_inferior (tp
->inf
)->may_wildcard_vcont
)
6522 /* We'll send a wildcard resume instead. */
6523 remote_thr
->vcont_resumed
= 1;
6527 vcont_builder
.push_action (tp
->ptid
,
6528 remote_thr
->last_resume_step
,
6529 remote_thr
->last_resume_sig
);
6530 remote_thr
->vcont_resumed
= 1;
6533 /* Now check whether we can send any process-wide wildcard. This is
6534 to avoid sending a global wildcard in the case nothing is
6535 supposed to be resumed. */
6536 any_process_wildcard
= 0;
6538 for (inferior
*inf
: all_non_exited_inferiors ())
6540 if (get_remote_inferior (inf
)->may_wildcard_vcont
)
6542 any_process_wildcard
= 1;
6547 if (any_process_wildcard
)
6549 /* If all processes are wildcard-able, then send a single "c"
6550 action, otherwise, send an "all (-1) threads of process"
6551 continue action for each running process, if any. */
6552 if (may_global_wildcard_vcont
)
6554 vcont_builder
.push_action (minus_one_ptid
,
6555 false, GDB_SIGNAL_0
);
6559 for (inferior
*inf
: all_non_exited_inferiors ())
6561 if (get_remote_inferior (inf
)->may_wildcard_vcont
)
6563 vcont_builder
.push_action (ptid_t (inf
->pid
),
6564 false, GDB_SIGNAL_0
);
6570 vcont_builder
.flush ();
6575 /* Non-stop version of target_stop. Uses `vCont;t' to stop a remote
6576 thread, all threads of a remote process, or all threads of all
6580 remote_target::remote_stop_ns (ptid_t ptid
)
6582 struct remote_state
*rs
= get_remote_state ();
6583 char *p
= rs
->buf
.data ();
6584 char *endp
= p
+ get_remote_packet_size ();
6586 if (packet_support (PACKET_vCont
) == PACKET_SUPPORT_UNKNOWN
)
6587 remote_vcont_probe ();
6589 if (!rs
->supports_vCont
.t
)
6590 error (_("Remote server does not support stopping threads"));
6592 if (ptid
== minus_one_ptid
6593 || (!remote_multi_process_p (rs
) && ptid
.is_pid ()))
6594 p
+= xsnprintf (p
, endp
- p
, "vCont;t");
6599 p
+= xsnprintf (p
, endp
- p
, "vCont;t:");
6602 /* All (-1) threads of process. */
6603 nptid
= ptid_t (ptid
.pid (), -1, 0);
6606 /* Small optimization: if we already have a stop reply for
6607 this thread, no use in telling the stub we want this
6609 if (peek_stop_reply (ptid
))
6615 write_ptid (p
, endp
, nptid
);
6618 /* In non-stop, we get an immediate OK reply. The stop reply will
6619 come in asynchronously by notification. */
6621 getpkt (&rs
->buf
, 0);
6622 if (strcmp (rs
->buf
.data (), "OK") != 0)
6623 error (_("Stopping %s failed: %s"), target_pid_to_str (ptid
).c_str (),
6627 /* All-stop version of target_interrupt. Sends a break or a ^C to
6628 interrupt the remote target. It is undefined which thread of which
6629 process reports the interrupt. */
6632 remote_target::remote_interrupt_as ()
6634 struct remote_state
*rs
= get_remote_state ();
6636 rs
->ctrlc_pending_p
= 1;
6638 /* If the inferior is stopped already, but the core didn't know
6639 about it yet, just ignore the request. The cached wait status
6640 will be collected in remote_wait. */
6641 if (rs
->cached_wait_status
)
6644 /* Send interrupt_sequence to remote target. */
6645 send_interrupt_sequence ();
6648 /* Non-stop version of target_interrupt. Uses `vCtrlC' to interrupt
6649 the remote target. It is undefined which thread of which process
6650 reports the interrupt. Throws an error if the packet is not
6651 supported by the server. */
6654 remote_target::remote_interrupt_ns ()
6656 struct remote_state
*rs
= get_remote_state ();
6657 char *p
= rs
->buf
.data ();
6658 char *endp
= p
+ get_remote_packet_size ();
6660 xsnprintf (p
, endp
- p
, "vCtrlC");
6662 /* In non-stop, we get an immediate OK reply. The stop reply will
6663 come in asynchronously by notification. */
6665 getpkt (&rs
->buf
, 0);
6667 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_vCtrlC
]))
6671 case PACKET_UNKNOWN
:
6672 error (_("No support for interrupting the remote target."));
6674 error (_("Interrupting target failed: %s"), rs
->buf
.data ());
6678 /* Implement the to_stop function for the remote targets. */
6681 remote_target::stop (ptid_t ptid
)
6684 fprintf_unfiltered (gdb_stdlog
, "remote_stop called\n");
6686 if (target_is_non_stop_p ())
6687 remote_stop_ns (ptid
);
6690 /* We don't currently have a way to transparently pause the
6691 remote target in all-stop mode. Interrupt it instead. */
6692 remote_interrupt_as ();
6696 /* Implement the to_interrupt function for the remote targets. */
6699 remote_target::interrupt ()
6702 fprintf_unfiltered (gdb_stdlog
, "remote_interrupt called\n");
6704 if (target_is_non_stop_p ())
6705 remote_interrupt_ns ();
6707 remote_interrupt_as ();
6710 /* Implement the to_pass_ctrlc function for the remote targets. */
6713 remote_target::pass_ctrlc ()
6715 struct remote_state
*rs
= get_remote_state ();
6718 fprintf_unfiltered (gdb_stdlog
, "remote_pass_ctrlc called\n");
6720 /* If we're starting up, we're not fully synced yet. Quit
6722 if (rs
->starting_up
)
6724 /* If ^C has already been sent once, offer to disconnect. */
6725 else if (rs
->ctrlc_pending_p
)
6728 target_interrupt ();
6731 /* Ask the user what to do when an interrupt is received. */
6734 remote_target::interrupt_query ()
6736 struct remote_state
*rs
= get_remote_state ();
6738 if (rs
->waiting_for_stop_reply
&& rs
->ctrlc_pending_p
)
6740 if (query (_("The target is not responding to interrupt requests.\n"
6741 "Stop debugging it? ")))
6743 remote_unpush_target ();
6744 throw_error (TARGET_CLOSE_ERROR
, _("Disconnected from target."));
6749 if (query (_("Interrupted while waiting for the program.\n"
6750 "Give up waiting? ")))
6755 /* Enable/disable target terminal ownership. Most targets can use
6756 terminal groups to control terminal ownership. Remote targets are
6757 different in that explicit transfer of ownership to/from GDB/target
6761 remote_target::terminal_inferior ()
6763 /* NOTE: At this point we could also register our selves as the
6764 recipient of all input. Any characters typed could then be
6765 passed on down to the target. */
6769 remote_target::terminal_ours ()
6774 remote_console_output (const char *msg
)
6778 for (p
= msg
; p
[0] && p
[1]; p
+= 2)
6781 char c
= fromhex (p
[0]) * 16 + fromhex (p
[1]);
6785 fputs_unfiltered (tb
, gdb_stdtarg
);
6787 gdb_flush (gdb_stdtarg
);
6790 struct stop_reply
: public notif_event
6794 /* The identifier of the thread about this event */
6797 /* The remote state this event is associated with. When the remote
6798 connection, represented by a remote_state object, is closed,
6799 all the associated stop_reply events should be released. */
6800 struct remote_state
*rs
;
6802 struct target_waitstatus ws
;
6804 /* The architecture associated with the expedited registers. */
6807 /* Expedited registers. This makes remote debugging a bit more
6808 efficient for those targets that provide critical registers as
6809 part of their normal status mechanism (as another roundtrip to
6810 fetch them is avoided). */
6811 std::vector
<cached_reg_t
> regcache
;
6813 enum target_stop_reason stop_reason
;
6815 CORE_ADDR watch_data_address
;
6820 /* Return the length of the stop reply queue. */
6823 remote_target::stop_reply_queue_length ()
6825 remote_state
*rs
= get_remote_state ();
6826 return rs
->stop_reply_queue
.size ();
6830 remote_notif_stop_parse (remote_target
*remote
,
6831 struct notif_client
*self
, const char *buf
,
6832 struct notif_event
*event
)
6834 remote
->remote_parse_stop_reply (buf
, (struct stop_reply
*) event
);
6838 remote_notif_stop_ack (remote_target
*remote
,
6839 struct notif_client
*self
, const char *buf
,
6840 struct notif_event
*event
)
6842 struct stop_reply
*stop_reply
= (struct stop_reply
*) event
;
6845 putpkt (remote
, self
->ack_command
);
6847 if (stop_reply
->ws
.kind
== TARGET_WAITKIND_IGNORE
)
6849 /* We got an unknown stop reply. */
6850 error (_("Unknown stop reply"));
6853 remote
->push_stop_reply (stop_reply
);
6857 remote_notif_stop_can_get_pending_events (remote_target
*remote
,
6858 struct notif_client
*self
)
6860 /* We can't get pending events in remote_notif_process for
6861 notification stop, and we have to do this in remote_wait_ns
6862 instead. If we fetch all queued events from stub, remote stub
6863 may exit and we have no chance to process them back in
6865 remote_state
*rs
= remote
->get_remote_state ();
6866 mark_async_event_handler (rs
->remote_async_inferior_event_token
);
6870 stop_reply::~stop_reply ()
6872 for (cached_reg_t
®
: regcache
)
6876 static notif_event_up
6877 remote_notif_stop_alloc_reply ()
6879 return notif_event_up (new struct stop_reply ());
6882 /* A client of notification Stop. */
6884 struct notif_client notif_client_stop
=
6888 remote_notif_stop_parse
,
6889 remote_notif_stop_ack
,
6890 remote_notif_stop_can_get_pending_events
,
6891 remote_notif_stop_alloc_reply
,
6895 /* Determine if THREAD_PTID is a pending fork parent thread. ARG contains
6896 the pid of the process that owns the threads we want to check, or
6897 -1 if we want to check all threads. */
6900 is_pending_fork_parent (struct target_waitstatus
*ws
, int event_pid
,
6903 if (ws
->kind
== TARGET_WAITKIND_FORKED
6904 || ws
->kind
== TARGET_WAITKIND_VFORKED
)
6906 if (event_pid
== -1 || event_pid
== thread_ptid
.pid ())
6913 /* Return the thread's pending status used to determine whether the
6914 thread is a fork parent stopped at a fork event. */
6916 static struct target_waitstatus
*
6917 thread_pending_fork_status (struct thread_info
*thread
)
6919 if (thread
->suspend
.waitstatus_pending_p
)
6920 return &thread
->suspend
.waitstatus
;
6922 return &thread
->pending_follow
;
6925 /* Determine if THREAD is a pending fork parent thread. */
6928 is_pending_fork_parent_thread (struct thread_info
*thread
)
6930 struct target_waitstatus
*ws
= thread_pending_fork_status (thread
);
6933 return is_pending_fork_parent (ws
, pid
, thread
->ptid
);
6936 /* If CONTEXT contains any fork child threads that have not been
6937 reported yet, remove them from the CONTEXT list. If such a
6938 thread exists it is because we are stopped at a fork catchpoint
6939 and have not yet called follow_fork, which will set up the
6940 host-side data structures for the new process. */
6943 remote_target::remove_new_fork_children (threads_listing_context
*context
)
6946 struct notif_client
*notif
= ¬if_client_stop
;
6948 /* For any threads stopped at a fork event, remove the corresponding
6949 fork child threads from the CONTEXT list. */
6950 for (thread_info
*thread
: all_non_exited_threads ())
6952 struct target_waitstatus
*ws
= thread_pending_fork_status (thread
);
6954 if (is_pending_fork_parent (ws
, pid
, thread
->ptid
))
6955 context
->remove_thread (ws
->value
.related_pid
);
6958 /* Check for any pending fork events (not reported or processed yet)
6959 in process PID and remove those fork child threads from the
6960 CONTEXT list as well. */
6961 remote_notif_get_pending_events (notif
);
6962 for (auto &event
: get_remote_state ()->stop_reply_queue
)
6963 if (event
->ws
.kind
== TARGET_WAITKIND_FORKED
6964 || event
->ws
.kind
== TARGET_WAITKIND_VFORKED
6965 || event
->ws
.kind
== TARGET_WAITKIND_THREAD_EXITED
)
6966 context
->remove_thread (event
->ws
.value
.related_pid
);
6969 /* Check whether any event pending in the vStopped queue would prevent
6970 a global or process wildcard vCont action. Clear
6971 *may_global_wildcard if we can't do a global wildcard (vCont;c),
6972 and clear the event inferior's may_wildcard_vcont flag if we can't
6973 do a process-wide wildcard resume (vCont;c:pPID.-1). */
6976 remote_target::check_pending_events_prevent_wildcard_vcont
6977 (int *may_global_wildcard
)
6979 struct notif_client
*notif
= ¬if_client_stop
;
6981 remote_notif_get_pending_events (notif
);
6982 for (auto &event
: get_remote_state ()->stop_reply_queue
)
6984 if (event
->ws
.kind
== TARGET_WAITKIND_NO_RESUMED
6985 || event
->ws
.kind
== TARGET_WAITKIND_NO_HISTORY
)
6988 if (event
->ws
.kind
== TARGET_WAITKIND_FORKED
6989 || event
->ws
.kind
== TARGET_WAITKIND_VFORKED
)
6990 *may_global_wildcard
= 0;
6992 struct inferior
*inf
= find_inferior_ptid (event
->ptid
);
6994 /* This may be the first time we heard about this process.
6995 Regardless, we must not do a global wildcard resume, otherwise
6996 we'd resume this process too. */
6997 *may_global_wildcard
= 0;
6999 get_remote_inferior (inf
)->may_wildcard_vcont
= false;
7003 /* Discard all pending stop replies of inferior INF. */
7006 remote_target::discard_pending_stop_replies (struct inferior
*inf
)
7008 struct stop_reply
*reply
;
7009 struct remote_state
*rs
= get_remote_state ();
7010 struct remote_notif_state
*rns
= rs
->notif_state
;
7012 /* This function can be notified when an inferior exists. When the
7013 target is not remote, the notification state is NULL. */
7014 if (rs
->remote_desc
== NULL
)
7017 reply
= (struct stop_reply
*) rns
->pending_event
[notif_client_stop
.id
];
7019 /* Discard the in-flight notification. */
7020 if (reply
!= NULL
&& reply
->ptid
.pid () == inf
->pid
)
7023 rns
->pending_event
[notif_client_stop
.id
] = NULL
;
7026 /* Discard the stop replies we have already pulled with
7028 auto iter
= std::remove_if (rs
->stop_reply_queue
.begin (),
7029 rs
->stop_reply_queue
.end (),
7030 [=] (const stop_reply_up
&event
)
7032 return event
->ptid
.pid () == inf
->pid
;
7034 rs
->stop_reply_queue
.erase (iter
, rs
->stop_reply_queue
.end ());
7037 /* Discard the stop replies for RS in stop_reply_queue. */
7040 remote_target::discard_pending_stop_replies_in_queue ()
7042 remote_state
*rs
= get_remote_state ();
7044 /* Discard the stop replies we have already pulled with
7046 auto iter
= std::remove_if (rs
->stop_reply_queue
.begin (),
7047 rs
->stop_reply_queue
.end (),
7048 [=] (const stop_reply_up
&event
)
7050 return event
->rs
== rs
;
7052 rs
->stop_reply_queue
.erase (iter
, rs
->stop_reply_queue
.end ());
7055 /* Remove the first reply in 'stop_reply_queue' which matches
7059 remote_target::remote_notif_remove_queued_reply (ptid_t ptid
)
7061 remote_state
*rs
= get_remote_state ();
7063 auto iter
= std::find_if (rs
->stop_reply_queue
.begin (),
7064 rs
->stop_reply_queue
.end (),
7065 [=] (const stop_reply_up
&event
)
7067 return event
->ptid
.matches (ptid
);
7069 struct stop_reply
*result
;
7070 if (iter
== rs
->stop_reply_queue
.end ())
7074 result
= iter
->release ();
7075 rs
->stop_reply_queue
.erase (iter
);
7079 fprintf_unfiltered (gdb_stdlog
,
7080 "notif: discard queued event: 'Stop' in %s\n",
7081 target_pid_to_str (ptid
).c_str ());
7086 /* Look for a queued stop reply belonging to PTID. If one is found,
7087 remove it from the queue, and return it. Returns NULL if none is
7088 found. If there are still queued events left to process, tell the
7089 event loop to get back to target_wait soon. */
7092 remote_target::queued_stop_reply (ptid_t ptid
)
7094 remote_state
*rs
= get_remote_state ();
7095 struct stop_reply
*r
= remote_notif_remove_queued_reply (ptid
);
7097 if (!rs
->stop_reply_queue
.empty ())
7099 /* There's still at least an event left. */
7100 mark_async_event_handler (rs
->remote_async_inferior_event_token
);
7106 /* Push a fully parsed stop reply in the stop reply queue. Since we
7107 know that we now have at least one queued event left to pass to the
7108 core side, tell the event loop to get back to target_wait soon. */
7111 remote_target::push_stop_reply (struct stop_reply
*new_event
)
7113 remote_state
*rs
= get_remote_state ();
7114 rs
->stop_reply_queue
.push_back (stop_reply_up (new_event
));
7117 fprintf_unfiltered (gdb_stdlog
,
7118 "notif: push 'Stop' %s to queue %d\n",
7119 target_pid_to_str (new_event
->ptid
).c_str (),
7120 int (rs
->stop_reply_queue
.size ()));
7122 mark_async_event_handler (rs
->remote_async_inferior_event_token
);
7125 /* Returns true if we have a stop reply for PTID. */
7128 remote_target::peek_stop_reply (ptid_t ptid
)
7130 remote_state
*rs
= get_remote_state ();
7131 for (auto &event
: rs
->stop_reply_queue
)
7132 if (ptid
== event
->ptid
7133 && event
->ws
.kind
== TARGET_WAITKIND_STOPPED
)
7138 /* Helper for remote_parse_stop_reply. Return nonzero if the substring
7139 starting with P and ending with PEND matches PREFIX. */
7142 strprefix (const char *p
, const char *pend
, const char *prefix
)
7144 for ( ; p
< pend
; p
++, prefix
++)
7147 return *prefix
== '\0';
7150 /* Parse the stop reply in BUF. Either the function succeeds, and the
7151 result is stored in EVENT, or throws an error. */
7154 remote_target::remote_parse_stop_reply (const char *buf
, stop_reply
*event
)
7156 remote_arch_state
*rsa
= NULL
;
7161 event
->ptid
= null_ptid
;
7162 event
->rs
= get_remote_state ();
7163 event
->ws
.kind
= TARGET_WAITKIND_IGNORE
;
7164 event
->ws
.value
.integer
= 0;
7165 event
->stop_reason
= TARGET_STOPPED_BY_NO_REASON
;
7166 event
->regcache
.clear ();
7171 case 'T': /* Status with PC, SP, FP, ... */
7172 /* Expedited reply, containing Signal, {regno, reg} repeat. */
7173 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
7175 n... = register number
7176 r... = register contents
7179 p
= &buf
[3]; /* after Txx */
7185 p1
= strchr (p
, ':');
7187 error (_("Malformed packet(a) (missing colon): %s\n\
7191 error (_("Malformed packet(a) (missing register number): %s\n\
7195 /* Some "registers" are actually extended stop information.
7196 Note if you're adding a new entry here: GDB 7.9 and
7197 earlier assume that all register "numbers" that start
7198 with an hex digit are real register numbers. Make sure
7199 the server only sends such a packet if it knows the
7200 client understands it. */
7202 if (strprefix (p
, p1
, "thread"))
7203 event
->ptid
= read_ptid (++p1
, &p
);
7204 else if (strprefix (p
, p1
, "syscall_entry"))
7208 event
->ws
.kind
= TARGET_WAITKIND_SYSCALL_ENTRY
;
7209 p
= unpack_varlen_hex (++p1
, &sysno
);
7210 event
->ws
.value
.syscall_number
= (int) sysno
;
7212 else if (strprefix (p
, p1
, "syscall_return"))
7216 event
->ws
.kind
= TARGET_WAITKIND_SYSCALL_RETURN
;
7217 p
= unpack_varlen_hex (++p1
, &sysno
);
7218 event
->ws
.value
.syscall_number
= (int) sysno
;
7220 else if (strprefix (p
, p1
, "watch")
7221 || strprefix (p
, p1
, "rwatch")
7222 || strprefix (p
, p1
, "awatch"))
7224 event
->stop_reason
= TARGET_STOPPED_BY_WATCHPOINT
;
7225 p
= unpack_varlen_hex (++p1
, &addr
);
7226 event
->watch_data_address
= (CORE_ADDR
) addr
;
7228 else if (strprefix (p
, p1
, "swbreak"))
7230 event
->stop_reason
= TARGET_STOPPED_BY_SW_BREAKPOINT
;
7232 /* Make sure the stub doesn't forget to indicate support
7234 if (packet_support (PACKET_swbreak_feature
) != PACKET_ENABLE
)
7235 error (_("Unexpected swbreak stop reason"));
7237 /* The value part is documented as "must be empty",
7238 though we ignore it, in case we ever decide to make
7239 use of it in a backward compatible way. */
7240 p
= strchrnul (p1
+ 1, ';');
7242 else if (strprefix (p
, p1
, "hwbreak"))
7244 event
->stop_reason
= TARGET_STOPPED_BY_HW_BREAKPOINT
;
7246 /* Make sure the stub doesn't forget to indicate support
7248 if (packet_support (PACKET_hwbreak_feature
) != PACKET_ENABLE
)
7249 error (_("Unexpected hwbreak stop reason"));
7252 p
= strchrnul (p1
+ 1, ';');
7254 else if (strprefix (p
, p1
, "library"))
7256 event
->ws
.kind
= TARGET_WAITKIND_LOADED
;
7257 p
= strchrnul (p1
+ 1, ';');
7259 else if (strprefix (p
, p1
, "replaylog"))
7261 event
->ws
.kind
= TARGET_WAITKIND_NO_HISTORY
;
7262 /* p1 will indicate "begin" or "end", but it makes
7263 no difference for now, so ignore it. */
7264 p
= strchrnul (p1
+ 1, ';');
7266 else if (strprefix (p
, p1
, "core"))
7270 p
= unpack_varlen_hex (++p1
, &c
);
7273 else if (strprefix (p
, p1
, "fork"))
7275 event
->ws
.value
.related_pid
= read_ptid (++p1
, &p
);
7276 event
->ws
.kind
= TARGET_WAITKIND_FORKED
;
7278 else if (strprefix (p
, p1
, "vfork"))
7280 event
->ws
.value
.related_pid
= read_ptid (++p1
, &p
);
7281 event
->ws
.kind
= TARGET_WAITKIND_VFORKED
;
7283 else if (strprefix (p
, p1
, "vforkdone"))
7285 event
->ws
.kind
= TARGET_WAITKIND_VFORK_DONE
;
7286 p
= strchrnul (p1
+ 1, ';');
7288 else if (strprefix (p
, p1
, "exec"))
7293 /* Determine the length of the execd pathname. */
7294 p
= unpack_varlen_hex (++p1
, &ignored
);
7295 pathlen
= (p
- p1
) / 2;
7297 /* Save the pathname for event reporting and for
7298 the next run command. */
7299 gdb::unique_xmalloc_ptr
<char[]> pathname
7300 ((char *) xmalloc (pathlen
+ 1));
7301 hex2bin (p1
, (gdb_byte
*) pathname
.get (), pathlen
);
7302 pathname
[pathlen
] = '\0';
7304 /* This is freed during event handling. */
7305 event
->ws
.value
.execd_pathname
= pathname
.release ();
7306 event
->ws
.kind
= TARGET_WAITKIND_EXECD
;
7308 /* Skip the registers included in this packet, since
7309 they may be for an architecture different from the
7310 one used by the original program. */
7313 else if (strprefix (p
, p1
, "create"))
7315 event
->ws
.kind
= TARGET_WAITKIND_THREAD_CREATED
;
7316 p
= strchrnul (p1
+ 1, ';');
7325 p
= strchrnul (p1
+ 1, ';');
7330 /* Maybe a real ``P'' register number. */
7331 p_temp
= unpack_varlen_hex (p
, &pnum
);
7332 /* If the first invalid character is the colon, we got a
7333 register number. Otherwise, it's an unknown stop
7337 /* If we haven't parsed the event's thread yet, find
7338 it now, in order to find the architecture of the
7339 reported expedited registers. */
7340 if (event
->ptid
== null_ptid
)
7342 const char *thr
= strstr (p1
+ 1, ";thread:");
7344 event
->ptid
= read_ptid (thr
+ strlen (";thread:"),
7348 /* Either the current thread hasn't changed,
7349 or the inferior is not multi-threaded.
7350 The event must be for the thread we last
7351 set as (or learned as being) current. */
7352 event
->ptid
= event
->rs
->general_thread
;
7358 inferior
*inf
= (event
->ptid
== null_ptid
7360 : find_inferior_ptid (event
->ptid
));
7361 /* If this is the first time we learn anything
7362 about this process, skip the registers
7363 included in this packet, since we don't yet
7364 know which architecture to use to parse them.
7365 We'll determine the architecture later when
7366 we process the stop reply and retrieve the
7367 target description, via
7368 remote_notice_new_inferior ->
7369 post_create_inferior. */
7372 p
= strchrnul (p1
+ 1, ';');
7377 event
->arch
= inf
->gdbarch
;
7378 rsa
= event
->rs
->get_remote_arch_state (event
->arch
);
7382 = packet_reg_from_pnum (event
->arch
, rsa
, pnum
);
7383 cached_reg_t cached_reg
;
7386 error (_("Remote sent bad register number %s: %s\n\
7388 hex_string (pnum
), p
, buf
);
7390 cached_reg
.num
= reg
->regnum
;
7391 cached_reg
.data
= (gdb_byte
*)
7392 xmalloc (register_size (event
->arch
, reg
->regnum
));
7395 fieldsize
= hex2bin (p
, cached_reg
.data
,
7396 register_size (event
->arch
, reg
->regnum
));
7398 if (fieldsize
< register_size (event
->arch
, reg
->regnum
))
7399 warning (_("Remote reply is too short: %s"), buf
);
7401 event
->regcache
.push_back (cached_reg
);
7405 /* Not a number. Silently skip unknown optional
7407 p
= strchrnul (p1
+ 1, ';');
7412 error (_("Remote register badly formatted: %s\nhere: %s"),
7417 if (event
->ws
.kind
!= TARGET_WAITKIND_IGNORE
)
7421 case 'S': /* Old style status, just signal only. */
7425 event
->ws
.kind
= TARGET_WAITKIND_STOPPED
;
7426 sig
= (fromhex (buf
[1]) << 4) + fromhex (buf
[2]);
7427 if (GDB_SIGNAL_FIRST
<= sig
&& sig
< GDB_SIGNAL_LAST
)
7428 event
->ws
.value
.sig
= (enum gdb_signal
) sig
;
7430 event
->ws
.value
.sig
= GDB_SIGNAL_UNKNOWN
;
7433 case 'w': /* Thread exited. */
7437 event
->ws
.kind
= TARGET_WAITKIND_THREAD_EXITED
;
7438 p
= unpack_varlen_hex (&buf
[1], &value
);
7439 event
->ws
.value
.integer
= value
;
7441 error (_("stop reply packet badly formatted: %s"), buf
);
7442 event
->ptid
= read_ptid (++p
, NULL
);
7445 case 'W': /* Target exited. */
7451 /* GDB used to accept only 2 hex chars here. Stubs should
7452 only send more if they detect GDB supports multi-process
7454 p
= unpack_varlen_hex (&buf
[1], &value
);
7458 /* The remote process exited. */
7459 event
->ws
.kind
= TARGET_WAITKIND_EXITED
;
7460 event
->ws
.value
.integer
= value
;
7464 /* The remote process exited with a signal. */
7465 event
->ws
.kind
= TARGET_WAITKIND_SIGNALLED
;
7466 if (GDB_SIGNAL_FIRST
<= value
&& value
< GDB_SIGNAL_LAST
)
7467 event
->ws
.value
.sig
= (enum gdb_signal
) value
;
7469 event
->ws
.value
.sig
= GDB_SIGNAL_UNKNOWN
;
7472 /* If no process is specified, assume inferior_ptid. */
7473 pid
= inferior_ptid
.pid ();
7482 else if (startswith (p
, "process:"))
7486 p
+= sizeof ("process:") - 1;
7487 unpack_varlen_hex (p
, &upid
);
7491 error (_("unknown stop reply packet: %s"), buf
);
7494 error (_("unknown stop reply packet: %s"), buf
);
7495 event
->ptid
= ptid_t (pid
);
7499 event
->ws
.kind
= TARGET_WAITKIND_NO_RESUMED
;
7500 event
->ptid
= minus_one_ptid
;
7504 if (target_is_non_stop_p () && event
->ptid
== null_ptid
)
7505 error (_("No process or thread specified in stop reply: %s"), buf
);
7508 /* When the stub wants to tell GDB about a new notification reply, it
7509 sends a notification (%Stop, for example). Those can come it at
7510 any time, hence, we have to make sure that any pending
7511 putpkt/getpkt sequence we're making is finished, before querying
7512 the stub for more events with the corresponding ack command
7513 (vStopped, for example). E.g., if we started a vStopped sequence
7514 immediately upon receiving the notification, something like this
7522 1.6) <-- (registers reply to step #1.3)
7524 Obviously, the reply in step #1.6 would be unexpected to a vStopped
7527 To solve this, whenever we parse a %Stop notification successfully,
7528 we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
7529 doing whatever we were doing:
7535 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
7536 2.5) <-- (registers reply to step #2.3)
7538 Eventually after step #2.5, we return to the event loop, which
7539 notices there's an event on the
7540 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
7541 associated callback --- the function below. At this point, we're
7542 always safe to start a vStopped sequence. :
7545 2.7) <-- T05 thread:2
7551 remote_target::remote_notif_get_pending_events (notif_client
*nc
)
7553 struct remote_state
*rs
= get_remote_state ();
7555 if (rs
->notif_state
->pending_event
[nc
->id
] != NULL
)
7558 fprintf_unfiltered (gdb_stdlog
,
7559 "notif: process: '%s' ack pending event\n",
7563 nc
->ack (this, nc
, rs
->buf
.data (),
7564 rs
->notif_state
->pending_event
[nc
->id
]);
7565 rs
->notif_state
->pending_event
[nc
->id
] = NULL
;
7569 getpkt (&rs
->buf
, 0);
7570 if (strcmp (rs
->buf
.data (), "OK") == 0)
7573 remote_notif_ack (this, nc
, rs
->buf
.data ());
7579 fprintf_unfiltered (gdb_stdlog
,
7580 "notif: process: '%s' no pending reply\n",
7585 /* Wrapper around remote_target::remote_notif_get_pending_events to
7586 avoid having to export the whole remote_target class. */
7589 remote_notif_get_pending_events (remote_target
*remote
, notif_client
*nc
)
7591 remote
->remote_notif_get_pending_events (nc
);
7594 /* Called when it is decided that STOP_REPLY holds the info of the
7595 event that is to be returned to the core. This function always
7596 destroys STOP_REPLY. */
7599 remote_target::process_stop_reply (struct stop_reply
*stop_reply
,
7600 struct target_waitstatus
*status
)
7604 *status
= stop_reply
->ws
;
7605 ptid
= stop_reply
->ptid
;
7607 /* If no thread/process was reported by the stub, assume the current
7609 if (ptid
== null_ptid
)
7610 ptid
= inferior_ptid
;
7612 if (status
->kind
!= TARGET_WAITKIND_EXITED
7613 && status
->kind
!= TARGET_WAITKIND_SIGNALLED
7614 && status
->kind
!= TARGET_WAITKIND_NO_RESUMED
)
7616 /* Expedited registers. */
7617 if (!stop_reply
->regcache
.empty ())
7619 struct regcache
*regcache
7620 = get_thread_arch_regcache (ptid
, stop_reply
->arch
);
7622 for (cached_reg_t
®
: stop_reply
->regcache
)
7624 regcache
->raw_supply (reg
.num
, reg
.data
);
7628 stop_reply
->regcache
.clear ();
7631 remote_notice_new_inferior (ptid
, 0);
7632 remote_thread_info
*remote_thr
= get_remote_thread_info (ptid
);
7633 remote_thr
->core
= stop_reply
->core
;
7634 remote_thr
->stop_reason
= stop_reply
->stop_reason
;
7635 remote_thr
->watch_data_address
= stop_reply
->watch_data_address
;
7636 remote_thr
->vcont_resumed
= 0;
7643 /* The non-stop mode version of target_wait. */
7646 remote_target::wait_ns (ptid_t ptid
, struct target_waitstatus
*status
, int options
)
7648 struct remote_state
*rs
= get_remote_state ();
7649 struct stop_reply
*stop_reply
;
7653 /* If in non-stop mode, get out of getpkt even if a
7654 notification is received. */
7656 ret
= getpkt_or_notif_sane (&rs
->buf
, 0 /* forever */, &is_notif
);
7659 if (ret
!= -1 && !is_notif
)
7662 case 'E': /* Error of some sort. */
7663 /* We're out of sync with the target now. Did it continue
7664 or not? We can't tell which thread it was in non-stop,
7665 so just ignore this. */
7666 warning (_("Remote failure reply: %s"), rs
->buf
.data ());
7668 case 'O': /* Console output. */
7669 remote_console_output (&rs
->buf
[1]);
7672 warning (_("Invalid remote reply: %s"), rs
->buf
.data ());
7676 /* Acknowledge a pending stop reply that may have arrived in the
7678 if (rs
->notif_state
->pending_event
[notif_client_stop
.id
] != NULL
)
7679 remote_notif_get_pending_events (¬if_client_stop
);
7681 /* If indeed we noticed a stop reply, we're done. */
7682 stop_reply
= queued_stop_reply (ptid
);
7683 if (stop_reply
!= NULL
)
7684 return process_stop_reply (stop_reply
, status
);
7686 /* Still no event. If we're just polling for an event, then
7687 return to the event loop. */
7688 if (options
& TARGET_WNOHANG
)
7690 status
->kind
= TARGET_WAITKIND_IGNORE
;
7691 return minus_one_ptid
;
7694 /* Otherwise do a blocking wait. */
7695 ret
= getpkt_or_notif_sane (&rs
->buf
, 1 /* forever */, &is_notif
);
7699 /* Wait until the remote machine stops, then return, storing status in
7700 STATUS just as `wait' would. */
7703 remote_target::wait_as (ptid_t ptid
, target_waitstatus
*status
, int options
)
7705 struct remote_state
*rs
= get_remote_state ();
7706 ptid_t event_ptid
= null_ptid
;
7708 struct stop_reply
*stop_reply
;
7712 status
->kind
= TARGET_WAITKIND_IGNORE
;
7713 status
->value
.integer
= 0;
7715 stop_reply
= queued_stop_reply (ptid
);
7716 if (stop_reply
!= NULL
)
7717 return process_stop_reply (stop_reply
, status
);
7719 if (rs
->cached_wait_status
)
7720 /* Use the cached wait status, but only once. */
7721 rs
->cached_wait_status
= 0;
7726 int forever
= ((options
& TARGET_WNOHANG
) == 0
7727 && rs
->wait_forever_enabled_p
);
7729 if (!rs
->waiting_for_stop_reply
)
7731 status
->kind
= TARGET_WAITKIND_NO_RESUMED
;
7732 return minus_one_ptid
;
7735 /* FIXME: cagney/1999-09-27: If we're in async mode we should
7736 _never_ wait for ever -> test on target_is_async_p().
7737 However, before we do that we need to ensure that the caller
7738 knows how to take the target into/out of async mode. */
7739 ret
= getpkt_or_notif_sane (&rs
->buf
, forever
, &is_notif
);
7741 /* GDB gets a notification. Return to core as this event is
7743 if (ret
!= -1 && is_notif
)
7744 return minus_one_ptid
;
7746 if (ret
== -1 && (options
& TARGET_WNOHANG
) != 0)
7747 return minus_one_ptid
;
7750 buf
= rs
->buf
.data ();
7752 /* Assume that the target has acknowledged Ctrl-C unless we receive
7753 an 'F' or 'O' packet. */
7754 if (buf
[0] != 'F' && buf
[0] != 'O')
7755 rs
->ctrlc_pending_p
= 0;
7759 case 'E': /* Error of some sort. */
7760 /* We're out of sync with the target now. Did it continue or
7761 not? Not is more likely, so report a stop. */
7762 rs
->waiting_for_stop_reply
= 0;
7764 warning (_("Remote failure reply: %s"), buf
);
7765 status
->kind
= TARGET_WAITKIND_STOPPED
;
7766 status
->value
.sig
= GDB_SIGNAL_0
;
7768 case 'F': /* File-I/O request. */
7769 /* GDB may access the inferior memory while handling the File-I/O
7770 request, but we don't want GDB accessing memory while waiting
7771 for a stop reply. See the comments in putpkt_binary. Set
7772 waiting_for_stop_reply to 0 temporarily. */
7773 rs
->waiting_for_stop_reply
= 0;
7774 remote_fileio_request (this, buf
, rs
->ctrlc_pending_p
);
7775 rs
->ctrlc_pending_p
= 0;
7776 /* GDB handled the File-I/O request, and the target is running
7777 again. Keep waiting for events. */
7778 rs
->waiting_for_stop_reply
= 1;
7780 case 'N': case 'T': case 'S': case 'X': case 'W':
7782 /* There is a stop reply to handle. */
7783 rs
->waiting_for_stop_reply
= 0;
7786 = (struct stop_reply
*) remote_notif_parse (this,
7790 event_ptid
= process_stop_reply (stop_reply
, status
);
7793 case 'O': /* Console output. */
7794 remote_console_output (buf
+ 1);
7797 if (rs
->last_sent_signal
!= GDB_SIGNAL_0
)
7799 /* Zero length reply means that we tried 'S' or 'C' and the
7800 remote system doesn't support it. */
7801 target_terminal::ours_for_output ();
7803 ("Can't send signals to this remote system. %s not sent.\n",
7804 gdb_signal_to_name (rs
->last_sent_signal
));
7805 rs
->last_sent_signal
= GDB_SIGNAL_0
;
7806 target_terminal::inferior ();
7808 strcpy (buf
, rs
->last_sent_step
? "s" : "c");
7814 warning (_("Invalid remote reply: %s"), buf
);
7818 if (status
->kind
== TARGET_WAITKIND_NO_RESUMED
)
7819 return minus_one_ptid
;
7820 else if (status
->kind
== TARGET_WAITKIND_IGNORE
)
7822 /* Nothing interesting happened. If we're doing a non-blocking
7823 poll, we're done. Otherwise, go back to waiting. */
7824 if (options
& TARGET_WNOHANG
)
7825 return minus_one_ptid
;
7829 else if (status
->kind
!= TARGET_WAITKIND_EXITED
7830 && status
->kind
!= TARGET_WAITKIND_SIGNALLED
)
7832 if (event_ptid
!= null_ptid
)
7833 record_currthread (rs
, event_ptid
);
7835 event_ptid
= inferior_ptid
;
7838 /* A process exit. Invalidate our notion of current thread. */
7839 record_currthread (rs
, minus_one_ptid
);
7844 /* Wait until the remote machine stops, then return, storing status in
7845 STATUS just as `wait' would. */
7848 remote_target::wait (ptid_t ptid
, struct target_waitstatus
*status
, int options
)
7852 if (target_is_non_stop_p ())
7853 event_ptid
= wait_ns (ptid
, status
, options
);
7855 event_ptid
= wait_as (ptid
, status
, options
);
7857 if (target_is_async_p ())
7859 remote_state
*rs
= get_remote_state ();
7861 /* If there are are events left in the queue tell the event loop
7863 if (!rs
->stop_reply_queue
.empty ())
7864 mark_async_event_handler (rs
->remote_async_inferior_event_token
);
7870 /* Fetch a single register using a 'p' packet. */
7873 remote_target::fetch_register_using_p (struct regcache
*regcache
,
7876 struct gdbarch
*gdbarch
= regcache
->arch ();
7877 struct remote_state
*rs
= get_remote_state ();
7879 gdb_byte
*regp
= (gdb_byte
*) alloca (register_size (gdbarch
, reg
->regnum
));
7882 if (packet_support (PACKET_p
) == PACKET_DISABLE
)
7885 if (reg
->pnum
== -1)
7888 p
= rs
->buf
.data ();
7890 p
+= hexnumstr (p
, reg
->pnum
);
7893 getpkt (&rs
->buf
, 0);
7895 buf
= rs
->buf
.data ();
7897 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_p
]))
7901 case PACKET_UNKNOWN
:
7904 error (_("Could not fetch register \"%s\"; remote failure reply '%s'"),
7905 gdbarch_register_name (regcache
->arch (),
7910 /* If this register is unfetchable, tell the regcache. */
7913 regcache
->raw_supply (reg
->regnum
, NULL
);
7917 /* Otherwise, parse and supply the value. */
7923 error (_("fetch_register_using_p: early buf termination"));
7925 regp
[i
++] = fromhex (p
[0]) * 16 + fromhex (p
[1]);
7928 regcache
->raw_supply (reg
->regnum
, regp
);
7932 /* Fetch the registers included in the target's 'g' packet. */
7935 remote_target::send_g_packet ()
7937 struct remote_state
*rs
= get_remote_state ();
7940 xsnprintf (rs
->buf
.data (), get_remote_packet_size (), "g");
7942 getpkt (&rs
->buf
, 0);
7943 if (packet_check_result (rs
->buf
) == PACKET_ERROR
)
7944 error (_("Could not read registers; remote failure reply '%s'"),
7947 /* We can get out of synch in various cases. If the first character
7948 in the buffer is not a hex character, assume that has happened
7949 and try to fetch another packet to read. */
7950 while ((rs
->buf
[0] < '0' || rs
->buf
[0] > '9')
7951 && (rs
->buf
[0] < 'A' || rs
->buf
[0] > 'F')
7952 && (rs
->buf
[0] < 'a' || rs
->buf
[0] > 'f')
7953 && rs
->buf
[0] != 'x') /* New: unavailable register value. */
7956 fprintf_unfiltered (gdb_stdlog
,
7957 "Bad register packet; fetching a new packet\n");
7958 getpkt (&rs
->buf
, 0);
7961 buf_len
= strlen (rs
->buf
.data ());
7963 /* Sanity check the received packet. */
7964 if (buf_len
% 2 != 0)
7965 error (_("Remote 'g' packet reply is of odd length: %s"), rs
->buf
.data ());
7971 remote_target::process_g_packet (struct regcache
*regcache
)
7973 struct gdbarch
*gdbarch
= regcache
->arch ();
7974 struct remote_state
*rs
= get_remote_state ();
7975 remote_arch_state
*rsa
= rs
->get_remote_arch_state (gdbarch
);
7980 buf_len
= strlen (rs
->buf
.data ());
7982 /* Further sanity checks, with knowledge of the architecture. */
7983 if (buf_len
> 2 * rsa
->sizeof_g_packet
)
7984 error (_("Remote 'g' packet reply is too long (expected %ld bytes, got %d "
7986 rsa
->sizeof_g_packet
, buf_len
/ 2,
7989 /* Save the size of the packet sent to us by the target. It is used
7990 as a heuristic when determining the max size of packets that the
7991 target can safely receive. */
7992 if (rsa
->actual_register_packet_size
== 0)
7993 rsa
->actual_register_packet_size
= buf_len
;
7995 /* If this is smaller than we guessed the 'g' packet would be,
7996 update our records. A 'g' reply that doesn't include a register's
7997 value implies either that the register is not available, or that
7998 the 'p' packet must be used. */
7999 if (buf_len
< 2 * rsa
->sizeof_g_packet
)
8001 long sizeof_g_packet
= buf_len
/ 2;
8003 for (i
= 0; i
< gdbarch_num_regs (gdbarch
); i
++)
8005 long offset
= rsa
->regs
[i
].offset
;
8006 long reg_size
= register_size (gdbarch
, i
);
8008 if (rsa
->regs
[i
].pnum
== -1)
8011 if (offset
>= sizeof_g_packet
)
8012 rsa
->regs
[i
].in_g_packet
= 0;
8013 else if (offset
+ reg_size
> sizeof_g_packet
)
8014 error (_("Truncated register %d in remote 'g' packet"), i
);
8016 rsa
->regs
[i
].in_g_packet
= 1;
8019 /* Looks valid enough, we can assume this is the correct length
8020 for a 'g' packet. It's important not to adjust
8021 rsa->sizeof_g_packet if we have truncated registers otherwise
8022 this "if" won't be run the next time the method is called
8023 with a packet of the same size and one of the internal errors
8024 below will trigger instead. */
8025 rsa
->sizeof_g_packet
= sizeof_g_packet
;
8028 regs
= (char *) alloca (rsa
->sizeof_g_packet
);
8030 /* Unimplemented registers read as all bits zero. */
8031 memset (regs
, 0, rsa
->sizeof_g_packet
);
8033 /* Reply describes registers byte by byte, each byte encoded as two
8034 hex characters. Suck them all up, then supply them to the
8035 register cacheing/storage mechanism. */
8037 p
= rs
->buf
.data ();
8038 for (i
= 0; i
< rsa
->sizeof_g_packet
; i
++)
8040 if (p
[0] == 0 || p
[1] == 0)
8041 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
8042 internal_error (__FILE__
, __LINE__
,
8043 _("unexpected end of 'g' packet reply"));
8045 if (p
[0] == 'x' && p
[1] == 'x')
8046 regs
[i
] = 0; /* 'x' */
8048 regs
[i
] = fromhex (p
[0]) * 16 + fromhex (p
[1]);
8052 for (i
= 0; i
< gdbarch_num_regs (gdbarch
); i
++)
8054 struct packet_reg
*r
= &rsa
->regs
[i
];
8055 long reg_size
= register_size (gdbarch
, i
);
8059 if ((r
->offset
+ reg_size
) * 2 > strlen (rs
->buf
.data ()))
8060 /* This shouldn't happen - we adjusted in_g_packet above. */
8061 internal_error (__FILE__
, __LINE__
,
8062 _("unexpected end of 'g' packet reply"));
8063 else if (rs
->buf
[r
->offset
* 2] == 'x')
8065 gdb_assert (r
->offset
* 2 < strlen (rs
->buf
.data ()));
8066 /* The register isn't available, mark it as such (at
8067 the same time setting the value to zero). */
8068 regcache
->raw_supply (r
->regnum
, NULL
);
8071 regcache
->raw_supply (r
->regnum
, regs
+ r
->offset
);
8077 remote_target::fetch_registers_using_g (struct regcache
*regcache
)
8080 process_g_packet (regcache
);
8083 /* Make the remote selected traceframe match GDB's selected
8087 remote_target::set_remote_traceframe ()
8090 struct remote_state
*rs
= get_remote_state ();
8092 if (rs
->remote_traceframe_number
== get_traceframe_number ())
8095 /* Avoid recursion, remote_trace_find calls us again. */
8096 rs
->remote_traceframe_number
= get_traceframe_number ();
8098 newnum
= target_trace_find (tfind_number
,
8099 get_traceframe_number (), 0, 0, NULL
);
8101 /* Should not happen. If it does, all bets are off. */
8102 if (newnum
!= get_traceframe_number ())
8103 warning (_("could not set remote traceframe"));
8107 remote_target::fetch_registers (struct regcache
*regcache
, int regnum
)
8109 struct gdbarch
*gdbarch
= regcache
->arch ();
8110 struct remote_state
*rs
= get_remote_state ();
8111 remote_arch_state
*rsa
= rs
->get_remote_arch_state (gdbarch
);
8114 set_remote_traceframe ();
8115 set_general_thread (regcache
->ptid ());
8119 packet_reg
*reg
= packet_reg_from_regnum (gdbarch
, rsa
, regnum
);
8121 gdb_assert (reg
!= NULL
);
8123 /* If this register might be in the 'g' packet, try that first -
8124 we are likely to read more than one register. If this is the
8125 first 'g' packet, we might be overly optimistic about its
8126 contents, so fall back to 'p'. */
8127 if (reg
->in_g_packet
)
8129 fetch_registers_using_g (regcache
);
8130 if (reg
->in_g_packet
)
8134 if (fetch_register_using_p (regcache
, reg
))
8137 /* This register is not available. */
8138 regcache
->raw_supply (reg
->regnum
, NULL
);
8143 fetch_registers_using_g (regcache
);
8145 for (i
= 0; i
< gdbarch_num_regs (gdbarch
); i
++)
8146 if (!rsa
->regs
[i
].in_g_packet
)
8147 if (!fetch_register_using_p (regcache
, &rsa
->regs
[i
]))
8149 /* This register is not available. */
8150 regcache
->raw_supply (i
, NULL
);
8154 /* Prepare to store registers. Since we may send them all (using a
8155 'G' request), we have to read out the ones we don't want to change
8159 remote_target::prepare_to_store (struct regcache
*regcache
)
8161 struct remote_state
*rs
= get_remote_state ();
8162 remote_arch_state
*rsa
= rs
->get_remote_arch_state (regcache
->arch ());
8165 /* Make sure the entire registers array is valid. */
8166 switch (packet_support (PACKET_P
))
8168 case PACKET_DISABLE
:
8169 case PACKET_SUPPORT_UNKNOWN
:
8170 /* Make sure all the necessary registers are cached. */
8171 for (i
= 0; i
< gdbarch_num_regs (regcache
->arch ()); i
++)
8172 if (rsa
->regs
[i
].in_g_packet
)
8173 regcache
->raw_update (rsa
->regs
[i
].regnum
);
8180 /* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
8181 packet was not recognized. */
8184 remote_target::store_register_using_P (const struct regcache
*regcache
,
8187 struct gdbarch
*gdbarch
= regcache
->arch ();
8188 struct remote_state
*rs
= get_remote_state ();
8189 /* Try storing a single register. */
8190 char *buf
= rs
->buf
.data ();
8191 gdb_byte
*regp
= (gdb_byte
*) alloca (register_size (gdbarch
, reg
->regnum
));
8194 if (packet_support (PACKET_P
) == PACKET_DISABLE
)
8197 if (reg
->pnum
== -1)
8200 xsnprintf (buf
, get_remote_packet_size (), "P%s=", phex_nz (reg
->pnum
, 0));
8201 p
= buf
+ strlen (buf
);
8202 regcache
->raw_collect (reg
->regnum
, regp
);
8203 bin2hex (regp
, p
, register_size (gdbarch
, reg
->regnum
));
8205 getpkt (&rs
->buf
, 0);
8207 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_P
]))
8212 error (_("Could not write register \"%s\"; remote failure reply '%s'"),
8213 gdbarch_register_name (gdbarch
, reg
->regnum
), rs
->buf
.data ());
8214 case PACKET_UNKNOWN
:
8217 internal_error (__FILE__
, __LINE__
, _("Bad result from packet_ok"));
8221 /* Store register REGNUM, or all registers if REGNUM == -1, from the
8222 contents of the register cache buffer. FIXME: ignores errors. */
8225 remote_target::store_registers_using_G (const struct regcache
*regcache
)
8227 struct remote_state
*rs
= get_remote_state ();
8228 remote_arch_state
*rsa
= rs
->get_remote_arch_state (regcache
->arch ());
8232 /* Extract all the registers in the regcache copying them into a
8237 regs
= (gdb_byte
*) alloca (rsa
->sizeof_g_packet
);
8238 memset (regs
, 0, rsa
->sizeof_g_packet
);
8239 for (i
= 0; i
< gdbarch_num_regs (regcache
->arch ()); i
++)
8241 struct packet_reg
*r
= &rsa
->regs
[i
];
8244 regcache
->raw_collect (r
->regnum
, regs
+ r
->offset
);
8248 /* Command describes registers byte by byte,
8249 each byte encoded as two hex characters. */
8250 p
= rs
->buf
.data ();
8252 bin2hex (regs
, p
, rsa
->sizeof_g_packet
);
8254 getpkt (&rs
->buf
, 0);
8255 if (packet_check_result (rs
->buf
) == PACKET_ERROR
)
8256 error (_("Could not write registers; remote failure reply '%s'"),
8260 /* Store register REGNUM, or all registers if REGNUM == -1, from the contents
8261 of the register cache buffer. FIXME: ignores errors. */
8264 remote_target::store_registers (struct regcache
*regcache
, int regnum
)
8266 struct gdbarch
*gdbarch
= regcache
->arch ();
8267 struct remote_state
*rs
= get_remote_state ();
8268 remote_arch_state
*rsa
= rs
->get_remote_arch_state (gdbarch
);
8271 set_remote_traceframe ();
8272 set_general_thread (regcache
->ptid ());
8276 packet_reg
*reg
= packet_reg_from_regnum (gdbarch
, rsa
, regnum
);
8278 gdb_assert (reg
!= NULL
);
8280 /* Always prefer to store registers using the 'P' packet if
8281 possible; we often change only a small number of registers.
8282 Sometimes we change a larger number; we'd need help from a
8283 higher layer to know to use 'G'. */
8284 if (store_register_using_P (regcache
, reg
))
8287 /* For now, don't complain if we have no way to write the
8288 register. GDB loses track of unavailable registers too
8289 easily. Some day, this may be an error. We don't have
8290 any way to read the register, either... */
8291 if (!reg
->in_g_packet
)
8294 store_registers_using_G (regcache
);
8298 store_registers_using_G (regcache
);
8300 for (i
= 0; i
< gdbarch_num_regs (gdbarch
); i
++)
8301 if (!rsa
->regs
[i
].in_g_packet
)
8302 if (!store_register_using_P (regcache
, &rsa
->regs
[i
]))
8303 /* See above for why we do not issue an error here. */
8308 /* Return the number of hex digits in num. */
8311 hexnumlen (ULONGEST num
)
8315 for (i
= 0; num
!= 0; i
++)
8318 return std::max (i
, 1);
8321 /* Set BUF to the minimum number of hex digits representing NUM. */
8324 hexnumstr (char *buf
, ULONGEST num
)
8326 int len
= hexnumlen (num
);
8328 return hexnumnstr (buf
, num
, len
);
8332 /* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
8335 hexnumnstr (char *buf
, ULONGEST num
, int width
)
8341 for (i
= width
- 1; i
>= 0; i
--)
8343 buf
[i
] = "0123456789abcdef"[(num
& 0xf)];
8350 /* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
8353 remote_address_masked (CORE_ADDR addr
)
8355 unsigned int address_size
= remote_address_size
;
8357 /* If "remoteaddresssize" was not set, default to target address size. */
8359 address_size
= gdbarch_addr_bit (target_gdbarch ());
8361 if (address_size
> 0
8362 && address_size
< (sizeof (ULONGEST
) * 8))
8364 /* Only create a mask when that mask can safely be constructed
8365 in a ULONGEST variable. */
8368 mask
= (mask
<< address_size
) - 1;
8374 /* Determine whether the remote target supports binary downloading.
8375 This is accomplished by sending a no-op memory write of zero length
8376 to the target at the specified address. It does not suffice to send
8377 the whole packet, since many stubs strip the eighth bit and
8378 subsequently compute a wrong checksum, which causes real havoc with
8381 NOTE: This can still lose if the serial line is not eight-bit
8382 clean. In cases like this, the user should clear "remote
8386 remote_target::check_binary_download (CORE_ADDR addr
)
8388 struct remote_state
*rs
= get_remote_state ();
8390 switch (packet_support (PACKET_X
))
8392 case PACKET_DISABLE
:
8396 case PACKET_SUPPORT_UNKNOWN
:
8400 p
= rs
->buf
.data ();
8402 p
+= hexnumstr (p
, (ULONGEST
) addr
);
8404 p
+= hexnumstr (p
, (ULONGEST
) 0);
8408 putpkt_binary (rs
->buf
.data (), (int) (p
- rs
->buf
.data ()));
8409 getpkt (&rs
->buf
, 0);
8411 if (rs
->buf
[0] == '\0')
8414 fprintf_unfiltered (gdb_stdlog
,
8415 "binary downloading NOT "
8416 "supported by target\n");
8417 remote_protocol_packets
[PACKET_X
].support
= PACKET_DISABLE
;
8422 fprintf_unfiltered (gdb_stdlog
,
8423 "binary downloading supported by target\n");
8424 remote_protocol_packets
[PACKET_X
].support
= PACKET_ENABLE
;
8431 /* Helper function to resize the payload in order to try to get a good
8432 alignment. We try to write an amount of data such that the next write will
8433 start on an address aligned on REMOTE_ALIGN_WRITES. */
8436 align_for_efficient_write (int todo
, CORE_ADDR memaddr
)
8438 return ((memaddr
+ todo
) & ~(REMOTE_ALIGN_WRITES
- 1)) - memaddr
;
8441 /* Write memory data directly to the remote machine.
8442 This does not inform the data cache; the data cache uses this.
8443 HEADER is the starting part of the packet.
8444 MEMADDR is the address in the remote memory space.
8445 MYADDR is the address of the buffer in our space.
8446 LEN_UNITS is the number of addressable units to write.
8447 UNIT_SIZE is the length in bytes of an addressable unit.
8448 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
8449 should send data as binary ('X'), or hex-encoded ('M').
8451 The function creates packet of the form
8452 <HEADER><ADDRESS>,<LENGTH>:<DATA>
8454 where encoding of <DATA> is terminated by PACKET_FORMAT.
8456 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
8459 Return the transferred status, error or OK (an
8460 'enum target_xfer_status' value). Save the number of addressable units
8461 transferred in *XFERED_LEN_UNITS. Only transfer a single packet.
8463 On a platform with an addressable memory size of 2 bytes (UNIT_SIZE == 2), an
8464 exchange between gdb and the stub could look like (?? in place of the
8470 -> $M1000,3:eeeeffffeeee#??
8474 <- eeeeffffeeeedddd */
8477 remote_target::remote_write_bytes_aux (const char *header
, CORE_ADDR memaddr
,
8478 const gdb_byte
*myaddr
,
8481 ULONGEST
*xfered_len_units
,
8482 char packet_format
, int use_length
)
8484 struct remote_state
*rs
= get_remote_state ();
8490 int payload_capacity_bytes
;
8491 int payload_length_bytes
;
8493 if (packet_format
!= 'X' && packet_format
!= 'M')
8494 internal_error (__FILE__
, __LINE__
,
8495 _("remote_write_bytes_aux: bad packet format"));
8498 return TARGET_XFER_EOF
;
8500 payload_capacity_bytes
= get_memory_write_packet_size ();
8502 /* The packet buffer will be large enough for the payload;
8503 get_memory_packet_size ensures this. */
8506 /* Compute the size of the actual payload by subtracting out the
8507 packet header and footer overhead: "$M<memaddr>,<len>:...#nn". */
8509 payload_capacity_bytes
-= strlen ("$,:#NN");
8511 /* The comma won't be used. */
8512 payload_capacity_bytes
+= 1;
8513 payload_capacity_bytes
-= strlen (header
);
8514 payload_capacity_bytes
-= hexnumlen (memaddr
);
8516 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
8518 strcat (rs
->buf
.data (), header
);
8519 p
= rs
->buf
.data () + strlen (header
);
8521 /* Compute a best guess of the number of bytes actually transfered. */
8522 if (packet_format
== 'X')
8524 /* Best guess at number of bytes that will fit. */
8525 todo_units
= std::min (len_units
,
8526 (ULONGEST
) payload_capacity_bytes
/ unit_size
);
8528 payload_capacity_bytes
-= hexnumlen (todo_units
);
8529 todo_units
= std::min (todo_units
, payload_capacity_bytes
/ unit_size
);
8533 /* Number of bytes that will fit. */
8535 = std::min (len_units
,
8536 (ULONGEST
) (payload_capacity_bytes
/ unit_size
) / 2);
8538 payload_capacity_bytes
-= hexnumlen (todo_units
);
8539 todo_units
= std::min (todo_units
,
8540 (payload_capacity_bytes
/ unit_size
) / 2);
8543 if (todo_units
<= 0)
8544 internal_error (__FILE__
, __LINE__
,
8545 _("minimum packet size too small to write data"));
8547 /* If we already need another packet, then try to align the end
8548 of this packet to a useful boundary. */
8549 if (todo_units
> 2 * REMOTE_ALIGN_WRITES
&& todo_units
< len_units
)
8550 todo_units
= align_for_efficient_write (todo_units
, memaddr
);
8552 /* Append "<memaddr>". */
8553 memaddr
= remote_address_masked (memaddr
);
8554 p
+= hexnumstr (p
, (ULONGEST
) memaddr
);
8561 /* Append the length and retain its location and size. It may need to be
8562 adjusted once the packet body has been created. */
8564 plenlen
= hexnumstr (p
, (ULONGEST
) todo_units
);
8572 /* Append the packet body. */
8573 if (packet_format
== 'X')
8575 /* Binary mode. Send target system values byte by byte, in
8576 increasing byte addresses. Only escape certain critical
8578 payload_length_bytes
=
8579 remote_escape_output (myaddr
, todo_units
, unit_size
, (gdb_byte
*) p
,
8580 &units_written
, payload_capacity_bytes
);
8582 /* If not all TODO units fit, then we'll need another packet. Make
8583 a second try to keep the end of the packet aligned. Don't do
8584 this if the packet is tiny. */
8585 if (units_written
< todo_units
&& units_written
> 2 * REMOTE_ALIGN_WRITES
)
8589 new_todo_units
= align_for_efficient_write (units_written
, memaddr
);
8591 if (new_todo_units
!= units_written
)
8592 payload_length_bytes
=
8593 remote_escape_output (myaddr
, new_todo_units
, unit_size
,
8594 (gdb_byte
*) p
, &units_written
,
8595 payload_capacity_bytes
);
8598 p
+= payload_length_bytes
;
8599 if (use_length
&& units_written
< todo_units
)
8601 /* Escape chars have filled up the buffer prematurely,
8602 and we have actually sent fewer units than planned.
8603 Fix-up the length field of the packet. Use the same
8604 number of characters as before. */
8605 plen
+= hexnumnstr (plen
, (ULONGEST
) units_written
,
8607 *plen
= ':'; /* overwrite \0 from hexnumnstr() */
8612 /* Normal mode: Send target system values byte by byte, in
8613 increasing byte addresses. Each byte is encoded as a two hex
8615 p
+= 2 * bin2hex (myaddr
, p
, todo_units
* unit_size
);
8616 units_written
= todo_units
;
8619 putpkt_binary (rs
->buf
.data (), (int) (p
- rs
->buf
.data ()));
8620 getpkt (&rs
->buf
, 0);
8622 if (rs
->buf
[0] == 'E')
8623 return TARGET_XFER_E_IO
;
8625 /* Return UNITS_WRITTEN, not TODO_UNITS, in case escape chars caused us to
8626 send fewer units than we'd planned. */
8627 *xfered_len_units
= (ULONGEST
) units_written
;
8628 return (*xfered_len_units
!= 0) ? TARGET_XFER_OK
: TARGET_XFER_EOF
;
8631 /* Write memory data directly to the remote machine.
8632 This does not inform the data cache; the data cache uses this.
8633 MEMADDR is the address in the remote memory space.
8634 MYADDR is the address of the buffer in our space.
8635 LEN is the number of bytes.
8637 Return the transferred status, error or OK (an
8638 'enum target_xfer_status' value). Save the number of bytes
8639 transferred in *XFERED_LEN. Only transfer a single packet. */
8642 remote_target::remote_write_bytes (CORE_ADDR memaddr
, const gdb_byte
*myaddr
,
8643 ULONGEST len
, int unit_size
,
8644 ULONGEST
*xfered_len
)
8646 const char *packet_format
= NULL
;
8648 /* Check whether the target supports binary download. */
8649 check_binary_download (memaddr
);
8651 switch (packet_support (PACKET_X
))
8654 packet_format
= "X";
8656 case PACKET_DISABLE
:
8657 packet_format
= "M";
8659 case PACKET_SUPPORT_UNKNOWN
:
8660 internal_error (__FILE__
, __LINE__
,
8661 _("remote_write_bytes: bad internal state"));
8663 internal_error (__FILE__
, __LINE__
, _("bad switch"));
8666 return remote_write_bytes_aux (packet_format
,
8667 memaddr
, myaddr
, len
, unit_size
, xfered_len
,
8668 packet_format
[0], 1);
8671 /* Read memory data directly from the remote machine.
8672 This does not use the data cache; the data cache uses this.
8673 MEMADDR is the address in the remote memory space.
8674 MYADDR is the address of the buffer in our space.
8675 LEN_UNITS is the number of addressable memory units to read..
8676 UNIT_SIZE is the length in bytes of an addressable unit.
8678 Return the transferred status, error or OK (an
8679 'enum target_xfer_status' value). Save the number of bytes
8680 transferred in *XFERED_LEN_UNITS.
8682 See the comment of remote_write_bytes_aux for an example of
8683 memory read/write exchange between gdb and the stub. */
8686 remote_target::remote_read_bytes_1 (CORE_ADDR memaddr
, gdb_byte
*myaddr
,
8688 int unit_size
, ULONGEST
*xfered_len_units
)
8690 struct remote_state
*rs
= get_remote_state ();
8691 int buf_size_bytes
; /* Max size of packet output buffer. */
8696 buf_size_bytes
= get_memory_read_packet_size ();
8697 /* The packet buffer will be large enough for the payload;
8698 get_memory_packet_size ensures this. */
8700 /* Number of units that will fit. */
8701 todo_units
= std::min (len_units
,
8702 (ULONGEST
) (buf_size_bytes
/ unit_size
) / 2);
8704 /* Construct "m"<memaddr>","<len>". */
8705 memaddr
= remote_address_masked (memaddr
);
8706 p
= rs
->buf
.data ();
8708 p
+= hexnumstr (p
, (ULONGEST
) memaddr
);
8710 p
+= hexnumstr (p
, (ULONGEST
) todo_units
);
8713 getpkt (&rs
->buf
, 0);
8714 if (rs
->buf
[0] == 'E'
8715 && isxdigit (rs
->buf
[1]) && isxdigit (rs
->buf
[2])
8716 && rs
->buf
[3] == '\0')
8717 return TARGET_XFER_E_IO
;
8718 /* Reply describes memory byte by byte, each byte encoded as two hex
8720 p
= rs
->buf
.data ();
8721 decoded_bytes
= hex2bin (p
, myaddr
, todo_units
* unit_size
);
8722 /* Return what we have. Let higher layers handle partial reads. */
8723 *xfered_len_units
= (ULONGEST
) (decoded_bytes
/ unit_size
);
8724 return (*xfered_len_units
!= 0) ? TARGET_XFER_OK
: TARGET_XFER_EOF
;
8727 /* Using the set of read-only target sections of remote, read live
8730 For interface/parameters/return description see target.h,
8734 remote_target::remote_xfer_live_readonly_partial (gdb_byte
*readbuf
,
8738 ULONGEST
*xfered_len
)
8740 struct target_section
*secp
;
8741 struct target_section_table
*table
;
8743 secp
= target_section_by_addr (this, memaddr
);
8745 && (bfd_section_flags (secp
->the_bfd_section
) & SEC_READONLY
))
8747 struct target_section
*p
;
8748 ULONGEST memend
= memaddr
+ len
;
8750 table
= target_get_section_table (this);
8752 for (p
= table
->sections
; p
< table
->sections_end
; p
++)
8754 if (memaddr
>= p
->addr
)
8756 if (memend
<= p
->endaddr
)
8758 /* Entire transfer is within this section. */
8759 return remote_read_bytes_1 (memaddr
, readbuf
, len
, unit_size
,
8762 else if (memaddr
>= p
->endaddr
)
8764 /* This section ends before the transfer starts. */
8769 /* This section overlaps the transfer. Just do half. */
8770 len
= p
->endaddr
- memaddr
;
8771 return remote_read_bytes_1 (memaddr
, readbuf
, len
, unit_size
,
8778 return TARGET_XFER_EOF
;
8781 /* Similar to remote_read_bytes_1, but it reads from the remote stub
8782 first if the requested memory is unavailable in traceframe.
8783 Otherwise, fall back to remote_read_bytes_1. */
8786 remote_target::remote_read_bytes (CORE_ADDR memaddr
,
8787 gdb_byte
*myaddr
, ULONGEST len
, int unit_size
,
8788 ULONGEST
*xfered_len
)
8791 return TARGET_XFER_EOF
;
8793 if (get_traceframe_number () != -1)
8795 std::vector
<mem_range
> available
;
8797 /* If we fail to get the set of available memory, then the
8798 target does not support querying traceframe info, and so we
8799 attempt reading from the traceframe anyway (assuming the
8800 target implements the old QTro packet then). */
8801 if (traceframe_available_memory (&available
, memaddr
, len
))
8803 if (available
.empty () || available
[0].start
!= memaddr
)
8805 enum target_xfer_status res
;
8807 /* Don't read into the traceframe's available
8809 if (!available
.empty ())
8811 LONGEST oldlen
= len
;
8813 len
= available
[0].start
- memaddr
;
8814 gdb_assert (len
<= oldlen
);
8817 /* This goes through the topmost target again. */
8818 res
= remote_xfer_live_readonly_partial (myaddr
, memaddr
,
8819 len
, unit_size
, xfered_len
);
8820 if (res
== TARGET_XFER_OK
)
8821 return TARGET_XFER_OK
;
8824 /* No use trying further, we know some memory starting
8825 at MEMADDR isn't available. */
8827 return (*xfered_len
!= 0) ?
8828 TARGET_XFER_UNAVAILABLE
: TARGET_XFER_EOF
;
8832 /* Don't try to read more than how much is available, in
8833 case the target implements the deprecated QTro packet to
8834 cater for older GDBs (the target's knowledge of read-only
8835 sections may be outdated by now). */
8836 len
= available
[0].length
;
8840 return remote_read_bytes_1 (memaddr
, myaddr
, len
, unit_size
, xfered_len
);
8845 /* Sends a packet with content determined by the printf format string
8846 FORMAT and the remaining arguments, then gets the reply. Returns
8847 whether the packet was a success, a failure, or unknown. */
8850 remote_target::remote_send_printf (const char *format
, ...)
8852 struct remote_state
*rs
= get_remote_state ();
8853 int max_size
= get_remote_packet_size ();
8856 va_start (ap
, format
);
8859 int size
= vsnprintf (rs
->buf
.data (), max_size
, format
, ap
);
8863 if (size
>= max_size
)
8864 internal_error (__FILE__
, __LINE__
, _("Too long remote packet."));
8866 if (putpkt (rs
->buf
) < 0)
8867 error (_("Communication problem with target."));
8870 getpkt (&rs
->buf
, 0);
8872 return packet_check_result (rs
->buf
);
8875 /* Flash writing can take quite some time. We'll set
8876 effectively infinite timeout for flash operations.
8877 In future, we'll need to decide on a better approach. */
8878 static const int remote_flash_timeout
= 1000;
8881 remote_target::flash_erase (ULONGEST address
, LONGEST length
)
8883 int addr_size
= gdbarch_addr_bit (target_gdbarch ()) / 8;
8884 enum packet_result ret
;
8885 scoped_restore restore_timeout
8886 = make_scoped_restore (&remote_timeout
, remote_flash_timeout
);
8888 ret
= remote_send_printf ("vFlashErase:%s,%s",
8889 phex (address
, addr_size
),
8893 case PACKET_UNKNOWN
:
8894 error (_("Remote target does not support flash erase"));
8896 error (_("Error erasing flash with vFlashErase packet"));
8903 remote_target::remote_flash_write (ULONGEST address
,
8904 ULONGEST length
, ULONGEST
*xfered_len
,
8905 const gdb_byte
*data
)
8907 scoped_restore restore_timeout
8908 = make_scoped_restore (&remote_timeout
, remote_flash_timeout
);
8909 return remote_write_bytes_aux ("vFlashWrite:", address
, data
, length
, 1,
8914 remote_target::flash_done ()
8918 scoped_restore restore_timeout
8919 = make_scoped_restore (&remote_timeout
, remote_flash_timeout
);
8921 ret
= remote_send_printf ("vFlashDone");
8925 case PACKET_UNKNOWN
:
8926 error (_("Remote target does not support vFlashDone"));
8928 error (_("Error finishing flash operation"));
8935 remote_target::files_info ()
8937 puts_filtered ("Debugging a target over a serial line.\n");
8940 /* Stuff for dealing with the packets which are part of this protocol.
8941 See comment at top of file for details. */
8943 /* Close/unpush the remote target, and throw a TARGET_CLOSE_ERROR
8944 error to higher layers. Called when a serial error is detected.
8945 The exception message is STRING, followed by a colon and a blank,
8946 the system error message for errno at function entry and final dot
8947 for output compatibility with throw_perror_with_name. */
8950 unpush_and_perror (const char *string
)
8952 int saved_errno
= errno
;
8954 remote_unpush_target ();
8955 throw_error (TARGET_CLOSE_ERROR
, "%s: %s.", string
,
8956 safe_strerror (saved_errno
));
8959 /* Read a single character from the remote end. The current quit
8960 handler is overridden to avoid quitting in the middle of packet
8961 sequence, as that would break communication with the remote server.
8962 See remote_serial_quit_handler for more detail. */
8965 remote_target::readchar (int timeout
)
8968 struct remote_state
*rs
= get_remote_state ();
8971 scoped_restore restore_quit_target
8972 = make_scoped_restore (&curr_quit_handler_target
, this);
8973 scoped_restore restore_quit
8974 = make_scoped_restore (&quit_handler
, ::remote_serial_quit_handler
);
8976 rs
->got_ctrlc_during_io
= 0;
8978 ch
= serial_readchar (rs
->remote_desc
, timeout
);
8980 if (rs
->got_ctrlc_during_io
)
8987 switch ((enum serial_rc
) ch
)
8990 remote_unpush_target ();
8991 throw_error (TARGET_CLOSE_ERROR
, _("Remote connection closed"));
8994 unpush_and_perror (_("Remote communication error. "
8995 "Target disconnected."));
8997 case SERIAL_TIMEOUT
:
9003 /* Wrapper for serial_write that closes the target and throws if
9004 writing fails. The current quit handler is overridden to avoid
9005 quitting in the middle of packet sequence, as that would break
9006 communication with the remote server. See
9007 remote_serial_quit_handler for more detail. */
9010 remote_target::remote_serial_write (const char *str
, int len
)
9012 struct remote_state
*rs
= get_remote_state ();
9014 scoped_restore restore_quit_target
9015 = make_scoped_restore (&curr_quit_handler_target
, this);
9016 scoped_restore restore_quit
9017 = make_scoped_restore (&quit_handler
, ::remote_serial_quit_handler
);
9019 rs
->got_ctrlc_during_io
= 0;
9021 if (serial_write (rs
->remote_desc
, str
, len
))
9023 unpush_and_perror (_("Remote communication error. "
9024 "Target disconnected."));
9027 if (rs
->got_ctrlc_during_io
)
9031 /* Return a string representing an escaped version of BUF, of len N.
9032 E.g. \n is converted to \\n, \t to \\t, etc. */
9035 escape_buffer (const char *buf
, int n
)
9039 stb
.putstrn (buf
, n
, '\\');
9040 return std::move (stb
.string ());
9043 /* Display a null-terminated packet on stdout, for debugging, using C
9047 print_packet (const char *buf
)
9049 puts_filtered ("\"");
9050 fputstr_filtered (buf
, '"', gdb_stdout
);
9051 puts_filtered ("\"");
9055 remote_target::putpkt (const char *buf
)
9057 return putpkt_binary (buf
, strlen (buf
));
9060 /* Wrapper around remote_target::putpkt to avoid exporting
9064 putpkt (remote_target
*remote
, const char *buf
)
9066 return remote
->putpkt (buf
);
9069 /* Send a packet to the remote machine, with error checking. The data
9070 of the packet is in BUF. The string in BUF can be at most
9071 get_remote_packet_size () - 5 to account for the $, # and checksum,
9072 and for a possible /0 if we are debugging (remote_debug) and want
9073 to print the sent packet as a string. */
9076 remote_target::putpkt_binary (const char *buf
, int cnt
)
9078 struct remote_state
*rs
= get_remote_state ();
9080 unsigned char csum
= 0;
9081 gdb::def_vector
<char> data (cnt
+ 6);
9082 char *buf2
= data
.data ();
9088 /* Catch cases like trying to read memory or listing threads while
9089 we're waiting for a stop reply. The remote server wouldn't be
9090 ready to handle this request, so we'd hang and timeout. We don't
9091 have to worry about this in synchronous mode, because in that
9092 case it's not possible to issue a command while the target is
9093 running. This is not a problem in non-stop mode, because in that
9094 case, the stub is always ready to process serial input. */
9095 if (!target_is_non_stop_p ()
9096 && target_is_async_p ()
9097 && rs
->waiting_for_stop_reply
)
9099 error (_("Cannot execute this command while the target is running.\n"
9100 "Use the \"interrupt\" command to stop the target\n"
9101 "and then try again."));
9104 /* We're sending out a new packet. Make sure we don't look at a
9105 stale cached response. */
9106 rs
->cached_wait_status
= 0;
9108 /* Copy the packet into buffer BUF2, encapsulating it
9109 and giving it a checksum. */
9114 for (i
= 0; i
< cnt
; i
++)
9120 *p
++ = tohex ((csum
>> 4) & 0xf);
9121 *p
++ = tohex (csum
& 0xf);
9123 /* Send it over and over until we get a positive ack. */
9127 int started_error_output
= 0;
9133 int len
= (int) (p
- buf2
);
9136 if (remote_packet_max_chars
< 0)
9139 max_chars
= remote_packet_max_chars
;
9142 = escape_buffer (buf2
, std::min (len
, max_chars
));
9144 fprintf_unfiltered (gdb_stdlog
, "Sending packet: %s", str
.c_str ());
9146 if (len
> max_chars
)
9147 fprintf_unfiltered (gdb_stdlog
, "[%d bytes omitted]",
9150 fprintf_unfiltered (gdb_stdlog
, "...");
9152 gdb_flush (gdb_stdlog
);
9154 remote_serial_write (buf2
, p
- buf2
);
9156 /* If this is a no acks version of the remote protocol, send the
9157 packet and move on. */
9161 /* Read until either a timeout occurs (-2) or '+' is read.
9162 Handle any notification that arrives in the mean time. */
9165 ch
= readchar (remote_timeout
);
9173 case SERIAL_TIMEOUT
:
9176 if (started_error_output
)
9178 putchar_unfiltered ('\n');
9179 started_error_output
= 0;
9188 fprintf_unfiltered (gdb_stdlog
, "Ack\n");
9192 fprintf_unfiltered (gdb_stdlog
, "Nak\n");
9194 case SERIAL_TIMEOUT
:
9198 break; /* Retransmit buffer. */
9202 fprintf_unfiltered (gdb_stdlog
,
9203 "Packet instead of Ack, ignoring it\n");
9204 /* It's probably an old response sent because an ACK
9205 was lost. Gobble up the packet and ack it so it
9206 doesn't get retransmitted when we resend this
9209 remote_serial_write ("+", 1);
9210 continue; /* Now, go look for +. */
9217 /* If we got a notification, handle it, and go back to looking
9219 /* We've found the start of a notification. Now
9220 collect the data. */
9221 val
= read_frame (&rs
->buf
);
9226 std::string str
= escape_buffer (rs
->buf
.data (), val
);
9228 fprintf_unfiltered (gdb_stdlog
,
9229 " Notification received: %s\n",
9232 handle_notification (rs
->notif_state
, rs
->buf
.data ());
9233 /* We're in sync now, rewait for the ack. */
9240 if (!started_error_output
)
9242 started_error_output
= 1;
9243 fprintf_unfiltered (gdb_stdlog
, "putpkt: Junk: ");
9245 fputc_unfiltered (ch
& 0177, gdb_stdlog
);
9246 fprintf_unfiltered (gdb_stdlog
, "%s", rs
->buf
.data ());
9255 if (!started_error_output
)
9257 started_error_output
= 1;
9258 fprintf_unfiltered (gdb_stdlog
, "putpkt: Junk: ");
9260 fputc_unfiltered (ch
& 0177, gdb_stdlog
);
9264 break; /* Here to retransmit. */
9268 /* This is wrong. If doing a long backtrace, the user should be
9269 able to get out next time we call QUIT, without anything as
9270 violent as interrupt_query. If we want to provide a way out of
9271 here without getting to the next QUIT, it should be based on
9272 hitting ^C twice as in remote_wait. */
9284 /* Come here after finding the start of a frame when we expected an
9285 ack. Do our best to discard the rest of this packet. */
9288 remote_target::skip_frame ()
9294 c
= readchar (remote_timeout
);
9297 case SERIAL_TIMEOUT
:
9298 /* Nothing we can do. */
9301 /* Discard the two bytes of checksum and stop. */
9302 c
= readchar (remote_timeout
);
9304 c
= readchar (remote_timeout
);
9307 case '*': /* Run length encoding. */
9308 /* Discard the repeat count. */
9309 c
= readchar (remote_timeout
);
9314 /* A regular character. */
9320 /* Come here after finding the start of the frame. Collect the rest
9321 into *BUF, verifying the checksum, length, and handling run-length
9322 compression. NUL terminate the buffer. If there is not enough room,
9325 Returns -1 on error, number of characters in buffer (ignoring the
9326 trailing NULL) on success. (could be extended to return one of the
9327 SERIAL status indications). */
9330 remote_target::read_frame (gdb::char_vector
*buf_p
)
9335 char *buf
= buf_p
->data ();
9336 struct remote_state
*rs
= get_remote_state ();
9343 c
= readchar (remote_timeout
);
9346 case SERIAL_TIMEOUT
:
9348 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog
);
9352 fputs_filtered ("Saw new packet start in middle of old one\n",
9354 return -1; /* Start a new packet, count retries. */
9357 unsigned char pktcsum
;
9363 check_0
= readchar (remote_timeout
);
9365 check_1
= readchar (remote_timeout
);
9367 if (check_0
== SERIAL_TIMEOUT
|| check_1
== SERIAL_TIMEOUT
)
9370 fputs_filtered ("Timeout in checksum, retrying\n",
9374 else if (check_0
< 0 || check_1
< 0)
9377 fputs_filtered ("Communication error in checksum\n",
9382 /* Don't recompute the checksum; with no ack packets we
9383 don't have any way to indicate a packet retransmission
9388 pktcsum
= (fromhex (check_0
) << 4) | fromhex (check_1
);
9389 if (csum
== pktcsum
)
9394 std::string str
= escape_buffer (buf
, bc
);
9396 fprintf_unfiltered (gdb_stdlog
,
9397 "Bad checksum, sentsum=0x%x, "
9398 "csum=0x%x, buf=%s\n",
9399 pktcsum
, csum
, str
.c_str ());
9401 /* Number of characters in buffer ignoring trailing
9405 case '*': /* Run length encoding. */
9410 c
= readchar (remote_timeout
);
9412 repeat
= c
- ' ' + 3; /* Compute repeat count. */
9414 /* The character before ``*'' is repeated. */
9416 if (repeat
> 0 && repeat
<= 255 && bc
> 0)
9418 if (bc
+ repeat
- 1 >= buf_p
->size () - 1)
9420 /* Make some more room in the buffer. */
9421 buf_p
->resize (buf_p
->size () + repeat
);
9422 buf
= buf_p
->data ();
9425 memset (&buf
[bc
], buf
[bc
- 1], repeat
);
9431 printf_filtered (_("Invalid run length encoding: %s\n"), buf
);
9435 if (bc
>= buf_p
->size () - 1)
9437 /* Make some more room in the buffer. */
9438 buf_p
->resize (buf_p
->size () * 2);
9439 buf
= buf_p
->data ();
9449 /* Set this to the maximum number of seconds to wait instead of waiting forever
9450 in target_wait(). If this timer times out, then it generates an error and
9451 the command is aborted. This replaces most of the need for timeouts in the
9452 GDB test suite, and makes it possible to distinguish between a hung target
9453 and one with slow communications. */
9455 static int watchdog
= 0;
9457 show_watchdog (struct ui_file
*file
, int from_tty
,
9458 struct cmd_list_element
*c
, const char *value
)
9460 fprintf_filtered (file
, _("Watchdog timer is %s.\n"), value
);
9463 /* Read a packet from the remote machine, with error checking, and
9464 store it in *BUF. Resize *BUF if necessary to hold the result. If
9465 FOREVER, wait forever rather than timing out; this is used (in
9466 synchronous mode) to wait for a target that is is executing user
9468 /* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
9469 don't have to change all the calls to getpkt to deal with the
9470 return value, because at the moment I don't know what the right
9471 thing to do it for those. */
9474 remote_target::getpkt (gdb::char_vector
*buf
, int forever
)
9476 getpkt_sane (buf
, forever
);
9480 /* Read a packet from the remote machine, with error checking, and
9481 store it in *BUF. Resize *BUF if necessary to hold the result. If
9482 FOREVER, wait forever rather than timing out; this is used (in
9483 synchronous mode) to wait for a target that is is executing user
9484 code to stop. If FOREVER == 0, this function is allowed to time
9485 out gracefully and return an indication of this to the caller.
9486 Otherwise return the number of bytes read. If EXPECTING_NOTIF,
9487 consider receiving a notification enough reason to return to the
9488 caller. *IS_NOTIF is an output boolean that indicates whether *BUF
9489 holds a notification or not (a regular packet). */
9492 remote_target::getpkt_or_notif_sane_1 (gdb::char_vector
*buf
,
9493 int forever
, int expecting_notif
,
9496 struct remote_state
*rs
= get_remote_state ();
9502 /* We're reading a new response. Make sure we don't look at a
9503 previously cached response. */
9504 rs
->cached_wait_status
= 0;
9506 strcpy (buf
->data (), "timeout");
9509 timeout
= watchdog
> 0 ? watchdog
: -1;
9510 else if (expecting_notif
)
9511 timeout
= 0; /* There should already be a char in the buffer. If
9514 timeout
= remote_timeout
;
9518 /* Process any number of notifications, and then return when
9522 /* If we get a timeout or bad checksum, retry up to MAX_TRIES
9524 for (tries
= 1; tries
<= MAX_TRIES
; tries
++)
9526 /* This can loop forever if the remote side sends us
9527 characters continuously, but if it pauses, we'll get
9528 SERIAL_TIMEOUT from readchar because of timeout. Then
9529 we'll count that as a retry.
9531 Note that even when forever is set, we will only wait
9532 forever prior to the start of a packet. After that, we
9533 expect characters to arrive at a brisk pace. They should
9534 show up within remote_timeout intervals. */
9536 c
= readchar (timeout
);
9537 while (c
!= SERIAL_TIMEOUT
&& c
!= '$' && c
!= '%');
9539 if (c
== SERIAL_TIMEOUT
)
9541 if (expecting_notif
)
9542 return -1; /* Don't complain, it's normal to not get
9543 anything in this case. */
9545 if (forever
) /* Watchdog went off? Kill the target. */
9547 remote_unpush_target ();
9548 throw_error (TARGET_CLOSE_ERROR
,
9549 _("Watchdog timeout has expired. "
9550 "Target detached."));
9553 fputs_filtered ("Timed out.\n", gdb_stdlog
);
9557 /* We've found the start of a packet or notification.
9558 Now collect the data. */
9559 val
= read_frame (buf
);
9564 remote_serial_write ("-", 1);
9567 if (tries
> MAX_TRIES
)
9569 /* We have tried hard enough, and just can't receive the
9570 packet/notification. Give up. */
9571 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
9573 /* Skip the ack char if we're in no-ack mode. */
9574 if (!rs
->noack_mode
)
9575 remote_serial_write ("+", 1);
9579 /* If we got an ordinary packet, return that to our caller. */
9586 if (remote_packet_max_chars
< 0)
9589 max_chars
= remote_packet_max_chars
;
9592 = escape_buffer (buf
->data (),
9593 std::min (val
, max_chars
));
9595 fprintf_unfiltered (gdb_stdlog
, "Packet received: %s",
9598 if (val
> max_chars
)
9599 fprintf_unfiltered (gdb_stdlog
, "[%d bytes omitted]",
9602 fprintf_unfiltered (gdb_stdlog
, "\n");
9605 /* Skip the ack char if we're in no-ack mode. */
9606 if (!rs
->noack_mode
)
9607 remote_serial_write ("+", 1);
9608 if (is_notif
!= NULL
)
9613 /* If we got a notification, handle it, and go back to looking
9617 gdb_assert (c
== '%');
9621 std::string str
= escape_buffer (buf
->data (), val
);
9623 fprintf_unfiltered (gdb_stdlog
,
9624 " Notification received: %s\n",
9627 if (is_notif
!= NULL
)
9630 handle_notification (rs
->notif_state
, buf
->data ());
9632 /* Notifications require no acknowledgement. */
9634 if (expecting_notif
)
9641 remote_target::getpkt_sane (gdb::char_vector
*buf
, int forever
)
9643 return getpkt_or_notif_sane_1 (buf
, forever
, 0, NULL
);
9647 remote_target::getpkt_or_notif_sane (gdb::char_vector
*buf
, int forever
,
9650 return getpkt_or_notif_sane_1 (buf
, forever
, 1, is_notif
);
9653 /* Kill any new fork children of process PID that haven't been
9654 processed by follow_fork. */
9657 remote_target::kill_new_fork_children (int pid
)
9659 remote_state
*rs
= get_remote_state ();
9660 struct notif_client
*notif
= ¬if_client_stop
;
9662 /* Kill the fork child threads of any threads in process PID
9663 that are stopped at a fork event. */
9664 for (thread_info
*thread
: all_non_exited_threads ())
9666 struct target_waitstatus
*ws
= &thread
->pending_follow
;
9668 if (is_pending_fork_parent (ws
, pid
, thread
->ptid
))
9670 int child_pid
= ws
->value
.related_pid
.pid ();
9673 res
= remote_vkill (child_pid
);
9675 error (_("Can't kill fork child process %d"), child_pid
);
9679 /* Check for any pending fork events (not reported or processed yet)
9680 in process PID and kill those fork child threads as well. */
9681 remote_notif_get_pending_events (notif
);
9682 for (auto &event
: rs
->stop_reply_queue
)
9683 if (is_pending_fork_parent (&event
->ws
, pid
, event
->ptid
))
9685 int child_pid
= event
->ws
.value
.related_pid
.pid ();
9688 res
= remote_vkill (child_pid
);
9690 error (_("Can't kill fork child process %d"), child_pid
);
9695 /* Target hook to kill the current inferior. */
9698 remote_target::kill ()
9701 int pid
= inferior_ptid
.pid ();
9702 struct remote_state
*rs
= get_remote_state ();
9704 if (packet_support (PACKET_vKill
) != PACKET_DISABLE
)
9706 /* If we're stopped while forking and we haven't followed yet,
9707 kill the child task. We need to do this before killing the
9708 parent task because if this is a vfork then the parent will
9710 kill_new_fork_children (pid
);
9712 res
= remote_vkill (pid
);
9715 target_mourn_inferior (inferior_ptid
);
9720 /* If we are in 'target remote' mode and we are killing the only
9721 inferior, then we will tell gdbserver to exit and unpush the
9723 if (res
== -1 && !remote_multi_process_p (rs
)
9724 && number_of_live_inferiors () == 1)
9728 /* We've killed the remote end, we get to mourn it. If we are
9729 not in extended mode, mourning the inferior also unpushes
9730 remote_ops from the target stack, which closes the remote
9732 target_mourn_inferior (inferior_ptid
);
9737 error (_("Can't kill process"));
9740 /* Send a kill request to the target using the 'vKill' packet. */
9743 remote_target::remote_vkill (int pid
)
9745 if (packet_support (PACKET_vKill
) == PACKET_DISABLE
)
9748 remote_state
*rs
= get_remote_state ();
9750 /* Tell the remote target to detach. */
9751 xsnprintf (rs
->buf
.data (), get_remote_packet_size (), "vKill;%x", pid
);
9753 getpkt (&rs
->buf
, 0);
9755 switch (packet_ok (rs
->buf
,
9756 &remote_protocol_packets
[PACKET_vKill
]))
9762 case PACKET_UNKNOWN
:
9765 internal_error (__FILE__
, __LINE__
, _("Bad result from packet_ok"));
9769 /* Send a kill request to the target using the 'k' packet. */
9772 remote_target::remote_kill_k ()
9774 /* Catch errors so the user can quit from gdb even when we
9775 aren't on speaking terms with the remote system. */
9780 catch (const gdb_exception_error
&ex
)
9782 if (ex
.error
== TARGET_CLOSE_ERROR
)
9784 /* If we got an (EOF) error that caused the target
9785 to go away, then we're done, that's what we wanted.
9786 "k" is susceptible to cause a premature EOF, given
9787 that the remote server isn't actually required to
9788 reply to "k", and it can happen that it doesn't
9789 even get to reply ACK to the "k". */
9793 /* Otherwise, something went wrong. We didn't actually kill
9794 the target. Just propagate the exception, and let the
9795 user or higher layers decide what to do. */
9801 remote_target::mourn_inferior ()
9803 struct remote_state
*rs
= get_remote_state ();
9805 /* We're no longer interested in notification events of an inferior
9806 that exited or was killed/detached. */
9807 discard_pending_stop_replies (current_inferior ());
9809 /* In 'target remote' mode with one inferior, we close the connection. */
9810 if (!rs
->extended
&& number_of_live_inferiors () <= 1)
9812 unpush_target (this);
9814 /* remote_close takes care of doing most of the clean up. */
9815 generic_mourn_inferior ();
9819 /* In case we got here due to an error, but we're going to stay
9821 rs
->waiting_for_stop_reply
= 0;
9823 /* If the current general thread belonged to the process we just
9824 detached from or has exited, the remote side current general
9825 thread becomes undefined. Considering a case like this:
9827 - We just got here due to a detach.
9828 - The process that we're detaching from happens to immediately
9829 report a global breakpoint being hit in non-stop mode, in the
9830 same thread we had selected before.
9831 - GDB attaches to this process again.
9832 - This event happens to be the next event we handle.
9834 GDB would consider that the current general thread didn't need to
9835 be set on the stub side (with Hg), since for all it knew,
9836 GENERAL_THREAD hadn't changed.
9838 Notice that although in all-stop mode, the remote server always
9839 sets the current thread to the thread reporting the stop event,
9840 that doesn't happen in non-stop mode; in non-stop, the stub *must
9841 not* change the current thread when reporting a breakpoint hit,
9842 due to the decoupling of event reporting and event handling.
9844 To keep things simple, we always invalidate our notion of the
9846 record_currthread (rs
, minus_one_ptid
);
9848 /* Call common code to mark the inferior as not running. */
9849 generic_mourn_inferior ();
9851 if (!have_inferiors ())
9853 if (!remote_multi_process_p (rs
))
9855 /* Check whether the target is running now - some remote stubs
9856 automatically restart after kill. */
9858 getpkt (&rs
->buf
, 0);
9860 if (rs
->buf
[0] == 'S' || rs
->buf
[0] == 'T')
9862 /* Assume that the target has been restarted. Set
9863 inferior_ptid so that bits of core GDB realizes
9864 there's something here, e.g., so that the user can
9865 say "kill" again. */
9866 inferior_ptid
= magic_null_ptid
;
9873 extended_remote_target::supports_disable_randomization ()
9875 return packet_support (PACKET_QDisableRandomization
) == PACKET_ENABLE
;
9879 remote_target::extended_remote_disable_randomization (int val
)
9881 struct remote_state
*rs
= get_remote_state ();
9884 xsnprintf (rs
->buf
.data (), get_remote_packet_size (),
9885 "QDisableRandomization:%x", val
);
9887 reply
= remote_get_noisy_reply ();
9889 error (_("Target does not support QDisableRandomization."));
9890 if (strcmp (reply
, "OK") != 0)
9891 error (_("Bogus QDisableRandomization reply from target: %s"), reply
);
9895 remote_target::extended_remote_run (const std::string
&args
)
9897 struct remote_state
*rs
= get_remote_state ();
9899 const char *remote_exec_file
= get_remote_exec_file ();
9901 /* If the user has disabled vRun support, or we have detected that
9902 support is not available, do not try it. */
9903 if (packet_support (PACKET_vRun
) == PACKET_DISABLE
)
9906 strcpy (rs
->buf
.data (), "vRun;");
9907 len
= strlen (rs
->buf
.data ());
9909 if (strlen (remote_exec_file
) * 2 + len
>= get_remote_packet_size ())
9910 error (_("Remote file name too long for run packet"));
9911 len
+= 2 * bin2hex ((gdb_byte
*) remote_exec_file
, rs
->buf
.data () + len
,
9912 strlen (remote_exec_file
));
9918 gdb_argv
argv (args
.c_str ());
9919 for (i
= 0; argv
[i
] != NULL
; i
++)
9921 if (strlen (argv
[i
]) * 2 + 1 + len
>= get_remote_packet_size ())
9922 error (_("Argument list too long for run packet"));
9923 rs
->buf
[len
++] = ';';
9924 len
+= 2 * bin2hex ((gdb_byte
*) argv
[i
], rs
->buf
.data () + len
,
9929 rs
->buf
[len
++] = '\0';
9932 getpkt (&rs
->buf
, 0);
9934 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_vRun
]))
9937 /* We have a wait response. All is well. */
9939 case PACKET_UNKNOWN
:
9942 if (remote_exec_file
[0] == '\0')
9943 error (_("Running the default executable on the remote target failed; "
9944 "try \"set remote exec-file\"?"));
9946 error (_("Running \"%s\" on the remote target failed"),
9949 gdb_assert_not_reached (_("bad switch"));
9953 /* Helper function to send set/unset environment packets. ACTION is
9954 either "set" or "unset". PACKET is either "QEnvironmentHexEncoded"
9955 or "QEnvironmentUnsetVariable". VALUE is the variable to be
9959 remote_target::send_environment_packet (const char *action
,
9963 remote_state
*rs
= get_remote_state ();
9965 /* Convert the environment variable to an hex string, which
9966 is the best format to be transmitted over the wire. */
9967 std::string encoded_value
= bin2hex ((const gdb_byte
*) value
,
9970 xsnprintf (rs
->buf
.data (), get_remote_packet_size (),
9971 "%s:%s", packet
, encoded_value
.c_str ());
9974 getpkt (&rs
->buf
, 0);
9975 if (strcmp (rs
->buf
.data (), "OK") != 0)
9976 warning (_("Unable to %s environment variable '%s' on remote."),
9980 /* Helper function to handle the QEnvironment* packets. */
9983 remote_target::extended_remote_environment_support ()
9985 remote_state
*rs
= get_remote_state ();
9987 if (packet_support (PACKET_QEnvironmentReset
) != PACKET_DISABLE
)
9989 putpkt ("QEnvironmentReset");
9990 getpkt (&rs
->buf
, 0);
9991 if (strcmp (rs
->buf
.data (), "OK") != 0)
9992 warning (_("Unable to reset environment on remote."));
9995 gdb_environ
*e
= ¤t_inferior ()->environment
;
9997 if (packet_support (PACKET_QEnvironmentHexEncoded
) != PACKET_DISABLE
)
9998 for (const std::string
&el
: e
->user_set_env ())
9999 send_environment_packet ("set", "QEnvironmentHexEncoded",
10002 if (packet_support (PACKET_QEnvironmentUnset
) != PACKET_DISABLE
)
10003 for (const std::string
&el
: e
->user_unset_env ())
10004 send_environment_packet ("unset", "QEnvironmentUnset", el
.c_str ());
10007 /* Helper function to set the current working directory for the
10008 inferior in the remote target. */
10011 remote_target::extended_remote_set_inferior_cwd ()
10013 if (packet_support (PACKET_QSetWorkingDir
) != PACKET_DISABLE
)
10015 const char *inferior_cwd
= get_inferior_cwd ();
10016 remote_state
*rs
= get_remote_state ();
10018 if (inferior_cwd
!= NULL
)
10020 std::string hexpath
= bin2hex ((const gdb_byte
*) inferior_cwd
,
10021 strlen (inferior_cwd
));
10023 xsnprintf (rs
->buf
.data (), get_remote_packet_size (),
10024 "QSetWorkingDir:%s", hexpath
.c_str ());
10028 /* An empty inferior_cwd means that the user wants us to
10029 reset the remote server's inferior's cwd. */
10030 xsnprintf (rs
->buf
.data (), get_remote_packet_size (),
10031 "QSetWorkingDir:");
10035 getpkt (&rs
->buf
, 0);
10036 if (packet_ok (rs
->buf
,
10037 &remote_protocol_packets
[PACKET_QSetWorkingDir
])
10040 Remote replied unexpectedly while setting the inferior's working\n\
10047 /* In the extended protocol we want to be able to do things like
10048 "run" and have them basically work as expected. So we need
10049 a special create_inferior function. We support changing the
10050 executable file and the command line arguments, but not the
10054 extended_remote_target::create_inferior (const char *exec_file
,
10055 const std::string
&args
,
10056 char **env
, int from_tty
)
10060 struct remote_state
*rs
= get_remote_state ();
10061 const char *remote_exec_file
= get_remote_exec_file ();
10063 /* If running asynchronously, register the target file descriptor
10064 with the event loop. */
10065 if (target_can_async_p ())
10068 /* Disable address space randomization if requested (and supported). */
10069 if (supports_disable_randomization ())
10070 extended_remote_disable_randomization (disable_randomization
);
10072 /* If startup-with-shell is on, we inform gdbserver to start the
10073 remote inferior using a shell. */
10074 if (packet_support (PACKET_QStartupWithShell
) != PACKET_DISABLE
)
10076 xsnprintf (rs
->buf
.data (), get_remote_packet_size (),
10077 "QStartupWithShell:%d", startup_with_shell
? 1 : 0);
10079 getpkt (&rs
->buf
, 0);
10080 if (strcmp (rs
->buf
.data (), "OK") != 0)
10082 Remote replied unexpectedly while setting startup-with-shell: %s"),
10086 extended_remote_environment_support ();
10088 extended_remote_set_inferior_cwd ();
10090 /* Now restart the remote server. */
10091 run_worked
= extended_remote_run (args
) != -1;
10094 /* vRun was not supported. Fail if we need it to do what the
10096 if (remote_exec_file
[0])
10097 error (_("Remote target does not support \"set remote exec-file\""));
10098 if (!args
.empty ())
10099 error (_("Remote target does not support \"set args\" or run ARGS"));
10101 /* Fall back to "R". */
10102 extended_remote_restart ();
10105 /* vRun's success return is a stop reply. */
10106 stop_reply
= run_worked
? rs
->buf
.data () : NULL
;
10107 add_current_inferior_and_thread (stop_reply
);
10109 /* Get updated offsets, if the stub uses qOffsets. */
10114 /* Given a location's target info BP_TGT and the packet buffer BUF, output
10115 the list of conditions (in agent expression bytecode format), if any, the
10116 target needs to evaluate. The output is placed into the packet buffer
10117 started from BUF and ended at BUF_END. */
10120 remote_add_target_side_condition (struct gdbarch
*gdbarch
,
10121 struct bp_target_info
*bp_tgt
, char *buf
,
10124 if (bp_tgt
->conditions
.empty ())
10127 buf
+= strlen (buf
);
10128 xsnprintf (buf
, buf_end
- buf
, "%s", ";");
10131 /* Send conditions to the target. */
10132 for (agent_expr
*aexpr
: bp_tgt
->conditions
)
10134 xsnprintf (buf
, buf_end
- buf
, "X%x,", aexpr
->len
);
10135 buf
+= strlen (buf
);
10136 for (int i
= 0; i
< aexpr
->len
; ++i
)
10137 buf
= pack_hex_byte (buf
, aexpr
->buf
[i
]);
10144 remote_add_target_side_commands (struct gdbarch
*gdbarch
,
10145 struct bp_target_info
*bp_tgt
, char *buf
)
10147 if (bp_tgt
->tcommands
.empty ())
10150 buf
+= strlen (buf
);
10152 sprintf (buf
, ";cmds:%x,", bp_tgt
->persist
);
10153 buf
+= strlen (buf
);
10155 /* Concatenate all the agent expressions that are commands into the
10157 for (agent_expr
*aexpr
: bp_tgt
->tcommands
)
10159 sprintf (buf
, "X%x,", aexpr
->len
);
10160 buf
+= strlen (buf
);
10161 for (int i
= 0; i
< aexpr
->len
; ++i
)
10162 buf
= pack_hex_byte (buf
, aexpr
->buf
[i
]);
10167 /* Insert a breakpoint. On targets that have software breakpoint
10168 support, we ask the remote target to do the work; on targets
10169 which don't, we insert a traditional memory breakpoint. */
10172 remote_target::insert_breakpoint (struct gdbarch
*gdbarch
,
10173 struct bp_target_info
*bp_tgt
)
10175 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
10176 If it succeeds, then set the support to PACKET_ENABLE. If it
10177 fails, and the user has explicitly requested the Z support then
10178 report an error, otherwise, mark it disabled and go on. */
10180 if (packet_support (PACKET_Z0
) != PACKET_DISABLE
)
10182 CORE_ADDR addr
= bp_tgt
->reqstd_address
;
10183 struct remote_state
*rs
;
10186 /* Make sure the remote is pointing at the right process, if
10188 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10189 set_general_process ();
10191 rs
= get_remote_state ();
10192 p
= rs
->buf
.data ();
10193 endbuf
= p
+ get_remote_packet_size ();
10198 addr
= (ULONGEST
) remote_address_masked (addr
);
10199 p
+= hexnumstr (p
, addr
);
10200 xsnprintf (p
, endbuf
- p
, ",%d", bp_tgt
->kind
);
10202 if (supports_evaluation_of_breakpoint_conditions ())
10203 remote_add_target_side_condition (gdbarch
, bp_tgt
, p
, endbuf
);
10205 if (can_run_breakpoint_commands ())
10206 remote_add_target_side_commands (gdbarch
, bp_tgt
, p
);
10209 getpkt (&rs
->buf
, 0);
10211 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_Z0
]))
10217 case PACKET_UNKNOWN
:
10222 /* If this breakpoint has target-side commands but this stub doesn't
10223 support Z0 packets, throw error. */
10224 if (!bp_tgt
->tcommands
.empty ())
10225 throw_error (NOT_SUPPORTED_ERROR
, _("\
10226 Target doesn't support breakpoints that have target side commands."));
10228 return memory_insert_breakpoint (this, gdbarch
, bp_tgt
);
10232 remote_target::remove_breakpoint (struct gdbarch
*gdbarch
,
10233 struct bp_target_info
*bp_tgt
,
10234 enum remove_bp_reason reason
)
10236 CORE_ADDR addr
= bp_tgt
->placed_address
;
10237 struct remote_state
*rs
= get_remote_state ();
10239 if (packet_support (PACKET_Z0
) != PACKET_DISABLE
)
10241 char *p
= rs
->buf
.data ();
10242 char *endbuf
= p
+ get_remote_packet_size ();
10244 /* Make sure the remote is pointing at the right process, if
10246 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10247 set_general_process ();
10253 addr
= (ULONGEST
) remote_address_masked (bp_tgt
->placed_address
);
10254 p
+= hexnumstr (p
, addr
);
10255 xsnprintf (p
, endbuf
- p
, ",%d", bp_tgt
->kind
);
10258 getpkt (&rs
->buf
, 0);
10260 return (rs
->buf
[0] == 'E');
10263 return memory_remove_breakpoint (this, gdbarch
, bp_tgt
, reason
);
10266 static enum Z_packet_type
10267 watchpoint_to_Z_packet (int type
)
10272 return Z_PACKET_WRITE_WP
;
10275 return Z_PACKET_READ_WP
;
10278 return Z_PACKET_ACCESS_WP
;
10281 internal_error (__FILE__
, __LINE__
,
10282 _("hw_bp_to_z: bad watchpoint type %d"), type
);
10287 remote_target::insert_watchpoint (CORE_ADDR addr
, int len
,
10288 enum target_hw_bp_type type
, struct expression
*cond
)
10290 struct remote_state
*rs
= get_remote_state ();
10291 char *endbuf
= rs
->buf
.data () + get_remote_packet_size ();
10293 enum Z_packet_type packet
= watchpoint_to_Z_packet (type
);
10295 if (packet_support (PACKET_Z0
+ packet
) == PACKET_DISABLE
)
10298 /* Make sure the remote is pointing at the right process, if
10300 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10301 set_general_process ();
10303 xsnprintf (rs
->buf
.data (), endbuf
- rs
->buf
.data (), "Z%x,", packet
);
10304 p
= strchr (rs
->buf
.data (), '\0');
10305 addr
= remote_address_masked (addr
);
10306 p
+= hexnumstr (p
, (ULONGEST
) addr
);
10307 xsnprintf (p
, endbuf
- p
, ",%x", len
);
10310 getpkt (&rs
->buf
, 0);
10312 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_Z0
+ packet
]))
10316 case PACKET_UNKNOWN
:
10321 internal_error (__FILE__
, __LINE__
,
10322 _("remote_insert_watchpoint: reached end of function"));
10326 remote_target::watchpoint_addr_within_range (CORE_ADDR addr
,
10327 CORE_ADDR start
, int length
)
10329 CORE_ADDR diff
= remote_address_masked (addr
- start
);
10331 return diff
< length
;
10336 remote_target::remove_watchpoint (CORE_ADDR addr
, int len
,
10337 enum target_hw_bp_type type
, struct expression
*cond
)
10339 struct remote_state
*rs
= get_remote_state ();
10340 char *endbuf
= rs
->buf
.data () + get_remote_packet_size ();
10342 enum Z_packet_type packet
= watchpoint_to_Z_packet (type
);
10344 if (packet_support (PACKET_Z0
+ packet
) == PACKET_DISABLE
)
10347 /* Make sure the remote is pointing at the right process, if
10349 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10350 set_general_process ();
10352 xsnprintf (rs
->buf
.data (), endbuf
- rs
->buf
.data (), "z%x,", packet
);
10353 p
= strchr (rs
->buf
.data (), '\0');
10354 addr
= remote_address_masked (addr
);
10355 p
+= hexnumstr (p
, (ULONGEST
) addr
);
10356 xsnprintf (p
, endbuf
- p
, ",%x", len
);
10358 getpkt (&rs
->buf
, 0);
10360 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_Z0
+ packet
]))
10363 case PACKET_UNKNOWN
:
10368 internal_error (__FILE__
, __LINE__
,
10369 _("remote_remove_watchpoint: reached end of function"));
10373 static int remote_hw_watchpoint_limit
= -1;
10374 static int remote_hw_watchpoint_length_limit
= -1;
10375 static int remote_hw_breakpoint_limit
= -1;
10378 remote_target::region_ok_for_hw_watchpoint (CORE_ADDR addr
, int len
)
10380 if (remote_hw_watchpoint_length_limit
== 0)
10382 else if (remote_hw_watchpoint_length_limit
< 0)
10384 else if (len
<= remote_hw_watchpoint_length_limit
)
10391 remote_target::can_use_hw_breakpoint (enum bptype type
, int cnt
, int ot
)
10393 if (type
== bp_hardware_breakpoint
)
10395 if (remote_hw_breakpoint_limit
== 0)
10397 else if (remote_hw_breakpoint_limit
< 0)
10399 else if (cnt
<= remote_hw_breakpoint_limit
)
10404 if (remote_hw_watchpoint_limit
== 0)
10406 else if (remote_hw_watchpoint_limit
< 0)
10410 else if (cnt
<= remote_hw_watchpoint_limit
)
10416 /* The to_stopped_by_sw_breakpoint method of target remote. */
10419 remote_target::stopped_by_sw_breakpoint ()
10421 struct thread_info
*thread
= inferior_thread ();
10423 return (thread
->priv
!= NULL
10424 && (get_remote_thread_info (thread
)->stop_reason
10425 == TARGET_STOPPED_BY_SW_BREAKPOINT
));
10428 /* The to_supports_stopped_by_sw_breakpoint method of target
10432 remote_target::supports_stopped_by_sw_breakpoint ()
10434 return (packet_support (PACKET_swbreak_feature
) == PACKET_ENABLE
);
10437 /* The to_stopped_by_hw_breakpoint method of target remote. */
10440 remote_target::stopped_by_hw_breakpoint ()
10442 struct thread_info
*thread
= inferior_thread ();
10444 return (thread
->priv
!= NULL
10445 && (get_remote_thread_info (thread
)->stop_reason
10446 == TARGET_STOPPED_BY_HW_BREAKPOINT
));
10449 /* The to_supports_stopped_by_hw_breakpoint method of target
10453 remote_target::supports_stopped_by_hw_breakpoint ()
10455 return (packet_support (PACKET_hwbreak_feature
) == PACKET_ENABLE
);
10459 remote_target::stopped_by_watchpoint ()
10461 struct thread_info
*thread
= inferior_thread ();
10463 return (thread
->priv
!= NULL
10464 && (get_remote_thread_info (thread
)->stop_reason
10465 == TARGET_STOPPED_BY_WATCHPOINT
));
10469 remote_target::stopped_data_address (CORE_ADDR
*addr_p
)
10471 struct thread_info
*thread
= inferior_thread ();
10473 if (thread
->priv
!= NULL
10474 && (get_remote_thread_info (thread
)->stop_reason
10475 == TARGET_STOPPED_BY_WATCHPOINT
))
10477 *addr_p
= get_remote_thread_info (thread
)->watch_data_address
;
10486 remote_target::insert_hw_breakpoint (struct gdbarch
*gdbarch
,
10487 struct bp_target_info
*bp_tgt
)
10489 CORE_ADDR addr
= bp_tgt
->reqstd_address
;
10490 struct remote_state
*rs
;
10494 if (packet_support (PACKET_Z1
) == PACKET_DISABLE
)
10497 /* Make sure the remote is pointing at the right process, if
10499 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10500 set_general_process ();
10502 rs
= get_remote_state ();
10503 p
= rs
->buf
.data ();
10504 endbuf
= p
+ get_remote_packet_size ();
10510 addr
= remote_address_masked (addr
);
10511 p
+= hexnumstr (p
, (ULONGEST
) addr
);
10512 xsnprintf (p
, endbuf
- p
, ",%x", bp_tgt
->kind
);
10514 if (supports_evaluation_of_breakpoint_conditions ())
10515 remote_add_target_side_condition (gdbarch
, bp_tgt
, p
, endbuf
);
10517 if (can_run_breakpoint_commands ())
10518 remote_add_target_side_commands (gdbarch
, bp_tgt
, p
);
10521 getpkt (&rs
->buf
, 0);
10523 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_Z1
]))
10526 if (rs
->buf
[1] == '.')
10528 message
= strchr (&rs
->buf
[2], '.');
10530 error (_("Remote failure reply: %s"), message
+ 1);
10533 case PACKET_UNKNOWN
:
10538 internal_error (__FILE__
, __LINE__
,
10539 _("remote_insert_hw_breakpoint: reached end of function"));
10544 remote_target::remove_hw_breakpoint (struct gdbarch
*gdbarch
,
10545 struct bp_target_info
*bp_tgt
)
10548 struct remote_state
*rs
= get_remote_state ();
10549 char *p
= rs
->buf
.data ();
10550 char *endbuf
= p
+ get_remote_packet_size ();
10552 if (packet_support (PACKET_Z1
) == PACKET_DISABLE
)
10555 /* Make sure the remote is pointing at the right process, if
10557 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10558 set_general_process ();
10564 addr
= remote_address_masked (bp_tgt
->placed_address
);
10565 p
+= hexnumstr (p
, (ULONGEST
) addr
);
10566 xsnprintf (p
, endbuf
- p
, ",%x", bp_tgt
->kind
);
10569 getpkt (&rs
->buf
, 0);
10571 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_Z1
]))
10574 case PACKET_UNKNOWN
:
10579 internal_error (__FILE__
, __LINE__
,
10580 _("remote_remove_hw_breakpoint: reached end of function"));
10583 /* Verify memory using the "qCRC:" request. */
10586 remote_target::verify_memory (const gdb_byte
*data
, CORE_ADDR lma
, ULONGEST size
)
10588 struct remote_state
*rs
= get_remote_state ();
10589 unsigned long host_crc
, target_crc
;
10592 /* It doesn't make sense to use qCRC if the remote target is
10593 connected but not running. */
10594 if (target_has_execution
&& packet_support (PACKET_qCRC
) != PACKET_DISABLE
)
10596 enum packet_result result
;
10598 /* Make sure the remote is pointing at the right process. */
10599 set_general_process ();
10601 /* FIXME: assumes lma can fit into long. */
10602 xsnprintf (rs
->buf
.data (), get_remote_packet_size (), "qCRC:%lx,%lx",
10603 (long) lma
, (long) size
);
10606 /* Be clever; compute the host_crc before waiting for target
10608 host_crc
= xcrc32 (data
, size
, 0xffffffff);
10610 getpkt (&rs
->buf
, 0);
10612 result
= packet_ok (rs
->buf
,
10613 &remote_protocol_packets
[PACKET_qCRC
]);
10614 if (result
== PACKET_ERROR
)
10616 else if (result
== PACKET_OK
)
10618 for (target_crc
= 0, tmp
= &rs
->buf
[1]; *tmp
; tmp
++)
10619 target_crc
= target_crc
* 16 + fromhex (*tmp
);
10621 return (host_crc
== target_crc
);
10625 return simple_verify_memory (this, data
, lma
, size
);
10628 /* compare-sections command
10630 With no arguments, compares each loadable section in the exec bfd
10631 with the same memory range on the target, and reports mismatches.
10632 Useful for verifying the image on the target against the exec file. */
10635 compare_sections_command (const char *args
, int from_tty
)
10638 const char *sectname
;
10639 bfd_size_type size
;
10642 int mismatched
= 0;
10647 error (_("command cannot be used without an exec file"));
10649 if (args
!= NULL
&& strcmp (args
, "-r") == 0)
10655 for (s
= exec_bfd
->sections
; s
; s
= s
->next
)
10657 if (!(s
->flags
& SEC_LOAD
))
10658 continue; /* Skip non-loadable section. */
10660 if (read_only
&& (s
->flags
& SEC_READONLY
) == 0)
10661 continue; /* Skip writeable sections */
10663 size
= bfd_section_size (s
);
10665 continue; /* Skip zero-length section. */
10667 sectname
= bfd_section_name (s
);
10668 if (args
&& strcmp (args
, sectname
) != 0)
10669 continue; /* Not the section selected by user. */
10671 matched
= 1; /* Do this section. */
10674 gdb::byte_vector
sectdata (size
);
10675 bfd_get_section_contents (exec_bfd
, s
, sectdata
.data (), 0, size
);
10677 res
= target_verify_memory (sectdata
.data (), lma
, size
);
10680 error (_("target memory fault, section %s, range %s -- %s"), sectname
,
10681 paddress (target_gdbarch (), lma
),
10682 paddress (target_gdbarch (), lma
+ size
));
10684 printf_filtered ("Section %s, range %s -- %s: ", sectname
,
10685 paddress (target_gdbarch (), lma
),
10686 paddress (target_gdbarch (), lma
+ size
));
10688 printf_filtered ("matched.\n");
10691 printf_filtered ("MIS-MATCHED!\n");
10695 if (mismatched
> 0)
10696 warning (_("One or more sections of the target image does not match\n\
10697 the loaded file\n"));
10698 if (args
&& !matched
)
10699 printf_filtered (_("No loaded section named '%s'.\n"), args
);
10702 /* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
10703 into remote target. The number of bytes written to the remote
10704 target is returned, or -1 for error. */
10707 remote_target::remote_write_qxfer (const char *object_name
,
10708 const char *annex
, const gdb_byte
*writebuf
,
10709 ULONGEST offset
, LONGEST len
,
10710 ULONGEST
*xfered_len
,
10711 struct packet_config
*packet
)
10715 struct remote_state
*rs
= get_remote_state ();
10716 int max_size
= get_memory_write_packet_size ();
10718 if (packet_config_support (packet
) == PACKET_DISABLE
)
10719 return TARGET_XFER_E_IO
;
10721 /* Insert header. */
10722 i
= snprintf (rs
->buf
.data (), max_size
,
10723 "qXfer:%s:write:%s:%s:",
10724 object_name
, annex
? annex
: "",
10725 phex_nz (offset
, sizeof offset
));
10726 max_size
-= (i
+ 1);
10728 /* Escape as much data as fits into rs->buf. */
10729 buf_len
= remote_escape_output
10730 (writebuf
, len
, 1, (gdb_byte
*) rs
->buf
.data () + i
, &max_size
, max_size
);
10732 if (putpkt_binary (rs
->buf
.data (), i
+ buf_len
) < 0
10733 || getpkt_sane (&rs
->buf
, 0) < 0
10734 || packet_ok (rs
->buf
, packet
) != PACKET_OK
)
10735 return TARGET_XFER_E_IO
;
10737 unpack_varlen_hex (rs
->buf
.data (), &n
);
10740 return (*xfered_len
!= 0) ? TARGET_XFER_OK
: TARGET_XFER_EOF
;
10743 /* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
10744 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
10745 number of bytes read is returned, or 0 for EOF, or -1 for error.
10746 The number of bytes read may be less than LEN without indicating an
10747 EOF. PACKET is checked and updated to indicate whether the remote
10748 target supports this object. */
10751 remote_target::remote_read_qxfer (const char *object_name
,
10753 gdb_byte
*readbuf
, ULONGEST offset
,
10755 ULONGEST
*xfered_len
,
10756 struct packet_config
*packet
)
10758 struct remote_state
*rs
= get_remote_state ();
10759 LONGEST i
, n
, packet_len
;
10761 if (packet_config_support (packet
) == PACKET_DISABLE
)
10762 return TARGET_XFER_E_IO
;
10764 /* Check whether we've cached an end-of-object packet that matches
10766 if (rs
->finished_object
)
10768 if (strcmp (object_name
, rs
->finished_object
) == 0
10769 && strcmp (annex
? annex
: "", rs
->finished_annex
) == 0
10770 && offset
== rs
->finished_offset
)
10771 return TARGET_XFER_EOF
;
10774 /* Otherwise, we're now reading something different. Discard
10776 xfree (rs
->finished_object
);
10777 xfree (rs
->finished_annex
);
10778 rs
->finished_object
= NULL
;
10779 rs
->finished_annex
= NULL
;
10782 /* Request only enough to fit in a single packet. The actual data
10783 may not, since we don't know how much of it will need to be escaped;
10784 the target is free to respond with slightly less data. We subtract
10785 five to account for the response type and the protocol frame. */
10786 n
= std::min
<LONGEST
> (get_remote_packet_size () - 5, len
);
10787 snprintf (rs
->buf
.data (), get_remote_packet_size () - 4,
10788 "qXfer:%s:read:%s:%s,%s",
10789 object_name
, annex
? annex
: "",
10790 phex_nz (offset
, sizeof offset
),
10791 phex_nz (n
, sizeof n
));
10792 i
= putpkt (rs
->buf
);
10794 return TARGET_XFER_E_IO
;
10797 packet_len
= getpkt_sane (&rs
->buf
, 0);
10798 if (packet_len
< 0 || packet_ok (rs
->buf
, packet
) != PACKET_OK
)
10799 return TARGET_XFER_E_IO
;
10801 if (rs
->buf
[0] != 'l' && rs
->buf
[0] != 'm')
10802 error (_("Unknown remote qXfer reply: %s"), rs
->buf
.data ());
10804 /* 'm' means there is (or at least might be) more data after this
10805 batch. That does not make sense unless there's at least one byte
10806 of data in this reply. */
10807 if (rs
->buf
[0] == 'm' && packet_len
== 1)
10808 error (_("Remote qXfer reply contained no data."));
10810 /* Got some data. */
10811 i
= remote_unescape_input ((gdb_byte
*) rs
->buf
.data () + 1,
10812 packet_len
- 1, readbuf
, n
);
10814 /* 'l' is an EOF marker, possibly including a final block of data,
10815 or possibly empty. If we have the final block of a non-empty
10816 object, record this fact to bypass a subsequent partial read. */
10817 if (rs
->buf
[0] == 'l' && offset
+ i
> 0)
10819 rs
->finished_object
= xstrdup (object_name
);
10820 rs
->finished_annex
= xstrdup (annex
? annex
: "");
10821 rs
->finished_offset
= offset
+ i
;
10825 return TARGET_XFER_EOF
;
10829 return TARGET_XFER_OK
;
10833 enum target_xfer_status
10834 remote_target::xfer_partial (enum target_object object
,
10835 const char *annex
, gdb_byte
*readbuf
,
10836 const gdb_byte
*writebuf
, ULONGEST offset
, ULONGEST len
,
10837 ULONGEST
*xfered_len
)
10839 struct remote_state
*rs
;
10843 int unit_size
= gdbarch_addressable_memory_unit_size (target_gdbarch ());
10845 set_remote_traceframe ();
10846 set_general_thread (inferior_ptid
);
10848 rs
= get_remote_state ();
10850 /* Handle memory using the standard memory routines. */
10851 if (object
== TARGET_OBJECT_MEMORY
)
10853 /* If the remote target is connected but not running, we should
10854 pass this request down to a lower stratum (e.g. the executable
10856 if (!target_has_execution
)
10857 return TARGET_XFER_EOF
;
10859 if (writebuf
!= NULL
)
10860 return remote_write_bytes (offset
, writebuf
, len
, unit_size
,
10863 return remote_read_bytes (offset
, readbuf
, len
, unit_size
,
10867 /* Handle extra signal info using qxfer packets. */
10868 if (object
== TARGET_OBJECT_SIGNAL_INFO
)
10871 return remote_read_qxfer ("siginfo", annex
, readbuf
, offset
, len
,
10872 xfered_len
, &remote_protocol_packets
10873 [PACKET_qXfer_siginfo_read
]);
10875 return remote_write_qxfer ("siginfo", annex
,
10876 writebuf
, offset
, len
, xfered_len
,
10877 &remote_protocol_packets
10878 [PACKET_qXfer_siginfo_write
]);
10881 if (object
== TARGET_OBJECT_STATIC_TRACE_DATA
)
10884 return remote_read_qxfer ("statictrace", annex
,
10885 readbuf
, offset
, len
, xfered_len
,
10886 &remote_protocol_packets
10887 [PACKET_qXfer_statictrace_read
]);
10889 return TARGET_XFER_E_IO
;
10892 /* Only handle flash writes. */
10893 if (writebuf
!= NULL
)
10897 case TARGET_OBJECT_FLASH
:
10898 return remote_flash_write (offset
, len
, xfered_len
,
10902 return TARGET_XFER_E_IO
;
10906 /* Map pre-existing objects onto letters. DO NOT do this for new
10907 objects!!! Instead specify new query packets. */
10910 case TARGET_OBJECT_AVR
:
10914 case TARGET_OBJECT_AUXV
:
10915 gdb_assert (annex
== NULL
);
10916 return remote_read_qxfer ("auxv", annex
, readbuf
, offset
, len
,
10918 &remote_protocol_packets
[PACKET_qXfer_auxv
]);
10920 case TARGET_OBJECT_AVAILABLE_FEATURES
:
10921 return remote_read_qxfer
10922 ("features", annex
, readbuf
, offset
, len
, xfered_len
,
10923 &remote_protocol_packets
[PACKET_qXfer_features
]);
10925 case TARGET_OBJECT_LIBRARIES
:
10926 return remote_read_qxfer
10927 ("libraries", annex
, readbuf
, offset
, len
, xfered_len
,
10928 &remote_protocol_packets
[PACKET_qXfer_libraries
]);
10930 case TARGET_OBJECT_LIBRARIES_SVR4
:
10931 return remote_read_qxfer
10932 ("libraries-svr4", annex
, readbuf
, offset
, len
, xfered_len
,
10933 &remote_protocol_packets
[PACKET_qXfer_libraries_svr4
]);
10935 case TARGET_OBJECT_MEMORY_MAP
:
10936 gdb_assert (annex
== NULL
);
10937 return remote_read_qxfer ("memory-map", annex
, readbuf
, offset
, len
,
10939 &remote_protocol_packets
[PACKET_qXfer_memory_map
]);
10941 case TARGET_OBJECT_OSDATA
:
10942 /* Should only get here if we're connected. */
10943 gdb_assert (rs
->remote_desc
);
10944 return remote_read_qxfer
10945 ("osdata", annex
, readbuf
, offset
, len
, xfered_len
,
10946 &remote_protocol_packets
[PACKET_qXfer_osdata
]);
10948 case TARGET_OBJECT_THREADS
:
10949 gdb_assert (annex
== NULL
);
10950 return remote_read_qxfer ("threads", annex
, readbuf
, offset
, len
,
10952 &remote_protocol_packets
[PACKET_qXfer_threads
]);
10954 case TARGET_OBJECT_TRACEFRAME_INFO
:
10955 gdb_assert (annex
== NULL
);
10956 return remote_read_qxfer
10957 ("traceframe-info", annex
, readbuf
, offset
, len
, xfered_len
,
10958 &remote_protocol_packets
[PACKET_qXfer_traceframe_info
]);
10960 case TARGET_OBJECT_FDPIC
:
10961 return remote_read_qxfer ("fdpic", annex
, readbuf
, offset
, len
,
10963 &remote_protocol_packets
[PACKET_qXfer_fdpic
]);
10965 case TARGET_OBJECT_OPENVMS_UIB
:
10966 return remote_read_qxfer ("uib", annex
, readbuf
, offset
, len
,
10968 &remote_protocol_packets
[PACKET_qXfer_uib
]);
10970 case TARGET_OBJECT_BTRACE
:
10971 return remote_read_qxfer ("btrace", annex
, readbuf
, offset
, len
,
10973 &remote_protocol_packets
[PACKET_qXfer_btrace
]);
10975 case TARGET_OBJECT_BTRACE_CONF
:
10976 return remote_read_qxfer ("btrace-conf", annex
, readbuf
, offset
,
10978 &remote_protocol_packets
[PACKET_qXfer_btrace_conf
]);
10980 case TARGET_OBJECT_EXEC_FILE
:
10981 return remote_read_qxfer ("exec-file", annex
, readbuf
, offset
,
10983 &remote_protocol_packets
[PACKET_qXfer_exec_file
]);
10986 return TARGET_XFER_E_IO
;
10989 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
10990 large enough let the caller deal with it. */
10991 if (len
< get_remote_packet_size ())
10992 return TARGET_XFER_E_IO
;
10993 len
= get_remote_packet_size ();
10995 /* Except for querying the minimum buffer size, target must be open. */
10996 if (!rs
->remote_desc
)
10997 error (_("remote query is only available after target open"));
10999 gdb_assert (annex
!= NULL
);
11000 gdb_assert (readbuf
!= NULL
);
11002 p2
= rs
->buf
.data ();
11004 *p2
++ = query_type
;
11006 /* We used one buffer char for the remote protocol q command and
11007 another for the query type. As the remote protocol encapsulation
11008 uses 4 chars plus one extra in case we are debugging
11009 (remote_debug), we have PBUFZIZ - 7 left to pack the query
11012 while (annex
[i
] && (i
< (get_remote_packet_size () - 8)))
11014 /* Bad caller may have sent forbidden characters. */
11015 gdb_assert (isprint (annex
[i
]) && annex
[i
] != '$' && annex
[i
] != '#');
11020 gdb_assert (annex
[i
] == '\0');
11022 i
= putpkt (rs
->buf
);
11024 return TARGET_XFER_E_IO
;
11026 getpkt (&rs
->buf
, 0);
11027 strcpy ((char *) readbuf
, rs
->buf
.data ());
11029 *xfered_len
= strlen ((char *) readbuf
);
11030 return (*xfered_len
!= 0) ? TARGET_XFER_OK
: TARGET_XFER_EOF
;
11033 /* Implementation of to_get_memory_xfer_limit. */
11036 remote_target::get_memory_xfer_limit ()
11038 return get_memory_write_packet_size ();
11042 remote_target::search_memory (CORE_ADDR start_addr
, ULONGEST search_space_len
,
11043 const gdb_byte
*pattern
, ULONGEST pattern_len
,
11044 CORE_ADDR
*found_addrp
)
11046 int addr_size
= gdbarch_addr_bit (target_gdbarch ()) / 8;
11047 struct remote_state
*rs
= get_remote_state ();
11048 int max_size
= get_memory_write_packet_size ();
11049 struct packet_config
*packet
=
11050 &remote_protocol_packets
[PACKET_qSearch_memory
];
11051 /* Number of packet bytes used to encode the pattern;
11052 this could be more than PATTERN_LEN due to escape characters. */
11053 int escaped_pattern_len
;
11054 /* Amount of pattern that was encodable in the packet. */
11055 int used_pattern_len
;
11058 ULONGEST found_addr
;
11060 /* Don't go to the target if we don't have to. This is done before
11061 checking packet_config_support to avoid the possibility that a
11062 success for this edge case means the facility works in
11064 if (pattern_len
> search_space_len
)
11066 if (pattern_len
== 0)
11068 *found_addrp
= start_addr
;
11072 /* If we already know the packet isn't supported, fall back to the simple
11073 way of searching memory. */
11075 if (packet_config_support (packet
) == PACKET_DISABLE
)
11077 /* Target doesn't provided special support, fall back and use the
11078 standard support (copy memory and do the search here). */
11079 return simple_search_memory (this, start_addr
, search_space_len
,
11080 pattern
, pattern_len
, found_addrp
);
11083 /* Make sure the remote is pointing at the right process. */
11084 set_general_process ();
11086 /* Insert header. */
11087 i
= snprintf (rs
->buf
.data (), max_size
,
11088 "qSearch:memory:%s;%s;",
11089 phex_nz (start_addr
, addr_size
),
11090 phex_nz (search_space_len
, sizeof (search_space_len
)));
11091 max_size
-= (i
+ 1);
11093 /* Escape as much data as fits into rs->buf. */
11094 escaped_pattern_len
=
11095 remote_escape_output (pattern
, pattern_len
, 1,
11096 (gdb_byte
*) rs
->buf
.data () + i
,
11097 &used_pattern_len
, max_size
);
11099 /* Bail if the pattern is too large. */
11100 if (used_pattern_len
!= pattern_len
)
11101 error (_("Pattern is too large to transmit to remote target."));
11103 if (putpkt_binary (rs
->buf
.data (), i
+ escaped_pattern_len
) < 0
11104 || getpkt_sane (&rs
->buf
, 0) < 0
11105 || packet_ok (rs
->buf
, packet
) != PACKET_OK
)
11107 /* The request may not have worked because the command is not
11108 supported. If so, fall back to the simple way. */
11109 if (packet_config_support (packet
) == PACKET_DISABLE
)
11111 return simple_search_memory (this, start_addr
, search_space_len
,
11112 pattern
, pattern_len
, found_addrp
);
11117 if (rs
->buf
[0] == '0')
11119 else if (rs
->buf
[0] == '1')
11122 if (rs
->buf
[1] != ',')
11123 error (_("Unknown qSearch:memory reply: %s"), rs
->buf
.data ());
11124 unpack_varlen_hex (&rs
->buf
[2], &found_addr
);
11125 *found_addrp
= found_addr
;
11128 error (_("Unknown qSearch:memory reply: %s"), rs
->buf
.data ());
11134 remote_target::rcmd (const char *command
, struct ui_file
*outbuf
)
11136 struct remote_state
*rs
= get_remote_state ();
11137 char *p
= rs
->buf
.data ();
11139 if (!rs
->remote_desc
)
11140 error (_("remote rcmd is only available after target open"));
11142 /* Send a NULL command across as an empty command. */
11143 if (command
== NULL
)
11146 /* The query prefix. */
11147 strcpy (rs
->buf
.data (), "qRcmd,");
11148 p
= strchr (rs
->buf
.data (), '\0');
11150 if ((strlen (rs
->buf
.data ()) + strlen (command
) * 2 + 8/*misc*/)
11151 > get_remote_packet_size ())
11152 error (_("\"monitor\" command ``%s'' is too long."), command
);
11154 /* Encode the actual command. */
11155 bin2hex ((const gdb_byte
*) command
, p
, strlen (command
));
11157 if (putpkt (rs
->buf
) < 0)
11158 error (_("Communication problem with target."));
11160 /* get/display the response */
11165 /* XXX - see also remote_get_noisy_reply(). */
11166 QUIT
; /* Allow user to bail out with ^C. */
11168 if (getpkt_sane (&rs
->buf
, 0) == -1)
11170 /* Timeout. Continue to (try to) read responses.
11171 This is better than stopping with an error, assuming the stub
11172 is still executing the (long) monitor command.
11173 If needed, the user can interrupt gdb using C-c, obtaining
11174 an effect similar to stop on timeout. */
11177 buf
= rs
->buf
.data ();
11178 if (buf
[0] == '\0')
11179 error (_("Target does not support this command."));
11180 if (buf
[0] == 'O' && buf
[1] != 'K')
11182 remote_console_output (buf
+ 1); /* 'O' message from stub. */
11185 if (strcmp (buf
, "OK") == 0)
11187 if (strlen (buf
) == 3 && buf
[0] == 'E'
11188 && isdigit (buf
[1]) && isdigit (buf
[2]))
11190 error (_("Protocol error with Rcmd"));
11192 for (p
= buf
; p
[0] != '\0' && p
[1] != '\0'; p
+= 2)
11194 char c
= (fromhex (p
[0]) << 4) + fromhex (p
[1]);
11196 fputc_unfiltered (c
, outbuf
);
11202 std::vector
<mem_region
>
11203 remote_target::memory_map ()
11205 std::vector
<mem_region
> result
;
11206 gdb::optional
<gdb::char_vector
> text
11207 = target_read_stralloc (current_top_target (), TARGET_OBJECT_MEMORY_MAP
, NULL
);
11210 result
= parse_memory_map (text
->data ());
11216 packet_command (const char *args
, int from_tty
)
11218 remote_target
*remote
= get_current_remote_target ();
11220 if (remote
== nullptr)
11221 error (_("command can only be used with remote target"));
11223 remote
->packet_command (args
, from_tty
);
11227 remote_target::packet_command (const char *args
, int from_tty
)
11230 error (_("remote-packet command requires packet text as argument"));
11232 puts_filtered ("sending: ");
11233 print_packet (args
);
11234 puts_filtered ("\n");
11237 remote_state
*rs
= get_remote_state ();
11239 getpkt (&rs
->buf
, 0);
11240 puts_filtered ("received: ");
11241 print_packet (rs
->buf
.data ());
11242 puts_filtered ("\n");
11246 /* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
11248 static void display_thread_info (struct gdb_ext_thread_info
*info
);
11250 static void threadset_test_cmd (char *cmd
, int tty
);
11252 static void threadalive_test (char *cmd
, int tty
);
11254 static void threadlist_test_cmd (char *cmd
, int tty
);
11256 int get_and_display_threadinfo (threadref
*ref
);
11258 static void threadinfo_test_cmd (char *cmd
, int tty
);
11260 static int thread_display_step (threadref
*ref
, void *context
);
11262 static void threadlist_update_test_cmd (char *cmd
, int tty
);
11264 static void init_remote_threadtests (void);
11266 #define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
11269 threadset_test_cmd (const char *cmd
, int tty
)
11271 int sample_thread
= SAMPLE_THREAD
;
11273 printf_filtered (_("Remote threadset test\n"));
11274 set_general_thread (sample_thread
);
11279 threadalive_test (const char *cmd
, int tty
)
11281 int sample_thread
= SAMPLE_THREAD
;
11282 int pid
= inferior_ptid
.pid ();
11283 ptid_t ptid
= ptid_t (pid
, sample_thread
, 0);
11285 if (remote_thread_alive (ptid
))
11286 printf_filtered ("PASS: Thread alive test\n");
11288 printf_filtered ("FAIL: Thread alive test\n");
11291 void output_threadid (char *title
, threadref
*ref
);
11294 output_threadid (char *title
, threadref
*ref
)
11298 pack_threadid (&hexid
[0], ref
); /* Convert thread id into hex. */
11300 printf_filtered ("%s %s\n", title
, (&hexid
[0]));
11304 threadlist_test_cmd (const char *cmd
, int tty
)
11307 threadref nextthread
;
11308 int done
, result_count
;
11309 threadref threadlist
[3];
11311 printf_filtered ("Remote Threadlist test\n");
11312 if (!remote_get_threadlist (startflag
, &nextthread
, 3, &done
,
11313 &result_count
, &threadlist
[0]))
11314 printf_filtered ("FAIL: threadlist test\n");
11317 threadref
*scan
= threadlist
;
11318 threadref
*limit
= scan
+ result_count
;
11320 while (scan
< limit
)
11321 output_threadid (" thread ", scan
++);
11326 display_thread_info (struct gdb_ext_thread_info
*info
)
11328 output_threadid ("Threadid: ", &info
->threadid
);
11329 printf_filtered ("Name: %s\n ", info
->shortname
);
11330 printf_filtered ("State: %s\n", info
->display
);
11331 printf_filtered ("other: %s\n\n", info
->more_display
);
11335 get_and_display_threadinfo (threadref
*ref
)
11339 struct gdb_ext_thread_info threadinfo
;
11341 set
= TAG_THREADID
| TAG_EXISTS
| TAG_THREADNAME
11342 | TAG_MOREDISPLAY
| TAG_DISPLAY
;
11343 if (0 != (result
= remote_get_threadinfo (ref
, set
, &threadinfo
)))
11344 display_thread_info (&threadinfo
);
11349 threadinfo_test_cmd (const char *cmd
, int tty
)
11351 int athread
= SAMPLE_THREAD
;
11355 int_to_threadref (&thread
, athread
);
11356 printf_filtered ("Remote Threadinfo test\n");
11357 if (!get_and_display_threadinfo (&thread
))
11358 printf_filtered ("FAIL cannot get thread info\n");
11362 thread_display_step (threadref
*ref
, void *context
)
11364 /* output_threadid(" threadstep ",ref); *//* simple test */
11365 return get_and_display_threadinfo (ref
);
11369 threadlist_update_test_cmd (const char *cmd
, int tty
)
11371 printf_filtered ("Remote Threadlist update test\n");
11372 remote_threadlist_iterator (thread_display_step
, 0, CRAZY_MAX_THREADS
);
11376 init_remote_threadtests (void)
11378 add_com ("tlist", class_obscure
, threadlist_test_cmd
,
11379 _("Fetch and print the remote list of "
11380 "thread identifiers, one pkt only."));
11381 add_com ("tinfo", class_obscure
, threadinfo_test_cmd
,
11382 _("Fetch and display info about one thread."));
11383 add_com ("tset", class_obscure
, threadset_test_cmd
,
11384 _("Test setting to a different thread."));
11385 add_com ("tupd", class_obscure
, threadlist_update_test_cmd
,
11386 _("Iterate through updating all remote thread info."));
11387 add_com ("talive", class_obscure
, threadalive_test
,
11388 _("Remote thread alive test."));
11393 /* Convert a thread ID to a string. */
11396 remote_target::pid_to_str (ptid_t ptid
)
11398 struct remote_state
*rs
= get_remote_state ();
11400 if (ptid
== null_ptid
)
11401 return normal_pid_to_str (ptid
);
11402 else if (ptid
.is_pid ())
11404 /* Printing an inferior target id. */
11406 /* When multi-process extensions are off, there's no way in the
11407 remote protocol to know the remote process id, if there's any
11408 at all. There's one exception --- when we're connected with
11409 target extended-remote, and we manually attached to a process
11410 with "attach PID". We don't record anywhere a flag that
11411 allows us to distinguish that case from the case of
11412 connecting with extended-remote and the stub already being
11413 attached to a process, and reporting yes to qAttached, hence
11414 no smart special casing here. */
11415 if (!remote_multi_process_p (rs
))
11416 return "Remote target";
11418 return normal_pid_to_str (ptid
);
11422 if (magic_null_ptid
== ptid
)
11423 return "Thread <main>";
11424 else if (remote_multi_process_p (rs
))
11425 if (ptid
.lwp () == 0)
11426 return normal_pid_to_str (ptid
);
11428 return string_printf ("Thread %d.%ld",
11429 ptid
.pid (), ptid
.lwp ());
11431 return string_printf ("Thread %ld", ptid
.lwp ());
11435 /* Get the address of the thread local variable in OBJFILE which is
11436 stored at OFFSET within the thread local storage for thread PTID. */
11439 remote_target::get_thread_local_address (ptid_t ptid
, CORE_ADDR lm
,
11442 if (packet_support (PACKET_qGetTLSAddr
) != PACKET_DISABLE
)
11444 struct remote_state
*rs
= get_remote_state ();
11445 char *p
= rs
->buf
.data ();
11446 char *endp
= p
+ get_remote_packet_size ();
11447 enum packet_result result
;
11449 strcpy (p
, "qGetTLSAddr:");
11451 p
= write_ptid (p
, endp
, ptid
);
11453 p
+= hexnumstr (p
, offset
);
11455 p
+= hexnumstr (p
, lm
);
11459 getpkt (&rs
->buf
, 0);
11460 result
= packet_ok (rs
->buf
,
11461 &remote_protocol_packets
[PACKET_qGetTLSAddr
]);
11462 if (result
== PACKET_OK
)
11466 unpack_varlen_hex (rs
->buf
.data (), &addr
);
11469 else if (result
== PACKET_UNKNOWN
)
11470 throw_error (TLS_GENERIC_ERROR
,
11471 _("Remote target doesn't support qGetTLSAddr packet"));
11473 throw_error (TLS_GENERIC_ERROR
,
11474 _("Remote target failed to process qGetTLSAddr request"));
11477 throw_error (TLS_GENERIC_ERROR
,
11478 _("TLS not supported or disabled on this target"));
11483 /* Provide thread local base, i.e. Thread Information Block address.
11484 Returns 1 if ptid is found and thread_local_base is non zero. */
11487 remote_target::get_tib_address (ptid_t ptid
, CORE_ADDR
*addr
)
11489 if (packet_support (PACKET_qGetTIBAddr
) != PACKET_DISABLE
)
11491 struct remote_state
*rs
= get_remote_state ();
11492 char *p
= rs
->buf
.data ();
11493 char *endp
= p
+ get_remote_packet_size ();
11494 enum packet_result result
;
11496 strcpy (p
, "qGetTIBAddr:");
11498 p
= write_ptid (p
, endp
, ptid
);
11502 getpkt (&rs
->buf
, 0);
11503 result
= packet_ok (rs
->buf
,
11504 &remote_protocol_packets
[PACKET_qGetTIBAddr
]);
11505 if (result
== PACKET_OK
)
11508 unpack_varlen_hex (rs
->buf
.data (), &val
);
11510 *addr
= (CORE_ADDR
) val
;
11513 else if (result
== PACKET_UNKNOWN
)
11514 error (_("Remote target doesn't support qGetTIBAddr packet"));
11516 error (_("Remote target failed to process qGetTIBAddr request"));
11519 error (_("qGetTIBAddr not supported or disabled on this target"));
11524 /* Support for inferring a target description based on the current
11525 architecture and the size of a 'g' packet. While the 'g' packet
11526 can have any size (since optional registers can be left off the
11527 end), some sizes are easily recognizable given knowledge of the
11528 approximate architecture. */
11530 struct remote_g_packet_guess
11532 remote_g_packet_guess (int bytes_
, const struct target_desc
*tdesc_
)
11539 const struct target_desc
*tdesc
;
11542 struct remote_g_packet_data
: public allocate_on_obstack
11544 std::vector
<remote_g_packet_guess
> guesses
;
11547 static struct gdbarch_data
*remote_g_packet_data_handle
;
11550 remote_g_packet_data_init (struct obstack
*obstack
)
11552 return new (obstack
) remote_g_packet_data
;
11556 register_remote_g_packet_guess (struct gdbarch
*gdbarch
, int bytes
,
11557 const struct target_desc
*tdesc
)
11559 struct remote_g_packet_data
*data
11560 = ((struct remote_g_packet_data
*)
11561 gdbarch_data (gdbarch
, remote_g_packet_data_handle
));
11563 gdb_assert (tdesc
!= NULL
);
11565 for (const remote_g_packet_guess
&guess
: data
->guesses
)
11566 if (guess
.bytes
== bytes
)
11567 internal_error (__FILE__
, __LINE__
,
11568 _("Duplicate g packet description added for size %d"),
11571 data
->guesses
.emplace_back (bytes
, tdesc
);
11574 /* Return true if remote_read_description would do anything on this target
11575 and architecture, false otherwise. */
11578 remote_read_description_p (struct target_ops
*target
)
11580 struct remote_g_packet_data
*data
11581 = ((struct remote_g_packet_data
*)
11582 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle
));
11584 return !data
->guesses
.empty ();
11587 const struct target_desc
*
11588 remote_target::read_description ()
11590 struct remote_g_packet_data
*data
11591 = ((struct remote_g_packet_data
*)
11592 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle
));
11594 /* Do not try this during initial connection, when we do not know
11595 whether there is a running but stopped thread. */
11596 if (!target_has_execution
|| inferior_ptid
== null_ptid
)
11597 return beneath ()->read_description ();
11599 if (!data
->guesses
.empty ())
11601 int bytes
= send_g_packet ();
11603 for (const remote_g_packet_guess
&guess
: data
->guesses
)
11604 if (guess
.bytes
== bytes
)
11605 return guess
.tdesc
;
11607 /* We discard the g packet. A minor optimization would be to
11608 hold on to it, and fill the register cache once we have selected
11609 an architecture, but it's too tricky to do safely. */
11612 return beneath ()->read_description ();
11615 /* Remote file transfer support. This is host-initiated I/O, not
11616 target-initiated; for target-initiated, see remote-fileio.c. */
11618 /* If *LEFT is at least the length of STRING, copy STRING to
11619 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11620 decrease *LEFT. Otherwise raise an error. */
11623 remote_buffer_add_string (char **buffer
, int *left
, const char *string
)
11625 int len
= strlen (string
);
11628 error (_("Packet too long for target."));
11630 memcpy (*buffer
, string
, len
);
11634 /* NUL-terminate the buffer as a convenience, if there is
11640 /* If *LEFT is large enough, hex encode LEN bytes from BYTES into
11641 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11642 decrease *LEFT. Otherwise raise an error. */
11645 remote_buffer_add_bytes (char **buffer
, int *left
, const gdb_byte
*bytes
,
11648 if (2 * len
> *left
)
11649 error (_("Packet too long for target."));
11651 bin2hex (bytes
, *buffer
, len
);
11652 *buffer
+= 2 * len
;
11655 /* NUL-terminate the buffer as a convenience, if there is
11661 /* If *LEFT is large enough, convert VALUE to hex and add it to
11662 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11663 decrease *LEFT. Otherwise raise an error. */
11666 remote_buffer_add_int (char **buffer
, int *left
, ULONGEST value
)
11668 int len
= hexnumlen (value
);
11671 error (_("Packet too long for target."));
11673 hexnumstr (*buffer
, value
);
11677 /* NUL-terminate the buffer as a convenience, if there is
11683 /* Parse an I/O result packet from BUFFER. Set RETCODE to the return
11684 value, *REMOTE_ERRNO to the remote error number or zero if none
11685 was included, and *ATTACHMENT to point to the start of the annex
11686 if any. The length of the packet isn't needed here; there may
11687 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
11689 Return 0 if the packet could be parsed, -1 if it could not. If
11690 -1 is returned, the other variables may not be initialized. */
11693 remote_hostio_parse_result (char *buffer
, int *retcode
,
11694 int *remote_errno
, char **attachment
)
11699 *attachment
= NULL
;
11701 if (buffer
[0] != 'F')
11705 *retcode
= strtol (&buffer
[1], &p
, 16);
11706 if (errno
!= 0 || p
== &buffer
[1])
11709 /* Check for ",errno". */
11713 *remote_errno
= strtol (p
+ 1, &p2
, 16);
11714 if (errno
!= 0 || p
+ 1 == p2
)
11719 /* Check for ";attachment". If there is no attachment, the
11720 packet should end here. */
11723 *attachment
= p
+ 1;
11726 else if (*p
== '\0')
11732 /* Send a prepared I/O packet to the target and read its response.
11733 The prepared packet is in the global RS->BUF before this function
11734 is called, and the answer is there when we return.
11736 COMMAND_BYTES is the length of the request to send, which may include
11737 binary data. WHICH_PACKET is the packet configuration to check
11738 before attempting a packet. If an error occurs, *REMOTE_ERRNO
11739 is set to the error number and -1 is returned. Otherwise the value
11740 returned by the function is returned.
11742 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
11743 attachment is expected; an error will be reported if there's a
11744 mismatch. If one is found, *ATTACHMENT will be set to point into
11745 the packet buffer and *ATTACHMENT_LEN will be set to the
11746 attachment's length. */
11749 remote_target::remote_hostio_send_command (int command_bytes
, int which_packet
,
11750 int *remote_errno
, char **attachment
,
11751 int *attachment_len
)
11753 struct remote_state
*rs
= get_remote_state ();
11754 int ret
, bytes_read
;
11755 char *attachment_tmp
;
11757 if (packet_support (which_packet
) == PACKET_DISABLE
)
11759 *remote_errno
= FILEIO_ENOSYS
;
11763 putpkt_binary (rs
->buf
.data (), command_bytes
);
11764 bytes_read
= getpkt_sane (&rs
->buf
, 0);
11766 /* If it timed out, something is wrong. Don't try to parse the
11768 if (bytes_read
< 0)
11770 *remote_errno
= FILEIO_EINVAL
;
11774 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[which_packet
]))
11777 *remote_errno
= FILEIO_EINVAL
;
11779 case PACKET_UNKNOWN
:
11780 *remote_errno
= FILEIO_ENOSYS
;
11786 if (remote_hostio_parse_result (rs
->buf
.data (), &ret
, remote_errno
,
11789 *remote_errno
= FILEIO_EINVAL
;
11793 /* Make sure we saw an attachment if and only if we expected one. */
11794 if ((attachment_tmp
== NULL
&& attachment
!= NULL
)
11795 || (attachment_tmp
!= NULL
&& attachment
== NULL
))
11797 *remote_errno
= FILEIO_EINVAL
;
11801 /* If an attachment was found, it must point into the packet buffer;
11802 work out how many bytes there were. */
11803 if (attachment_tmp
!= NULL
)
11805 *attachment
= attachment_tmp
;
11806 *attachment_len
= bytes_read
- (*attachment
- rs
->buf
.data ());
11812 /* See declaration.h. */
11815 readahead_cache::invalidate ()
11820 /* See declaration.h. */
11823 readahead_cache::invalidate_fd (int fd
)
11825 if (this->fd
== fd
)
11829 /* Set the filesystem remote_hostio functions that take FILENAME
11830 arguments will use. Return 0 on success, or -1 if an error
11831 occurs (and set *REMOTE_ERRNO). */
11834 remote_target::remote_hostio_set_filesystem (struct inferior
*inf
,
11837 struct remote_state
*rs
= get_remote_state ();
11838 int required_pid
= (inf
== NULL
|| inf
->fake_pid_p
) ? 0 : inf
->pid
;
11839 char *p
= rs
->buf
.data ();
11840 int left
= get_remote_packet_size () - 1;
11844 if (packet_support (PACKET_vFile_setfs
) == PACKET_DISABLE
)
11847 if (rs
->fs_pid
!= -1 && required_pid
== rs
->fs_pid
)
11850 remote_buffer_add_string (&p
, &left
, "vFile:setfs:");
11852 xsnprintf (arg
, sizeof (arg
), "%x", required_pid
);
11853 remote_buffer_add_string (&p
, &left
, arg
);
11855 ret
= remote_hostio_send_command (p
- rs
->buf
.data (), PACKET_vFile_setfs
,
11856 remote_errno
, NULL
, NULL
);
11858 if (packet_support (PACKET_vFile_setfs
) == PACKET_DISABLE
)
11862 rs
->fs_pid
= required_pid
;
11867 /* Implementation of to_fileio_open. */
11870 remote_target::remote_hostio_open (inferior
*inf
, const char *filename
,
11871 int flags
, int mode
, int warn_if_slow
,
11874 struct remote_state
*rs
= get_remote_state ();
11875 char *p
= rs
->buf
.data ();
11876 int left
= get_remote_packet_size () - 1;
11880 static int warning_issued
= 0;
11882 printf_unfiltered (_("Reading %s from remote target...\n"),
11885 if (!warning_issued
)
11887 warning (_("File transfers from remote targets can be slow."
11888 " Use \"set sysroot\" to access files locally"
11890 warning_issued
= 1;
11894 if (remote_hostio_set_filesystem (inf
, remote_errno
) != 0)
11897 remote_buffer_add_string (&p
, &left
, "vFile:open:");
11899 remote_buffer_add_bytes (&p
, &left
, (const gdb_byte
*) filename
,
11900 strlen (filename
));
11901 remote_buffer_add_string (&p
, &left
, ",");
11903 remote_buffer_add_int (&p
, &left
, flags
);
11904 remote_buffer_add_string (&p
, &left
, ",");
11906 remote_buffer_add_int (&p
, &left
, mode
);
11908 return remote_hostio_send_command (p
- rs
->buf
.data (), PACKET_vFile_open
,
11909 remote_errno
, NULL
, NULL
);
11913 remote_target::fileio_open (struct inferior
*inf
, const char *filename
,
11914 int flags
, int mode
, int warn_if_slow
,
11917 return remote_hostio_open (inf
, filename
, flags
, mode
, warn_if_slow
,
11921 /* Implementation of to_fileio_pwrite. */
11924 remote_target::remote_hostio_pwrite (int fd
, const gdb_byte
*write_buf
, int len
,
11925 ULONGEST offset
, int *remote_errno
)
11927 struct remote_state
*rs
= get_remote_state ();
11928 char *p
= rs
->buf
.data ();
11929 int left
= get_remote_packet_size ();
11932 rs
->readahead_cache
.invalidate_fd (fd
);
11934 remote_buffer_add_string (&p
, &left
, "vFile:pwrite:");
11936 remote_buffer_add_int (&p
, &left
, fd
);
11937 remote_buffer_add_string (&p
, &left
, ",");
11939 remote_buffer_add_int (&p
, &left
, offset
);
11940 remote_buffer_add_string (&p
, &left
, ",");
11942 p
+= remote_escape_output (write_buf
, len
, 1, (gdb_byte
*) p
, &out_len
,
11943 (get_remote_packet_size ()
11944 - (p
- rs
->buf
.data ())));
11946 return remote_hostio_send_command (p
- rs
->buf
.data (), PACKET_vFile_pwrite
,
11947 remote_errno
, NULL
, NULL
);
11951 remote_target::fileio_pwrite (int fd
, const gdb_byte
*write_buf
, int len
,
11952 ULONGEST offset
, int *remote_errno
)
11954 return remote_hostio_pwrite (fd
, write_buf
, len
, offset
, remote_errno
);
11957 /* Helper for the implementation of to_fileio_pread. Read the file
11958 from the remote side with vFile:pread. */
11961 remote_target::remote_hostio_pread_vFile (int fd
, gdb_byte
*read_buf
, int len
,
11962 ULONGEST offset
, int *remote_errno
)
11964 struct remote_state
*rs
= get_remote_state ();
11965 char *p
= rs
->buf
.data ();
11967 int left
= get_remote_packet_size ();
11968 int ret
, attachment_len
;
11971 remote_buffer_add_string (&p
, &left
, "vFile:pread:");
11973 remote_buffer_add_int (&p
, &left
, fd
);
11974 remote_buffer_add_string (&p
, &left
, ",");
11976 remote_buffer_add_int (&p
, &left
, len
);
11977 remote_buffer_add_string (&p
, &left
, ",");
11979 remote_buffer_add_int (&p
, &left
, offset
);
11981 ret
= remote_hostio_send_command (p
- rs
->buf
.data (), PACKET_vFile_pread
,
11982 remote_errno
, &attachment
,
11988 read_len
= remote_unescape_input ((gdb_byte
*) attachment
, attachment_len
,
11990 if (read_len
!= ret
)
11991 error (_("Read returned %d, but %d bytes."), ret
, (int) read_len
);
11996 /* See declaration.h. */
11999 readahead_cache::pread (int fd
, gdb_byte
*read_buf
, size_t len
,
12003 && this->offset
<= offset
12004 && offset
< this->offset
+ this->bufsize
)
12006 ULONGEST max
= this->offset
+ this->bufsize
;
12008 if (offset
+ len
> max
)
12009 len
= max
- offset
;
12011 memcpy (read_buf
, this->buf
+ offset
- this->offset
, len
);
12018 /* Implementation of to_fileio_pread. */
12021 remote_target::remote_hostio_pread (int fd
, gdb_byte
*read_buf
, int len
,
12022 ULONGEST offset
, int *remote_errno
)
12025 struct remote_state
*rs
= get_remote_state ();
12026 readahead_cache
*cache
= &rs
->readahead_cache
;
12028 ret
= cache
->pread (fd
, read_buf
, len
, offset
);
12031 cache
->hit_count
++;
12034 fprintf_unfiltered (gdb_stdlog
, "readahead cache hit %s\n",
12035 pulongest (cache
->hit_count
));
12039 cache
->miss_count
++;
12041 fprintf_unfiltered (gdb_stdlog
, "readahead cache miss %s\n",
12042 pulongest (cache
->miss_count
));
12045 cache
->offset
= offset
;
12046 cache
->bufsize
= get_remote_packet_size ();
12047 cache
->buf
= (gdb_byte
*) xrealloc (cache
->buf
, cache
->bufsize
);
12049 ret
= remote_hostio_pread_vFile (cache
->fd
, cache
->buf
, cache
->bufsize
,
12050 cache
->offset
, remote_errno
);
12053 cache
->invalidate_fd (fd
);
12057 cache
->bufsize
= ret
;
12058 return cache
->pread (fd
, read_buf
, len
, offset
);
12062 remote_target::fileio_pread (int fd
, gdb_byte
*read_buf
, int len
,
12063 ULONGEST offset
, int *remote_errno
)
12065 return remote_hostio_pread (fd
, read_buf
, len
, offset
, remote_errno
);
12068 /* Implementation of to_fileio_close. */
12071 remote_target::remote_hostio_close (int fd
, int *remote_errno
)
12073 struct remote_state
*rs
= get_remote_state ();
12074 char *p
= rs
->buf
.data ();
12075 int left
= get_remote_packet_size () - 1;
12077 rs
->readahead_cache
.invalidate_fd (fd
);
12079 remote_buffer_add_string (&p
, &left
, "vFile:close:");
12081 remote_buffer_add_int (&p
, &left
, fd
);
12083 return remote_hostio_send_command (p
- rs
->buf
.data (), PACKET_vFile_close
,
12084 remote_errno
, NULL
, NULL
);
12088 remote_target::fileio_close (int fd
, int *remote_errno
)
12090 return remote_hostio_close (fd
, remote_errno
);
12093 /* Implementation of to_fileio_unlink. */
12096 remote_target::remote_hostio_unlink (inferior
*inf
, const char *filename
,
12099 struct remote_state
*rs
= get_remote_state ();
12100 char *p
= rs
->buf
.data ();
12101 int left
= get_remote_packet_size () - 1;
12103 if (remote_hostio_set_filesystem (inf
, remote_errno
) != 0)
12106 remote_buffer_add_string (&p
, &left
, "vFile:unlink:");
12108 remote_buffer_add_bytes (&p
, &left
, (const gdb_byte
*) filename
,
12109 strlen (filename
));
12111 return remote_hostio_send_command (p
- rs
->buf
.data (), PACKET_vFile_unlink
,
12112 remote_errno
, NULL
, NULL
);
12116 remote_target::fileio_unlink (struct inferior
*inf
, const char *filename
,
12119 return remote_hostio_unlink (inf
, filename
, remote_errno
);
12122 /* Implementation of to_fileio_readlink. */
12124 gdb::optional
<std::string
>
12125 remote_target::fileio_readlink (struct inferior
*inf
, const char *filename
,
12128 struct remote_state
*rs
= get_remote_state ();
12129 char *p
= rs
->buf
.data ();
12131 int left
= get_remote_packet_size ();
12132 int len
, attachment_len
;
12135 if (remote_hostio_set_filesystem (inf
, remote_errno
) != 0)
12138 remote_buffer_add_string (&p
, &left
, "vFile:readlink:");
12140 remote_buffer_add_bytes (&p
, &left
, (const gdb_byte
*) filename
,
12141 strlen (filename
));
12143 len
= remote_hostio_send_command (p
- rs
->buf
.data (), PACKET_vFile_readlink
,
12144 remote_errno
, &attachment
,
12150 std::string
ret (len
, '\0');
12152 read_len
= remote_unescape_input ((gdb_byte
*) attachment
, attachment_len
,
12153 (gdb_byte
*) &ret
[0], len
);
12154 if (read_len
!= len
)
12155 error (_("Readlink returned %d, but %d bytes."), len
, read_len
);
12160 /* Implementation of to_fileio_fstat. */
12163 remote_target::fileio_fstat (int fd
, struct stat
*st
, int *remote_errno
)
12165 struct remote_state
*rs
= get_remote_state ();
12166 char *p
= rs
->buf
.data ();
12167 int left
= get_remote_packet_size ();
12168 int attachment_len
, ret
;
12170 struct fio_stat fst
;
12173 remote_buffer_add_string (&p
, &left
, "vFile:fstat:");
12175 remote_buffer_add_int (&p
, &left
, fd
);
12177 ret
= remote_hostio_send_command (p
- rs
->buf
.data (), PACKET_vFile_fstat
,
12178 remote_errno
, &attachment
,
12182 if (*remote_errno
!= FILEIO_ENOSYS
)
12185 /* Strictly we should return -1, ENOSYS here, but when
12186 "set sysroot remote:" was implemented in August 2008
12187 BFD's need for a stat function was sidestepped with
12188 this hack. This was not remedied until March 2015
12189 so we retain the previous behavior to avoid breaking
12192 Note that the memset is a March 2015 addition; older
12193 GDBs set st_size *and nothing else* so the structure
12194 would have garbage in all other fields. This might
12195 break something but retaining the previous behavior
12196 here would be just too wrong. */
12198 memset (st
, 0, sizeof (struct stat
));
12199 st
->st_size
= INT_MAX
;
12203 read_len
= remote_unescape_input ((gdb_byte
*) attachment
, attachment_len
,
12204 (gdb_byte
*) &fst
, sizeof (fst
));
12206 if (read_len
!= ret
)
12207 error (_("vFile:fstat returned %d, but %d bytes."), ret
, read_len
);
12209 if (read_len
!= sizeof (fst
))
12210 error (_("vFile:fstat returned %d bytes, but expecting %d."),
12211 read_len
, (int) sizeof (fst
));
12213 remote_fileio_to_host_stat (&fst
, st
);
12218 /* Implementation of to_filesystem_is_local. */
12221 remote_target::filesystem_is_local ()
12223 /* Valgrind GDB presents itself as a remote target but works
12224 on the local filesystem: it does not implement remote get
12225 and users are not expected to set a sysroot. To handle
12226 this case we treat the remote filesystem as local if the
12227 sysroot is exactly TARGET_SYSROOT_PREFIX and if the stub
12228 does not support vFile:open. */
12229 if (strcmp (gdb_sysroot
, TARGET_SYSROOT_PREFIX
) == 0)
12231 enum packet_support ps
= packet_support (PACKET_vFile_open
);
12233 if (ps
== PACKET_SUPPORT_UNKNOWN
)
12235 int fd
, remote_errno
;
12237 /* Try opening a file to probe support. The supplied
12238 filename is irrelevant, we only care about whether
12239 the stub recognizes the packet or not. */
12240 fd
= remote_hostio_open (NULL
, "just probing",
12241 FILEIO_O_RDONLY
, 0700, 0,
12245 remote_hostio_close (fd
, &remote_errno
);
12247 ps
= packet_support (PACKET_vFile_open
);
12250 if (ps
== PACKET_DISABLE
)
12252 static int warning_issued
= 0;
12254 if (!warning_issued
)
12256 warning (_("remote target does not support file"
12257 " transfer, attempting to access files"
12258 " from local filesystem."));
12259 warning_issued
= 1;
12270 remote_fileio_errno_to_host (int errnum
)
12276 case FILEIO_ENOENT
:
12284 case FILEIO_EACCES
:
12286 case FILEIO_EFAULT
:
12290 case FILEIO_EEXIST
:
12292 case FILEIO_ENODEV
:
12294 case FILEIO_ENOTDIR
:
12296 case FILEIO_EISDIR
:
12298 case FILEIO_EINVAL
:
12300 case FILEIO_ENFILE
:
12302 case FILEIO_EMFILE
:
12306 case FILEIO_ENOSPC
:
12308 case FILEIO_ESPIPE
:
12312 case FILEIO_ENOSYS
:
12314 case FILEIO_ENAMETOOLONG
:
12315 return ENAMETOOLONG
;
12321 remote_hostio_error (int errnum
)
12323 int host_error
= remote_fileio_errno_to_host (errnum
);
12325 if (host_error
== -1)
12326 error (_("Unknown remote I/O error %d"), errnum
);
12328 error (_("Remote I/O error: %s"), safe_strerror (host_error
));
12331 /* A RAII wrapper around a remote file descriptor. */
12333 class scoped_remote_fd
12336 scoped_remote_fd (remote_target
*remote
, int fd
)
12337 : m_remote (remote
), m_fd (fd
)
12341 ~scoped_remote_fd ()
12348 m_remote
->remote_hostio_close (m_fd
, &remote_errno
);
12352 /* Swallow exception before it escapes the dtor. If
12353 something goes wrong, likely the connection is gone,
12354 and there's nothing else that can be done. */
12359 DISABLE_COPY_AND_ASSIGN (scoped_remote_fd
);
12361 /* Release ownership of the file descriptor, and return it. */
12362 ATTRIBUTE_UNUSED_RESULT
int release () noexcept
12369 /* Return the owned file descriptor. */
12370 int get () const noexcept
12376 /* The remote target. */
12377 remote_target
*m_remote
;
12379 /* The owned remote I/O file descriptor. */
12384 remote_file_put (const char *local_file
, const char *remote_file
, int from_tty
)
12386 remote_target
*remote
= get_current_remote_target ();
12388 if (remote
== nullptr)
12389 error (_("command can only be used with remote target"));
12391 remote
->remote_file_put (local_file
, remote_file
, from_tty
);
12395 remote_target::remote_file_put (const char *local_file
, const char *remote_file
,
12398 int retcode
, remote_errno
, bytes
, io_size
;
12399 int bytes_in_buffer
;
12403 gdb_file_up file
= gdb_fopen_cloexec (local_file
, "rb");
12405 perror_with_name (local_file
);
12407 scoped_remote_fd fd
12408 (this, remote_hostio_open (NULL
,
12409 remote_file
, (FILEIO_O_WRONLY
| FILEIO_O_CREAT
12411 0700, 0, &remote_errno
));
12412 if (fd
.get () == -1)
12413 remote_hostio_error (remote_errno
);
12415 /* Send up to this many bytes at once. They won't all fit in the
12416 remote packet limit, so we'll transfer slightly fewer. */
12417 io_size
= get_remote_packet_size ();
12418 gdb::byte_vector
buffer (io_size
);
12420 bytes_in_buffer
= 0;
12423 while (bytes_in_buffer
|| !saw_eof
)
12427 bytes
= fread (buffer
.data () + bytes_in_buffer
, 1,
12428 io_size
- bytes_in_buffer
,
12432 if (ferror (file
.get ()))
12433 error (_("Error reading %s."), local_file
);
12436 /* EOF. Unless there is something still in the
12437 buffer from the last iteration, we are done. */
12439 if (bytes_in_buffer
== 0)
12447 bytes
+= bytes_in_buffer
;
12448 bytes_in_buffer
= 0;
12450 retcode
= remote_hostio_pwrite (fd
.get (), buffer
.data (), bytes
,
12451 offset
, &remote_errno
);
12454 remote_hostio_error (remote_errno
);
12455 else if (retcode
== 0)
12456 error (_("Remote write of %d bytes returned 0!"), bytes
);
12457 else if (retcode
< bytes
)
12459 /* Short write. Save the rest of the read data for the next
12461 bytes_in_buffer
= bytes
- retcode
;
12462 memmove (buffer
.data (), buffer
.data () + retcode
, bytes_in_buffer
);
12468 if (remote_hostio_close (fd
.release (), &remote_errno
))
12469 remote_hostio_error (remote_errno
);
12472 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file
);
12476 remote_file_get (const char *remote_file
, const char *local_file
, int from_tty
)
12478 remote_target
*remote
= get_current_remote_target ();
12480 if (remote
== nullptr)
12481 error (_("command can only be used with remote target"));
12483 remote
->remote_file_get (remote_file
, local_file
, from_tty
);
12487 remote_target::remote_file_get (const char *remote_file
, const char *local_file
,
12490 int remote_errno
, bytes
, io_size
;
12493 scoped_remote_fd fd
12494 (this, remote_hostio_open (NULL
,
12495 remote_file
, FILEIO_O_RDONLY
, 0, 0,
12497 if (fd
.get () == -1)
12498 remote_hostio_error (remote_errno
);
12500 gdb_file_up file
= gdb_fopen_cloexec (local_file
, "wb");
12502 perror_with_name (local_file
);
12504 /* Send up to this many bytes at once. They won't all fit in the
12505 remote packet limit, so we'll transfer slightly fewer. */
12506 io_size
= get_remote_packet_size ();
12507 gdb::byte_vector
buffer (io_size
);
12512 bytes
= remote_hostio_pread (fd
.get (), buffer
.data (), io_size
, offset
,
12515 /* Success, but no bytes, means end-of-file. */
12518 remote_hostio_error (remote_errno
);
12522 bytes
= fwrite (buffer
.data (), 1, bytes
, file
.get ());
12524 perror_with_name (local_file
);
12527 if (remote_hostio_close (fd
.release (), &remote_errno
))
12528 remote_hostio_error (remote_errno
);
12531 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file
);
12535 remote_file_delete (const char *remote_file
, int from_tty
)
12537 remote_target
*remote
= get_current_remote_target ();
12539 if (remote
== nullptr)
12540 error (_("command can only be used with remote target"));
12542 remote
->remote_file_delete (remote_file
, from_tty
);
12546 remote_target::remote_file_delete (const char *remote_file
, int from_tty
)
12548 int retcode
, remote_errno
;
12550 retcode
= remote_hostio_unlink (NULL
, remote_file
, &remote_errno
);
12552 remote_hostio_error (remote_errno
);
12555 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file
);
12559 remote_put_command (const char *args
, int from_tty
)
12562 error_no_arg (_("file to put"));
12564 gdb_argv
argv (args
);
12565 if (argv
[0] == NULL
|| argv
[1] == NULL
|| argv
[2] != NULL
)
12566 error (_("Invalid parameters to remote put"));
12568 remote_file_put (argv
[0], argv
[1], from_tty
);
12572 remote_get_command (const char *args
, int from_tty
)
12575 error_no_arg (_("file to get"));
12577 gdb_argv
argv (args
);
12578 if (argv
[0] == NULL
|| argv
[1] == NULL
|| argv
[2] != NULL
)
12579 error (_("Invalid parameters to remote get"));
12581 remote_file_get (argv
[0], argv
[1], from_tty
);
12585 remote_delete_command (const char *args
, int from_tty
)
12588 error_no_arg (_("file to delete"));
12590 gdb_argv
argv (args
);
12591 if (argv
[0] == NULL
|| argv
[1] != NULL
)
12592 error (_("Invalid parameters to remote delete"));
12594 remote_file_delete (argv
[0], from_tty
);
12598 remote_command (const char *args
, int from_tty
)
12600 help_list (remote_cmdlist
, "remote ", all_commands
, gdb_stdout
);
12604 remote_target::can_execute_reverse ()
12606 if (packet_support (PACKET_bs
) == PACKET_ENABLE
12607 || packet_support (PACKET_bc
) == PACKET_ENABLE
)
12614 remote_target::supports_non_stop ()
12620 remote_target::supports_disable_randomization ()
12622 /* Only supported in extended mode. */
12627 remote_target::supports_multi_process ()
12629 struct remote_state
*rs
= get_remote_state ();
12631 return remote_multi_process_p (rs
);
12635 remote_supports_cond_tracepoints ()
12637 return packet_support (PACKET_ConditionalTracepoints
) == PACKET_ENABLE
;
12641 remote_target::supports_evaluation_of_breakpoint_conditions ()
12643 return packet_support (PACKET_ConditionalBreakpoints
) == PACKET_ENABLE
;
12647 remote_supports_fast_tracepoints ()
12649 return packet_support (PACKET_FastTracepoints
) == PACKET_ENABLE
;
12653 remote_supports_static_tracepoints ()
12655 return packet_support (PACKET_StaticTracepoints
) == PACKET_ENABLE
;
12659 remote_supports_install_in_trace ()
12661 return packet_support (PACKET_InstallInTrace
) == PACKET_ENABLE
;
12665 remote_target::supports_enable_disable_tracepoint ()
12667 return (packet_support (PACKET_EnableDisableTracepoints_feature
)
12672 remote_target::supports_string_tracing ()
12674 return packet_support (PACKET_tracenz_feature
) == PACKET_ENABLE
;
12678 remote_target::can_run_breakpoint_commands ()
12680 return packet_support (PACKET_BreakpointCommands
) == PACKET_ENABLE
;
12684 remote_target::trace_init ()
12686 struct remote_state
*rs
= get_remote_state ();
12689 remote_get_noisy_reply ();
12690 if (strcmp (rs
->buf
.data (), "OK") != 0)
12691 error (_("Target does not support this command."));
12694 /* Recursive routine to walk through command list including loops, and
12695 download packets for each command. */
12698 remote_target::remote_download_command_source (int num
, ULONGEST addr
,
12699 struct command_line
*cmds
)
12701 struct remote_state
*rs
= get_remote_state ();
12702 struct command_line
*cmd
;
12704 for (cmd
= cmds
; cmd
; cmd
= cmd
->next
)
12706 QUIT
; /* Allow user to bail out with ^C. */
12707 strcpy (rs
->buf
.data (), "QTDPsrc:");
12708 encode_source_string (num
, addr
, "cmd", cmd
->line
,
12709 rs
->buf
.data () + strlen (rs
->buf
.data ()),
12710 rs
->buf
.size () - strlen (rs
->buf
.data ()));
12712 remote_get_noisy_reply ();
12713 if (strcmp (rs
->buf
.data (), "OK"))
12714 warning (_("Target does not support source download."));
12716 if (cmd
->control_type
== while_control
12717 || cmd
->control_type
== while_stepping_control
)
12719 remote_download_command_source (num
, addr
, cmd
->body_list_0
.get ());
12721 QUIT
; /* Allow user to bail out with ^C. */
12722 strcpy (rs
->buf
.data (), "QTDPsrc:");
12723 encode_source_string (num
, addr
, "cmd", "end",
12724 rs
->buf
.data () + strlen (rs
->buf
.data ()),
12725 rs
->buf
.size () - strlen (rs
->buf
.data ()));
12727 remote_get_noisy_reply ();
12728 if (strcmp (rs
->buf
.data (), "OK"))
12729 warning (_("Target does not support source download."));
12735 remote_target::download_tracepoint (struct bp_location
*loc
)
12739 std::vector
<std::string
> tdp_actions
;
12740 std::vector
<std::string
> stepping_actions
;
12742 struct breakpoint
*b
= loc
->owner
;
12743 struct tracepoint
*t
= (struct tracepoint
*) b
;
12744 struct remote_state
*rs
= get_remote_state ();
12746 const char *err_msg
= _("Tracepoint packet too large for target.");
12749 /* We use a buffer other than rs->buf because we'll build strings
12750 across multiple statements, and other statements in between could
12752 gdb::char_vector
buf (get_remote_packet_size ());
12754 encode_actions_rsp (loc
, &tdp_actions
, &stepping_actions
);
12756 tpaddr
= loc
->address
;
12757 sprintf_vma (addrbuf
, tpaddr
);
12758 ret
= snprintf (buf
.data (), buf
.size (), "QTDP:%x:%s:%c:%lx:%x",
12759 b
->number
, addrbuf
, /* address */
12760 (b
->enable_state
== bp_enabled
? 'E' : 'D'),
12761 t
->step_count
, t
->pass_count
);
12763 if (ret
< 0 || ret
>= buf
.size ())
12764 error ("%s", err_msg
);
12766 /* Fast tracepoints are mostly handled by the target, but we can
12767 tell the target how big of an instruction block should be moved
12769 if (b
->type
== bp_fast_tracepoint
)
12771 /* Only test for support at download time; we may not know
12772 target capabilities at definition time. */
12773 if (remote_supports_fast_tracepoints ())
12775 if (gdbarch_fast_tracepoint_valid_at (loc
->gdbarch
, tpaddr
,
12778 size_left
= buf
.size () - strlen (buf
.data ());
12779 ret
= snprintf (buf
.data () + strlen (buf
.data ()),
12781 gdb_insn_length (loc
->gdbarch
, tpaddr
));
12783 if (ret
< 0 || ret
>= size_left
)
12784 error ("%s", err_msg
);
12787 /* If it passed validation at definition but fails now,
12788 something is very wrong. */
12789 internal_error (__FILE__
, __LINE__
,
12790 _("Fast tracepoint not "
12791 "valid during download"));
12794 /* Fast tracepoints are functionally identical to regular
12795 tracepoints, so don't take lack of support as a reason to
12796 give up on the trace run. */
12797 warning (_("Target does not support fast tracepoints, "
12798 "downloading %d as regular tracepoint"), b
->number
);
12800 else if (b
->type
== bp_static_tracepoint
)
12802 /* Only test for support at download time; we may not know
12803 target capabilities at definition time. */
12804 if (remote_supports_static_tracepoints ())
12806 struct static_tracepoint_marker marker
;
12808 if (target_static_tracepoint_marker_at (tpaddr
, &marker
))
12810 size_left
= buf
.size () - strlen (buf
.data ());
12811 ret
= snprintf (buf
.data () + strlen (buf
.data ()),
12814 if (ret
< 0 || ret
>= size_left
)
12815 error ("%s", err_msg
);
12818 error (_("Static tracepoint not valid during download"));
12821 /* Fast tracepoints are functionally identical to regular
12822 tracepoints, so don't take lack of support as a reason
12823 to give up on the trace run. */
12824 error (_("Target does not support static tracepoints"));
12826 /* If the tracepoint has a conditional, make it into an agent
12827 expression and append to the definition. */
12830 /* Only test support at download time, we may not know target
12831 capabilities at definition time. */
12832 if (remote_supports_cond_tracepoints ())
12834 agent_expr_up aexpr
= gen_eval_for_expr (tpaddr
,
12837 size_left
= buf
.size () - strlen (buf
.data ());
12839 ret
= snprintf (buf
.data () + strlen (buf
.data ()),
12840 size_left
, ":X%x,", aexpr
->len
);
12842 if (ret
< 0 || ret
>= size_left
)
12843 error ("%s", err_msg
);
12845 size_left
= buf
.size () - strlen (buf
.data ());
12847 /* Two bytes to encode each aexpr byte, plus the terminating
12849 if (aexpr
->len
* 2 + 1 > size_left
)
12850 error ("%s", err_msg
);
12852 pkt
= buf
.data () + strlen (buf
.data ());
12854 for (int ndx
= 0; ndx
< aexpr
->len
; ++ndx
)
12855 pkt
= pack_hex_byte (pkt
, aexpr
->buf
[ndx
]);
12859 warning (_("Target does not support conditional tracepoints, "
12860 "ignoring tp %d cond"), b
->number
);
12863 if (b
->commands
|| *default_collect
)
12865 size_left
= buf
.size () - strlen (buf
.data ());
12867 ret
= snprintf (buf
.data () + strlen (buf
.data ()),
12870 if (ret
< 0 || ret
>= size_left
)
12871 error ("%s", err_msg
);
12874 putpkt (buf
.data ());
12875 remote_get_noisy_reply ();
12876 if (strcmp (rs
->buf
.data (), "OK"))
12877 error (_("Target does not support tracepoints."));
12879 /* do_single_steps (t); */
12880 for (auto action_it
= tdp_actions
.begin ();
12881 action_it
!= tdp_actions
.end (); action_it
++)
12883 QUIT
; /* Allow user to bail out with ^C. */
12885 bool has_more
= ((action_it
+ 1) != tdp_actions
.end ()
12886 || !stepping_actions
.empty ());
12888 ret
= snprintf (buf
.data (), buf
.size (), "QTDP:-%x:%s:%s%c",
12889 b
->number
, addrbuf
, /* address */
12890 action_it
->c_str (),
12891 has_more
? '-' : 0);
12893 if (ret
< 0 || ret
>= buf
.size ())
12894 error ("%s", err_msg
);
12896 putpkt (buf
.data ());
12897 remote_get_noisy_reply ();
12898 if (strcmp (rs
->buf
.data (), "OK"))
12899 error (_("Error on target while setting tracepoints."));
12902 for (auto action_it
= stepping_actions
.begin ();
12903 action_it
!= stepping_actions
.end (); action_it
++)
12905 QUIT
; /* Allow user to bail out with ^C. */
12907 bool is_first
= action_it
== stepping_actions
.begin ();
12908 bool has_more
= (action_it
+ 1) != stepping_actions
.end ();
12910 ret
= snprintf (buf
.data (), buf
.size (), "QTDP:-%x:%s:%s%s%s",
12911 b
->number
, addrbuf
, /* address */
12912 is_first
? "S" : "",
12913 action_it
->c_str (),
12914 has_more
? "-" : "");
12916 if (ret
< 0 || ret
>= buf
.size ())
12917 error ("%s", err_msg
);
12919 putpkt (buf
.data ());
12920 remote_get_noisy_reply ();
12921 if (strcmp (rs
->buf
.data (), "OK"))
12922 error (_("Error on target while setting tracepoints."));
12925 if (packet_support (PACKET_TracepointSource
) == PACKET_ENABLE
)
12927 if (b
->location
!= NULL
)
12929 ret
= snprintf (buf
.data (), buf
.size (), "QTDPsrc:");
12931 if (ret
< 0 || ret
>= buf
.size ())
12932 error ("%s", err_msg
);
12934 encode_source_string (b
->number
, loc
->address
, "at",
12935 event_location_to_string (b
->location
.get ()),
12936 buf
.data () + strlen (buf
.data ()),
12937 buf
.size () - strlen (buf
.data ()));
12938 putpkt (buf
.data ());
12939 remote_get_noisy_reply ();
12940 if (strcmp (rs
->buf
.data (), "OK"))
12941 warning (_("Target does not support source download."));
12943 if (b
->cond_string
)
12945 ret
= snprintf (buf
.data (), buf
.size (), "QTDPsrc:");
12947 if (ret
< 0 || ret
>= buf
.size ())
12948 error ("%s", err_msg
);
12950 encode_source_string (b
->number
, loc
->address
,
12951 "cond", b
->cond_string
,
12952 buf
.data () + strlen (buf
.data ()),
12953 buf
.size () - strlen (buf
.data ()));
12954 putpkt (buf
.data ());
12955 remote_get_noisy_reply ();
12956 if (strcmp (rs
->buf
.data (), "OK"))
12957 warning (_("Target does not support source download."));
12959 remote_download_command_source (b
->number
, loc
->address
,
12960 breakpoint_commands (b
));
12965 remote_target::can_download_tracepoint ()
12967 struct remote_state
*rs
= get_remote_state ();
12968 struct trace_status
*ts
;
12971 /* Don't try to install tracepoints until we've relocated our
12972 symbols, and fetched and merged the target's tracepoint list with
12974 if (rs
->starting_up
)
12977 ts
= current_trace_status ();
12978 status
= get_trace_status (ts
);
12980 if (status
== -1 || !ts
->running_known
|| !ts
->running
)
12983 /* If we are in a tracing experiment, but remote stub doesn't support
12984 installing tracepoint in trace, we have to return. */
12985 if (!remote_supports_install_in_trace ())
12993 remote_target::download_trace_state_variable (const trace_state_variable
&tsv
)
12995 struct remote_state
*rs
= get_remote_state ();
12998 xsnprintf (rs
->buf
.data (), get_remote_packet_size (), "QTDV:%x:%s:%x:",
12999 tsv
.number
, phex ((ULONGEST
) tsv
.initial_value
, 8),
13001 p
= rs
->buf
.data () + strlen (rs
->buf
.data ());
13002 if ((p
- rs
->buf
.data ()) + tsv
.name
.length () * 2
13003 >= get_remote_packet_size ())
13004 error (_("Trace state variable name too long for tsv definition packet"));
13005 p
+= 2 * bin2hex ((gdb_byte
*) (tsv
.name
.data ()), p
, tsv
.name
.length ());
13008 remote_get_noisy_reply ();
13009 if (rs
->buf
[0] == '\0')
13010 error (_("Target does not support this command."));
13011 if (strcmp (rs
->buf
.data (), "OK") != 0)
13012 error (_("Error on target while downloading trace state variable."));
13016 remote_target::enable_tracepoint (struct bp_location
*location
)
13018 struct remote_state
*rs
= get_remote_state ();
13021 sprintf_vma (addr_buf
, location
->address
);
13022 xsnprintf (rs
->buf
.data (), get_remote_packet_size (), "QTEnable:%x:%s",
13023 location
->owner
->number
, addr_buf
);
13025 remote_get_noisy_reply ();
13026 if (rs
->buf
[0] == '\0')
13027 error (_("Target does not support enabling tracepoints while a trace run is ongoing."));
13028 if (strcmp (rs
->buf
.data (), "OK") != 0)
13029 error (_("Error on target while enabling tracepoint."));
13033 remote_target::disable_tracepoint (struct bp_location
*location
)
13035 struct remote_state
*rs
= get_remote_state ();
13038 sprintf_vma (addr_buf
, location
->address
);
13039 xsnprintf (rs
->buf
.data (), get_remote_packet_size (), "QTDisable:%x:%s",
13040 location
->owner
->number
, addr_buf
);
13042 remote_get_noisy_reply ();
13043 if (rs
->buf
[0] == '\0')
13044 error (_("Target does not support disabling tracepoints while a trace run is ongoing."));
13045 if (strcmp (rs
->buf
.data (), "OK") != 0)
13046 error (_("Error on target while disabling tracepoint."));
13050 remote_target::trace_set_readonly_regions ()
13053 bfd_size_type size
;
13059 return; /* No information to give. */
13061 struct remote_state
*rs
= get_remote_state ();
13063 strcpy (rs
->buf
.data (), "QTro");
13064 offset
= strlen (rs
->buf
.data ());
13065 for (s
= exec_bfd
->sections
; s
; s
= s
->next
)
13067 char tmp1
[40], tmp2
[40];
13070 if ((s
->flags
& SEC_LOAD
) == 0 ||
13071 /* (s->flags & SEC_CODE) == 0 || */
13072 (s
->flags
& SEC_READONLY
) == 0)
13076 vma
= bfd_section_vma (s
);
13077 size
= bfd_section_size (s
);
13078 sprintf_vma (tmp1
, vma
);
13079 sprintf_vma (tmp2
, vma
+ size
);
13080 sec_length
= 1 + strlen (tmp1
) + 1 + strlen (tmp2
);
13081 if (offset
+ sec_length
+ 1 > rs
->buf
.size ())
13083 if (packet_support (PACKET_qXfer_traceframe_info
) != PACKET_ENABLE
)
13085 Too many sections for read-only sections definition packet."));
13088 xsnprintf (rs
->buf
.data () + offset
, rs
->buf
.size () - offset
, ":%s,%s",
13090 offset
+= sec_length
;
13095 getpkt (&rs
->buf
, 0);
13100 remote_target::trace_start ()
13102 struct remote_state
*rs
= get_remote_state ();
13104 putpkt ("QTStart");
13105 remote_get_noisy_reply ();
13106 if (rs
->buf
[0] == '\0')
13107 error (_("Target does not support this command."));
13108 if (strcmp (rs
->buf
.data (), "OK") != 0)
13109 error (_("Bogus reply from target: %s"), rs
->buf
.data ());
13113 remote_target::get_trace_status (struct trace_status
*ts
)
13115 /* Initialize it just to avoid a GCC false warning. */
13117 enum packet_result result
;
13118 struct remote_state
*rs
= get_remote_state ();
13120 if (packet_support (PACKET_qTStatus
) == PACKET_DISABLE
)
13123 /* FIXME we need to get register block size some other way. */
13124 trace_regblock_size
13125 = rs
->get_remote_arch_state (target_gdbarch ())->sizeof_g_packet
;
13127 putpkt ("qTStatus");
13131 p
= remote_get_noisy_reply ();
13133 catch (const gdb_exception_error
&ex
)
13135 if (ex
.error
!= TARGET_CLOSE_ERROR
)
13137 exception_fprintf (gdb_stderr
, ex
, "qTStatus: ");
13143 result
= packet_ok (p
, &remote_protocol_packets
[PACKET_qTStatus
]);
13145 /* If the remote target doesn't do tracing, flag it. */
13146 if (result
== PACKET_UNKNOWN
)
13149 /* We're working with a live target. */
13150 ts
->filename
= NULL
;
13153 error (_("Bogus trace status reply from target: %s"), rs
->buf
.data ());
13155 /* Function 'parse_trace_status' sets default value of each field of
13156 'ts' at first, so we don't have to do it here. */
13157 parse_trace_status (p
, ts
);
13159 return ts
->running
;
13163 remote_target::get_tracepoint_status (struct breakpoint
*bp
,
13164 struct uploaded_tp
*utp
)
13166 struct remote_state
*rs
= get_remote_state ();
13168 struct bp_location
*loc
;
13169 struct tracepoint
*tp
= (struct tracepoint
*) bp
;
13170 size_t size
= get_remote_packet_size ();
13175 tp
->traceframe_usage
= 0;
13176 for (loc
= tp
->loc
; loc
; loc
= loc
->next
)
13178 /* If the tracepoint was never downloaded, don't go asking for
13180 if (tp
->number_on_target
== 0)
13182 xsnprintf (rs
->buf
.data (), size
, "qTP:%x:%s", tp
->number_on_target
,
13183 phex_nz (loc
->address
, 0));
13185 reply
= remote_get_noisy_reply ();
13186 if (reply
&& *reply
)
13189 parse_tracepoint_status (reply
+ 1, bp
, utp
);
13195 utp
->hit_count
= 0;
13196 utp
->traceframe_usage
= 0;
13197 xsnprintf (rs
->buf
.data (), size
, "qTP:%x:%s", utp
->number
,
13198 phex_nz (utp
->addr
, 0));
13200 reply
= remote_get_noisy_reply ();
13201 if (reply
&& *reply
)
13204 parse_tracepoint_status (reply
+ 1, bp
, utp
);
13210 remote_target::trace_stop ()
13212 struct remote_state
*rs
= get_remote_state ();
13215 remote_get_noisy_reply ();
13216 if (rs
->buf
[0] == '\0')
13217 error (_("Target does not support this command."));
13218 if (strcmp (rs
->buf
.data (), "OK") != 0)
13219 error (_("Bogus reply from target: %s"), rs
->buf
.data ());
13223 remote_target::trace_find (enum trace_find_type type
, int num
,
13224 CORE_ADDR addr1
, CORE_ADDR addr2
,
13227 struct remote_state
*rs
= get_remote_state ();
13228 char *endbuf
= rs
->buf
.data () + get_remote_packet_size ();
13230 int target_frameno
= -1, target_tracept
= -1;
13232 /* Lookups other than by absolute frame number depend on the current
13233 trace selected, so make sure it is correct on the remote end
13235 if (type
!= tfind_number
)
13236 set_remote_traceframe ();
13238 p
= rs
->buf
.data ();
13239 strcpy (p
, "QTFrame:");
13240 p
= strchr (p
, '\0');
13244 xsnprintf (p
, endbuf
- p
, "%x", num
);
13247 xsnprintf (p
, endbuf
- p
, "pc:%s", phex_nz (addr1
, 0));
13250 xsnprintf (p
, endbuf
- p
, "tdp:%x", num
);
13253 xsnprintf (p
, endbuf
- p
, "range:%s:%s", phex_nz (addr1
, 0),
13254 phex_nz (addr2
, 0));
13256 case tfind_outside
:
13257 xsnprintf (p
, endbuf
- p
, "outside:%s:%s", phex_nz (addr1
, 0),
13258 phex_nz (addr2
, 0));
13261 error (_("Unknown trace find type %d"), type
);
13265 reply
= remote_get_noisy_reply ();
13266 if (*reply
== '\0')
13267 error (_("Target does not support this command."));
13269 while (reply
&& *reply
)
13274 target_frameno
= (int) strtol (p
, &reply
, 16);
13276 error (_("Unable to parse trace frame number"));
13277 /* Don't update our remote traceframe number cache on failure
13278 to select a remote traceframe. */
13279 if (target_frameno
== -1)
13284 target_tracept
= (int) strtol (p
, &reply
, 16);
13286 error (_("Unable to parse tracepoint number"));
13288 case 'O': /* "OK"? */
13289 if (reply
[1] == 'K' && reply
[2] == '\0')
13292 error (_("Bogus reply from target: %s"), reply
);
13295 error (_("Bogus reply from target: %s"), reply
);
13298 *tpp
= target_tracept
;
13300 rs
->remote_traceframe_number
= target_frameno
;
13301 return target_frameno
;
13305 remote_target::get_trace_state_variable_value (int tsvnum
, LONGEST
*val
)
13307 struct remote_state
*rs
= get_remote_state ();
13311 set_remote_traceframe ();
13313 xsnprintf (rs
->buf
.data (), get_remote_packet_size (), "qTV:%x", tsvnum
);
13315 reply
= remote_get_noisy_reply ();
13316 if (reply
&& *reply
)
13320 unpack_varlen_hex (reply
+ 1, &uval
);
13321 *val
= (LONGEST
) uval
;
13329 remote_target::save_trace_data (const char *filename
)
13331 struct remote_state
*rs
= get_remote_state ();
13334 p
= rs
->buf
.data ();
13335 strcpy (p
, "QTSave:");
13337 if ((p
- rs
->buf
.data ()) + strlen (filename
) * 2
13338 >= get_remote_packet_size ())
13339 error (_("Remote file name too long for trace save packet"));
13340 p
+= 2 * bin2hex ((gdb_byte
*) filename
, p
, strlen (filename
));
13343 reply
= remote_get_noisy_reply ();
13344 if (*reply
== '\0')
13345 error (_("Target does not support this command."));
13346 if (strcmp (reply
, "OK") != 0)
13347 error (_("Bogus reply from target: %s"), reply
);
13351 /* This is basically a memory transfer, but needs to be its own packet
13352 because we don't know how the target actually organizes its trace
13353 memory, plus we want to be able to ask for as much as possible, but
13354 not be unhappy if we don't get as much as we ask for. */
13357 remote_target::get_raw_trace_data (gdb_byte
*buf
, ULONGEST offset
, LONGEST len
)
13359 struct remote_state
*rs
= get_remote_state ();
13364 p
= rs
->buf
.data ();
13365 strcpy (p
, "qTBuffer:");
13367 p
+= hexnumstr (p
, offset
);
13369 p
+= hexnumstr (p
, len
);
13373 reply
= remote_get_noisy_reply ();
13374 if (reply
&& *reply
)
13376 /* 'l' by itself means we're at the end of the buffer and
13377 there is nothing more to get. */
13381 /* Convert the reply into binary. Limit the number of bytes to
13382 convert according to our passed-in buffer size, rather than
13383 what was returned in the packet; if the target is
13384 unexpectedly generous and gives us a bigger reply than we
13385 asked for, we don't want to crash. */
13386 rslt
= hex2bin (reply
, buf
, len
);
13390 /* Something went wrong, flag as an error. */
13395 remote_target::set_disconnected_tracing (int val
)
13397 struct remote_state
*rs
= get_remote_state ();
13399 if (packet_support (PACKET_DisconnectedTracing_feature
) == PACKET_ENABLE
)
13403 xsnprintf (rs
->buf
.data (), get_remote_packet_size (),
13404 "QTDisconnected:%x", val
);
13406 reply
= remote_get_noisy_reply ();
13407 if (*reply
== '\0')
13408 error (_("Target does not support this command."));
13409 if (strcmp (reply
, "OK") != 0)
13410 error (_("Bogus reply from target: %s"), reply
);
13413 warning (_("Target does not support disconnected tracing."));
13417 remote_target::core_of_thread (ptid_t ptid
)
13419 struct thread_info
*info
= find_thread_ptid (ptid
);
13421 if (info
!= NULL
&& info
->priv
!= NULL
)
13422 return get_remote_thread_info (info
)->core
;
13428 remote_target::set_circular_trace_buffer (int val
)
13430 struct remote_state
*rs
= get_remote_state ();
13433 xsnprintf (rs
->buf
.data (), get_remote_packet_size (),
13434 "QTBuffer:circular:%x", val
);
13436 reply
= remote_get_noisy_reply ();
13437 if (*reply
== '\0')
13438 error (_("Target does not support this command."));
13439 if (strcmp (reply
, "OK") != 0)
13440 error (_("Bogus reply from target: %s"), reply
);
13444 remote_target::traceframe_info ()
13446 gdb::optional
<gdb::char_vector
> text
13447 = target_read_stralloc (current_top_target (), TARGET_OBJECT_TRACEFRAME_INFO
,
13450 return parse_traceframe_info (text
->data ());
13455 /* Handle the qTMinFTPILen packet. Returns the minimum length of
13456 instruction on which a fast tracepoint may be placed. Returns -1
13457 if the packet is not supported, and 0 if the minimum instruction
13458 length is unknown. */
13461 remote_target::get_min_fast_tracepoint_insn_len ()
13463 struct remote_state
*rs
= get_remote_state ();
13466 /* If we're not debugging a process yet, the IPA can't be
13468 if (!target_has_execution
)
13471 /* Make sure the remote is pointing at the right process. */
13472 set_general_process ();
13474 xsnprintf (rs
->buf
.data (), get_remote_packet_size (), "qTMinFTPILen");
13476 reply
= remote_get_noisy_reply ();
13477 if (*reply
== '\0')
13481 ULONGEST min_insn_len
;
13483 unpack_varlen_hex (reply
, &min_insn_len
);
13485 return (int) min_insn_len
;
13490 remote_target::set_trace_buffer_size (LONGEST val
)
13492 if (packet_support (PACKET_QTBuffer_size
) != PACKET_DISABLE
)
13494 struct remote_state
*rs
= get_remote_state ();
13495 char *buf
= rs
->buf
.data ();
13496 char *endbuf
= buf
+ get_remote_packet_size ();
13497 enum packet_result result
;
13499 gdb_assert (val
>= 0 || val
== -1);
13500 buf
+= xsnprintf (buf
, endbuf
- buf
, "QTBuffer:size:");
13501 /* Send -1 as literal "-1" to avoid host size dependency. */
13505 buf
+= hexnumstr (buf
, (ULONGEST
) -val
);
13508 buf
+= hexnumstr (buf
, (ULONGEST
) val
);
13511 remote_get_noisy_reply ();
13512 result
= packet_ok (rs
->buf
,
13513 &remote_protocol_packets
[PACKET_QTBuffer_size
]);
13515 if (result
!= PACKET_OK
)
13516 warning (_("Bogus reply from target: %s"), rs
->buf
.data ());
13521 remote_target::set_trace_notes (const char *user
, const char *notes
,
13522 const char *stop_notes
)
13524 struct remote_state
*rs
= get_remote_state ();
13526 char *buf
= rs
->buf
.data ();
13527 char *endbuf
= buf
+ get_remote_packet_size ();
13530 buf
+= xsnprintf (buf
, endbuf
- buf
, "QTNotes:");
13533 buf
+= xsnprintf (buf
, endbuf
- buf
, "user:");
13534 nbytes
= bin2hex ((gdb_byte
*) user
, buf
, strlen (user
));
13540 buf
+= xsnprintf (buf
, endbuf
- buf
, "notes:");
13541 nbytes
= bin2hex ((gdb_byte
*) notes
, buf
, strlen (notes
));
13547 buf
+= xsnprintf (buf
, endbuf
- buf
, "tstop:");
13548 nbytes
= bin2hex ((gdb_byte
*) stop_notes
, buf
, strlen (stop_notes
));
13552 /* Ensure the buffer is terminated. */
13556 reply
= remote_get_noisy_reply ();
13557 if (*reply
== '\0')
13560 if (strcmp (reply
, "OK") != 0)
13561 error (_("Bogus reply from target: %s"), reply
);
13567 remote_target::use_agent (bool use
)
13569 if (packet_support (PACKET_QAgent
) != PACKET_DISABLE
)
13571 struct remote_state
*rs
= get_remote_state ();
13573 /* If the stub supports QAgent. */
13574 xsnprintf (rs
->buf
.data (), get_remote_packet_size (), "QAgent:%d", use
);
13576 getpkt (&rs
->buf
, 0);
13578 if (strcmp (rs
->buf
.data (), "OK") == 0)
13589 remote_target::can_use_agent ()
13591 return (packet_support (PACKET_QAgent
) != PACKET_DISABLE
);
13594 struct btrace_target_info
13596 /* The ptid of the traced thread. */
13599 /* The obtained branch trace configuration. */
13600 struct btrace_config conf
;
13603 /* Reset our idea of our target's btrace configuration. */
13606 remote_btrace_reset (remote_state
*rs
)
13608 memset (&rs
->btrace_config
, 0, sizeof (rs
->btrace_config
));
13611 /* Synchronize the configuration with the target. */
13614 remote_target::btrace_sync_conf (const btrace_config
*conf
)
13616 struct packet_config
*packet
;
13617 struct remote_state
*rs
;
13618 char *buf
, *pos
, *endbuf
;
13620 rs
= get_remote_state ();
13621 buf
= rs
->buf
.data ();
13622 endbuf
= buf
+ get_remote_packet_size ();
13624 packet
= &remote_protocol_packets
[PACKET_Qbtrace_conf_bts_size
];
13625 if (packet_config_support (packet
) == PACKET_ENABLE
13626 && conf
->bts
.size
!= rs
->btrace_config
.bts
.size
)
13629 pos
+= xsnprintf (pos
, endbuf
- pos
, "%s=0x%x", packet
->name
,
13633 getpkt (&rs
->buf
, 0);
13635 if (packet_ok (buf
, packet
) == PACKET_ERROR
)
13637 if (buf
[0] == 'E' && buf
[1] == '.')
13638 error (_("Failed to configure the BTS buffer size: %s"), buf
+ 2);
13640 error (_("Failed to configure the BTS buffer size."));
13643 rs
->btrace_config
.bts
.size
= conf
->bts
.size
;
13646 packet
= &remote_protocol_packets
[PACKET_Qbtrace_conf_pt_size
];
13647 if (packet_config_support (packet
) == PACKET_ENABLE
13648 && conf
->pt
.size
!= rs
->btrace_config
.pt
.size
)
13651 pos
+= xsnprintf (pos
, endbuf
- pos
, "%s=0x%x", packet
->name
,
13655 getpkt (&rs
->buf
, 0);
13657 if (packet_ok (buf
, packet
) == PACKET_ERROR
)
13659 if (buf
[0] == 'E' && buf
[1] == '.')
13660 error (_("Failed to configure the trace buffer size: %s"), buf
+ 2);
13662 error (_("Failed to configure the trace buffer size."));
13665 rs
->btrace_config
.pt
.size
= conf
->pt
.size
;
13669 /* Read the current thread's btrace configuration from the target and
13670 store it into CONF. */
13673 btrace_read_config (struct btrace_config
*conf
)
13675 gdb::optional
<gdb::char_vector
> xml
13676 = target_read_stralloc (current_top_target (), TARGET_OBJECT_BTRACE_CONF
, "");
13678 parse_xml_btrace_conf (conf
, xml
->data ());
13681 /* Maybe reopen target btrace. */
13684 remote_target::remote_btrace_maybe_reopen ()
13686 struct remote_state
*rs
= get_remote_state ();
13687 int btrace_target_pushed
= 0;
13688 #if !defined (HAVE_LIBIPT)
13692 /* Don't bother walking the entirety of the remote thread list when
13693 we know the feature isn't supported by the remote. */
13694 if (packet_support (PACKET_qXfer_btrace_conf
) != PACKET_ENABLE
)
13697 scoped_restore_current_thread restore_thread
;
13699 for (thread_info
*tp
: all_non_exited_threads ())
13701 set_general_thread (tp
->ptid
);
13703 memset (&rs
->btrace_config
, 0x00, sizeof (struct btrace_config
));
13704 btrace_read_config (&rs
->btrace_config
);
13706 if (rs
->btrace_config
.format
== BTRACE_FORMAT_NONE
)
13709 #if !defined (HAVE_LIBIPT)
13710 if (rs
->btrace_config
.format
== BTRACE_FORMAT_PT
)
13715 warning (_("Target is recording using Intel Processor Trace "
13716 "but support was disabled at compile time."));
13721 #endif /* !defined (HAVE_LIBIPT) */
13723 /* Push target, once, but before anything else happens. This way our
13724 changes to the threads will be cleaned up by unpushing the target
13725 in case btrace_read_config () throws. */
13726 if (!btrace_target_pushed
)
13728 btrace_target_pushed
= 1;
13729 record_btrace_push_target ();
13730 printf_filtered (_("Target is recording using %s.\n"),
13731 btrace_format_string (rs
->btrace_config
.format
));
13734 tp
->btrace
.target
= XCNEW (struct btrace_target_info
);
13735 tp
->btrace
.target
->ptid
= tp
->ptid
;
13736 tp
->btrace
.target
->conf
= rs
->btrace_config
;
13740 /* Enable branch tracing. */
13742 struct btrace_target_info
*
13743 remote_target::enable_btrace (ptid_t ptid
, const struct btrace_config
*conf
)
13745 struct btrace_target_info
*tinfo
= NULL
;
13746 struct packet_config
*packet
= NULL
;
13747 struct remote_state
*rs
= get_remote_state ();
13748 char *buf
= rs
->buf
.data ();
13749 char *endbuf
= buf
+ get_remote_packet_size ();
13751 switch (conf
->format
)
13753 case BTRACE_FORMAT_BTS
:
13754 packet
= &remote_protocol_packets
[PACKET_Qbtrace_bts
];
13757 case BTRACE_FORMAT_PT
:
13758 packet
= &remote_protocol_packets
[PACKET_Qbtrace_pt
];
13762 if (packet
== NULL
|| packet_config_support (packet
) != PACKET_ENABLE
)
13763 error (_("Target does not support branch tracing."));
13765 btrace_sync_conf (conf
);
13767 set_general_thread (ptid
);
13769 buf
+= xsnprintf (buf
, endbuf
- buf
, "%s", packet
->name
);
13771 getpkt (&rs
->buf
, 0);
13773 if (packet_ok (rs
->buf
, packet
) == PACKET_ERROR
)
13775 if (rs
->buf
[0] == 'E' && rs
->buf
[1] == '.')
13776 error (_("Could not enable branch tracing for %s: %s"),
13777 target_pid_to_str (ptid
).c_str (), &rs
->buf
[2]);
13779 error (_("Could not enable branch tracing for %s."),
13780 target_pid_to_str (ptid
).c_str ());
13783 tinfo
= XCNEW (struct btrace_target_info
);
13784 tinfo
->ptid
= ptid
;
13786 /* If we fail to read the configuration, we lose some information, but the
13787 tracing itself is not impacted. */
13790 btrace_read_config (&tinfo
->conf
);
13792 catch (const gdb_exception_error
&err
)
13794 if (err
.message
!= NULL
)
13795 warning ("%s", err
.what ());
13801 /* Disable branch tracing. */
13804 remote_target::disable_btrace (struct btrace_target_info
*tinfo
)
13806 struct packet_config
*packet
= &remote_protocol_packets
[PACKET_Qbtrace_off
];
13807 struct remote_state
*rs
= get_remote_state ();
13808 char *buf
= rs
->buf
.data ();
13809 char *endbuf
= buf
+ get_remote_packet_size ();
13811 if (packet_config_support (packet
) != PACKET_ENABLE
)
13812 error (_("Target does not support branch tracing."));
13814 set_general_thread (tinfo
->ptid
);
13816 buf
+= xsnprintf (buf
, endbuf
- buf
, "%s", packet
->name
);
13818 getpkt (&rs
->buf
, 0);
13820 if (packet_ok (rs
->buf
, packet
) == PACKET_ERROR
)
13822 if (rs
->buf
[0] == 'E' && rs
->buf
[1] == '.')
13823 error (_("Could not disable branch tracing for %s: %s"),
13824 target_pid_to_str (tinfo
->ptid
).c_str (), &rs
->buf
[2]);
13826 error (_("Could not disable branch tracing for %s."),
13827 target_pid_to_str (tinfo
->ptid
).c_str ());
13833 /* Teardown branch tracing. */
13836 remote_target::teardown_btrace (struct btrace_target_info
*tinfo
)
13838 /* We must not talk to the target during teardown. */
13842 /* Read the branch trace. */
13845 remote_target::read_btrace (struct btrace_data
*btrace
,
13846 struct btrace_target_info
*tinfo
,
13847 enum btrace_read_type type
)
13849 struct packet_config
*packet
= &remote_protocol_packets
[PACKET_qXfer_btrace
];
13852 if (packet_config_support (packet
) != PACKET_ENABLE
)
13853 error (_("Target does not support branch tracing."));
13855 #if !defined(HAVE_LIBEXPAT)
13856 error (_("Cannot process branch tracing result. XML parsing not supported."));
13861 case BTRACE_READ_ALL
:
13864 case BTRACE_READ_NEW
:
13867 case BTRACE_READ_DELTA
:
13871 internal_error (__FILE__
, __LINE__
,
13872 _("Bad branch tracing read type: %u."),
13873 (unsigned int) type
);
13876 gdb::optional
<gdb::char_vector
> xml
13877 = target_read_stralloc (current_top_target (), TARGET_OBJECT_BTRACE
, annex
);
13879 return BTRACE_ERR_UNKNOWN
;
13881 parse_xml_btrace (btrace
, xml
->data ());
13883 return BTRACE_ERR_NONE
;
13886 const struct btrace_config
*
13887 remote_target::btrace_conf (const struct btrace_target_info
*tinfo
)
13889 return &tinfo
->conf
;
13893 remote_target::augmented_libraries_svr4_read ()
13895 return (packet_support (PACKET_augmented_libraries_svr4_read_feature
)
13899 /* Implementation of to_load. */
13902 remote_target::load (const char *name
, int from_tty
)
13904 generic_load (name
, from_tty
);
13907 /* Accepts an integer PID; returns a string representing a file that
13908 can be opened on the remote side to get the symbols for the child
13909 process. Returns NULL if the operation is not supported. */
13912 remote_target::pid_to_exec_file (int pid
)
13914 static gdb::optional
<gdb::char_vector
> filename
;
13915 struct inferior
*inf
;
13916 char *annex
= NULL
;
13918 if (packet_support (PACKET_qXfer_exec_file
) != PACKET_ENABLE
)
13921 inf
= find_inferior_pid (pid
);
13923 internal_error (__FILE__
, __LINE__
,
13924 _("not currently attached to process %d"), pid
);
13926 if (!inf
->fake_pid_p
)
13928 const int annex_size
= 9;
13930 annex
= (char *) alloca (annex_size
);
13931 xsnprintf (annex
, annex_size
, "%x", pid
);
13934 filename
= target_read_stralloc (current_top_target (),
13935 TARGET_OBJECT_EXEC_FILE
, annex
);
13937 return filename
? filename
->data () : nullptr;
13940 /* Implement the to_can_do_single_step target_ops method. */
13943 remote_target::can_do_single_step ()
13945 /* We can only tell whether target supports single step or not by
13946 supported s and S vCont actions if the stub supports vContSupported
13947 feature. If the stub doesn't support vContSupported feature,
13948 we have conservatively to think target doesn't supports single
13950 if (packet_support (PACKET_vContSupported
) == PACKET_ENABLE
)
13952 struct remote_state
*rs
= get_remote_state ();
13954 if (packet_support (PACKET_vCont
) == PACKET_SUPPORT_UNKNOWN
)
13955 remote_vcont_probe ();
13957 return rs
->supports_vCont
.s
&& rs
->supports_vCont
.S
;
13963 /* Implementation of the to_execution_direction method for the remote
13966 enum exec_direction_kind
13967 remote_target::execution_direction ()
13969 struct remote_state
*rs
= get_remote_state ();
13971 return rs
->last_resume_exec_dir
;
13974 /* Return pointer to the thread_info struct which corresponds to
13975 THREAD_HANDLE (having length HANDLE_LEN). */
13978 remote_target::thread_handle_to_thread_info (const gdb_byte
*thread_handle
,
13982 for (thread_info
*tp
: all_non_exited_threads ())
13984 remote_thread_info
*priv
= get_remote_thread_info (tp
);
13986 if (tp
->inf
== inf
&& priv
!= NULL
)
13988 if (handle_len
!= priv
->thread_handle
.size ())
13989 error (_("Thread handle size mismatch: %d vs %zu (from remote)"),
13990 handle_len
, priv
->thread_handle
.size ());
13991 if (memcmp (thread_handle
, priv
->thread_handle
.data (),
14001 remote_target::thread_info_to_thread_handle (struct thread_info
*tp
)
14003 remote_thread_info
*priv
= get_remote_thread_info (tp
);
14004 return priv
->thread_handle
;
14008 remote_target::can_async_p ()
14010 struct remote_state
*rs
= get_remote_state ();
14012 /* We don't go async if the user has explicitly prevented it with the
14013 "maint set target-async" command. */
14014 if (!target_async_permitted
)
14017 /* We're async whenever the serial device is. */
14018 return serial_can_async_p (rs
->remote_desc
);
14022 remote_target::is_async_p ()
14024 struct remote_state
*rs
= get_remote_state ();
14026 if (!target_async_permitted
)
14027 /* We only enable async when the user specifically asks for it. */
14030 /* We're async whenever the serial device is. */
14031 return serial_is_async_p (rs
->remote_desc
);
14034 /* Pass the SERIAL event on and up to the client. One day this code
14035 will be able to delay notifying the client of an event until the
14036 point where an entire packet has been received. */
14038 static serial_event_ftype remote_async_serial_handler
;
14041 remote_async_serial_handler (struct serial
*scb
, void *context
)
14043 /* Don't propogate error information up to the client. Instead let
14044 the client find out about the error by querying the target. */
14045 inferior_event_handler (INF_REG_EVENT
, NULL
);
14049 remote_async_inferior_event_handler (gdb_client_data data
)
14051 inferior_event_handler (INF_REG_EVENT
, data
);
14055 remote_target::async (int enable
)
14057 struct remote_state
*rs
= get_remote_state ();
14061 serial_async (rs
->remote_desc
, remote_async_serial_handler
, rs
);
14063 /* If there are pending events in the stop reply queue tell the
14064 event loop to process them. */
14065 if (!rs
->stop_reply_queue
.empty ())
14066 mark_async_event_handler (rs
->remote_async_inferior_event_token
);
14067 /* For simplicity, below we clear the pending events token
14068 without remembering whether it is marked, so here we always
14069 mark it. If there's actually no pending notification to
14070 process, this ends up being a no-op (other than a spurious
14071 event-loop wakeup). */
14072 if (target_is_non_stop_p ())
14073 mark_async_event_handler (rs
->notif_state
->get_pending_events_token
);
14077 serial_async (rs
->remote_desc
, NULL
, NULL
);
14078 /* If the core is disabling async, it doesn't want to be
14079 disturbed with target events. Clear all async event sources
14081 clear_async_event_handler (rs
->remote_async_inferior_event_token
);
14082 if (target_is_non_stop_p ())
14083 clear_async_event_handler (rs
->notif_state
->get_pending_events_token
);
14087 /* Implementation of the to_thread_events method. */
14090 remote_target::thread_events (int enable
)
14092 struct remote_state
*rs
= get_remote_state ();
14093 size_t size
= get_remote_packet_size ();
14095 if (packet_support (PACKET_QThreadEvents
) == PACKET_DISABLE
)
14098 xsnprintf (rs
->buf
.data (), size
, "QThreadEvents:%x", enable
? 1 : 0);
14100 getpkt (&rs
->buf
, 0);
14102 switch (packet_ok (rs
->buf
,
14103 &remote_protocol_packets
[PACKET_QThreadEvents
]))
14106 if (strcmp (rs
->buf
.data (), "OK") != 0)
14107 error (_("Remote refused setting thread events: %s"), rs
->buf
.data ());
14110 warning (_("Remote failure reply: %s"), rs
->buf
.data ());
14112 case PACKET_UNKNOWN
:
14118 set_remote_cmd (const char *args
, int from_tty
)
14120 help_list (remote_set_cmdlist
, "set remote ", all_commands
, gdb_stdout
);
14124 show_remote_cmd (const char *args
, int from_tty
)
14126 /* We can't just use cmd_show_list here, because we want to skip
14127 the redundant "show remote Z-packet" and the legacy aliases. */
14128 struct cmd_list_element
*list
= remote_show_cmdlist
;
14129 struct ui_out
*uiout
= current_uiout
;
14131 ui_out_emit_tuple
tuple_emitter (uiout
, "showlist");
14132 for (; list
!= NULL
; list
= list
->next
)
14133 if (strcmp (list
->name
, "Z-packet") == 0)
14135 else if (list
->type
== not_set_cmd
)
14136 /* Alias commands are exactly like the original, except they
14137 don't have the normal type. */
14141 ui_out_emit_tuple
option_emitter (uiout
, "option");
14143 uiout
->field_string ("name", list
->name
);
14144 uiout
->text (": ");
14145 if (list
->type
== show_cmd
)
14146 do_show_command (NULL
, from_tty
, list
);
14148 cmd_func (list
, NULL
, from_tty
);
14153 /* Function to be called whenever a new objfile (shlib) is detected. */
14155 remote_new_objfile (struct objfile
*objfile
)
14157 remote_target
*remote
= get_current_remote_target ();
14159 if (remote
!= NULL
) /* Have a remote connection. */
14160 remote
->remote_check_symbols ();
14163 /* Pull all the tracepoints defined on the target and create local
14164 data structures representing them. We don't want to create real
14165 tracepoints yet, we don't want to mess up the user's existing
14169 remote_target::upload_tracepoints (struct uploaded_tp
**utpp
)
14171 struct remote_state
*rs
= get_remote_state ();
14174 /* Ask for a first packet of tracepoint definition. */
14176 getpkt (&rs
->buf
, 0);
14177 p
= rs
->buf
.data ();
14178 while (*p
&& *p
!= 'l')
14180 parse_tracepoint_definition (p
, utpp
);
14181 /* Ask for another packet of tracepoint definition. */
14183 getpkt (&rs
->buf
, 0);
14184 p
= rs
->buf
.data ();
14190 remote_target::upload_trace_state_variables (struct uploaded_tsv
**utsvp
)
14192 struct remote_state
*rs
= get_remote_state ();
14195 /* Ask for a first packet of variable definition. */
14197 getpkt (&rs
->buf
, 0);
14198 p
= rs
->buf
.data ();
14199 while (*p
&& *p
!= 'l')
14201 parse_tsv_definition (p
, utsvp
);
14202 /* Ask for another packet of variable definition. */
14204 getpkt (&rs
->buf
, 0);
14205 p
= rs
->buf
.data ();
14210 /* The "set/show range-stepping" show hook. */
14213 show_range_stepping (struct ui_file
*file
, int from_tty
,
14214 struct cmd_list_element
*c
,
14217 fprintf_filtered (file
,
14218 _("Debugger's willingness to use range stepping "
14219 "is %s.\n"), value
);
14222 /* Return true if the vCont;r action is supported by the remote
14226 remote_target::vcont_r_supported ()
14228 if (packet_support (PACKET_vCont
) == PACKET_SUPPORT_UNKNOWN
)
14229 remote_vcont_probe ();
14231 return (packet_support (PACKET_vCont
) == PACKET_ENABLE
14232 && get_remote_state ()->supports_vCont
.r
);
14235 /* The "set/show range-stepping" set hook. */
14238 set_range_stepping (const char *ignore_args
, int from_tty
,
14239 struct cmd_list_element
*c
)
14241 /* When enabling, check whether range stepping is actually supported
14242 by the target, and warn if not. */
14243 if (use_range_stepping
)
14245 remote_target
*remote
= get_current_remote_target ();
14247 || !remote
->vcont_r_supported ())
14248 warning (_("Range stepping is not supported by the current target"));
14253 _initialize_remote (void)
14255 struct cmd_list_element
*cmd
;
14256 const char *cmd_name
;
14258 /* architecture specific data */
14259 remote_g_packet_data_handle
=
14260 gdbarch_data_register_pre_init (remote_g_packet_data_init
);
14262 add_target (remote_target_info
, remote_target::open
);
14263 add_target (extended_remote_target_info
, extended_remote_target::open
);
14265 /* Hook into new objfile notification. */
14266 gdb::observers::new_objfile
.attach (remote_new_objfile
);
14269 init_remote_threadtests ();
14272 /* set/show remote ... */
14274 add_prefix_cmd ("remote", class_maintenance
, set_remote_cmd
, _("\
14275 Remote protocol specific variables.\n\
14276 Configure various remote-protocol specific variables such as\n\
14277 the packets being used."),
14278 &remote_set_cmdlist
, "set remote ",
14279 0 /* allow-unknown */, &setlist
);
14280 add_prefix_cmd ("remote", class_maintenance
, show_remote_cmd
, _("\
14281 Remote protocol specific variables.\n\
14282 Configure various remote-protocol specific variables such as\n\
14283 the packets being used."),
14284 &remote_show_cmdlist
, "show remote ",
14285 0 /* allow-unknown */, &showlist
);
14287 add_cmd ("compare-sections", class_obscure
, compare_sections_command
, _("\
14288 Compare section data on target to the exec file.\n\
14289 Argument is a single section name (default: all loaded sections).\n\
14290 To compare only read-only loaded sections, specify the -r option."),
14293 add_cmd ("packet", class_maintenance
, packet_command
, _("\
14294 Send an arbitrary packet to a remote target.\n\
14295 maintenance packet TEXT\n\
14296 If GDB is talking to an inferior via the GDB serial protocol, then\n\
14297 this command sends the string TEXT to the inferior, and displays the\n\
14298 response packet. GDB supplies the initial `$' character, and the\n\
14299 terminating `#' character and checksum."),
14302 add_setshow_boolean_cmd ("remotebreak", no_class
, &remote_break
, _("\
14303 Set whether to send break if interrupted."), _("\
14304 Show whether to send break if interrupted."), _("\
14305 If set, a break, instead of a cntrl-c, is sent to the remote target."),
14306 set_remotebreak
, show_remotebreak
,
14307 &setlist
, &showlist
);
14308 cmd_name
= "remotebreak";
14309 cmd
= lookup_cmd (&cmd_name
, setlist
, "", -1, 1);
14310 deprecate_cmd (cmd
, "set remote interrupt-sequence");
14311 cmd_name
= "remotebreak"; /* needed because lookup_cmd updates the pointer */
14312 cmd
= lookup_cmd (&cmd_name
, showlist
, "", -1, 1);
14313 deprecate_cmd (cmd
, "show remote interrupt-sequence");
14315 add_setshow_enum_cmd ("interrupt-sequence", class_support
,
14316 interrupt_sequence_modes
, &interrupt_sequence_mode
,
14318 Set interrupt sequence to remote target."), _("\
14319 Show interrupt sequence to remote target."), _("\
14320 Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."),
14321 NULL
, show_interrupt_sequence
,
14322 &remote_set_cmdlist
,
14323 &remote_show_cmdlist
);
14325 add_setshow_boolean_cmd ("interrupt-on-connect", class_support
,
14326 &interrupt_on_connect
, _("\
14327 Set whether interrupt-sequence is sent to remote target when gdb connects to."), _("\
14328 Show whether interrupt-sequence is sent to remote target when gdb connects to."), _("\
14329 If set, interrupt sequence is sent to remote target."),
14331 &remote_set_cmdlist
, &remote_show_cmdlist
);
14333 /* Install commands for configuring memory read/write packets. */
14335 add_cmd ("remotewritesize", no_class
, set_memory_write_packet_size
, _("\
14336 Set the maximum number of bytes per memory write packet (deprecated)."),
14338 add_cmd ("remotewritesize", no_class
, show_memory_write_packet_size
, _("\
14339 Show the maximum number of bytes per memory write packet (deprecated)."),
14341 add_cmd ("memory-write-packet-size", no_class
,
14342 set_memory_write_packet_size
, _("\
14343 Set the maximum number of bytes per memory-write packet.\n\
14344 Specify the number of bytes in a packet or 0 (zero) for the\n\
14345 default packet size. The actual limit is further reduced\n\
14346 dependent on the target. Specify ``fixed'' to disable the\n\
14347 further restriction and ``limit'' to enable that restriction."),
14348 &remote_set_cmdlist
);
14349 add_cmd ("memory-read-packet-size", no_class
,
14350 set_memory_read_packet_size
, _("\
14351 Set the maximum number of bytes per memory-read packet.\n\
14352 Specify the number of bytes in a packet or 0 (zero) for the\n\
14353 default packet size. The actual limit is further reduced\n\
14354 dependent on the target. Specify ``fixed'' to disable the\n\
14355 further restriction and ``limit'' to enable that restriction."),
14356 &remote_set_cmdlist
);
14357 add_cmd ("memory-write-packet-size", no_class
,
14358 show_memory_write_packet_size
,
14359 _("Show the maximum number of bytes per memory-write packet."),
14360 &remote_show_cmdlist
);
14361 add_cmd ("memory-read-packet-size", no_class
,
14362 show_memory_read_packet_size
,
14363 _("Show the maximum number of bytes per memory-read packet."),
14364 &remote_show_cmdlist
);
14366 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-limit", no_class
,
14367 &remote_hw_watchpoint_limit
, _("\
14368 Set the maximum number of target hardware watchpoints."), _("\
14369 Show the maximum number of target hardware watchpoints."), _("\
14370 Specify \"unlimited\" for unlimited hardware watchpoints."),
14371 NULL
, show_hardware_watchpoint_limit
,
14372 &remote_set_cmdlist
,
14373 &remote_show_cmdlist
);
14374 add_setshow_zuinteger_unlimited_cmd ("hardware-watchpoint-length-limit",
14376 &remote_hw_watchpoint_length_limit
, _("\
14377 Set the maximum length (in bytes) of a target hardware watchpoint."), _("\
14378 Show the maximum length (in bytes) of a target hardware watchpoint."), _("\
14379 Specify \"unlimited\" to allow watchpoints of unlimited size."),
14380 NULL
, show_hardware_watchpoint_length_limit
,
14381 &remote_set_cmdlist
, &remote_show_cmdlist
);
14382 add_setshow_zuinteger_unlimited_cmd ("hardware-breakpoint-limit", no_class
,
14383 &remote_hw_breakpoint_limit
, _("\
14384 Set the maximum number of target hardware breakpoints."), _("\
14385 Show the maximum number of target hardware breakpoints."), _("\
14386 Specify \"unlimited\" for unlimited hardware breakpoints."),
14387 NULL
, show_hardware_breakpoint_limit
,
14388 &remote_set_cmdlist
, &remote_show_cmdlist
);
14390 add_setshow_zuinteger_cmd ("remoteaddresssize", class_obscure
,
14391 &remote_address_size
, _("\
14392 Set the maximum size of the address (in bits) in a memory packet."), _("\
14393 Show the maximum size of the address (in bits) in a memory packet."), NULL
,
14395 NULL
, /* FIXME: i18n: */
14396 &setlist
, &showlist
);
14398 init_all_packet_configs ();
14400 add_packet_config_cmd (&remote_protocol_packets
[PACKET_X
],
14401 "X", "binary-download", 1);
14403 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vCont
],
14404 "vCont", "verbose-resume", 0);
14406 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QPassSignals
],
14407 "QPassSignals", "pass-signals", 0);
14409 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QCatchSyscalls
],
14410 "QCatchSyscalls", "catch-syscalls", 0);
14412 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QProgramSignals
],
14413 "QProgramSignals", "program-signals", 0);
14415 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QSetWorkingDir
],
14416 "QSetWorkingDir", "set-working-dir", 0);
14418 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QStartupWithShell
],
14419 "QStartupWithShell", "startup-with-shell", 0);
14421 add_packet_config_cmd (&remote_protocol_packets
14422 [PACKET_QEnvironmentHexEncoded
],
14423 "QEnvironmentHexEncoded", "environment-hex-encoded",
14426 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QEnvironmentReset
],
14427 "QEnvironmentReset", "environment-reset",
14430 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QEnvironmentUnset
],
14431 "QEnvironmentUnset", "environment-unset",
14434 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qSymbol
],
14435 "qSymbol", "symbol-lookup", 0);
14437 add_packet_config_cmd (&remote_protocol_packets
[PACKET_P
],
14438 "P", "set-register", 1);
14440 add_packet_config_cmd (&remote_protocol_packets
[PACKET_p
],
14441 "p", "fetch-register", 1);
14443 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Z0
],
14444 "Z0", "software-breakpoint", 0);
14446 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Z1
],
14447 "Z1", "hardware-breakpoint", 0);
14449 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Z2
],
14450 "Z2", "write-watchpoint", 0);
14452 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Z3
],
14453 "Z3", "read-watchpoint", 0);
14455 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Z4
],
14456 "Z4", "access-watchpoint", 0);
14458 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_auxv
],
14459 "qXfer:auxv:read", "read-aux-vector", 0);
14461 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_exec_file
],
14462 "qXfer:exec-file:read", "pid-to-exec-file", 0);
14464 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_features
],
14465 "qXfer:features:read", "target-features", 0);
14467 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_libraries
],
14468 "qXfer:libraries:read", "library-info", 0);
14470 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_libraries_svr4
],
14471 "qXfer:libraries-svr4:read", "library-info-svr4", 0);
14473 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_memory_map
],
14474 "qXfer:memory-map:read", "memory-map", 0);
14476 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_osdata
],
14477 "qXfer:osdata:read", "osdata", 0);
14479 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_threads
],
14480 "qXfer:threads:read", "threads", 0);
14482 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_siginfo_read
],
14483 "qXfer:siginfo:read", "read-siginfo-object", 0);
14485 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_siginfo_write
],
14486 "qXfer:siginfo:write", "write-siginfo-object", 0);
14488 add_packet_config_cmd
14489 (&remote_protocol_packets
[PACKET_qXfer_traceframe_info
],
14490 "qXfer:traceframe-info:read", "traceframe-info", 0);
14492 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_uib
],
14493 "qXfer:uib:read", "unwind-info-block", 0);
14495 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qGetTLSAddr
],
14496 "qGetTLSAddr", "get-thread-local-storage-address",
14499 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qGetTIBAddr
],
14500 "qGetTIBAddr", "get-thread-information-block-address",
14503 add_packet_config_cmd (&remote_protocol_packets
[PACKET_bc
],
14504 "bc", "reverse-continue", 0);
14506 add_packet_config_cmd (&remote_protocol_packets
[PACKET_bs
],
14507 "bs", "reverse-step", 0);
14509 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qSupported
],
14510 "qSupported", "supported-packets", 0);
14512 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qSearch_memory
],
14513 "qSearch:memory", "search-memory", 0);
14515 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qTStatus
],
14516 "qTStatus", "trace-status", 0);
14518 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vFile_setfs
],
14519 "vFile:setfs", "hostio-setfs", 0);
14521 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vFile_open
],
14522 "vFile:open", "hostio-open", 0);
14524 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vFile_pread
],
14525 "vFile:pread", "hostio-pread", 0);
14527 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vFile_pwrite
],
14528 "vFile:pwrite", "hostio-pwrite", 0);
14530 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vFile_close
],
14531 "vFile:close", "hostio-close", 0);
14533 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vFile_unlink
],
14534 "vFile:unlink", "hostio-unlink", 0);
14536 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vFile_readlink
],
14537 "vFile:readlink", "hostio-readlink", 0);
14539 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vFile_fstat
],
14540 "vFile:fstat", "hostio-fstat", 0);
14542 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vAttach
],
14543 "vAttach", "attach", 0);
14545 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vRun
],
14548 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QStartNoAckMode
],
14549 "QStartNoAckMode", "noack", 0);
14551 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vKill
],
14552 "vKill", "kill", 0);
14554 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qAttached
],
14555 "qAttached", "query-attached", 0);
14557 add_packet_config_cmd (&remote_protocol_packets
[PACKET_ConditionalTracepoints
],
14558 "ConditionalTracepoints",
14559 "conditional-tracepoints", 0);
14561 add_packet_config_cmd (&remote_protocol_packets
[PACKET_ConditionalBreakpoints
],
14562 "ConditionalBreakpoints",
14563 "conditional-breakpoints", 0);
14565 add_packet_config_cmd (&remote_protocol_packets
[PACKET_BreakpointCommands
],
14566 "BreakpointCommands",
14567 "breakpoint-commands", 0);
14569 add_packet_config_cmd (&remote_protocol_packets
[PACKET_FastTracepoints
],
14570 "FastTracepoints", "fast-tracepoints", 0);
14572 add_packet_config_cmd (&remote_protocol_packets
[PACKET_TracepointSource
],
14573 "TracepointSource", "TracepointSource", 0);
14575 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QAllow
],
14576 "QAllow", "allow", 0);
14578 add_packet_config_cmd (&remote_protocol_packets
[PACKET_StaticTracepoints
],
14579 "StaticTracepoints", "static-tracepoints", 0);
14581 add_packet_config_cmd (&remote_protocol_packets
[PACKET_InstallInTrace
],
14582 "InstallInTrace", "install-in-trace", 0);
14584 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_statictrace_read
],
14585 "qXfer:statictrace:read", "read-sdata-object", 0);
14587 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_fdpic
],
14588 "qXfer:fdpic:read", "read-fdpic-loadmap", 0);
14590 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QDisableRandomization
],
14591 "QDisableRandomization", "disable-randomization", 0);
14593 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QAgent
],
14594 "QAgent", "agent", 0);
14596 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QTBuffer_size
],
14597 "QTBuffer:size", "trace-buffer-size", 0);
14599 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Qbtrace_off
],
14600 "Qbtrace:off", "disable-btrace", 0);
14602 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Qbtrace_bts
],
14603 "Qbtrace:bts", "enable-btrace-bts", 0);
14605 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Qbtrace_pt
],
14606 "Qbtrace:pt", "enable-btrace-pt", 0);
14608 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_btrace
],
14609 "qXfer:btrace", "read-btrace", 0);
14611 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_btrace_conf
],
14612 "qXfer:btrace-conf", "read-btrace-conf", 0);
14614 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Qbtrace_conf_bts_size
],
14615 "Qbtrace-conf:bts:size", "btrace-conf-bts-size", 0);
14617 add_packet_config_cmd (&remote_protocol_packets
[PACKET_multiprocess_feature
],
14618 "multiprocess-feature", "multiprocess-feature", 0);
14620 add_packet_config_cmd (&remote_protocol_packets
[PACKET_swbreak_feature
],
14621 "swbreak-feature", "swbreak-feature", 0);
14623 add_packet_config_cmd (&remote_protocol_packets
[PACKET_hwbreak_feature
],
14624 "hwbreak-feature", "hwbreak-feature", 0);
14626 add_packet_config_cmd (&remote_protocol_packets
[PACKET_fork_event_feature
],
14627 "fork-event-feature", "fork-event-feature", 0);
14629 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vfork_event_feature
],
14630 "vfork-event-feature", "vfork-event-feature", 0);
14632 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Qbtrace_conf_pt_size
],
14633 "Qbtrace-conf:pt:size", "btrace-conf-pt-size", 0);
14635 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vContSupported
],
14636 "vContSupported", "verbose-resume-supported", 0);
14638 add_packet_config_cmd (&remote_protocol_packets
[PACKET_exec_event_feature
],
14639 "exec-event-feature", "exec-event-feature", 0);
14641 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vCtrlC
],
14642 "vCtrlC", "ctrl-c", 0);
14644 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QThreadEvents
],
14645 "QThreadEvents", "thread-events", 0);
14647 add_packet_config_cmd (&remote_protocol_packets
[PACKET_no_resumed
],
14648 "N stop reply", "no-resumed-stop-reply", 0);
14650 /* Assert that we've registered "set remote foo-packet" commands
14651 for all packet configs. */
14655 for (i
= 0; i
< PACKET_MAX
; i
++)
14657 /* Ideally all configs would have a command associated. Some
14658 still don't though. */
14663 case PACKET_QNonStop
:
14664 case PACKET_EnableDisableTracepoints_feature
:
14665 case PACKET_tracenz_feature
:
14666 case PACKET_DisconnectedTracing_feature
:
14667 case PACKET_augmented_libraries_svr4_read_feature
:
14669 /* Additions to this list need to be well justified:
14670 pre-existing packets are OK; new packets are not. */
14678 /* This catches both forgetting to add a config command, and
14679 forgetting to remove a packet from the exception list. */
14680 gdb_assert (excepted
== (remote_protocol_packets
[i
].name
== NULL
));
14684 /* Keep the old ``set remote Z-packet ...'' working. Each individual
14685 Z sub-packet has its own set and show commands, but users may
14686 have sets to this variable in their .gdbinit files (or in their
14688 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure
,
14689 &remote_Z_packet_detect
, _("\
14690 Set use of remote protocol `Z' packets."), _("\
14691 Show use of remote protocol `Z' packets."), _("\
14692 When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
14694 set_remote_protocol_Z_packet_cmd
,
14695 show_remote_protocol_Z_packet_cmd
,
14696 /* FIXME: i18n: Use of remote protocol
14697 `Z' packets is %s. */
14698 &remote_set_cmdlist
, &remote_show_cmdlist
);
14700 add_prefix_cmd ("remote", class_files
, remote_command
, _("\
14701 Manipulate files on the remote system.\n\
14702 Transfer files to and from the remote target system."),
14703 &remote_cmdlist
, "remote ",
14704 0 /* allow-unknown */, &cmdlist
);
14706 add_cmd ("put", class_files
, remote_put_command
,
14707 _("Copy a local file to the remote system."),
14710 add_cmd ("get", class_files
, remote_get_command
,
14711 _("Copy a remote file to the local system."),
14714 add_cmd ("delete", class_files
, remote_delete_command
,
14715 _("Delete a remote file."),
14718 add_setshow_string_noescape_cmd ("exec-file", class_files
,
14719 &remote_exec_file_var
, _("\
14720 Set the remote pathname for \"run\"."), _("\
14721 Show the remote pathname for \"run\"."), NULL
,
14722 set_remote_exec_file
,
14723 show_remote_exec_file
,
14724 &remote_set_cmdlist
,
14725 &remote_show_cmdlist
);
14727 add_setshow_boolean_cmd ("range-stepping", class_run
,
14728 &use_range_stepping
, _("\
14729 Enable or disable range stepping."), _("\
14730 Show whether target-assisted range stepping is enabled."), _("\
14731 If on, and the target supports it, when stepping a source line, GDB\n\
14732 tells the target to step the corresponding range of addresses itself instead\n\
14733 of issuing multiple single-steps. This speeds up source level\n\
14734 stepping. If off, GDB always issues single-steps, even if range\n\
14735 stepping is supported by the target. The default is on."),
14736 set_range_stepping
,
14737 show_range_stepping
,
14741 add_setshow_zinteger_cmd ("watchdog", class_maintenance
, &watchdog
, _("\
14742 Set watchdog timer."), _("\
14743 Show watchdog timer."), _("\
14744 When non-zero, this timeout is used instead of waiting forever for a target\n\
14745 to finish a low-level step or continue operation. If the specified amount\n\
14746 of time passes without a response from the target, an error occurs."),
14749 &setlist
, &showlist
);
14751 add_setshow_zuinteger_unlimited_cmd ("remote-packet-max-chars", no_class
,
14752 &remote_packet_max_chars
, _("\
14753 Set the maximum number of characters to display for each remote packet."), _("\
14754 Show the maximum number of characters to display for each remote packet."), _("\
14755 Specify \"unlimited\" to display all the characters."),
14756 NULL
, show_remote_packet_max_chars
,
14757 &setdebuglist
, &showdebuglist
);
14759 /* Eventually initialize fileio. See fileio.c */
14760 initialize_remote_fileio (remote_set_cmdlist
, remote_show_cmdlist
);