1 /* Remote target communications for serial-line targets in custom GDB protocol
3 Copyright (C) 1988-2018 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20 /* See the GDB User Guide for details of the GDB remote protocol. */
30 /*#include "terminal.h" */
33 #include "gdb-stabs.h"
34 #include "gdbthread.h"
36 #include "remote-notif.h"
39 #include "observable.h"
41 #include "cli/cli-decode.h"
42 #include "cli/cli-setshow.h"
43 #include "target-descriptions.h"
45 #include "filestuff.h"
50 #include "gdb_sys_time.h"
52 #include "event-loop.h"
53 #include "event-top.h"
59 #include "gdbcore.h" /* for exec_bfd */
61 #include "remote-fileio.h"
62 #include "gdb/fileio.h"
64 #include "xml-support.h"
66 #include "memory-map.h"
68 #include "tracepoint.h"
73 #include "record-btrace.h"
75 #include "common/scoped_restore.h"
77 #include "common/byte-vector.h"
78 #include <unordered_map>
80 /* The remote target. */
82 static const char remote_doc
[] = N_("\
83 Use a remote computer via a serial line, using a gdb-specific protocol.\n\
84 Specify the serial device it is connected to\n\
85 (e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).");
87 #define OPAQUETHREADBYTES 8
89 /* a 64 bit opaque identifier */
90 typedef unsigned char threadref
[OPAQUETHREADBYTES
];
92 struct gdb_ext_thread_info
;
93 struct threads_listing_context
;
94 typedef int (*rmt_thread_action
) (threadref
*ref
, void *context
);
95 struct protocol_feature
;
99 typedef struct stop_reply
*stop_reply_p
;
101 DECLARE_QUEUE_P (stop_reply_p
);
102 DEFINE_QUEUE_P (stop_reply_p
);
104 /* Generic configuration support for packets the stub optionally
105 supports. Allows the user to specify the use of the packet as well
106 as allowing GDB to auto-detect support in the remote stub. */
110 PACKET_SUPPORT_UNKNOWN
= 0,
115 /* Analyze a packet's return value and update the packet config
125 struct threads_listing_context
;
127 /* Stub vCont actions support.
129 Each field is a boolean flag indicating whether the stub reports
130 support for the corresponding action. */
132 struct vCont_action_support
147 /* About this many threadisds fit in a packet. */
149 #define MAXTHREADLISTRESULTS 32
151 /* Data for the vFile:pread readahead cache. */
153 struct readahead_cache
155 /* Invalidate the readahead cache. */
158 /* Invalidate the readahead cache if it is holding data for FD. */
159 void invalidate_fd (int fd
);
161 /* Serve pread from the readahead cache. Returns number of bytes
162 read, or 0 if the request can't be served from the cache. */
163 int pread (int fd
, gdb_byte
*read_buf
, size_t len
, ULONGEST offset
);
165 /* The file descriptor for the file that is being cached. -1 if the
169 /* The offset into the file that the cache buffer corresponds
173 /* The buffer holding the cache contents. */
174 gdb_byte
*buf
= nullptr;
175 /* The buffer's size. We try to read as much as fits into a packet
179 /* Cache hit and miss counters. */
180 ULONGEST hit_count
= 0;
181 ULONGEST miss_count
= 0;
184 /* Description of the remote protocol for a given architecture. */
188 long offset
; /* Offset into G packet. */
189 long regnum
; /* GDB's internal register number. */
190 LONGEST pnum
; /* Remote protocol register number. */
191 int in_g_packet
; /* Always part of G packet. */
192 /* long size in bytes; == register_size (target_gdbarch (), regnum);
194 /* char *name; == gdbarch_register_name (target_gdbarch (), regnum);
198 struct remote_arch_state
200 explicit remote_arch_state (struct gdbarch
*gdbarch
);
202 /* Description of the remote protocol registers. */
203 long sizeof_g_packet
;
205 /* Description of the remote protocol registers indexed by REGNUM
206 (making an array gdbarch_num_regs in size). */
207 std::unique_ptr
<packet_reg
[]> regs
;
209 /* This is the size (in chars) of the first response to the ``g''
210 packet. It is used as a heuristic when determining the maximum
211 size of memory-read and memory-write packets. A target will
212 typically only reserve a buffer large enough to hold the ``g''
213 packet. The size does not include packet overhead (headers and
215 long actual_register_packet_size
;
217 /* This is the maximum size (in chars) of a non read/write packet.
218 It is also used as a cap on the size of read/write packets. */
219 long remote_packet_size
;
222 /* Description of the remote protocol state for the currently
223 connected target. This is per-target state, and independent of the
224 selected architecture. */
233 /* Get the remote arch state for GDBARCH. */
234 struct remote_arch_state
*get_remote_arch_state (struct gdbarch
*gdbarch
);
238 /* A buffer to use for incoming packets, and its current size. The
239 buffer is grown dynamically for larger incoming packets.
240 Outgoing packets may also be constructed in this buffer.
241 BUF_SIZE is always at least REMOTE_PACKET_SIZE;
242 REMOTE_PACKET_SIZE should be used to limit the length of outgoing
247 /* True if we're going through initial connection setup (finding out
248 about the remote side's threads, relocating symbols, etc.). */
249 bool starting_up
= false;
251 /* If we negotiated packet size explicitly (and thus can bypass
252 heuristics for the largest packet size that will not overflow
253 a buffer in the stub), this will be set to that packet size.
254 Otherwise zero, meaning to use the guessed size. */
255 long explicit_packet_size
= 0;
257 /* remote_wait is normally called when the target is running and
258 waits for a stop reply packet. But sometimes we need to call it
259 when the target is already stopped. We can send a "?" packet
260 and have remote_wait read the response. Or, if we already have
261 the response, we can stash it in BUF and tell remote_wait to
262 skip calling getpkt. This flag is set when BUF contains a
263 stop reply packet and the target is not waiting. */
264 int cached_wait_status
= 0;
266 /* True, if in no ack mode. That is, neither GDB nor the stub will
267 expect acks from each other. The connection is assumed to be
269 bool noack_mode
= false;
271 /* True if we're connected in extended remote mode. */
272 bool extended
= false;
274 /* True if we resumed the target and we're waiting for the target to
275 stop. In the mean time, we can't start another command/query.
276 The remote server wouldn't be ready to process it, so we'd
277 timeout waiting for a reply that would never come and eventually
278 we'd close the connection. This can happen in asynchronous mode
279 because we allow GDB commands while the target is running. */
280 bool waiting_for_stop_reply
= false;
282 /* The status of the stub support for the various vCont actions. */
283 vCont_action_support supports_vCont
;
285 /* True if the user has pressed Ctrl-C, but the target hasn't
286 responded to that. */
287 bool ctrlc_pending_p
= false;
289 /* True if we saw a Ctrl-C while reading or writing from/to the
290 remote descriptor. At that point it is not safe to send a remote
291 interrupt packet, so we instead remember we saw the Ctrl-C and
292 process it once we're done with sending/receiving the current
293 packet, which should be shortly. If however that takes too long,
294 and the user presses Ctrl-C again, we offer to disconnect. */
295 bool got_ctrlc_during_io
= false;
297 /* Descriptor for I/O to remote machine. Initialize it to NULL so that
298 remote_open knows that we don't have a file open when the program
300 struct serial
*remote_desc
= nullptr;
302 /* These are the threads which we last sent to the remote system. The
303 TID member will be -1 for all or -2 for not sent yet. */
304 ptid_t general_thread
= null_ptid
;
305 ptid_t continue_thread
= null_ptid
;
307 /* This is the traceframe which we last selected on the remote system.
308 It will be -1 if no traceframe is selected. */
309 int remote_traceframe_number
= -1;
311 char *last_pass_packet
= nullptr;
313 /* The last QProgramSignals packet sent to the target. We bypass
314 sending a new program signals list down to the target if the new
315 packet is exactly the same as the last we sent. IOW, we only let
316 the target know about program signals list changes. */
317 char *last_program_signals_packet
= nullptr;
319 gdb_signal last_sent_signal
= GDB_SIGNAL_0
;
321 bool last_sent_step
= false;
323 /* The execution direction of the last resume we got. */
324 exec_direction_kind last_resume_exec_dir
= EXEC_FORWARD
;
326 char *finished_object
= nullptr;
327 char *finished_annex
= nullptr;
328 ULONGEST finished_offset
= 0;
330 /* Should we try the 'ThreadInfo' query packet?
332 This variable (NOT available to the user: auto-detect only!)
333 determines whether GDB will use the new, simpler "ThreadInfo"
334 query or the older, more complex syntax for thread queries.
335 This is an auto-detect variable (set to true at each connect,
336 and set to false when the target fails to recognize it). */
337 bool use_threadinfo_query
= false;
338 bool use_threadextra_query
= false;
340 threadref echo_nextthread
{};
341 threadref nextthread
{};
342 threadref resultthreadlist
[MAXTHREADLISTRESULTS
] {};
344 /* The state of remote notification. */
345 struct remote_notif_state
*notif_state
= nullptr;
347 /* The branch trace configuration. */
348 struct btrace_config btrace_config
{};
350 /* The argument to the last "vFile:setfs:" packet we sent, used
351 to avoid sending repeated unnecessary "vFile:setfs:" packets.
352 Initialized to -1 to indicate that no "vFile:setfs:" packet
353 has yet been sent. */
356 /* A readahead cache for vFile:pread. Often, reading a binary
357 involves a sequence of small reads. E.g., when parsing an ELF
358 file. A readahead cache helps mostly the case of remote
359 debugging on a connection with higher latency, due to the
360 request/reply nature of the RSP. We only cache data for a single
361 file descriptor at a time. */
362 struct readahead_cache readahead_cache
;
364 /* The list of already fetched and acknowledged stop events. This
365 queue is used for notification Stop, and other notifications
366 don't need queue for their events, because the notification
367 events of Stop can't be consumed immediately, so that events
368 should be queued first, and be consumed by remote_wait_{ns,as}
369 one per time. Other notifications can consume their events
370 immediately, so queue is not needed for them. */
371 QUEUE (stop_reply_p
) *stop_reply_queue
;
373 /* Asynchronous signal handle registered as event loop source for
374 when we have pending events ready to be passed to the core. */
375 struct async_event_handler
*remote_async_inferior_event_token
= nullptr;
377 /* FIXME: cagney/1999-09-23: Even though getpkt was called with
378 ``forever'' still use the normal timeout mechanism. This is
379 currently used by the ASYNC code to guarentee that target reads
380 during the initial connect always time-out. Once getpkt has been
381 modified to return a timeout indication and, in turn
382 remote_wait()/wait_for_inferior() have gained a timeout parameter
384 int wait_forever_enabled_p
= 1;
387 /* Mapping of remote protocol data for each gdbarch. Usually there
388 is only one entry here, though we may see more with stubs that
389 support multi-process. */
390 std::unordered_map
<struct gdbarch
*, remote_arch_state
>
394 static const target_info remote_target_info
= {
396 N_("Remote serial target in gdb-specific protocol"),
400 class remote_target
: public target_ops
405 to_stratum
= process_stratum
;
407 ~remote_target () override
;
409 const target_info
&info () const override
410 { return remote_target_info
; }
412 thread_control_capabilities
get_thread_control_capabilities () override
413 { return tc_schedlock
; }
415 /* Open a remote connection. */
416 static void open (const char *, int);
418 void close () override
;
420 void detach (inferior
*, int) override
;
421 void disconnect (const char *, int) override
;
423 void commit_resume () override
;
424 void resume (ptid_t
, int, enum gdb_signal
) override
;
425 ptid_t
wait (ptid_t
, struct target_waitstatus
*, int) override
;
427 void fetch_registers (struct regcache
*, int) override
;
428 void store_registers (struct regcache
*, int) override
;
429 void prepare_to_store (struct regcache
*) override
;
431 void files_info () override
;
433 int insert_breakpoint (struct gdbarch
*, struct bp_target_info
*) override
;
435 int remove_breakpoint (struct gdbarch
*, struct bp_target_info
*,
436 enum remove_bp_reason
) override
;
439 bool stopped_by_sw_breakpoint () override
;
440 bool supports_stopped_by_sw_breakpoint () override
;
442 bool stopped_by_hw_breakpoint () override
;
444 bool supports_stopped_by_hw_breakpoint () override
;
446 bool stopped_by_watchpoint () override
;
448 bool stopped_data_address (CORE_ADDR
*) override
;
450 bool watchpoint_addr_within_range (CORE_ADDR
, CORE_ADDR
, int) override
;
452 int can_use_hw_breakpoint (enum bptype
, int, int) override
;
454 int insert_hw_breakpoint (struct gdbarch
*, struct bp_target_info
*) override
;
456 int remove_hw_breakpoint (struct gdbarch
*, struct bp_target_info
*) override
;
458 int region_ok_for_hw_watchpoint (CORE_ADDR
, int) override
;
460 int insert_watchpoint (CORE_ADDR
, int, enum target_hw_bp_type
,
461 struct expression
*) override
;
463 int remove_watchpoint (CORE_ADDR
, int, enum target_hw_bp_type
,
464 struct expression
*) override
;
466 void kill () override
;
468 void load (const char *, int) override
;
470 void mourn_inferior () override
;
472 void pass_signals (int, unsigned char *) override
;
474 int set_syscall_catchpoint (int, bool, int,
475 gdb::array_view
<const int>) override
;
477 void program_signals (int, unsigned char *) override
;
479 bool thread_alive (ptid_t ptid
) override
;
481 const char *thread_name (struct thread_info
*) override
;
483 void update_thread_list () override
;
485 const char *pid_to_str (ptid_t
) override
;
487 const char *extra_thread_info (struct thread_info
*) override
;
489 ptid_t
get_ada_task_ptid (long lwp
, long thread
) override
;
491 thread_info
*thread_handle_to_thread_info (const gdb_byte
*thread_handle
,
493 inferior
*inf
) override
;
495 void stop (ptid_t
) override
;
497 void interrupt () override
;
499 void pass_ctrlc () override
;
501 enum target_xfer_status
xfer_partial (enum target_object object
,
504 const gdb_byte
*writebuf
,
505 ULONGEST offset
, ULONGEST len
,
506 ULONGEST
*xfered_len
) override
;
508 ULONGEST
get_memory_xfer_limit () override
;
510 void rcmd (const char *command
, struct ui_file
*output
) override
;
512 char *pid_to_exec_file (int pid
) override
;
514 void log_command (const char *cmd
) override
516 serial_log_command (this, cmd
);
519 CORE_ADDR
get_thread_local_address (ptid_t ptid
,
520 CORE_ADDR load_module_addr
,
521 CORE_ADDR offset
) override
;
523 bool has_all_memory () override
{ return default_child_has_all_memory (); }
524 bool has_memory () override
{ return default_child_has_memory (); }
525 bool has_stack () override
{ return default_child_has_stack (); }
526 bool has_registers () override
{ return default_child_has_registers (); }
527 bool has_execution (ptid_t ptid
) override
{ return default_child_has_execution (ptid
); }
529 bool can_execute_reverse () override
;
531 std::vector
<mem_region
> memory_map () override
;
533 void flash_erase (ULONGEST address
, LONGEST length
) override
;
535 void flash_done () override
;
537 const struct target_desc
*read_description () override
;
539 int search_memory (CORE_ADDR start_addr
, ULONGEST search_space_len
,
540 const gdb_byte
*pattern
, ULONGEST pattern_len
,
541 CORE_ADDR
*found_addrp
) override
;
543 bool can_async_p () override
;
545 bool is_async_p () override
;
547 void async (int) override
;
549 void thread_events (int) override
;
551 int can_do_single_step () override
;
553 void terminal_inferior () override
;
555 void terminal_ours () override
;
557 bool supports_non_stop () override
;
559 bool supports_multi_process () override
;
561 bool supports_disable_randomization () override
;
563 bool filesystem_is_local () override
;
566 int fileio_open (struct inferior
*inf
, const char *filename
,
567 int flags
, int mode
, int warn_if_slow
,
568 int *target_errno
) override
;
570 int fileio_pwrite (int fd
, const gdb_byte
*write_buf
, int len
,
571 ULONGEST offset
, int *target_errno
) override
;
573 int fileio_pread (int fd
, gdb_byte
*read_buf
, int len
,
574 ULONGEST offset
, int *target_errno
) override
;
576 int fileio_fstat (int fd
, struct stat
*sb
, int *target_errno
) override
;
578 int fileio_close (int fd
, int *target_errno
) override
;
580 int fileio_unlink (struct inferior
*inf
,
581 const char *filename
,
582 int *target_errno
) override
;
584 gdb::optional
<std::string
>
585 fileio_readlink (struct inferior
*inf
,
586 const char *filename
,
587 int *target_errno
) override
;
589 bool supports_enable_disable_tracepoint () override
;
591 bool supports_string_tracing () override
;
593 bool supports_evaluation_of_breakpoint_conditions () override
;
595 bool can_run_breakpoint_commands () override
;
597 void trace_init () override
;
599 void download_tracepoint (struct bp_location
*location
) override
;
601 bool can_download_tracepoint () override
;
603 void download_trace_state_variable (const trace_state_variable
&tsv
) override
;
605 void enable_tracepoint (struct bp_location
*location
) override
;
607 void disable_tracepoint (struct bp_location
*location
) override
;
609 void trace_set_readonly_regions () override
;
611 void trace_start () override
;
613 int get_trace_status (struct trace_status
*ts
) override
;
615 void get_tracepoint_status (struct breakpoint
*tp
, struct uploaded_tp
*utp
)
618 void trace_stop () override
;
620 int trace_find (enum trace_find_type type
, int num
,
621 CORE_ADDR addr1
, CORE_ADDR addr2
, int *tpp
) override
;
623 bool get_trace_state_variable_value (int tsv
, LONGEST
*val
) override
;
625 int save_trace_data (const char *filename
) override
;
627 int upload_tracepoints (struct uploaded_tp
**utpp
) override
;
629 int upload_trace_state_variables (struct uploaded_tsv
**utsvp
) override
;
631 LONGEST
get_raw_trace_data (gdb_byte
*buf
, ULONGEST offset
, LONGEST len
) override
;
633 int get_min_fast_tracepoint_insn_len () override
;
635 void set_disconnected_tracing (int val
) override
;
637 void set_circular_trace_buffer (int val
) override
;
639 void set_trace_buffer_size (LONGEST val
) override
;
641 bool set_trace_notes (const char *user
, const char *notes
,
642 const char *stopnotes
) override
;
644 int core_of_thread (ptid_t ptid
) override
;
646 int verify_memory (const gdb_byte
*data
,
647 CORE_ADDR memaddr
, ULONGEST size
) override
;
650 bool get_tib_address (ptid_t ptid
, CORE_ADDR
*addr
) override
;
652 void set_permissions () override
;
654 bool static_tracepoint_marker_at (CORE_ADDR
,
655 struct static_tracepoint_marker
*marker
)
658 std::vector
<static_tracepoint_marker
>
659 static_tracepoint_markers_by_strid (const char *id
) override
;
661 traceframe_info_up
traceframe_info () override
;
663 bool use_agent (bool use
) override
;
664 bool can_use_agent () override
;
666 struct btrace_target_info
*enable_btrace (ptid_t ptid
,
667 const struct btrace_config
*conf
) override
;
669 void disable_btrace (struct btrace_target_info
*tinfo
) override
;
671 void teardown_btrace (struct btrace_target_info
*tinfo
) override
;
673 enum btrace_error
read_btrace (struct btrace_data
*data
,
674 struct btrace_target_info
*btinfo
,
675 enum btrace_read_type type
) override
;
677 const struct btrace_config
*btrace_conf (const struct btrace_target_info
*) override
;
678 bool augmented_libraries_svr4_read () override
;
679 int follow_fork (int, int) override
;
680 void follow_exec (struct inferior
*, char *) override
;
681 int insert_fork_catchpoint (int) override
;
682 int remove_fork_catchpoint (int) override
;
683 int insert_vfork_catchpoint (int) override
;
684 int remove_vfork_catchpoint (int) override
;
685 int insert_exec_catchpoint (int) override
;
686 int remove_exec_catchpoint (int) override
;
687 enum exec_direction_kind
execution_direction () override
;
689 public: /* Remote specific methods. */
691 void remote_download_command_source (int num
, ULONGEST addr
,
692 struct command_line
*cmds
);
694 void remote_file_put (const char *local_file
, const char *remote_file
,
696 void remote_file_get (const char *remote_file
, const char *local_file
,
698 void remote_file_delete (const char *remote_file
, int from_tty
);
700 int remote_hostio_pread (int fd
, gdb_byte
*read_buf
, int len
,
701 ULONGEST offset
, int *remote_errno
);
702 int remote_hostio_pwrite (int fd
, const gdb_byte
*write_buf
, int len
,
703 ULONGEST offset
, int *remote_errno
);
704 int remote_hostio_pread_vFile (int fd
, gdb_byte
*read_buf
, int len
,
705 ULONGEST offset
, int *remote_errno
);
707 int remote_hostio_send_command (int command_bytes
, int which_packet
,
708 int *remote_errno
, char **attachment
,
709 int *attachment_len
);
710 int remote_hostio_set_filesystem (struct inferior
*inf
,
712 /* We should get rid of this and use fileio_open directly. */
713 int remote_hostio_open (struct inferior
*inf
, const char *filename
,
714 int flags
, int mode
, int warn_if_slow
,
716 int remote_hostio_close (int fd
, int *remote_errno
);
718 int remote_hostio_unlink (inferior
*inf
, const char *filename
,
721 struct remote_state
*get_remote_state ();
723 long get_remote_packet_size (void);
724 long get_memory_packet_size (struct memory_packet_config
*config
);
726 long get_memory_write_packet_size ();
727 long get_memory_read_packet_size ();
729 char *append_pending_thread_resumptions (char *p
, char *endp
,
731 static void open_1 (const char *name
, int from_tty
, int extended_p
);
732 void start_remote (int from_tty
, int extended_p
);
733 void remote_detach_1 (int from_tty
, struct inferior
*inf
);
735 char *append_resumption (char *p
, char *endp
,
736 ptid_t ptid
, int step
, gdb_signal siggnal
);
737 int remote_resume_with_vcont (ptid_t ptid
, int step
,
740 void add_current_inferior_and_thread (char *wait_status
);
742 ptid_t
wait_ns (ptid_t ptid
, struct target_waitstatus
*status
,
744 ptid_t
wait_as (ptid_t ptid
, target_waitstatus
*status
,
747 ptid_t
process_stop_reply (struct stop_reply
*stop_reply
,
748 target_waitstatus
*status
);
750 void remote_notice_new_inferior (ptid_t currthread
, int executing
);
752 void process_initial_stop_replies (int from_tty
);
754 void remote_add_thread (ptid_t ptid
, bool running
, bool executing
);
756 void btrace_sync_conf (const btrace_config
*conf
);
758 void remote_btrace_maybe_reopen ();
760 void remove_new_fork_children (threads_listing_context
*context
);
761 void kill_new_fork_children (int pid
);
762 void discard_pending_stop_replies (struct inferior
*inf
);
763 int stop_reply_queue_length ();
765 void check_pending_events_prevent_wildcard_vcont
766 (int *may_global_wildcard_vcont
);
768 void discard_pending_stop_replies_in_queue ();
769 struct stop_reply
*remote_notif_remove_queued_reply (ptid_t ptid
);
770 struct stop_reply
*queued_stop_reply (ptid_t ptid
);
771 int peek_stop_reply (ptid_t ptid
);
772 void remote_parse_stop_reply (char *buf
, stop_reply
*event
);
774 void remote_stop_ns (ptid_t ptid
);
775 void remote_interrupt_as ();
776 void remote_interrupt_ns ();
778 char *remote_get_noisy_reply ();
779 int remote_query_attached (int pid
);
780 inferior
*remote_add_inferior (int fake_pid_p
, int pid
, int attached
,
783 ptid_t
remote_current_thread (ptid_t oldpid
);
784 ptid_t
get_current_thread (char *wait_status
);
786 void set_thread (ptid_t ptid
, int gen
);
787 void set_general_thread (ptid_t ptid
);
788 void set_continue_thread (ptid_t ptid
);
789 void set_general_process ();
791 char *write_ptid (char *buf
, const char *endbuf
, ptid_t ptid
);
793 int remote_unpack_thread_info_response (char *pkt
, threadref
*expectedref
,
794 gdb_ext_thread_info
*info
);
795 int remote_get_threadinfo (threadref
*threadid
, int fieldset
,
796 gdb_ext_thread_info
*info
);
798 int parse_threadlist_response (char *pkt
, int result_limit
,
799 threadref
*original_echo
,
800 threadref
*resultlist
,
802 int remote_get_threadlist (int startflag
, threadref
*nextthread
,
803 int result_limit
, int *done
, int *result_count
,
804 threadref
*threadlist
);
806 int remote_threadlist_iterator (rmt_thread_action stepfunction
,
807 void *context
, int looplimit
);
809 int remote_get_threads_with_ql (threads_listing_context
*context
);
810 int remote_get_threads_with_qxfer (threads_listing_context
*context
);
811 int remote_get_threads_with_qthreadinfo (threads_listing_context
*context
);
813 void extended_remote_restart ();
817 void remote_check_symbols ();
819 void remote_supported_packet (const struct protocol_feature
*feature
,
820 enum packet_support support
,
821 const char *argument
);
823 void remote_query_supported ();
825 void remote_packet_size (const protocol_feature
*feature
,
826 packet_support support
, const char *value
);
828 void remote_serial_quit_handler ();
830 void remote_detach_pid (int pid
);
832 void remote_vcont_probe ();
834 void remote_resume_with_hc (ptid_t ptid
, int step
,
837 void send_interrupt_sequence ();
838 void interrupt_query ();
840 void remote_notif_get_pending_events (notif_client
*nc
);
842 int fetch_register_using_p (struct regcache
*regcache
,
844 int send_g_packet ();
845 void process_g_packet (struct regcache
*regcache
);
846 void fetch_registers_using_g (struct regcache
*regcache
);
847 int store_register_using_P (const struct regcache
*regcache
,
849 void store_registers_using_G (const struct regcache
*regcache
);
851 void set_remote_traceframe ();
853 void check_binary_download (CORE_ADDR addr
);
855 target_xfer_status
remote_write_bytes_aux (const char *header
,
857 const gdb_byte
*myaddr
,
860 ULONGEST
*xfered_len_units
,
864 target_xfer_status
remote_write_bytes (CORE_ADDR memaddr
,
865 const gdb_byte
*myaddr
, ULONGEST len
,
866 int unit_size
, ULONGEST
*xfered_len
);
868 target_xfer_status
remote_read_bytes_1 (CORE_ADDR memaddr
, gdb_byte
*myaddr
,
870 int unit_size
, ULONGEST
*xfered_len_units
);
872 target_xfer_status
remote_xfer_live_readonly_partial (gdb_byte
*readbuf
,
876 ULONGEST
*xfered_len
);
878 target_xfer_status
remote_read_bytes (CORE_ADDR memaddr
,
879 gdb_byte
*myaddr
, ULONGEST len
,
881 ULONGEST
*xfered_len
);
883 packet_result
remote_send_printf (const char *format
, ...)
884 ATTRIBUTE_PRINTF (2, 3);
886 target_xfer_status
remote_flash_write (ULONGEST address
,
887 ULONGEST length
, ULONGEST
*xfered_len
,
888 const gdb_byte
*data
);
890 int readchar (int timeout
);
892 void remote_serial_write (const char *str
, int len
);
894 int putpkt (const char *buf
);
895 int putpkt_binary (const char *buf
, int cnt
);
898 long read_frame (char **buf_p
, long *sizeof_buf
);
899 void getpkt (char **buf
, long *sizeof_buf
, int forever
);
900 int getpkt_or_notif_sane_1 (char **buf
, long *sizeof_buf
, int forever
,
901 int expecting_notif
, int *is_notif
);
902 int getpkt_sane (char **buf
, long *sizeof_buf
, int forever
);
903 int getpkt_or_notif_sane (char **buf
, long *sizeof_buf
, int forever
,
905 int remote_vkill (int pid
);
906 void remote_kill_k ();
908 void extended_remote_disable_randomization (int val
);
909 int extended_remote_run (const std::string
&args
);
911 void send_environment_packet (const char *action
,
915 void extended_remote_environment_support ();
916 void extended_remote_set_inferior_cwd ();
918 target_xfer_status
remote_write_qxfer (const char *object_name
,
920 const gdb_byte
*writebuf
,
921 ULONGEST offset
, LONGEST len
,
922 ULONGEST
*xfered_len
,
923 struct packet_config
*packet
);
925 target_xfer_status
remote_read_qxfer (const char *object_name
,
927 gdb_byte
*readbuf
, ULONGEST offset
,
929 ULONGEST
*xfered_len
,
930 struct packet_config
*packet
);
932 void push_stop_reply (struct stop_reply
*new_event
);
934 bool vcont_r_supported ();
936 void packet_command (const char *args
, int from_tty
);
938 private: /* data fields */
940 /* The remote state. Don't reference this directly. Use the
941 get_remote_state method instead. */
942 remote_state m_remote_state
;
945 static const target_info extended_remote_target_info
= {
947 N_("Extended remote serial target in gdb-specific protocol"),
951 /* Set up the extended remote target by extending the standard remote
952 target and adding to it. */
954 class extended_remote_target final
: public remote_target
957 const target_info
&info () const override
958 { return extended_remote_target_info
; }
960 /* Open an extended-remote connection. */
961 static void open (const char *, int);
963 bool can_create_inferior () override
{ return true; }
964 void create_inferior (const char *, const std::string
&,
965 char **, int) override
;
967 void detach (inferior
*, int) override
;
969 bool can_attach () override
{ return true; }
970 void attach (const char *, int) override
;
972 void post_attach (int) override
;
973 bool supports_disable_randomization () override
;
976 /* Per-program-space data key. */
977 static const struct program_space_data
*remote_pspace_data
;
979 /* The variable registered as the control variable used by the
980 remote exec-file commands. While the remote exec-file setting is
981 per-program-space, the set/show machinery uses this as the
982 location of the remote exec-file value. */
983 static char *remote_exec_file_var
;
985 /* The size to align memory write packets, when practical. The protocol
986 does not guarantee any alignment, and gdb will generate short
987 writes and unaligned writes, but even as a best-effort attempt this
988 can improve bulk transfers. For instance, if a write is misaligned
989 relative to the target's data bus, the stub may need to make an extra
990 round trip fetching data from the target. This doesn't make a
991 huge difference, but it's easy to do, so we try to be helpful.
993 The alignment chosen is arbitrary; usually data bus width is
994 important here, not the possibly larger cache line size. */
995 enum { REMOTE_ALIGN_WRITES
= 16 };
997 /* Prototypes for local functions. */
999 static int hexnumlen (ULONGEST num
);
1001 static int stubhex (int ch
);
1003 static int hexnumstr (char *, ULONGEST
);
1005 static int hexnumnstr (char *, ULONGEST
, int);
1007 static CORE_ADDR
remote_address_masked (CORE_ADDR
);
1009 static void print_packet (const char *);
1011 static int stub_unpack_int (char *buff
, int fieldlength
);
1013 struct packet_config
;
1015 static void show_packet_config_cmd (struct packet_config
*config
);
1017 static void show_remote_protocol_packet_cmd (struct ui_file
*file
,
1019 struct cmd_list_element
*c
,
1022 static ptid_t
read_ptid (const char *buf
, const char **obuf
);
1025 static void stop_reply_xfree (struct stop_reply
*);
1027 static void remote_async_inferior_event_handler (gdb_client_data
);
1029 static int remote_read_description_p (struct target_ops
*target
);
1031 static void remote_console_output (char *msg
);
1033 static void remote_btrace_reset (remote_state
*rs
);
1035 static void remote_unpush_and_throw (void);
1039 static struct cmd_list_element
*remote_cmdlist
;
1041 /* For "set remote" and "show remote". */
1043 static struct cmd_list_element
*remote_set_cmdlist
;
1044 static struct cmd_list_element
*remote_show_cmdlist
;
1046 /* Controls whether GDB is willing to use range stepping. */
1048 static int use_range_stepping
= 1;
1050 /* The max number of chars in debug output. The rest of chars are
1053 #define REMOTE_DEBUG_MAX_CHAR 512
1055 /* Private data that we'll store in (struct thread_info)->priv. */
1056 struct remote_thread_info
: public private_thread_info
1062 /* Thread handle, perhaps a pthread_t or thread_t value, stored as a
1063 sequence of bytes. */
1064 gdb::byte_vector thread_handle
;
1066 /* Whether the target stopped for a breakpoint/watchpoint. */
1067 enum target_stop_reason stop_reason
= TARGET_STOPPED_BY_NO_REASON
;
1069 /* This is set to the data address of the access causing the target
1070 to stop for a watchpoint. */
1071 CORE_ADDR watch_data_address
= 0;
1073 /* Fields used by the vCont action coalescing implemented in
1074 remote_resume / remote_commit_resume. remote_resume stores each
1075 thread's last resume request in these fields, so that a later
1076 remote_commit_resume knows which is the proper action for this
1077 thread to include in the vCont packet. */
1079 /* True if the last target_resume call for this thread was a step
1080 request, false if a continue request. */
1081 int last_resume_step
= 0;
1083 /* The signal specified in the last target_resume call for this
1085 gdb_signal last_resume_sig
= GDB_SIGNAL_0
;
1087 /* Whether this thread was already vCont-resumed on the remote
1089 int vcont_resumed
= 0;
1092 remote_state::remote_state ()
1094 /* The default buffer size is unimportant; it will be expanded
1095 whenever a larger buffer is needed. */
1096 this->buf_size
= 400;
1097 this->buf
= (char *) xmalloc (this->buf_size
);
1099 this->stop_reply_queue
= QUEUE_alloc (stop_reply_p
, stop_reply_xfree
);
1102 remote_state::~remote_state ()
1104 xfree (this->last_pass_packet
);
1105 xfree (this->last_program_signals_packet
);
1107 xfree (this->finished_object
);
1108 xfree (this->finished_annex
);
1109 QUEUE_free (stop_reply_p
, this->stop_reply_queue
);
1112 /* Utility: generate error from an incoming stub packet. */
1114 trace_error (char *buf
)
1117 return; /* not an error msg */
1120 case '1': /* malformed packet error */
1121 if (*++buf
== '0') /* general case: */
1122 error (_("remote.c: error in outgoing packet."));
1124 error (_("remote.c: error in outgoing packet at field #%ld."),
1125 strtol (buf
, NULL
, 16));
1127 error (_("Target returns error code '%s'."), buf
);
1131 /* Utility: wait for reply from stub, while accepting "O" packets. */
1134 remote_target::remote_get_noisy_reply ()
1136 struct remote_state
*rs
= get_remote_state ();
1138 do /* Loop on reply from remote stub. */
1142 QUIT
; /* Allow user to bail out with ^C. */
1143 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
1147 else if (startswith (buf
, "qRelocInsn:"))
1150 CORE_ADDR from
, to
, org_to
;
1152 int adjusted_size
= 0;
1155 p
= buf
+ strlen ("qRelocInsn:");
1156 pp
= unpack_varlen_hex (p
, &ul
);
1158 error (_("invalid qRelocInsn packet: %s"), buf
);
1162 unpack_varlen_hex (p
, &ul
);
1169 gdbarch_relocate_instruction (target_gdbarch (), &to
, from
);
1172 CATCH (ex
, RETURN_MASK_ALL
)
1174 if (ex
.error
== MEMORY_ERROR
)
1176 /* Propagate memory errors silently back to the
1177 target. The stub may have limited the range of
1178 addresses we can write to, for example. */
1182 /* Something unexpectedly bad happened. Be verbose
1183 so we can tell what, and propagate the error back
1184 to the stub, so it doesn't get stuck waiting for
1186 exception_fprintf (gdb_stderr
, ex
,
1187 _("warning: relocating instruction: "));
1195 adjusted_size
= to
- org_to
;
1197 xsnprintf (buf
, rs
->buf_size
, "qRelocInsn:%x", adjusted_size
);
1201 else if (buf
[0] == 'O' && buf
[1] != 'K')
1202 remote_console_output (buf
+ 1); /* 'O' message from stub */
1204 return buf
; /* Here's the actual reply. */
1209 struct remote_arch_state
*
1210 remote_state::get_remote_arch_state (struct gdbarch
*gdbarch
)
1212 remote_arch_state
*rsa
;
1214 auto it
= this->m_arch_states
.find (gdbarch
);
1215 if (it
== this->m_arch_states
.end ())
1217 auto p
= this->m_arch_states
.emplace (std::piecewise_construct
,
1218 std::forward_as_tuple (gdbarch
),
1219 std::forward_as_tuple (gdbarch
));
1220 rsa
= &p
.first
->second
;
1222 /* Make sure that the packet buffer is plenty big enough for
1223 this architecture. */
1224 if (this->buf_size
< rsa
->remote_packet_size
)
1226 this->buf_size
= 2 * rsa
->remote_packet_size
;
1227 this->buf
= (char *) xrealloc (this->buf
, this->buf_size
);
1236 /* Fetch the global remote target state. */
1239 remote_target::get_remote_state ()
1241 /* Make sure that the remote architecture state has been
1242 initialized, because doing so might reallocate rs->buf. Any
1243 function which calls getpkt also needs to be mindful of changes
1244 to rs->buf, but this call limits the number of places which run
1246 m_remote_state
.get_remote_arch_state (target_gdbarch ());
1248 return &m_remote_state
;
1251 /* Cleanup routine for the remote module's pspace data. */
1254 remote_pspace_data_cleanup (struct program_space
*pspace
, void *arg
)
1256 char *remote_exec_file
= (char *) arg
;
1258 xfree (remote_exec_file
);
1261 /* Fetch the remote exec-file from the current program space. */
1264 get_remote_exec_file (void)
1266 char *remote_exec_file
;
1269 = (char *) program_space_data (current_program_space
,
1270 remote_pspace_data
);
1271 if (remote_exec_file
== NULL
)
1274 return remote_exec_file
;
1277 /* Set the remote exec file for PSPACE. */
1280 set_pspace_remote_exec_file (struct program_space
*pspace
,
1281 char *remote_exec_file
)
1283 char *old_file
= (char *) program_space_data (pspace
, remote_pspace_data
);
1286 set_program_space_data (pspace
, remote_pspace_data
,
1287 xstrdup (remote_exec_file
));
1290 /* The "set/show remote exec-file" set command hook. */
1293 set_remote_exec_file (const char *ignored
, int from_tty
,
1294 struct cmd_list_element
*c
)
1296 gdb_assert (remote_exec_file_var
!= NULL
);
1297 set_pspace_remote_exec_file (current_program_space
, remote_exec_file_var
);
1300 /* The "set/show remote exec-file" show command hook. */
1303 show_remote_exec_file (struct ui_file
*file
, int from_tty
,
1304 struct cmd_list_element
*cmd
, const char *value
)
1306 fprintf_filtered (file
, "%s\n", remote_exec_file_var
);
1310 compare_pnums (const void *lhs_
, const void *rhs_
)
1312 const struct packet_reg
* const *lhs
1313 = (const struct packet_reg
* const *) lhs_
;
1314 const struct packet_reg
* const *rhs
1315 = (const struct packet_reg
* const *) rhs_
;
1317 if ((*lhs
)->pnum
< (*rhs
)->pnum
)
1319 else if ((*lhs
)->pnum
== (*rhs
)->pnum
)
1326 map_regcache_remote_table (struct gdbarch
*gdbarch
, struct packet_reg
*regs
)
1328 int regnum
, num_remote_regs
, offset
;
1329 struct packet_reg
**remote_regs
;
1331 for (regnum
= 0; regnum
< gdbarch_num_regs (gdbarch
); regnum
++)
1333 struct packet_reg
*r
= ®s
[regnum
];
1335 if (register_size (gdbarch
, regnum
) == 0)
1336 /* Do not try to fetch zero-sized (placeholder) registers. */
1339 r
->pnum
= gdbarch_remote_register_number (gdbarch
, regnum
);
1344 /* Define the g/G packet format as the contents of each register
1345 with a remote protocol number, in order of ascending protocol
1348 remote_regs
= XALLOCAVEC (struct packet_reg
*, gdbarch_num_regs (gdbarch
));
1349 for (num_remote_regs
= 0, regnum
= 0;
1350 regnum
< gdbarch_num_regs (gdbarch
);
1352 if (regs
[regnum
].pnum
!= -1)
1353 remote_regs
[num_remote_regs
++] = ®s
[regnum
];
1355 qsort (remote_regs
, num_remote_regs
, sizeof (struct packet_reg
*),
1358 for (regnum
= 0, offset
= 0; regnum
< num_remote_regs
; regnum
++)
1360 remote_regs
[regnum
]->in_g_packet
= 1;
1361 remote_regs
[regnum
]->offset
= offset
;
1362 offset
+= register_size (gdbarch
, remote_regs
[regnum
]->regnum
);
1368 /* Given the architecture described by GDBARCH, return the remote
1369 protocol register's number and the register's offset in the g/G
1370 packets of GDB register REGNUM, in PNUM and POFFSET respectively.
1371 If the target does not have a mapping for REGNUM, return false,
1372 otherwise, return true. */
1375 remote_register_number_and_offset (struct gdbarch
*gdbarch
, int regnum
,
1376 int *pnum
, int *poffset
)
1378 gdb_assert (regnum
< gdbarch_num_regs (gdbarch
));
1380 std::vector
<packet_reg
> regs (gdbarch_num_regs (gdbarch
));
1382 map_regcache_remote_table (gdbarch
, regs
.data ());
1384 *pnum
= regs
[regnum
].pnum
;
1385 *poffset
= regs
[regnum
].offset
;
1390 remote_arch_state::remote_arch_state (struct gdbarch
*gdbarch
)
1392 /* Use the architecture to build a regnum<->pnum table, which will be
1393 1:1 unless a feature set specifies otherwise. */
1394 this->regs
.reset (new packet_reg
[gdbarch_num_regs (gdbarch
)] ());
1396 /* Record the maximum possible size of the g packet - it may turn out
1398 this->sizeof_g_packet
1399 = map_regcache_remote_table (gdbarch
, this->regs
.get ());
1401 /* Default maximum number of characters in a packet body. Many
1402 remote stubs have a hardwired buffer size of 400 bytes
1403 (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
1404 as the maximum packet-size to ensure that the packet and an extra
1405 NUL character can always fit in the buffer. This stops GDB
1406 trashing stubs that try to squeeze an extra NUL into what is
1407 already a full buffer (As of 1999-12-04 that was most stubs). */
1408 this->remote_packet_size
= 400 - 1;
1410 /* This one is filled in when a ``g'' packet is received. */
1411 this->actual_register_packet_size
= 0;
1413 /* Should rsa->sizeof_g_packet needs more space than the
1414 default, adjust the size accordingly. Remember that each byte is
1415 encoded as two characters. 32 is the overhead for the packet
1416 header / footer. NOTE: cagney/1999-10-26: I suspect that 8
1417 (``$NN:G...#NN'') is a better guess, the below has been padded a
1419 if (this->sizeof_g_packet
> ((this->remote_packet_size
- 32) / 2))
1420 this->remote_packet_size
= (this->sizeof_g_packet
* 2 + 32);
1423 /* Get a pointer to the current remote target. If not connected to a
1424 remote target, return NULL. */
1426 static remote_target
*
1427 get_current_remote_target ()
1429 target_ops
*proc_target
= find_target_at (process_stratum
);
1430 return dynamic_cast<remote_target
*> (proc_target
);
1433 /* Return the current allowed size of a remote packet. This is
1434 inferred from the current architecture, and should be used to
1435 limit the length of outgoing packets. */
1437 remote_target::get_remote_packet_size ()
1439 struct remote_state
*rs
= get_remote_state ();
1440 remote_arch_state
*rsa
= rs
->get_remote_arch_state (target_gdbarch ());
1442 if (rs
->explicit_packet_size
)
1443 return rs
->explicit_packet_size
;
1445 return rsa
->remote_packet_size
;
1448 static struct packet_reg
*
1449 packet_reg_from_regnum (struct gdbarch
*gdbarch
, struct remote_arch_state
*rsa
,
1452 if (regnum
< 0 && regnum
>= gdbarch_num_regs (gdbarch
))
1456 struct packet_reg
*r
= &rsa
->regs
[regnum
];
1458 gdb_assert (r
->regnum
== regnum
);
1463 static struct packet_reg
*
1464 packet_reg_from_pnum (struct gdbarch
*gdbarch
, struct remote_arch_state
*rsa
,
1469 for (i
= 0; i
< gdbarch_num_regs (gdbarch
); i
++)
1471 struct packet_reg
*r
= &rsa
->regs
[i
];
1473 if (r
->pnum
== pnum
)
1479 /* Allow the user to specify what sequence to send to the remote
1480 when he requests a program interruption: Although ^C is usually
1481 what remote systems expect (this is the default, here), it is
1482 sometimes preferable to send a break. On other systems such
1483 as the Linux kernel, a break followed by g, which is Magic SysRq g
1484 is required in order to interrupt the execution. */
1485 const char interrupt_sequence_control_c
[] = "Ctrl-C";
1486 const char interrupt_sequence_break
[] = "BREAK";
1487 const char interrupt_sequence_break_g
[] = "BREAK-g";
1488 static const char *const interrupt_sequence_modes
[] =
1490 interrupt_sequence_control_c
,
1491 interrupt_sequence_break
,
1492 interrupt_sequence_break_g
,
1495 static const char *interrupt_sequence_mode
= interrupt_sequence_control_c
;
1498 show_interrupt_sequence (struct ui_file
*file
, int from_tty
,
1499 struct cmd_list_element
*c
,
1502 if (interrupt_sequence_mode
== interrupt_sequence_control_c
)
1503 fprintf_filtered (file
,
1504 _("Send the ASCII ETX character (Ctrl-c) "
1505 "to the remote target to interrupt the "
1506 "execution of the program.\n"));
1507 else if (interrupt_sequence_mode
== interrupt_sequence_break
)
1508 fprintf_filtered (file
,
1509 _("send a break signal to the remote target "
1510 "to interrupt the execution of the program.\n"));
1511 else if (interrupt_sequence_mode
== interrupt_sequence_break_g
)
1512 fprintf_filtered (file
,
1513 _("Send a break signal and 'g' a.k.a. Magic SysRq g to "
1514 "the remote target to interrupt the execution "
1515 "of Linux kernel.\n"));
1517 internal_error (__FILE__
, __LINE__
,
1518 _("Invalid value for interrupt_sequence_mode: %s."),
1519 interrupt_sequence_mode
);
1522 /* This boolean variable specifies whether interrupt_sequence is sent
1523 to the remote target when gdb connects to it.
1524 This is mostly needed when you debug the Linux kernel: The Linux kernel
1525 expects BREAK g which is Magic SysRq g for connecting gdb. */
1526 static int interrupt_on_connect
= 0;
1528 /* This variable is used to implement the "set/show remotebreak" commands.
1529 Since these commands are now deprecated in favor of "set/show remote
1530 interrupt-sequence", it no longer has any effect on the code. */
1531 static int remote_break
;
1534 set_remotebreak (const char *args
, int from_tty
, struct cmd_list_element
*c
)
1537 interrupt_sequence_mode
= interrupt_sequence_break
;
1539 interrupt_sequence_mode
= interrupt_sequence_control_c
;
1543 show_remotebreak (struct ui_file
*file
, int from_tty
,
1544 struct cmd_list_element
*c
,
1549 /* This variable sets the number of bits in an address that are to be
1550 sent in a memory ("M" or "m") packet. Normally, after stripping
1551 leading zeros, the entire address would be sent. This variable
1552 restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
1553 initial implementation of remote.c restricted the address sent in
1554 memory packets to ``host::sizeof long'' bytes - (typically 32
1555 bits). Consequently, for 64 bit targets, the upper 32 bits of an
1556 address was never sent. Since fixing this bug may cause a break in
1557 some remote targets this variable is principly provided to
1558 facilitate backward compatibility. */
1560 static unsigned int remote_address_size
;
1563 /* User configurable variables for the number of characters in a
1564 memory read/write packet. MIN (rsa->remote_packet_size,
1565 rsa->sizeof_g_packet) is the default. Some targets need smaller
1566 values (fifo overruns, et.al.) and some users need larger values
1567 (speed up transfers). The variables ``preferred_*'' (the user
1568 request), ``current_*'' (what was actually set) and ``forced_*''
1569 (Positive - a soft limit, negative - a hard limit). */
1571 struct memory_packet_config
1578 /* The default max memory-write-packet-size, when the setting is
1579 "fixed". The 16k is historical. (It came from older GDB's using
1580 alloca for buffers and the knowledge (folklore?) that some hosts
1581 don't cope very well with large alloca calls.) */
1582 #define DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED 16384
1584 /* The minimum remote packet size for memory transfers. Ensures we
1585 can write at least one byte. */
1586 #define MIN_MEMORY_PACKET_SIZE 20
1588 /* Get the memory packet size, assuming it is fixed. */
1591 get_fixed_memory_packet_size (struct memory_packet_config
*config
)
1593 gdb_assert (config
->fixed_p
);
1595 if (config
->size
<= 0)
1596 return DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED
;
1598 return config
->size
;
1601 /* Compute the current size of a read/write packet. Since this makes
1602 use of ``actual_register_packet_size'' the computation is dynamic. */
1605 remote_target::get_memory_packet_size (struct memory_packet_config
*config
)
1607 struct remote_state
*rs
= get_remote_state ();
1608 remote_arch_state
*rsa
= rs
->get_remote_arch_state (target_gdbarch ());
1611 if (config
->fixed_p
)
1612 what_they_get
= get_fixed_memory_packet_size (config
);
1615 what_they_get
= get_remote_packet_size ();
1616 /* Limit the packet to the size specified by the user. */
1617 if (config
->size
> 0
1618 && what_they_get
> config
->size
)
1619 what_they_get
= config
->size
;
1621 /* Limit it to the size of the targets ``g'' response unless we have
1622 permission from the stub to use a larger packet size. */
1623 if (rs
->explicit_packet_size
== 0
1624 && rsa
->actual_register_packet_size
> 0
1625 && what_they_get
> rsa
->actual_register_packet_size
)
1626 what_they_get
= rsa
->actual_register_packet_size
;
1628 if (what_they_get
< MIN_MEMORY_PACKET_SIZE
)
1629 what_they_get
= MIN_MEMORY_PACKET_SIZE
;
1631 /* Make sure there is room in the global buffer for this packet
1632 (including its trailing NUL byte). */
1633 if (rs
->buf_size
< what_they_get
+ 1)
1635 rs
->buf_size
= 2 * what_they_get
;
1636 rs
->buf
= (char *) xrealloc (rs
->buf
, 2 * what_they_get
);
1639 return what_they_get
;
1642 /* Update the size of a read/write packet. If they user wants
1643 something really big then do a sanity check. */
1646 set_memory_packet_size (const char *args
, struct memory_packet_config
*config
)
1648 int fixed_p
= config
->fixed_p
;
1649 long size
= config
->size
;
1652 error (_("Argument required (integer, `fixed' or `limited')."));
1653 else if (strcmp (args
, "hard") == 0
1654 || strcmp (args
, "fixed") == 0)
1656 else if (strcmp (args
, "soft") == 0
1657 || strcmp (args
, "limit") == 0)
1663 size
= strtoul (args
, &end
, 0);
1665 error (_("Invalid %s (bad syntax)."), config
->name
);
1667 /* Instead of explicitly capping the size of a packet to or
1668 disallowing it, the user is allowed to set the size to
1669 something arbitrarily large. */
1673 if (fixed_p
&& !config
->fixed_p
)
1675 /* So that the query shows the correct value. */
1676 long query_size
= (size
<= 0
1677 ? DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED
1680 if (! query (_("The target may not be able to correctly handle a %s\n"
1681 "of %ld bytes. Change the packet size? "),
1682 config
->name
, query_size
))
1683 error (_("Packet size not changed."));
1685 /* Update the config. */
1686 config
->fixed_p
= fixed_p
;
1687 config
->size
= size
;
1691 show_memory_packet_size (struct memory_packet_config
*config
)
1693 if (config
->size
== 0)
1694 printf_filtered (_("The %s is 0 (default). "), config
->name
);
1696 printf_filtered (_("The %s is %ld. "), config
->name
, config
->size
);
1697 if (config
->fixed_p
)
1698 printf_filtered (_("Packets are fixed at %ld bytes.\n"),
1699 get_fixed_memory_packet_size (config
));
1702 remote_target
*remote
= get_current_remote_target ();
1705 printf_filtered (_("Packets are limited to %ld bytes.\n"),
1706 remote
->get_memory_packet_size (config
));
1708 puts_filtered ("The actual limit will be further reduced "
1709 "dependent on the target.\n");
1713 static struct memory_packet_config memory_write_packet_config
=
1715 "memory-write-packet-size",
1719 set_memory_write_packet_size (const char *args
, int from_tty
)
1721 set_memory_packet_size (args
, &memory_write_packet_config
);
1725 show_memory_write_packet_size (const char *args
, int from_tty
)
1727 show_memory_packet_size (&memory_write_packet_config
);
1731 remote_target::get_memory_write_packet_size ()
1733 return get_memory_packet_size (&memory_write_packet_config
);
1736 static struct memory_packet_config memory_read_packet_config
=
1738 "memory-read-packet-size",
1742 set_memory_read_packet_size (const char *args
, int from_tty
)
1744 set_memory_packet_size (args
, &memory_read_packet_config
);
1748 show_memory_read_packet_size (const char *args
, int from_tty
)
1750 show_memory_packet_size (&memory_read_packet_config
);
1754 remote_target::get_memory_read_packet_size ()
1756 long size
= get_memory_packet_size (&memory_read_packet_config
);
1758 /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
1759 extra buffer size argument before the memory read size can be
1760 increased beyond this. */
1761 if (size
> get_remote_packet_size ())
1762 size
= get_remote_packet_size ();
1768 struct packet_config
1773 /* If auto, GDB auto-detects support for this packet or feature,
1774 either through qSupported, or by trying the packet and looking
1775 at the response. If true, GDB assumes the target supports this
1776 packet. If false, the packet is disabled. Configs that don't
1777 have an associated command always have this set to auto. */
1778 enum auto_boolean detect
;
1780 /* Does the target support this packet? */
1781 enum packet_support support
;
1784 static enum packet_support
packet_config_support (struct packet_config
*config
);
1785 static enum packet_support
packet_support (int packet
);
1788 show_packet_config_cmd (struct packet_config
*config
)
1790 const char *support
= "internal-error";
1792 switch (packet_config_support (config
))
1795 support
= "enabled";
1797 case PACKET_DISABLE
:
1798 support
= "disabled";
1800 case PACKET_SUPPORT_UNKNOWN
:
1801 support
= "unknown";
1804 switch (config
->detect
)
1806 case AUTO_BOOLEAN_AUTO
:
1807 printf_filtered (_("Support for the `%s' packet "
1808 "is auto-detected, currently %s.\n"),
1809 config
->name
, support
);
1811 case AUTO_BOOLEAN_TRUE
:
1812 case AUTO_BOOLEAN_FALSE
:
1813 printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
1814 config
->name
, support
);
1820 add_packet_config_cmd (struct packet_config
*config
, const char *name
,
1821 const char *title
, int legacy
)
1827 config
->name
= name
;
1828 config
->title
= title
;
1829 set_doc
= xstrprintf ("Set use of remote protocol `%s' (%s) packet",
1831 show_doc
= xstrprintf ("Show current use of remote "
1832 "protocol `%s' (%s) packet",
1834 /* set/show TITLE-packet {auto,on,off} */
1835 cmd_name
= xstrprintf ("%s-packet", title
);
1836 add_setshow_auto_boolean_cmd (cmd_name
, class_obscure
,
1837 &config
->detect
, set_doc
,
1838 show_doc
, NULL
, /* help_doc */
1840 show_remote_protocol_packet_cmd
,
1841 &remote_set_cmdlist
, &remote_show_cmdlist
);
1842 /* The command code copies the documentation strings. */
1845 /* set/show remote NAME-packet {auto,on,off} -- legacy. */
1850 legacy_name
= xstrprintf ("%s-packet", name
);
1851 add_alias_cmd (legacy_name
, cmd_name
, class_obscure
, 0,
1852 &remote_set_cmdlist
);
1853 add_alias_cmd (legacy_name
, cmd_name
, class_obscure
, 0,
1854 &remote_show_cmdlist
);
1858 static enum packet_result
1859 packet_check_result (const char *buf
)
1863 /* The stub recognized the packet request. Check that the
1864 operation succeeded. */
1866 && isxdigit (buf
[1]) && isxdigit (buf
[2])
1868 /* "Enn" - definitly an error. */
1869 return PACKET_ERROR
;
1871 /* Always treat "E." as an error. This will be used for
1872 more verbose error messages, such as E.memtypes. */
1873 if (buf
[0] == 'E' && buf
[1] == '.')
1874 return PACKET_ERROR
;
1876 /* The packet may or may not be OK. Just assume it is. */
1880 /* The stub does not support the packet. */
1881 return PACKET_UNKNOWN
;
1884 static enum packet_result
1885 packet_ok (const char *buf
, struct packet_config
*config
)
1887 enum packet_result result
;
1889 if (config
->detect
!= AUTO_BOOLEAN_TRUE
1890 && config
->support
== PACKET_DISABLE
)
1891 internal_error (__FILE__
, __LINE__
,
1892 _("packet_ok: attempt to use a disabled packet"));
1894 result
= packet_check_result (buf
);
1899 /* The stub recognized the packet request. */
1900 if (config
->support
== PACKET_SUPPORT_UNKNOWN
)
1903 fprintf_unfiltered (gdb_stdlog
,
1904 "Packet %s (%s) is supported\n",
1905 config
->name
, config
->title
);
1906 config
->support
= PACKET_ENABLE
;
1909 case PACKET_UNKNOWN
:
1910 /* The stub does not support the packet. */
1911 if (config
->detect
== AUTO_BOOLEAN_AUTO
1912 && config
->support
== PACKET_ENABLE
)
1914 /* If the stub previously indicated that the packet was
1915 supported then there is a protocol error. */
1916 error (_("Protocol error: %s (%s) conflicting enabled responses."),
1917 config
->name
, config
->title
);
1919 else if (config
->detect
== AUTO_BOOLEAN_TRUE
)
1921 /* The user set it wrong. */
1922 error (_("Enabled packet %s (%s) not recognized by stub"),
1923 config
->name
, config
->title
);
1927 fprintf_unfiltered (gdb_stdlog
,
1928 "Packet %s (%s) is NOT supported\n",
1929 config
->name
, config
->title
);
1930 config
->support
= PACKET_DISABLE
;
1951 PACKET_vFile_pwrite
,
1953 PACKET_vFile_unlink
,
1954 PACKET_vFile_readlink
,
1957 PACKET_qXfer_features
,
1958 PACKET_qXfer_exec_file
,
1959 PACKET_qXfer_libraries
,
1960 PACKET_qXfer_libraries_svr4
,
1961 PACKET_qXfer_memory_map
,
1962 PACKET_qXfer_spu_read
,
1963 PACKET_qXfer_spu_write
,
1964 PACKET_qXfer_osdata
,
1965 PACKET_qXfer_threads
,
1966 PACKET_qXfer_statictrace_read
,
1967 PACKET_qXfer_traceframe_info
,
1973 PACKET_QPassSignals
,
1974 PACKET_QCatchSyscalls
,
1975 PACKET_QProgramSignals
,
1976 PACKET_QSetWorkingDir
,
1977 PACKET_QStartupWithShell
,
1978 PACKET_QEnvironmentHexEncoded
,
1979 PACKET_QEnvironmentReset
,
1980 PACKET_QEnvironmentUnset
,
1982 PACKET_qSearch_memory
,
1985 PACKET_QStartNoAckMode
,
1987 PACKET_qXfer_siginfo_read
,
1988 PACKET_qXfer_siginfo_write
,
1991 /* Support for conditional tracepoints. */
1992 PACKET_ConditionalTracepoints
,
1994 /* Support for target-side breakpoint conditions. */
1995 PACKET_ConditionalBreakpoints
,
1997 /* Support for target-side breakpoint commands. */
1998 PACKET_BreakpointCommands
,
2000 /* Support for fast tracepoints. */
2001 PACKET_FastTracepoints
,
2003 /* Support for static tracepoints. */
2004 PACKET_StaticTracepoints
,
2006 /* Support for installing tracepoints while a trace experiment is
2008 PACKET_InstallInTrace
,
2012 PACKET_TracepointSource
,
2015 PACKET_QDisableRandomization
,
2017 PACKET_QTBuffer_size
,
2021 PACKET_qXfer_btrace
,
2023 /* Support for the QNonStop packet. */
2026 /* Support for the QThreadEvents packet. */
2027 PACKET_QThreadEvents
,
2029 /* Support for multi-process extensions. */
2030 PACKET_multiprocess_feature
,
2032 /* Support for enabling and disabling tracepoints while a trace
2033 experiment is running. */
2034 PACKET_EnableDisableTracepoints_feature
,
2036 /* Support for collecting strings using the tracenz bytecode. */
2037 PACKET_tracenz_feature
,
2039 /* Support for continuing to run a trace experiment while GDB is
2041 PACKET_DisconnectedTracing_feature
,
2043 /* Support for qXfer:libraries-svr4:read with a non-empty annex. */
2044 PACKET_augmented_libraries_svr4_read_feature
,
2046 /* Support for the qXfer:btrace-conf:read packet. */
2047 PACKET_qXfer_btrace_conf
,
2049 /* Support for the Qbtrace-conf:bts:size packet. */
2050 PACKET_Qbtrace_conf_bts_size
,
2052 /* Support for swbreak+ feature. */
2053 PACKET_swbreak_feature
,
2055 /* Support for hwbreak+ feature. */
2056 PACKET_hwbreak_feature
,
2058 /* Support for fork events. */
2059 PACKET_fork_event_feature
,
2061 /* Support for vfork events. */
2062 PACKET_vfork_event_feature
,
2064 /* Support for the Qbtrace-conf:pt:size packet. */
2065 PACKET_Qbtrace_conf_pt_size
,
2067 /* Support for exec events. */
2068 PACKET_exec_event_feature
,
2070 /* Support for query supported vCont actions. */
2071 PACKET_vContSupported
,
2073 /* Support remote CTRL-C. */
2076 /* Support TARGET_WAITKIND_NO_RESUMED. */
2082 static struct packet_config remote_protocol_packets
[PACKET_MAX
];
2084 /* Returns the packet's corresponding "set remote foo-packet" command
2085 state. See struct packet_config for more details. */
2087 static enum auto_boolean
2088 packet_set_cmd_state (int packet
)
2090 return remote_protocol_packets
[packet
].detect
;
2093 /* Returns whether a given packet or feature is supported. This takes
2094 into account the state of the corresponding "set remote foo-packet"
2095 command, which may be used to bypass auto-detection. */
2097 static enum packet_support
2098 packet_config_support (struct packet_config
*config
)
2100 switch (config
->detect
)
2102 case AUTO_BOOLEAN_TRUE
:
2103 return PACKET_ENABLE
;
2104 case AUTO_BOOLEAN_FALSE
:
2105 return PACKET_DISABLE
;
2106 case AUTO_BOOLEAN_AUTO
:
2107 return config
->support
;
2109 gdb_assert_not_reached (_("bad switch"));
2113 /* Same as packet_config_support, but takes the packet's enum value as
2116 static enum packet_support
2117 packet_support (int packet
)
2119 struct packet_config
*config
= &remote_protocol_packets
[packet
];
2121 return packet_config_support (config
);
2125 show_remote_protocol_packet_cmd (struct ui_file
*file
, int from_tty
,
2126 struct cmd_list_element
*c
,
2129 struct packet_config
*packet
;
2131 for (packet
= remote_protocol_packets
;
2132 packet
< &remote_protocol_packets
[PACKET_MAX
];
2135 if (&packet
->detect
== c
->var
)
2137 show_packet_config_cmd (packet
);
2141 internal_error (__FILE__
, __LINE__
, _("Could not find config for %s"),
2145 /* Should we try one of the 'Z' requests? */
2149 Z_PACKET_SOFTWARE_BP
,
2150 Z_PACKET_HARDWARE_BP
,
2157 /* For compatibility with older distributions. Provide a ``set remote
2158 Z-packet ...'' command that updates all the Z packet types. */
2160 static enum auto_boolean remote_Z_packet_detect
;
2163 set_remote_protocol_Z_packet_cmd (const char *args
, int from_tty
,
2164 struct cmd_list_element
*c
)
2168 for (i
= 0; i
< NR_Z_PACKET_TYPES
; i
++)
2169 remote_protocol_packets
[PACKET_Z0
+ i
].detect
= remote_Z_packet_detect
;
2173 show_remote_protocol_Z_packet_cmd (struct ui_file
*file
, int from_tty
,
2174 struct cmd_list_element
*c
,
2179 for (i
= 0; i
< NR_Z_PACKET_TYPES
; i
++)
2181 show_packet_config_cmd (&remote_protocol_packets
[PACKET_Z0
+ i
]);
2185 /* Returns true if the multi-process extensions are in effect. */
2188 remote_multi_process_p (struct remote_state
*rs
)
2190 return packet_support (PACKET_multiprocess_feature
) == PACKET_ENABLE
;
2193 /* Returns true if fork events are supported. */
2196 remote_fork_event_p (struct remote_state
*rs
)
2198 return packet_support (PACKET_fork_event_feature
) == PACKET_ENABLE
;
2201 /* Returns true if vfork events are supported. */
2204 remote_vfork_event_p (struct remote_state
*rs
)
2206 return packet_support (PACKET_vfork_event_feature
) == PACKET_ENABLE
;
2209 /* Returns true if exec events are supported. */
2212 remote_exec_event_p (struct remote_state
*rs
)
2214 return packet_support (PACKET_exec_event_feature
) == PACKET_ENABLE
;
2217 /* Insert fork catchpoint target routine. If fork events are enabled
2218 then return success, nothing more to do. */
2221 remote_target::insert_fork_catchpoint (int pid
)
2223 struct remote_state
*rs
= get_remote_state ();
2225 return !remote_fork_event_p (rs
);
2228 /* Remove fork catchpoint target routine. Nothing to do, just
2232 remote_target::remove_fork_catchpoint (int pid
)
2237 /* Insert vfork catchpoint target routine. If vfork events are enabled
2238 then return success, nothing more to do. */
2241 remote_target::insert_vfork_catchpoint (int pid
)
2243 struct remote_state
*rs
= get_remote_state ();
2245 return !remote_vfork_event_p (rs
);
2248 /* Remove vfork catchpoint target routine. Nothing to do, just
2252 remote_target::remove_vfork_catchpoint (int pid
)
2257 /* Insert exec catchpoint target routine. If exec events are
2258 enabled, just return success. */
2261 remote_target::insert_exec_catchpoint (int pid
)
2263 struct remote_state
*rs
= get_remote_state ();
2265 return !remote_exec_event_p (rs
);
2268 /* Remove exec catchpoint target routine. Nothing to do, just
2272 remote_target::remove_exec_catchpoint (int pid
)
2279 static ptid_t magic_null_ptid
;
2280 static ptid_t not_sent_ptid
;
2281 static ptid_t any_thread_ptid
;
2283 /* Find out if the stub attached to PID (and hence GDB should offer to
2284 detach instead of killing it when bailing out). */
2287 remote_target::remote_query_attached (int pid
)
2289 struct remote_state
*rs
= get_remote_state ();
2290 size_t size
= get_remote_packet_size ();
2292 if (packet_support (PACKET_qAttached
) == PACKET_DISABLE
)
2295 if (remote_multi_process_p (rs
))
2296 xsnprintf (rs
->buf
, size
, "qAttached:%x", pid
);
2298 xsnprintf (rs
->buf
, size
, "qAttached");
2301 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
2303 switch (packet_ok (rs
->buf
,
2304 &remote_protocol_packets
[PACKET_qAttached
]))
2307 if (strcmp (rs
->buf
, "1") == 0)
2311 warning (_("Remote failure reply: %s"), rs
->buf
);
2313 case PACKET_UNKNOWN
:
2320 /* Add PID to GDB's inferior table. If FAKE_PID_P is true, then PID
2321 has been invented by GDB, instead of reported by the target. Since
2322 we can be connected to a remote system before before knowing about
2323 any inferior, mark the target with execution when we find the first
2324 inferior. If ATTACHED is 1, then we had just attached to this
2325 inferior. If it is 0, then we just created this inferior. If it
2326 is -1, then try querying the remote stub to find out if it had
2327 attached to the inferior or not. If TRY_OPEN_EXEC is true then
2328 attempt to open this inferior's executable as the main executable
2329 if no main executable is open already. */
2332 remote_target::remote_add_inferior (int fake_pid_p
, int pid
, int attached
,
2335 struct inferior
*inf
;
2337 /* Check whether this process we're learning about is to be
2338 considered attached, or if is to be considered to have been
2339 spawned by the stub. */
2341 attached
= remote_query_attached (pid
);
2343 if (gdbarch_has_global_solist (target_gdbarch ()))
2345 /* If the target shares code across all inferiors, then every
2346 attach adds a new inferior. */
2347 inf
= add_inferior (pid
);
2349 /* ... and every inferior is bound to the same program space.
2350 However, each inferior may still have its own address
2352 inf
->aspace
= maybe_new_address_space ();
2353 inf
->pspace
= current_program_space
;
2357 /* In the traditional debugging scenario, there's a 1-1 match
2358 between program/address spaces. We simply bind the inferior
2359 to the program space's address space. */
2360 inf
= current_inferior ();
2361 inferior_appeared (inf
, pid
);
2364 inf
->attach_flag
= attached
;
2365 inf
->fake_pid_p
= fake_pid_p
;
2367 /* If no main executable is currently open then attempt to
2368 open the file that was executed to create this inferior. */
2369 if (try_open_exec
&& get_exec_file (0) == NULL
)
2370 exec_file_locate_attach (pid
, 0, 1);
2375 static remote_thread_info
*get_remote_thread_info (thread_info
*thread
);
2377 /* Add thread PTID to GDB's thread list. Tag it as executing/running
2378 according to RUNNING. */
2381 remote_target::remote_add_thread (ptid_t ptid
, bool running
, bool executing
)
2383 struct remote_state
*rs
= get_remote_state ();
2384 struct thread_info
*thread
;
2386 /* GDB historically didn't pull threads in the initial connection
2387 setup. If the remote target doesn't even have a concept of
2388 threads (e.g., a bare-metal target), even if internally we
2389 consider that a single-threaded target, mentioning a new thread
2390 might be confusing to the user. Be silent then, preserving the
2391 age old behavior. */
2392 if (rs
->starting_up
)
2393 thread
= add_thread_silent (ptid
);
2395 thread
= add_thread (ptid
);
2397 get_remote_thread_info (thread
)->vcont_resumed
= executing
;
2398 set_executing (ptid
, executing
);
2399 set_running (ptid
, running
);
2402 /* Come here when we learn about a thread id from the remote target.
2403 It may be the first time we hear about such thread, so take the
2404 opportunity to add it to GDB's thread list. In case this is the
2405 first time we're noticing its corresponding inferior, add it to
2406 GDB's inferior list as well. EXECUTING indicates whether the
2407 thread is (internally) executing or stopped. */
2410 remote_target::remote_notice_new_inferior (ptid_t currthread
, int executing
)
2412 /* In non-stop mode, we assume new found threads are (externally)
2413 running until proven otherwise with a stop reply. In all-stop,
2414 we can only get here if all threads are stopped. */
2415 int running
= target_is_non_stop_p () ? 1 : 0;
2417 /* If this is a new thread, add it to GDB's thread list.
2418 If we leave it up to WFI to do this, bad things will happen. */
2420 if (in_thread_list (currthread
) && is_exited (currthread
))
2422 /* We're seeing an event on a thread id we knew had exited.
2423 This has to be a new thread reusing the old id. Add it. */
2424 remote_add_thread (currthread
, running
, executing
);
2428 if (!in_thread_list (currthread
))
2430 struct inferior
*inf
= NULL
;
2431 int pid
= ptid_get_pid (currthread
);
2433 if (ptid_is_pid (inferior_ptid
)
2434 && pid
== ptid_get_pid (inferior_ptid
))
2436 /* inferior_ptid has no thread member yet. This can happen
2437 with the vAttach -> remote_wait,"TAAthread:" path if the
2438 stub doesn't support qC. This is the first stop reported
2439 after an attach, so this is the main thread. Update the
2440 ptid in the thread list. */
2441 if (in_thread_list (pid_to_ptid (pid
)))
2442 thread_change_ptid (inferior_ptid
, currthread
);
2445 remote_add_thread (currthread
, running
, executing
);
2446 inferior_ptid
= currthread
;
2451 if (ptid_equal (magic_null_ptid
, inferior_ptid
))
2453 /* inferior_ptid is not set yet. This can happen with the
2454 vRun -> remote_wait,"TAAthread:" path if the stub
2455 doesn't support qC. This is the first stop reported
2456 after an attach, so this is the main thread. Update the
2457 ptid in the thread list. */
2458 thread_change_ptid (inferior_ptid
, currthread
);
2462 /* When connecting to a target remote, or to a target
2463 extended-remote which already was debugging an inferior, we
2464 may not know about it yet. Add it before adding its child
2465 thread, so notifications are emitted in a sensible order. */
2466 if (!in_inferior_list (ptid_get_pid (currthread
)))
2468 struct remote_state
*rs
= get_remote_state ();
2469 int fake_pid_p
= !remote_multi_process_p (rs
);
2471 inf
= remote_add_inferior (fake_pid_p
,
2472 ptid_get_pid (currthread
), -1, 1);
2475 /* This is really a new thread. Add it. */
2476 remote_add_thread (currthread
, running
, executing
);
2478 /* If we found a new inferior, let the common code do whatever
2479 it needs to with it (e.g., read shared libraries, insert
2480 breakpoints), unless we're just setting up an all-stop
2484 struct remote_state
*rs
= get_remote_state ();
2486 if (!rs
->starting_up
)
2487 notice_new_inferior (currthread
, executing
, 0);
2492 /* Return THREAD's private thread data, creating it if necessary. */
2494 static remote_thread_info
*
2495 get_remote_thread_info (thread_info
*thread
)
2497 gdb_assert (thread
!= NULL
);
2499 if (thread
->priv
== NULL
)
2500 thread
->priv
.reset (new remote_thread_info
);
2502 return static_cast<remote_thread_info
*> (thread
->priv
.get ());
2505 /* Return PTID's private thread data, creating it if necessary. */
2507 static remote_thread_info
*
2508 get_remote_thread_info (ptid_t ptid
)
2510 struct thread_info
*info
= find_thread_ptid (ptid
);
2512 return get_remote_thread_info (info
);
2515 /* Call this function as a result of
2516 1) A halt indication (T packet) containing a thread id
2517 2) A direct query of currthread
2518 3) Successful execution of set thread */
2521 record_currthread (struct remote_state
*rs
, ptid_t currthread
)
2523 rs
->general_thread
= currthread
;
2526 /* If 'QPassSignals' is supported, tell the remote stub what signals
2527 it can simply pass through to the inferior without reporting. */
2530 remote_target::pass_signals (int numsigs
, unsigned char *pass_signals
)
2532 if (packet_support (PACKET_QPassSignals
) != PACKET_DISABLE
)
2534 char *pass_packet
, *p
;
2536 struct remote_state
*rs
= get_remote_state ();
2538 gdb_assert (numsigs
< 256);
2539 for (i
= 0; i
< numsigs
; i
++)
2541 if (pass_signals
[i
])
2544 pass_packet
= (char *) xmalloc (count
* 3 + strlen ("QPassSignals:") + 1);
2545 strcpy (pass_packet
, "QPassSignals:");
2546 p
= pass_packet
+ strlen (pass_packet
);
2547 for (i
= 0; i
< numsigs
; i
++)
2549 if (pass_signals
[i
])
2552 *p
++ = tohex (i
>> 4);
2553 *p
++ = tohex (i
& 15);
2562 if (!rs
->last_pass_packet
|| strcmp (rs
->last_pass_packet
, pass_packet
))
2564 putpkt (pass_packet
);
2565 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
2566 packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_QPassSignals
]);
2567 if (rs
->last_pass_packet
)
2568 xfree (rs
->last_pass_packet
);
2569 rs
->last_pass_packet
= pass_packet
;
2572 xfree (pass_packet
);
2576 /* If 'QCatchSyscalls' is supported, tell the remote stub
2577 to report syscalls to GDB. */
2580 remote_target::set_syscall_catchpoint (int pid
, bool needed
, int any_count
,
2581 gdb::array_view
<const int> syscall_counts
)
2583 const char *catch_packet
;
2584 enum packet_result result
;
2587 if (packet_support (PACKET_QCatchSyscalls
) == PACKET_DISABLE
)
2589 /* Not supported. */
2593 if (needed
&& any_count
== 0)
2595 /* Count how many syscalls are to be caught. */
2596 for (size_t i
= 0; i
< syscall_counts
.size (); i
++)
2598 if (syscall_counts
[i
] != 0)
2605 fprintf_unfiltered (gdb_stdlog
,
2606 "remote_set_syscall_catchpoint "
2607 "pid %d needed %d any_count %d n_sysno %d\n",
2608 pid
, needed
, any_count
, n_sysno
);
2611 std::string built_packet
;
2614 /* Prepare a packet with the sysno list, assuming max 8+1
2615 characters for a sysno. If the resulting packet size is too
2616 big, fallback on the non-selective packet. */
2617 const int maxpktsz
= strlen ("QCatchSyscalls:1") + n_sysno
* 9 + 1;
2618 built_packet
.reserve (maxpktsz
);
2619 built_packet
= "QCatchSyscalls:1";
2622 /* Add in each syscall to be caught. */
2623 for (size_t i
= 0; i
< syscall_counts
.size (); i
++)
2625 if (syscall_counts
[i
] != 0)
2626 string_appendf (built_packet
, ";%zx", i
);
2629 if (built_packet
.size () > get_remote_packet_size ())
2631 /* catch_packet too big. Fallback to less efficient
2632 non selective mode, with GDB doing the filtering. */
2633 catch_packet
= "QCatchSyscalls:1";
2636 catch_packet
= built_packet
.c_str ();
2639 catch_packet
= "QCatchSyscalls:0";
2641 struct remote_state
*rs
= get_remote_state ();
2643 putpkt (catch_packet
);
2644 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
2645 result
= packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_QCatchSyscalls
]);
2646 if (result
== PACKET_OK
)
2652 /* If 'QProgramSignals' is supported, tell the remote stub what
2653 signals it should pass through to the inferior when detaching. */
2656 remote_target::program_signals (int numsigs
, unsigned char *signals
)
2658 if (packet_support (PACKET_QProgramSignals
) != PACKET_DISABLE
)
2662 struct remote_state
*rs
= get_remote_state ();
2664 gdb_assert (numsigs
< 256);
2665 for (i
= 0; i
< numsigs
; i
++)
2670 packet
= (char *) xmalloc (count
* 3 + strlen ("QProgramSignals:") + 1);
2671 strcpy (packet
, "QProgramSignals:");
2672 p
= packet
+ strlen (packet
);
2673 for (i
= 0; i
< numsigs
; i
++)
2675 if (signal_pass_state (i
))
2678 *p
++ = tohex (i
>> 4);
2679 *p
++ = tohex (i
& 15);
2688 if (!rs
->last_program_signals_packet
2689 || strcmp (rs
->last_program_signals_packet
, packet
) != 0)
2692 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
2693 packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_QProgramSignals
]);
2694 xfree (rs
->last_program_signals_packet
);
2695 rs
->last_program_signals_packet
= packet
;
2702 /* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
2703 MINUS_ONE_PTID, set the thread to -1, so the stub returns the
2704 thread. If GEN is set, set the general thread, if not, then set
2705 the step/continue thread. */
2707 remote_target::set_thread (ptid_t ptid
, int gen
)
2709 struct remote_state
*rs
= get_remote_state ();
2710 ptid_t state
= gen
? rs
->general_thread
: rs
->continue_thread
;
2711 char *buf
= rs
->buf
;
2712 char *endbuf
= rs
->buf
+ get_remote_packet_size ();
2714 if (ptid_equal (state
, ptid
))
2718 *buf
++ = gen
? 'g' : 'c';
2719 if (ptid_equal (ptid
, magic_null_ptid
))
2720 xsnprintf (buf
, endbuf
- buf
, "0");
2721 else if (ptid_equal (ptid
, any_thread_ptid
))
2722 xsnprintf (buf
, endbuf
- buf
, "0");
2723 else if (ptid_equal (ptid
, minus_one_ptid
))
2724 xsnprintf (buf
, endbuf
- buf
, "-1");
2726 write_ptid (buf
, endbuf
, ptid
);
2728 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
2730 rs
->general_thread
= ptid
;
2732 rs
->continue_thread
= ptid
;
2736 remote_target::set_general_thread (ptid_t ptid
)
2738 set_thread (ptid
, 1);
2742 remote_target::set_continue_thread (ptid_t ptid
)
2744 set_thread (ptid
, 0);
2747 /* Change the remote current process. Which thread within the process
2748 ends up selected isn't important, as long as it is the same process
2749 as what INFERIOR_PTID points to.
2751 This comes from that fact that there is no explicit notion of
2752 "selected process" in the protocol. The selected process for
2753 general operations is the process the selected general thread
2757 remote_target::set_general_process ()
2759 struct remote_state
*rs
= get_remote_state ();
2761 /* If the remote can't handle multiple processes, don't bother. */
2762 if (!remote_multi_process_p (rs
))
2765 /* We only need to change the remote current thread if it's pointing
2766 at some other process. */
2767 if (ptid_get_pid (rs
->general_thread
) != ptid_get_pid (inferior_ptid
))
2768 set_general_thread (inferior_ptid
);
2772 /* Return nonzero if this is the main thread that we made up ourselves
2773 to model non-threaded targets as single-threaded. */
2776 remote_thread_always_alive (ptid_t ptid
)
2778 if (ptid_equal (ptid
, magic_null_ptid
))
2779 /* The main thread is always alive. */
2782 if (ptid_get_pid (ptid
) != 0 && ptid_get_lwp (ptid
) == 0)
2783 /* The main thread is always alive. This can happen after a
2784 vAttach, if the remote side doesn't support
2791 /* Return nonzero if the thread PTID is still alive on the remote
2795 remote_target::thread_alive (ptid_t ptid
)
2797 struct remote_state
*rs
= get_remote_state ();
2800 /* Check if this is a thread that we made up ourselves to model
2801 non-threaded targets as single-threaded. */
2802 if (remote_thread_always_alive (ptid
))
2806 endp
= rs
->buf
+ get_remote_packet_size ();
2809 write_ptid (p
, endp
, ptid
);
2812 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
2813 return (rs
->buf
[0] == 'O' && rs
->buf
[1] == 'K');
2816 /* Return a pointer to a thread name if we know it and NULL otherwise.
2817 The thread_info object owns the memory for the name. */
2820 remote_target::thread_name (struct thread_info
*info
)
2822 if (info
->priv
!= NULL
)
2824 const std::string
&name
= get_remote_thread_info (info
)->name
;
2825 return !name
.empty () ? name
.c_str () : NULL
;
2831 /* About these extended threadlist and threadinfo packets. They are
2832 variable length packets but, the fields within them are often fixed
2833 length. They are redundent enough to send over UDP as is the
2834 remote protocol in general. There is a matching unit test module
2837 /* WARNING: This threadref data structure comes from the remote O.S.,
2838 libstub protocol encoding, and remote.c. It is not particularly
2841 /* Right now, the internal structure is int. We want it to be bigger.
2842 Plan to fix this. */
2844 typedef int gdb_threadref
; /* Internal GDB thread reference. */
2846 /* gdb_ext_thread_info is an internal GDB data structure which is
2847 equivalent to the reply of the remote threadinfo packet. */
2849 struct gdb_ext_thread_info
2851 threadref threadid
; /* External form of thread reference. */
2852 int active
; /* Has state interesting to GDB?
2854 char display
[256]; /* Brief state display, name,
2855 blocked/suspended. */
2856 char shortname
[32]; /* To be used to name threads. */
2857 char more_display
[256]; /* Long info, statistics, queue depth,
2861 /* The volume of remote transfers can be limited by submitting
2862 a mask containing bits specifying the desired information.
2863 Use a union of these values as the 'selection' parameter to
2864 get_thread_info. FIXME: Make these TAG names more thread specific. */
2866 #define TAG_THREADID 1
2867 #define TAG_EXISTS 2
2868 #define TAG_DISPLAY 4
2869 #define TAG_THREADNAME 8
2870 #define TAG_MOREDISPLAY 16
2872 #define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
2874 static char *unpack_nibble (char *buf
, int *val
);
2876 static char *unpack_byte (char *buf
, int *value
);
2878 static char *pack_int (char *buf
, int value
);
2880 static char *unpack_int (char *buf
, int *value
);
2882 static char *unpack_string (char *src
, char *dest
, int length
);
2884 static char *pack_threadid (char *pkt
, threadref
*id
);
2886 static char *unpack_threadid (char *inbuf
, threadref
*id
);
2888 void int_to_threadref (threadref
*id
, int value
);
2890 static int threadref_to_int (threadref
*ref
);
2892 static void copy_threadref (threadref
*dest
, threadref
*src
);
2894 static int threadmatch (threadref
*dest
, threadref
*src
);
2896 static char *pack_threadinfo_request (char *pkt
, int mode
,
2899 static char *pack_threadlist_request (char *pkt
, int startflag
,
2901 threadref
*nextthread
);
2903 static int remote_newthread_step (threadref
*ref
, void *context
);
2906 /* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the
2907 buffer we're allowed to write to. Returns
2908 BUF+CHARACTERS_WRITTEN. */
2911 remote_target::write_ptid (char *buf
, const char *endbuf
, ptid_t ptid
)
2914 struct remote_state
*rs
= get_remote_state ();
2916 if (remote_multi_process_p (rs
))
2918 pid
= ptid_get_pid (ptid
);
2920 buf
+= xsnprintf (buf
, endbuf
- buf
, "p-%x.", -pid
);
2922 buf
+= xsnprintf (buf
, endbuf
- buf
, "p%x.", pid
);
2924 tid
= ptid_get_lwp (ptid
);
2926 buf
+= xsnprintf (buf
, endbuf
- buf
, "-%x", -tid
);
2928 buf
+= xsnprintf (buf
, endbuf
- buf
, "%x", tid
);
2933 /* Extract a PTID from BUF. If non-null, OBUF is set to one past the
2934 last parsed char. Returns null_ptid if no thread id is found, and
2935 throws an error if the thread id has an invalid format. */
2938 read_ptid (const char *buf
, const char **obuf
)
2940 const char *p
= buf
;
2942 ULONGEST pid
= 0, tid
= 0;
2946 /* Multi-process ptid. */
2947 pp
= unpack_varlen_hex (p
+ 1, &pid
);
2949 error (_("invalid remote ptid: %s"), p
);
2952 pp
= unpack_varlen_hex (p
+ 1, &tid
);
2955 return ptid_build (pid
, tid
, 0);
2958 /* No multi-process. Just a tid. */
2959 pp
= unpack_varlen_hex (p
, &tid
);
2961 /* Return null_ptid when no thread id is found. */
2969 /* Since the stub is not sending a process id, then default to
2970 what's in inferior_ptid, unless it's null at this point. If so,
2971 then since there's no way to know the pid of the reported
2972 threads, use the magic number. */
2973 if (ptid_equal (inferior_ptid
, null_ptid
))
2974 pid
= ptid_get_pid (magic_null_ptid
);
2976 pid
= ptid_get_pid (inferior_ptid
);
2980 return ptid_build (pid
, tid
, 0);
2986 if (ch
>= 'a' && ch
<= 'f')
2987 return ch
- 'a' + 10;
2988 if (ch
>= '0' && ch
<= '9')
2990 if (ch
>= 'A' && ch
<= 'F')
2991 return ch
- 'A' + 10;
2996 stub_unpack_int (char *buff
, int fieldlength
)
3003 nibble
= stubhex (*buff
++);
3007 retval
= retval
<< 4;
3013 unpack_nibble (char *buf
, int *val
)
3015 *val
= fromhex (*buf
++);
3020 unpack_byte (char *buf
, int *value
)
3022 *value
= stub_unpack_int (buf
, 2);
3027 pack_int (char *buf
, int value
)
3029 buf
= pack_hex_byte (buf
, (value
>> 24) & 0xff);
3030 buf
= pack_hex_byte (buf
, (value
>> 16) & 0xff);
3031 buf
= pack_hex_byte (buf
, (value
>> 8) & 0x0ff);
3032 buf
= pack_hex_byte (buf
, (value
& 0xff));
3037 unpack_int (char *buf
, int *value
)
3039 *value
= stub_unpack_int (buf
, 8);
3043 #if 0 /* Currently unused, uncomment when needed. */
3044 static char *pack_string (char *pkt
, char *string
);
3047 pack_string (char *pkt
, char *string
)
3052 len
= strlen (string
);
3054 len
= 200; /* Bigger than most GDB packets, junk??? */
3055 pkt
= pack_hex_byte (pkt
, len
);
3059 if ((ch
== '\0') || (ch
== '#'))
3060 ch
= '*'; /* Protect encapsulation. */
3065 #endif /* 0 (unused) */
3068 unpack_string (char *src
, char *dest
, int length
)
3077 pack_threadid (char *pkt
, threadref
*id
)
3080 unsigned char *altid
;
3082 altid
= (unsigned char *) id
;
3083 limit
= pkt
+ BUF_THREAD_ID_SIZE
;
3085 pkt
= pack_hex_byte (pkt
, *altid
++);
3091 unpack_threadid (char *inbuf
, threadref
*id
)
3094 char *limit
= inbuf
+ BUF_THREAD_ID_SIZE
;
3097 altref
= (char *) id
;
3099 while (inbuf
< limit
)
3101 x
= stubhex (*inbuf
++);
3102 y
= stubhex (*inbuf
++);
3103 *altref
++ = (x
<< 4) | y
;
3108 /* Externally, threadrefs are 64 bits but internally, they are still
3109 ints. This is due to a mismatch of specifications. We would like
3110 to use 64bit thread references internally. This is an adapter
3114 int_to_threadref (threadref
*id
, int value
)
3116 unsigned char *scan
;
3118 scan
= (unsigned char *) id
;
3124 *scan
++ = (value
>> 24) & 0xff;
3125 *scan
++ = (value
>> 16) & 0xff;
3126 *scan
++ = (value
>> 8) & 0xff;
3127 *scan
++ = (value
& 0xff);
3131 threadref_to_int (threadref
*ref
)
3134 unsigned char *scan
;
3140 value
= (value
<< 8) | ((*scan
++) & 0xff);
3145 copy_threadref (threadref
*dest
, threadref
*src
)
3148 unsigned char *csrc
, *cdest
;
3150 csrc
= (unsigned char *) src
;
3151 cdest
= (unsigned char *) dest
;
3158 threadmatch (threadref
*dest
, threadref
*src
)
3160 /* Things are broken right now, so just assume we got a match. */
3162 unsigned char *srcp
, *destp
;
3164 srcp
= (char *) src
;
3165 destp
= (char *) dest
;
3169 result
&= (*srcp
++ == *destp
++) ? 1 : 0;
3176 threadid:1, # always request threadid
3183 /* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
3186 pack_threadinfo_request (char *pkt
, int mode
, threadref
*id
)
3188 *pkt
++ = 'q'; /* Info Query */
3189 *pkt
++ = 'P'; /* process or thread info */
3190 pkt
= pack_int (pkt
, mode
); /* mode */
3191 pkt
= pack_threadid (pkt
, id
); /* threadid */
3192 *pkt
= '\0'; /* terminate */
3196 /* These values tag the fields in a thread info response packet. */
3197 /* Tagging the fields allows us to request specific fields and to
3198 add more fields as time goes by. */
3200 #define TAG_THREADID 1 /* Echo the thread identifier. */
3201 #define TAG_EXISTS 2 /* Is this process defined enough to
3202 fetch registers and its stack? */
3203 #define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
3204 #define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
3205 #define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
3209 remote_target::remote_unpack_thread_info_response (char *pkt
,
3210 threadref
*expectedref
,
3211 gdb_ext_thread_info
*info
)
3213 struct remote_state
*rs
= get_remote_state ();
3217 char *limit
= pkt
+ rs
->buf_size
; /* Plausible parsing limit. */
3220 /* info->threadid = 0; FIXME: implement zero_threadref. */
3222 info
->display
[0] = '\0';
3223 info
->shortname
[0] = '\0';
3224 info
->more_display
[0] = '\0';
3226 /* Assume the characters indicating the packet type have been
3228 pkt
= unpack_int (pkt
, &mask
); /* arg mask */
3229 pkt
= unpack_threadid (pkt
, &ref
);
3232 warning (_("Incomplete response to threadinfo request."));
3233 if (!threadmatch (&ref
, expectedref
))
3234 { /* This is an answer to a different request. */
3235 warning (_("ERROR RMT Thread info mismatch."));
3238 copy_threadref (&info
->threadid
, &ref
);
3240 /* Loop on tagged fields , try to bail if somthing goes wrong. */
3242 /* Packets are terminated with nulls. */
3243 while ((pkt
< limit
) && mask
&& *pkt
)
3245 pkt
= unpack_int (pkt
, &tag
); /* tag */
3246 pkt
= unpack_byte (pkt
, &length
); /* length */
3247 if (!(tag
& mask
)) /* Tags out of synch with mask. */
3249 warning (_("ERROR RMT: threadinfo tag mismatch."));
3253 if (tag
== TAG_THREADID
)
3257 warning (_("ERROR RMT: length of threadid is not 16."));
3261 pkt
= unpack_threadid (pkt
, &ref
);
3262 mask
= mask
& ~TAG_THREADID
;
3265 if (tag
== TAG_EXISTS
)
3267 info
->active
= stub_unpack_int (pkt
, length
);
3269 mask
= mask
& ~(TAG_EXISTS
);
3272 warning (_("ERROR RMT: 'exists' length too long."));
3278 if (tag
== TAG_THREADNAME
)
3280 pkt
= unpack_string (pkt
, &info
->shortname
[0], length
);
3281 mask
= mask
& ~TAG_THREADNAME
;
3284 if (tag
== TAG_DISPLAY
)
3286 pkt
= unpack_string (pkt
, &info
->display
[0], length
);
3287 mask
= mask
& ~TAG_DISPLAY
;
3290 if (tag
== TAG_MOREDISPLAY
)
3292 pkt
= unpack_string (pkt
, &info
->more_display
[0], length
);
3293 mask
= mask
& ~TAG_MOREDISPLAY
;
3296 warning (_("ERROR RMT: unknown thread info tag."));
3297 break; /* Not a tag we know about. */
3303 remote_target::remote_get_threadinfo (threadref
*threadid
,
3305 gdb_ext_thread_info
*info
)
3307 struct remote_state
*rs
= get_remote_state ();
3310 pack_threadinfo_request (rs
->buf
, fieldset
, threadid
);
3312 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
3314 if (rs
->buf
[0] == '\0')
3317 result
= remote_unpack_thread_info_response (rs
->buf
+ 2,
3322 /* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
3325 pack_threadlist_request (char *pkt
, int startflag
, int threadcount
,
3326 threadref
*nextthread
)
3328 *pkt
++ = 'q'; /* info query packet */
3329 *pkt
++ = 'L'; /* Process LIST or threadLIST request */
3330 pkt
= pack_nibble (pkt
, startflag
); /* initflag 1 bytes */
3331 pkt
= pack_hex_byte (pkt
, threadcount
); /* threadcount 2 bytes */
3332 pkt
= pack_threadid (pkt
, nextthread
); /* 64 bit thread identifier */
3337 /* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
3340 remote_target::parse_threadlist_response (char *pkt
, int result_limit
,
3341 threadref
*original_echo
,
3342 threadref
*resultlist
,
3345 struct remote_state
*rs
= get_remote_state ();
3347 int count
, resultcount
, done
;
3350 /* Assume the 'q' and 'M chars have been stripped. */
3351 limit
= pkt
+ (rs
->buf_size
- BUF_THREAD_ID_SIZE
);
3352 /* done parse past here */
3353 pkt
= unpack_byte (pkt
, &count
); /* count field */
3354 pkt
= unpack_nibble (pkt
, &done
);
3355 /* The first threadid is the argument threadid. */
3356 pkt
= unpack_threadid (pkt
, original_echo
); /* should match query packet */
3357 while ((count
-- > 0) && (pkt
< limit
))
3359 pkt
= unpack_threadid (pkt
, resultlist
++);
3360 if (resultcount
++ >= result_limit
)
3368 /* Fetch the next batch of threads from the remote. Returns -1 if the
3369 qL packet is not supported, 0 on error and 1 on success. */
3372 remote_target::remote_get_threadlist (int startflag
, threadref
*nextthread
,
3373 int result_limit
, int *done
, int *result_count
,
3374 threadref
*threadlist
)
3376 struct remote_state
*rs
= get_remote_state ();
3379 /* Trancate result limit to be smaller than the packet size. */
3380 if ((((result_limit
+ 1) * BUF_THREAD_ID_SIZE
) + 10)
3381 >= get_remote_packet_size ())
3382 result_limit
= (get_remote_packet_size () / BUF_THREAD_ID_SIZE
) - 2;
3384 pack_threadlist_request (rs
->buf
, startflag
, result_limit
, nextthread
);
3386 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
3387 if (*rs
->buf
== '\0')
3389 /* Packet not supported. */
3394 parse_threadlist_response (rs
->buf
+ 2, result_limit
,
3395 &rs
->echo_nextthread
, threadlist
, done
);
3397 if (!threadmatch (&rs
->echo_nextthread
, nextthread
))
3399 /* FIXME: This is a good reason to drop the packet. */
3400 /* Possably, there is a duplicate response. */
3402 retransmit immediatly - race conditions
3403 retransmit after timeout - yes
3405 wait for packet, then exit
3407 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
3408 return 0; /* I choose simply exiting. */
3410 if (*result_count
<= 0)
3414 warning (_("RMT ERROR : failed to get remote thread list."));
3417 return result
; /* break; */
3419 if (*result_count
> result_limit
)
3422 warning (_("RMT ERROR: threadlist response longer than requested."));
3428 /* Fetch the list of remote threads, with the qL packet, and call
3429 STEPFUNCTION for each thread found. Stops iterating and returns 1
3430 if STEPFUNCTION returns true. Stops iterating and returns 0 if the
3431 STEPFUNCTION returns false. If the packet is not supported,
3435 remote_target::remote_threadlist_iterator (rmt_thread_action stepfunction
,
3436 void *context
, int looplimit
)
3438 struct remote_state
*rs
= get_remote_state ();
3439 int done
, i
, result_count
;
3447 if (loopcount
++ > looplimit
)
3450 warning (_("Remote fetch threadlist -infinite loop-."));
3453 result
= remote_get_threadlist (startflag
, &rs
->nextthread
,
3454 MAXTHREADLISTRESULTS
,
3455 &done
, &result_count
,
3456 rs
->resultthreadlist
);
3459 /* Clear for later iterations. */
3461 /* Setup to resume next batch of thread references, set nextthread. */
3462 if (result_count
>= 1)
3463 copy_threadref (&rs
->nextthread
,
3464 &rs
->resultthreadlist
[result_count
- 1]);
3466 while (result_count
--)
3468 if (!(*stepfunction
) (&rs
->resultthreadlist
[i
++], context
))
3478 /* A thread found on the remote target. */
3482 explicit thread_item (ptid_t ptid_
)
3486 thread_item (thread_item
&&other
) = default;
3487 thread_item
&operator= (thread_item
&&other
) = default;
3489 DISABLE_COPY_AND_ASSIGN (thread_item
);
3491 /* The thread's PTID. */
3494 /* The thread's extra info. */
3497 /* The thread's name. */
3500 /* The core the thread was running on. -1 if not known. */
3503 /* The thread handle associated with the thread. */
3504 gdb::byte_vector thread_handle
;
3507 /* Context passed around to the various methods listing remote
3508 threads. As new threads are found, they're added to the ITEMS
3511 struct threads_listing_context
3513 /* Return true if this object contains an entry for a thread with ptid
3516 bool contains_thread (ptid_t ptid
) const
3518 auto match_ptid
= [&] (const thread_item
&item
)
3520 return item
.ptid
== ptid
;
3523 auto it
= std::find_if (this->items
.begin (),
3527 return it
!= this->items
.end ();
3530 /* Remove the thread with ptid PTID. */
3532 void remove_thread (ptid_t ptid
)
3534 auto match_ptid
= [&] (const thread_item
&item
)
3536 return item
.ptid
== ptid
;
3539 auto it
= std::remove_if (this->items
.begin (),
3543 if (it
!= this->items
.end ())
3544 this->items
.erase (it
);
3547 /* The threads found on the remote target. */
3548 std::vector
<thread_item
> items
;
3552 remote_newthread_step (threadref
*ref
, void *data
)
3554 struct threads_listing_context
*context
3555 = (struct threads_listing_context
*) data
;
3556 int pid
= inferior_ptid
.pid ();
3557 int lwp
= threadref_to_int (ref
);
3558 ptid_t
ptid (pid
, lwp
);
3560 context
->items
.emplace_back (ptid
);
3562 return 1; /* continue iterator */
3565 #define CRAZY_MAX_THREADS 1000
3568 remote_target::remote_current_thread (ptid_t oldpid
)
3570 struct remote_state
*rs
= get_remote_state ();
3573 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
3574 if (rs
->buf
[0] == 'Q' && rs
->buf
[1] == 'C')
3579 result
= read_ptid (&rs
->buf
[2], &obuf
);
3580 if (*obuf
!= '\0' && remote_debug
)
3581 fprintf_unfiltered (gdb_stdlog
,
3582 "warning: garbage in qC reply\n");
3590 /* List remote threads using the deprecated qL packet. */
3593 remote_target::remote_get_threads_with_ql (threads_listing_context
*context
)
3595 if (remote_threadlist_iterator (remote_newthread_step
, context
,
3596 CRAZY_MAX_THREADS
) >= 0)
3602 #if defined(HAVE_LIBEXPAT)
3605 start_thread (struct gdb_xml_parser
*parser
,
3606 const struct gdb_xml_element
*element
,
3608 std::vector
<gdb_xml_value
> &attributes
)
3610 struct threads_listing_context
*data
3611 = (struct threads_listing_context
*) user_data
;
3612 struct gdb_xml_value
*attr
;
3614 char *id
= (char *) xml_find_attribute (attributes
, "id")->value
.get ();
3615 ptid_t ptid
= read_ptid (id
, NULL
);
3617 data
->items
.emplace_back (ptid
);
3618 thread_item
&item
= data
->items
.back ();
3620 attr
= xml_find_attribute (attributes
, "core");
3622 item
.core
= *(ULONGEST
*) attr
->value
.get ();
3624 attr
= xml_find_attribute (attributes
, "name");
3626 item
.name
= (const char *) attr
->value
.get ();
3628 attr
= xml_find_attribute (attributes
, "handle");
3630 item
.thread_handle
= hex2bin ((const char *) attr
->value
.get ());
3634 end_thread (struct gdb_xml_parser
*parser
,
3635 const struct gdb_xml_element
*element
,
3636 void *user_data
, const char *body_text
)
3638 struct threads_listing_context
*data
3639 = (struct threads_listing_context
*) user_data
;
3641 if (body_text
!= NULL
&& *body_text
!= '\0')
3642 data
->items
.back ().extra
= body_text
;
3645 const struct gdb_xml_attribute thread_attributes
[] = {
3646 { "id", GDB_XML_AF_NONE
, NULL
, NULL
},
3647 { "core", GDB_XML_AF_OPTIONAL
, gdb_xml_parse_attr_ulongest
, NULL
},
3648 { "name", GDB_XML_AF_OPTIONAL
, NULL
, NULL
},
3649 { "handle", GDB_XML_AF_OPTIONAL
, NULL
, NULL
},
3650 { NULL
, GDB_XML_AF_NONE
, NULL
, NULL
}
3653 const struct gdb_xml_element thread_children
[] = {
3654 { NULL
, NULL
, NULL
, GDB_XML_EF_NONE
, NULL
, NULL
}
3657 const struct gdb_xml_element threads_children
[] = {
3658 { "thread", thread_attributes
, thread_children
,
3659 GDB_XML_EF_REPEATABLE
| GDB_XML_EF_OPTIONAL
,
3660 start_thread
, end_thread
},
3661 { NULL
, NULL
, NULL
, GDB_XML_EF_NONE
, NULL
, NULL
}
3664 const struct gdb_xml_element threads_elements
[] = {
3665 { "threads", NULL
, threads_children
,
3666 GDB_XML_EF_NONE
, NULL
, NULL
},
3667 { NULL
, NULL
, NULL
, GDB_XML_EF_NONE
, NULL
, NULL
}
3672 /* List remote threads using qXfer:threads:read. */
3675 remote_target::remote_get_threads_with_qxfer (threads_listing_context
*context
)
3677 #if defined(HAVE_LIBEXPAT)
3678 if (packet_support (PACKET_qXfer_threads
) == PACKET_ENABLE
)
3680 gdb::optional
<gdb::char_vector
> xml
3681 = target_read_stralloc (this, TARGET_OBJECT_THREADS
, NULL
);
3683 if (xml
&& (*xml
)[0] != '\0')
3685 gdb_xml_parse_quick (_("threads"), "threads.dtd",
3686 threads_elements
, xml
->data (), context
);
3696 /* List remote threads using qfThreadInfo/qsThreadInfo. */
3699 remote_target::remote_get_threads_with_qthreadinfo (threads_listing_context
*context
)
3701 struct remote_state
*rs
= get_remote_state ();
3703 if (rs
->use_threadinfo_query
)
3707 putpkt ("qfThreadInfo");
3708 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
3710 if (bufp
[0] != '\0') /* q packet recognized */
3712 while (*bufp
++ == 'm') /* reply contains one or more TID */
3716 ptid_t ptid
= read_ptid (bufp
, &bufp
);
3717 context
->items
.emplace_back (ptid
);
3719 while (*bufp
++ == ','); /* comma-separated list */
3720 putpkt ("qsThreadInfo");
3721 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
3728 /* Packet not recognized. */
3729 rs
->use_threadinfo_query
= 0;
3736 /* Implement the to_update_thread_list function for the remote
3740 remote_target::update_thread_list ()
3742 struct threads_listing_context context
;
3745 /* We have a few different mechanisms to fetch the thread list. Try
3746 them all, starting with the most preferred one first, falling
3747 back to older methods. */
3748 if (remote_get_threads_with_qxfer (&context
)
3749 || remote_get_threads_with_qthreadinfo (&context
)
3750 || remote_get_threads_with_ql (&context
))
3752 struct thread_info
*tp
, *tmp
;
3756 if (context
.items
.empty ()
3757 && remote_thread_always_alive (inferior_ptid
))
3759 /* Some targets don't really support threads, but still
3760 reply an (empty) thread list in response to the thread
3761 listing packets, instead of replying "packet not
3762 supported". Exit early so we don't delete the main
3767 /* CONTEXT now holds the current thread list on the remote
3768 target end. Delete GDB-side threads no longer found on the
3770 ALL_THREADS_SAFE (tp
, tmp
)
3772 if (!context
.contains_thread (tp
->ptid
))
3775 delete_thread (tp
->ptid
);
3779 /* Remove any unreported fork child threads from CONTEXT so
3780 that we don't interfere with follow fork, which is where
3781 creation of such threads is handled. */
3782 remove_new_fork_children (&context
);
3784 /* And now add threads we don't know about yet to our list. */
3785 for (thread_item
&item
: context
.items
)
3787 if (item
.ptid
!= null_ptid
)
3789 /* In non-stop mode, we assume new found threads are
3790 executing until proven otherwise with a stop reply.
3791 In all-stop, we can only get here if all threads are
3793 int executing
= target_is_non_stop_p () ? 1 : 0;
3795 remote_notice_new_inferior (item
.ptid
, executing
);
3797 remote_thread_info
*info
= get_remote_thread_info (item
.ptid
);
3798 info
->core
= item
.core
;
3799 info
->extra
= std::move (item
.extra
);
3800 info
->name
= std::move (item
.name
);
3801 info
->thread_handle
= std::move (item
.thread_handle
);
3808 /* If no thread listing method is supported, then query whether
3809 each known thread is alive, one by one, with the T packet.
3810 If the target doesn't support threads at all, then this is a
3811 no-op. See remote_thread_alive. */
3817 * Collect a descriptive string about the given thread.
3818 * The target may say anything it wants to about the thread
3819 * (typically info about its blocked / runnable state, name, etc.).
3820 * This string will appear in the info threads display.
3822 * Optional: targets are not required to implement this function.
3826 remote_target::extra_thread_info (thread_info
*tp
)
3828 struct remote_state
*rs
= get_remote_state ();
3832 struct gdb_ext_thread_info threadinfo
;
3833 static char display_buf
[100]; /* arbitrary... */
3834 int n
= 0; /* position in display_buf */
3836 if (rs
->remote_desc
== 0) /* paranoia */
3837 internal_error (__FILE__
, __LINE__
,
3838 _("remote_threads_extra_info"));
3840 if (ptid_equal (tp
->ptid
, magic_null_ptid
)
3841 || (ptid_get_pid (tp
->ptid
) != 0 && ptid_get_lwp (tp
->ptid
) == 0))
3842 /* This is the main thread which was added by GDB. The remote
3843 server doesn't know about it. */
3846 if (packet_support (PACKET_qXfer_threads
) == PACKET_ENABLE
)
3848 struct thread_info
*info
= find_thread_ptid (tp
->ptid
);
3850 if (info
!= NULL
&& info
->priv
!= NULL
)
3852 const std::string
&extra
= get_remote_thread_info (info
)->extra
;
3853 return !extra
.empty () ? extra
.c_str () : NULL
;
3859 if (rs
->use_threadextra_query
)
3862 char *endb
= rs
->buf
+ get_remote_packet_size ();
3864 xsnprintf (b
, endb
- b
, "qThreadExtraInfo,");
3866 write_ptid (b
, endb
, tp
->ptid
);
3869 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
3870 if (rs
->buf
[0] != 0)
3872 n
= std::min (strlen (rs
->buf
) / 2, sizeof (display_buf
));
3873 result
= hex2bin (rs
->buf
, (gdb_byte
*) display_buf
, n
);
3874 display_buf
[result
] = '\0';
3879 /* If the above query fails, fall back to the old method. */
3880 rs
->use_threadextra_query
= 0;
3881 set
= TAG_THREADID
| TAG_EXISTS
| TAG_THREADNAME
3882 | TAG_MOREDISPLAY
| TAG_DISPLAY
;
3883 int_to_threadref (&id
, ptid_get_lwp (tp
->ptid
));
3884 if (remote_get_threadinfo (&id
, set
, &threadinfo
))
3885 if (threadinfo
.active
)
3887 if (*threadinfo
.shortname
)
3888 n
+= xsnprintf (&display_buf
[0], sizeof (display_buf
) - n
,
3889 " Name: %s,", threadinfo
.shortname
);
3890 if (*threadinfo
.display
)
3891 n
+= xsnprintf (&display_buf
[n
], sizeof (display_buf
) - n
,
3892 " State: %s,", threadinfo
.display
);
3893 if (*threadinfo
.more_display
)
3894 n
+= xsnprintf (&display_buf
[n
], sizeof (display_buf
) - n
,
3895 " Priority: %s", threadinfo
.more_display
);
3899 /* For purely cosmetic reasons, clear up trailing commas. */
3900 if (',' == display_buf
[n
-1])
3901 display_buf
[n
-1] = ' ';
3910 remote_target::static_tracepoint_marker_at (CORE_ADDR addr
,
3911 struct static_tracepoint_marker
*marker
)
3913 struct remote_state
*rs
= get_remote_state ();
3916 xsnprintf (p
, get_remote_packet_size (), "qTSTMat:");
3918 p
+= hexnumstr (p
, addr
);
3920 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
3924 error (_("Remote failure reply: %s"), p
);
3928 parse_static_tracepoint_marker_definition (p
, NULL
, marker
);
3935 std::vector
<static_tracepoint_marker
>
3936 remote_target::static_tracepoint_markers_by_strid (const char *strid
)
3938 struct remote_state
*rs
= get_remote_state ();
3939 std::vector
<static_tracepoint_marker
> markers
;
3941 static_tracepoint_marker marker
;
3943 /* Ask for a first packet of static tracepoint marker
3946 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
3949 error (_("Remote failure reply: %s"), p
);
3955 parse_static_tracepoint_marker_definition (p
, &p
, &marker
);
3957 if (strid
== NULL
|| marker
.str_id
== strid
)
3958 markers
.push_back (std::move (marker
));
3960 while (*p
++ == ','); /* comma-separated list */
3961 /* Ask for another packet of static tracepoint definition. */
3963 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
3971 /* Implement the to_get_ada_task_ptid function for the remote targets. */
3974 remote_target::get_ada_task_ptid (long lwp
, long thread
)
3976 return ptid_build (ptid_get_pid (inferior_ptid
), lwp
, 0);
3980 /* Restart the remote side; this is an extended protocol operation. */
3983 remote_target::extended_remote_restart ()
3985 struct remote_state
*rs
= get_remote_state ();
3987 /* Send the restart command; for reasons I don't understand the
3988 remote side really expects a number after the "R". */
3989 xsnprintf (rs
->buf
, get_remote_packet_size (), "R%x", 0);
3992 remote_fileio_reset ();
3995 /* Clean up connection to a remote debugger. */
3998 remote_target::close ()
4000 /* Make sure we leave stdin registered in the event loop. */
4003 /* We don't have a connection to the remote stub anymore. Get rid
4004 of all the inferiors and their threads we were controlling.
4005 Reset inferior_ptid to null_ptid first, as otherwise has_stack_frame
4006 will be unable to find the thread corresponding to (pid, 0, 0). */
4007 inferior_ptid
= null_ptid
;
4008 discard_all_inferiors ();
4010 trace_reset_local_state ();
4015 remote_target::~remote_target ()
4017 struct remote_state
*rs
= get_remote_state ();
4019 /* Check for NULL because we may get here with a partially
4020 constructed target/connection. */
4021 if (rs
->remote_desc
== nullptr)
4024 serial_close (rs
->remote_desc
);
4026 /* We are destroying the remote target, so we should discard
4027 everything of this target. */
4028 discard_pending_stop_replies_in_queue ();
4030 if (rs
->remote_async_inferior_event_token
)
4031 delete_async_event_handler (&rs
->remote_async_inferior_event_token
);
4033 remote_notif_state_xfree (rs
->notif_state
);
4036 /* Query the remote side for the text, data and bss offsets. */
4039 remote_target::get_offsets ()
4041 struct remote_state
*rs
= get_remote_state ();
4044 int lose
, num_segments
= 0, do_sections
, do_segments
;
4045 CORE_ADDR text_addr
, data_addr
, bss_addr
, segments
[2];
4046 struct section_offsets
*offs
;
4047 struct symfile_segment_data
*data
;
4049 if (symfile_objfile
== NULL
)
4052 putpkt ("qOffsets");
4053 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
4056 if (buf
[0] == '\000')
4057 return; /* Return silently. Stub doesn't support
4061 warning (_("Remote failure reply: %s"), buf
);
4065 /* Pick up each field in turn. This used to be done with scanf, but
4066 scanf will make trouble if CORE_ADDR size doesn't match
4067 conversion directives correctly. The following code will work
4068 with any size of CORE_ADDR. */
4069 text_addr
= data_addr
= bss_addr
= 0;
4073 if (startswith (ptr
, "Text="))
4076 /* Don't use strtol, could lose on big values. */
4077 while (*ptr
&& *ptr
!= ';')
4078 text_addr
= (text_addr
<< 4) + fromhex (*ptr
++);
4080 if (startswith (ptr
, ";Data="))
4083 while (*ptr
&& *ptr
!= ';')
4084 data_addr
= (data_addr
<< 4) + fromhex (*ptr
++);
4089 if (!lose
&& startswith (ptr
, ";Bss="))
4092 while (*ptr
&& *ptr
!= ';')
4093 bss_addr
= (bss_addr
<< 4) + fromhex (*ptr
++);
4095 if (bss_addr
!= data_addr
)
4096 warning (_("Target reported unsupported offsets: %s"), buf
);
4101 else if (startswith (ptr
, "TextSeg="))
4104 /* Don't use strtol, could lose on big values. */
4105 while (*ptr
&& *ptr
!= ';')
4106 text_addr
= (text_addr
<< 4) + fromhex (*ptr
++);
4109 if (startswith (ptr
, ";DataSeg="))
4112 while (*ptr
&& *ptr
!= ';')
4113 data_addr
= (data_addr
<< 4) + fromhex (*ptr
++);
4121 error (_("Malformed response to offset query, %s"), buf
);
4122 else if (*ptr
!= '\0')
4123 warning (_("Target reported unsupported offsets: %s"), buf
);
4125 offs
= ((struct section_offsets
*)
4126 alloca (SIZEOF_N_SECTION_OFFSETS (symfile_objfile
->num_sections
)));
4127 memcpy (offs
, symfile_objfile
->section_offsets
,
4128 SIZEOF_N_SECTION_OFFSETS (symfile_objfile
->num_sections
));
4130 data
= get_symfile_segment_data (symfile_objfile
->obfd
);
4131 do_segments
= (data
!= NULL
);
4132 do_sections
= num_segments
== 0;
4134 if (num_segments
> 0)
4136 segments
[0] = text_addr
;
4137 segments
[1] = data_addr
;
4139 /* If we have two segments, we can still try to relocate everything
4140 by assuming that the .text and .data offsets apply to the whole
4141 text and data segments. Convert the offsets given in the packet
4142 to base addresses for symfile_map_offsets_to_segments. */
4143 else if (data
&& data
->num_segments
== 2)
4145 segments
[0] = data
->segment_bases
[0] + text_addr
;
4146 segments
[1] = data
->segment_bases
[1] + data_addr
;
4149 /* If the object file has only one segment, assume that it is text
4150 rather than data; main programs with no writable data are rare,
4151 but programs with no code are useless. Of course the code might
4152 have ended up in the data segment... to detect that we would need
4153 the permissions here. */
4154 else if (data
&& data
->num_segments
== 1)
4156 segments
[0] = data
->segment_bases
[0] + text_addr
;
4159 /* There's no way to relocate by segment. */
4165 int ret
= symfile_map_offsets_to_segments (symfile_objfile
->obfd
, data
,
4166 offs
, num_segments
, segments
);
4168 if (ret
== 0 && !do_sections
)
4169 error (_("Can not handle qOffsets TextSeg "
4170 "response with this symbol file"));
4177 free_symfile_segment_data (data
);
4181 offs
->offsets
[SECT_OFF_TEXT (symfile_objfile
)] = text_addr
;
4183 /* This is a temporary kludge to force data and bss to use the
4184 same offsets because that's what nlmconv does now. The real
4185 solution requires changes to the stub and remote.c that I
4186 don't have time to do right now. */
4188 offs
->offsets
[SECT_OFF_DATA (symfile_objfile
)] = data_addr
;
4189 offs
->offsets
[SECT_OFF_BSS (symfile_objfile
)] = data_addr
;
4192 objfile_relocate (symfile_objfile
, offs
);
4195 /* Send interrupt_sequence to remote target. */
4198 remote_target::send_interrupt_sequence ()
4200 struct remote_state
*rs
= get_remote_state ();
4202 if (interrupt_sequence_mode
== interrupt_sequence_control_c
)
4203 remote_serial_write ("\x03", 1);
4204 else if (interrupt_sequence_mode
== interrupt_sequence_break
)
4205 serial_send_break (rs
->remote_desc
);
4206 else if (interrupt_sequence_mode
== interrupt_sequence_break_g
)
4208 serial_send_break (rs
->remote_desc
);
4209 remote_serial_write ("g", 1);
4212 internal_error (__FILE__
, __LINE__
,
4213 _("Invalid value for interrupt_sequence_mode: %s."),
4214 interrupt_sequence_mode
);
4218 /* If STOP_REPLY is a T stop reply, look for the "thread" register,
4219 and extract the PTID. Returns NULL_PTID if not found. */
4222 stop_reply_extract_thread (char *stop_reply
)
4224 if (stop_reply
[0] == 'T' && strlen (stop_reply
) > 3)
4228 /* Txx r:val ; r:val (...) */
4231 /* Look for "register" named "thread". */
4236 p1
= strchr (p
, ':');
4240 if (strncmp (p
, "thread", p1
- p
) == 0)
4241 return read_ptid (++p1
, &p
);
4243 p1
= strchr (p
, ';');
4255 /* Determine the remote side's current thread. If we have a stop
4256 reply handy (in WAIT_STATUS), maybe it's a T stop reply with a
4257 "thread" register we can extract the current thread from. If not,
4258 ask the remote which is the current thread with qC. The former
4259 method avoids a roundtrip. */
4262 remote_target::get_current_thread (char *wait_status
)
4264 ptid_t ptid
= null_ptid
;
4266 /* Note we don't use remote_parse_stop_reply as that makes use of
4267 the target architecture, which we haven't yet fully determined at
4269 if (wait_status
!= NULL
)
4270 ptid
= stop_reply_extract_thread (wait_status
);
4271 if (ptid_equal (ptid
, null_ptid
))
4272 ptid
= remote_current_thread (inferior_ptid
);
4277 /* Query the remote target for which is the current thread/process,
4278 add it to our tables, and update INFERIOR_PTID. The caller is
4279 responsible for setting the state such that the remote end is ready
4280 to return the current thread.
4282 This function is called after handling the '?' or 'vRun' packets,
4283 whose response is a stop reply from which we can also try
4284 extracting the thread. If the target doesn't support the explicit
4285 qC query, we infer the current thread from that stop reply, passed
4286 in in WAIT_STATUS, which may be NULL. */
4289 remote_target::add_current_inferior_and_thread (char *wait_status
)
4291 struct remote_state
*rs
= get_remote_state ();
4294 inferior_ptid
= null_ptid
;
4296 /* Now, if we have thread information, update inferior_ptid. */
4297 ptid_t curr_ptid
= get_current_thread (wait_status
);
4299 if (curr_ptid
!= null_ptid
)
4301 if (!remote_multi_process_p (rs
))
4306 /* Without this, some commands which require an active target
4307 (such as kill) won't work. This variable serves (at least)
4308 double duty as both the pid of the target process (if it has
4309 such), and as a flag indicating that a target is active. */
4310 curr_ptid
= magic_null_ptid
;
4314 remote_add_inferior (fake_pid_p
, ptid_get_pid (curr_ptid
), -1, 1);
4316 /* Add the main thread and switch to it. Don't try reading
4317 registers yet, since we haven't fetched the target description
4319 thread_info
*tp
= add_thread_silent (curr_ptid
);
4320 switch_to_thread_no_regs (tp
);
4323 /* Print info about a thread that was found already stopped on
4327 print_one_stopped_thread (struct thread_info
*thread
)
4329 struct target_waitstatus
*ws
= &thread
->suspend
.waitstatus
;
4331 switch_to_thread (thread
->ptid
);
4332 stop_pc
= get_frame_pc (get_current_frame ());
4333 set_current_sal_from_frame (get_current_frame ());
4335 thread
->suspend
.waitstatus_pending_p
= 0;
4337 if (ws
->kind
== TARGET_WAITKIND_STOPPED
)
4339 enum gdb_signal sig
= ws
->value
.sig
;
4341 if (signal_print_state (sig
))
4342 gdb::observers::signal_received
.notify (sig
);
4344 gdb::observers::normal_stop
.notify (NULL
, 1);
4347 /* Process all initial stop replies the remote side sent in response
4348 to the ? packet. These indicate threads that were already stopped
4349 on initial connection. We mark these threads as stopped and print
4350 their current frame before giving the user the prompt. */
4353 remote_target::process_initial_stop_replies (int from_tty
)
4355 int pending_stop_replies
= stop_reply_queue_length ();
4356 struct inferior
*inf
;
4357 struct thread_info
*thread
;
4358 struct thread_info
*selected
= NULL
;
4359 struct thread_info
*lowest_stopped
= NULL
;
4360 struct thread_info
*first
= NULL
;
4362 /* Consume the initial pending events. */
4363 while (pending_stop_replies
-- > 0)
4365 ptid_t waiton_ptid
= minus_one_ptid
;
4367 struct target_waitstatus ws
;
4368 int ignore_event
= 0;
4369 struct thread_info
*thread
;
4371 memset (&ws
, 0, sizeof (ws
));
4372 event_ptid
= target_wait (waiton_ptid
, &ws
, TARGET_WNOHANG
);
4374 print_target_wait_results (waiton_ptid
, event_ptid
, &ws
);
4378 case TARGET_WAITKIND_IGNORE
:
4379 case TARGET_WAITKIND_NO_RESUMED
:
4380 case TARGET_WAITKIND_SIGNALLED
:
4381 case TARGET_WAITKIND_EXITED
:
4382 /* We shouldn't see these, but if we do, just ignore. */
4384 fprintf_unfiltered (gdb_stdlog
, "remote: event ignored\n");
4388 case TARGET_WAITKIND_EXECD
:
4389 xfree (ws
.value
.execd_pathname
);
4398 thread
= find_thread_ptid (event_ptid
);
4400 if (ws
.kind
== TARGET_WAITKIND_STOPPED
)
4402 enum gdb_signal sig
= ws
.value
.sig
;
4404 /* Stubs traditionally report SIGTRAP as initial signal,
4405 instead of signal 0. Suppress it. */
4406 if (sig
== GDB_SIGNAL_TRAP
)
4408 thread
->suspend
.stop_signal
= sig
;
4412 thread
->suspend
.waitstatus
= ws
;
4414 if (ws
.kind
!= TARGET_WAITKIND_STOPPED
4415 || ws
.value
.sig
!= GDB_SIGNAL_0
)
4416 thread
->suspend
.waitstatus_pending_p
= 1;
4418 set_executing (event_ptid
, 0);
4419 set_running (event_ptid
, 0);
4420 get_remote_thread_info (thread
)->vcont_resumed
= 0;
4423 /* "Notice" the new inferiors before anything related to
4424 registers/memory. */
4430 inf
->needs_setup
= 1;
4434 thread
= any_live_thread_of_process (inf
->pid
);
4435 notice_new_inferior (thread
->ptid
,
4436 thread
->state
== THREAD_RUNNING
,
4441 /* If all-stop on top of non-stop, pause all threads. Note this
4442 records the threads' stop pc, so must be done after "noticing"
4446 stop_all_threads ();
4448 /* If all threads of an inferior were already stopped, we
4449 haven't setup the inferior yet. */
4455 if (inf
->needs_setup
)
4457 thread
= any_live_thread_of_process (inf
->pid
);
4458 switch_to_thread_no_regs (thread
);
4464 /* Now go over all threads that are stopped, and print their current
4465 frame. If all-stop, then if there's a signalled thread, pick
4467 ALL_NON_EXITED_THREADS (thread
)
4473 set_running (thread
->ptid
, 0);
4474 else if (thread
->state
!= THREAD_STOPPED
)
4477 if (selected
== NULL
4478 && thread
->suspend
.waitstatus_pending_p
)
4481 if (lowest_stopped
== NULL
4482 || thread
->inf
->num
< lowest_stopped
->inf
->num
4483 || thread
->per_inf_num
< lowest_stopped
->per_inf_num
)
4484 lowest_stopped
= thread
;
4487 print_one_stopped_thread (thread
);
4490 /* In all-stop, we only print the status of one thread, and leave
4491 others with their status pending. */
4496 thread
= lowest_stopped
;
4500 print_one_stopped_thread (thread
);
4503 /* For "info program". */
4504 thread
= inferior_thread ();
4505 if (thread
->state
== THREAD_STOPPED
)
4506 set_last_target_status (inferior_ptid
, thread
->suspend
.waitstatus
);
4509 /* Start the remote connection and sync state. */
4512 remote_target::start_remote (int from_tty
, int extended_p
)
4514 struct remote_state
*rs
= get_remote_state ();
4515 struct packet_config
*noack_config
;
4516 char *wait_status
= NULL
;
4518 /* Signal other parts that we're going through the initial setup,
4519 and so things may not be stable yet. E.g., we don't try to
4520 install tracepoints until we've relocated symbols. Also, a
4521 Ctrl-C before we're connected and synced up can't interrupt the
4522 target. Instead, it offers to drop the (potentially wedged)
4524 rs
->starting_up
= 1;
4528 if (interrupt_on_connect
)
4529 send_interrupt_sequence ();
4531 /* Ack any packet which the remote side has already sent. */
4532 remote_serial_write ("+", 1);
4534 /* The first packet we send to the target is the optional "supported
4535 packets" request. If the target can answer this, it will tell us
4536 which later probes to skip. */
4537 remote_query_supported ();
4539 /* If the stub wants to get a QAllow, compose one and send it. */
4540 if (packet_support (PACKET_QAllow
) != PACKET_DISABLE
)
4543 /* gdbserver < 7.7 (before its fix from 2013-12-11) did reply to any
4544 unknown 'v' packet with string "OK". "OK" gets interpreted by GDB
4545 as a reply to known packet. For packet "vFile:setfs:" it is an
4546 invalid reply and GDB would return error in
4547 remote_hostio_set_filesystem, making remote files access impossible.
4548 Disable "vFile:setfs:" in such case. Do not disable other 'v' packets as
4549 other "vFile" packets get correctly detected even on gdbserver < 7.7. */
4551 const char v_mustreplyempty
[] = "vMustReplyEmpty";
4553 putpkt (v_mustreplyempty
);
4554 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
4555 if (strcmp (rs
->buf
, "OK") == 0)
4556 remote_protocol_packets
[PACKET_vFile_setfs
].support
= PACKET_DISABLE
;
4557 else if (strcmp (rs
->buf
, "") != 0)
4558 error (_("Remote replied unexpectedly to '%s': %s"), v_mustreplyempty
,
4562 /* Next, we possibly activate noack mode.
4564 If the QStartNoAckMode packet configuration is set to AUTO,
4565 enable noack mode if the stub reported a wish for it with
4568 If set to TRUE, then enable noack mode even if the stub didn't
4569 report it in qSupported. If the stub doesn't reply OK, the
4570 session ends with an error.
4572 If FALSE, then don't activate noack mode, regardless of what the
4573 stub claimed should be the default with qSupported. */
4575 noack_config
= &remote_protocol_packets
[PACKET_QStartNoAckMode
];
4576 if (packet_config_support (noack_config
) != PACKET_DISABLE
)
4578 putpkt ("QStartNoAckMode");
4579 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
4580 if (packet_ok (rs
->buf
, noack_config
) == PACKET_OK
)
4586 /* Tell the remote that we are using the extended protocol. */
4588 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
4591 /* Let the target know which signals it is allowed to pass down to
4593 update_signals_program_target ();
4595 /* Next, if the target can specify a description, read it. We do
4596 this before anything involving memory or registers. */
4597 target_find_description ();
4599 /* Next, now that we know something about the target, update the
4600 address spaces in the program spaces. */
4601 update_address_spaces ();
4603 /* On OSs where the list of libraries is global to all
4604 processes, we fetch them early. */
4605 if (gdbarch_has_global_solist (target_gdbarch ()))
4606 solib_add (NULL
, from_tty
, auto_solib_add
);
4608 if (target_is_non_stop_p ())
4610 if (packet_support (PACKET_QNonStop
) != PACKET_ENABLE
)
4611 error (_("Non-stop mode requested, but remote "
4612 "does not support non-stop"));
4614 putpkt ("QNonStop:1");
4615 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
4617 if (strcmp (rs
->buf
, "OK") != 0)
4618 error (_("Remote refused setting non-stop mode with: %s"), rs
->buf
);
4620 /* Find about threads and processes the stub is already
4621 controlling. We default to adding them in the running state.
4622 The '?' query below will then tell us about which threads are
4624 this->update_thread_list ();
4626 else if (packet_support (PACKET_QNonStop
) == PACKET_ENABLE
)
4628 /* Don't assume that the stub can operate in all-stop mode.
4629 Request it explicitly. */
4630 putpkt ("QNonStop:0");
4631 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
4633 if (strcmp (rs
->buf
, "OK") != 0)
4634 error (_("Remote refused setting all-stop mode with: %s"), rs
->buf
);
4637 /* Upload TSVs regardless of whether the target is running or not. The
4638 remote stub, such as GDBserver, may have some predefined or builtin
4639 TSVs, even if the target is not running. */
4640 if (get_trace_status (current_trace_status ()) != -1)
4642 struct uploaded_tsv
*uploaded_tsvs
= NULL
;
4644 upload_trace_state_variables (&uploaded_tsvs
);
4645 merge_uploaded_trace_state_variables (&uploaded_tsvs
);
4648 /* Check whether the target is running now. */
4650 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
4652 if (!target_is_non_stop_p ())
4654 if (rs
->buf
[0] == 'W' || rs
->buf
[0] == 'X')
4657 error (_("The target is not running (try extended-remote?)"));
4659 /* We're connected, but not running. Drop out before we
4660 call start_remote. */
4661 rs
->starting_up
= 0;
4666 /* Save the reply for later. */
4667 wait_status
= (char *) alloca (strlen (rs
->buf
) + 1);
4668 strcpy (wait_status
, rs
->buf
);
4671 /* Fetch thread list. */
4672 target_update_thread_list ();
4674 /* Let the stub know that we want it to return the thread. */
4675 set_continue_thread (minus_one_ptid
);
4677 if (thread_count () == 0)
4679 /* Target has no concept of threads at all. GDB treats
4680 non-threaded target as single-threaded; add a main
4682 add_current_inferior_and_thread (wait_status
);
4686 /* We have thread information; select the thread the target
4687 says should be current. If we're reconnecting to a
4688 multi-threaded program, this will ideally be the thread
4689 that last reported an event before GDB disconnected. */
4690 inferior_ptid
= get_current_thread (wait_status
);
4691 if (ptid_equal (inferior_ptid
, null_ptid
))
4693 /* Odd... The target was able to list threads, but not
4694 tell us which thread was current (no "thread"
4695 register in T stop reply?). Just pick the first
4696 thread in the thread list then. */
4699 fprintf_unfiltered (gdb_stdlog
,
4700 "warning: couldn't determine remote "
4701 "current thread; picking first in list.\n");
4703 inferior_ptid
= thread_list
->ptid
;
4707 /* init_wait_for_inferior should be called before get_offsets in order
4708 to manage `inserted' flag in bp loc in a correct state.
4709 breakpoint_init_inferior, called from init_wait_for_inferior, set
4710 `inserted' flag to 0, while before breakpoint_re_set, called from
4711 start_remote, set `inserted' flag to 1. In the initialization of
4712 inferior, breakpoint_init_inferior should be called first, and then
4713 breakpoint_re_set can be called. If this order is broken, state of
4714 `inserted' flag is wrong, and cause some problems on breakpoint
4716 init_wait_for_inferior ();
4718 get_offsets (); /* Get text, data & bss offsets. */
4720 /* If we could not find a description using qXfer, and we know
4721 how to do it some other way, try again. This is not
4722 supported for non-stop; it could be, but it is tricky if
4723 there are no stopped threads when we connect. */
4724 if (remote_read_description_p (this)
4725 && gdbarch_target_desc (target_gdbarch ()) == NULL
)
4727 target_clear_description ();
4728 target_find_description ();
4731 /* Use the previously fetched status. */
4732 gdb_assert (wait_status
!= NULL
);
4733 strcpy (rs
->buf
, wait_status
);
4734 rs
->cached_wait_status
= 1;
4736 ::start_remote (from_tty
); /* Initialize gdb process mechanisms. */
4740 /* Clear WFI global state. Do this before finding about new
4741 threads and inferiors, and setting the current inferior.
4742 Otherwise we would clear the proceed status of the current
4743 inferior when we want its stop_soon state to be preserved
4744 (see notice_new_inferior). */
4745 init_wait_for_inferior ();
4747 /* In non-stop, we will either get an "OK", meaning that there
4748 are no stopped threads at this time; or, a regular stop
4749 reply. In the latter case, there may be more than one thread
4750 stopped --- we pull them all out using the vStopped
4752 if (strcmp (rs
->buf
, "OK") != 0)
4754 struct notif_client
*notif
= ¬if_client_stop
;
4756 /* remote_notif_get_pending_replies acks this one, and gets
4758 rs
->notif_state
->pending_event
[notif_client_stop
.id
]
4759 = remote_notif_parse (this, notif
, rs
->buf
);
4760 remote_notif_get_pending_events (notif
);
4763 if (thread_count () == 0)
4766 error (_("The target is not running (try extended-remote?)"));
4768 /* We're connected, but not running. Drop out before we
4769 call start_remote. */
4770 rs
->starting_up
= 0;
4774 /* In non-stop mode, any cached wait status will be stored in
4775 the stop reply queue. */
4776 gdb_assert (wait_status
== NULL
);
4778 /* Report all signals during attach/startup. */
4779 pass_signals (0, NULL
);
4781 /* If there are already stopped threads, mark them stopped and
4782 report their stops before giving the prompt to the user. */
4783 process_initial_stop_replies (from_tty
);
4785 if (target_can_async_p ())
4789 /* If we connected to a live target, do some additional setup. */
4790 if (target_has_execution
)
4792 if (symfile_objfile
) /* No use without a symbol-file. */
4793 remote_check_symbols ();
4796 /* Possibly the target has been engaged in a trace run started
4797 previously; find out where things are at. */
4798 if (get_trace_status (current_trace_status ()) != -1)
4800 struct uploaded_tp
*uploaded_tps
= NULL
;
4802 if (current_trace_status ()->running
)
4803 printf_filtered (_("Trace is already running on the target.\n"));
4805 upload_tracepoints (&uploaded_tps
);
4807 merge_uploaded_tracepoints (&uploaded_tps
);
4810 /* Possibly the target has been engaged in a btrace record started
4811 previously; find out where things are at. */
4812 remote_btrace_maybe_reopen ();
4814 /* The thread and inferior lists are now synchronized with the
4815 target, our symbols have been relocated, and we're merged the
4816 target's tracepoints with ours. We're done with basic start
4818 rs
->starting_up
= 0;
4820 /* Maybe breakpoints are global and need to be inserted now. */
4821 if (breakpoints_should_be_inserted_now ())
4822 insert_breakpoints ();
4825 /* Open a connection to a remote debugger.
4826 NAME is the filename used for communication. */
4829 remote_target::open (const char *name
, int from_tty
)
4831 open_1 (name
, from_tty
, 0);
4834 /* Open a connection to a remote debugger using the extended
4835 remote gdb protocol. NAME is the filename used for communication. */
4838 extended_remote_target::open (const char *name
, int from_tty
)
4840 open_1 (name
, from_tty
, 1 /*extended_p */);
4843 /* Reset all packets back to "unknown support". Called when opening a
4844 new connection to a remote target. */
4847 reset_all_packet_configs_support (void)
4851 for (i
= 0; i
< PACKET_MAX
; i
++)
4852 remote_protocol_packets
[i
].support
= PACKET_SUPPORT_UNKNOWN
;
4855 /* Initialize all packet configs. */
4858 init_all_packet_configs (void)
4862 for (i
= 0; i
< PACKET_MAX
; i
++)
4864 remote_protocol_packets
[i
].detect
= AUTO_BOOLEAN_AUTO
;
4865 remote_protocol_packets
[i
].support
= PACKET_SUPPORT_UNKNOWN
;
4869 /* Symbol look-up. */
4872 remote_target::remote_check_symbols ()
4874 char *msg
, *reply
, *tmp
;
4877 struct cleanup
*old_chain
;
4879 /* The remote side has no concept of inferiors that aren't running
4880 yet, it only knows about running processes. If we're connected
4881 but our current inferior is not running, we should not invite the
4882 remote target to request symbol lookups related to its
4883 (unrelated) current process. */
4884 if (!target_has_execution
)
4887 if (packet_support (PACKET_qSymbol
) == PACKET_DISABLE
)
4890 /* Make sure the remote is pointing at the right process. Note
4891 there's no way to select "no process". */
4892 set_general_process ();
4894 /* Allocate a message buffer. We can't reuse the input buffer in RS,
4895 because we need both at the same time. */
4896 msg
= (char *) xmalloc (get_remote_packet_size ());
4897 old_chain
= make_cleanup (xfree
, msg
);
4898 reply
= (char *) xmalloc (get_remote_packet_size ());
4899 make_cleanup (free_current_contents
, &reply
);
4900 reply_size
= get_remote_packet_size ();
4902 /* Invite target to request symbol lookups. */
4904 putpkt ("qSymbol::");
4905 getpkt (&reply
, &reply_size
, 0);
4906 packet_ok (reply
, &remote_protocol_packets
[PACKET_qSymbol
]);
4908 while (startswith (reply
, "qSymbol:"))
4910 struct bound_minimal_symbol sym
;
4913 end
= hex2bin (tmp
, (gdb_byte
*) msg
, strlen (tmp
) / 2);
4915 sym
= lookup_minimal_symbol (msg
, NULL
, NULL
);
4916 if (sym
.minsym
== NULL
)
4917 xsnprintf (msg
, get_remote_packet_size (), "qSymbol::%s", &reply
[8]);
4920 int addr_size
= gdbarch_addr_bit (target_gdbarch ()) / 8;
4921 CORE_ADDR sym_addr
= BMSYMBOL_VALUE_ADDRESS (sym
);
4923 /* If this is a function address, return the start of code
4924 instead of any data function descriptor. */
4925 sym_addr
= gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
4929 xsnprintf (msg
, get_remote_packet_size (), "qSymbol:%s:%s",
4930 phex_nz (sym_addr
, addr_size
), &reply
[8]);
4934 getpkt (&reply
, &reply_size
, 0);
4937 do_cleanups (old_chain
);
4940 static struct serial
*
4941 remote_serial_open (const char *name
)
4943 static int udp_warning
= 0;
4945 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
4946 of in ser-tcp.c, because it is the remote protocol assuming that the
4947 serial connection is reliable and not the serial connection promising
4949 if (!udp_warning
&& startswith (name
, "udp:"))
4951 warning (_("The remote protocol may be unreliable over UDP.\n"
4952 "Some events may be lost, rendering further debugging "
4957 return serial_open (name
);
4960 /* Inform the target of our permission settings. The permission flags
4961 work without this, but if the target knows the settings, it can do
4962 a couple things. First, it can add its own check, to catch cases
4963 that somehow manage to get by the permissions checks in target
4964 methods. Second, if the target is wired to disallow particular
4965 settings (for instance, a system in the field that is not set up to
4966 be able to stop at a breakpoint), it can object to any unavailable
4970 remote_target::set_permissions ()
4972 struct remote_state
*rs
= get_remote_state ();
4974 xsnprintf (rs
->buf
, get_remote_packet_size (), "QAllow:"
4975 "WriteReg:%x;WriteMem:%x;"
4976 "InsertBreak:%x;InsertTrace:%x;"
4977 "InsertFastTrace:%x;Stop:%x",
4978 may_write_registers
, may_write_memory
,
4979 may_insert_breakpoints
, may_insert_tracepoints
,
4980 may_insert_fast_tracepoints
, may_stop
);
4982 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
4984 /* If the target didn't like the packet, warn the user. Do not try
4985 to undo the user's settings, that would just be maddening. */
4986 if (strcmp (rs
->buf
, "OK") != 0)
4987 warning (_("Remote refused setting permissions with: %s"), rs
->buf
);
4990 /* This type describes each known response to the qSupported
4992 struct protocol_feature
4994 /* The name of this protocol feature. */
4997 /* The default for this protocol feature. */
4998 enum packet_support default_support
;
5000 /* The function to call when this feature is reported, or after
5001 qSupported processing if the feature is not supported.
5002 The first argument points to this structure. The second
5003 argument indicates whether the packet requested support be
5004 enabled, disabled, or probed (or the default, if this function
5005 is being called at the end of processing and this feature was
5006 not reported). The third argument may be NULL; if not NULL, it
5007 is a NUL-terminated string taken from the packet following
5008 this feature's name and an equals sign. */
5009 void (*func
) (remote_target
*remote
, const struct protocol_feature
*,
5010 enum packet_support
, const char *);
5012 /* The corresponding packet for this feature. Only used if
5013 FUNC is remote_supported_packet. */
5018 remote_supported_packet (remote_target
*remote
,
5019 const struct protocol_feature
*feature
,
5020 enum packet_support support
,
5021 const char *argument
)
5025 warning (_("Remote qSupported response supplied an unexpected value for"
5026 " \"%s\"."), feature
->name
);
5030 remote_protocol_packets
[feature
->packet
].support
= support
;
5034 remote_target::remote_packet_size (const protocol_feature
*feature
,
5035 enum packet_support support
, const char *value
)
5037 struct remote_state
*rs
= get_remote_state ();
5042 if (support
!= PACKET_ENABLE
)
5045 if (value
== NULL
|| *value
== '\0')
5047 warning (_("Remote target reported \"%s\" without a size."),
5053 packet_size
= strtol (value
, &value_end
, 16);
5054 if (errno
!= 0 || *value_end
!= '\0' || packet_size
< 0)
5056 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
5057 feature
->name
, value
);
5061 /* Record the new maximum packet size. */
5062 rs
->explicit_packet_size
= packet_size
;
5066 remote_packet_size (remote_target
*remote
, const protocol_feature
*feature
,
5067 enum packet_support support
, const char *value
)
5069 remote
->remote_packet_size (feature
, support
, value
);
5072 static const struct protocol_feature remote_protocol_features
[] = {
5073 { "PacketSize", PACKET_DISABLE
, remote_packet_size
, -1 },
5074 { "qXfer:auxv:read", PACKET_DISABLE
, remote_supported_packet
,
5075 PACKET_qXfer_auxv
},
5076 { "qXfer:exec-file:read", PACKET_DISABLE
, remote_supported_packet
,
5077 PACKET_qXfer_exec_file
},
5078 { "qXfer:features:read", PACKET_DISABLE
, remote_supported_packet
,
5079 PACKET_qXfer_features
},
5080 { "qXfer:libraries:read", PACKET_DISABLE
, remote_supported_packet
,
5081 PACKET_qXfer_libraries
},
5082 { "qXfer:libraries-svr4:read", PACKET_DISABLE
, remote_supported_packet
,
5083 PACKET_qXfer_libraries_svr4
},
5084 { "augmented-libraries-svr4-read", PACKET_DISABLE
,
5085 remote_supported_packet
, PACKET_augmented_libraries_svr4_read_feature
},
5086 { "qXfer:memory-map:read", PACKET_DISABLE
, remote_supported_packet
,
5087 PACKET_qXfer_memory_map
},
5088 { "qXfer:spu:read", PACKET_DISABLE
, remote_supported_packet
,
5089 PACKET_qXfer_spu_read
},
5090 { "qXfer:spu:write", PACKET_DISABLE
, remote_supported_packet
,
5091 PACKET_qXfer_spu_write
},
5092 { "qXfer:osdata:read", PACKET_DISABLE
, remote_supported_packet
,
5093 PACKET_qXfer_osdata
},
5094 { "qXfer:threads:read", PACKET_DISABLE
, remote_supported_packet
,
5095 PACKET_qXfer_threads
},
5096 { "qXfer:traceframe-info:read", PACKET_DISABLE
, remote_supported_packet
,
5097 PACKET_qXfer_traceframe_info
},
5098 { "QPassSignals", PACKET_DISABLE
, remote_supported_packet
,
5099 PACKET_QPassSignals
},
5100 { "QCatchSyscalls", PACKET_DISABLE
, remote_supported_packet
,
5101 PACKET_QCatchSyscalls
},
5102 { "QProgramSignals", PACKET_DISABLE
, remote_supported_packet
,
5103 PACKET_QProgramSignals
},
5104 { "QSetWorkingDir", PACKET_DISABLE
, remote_supported_packet
,
5105 PACKET_QSetWorkingDir
},
5106 { "QStartupWithShell", PACKET_DISABLE
, remote_supported_packet
,
5107 PACKET_QStartupWithShell
},
5108 { "QEnvironmentHexEncoded", PACKET_DISABLE
, remote_supported_packet
,
5109 PACKET_QEnvironmentHexEncoded
},
5110 { "QEnvironmentReset", PACKET_DISABLE
, remote_supported_packet
,
5111 PACKET_QEnvironmentReset
},
5112 { "QEnvironmentUnset", PACKET_DISABLE
, remote_supported_packet
,
5113 PACKET_QEnvironmentUnset
},
5114 { "QStartNoAckMode", PACKET_DISABLE
, remote_supported_packet
,
5115 PACKET_QStartNoAckMode
},
5116 { "multiprocess", PACKET_DISABLE
, remote_supported_packet
,
5117 PACKET_multiprocess_feature
},
5118 { "QNonStop", PACKET_DISABLE
, remote_supported_packet
, PACKET_QNonStop
},
5119 { "qXfer:siginfo:read", PACKET_DISABLE
, remote_supported_packet
,
5120 PACKET_qXfer_siginfo_read
},
5121 { "qXfer:siginfo:write", PACKET_DISABLE
, remote_supported_packet
,
5122 PACKET_qXfer_siginfo_write
},
5123 { "ConditionalTracepoints", PACKET_DISABLE
, remote_supported_packet
,
5124 PACKET_ConditionalTracepoints
},
5125 { "ConditionalBreakpoints", PACKET_DISABLE
, remote_supported_packet
,
5126 PACKET_ConditionalBreakpoints
},
5127 { "BreakpointCommands", PACKET_DISABLE
, remote_supported_packet
,
5128 PACKET_BreakpointCommands
},
5129 { "FastTracepoints", PACKET_DISABLE
, remote_supported_packet
,
5130 PACKET_FastTracepoints
},
5131 { "StaticTracepoints", PACKET_DISABLE
, remote_supported_packet
,
5132 PACKET_StaticTracepoints
},
5133 {"InstallInTrace", PACKET_DISABLE
, remote_supported_packet
,
5134 PACKET_InstallInTrace
},
5135 { "DisconnectedTracing", PACKET_DISABLE
, remote_supported_packet
,
5136 PACKET_DisconnectedTracing_feature
},
5137 { "ReverseContinue", PACKET_DISABLE
, remote_supported_packet
,
5139 { "ReverseStep", PACKET_DISABLE
, remote_supported_packet
,
5141 { "TracepointSource", PACKET_DISABLE
, remote_supported_packet
,
5142 PACKET_TracepointSource
},
5143 { "QAllow", PACKET_DISABLE
, remote_supported_packet
,
5145 { "EnableDisableTracepoints", PACKET_DISABLE
, remote_supported_packet
,
5146 PACKET_EnableDisableTracepoints_feature
},
5147 { "qXfer:fdpic:read", PACKET_DISABLE
, remote_supported_packet
,
5148 PACKET_qXfer_fdpic
},
5149 { "qXfer:uib:read", PACKET_DISABLE
, remote_supported_packet
,
5151 { "QDisableRandomization", PACKET_DISABLE
, remote_supported_packet
,
5152 PACKET_QDisableRandomization
},
5153 { "QAgent", PACKET_DISABLE
, remote_supported_packet
, PACKET_QAgent
},
5154 { "QTBuffer:size", PACKET_DISABLE
,
5155 remote_supported_packet
, PACKET_QTBuffer_size
},
5156 { "tracenz", PACKET_DISABLE
, remote_supported_packet
, PACKET_tracenz_feature
},
5157 { "Qbtrace:off", PACKET_DISABLE
, remote_supported_packet
, PACKET_Qbtrace_off
},
5158 { "Qbtrace:bts", PACKET_DISABLE
, remote_supported_packet
, PACKET_Qbtrace_bts
},
5159 { "Qbtrace:pt", PACKET_DISABLE
, remote_supported_packet
, PACKET_Qbtrace_pt
},
5160 { "qXfer:btrace:read", PACKET_DISABLE
, remote_supported_packet
,
5161 PACKET_qXfer_btrace
},
5162 { "qXfer:btrace-conf:read", PACKET_DISABLE
, remote_supported_packet
,
5163 PACKET_qXfer_btrace_conf
},
5164 { "Qbtrace-conf:bts:size", PACKET_DISABLE
, remote_supported_packet
,
5165 PACKET_Qbtrace_conf_bts_size
},
5166 { "swbreak", PACKET_DISABLE
, remote_supported_packet
, PACKET_swbreak_feature
},
5167 { "hwbreak", PACKET_DISABLE
, remote_supported_packet
, PACKET_hwbreak_feature
},
5168 { "fork-events", PACKET_DISABLE
, remote_supported_packet
,
5169 PACKET_fork_event_feature
},
5170 { "vfork-events", PACKET_DISABLE
, remote_supported_packet
,
5171 PACKET_vfork_event_feature
},
5172 { "exec-events", PACKET_DISABLE
, remote_supported_packet
,
5173 PACKET_exec_event_feature
},
5174 { "Qbtrace-conf:pt:size", PACKET_DISABLE
, remote_supported_packet
,
5175 PACKET_Qbtrace_conf_pt_size
},
5176 { "vContSupported", PACKET_DISABLE
, remote_supported_packet
, PACKET_vContSupported
},
5177 { "QThreadEvents", PACKET_DISABLE
, remote_supported_packet
, PACKET_QThreadEvents
},
5178 { "no-resumed", PACKET_DISABLE
, remote_supported_packet
, PACKET_no_resumed
},
5181 static char *remote_support_xml
;
5183 /* Register string appended to "xmlRegisters=" in qSupported query. */
5186 register_remote_support_xml (const char *xml
)
5188 #if defined(HAVE_LIBEXPAT)
5189 if (remote_support_xml
== NULL
)
5190 remote_support_xml
= concat ("xmlRegisters=", xml
, (char *) NULL
);
5193 char *copy
= xstrdup (remote_support_xml
+ 13);
5194 char *p
= strtok (copy
, ",");
5198 if (strcmp (p
, xml
) == 0)
5205 while ((p
= strtok (NULL
, ",")) != NULL
);
5208 remote_support_xml
= reconcat (remote_support_xml
,
5209 remote_support_xml
, ",", xml
,
5216 remote_query_supported_append (std::string
*msg
, const char *append
)
5220 msg
->append (append
);
5224 remote_target::remote_query_supported ()
5226 struct remote_state
*rs
= get_remote_state ();
5229 unsigned char seen
[ARRAY_SIZE (remote_protocol_features
)];
5231 /* The packet support flags are handled differently for this packet
5232 than for most others. We treat an error, a disabled packet, and
5233 an empty response identically: any features which must be reported
5234 to be used will be automatically disabled. An empty buffer
5235 accomplishes this, since that is also the representation for a list
5236 containing no features. */
5239 if (packet_support (PACKET_qSupported
) != PACKET_DISABLE
)
5243 if (packet_set_cmd_state (PACKET_multiprocess_feature
) != AUTO_BOOLEAN_FALSE
)
5244 remote_query_supported_append (&q
, "multiprocess+");
5246 if (packet_set_cmd_state (PACKET_swbreak_feature
) != AUTO_BOOLEAN_FALSE
)
5247 remote_query_supported_append (&q
, "swbreak+");
5248 if (packet_set_cmd_state (PACKET_hwbreak_feature
) != AUTO_BOOLEAN_FALSE
)
5249 remote_query_supported_append (&q
, "hwbreak+");
5251 remote_query_supported_append (&q
, "qRelocInsn+");
5253 if (packet_set_cmd_state (PACKET_fork_event_feature
)
5254 != AUTO_BOOLEAN_FALSE
)
5255 remote_query_supported_append (&q
, "fork-events+");
5256 if (packet_set_cmd_state (PACKET_vfork_event_feature
)
5257 != AUTO_BOOLEAN_FALSE
)
5258 remote_query_supported_append (&q
, "vfork-events+");
5259 if (packet_set_cmd_state (PACKET_exec_event_feature
)
5260 != AUTO_BOOLEAN_FALSE
)
5261 remote_query_supported_append (&q
, "exec-events+");
5263 if (packet_set_cmd_state (PACKET_vContSupported
) != AUTO_BOOLEAN_FALSE
)
5264 remote_query_supported_append (&q
, "vContSupported+");
5266 if (packet_set_cmd_state (PACKET_QThreadEvents
) != AUTO_BOOLEAN_FALSE
)
5267 remote_query_supported_append (&q
, "QThreadEvents+");
5269 if (packet_set_cmd_state (PACKET_no_resumed
) != AUTO_BOOLEAN_FALSE
)
5270 remote_query_supported_append (&q
, "no-resumed+");
5272 /* Keep this one last to work around a gdbserver <= 7.10 bug in
5273 the qSupported:xmlRegisters=i386 handling. */
5274 if (remote_support_xml
!= NULL
5275 && packet_support (PACKET_qXfer_features
) != PACKET_DISABLE
)
5276 remote_query_supported_append (&q
, remote_support_xml
);
5278 q
= "qSupported:" + q
;
5279 putpkt (q
.c_str ());
5281 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
5283 /* If an error occured, warn, but do not return - just reset the
5284 buffer to empty and go on to disable features. */
5285 if (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_qSupported
])
5288 warning (_("Remote failure reply: %s"), rs
->buf
);
5293 memset (seen
, 0, sizeof (seen
));
5298 enum packet_support is_supported
;
5299 char *p
, *end
, *name_end
, *value
;
5301 /* First separate out this item from the rest of the packet. If
5302 there's another item after this, we overwrite the separator
5303 (terminated strings are much easier to work with). */
5305 end
= strchr (p
, ';');
5308 end
= p
+ strlen (p
);
5318 warning (_("empty item in \"qSupported\" response"));
5323 name_end
= strchr (p
, '=');
5326 /* This is a name=value entry. */
5327 is_supported
= PACKET_ENABLE
;
5328 value
= name_end
+ 1;
5337 is_supported
= PACKET_ENABLE
;
5341 is_supported
= PACKET_DISABLE
;
5345 is_supported
= PACKET_SUPPORT_UNKNOWN
;
5349 warning (_("unrecognized item \"%s\" "
5350 "in \"qSupported\" response"), p
);
5356 for (i
= 0; i
< ARRAY_SIZE (remote_protocol_features
); i
++)
5357 if (strcmp (remote_protocol_features
[i
].name
, p
) == 0)
5359 const struct protocol_feature
*feature
;
5362 feature
= &remote_protocol_features
[i
];
5363 feature
->func (this, feature
, is_supported
, value
);
5368 /* If we increased the packet size, make sure to increase the global
5369 buffer size also. We delay this until after parsing the entire
5370 qSupported packet, because this is the same buffer we were
5372 if (rs
->buf_size
< rs
->explicit_packet_size
)
5374 rs
->buf_size
= rs
->explicit_packet_size
;
5375 rs
->buf
= (char *) xrealloc (rs
->buf
, rs
->buf_size
);
5378 /* Handle the defaults for unmentioned features. */
5379 for (i
= 0; i
< ARRAY_SIZE (remote_protocol_features
); i
++)
5382 const struct protocol_feature
*feature
;
5384 feature
= &remote_protocol_features
[i
];
5385 feature
->func (this, feature
, feature
->default_support
, NULL
);
5389 /* Serial QUIT handler for the remote serial descriptor.
5391 Defers handling a Ctrl-C until we're done with the current
5392 command/response packet sequence, unless:
5394 - We're setting up the connection. Don't send a remote interrupt
5395 request, as we're not fully synced yet. Quit immediately
5398 - The target has been resumed in the foreground
5399 (target_terminal::is_ours is false) with a synchronous resume
5400 packet, and we're blocked waiting for the stop reply, thus a
5401 Ctrl-C should be immediately sent to the target.
5403 - We get a second Ctrl-C while still within the same serial read or
5404 write. In that case the serial is seemingly wedged --- offer to
5407 - We see a second Ctrl-C without target response, after having
5408 previously interrupted the target. In that case the target/stub
5409 is probably wedged --- offer to quit/disconnect.
5413 remote_target::remote_serial_quit_handler ()
5415 struct remote_state
*rs
= get_remote_state ();
5417 if (check_quit_flag ())
5419 /* If we're starting up, we're not fully synced yet. Quit
5421 if (rs
->starting_up
)
5423 else if (rs
->got_ctrlc_during_io
)
5425 if (query (_("The target is not responding to GDB commands.\n"
5426 "Stop debugging it? ")))
5427 remote_unpush_and_throw ();
5429 /* If ^C has already been sent once, offer to disconnect. */
5430 else if (!target_terminal::is_ours () && rs
->ctrlc_pending_p
)
5432 /* All-stop protocol, and blocked waiting for stop reply. Send
5433 an interrupt request. */
5434 else if (!target_terminal::is_ours () && rs
->waiting_for_stop_reply
)
5435 target_interrupt ();
5437 rs
->got_ctrlc_during_io
= 1;
5441 /* The remote_target that is current while the quit handler is
5442 overridden with remote_serial_quit_handler. */
5443 static remote_target
*curr_quit_handler_target
;
5446 remote_serial_quit_handler ()
5448 curr_quit_handler_target
->remote_serial_quit_handler ();
5451 /* Remove any of the remote.c targets from target stack. Upper targets depend
5452 on it so remove them first. */
5455 remote_unpush_target (void)
5457 pop_all_targets_at_and_above (process_stratum
);
5461 remote_unpush_and_throw (void)
5463 remote_unpush_target ();
5464 throw_error (TARGET_CLOSE_ERROR
, _("Disconnected from target."));
5468 remote_target::open_1 (const char *name
, int from_tty
, int extended_p
)
5470 remote_target
*curr_remote
= get_current_remote_target ();
5473 error (_("To open a remote debug connection, you need to specify what\n"
5474 "serial device is attached to the remote system\n"
5475 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
5477 /* If we're connected to a running target, target_preopen will kill it.
5478 Ask this question first, before target_preopen has a chance to kill
5480 if (curr_remote
!= NULL
&& !have_inferiors ())
5483 && !query (_("Already connected to a remote target. Disconnect? ")))
5484 error (_("Still connected."));
5487 /* Here the possibly existing remote target gets unpushed. */
5488 target_preopen (from_tty
);
5490 remote_fileio_reset ();
5491 reopen_exec_file ();
5494 remote_target
*remote
5495 = (extended_p
? new extended_remote_target () : new remote_target ());
5496 target_ops_up
target_holder (remote
);
5498 remote_state
*rs
= remote
->get_remote_state ();
5500 /* See FIXME above. */
5501 if (!target_async_permitted
)
5502 rs
->wait_forever_enabled_p
= 1;
5504 rs
->remote_desc
= remote_serial_open (name
);
5505 if (!rs
->remote_desc
)
5506 perror_with_name (name
);
5508 if (baud_rate
!= -1)
5510 if (serial_setbaudrate (rs
->remote_desc
, baud_rate
))
5512 /* The requested speed could not be set. Error out to
5513 top level after closing remote_desc. Take care to
5514 set remote_desc to NULL to avoid closing remote_desc
5516 serial_close (rs
->remote_desc
);
5517 rs
->remote_desc
= NULL
;
5518 perror_with_name (name
);
5522 serial_setparity (rs
->remote_desc
, serial_parity
);
5523 serial_raw (rs
->remote_desc
);
5525 /* If there is something sitting in the buffer we might take it as a
5526 response to a command, which would be bad. */
5527 serial_flush_input (rs
->remote_desc
);
5531 puts_filtered ("Remote debugging using ");
5532 puts_filtered (name
);
5533 puts_filtered ("\n");
5536 /* Switch to using the remote target now. */
5537 push_target (remote
);
5538 /* The target stack owns the target now. */
5539 target_holder
.release ();
5541 /* Register extra event sources in the event loop. */
5542 rs
->remote_async_inferior_event_token
5543 = create_async_event_handler (remote_async_inferior_event_handler
,
5545 rs
->notif_state
= remote_notif_state_allocate (remote
);
5547 /* Reset the target state; these things will be queried either by
5548 remote_query_supported or as they are needed. */
5549 reset_all_packet_configs_support ();
5550 rs
->cached_wait_status
= 0;
5551 rs
->explicit_packet_size
= 0;
5553 rs
->extended
= extended_p
;
5554 rs
->waiting_for_stop_reply
= 0;
5555 rs
->ctrlc_pending_p
= 0;
5556 rs
->got_ctrlc_during_io
= 0;
5558 rs
->general_thread
= not_sent_ptid
;
5559 rs
->continue_thread
= not_sent_ptid
;
5560 rs
->remote_traceframe_number
= -1;
5562 rs
->last_resume_exec_dir
= EXEC_FORWARD
;
5564 /* Probe for ability to use "ThreadInfo" query, as required. */
5565 rs
->use_threadinfo_query
= 1;
5566 rs
->use_threadextra_query
= 1;
5568 rs
->readahead_cache
.invalidate ();
5570 if (target_async_permitted
)
5572 /* FIXME: cagney/1999-09-23: During the initial connection it is
5573 assumed that the target is already ready and able to respond to
5574 requests. Unfortunately remote_start_remote() eventually calls
5575 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
5576 around this. Eventually a mechanism that allows
5577 wait_for_inferior() to expect/get timeouts will be
5579 rs
->wait_forever_enabled_p
= 0;
5582 /* First delete any symbols previously loaded from shared libraries. */
5583 no_shared_libraries (NULL
, 0);
5586 init_thread_list ();
5588 /* Start the remote connection. If error() or QUIT, discard this
5589 target (we'd otherwise be in an inconsistent state) and then
5590 propogate the error on up the exception chain. This ensures that
5591 the caller doesn't stumble along blindly assuming that the
5592 function succeeded. The CLI doesn't have this problem but other
5593 UI's, such as MI do.
5595 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
5596 this function should return an error indication letting the
5597 caller restore the previous state. Unfortunately the command
5598 ``target remote'' is directly wired to this function making that
5599 impossible. On a positive note, the CLI side of this problem has
5600 been fixed - the function set_cmd_context() makes it possible for
5601 all the ``target ....'' commands to share a common callback
5602 function. See cli-dump.c. */
5607 remote
->start_remote (from_tty
, extended_p
);
5609 CATCH (ex
, RETURN_MASK_ALL
)
5611 /* Pop the partially set up target - unless something else did
5612 already before throwing the exception. */
5613 if (ex
.error
!= TARGET_CLOSE_ERROR
)
5614 remote_unpush_target ();
5615 throw_exception (ex
);
5620 remote_btrace_reset (rs
);
5622 if (target_async_permitted
)
5623 rs
->wait_forever_enabled_p
= 1;
5626 /* Detach the specified process. */
5629 remote_target::remote_detach_pid (int pid
)
5631 struct remote_state
*rs
= get_remote_state ();
5633 if (remote_multi_process_p (rs
))
5634 xsnprintf (rs
->buf
, get_remote_packet_size (), "D;%x", pid
);
5636 strcpy (rs
->buf
, "D");
5639 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
5641 if (rs
->buf
[0] == 'O' && rs
->buf
[1] == 'K')
5643 else if (rs
->buf
[0] == '\0')
5644 error (_("Remote doesn't know how to detach"));
5646 error (_("Can't detach process."));
5649 /* This detaches a program to which we previously attached, using
5650 inferior_ptid to identify the process. After this is done, GDB
5651 can be used to debug some other program. We better not have left
5652 any breakpoints in the target program or it'll die when it hits
5656 remote_target::remote_detach_1 (int from_tty
, inferior
*inf
)
5658 int pid
= ptid_get_pid (inferior_ptid
);
5659 struct remote_state
*rs
= get_remote_state ();
5660 struct thread_info
*tp
= find_thread_ptid (inferior_ptid
);
5663 if (!target_has_execution
)
5664 error (_("No process to detach from."));
5666 target_announce_detach (from_tty
);
5668 /* Tell the remote target to detach. */
5669 remote_detach_pid (pid
);
5671 /* Exit only if this is the only active inferior. */
5672 if (from_tty
&& !rs
->extended
&& number_of_live_inferiors () == 1)
5673 puts_filtered (_("Ending remote debugging.\n"));
5675 /* Check to see if we are detaching a fork parent. Note that if we
5676 are detaching a fork child, tp == NULL. */
5677 is_fork_parent
= (tp
!= NULL
5678 && tp
->pending_follow
.kind
== TARGET_WAITKIND_FORKED
);
5680 /* If doing detach-on-fork, we don't mourn, because that will delete
5681 breakpoints that should be available for the followed inferior. */
5682 if (!is_fork_parent
)
5684 /* Save the pid as a string before mourning, since that will
5685 unpush the remote target, and we need the string after. */
5686 std::string infpid
= target_pid_to_str (pid_to_ptid (pid
));
5688 target_mourn_inferior (inferior_ptid
);
5689 if (print_inferior_events
)
5690 printf_unfiltered (_("[Inferior %d (%s) detached]\n"),
5691 inf
->num
, infpid
.c_str ());
5695 inferior_ptid
= null_ptid
;
5696 detach_inferior (pid
);
5701 remote_target::detach (inferior
*inf
, int from_tty
)
5703 remote_detach_1 (from_tty
, inf
);
5707 extended_remote_target::detach (inferior
*inf
, int from_tty
)
5709 remote_detach_1 (from_tty
, inf
);
5712 /* Target follow-fork function for remote targets. On entry, and
5713 at return, the current inferior is the fork parent.
5715 Note that although this is currently only used for extended-remote,
5716 it is named remote_follow_fork in anticipation of using it for the
5717 remote target as well. */
5720 remote_target::follow_fork (int follow_child
, int detach_fork
)
5722 struct remote_state
*rs
= get_remote_state ();
5723 enum target_waitkind kind
= inferior_thread ()->pending_follow
.kind
;
5725 if ((kind
== TARGET_WAITKIND_FORKED
&& remote_fork_event_p (rs
))
5726 || (kind
== TARGET_WAITKIND_VFORKED
&& remote_vfork_event_p (rs
)))
5728 /* When following the parent and detaching the child, we detach
5729 the child here. For the case of following the child and
5730 detaching the parent, the detach is done in the target-
5731 independent follow fork code in infrun.c. We can't use
5732 target_detach when detaching an unfollowed child because
5733 the client side doesn't know anything about the child. */
5734 if (detach_fork
&& !follow_child
)
5736 /* Detach the fork child. */
5740 child_ptid
= inferior_thread ()->pending_follow
.value
.related_pid
;
5741 child_pid
= ptid_get_pid (child_ptid
);
5743 remote_detach_pid (child_pid
);
5749 /* Target follow-exec function for remote targets. Save EXECD_PATHNAME
5750 in the program space of the new inferior. On entry and at return the
5751 current inferior is the exec'ing inferior. INF is the new exec'd
5752 inferior, which may be the same as the exec'ing inferior unless
5753 follow-exec-mode is "new". */
5756 remote_target::follow_exec (struct inferior
*inf
, char *execd_pathname
)
5758 /* We know that this is a target file name, so if it has the "target:"
5759 prefix we strip it off before saving it in the program space. */
5760 if (is_target_filename (execd_pathname
))
5761 execd_pathname
+= strlen (TARGET_SYSROOT_PREFIX
);
5763 set_pspace_remote_exec_file (inf
->pspace
, execd_pathname
);
5766 /* Same as remote_detach, but don't send the "D" packet; just disconnect. */
5769 remote_target::disconnect (const char *args
, int from_tty
)
5772 error (_("Argument given to \"disconnect\" when remotely debugging."));
5774 /* Make sure we unpush even the extended remote targets. Calling
5775 target_mourn_inferior won't unpush, and remote_mourn won't
5776 unpush if there is more than one inferior left. */
5777 unpush_target (this);
5778 generic_mourn_inferior ();
5781 puts_filtered ("Ending remote debugging.\n");
5784 /* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
5785 be chatty about it. */
5788 extended_remote_target::attach (const char *args
, int from_tty
)
5790 struct remote_state
*rs
= get_remote_state ();
5792 char *wait_status
= NULL
;
5794 pid
= parse_pid_to_attach (args
);
5796 /* Remote PID can be freely equal to getpid, do not check it here the same
5797 way as in other targets. */
5799 if (packet_support (PACKET_vAttach
) == PACKET_DISABLE
)
5800 error (_("This target does not support attaching to a process"));
5804 char *exec_file
= get_exec_file (0);
5807 printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file
,
5808 target_pid_to_str (pid_to_ptid (pid
)));
5810 printf_unfiltered (_("Attaching to %s\n"),
5811 target_pid_to_str (pid_to_ptid (pid
)));
5813 gdb_flush (gdb_stdout
);
5816 xsnprintf (rs
->buf
, get_remote_packet_size (), "vAttach;%x", pid
);
5818 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
5820 switch (packet_ok (rs
->buf
,
5821 &remote_protocol_packets
[PACKET_vAttach
]))
5824 if (!target_is_non_stop_p ())
5826 /* Save the reply for later. */
5827 wait_status
= (char *) alloca (strlen (rs
->buf
) + 1);
5828 strcpy (wait_status
, rs
->buf
);
5830 else if (strcmp (rs
->buf
, "OK") != 0)
5831 error (_("Attaching to %s failed with: %s"),
5832 target_pid_to_str (pid_to_ptid (pid
)),
5835 case PACKET_UNKNOWN
:
5836 error (_("This target does not support attaching to a process"));
5838 error (_("Attaching to %s failed"),
5839 target_pid_to_str (pid_to_ptid (pid
)));
5842 set_current_inferior (remote_add_inferior (0, pid
, 1, 0));
5844 inferior_ptid
= pid_to_ptid (pid
);
5846 if (target_is_non_stop_p ())
5848 struct thread_info
*thread
;
5850 /* Get list of threads. */
5851 update_thread_list ();
5853 thread
= first_thread_of_process (pid
);
5855 inferior_ptid
= thread
->ptid
;
5857 inferior_ptid
= pid_to_ptid (pid
);
5859 /* Invalidate our notion of the remote current thread. */
5860 record_currthread (rs
, minus_one_ptid
);
5864 /* Now, if we have thread information, update inferior_ptid. */
5865 inferior_ptid
= remote_current_thread (inferior_ptid
);
5867 /* Add the main thread to the thread list. */
5868 thread_info
*thr
= add_thread_silent (inferior_ptid
);
5869 /* Don't consider the thread stopped until we've processed the
5870 saved stop reply. */
5871 set_executing (thr
->ptid
, true);
5874 /* Next, if the target can specify a description, read it. We do
5875 this before anything involving memory or registers. */
5876 target_find_description ();
5878 if (!target_is_non_stop_p ())
5880 /* Use the previously fetched status. */
5881 gdb_assert (wait_status
!= NULL
);
5883 if (target_can_async_p ())
5885 struct notif_event
*reply
5886 = remote_notif_parse (this, ¬if_client_stop
, wait_status
);
5888 push_stop_reply ((struct stop_reply
*) reply
);
5894 gdb_assert (wait_status
!= NULL
);
5895 strcpy (rs
->buf
, wait_status
);
5896 rs
->cached_wait_status
= 1;
5900 gdb_assert (wait_status
== NULL
);
5903 /* Implementation of the to_post_attach method. */
5906 extended_remote_target::post_attach (int pid
)
5908 /* Get text, data & bss offsets. */
5911 /* In certain cases GDB might not have had the chance to start
5912 symbol lookup up until now. This could happen if the debugged
5913 binary is not using shared libraries, the vsyscall page is not
5914 present (on Linux) and the binary itself hadn't changed since the
5915 debugging process was started. */
5916 if (symfile_objfile
!= NULL
)
5917 remote_check_symbols();
5921 /* Check for the availability of vCont. This function should also check
5925 remote_target::remote_vcont_probe ()
5927 remote_state
*rs
= get_remote_state ();
5930 strcpy (rs
->buf
, "vCont?");
5932 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
5935 /* Make sure that the features we assume are supported. */
5936 if (startswith (buf
, "vCont"))
5939 int support_c
, support_C
;
5941 rs
->supports_vCont
.s
= 0;
5942 rs
->supports_vCont
.S
= 0;
5945 rs
->supports_vCont
.t
= 0;
5946 rs
->supports_vCont
.r
= 0;
5947 while (p
&& *p
== ';')
5950 if (*p
== 's' && (*(p
+ 1) == ';' || *(p
+ 1) == 0))
5951 rs
->supports_vCont
.s
= 1;
5952 else if (*p
== 'S' && (*(p
+ 1) == ';' || *(p
+ 1) == 0))
5953 rs
->supports_vCont
.S
= 1;
5954 else if (*p
== 'c' && (*(p
+ 1) == ';' || *(p
+ 1) == 0))
5956 else if (*p
== 'C' && (*(p
+ 1) == ';' || *(p
+ 1) == 0))
5958 else if (*p
== 't' && (*(p
+ 1) == ';' || *(p
+ 1) == 0))
5959 rs
->supports_vCont
.t
= 1;
5960 else if (*p
== 'r' && (*(p
+ 1) == ';' || *(p
+ 1) == 0))
5961 rs
->supports_vCont
.r
= 1;
5963 p
= strchr (p
, ';');
5966 /* If c, and C are not all supported, we can't use vCont. Clearing
5967 BUF will make packet_ok disable the packet. */
5968 if (!support_c
|| !support_C
)
5972 packet_ok (buf
, &remote_protocol_packets
[PACKET_vCont
]);
5975 /* Helper function for building "vCont" resumptions. Write a
5976 resumption to P. ENDP points to one-passed-the-end of the buffer
5977 we're allowed to write to. Returns BUF+CHARACTERS_WRITTEN. The
5978 thread to be resumed is PTID; STEP and SIGGNAL indicate whether the
5979 resumed thread should be single-stepped and/or signalled. If PTID
5980 equals minus_one_ptid, then all threads are resumed; if PTID
5981 represents a process, then all threads of the process are resumed;
5982 the thread to be stepped and/or signalled is given in the global
5986 remote_target::append_resumption (char *p
, char *endp
,
5987 ptid_t ptid
, int step
, gdb_signal siggnal
)
5989 struct remote_state
*rs
= get_remote_state ();
5991 if (step
&& siggnal
!= GDB_SIGNAL_0
)
5992 p
+= xsnprintf (p
, endp
- p
, ";S%02x", siggnal
);
5994 /* GDB is willing to range step. */
5995 && use_range_stepping
5996 /* Target supports range stepping. */
5997 && rs
->supports_vCont
.r
5998 /* We don't currently support range stepping multiple
5999 threads with a wildcard (though the protocol allows it,
6000 so stubs shouldn't make an active effort to forbid
6002 && !(remote_multi_process_p (rs
) && ptid_is_pid (ptid
)))
6004 struct thread_info
*tp
;
6006 if (ptid_equal (ptid
, minus_one_ptid
))
6008 /* If we don't know about the target thread's tid, then
6009 we're resuming magic_null_ptid (see caller). */
6010 tp
= find_thread_ptid (magic_null_ptid
);
6013 tp
= find_thread_ptid (ptid
);
6014 gdb_assert (tp
!= NULL
);
6016 if (tp
->control
.may_range_step
)
6018 int addr_size
= gdbarch_addr_bit (target_gdbarch ()) / 8;
6020 p
+= xsnprintf (p
, endp
- p
, ";r%s,%s",
6021 phex_nz (tp
->control
.step_range_start
,
6023 phex_nz (tp
->control
.step_range_end
,
6027 p
+= xsnprintf (p
, endp
- p
, ";s");
6030 p
+= xsnprintf (p
, endp
- p
, ";s");
6031 else if (siggnal
!= GDB_SIGNAL_0
)
6032 p
+= xsnprintf (p
, endp
- p
, ";C%02x", siggnal
);
6034 p
+= xsnprintf (p
, endp
- p
, ";c");
6036 if (remote_multi_process_p (rs
) && ptid_is_pid (ptid
))
6040 /* All (-1) threads of process. */
6041 nptid
= ptid_build (ptid_get_pid (ptid
), -1, 0);
6043 p
+= xsnprintf (p
, endp
- p
, ":");
6044 p
= write_ptid (p
, endp
, nptid
);
6046 else if (!ptid_equal (ptid
, minus_one_ptid
))
6048 p
+= xsnprintf (p
, endp
- p
, ":");
6049 p
= write_ptid (p
, endp
, ptid
);
6055 /* Clear the thread's private info on resume. */
6058 resume_clear_thread_private_info (struct thread_info
*thread
)
6060 if (thread
->priv
!= NULL
)
6062 remote_thread_info
*priv
= get_remote_thread_info (thread
);
6064 priv
->stop_reason
= TARGET_STOPPED_BY_NO_REASON
;
6065 priv
->watch_data_address
= 0;
6069 /* Append a vCont continue-with-signal action for threads that have a
6070 non-zero stop signal. */
6073 remote_target::append_pending_thread_resumptions (char *p
, char *endp
,
6076 struct thread_info
*thread
;
6078 ALL_NON_EXITED_THREADS (thread
)
6079 if (ptid_match (thread
->ptid
, ptid
)
6080 && !ptid_equal (inferior_ptid
, thread
->ptid
)
6081 && thread
->suspend
.stop_signal
!= GDB_SIGNAL_0
)
6083 p
= append_resumption (p
, endp
, thread
->ptid
,
6084 0, thread
->suspend
.stop_signal
);
6085 thread
->suspend
.stop_signal
= GDB_SIGNAL_0
;
6086 resume_clear_thread_private_info (thread
);
6092 /* Set the target running, using the packets that use Hc
6096 remote_target::remote_resume_with_hc (ptid_t ptid
, int step
,
6099 struct remote_state
*rs
= get_remote_state ();
6100 struct thread_info
*thread
;
6103 rs
->last_sent_signal
= siggnal
;
6104 rs
->last_sent_step
= step
;
6106 /* The c/s/C/S resume packets use Hc, so set the continue
6108 if (ptid_equal (ptid
, minus_one_ptid
))
6109 set_continue_thread (any_thread_ptid
);
6111 set_continue_thread (ptid
);
6113 ALL_NON_EXITED_THREADS (thread
)
6114 resume_clear_thread_private_info (thread
);
6117 if (::execution_direction
== EXEC_REVERSE
)
6119 /* We don't pass signals to the target in reverse exec mode. */
6120 if (info_verbose
&& siggnal
!= GDB_SIGNAL_0
)
6121 warning (_(" - Can't pass signal %d to target in reverse: ignored."),
6124 if (step
&& packet_support (PACKET_bs
) == PACKET_DISABLE
)
6125 error (_("Remote reverse-step not supported."));
6126 if (!step
&& packet_support (PACKET_bc
) == PACKET_DISABLE
)
6127 error (_("Remote reverse-continue not supported."));
6129 strcpy (buf
, step
? "bs" : "bc");
6131 else if (siggnal
!= GDB_SIGNAL_0
)
6133 buf
[0] = step
? 'S' : 'C';
6134 buf
[1] = tohex (((int) siggnal
>> 4) & 0xf);
6135 buf
[2] = tohex (((int) siggnal
) & 0xf);
6139 strcpy (buf
, step
? "s" : "c");
6144 /* Resume the remote inferior by using a "vCont" packet. The thread
6145 to be resumed is PTID; STEP and SIGGNAL indicate whether the
6146 resumed thread should be single-stepped and/or signalled. If PTID
6147 equals minus_one_ptid, then all threads are resumed; the thread to
6148 be stepped and/or signalled is given in the global INFERIOR_PTID.
6149 This function returns non-zero iff it resumes the inferior.
6151 This function issues a strict subset of all possible vCont commands
6155 remote_target::remote_resume_with_vcont (ptid_t ptid
, int step
,
6156 enum gdb_signal siggnal
)
6158 struct remote_state
*rs
= get_remote_state ();
6162 /* No reverse execution actions defined for vCont. */
6163 if (::execution_direction
== EXEC_REVERSE
)
6166 if (packet_support (PACKET_vCont
) == PACKET_SUPPORT_UNKNOWN
)
6167 remote_vcont_probe ();
6169 if (packet_support (PACKET_vCont
) == PACKET_DISABLE
)
6173 endp
= rs
->buf
+ get_remote_packet_size ();
6175 /* If we could generate a wider range of packets, we'd have to worry
6176 about overflowing BUF. Should there be a generic
6177 "multi-part-packet" packet? */
6179 p
+= xsnprintf (p
, endp
- p
, "vCont");
6181 if (ptid_equal (ptid
, magic_null_ptid
))
6183 /* MAGIC_NULL_PTID means that we don't have any active threads,
6184 so we don't have any TID numbers the inferior will
6185 understand. Make sure to only send forms that do not specify
6187 append_resumption (p
, endp
, minus_one_ptid
, step
, siggnal
);
6189 else if (ptid_equal (ptid
, minus_one_ptid
) || ptid_is_pid (ptid
))
6191 /* Resume all threads (of all processes, or of a single
6192 process), with preference for INFERIOR_PTID. This assumes
6193 inferior_ptid belongs to the set of all threads we are about
6195 if (step
|| siggnal
!= GDB_SIGNAL_0
)
6197 /* Step inferior_ptid, with or without signal. */
6198 p
= append_resumption (p
, endp
, inferior_ptid
, step
, siggnal
);
6201 /* Also pass down any pending signaled resumption for other
6202 threads not the current. */
6203 p
= append_pending_thread_resumptions (p
, endp
, ptid
);
6205 /* And continue others without a signal. */
6206 append_resumption (p
, endp
, ptid
, /*step=*/ 0, GDB_SIGNAL_0
);
6210 /* Scheduler locking; resume only PTID. */
6211 append_resumption (p
, endp
, ptid
, step
, siggnal
);
6214 gdb_assert (strlen (rs
->buf
) < get_remote_packet_size ());
6217 if (target_is_non_stop_p ())
6219 /* In non-stop, the stub replies to vCont with "OK". The stop
6220 reply will be reported asynchronously by means of a `%Stop'
6222 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
6223 if (strcmp (rs
->buf
, "OK") != 0)
6224 error (_("Unexpected vCont reply in non-stop mode: %s"), rs
->buf
);
6230 /* Tell the remote machine to resume. */
6233 remote_target::resume (ptid_t ptid
, int step
, enum gdb_signal siggnal
)
6235 struct remote_state
*rs
= get_remote_state ();
6237 /* When connected in non-stop mode, the core resumes threads
6238 individually. Resuming remote threads directly in target_resume
6239 would thus result in sending one packet per thread. Instead, to
6240 minimize roundtrip latency, here we just store the resume
6241 request; the actual remote resumption will be done in
6242 target_commit_resume / remote_commit_resume, where we'll be able
6243 to do vCont action coalescing. */
6244 if (target_is_non_stop_p () && ::execution_direction
!= EXEC_REVERSE
)
6246 remote_thread_info
*remote_thr
;
6248 if (ptid_equal (minus_one_ptid
, ptid
) || ptid_is_pid (ptid
))
6249 remote_thr
= get_remote_thread_info (inferior_ptid
);
6251 remote_thr
= get_remote_thread_info (ptid
);
6253 remote_thr
->last_resume_step
= step
;
6254 remote_thr
->last_resume_sig
= siggnal
;
6258 /* In all-stop, we can't mark REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN
6259 (explained in remote-notif.c:handle_notification) so
6260 remote_notif_process is not called. We need find a place where
6261 it is safe to start a 'vNotif' sequence. It is good to do it
6262 before resuming inferior, because inferior was stopped and no RSP
6263 traffic at that moment. */
6264 if (!target_is_non_stop_p ())
6265 remote_notif_process (rs
->notif_state
, ¬if_client_stop
);
6267 rs
->last_resume_exec_dir
= ::execution_direction
;
6269 /* Prefer vCont, and fallback to s/c/S/C, which use Hc. */
6270 if (!remote_resume_with_vcont (ptid
, step
, siggnal
))
6271 remote_resume_with_hc (ptid
, step
, siggnal
);
6273 /* We are about to start executing the inferior, let's register it
6274 with the event loop. NOTE: this is the one place where all the
6275 execution commands end up. We could alternatively do this in each
6276 of the execution commands in infcmd.c. */
6277 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
6278 into infcmd.c in order to allow inferior function calls to work
6279 NOT asynchronously. */
6280 if (target_can_async_p ())
6283 /* We've just told the target to resume. The remote server will
6284 wait for the inferior to stop, and then send a stop reply. In
6285 the mean time, we can't start another command/query ourselves
6286 because the stub wouldn't be ready to process it. This applies
6287 only to the base all-stop protocol, however. In non-stop (which
6288 only supports vCont), the stub replies with an "OK", and is
6289 immediate able to process further serial input. */
6290 if (!target_is_non_stop_p ())
6291 rs
->waiting_for_stop_reply
= 1;
6294 static int is_pending_fork_parent_thread (struct thread_info
*thread
);
6296 /* Private per-inferior info for target remote processes. */
6298 struct remote_inferior
: public private_inferior
6300 /* Whether we can send a wildcard vCont for this process. */
6301 bool may_wildcard_vcont
= true;
6304 /* Get the remote private inferior data associated to INF. */
6306 static remote_inferior
*
6307 get_remote_inferior (inferior
*inf
)
6309 if (inf
->priv
== NULL
)
6310 inf
->priv
.reset (new remote_inferior
);
6312 return static_cast<remote_inferior
*> (inf
->priv
.get ());
6315 /* Class used to track the construction of a vCont packet in the
6316 outgoing packet buffer. This is used to send multiple vCont
6317 packets if we have more actions than would fit a single packet. */
6322 explicit vcont_builder (remote_target
*remote
)
6329 void push_action (ptid_t ptid
, bool step
, gdb_signal siggnal
);
6334 /* The remote target. */
6335 remote_target
*m_remote
;
6337 /* Pointer to the first action. P points here if no action has been
6339 char *m_first_action
;
6341 /* Where the next action will be appended. */
6344 /* The end of the buffer. Must never write past this. */
6348 /* Prepare the outgoing buffer for a new vCont packet. */
6351 vcont_builder::restart ()
6353 struct remote_state
*rs
= m_remote
->get_remote_state ();
6356 m_endp
= rs
->buf
+ m_remote
->get_remote_packet_size ();
6357 m_p
+= xsnprintf (m_p
, m_endp
- m_p
, "vCont");
6358 m_first_action
= m_p
;
6361 /* If the vCont packet being built has any action, send it to the
6365 vcont_builder::flush ()
6367 struct remote_state
*rs
;
6369 if (m_p
== m_first_action
)
6372 rs
= m_remote
->get_remote_state ();
6373 m_remote
->putpkt (rs
->buf
);
6374 m_remote
->getpkt (&rs
->buf
, &rs
->buf_size
, 0);
6375 if (strcmp (rs
->buf
, "OK") != 0)
6376 error (_("Unexpected vCont reply in non-stop mode: %s"), rs
->buf
);
6379 /* The largest action is range-stepping, with its two addresses. This
6380 is more than sufficient. If a new, bigger action is created, it'll
6381 quickly trigger a failed assertion in append_resumption (and we'll
6383 #define MAX_ACTION_SIZE 200
6385 /* Append a new vCont action in the outgoing packet being built. If
6386 the action doesn't fit the packet along with previous actions, push
6387 what we've got so far to the remote end and start over a new vCont
6388 packet (with the new action). */
6391 vcont_builder::push_action (ptid_t ptid
, bool step
, gdb_signal siggnal
)
6393 char buf
[MAX_ACTION_SIZE
+ 1];
6395 char *endp
= m_remote
->append_resumption (buf
, buf
+ sizeof (buf
),
6396 ptid
, step
, siggnal
);
6398 /* Check whether this new action would fit in the vCont packet along
6399 with previous actions. If not, send what we've got so far and
6400 start a new vCont packet. */
6401 size_t rsize
= endp
- buf
;
6402 if (rsize
> m_endp
- m_p
)
6407 /* Should now fit. */
6408 gdb_assert (rsize
<= m_endp
- m_p
);
6411 memcpy (m_p
, buf
, rsize
);
6416 /* to_commit_resume implementation. */
6419 remote_target::commit_resume ()
6421 struct inferior
*inf
;
6422 struct thread_info
*tp
;
6423 int any_process_wildcard
;
6424 int may_global_wildcard_vcont
;
6426 /* If connected in all-stop mode, we'd send the remote resume
6427 request directly from remote_resume. Likewise if
6428 reverse-debugging, as there are no defined vCont actions for
6429 reverse execution. */
6430 if (!target_is_non_stop_p () || ::execution_direction
== EXEC_REVERSE
)
6433 /* Try to send wildcard actions ("vCont;c" or "vCont;c:pPID.-1")
6434 instead of resuming all threads of each process individually.
6435 However, if any thread of a process must remain halted, we can't
6436 send wildcard resumes and must send one action per thread.
6438 Care must be taken to not resume threads/processes the server
6439 side already told us are stopped, but the core doesn't know about
6440 yet, because the events are still in the vStopped notification
6443 #1 => vCont s:p1.1;c
6445 #3 <= %Stopped T05 p1.1
6450 #8 (infrun handles the stop for p1.1 and continues stepping)
6451 #9 => vCont s:p1.1;c
6453 The last vCont above would resume thread p1.2 by mistake, because
6454 the server has no idea that the event for p1.2 had not been
6457 The server side must similarly ignore resume actions for the
6458 thread that has a pending %Stopped notification (and any other
6459 threads with events pending), until GDB acks the notification
6460 with vStopped. Otherwise, e.g., the following case is
6463 #1 => g (or any other packet)
6465 #3 <= %Stopped T05 p1.2
6466 #4 => vCont s:p1.1;c
6469 Above, the server must not resume thread p1.2. GDB can't know
6470 that p1.2 stopped until it acks the %Stopped notification, and
6471 since from GDB's perspective all threads should be running, it
6474 Finally, special care must also be given to handling fork/vfork
6475 events. A (v)fork event actually tells us that two processes
6476 stopped -- the parent and the child. Until we follow the fork,
6477 we must not resume the child. Therefore, if we have a pending
6478 fork follow, we must not send a global wildcard resume action
6479 (vCont;c). We can still send process-wide wildcards though. */
6481 /* Start by assuming a global wildcard (vCont;c) is possible. */
6482 may_global_wildcard_vcont
= 1;
6484 /* And assume every process is individually wildcard-able too. */
6485 ALL_NON_EXITED_INFERIORS (inf
)
6487 remote_inferior
*priv
= get_remote_inferior (inf
);
6489 priv
->may_wildcard_vcont
= true;
6492 /* Check for any pending events (not reported or processed yet) and
6493 disable process and global wildcard resumes appropriately. */
6494 check_pending_events_prevent_wildcard_vcont (&may_global_wildcard_vcont
);
6496 ALL_NON_EXITED_THREADS (tp
)
6498 /* If a thread of a process is not meant to be resumed, then we
6499 can't wildcard that process. */
6502 get_remote_inferior (tp
->inf
)->may_wildcard_vcont
= false;
6504 /* And if we can't wildcard a process, we can't wildcard
6505 everything either. */
6506 may_global_wildcard_vcont
= 0;
6510 /* If a thread is the parent of an unfollowed fork, then we
6511 can't do a global wildcard, as that would resume the fork
6513 if (is_pending_fork_parent_thread (tp
))
6514 may_global_wildcard_vcont
= 0;
6517 /* Now let's build the vCont packet(s). Actions must be appended
6518 from narrower to wider scopes (thread -> process -> global). If
6519 we end up with too many actions for a single packet vcont_builder
6520 flushes the current vCont packet to the remote side and starts a
6522 struct vcont_builder
vcont_builder (this);
6524 /* Threads first. */
6525 ALL_NON_EXITED_THREADS (tp
)
6527 remote_thread_info
*remote_thr
= get_remote_thread_info (tp
);
6529 if (!tp
->executing
|| remote_thr
->vcont_resumed
)
6532 gdb_assert (!thread_is_in_step_over_chain (tp
));
6534 if (!remote_thr
->last_resume_step
6535 && remote_thr
->last_resume_sig
== GDB_SIGNAL_0
6536 && get_remote_inferior (tp
->inf
)->may_wildcard_vcont
)
6538 /* We'll send a wildcard resume instead. */
6539 remote_thr
->vcont_resumed
= 1;
6543 vcont_builder
.push_action (tp
->ptid
,
6544 remote_thr
->last_resume_step
,
6545 remote_thr
->last_resume_sig
);
6546 remote_thr
->vcont_resumed
= 1;
6549 /* Now check whether we can send any process-wide wildcard. This is
6550 to avoid sending a global wildcard in the case nothing is
6551 supposed to be resumed. */
6552 any_process_wildcard
= 0;
6554 ALL_NON_EXITED_INFERIORS (inf
)
6556 if (get_remote_inferior (inf
)->may_wildcard_vcont
)
6558 any_process_wildcard
= 1;
6563 if (any_process_wildcard
)
6565 /* If all processes are wildcard-able, then send a single "c"
6566 action, otherwise, send an "all (-1) threads of process"
6567 continue action for each running process, if any. */
6568 if (may_global_wildcard_vcont
)
6570 vcont_builder
.push_action (minus_one_ptid
,
6571 false, GDB_SIGNAL_0
);
6575 ALL_NON_EXITED_INFERIORS (inf
)
6577 if (get_remote_inferior (inf
)->may_wildcard_vcont
)
6579 vcont_builder
.push_action (pid_to_ptid (inf
->pid
),
6580 false, GDB_SIGNAL_0
);
6586 vcont_builder
.flush ();
6591 /* Non-stop version of target_stop. Uses `vCont;t' to stop a remote
6592 thread, all threads of a remote process, or all threads of all
6596 remote_target::remote_stop_ns (ptid_t ptid
)
6598 struct remote_state
*rs
= get_remote_state ();
6600 char *endp
= rs
->buf
+ get_remote_packet_size ();
6602 if (packet_support (PACKET_vCont
) == PACKET_SUPPORT_UNKNOWN
)
6603 remote_vcont_probe ();
6605 if (!rs
->supports_vCont
.t
)
6606 error (_("Remote server does not support stopping threads"));
6608 if (ptid_equal (ptid
, minus_one_ptid
)
6609 || (!remote_multi_process_p (rs
) && ptid_is_pid (ptid
)))
6610 p
+= xsnprintf (p
, endp
- p
, "vCont;t");
6615 p
+= xsnprintf (p
, endp
- p
, "vCont;t:");
6617 if (ptid_is_pid (ptid
))
6618 /* All (-1) threads of process. */
6619 nptid
= ptid_build (ptid_get_pid (ptid
), -1, 0);
6622 /* Small optimization: if we already have a stop reply for
6623 this thread, no use in telling the stub we want this
6625 if (peek_stop_reply (ptid
))
6631 write_ptid (p
, endp
, nptid
);
6634 /* In non-stop, we get an immediate OK reply. The stop reply will
6635 come in asynchronously by notification. */
6637 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
6638 if (strcmp (rs
->buf
, "OK") != 0)
6639 error (_("Stopping %s failed: %s"), target_pid_to_str (ptid
), rs
->buf
);
6642 /* All-stop version of target_interrupt. Sends a break or a ^C to
6643 interrupt the remote target. It is undefined which thread of which
6644 process reports the interrupt. */
6647 remote_target::remote_interrupt_as ()
6649 struct remote_state
*rs
= get_remote_state ();
6651 rs
->ctrlc_pending_p
= 1;
6653 /* If the inferior is stopped already, but the core didn't know
6654 about it yet, just ignore the request. The cached wait status
6655 will be collected in remote_wait. */
6656 if (rs
->cached_wait_status
)
6659 /* Send interrupt_sequence to remote target. */
6660 send_interrupt_sequence ();
6663 /* Non-stop version of target_interrupt. Uses `vCtrlC' to interrupt
6664 the remote target. It is undefined which thread of which process
6665 reports the interrupt. Throws an error if the packet is not
6666 supported by the server. */
6669 remote_target::remote_interrupt_ns ()
6671 struct remote_state
*rs
= get_remote_state ();
6673 char *endp
= rs
->buf
+ get_remote_packet_size ();
6675 xsnprintf (p
, endp
- p
, "vCtrlC");
6677 /* In non-stop, we get an immediate OK reply. The stop reply will
6678 come in asynchronously by notification. */
6680 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
6682 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_vCtrlC
]))
6686 case PACKET_UNKNOWN
:
6687 error (_("No support for interrupting the remote target."));
6689 error (_("Interrupting target failed: %s"), rs
->buf
);
6693 /* Implement the to_stop function for the remote targets. */
6696 remote_target::stop (ptid_t ptid
)
6699 fprintf_unfiltered (gdb_stdlog
, "remote_stop called\n");
6701 if (target_is_non_stop_p ())
6702 remote_stop_ns (ptid
);
6705 /* We don't currently have a way to transparently pause the
6706 remote target in all-stop mode. Interrupt it instead. */
6707 remote_interrupt_as ();
6711 /* Implement the to_interrupt function for the remote targets. */
6714 remote_target::interrupt ()
6717 fprintf_unfiltered (gdb_stdlog
, "remote_interrupt called\n");
6719 if (target_is_non_stop_p ())
6720 remote_interrupt_ns ();
6722 remote_interrupt_as ();
6725 /* Implement the to_pass_ctrlc function for the remote targets. */
6728 remote_target::pass_ctrlc ()
6730 struct remote_state
*rs
= get_remote_state ();
6733 fprintf_unfiltered (gdb_stdlog
, "remote_pass_ctrlc called\n");
6735 /* If we're starting up, we're not fully synced yet. Quit
6737 if (rs
->starting_up
)
6739 /* If ^C has already been sent once, offer to disconnect. */
6740 else if (rs
->ctrlc_pending_p
)
6743 target_interrupt ();
6746 /* Ask the user what to do when an interrupt is received. */
6749 remote_target::interrupt_query ()
6751 struct remote_state
*rs
= get_remote_state ();
6753 if (rs
->waiting_for_stop_reply
&& rs
->ctrlc_pending_p
)
6755 if (query (_("The target is not responding to interrupt requests.\n"
6756 "Stop debugging it? ")))
6758 remote_unpush_target ();
6759 throw_error (TARGET_CLOSE_ERROR
, _("Disconnected from target."));
6764 if (query (_("Interrupted while waiting for the program.\n"
6765 "Give up waiting? ")))
6770 /* Enable/disable target terminal ownership. Most targets can use
6771 terminal groups to control terminal ownership. Remote targets are
6772 different in that explicit transfer of ownership to/from GDB/target
6776 remote_target::terminal_inferior ()
6778 /* NOTE: At this point we could also register our selves as the
6779 recipient of all input. Any characters typed could then be
6780 passed on down to the target. */
6784 remote_target::terminal_ours ()
6789 remote_console_output (char *msg
)
6793 for (p
= msg
; p
[0] && p
[1]; p
+= 2)
6796 char c
= fromhex (p
[0]) * 16 + fromhex (p
[1]);
6800 fputs_unfiltered (tb
, gdb_stdtarg
);
6802 gdb_flush (gdb_stdtarg
);
6805 DEF_VEC_O(cached_reg_t
);
6807 typedef struct stop_reply
6809 struct notif_event base
;
6811 /* The identifier of the thread about this event */
6814 /* The remote state this event is associated with. When the remote
6815 connection, represented by a remote_state object, is closed,
6816 all the associated stop_reply events should be released. */
6817 struct remote_state
*rs
;
6819 struct target_waitstatus ws
;
6821 /* The architecture associated with the expedited registers. */
6824 /* Expedited registers. This makes remote debugging a bit more
6825 efficient for those targets that provide critical registers as
6826 part of their normal status mechanism (as another roundtrip to
6827 fetch them is avoided). */
6828 VEC(cached_reg_t
) *regcache
;
6830 enum target_stop_reason stop_reason
;
6832 CORE_ADDR watch_data_address
;
6838 stop_reply_xfree (struct stop_reply
*r
)
6840 notif_event_xfree ((struct notif_event
*) r
);
6843 /* Return the length of the stop reply queue. */
6846 remote_target::stop_reply_queue_length ()
6848 remote_state
*rs
= get_remote_state ();
6849 return QUEUE_length (stop_reply_p
, rs
->stop_reply_queue
);
6853 remote_notif_stop_parse (remote_target
*remote
,
6854 struct notif_client
*self
, char *buf
,
6855 struct notif_event
*event
)
6857 remote
->remote_parse_stop_reply (buf
, (struct stop_reply
*) event
);
6861 remote_notif_stop_ack (remote_target
*remote
,
6862 struct notif_client
*self
, char *buf
,
6863 struct notif_event
*event
)
6865 struct stop_reply
*stop_reply
= (struct stop_reply
*) event
;
6868 putpkt (remote
, self
->ack_command
);
6870 if (stop_reply
->ws
.kind
== TARGET_WAITKIND_IGNORE
)
6872 /* We got an unknown stop reply. */
6873 error (_("Unknown stop reply"));
6876 remote
->push_stop_reply (stop_reply
);
6880 remote_notif_stop_can_get_pending_events (remote_target
*remote
,
6881 struct notif_client
*self
)
6883 /* We can't get pending events in remote_notif_process for
6884 notification stop, and we have to do this in remote_wait_ns
6885 instead. If we fetch all queued events from stub, remote stub
6886 may exit and we have no chance to process them back in
6888 remote_state
*rs
= remote
->get_remote_state ();
6889 mark_async_event_handler (rs
->remote_async_inferior_event_token
);
6894 stop_reply_dtr (struct notif_event
*event
)
6896 struct stop_reply
*r
= (struct stop_reply
*) event
;
6901 VEC_iterate (cached_reg_t
, r
->regcache
, ix
, reg
);
6905 VEC_free (cached_reg_t
, r
->regcache
);
6908 static struct notif_event
*
6909 remote_notif_stop_alloc_reply (void)
6911 /* We cast to a pointer to the "base class". */
6912 struct notif_event
*r
= (struct notif_event
*) XNEW (struct stop_reply
);
6914 r
->dtr
= stop_reply_dtr
;
6919 /* A client of notification Stop. */
6921 struct notif_client notif_client_stop
=
6925 remote_notif_stop_parse
,
6926 remote_notif_stop_ack
,
6927 remote_notif_stop_can_get_pending_events
,
6928 remote_notif_stop_alloc_reply
,
6932 /* A parameter to pass data in and out. */
6934 struct queue_iter_param
6936 remote_target
*remote
;
6938 struct stop_reply
*output
;
6941 /* Determine if THREAD_PTID is a pending fork parent thread. ARG contains
6942 the pid of the process that owns the threads we want to check, or
6943 -1 if we want to check all threads. */
6946 is_pending_fork_parent (struct target_waitstatus
*ws
, int event_pid
,
6949 if (ws
->kind
== TARGET_WAITKIND_FORKED
6950 || ws
->kind
== TARGET_WAITKIND_VFORKED
)
6952 if (event_pid
== -1 || event_pid
== ptid_get_pid (thread_ptid
))
6959 /* Return the thread's pending status used to determine whether the
6960 thread is a fork parent stopped at a fork event. */
6962 static struct target_waitstatus
*
6963 thread_pending_fork_status (struct thread_info
*thread
)
6965 if (thread
->suspend
.waitstatus_pending_p
)
6966 return &thread
->suspend
.waitstatus
;
6968 return &thread
->pending_follow
;
6971 /* Determine if THREAD is a pending fork parent thread. */
6974 is_pending_fork_parent_thread (struct thread_info
*thread
)
6976 struct target_waitstatus
*ws
= thread_pending_fork_status (thread
);
6979 return is_pending_fork_parent (ws
, pid
, thread
->ptid
);
6982 /* Check whether EVENT is a fork event, and if it is, remove the
6983 fork child from the context list passed in DATA. */
6986 remove_child_of_pending_fork (QUEUE (stop_reply_p
) *q
,
6987 QUEUE_ITER (stop_reply_p
) *iter
,
6991 struct queue_iter_param
*param
= (struct queue_iter_param
*) data
;
6992 struct threads_listing_context
*context
6993 = (struct threads_listing_context
*) param
->input
;
6995 if (event
->ws
.kind
== TARGET_WAITKIND_FORKED
6996 || event
->ws
.kind
== TARGET_WAITKIND_VFORKED
6997 || event
->ws
.kind
== TARGET_WAITKIND_THREAD_EXITED
)
6998 context
->remove_thread (event
->ws
.value
.related_pid
);
7003 /* If CONTEXT contains any fork child threads that have not been
7004 reported yet, remove them from the CONTEXT list. If such a
7005 thread exists it is because we are stopped at a fork catchpoint
7006 and have not yet called follow_fork, which will set up the
7007 host-side data structures for the new process. */
7010 remote_target::remove_new_fork_children (threads_listing_context
*context
)
7012 struct thread_info
* thread
;
7014 struct notif_client
*notif
= ¬if_client_stop
;
7015 struct queue_iter_param param
;
7017 /* For any threads stopped at a fork event, remove the corresponding
7018 fork child threads from the CONTEXT list. */
7019 ALL_NON_EXITED_THREADS (thread
)
7021 struct target_waitstatus
*ws
= thread_pending_fork_status (thread
);
7023 if (is_pending_fork_parent (ws
, pid
, thread
->ptid
))
7024 context
->remove_thread (ws
->value
.related_pid
);
7027 /* Check for any pending fork events (not reported or processed yet)
7028 in process PID and remove those fork child threads from the
7029 CONTEXT list as well. */
7030 remote_notif_get_pending_events (notif
);
7031 param
.remote
= this;
7032 param
.input
= context
;
7033 param
.output
= NULL
;
7034 QUEUE_iterate (stop_reply_p
, get_remote_state ()->stop_reply_queue
,
7035 remove_child_of_pending_fork
, ¶m
);
7038 /* Callback data for
7039 check_pending_event_prevents_wildcard_vcont_callback. */
7040 struct check_pending_event_prevents_wildcard_vcont_callback_data
7042 /* The remote target. */
7043 remote_target
*remote
;
7045 /* Whether we can do a global wildcard (vCont;c) */
7046 int *may_global_wildcard_vcont
;
7049 /* Check whether EVENT would prevent a global or process wildcard
7053 check_pending_event_prevents_wildcard_vcont_callback
7054 (QUEUE (stop_reply_p
) *q
,
7055 QUEUE_ITER (stop_reply_p
) *iter
,
7059 struct inferior
*inf
;
7060 auto *cb_data
= (check_pending_event_prevents_wildcard_vcont_callback_data
*) data
;
7062 if (event
->ws
.kind
== TARGET_WAITKIND_NO_RESUMED
7063 || event
->ws
.kind
== TARGET_WAITKIND_NO_HISTORY
)
7066 if (event
->ws
.kind
== TARGET_WAITKIND_FORKED
7067 || event
->ws
.kind
== TARGET_WAITKIND_VFORKED
)
7068 *cb_data
->may_global_wildcard_vcont
= 0;
7070 inf
= find_inferior_ptid (event
->ptid
);
7072 /* This may be the first time we heard about this process.
7073 Regardless, we must not do a global wildcard resume, otherwise
7074 we'd resume this process too. */
7075 *cb_data
->may_global_wildcard_vcont
= 0;
7077 get_remote_inferior (inf
)->may_wildcard_vcont
= false;
7082 /* Check whether any event pending in the vStopped queue would prevent
7083 a global or process wildcard vCont action. Clear
7084 *may_global_wildcard if we can't do a global wildcard (vCont;c),
7085 and clear the event inferior's may_wildcard_vcont flag if we can't
7086 do a process-wide wildcard resume (vCont;c:pPID.-1). */
7089 remote_target::check_pending_events_prevent_wildcard_vcont
7090 (int *may_global_wildcard
)
7092 struct notif_client
*notif
= ¬if_client_stop
;
7093 check_pending_event_prevents_wildcard_vcont_callback_data cb_data
7094 {this, may_global_wildcard
};
7096 remote_notif_get_pending_events (notif
);
7097 QUEUE_iterate (stop_reply_p
, get_remote_state ()->stop_reply_queue
,
7098 check_pending_event_prevents_wildcard_vcont_callback
,
7102 /* Remove stop replies in the queue if its pid is equal to the given
7106 remove_stop_reply_for_inferior (QUEUE (stop_reply_p
) *q
,
7107 QUEUE_ITER (stop_reply_p
) *iter
,
7111 struct queue_iter_param
*param
= (struct queue_iter_param
*) data
;
7112 struct inferior
*inf
= (struct inferior
*) param
->input
;
7114 if (ptid_get_pid (event
->ptid
) == inf
->pid
)
7116 stop_reply_xfree (event
);
7117 QUEUE_remove_elem (stop_reply_p
, q
, iter
);
7123 /* Discard all pending stop replies of inferior INF. */
7126 remote_target::discard_pending_stop_replies (struct inferior
*inf
)
7128 struct queue_iter_param param
;
7129 struct stop_reply
*reply
;
7130 struct remote_state
*rs
= get_remote_state ();
7131 struct remote_notif_state
*rns
= rs
->notif_state
;
7133 /* This function can be notified when an inferior exists. When the
7134 target is not remote, the notification state is NULL. */
7135 if (rs
->remote_desc
== NULL
)
7138 reply
= (struct stop_reply
*) rns
->pending_event
[notif_client_stop
.id
];
7140 /* Discard the in-flight notification. */
7141 if (reply
!= NULL
&& ptid_get_pid (reply
->ptid
) == inf
->pid
)
7143 stop_reply_xfree (reply
);
7144 rns
->pending_event
[notif_client_stop
.id
] = NULL
;
7147 param
.remote
= this;
7149 param
.output
= NULL
;
7150 /* Discard the stop replies we have already pulled with
7152 QUEUE_iterate (stop_reply_p
, rs
->stop_reply_queue
,
7153 remove_stop_reply_for_inferior
, ¶m
);
7156 /* If its remote state is equal to the given remote state,
7157 remove EVENT from the stop reply queue. */
7160 remove_stop_reply_of_remote_state (QUEUE (stop_reply_p
) *q
,
7161 QUEUE_ITER (stop_reply_p
) *iter
,
7165 struct queue_iter_param
*param
= (struct queue_iter_param
*) data
;
7166 struct remote_state
*rs
= (struct remote_state
*) param
->input
;
7168 if (event
->rs
== rs
)
7170 stop_reply_xfree (event
);
7171 QUEUE_remove_elem (stop_reply_p
, q
, iter
);
7177 /* Discard the stop replies for RS in stop_reply_queue. */
7180 remote_target::discard_pending_stop_replies_in_queue ()
7182 remote_state
*rs
= get_remote_state ();
7183 struct queue_iter_param param
;
7185 param
.remote
= this;
7187 param
.output
= NULL
;
7188 /* Discard the stop replies we have already pulled with
7190 QUEUE_iterate (stop_reply_p
, rs
->stop_reply_queue
,
7191 remove_stop_reply_of_remote_state
, ¶m
);
7194 /* A parameter to pass data in and out. */
7197 remote_notif_remove_once_on_match (QUEUE (stop_reply_p
) *q
,
7198 QUEUE_ITER (stop_reply_p
) *iter
,
7202 struct queue_iter_param
*param
= (struct queue_iter_param
*) data
;
7203 ptid_t
*ptid
= (ptid_t
*) param
->input
;
7205 if (ptid_match (event
->ptid
, *ptid
))
7207 param
->output
= event
;
7208 QUEUE_remove_elem (stop_reply_p
, q
, iter
);
7215 /* Remove the first reply in 'stop_reply_queue' which matches
7219 remote_target::remote_notif_remove_queued_reply (ptid_t ptid
)
7221 struct queue_iter_param param
;
7223 param
.remote
= this;
7224 param
.input
= &ptid
;
7225 param
.output
= NULL
;
7227 QUEUE_iterate (stop_reply_p
, get_remote_state ()->stop_reply_queue
,
7228 remote_notif_remove_once_on_match
, ¶m
);
7230 fprintf_unfiltered (gdb_stdlog
,
7231 "notif: discard queued event: 'Stop' in %s\n",
7232 target_pid_to_str (ptid
));
7234 return param
.output
;
7237 /* Look for a queued stop reply belonging to PTID. If one is found,
7238 remove it from the queue, and return it. Returns NULL if none is
7239 found. If there are still queued events left to process, tell the
7240 event loop to get back to target_wait soon. */
7243 remote_target::queued_stop_reply (ptid_t ptid
)
7245 struct stop_reply
*r
= remote_notif_remove_queued_reply (ptid
);
7247 if (!QUEUE_is_empty (stop_reply_p
, get_remote_state ()->stop_reply_queue
))
7249 remote_state
*rs
= get_remote_state ();
7250 /* There's still at least an event left. */
7251 mark_async_event_handler (rs
->remote_async_inferior_event_token
);
7257 /* Push a fully parsed stop reply in the stop reply queue. Since we
7258 know that we now have at least one queued event left to pass to the
7259 core side, tell the event loop to get back to target_wait soon. */
7262 remote_target::push_stop_reply (struct stop_reply
*new_event
)
7264 remote_state
*rs
= get_remote_state ();
7265 QUEUE_enque (stop_reply_p
, rs
->stop_reply_queue
, new_event
);
7268 fprintf_unfiltered (gdb_stdlog
,
7269 "notif: push 'Stop' %s to queue %d\n",
7270 target_pid_to_str (new_event
->ptid
),
7271 QUEUE_length (stop_reply_p
,
7272 rs
->stop_reply_queue
));
7274 mark_async_event_handler (rs
->remote_async_inferior_event_token
);
7278 stop_reply_match_ptid_and_ws (QUEUE (stop_reply_p
) *q
,
7279 QUEUE_ITER (stop_reply_p
) *iter
,
7280 struct stop_reply
*event
,
7283 ptid_t
*ptid
= (ptid_t
*) data
;
7285 return !(ptid_equal (*ptid
, event
->ptid
)
7286 && event
->ws
.kind
== TARGET_WAITKIND_STOPPED
);
7289 /* Returns true if we have a stop reply for PTID. */
7292 remote_target::peek_stop_reply (ptid_t ptid
)
7294 remote_state
*rs
= get_remote_state ();
7295 return !QUEUE_iterate (stop_reply_p
, rs
->stop_reply_queue
,
7296 stop_reply_match_ptid_and_ws
, &ptid
);
7299 /* Helper for remote_parse_stop_reply. Return nonzero if the substring
7300 starting with P and ending with PEND matches PREFIX. */
7303 strprefix (const char *p
, const char *pend
, const char *prefix
)
7305 for ( ; p
< pend
; p
++, prefix
++)
7308 return *prefix
== '\0';
7311 /* Parse the stop reply in BUF. Either the function succeeds, and the
7312 result is stored in EVENT, or throws an error. */
7315 remote_target::remote_parse_stop_reply (char *buf
, stop_reply
*event
)
7317 remote_arch_state
*rsa
= NULL
;
7322 event
->ptid
= null_ptid
;
7323 event
->rs
= get_remote_state ();
7324 event
->ws
.kind
= TARGET_WAITKIND_IGNORE
;
7325 event
->ws
.value
.integer
= 0;
7326 event
->stop_reason
= TARGET_STOPPED_BY_NO_REASON
;
7327 event
->regcache
= NULL
;
7332 case 'T': /* Status with PC, SP, FP, ... */
7333 /* Expedited reply, containing Signal, {regno, reg} repeat. */
7334 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
7336 n... = register number
7337 r... = register contents
7340 p
= &buf
[3]; /* after Txx */
7346 p1
= strchr (p
, ':');
7348 error (_("Malformed packet(a) (missing colon): %s\n\
7352 error (_("Malformed packet(a) (missing register number): %s\n\
7356 /* Some "registers" are actually extended stop information.
7357 Note if you're adding a new entry here: GDB 7.9 and
7358 earlier assume that all register "numbers" that start
7359 with an hex digit are real register numbers. Make sure
7360 the server only sends such a packet if it knows the
7361 client understands it. */
7363 if (strprefix (p
, p1
, "thread"))
7364 event
->ptid
= read_ptid (++p1
, &p
);
7365 else if (strprefix (p
, p1
, "syscall_entry"))
7369 event
->ws
.kind
= TARGET_WAITKIND_SYSCALL_ENTRY
;
7370 p
= unpack_varlen_hex (++p1
, &sysno
);
7371 event
->ws
.value
.syscall_number
= (int) sysno
;
7373 else if (strprefix (p
, p1
, "syscall_return"))
7377 event
->ws
.kind
= TARGET_WAITKIND_SYSCALL_RETURN
;
7378 p
= unpack_varlen_hex (++p1
, &sysno
);
7379 event
->ws
.value
.syscall_number
= (int) sysno
;
7381 else if (strprefix (p
, p1
, "watch")
7382 || strprefix (p
, p1
, "rwatch")
7383 || strprefix (p
, p1
, "awatch"))
7385 event
->stop_reason
= TARGET_STOPPED_BY_WATCHPOINT
;
7386 p
= unpack_varlen_hex (++p1
, &addr
);
7387 event
->watch_data_address
= (CORE_ADDR
) addr
;
7389 else if (strprefix (p
, p1
, "swbreak"))
7391 event
->stop_reason
= TARGET_STOPPED_BY_SW_BREAKPOINT
;
7393 /* Make sure the stub doesn't forget to indicate support
7395 if (packet_support (PACKET_swbreak_feature
) != PACKET_ENABLE
)
7396 error (_("Unexpected swbreak stop reason"));
7398 /* The value part is documented as "must be empty",
7399 though we ignore it, in case we ever decide to make
7400 use of it in a backward compatible way. */
7401 p
= strchrnul (p1
+ 1, ';');
7403 else if (strprefix (p
, p1
, "hwbreak"))
7405 event
->stop_reason
= TARGET_STOPPED_BY_HW_BREAKPOINT
;
7407 /* Make sure the stub doesn't forget to indicate support
7409 if (packet_support (PACKET_hwbreak_feature
) != PACKET_ENABLE
)
7410 error (_("Unexpected hwbreak stop reason"));
7413 p
= strchrnul (p1
+ 1, ';');
7415 else if (strprefix (p
, p1
, "library"))
7417 event
->ws
.kind
= TARGET_WAITKIND_LOADED
;
7418 p
= strchrnul (p1
+ 1, ';');
7420 else if (strprefix (p
, p1
, "replaylog"))
7422 event
->ws
.kind
= TARGET_WAITKIND_NO_HISTORY
;
7423 /* p1 will indicate "begin" or "end", but it makes
7424 no difference for now, so ignore it. */
7425 p
= strchrnul (p1
+ 1, ';');
7427 else if (strprefix (p
, p1
, "core"))
7431 p
= unpack_varlen_hex (++p1
, &c
);
7434 else if (strprefix (p
, p1
, "fork"))
7436 event
->ws
.value
.related_pid
= read_ptid (++p1
, &p
);
7437 event
->ws
.kind
= TARGET_WAITKIND_FORKED
;
7439 else if (strprefix (p
, p1
, "vfork"))
7441 event
->ws
.value
.related_pid
= read_ptid (++p1
, &p
);
7442 event
->ws
.kind
= TARGET_WAITKIND_VFORKED
;
7444 else if (strprefix (p
, p1
, "vforkdone"))
7446 event
->ws
.kind
= TARGET_WAITKIND_VFORK_DONE
;
7447 p
= strchrnul (p1
+ 1, ';');
7449 else if (strprefix (p
, p1
, "exec"))
7452 char pathname
[PATH_MAX
];
7455 /* Determine the length of the execd pathname. */
7456 p
= unpack_varlen_hex (++p1
, &ignored
);
7457 pathlen
= (p
- p1
) / 2;
7459 /* Save the pathname for event reporting and for
7460 the next run command. */
7461 hex2bin (p1
, (gdb_byte
*) pathname
, pathlen
);
7462 pathname
[pathlen
] = '\0';
7464 /* This is freed during event handling. */
7465 event
->ws
.value
.execd_pathname
= xstrdup (pathname
);
7466 event
->ws
.kind
= TARGET_WAITKIND_EXECD
;
7468 /* Skip the registers included in this packet, since
7469 they may be for an architecture different from the
7470 one used by the original program. */
7473 else if (strprefix (p
, p1
, "create"))
7475 event
->ws
.kind
= TARGET_WAITKIND_THREAD_CREATED
;
7476 p
= strchrnul (p1
+ 1, ';');
7485 p
= strchrnul (p1
+ 1, ';');
7490 /* Maybe a real ``P'' register number. */
7491 p_temp
= unpack_varlen_hex (p
, &pnum
);
7492 /* If the first invalid character is the colon, we got a
7493 register number. Otherwise, it's an unknown stop
7497 /* If we haven't parsed the event's thread yet, find
7498 it now, in order to find the architecture of the
7499 reported expedited registers. */
7500 if (event
->ptid
== null_ptid
)
7502 const char *thr
= strstr (p1
+ 1, ";thread:");
7504 event
->ptid
= read_ptid (thr
+ strlen (";thread:"),
7508 /* Either the current thread hasn't changed,
7509 or the inferior is not multi-threaded.
7510 The event must be for the thread we last
7511 set as (or learned as being) current. */
7512 event
->ptid
= event
->rs
->general_thread
;
7518 inferior
*inf
= (event
->ptid
== null_ptid
7520 : find_inferior_ptid (event
->ptid
));
7521 /* If this is the first time we learn anything
7522 about this process, skip the registers
7523 included in this packet, since we don't yet
7524 know which architecture to use to parse them.
7525 We'll determine the architecture later when
7526 we process the stop reply and retrieve the
7527 target description, via
7528 remote_notice_new_inferior ->
7529 post_create_inferior. */
7532 p
= strchrnul (p1
+ 1, ';');
7537 event
->arch
= inf
->gdbarch
;
7538 rsa
= event
->rs
->get_remote_arch_state (event
->arch
);
7542 = packet_reg_from_pnum (event
->arch
, rsa
, pnum
);
7543 cached_reg_t cached_reg
;
7546 error (_("Remote sent bad register number %s: %s\n\
7548 hex_string (pnum
), p
, buf
);
7550 cached_reg
.num
= reg
->regnum
;
7551 cached_reg
.data
= (gdb_byte
*)
7552 xmalloc (register_size (event
->arch
, reg
->regnum
));
7555 fieldsize
= hex2bin (p
, cached_reg
.data
,
7556 register_size (event
->arch
, reg
->regnum
));
7558 if (fieldsize
< register_size (event
->arch
, reg
->regnum
))
7559 warning (_("Remote reply is too short: %s"), buf
);
7561 VEC_safe_push (cached_reg_t
, event
->regcache
, &cached_reg
);
7565 /* Not a number. Silently skip unknown optional
7567 p
= strchrnul (p1
+ 1, ';');
7572 error (_("Remote register badly formatted: %s\nhere: %s"),
7577 if (event
->ws
.kind
!= TARGET_WAITKIND_IGNORE
)
7581 case 'S': /* Old style status, just signal only. */
7585 event
->ws
.kind
= TARGET_WAITKIND_STOPPED
;
7586 sig
= (fromhex (buf
[1]) << 4) + fromhex (buf
[2]);
7587 if (GDB_SIGNAL_FIRST
<= sig
&& sig
< GDB_SIGNAL_LAST
)
7588 event
->ws
.value
.sig
= (enum gdb_signal
) sig
;
7590 event
->ws
.value
.sig
= GDB_SIGNAL_UNKNOWN
;
7593 case 'w': /* Thread exited. */
7598 event
->ws
.kind
= TARGET_WAITKIND_THREAD_EXITED
;
7599 p
= unpack_varlen_hex (&buf
[1], &value
);
7600 event
->ws
.value
.integer
= value
;
7602 error (_("stop reply packet badly formatted: %s"), buf
);
7603 event
->ptid
= read_ptid (++p
, NULL
);
7606 case 'W': /* Target exited. */
7613 /* GDB used to accept only 2 hex chars here. Stubs should
7614 only send more if they detect GDB supports multi-process
7616 p
= unpack_varlen_hex (&buf
[1], &value
);
7620 /* The remote process exited. */
7621 event
->ws
.kind
= TARGET_WAITKIND_EXITED
;
7622 event
->ws
.value
.integer
= value
;
7626 /* The remote process exited with a signal. */
7627 event
->ws
.kind
= TARGET_WAITKIND_SIGNALLED
;
7628 if (GDB_SIGNAL_FIRST
<= value
&& value
< GDB_SIGNAL_LAST
)
7629 event
->ws
.value
.sig
= (enum gdb_signal
) value
;
7631 event
->ws
.value
.sig
= GDB_SIGNAL_UNKNOWN
;
7634 /* If no process is specified, assume inferior_ptid. */
7635 pid
= ptid_get_pid (inferior_ptid
);
7644 else if (startswith (p
, "process:"))
7648 p
+= sizeof ("process:") - 1;
7649 unpack_varlen_hex (p
, &upid
);
7653 error (_("unknown stop reply packet: %s"), buf
);
7656 error (_("unknown stop reply packet: %s"), buf
);
7657 event
->ptid
= pid_to_ptid (pid
);
7661 event
->ws
.kind
= TARGET_WAITKIND_NO_RESUMED
;
7662 event
->ptid
= minus_one_ptid
;
7666 if (target_is_non_stop_p () && ptid_equal (event
->ptid
, null_ptid
))
7667 error (_("No process or thread specified in stop reply: %s"), buf
);
7670 /* When the stub wants to tell GDB about a new notification reply, it
7671 sends a notification (%Stop, for example). Those can come it at
7672 any time, hence, we have to make sure that any pending
7673 putpkt/getpkt sequence we're making is finished, before querying
7674 the stub for more events with the corresponding ack command
7675 (vStopped, for example). E.g., if we started a vStopped sequence
7676 immediately upon receiving the notification, something like this
7684 1.6) <-- (registers reply to step #1.3)
7686 Obviously, the reply in step #1.6 would be unexpected to a vStopped
7689 To solve this, whenever we parse a %Stop notification successfully,
7690 we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
7691 doing whatever we were doing:
7697 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
7698 2.5) <-- (registers reply to step #2.3)
7700 Eventualy after step #2.5, we return to the event loop, which
7701 notices there's an event on the
7702 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
7703 associated callback --- the function below. At this point, we're
7704 always safe to start a vStopped sequence. :
7707 2.7) <-- T05 thread:2
7713 remote_target::remote_notif_get_pending_events (notif_client
*nc
)
7715 struct remote_state
*rs
= get_remote_state ();
7717 if (rs
->notif_state
->pending_event
[nc
->id
] != NULL
)
7720 fprintf_unfiltered (gdb_stdlog
,
7721 "notif: process: '%s' ack pending event\n",
7725 nc
->ack (this, nc
, rs
->buf
, rs
->notif_state
->pending_event
[nc
->id
]);
7726 rs
->notif_state
->pending_event
[nc
->id
] = NULL
;
7730 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
7731 if (strcmp (rs
->buf
, "OK") == 0)
7734 remote_notif_ack (this, nc
, rs
->buf
);
7740 fprintf_unfiltered (gdb_stdlog
,
7741 "notif: process: '%s' no pending reply\n",
7746 /* Wrapper around remote_target::remote_notif_get_pending_events to
7747 avoid having to export the whole remote_target class. */
7750 remote_notif_get_pending_events (remote_target
*remote
, notif_client
*nc
)
7752 remote
->remote_notif_get_pending_events (nc
);
7755 /* Called when it is decided that STOP_REPLY holds the info of the
7756 event that is to be returned to the core. This function always
7757 destroys STOP_REPLY. */
7760 remote_target::process_stop_reply (struct stop_reply
*stop_reply
,
7761 struct target_waitstatus
*status
)
7765 *status
= stop_reply
->ws
;
7766 ptid
= stop_reply
->ptid
;
7768 /* If no thread/process was reported by the stub, assume the current
7770 if (ptid_equal (ptid
, null_ptid
))
7771 ptid
= inferior_ptid
;
7773 if (status
->kind
!= TARGET_WAITKIND_EXITED
7774 && status
->kind
!= TARGET_WAITKIND_SIGNALLED
7775 && status
->kind
!= TARGET_WAITKIND_NO_RESUMED
)
7777 /* Expedited registers. */
7778 if (stop_reply
->regcache
)
7780 struct regcache
*regcache
7781 = get_thread_arch_regcache (ptid
, stop_reply
->arch
);
7786 VEC_iterate (cached_reg_t
, stop_reply
->regcache
, ix
, reg
);
7789 regcache_raw_supply (regcache
, reg
->num
, reg
->data
);
7793 VEC_free (cached_reg_t
, stop_reply
->regcache
);
7796 remote_notice_new_inferior (ptid
, 0);
7797 remote_thread_info
*remote_thr
= get_remote_thread_info (ptid
);
7798 remote_thr
->core
= stop_reply
->core
;
7799 remote_thr
->stop_reason
= stop_reply
->stop_reason
;
7800 remote_thr
->watch_data_address
= stop_reply
->watch_data_address
;
7801 remote_thr
->vcont_resumed
= 0;
7804 stop_reply_xfree (stop_reply
);
7808 /* The non-stop mode version of target_wait. */
7811 remote_target::wait_ns (ptid_t ptid
, struct target_waitstatus
*status
, int options
)
7813 struct remote_state
*rs
= get_remote_state ();
7814 struct stop_reply
*stop_reply
;
7818 /* If in non-stop mode, get out of getpkt even if a
7819 notification is received. */
7821 ret
= getpkt_or_notif_sane (&rs
->buf
, &rs
->buf_size
,
7822 0 /* forever */, &is_notif
);
7825 if (ret
!= -1 && !is_notif
)
7828 case 'E': /* Error of some sort. */
7829 /* We're out of sync with the target now. Did it continue
7830 or not? We can't tell which thread it was in non-stop,
7831 so just ignore this. */
7832 warning (_("Remote failure reply: %s"), rs
->buf
);
7834 case 'O': /* Console output. */
7835 remote_console_output (rs
->buf
+ 1);
7838 warning (_("Invalid remote reply: %s"), rs
->buf
);
7842 /* Acknowledge a pending stop reply that may have arrived in the
7844 if (rs
->notif_state
->pending_event
[notif_client_stop
.id
] != NULL
)
7845 remote_notif_get_pending_events (¬if_client_stop
);
7847 /* If indeed we noticed a stop reply, we're done. */
7848 stop_reply
= queued_stop_reply (ptid
);
7849 if (stop_reply
!= NULL
)
7850 return process_stop_reply (stop_reply
, status
);
7852 /* Still no event. If we're just polling for an event, then
7853 return to the event loop. */
7854 if (options
& TARGET_WNOHANG
)
7856 status
->kind
= TARGET_WAITKIND_IGNORE
;
7857 return minus_one_ptid
;
7860 /* Otherwise do a blocking wait. */
7861 ret
= getpkt_or_notif_sane (&rs
->buf
, &rs
->buf_size
,
7862 1 /* forever */, &is_notif
);
7866 /* Wait until the remote machine stops, then return, storing status in
7867 STATUS just as `wait' would. */
7870 remote_target::wait_as (ptid_t ptid
, target_waitstatus
*status
, int options
)
7872 struct remote_state
*rs
= get_remote_state ();
7873 ptid_t event_ptid
= null_ptid
;
7875 struct stop_reply
*stop_reply
;
7879 status
->kind
= TARGET_WAITKIND_IGNORE
;
7880 status
->value
.integer
= 0;
7882 stop_reply
= queued_stop_reply (ptid
);
7883 if (stop_reply
!= NULL
)
7884 return process_stop_reply (stop_reply
, status
);
7886 if (rs
->cached_wait_status
)
7887 /* Use the cached wait status, but only once. */
7888 rs
->cached_wait_status
= 0;
7893 int forever
= ((options
& TARGET_WNOHANG
) == 0
7894 && rs
->wait_forever_enabled_p
);
7896 if (!rs
->waiting_for_stop_reply
)
7898 status
->kind
= TARGET_WAITKIND_NO_RESUMED
;
7899 return minus_one_ptid
;
7902 /* FIXME: cagney/1999-09-27: If we're in async mode we should
7903 _never_ wait for ever -> test on target_is_async_p().
7904 However, before we do that we need to ensure that the caller
7905 knows how to take the target into/out of async mode. */
7906 ret
= getpkt_or_notif_sane (&rs
->buf
, &rs
->buf_size
,
7907 forever
, &is_notif
);
7909 /* GDB gets a notification. Return to core as this event is
7911 if (ret
!= -1 && is_notif
)
7912 return minus_one_ptid
;
7914 if (ret
== -1 && (options
& TARGET_WNOHANG
) != 0)
7915 return minus_one_ptid
;
7920 /* Assume that the target has acknowledged Ctrl-C unless we receive
7921 an 'F' or 'O' packet. */
7922 if (buf
[0] != 'F' && buf
[0] != 'O')
7923 rs
->ctrlc_pending_p
= 0;
7927 case 'E': /* Error of some sort. */
7928 /* We're out of sync with the target now. Did it continue or
7929 not? Not is more likely, so report a stop. */
7930 rs
->waiting_for_stop_reply
= 0;
7932 warning (_("Remote failure reply: %s"), buf
);
7933 status
->kind
= TARGET_WAITKIND_STOPPED
;
7934 status
->value
.sig
= GDB_SIGNAL_0
;
7936 case 'F': /* File-I/O request. */
7937 /* GDB may access the inferior memory while handling the File-I/O
7938 request, but we don't want GDB accessing memory while waiting
7939 for a stop reply. See the comments in putpkt_binary. Set
7940 waiting_for_stop_reply to 0 temporarily. */
7941 rs
->waiting_for_stop_reply
= 0;
7942 remote_fileio_request (this, buf
, rs
->ctrlc_pending_p
);
7943 rs
->ctrlc_pending_p
= 0;
7944 /* GDB handled the File-I/O request, and the target is running
7945 again. Keep waiting for events. */
7946 rs
->waiting_for_stop_reply
= 1;
7948 case 'N': case 'T': case 'S': case 'X': case 'W':
7950 struct stop_reply
*stop_reply
;
7952 /* There is a stop reply to handle. */
7953 rs
->waiting_for_stop_reply
= 0;
7956 = (struct stop_reply
*) remote_notif_parse (this,
7960 event_ptid
= process_stop_reply (stop_reply
, status
);
7963 case 'O': /* Console output. */
7964 remote_console_output (buf
+ 1);
7967 if (rs
->last_sent_signal
!= GDB_SIGNAL_0
)
7969 /* Zero length reply means that we tried 'S' or 'C' and the
7970 remote system doesn't support it. */
7971 target_terminal::ours_for_output ();
7973 ("Can't send signals to this remote system. %s not sent.\n",
7974 gdb_signal_to_name (rs
->last_sent_signal
));
7975 rs
->last_sent_signal
= GDB_SIGNAL_0
;
7976 target_terminal::inferior ();
7978 strcpy (buf
, rs
->last_sent_step
? "s" : "c");
7984 warning (_("Invalid remote reply: %s"), buf
);
7988 if (status
->kind
== TARGET_WAITKIND_NO_RESUMED
)
7989 return minus_one_ptid
;
7990 else if (status
->kind
== TARGET_WAITKIND_IGNORE
)
7992 /* Nothing interesting happened. If we're doing a non-blocking
7993 poll, we're done. Otherwise, go back to waiting. */
7994 if (options
& TARGET_WNOHANG
)
7995 return minus_one_ptid
;
7999 else if (status
->kind
!= TARGET_WAITKIND_EXITED
8000 && status
->kind
!= TARGET_WAITKIND_SIGNALLED
)
8002 if (!ptid_equal (event_ptid
, null_ptid
))
8003 record_currthread (rs
, event_ptid
);
8005 event_ptid
= inferior_ptid
;
8008 /* A process exit. Invalidate our notion of current thread. */
8009 record_currthread (rs
, minus_one_ptid
);
8014 /* Wait until the remote machine stops, then return, storing status in
8015 STATUS just as `wait' would. */
8018 remote_target::wait (ptid_t ptid
, struct target_waitstatus
*status
, int options
)
8022 if (target_is_non_stop_p ())
8023 event_ptid
= wait_ns (ptid
, status
, options
);
8025 event_ptid
= wait_as (ptid
, status
, options
);
8027 if (target_is_async_p ())
8029 remote_state
*rs
= get_remote_state ();
8031 /* If there are are events left in the queue tell the event loop
8033 if (!QUEUE_is_empty (stop_reply_p
, rs
->stop_reply_queue
))
8034 mark_async_event_handler (rs
->remote_async_inferior_event_token
);
8040 /* Fetch a single register using a 'p' packet. */
8043 remote_target::fetch_register_using_p (struct regcache
*regcache
,
8046 struct gdbarch
*gdbarch
= regcache
->arch ();
8047 struct remote_state
*rs
= get_remote_state ();
8049 gdb_byte
*regp
= (gdb_byte
*) alloca (register_size (gdbarch
, reg
->regnum
));
8052 if (packet_support (PACKET_p
) == PACKET_DISABLE
)
8055 if (reg
->pnum
== -1)
8060 p
+= hexnumstr (p
, reg
->pnum
);
8063 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
8067 switch (packet_ok (buf
, &remote_protocol_packets
[PACKET_p
]))
8071 case PACKET_UNKNOWN
:
8074 error (_("Could not fetch register \"%s\"; remote failure reply '%s'"),
8075 gdbarch_register_name (regcache
->arch (),
8080 /* If this register is unfetchable, tell the regcache. */
8083 regcache_raw_supply (regcache
, reg
->regnum
, NULL
);
8087 /* Otherwise, parse and supply the value. */
8093 error (_("fetch_register_using_p: early buf termination"));
8095 regp
[i
++] = fromhex (p
[0]) * 16 + fromhex (p
[1]);
8098 regcache_raw_supply (regcache
, reg
->regnum
, regp
);
8102 /* Fetch the registers included in the target's 'g' packet. */
8105 remote_target::send_g_packet ()
8107 struct remote_state
*rs
= get_remote_state ();
8110 xsnprintf (rs
->buf
, get_remote_packet_size (), "g");
8112 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
8113 if (packet_check_result (rs
->buf
) == PACKET_ERROR
)
8114 error (_("Could not read registers; remote failure reply '%s'"),
8117 /* We can get out of synch in various cases. If the first character
8118 in the buffer is not a hex character, assume that has happened
8119 and try to fetch another packet to read. */
8120 while ((rs
->buf
[0] < '0' || rs
->buf
[0] > '9')
8121 && (rs
->buf
[0] < 'A' || rs
->buf
[0] > 'F')
8122 && (rs
->buf
[0] < 'a' || rs
->buf
[0] > 'f')
8123 && rs
->buf
[0] != 'x') /* New: unavailable register value. */
8126 fprintf_unfiltered (gdb_stdlog
,
8127 "Bad register packet; fetching a new packet\n");
8128 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
8131 buf_len
= strlen (rs
->buf
);
8133 /* Sanity check the received packet. */
8134 if (buf_len
% 2 != 0)
8135 error (_("Remote 'g' packet reply is of odd length: %s"), rs
->buf
);
8141 remote_target::process_g_packet (struct regcache
*regcache
)
8143 struct gdbarch
*gdbarch
= regcache
->arch ();
8144 struct remote_state
*rs
= get_remote_state ();
8145 remote_arch_state
*rsa
= rs
->get_remote_arch_state (gdbarch
);
8150 buf_len
= strlen (rs
->buf
);
8152 /* Further sanity checks, with knowledge of the architecture. */
8153 if (buf_len
> 2 * rsa
->sizeof_g_packet
)
8154 error (_("Remote 'g' packet reply is too long (expected %ld bytes, got %d "
8155 "bytes): %s"), rsa
->sizeof_g_packet
, buf_len
/ 2, rs
->buf
);
8157 /* Save the size of the packet sent to us by the target. It is used
8158 as a heuristic when determining the max size of packets that the
8159 target can safely receive. */
8160 if (rsa
->actual_register_packet_size
== 0)
8161 rsa
->actual_register_packet_size
= buf_len
;
8163 /* If this is smaller than we guessed the 'g' packet would be,
8164 update our records. A 'g' reply that doesn't include a register's
8165 value implies either that the register is not available, or that
8166 the 'p' packet must be used. */
8167 if (buf_len
< 2 * rsa
->sizeof_g_packet
)
8169 long sizeof_g_packet
= buf_len
/ 2;
8171 for (i
= 0; i
< gdbarch_num_regs (gdbarch
); i
++)
8173 long offset
= rsa
->regs
[i
].offset
;
8174 long reg_size
= register_size (gdbarch
, i
);
8176 if (rsa
->regs
[i
].pnum
== -1)
8179 if (offset
>= sizeof_g_packet
)
8180 rsa
->regs
[i
].in_g_packet
= 0;
8181 else if (offset
+ reg_size
> sizeof_g_packet
)
8182 error (_("Truncated register %d in remote 'g' packet"), i
);
8184 rsa
->regs
[i
].in_g_packet
= 1;
8187 /* Looks valid enough, we can assume this is the correct length
8188 for a 'g' packet. It's important not to adjust
8189 rsa->sizeof_g_packet if we have truncated registers otherwise
8190 this "if" won't be run the next time the method is called
8191 with a packet of the same size and one of the internal errors
8192 below will trigger instead. */
8193 rsa
->sizeof_g_packet
= sizeof_g_packet
;
8196 regs
= (char *) alloca (rsa
->sizeof_g_packet
);
8198 /* Unimplemented registers read as all bits zero. */
8199 memset (regs
, 0, rsa
->sizeof_g_packet
);
8201 /* Reply describes registers byte by byte, each byte encoded as two
8202 hex characters. Suck them all up, then supply them to the
8203 register cacheing/storage mechanism. */
8206 for (i
= 0; i
< rsa
->sizeof_g_packet
; i
++)
8208 if (p
[0] == 0 || p
[1] == 0)
8209 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
8210 internal_error (__FILE__
, __LINE__
,
8211 _("unexpected end of 'g' packet reply"));
8213 if (p
[0] == 'x' && p
[1] == 'x')
8214 regs
[i
] = 0; /* 'x' */
8216 regs
[i
] = fromhex (p
[0]) * 16 + fromhex (p
[1]);
8220 for (i
= 0; i
< gdbarch_num_regs (gdbarch
); i
++)
8222 struct packet_reg
*r
= &rsa
->regs
[i
];
8223 long reg_size
= register_size (gdbarch
, i
);
8227 if ((r
->offset
+ reg_size
) * 2 > strlen (rs
->buf
))
8228 /* This shouldn't happen - we adjusted in_g_packet above. */
8229 internal_error (__FILE__
, __LINE__
,
8230 _("unexpected end of 'g' packet reply"));
8231 else if (rs
->buf
[r
->offset
* 2] == 'x')
8233 gdb_assert (r
->offset
* 2 < strlen (rs
->buf
));
8234 /* The register isn't available, mark it as such (at
8235 the same time setting the value to zero). */
8236 regcache_raw_supply (regcache
, r
->regnum
, NULL
);
8239 regcache_raw_supply (regcache
, r
->regnum
,
8246 remote_target::fetch_registers_using_g (struct regcache
*regcache
)
8249 process_g_packet (regcache
);
8252 /* Make the remote selected traceframe match GDB's selected
8256 remote_target::set_remote_traceframe ()
8259 struct remote_state
*rs
= get_remote_state ();
8261 if (rs
->remote_traceframe_number
== get_traceframe_number ())
8264 /* Avoid recursion, remote_trace_find calls us again. */
8265 rs
->remote_traceframe_number
= get_traceframe_number ();
8267 newnum
= target_trace_find (tfind_number
,
8268 get_traceframe_number (), 0, 0, NULL
);
8270 /* Should not happen. If it does, all bets are off. */
8271 if (newnum
!= get_traceframe_number ())
8272 warning (_("could not set remote traceframe"));
8276 remote_target::fetch_registers (struct regcache
*regcache
, int regnum
)
8278 struct gdbarch
*gdbarch
= regcache
->arch ();
8279 struct remote_state
*rs
= get_remote_state ();
8280 remote_arch_state
*rsa
= rs
->get_remote_arch_state (gdbarch
);
8283 set_remote_traceframe ();
8284 set_general_thread (regcache
->ptid ());
8288 packet_reg
*reg
= packet_reg_from_regnum (gdbarch
, rsa
, regnum
);
8290 gdb_assert (reg
!= NULL
);
8292 /* If this register might be in the 'g' packet, try that first -
8293 we are likely to read more than one register. If this is the
8294 first 'g' packet, we might be overly optimistic about its
8295 contents, so fall back to 'p'. */
8296 if (reg
->in_g_packet
)
8298 fetch_registers_using_g (regcache
);
8299 if (reg
->in_g_packet
)
8303 if (fetch_register_using_p (regcache
, reg
))
8306 /* This register is not available. */
8307 regcache_raw_supply (regcache
, reg
->regnum
, NULL
);
8312 fetch_registers_using_g (regcache
);
8314 for (i
= 0; i
< gdbarch_num_regs (gdbarch
); i
++)
8315 if (!rsa
->regs
[i
].in_g_packet
)
8316 if (!fetch_register_using_p (regcache
, &rsa
->regs
[i
]))
8318 /* This register is not available. */
8319 regcache_raw_supply (regcache
, i
, NULL
);
8323 /* Prepare to store registers. Since we may send them all (using a
8324 'G' request), we have to read out the ones we don't want to change
8328 remote_target::prepare_to_store (struct regcache
*regcache
)
8330 struct remote_state
*rs
= get_remote_state ();
8331 remote_arch_state
*rsa
= rs
->get_remote_arch_state (regcache
->arch ());
8334 /* Make sure the entire registers array is valid. */
8335 switch (packet_support (PACKET_P
))
8337 case PACKET_DISABLE
:
8338 case PACKET_SUPPORT_UNKNOWN
:
8339 /* Make sure all the necessary registers are cached. */
8340 for (i
= 0; i
< gdbarch_num_regs (regcache
->arch ()); i
++)
8341 if (rsa
->regs
[i
].in_g_packet
)
8342 regcache
->raw_update (rsa
->regs
[i
].regnum
);
8349 /* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
8350 packet was not recognized. */
8353 remote_target::store_register_using_P (const struct regcache
*regcache
,
8356 struct gdbarch
*gdbarch
= regcache
->arch ();
8357 struct remote_state
*rs
= get_remote_state ();
8358 /* Try storing a single register. */
8359 char *buf
= rs
->buf
;
8360 gdb_byte
*regp
= (gdb_byte
*) alloca (register_size (gdbarch
, reg
->regnum
));
8363 if (packet_support (PACKET_P
) == PACKET_DISABLE
)
8366 if (reg
->pnum
== -1)
8369 xsnprintf (buf
, get_remote_packet_size (), "P%s=", phex_nz (reg
->pnum
, 0));
8370 p
= buf
+ strlen (buf
);
8371 regcache_raw_collect (regcache
, reg
->regnum
, regp
);
8372 bin2hex (regp
, p
, register_size (gdbarch
, reg
->regnum
));
8374 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
8376 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_P
]))
8381 error (_("Could not write register \"%s\"; remote failure reply '%s'"),
8382 gdbarch_register_name (gdbarch
, reg
->regnum
), rs
->buf
);
8383 case PACKET_UNKNOWN
:
8386 internal_error (__FILE__
, __LINE__
, _("Bad result from packet_ok"));
8390 /* Store register REGNUM, or all registers if REGNUM == -1, from the
8391 contents of the register cache buffer. FIXME: ignores errors. */
8394 remote_target::store_registers_using_G (const struct regcache
*regcache
)
8396 struct remote_state
*rs
= get_remote_state ();
8397 remote_arch_state
*rsa
= rs
->get_remote_arch_state (regcache
->arch ());
8401 /* Extract all the registers in the regcache copying them into a
8406 regs
= (gdb_byte
*) alloca (rsa
->sizeof_g_packet
);
8407 memset (regs
, 0, rsa
->sizeof_g_packet
);
8408 for (i
= 0; i
< gdbarch_num_regs (regcache
->arch ()); i
++)
8410 struct packet_reg
*r
= &rsa
->regs
[i
];
8413 regcache_raw_collect (regcache
, r
->regnum
, regs
+ r
->offset
);
8417 /* Command describes registers byte by byte,
8418 each byte encoded as two hex characters. */
8421 bin2hex (regs
, p
, rsa
->sizeof_g_packet
);
8423 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
8424 if (packet_check_result (rs
->buf
) == PACKET_ERROR
)
8425 error (_("Could not write registers; remote failure reply '%s'"),
8429 /* Store register REGNUM, or all registers if REGNUM == -1, from the contents
8430 of the register cache buffer. FIXME: ignores errors. */
8433 remote_target::store_registers (struct regcache
*regcache
, int regnum
)
8435 struct gdbarch
*gdbarch
= regcache
->arch ();
8436 struct remote_state
*rs
= get_remote_state ();
8437 remote_arch_state
*rsa
= rs
->get_remote_arch_state (gdbarch
);
8440 set_remote_traceframe ();
8441 set_general_thread (regcache
->ptid ());
8445 packet_reg
*reg
= packet_reg_from_regnum (gdbarch
, rsa
, regnum
);
8447 gdb_assert (reg
!= NULL
);
8449 /* Always prefer to store registers using the 'P' packet if
8450 possible; we often change only a small number of registers.
8451 Sometimes we change a larger number; we'd need help from a
8452 higher layer to know to use 'G'. */
8453 if (store_register_using_P (regcache
, reg
))
8456 /* For now, don't complain if we have no way to write the
8457 register. GDB loses track of unavailable registers too
8458 easily. Some day, this may be an error. We don't have
8459 any way to read the register, either... */
8460 if (!reg
->in_g_packet
)
8463 store_registers_using_G (regcache
);
8467 store_registers_using_G (regcache
);
8469 for (i
= 0; i
< gdbarch_num_regs (gdbarch
); i
++)
8470 if (!rsa
->regs
[i
].in_g_packet
)
8471 if (!store_register_using_P (regcache
, &rsa
->regs
[i
]))
8472 /* See above for why we do not issue an error here. */
8477 /* Return the number of hex digits in num. */
8480 hexnumlen (ULONGEST num
)
8484 for (i
= 0; num
!= 0; i
++)
8487 return std::max (i
, 1);
8490 /* Set BUF to the minimum number of hex digits representing NUM. */
8493 hexnumstr (char *buf
, ULONGEST num
)
8495 int len
= hexnumlen (num
);
8497 return hexnumnstr (buf
, num
, len
);
8501 /* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
8504 hexnumnstr (char *buf
, ULONGEST num
, int width
)
8510 for (i
= width
- 1; i
>= 0; i
--)
8512 buf
[i
] = "0123456789abcdef"[(num
& 0xf)];
8519 /* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
8522 remote_address_masked (CORE_ADDR addr
)
8524 unsigned int address_size
= remote_address_size
;
8526 /* If "remoteaddresssize" was not set, default to target address size. */
8528 address_size
= gdbarch_addr_bit (target_gdbarch ());
8530 if (address_size
> 0
8531 && address_size
< (sizeof (ULONGEST
) * 8))
8533 /* Only create a mask when that mask can safely be constructed
8534 in a ULONGEST variable. */
8537 mask
= (mask
<< address_size
) - 1;
8543 /* Determine whether the remote target supports binary downloading.
8544 This is accomplished by sending a no-op memory write of zero length
8545 to the target at the specified address. It does not suffice to send
8546 the whole packet, since many stubs strip the eighth bit and
8547 subsequently compute a wrong checksum, which causes real havoc with
8550 NOTE: This can still lose if the serial line is not eight-bit
8551 clean. In cases like this, the user should clear "remote
8555 remote_target::check_binary_download (CORE_ADDR addr
)
8557 struct remote_state
*rs
= get_remote_state ();
8559 switch (packet_support (PACKET_X
))
8561 case PACKET_DISABLE
:
8565 case PACKET_SUPPORT_UNKNOWN
:
8571 p
+= hexnumstr (p
, (ULONGEST
) addr
);
8573 p
+= hexnumstr (p
, (ULONGEST
) 0);
8577 putpkt_binary (rs
->buf
, (int) (p
- rs
->buf
));
8578 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
8580 if (rs
->buf
[0] == '\0')
8583 fprintf_unfiltered (gdb_stdlog
,
8584 "binary downloading NOT "
8585 "supported by target\n");
8586 remote_protocol_packets
[PACKET_X
].support
= PACKET_DISABLE
;
8591 fprintf_unfiltered (gdb_stdlog
,
8592 "binary downloading supported by target\n");
8593 remote_protocol_packets
[PACKET_X
].support
= PACKET_ENABLE
;
8600 /* Helper function to resize the payload in order to try to get a good
8601 alignment. We try to write an amount of data such that the next write will
8602 start on an address aligned on REMOTE_ALIGN_WRITES. */
8605 align_for_efficient_write (int todo
, CORE_ADDR memaddr
)
8607 return ((memaddr
+ todo
) & ~(REMOTE_ALIGN_WRITES
- 1)) - memaddr
;
8610 /* Write memory data directly to the remote machine.
8611 This does not inform the data cache; the data cache uses this.
8612 HEADER is the starting part of the packet.
8613 MEMADDR is the address in the remote memory space.
8614 MYADDR is the address of the buffer in our space.
8615 LEN_UNITS is the number of addressable units to write.
8616 UNIT_SIZE is the length in bytes of an addressable unit.
8617 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
8618 should send data as binary ('X'), or hex-encoded ('M').
8620 The function creates packet of the form
8621 <HEADER><ADDRESS>,<LENGTH>:<DATA>
8623 where encoding of <DATA> is terminated by PACKET_FORMAT.
8625 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
8628 Return the transferred status, error or OK (an
8629 'enum target_xfer_status' value). Save the number of addressable units
8630 transferred in *XFERED_LEN_UNITS. Only transfer a single packet.
8632 On a platform with an addressable memory size of 2 bytes (UNIT_SIZE == 2), an
8633 exchange between gdb and the stub could look like (?? in place of the
8639 -> $M1000,3:eeeeffffeeee#??
8643 <- eeeeffffeeeedddd */
8646 remote_target::remote_write_bytes_aux (const char *header
, CORE_ADDR memaddr
,
8647 const gdb_byte
*myaddr
,
8650 ULONGEST
*xfered_len_units
,
8651 char packet_format
, int use_length
)
8653 struct remote_state
*rs
= get_remote_state ();
8659 int payload_capacity_bytes
;
8660 int payload_length_bytes
;
8662 if (packet_format
!= 'X' && packet_format
!= 'M')
8663 internal_error (__FILE__
, __LINE__
,
8664 _("remote_write_bytes_aux: bad packet format"));
8667 return TARGET_XFER_EOF
;
8669 payload_capacity_bytes
= get_memory_write_packet_size ();
8671 /* The packet buffer will be large enough for the payload;
8672 get_memory_packet_size ensures this. */
8675 /* Compute the size of the actual payload by subtracting out the
8676 packet header and footer overhead: "$M<memaddr>,<len>:...#nn". */
8678 payload_capacity_bytes
-= strlen ("$,:#NN");
8680 /* The comma won't be used. */
8681 payload_capacity_bytes
+= 1;
8682 payload_capacity_bytes
-= strlen (header
);
8683 payload_capacity_bytes
-= hexnumlen (memaddr
);
8685 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
8687 strcat (rs
->buf
, header
);
8688 p
= rs
->buf
+ strlen (header
);
8690 /* Compute a best guess of the number of bytes actually transfered. */
8691 if (packet_format
== 'X')
8693 /* Best guess at number of bytes that will fit. */
8694 todo_units
= std::min (len_units
,
8695 (ULONGEST
) payload_capacity_bytes
/ unit_size
);
8697 payload_capacity_bytes
-= hexnumlen (todo_units
);
8698 todo_units
= std::min (todo_units
, payload_capacity_bytes
/ unit_size
);
8702 /* Number of bytes that will fit. */
8704 = std::min (len_units
,
8705 (ULONGEST
) (payload_capacity_bytes
/ unit_size
) / 2);
8707 payload_capacity_bytes
-= hexnumlen (todo_units
);
8708 todo_units
= std::min (todo_units
,
8709 (payload_capacity_bytes
/ unit_size
) / 2);
8712 if (todo_units
<= 0)
8713 internal_error (__FILE__
, __LINE__
,
8714 _("minimum packet size too small to write data"));
8716 /* If we already need another packet, then try to align the end
8717 of this packet to a useful boundary. */
8718 if (todo_units
> 2 * REMOTE_ALIGN_WRITES
&& todo_units
< len_units
)
8719 todo_units
= align_for_efficient_write (todo_units
, memaddr
);
8721 /* Append "<memaddr>". */
8722 memaddr
= remote_address_masked (memaddr
);
8723 p
+= hexnumstr (p
, (ULONGEST
) memaddr
);
8730 /* Append the length and retain its location and size. It may need to be
8731 adjusted once the packet body has been created. */
8733 plenlen
= hexnumstr (p
, (ULONGEST
) todo_units
);
8741 /* Append the packet body. */
8742 if (packet_format
== 'X')
8744 /* Binary mode. Send target system values byte by byte, in
8745 increasing byte addresses. Only escape certain critical
8747 payload_length_bytes
=
8748 remote_escape_output (myaddr
, todo_units
, unit_size
, (gdb_byte
*) p
,
8749 &units_written
, payload_capacity_bytes
);
8751 /* If not all TODO units fit, then we'll need another packet. Make
8752 a second try to keep the end of the packet aligned. Don't do
8753 this if the packet is tiny. */
8754 if (units_written
< todo_units
&& units_written
> 2 * REMOTE_ALIGN_WRITES
)
8758 new_todo_units
= align_for_efficient_write (units_written
, memaddr
);
8760 if (new_todo_units
!= units_written
)
8761 payload_length_bytes
=
8762 remote_escape_output (myaddr
, new_todo_units
, unit_size
,
8763 (gdb_byte
*) p
, &units_written
,
8764 payload_capacity_bytes
);
8767 p
+= payload_length_bytes
;
8768 if (use_length
&& units_written
< todo_units
)
8770 /* Escape chars have filled up the buffer prematurely,
8771 and we have actually sent fewer units than planned.
8772 Fix-up the length field of the packet. Use the same
8773 number of characters as before. */
8774 plen
+= hexnumnstr (plen
, (ULONGEST
) units_written
,
8776 *plen
= ':'; /* overwrite \0 from hexnumnstr() */
8781 /* Normal mode: Send target system values byte by byte, in
8782 increasing byte addresses. Each byte is encoded as a two hex
8784 p
+= 2 * bin2hex (myaddr
, p
, todo_units
* unit_size
);
8785 units_written
= todo_units
;
8788 putpkt_binary (rs
->buf
, (int) (p
- rs
->buf
));
8789 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
8791 if (rs
->buf
[0] == 'E')
8792 return TARGET_XFER_E_IO
;
8794 /* Return UNITS_WRITTEN, not TODO_UNITS, in case escape chars caused us to
8795 send fewer units than we'd planned. */
8796 *xfered_len_units
= (ULONGEST
) units_written
;
8797 return (*xfered_len_units
!= 0) ? TARGET_XFER_OK
: TARGET_XFER_EOF
;
8800 /* Write memory data directly to the remote machine.
8801 This does not inform the data cache; the data cache uses this.
8802 MEMADDR is the address in the remote memory space.
8803 MYADDR is the address of the buffer in our space.
8804 LEN is the number of bytes.
8806 Return the transferred status, error or OK (an
8807 'enum target_xfer_status' value). Save the number of bytes
8808 transferred in *XFERED_LEN. Only transfer a single packet. */
8811 remote_target::remote_write_bytes (CORE_ADDR memaddr
, const gdb_byte
*myaddr
,
8812 ULONGEST len
, int unit_size
,
8813 ULONGEST
*xfered_len
)
8815 const char *packet_format
= NULL
;
8817 /* Check whether the target supports binary download. */
8818 check_binary_download (memaddr
);
8820 switch (packet_support (PACKET_X
))
8823 packet_format
= "X";
8825 case PACKET_DISABLE
:
8826 packet_format
= "M";
8828 case PACKET_SUPPORT_UNKNOWN
:
8829 internal_error (__FILE__
, __LINE__
,
8830 _("remote_write_bytes: bad internal state"));
8832 internal_error (__FILE__
, __LINE__
, _("bad switch"));
8835 return remote_write_bytes_aux (packet_format
,
8836 memaddr
, myaddr
, len
, unit_size
, xfered_len
,
8837 packet_format
[0], 1);
8840 /* Read memory data directly from the remote machine.
8841 This does not use the data cache; the data cache uses this.
8842 MEMADDR is the address in the remote memory space.
8843 MYADDR is the address of the buffer in our space.
8844 LEN_UNITS is the number of addressable memory units to read..
8845 UNIT_SIZE is the length in bytes of an addressable unit.
8847 Return the transferred status, error or OK (an
8848 'enum target_xfer_status' value). Save the number of bytes
8849 transferred in *XFERED_LEN_UNITS.
8851 See the comment of remote_write_bytes_aux for an example of
8852 memory read/write exchange between gdb and the stub. */
8855 remote_target::remote_read_bytes_1 (CORE_ADDR memaddr
, gdb_byte
*myaddr
,
8857 int unit_size
, ULONGEST
*xfered_len_units
)
8859 struct remote_state
*rs
= get_remote_state ();
8860 int buf_size_bytes
; /* Max size of packet output buffer. */
8865 buf_size_bytes
= get_memory_read_packet_size ();
8866 /* The packet buffer will be large enough for the payload;
8867 get_memory_packet_size ensures this. */
8869 /* Number of units that will fit. */
8870 todo_units
= std::min (len_units
,
8871 (ULONGEST
) (buf_size_bytes
/ unit_size
) / 2);
8873 /* Construct "m"<memaddr>","<len>". */
8874 memaddr
= remote_address_masked (memaddr
);
8877 p
+= hexnumstr (p
, (ULONGEST
) memaddr
);
8879 p
+= hexnumstr (p
, (ULONGEST
) todo_units
);
8882 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
8883 if (rs
->buf
[0] == 'E'
8884 && isxdigit (rs
->buf
[1]) && isxdigit (rs
->buf
[2])
8885 && rs
->buf
[3] == '\0')
8886 return TARGET_XFER_E_IO
;
8887 /* Reply describes memory byte by byte, each byte encoded as two hex
8890 decoded_bytes
= hex2bin (p
, myaddr
, todo_units
* unit_size
);
8891 /* Return what we have. Let higher layers handle partial reads. */
8892 *xfered_len_units
= (ULONGEST
) (decoded_bytes
/ unit_size
);
8893 return (*xfered_len_units
!= 0) ? TARGET_XFER_OK
: TARGET_XFER_EOF
;
8896 /* Using the set of read-only target sections of remote, read live
8899 For interface/parameters/return description see target.h,
8903 remote_target::remote_xfer_live_readonly_partial (gdb_byte
*readbuf
,
8907 ULONGEST
*xfered_len
)
8909 struct target_section
*secp
;
8910 struct target_section_table
*table
;
8912 secp
= target_section_by_addr (this, memaddr
);
8914 && (bfd_get_section_flags (secp
->the_bfd_section
->owner
,
8915 secp
->the_bfd_section
)
8918 struct target_section
*p
;
8919 ULONGEST memend
= memaddr
+ len
;
8921 table
= target_get_section_table (this);
8923 for (p
= table
->sections
; p
< table
->sections_end
; p
++)
8925 if (memaddr
>= p
->addr
)
8927 if (memend
<= p
->endaddr
)
8929 /* Entire transfer is within this section. */
8930 return remote_read_bytes_1 (memaddr
, readbuf
, len
, unit_size
,
8933 else if (memaddr
>= p
->endaddr
)
8935 /* This section ends before the transfer starts. */
8940 /* This section overlaps the transfer. Just do half. */
8941 len
= p
->endaddr
- memaddr
;
8942 return remote_read_bytes_1 (memaddr
, readbuf
, len
, unit_size
,
8949 return TARGET_XFER_EOF
;
8952 /* Similar to remote_read_bytes_1, but it reads from the remote stub
8953 first if the requested memory is unavailable in traceframe.
8954 Otherwise, fall back to remote_read_bytes_1. */
8957 remote_target::remote_read_bytes (CORE_ADDR memaddr
,
8958 gdb_byte
*myaddr
, ULONGEST len
, int unit_size
,
8959 ULONGEST
*xfered_len
)
8962 return TARGET_XFER_EOF
;
8964 if (get_traceframe_number () != -1)
8966 std::vector
<mem_range
> available
;
8968 /* If we fail to get the set of available memory, then the
8969 target does not support querying traceframe info, and so we
8970 attempt reading from the traceframe anyway (assuming the
8971 target implements the old QTro packet then). */
8972 if (traceframe_available_memory (&available
, memaddr
, len
))
8974 if (available
.empty () || available
[0].start
!= memaddr
)
8976 enum target_xfer_status res
;
8978 /* Don't read into the traceframe's available
8980 if (!available
.empty ())
8982 LONGEST oldlen
= len
;
8984 len
= available
[0].start
- memaddr
;
8985 gdb_assert (len
<= oldlen
);
8988 /* This goes through the topmost target again. */
8989 res
= remote_xfer_live_readonly_partial (myaddr
, memaddr
,
8990 len
, unit_size
, xfered_len
);
8991 if (res
== TARGET_XFER_OK
)
8992 return TARGET_XFER_OK
;
8995 /* No use trying further, we know some memory starting
8996 at MEMADDR isn't available. */
8998 return (*xfered_len
!= 0) ?
8999 TARGET_XFER_UNAVAILABLE
: TARGET_XFER_EOF
;
9003 /* Don't try to read more than how much is available, in
9004 case the target implements the deprecated QTro packet to
9005 cater for older GDBs (the target's knowledge of read-only
9006 sections may be outdated by now). */
9007 len
= available
[0].length
;
9011 return remote_read_bytes_1 (memaddr
, myaddr
, len
, unit_size
, xfered_len
);
9016 /* Sends a packet with content determined by the printf format string
9017 FORMAT and the remaining arguments, then gets the reply. Returns
9018 whether the packet was a success, a failure, or unknown. */
9021 remote_target::remote_send_printf (const char *format
, ...)
9023 struct remote_state
*rs
= get_remote_state ();
9024 int max_size
= get_remote_packet_size ();
9027 va_start (ap
, format
);
9030 if (vsnprintf (rs
->buf
, max_size
, format
, ap
) >= max_size
)
9031 internal_error (__FILE__
, __LINE__
, _("Too long remote packet."));
9033 if (putpkt (rs
->buf
) < 0)
9034 error (_("Communication problem with target."));
9037 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
9039 return packet_check_result (rs
->buf
);
9042 /* Flash writing can take quite some time. We'll set
9043 effectively infinite timeout for flash operations.
9044 In future, we'll need to decide on a better approach. */
9045 static const int remote_flash_timeout
= 1000;
9048 remote_target::flash_erase (ULONGEST address
, LONGEST length
)
9050 int addr_size
= gdbarch_addr_bit (target_gdbarch ()) / 8;
9051 enum packet_result ret
;
9052 scoped_restore restore_timeout
9053 = make_scoped_restore (&remote_timeout
, remote_flash_timeout
);
9055 ret
= remote_send_printf ("vFlashErase:%s,%s",
9056 phex (address
, addr_size
),
9060 case PACKET_UNKNOWN
:
9061 error (_("Remote target does not support flash erase"));
9063 error (_("Error erasing flash with vFlashErase packet"));
9070 remote_target::remote_flash_write (ULONGEST address
,
9071 ULONGEST length
, ULONGEST
*xfered_len
,
9072 const gdb_byte
*data
)
9074 scoped_restore restore_timeout
9075 = make_scoped_restore (&remote_timeout
, remote_flash_timeout
);
9076 return remote_write_bytes_aux ("vFlashWrite:", address
, data
, length
, 1,
9081 remote_target::flash_done ()
9085 scoped_restore restore_timeout
9086 = make_scoped_restore (&remote_timeout
, remote_flash_timeout
);
9088 ret
= remote_send_printf ("vFlashDone");
9092 case PACKET_UNKNOWN
:
9093 error (_("Remote target does not support vFlashDone"));
9095 error (_("Error finishing flash operation"));
9102 remote_target::files_info ()
9104 puts_filtered ("Debugging a target over a serial line.\n");
9107 /* Stuff for dealing with the packets which are part of this protocol.
9108 See comment at top of file for details. */
9110 /* Close/unpush the remote target, and throw a TARGET_CLOSE_ERROR
9111 error to higher layers. Called when a serial error is detected.
9112 The exception message is STRING, followed by a colon and a blank,
9113 the system error message for errno at function entry and final dot
9114 for output compatibility with throw_perror_with_name. */
9117 unpush_and_perror (const char *string
)
9119 int saved_errno
= errno
;
9121 remote_unpush_target ();
9122 throw_error (TARGET_CLOSE_ERROR
, "%s: %s.", string
,
9123 safe_strerror (saved_errno
));
9126 /* Read a single character from the remote end. The current quit
9127 handler is overridden to avoid quitting in the middle of packet
9128 sequence, as that would break communication with the remote server.
9129 See remote_serial_quit_handler for more detail. */
9132 remote_target::readchar (int timeout
)
9135 struct remote_state
*rs
= get_remote_state ();
9138 scoped_restore restore_quit_target
9139 = make_scoped_restore (&curr_quit_handler_target
, this);
9140 scoped_restore restore_quit
9141 = make_scoped_restore (&quit_handler
, ::remote_serial_quit_handler
);
9143 rs
->got_ctrlc_during_io
= 0;
9145 ch
= serial_readchar (rs
->remote_desc
, timeout
);
9147 if (rs
->got_ctrlc_during_io
)
9154 switch ((enum serial_rc
) ch
)
9157 remote_unpush_target ();
9158 throw_error (TARGET_CLOSE_ERROR
, _("Remote connection closed"));
9161 unpush_and_perror (_("Remote communication error. "
9162 "Target disconnected."));
9164 case SERIAL_TIMEOUT
:
9170 /* Wrapper for serial_write that closes the target and throws if
9171 writing fails. The current quit handler is overridden to avoid
9172 quitting in the middle of packet sequence, as that would break
9173 communication with the remote server. See
9174 remote_serial_quit_handler for more detail. */
9177 remote_target::remote_serial_write (const char *str
, int len
)
9179 struct remote_state
*rs
= get_remote_state ();
9181 scoped_restore restore_quit_target
9182 = make_scoped_restore (&curr_quit_handler_target
, this);
9183 scoped_restore restore_quit
9184 = make_scoped_restore (&quit_handler
, ::remote_serial_quit_handler
);
9186 rs
->got_ctrlc_during_io
= 0;
9188 if (serial_write (rs
->remote_desc
, str
, len
))
9190 unpush_and_perror (_("Remote communication error. "
9191 "Target disconnected."));
9194 if (rs
->got_ctrlc_during_io
)
9198 /* Return a string representing an escaped version of BUF, of len N.
9199 E.g. \n is converted to \\n, \t to \\t, etc. */
9202 escape_buffer (const char *buf
, int n
)
9206 stb
.putstrn (buf
, n
, '\\');
9207 return std::move (stb
.string ());
9210 /* Display a null-terminated packet on stdout, for debugging, using C
9214 print_packet (const char *buf
)
9216 puts_filtered ("\"");
9217 fputstr_filtered (buf
, '"', gdb_stdout
);
9218 puts_filtered ("\"");
9222 remote_target::putpkt (const char *buf
)
9224 return putpkt_binary (buf
, strlen (buf
));
9227 /* Wrapper around remote_target::putpkt to avoid exporting
9231 putpkt (remote_target
*remote
, const char *buf
)
9233 return remote
->putpkt (buf
);
9236 /* Send a packet to the remote machine, with error checking. The data
9237 of the packet is in BUF. The string in BUF can be at most
9238 get_remote_packet_size () - 5 to account for the $, # and checksum,
9239 and for a possible /0 if we are debugging (remote_debug) and want
9240 to print the sent packet as a string. */
9243 remote_target::putpkt_binary (const char *buf
, int cnt
)
9245 struct remote_state
*rs
= get_remote_state ();
9247 unsigned char csum
= 0;
9248 gdb::def_vector
<char> data (cnt
+ 6);
9249 char *buf2
= data
.data ();
9255 /* Catch cases like trying to read memory or listing threads while
9256 we're waiting for a stop reply. The remote server wouldn't be
9257 ready to handle this request, so we'd hang and timeout. We don't
9258 have to worry about this in synchronous mode, because in that
9259 case it's not possible to issue a command while the target is
9260 running. This is not a problem in non-stop mode, because in that
9261 case, the stub is always ready to process serial input. */
9262 if (!target_is_non_stop_p ()
9263 && target_is_async_p ()
9264 && rs
->waiting_for_stop_reply
)
9266 error (_("Cannot execute this command while the target is running.\n"
9267 "Use the \"interrupt\" command to stop the target\n"
9268 "and then try again."));
9271 /* We're sending out a new packet. Make sure we don't look at a
9272 stale cached response. */
9273 rs
->cached_wait_status
= 0;
9275 /* Copy the packet into buffer BUF2, encapsulating it
9276 and giving it a checksum. */
9281 for (i
= 0; i
< cnt
; i
++)
9287 *p
++ = tohex ((csum
>> 4) & 0xf);
9288 *p
++ = tohex (csum
& 0xf);
9290 /* Send it over and over until we get a positive ack. */
9294 int started_error_output
= 0;
9300 int len
= (int) (p
- buf2
);
9303 = escape_buffer (buf2
, std::min (len
, REMOTE_DEBUG_MAX_CHAR
));
9305 fprintf_unfiltered (gdb_stdlog
, "Sending packet: %s", str
.c_str ());
9307 if (len
> REMOTE_DEBUG_MAX_CHAR
)
9308 fprintf_unfiltered (gdb_stdlog
, "[%d bytes omitted]",
9309 len
- REMOTE_DEBUG_MAX_CHAR
);
9311 fprintf_unfiltered (gdb_stdlog
, "...");
9313 gdb_flush (gdb_stdlog
);
9315 remote_serial_write (buf2
, p
- buf2
);
9317 /* If this is a no acks version of the remote protocol, send the
9318 packet and move on. */
9322 /* Read until either a timeout occurs (-2) or '+' is read.
9323 Handle any notification that arrives in the mean time. */
9326 ch
= readchar (remote_timeout
);
9334 case SERIAL_TIMEOUT
:
9337 if (started_error_output
)
9339 putchar_unfiltered ('\n');
9340 started_error_output
= 0;
9349 fprintf_unfiltered (gdb_stdlog
, "Ack\n");
9353 fprintf_unfiltered (gdb_stdlog
, "Nak\n");
9355 case SERIAL_TIMEOUT
:
9359 break; /* Retransmit buffer. */
9363 fprintf_unfiltered (gdb_stdlog
,
9364 "Packet instead of Ack, ignoring it\n");
9365 /* It's probably an old response sent because an ACK
9366 was lost. Gobble up the packet and ack it so it
9367 doesn't get retransmitted when we resend this
9370 remote_serial_write ("+", 1);
9371 continue; /* Now, go look for +. */
9378 /* If we got a notification, handle it, and go back to looking
9380 /* We've found the start of a notification. Now
9381 collect the data. */
9382 val
= read_frame (&rs
->buf
, &rs
->buf_size
);
9387 std::string str
= escape_buffer (rs
->buf
, val
);
9389 fprintf_unfiltered (gdb_stdlog
,
9390 " Notification received: %s\n",
9393 handle_notification (rs
->notif_state
, rs
->buf
);
9394 /* We're in sync now, rewait for the ack. */
9401 if (!started_error_output
)
9403 started_error_output
= 1;
9404 fprintf_unfiltered (gdb_stdlog
, "putpkt: Junk: ");
9406 fputc_unfiltered (ch
& 0177, gdb_stdlog
);
9407 fprintf_unfiltered (gdb_stdlog
, "%s", rs
->buf
);
9416 if (!started_error_output
)
9418 started_error_output
= 1;
9419 fprintf_unfiltered (gdb_stdlog
, "putpkt: Junk: ");
9421 fputc_unfiltered (ch
& 0177, gdb_stdlog
);
9425 break; /* Here to retransmit. */
9429 /* This is wrong. If doing a long backtrace, the user should be
9430 able to get out next time we call QUIT, without anything as
9431 violent as interrupt_query. If we want to provide a way out of
9432 here without getting to the next QUIT, it should be based on
9433 hitting ^C twice as in remote_wait. */
9445 /* Come here after finding the start of a frame when we expected an
9446 ack. Do our best to discard the rest of this packet. */
9449 remote_target::skip_frame ()
9455 c
= readchar (remote_timeout
);
9458 case SERIAL_TIMEOUT
:
9459 /* Nothing we can do. */
9462 /* Discard the two bytes of checksum and stop. */
9463 c
= readchar (remote_timeout
);
9465 c
= readchar (remote_timeout
);
9468 case '*': /* Run length encoding. */
9469 /* Discard the repeat count. */
9470 c
= readchar (remote_timeout
);
9475 /* A regular character. */
9481 /* Come here after finding the start of the frame. Collect the rest
9482 into *BUF, verifying the checksum, length, and handling run-length
9483 compression. NUL terminate the buffer. If there is not enough room,
9484 expand *BUF using xrealloc.
9486 Returns -1 on error, number of characters in buffer (ignoring the
9487 trailing NULL) on success. (could be extended to return one of the
9488 SERIAL status indications). */
9491 remote_target::read_frame (char **buf_p
, long *sizeof_buf
)
9497 struct remote_state
*rs
= get_remote_state ();
9504 c
= readchar (remote_timeout
);
9507 case SERIAL_TIMEOUT
:
9509 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog
);
9513 fputs_filtered ("Saw new packet start in middle of old one\n",
9515 return -1; /* Start a new packet, count retries. */
9518 unsigned char pktcsum
;
9524 check_0
= readchar (remote_timeout
);
9526 check_1
= readchar (remote_timeout
);
9528 if (check_0
== SERIAL_TIMEOUT
|| check_1
== SERIAL_TIMEOUT
)
9531 fputs_filtered ("Timeout in checksum, retrying\n",
9535 else if (check_0
< 0 || check_1
< 0)
9538 fputs_filtered ("Communication error in checksum\n",
9543 /* Don't recompute the checksum; with no ack packets we
9544 don't have any way to indicate a packet retransmission
9549 pktcsum
= (fromhex (check_0
) << 4) | fromhex (check_1
);
9550 if (csum
== pktcsum
)
9555 std::string str
= escape_buffer (buf
, bc
);
9557 fprintf_unfiltered (gdb_stdlog
,
9558 "Bad checksum, sentsum=0x%x, "
9559 "csum=0x%x, buf=%s\n",
9560 pktcsum
, csum
, str
.c_str ());
9562 /* Number of characters in buffer ignoring trailing
9566 case '*': /* Run length encoding. */
9571 c
= readchar (remote_timeout
);
9573 repeat
= c
- ' ' + 3; /* Compute repeat count. */
9575 /* The character before ``*'' is repeated. */
9577 if (repeat
> 0 && repeat
<= 255 && bc
> 0)
9579 if (bc
+ repeat
- 1 >= *sizeof_buf
- 1)
9581 /* Make some more room in the buffer. */
9582 *sizeof_buf
+= repeat
;
9583 *buf_p
= (char *) xrealloc (*buf_p
, *sizeof_buf
);
9587 memset (&buf
[bc
], buf
[bc
- 1], repeat
);
9593 printf_filtered (_("Invalid run length encoding: %s\n"), buf
);
9597 if (bc
>= *sizeof_buf
- 1)
9599 /* Make some more room in the buffer. */
9601 *buf_p
= (char *) xrealloc (*buf_p
, *sizeof_buf
);
9612 /* Read a packet from the remote machine, with error checking, and
9613 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
9614 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
9615 rather than timing out; this is used (in synchronous mode) to wait
9616 for a target that is is executing user code to stop. */
9617 /* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
9618 don't have to change all the calls to getpkt to deal with the
9619 return value, because at the moment I don't know what the right
9620 thing to do it for those. */
9623 remote_target::getpkt (char **buf
, long *sizeof_buf
, int forever
)
9625 getpkt_sane (buf
, sizeof_buf
, forever
);
9629 /* Read a packet from the remote machine, with error checking, and
9630 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
9631 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
9632 rather than timing out; this is used (in synchronous mode) to wait
9633 for a target that is is executing user code to stop. If FOREVER ==
9634 0, this function is allowed to time out gracefully and return an
9635 indication of this to the caller. Otherwise return the number of
9636 bytes read. If EXPECTING_NOTIF, consider receiving a notification
9637 enough reason to return to the caller. *IS_NOTIF is an output
9638 boolean that indicates whether *BUF holds a notification or not
9639 (a regular packet). */
9642 remote_target::getpkt_or_notif_sane_1 (char **buf
, long *sizeof_buf
,
9643 int forever
, int expecting_notif
,
9646 struct remote_state
*rs
= get_remote_state ();
9652 /* We're reading a new response. Make sure we don't look at a
9653 previously cached response. */
9654 rs
->cached_wait_status
= 0;
9656 strcpy (*buf
, "timeout");
9659 timeout
= watchdog
> 0 ? watchdog
: -1;
9660 else if (expecting_notif
)
9661 timeout
= 0; /* There should already be a char in the buffer. If
9664 timeout
= remote_timeout
;
9668 /* Process any number of notifications, and then return when
9672 /* If we get a timeout or bad checksum, retry up to MAX_TRIES
9674 for (tries
= 1; tries
<= MAX_TRIES
; tries
++)
9676 /* This can loop forever if the remote side sends us
9677 characters continuously, but if it pauses, we'll get
9678 SERIAL_TIMEOUT from readchar because of timeout. Then
9679 we'll count that as a retry.
9681 Note that even when forever is set, we will only wait
9682 forever prior to the start of a packet. After that, we
9683 expect characters to arrive at a brisk pace. They should
9684 show up within remote_timeout intervals. */
9686 c
= readchar (timeout
);
9687 while (c
!= SERIAL_TIMEOUT
&& c
!= '$' && c
!= '%');
9689 if (c
== SERIAL_TIMEOUT
)
9691 if (expecting_notif
)
9692 return -1; /* Don't complain, it's normal to not get
9693 anything in this case. */
9695 if (forever
) /* Watchdog went off? Kill the target. */
9697 remote_unpush_target ();
9698 throw_error (TARGET_CLOSE_ERROR
,
9699 _("Watchdog timeout has expired. "
9700 "Target detached."));
9703 fputs_filtered ("Timed out.\n", gdb_stdlog
);
9707 /* We've found the start of a packet or notification.
9708 Now collect the data. */
9709 val
= read_frame (buf
, sizeof_buf
);
9714 remote_serial_write ("-", 1);
9717 if (tries
> MAX_TRIES
)
9719 /* We have tried hard enough, and just can't receive the
9720 packet/notification. Give up. */
9721 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
9723 /* Skip the ack char if we're in no-ack mode. */
9724 if (!rs
->noack_mode
)
9725 remote_serial_write ("+", 1);
9729 /* If we got an ordinary packet, return that to our caller. */
9735 = escape_buffer (*buf
,
9736 std::min (val
, REMOTE_DEBUG_MAX_CHAR
));
9738 fprintf_unfiltered (gdb_stdlog
, "Packet received: %s",
9741 if (val
> REMOTE_DEBUG_MAX_CHAR
)
9742 fprintf_unfiltered (gdb_stdlog
, "[%d bytes omitted]",
9743 val
- REMOTE_DEBUG_MAX_CHAR
);
9745 fprintf_unfiltered (gdb_stdlog
, "\n");
9748 /* Skip the ack char if we're in no-ack mode. */
9749 if (!rs
->noack_mode
)
9750 remote_serial_write ("+", 1);
9751 if (is_notif
!= NULL
)
9756 /* If we got a notification, handle it, and go back to looking
9760 gdb_assert (c
== '%');
9764 std::string str
= escape_buffer (*buf
, val
);
9766 fprintf_unfiltered (gdb_stdlog
,
9767 " Notification received: %s\n",
9770 if (is_notif
!= NULL
)
9773 handle_notification (rs
->notif_state
, *buf
);
9775 /* Notifications require no acknowledgement. */
9777 if (expecting_notif
)
9784 remote_target::getpkt_sane (char **buf
, long *sizeof_buf
, int forever
)
9786 return getpkt_or_notif_sane_1 (buf
, sizeof_buf
, forever
, 0, NULL
);
9790 remote_target::getpkt_or_notif_sane (char **buf
, long *sizeof_buf
, int forever
,
9793 return getpkt_or_notif_sane_1 (buf
, sizeof_buf
, forever
, 1,
9797 /* Check whether EVENT is a fork event for the process specified
9798 by the pid passed in DATA, and if it is, kill the fork child. */
9801 remote_kill_child_of_pending_fork (QUEUE (stop_reply_p
) *q
,
9802 QUEUE_ITER (stop_reply_p
) *iter
,
9806 struct queue_iter_param
*param
= (struct queue_iter_param
*) data
;
9807 int parent_pid
= *(int *) param
->input
;
9809 if (is_pending_fork_parent (&event
->ws
, parent_pid
, event
->ptid
))
9811 remote_target
*remote
= param
->remote
;
9812 int child_pid
= ptid_get_pid (event
->ws
.value
.related_pid
);
9815 res
= remote
->remote_vkill (child_pid
);
9817 error (_("Can't kill fork child process %d"), child_pid
);
9823 /* Kill any new fork children of process PID that haven't been
9824 processed by follow_fork. */
9827 remote_target::kill_new_fork_children (int pid
)
9829 remote_state
*rs
= get_remote_state ();
9830 struct thread_info
*thread
;
9831 struct notif_client
*notif
= ¬if_client_stop
;
9832 struct queue_iter_param param
;
9834 /* Kill the fork child threads of any threads in process PID
9835 that are stopped at a fork event. */
9836 ALL_NON_EXITED_THREADS (thread
)
9838 struct target_waitstatus
*ws
= &thread
->pending_follow
;
9840 if (is_pending_fork_parent (ws
, pid
, thread
->ptid
))
9842 int child_pid
= ptid_get_pid (ws
->value
.related_pid
);
9845 res
= remote_vkill (child_pid
);
9847 error (_("Can't kill fork child process %d"), child_pid
);
9851 /* Check for any pending fork events (not reported or processed yet)
9852 in process PID and kill those fork child threads as well. */
9853 remote_notif_get_pending_events (notif
);
9854 param
.remote
= this;
9856 param
.output
= NULL
;
9857 QUEUE_iterate (stop_reply_p
, rs
->stop_reply_queue
,
9858 remote_kill_child_of_pending_fork
, ¶m
);
9862 /* Target hook to kill the current inferior. */
9865 remote_target::kill ()
9868 int pid
= ptid_get_pid (inferior_ptid
);
9869 struct remote_state
*rs
= get_remote_state ();
9871 if (packet_support (PACKET_vKill
) != PACKET_DISABLE
)
9873 /* If we're stopped while forking and we haven't followed yet,
9874 kill the child task. We need to do this before killing the
9875 parent task because if this is a vfork then the parent will
9877 kill_new_fork_children (pid
);
9879 res
= remote_vkill (pid
);
9882 target_mourn_inferior (inferior_ptid
);
9887 /* If we are in 'target remote' mode and we are killing the only
9888 inferior, then we will tell gdbserver to exit and unpush the
9890 if (res
== -1 && !remote_multi_process_p (rs
)
9891 && number_of_live_inferiors () == 1)
9895 /* We've killed the remote end, we get to mourn it. If we are
9896 not in extended mode, mourning the inferior also unpushes
9897 remote_ops from the target stack, which closes the remote
9899 target_mourn_inferior (inferior_ptid
);
9904 error (_("Can't kill process"));
9907 /* Send a kill request to the target using the 'vKill' packet. */
9910 remote_target::remote_vkill (int pid
)
9912 if (packet_support (PACKET_vKill
) == PACKET_DISABLE
)
9915 remote_state
*rs
= get_remote_state ();
9917 /* Tell the remote target to detach. */
9918 xsnprintf (rs
->buf
, get_remote_packet_size (), "vKill;%x", pid
);
9920 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
9922 switch (packet_ok (rs
->buf
,
9923 &remote_protocol_packets
[PACKET_vKill
]))
9929 case PACKET_UNKNOWN
:
9932 internal_error (__FILE__
, __LINE__
, _("Bad result from packet_ok"));
9936 /* Send a kill request to the target using the 'k' packet. */
9939 remote_target::remote_kill_k ()
9941 /* Catch errors so the user can quit from gdb even when we
9942 aren't on speaking terms with the remote system. */
9947 CATCH (ex
, RETURN_MASK_ERROR
)
9949 if (ex
.error
== TARGET_CLOSE_ERROR
)
9951 /* If we got an (EOF) error that caused the target
9952 to go away, then we're done, that's what we wanted.
9953 "k" is susceptible to cause a premature EOF, given
9954 that the remote server isn't actually required to
9955 reply to "k", and it can happen that it doesn't
9956 even get to reply ACK to the "k". */
9960 /* Otherwise, something went wrong. We didn't actually kill
9961 the target. Just propagate the exception, and let the
9962 user or higher layers decide what to do. */
9963 throw_exception (ex
);
9969 remote_target::mourn_inferior ()
9971 struct remote_state
*rs
= get_remote_state ();
9973 /* We're no longer interested in notification events of an inferior
9974 that exited or was killed/detached. */
9975 discard_pending_stop_replies (current_inferior ());
9977 /* In 'target remote' mode with one inferior, we close the connection. */
9978 if (!rs
->extended
&& number_of_live_inferiors () <= 1)
9980 unpush_target (this);
9982 /* remote_close takes care of doing most of the clean up. */
9983 generic_mourn_inferior ();
9987 /* In case we got here due to an error, but we're going to stay
9989 rs
->waiting_for_stop_reply
= 0;
9991 /* If the current general thread belonged to the process we just
9992 detached from or has exited, the remote side current general
9993 thread becomes undefined. Considering a case like this:
9995 - We just got here due to a detach.
9996 - The process that we're detaching from happens to immediately
9997 report a global breakpoint being hit in non-stop mode, in the
9998 same thread we had selected before.
9999 - GDB attaches to this process again.
10000 - This event happens to be the next event we handle.
10002 GDB would consider that the current general thread didn't need to
10003 be set on the stub side (with Hg), since for all it knew,
10004 GENERAL_THREAD hadn't changed.
10006 Notice that although in all-stop mode, the remote server always
10007 sets the current thread to the thread reporting the stop event,
10008 that doesn't happen in non-stop mode; in non-stop, the stub *must
10009 not* change the current thread when reporting a breakpoint hit,
10010 due to the decoupling of event reporting and event handling.
10012 To keep things simple, we always invalidate our notion of the
10014 record_currthread (rs
, minus_one_ptid
);
10016 /* Call common code to mark the inferior as not running. */
10017 generic_mourn_inferior ();
10019 if (!have_inferiors ())
10021 if (!remote_multi_process_p (rs
))
10023 /* Check whether the target is running now - some remote stubs
10024 automatically restart after kill. */
10026 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
10028 if (rs
->buf
[0] == 'S' || rs
->buf
[0] == 'T')
10030 /* Assume that the target has been restarted. Set
10031 inferior_ptid so that bits of core GDB realizes
10032 there's something here, e.g., so that the user can
10033 say "kill" again. */
10034 inferior_ptid
= magic_null_ptid
;
10041 extended_remote_target::supports_disable_randomization ()
10043 return packet_support (PACKET_QDisableRandomization
) == PACKET_ENABLE
;
10047 remote_target::extended_remote_disable_randomization (int val
)
10049 struct remote_state
*rs
= get_remote_state ();
10052 xsnprintf (rs
->buf
, get_remote_packet_size (), "QDisableRandomization:%x",
10055 reply
= remote_get_noisy_reply ();
10056 if (*reply
== '\0')
10057 error (_("Target does not support QDisableRandomization."));
10058 if (strcmp (reply
, "OK") != 0)
10059 error (_("Bogus QDisableRandomization reply from target: %s"), reply
);
10063 remote_target::extended_remote_run (const std::string
&args
)
10065 struct remote_state
*rs
= get_remote_state ();
10067 const char *remote_exec_file
= get_remote_exec_file ();
10069 /* If the user has disabled vRun support, or we have detected that
10070 support is not available, do not try it. */
10071 if (packet_support (PACKET_vRun
) == PACKET_DISABLE
)
10074 strcpy (rs
->buf
, "vRun;");
10075 len
= strlen (rs
->buf
);
10077 if (strlen (remote_exec_file
) * 2 + len
>= get_remote_packet_size ())
10078 error (_("Remote file name too long for run packet"));
10079 len
+= 2 * bin2hex ((gdb_byte
*) remote_exec_file
, rs
->buf
+ len
,
10080 strlen (remote_exec_file
));
10082 if (!args
.empty ())
10086 gdb_argv
argv (args
.c_str ());
10087 for (i
= 0; argv
[i
] != NULL
; i
++)
10089 if (strlen (argv
[i
]) * 2 + 1 + len
>= get_remote_packet_size ())
10090 error (_("Argument list too long for run packet"));
10091 rs
->buf
[len
++] = ';';
10092 len
+= 2 * bin2hex ((gdb_byte
*) argv
[i
], rs
->buf
+ len
,
10097 rs
->buf
[len
++] = '\0';
10100 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
10102 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_vRun
]))
10105 /* We have a wait response. All is well. */
10107 case PACKET_UNKNOWN
:
10110 if (remote_exec_file
[0] == '\0')
10111 error (_("Running the default executable on the remote target failed; "
10112 "try \"set remote exec-file\"?"));
10114 error (_("Running \"%s\" on the remote target failed"),
10117 gdb_assert_not_reached (_("bad switch"));
10121 /* Helper function to send set/unset environment packets. ACTION is
10122 either "set" or "unset". PACKET is either "QEnvironmentHexEncoded"
10123 or "QEnvironmentUnsetVariable". VALUE is the variable to be
10127 remote_target::send_environment_packet (const char *action
,
10128 const char *packet
,
10131 remote_state
*rs
= get_remote_state ();
10133 /* Convert the environment variable to an hex string, which
10134 is the best format to be transmitted over the wire. */
10135 std::string encoded_value
= bin2hex ((const gdb_byte
*) value
,
10138 xsnprintf (rs
->buf
, get_remote_packet_size (),
10139 "%s:%s", packet
, encoded_value
.c_str ());
10142 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
10143 if (strcmp (rs
->buf
, "OK") != 0)
10144 warning (_("Unable to %s environment variable '%s' on remote."),
10148 /* Helper function to handle the QEnvironment* packets. */
10151 remote_target::extended_remote_environment_support ()
10153 remote_state
*rs
= get_remote_state ();
10155 if (packet_support (PACKET_QEnvironmentReset
) != PACKET_DISABLE
)
10157 putpkt ("QEnvironmentReset");
10158 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
10159 if (strcmp (rs
->buf
, "OK") != 0)
10160 warning (_("Unable to reset environment on remote."));
10163 gdb_environ
*e
= ¤t_inferior ()->environment
;
10165 if (packet_support (PACKET_QEnvironmentHexEncoded
) != PACKET_DISABLE
)
10166 for (const std::string
&el
: e
->user_set_env ())
10167 send_environment_packet ("set", "QEnvironmentHexEncoded",
10170 if (packet_support (PACKET_QEnvironmentUnset
) != PACKET_DISABLE
)
10171 for (const std::string
&el
: e
->user_unset_env ())
10172 send_environment_packet ("unset", "QEnvironmentUnset", el
.c_str ());
10175 /* Helper function to set the current working directory for the
10176 inferior in the remote target. */
10179 remote_target::extended_remote_set_inferior_cwd ()
10181 if (packet_support (PACKET_QSetWorkingDir
) != PACKET_DISABLE
)
10183 const char *inferior_cwd
= get_inferior_cwd ();
10184 remote_state
*rs
= get_remote_state ();
10186 if (inferior_cwd
!= NULL
)
10188 std::string hexpath
= bin2hex ((const gdb_byte
*) inferior_cwd
,
10189 strlen (inferior_cwd
));
10191 xsnprintf (rs
->buf
, get_remote_packet_size (),
10192 "QSetWorkingDir:%s", hexpath
.c_str ());
10196 /* An empty inferior_cwd means that the user wants us to
10197 reset the remote server's inferior's cwd. */
10198 xsnprintf (rs
->buf
, get_remote_packet_size (),
10199 "QSetWorkingDir:");
10203 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
10204 if (packet_ok (rs
->buf
,
10205 &remote_protocol_packets
[PACKET_QSetWorkingDir
])
10208 Remote replied unexpectedly while setting the inferior's working\n\
10215 /* In the extended protocol we want to be able to do things like
10216 "run" and have them basically work as expected. So we need
10217 a special create_inferior function. We support changing the
10218 executable file and the command line arguments, but not the
10222 extended_remote_target::create_inferior (const char *exec_file
,
10223 const std::string
&args
,
10224 char **env
, int from_tty
)
10228 struct remote_state
*rs
= get_remote_state ();
10229 const char *remote_exec_file
= get_remote_exec_file ();
10231 /* If running asynchronously, register the target file descriptor
10232 with the event loop. */
10233 if (target_can_async_p ())
10236 /* Disable address space randomization if requested (and supported). */
10237 if (supports_disable_randomization ())
10238 extended_remote_disable_randomization (disable_randomization
);
10240 /* If startup-with-shell is on, we inform gdbserver to start the
10241 remote inferior using a shell. */
10242 if (packet_support (PACKET_QStartupWithShell
) != PACKET_DISABLE
)
10244 xsnprintf (rs
->buf
, get_remote_packet_size (),
10245 "QStartupWithShell:%d", startup_with_shell
? 1 : 0);
10247 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
10248 if (strcmp (rs
->buf
, "OK") != 0)
10250 Remote replied unexpectedly while setting startup-with-shell: %s"),
10254 extended_remote_environment_support ();
10256 extended_remote_set_inferior_cwd ();
10258 /* Now restart the remote server. */
10259 run_worked
= extended_remote_run (args
) != -1;
10262 /* vRun was not supported. Fail if we need it to do what the
10264 if (remote_exec_file
[0])
10265 error (_("Remote target does not support \"set remote exec-file\""));
10266 if (!args
.empty ())
10267 error (_("Remote target does not support \"set args\" or run <ARGS>"));
10269 /* Fall back to "R". */
10270 extended_remote_restart ();
10273 if (!have_inferiors ())
10275 /* Clean up from the last time we ran, before we mark the target
10276 running again. This will mark breakpoints uninserted, and
10277 get_offsets may insert breakpoints. */
10278 init_thread_list ();
10279 init_wait_for_inferior ();
10282 /* vRun's success return is a stop reply. */
10283 stop_reply
= run_worked
? rs
->buf
: NULL
;
10284 add_current_inferior_and_thread (stop_reply
);
10286 /* Get updated offsets, if the stub uses qOffsets. */
10291 /* Given a location's target info BP_TGT and the packet buffer BUF, output
10292 the list of conditions (in agent expression bytecode format), if any, the
10293 target needs to evaluate. The output is placed into the packet buffer
10294 started from BUF and ended at BUF_END. */
10297 remote_add_target_side_condition (struct gdbarch
*gdbarch
,
10298 struct bp_target_info
*bp_tgt
, char *buf
,
10301 if (bp_tgt
->conditions
.empty ())
10304 buf
+= strlen (buf
);
10305 xsnprintf (buf
, buf_end
- buf
, "%s", ";");
10308 /* Send conditions to the target. */
10309 for (agent_expr
*aexpr
: bp_tgt
->conditions
)
10311 xsnprintf (buf
, buf_end
- buf
, "X%x,", aexpr
->len
);
10312 buf
+= strlen (buf
);
10313 for (int i
= 0; i
< aexpr
->len
; ++i
)
10314 buf
= pack_hex_byte (buf
, aexpr
->buf
[i
]);
10321 remote_add_target_side_commands (struct gdbarch
*gdbarch
,
10322 struct bp_target_info
*bp_tgt
, char *buf
)
10324 if (bp_tgt
->tcommands
.empty ())
10327 buf
+= strlen (buf
);
10329 sprintf (buf
, ";cmds:%x,", bp_tgt
->persist
);
10330 buf
+= strlen (buf
);
10332 /* Concatenate all the agent expressions that are commands into the
10334 for (agent_expr
*aexpr
: bp_tgt
->tcommands
)
10336 sprintf (buf
, "X%x,", aexpr
->len
);
10337 buf
+= strlen (buf
);
10338 for (int i
= 0; i
< aexpr
->len
; ++i
)
10339 buf
= pack_hex_byte (buf
, aexpr
->buf
[i
]);
10344 /* Insert a breakpoint. On targets that have software breakpoint
10345 support, we ask the remote target to do the work; on targets
10346 which don't, we insert a traditional memory breakpoint. */
10349 remote_target::insert_breakpoint (struct gdbarch
*gdbarch
,
10350 struct bp_target_info
*bp_tgt
)
10352 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
10353 If it succeeds, then set the support to PACKET_ENABLE. If it
10354 fails, and the user has explicitly requested the Z support then
10355 report an error, otherwise, mark it disabled and go on. */
10357 if (packet_support (PACKET_Z0
) != PACKET_DISABLE
)
10359 CORE_ADDR addr
= bp_tgt
->reqstd_address
;
10360 struct remote_state
*rs
;
10363 /* Make sure the remote is pointing at the right process, if
10365 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10366 set_general_process ();
10368 rs
= get_remote_state ();
10370 endbuf
= rs
->buf
+ get_remote_packet_size ();
10375 addr
= (ULONGEST
) remote_address_masked (addr
);
10376 p
+= hexnumstr (p
, addr
);
10377 xsnprintf (p
, endbuf
- p
, ",%d", bp_tgt
->kind
);
10379 if (supports_evaluation_of_breakpoint_conditions ())
10380 remote_add_target_side_condition (gdbarch
, bp_tgt
, p
, endbuf
);
10382 if (can_run_breakpoint_commands ())
10383 remote_add_target_side_commands (gdbarch
, bp_tgt
, p
);
10386 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
10388 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_Z0
]))
10394 case PACKET_UNKNOWN
:
10399 /* If this breakpoint has target-side commands but this stub doesn't
10400 support Z0 packets, throw error. */
10401 if (!bp_tgt
->tcommands
.empty ())
10402 throw_error (NOT_SUPPORTED_ERROR
, _("\
10403 Target doesn't support breakpoints that have target side commands."));
10405 return memory_insert_breakpoint (this, gdbarch
, bp_tgt
);
10409 remote_target::remove_breakpoint (struct gdbarch
*gdbarch
,
10410 struct bp_target_info
*bp_tgt
,
10411 enum remove_bp_reason reason
)
10413 CORE_ADDR addr
= bp_tgt
->placed_address
;
10414 struct remote_state
*rs
= get_remote_state ();
10416 if (packet_support (PACKET_Z0
) != PACKET_DISABLE
)
10419 char *endbuf
= rs
->buf
+ get_remote_packet_size ();
10421 /* Make sure the remote is pointing at the right process, if
10423 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10424 set_general_process ();
10430 addr
= (ULONGEST
) remote_address_masked (bp_tgt
->placed_address
);
10431 p
+= hexnumstr (p
, addr
);
10432 xsnprintf (p
, endbuf
- p
, ",%d", bp_tgt
->kind
);
10435 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
10437 return (rs
->buf
[0] == 'E');
10440 return memory_remove_breakpoint (this, gdbarch
, bp_tgt
, reason
);
10443 static enum Z_packet_type
10444 watchpoint_to_Z_packet (int type
)
10449 return Z_PACKET_WRITE_WP
;
10452 return Z_PACKET_READ_WP
;
10455 return Z_PACKET_ACCESS_WP
;
10458 internal_error (__FILE__
, __LINE__
,
10459 _("hw_bp_to_z: bad watchpoint type %d"), type
);
10464 remote_target::insert_watchpoint (CORE_ADDR addr
, int len
,
10465 enum target_hw_bp_type type
, struct expression
*cond
)
10467 struct remote_state
*rs
= get_remote_state ();
10468 char *endbuf
= rs
->buf
+ get_remote_packet_size ();
10470 enum Z_packet_type packet
= watchpoint_to_Z_packet (type
);
10472 if (packet_support (PACKET_Z0
+ packet
) == PACKET_DISABLE
)
10475 /* Make sure the remote is pointing at the right process, if
10477 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10478 set_general_process ();
10480 xsnprintf (rs
->buf
, endbuf
- rs
->buf
, "Z%x,", packet
);
10481 p
= strchr (rs
->buf
, '\0');
10482 addr
= remote_address_masked (addr
);
10483 p
+= hexnumstr (p
, (ULONGEST
) addr
);
10484 xsnprintf (p
, endbuf
- p
, ",%x", len
);
10487 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
10489 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_Z0
+ packet
]))
10493 case PACKET_UNKNOWN
:
10498 internal_error (__FILE__
, __LINE__
,
10499 _("remote_insert_watchpoint: reached end of function"));
10503 remote_target::watchpoint_addr_within_range (CORE_ADDR addr
,
10504 CORE_ADDR start
, int length
)
10506 CORE_ADDR diff
= remote_address_masked (addr
- start
);
10508 return diff
< length
;
10513 remote_target::remove_watchpoint (CORE_ADDR addr
, int len
,
10514 enum target_hw_bp_type type
, struct expression
*cond
)
10516 struct remote_state
*rs
= get_remote_state ();
10517 char *endbuf
= rs
->buf
+ get_remote_packet_size ();
10519 enum Z_packet_type packet
= watchpoint_to_Z_packet (type
);
10521 if (packet_support (PACKET_Z0
+ packet
) == PACKET_DISABLE
)
10524 /* Make sure the remote is pointing at the right process, if
10526 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10527 set_general_process ();
10529 xsnprintf (rs
->buf
, endbuf
- rs
->buf
, "z%x,", packet
);
10530 p
= strchr (rs
->buf
, '\0');
10531 addr
= remote_address_masked (addr
);
10532 p
+= hexnumstr (p
, (ULONGEST
) addr
);
10533 xsnprintf (p
, endbuf
- p
, ",%x", len
);
10535 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
10537 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_Z0
+ packet
]))
10540 case PACKET_UNKNOWN
:
10545 internal_error (__FILE__
, __LINE__
,
10546 _("remote_remove_watchpoint: reached end of function"));
10550 int remote_hw_watchpoint_limit
= -1;
10551 int remote_hw_watchpoint_length_limit
= -1;
10552 int remote_hw_breakpoint_limit
= -1;
10555 remote_target::region_ok_for_hw_watchpoint (CORE_ADDR addr
, int len
)
10557 if (remote_hw_watchpoint_length_limit
== 0)
10559 else if (remote_hw_watchpoint_length_limit
< 0)
10561 else if (len
<= remote_hw_watchpoint_length_limit
)
10568 remote_target::can_use_hw_breakpoint (enum bptype type
, int cnt
, int ot
)
10570 if (type
== bp_hardware_breakpoint
)
10572 if (remote_hw_breakpoint_limit
== 0)
10574 else if (remote_hw_breakpoint_limit
< 0)
10576 else if (cnt
<= remote_hw_breakpoint_limit
)
10581 if (remote_hw_watchpoint_limit
== 0)
10583 else if (remote_hw_watchpoint_limit
< 0)
10587 else if (cnt
<= remote_hw_watchpoint_limit
)
10593 /* The to_stopped_by_sw_breakpoint method of target remote. */
10596 remote_target::stopped_by_sw_breakpoint ()
10598 struct thread_info
*thread
= inferior_thread ();
10600 return (thread
->priv
!= NULL
10601 && (get_remote_thread_info (thread
)->stop_reason
10602 == TARGET_STOPPED_BY_SW_BREAKPOINT
));
10605 /* The to_supports_stopped_by_sw_breakpoint method of target
10609 remote_target::supports_stopped_by_sw_breakpoint ()
10611 return (packet_support (PACKET_swbreak_feature
) == PACKET_ENABLE
);
10614 /* The to_stopped_by_hw_breakpoint method of target remote. */
10617 remote_target::stopped_by_hw_breakpoint ()
10619 struct thread_info
*thread
= inferior_thread ();
10621 return (thread
->priv
!= NULL
10622 && (get_remote_thread_info (thread
)->stop_reason
10623 == TARGET_STOPPED_BY_HW_BREAKPOINT
));
10626 /* The to_supports_stopped_by_hw_breakpoint method of target
10630 remote_target::supports_stopped_by_hw_breakpoint ()
10632 return (packet_support (PACKET_hwbreak_feature
) == PACKET_ENABLE
);
10636 remote_target::stopped_by_watchpoint ()
10638 struct thread_info
*thread
= inferior_thread ();
10640 return (thread
->priv
!= NULL
10641 && (get_remote_thread_info (thread
)->stop_reason
10642 == TARGET_STOPPED_BY_WATCHPOINT
));
10646 remote_target::stopped_data_address (CORE_ADDR
*addr_p
)
10648 struct thread_info
*thread
= inferior_thread ();
10650 if (thread
->priv
!= NULL
10651 && (get_remote_thread_info (thread
)->stop_reason
10652 == TARGET_STOPPED_BY_WATCHPOINT
))
10654 *addr_p
= get_remote_thread_info (thread
)->watch_data_address
;
10663 remote_target::insert_hw_breakpoint (struct gdbarch
*gdbarch
,
10664 struct bp_target_info
*bp_tgt
)
10666 CORE_ADDR addr
= bp_tgt
->reqstd_address
;
10667 struct remote_state
*rs
;
10671 if (packet_support (PACKET_Z1
) == PACKET_DISABLE
)
10674 /* Make sure the remote is pointing at the right process, if
10676 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10677 set_general_process ();
10679 rs
= get_remote_state ();
10681 endbuf
= rs
->buf
+ get_remote_packet_size ();
10687 addr
= remote_address_masked (addr
);
10688 p
+= hexnumstr (p
, (ULONGEST
) addr
);
10689 xsnprintf (p
, endbuf
- p
, ",%x", bp_tgt
->kind
);
10691 if (supports_evaluation_of_breakpoint_conditions ())
10692 remote_add_target_side_condition (gdbarch
, bp_tgt
, p
, endbuf
);
10694 if (can_run_breakpoint_commands ())
10695 remote_add_target_side_commands (gdbarch
, bp_tgt
, p
);
10698 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
10700 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_Z1
]))
10703 if (rs
->buf
[1] == '.')
10705 message
= strchr (rs
->buf
+ 2, '.');
10707 error (_("Remote failure reply: %s"), message
+ 1);
10710 case PACKET_UNKNOWN
:
10715 internal_error (__FILE__
, __LINE__
,
10716 _("remote_insert_hw_breakpoint: reached end of function"));
10721 remote_target::remove_hw_breakpoint (struct gdbarch
*gdbarch
,
10722 struct bp_target_info
*bp_tgt
)
10725 struct remote_state
*rs
= get_remote_state ();
10727 char *endbuf
= rs
->buf
+ get_remote_packet_size ();
10729 if (packet_support (PACKET_Z1
) == PACKET_DISABLE
)
10732 /* Make sure the remote is pointing at the right process, if
10734 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10735 set_general_process ();
10741 addr
= remote_address_masked (bp_tgt
->placed_address
);
10742 p
+= hexnumstr (p
, (ULONGEST
) addr
);
10743 xsnprintf (p
, endbuf
- p
, ",%x", bp_tgt
->kind
);
10746 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
10748 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[PACKET_Z1
]))
10751 case PACKET_UNKNOWN
:
10756 internal_error (__FILE__
, __LINE__
,
10757 _("remote_remove_hw_breakpoint: reached end of function"));
10760 /* Verify memory using the "qCRC:" request. */
10763 remote_target::verify_memory (const gdb_byte
*data
, CORE_ADDR lma
, ULONGEST size
)
10765 struct remote_state
*rs
= get_remote_state ();
10766 unsigned long host_crc
, target_crc
;
10769 /* It doesn't make sense to use qCRC if the remote target is
10770 connected but not running. */
10771 if (target_has_execution
&& packet_support (PACKET_qCRC
) != PACKET_DISABLE
)
10773 enum packet_result result
;
10775 /* Make sure the remote is pointing at the right process. */
10776 set_general_process ();
10778 /* FIXME: assumes lma can fit into long. */
10779 xsnprintf (rs
->buf
, get_remote_packet_size (), "qCRC:%lx,%lx",
10780 (long) lma
, (long) size
);
10783 /* Be clever; compute the host_crc before waiting for target
10785 host_crc
= xcrc32 (data
, size
, 0xffffffff);
10787 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
10789 result
= packet_ok (rs
->buf
,
10790 &remote_protocol_packets
[PACKET_qCRC
]);
10791 if (result
== PACKET_ERROR
)
10793 else if (result
== PACKET_OK
)
10795 for (target_crc
= 0, tmp
= &rs
->buf
[1]; *tmp
; tmp
++)
10796 target_crc
= target_crc
* 16 + fromhex (*tmp
);
10798 return (host_crc
== target_crc
);
10802 return simple_verify_memory (this, data
, lma
, size
);
10805 /* compare-sections command
10807 With no arguments, compares each loadable section in the exec bfd
10808 with the same memory range on the target, and reports mismatches.
10809 Useful for verifying the image on the target against the exec file. */
10812 compare_sections_command (const char *args
, int from_tty
)
10815 const char *sectname
;
10816 bfd_size_type size
;
10819 int mismatched
= 0;
10824 error (_("command cannot be used without an exec file"));
10826 if (args
!= NULL
&& strcmp (args
, "-r") == 0)
10832 for (s
= exec_bfd
->sections
; s
; s
= s
->next
)
10834 if (!(s
->flags
& SEC_LOAD
))
10835 continue; /* Skip non-loadable section. */
10837 if (read_only
&& (s
->flags
& SEC_READONLY
) == 0)
10838 continue; /* Skip writeable sections */
10840 size
= bfd_get_section_size (s
);
10842 continue; /* Skip zero-length section. */
10844 sectname
= bfd_get_section_name (exec_bfd
, s
);
10845 if (args
&& strcmp (args
, sectname
) != 0)
10846 continue; /* Not the section selected by user. */
10848 matched
= 1; /* Do this section. */
10851 gdb::byte_vector
sectdata (size
);
10852 bfd_get_section_contents (exec_bfd
, s
, sectdata
.data (), 0, size
);
10854 res
= target_verify_memory (sectdata
.data (), lma
, size
);
10857 error (_("target memory fault, section %s, range %s -- %s"), sectname
,
10858 paddress (target_gdbarch (), lma
),
10859 paddress (target_gdbarch (), lma
+ size
));
10861 printf_filtered ("Section %s, range %s -- %s: ", sectname
,
10862 paddress (target_gdbarch (), lma
),
10863 paddress (target_gdbarch (), lma
+ size
));
10865 printf_filtered ("matched.\n");
10868 printf_filtered ("MIS-MATCHED!\n");
10872 if (mismatched
> 0)
10873 warning (_("One or more sections of the target image does not match\n\
10874 the loaded file\n"));
10875 if (args
&& !matched
)
10876 printf_filtered (_("No loaded section named '%s'.\n"), args
);
10879 /* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
10880 into remote target. The number of bytes written to the remote
10881 target is returned, or -1 for error. */
10884 remote_target::remote_write_qxfer (const char *object_name
,
10885 const char *annex
, const gdb_byte
*writebuf
,
10886 ULONGEST offset
, LONGEST len
,
10887 ULONGEST
*xfered_len
,
10888 struct packet_config
*packet
)
10892 struct remote_state
*rs
= get_remote_state ();
10893 int max_size
= get_memory_write_packet_size ();
10895 if (packet_config_support (packet
) == PACKET_DISABLE
)
10896 return TARGET_XFER_E_IO
;
10898 /* Insert header. */
10899 i
= snprintf (rs
->buf
, max_size
,
10900 "qXfer:%s:write:%s:%s:",
10901 object_name
, annex
? annex
: "",
10902 phex_nz (offset
, sizeof offset
));
10903 max_size
-= (i
+ 1);
10905 /* Escape as much data as fits into rs->buf. */
10906 buf_len
= remote_escape_output
10907 (writebuf
, len
, 1, (gdb_byte
*) rs
->buf
+ i
, &max_size
, max_size
);
10909 if (putpkt_binary (rs
->buf
, i
+ buf_len
) < 0
10910 || getpkt_sane (&rs
->buf
, &rs
->buf_size
, 0) < 0
10911 || packet_ok (rs
->buf
, packet
) != PACKET_OK
)
10912 return TARGET_XFER_E_IO
;
10914 unpack_varlen_hex (rs
->buf
, &n
);
10917 return (*xfered_len
!= 0) ? TARGET_XFER_OK
: TARGET_XFER_EOF
;
10920 /* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
10921 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
10922 number of bytes read is returned, or 0 for EOF, or -1 for error.
10923 The number of bytes read may be less than LEN without indicating an
10924 EOF. PACKET is checked and updated to indicate whether the remote
10925 target supports this object. */
10928 remote_target::remote_read_qxfer (const char *object_name
,
10930 gdb_byte
*readbuf
, ULONGEST offset
,
10932 ULONGEST
*xfered_len
,
10933 struct packet_config
*packet
)
10935 struct remote_state
*rs
= get_remote_state ();
10936 LONGEST i
, n
, packet_len
;
10938 if (packet_config_support (packet
) == PACKET_DISABLE
)
10939 return TARGET_XFER_E_IO
;
10941 /* Check whether we've cached an end-of-object packet that matches
10943 if (rs
->finished_object
)
10945 if (strcmp (object_name
, rs
->finished_object
) == 0
10946 && strcmp (annex
? annex
: "", rs
->finished_annex
) == 0
10947 && offset
== rs
->finished_offset
)
10948 return TARGET_XFER_EOF
;
10951 /* Otherwise, we're now reading something different. Discard
10953 xfree (rs
->finished_object
);
10954 xfree (rs
->finished_annex
);
10955 rs
->finished_object
= NULL
;
10956 rs
->finished_annex
= NULL
;
10959 /* Request only enough to fit in a single packet. The actual data
10960 may not, since we don't know how much of it will need to be escaped;
10961 the target is free to respond with slightly less data. We subtract
10962 five to account for the response type and the protocol frame. */
10963 n
= std::min
<LONGEST
> (get_remote_packet_size () - 5, len
);
10964 snprintf (rs
->buf
, get_remote_packet_size () - 4, "qXfer:%s:read:%s:%s,%s",
10965 object_name
, annex
? annex
: "",
10966 phex_nz (offset
, sizeof offset
),
10967 phex_nz (n
, sizeof n
));
10968 i
= putpkt (rs
->buf
);
10970 return TARGET_XFER_E_IO
;
10973 packet_len
= getpkt_sane (&rs
->buf
, &rs
->buf_size
, 0);
10974 if (packet_len
< 0 || packet_ok (rs
->buf
, packet
) != PACKET_OK
)
10975 return TARGET_XFER_E_IO
;
10977 if (rs
->buf
[0] != 'l' && rs
->buf
[0] != 'm')
10978 error (_("Unknown remote qXfer reply: %s"), rs
->buf
);
10980 /* 'm' means there is (or at least might be) more data after this
10981 batch. That does not make sense unless there's at least one byte
10982 of data in this reply. */
10983 if (rs
->buf
[0] == 'm' && packet_len
== 1)
10984 error (_("Remote qXfer reply contained no data."));
10986 /* Got some data. */
10987 i
= remote_unescape_input ((gdb_byte
*) rs
->buf
+ 1,
10988 packet_len
- 1, readbuf
, n
);
10990 /* 'l' is an EOF marker, possibly including a final block of data,
10991 or possibly empty. If we have the final block of a non-empty
10992 object, record this fact to bypass a subsequent partial read. */
10993 if (rs
->buf
[0] == 'l' && offset
+ i
> 0)
10995 rs
->finished_object
= xstrdup (object_name
);
10996 rs
->finished_annex
= xstrdup (annex
? annex
: "");
10997 rs
->finished_offset
= offset
+ i
;
11001 return TARGET_XFER_EOF
;
11005 return TARGET_XFER_OK
;
11009 enum target_xfer_status
11010 remote_target::xfer_partial (enum target_object object
,
11011 const char *annex
, gdb_byte
*readbuf
,
11012 const gdb_byte
*writebuf
, ULONGEST offset
, ULONGEST len
,
11013 ULONGEST
*xfered_len
)
11015 struct remote_state
*rs
;
11019 int unit_size
= gdbarch_addressable_memory_unit_size (target_gdbarch ());
11021 set_remote_traceframe ();
11022 set_general_thread (inferior_ptid
);
11024 rs
= get_remote_state ();
11026 /* Handle memory using the standard memory routines. */
11027 if (object
== TARGET_OBJECT_MEMORY
)
11029 /* If the remote target is connected but not running, we should
11030 pass this request down to a lower stratum (e.g. the executable
11032 if (!target_has_execution
)
11033 return TARGET_XFER_EOF
;
11035 if (writebuf
!= NULL
)
11036 return remote_write_bytes (offset
, writebuf
, len
, unit_size
,
11039 return remote_read_bytes (offset
, readbuf
, len
, unit_size
,
11043 /* Handle SPU memory using qxfer packets. */
11044 if (object
== TARGET_OBJECT_SPU
)
11047 return remote_read_qxfer ("spu", annex
, readbuf
, offset
, len
,
11048 xfered_len
, &remote_protocol_packets
11049 [PACKET_qXfer_spu_read
]);
11051 return remote_write_qxfer ("spu", annex
, writebuf
, offset
, len
,
11052 xfered_len
, &remote_protocol_packets
11053 [PACKET_qXfer_spu_write
]);
11056 /* Handle extra signal info using qxfer packets. */
11057 if (object
== TARGET_OBJECT_SIGNAL_INFO
)
11060 return remote_read_qxfer ("siginfo", annex
, readbuf
, offset
, len
,
11061 xfered_len
, &remote_protocol_packets
11062 [PACKET_qXfer_siginfo_read
]);
11064 return remote_write_qxfer ("siginfo", annex
,
11065 writebuf
, offset
, len
, xfered_len
,
11066 &remote_protocol_packets
11067 [PACKET_qXfer_siginfo_write
]);
11070 if (object
== TARGET_OBJECT_STATIC_TRACE_DATA
)
11073 return remote_read_qxfer ("statictrace", annex
,
11074 readbuf
, offset
, len
, xfered_len
,
11075 &remote_protocol_packets
11076 [PACKET_qXfer_statictrace_read
]);
11078 return TARGET_XFER_E_IO
;
11081 /* Only handle flash writes. */
11082 if (writebuf
!= NULL
)
11086 case TARGET_OBJECT_FLASH
:
11087 return remote_flash_write (offset
, len
, xfered_len
,
11091 return TARGET_XFER_E_IO
;
11095 /* Map pre-existing objects onto letters. DO NOT do this for new
11096 objects!!! Instead specify new query packets. */
11099 case TARGET_OBJECT_AVR
:
11103 case TARGET_OBJECT_AUXV
:
11104 gdb_assert (annex
== NULL
);
11105 return remote_read_qxfer ("auxv", annex
, readbuf
, offset
, len
,
11107 &remote_protocol_packets
[PACKET_qXfer_auxv
]);
11109 case TARGET_OBJECT_AVAILABLE_FEATURES
:
11110 return remote_read_qxfer
11111 ("features", annex
, readbuf
, offset
, len
, xfered_len
,
11112 &remote_protocol_packets
[PACKET_qXfer_features
]);
11114 case TARGET_OBJECT_LIBRARIES
:
11115 return remote_read_qxfer
11116 ("libraries", annex
, readbuf
, offset
, len
, xfered_len
,
11117 &remote_protocol_packets
[PACKET_qXfer_libraries
]);
11119 case TARGET_OBJECT_LIBRARIES_SVR4
:
11120 return remote_read_qxfer
11121 ("libraries-svr4", annex
, readbuf
, offset
, len
, xfered_len
,
11122 &remote_protocol_packets
[PACKET_qXfer_libraries_svr4
]);
11124 case TARGET_OBJECT_MEMORY_MAP
:
11125 gdb_assert (annex
== NULL
);
11126 return remote_read_qxfer ("memory-map", annex
, readbuf
, offset
, len
,
11128 &remote_protocol_packets
[PACKET_qXfer_memory_map
]);
11130 case TARGET_OBJECT_OSDATA
:
11131 /* Should only get here if we're connected. */
11132 gdb_assert (rs
->remote_desc
);
11133 return remote_read_qxfer
11134 ("osdata", annex
, readbuf
, offset
, len
, xfered_len
,
11135 &remote_protocol_packets
[PACKET_qXfer_osdata
]);
11137 case TARGET_OBJECT_THREADS
:
11138 gdb_assert (annex
== NULL
);
11139 return remote_read_qxfer ("threads", annex
, readbuf
, offset
, len
,
11141 &remote_protocol_packets
[PACKET_qXfer_threads
]);
11143 case TARGET_OBJECT_TRACEFRAME_INFO
:
11144 gdb_assert (annex
== NULL
);
11145 return remote_read_qxfer
11146 ("traceframe-info", annex
, readbuf
, offset
, len
, xfered_len
,
11147 &remote_protocol_packets
[PACKET_qXfer_traceframe_info
]);
11149 case TARGET_OBJECT_FDPIC
:
11150 return remote_read_qxfer ("fdpic", annex
, readbuf
, offset
, len
,
11152 &remote_protocol_packets
[PACKET_qXfer_fdpic
]);
11154 case TARGET_OBJECT_OPENVMS_UIB
:
11155 return remote_read_qxfer ("uib", annex
, readbuf
, offset
, len
,
11157 &remote_protocol_packets
[PACKET_qXfer_uib
]);
11159 case TARGET_OBJECT_BTRACE
:
11160 return remote_read_qxfer ("btrace", annex
, readbuf
, offset
, len
,
11162 &remote_protocol_packets
[PACKET_qXfer_btrace
]);
11164 case TARGET_OBJECT_BTRACE_CONF
:
11165 return remote_read_qxfer ("btrace-conf", annex
, readbuf
, offset
,
11167 &remote_protocol_packets
[PACKET_qXfer_btrace_conf
]);
11169 case TARGET_OBJECT_EXEC_FILE
:
11170 return remote_read_qxfer ("exec-file", annex
, readbuf
, offset
,
11172 &remote_protocol_packets
[PACKET_qXfer_exec_file
]);
11175 return TARGET_XFER_E_IO
;
11178 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
11179 large enough let the caller deal with it. */
11180 if (len
< get_remote_packet_size ())
11181 return TARGET_XFER_E_IO
;
11182 len
= get_remote_packet_size ();
11184 /* Except for querying the minimum buffer size, target must be open. */
11185 if (!rs
->remote_desc
)
11186 error (_("remote query is only available after target open"));
11188 gdb_assert (annex
!= NULL
);
11189 gdb_assert (readbuf
!= NULL
);
11193 *p2
++ = query_type
;
11195 /* We used one buffer char for the remote protocol q command and
11196 another for the query type. As the remote protocol encapsulation
11197 uses 4 chars plus one extra in case we are debugging
11198 (remote_debug), we have PBUFZIZ - 7 left to pack the query
11201 while (annex
[i
] && (i
< (get_remote_packet_size () - 8)))
11203 /* Bad caller may have sent forbidden characters. */
11204 gdb_assert (isprint (annex
[i
]) && annex
[i
] != '$' && annex
[i
] != '#');
11209 gdb_assert (annex
[i
] == '\0');
11211 i
= putpkt (rs
->buf
);
11213 return TARGET_XFER_E_IO
;
11215 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
11216 strcpy ((char *) readbuf
, rs
->buf
);
11218 *xfered_len
= strlen ((char *) readbuf
);
11219 return (*xfered_len
!= 0) ? TARGET_XFER_OK
: TARGET_XFER_EOF
;
11222 /* Implementation of to_get_memory_xfer_limit. */
11225 remote_target::get_memory_xfer_limit ()
11227 return get_memory_write_packet_size ();
11231 remote_target::search_memory (CORE_ADDR start_addr
, ULONGEST search_space_len
,
11232 const gdb_byte
*pattern
, ULONGEST pattern_len
,
11233 CORE_ADDR
*found_addrp
)
11235 int addr_size
= gdbarch_addr_bit (target_gdbarch ()) / 8;
11236 struct remote_state
*rs
= get_remote_state ();
11237 int max_size
= get_memory_write_packet_size ();
11238 struct packet_config
*packet
=
11239 &remote_protocol_packets
[PACKET_qSearch_memory
];
11240 /* Number of packet bytes used to encode the pattern;
11241 this could be more than PATTERN_LEN due to escape characters. */
11242 int escaped_pattern_len
;
11243 /* Amount of pattern that was encodable in the packet. */
11244 int used_pattern_len
;
11247 ULONGEST found_addr
;
11249 /* Don't go to the target if we don't have to. This is done before
11250 checking packet_config_support to avoid the possibility that a
11251 success for this edge case means the facility works in
11253 if (pattern_len
> search_space_len
)
11255 if (pattern_len
== 0)
11257 *found_addrp
= start_addr
;
11261 /* If we already know the packet isn't supported, fall back to the simple
11262 way of searching memory. */
11264 if (packet_config_support (packet
) == PACKET_DISABLE
)
11266 /* Target doesn't provided special support, fall back and use the
11267 standard support (copy memory and do the search here). */
11268 return simple_search_memory (this, start_addr
, search_space_len
,
11269 pattern
, pattern_len
, found_addrp
);
11272 /* Make sure the remote is pointing at the right process. */
11273 set_general_process ();
11275 /* Insert header. */
11276 i
= snprintf (rs
->buf
, max_size
,
11277 "qSearch:memory:%s;%s;",
11278 phex_nz (start_addr
, addr_size
),
11279 phex_nz (search_space_len
, sizeof (search_space_len
)));
11280 max_size
-= (i
+ 1);
11282 /* Escape as much data as fits into rs->buf. */
11283 escaped_pattern_len
=
11284 remote_escape_output (pattern
, pattern_len
, 1, (gdb_byte
*) rs
->buf
+ i
,
11285 &used_pattern_len
, max_size
);
11287 /* Bail if the pattern is too large. */
11288 if (used_pattern_len
!= pattern_len
)
11289 error (_("Pattern is too large to transmit to remote target."));
11291 if (putpkt_binary (rs
->buf
, i
+ escaped_pattern_len
) < 0
11292 || getpkt_sane (&rs
->buf
, &rs
->buf_size
, 0) < 0
11293 || packet_ok (rs
->buf
, packet
) != PACKET_OK
)
11295 /* The request may not have worked because the command is not
11296 supported. If so, fall back to the simple way. */
11297 if (packet_config_support (packet
) == PACKET_DISABLE
)
11299 return simple_search_memory (this, start_addr
, search_space_len
,
11300 pattern
, pattern_len
, found_addrp
);
11305 if (rs
->buf
[0] == '0')
11307 else if (rs
->buf
[0] == '1')
11310 if (rs
->buf
[1] != ',')
11311 error (_("Unknown qSearch:memory reply: %s"), rs
->buf
);
11312 unpack_varlen_hex (rs
->buf
+ 2, &found_addr
);
11313 *found_addrp
= found_addr
;
11316 error (_("Unknown qSearch:memory reply: %s"), rs
->buf
);
11322 remote_target::rcmd (const char *command
, struct ui_file
*outbuf
)
11324 struct remote_state
*rs
= get_remote_state ();
11327 if (!rs
->remote_desc
)
11328 error (_("remote rcmd is only available after target open"));
11330 /* Send a NULL command across as an empty command. */
11331 if (command
== NULL
)
11334 /* The query prefix. */
11335 strcpy (rs
->buf
, "qRcmd,");
11336 p
= strchr (rs
->buf
, '\0');
11338 if ((strlen (rs
->buf
) + strlen (command
) * 2 + 8/*misc*/)
11339 > get_remote_packet_size ())
11340 error (_("\"monitor\" command ``%s'' is too long."), command
);
11342 /* Encode the actual command. */
11343 bin2hex ((const gdb_byte
*) command
, p
, strlen (command
));
11345 if (putpkt (rs
->buf
) < 0)
11346 error (_("Communication problem with target."));
11348 /* get/display the response */
11353 /* XXX - see also remote_get_noisy_reply(). */
11354 QUIT
; /* Allow user to bail out with ^C. */
11356 if (getpkt_sane (&rs
->buf
, &rs
->buf_size
, 0) == -1)
11358 /* Timeout. Continue to (try to) read responses.
11359 This is better than stopping with an error, assuming the stub
11360 is still executing the (long) monitor command.
11361 If needed, the user can interrupt gdb using C-c, obtaining
11362 an effect similar to stop on timeout. */
11366 if (buf
[0] == '\0')
11367 error (_("Target does not support this command."));
11368 if (buf
[0] == 'O' && buf
[1] != 'K')
11370 remote_console_output (buf
+ 1); /* 'O' message from stub. */
11373 if (strcmp (buf
, "OK") == 0)
11375 if (strlen (buf
) == 3 && buf
[0] == 'E'
11376 && isdigit (buf
[1]) && isdigit (buf
[2]))
11378 error (_("Protocol error with Rcmd"));
11380 for (p
= buf
; p
[0] != '\0' && p
[1] != '\0'; p
+= 2)
11382 char c
= (fromhex (p
[0]) << 4) + fromhex (p
[1]);
11384 fputc_unfiltered (c
, outbuf
);
11390 std::vector
<mem_region
>
11391 remote_target::memory_map ()
11393 std::vector
<mem_region
> result
;
11394 gdb::optional
<gdb::char_vector
> text
11395 = target_read_stralloc (target_stack
, TARGET_OBJECT_MEMORY_MAP
, NULL
);
11398 result
= parse_memory_map (text
->data ());
11404 packet_command (const char *args
, int from_tty
)
11406 remote_target
*remote
= get_current_remote_target ();
11408 if (remote
== nullptr)
11409 error (_("command can only be used with remote target"));
11411 remote
->packet_command (args
, from_tty
);
11415 remote_target::packet_command (const char *args
, int from_tty
)
11418 error (_("remote-packet command requires packet text as argument"));
11420 puts_filtered ("sending: ");
11421 print_packet (args
);
11422 puts_filtered ("\n");
11425 remote_state
*rs
= get_remote_state ();
11427 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
11428 puts_filtered ("received: ");
11429 print_packet (rs
->buf
);
11430 puts_filtered ("\n");
11434 /* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
11436 static void display_thread_info (struct gdb_ext_thread_info
*info
);
11438 static void threadset_test_cmd (char *cmd
, int tty
);
11440 static void threadalive_test (char *cmd
, int tty
);
11442 static void threadlist_test_cmd (char *cmd
, int tty
);
11444 int get_and_display_threadinfo (threadref
*ref
);
11446 static void threadinfo_test_cmd (char *cmd
, int tty
);
11448 static int thread_display_step (threadref
*ref
, void *context
);
11450 static void threadlist_update_test_cmd (char *cmd
, int tty
);
11452 static void init_remote_threadtests (void);
11454 #define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
11457 threadset_test_cmd (const char *cmd
, int tty
)
11459 int sample_thread
= SAMPLE_THREAD
;
11461 printf_filtered (_("Remote threadset test\n"));
11462 set_general_thread (sample_thread
);
11467 threadalive_test (const char *cmd
, int tty
)
11469 int sample_thread
= SAMPLE_THREAD
;
11470 int pid
= ptid_get_pid (inferior_ptid
);
11471 ptid_t ptid
= ptid_build (pid
, sample_thread
, 0);
11473 if (remote_thread_alive (ptid
))
11474 printf_filtered ("PASS: Thread alive test\n");
11476 printf_filtered ("FAIL: Thread alive test\n");
11479 void output_threadid (char *title
, threadref
*ref
);
11482 output_threadid (char *title
, threadref
*ref
)
11486 pack_threadid (&hexid
[0], ref
); /* Convert threead id into hex. */
11488 printf_filtered ("%s %s\n", title
, (&hexid
[0]));
11492 threadlist_test_cmd (const char *cmd
, int tty
)
11495 threadref nextthread
;
11496 int done
, result_count
;
11497 threadref threadlist
[3];
11499 printf_filtered ("Remote Threadlist test\n");
11500 if (!remote_get_threadlist (startflag
, &nextthread
, 3, &done
,
11501 &result_count
, &threadlist
[0]))
11502 printf_filtered ("FAIL: threadlist test\n");
11505 threadref
*scan
= threadlist
;
11506 threadref
*limit
= scan
+ result_count
;
11508 while (scan
< limit
)
11509 output_threadid (" thread ", scan
++);
11514 display_thread_info (struct gdb_ext_thread_info
*info
)
11516 output_threadid ("Threadid: ", &info
->threadid
);
11517 printf_filtered ("Name: %s\n ", info
->shortname
);
11518 printf_filtered ("State: %s\n", info
->display
);
11519 printf_filtered ("other: %s\n\n", info
->more_display
);
11523 get_and_display_threadinfo (threadref
*ref
)
11527 struct gdb_ext_thread_info threadinfo
;
11529 set
= TAG_THREADID
| TAG_EXISTS
| TAG_THREADNAME
11530 | TAG_MOREDISPLAY
| TAG_DISPLAY
;
11531 if (0 != (result
= remote_get_threadinfo (ref
, set
, &threadinfo
)))
11532 display_thread_info (&threadinfo
);
11537 threadinfo_test_cmd (const char *cmd
, int tty
)
11539 int athread
= SAMPLE_THREAD
;
11543 int_to_threadref (&thread
, athread
);
11544 printf_filtered ("Remote Threadinfo test\n");
11545 if (!get_and_display_threadinfo (&thread
))
11546 printf_filtered ("FAIL cannot get thread info\n");
11550 thread_display_step (threadref
*ref
, void *context
)
11552 /* output_threadid(" threadstep ",ref); *//* simple test */
11553 return get_and_display_threadinfo (ref
);
11557 threadlist_update_test_cmd (const char *cmd
, int tty
)
11559 printf_filtered ("Remote Threadlist update test\n");
11560 remote_threadlist_iterator (thread_display_step
, 0, CRAZY_MAX_THREADS
);
11564 init_remote_threadtests (void)
11566 add_com ("tlist", class_obscure
, threadlist_test_cmd
,
11567 _("Fetch and print the remote list of "
11568 "thread identifiers, one pkt only"));
11569 add_com ("tinfo", class_obscure
, threadinfo_test_cmd
,
11570 _("Fetch and display info about one thread"));
11571 add_com ("tset", class_obscure
, threadset_test_cmd
,
11572 _("Test setting to a different thread"));
11573 add_com ("tupd", class_obscure
, threadlist_update_test_cmd
,
11574 _("Iterate through updating all remote thread info"));
11575 add_com ("talive", class_obscure
, threadalive_test
,
11576 _(" Remote thread alive test "));
11581 /* Convert a thread ID to a string. Returns the string in a static
11585 remote_target::pid_to_str (ptid_t ptid
)
11587 static char buf
[64];
11588 struct remote_state
*rs
= get_remote_state ();
11590 if (ptid_equal (ptid
, null_ptid
))
11591 return normal_pid_to_str (ptid
);
11592 else if (ptid_is_pid (ptid
))
11594 /* Printing an inferior target id. */
11596 /* When multi-process extensions are off, there's no way in the
11597 remote protocol to know the remote process id, if there's any
11598 at all. There's one exception --- when we're connected with
11599 target extended-remote, and we manually attached to a process
11600 with "attach PID". We don't record anywhere a flag that
11601 allows us to distinguish that case from the case of
11602 connecting with extended-remote and the stub already being
11603 attached to a process, and reporting yes to qAttached, hence
11604 no smart special casing here. */
11605 if (!remote_multi_process_p (rs
))
11607 xsnprintf (buf
, sizeof buf
, "Remote target");
11611 return normal_pid_to_str (ptid
);
11615 if (ptid_equal (magic_null_ptid
, ptid
))
11616 xsnprintf (buf
, sizeof buf
, "Thread <main>");
11617 else if (remote_multi_process_p (rs
))
11618 if (ptid_get_lwp (ptid
) == 0)
11619 return normal_pid_to_str (ptid
);
11621 xsnprintf (buf
, sizeof buf
, "Thread %d.%ld",
11622 ptid_get_pid (ptid
), ptid_get_lwp (ptid
));
11624 xsnprintf (buf
, sizeof buf
, "Thread %ld",
11625 ptid_get_lwp (ptid
));
11630 /* Get the address of the thread local variable in OBJFILE which is
11631 stored at OFFSET within the thread local storage for thread PTID. */
11634 remote_target::get_thread_local_address (ptid_t ptid
, CORE_ADDR lm
,
11637 if (packet_support (PACKET_qGetTLSAddr
) != PACKET_DISABLE
)
11639 struct remote_state
*rs
= get_remote_state ();
11641 char *endp
= rs
->buf
+ get_remote_packet_size ();
11642 enum packet_result result
;
11644 strcpy (p
, "qGetTLSAddr:");
11646 p
= write_ptid (p
, endp
, ptid
);
11648 p
+= hexnumstr (p
, offset
);
11650 p
+= hexnumstr (p
, lm
);
11654 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
11655 result
= packet_ok (rs
->buf
,
11656 &remote_protocol_packets
[PACKET_qGetTLSAddr
]);
11657 if (result
== PACKET_OK
)
11661 unpack_varlen_hex (rs
->buf
, &result
);
11664 else if (result
== PACKET_UNKNOWN
)
11665 throw_error (TLS_GENERIC_ERROR
,
11666 _("Remote target doesn't support qGetTLSAddr packet"));
11668 throw_error (TLS_GENERIC_ERROR
,
11669 _("Remote target failed to process qGetTLSAddr request"));
11672 throw_error (TLS_GENERIC_ERROR
,
11673 _("TLS not supported or disabled on this target"));
11678 /* Provide thread local base, i.e. Thread Information Block address.
11679 Returns 1 if ptid is found and thread_local_base is non zero. */
11682 remote_target::get_tib_address (ptid_t ptid
, CORE_ADDR
*addr
)
11684 if (packet_support (PACKET_qGetTIBAddr
) != PACKET_DISABLE
)
11686 struct remote_state
*rs
= get_remote_state ();
11688 char *endp
= rs
->buf
+ get_remote_packet_size ();
11689 enum packet_result result
;
11691 strcpy (p
, "qGetTIBAddr:");
11693 p
= write_ptid (p
, endp
, ptid
);
11697 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
11698 result
= packet_ok (rs
->buf
,
11699 &remote_protocol_packets
[PACKET_qGetTIBAddr
]);
11700 if (result
== PACKET_OK
)
11704 unpack_varlen_hex (rs
->buf
, &result
);
11706 *addr
= (CORE_ADDR
) result
;
11709 else if (result
== PACKET_UNKNOWN
)
11710 error (_("Remote target doesn't support qGetTIBAddr packet"));
11712 error (_("Remote target failed to process qGetTIBAddr request"));
11715 error (_("qGetTIBAddr not supported or disabled on this target"));
11720 /* Support for inferring a target description based on the current
11721 architecture and the size of a 'g' packet. While the 'g' packet
11722 can have any size (since optional registers can be left off the
11723 end), some sizes are easily recognizable given knowledge of the
11724 approximate architecture. */
11726 struct remote_g_packet_guess
11729 const struct target_desc
*tdesc
;
11731 typedef struct remote_g_packet_guess remote_g_packet_guess_s
;
11732 DEF_VEC_O(remote_g_packet_guess_s
);
11734 struct remote_g_packet_data
11736 VEC(remote_g_packet_guess_s
) *guesses
;
11739 static struct gdbarch_data
*remote_g_packet_data_handle
;
11742 remote_g_packet_data_init (struct obstack
*obstack
)
11744 return OBSTACK_ZALLOC (obstack
, struct remote_g_packet_data
);
11748 register_remote_g_packet_guess (struct gdbarch
*gdbarch
, int bytes
,
11749 const struct target_desc
*tdesc
)
11751 struct remote_g_packet_data
*data
11752 = ((struct remote_g_packet_data
*)
11753 gdbarch_data (gdbarch
, remote_g_packet_data_handle
));
11754 struct remote_g_packet_guess new_guess
, *guess
;
11757 gdb_assert (tdesc
!= NULL
);
11760 VEC_iterate (remote_g_packet_guess_s
, data
->guesses
, ix
, guess
);
11762 if (guess
->bytes
== bytes
)
11763 internal_error (__FILE__
, __LINE__
,
11764 _("Duplicate g packet description added for size %d"),
11767 new_guess
.bytes
= bytes
;
11768 new_guess
.tdesc
= tdesc
;
11769 VEC_safe_push (remote_g_packet_guess_s
, data
->guesses
, &new_guess
);
11772 /* Return 1 if remote_read_description would do anything on this target
11773 and architecture, 0 otherwise. */
11776 remote_read_description_p (struct target_ops
*target
)
11778 struct remote_g_packet_data
*data
11779 = ((struct remote_g_packet_data
*)
11780 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle
));
11782 if (!VEC_empty (remote_g_packet_guess_s
, data
->guesses
))
11788 const struct target_desc
*
11789 remote_target::read_description ()
11791 struct remote_g_packet_data
*data
11792 = ((struct remote_g_packet_data
*)
11793 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle
));
11795 /* Do not try this during initial connection, when we do not know
11796 whether there is a running but stopped thread. */
11797 if (!target_has_execution
|| ptid_equal (inferior_ptid
, null_ptid
))
11798 return beneath
->read_description ();
11800 if (!VEC_empty (remote_g_packet_guess_s
, data
->guesses
))
11802 struct remote_g_packet_guess
*guess
;
11804 int bytes
= send_g_packet ();
11807 VEC_iterate (remote_g_packet_guess_s
, data
->guesses
, ix
, guess
);
11809 if (guess
->bytes
== bytes
)
11810 return guess
->tdesc
;
11812 /* We discard the g packet. A minor optimization would be to
11813 hold on to it, and fill the register cache once we have selected
11814 an architecture, but it's too tricky to do safely. */
11817 return beneath
->read_description ();
11820 /* Remote file transfer support. This is host-initiated I/O, not
11821 target-initiated; for target-initiated, see remote-fileio.c. */
11823 /* If *LEFT is at least the length of STRING, copy STRING to
11824 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11825 decrease *LEFT. Otherwise raise an error. */
11828 remote_buffer_add_string (char **buffer
, int *left
, const char *string
)
11830 int len
= strlen (string
);
11833 error (_("Packet too long for target."));
11835 memcpy (*buffer
, string
, len
);
11839 /* NUL-terminate the buffer as a convenience, if there is
11845 /* If *LEFT is large enough, hex encode LEN bytes from BYTES into
11846 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11847 decrease *LEFT. Otherwise raise an error. */
11850 remote_buffer_add_bytes (char **buffer
, int *left
, const gdb_byte
*bytes
,
11853 if (2 * len
> *left
)
11854 error (_("Packet too long for target."));
11856 bin2hex (bytes
, *buffer
, len
);
11857 *buffer
+= 2 * len
;
11860 /* NUL-terminate the buffer as a convenience, if there is
11866 /* If *LEFT is large enough, convert VALUE to hex and add it to
11867 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11868 decrease *LEFT. Otherwise raise an error. */
11871 remote_buffer_add_int (char **buffer
, int *left
, ULONGEST value
)
11873 int len
= hexnumlen (value
);
11876 error (_("Packet too long for target."));
11878 hexnumstr (*buffer
, value
);
11882 /* NUL-terminate the buffer as a convenience, if there is
11888 /* Parse an I/O result packet from BUFFER. Set RETCODE to the return
11889 value, *REMOTE_ERRNO to the remote error number or zero if none
11890 was included, and *ATTACHMENT to point to the start of the annex
11891 if any. The length of the packet isn't needed here; there may
11892 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
11894 Return 0 if the packet could be parsed, -1 if it could not. If
11895 -1 is returned, the other variables may not be initialized. */
11898 remote_hostio_parse_result (char *buffer
, int *retcode
,
11899 int *remote_errno
, char **attachment
)
11904 *attachment
= NULL
;
11906 if (buffer
[0] != 'F')
11910 *retcode
= strtol (&buffer
[1], &p
, 16);
11911 if (errno
!= 0 || p
== &buffer
[1])
11914 /* Check for ",errno". */
11918 *remote_errno
= strtol (p
+ 1, &p2
, 16);
11919 if (errno
!= 0 || p
+ 1 == p2
)
11924 /* Check for ";attachment". If there is no attachment, the
11925 packet should end here. */
11928 *attachment
= p
+ 1;
11931 else if (*p
== '\0')
11937 /* Send a prepared I/O packet to the target and read its response.
11938 The prepared packet is in the global RS->BUF before this function
11939 is called, and the answer is there when we return.
11941 COMMAND_BYTES is the length of the request to send, which may include
11942 binary data. WHICH_PACKET is the packet configuration to check
11943 before attempting a packet. If an error occurs, *REMOTE_ERRNO
11944 is set to the error number and -1 is returned. Otherwise the value
11945 returned by the function is returned.
11947 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
11948 attachment is expected; an error will be reported if there's a
11949 mismatch. If one is found, *ATTACHMENT will be set to point into
11950 the packet buffer and *ATTACHMENT_LEN will be set to the
11951 attachment's length. */
11954 remote_target::remote_hostio_send_command (int command_bytes
, int which_packet
,
11955 int *remote_errno
, char **attachment
,
11956 int *attachment_len
)
11958 struct remote_state
*rs
= get_remote_state ();
11959 int ret
, bytes_read
;
11960 char *attachment_tmp
;
11962 if (packet_support (which_packet
) == PACKET_DISABLE
)
11964 *remote_errno
= FILEIO_ENOSYS
;
11968 putpkt_binary (rs
->buf
, command_bytes
);
11969 bytes_read
= getpkt_sane (&rs
->buf
, &rs
->buf_size
, 0);
11971 /* If it timed out, something is wrong. Don't try to parse the
11973 if (bytes_read
< 0)
11975 *remote_errno
= FILEIO_EINVAL
;
11979 switch (packet_ok (rs
->buf
, &remote_protocol_packets
[which_packet
]))
11982 *remote_errno
= FILEIO_EINVAL
;
11984 case PACKET_UNKNOWN
:
11985 *remote_errno
= FILEIO_ENOSYS
;
11991 if (remote_hostio_parse_result (rs
->buf
, &ret
, remote_errno
,
11994 *remote_errno
= FILEIO_EINVAL
;
11998 /* Make sure we saw an attachment if and only if we expected one. */
11999 if ((attachment_tmp
== NULL
&& attachment
!= NULL
)
12000 || (attachment_tmp
!= NULL
&& attachment
== NULL
))
12002 *remote_errno
= FILEIO_EINVAL
;
12006 /* If an attachment was found, it must point into the packet buffer;
12007 work out how many bytes there were. */
12008 if (attachment_tmp
!= NULL
)
12010 *attachment
= attachment_tmp
;
12011 *attachment_len
= bytes_read
- (*attachment
- rs
->buf
);
12017 /* See declaration.h. */
12020 readahead_cache::invalidate ()
12025 /* See declaration.h. */
12028 readahead_cache::invalidate_fd (int fd
)
12030 if (this->fd
== fd
)
12034 /* Set the filesystem remote_hostio functions that take FILENAME
12035 arguments will use. Return 0 on success, or -1 if an error
12036 occurs (and set *REMOTE_ERRNO). */
12039 remote_target::remote_hostio_set_filesystem (struct inferior
*inf
,
12042 struct remote_state
*rs
= get_remote_state ();
12043 int required_pid
= (inf
== NULL
|| inf
->fake_pid_p
) ? 0 : inf
->pid
;
12045 int left
= get_remote_packet_size () - 1;
12049 if (packet_support (PACKET_vFile_setfs
) == PACKET_DISABLE
)
12052 if (rs
->fs_pid
!= -1 && required_pid
== rs
->fs_pid
)
12055 remote_buffer_add_string (&p
, &left
, "vFile:setfs:");
12057 xsnprintf (arg
, sizeof (arg
), "%x", required_pid
);
12058 remote_buffer_add_string (&p
, &left
, arg
);
12060 ret
= remote_hostio_send_command (p
- rs
->buf
, PACKET_vFile_setfs
,
12061 remote_errno
, NULL
, NULL
);
12063 if (packet_support (PACKET_vFile_setfs
) == PACKET_DISABLE
)
12067 rs
->fs_pid
= required_pid
;
12072 /* Implementation of to_fileio_open. */
12075 remote_target::remote_hostio_open (inferior
*inf
, const char *filename
,
12076 int flags
, int mode
, int warn_if_slow
,
12079 struct remote_state
*rs
= get_remote_state ();
12081 int left
= get_remote_packet_size () - 1;
12085 static int warning_issued
= 0;
12087 printf_unfiltered (_("Reading %s from remote target...\n"),
12090 if (!warning_issued
)
12092 warning (_("File transfers from remote targets can be slow."
12093 " Use \"set sysroot\" to access files locally"
12095 warning_issued
= 1;
12099 if (remote_hostio_set_filesystem (inf
, remote_errno
) != 0)
12102 remote_buffer_add_string (&p
, &left
, "vFile:open:");
12104 remote_buffer_add_bytes (&p
, &left
, (const gdb_byte
*) filename
,
12105 strlen (filename
));
12106 remote_buffer_add_string (&p
, &left
, ",");
12108 remote_buffer_add_int (&p
, &left
, flags
);
12109 remote_buffer_add_string (&p
, &left
, ",");
12111 remote_buffer_add_int (&p
, &left
, mode
);
12113 return remote_hostio_send_command (p
- rs
->buf
, PACKET_vFile_open
,
12114 remote_errno
, NULL
, NULL
);
12118 remote_target::fileio_open (struct inferior
*inf
, const char *filename
,
12119 int flags
, int mode
, int warn_if_slow
,
12122 return remote_hostio_open (inf
, filename
, flags
, mode
, warn_if_slow
,
12126 /* Implementation of to_fileio_pwrite. */
12129 remote_target::remote_hostio_pwrite (int fd
, const gdb_byte
*write_buf
, int len
,
12130 ULONGEST offset
, int *remote_errno
)
12132 struct remote_state
*rs
= get_remote_state ();
12134 int left
= get_remote_packet_size ();
12137 rs
->readahead_cache
.invalidate_fd (fd
);
12139 remote_buffer_add_string (&p
, &left
, "vFile:pwrite:");
12141 remote_buffer_add_int (&p
, &left
, fd
);
12142 remote_buffer_add_string (&p
, &left
, ",");
12144 remote_buffer_add_int (&p
, &left
, offset
);
12145 remote_buffer_add_string (&p
, &left
, ",");
12147 p
+= remote_escape_output (write_buf
, len
, 1, (gdb_byte
*) p
, &out_len
,
12148 get_remote_packet_size () - (p
- rs
->buf
));
12150 return remote_hostio_send_command (p
- rs
->buf
, PACKET_vFile_pwrite
,
12151 remote_errno
, NULL
, NULL
);
12155 remote_target::fileio_pwrite (int fd
, const gdb_byte
*write_buf
, int len
,
12156 ULONGEST offset
, int *remote_errno
)
12158 return remote_hostio_pwrite (fd
, write_buf
, len
, offset
, remote_errno
);
12161 /* Helper for the implementation of to_fileio_pread. Read the file
12162 from the remote side with vFile:pread. */
12165 remote_target::remote_hostio_pread_vFile (int fd
, gdb_byte
*read_buf
, int len
,
12166 ULONGEST offset
, int *remote_errno
)
12168 struct remote_state
*rs
= get_remote_state ();
12171 int left
= get_remote_packet_size ();
12172 int ret
, attachment_len
;
12175 remote_buffer_add_string (&p
, &left
, "vFile:pread:");
12177 remote_buffer_add_int (&p
, &left
, fd
);
12178 remote_buffer_add_string (&p
, &left
, ",");
12180 remote_buffer_add_int (&p
, &left
, len
);
12181 remote_buffer_add_string (&p
, &left
, ",");
12183 remote_buffer_add_int (&p
, &left
, offset
);
12185 ret
= remote_hostio_send_command (p
- rs
->buf
, PACKET_vFile_pread
,
12186 remote_errno
, &attachment
,
12192 read_len
= remote_unescape_input ((gdb_byte
*) attachment
, attachment_len
,
12194 if (read_len
!= ret
)
12195 error (_("Read returned %d, but %d bytes."), ret
, (int) read_len
);
12200 /* See declaration.h. */
12203 readahead_cache::pread (int fd
, gdb_byte
*read_buf
, size_t len
,
12207 && this->offset
<= offset
12208 && offset
< this->offset
+ this->bufsize
)
12210 ULONGEST max
= this->offset
+ this->bufsize
;
12212 if (offset
+ len
> max
)
12213 len
= max
- offset
;
12215 memcpy (read_buf
, this->buf
+ offset
- this->offset
, len
);
12222 /* Implementation of to_fileio_pread. */
12225 remote_target::remote_hostio_pread (int fd
, gdb_byte
*read_buf
, int len
,
12226 ULONGEST offset
, int *remote_errno
)
12229 struct remote_state
*rs
= get_remote_state ();
12230 readahead_cache
*cache
= &rs
->readahead_cache
;
12232 ret
= cache
->pread (fd
, read_buf
, len
, offset
);
12235 cache
->hit_count
++;
12238 fprintf_unfiltered (gdb_stdlog
, "readahead cache hit %s\n",
12239 pulongest (cache
->hit_count
));
12243 cache
->miss_count
++;
12245 fprintf_unfiltered (gdb_stdlog
, "readahead cache miss %s\n",
12246 pulongest (cache
->miss_count
));
12249 cache
->offset
= offset
;
12250 cache
->bufsize
= get_remote_packet_size ();
12251 cache
->buf
= (gdb_byte
*) xrealloc (cache
->buf
, cache
->bufsize
);
12253 ret
= remote_hostio_pread_vFile (cache
->fd
, cache
->buf
, cache
->bufsize
,
12254 cache
->offset
, remote_errno
);
12257 cache
->invalidate_fd (fd
);
12261 cache
->bufsize
= ret
;
12262 return cache
->pread (fd
, read_buf
, len
, offset
);
12266 remote_target::fileio_pread (int fd
, gdb_byte
*read_buf
, int len
,
12267 ULONGEST offset
, int *remote_errno
)
12269 return remote_hostio_pread (fd
, read_buf
, len
, offset
, remote_errno
);
12272 /* Implementation of to_fileio_close. */
12275 remote_target::remote_hostio_close (int fd
, int *remote_errno
)
12277 struct remote_state
*rs
= get_remote_state ();
12279 int left
= get_remote_packet_size () - 1;
12281 rs
->readahead_cache
.invalidate_fd (fd
);
12283 remote_buffer_add_string (&p
, &left
, "vFile:close:");
12285 remote_buffer_add_int (&p
, &left
, fd
);
12287 return remote_hostio_send_command (p
- rs
->buf
, PACKET_vFile_close
,
12288 remote_errno
, NULL
, NULL
);
12292 remote_target::fileio_close (int fd
, int *remote_errno
)
12294 return remote_hostio_close (fd
, remote_errno
);
12297 /* Implementation of to_fileio_unlink. */
12300 remote_target::remote_hostio_unlink (inferior
*inf
, const char *filename
,
12303 struct remote_state
*rs
= get_remote_state ();
12305 int left
= get_remote_packet_size () - 1;
12307 if (remote_hostio_set_filesystem (inf
, remote_errno
) != 0)
12310 remote_buffer_add_string (&p
, &left
, "vFile:unlink:");
12312 remote_buffer_add_bytes (&p
, &left
, (const gdb_byte
*) filename
,
12313 strlen (filename
));
12315 return remote_hostio_send_command (p
- rs
->buf
, PACKET_vFile_unlink
,
12316 remote_errno
, NULL
, NULL
);
12320 remote_target::fileio_unlink (struct inferior
*inf
, const char *filename
,
12323 return remote_hostio_unlink (inf
, filename
, remote_errno
);
12326 /* Implementation of to_fileio_readlink. */
12328 gdb::optional
<std::string
>
12329 remote_target::fileio_readlink (struct inferior
*inf
, const char *filename
,
12332 struct remote_state
*rs
= get_remote_state ();
12335 int left
= get_remote_packet_size ();
12336 int len
, attachment_len
;
12339 if (remote_hostio_set_filesystem (inf
, remote_errno
) != 0)
12342 remote_buffer_add_string (&p
, &left
, "vFile:readlink:");
12344 remote_buffer_add_bytes (&p
, &left
, (const gdb_byte
*) filename
,
12345 strlen (filename
));
12347 len
= remote_hostio_send_command (p
- rs
->buf
, PACKET_vFile_readlink
,
12348 remote_errno
, &attachment
,
12354 std::string
ret (len
, '\0');
12356 read_len
= remote_unescape_input ((gdb_byte
*) attachment
, attachment_len
,
12357 (gdb_byte
*) &ret
[0], len
);
12358 if (read_len
!= len
)
12359 error (_("Readlink returned %d, but %d bytes."), len
, read_len
);
12364 /* Implementation of to_fileio_fstat. */
12367 remote_target::fileio_fstat (int fd
, struct stat
*st
, int *remote_errno
)
12369 struct remote_state
*rs
= get_remote_state ();
12371 int left
= get_remote_packet_size ();
12372 int attachment_len
, ret
;
12374 struct fio_stat fst
;
12377 remote_buffer_add_string (&p
, &left
, "vFile:fstat:");
12379 remote_buffer_add_int (&p
, &left
, fd
);
12381 ret
= remote_hostio_send_command (p
- rs
->buf
, PACKET_vFile_fstat
,
12382 remote_errno
, &attachment
,
12386 if (*remote_errno
!= FILEIO_ENOSYS
)
12389 /* Strictly we should return -1, ENOSYS here, but when
12390 "set sysroot remote:" was implemented in August 2008
12391 BFD's need for a stat function was sidestepped with
12392 this hack. This was not remedied until March 2015
12393 so we retain the previous behavior to avoid breaking
12396 Note that the memset is a March 2015 addition; older
12397 GDBs set st_size *and nothing else* so the structure
12398 would have garbage in all other fields. This might
12399 break something but retaining the previous behavior
12400 here would be just too wrong. */
12402 memset (st
, 0, sizeof (struct stat
));
12403 st
->st_size
= INT_MAX
;
12407 read_len
= remote_unescape_input ((gdb_byte
*) attachment
, attachment_len
,
12408 (gdb_byte
*) &fst
, sizeof (fst
));
12410 if (read_len
!= ret
)
12411 error (_("vFile:fstat returned %d, but %d bytes."), ret
, read_len
);
12413 if (read_len
!= sizeof (fst
))
12414 error (_("vFile:fstat returned %d bytes, but expecting %d."),
12415 read_len
, (int) sizeof (fst
));
12417 remote_fileio_to_host_stat (&fst
, st
);
12422 /* Implementation of to_filesystem_is_local. */
12425 remote_target::filesystem_is_local ()
12427 /* Valgrind GDB presents itself as a remote target but works
12428 on the local filesystem: it does not implement remote get
12429 and users are not expected to set a sysroot. To handle
12430 this case we treat the remote filesystem as local if the
12431 sysroot is exactly TARGET_SYSROOT_PREFIX and if the stub
12432 does not support vFile:open. */
12433 if (strcmp (gdb_sysroot
, TARGET_SYSROOT_PREFIX
) == 0)
12435 enum packet_support ps
= packet_support (PACKET_vFile_open
);
12437 if (ps
== PACKET_SUPPORT_UNKNOWN
)
12439 int fd
, remote_errno
;
12441 /* Try opening a file to probe support. The supplied
12442 filename is irrelevant, we only care about whether
12443 the stub recognizes the packet or not. */
12444 fd
= remote_hostio_open (NULL
, "just probing",
12445 FILEIO_O_RDONLY
, 0700, 0,
12449 remote_hostio_close (fd
, &remote_errno
);
12451 ps
= packet_support (PACKET_vFile_open
);
12454 if (ps
== PACKET_DISABLE
)
12456 static int warning_issued
= 0;
12458 if (!warning_issued
)
12460 warning (_("remote target does not support file"
12461 " transfer, attempting to access files"
12462 " from local filesystem."));
12463 warning_issued
= 1;
12474 remote_fileio_errno_to_host (int errnum
)
12480 case FILEIO_ENOENT
:
12488 case FILEIO_EACCES
:
12490 case FILEIO_EFAULT
:
12494 case FILEIO_EEXIST
:
12496 case FILEIO_ENODEV
:
12498 case FILEIO_ENOTDIR
:
12500 case FILEIO_EISDIR
:
12502 case FILEIO_EINVAL
:
12504 case FILEIO_ENFILE
:
12506 case FILEIO_EMFILE
:
12510 case FILEIO_ENOSPC
:
12512 case FILEIO_ESPIPE
:
12516 case FILEIO_ENOSYS
:
12518 case FILEIO_ENAMETOOLONG
:
12519 return ENAMETOOLONG
;
12525 remote_hostio_error (int errnum
)
12527 int host_error
= remote_fileio_errno_to_host (errnum
);
12529 if (host_error
== -1)
12530 error (_("Unknown remote I/O error %d"), errnum
);
12532 error (_("Remote I/O error: %s"), safe_strerror (host_error
));
12535 /* A RAII wrapper around a remote file descriptor. */
12537 class scoped_remote_fd
12540 scoped_remote_fd (remote_target
*remote
, int fd
)
12541 : m_remote (remote
), m_fd (fd
)
12545 ~scoped_remote_fd ()
12552 m_remote
->remote_hostio_close (m_fd
, &remote_errno
);
12556 /* Swallow exception before it escapes the dtor. If
12557 something goes wrong, likely the connection is gone,
12558 and there's nothing else that can be done. */
12563 DISABLE_COPY_AND_ASSIGN (scoped_remote_fd
);
12565 /* Release ownership of the file descriptor, and return it. */
12566 int release () noexcept
12573 /* Return the owned file descriptor. */
12574 int get () const noexcept
12580 /* The remote target. */
12581 remote_target
*m_remote
;
12583 /* The owned remote I/O file descriptor. */
12588 remote_file_put (const char *local_file
, const char *remote_file
, int from_tty
)
12590 remote_target
*remote
= get_current_remote_target ();
12592 if (remote
== nullptr)
12593 error (_("command can only be used with remote target"));
12595 remote
->remote_file_put (local_file
, remote_file
, from_tty
);
12599 remote_target::remote_file_put (const char *local_file
, const char *remote_file
,
12602 int retcode
, remote_errno
, bytes
, io_size
;
12603 int bytes_in_buffer
;
12607 gdb_file_up file
= gdb_fopen_cloexec (local_file
, "rb");
12609 perror_with_name (local_file
);
12611 scoped_remote_fd fd
12612 (this, remote_hostio_open (NULL
,
12613 remote_file
, (FILEIO_O_WRONLY
| FILEIO_O_CREAT
12615 0700, 0, &remote_errno
));
12616 if (fd
.get () == -1)
12617 remote_hostio_error (remote_errno
);
12619 /* Send up to this many bytes at once. They won't all fit in the
12620 remote packet limit, so we'll transfer slightly fewer. */
12621 io_size
= get_remote_packet_size ();
12622 gdb::byte_vector
buffer (io_size
);
12624 bytes_in_buffer
= 0;
12627 while (bytes_in_buffer
|| !saw_eof
)
12631 bytes
= fread (buffer
.data () + bytes_in_buffer
, 1,
12632 io_size
- bytes_in_buffer
,
12636 if (ferror (file
.get ()))
12637 error (_("Error reading %s."), local_file
);
12640 /* EOF. Unless there is something still in the
12641 buffer from the last iteration, we are done. */
12643 if (bytes_in_buffer
== 0)
12651 bytes
+= bytes_in_buffer
;
12652 bytes_in_buffer
= 0;
12654 retcode
= remote_hostio_pwrite (fd
.get (), buffer
.data (), bytes
,
12655 offset
, &remote_errno
);
12658 remote_hostio_error (remote_errno
);
12659 else if (retcode
== 0)
12660 error (_("Remote write of %d bytes returned 0!"), bytes
);
12661 else if (retcode
< bytes
)
12663 /* Short write. Save the rest of the read data for the next
12665 bytes_in_buffer
= bytes
- retcode
;
12666 memmove (buffer
.data (), buffer
.data () + retcode
, bytes_in_buffer
);
12672 if (remote_hostio_close (fd
.release (), &remote_errno
))
12673 remote_hostio_error (remote_errno
);
12676 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file
);
12680 remote_file_get (const char *remote_file
, const char *local_file
, int from_tty
)
12682 remote_target
*remote
= get_current_remote_target ();
12684 if (remote
== nullptr)
12685 error (_("command can only be used with remote target"));
12687 remote
->remote_file_get (remote_file
, local_file
, from_tty
);
12691 remote_target::remote_file_get (const char *remote_file
, const char *local_file
,
12694 int remote_errno
, bytes
, io_size
;
12697 scoped_remote_fd fd
12698 (this, remote_hostio_open (NULL
,
12699 remote_file
, FILEIO_O_RDONLY
, 0, 0,
12701 if (fd
.get () == -1)
12702 remote_hostio_error (remote_errno
);
12704 gdb_file_up file
= gdb_fopen_cloexec (local_file
, "wb");
12706 perror_with_name (local_file
);
12708 /* Send up to this many bytes at once. They won't all fit in the
12709 remote packet limit, so we'll transfer slightly fewer. */
12710 io_size
= get_remote_packet_size ();
12711 gdb::byte_vector
buffer (io_size
);
12716 bytes
= remote_hostio_pread (fd
.get (), buffer
.data (), io_size
, offset
,
12719 /* Success, but no bytes, means end-of-file. */
12722 remote_hostio_error (remote_errno
);
12726 bytes
= fwrite (buffer
.data (), 1, bytes
, file
.get ());
12728 perror_with_name (local_file
);
12731 if (remote_hostio_close (fd
.release (), &remote_errno
))
12732 remote_hostio_error (remote_errno
);
12735 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file
);
12739 remote_file_delete (const char *remote_file
, int from_tty
)
12741 remote_target
*remote
= get_current_remote_target ();
12743 if (remote
== nullptr)
12744 error (_("command can only be used with remote target"));
12746 remote
->remote_file_delete (remote_file
, from_tty
);
12750 remote_target::remote_file_delete (const char *remote_file
, int from_tty
)
12752 int retcode
, remote_errno
;
12754 retcode
= remote_hostio_unlink (NULL
, remote_file
, &remote_errno
);
12756 remote_hostio_error (remote_errno
);
12759 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file
);
12763 remote_put_command (const char *args
, int from_tty
)
12766 error_no_arg (_("file to put"));
12768 gdb_argv
argv (args
);
12769 if (argv
[0] == NULL
|| argv
[1] == NULL
|| argv
[2] != NULL
)
12770 error (_("Invalid parameters to remote put"));
12772 remote_file_put (argv
[0], argv
[1], from_tty
);
12776 remote_get_command (const char *args
, int from_tty
)
12779 error_no_arg (_("file to get"));
12781 gdb_argv
argv (args
);
12782 if (argv
[0] == NULL
|| argv
[1] == NULL
|| argv
[2] != NULL
)
12783 error (_("Invalid parameters to remote get"));
12785 remote_file_get (argv
[0], argv
[1], from_tty
);
12789 remote_delete_command (const char *args
, int from_tty
)
12792 error_no_arg (_("file to delete"));
12794 gdb_argv
argv (args
);
12795 if (argv
[0] == NULL
|| argv
[1] != NULL
)
12796 error (_("Invalid parameters to remote delete"));
12798 remote_file_delete (argv
[0], from_tty
);
12802 remote_command (const char *args
, int from_tty
)
12804 help_list (remote_cmdlist
, "remote ", all_commands
, gdb_stdout
);
12808 remote_target::can_execute_reverse ()
12810 if (packet_support (PACKET_bs
) == PACKET_ENABLE
12811 || packet_support (PACKET_bc
) == PACKET_ENABLE
)
12818 remote_target::supports_non_stop ()
12824 remote_target::supports_disable_randomization ()
12826 /* Only supported in extended mode. */
12831 remote_target::supports_multi_process ()
12833 struct remote_state
*rs
= get_remote_state ();
12835 return remote_multi_process_p (rs
);
12839 remote_supports_cond_tracepoints ()
12841 return packet_support (PACKET_ConditionalTracepoints
) == PACKET_ENABLE
;
12845 remote_target::supports_evaluation_of_breakpoint_conditions ()
12847 return packet_support (PACKET_ConditionalBreakpoints
) == PACKET_ENABLE
;
12851 remote_supports_fast_tracepoints ()
12853 return packet_support (PACKET_FastTracepoints
) == PACKET_ENABLE
;
12857 remote_supports_static_tracepoints ()
12859 return packet_support (PACKET_StaticTracepoints
) == PACKET_ENABLE
;
12863 remote_supports_install_in_trace ()
12865 return packet_support (PACKET_InstallInTrace
) == PACKET_ENABLE
;
12869 remote_target::supports_enable_disable_tracepoint ()
12871 return (packet_support (PACKET_EnableDisableTracepoints_feature
)
12876 remote_target::supports_string_tracing ()
12878 return packet_support (PACKET_tracenz_feature
) == PACKET_ENABLE
;
12882 remote_target::can_run_breakpoint_commands ()
12884 return packet_support (PACKET_BreakpointCommands
) == PACKET_ENABLE
;
12888 remote_target::trace_init ()
12890 struct remote_state
*rs
= get_remote_state ();
12893 remote_get_noisy_reply ();
12894 if (strcmp (rs
->buf
, "OK") != 0)
12895 error (_("Target does not support this command."));
12898 /* Recursive routine to walk through command list including loops, and
12899 download packets for each command. */
12902 remote_target::remote_download_command_source (int num
, ULONGEST addr
,
12903 struct command_line
*cmds
)
12905 struct remote_state
*rs
= get_remote_state ();
12906 struct command_line
*cmd
;
12908 for (cmd
= cmds
; cmd
; cmd
= cmd
->next
)
12910 QUIT
; /* Allow user to bail out with ^C. */
12911 strcpy (rs
->buf
, "QTDPsrc:");
12912 encode_source_string (num
, addr
, "cmd", cmd
->line
,
12913 rs
->buf
+ strlen (rs
->buf
),
12914 rs
->buf_size
- strlen (rs
->buf
));
12916 remote_get_noisy_reply ();
12917 if (strcmp (rs
->buf
, "OK"))
12918 warning (_("Target does not support source download."));
12920 if (cmd
->control_type
== while_control
12921 || cmd
->control_type
== while_stepping_control
)
12923 remote_download_command_source (num
, addr
, cmd
->body_list_0
.get ());
12925 QUIT
; /* Allow user to bail out with ^C. */
12926 strcpy (rs
->buf
, "QTDPsrc:");
12927 encode_source_string (num
, addr
, "cmd", "end",
12928 rs
->buf
+ strlen (rs
->buf
),
12929 rs
->buf_size
- strlen (rs
->buf
));
12931 remote_get_noisy_reply ();
12932 if (strcmp (rs
->buf
, "OK"))
12933 warning (_("Target does not support source download."));
12939 remote_target::download_tracepoint (struct bp_location
*loc
)
12941 #define BUF_SIZE 2048
12945 char buf
[BUF_SIZE
];
12946 std::vector
<std::string
> tdp_actions
;
12947 std::vector
<std::string
> stepping_actions
;
12949 struct breakpoint
*b
= loc
->owner
;
12950 struct tracepoint
*t
= (struct tracepoint
*) b
;
12951 struct remote_state
*rs
= get_remote_state ();
12953 encode_actions_rsp (loc
, &tdp_actions
, &stepping_actions
);
12955 tpaddr
= loc
->address
;
12956 sprintf_vma (addrbuf
, tpaddr
);
12957 xsnprintf (buf
, BUF_SIZE
, "QTDP:%x:%s:%c:%lx:%x", b
->number
,
12958 addrbuf
, /* address */
12959 (b
->enable_state
== bp_enabled
? 'E' : 'D'),
12960 t
->step_count
, t
->pass_count
);
12961 /* Fast tracepoints are mostly handled by the target, but we can
12962 tell the target how big of an instruction block should be moved
12964 if (b
->type
== bp_fast_tracepoint
)
12966 /* Only test for support at download time; we may not know
12967 target capabilities at definition time. */
12968 if (remote_supports_fast_tracepoints ())
12970 if (gdbarch_fast_tracepoint_valid_at (loc
->gdbarch
, tpaddr
,
12972 xsnprintf (buf
+ strlen (buf
), BUF_SIZE
- strlen (buf
), ":F%x",
12973 gdb_insn_length (loc
->gdbarch
, tpaddr
));
12975 /* If it passed validation at definition but fails now,
12976 something is very wrong. */
12977 internal_error (__FILE__
, __LINE__
,
12978 _("Fast tracepoint not "
12979 "valid during download"));
12982 /* Fast tracepoints are functionally identical to regular
12983 tracepoints, so don't take lack of support as a reason to
12984 give up on the trace run. */
12985 warning (_("Target does not support fast tracepoints, "
12986 "downloading %d as regular tracepoint"), b
->number
);
12988 else if (b
->type
== bp_static_tracepoint
)
12990 /* Only test for support at download time; we may not know
12991 target capabilities at definition time. */
12992 if (remote_supports_static_tracepoints ())
12994 struct static_tracepoint_marker marker
;
12996 if (target_static_tracepoint_marker_at (tpaddr
, &marker
))
12997 strcat (buf
, ":S");
12999 error (_("Static tracepoint not valid during download"));
13002 /* Fast tracepoints are functionally identical to regular
13003 tracepoints, so don't take lack of support as a reason
13004 to give up on the trace run. */
13005 error (_("Target does not support static tracepoints"));
13007 /* If the tracepoint has a conditional, make it into an agent
13008 expression and append to the definition. */
13011 /* Only test support at download time, we may not know target
13012 capabilities at definition time. */
13013 if (remote_supports_cond_tracepoints ())
13015 agent_expr_up aexpr
= gen_eval_for_expr (tpaddr
, loc
->cond
.get ());
13016 xsnprintf (buf
+ strlen (buf
), BUF_SIZE
- strlen (buf
), ":X%x,",
13018 pkt
= buf
+ strlen (buf
);
13019 for (int ndx
= 0; ndx
< aexpr
->len
; ++ndx
)
13020 pkt
= pack_hex_byte (pkt
, aexpr
->buf
[ndx
]);
13024 warning (_("Target does not support conditional tracepoints, "
13025 "ignoring tp %d cond"), b
->number
);
13028 if (b
->commands
|| *default_collect
)
13031 remote_get_noisy_reply ();
13032 if (strcmp (rs
->buf
, "OK"))
13033 error (_("Target does not support tracepoints."));
13035 /* do_single_steps (t); */
13036 for (auto action_it
= tdp_actions
.begin ();
13037 action_it
!= tdp_actions
.end (); action_it
++)
13039 QUIT
; /* Allow user to bail out with ^C. */
13041 bool has_more
= (action_it
!= tdp_actions
.end ()
13042 || !stepping_actions
.empty ());
13044 xsnprintf (buf
, BUF_SIZE
, "QTDP:-%x:%s:%s%c",
13045 b
->number
, addrbuf
, /* address */
13046 action_it
->c_str (),
13047 has_more
? '-' : 0);
13049 remote_get_noisy_reply ();
13050 if (strcmp (rs
->buf
, "OK"))
13051 error (_("Error on target while setting tracepoints."));
13054 for (auto action_it
= stepping_actions
.begin ();
13055 action_it
!= stepping_actions
.end (); action_it
++)
13057 QUIT
; /* Allow user to bail out with ^C. */
13059 bool is_first
= action_it
== stepping_actions
.begin ();
13060 bool has_more
= action_it
!= stepping_actions
.end ();
13062 xsnprintf (buf
, BUF_SIZE
, "QTDP:-%x:%s:%s%s%s",
13063 b
->number
, addrbuf
, /* address */
13064 is_first
? "S" : "",
13065 action_it
->c_str (),
13066 has_more
? "-" : "");
13068 remote_get_noisy_reply ();
13069 if (strcmp (rs
->buf
, "OK"))
13070 error (_("Error on target while setting tracepoints."));
13073 if (packet_support (PACKET_TracepointSource
) == PACKET_ENABLE
)
13075 if (b
->location
!= NULL
)
13077 strcpy (buf
, "QTDPsrc:");
13078 encode_source_string (b
->number
, loc
->address
, "at",
13079 event_location_to_string (b
->location
.get ()),
13080 buf
+ strlen (buf
), 2048 - strlen (buf
));
13082 remote_get_noisy_reply ();
13083 if (strcmp (rs
->buf
, "OK"))
13084 warning (_("Target does not support source download."));
13086 if (b
->cond_string
)
13088 strcpy (buf
, "QTDPsrc:");
13089 encode_source_string (b
->number
, loc
->address
,
13090 "cond", b
->cond_string
, buf
+ strlen (buf
),
13091 2048 - strlen (buf
));
13093 remote_get_noisy_reply ();
13094 if (strcmp (rs
->buf
, "OK"))
13095 warning (_("Target does not support source download."));
13097 remote_download_command_source (b
->number
, loc
->address
,
13098 breakpoint_commands (b
));
13103 remote_target::can_download_tracepoint ()
13105 struct remote_state
*rs
= get_remote_state ();
13106 struct trace_status
*ts
;
13109 /* Don't try to install tracepoints until we've relocated our
13110 symbols, and fetched and merged the target's tracepoint list with
13112 if (rs
->starting_up
)
13115 ts
= current_trace_status ();
13116 status
= get_trace_status (ts
);
13118 if (status
== -1 || !ts
->running_known
|| !ts
->running
)
13121 /* If we are in a tracing experiment, but remote stub doesn't support
13122 installing tracepoint in trace, we have to return. */
13123 if (!remote_supports_install_in_trace ())
13131 remote_target::download_trace_state_variable (const trace_state_variable
&tsv
)
13133 struct remote_state
*rs
= get_remote_state ();
13136 xsnprintf (rs
->buf
, get_remote_packet_size (), "QTDV:%x:%s:%x:",
13137 tsv
.number
, phex ((ULONGEST
) tsv
.initial_value
, 8),
13139 p
= rs
->buf
+ strlen (rs
->buf
);
13140 if ((p
- rs
->buf
) + tsv
.name
.length () * 2 >= get_remote_packet_size ())
13141 error (_("Trace state variable name too long for tsv definition packet"));
13142 p
+= 2 * bin2hex ((gdb_byte
*) (tsv
.name
.data ()), p
, tsv
.name
.length ());
13145 remote_get_noisy_reply ();
13146 if (*rs
->buf
== '\0')
13147 error (_("Target does not support this command."));
13148 if (strcmp (rs
->buf
, "OK") != 0)
13149 error (_("Error on target while downloading trace state variable."));
13153 remote_target::enable_tracepoint (struct bp_location
*location
)
13155 struct remote_state
*rs
= get_remote_state ();
13158 sprintf_vma (addr_buf
, location
->address
);
13159 xsnprintf (rs
->buf
, get_remote_packet_size (), "QTEnable:%x:%s",
13160 location
->owner
->number
, addr_buf
);
13162 remote_get_noisy_reply ();
13163 if (*rs
->buf
== '\0')
13164 error (_("Target does not support enabling tracepoints while a trace run is ongoing."));
13165 if (strcmp (rs
->buf
, "OK") != 0)
13166 error (_("Error on target while enabling tracepoint."));
13170 remote_target::disable_tracepoint (struct bp_location
*location
)
13172 struct remote_state
*rs
= get_remote_state ();
13175 sprintf_vma (addr_buf
, location
->address
);
13176 xsnprintf (rs
->buf
, get_remote_packet_size (), "QTDisable:%x:%s",
13177 location
->owner
->number
, addr_buf
);
13179 remote_get_noisy_reply ();
13180 if (*rs
->buf
== '\0')
13181 error (_("Target does not support disabling tracepoints while a trace run is ongoing."));
13182 if (strcmp (rs
->buf
, "OK") != 0)
13183 error (_("Error on target while disabling tracepoint."));
13187 remote_target::trace_set_readonly_regions ()
13191 bfd_size_type size
;
13197 return; /* No information to give. */
13199 struct remote_state
*rs
= get_remote_state ();
13201 strcpy (rs
->buf
, "QTro");
13202 offset
= strlen (rs
->buf
);
13203 for (s
= exec_bfd
->sections
; s
; s
= s
->next
)
13205 char tmp1
[40], tmp2
[40];
13208 if ((s
->flags
& SEC_LOAD
) == 0 ||
13209 /* (s->flags & SEC_CODE) == 0 || */
13210 (s
->flags
& SEC_READONLY
) == 0)
13214 vma
= bfd_get_section_vma (abfd
, s
);
13215 size
= bfd_get_section_size (s
);
13216 sprintf_vma (tmp1
, vma
);
13217 sprintf_vma (tmp2
, vma
+ size
);
13218 sec_length
= 1 + strlen (tmp1
) + 1 + strlen (tmp2
);
13219 if (offset
+ sec_length
+ 1 > rs
->buf_size
)
13221 if (packet_support (PACKET_qXfer_traceframe_info
) != PACKET_ENABLE
)
13223 Too many sections for read-only sections definition packet."));
13226 xsnprintf (rs
->buf
+ offset
, rs
->buf_size
- offset
, ":%s,%s",
13228 offset
+= sec_length
;
13233 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
13238 remote_target::trace_start ()
13240 struct remote_state
*rs
= get_remote_state ();
13242 putpkt ("QTStart");
13243 remote_get_noisy_reply ();
13244 if (*rs
->buf
== '\0')
13245 error (_("Target does not support this command."));
13246 if (strcmp (rs
->buf
, "OK") != 0)
13247 error (_("Bogus reply from target: %s"), rs
->buf
);
13251 remote_target::get_trace_status (struct trace_status
*ts
)
13253 /* Initialize it just to avoid a GCC false warning. */
13255 /* FIXME we need to get register block size some other way. */
13256 extern int trace_regblock_size
;
13257 enum packet_result result
;
13258 struct remote_state
*rs
= get_remote_state ();
13260 if (packet_support (PACKET_qTStatus
) == PACKET_DISABLE
)
13263 trace_regblock_size
13264 = rs
->get_remote_arch_state (target_gdbarch ())->sizeof_g_packet
;
13266 putpkt ("qTStatus");
13270 p
= remote_get_noisy_reply ();
13272 CATCH (ex
, RETURN_MASK_ERROR
)
13274 if (ex
.error
!= TARGET_CLOSE_ERROR
)
13276 exception_fprintf (gdb_stderr
, ex
, "qTStatus: ");
13279 throw_exception (ex
);
13283 result
= packet_ok (p
, &remote_protocol_packets
[PACKET_qTStatus
]);
13285 /* If the remote target doesn't do tracing, flag it. */
13286 if (result
== PACKET_UNKNOWN
)
13289 /* We're working with a live target. */
13290 ts
->filename
= NULL
;
13293 error (_("Bogus trace status reply from target: %s"), rs
->buf
);
13295 /* Function 'parse_trace_status' sets default value of each field of
13296 'ts' at first, so we don't have to do it here. */
13297 parse_trace_status (p
, ts
);
13299 return ts
->running
;
13303 remote_target::get_tracepoint_status (struct breakpoint
*bp
,
13304 struct uploaded_tp
*utp
)
13306 struct remote_state
*rs
= get_remote_state ();
13308 struct bp_location
*loc
;
13309 struct tracepoint
*tp
= (struct tracepoint
*) bp
;
13310 size_t size
= get_remote_packet_size ();
13315 tp
->traceframe_usage
= 0;
13316 for (loc
= tp
->loc
; loc
; loc
= loc
->next
)
13318 /* If the tracepoint was never downloaded, don't go asking for
13320 if (tp
->number_on_target
== 0)
13322 xsnprintf (rs
->buf
, size
, "qTP:%x:%s", tp
->number_on_target
,
13323 phex_nz (loc
->address
, 0));
13325 reply
= remote_get_noisy_reply ();
13326 if (reply
&& *reply
)
13329 parse_tracepoint_status (reply
+ 1, bp
, utp
);
13335 utp
->hit_count
= 0;
13336 utp
->traceframe_usage
= 0;
13337 xsnprintf (rs
->buf
, size
, "qTP:%x:%s", utp
->number
,
13338 phex_nz (utp
->addr
, 0));
13340 reply
= remote_get_noisy_reply ();
13341 if (reply
&& *reply
)
13344 parse_tracepoint_status (reply
+ 1, bp
, utp
);
13350 remote_target::trace_stop ()
13352 struct remote_state
*rs
= get_remote_state ();
13355 remote_get_noisy_reply ();
13356 if (*rs
->buf
== '\0')
13357 error (_("Target does not support this command."));
13358 if (strcmp (rs
->buf
, "OK") != 0)
13359 error (_("Bogus reply from target: %s"), rs
->buf
);
13363 remote_target::trace_find (enum trace_find_type type
, int num
,
13364 CORE_ADDR addr1
, CORE_ADDR addr2
,
13367 struct remote_state
*rs
= get_remote_state ();
13368 char *endbuf
= rs
->buf
+ get_remote_packet_size ();
13370 int target_frameno
= -1, target_tracept
= -1;
13372 /* Lookups other than by absolute frame number depend on the current
13373 trace selected, so make sure it is correct on the remote end
13375 if (type
!= tfind_number
)
13376 set_remote_traceframe ();
13379 strcpy (p
, "QTFrame:");
13380 p
= strchr (p
, '\0');
13384 xsnprintf (p
, endbuf
- p
, "%x", num
);
13387 xsnprintf (p
, endbuf
- p
, "pc:%s", phex_nz (addr1
, 0));
13390 xsnprintf (p
, endbuf
- p
, "tdp:%x", num
);
13393 xsnprintf (p
, endbuf
- p
, "range:%s:%s", phex_nz (addr1
, 0),
13394 phex_nz (addr2
, 0));
13396 case tfind_outside
:
13397 xsnprintf (p
, endbuf
- p
, "outside:%s:%s", phex_nz (addr1
, 0),
13398 phex_nz (addr2
, 0));
13401 error (_("Unknown trace find type %d"), type
);
13405 reply
= remote_get_noisy_reply ();
13406 if (*reply
== '\0')
13407 error (_("Target does not support this command."));
13409 while (reply
&& *reply
)
13414 target_frameno
= (int) strtol (p
, &reply
, 16);
13416 error (_("Unable to parse trace frame number"));
13417 /* Don't update our remote traceframe number cache on failure
13418 to select a remote traceframe. */
13419 if (target_frameno
== -1)
13424 target_tracept
= (int) strtol (p
, &reply
, 16);
13426 error (_("Unable to parse tracepoint number"));
13428 case 'O': /* "OK"? */
13429 if (reply
[1] == 'K' && reply
[2] == '\0')
13432 error (_("Bogus reply from target: %s"), reply
);
13435 error (_("Bogus reply from target: %s"), reply
);
13438 *tpp
= target_tracept
;
13440 rs
->remote_traceframe_number
= target_frameno
;
13441 return target_frameno
;
13445 remote_target::get_trace_state_variable_value (int tsvnum
, LONGEST
*val
)
13447 struct remote_state
*rs
= get_remote_state ();
13451 set_remote_traceframe ();
13453 xsnprintf (rs
->buf
, get_remote_packet_size (), "qTV:%x", tsvnum
);
13455 reply
= remote_get_noisy_reply ();
13456 if (reply
&& *reply
)
13460 unpack_varlen_hex (reply
+ 1, &uval
);
13461 *val
= (LONGEST
) uval
;
13469 remote_target::save_trace_data (const char *filename
)
13471 struct remote_state
*rs
= get_remote_state ();
13475 strcpy (p
, "QTSave:");
13477 if ((p
- rs
->buf
) + strlen (filename
) * 2 >= get_remote_packet_size ())
13478 error (_("Remote file name too long for trace save packet"));
13479 p
+= 2 * bin2hex ((gdb_byte
*) filename
, p
, strlen (filename
));
13482 reply
= remote_get_noisy_reply ();
13483 if (*reply
== '\0')
13484 error (_("Target does not support this command."));
13485 if (strcmp (reply
, "OK") != 0)
13486 error (_("Bogus reply from target: %s"), reply
);
13490 /* This is basically a memory transfer, but needs to be its own packet
13491 because we don't know how the target actually organizes its trace
13492 memory, plus we want to be able to ask for as much as possible, but
13493 not be unhappy if we don't get as much as we ask for. */
13496 remote_target::get_raw_trace_data (gdb_byte
*buf
, ULONGEST offset
, LONGEST len
)
13498 struct remote_state
*rs
= get_remote_state ();
13504 strcpy (p
, "qTBuffer:");
13506 p
+= hexnumstr (p
, offset
);
13508 p
+= hexnumstr (p
, len
);
13512 reply
= remote_get_noisy_reply ();
13513 if (reply
&& *reply
)
13515 /* 'l' by itself means we're at the end of the buffer and
13516 there is nothing more to get. */
13520 /* Convert the reply into binary. Limit the number of bytes to
13521 convert according to our passed-in buffer size, rather than
13522 what was returned in the packet; if the target is
13523 unexpectedly generous and gives us a bigger reply than we
13524 asked for, we don't want to crash. */
13525 rslt
= hex2bin (reply
, buf
, len
);
13529 /* Something went wrong, flag as an error. */
13534 remote_target::set_disconnected_tracing (int val
)
13536 struct remote_state
*rs
= get_remote_state ();
13538 if (packet_support (PACKET_DisconnectedTracing_feature
) == PACKET_ENABLE
)
13542 xsnprintf (rs
->buf
, get_remote_packet_size (), "QTDisconnected:%x", val
);
13544 reply
= remote_get_noisy_reply ();
13545 if (*reply
== '\0')
13546 error (_("Target does not support this command."));
13547 if (strcmp (reply
, "OK") != 0)
13548 error (_("Bogus reply from target: %s"), reply
);
13551 warning (_("Target does not support disconnected tracing."));
13555 remote_target::core_of_thread (ptid_t ptid
)
13557 struct thread_info
*info
= find_thread_ptid (ptid
);
13559 if (info
!= NULL
&& info
->priv
!= NULL
)
13560 return get_remote_thread_info (info
)->core
;
13566 remote_target::set_circular_trace_buffer (int val
)
13568 struct remote_state
*rs
= get_remote_state ();
13571 xsnprintf (rs
->buf
, get_remote_packet_size (), "QTBuffer:circular:%x", val
);
13573 reply
= remote_get_noisy_reply ();
13574 if (*reply
== '\0')
13575 error (_("Target does not support this command."));
13576 if (strcmp (reply
, "OK") != 0)
13577 error (_("Bogus reply from target: %s"), reply
);
13581 remote_target::traceframe_info ()
13583 gdb::optional
<gdb::char_vector
> text
13584 = target_read_stralloc (target_stack
, TARGET_OBJECT_TRACEFRAME_INFO
,
13587 return parse_traceframe_info (text
->data ());
13592 /* Handle the qTMinFTPILen packet. Returns the minimum length of
13593 instruction on which a fast tracepoint may be placed. Returns -1
13594 if the packet is not supported, and 0 if the minimum instruction
13595 length is unknown. */
13598 remote_target::get_min_fast_tracepoint_insn_len ()
13600 struct remote_state
*rs
= get_remote_state ();
13603 /* If we're not debugging a process yet, the IPA can't be
13605 if (!target_has_execution
)
13608 /* Make sure the remote is pointing at the right process. */
13609 set_general_process ();
13611 xsnprintf (rs
->buf
, get_remote_packet_size (), "qTMinFTPILen");
13613 reply
= remote_get_noisy_reply ();
13614 if (*reply
== '\0')
13618 ULONGEST min_insn_len
;
13620 unpack_varlen_hex (reply
, &min_insn_len
);
13622 return (int) min_insn_len
;
13627 remote_target::set_trace_buffer_size (LONGEST val
)
13629 if (packet_support (PACKET_QTBuffer_size
) != PACKET_DISABLE
)
13631 struct remote_state
*rs
= get_remote_state ();
13632 char *buf
= rs
->buf
;
13633 char *endbuf
= rs
->buf
+ get_remote_packet_size ();
13634 enum packet_result result
;
13636 gdb_assert (val
>= 0 || val
== -1);
13637 buf
+= xsnprintf (buf
, endbuf
- buf
, "QTBuffer:size:");
13638 /* Send -1 as literal "-1" to avoid host size dependency. */
13642 buf
+= hexnumstr (buf
, (ULONGEST
) -val
);
13645 buf
+= hexnumstr (buf
, (ULONGEST
) val
);
13648 remote_get_noisy_reply ();
13649 result
= packet_ok (rs
->buf
,
13650 &remote_protocol_packets
[PACKET_QTBuffer_size
]);
13652 if (result
!= PACKET_OK
)
13653 warning (_("Bogus reply from target: %s"), rs
->buf
);
13658 remote_target::set_trace_notes (const char *user
, const char *notes
,
13659 const char *stop_notes
)
13661 struct remote_state
*rs
= get_remote_state ();
13663 char *buf
= rs
->buf
;
13664 char *endbuf
= rs
->buf
+ get_remote_packet_size ();
13667 buf
+= xsnprintf (buf
, endbuf
- buf
, "QTNotes:");
13670 buf
+= xsnprintf (buf
, endbuf
- buf
, "user:");
13671 nbytes
= bin2hex ((gdb_byte
*) user
, buf
, strlen (user
));
13677 buf
+= xsnprintf (buf
, endbuf
- buf
, "notes:");
13678 nbytes
= bin2hex ((gdb_byte
*) notes
, buf
, strlen (notes
));
13684 buf
+= xsnprintf (buf
, endbuf
- buf
, "tstop:");
13685 nbytes
= bin2hex ((gdb_byte
*) stop_notes
, buf
, strlen (stop_notes
));
13689 /* Ensure the buffer is terminated. */
13693 reply
= remote_get_noisy_reply ();
13694 if (*reply
== '\0')
13697 if (strcmp (reply
, "OK") != 0)
13698 error (_("Bogus reply from target: %s"), reply
);
13704 remote_target::use_agent (bool use
)
13706 if (packet_support (PACKET_QAgent
) != PACKET_DISABLE
)
13708 struct remote_state
*rs
= get_remote_state ();
13710 /* If the stub supports QAgent. */
13711 xsnprintf (rs
->buf
, get_remote_packet_size (), "QAgent:%d", use
);
13713 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
13715 if (strcmp (rs
->buf
, "OK") == 0)
13726 remote_target::can_use_agent ()
13728 return (packet_support (PACKET_QAgent
) != PACKET_DISABLE
);
13731 struct btrace_target_info
13733 /* The ptid of the traced thread. */
13736 /* The obtained branch trace configuration. */
13737 struct btrace_config conf
;
13740 /* Reset our idea of our target's btrace configuration. */
13743 remote_btrace_reset (remote_state
*rs
)
13745 memset (&rs
->btrace_config
, 0, sizeof (rs
->btrace_config
));
13748 /* Synchronize the configuration with the target. */
13751 remote_target::btrace_sync_conf (const btrace_config
*conf
)
13753 struct packet_config
*packet
;
13754 struct remote_state
*rs
;
13755 char *buf
, *pos
, *endbuf
;
13757 rs
= get_remote_state ();
13759 endbuf
= buf
+ get_remote_packet_size ();
13761 packet
= &remote_protocol_packets
[PACKET_Qbtrace_conf_bts_size
];
13762 if (packet_config_support (packet
) == PACKET_ENABLE
13763 && conf
->bts
.size
!= rs
->btrace_config
.bts
.size
)
13766 pos
+= xsnprintf (pos
, endbuf
- pos
, "%s=0x%x", packet
->name
,
13770 getpkt (&buf
, &rs
->buf_size
, 0);
13772 if (packet_ok (buf
, packet
) == PACKET_ERROR
)
13774 if (buf
[0] == 'E' && buf
[1] == '.')
13775 error (_("Failed to configure the BTS buffer size: %s"), buf
+ 2);
13777 error (_("Failed to configure the BTS buffer size."));
13780 rs
->btrace_config
.bts
.size
= conf
->bts
.size
;
13783 packet
= &remote_protocol_packets
[PACKET_Qbtrace_conf_pt_size
];
13784 if (packet_config_support (packet
) == PACKET_ENABLE
13785 && conf
->pt
.size
!= rs
->btrace_config
.pt
.size
)
13788 pos
+= xsnprintf (pos
, endbuf
- pos
, "%s=0x%x", packet
->name
,
13792 getpkt (&buf
, &rs
->buf_size
, 0);
13794 if (packet_ok (buf
, packet
) == PACKET_ERROR
)
13796 if (buf
[0] == 'E' && buf
[1] == '.')
13797 error (_("Failed to configure the trace buffer size: %s"), buf
+ 2);
13799 error (_("Failed to configure the trace buffer size."));
13802 rs
->btrace_config
.pt
.size
= conf
->pt
.size
;
13806 /* Read the current thread's btrace configuration from the target and
13807 store it into CONF. */
13810 btrace_read_config (struct btrace_config
*conf
)
13812 gdb::optional
<gdb::char_vector
> xml
13813 = target_read_stralloc (target_stack
, TARGET_OBJECT_BTRACE_CONF
, "");
13815 parse_xml_btrace_conf (conf
, xml
->data ());
13818 /* Maybe reopen target btrace. */
13821 remote_target::remote_btrace_maybe_reopen ()
13823 struct remote_state
*rs
= get_remote_state ();
13824 struct thread_info
*tp
;
13825 int btrace_target_pushed
= 0;
13828 scoped_restore_current_thread restore_thread
;
13830 ALL_NON_EXITED_THREADS (tp
)
13832 set_general_thread (tp
->ptid
);
13834 memset (&rs
->btrace_config
, 0x00, sizeof (struct btrace_config
));
13835 btrace_read_config (&rs
->btrace_config
);
13837 if (rs
->btrace_config
.format
== BTRACE_FORMAT_NONE
)
13840 #if !defined (HAVE_LIBIPT)
13841 if (rs
->btrace_config
.format
== BTRACE_FORMAT_PT
)
13846 warning (_("Target is recording using Intel Processor Trace "
13847 "but support was disabled at compile time."));
13852 #endif /* !defined (HAVE_LIBIPT) */
13854 /* Push target, once, but before anything else happens. This way our
13855 changes to the threads will be cleaned up by unpushing the target
13856 in case btrace_read_config () throws. */
13857 if (!btrace_target_pushed
)
13859 btrace_target_pushed
= 1;
13860 record_btrace_push_target ();
13861 printf_filtered (_("Target is recording using %s.\n"),
13862 btrace_format_string (rs
->btrace_config
.format
));
13865 tp
->btrace
.target
= XCNEW (struct btrace_target_info
);
13866 tp
->btrace
.target
->ptid
= tp
->ptid
;
13867 tp
->btrace
.target
->conf
= rs
->btrace_config
;
13871 /* Enable branch tracing. */
13873 struct btrace_target_info
*
13874 remote_target::enable_btrace (ptid_t ptid
, const struct btrace_config
*conf
)
13876 struct btrace_target_info
*tinfo
= NULL
;
13877 struct packet_config
*packet
= NULL
;
13878 struct remote_state
*rs
= get_remote_state ();
13879 char *buf
= rs
->buf
;
13880 char *endbuf
= rs
->buf
+ get_remote_packet_size ();
13882 switch (conf
->format
)
13884 case BTRACE_FORMAT_BTS
:
13885 packet
= &remote_protocol_packets
[PACKET_Qbtrace_bts
];
13888 case BTRACE_FORMAT_PT
:
13889 packet
= &remote_protocol_packets
[PACKET_Qbtrace_pt
];
13893 if (packet
== NULL
|| packet_config_support (packet
) != PACKET_ENABLE
)
13894 error (_("Target does not support branch tracing."));
13896 btrace_sync_conf (conf
);
13898 set_general_thread (ptid
);
13900 buf
+= xsnprintf (buf
, endbuf
- buf
, "%s", packet
->name
);
13902 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
13904 if (packet_ok (rs
->buf
, packet
) == PACKET_ERROR
)
13906 if (rs
->buf
[0] == 'E' && rs
->buf
[1] == '.')
13907 error (_("Could not enable branch tracing for %s: %s"),
13908 target_pid_to_str (ptid
), rs
->buf
+ 2);
13910 error (_("Could not enable branch tracing for %s."),
13911 target_pid_to_str (ptid
));
13914 tinfo
= XCNEW (struct btrace_target_info
);
13915 tinfo
->ptid
= ptid
;
13917 /* If we fail to read the configuration, we lose some information, but the
13918 tracing itself is not impacted. */
13921 btrace_read_config (&tinfo
->conf
);
13923 CATCH (err
, RETURN_MASK_ERROR
)
13925 if (err
.message
!= NULL
)
13926 warning ("%s", err
.message
);
13933 /* Disable branch tracing. */
13936 remote_target::disable_btrace (struct btrace_target_info
*tinfo
)
13938 struct packet_config
*packet
= &remote_protocol_packets
[PACKET_Qbtrace_off
];
13939 struct remote_state
*rs
= get_remote_state ();
13940 char *buf
= rs
->buf
;
13941 char *endbuf
= rs
->buf
+ get_remote_packet_size ();
13943 if (packet_config_support (packet
) != PACKET_ENABLE
)
13944 error (_("Target does not support branch tracing."));
13946 set_general_thread (tinfo
->ptid
);
13948 buf
+= xsnprintf (buf
, endbuf
- buf
, "%s", packet
->name
);
13950 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
13952 if (packet_ok (rs
->buf
, packet
) == PACKET_ERROR
)
13954 if (rs
->buf
[0] == 'E' && rs
->buf
[1] == '.')
13955 error (_("Could not disable branch tracing for %s: %s"),
13956 target_pid_to_str (tinfo
->ptid
), rs
->buf
+ 2);
13958 error (_("Could not disable branch tracing for %s."),
13959 target_pid_to_str (tinfo
->ptid
));
13965 /* Teardown branch tracing. */
13968 remote_target::teardown_btrace (struct btrace_target_info
*tinfo
)
13970 /* We must not talk to the target during teardown. */
13974 /* Read the branch trace. */
13977 remote_target::read_btrace (struct btrace_data
*btrace
,
13978 struct btrace_target_info
*tinfo
,
13979 enum btrace_read_type type
)
13981 struct packet_config
*packet
= &remote_protocol_packets
[PACKET_qXfer_btrace
];
13984 if (packet_config_support (packet
) != PACKET_ENABLE
)
13985 error (_("Target does not support branch tracing."));
13987 #if !defined(HAVE_LIBEXPAT)
13988 error (_("Cannot process branch tracing result. XML parsing not supported."));
13993 case BTRACE_READ_ALL
:
13996 case BTRACE_READ_NEW
:
13999 case BTRACE_READ_DELTA
:
14003 internal_error (__FILE__
, __LINE__
,
14004 _("Bad branch tracing read type: %u."),
14005 (unsigned int) type
);
14008 gdb::optional
<gdb::char_vector
> xml
14009 = target_read_stralloc (target_stack
, TARGET_OBJECT_BTRACE
, annex
);
14011 return BTRACE_ERR_UNKNOWN
;
14013 parse_xml_btrace (btrace
, xml
->data ());
14015 return BTRACE_ERR_NONE
;
14018 const struct btrace_config
*
14019 remote_target::btrace_conf (const struct btrace_target_info
*tinfo
)
14021 return &tinfo
->conf
;
14025 remote_target::augmented_libraries_svr4_read ()
14027 return (packet_support (PACKET_augmented_libraries_svr4_read_feature
)
14031 /* Implementation of to_load. */
14034 remote_target::load (const char *name
, int from_tty
)
14036 generic_load (name
, from_tty
);
14039 /* Accepts an integer PID; returns a string representing a file that
14040 can be opened on the remote side to get the symbols for the child
14041 process. Returns NULL if the operation is not supported. */
14044 remote_target::pid_to_exec_file (int pid
)
14046 static gdb::optional
<gdb::char_vector
> filename
;
14047 struct inferior
*inf
;
14048 char *annex
= NULL
;
14050 if (packet_support (PACKET_qXfer_exec_file
) != PACKET_ENABLE
)
14053 inf
= find_inferior_pid (pid
);
14055 internal_error (__FILE__
, __LINE__
,
14056 _("not currently attached to process %d"), pid
);
14058 if (!inf
->fake_pid_p
)
14060 const int annex_size
= 9;
14062 annex
= (char *) alloca (annex_size
);
14063 xsnprintf (annex
, annex_size
, "%x", pid
);
14066 filename
= target_read_stralloc (target_stack
,
14067 TARGET_OBJECT_EXEC_FILE
, annex
);
14069 return filename
? filename
->data () : nullptr;
14072 /* Implement the to_can_do_single_step target_ops method. */
14075 remote_target::can_do_single_step ()
14077 /* We can only tell whether target supports single step or not by
14078 supported s and S vCont actions if the stub supports vContSupported
14079 feature. If the stub doesn't support vContSupported feature,
14080 we have conservatively to think target doesn't supports single
14082 if (packet_support (PACKET_vContSupported
) == PACKET_ENABLE
)
14084 struct remote_state
*rs
= get_remote_state ();
14086 if (packet_support (PACKET_vCont
) == PACKET_SUPPORT_UNKNOWN
)
14087 remote_vcont_probe ();
14089 return rs
->supports_vCont
.s
&& rs
->supports_vCont
.S
;
14095 /* Implementation of the to_execution_direction method for the remote
14098 enum exec_direction_kind
14099 remote_target::execution_direction ()
14101 struct remote_state
*rs
= get_remote_state ();
14103 return rs
->last_resume_exec_dir
;
14106 /* Return pointer to the thread_info struct which corresponds to
14107 THREAD_HANDLE (having length HANDLE_LEN). */
14110 remote_target::thread_handle_to_thread_info (const gdb_byte
*thread_handle
,
14114 struct thread_info
*tp
;
14116 ALL_NON_EXITED_THREADS (tp
)
14118 remote_thread_info
*priv
= get_remote_thread_info (tp
);
14120 if (tp
->inf
== inf
&& priv
!= NULL
)
14122 if (handle_len
!= priv
->thread_handle
.size ())
14123 error (_("Thread handle size mismatch: %d vs %zu (from remote)"),
14124 handle_len
, priv
->thread_handle
.size ());
14125 if (memcmp (thread_handle
, priv
->thread_handle
.data (),
14135 remote_target::can_async_p ()
14137 struct remote_state
*rs
= get_remote_state ();
14139 /* We don't go async if the user has explicitly prevented it with the
14140 "maint set target-async" command. */
14141 if (!target_async_permitted
)
14144 /* We're async whenever the serial device is. */
14145 return serial_can_async_p (rs
->remote_desc
);
14149 remote_target::is_async_p ()
14151 struct remote_state
*rs
= get_remote_state ();
14153 if (!target_async_permitted
)
14154 /* We only enable async when the user specifically asks for it. */
14157 /* We're async whenever the serial device is. */
14158 return serial_is_async_p (rs
->remote_desc
);
14161 /* Pass the SERIAL event on and up to the client. One day this code
14162 will be able to delay notifying the client of an event until the
14163 point where an entire packet has been received. */
14165 static serial_event_ftype remote_async_serial_handler
;
14168 remote_async_serial_handler (struct serial
*scb
, void *context
)
14170 /* Don't propogate error information up to the client. Instead let
14171 the client find out about the error by querying the target. */
14172 inferior_event_handler (INF_REG_EVENT
, NULL
);
14176 remote_async_inferior_event_handler (gdb_client_data data
)
14178 inferior_event_handler (INF_REG_EVENT
, data
);
14182 remote_target::async (int enable
)
14184 struct remote_state
*rs
= get_remote_state ();
14188 serial_async (rs
->remote_desc
, remote_async_serial_handler
, rs
);
14190 /* If there are pending events in the stop reply queue tell the
14191 event loop to process them. */
14192 if (!QUEUE_is_empty (stop_reply_p
, rs
->stop_reply_queue
))
14193 mark_async_event_handler (rs
->remote_async_inferior_event_token
);
14194 /* For simplicity, below we clear the pending events token
14195 without remembering whether it is marked, so here we always
14196 mark it. If there's actually no pending notification to
14197 process, this ends up being a no-op (other than a spurious
14198 event-loop wakeup). */
14199 if (target_is_non_stop_p ())
14200 mark_async_event_handler (rs
->notif_state
->get_pending_events_token
);
14204 serial_async (rs
->remote_desc
, NULL
, NULL
);
14205 /* If the core is disabling async, it doesn't want to be
14206 disturbed with target events. Clear all async event sources
14208 clear_async_event_handler (rs
->remote_async_inferior_event_token
);
14209 if (target_is_non_stop_p ())
14210 clear_async_event_handler (rs
->notif_state
->get_pending_events_token
);
14214 /* Implementation of the to_thread_events method. */
14217 remote_target::thread_events (int enable
)
14219 struct remote_state
*rs
= get_remote_state ();
14220 size_t size
= get_remote_packet_size ();
14222 if (packet_support (PACKET_QThreadEvents
) == PACKET_DISABLE
)
14225 xsnprintf (rs
->buf
, size
, "QThreadEvents:%x", enable
? 1 : 0);
14227 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
14229 switch (packet_ok (rs
->buf
,
14230 &remote_protocol_packets
[PACKET_QThreadEvents
]))
14233 if (strcmp (rs
->buf
, "OK") != 0)
14234 error (_("Remote refused setting thread events: %s"), rs
->buf
);
14237 warning (_("Remote failure reply: %s"), rs
->buf
);
14239 case PACKET_UNKNOWN
:
14245 set_remote_cmd (const char *args
, int from_tty
)
14247 help_list (remote_set_cmdlist
, "set remote ", all_commands
, gdb_stdout
);
14251 show_remote_cmd (const char *args
, int from_tty
)
14253 /* We can't just use cmd_show_list here, because we want to skip
14254 the redundant "show remote Z-packet" and the legacy aliases. */
14255 struct cmd_list_element
*list
= remote_show_cmdlist
;
14256 struct ui_out
*uiout
= current_uiout
;
14258 ui_out_emit_tuple
tuple_emitter (uiout
, "showlist");
14259 for (; list
!= NULL
; list
= list
->next
)
14260 if (strcmp (list
->name
, "Z-packet") == 0)
14262 else if (list
->type
== not_set_cmd
)
14263 /* Alias commands are exactly like the original, except they
14264 don't have the normal type. */
14268 ui_out_emit_tuple
option_emitter (uiout
, "option");
14270 uiout
->field_string ("name", list
->name
);
14271 uiout
->text (": ");
14272 if (list
->type
== show_cmd
)
14273 do_show_command (NULL
, from_tty
, list
);
14275 cmd_func (list
, NULL
, from_tty
);
14280 /* Function to be called whenever a new objfile (shlib) is detected. */
14282 remote_new_objfile (struct objfile
*objfile
)
14284 remote_target
*remote
= get_current_remote_target ();
14286 if (remote
!= NULL
) /* Have a remote connection. */
14287 remote
->remote_check_symbols ();
14290 /* Pull all the tracepoints defined on the target and create local
14291 data structures representing them. We don't want to create real
14292 tracepoints yet, we don't want to mess up the user's existing
14296 remote_target::upload_tracepoints (struct uploaded_tp
**utpp
)
14298 struct remote_state
*rs
= get_remote_state ();
14301 /* Ask for a first packet of tracepoint definition. */
14303 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
14305 while (*p
&& *p
!= 'l')
14307 parse_tracepoint_definition (p
, utpp
);
14308 /* Ask for another packet of tracepoint definition. */
14310 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
14317 remote_target::upload_trace_state_variables (struct uploaded_tsv
**utsvp
)
14319 struct remote_state
*rs
= get_remote_state ();
14322 /* Ask for a first packet of variable definition. */
14324 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
14326 while (*p
&& *p
!= 'l')
14328 parse_tsv_definition (p
, utsvp
);
14329 /* Ask for another packet of variable definition. */
14331 getpkt (&rs
->buf
, &rs
->buf_size
, 0);
14337 /* The "set/show range-stepping" show hook. */
14340 show_range_stepping (struct ui_file
*file
, int from_tty
,
14341 struct cmd_list_element
*c
,
14344 fprintf_filtered (file
,
14345 _("Debugger's willingness to use range stepping "
14346 "is %s.\n"), value
);
14349 /* Return true if the vCont;r action is supported by the remote
14353 remote_target::vcont_r_supported ()
14355 if (packet_support (PACKET_vCont
) == PACKET_SUPPORT_UNKNOWN
)
14356 remote_vcont_probe ();
14358 return (packet_support (PACKET_vCont
) == PACKET_ENABLE
14359 && get_remote_state ()->supports_vCont
.r
);
14362 /* The "set/show range-stepping" set hook. */
14365 set_range_stepping (const char *ignore_args
, int from_tty
,
14366 struct cmd_list_element
*c
)
14368 /* When enabling, check whether range stepping is actually supported
14369 by the target, and warn if not. */
14370 if (use_range_stepping
)
14372 remote_target
*remote
= get_current_remote_target ();
14374 || !remote
->vcont_r_supported ())
14375 warning (_("Range stepping is not supported by the current target"));
14380 _initialize_remote (void)
14382 struct cmd_list_element
*cmd
;
14383 const char *cmd_name
;
14385 /* architecture specific data */
14386 remote_g_packet_data_handle
=
14387 gdbarch_data_register_pre_init (remote_g_packet_data_init
);
14390 = register_program_space_data_with_cleanup (NULL
,
14391 remote_pspace_data_cleanup
);
14393 add_target (remote_target_info
, remote_target::open
);
14394 add_target (extended_remote_target_info
, extended_remote_target::open
);
14396 /* Hook into new objfile notification. */
14397 gdb::observers::new_objfile
.attach (remote_new_objfile
);
14400 init_remote_threadtests ();
14403 /* set/show remote ... */
14405 add_prefix_cmd ("remote", class_maintenance
, set_remote_cmd
, _("\
14406 Remote protocol specific variables\n\
14407 Configure various remote-protocol specific variables such as\n\
14408 the packets being used"),
14409 &remote_set_cmdlist
, "set remote ",
14410 0 /* allow-unknown */, &setlist
);
14411 add_prefix_cmd ("remote", class_maintenance
, show_remote_cmd
, _("\
14412 Remote protocol specific variables\n\
14413 Configure various remote-protocol specific variables such as\n\
14414 the packets being used"),
14415 &remote_show_cmdlist
, "show remote ",
14416 0 /* allow-unknown */, &showlist
);
14418 add_cmd ("compare-sections", class_obscure
, compare_sections_command
, _("\
14419 Compare section data on target to the exec file.\n\
14420 Argument is a single section name (default: all loaded sections).\n\
14421 To compare only read-only loaded sections, specify the -r option."),
14424 add_cmd ("packet", class_maintenance
, packet_command
, _("\
14425 Send an arbitrary packet to a remote target.\n\
14426 maintenance packet TEXT\n\
14427 If GDB is talking to an inferior via the GDB serial protocol, then\n\
14428 this command sends the string TEXT to the inferior, and displays the\n\
14429 response packet. GDB supplies the initial `$' character, and the\n\
14430 terminating `#' character and checksum."),
14433 add_setshow_boolean_cmd ("remotebreak", no_class
, &remote_break
, _("\
14434 Set whether to send break if interrupted."), _("\
14435 Show whether to send break if interrupted."), _("\
14436 If set, a break, instead of a cntrl-c, is sent to the remote target."),
14437 set_remotebreak
, show_remotebreak
,
14438 &setlist
, &showlist
);
14439 cmd_name
= "remotebreak";
14440 cmd
= lookup_cmd (&cmd_name
, setlist
, "", -1, 1);
14441 deprecate_cmd (cmd
, "set remote interrupt-sequence");
14442 cmd_name
= "remotebreak"; /* needed because lookup_cmd updates the pointer */
14443 cmd
= lookup_cmd (&cmd_name
, showlist
, "", -1, 1);
14444 deprecate_cmd (cmd
, "show remote interrupt-sequence");
14446 add_setshow_enum_cmd ("interrupt-sequence", class_support
,
14447 interrupt_sequence_modes
, &interrupt_sequence_mode
,
14449 Set interrupt sequence to remote target."), _("\
14450 Show interrupt sequence to remote target."), _("\
14451 Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."),
14452 NULL
, show_interrupt_sequence
,
14453 &remote_set_cmdlist
,
14454 &remote_show_cmdlist
);
14456 add_setshow_boolean_cmd ("interrupt-on-connect", class_support
,
14457 &interrupt_on_connect
, _("\
14458 Set whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
14459 Show whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
14460 If set, interrupt sequence is sent to remote target."),
14462 &remote_set_cmdlist
, &remote_show_cmdlist
);
14464 /* Install commands for configuring memory read/write packets. */
14466 add_cmd ("remotewritesize", no_class
, set_memory_write_packet_size
, _("\
14467 Set the maximum number of bytes per memory write packet (deprecated)."),
14469 add_cmd ("remotewritesize", no_class
, show_memory_write_packet_size
, _("\
14470 Show the maximum number of bytes per memory write packet (deprecated)."),
14472 add_cmd ("memory-write-packet-size", no_class
,
14473 set_memory_write_packet_size
, _("\
14474 Set the maximum number of bytes per memory-write packet.\n\
14475 Specify the number of bytes in a packet or 0 (zero) for the\n\
14476 default packet size. The actual limit is further reduced\n\
14477 dependent on the target. Specify ``fixed'' to disable the\n\
14478 further restriction and ``limit'' to enable that restriction."),
14479 &remote_set_cmdlist
);
14480 add_cmd ("memory-read-packet-size", no_class
,
14481 set_memory_read_packet_size
, _("\
14482 Set the maximum number of bytes per memory-read packet.\n\
14483 Specify the number of bytes in a packet or 0 (zero) for the\n\
14484 default packet size. The actual limit is further reduced\n\
14485 dependent on the target. Specify ``fixed'' to disable the\n\
14486 further restriction and ``limit'' to enable that restriction."),
14487 &remote_set_cmdlist
);
14488 add_cmd ("memory-write-packet-size", no_class
,
14489 show_memory_write_packet_size
,
14490 _("Show the maximum number of bytes per memory-write packet."),
14491 &remote_show_cmdlist
);
14492 add_cmd ("memory-read-packet-size", no_class
,
14493 show_memory_read_packet_size
,
14494 _("Show the maximum number of bytes per memory-read packet."),
14495 &remote_show_cmdlist
);
14497 add_setshow_zinteger_cmd ("hardware-watchpoint-limit", no_class
,
14498 &remote_hw_watchpoint_limit
, _("\
14499 Set the maximum number of target hardware watchpoints."), _("\
14500 Show the maximum number of target hardware watchpoints."), _("\
14501 Specify a negative limit for unlimited."),
14502 NULL
, NULL
, /* FIXME: i18n: The maximum
14503 number of target hardware
14504 watchpoints is %s. */
14505 &remote_set_cmdlist
, &remote_show_cmdlist
);
14506 add_setshow_zinteger_cmd ("hardware-watchpoint-length-limit", no_class
,
14507 &remote_hw_watchpoint_length_limit
, _("\
14508 Set the maximum length (in bytes) of a target hardware watchpoint."), _("\
14509 Show the maximum length (in bytes) of a target hardware watchpoint."), _("\
14510 Specify a negative limit for unlimited."),
14511 NULL
, NULL
, /* FIXME: i18n: The maximum
14512 length (in bytes) of a target
14513 hardware watchpoint is %s. */
14514 &remote_set_cmdlist
, &remote_show_cmdlist
);
14515 add_setshow_zinteger_cmd ("hardware-breakpoint-limit", no_class
,
14516 &remote_hw_breakpoint_limit
, _("\
14517 Set the maximum number of target hardware breakpoints."), _("\
14518 Show the maximum number of target hardware breakpoints."), _("\
14519 Specify a negative limit for unlimited."),
14520 NULL
, NULL
, /* FIXME: i18n: The maximum
14521 number of target hardware
14522 breakpoints is %s. */
14523 &remote_set_cmdlist
, &remote_show_cmdlist
);
14525 add_setshow_zuinteger_cmd ("remoteaddresssize", class_obscure
,
14526 &remote_address_size
, _("\
14527 Set the maximum size of the address (in bits) in a memory packet."), _("\
14528 Show the maximum size of the address (in bits) in a memory packet."), NULL
,
14530 NULL
, /* FIXME: i18n: */
14531 &setlist
, &showlist
);
14533 init_all_packet_configs ();
14535 add_packet_config_cmd (&remote_protocol_packets
[PACKET_X
],
14536 "X", "binary-download", 1);
14538 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vCont
],
14539 "vCont", "verbose-resume", 0);
14541 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QPassSignals
],
14542 "QPassSignals", "pass-signals", 0);
14544 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QCatchSyscalls
],
14545 "QCatchSyscalls", "catch-syscalls", 0);
14547 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QProgramSignals
],
14548 "QProgramSignals", "program-signals", 0);
14550 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QSetWorkingDir
],
14551 "QSetWorkingDir", "set-working-dir", 0);
14553 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QStartupWithShell
],
14554 "QStartupWithShell", "startup-with-shell", 0);
14556 add_packet_config_cmd (&remote_protocol_packets
14557 [PACKET_QEnvironmentHexEncoded
],
14558 "QEnvironmentHexEncoded", "environment-hex-encoded",
14561 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QEnvironmentReset
],
14562 "QEnvironmentReset", "environment-reset",
14565 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QEnvironmentUnset
],
14566 "QEnvironmentUnset", "environment-unset",
14569 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qSymbol
],
14570 "qSymbol", "symbol-lookup", 0);
14572 add_packet_config_cmd (&remote_protocol_packets
[PACKET_P
],
14573 "P", "set-register", 1);
14575 add_packet_config_cmd (&remote_protocol_packets
[PACKET_p
],
14576 "p", "fetch-register", 1);
14578 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Z0
],
14579 "Z0", "software-breakpoint", 0);
14581 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Z1
],
14582 "Z1", "hardware-breakpoint", 0);
14584 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Z2
],
14585 "Z2", "write-watchpoint", 0);
14587 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Z3
],
14588 "Z3", "read-watchpoint", 0);
14590 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Z4
],
14591 "Z4", "access-watchpoint", 0);
14593 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_auxv
],
14594 "qXfer:auxv:read", "read-aux-vector", 0);
14596 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_exec_file
],
14597 "qXfer:exec-file:read", "pid-to-exec-file", 0);
14599 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_features
],
14600 "qXfer:features:read", "target-features", 0);
14602 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_libraries
],
14603 "qXfer:libraries:read", "library-info", 0);
14605 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_libraries_svr4
],
14606 "qXfer:libraries-svr4:read", "library-info-svr4", 0);
14608 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_memory_map
],
14609 "qXfer:memory-map:read", "memory-map", 0);
14611 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_spu_read
],
14612 "qXfer:spu:read", "read-spu-object", 0);
14614 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_spu_write
],
14615 "qXfer:spu:write", "write-spu-object", 0);
14617 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_osdata
],
14618 "qXfer:osdata:read", "osdata", 0);
14620 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_threads
],
14621 "qXfer:threads:read", "threads", 0);
14623 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_siginfo_read
],
14624 "qXfer:siginfo:read", "read-siginfo-object", 0);
14626 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_siginfo_write
],
14627 "qXfer:siginfo:write", "write-siginfo-object", 0);
14629 add_packet_config_cmd
14630 (&remote_protocol_packets
[PACKET_qXfer_traceframe_info
],
14631 "qXfer:traceframe-info:read", "traceframe-info", 0);
14633 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_uib
],
14634 "qXfer:uib:read", "unwind-info-block", 0);
14636 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qGetTLSAddr
],
14637 "qGetTLSAddr", "get-thread-local-storage-address",
14640 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qGetTIBAddr
],
14641 "qGetTIBAddr", "get-thread-information-block-address",
14644 add_packet_config_cmd (&remote_protocol_packets
[PACKET_bc
],
14645 "bc", "reverse-continue", 0);
14647 add_packet_config_cmd (&remote_protocol_packets
[PACKET_bs
],
14648 "bs", "reverse-step", 0);
14650 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qSupported
],
14651 "qSupported", "supported-packets", 0);
14653 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qSearch_memory
],
14654 "qSearch:memory", "search-memory", 0);
14656 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qTStatus
],
14657 "qTStatus", "trace-status", 0);
14659 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vFile_setfs
],
14660 "vFile:setfs", "hostio-setfs", 0);
14662 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vFile_open
],
14663 "vFile:open", "hostio-open", 0);
14665 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vFile_pread
],
14666 "vFile:pread", "hostio-pread", 0);
14668 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vFile_pwrite
],
14669 "vFile:pwrite", "hostio-pwrite", 0);
14671 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vFile_close
],
14672 "vFile:close", "hostio-close", 0);
14674 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vFile_unlink
],
14675 "vFile:unlink", "hostio-unlink", 0);
14677 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vFile_readlink
],
14678 "vFile:readlink", "hostio-readlink", 0);
14680 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vFile_fstat
],
14681 "vFile:fstat", "hostio-fstat", 0);
14683 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vAttach
],
14684 "vAttach", "attach", 0);
14686 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vRun
],
14689 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QStartNoAckMode
],
14690 "QStartNoAckMode", "noack", 0);
14692 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vKill
],
14693 "vKill", "kill", 0);
14695 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qAttached
],
14696 "qAttached", "query-attached", 0);
14698 add_packet_config_cmd (&remote_protocol_packets
[PACKET_ConditionalTracepoints
],
14699 "ConditionalTracepoints",
14700 "conditional-tracepoints", 0);
14702 add_packet_config_cmd (&remote_protocol_packets
[PACKET_ConditionalBreakpoints
],
14703 "ConditionalBreakpoints",
14704 "conditional-breakpoints", 0);
14706 add_packet_config_cmd (&remote_protocol_packets
[PACKET_BreakpointCommands
],
14707 "BreakpointCommands",
14708 "breakpoint-commands", 0);
14710 add_packet_config_cmd (&remote_protocol_packets
[PACKET_FastTracepoints
],
14711 "FastTracepoints", "fast-tracepoints", 0);
14713 add_packet_config_cmd (&remote_protocol_packets
[PACKET_TracepointSource
],
14714 "TracepointSource", "TracepointSource", 0);
14716 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QAllow
],
14717 "QAllow", "allow", 0);
14719 add_packet_config_cmd (&remote_protocol_packets
[PACKET_StaticTracepoints
],
14720 "StaticTracepoints", "static-tracepoints", 0);
14722 add_packet_config_cmd (&remote_protocol_packets
[PACKET_InstallInTrace
],
14723 "InstallInTrace", "install-in-trace", 0);
14725 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_statictrace_read
],
14726 "qXfer:statictrace:read", "read-sdata-object", 0);
14728 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_fdpic
],
14729 "qXfer:fdpic:read", "read-fdpic-loadmap", 0);
14731 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QDisableRandomization
],
14732 "QDisableRandomization", "disable-randomization", 0);
14734 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QAgent
],
14735 "QAgent", "agent", 0);
14737 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QTBuffer_size
],
14738 "QTBuffer:size", "trace-buffer-size", 0);
14740 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Qbtrace_off
],
14741 "Qbtrace:off", "disable-btrace", 0);
14743 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Qbtrace_bts
],
14744 "Qbtrace:bts", "enable-btrace-bts", 0);
14746 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Qbtrace_pt
],
14747 "Qbtrace:pt", "enable-btrace-pt", 0);
14749 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_btrace
],
14750 "qXfer:btrace", "read-btrace", 0);
14752 add_packet_config_cmd (&remote_protocol_packets
[PACKET_qXfer_btrace_conf
],
14753 "qXfer:btrace-conf", "read-btrace-conf", 0);
14755 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Qbtrace_conf_bts_size
],
14756 "Qbtrace-conf:bts:size", "btrace-conf-bts-size", 0);
14758 add_packet_config_cmd (&remote_protocol_packets
[PACKET_multiprocess_feature
],
14759 "multiprocess-feature", "multiprocess-feature", 0);
14761 add_packet_config_cmd (&remote_protocol_packets
[PACKET_swbreak_feature
],
14762 "swbreak-feature", "swbreak-feature", 0);
14764 add_packet_config_cmd (&remote_protocol_packets
[PACKET_hwbreak_feature
],
14765 "hwbreak-feature", "hwbreak-feature", 0);
14767 add_packet_config_cmd (&remote_protocol_packets
[PACKET_fork_event_feature
],
14768 "fork-event-feature", "fork-event-feature", 0);
14770 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vfork_event_feature
],
14771 "vfork-event-feature", "vfork-event-feature", 0);
14773 add_packet_config_cmd (&remote_protocol_packets
[PACKET_Qbtrace_conf_pt_size
],
14774 "Qbtrace-conf:pt:size", "btrace-conf-pt-size", 0);
14776 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vContSupported
],
14777 "vContSupported", "verbose-resume-supported", 0);
14779 add_packet_config_cmd (&remote_protocol_packets
[PACKET_exec_event_feature
],
14780 "exec-event-feature", "exec-event-feature", 0);
14782 add_packet_config_cmd (&remote_protocol_packets
[PACKET_vCtrlC
],
14783 "vCtrlC", "ctrl-c", 0);
14785 add_packet_config_cmd (&remote_protocol_packets
[PACKET_QThreadEvents
],
14786 "QThreadEvents", "thread-events", 0);
14788 add_packet_config_cmd (&remote_protocol_packets
[PACKET_no_resumed
],
14789 "N stop reply", "no-resumed-stop-reply", 0);
14791 /* Assert that we've registered "set remote foo-packet" commands
14792 for all packet configs. */
14796 for (i
= 0; i
< PACKET_MAX
; i
++)
14798 /* Ideally all configs would have a command associated. Some
14799 still don't though. */
14804 case PACKET_QNonStop
:
14805 case PACKET_EnableDisableTracepoints_feature
:
14806 case PACKET_tracenz_feature
:
14807 case PACKET_DisconnectedTracing_feature
:
14808 case PACKET_augmented_libraries_svr4_read_feature
:
14810 /* Additions to this list need to be well justified:
14811 pre-existing packets are OK; new packets are not. */
14819 /* This catches both forgetting to add a config command, and
14820 forgetting to remove a packet from the exception list. */
14821 gdb_assert (excepted
== (remote_protocol_packets
[i
].name
== NULL
));
14825 /* Keep the old ``set remote Z-packet ...'' working. Each individual
14826 Z sub-packet has its own set and show commands, but users may
14827 have sets to this variable in their .gdbinit files (or in their
14829 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure
,
14830 &remote_Z_packet_detect
, _("\
14831 Set use of remote protocol `Z' packets"), _("\
14832 Show use of remote protocol `Z' packets "), _("\
14833 When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
14835 set_remote_protocol_Z_packet_cmd
,
14836 show_remote_protocol_Z_packet_cmd
,
14837 /* FIXME: i18n: Use of remote protocol
14838 `Z' packets is %s. */
14839 &remote_set_cmdlist
, &remote_show_cmdlist
);
14841 add_prefix_cmd ("remote", class_files
, remote_command
, _("\
14842 Manipulate files on the remote system\n\
14843 Transfer files to and from the remote target system."),
14844 &remote_cmdlist
, "remote ",
14845 0 /* allow-unknown */, &cmdlist
);
14847 add_cmd ("put", class_files
, remote_put_command
,
14848 _("Copy a local file to the remote system."),
14851 add_cmd ("get", class_files
, remote_get_command
,
14852 _("Copy a remote file to the local system."),
14855 add_cmd ("delete", class_files
, remote_delete_command
,
14856 _("Delete a remote file."),
14859 add_setshow_string_noescape_cmd ("exec-file", class_files
,
14860 &remote_exec_file_var
, _("\
14861 Set the remote pathname for \"run\""), _("\
14862 Show the remote pathname for \"run\""), NULL
,
14863 set_remote_exec_file
,
14864 show_remote_exec_file
,
14865 &remote_set_cmdlist
,
14866 &remote_show_cmdlist
);
14868 add_setshow_boolean_cmd ("range-stepping", class_run
,
14869 &use_range_stepping
, _("\
14870 Enable or disable range stepping."), _("\
14871 Show whether target-assisted range stepping is enabled."), _("\
14872 If on, and the target supports it, when stepping a source line, GDB\n\
14873 tells the target to step the corresponding range of addresses itself instead\n\
14874 of issuing multiple single-steps. This speeds up source level\n\
14875 stepping. If off, GDB always issues single-steps, even if range\n\
14876 stepping is supported by the target. The default is on."),
14877 set_range_stepping
,
14878 show_range_stepping
,
14882 /* Eventually initialize fileio. See fileio.c */
14883 initialize_remote_fileio (remote_set_cmdlist
, remote_show_cmdlist
);
14885 /* Take advantage of the fact that the TID field is not used, to tag
14886 special ptids with it set to != 0. */
14887 magic_null_ptid
= ptid_build (42000, -1, 1);
14888 not_sent_ptid
= ptid_build (42000, -2, 1);
14889 any_thread_ptid
= ptid_build (42000, 0, 1);