blob: 2c3988cb5075655e8a799d1cc5d4760ad8ed426e [file] [log] [blame]
<
/* Remote target communications for serial-line targets in custom GDB protocol
Copyright (C) 1988-2024 Free Software Foundation, Inc.
This file is part of GDB.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
/* See the GDB User Guide for details of the GDB remote protocol. */
#include <ctype.h>
#include <fcntl.h>
#include "exceptions.h"
#include "inferior.h"
#include "infrun.h"
#include "bfd.h"
#include "symfile.h"
#include "target.h"
#include "process-stratum-target.h"
#include "cli/cli-cmds.h"
#include "objfiles.h"
#include "gdbthread.h"
#include "remote.h"
#include "remote-notif.h"
#include "regcache.h"
#include "value.h"
#include "observable.h"
#include "solib.h"
#include "cli/cli-decode.h"
#include "cli/cli-setshow.h"
#include "target-descriptions.h"
#include "gdb_bfd.h"
#include "gdbsupport/filestuff.h"
#include "gdbsupport/rsp-low.h"
#include "disasm.h"
#include "location.h"
#include "gdbsupport/gdb_sys_time.h"
#include "gdbsupport/event-loop.h"
#include "event-top.h"
#include "inf-loop.h"
#include <signal.h>
#include "serial.h"
#include "gdbcore.h"
#include "remote-fileio.h"
#include "gdbsupport/fileio.h"
#include <sys/stat.h>
#include "xml-support.h"
#include "memory-map.h"
#include "tracepoint.h"
#include "ax.h"
#include "ax-gdb.h"
#include "gdbsupport/agent.h"
#include "btrace.h"
#include "record-btrace.h"
#include "gdbsupport/scoped_restore.h"
#include "gdbsupport/environ.h"
#include "gdbsupport/byte-vector.h"
#include "gdbsupport/search.h"
#include <algorithm>
#include <iterator>
#include <unordered_map>
#include "async-event.h"
#include "gdbsupport/selftest.h"
#include "cli/cli-style.h"
/* The remote target. */
static const char remote_doc[] = N_("\
Use a remote computer via a serial line, using a gdb-specific protocol.\n\
Specify the serial device it is connected to\n\
(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).");
/* See remote.h */
bool remote_debug = false;
#define OPAQUETHREADBYTES 8
/* a 64 bit opaque identifier */
typedef unsigned char threadref[OPAQUETHREADBYTES];
struct gdb_ext_thread_info;
struct threads_listing_context;
typedef int (*rmt_thread_action) (threadref *ref, void *context);
struct protocol_feature;
struct packet_reg;
struct stop_reply;
typedef std::unique_ptr<stop_reply> stop_reply_up;
/* Generic configuration support for packets the stub optionally
supports. Allows the user to specify the use of the packet as well
as allowing GDB to auto-detect support in the remote stub. */
enum packet_support
{
PACKET_SUPPORT_UNKNOWN = 0,
PACKET_ENABLE,
PACKET_DISABLE
};
/* Convert the packet support auto_boolean to a name used for gdb printing. */
static const char *
get_packet_support_name (auto_boolean support)
{
switch (support)
{
case AUTO_BOOLEAN_TRUE:
return "on";
case AUTO_BOOLEAN_FALSE:
return "off";
case AUTO_BOOLEAN_AUTO:
return "auto";
default:
gdb_assert_not_reached ("invalid var_auto_boolean");
}
}
/* Convert the target type (future remote target or currently connected target)
to a name used for gdb printing. */
static const char *
get_target_type_name (bool target_connected)
{
if (target_connected)
return _("on the current remote target");
else
return _("on future remote targets");
}
/* Analyze a packet's return value and update the packet config
accordingly. */
enum packet_status
{
PACKET_ERROR,
PACKET_OK,
PACKET_UNKNOWN
};
/* Keeps packet's return value. If packet's return value is PACKET_ERROR,
err_msg contains an error message string from E.string or the number
stored as a string from E.num. */
class packet_result
{
private:
/* Private ctors for internal use. Clients should use the public
factory static methods instead. */
/* Construct a PACKET_ERROR packet_result. */
packet_result (const char *err_msg, bool textual_err_msg)
: m_status (PACKET_ERROR),
m_err_msg (err_msg),
m_textual_err_msg (textual_err_msg)
{}
/* Construct an PACKET_OK/PACKET_UNKNOWN packet_result. */
explicit packet_result (enum packet_status status)
: m_status (status)
{
gdb_assert (status != PACKET_ERROR);
}
public:
enum packet_status status () const
{
return this->m_status;
}
const char *err_msg () const
{
gdb_assert (this->m_status == PACKET_ERROR);
return this->m_err_msg.c_str ();
}
bool textual_err_msg () const
{
gdb_assert (this->m_status == PACKET_ERROR);
return this->m_textual_err_msg;
}
static packet_result make_numeric_error (const char *err_msg)
{
return packet_result (err_msg, false);
}
static packet_result make_textual_error (const char *err_msg)
{
return packet_result (err_msg, true);
}
static packet_result make_ok ()
{
return packet_result (PACKET_OK);
}
static packet_result make_unknown ()
{
return packet_result (PACKET_UNKNOWN);
}
private:
enum packet_status m_status;
std::string m_err_msg;
/* True if we have a textual error message, from an "E.MESSAGE"
response. */
bool m_textual_err_msg = false;
};
/* Enumeration of packets for a remote target. */
enum {
PACKET_vCont = 0,
PACKET_X,
PACKET_qSymbol,
PACKET_P,
PACKET_p,
PACKET_Z0,
PACKET_Z1,
PACKET_Z2,
PACKET_Z3,
PACKET_Z4,
PACKET_vFile_setfs,
PACKET_vFile_open,
PACKET_vFile_pread,
PACKET_vFile_pwrite,
PACKET_vFile_close,
PACKET_vFile_unlink,
PACKET_vFile_readlink,
PACKET_vFile_fstat,
PACKET_vFile_stat,
PACKET_qXfer_auxv,
PACKET_qXfer_features,
PACKET_qXfer_exec_file,
PACKET_qXfer_libraries,
PACKET_qXfer_libraries_svr4,
PACKET_qXfer_memory_map,
PACKET_qXfer_osdata,
PACKET_qXfer_threads,
PACKET_qXfer_statictrace_read,
PACKET_qXfer_traceframe_info,
PACKET_qXfer_uib,
PACKET_qGetTIBAddr,
PACKET_qGetTLSAddr,
PACKET_qSupported,
PACKET_qTStatus,
PACKET_QPassSignals,
PACKET_QCatchSyscalls,
PACKET_QProgramSignals,
PACKET_QSetWorkingDir,
PACKET_QStartupWithShell,
PACKET_QEnvironmentHexEncoded,
PACKET_QEnvironmentReset,
PACKET_QEnvironmentUnset,
PACKET_qCRC,
PACKET_qSearch_memory,
PACKET_vAttach,
PACKET_vRun,
PACKET_QStartNoAckMode,
PACKET_vKill,
PACKET_qXfer_siginfo_read,
PACKET_qXfer_siginfo_write,
PACKET_qAttached,
/* Support for conditional tracepoints. */
PACKET_ConditionalTracepoints,
/* Support for target-side breakpoint conditions. */
PACKET_ConditionalBreakpoints,
/* Support for target-side breakpoint commands. */
PACKET_BreakpointCommands,
/* Support for fast tracepoints. */
PACKET_FastTracepoints,
/* Support for static tracepoints. */
PACKET_StaticTracepoints,
/* Support for installing tracepoints while a trace experiment is
running. */
PACKET_InstallInTrace,
PACKET_bc,
PACKET_bs,
PACKET_TracepointSource,
PACKET_QAllow,
PACKET_qXfer_fdpic,
PACKET_QDisableRandomization,
PACKET_QAgent,
PACKET_QTBuffer_size,
PACKET_Qbtrace_off,
PACKET_Qbtrace_bts,
PACKET_Qbtrace_pt,
PACKET_qXfer_btrace,
/* Support for the QNonStop packet. */
PACKET_QNonStop,
/* Support for the QThreadEvents packet. */
PACKET_QThreadEvents,
/* Support for the QThreadOptions packet. */
PACKET_QThreadOptions,
/* Support for multi-process extensions. */
PACKET_multiprocess_feature,
/* Support for enabling and disabling tracepoints while a trace
experiment is running. */
PACKET_EnableDisableTracepoints_feature,
/* Support for collecting strings using the tracenz bytecode. */
PACKET_tracenz_feature,
/* Support for continuing to run a trace experiment while GDB is
disconnected. */
PACKET_DisconnectedTracing_feature,
/* Support for qXfer:libraries-svr4:read with a non-empty annex. */
PACKET_augmented_libraries_svr4_read_feature,
/* Support for the qXfer:btrace-conf:read packet. */
PACKET_qXfer_btrace_conf,
/* Support for the Qbtrace-conf:bts:size packet. */
PACKET_Qbtrace_conf_bts_size,
/* Support for swbreak+ feature. */
PACKET_swbreak_feature,
/* Support for hwbreak+ feature. */
PACKET_hwbreak_feature,
/* Support for fork events. */
PACKET_fork_event_feature,
/* Support for vfork events. */
PACKET_vfork_event_feature,
/* Support for the Qbtrace-conf:pt:size packet. */
PACKET_Qbtrace_conf_pt_size,
/* Support for the Qbtrace-conf:pt:ptwrite packet. */
PACKET_Qbtrace_conf_pt_ptwrite,
/* Support for exec events. */
PACKET_exec_event_feature,
/* Support for query supported vCont actions. */
PACKET_vContSupported,
/* Support remote CTRL-C. */
PACKET_vCtrlC,
/* Support TARGET_WAITKIND_NO_RESUMED. */
PACKET_no_resumed,
/* Support for memory tagging, allocation tag fetch/store
packets and the tag violation stop replies. */
PACKET_memory_tagging_feature,
/* Support for the qIsAddressTagged packet. */
PACKET_qIsAddressTagged,
/* Support for accepting error message in a E.errtext format.
This allows every remote packet to return E.errtext.
This feature only exists to fix a backwards compatibility issue
with the qRcmd and m packets. Historically, these two packets didn't
support E.errtext style errors, but when this feature is on
these two packets can receive E.errtext style errors.
All new packets should be written to always accept E.errtext style
errors, and so they should not need to check for this feature. */
PACKET_accept_error_message,
PACKET_MAX
};
struct threads_listing_context;
/* Stub vCont actions support.
Each field is a boolean flag indicating whether the stub reports
support for the corresponding action. */
struct vCont_action_support
{
/* vCont;t */
bool t = false;
/* vCont;r */
bool r = false;
/* vCont;s */
bool s = false;
/* vCont;S */
bool S = false;
};
/* About this many threadids fit in a packet. */
#define MAXTHREADLISTRESULTS 32
/* Data for the vFile:pread readahead cache. */
struct readahead_cache
{
/* Invalidate the readahead cache. */
void invalidate ();
/* Invalidate the readahead cache if it is holding data for FD. */
void invalidate_fd (int fd);
/* Serve pread from the readahead cache. Returns number of bytes
read, or 0 if the request can't be served from the cache. */
int pread (int fd, gdb_byte *read_buf, size_t len, ULONGEST offset);
/* The file descriptor for the file that is being cached. -1 if the
cache is invalid. */
int fd = -1;
/* The offset into the file that the cache buffer corresponds
to. */
ULONGEST offset = 0;
/* The buffer holding the cache contents. */
gdb::byte_vector buf;
/* Cache hit and miss counters. */
ULONGEST hit_count = 0;
ULONGEST miss_count = 0;
};
/* Description of the remote protocol for a given architecture. */
struct packet_reg
{
long offset; /* Offset into G packet. */
long regnum; /* GDB's internal register number. */
LONGEST pnum; /* Remote protocol register number. */
int in_g_packet; /* Always part of G packet. */
/* long size in bytes; == register_size (arch, regnum);
at present. */
/* char *name; == gdbarch_register_name (arch, regnum);
at present. */
};
struct remote_arch_state
{
explicit remote_arch_state (struct gdbarch *gdbarch);
/* Description of the remote protocol registers. */
long sizeof_g_packet;
/* Description of the remote protocol registers indexed by REGNUM
(making an array gdbarch_num_regs in size). */
std::unique_ptr<packet_reg[]> regs;
/* This is the size (in chars) of the first response to the ``g''
packet. It is used as a heuristic when determining the maximum
size of memory-read and memory-write packets. A target will
typically only reserve a buffer large enough to hold the ``g''
packet. The size does not include packet overhead (headers and
trailers). */
long actual_register_packet_size;
/* This is the maximum size (in chars) of a non read/write packet.
It is also used as a cap on the size of read/write packets. */
long remote_packet_size;
};
/* Description of the remote protocol state for the currently
connected target. This is per-target state, and independent of the
selected architecture. */
class remote_state
{
public:
remote_state ();
~remote_state ();
/* Get the remote arch state for GDBARCH. */
struct remote_arch_state *get_remote_arch_state (struct gdbarch *gdbarch);
void create_async_event_handler ()
{
gdb_assert (m_async_event_handler_token == nullptr);
m_async_event_handler_token
= ::create_async_event_handler ([] (gdb_client_data data)
{
inferior_event_handler (INF_REG_EVENT);
},
nullptr, "remote");
}
void mark_async_event_handler ()
{
gdb_assert (this->is_async_p ());
::mark_async_event_handler (m_async_event_handler_token);
}
void clear_async_event_handler ()
{ ::clear_async_event_handler (m_async_event_handler_token); }
bool async_event_handler_marked () const
{ return ::async_event_handler_marked (m_async_event_handler_token); }
void delete_async_event_handler ()
{
if (m_async_event_handler_token != nullptr)
::delete_async_event_handler (&m_async_event_handler_token);
}
bool is_async_p () const
{
/* We're async whenever the serial device is. */
gdb_assert (this->remote_desc != nullptr);
return serial_is_async_p (this->remote_desc);
}
bool can_async_p () const
{
/* We can async whenever the serial device can. */
gdb_assert (this->remote_desc != nullptr);
return serial_can_async_p (this->remote_desc);
}
public: /* data */
/* A buffer to use for incoming packets, and its current size. The
buffer is grown dynamically for larger incoming packets.
Outgoing packets may also be constructed in this buffer.
The size of the buffer is always at least REMOTE_PACKET_SIZE;
REMOTE_PACKET_SIZE should be used to limit the length of outgoing
packets. */
gdb::char_vector buf;
/* True if we're going through initial connection setup (finding out
about the remote side's threads, relocating symbols, etc.). */
bool starting_up = false;
/* If we negotiated packet size explicitly (and thus can bypass
heuristics for the largest packet size that will not overflow
a buffer in the stub), this will be set to that packet size.
Otherwise zero, meaning to use the guessed size. */
long explicit_packet_size = 0;
/* True, if in no ack mode. That is, neither GDB nor the stub will
expect acks from each other. The connection is assumed to be
reliable. */
bool noack_mode = false;
/* True if we're connected in extended remote mode. */
bool extended = false;
/* True if we resumed the target and we're waiting for the target to
stop. In the mean time, we can't start another command/query.
The remote server wouldn't be ready to process it, so we'd
timeout waiting for a reply that would never come and eventually
we'd close the connection. This can happen in asynchronous mode
because we allow GDB commands while the target is running. */
bool waiting_for_stop_reply = false;
/* The status of the stub support for the various vCont actions. */
vCont_action_support supports_vCont;
/* True if the user has pressed Ctrl-C, but the target hasn't
responded to that. */
bool ctrlc_pending_p = false;
/* True if we saw a Ctrl-C while reading or writing from/to the
remote descriptor. At that point it is not safe to send a remote
interrupt packet, so we instead remember we saw the Ctrl-C and
process it once we're done with sending/receiving the current
packet, which should be shortly. If however that takes too long,
and the user presses Ctrl-C again, we offer to disconnect. */
bool got_ctrlc_during_io = false;
/* Descriptor for I/O to remote machine. Initialize it to NULL so that
remote_open knows that we don't have a file open when the program
starts. */
struct serial *remote_desc = nullptr;
/* These are the threads which we last sent to the remote system. The
TID member will be -1 for all or -2 for not sent yet. */
ptid_t general_thread = null_ptid;
ptid_t continue_thread = null_ptid;
/* This is the traceframe which we last selected on the remote system.
It will be -1 if no traceframe is selected. */
int remote_traceframe_number = -1;
char *last_pass_packet = nullptr;
/* The last QProgramSignals packet sent to the target. We bypass
sending a new program signals list down to the target if the new
packet is exactly the same as the last we sent. IOW, we only let
the target know about program signals list changes. */
char *last_program_signals_packet = nullptr;
/* Similarly, the last QThreadEvents state we sent to the
target. */
bool last_thread_events = false;
gdb_signal last_sent_signal = GDB_SIGNAL_0;
bool last_sent_step = false;
/* The execution direction of the last resume we got. */
exec_direction_kind last_resume_exec_dir = EXEC_FORWARD;
char *finished_object = nullptr;
char *finished_annex = nullptr;
ULONGEST finished_offset = 0;
/* Should we try the 'ThreadInfo' query packet?
This variable (NOT available to the user: auto-detect only!)
determines whether GDB will use the new, simpler "ThreadInfo"
query or the older, more complex syntax for thread queries.
This is an auto-detect variable (set to true at each connect,
and set to false when the target fails to recognize it). */
bool use_threadinfo_query = false;
bool use_threadextra_query = false;
threadref echo_nextthread {};
threadref nextthread {};
threadref resultthreadlist[MAXTHREADLISTRESULTS] {};
/* The state of remote notification. */
struct remote_notif_state *notif_state = nullptr;
/* The branch trace configuration. */
struct btrace_config btrace_config {};
/* The argument to the last "vFile:setfs:" packet we sent, used
to avoid sending repeated unnecessary "vFile:setfs:" packets.
Initialized to -1 to indicate that no "vFile:setfs:" packet
has yet been sent. */
int fs_pid = -1;
/* A readahead cache for vFile:pread. Often, reading a binary
involves a sequence of small reads. E.g., when parsing an ELF
file. A readahead cache helps mostly the case of remote
debugging on a connection with higher latency, due to the
request/reply nature of the RSP. We only cache data for a single
file descriptor at a time. */
struct readahead_cache readahead_cache;
/* The list of already fetched and acknowledged stop events. This
queue is used for notification Stop, and other notifications
don't need queue for their events, because the notification
events of Stop can't be consumed immediately, so that events
should be queued first, and be consumed by remote_wait_{ns,as}
one per time. Other notifications can consume their events
immediately, so queue is not needed for them. */
std::vector<stop_reply_up> stop_reply_queue;
/* FIXME: cagney/1999-09-23: Even though getpkt was called with
``forever'' still use the normal timeout mechanism. This is
currently used by the ASYNC code to guarentee that target reads
during the initial connect always time-out. Once getpkt has been
modified to return a timeout indication and, in turn
remote_wait()/wait_for_inferior() have gained a timeout parameter
this can go away. */
bool wait_forever_enabled_p = true;
/* The set of thread options the target reported it supports, via
qSupported. */
gdb_thread_options supported_thread_options = 0;
private:
/* Asynchronous signal handle registered as event loop source for
when we have pending events ready to be passed to the core. */
async_event_handler *m_async_event_handler_token = nullptr;
/* Mapping of remote protocol data for each gdbarch. Usually there
is only one entry here, though we may see more with stubs that
support multi-process. */
std::unordered_map<struct gdbarch *, remote_arch_state>
m_arch_states;
};
static const target_info remote_target_info = {
"remote",
N_("Remote target using gdb-specific protocol"),
remote_doc
};
/* Description of a remote packet. */
struct packet_description
{
/* Name of the packet used for gdb output. */
const char *name;
/* Title of the packet, used by the set/show remote name-packet
commands to identify the individual packages and gdb output. */
const char *title;
};
/* Configuration of a remote packet. */
struct packet_config
{
/* If auto, GDB auto-detects support for this packet or feature,
either through qSupported, or by trying the packet and looking
at the response. If true, GDB assumes the target supports this
packet. If false, the packet is disabled. Configs that don't
have an associated command always have this set to auto. */
enum auto_boolean detect;
/* Does the target support this packet? */
enum packet_support support;
};
/* User configurable variables for the number of characters in a
memory read/write packet. MIN (rsa->remote_packet_size,
rsa->sizeof_g_packet) is the default. Some targets need smaller
values (fifo overruns, et.al.) and some users need larger values
(speed up transfers). The variables ``preferred_*'' (the user
request), ``current_*'' (what was actually set) and ``forced_*''
(Positive - a soft limit, negative - a hard limit). */
struct memory_packet_config
{
const char *name;
long size;
int fixed_p;
};
/* These global variables contain the default configuration for every new
remote_feature object. */
static memory_packet_config memory_read_packet_config =
{
"memory-read-packet-size",
};
static memory_packet_config memory_write_packet_config =
{
"memory-write-packet-size",
};
/* This global array contains packet descriptions (name and title). */
static packet_description packets_descriptions[PACKET_MAX];
/* This global array contains the default configuration for every new
per-remote target array. */
static packet_config remote_protocol_packets[PACKET_MAX];
/* Description of a remote target's features. It stores the configuration
and provides functions to determine supported features of the target. */
struct remote_features
{
remote_features ()
{
m_memory_read_packet_config = memory_read_packet_config;
m_memory_write_packet_config = memory_write_packet_config;
std::copy (std::begin (remote_protocol_packets),
std::end (remote_protocol_packets),
std::begin (m_protocol_packets));
}
~remote_features () = default;
DISABLE_COPY_AND_ASSIGN (remote_features);
/* Returns whether a given packet defined by its enum value is supported. */
enum packet_support packet_support (int) const;
/* Returns the packet's corresponding "set remote foo-packet" command
state. See struct packet_config for more details. */
enum auto_boolean packet_set_cmd_state (int packet) const
{ return m_protocol_packets[packet].detect; }
/* Returns true if the multi-process extensions are in effect. */
int remote_multi_process_p () const
{ return packet_support (PACKET_multiprocess_feature) == PACKET_ENABLE; }
/* Returns true if fork events are supported. */
int remote_fork_event_p () const
{ return packet_support (PACKET_fork_event_feature) == PACKET_ENABLE; }
/* Returns true if vfork events are supported. */
int remote_vfork_event_p () const
{ return packet_support (PACKET_vfork_event_feature) == PACKET_ENABLE; }
/* Returns true if exec events are supported. */
int remote_exec_event_p () const
{ return packet_support (PACKET_exec_event_feature) == PACKET_ENABLE; }
/* Returns true if memory tagging is supported, false otherwise. */
bool remote_memory_tagging_p () const
{ return packet_support (PACKET_memory_tagging_feature) == PACKET_ENABLE; }
/* Reset all packets back to "unknown support". Called when opening a
new connection to a remote target. */
void reset_all_packet_configs_support ();
/* Check result value in BUF for packet WHICH_PACKET and update the packet's
support configuration accordingly. */
packet_result packet_ok (const char *buf, const int which_packet);
packet_result packet_ok (const gdb::char_vector &buf, const int which_packet);
/* Configuration of a remote target's memory read packet. */
memory_packet_config m_memory_read_packet_config;
/* Configuration of a remote target's memory write packet. */
memory_packet_config m_memory_write_packet_config;
/* The per-remote target array which stores a remote's packet
configurations. */
packet_config m_protocol_packets[PACKET_MAX];
};
class remote_target : public process_stratum_target
{
public:
remote_target () = default;
~remote_target () override;
const target_info &info () const override
{ return remote_target_info; }
const char *connection_string () override;
thread_control_capabilities get_thread_control_capabilities () override
{ return tc_schedlock; }
/* Open a remote connection. */
static void open (const char *, int);
void close () override;
void detach (inferior *, int) override;
void disconnect (const char *, int) override;
void commit_requested_thread_options ();
void commit_resumed () override;
void resume (ptid_t, int, enum gdb_signal) override;
ptid_t wait (ptid_t, struct target_waitstatus *, target_wait_flags) override;
bool has_pending_events () override;
void fetch_registers (struct regcache *, int) override;
void store_registers (struct regcache *, int) override;
void prepare_to_store (struct regcache *) override;
int insert_breakpoint (struct gdbarch *, struct bp_target_info *) override;
int remove_breakpoint (struct gdbarch *, struct bp_target_info *,
enum remove_bp_reason) override;
bool stopped_by_sw_breakpoint () override;
bool supports_stopped_by_sw_breakpoint () override;
bool stopped_by_hw_breakpoint () override;
bool supports_stopped_by_hw_breakpoint () override;
bool stopped_by_watchpoint () override;
bool stopped_data_address (CORE_ADDR *) override;
bool watchpoint_addr_within_range (CORE_ADDR, CORE_ADDR, int) override;
int can_use_hw_breakpoint (enum bptype, int, int) override;
int insert_hw_breakpoint (struct gdbarch *, struct bp_target_info *) override;
int remove_hw_breakpoint (struct gdbarch *, struct bp_target_info *) override;
int region_ok_for_hw_watchpoint (CORE_ADDR, int) override;
int insert_watchpoint (CORE_ADDR, int, enum target_hw_bp_type,
struct expression *) override;
int remove_watchpoint (CORE_ADDR, int, enum target_hw_bp_type,
struct expression *) override;
void kill () override;
void load (const char *, int) override;
void mourn_inferior () override;
void pass_signals (gdb::array_view<const unsigned char>) override;
int set_syscall_catchpoint (int, bool, int,
gdb::array_view<const int>) override;
void program_signals (gdb::array_view<const unsigned char>) override;
bool thread_alive (ptid_t ptid) override;
const char *thread_name (struct thread_info *) override;
void update_thread_list () override;
std::string pid_to_str (ptid_t) override;
const char *extra_thread_info (struct thread_info *) override;
ptid_t get_ada_task_ptid (long lwp, ULONGEST thread) override;
thread_info *thread_handle_to_thread_info (const gdb_byte *thread_handle,
int handle_len,
inferior *inf) override;
gdb::array_view<const gdb_byte> thread_info_to_thread_handle (struct thread_info *tp)
override;
void stop (ptid_t) override;
void interrupt () override;
void pass_ctrlc () override;
enum target_xfer_status xfer_partial (enum target_object object,
const char *annex,
gdb_byte *readbuf,
const gdb_byte *writebuf,
ULONGEST offset, ULONGEST len,
ULONGEST *xfered_len) override;
ULONGEST get_memory_xfer_limit () override;
void rcmd (const char *command, struct ui_file *output) override;
const char *pid_to_exec_file (int pid) override;
void log_command (const char *cmd) override
{
serial_log_command (this, cmd);
}
CORE_ADDR get_thread_local_address (ptid_t ptid,
CORE_ADDR load_module_addr,
CORE_ADDR offset) override;
bool can_execute_reverse () override;
std::vector<mem_region> memory_map () override;
void flash_erase (ULONGEST address, LONGEST length) override;
void flash_done () override;
const struct target_desc *read_description () override;
int search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
const gdb_byte *pattern, ULONGEST pattern_len,
CORE_ADDR *found_addrp) override;
bool can_async_p () override;
bool is_async_p () override;
void async (bool) override;
int async_wait_fd () override;
void thread_events (bool) override;
bool supports_set_thread_options (gdb_thread_options) override;
int can_do_single_step () override;
void terminal_inferior () override;
void terminal_ours () override;
bool supports_non_stop () override;
bool supports_multi_process () override;
bool supports_disable_randomization () override;
bool filesystem_is_local () override;
int fileio_open (struct inferior *inf, const char *filename,
int flags, int mode, int warn_if_slow,
fileio_error *target_errno) override;
int fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
ULONGEST offset, fileio_error *target_errno) override;
int fileio_pread (int fd, gdb_byte *read_buf, int len,
ULONGEST offset, fileio_error *target_errno) override;
int fileio_fstat (int fd, struct stat *sb, fileio_error *target_errno) override;
int fileio_stat (struct inferior *inf, const char *filename,
struct stat *sb, fileio_error *target_errno) override;
int fileio_close (int fd, fileio_error *target_errno) override;
int fileio_unlink (struct inferior *inf,
const char *filename,
fileio_error *target_errno) override;
std::optional<std::string>
fileio_readlink (struct inferior *inf,
const char *filename,
fileio_error *target_errno) override;
bool supports_enable_disable_tracepoint () override;
bool supports_string_tracing () override;
int remote_supports_cond_tracepoints ();
bool supports_evaluation_of_breakpoint_conditions () override;
int remote_supports_fast_tracepoints ();
int remote_supports_static_tracepoints ();
int remote_supports_install_in_trace ();
bool can_run_breakpoint_commands () override;
void trace_init () override;
void download_tracepoint (struct bp_location *location) override;
bool can_download_tracepoint () override;
void download_trace_state_variable (const trace_state_variable &tsv) override;
void enable_tracepoint (struct bp_location *location) override;
void disable_tracepoint (struct bp_location *location) override;
void trace_set_readonly_regions () override;
void trace_start () override;
int get_trace_status (struct trace_status *ts) override;
void get_tracepoint_status (tracepoint *tp, struct uploaded_tp *utp)
override;
void trace_stop () override;
int trace_find (enum trace_find_type type, int num,
CORE_ADDR addr1, CORE_ADDR addr2, int *tpp) override;
bool get_trace_state_variable_value (int tsv, LONGEST *val) override;
int save_trace_data (const char *filename) override;
int upload_tracepoints (struct uploaded_tp **utpp) override;
int upload_trace_state_variables (struct uploaded_tsv **utsvp) override;
LONGEST get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len) override;
int get_min_fast_tracepoint_insn_len () override;
void set_disconnected_tracing (int val) override;
void set_circular_trace_buffer (int val) override;
void set_trace_buffer_size (LONGEST val) override;
bool set_trace_notes (const char *user, const char *notes,
const char *stopnotes) override;
int core_of_thread (ptid_t ptid) override;
int verify_memory (const gdb_byte *data,
CORE_ADDR memaddr, ULONGEST size) override;
bool get_tib_address (ptid_t ptid, CORE_ADDR *addr) override;
void set_permissions () override;
bool static_tracepoint_marker_at (CORE_ADDR,
struct static_tracepoint_marker *marker)
override;
std::vector<static_tracepoint_marker>
static_tracepoint_markers_by_strid (const char *id) override;
traceframe_info_up traceframe_info () override;
bool use_agent (bool use) override;
bool can_use_agent () override;
struct btrace_target_info *
enable_btrace (thread_info *tp, const struct btrace_config *conf) override;
void disable_btrace (struct btrace_target_info *tinfo) override;
void teardown_btrace (struct btrace_target_info *tinfo) override;
enum btrace_error read_btrace (struct btrace_data *data,
struct btrace_target_info *btinfo,
enum btrace_read_type type) override;
const struct btrace_config *btrace_conf (const struct btrace_target_info *) override;
bool augmented_libraries_svr4_read () override;
void follow_fork (inferior *, ptid_t, target_waitkind, bool, bool) override;
void follow_clone (ptid_t child_ptid) override;
void follow_exec (inferior *, ptid_t, const char *) override;
int insert_fork_catchpoint (int) override;
int remove_fork_catchpoint (int) override;
int insert_vfork_catchpoint (int) override;
int remove_vfork_catchpoint (int) override;
int insert_exec_catchpoint (int) override;
int remove_exec_catchpoint (int) override;
enum exec_direction_kind execution_direction () override;
bool supports_memory_tagging () override;
bool fetch_memtags (CORE_ADDR address, size_t len,
gdb::byte_vector &tags, int type) override;
bool store_memtags (CORE_ADDR address, size_t len,
const gdb::byte_vector &tags, int type) override;
bool is_address_tagged (gdbarch *gdbarch, CORE_ADDR address) override;
public: /* Remote specific methods. */
void remote_download_command_source (int num, ULONGEST addr,
struct command_line *cmds);
void remote_file_put (const char *local_file, const char *remote_file,
int from_tty);
void remote_file_get (const char *remote_file, const char *local_file,
int from_tty);
void remote_file_delete (const char *remote_file, int from_tty);
int remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
ULONGEST offset, fileio_error *remote_errno);
int remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
ULONGEST offset, fileio_error *remote_errno);
int remote_hostio_pread_vFile (int fd, gdb_byte *read_buf, int len,
ULONGEST offset, fileio_error *remote_errno);
int remote_hostio_send_command (int command_bytes, int which_packet,
fileio_error *remote_errno, const char **attachment,
int *attachment_len);
int remote_hostio_set_filesystem (struct inferior *inf,
fileio_error *remote_errno);
/* We should get rid of this and use fileio_open directly. */
int remote_hostio_open (struct inferior *inf, const char *filename,
int flags, int mode, int warn_if_slow,
fileio_error *remote_errno);
int remote_hostio_close (int fd, fileio_error *remote_errno);
int remote_hostio_unlink (inferior *inf, const char *filename,
fileio_error *remote_errno);
struct remote_state *get_remote_state ();
long get_remote_packet_size (void);
long get_memory_packet_size (struct memory_packet_config *config);
long get_memory_write_packet_size ();
long get_memory_read_packet_size ();
char *append_pending_thread_resumptions (char *p, char *endp,
ptid_t ptid);
static void open_1 (const char *name, int from_tty, int extended_p);
void start_remote (int from_tty, int extended_p);
void remote_detach_1 (struct inferior *inf, int from_tty);
char *append_resumption (char *p, char *endp,
ptid_t ptid, int step, gdb_signal siggnal);
int remote_resume_with_vcont (ptid_t scope_ptid, int step,
gdb_signal siggnal);
thread_info *add_current_inferior_and_thread (const char *wait_status);
ptid_t wait_ns (ptid_t ptid, struct target_waitstatus *status,
target_wait_flags options);
ptid_t wait_as (ptid_t ptid, target_waitstatus *status,
target_wait_flags options);
ptid_t process_stop_reply (stop_reply_up stop_reply,
target_waitstatus *status);
ptid_t select_thread_for_ambiguous_stop_reply
(const struct target_waitstatus &status);
void remote_notice_new_inferior (ptid_t currthread, bool executing);
void print_one_stopped_thread (thread_info *thread);
void process_initial_stop_replies (int from_tty);
thread_info *remote_add_thread (ptid_t ptid, bool running, bool executing,
bool silent_p);
void btrace_sync_conf (const btrace_config *conf);
void remote_btrace_maybe_reopen ();
void remove_new_children (threads_listing_context *context);
void kill_new_fork_children (inferior *inf);
void discard_pending_stop_replies (struct inferior *inf);
int stop_reply_queue_length ();
void check_pending_events_prevent_wildcard_vcont
(bool *may_global_wildcard_vcont);
void discard_pending_stop_replies_in_queue ();
stop_reply_up remote_notif_remove_queued_reply (ptid_t ptid);
stop_reply_up queued_stop_reply (ptid_t ptid);
int peek_stop_reply (ptid_t ptid);
void remote_parse_stop_reply (const char *buf, stop_reply *event);
void remote_stop_ns (ptid_t ptid);
void remote_interrupt_as ();
void remote_interrupt_ns ();
char *remote_get_noisy_reply ();
int remote_query_attached (int pid);
inferior *remote_add_inferior (bool fake_pid_p, int pid, int attached,
int try_open_exec);
ptid_t remote_current_thread (ptid_t oldpid);
ptid_t get_current_thread (const char *wait_status);
void set_thread (ptid_t ptid, int gen);
void set_general_thread (ptid_t ptid);
void set_continue_thread (ptid_t ptid);
void set_general_process ();
char *write_ptid (char *buf, const char *endbuf, ptid_t ptid);
int remote_unpack_thread_info_response (const char *pkt, threadref *expectedref,
gdb_ext_thread_info *info);
int remote_get_threadinfo (threadref *threadid, int fieldset,
gdb_ext_thread_info *info);
int parse_threadlist_response (const char *pkt, int result_limit,
threadref *original_echo,
threadref *resultlist,
int *doneflag);
int remote_get_threadlist (int startflag, threadref *nextthread,
int result_limit, int *done, int *result_count,
threadref *threadlist);
int remote_threadlist_iterator (rmt_thread_action stepfunction,
void *context, int looplimit);
int remote_get_threads_with_ql (threads_listing_context *context);
int remote_get_threads_with_qxfer (threads_listing_context *context);
int remote_get_threads_with_qthreadinfo (threads_listing_context *context);
void extended_remote_restart ();
void get_offsets ();
void remote_check_symbols ();
void remote_supported_packet (const struct protocol_feature *feature,
enum packet_support support,
const char *argument);
void remote_query_supported ();
void remote_packet_size (const protocol_feature *feature,
packet_support support, const char *value);
void remote_supported_thread_options (const protocol_feature *feature,
enum packet_support support,
const char *value);
void remote_serial_quit_handler ();
void remote_detach_pid (int pid);
void remote_vcont_probe ();
void remote_resume_with_hc (ptid_t ptid, int step,
gdb_signal siggnal);
void send_interrupt_sequence ();
void interrupt_query ();
void remote_notif_get_pending_events (const notif_client *nc);
int fetch_register_using_p (struct regcache *regcache,
packet_reg *reg);
int send_g_packet ();
void process_g_packet (struct regcache *regcache);
void fetch_registers_using_g (struct regcache *regcache);
int store_register_using_P (const struct regcache *regcache,
packet_reg *reg);
void store_registers_using_G (const struct regcache *regcache);
void set_remote_traceframe ();
void check_binary_download (CORE_ADDR addr);
target_xfer_status remote_write_bytes_aux (const char *header,
CORE_ADDR memaddr,
const gdb_byte *myaddr,
ULONGEST len_units,
int unit_size,
ULONGEST *xfered_len_units,
char packet_format,
int use_length);
target_xfer_status remote_write_bytes (CORE_ADDR memaddr,
const gdb_byte *myaddr, ULONGEST len,
int unit_size, ULONGEST *xfered_len);
target_xfer_status remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr,
ULONGEST len_units,
int unit_size, ULONGEST *xfered_len_units);
target_xfer_status remote_xfer_live_readonly_partial (gdb_byte *readbuf,
ULONGEST memaddr,
ULONGEST len,
int unit_size,
ULONGEST *xfered_len);
target_xfer_status remote_read_bytes (CORE_ADDR memaddr,
gdb_byte *myaddr, ULONGEST len,
int unit_size,
ULONGEST *xfered_len);
packet_status remote_send_printf (const char *format, ...)
ATTRIBUTE_PRINTF (2, 3);
target_xfer_status remote_flash_write (ULONGEST address,
ULONGEST length, ULONGEST *xfered_len,
const gdb_byte *data);
int readchar (int timeout);
void remote_serial_write (const char *str, int len);
void remote_serial_send_break ();
int putpkt (const char *buf);
int putpkt_binary (const char *buf, int cnt);
int putpkt (const gdb::char_vector &buf)
{
return putpkt (buf.data ());
}
void skip_frame ();
long read_frame (gdb::char_vector *buf_p);
int getpkt (gdb::char_vector *buf, bool forever = false,
bool *is_notif = nullptr);
int remote_vkill (int pid);
void remote_kill_k ();
void extended_remote_disable_randomization (int val);
int extended_remote_run (const std::string &args);
void send_environment_packet (const char *action,
const char *packet,
const char *value);
void extended_remote_environment_support ();
void extended_remote_set_inferior_cwd ();
target_xfer_status remote_write_qxfer (const char *object_name,
const char *annex,
const gdb_byte *writebuf,
ULONGEST offset, LONGEST len,
ULONGEST *xfered_len,
const unsigned int which_packet);
target_xfer_status remote_read_qxfer (const char *object_name,
const char *annex,
gdb_byte *readbuf, ULONGEST offset,
LONGEST len,
ULONGEST *xfered_len,
const unsigned int which_packet);
void push_stop_reply (stop_reply_up new_event);
bool vcont_r_supported ();
remote_features m_features;
private:
bool start_remote_1 (int from_tty, int extended_p);
/* The remote state. Don't reference this directly. Use the
get_remote_state method instead. */
remote_state m_remote_state;
};
static const target_info extended_remote_target_info = {
"extended-remote",
N_("Extended remote target using gdb-specific protocol"),
remote_doc
};
/* Set up the extended remote target by extending the standard remote
target and adding to it. */
class extended_remote_target final : public remote_target
{
public:
const target_info &info () const override
{ return extended_remote_target_info; }
/* Open an extended-remote connection. */
static void open (const char *, int);
bool can_create_inferior () override { return true; }
void create_inferior (const char *, const std::string &,
char **, int) override;
void detach (inferior *, int) override;
bool can_attach () override { return true; }
void attach (const char *, int) override;
void post_attach (int) override;
bool supports_disable_randomization () override;
};
struct stop_reply : public notif_event
{
/* The identifier of the thread about this event */
ptid_t ptid;
/* The remote state this event is associated with. When the remote
connection, represented by a remote_state object, is closed,
all the associated stop_reply events should be released. */
struct remote_state *rs;
struct target_waitstatus ws;
/* The architecture associated with the expedited registers. */
gdbarch *arch;
/* Expedited registers. This makes remote debugging a bit more
efficient for those targets that provide critical registers as
part of their normal status mechanism (as another roundtrip to
fetch them is avoided). */
std::vector<cached_reg_t> regcache;
enum target_stop_reason stop_reason;
CORE_ADDR watch_data_address;
int core;
};
/* Return TARGET as a remote_target if it is one, else nullptr. */
static remote_target *
as_remote_target (process_stratum_target *target)
{
return dynamic_cast<remote_target *> (target);
}
/* See remote.h. */
bool
is_remote_target (process_stratum_target *target)
{
return as_remote_target (target) != nullptr;
}
/* Per-program-space data key. */
static const registry<program_space>::key<char, gdb::xfree_deleter<char>>
remote_pspace_data;
/* The variable registered as the control variable used by the
remote exec-file commands. While the remote exec-file setting is
per-program-space, the set/show machinery uses this as the
location of the remote exec-file value. */
static std::string remote_exec_file_var;
/* The size to align memory write packets, when practical. The protocol
does not guarantee any alignment, and gdb will generate short
writes and unaligned writes, but even as a best-effort attempt this
can improve bulk transfers. For instance, if a write is misaligned
relative to the target's data bus, the stub may need to make an extra
round trip fetching data from the target. This doesn't make a
huge difference, but it's easy to do, so we try to be helpful.
The alignment chosen is arbitrary; usually data bus width is
important here, not the possibly larger cache line size. */
enum { REMOTE_ALIGN_WRITES = 16 };
/* Prototypes for local functions. */
static int hexnumlen (ULONGEST num);
static int stubhex (int ch);
static int hexnumstr (char *, ULONGEST);
static int hexnumnstr (char *, ULONGEST, int);
static CORE_ADDR remote_address_masked (CORE_ADDR);
static int stub_unpack_int (const char *buff, int fieldlength);
static void set_remote_protocol_packet_cmd (const char *args, int from_tty,
cmd_list_element *c);
static void show_packet_config_cmd (ui_file *file,
const unsigned int which_packet,
remote_target *remote);
static void show_remote_protocol_packet_cmd (struct ui_file *file,
int from_tty,
struct cmd_list_element *c,
const char *value);
static ptid_t read_ptid (const char *buf, const char **obuf);
static bool remote_read_description_p (struct target_ops *target);
static void remote_console_output (const char *msg, ui_file *stream);
static void remote_btrace_reset (remote_state *rs);
[[noreturn]] static void remote_unpush_and_throw (remote_target *target);
/* For "remote". */
static struct cmd_list_element *remote_cmdlist;
/* For "set remote" and "show remote". */
static struct cmd_list_element *remote_set_cmdlist;
static struct cmd_list_element *remote_show_cmdlist;
/* Controls whether GDB is willing to use range stepping. */
static bool use_range_stepping = true;
/* From the remote target's point of view, each thread is in one of these three
states. */
enum class resume_state
{
/* Not resumed - we haven't been asked to resume this thread. */
NOT_RESUMED,
/* We have been asked to resume this thread, but haven't sent a vCont action
for it yet. We'll need to consider it next time commit_resume is
called. */
RESUMED_PENDING_VCONT,
/* We have been asked to resume this thread, and we have sent a vCont action
for it. */
RESUMED,
};
/* Information about a thread's pending vCont-resume. Used when a thread is in
the remote_resume_state::RESUMED_PENDING_VCONT state. remote_target::resume
stores this information which is then picked up by
remote_target::commit_resume to know which is the proper action for this
thread to include in the vCont packet. */
struct resumed_pending_vcont_info
{
/* True if the last resume call for this thread was a step request, false
if a continue request. */
bool step;
/* The signal specified in the last resume call for this thread. */
gdb_signal sig;
};
/* Private data that we'll store in (struct thread_info)->priv. */
struct remote_thread_info : public private_thread_info
{
std::string extra;
std::string name;
int core = -1;
/* Thread handle, perhaps a pthread_t or thread_t value, stored as a
sequence of bytes. */
gdb::byte_vector thread_handle;
/* Whether the target stopped for a breakpoint/watchpoint. */
enum target_stop_reason stop_reason = TARGET_STOPPED_BY_NO_REASON;
/* This is set to the data address of the access causing the target
to stop for a watchpoint. */
CORE_ADDR watch_data_address = 0;
/* Get the thread's resume state. */
enum resume_state get_resume_state () const
{
return m_resume_state;
}
/* Put the thread in the NOT_RESUMED state. */
void set_not_resumed ()
{
m_resume_state = resume_state::NOT_RESUMED;
}
/* Put the thread in the RESUMED_PENDING_VCONT state. */
void set_resumed_pending_vcont (bool step, gdb_signal sig)
{
m_resume_state = resume_state::RESUMED_PENDING_VCONT;
m_resumed_pending_vcont_info.step = step;
m_resumed_pending_vcont_info.sig = sig;
}
/* Get the information this thread's pending vCont-resumption.
Must only be called if the thread is in the RESUMED_PENDING_VCONT resume
state. */
const struct resumed_pending_vcont_info &resumed_pending_vcont_info () const
{
gdb_assert (m_resume_state == resume_state::RESUMED_PENDING_VCONT);
return m_resumed_pending_vcont_info;
}
/* Put the thread in the VCONT_RESUMED state. */
void set_resumed ()
{
m_resume_state = resume_state::RESUMED;
}
private:
/* Resume state for this thread. This is used to implement vCont action
coalescing (only when the target operates in non-stop mode).
remote_target::resume moves the thread to the RESUMED_PENDING_VCONT state,
which notes that this thread must be considered in the next commit_resume
call.
remote_target::commit_resume sends a vCont packet with actions for the
threads in the RESUMED_PENDING_VCONT state and moves them to the
VCONT_RESUMED state.
When reporting a stop to the core for a thread, that thread is moved back
to the NOT_RESUMED state. */
enum resume_state m_resume_state = resume_state::NOT_RESUMED;
/* Extra info used if the thread is in the RESUMED_PENDING_VCONT state. */
struct resumed_pending_vcont_info m_resumed_pending_vcont_info;
};
remote_state::remote_state ()
: buf (400)
{
}
remote_state::~remote_state ()
{
xfree (this->last_pass_packet);
xfree (this->last_program_signals_packet);
xfree (this->finished_object);
xfree (this->finished_annex);
}
/* Utility: generate error from an incoming stub packet. */
static void
trace_error (char *buf)
{
if (*buf++ != 'E')
return; /* not an error msg */
switch (*buf)
{
case '1': /* malformed packet error */
if (*++buf == '0') /* general case: */
error (_("remote.c: error in outgoing packet."));
else
error (_("remote.c: error in outgoing packet at field #%ld."),
strtol (buf, NULL, 16));
default:
error (_("Target returns error code '%s'."), buf);
}
}
/* Utility: wait for reply from stub, while accepting "O" packets. */
char *
remote_target::remote_get_noisy_reply ()
{
struct remote_state *rs = get_remote_state ();
do /* Loop on reply from remote stub. */
{
char *buf;
QUIT; /* Allow user to bail out with ^C. */
getpkt (&rs->buf);
buf = rs->buf.data ();
if (buf[0] == 'E')
trace_error (buf);
else if (startswith (buf, "qRelocInsn:"))
{
ULONGEST ul;
CORE_ADDR from, to, org_to;
const char *p, *pp;
int adjusted_size = 0;
int relocated = 0;
p = buf + strlen ("qRelocInsn:");
pp = unpack_varlen_hex (p, &ul);
if (*pp != ';')
error (_("invalid qRelocInsn packet: %s"), buf);
from = ul;
p = pp + 1;
unpack_varlen_hex (p, &ul);
to = ul;
org_to = to;
try
{
gdbarch_relocate_instruction (current_inferior ()->arch (),
&to, from);
relocated = 1;
}
catch (const gdb_exception &ex)
{
if (ex.error == MEMORY_ERROR)
{
/* Propagate memory errors silently back to the
target. The stub may have limited the range of
addresses we can write to, for example. */
}
else
{
/* Something unexpectedly bad happened. Be verbose
so we can tell what, and propagate the error back
to the stub, so it doesn't get stuck waiting for
a response. */
exception_fprintf (gdb_stderr, ex,
_("warning: relocating instruction: "));
}
putpkt ("E01");
}
if (relocated)
{
adjusted_size = to - org_to;
xsnprintf (buf, rs->buf.size (), "qRelocInsn:%x", adjusted_size);
putpkt (buf);
}
}
else if (buf[0] == 'O' && buf[1] != 'K')
{
/* 'O' message from stub */
remote_console_output (buf + 1, gdb_stdtarg);
}
else
return buf; /* Here's the actual reply. */
}
while (1);
}
struct remote_arch_state *
remote_state::get_remote_arch_state (struct gdbarch *gdbarch)
{
remote_arch_state *rsa;
auto it = this->m_arch_states.find (gdbarch);
if (it == this->m_arch_states.end ())
{
auto p = this->m_arch_states.emplace (std::piecewise_construct,
std::forward_as_tuple (gdbarch),
std::forward_as_tuple (gdbarch));
rsa = &p.first->second;
/* Make sure that the packet buffer is plenty big enough for
this architecture. */
if (this->buf.size () < rsa->remote_packet_size)
this->buf.resize (2 * rsa->remote_packet_size);
}
else
rsa = &it->second;
return rsa;
}
/* Fetch the global remote target state. */
remote_state *
remote_target::get_remote_state ()
{
/* Make sure that the remote architecture state has been
initialized, because doing so might reallocate rs->buf. Any
function which calls getpkt also needs to be mindful of changes
to rs->buf, but this call limits the number of places which run
into trouble. */
m_remote_state.get_remote_arch_state (current_inferior ()->arch ());
return &m_remote_state;
}
/* Fetch the remote exec-file from the current program space. */
static const char *
get_remote_exec_file (void)
{
char *remote_exec_file;
remote_exec_file = remote_pspace_data.get (current_program_space);
if (remote_exec_file == NULL)
return "";
return remote_exec_file;
}
/* Set the remote exec file for PSPACE. */
static void
set_pspace_remote_exec_file (struct program_space *pspace,
const char *remote_exec_file)
{
char *old_file = remote_pspace_data.get (pspace);
xfree (old_file);
remote_pspace_data.set (pspace, xstrdup (remote_exec_file));
}
/* The "set/show remote exec-file" set command hook. */
static void
set_remote_exec_file (const char *ignored, int from_tty,
struct cmd_list_element *c)
{
set_pspace_remote_exec_file (current_program_space,
remote_exec_file_var.c_str ());
}
/* The "set/show remote exec-file" show command hook. */
static void
show_remote_exec_file (struct ui_file *file, int from_tty,
struct cmd_list_element *cmd, const char *value)
{
gdb_printf (file, "%s\n", get_remote_exec_file ());
}
static int
map_regcache_remote_table (struct gdbarch *gdbarch, struct packet_reg *regs)
{
int regnum, num_remote_regs, offset;
struct packet_reg **remote_regs;
for (regnum = 0; regnum < gdbarch_num_regs (gdbarch); regnum++)
{
struct packet_reg *r = &regs[regnum];
if (register_size (gdbarch, regnum) == 0)
/* Do not try to fetch zero-sized (placeholder) registers. */
r->pnum = -1;
else
r->pnum = gdbarch_remote_register_number (gdbarch, regnum);
r->regnum = regnum;
}
/* Define the g/G packet format as the contents of each register
with a remote protocol number, in order of ascending protocol
number. */
remote_regs = XALLOCAVEC (struct packet_reg *, gdbarch_num_regs (gdbarch));
for (num_remote_regs = 0, regnum = 0;
regnum < gdbarch_num_regs (gdbarch);
regnum++)
if (regs[regnum].pnum != -1)
remote_regs[num_remote_regs++] = &regs[regnum];
std::sort (remote_regs, remote_regs + num_remote_regs,
[] (const packet_reg *a, const packet_reg *b)
{ return a->pnum < b->pnum; });
for (regnum = 0, offset = 0; regnum < num_remote_regs; regnum++)
{
remote_regs[regnum]->in_g_packet = 1;
remote_regs[regnum]->offset = offset;
offset += register_size (gdbarch, remote_regs[regnum]->regnum);
}
return offset;
}
/* Given the architecture described by GDBARCH, return the remote
protocol register's number and the register's offset in the g/G
packets of GDB register REGNUM, in PNUM and POFFSET respectively.
If the target does not have a mapping for REGNUM, return false,
otherwise, return true. */
int
remote_register_number_and_offset (struct gdbarch *gdbarch, int regnum,
int *pnum, int *poffset)
{
gdb_assert (regnum < gdbarch_num_regs (gdbarch));
std::vector<packet_reg> regs (gdbarch_num_regs (gdbarch));
map_regcache_remote_table (gdbarch, regs.data ());
*pnum = regs[regnum].pnum;
*poffset = regs[regnum].offset;
return *pnum != -1;
}
remote_arch_state::remote_arch_state (struct gdbarch *gdbarch)
{
/* Use the architecture to build a regnum<->pnum table, which will be
1:1 unless a feature set specifies otherwise. */
this->regs.reset (new packet_reg [gdbarch_num_regs (gdbarch)] ());
/* Record the maximum possible size of the g packet - it may turn out
to be smaller. */
this->sizeof_g_packet
= map_regcache_remote_table (gdbarch, this->regs.get ());
/* Default maximum number of characters in a packet body. Many
remote stubs have a hardwired buffer size of 400 bytes
(c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
as the maximum packet-size to ensure that the packet and an extra
NUL character can always fit in the buffer. This stops GDB
trashing stubs that try to squeeze an extra NUL into what is
already a full buffer (As of 1999-12-04 that was most stubs). */
this->remote_packet_size = 400 - 1;
/* This one is filled in when a ``g'' packet is received. */
this->actual_register_packet_size = 0;
/* Should rsa->sizeof_g_packet needs more space than the
default, adjust the size accordingly. Remember that each byte is
encoded as two characters. 32 is the overhead for the packet
header / footer. NOTE: cagney/1999-10-26: I suspect that 8
(``$NN:G...#NN'') is a better guess, the below has been padded a
little. */
if (this->sizeof_g_packet > ((this->remote_packet_size - 32) / 2))
this->remote_packet_size = (this->sizeof_g_packet * 2 + 32);
}
/* Get a pointer to the current remote target. If not connected to a
remote target, return NULL. */
static remote_target *
get_current_remote_target ()
{
target_ops *proc_target = current_inferior ()->process_target ();
return dynamic_cast<remote_target *> (proc_target);
}
/* Return the current allowed size of a remote packet. This is
inferred from the current architecture, and should be used to
limit the length of outgoing packets. */
long
remote_target::get_remote_packet_size ()
{
struct remote_state *rs = get_remote_state ();
remote_arch_state *rsa
= rs->get_remote_arch_state (current_inferior ()->arch ());
if (rs->explicit_packet_size)
return rs->explicit_packet_size;
return rsa->remote_packet_size;
}
static struct packet_reg *
packet_reg_from_regnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
long regnum)
{
if (regnum < 0 && regnum >= gdbarch_num_regs (gdbarch))
return NULL;
else
{
struct packet_reg *r = &rsa->regs[regnum];
gdb_assert (r->regnum == regnum);
return r;
}
}
static struct packet_reg *
packet_reg_from_pnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
LONGEST pnum)
{
int i;
for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
{
struct packet_reg *r = &rsa->regs[i];
if (r->pnum == pnum)
return r;
}
return NULL;
}
/* Allow the user to specify what sequence to send to the remote
when he requests a program interruption: Although ^C is usually
what remote systems expect (this is the default, here), it is
sometimes preferable to send a break. On other systems such
as the Linux kernel, a break followed by g, which is Magic SysRq g
is required in order to interrupt the execution. */
const char interrupt_sequence_control_c[] = "Ctrl-C";
const char interrupt_sequence_break[] = "BREAK";
const char interrupt_sequence_break_g[] = "BREAK-g";
static const char *const interrupt_sequence_modes[] =
{
interrupt_sequence_control_c,
interrupt_sequence_break,
interrupt_sequence_break_g,
NULL
};
static const char *interrupt_sequence_mode = interrupt_sequence_control_c;
static void
show_interrupt_sequence (struct ui_file *file, int from_tty,
struct cmd_list_element *c,
const char *value)
{
if (interrupt_sequence_mode == interrupt_sequence_control_c)
gdb_printf (file,
_("Send the ASCII ETX character (Ctrl-c) "
"to the remote target to interrupt the "
"execution of the program.\n"));
else if (interrupt_sequence_mode == interrupt_sequence_break)
gdb_printf (file,
_("send a break signal to the remote target "
"to interrupt the execution of the program.\n"));
else if (interrupt_sequence_mode == interrupt_sequence_break_g)
gdb_printf (file,
_("Send a break signal and 'g' a.k.a. Magic SysRq g to "
"the remote target to interrupt the execution "
"of Linux kernel.\n"));
else
internal_error (_("Invalid value for interrupt_sequence_mode: %s."),
interrupt_sequence_mode);
}
/* This boolean variable specifies whether interrupt_sequence is sent
to the remote target when gdb connects to it.
This is mostly needed when you debug the Linux kernel: The Linux kernel
expects BREAK g which is Magic SysRq g for connecting gdb. */
static bool interrupt_on_connect = false;
/* This variable is used to implement the "set/show remotebreak" commands.
Since these commands are now deprecated in favor of "set/show remote
interrupt-sequence", it no longer has any effect on the code. */
static bool remote_break;
static void
set_remotebreak (const char *args, int from_tty, struct cmd_list_element *c)
{
if (remote_break)
interrupt_sequence_mode = interrupt_sequence_break;
else
interrupt_sequence_mode = interrupt_sequence_control_c;
}
static void
show_remotebreak (struct ui_file *file, int from_tty,
struct cmd_list_element *c,
const char *value)
{
}
/* This variable sets the number of bits in an address that are to be
sent in a memory ("M" or "m") packet. Normally, after stripping
leading zeros, the entire address would be sent. This variable
restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
initial implementation of remote.c restricted the address sent in
memory packets to ``host::sizeof long'' bytes - (typically 32
bits). Consequently, for 64 bit targets, the upper 32 bits of an
address was never sent. Since fixing this bug may cause a break in
some remote targets this variable is principally provided to
facilitate backward compatibility. */
static unsigned int remote_address_size;
/* The default max memory-write-packet-size, when the setting is
"fixed". The 16k is historical. (It came from older GDB's using
alloca for buffers and the knowledge (folklore?) that some hosts
don't cope very well with large alloca calls.) */
#define DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED 16384
/* The minimum remote packet size for memory transfers. Ensures we
can write at least one byte. */
#define MIN_MEMORY_PACKET_SIZE 20
/* Get the memory packet size, assuming it is fixed. */
static long
get_fixed_memory_packet_size (struct memory_packet_config *config)
{
gdb_assert (config->fixed_p);
if (config->size <= 0)
return DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED;
else
return config->size;
}
/* Compute the current size of a read/write packet. Since this makes
use of ``actual_register_packet_size'' the computation is dynamic. */
long
remote_target::get_memory_packet_size (struct memory_packet_config *config)
{
struct remote_state *rs = get_remote_state ();
remote_arch_state *rsa
= rs->get_remote_arch_state (current_inferior ()->arch ());
long what_they_get;
if (config->fixed_p)
what_they_get = get_fixed_memory_packet_size (config);
else
{
what_they_get = get_remote_packet_size ();
/* Limit the packet to the size specified by the user. */
if (config->size > 0
&& what_they_get > config->size)
what_they_get = config->size;
/* Limit it to the size of the targets ``g'' response unless we have
permission from the stub to use a larger packet size. */
if (rs->explicit_packet_size == 0
&& rsa->actual_register_packet_size > 0
&& what_they_get > rsa->actual_register_packet_size)
what_they_get = rsa->actual_register_packet_size;
}
if (what_they_get < MIN_MEMORY_PACKET_SIZE)
what_they_get = MIN_MEMORY_PACKET_SIZE;
/* Make sure there is room in the global buffer for this packet
(including its trailing NUL byte). */
if (rs->buf.size () < what_they_get + 1)
rs->buf.resize (2 * what_they_get);
return what_they_get;
}
/* Update the size of a read/write packet. If they user wants
something really big then do a sanity check. */
static void
set_memory_packet_size (const char *args, struct memory_packet_config *config,
bool target_connected)
{
int fixed_p = config->fixed_p;
long size = config->size;
if (args == NULL)
error (_("Argument required (integer, \"fixed\" or \"limit\")."));
else if (strcmp (args, "hard") == 0
|| strcmp (args, "fixed") == 0)
fixed_p = 1;
else if (strcmp (args, "soft") == 0
|| strcmp (args, "limit") == 0)
fixed_p = 0;
else
{
char *end;
size = strtoul (args, &end, 0);
if (args == end)
error (_("Invalid %s (bad syntax)."), config->name);
/* Instead of explicitly capping the size of a packet to or
disallowing it, the user is allowed to set the size to
something arbitrarily large. */
}
/* Extra checks? */
if (fixed_p && !config->fixed_p)
{
/* So that the query shows the correct value. */
long query_size = (size <= 0
? DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED
: size);
if (target_connected
&& !query (_("The target may not be able to correctly handle a %s\n"
"of %ld bytes. Change the packet size? "),
config->name, query_size))
error (_("Packet size not changed."));
else if (!target_connected
&& !query (_("Future remote targets may not be able to "
"correctly handle a %s\nof %ld bytes. Change the "
"packet size for future remote targets? "),
config->name, query_size))
error (_("Packet size not changed."));
}
/* Update the config. */
config->fixed_p = fixed_p;
config->size = size;
const char *target_type = get_target_type_name (target_connected);
gdb_printf (_("The %s %s is set to \"%s\".\n"), config->name, target_type,
args);
}
/* Show the memory-read or write-packet size configuration CONFIG of the
target REMOTE. If REMOTE is nullptr, the default configuration for future
remote targets should be passed in CONFIG. */
static void
show_memory_packet_size (memory_packet_config *config, remote_target *remote)
{
const char *target_type = get_target_type_name (remote != nullptr);
if (config->size == 0)
gdb_printf (_("The %s %s is 0 (default). "), config->name, target_type);
else
gdb_printf (_("The %s %s is %ld. "), config->name, target_type,
config->size);
if (config->fixed_p)
gdb_printf (_("Packets are fixed at %ld bytes.\n"),
get_fixed_memory_packet_size (config));
else
{
if (remote != nullptr)
gdb_printf (_("Packets are limited to %ld bytes.\n"),
remote->get_memory_packet_size (config));
else
gdb_puts ("The actual limit will be further reduced "
"dependent on the target.\n");
}
}
/* Configure the memory-write-packet size of the currently selected target. If
no target is available, the default configuration for future remote targets
is configured. */
static void
set_memory_write_packet_size (const char *args, int from_tty)
{
remote_target *remote = get_current_remote_target ();
if (remote != nullptr)
{
set_memory_packet_size
(args, &remote->m_features.m_memory_write_packet_config, true);
}
else
{
memory_packet_config* config = &memory_write_packet_config;
set_memory_packet_size (args, config, false);
}
}
/* Display the memory-write-packet size of the currently selected target. If
no target is available, the default configuration for future remote targets
is shown. */
static void
show_memory_write_packet_size (const char *args, int from_tty)
{
remote_target *remote = get_current_remote_target ();
if (remote != nullptr)
show_memory_packet_size (&remote->m_features.m_memory_write_packet_config,
remote);
else
show_memory_packet_size (&memory_write_packet_config, nullptr);
}
/* Show the number of hardware watchpoints that can be used. */
static void
show_hardware_watchpoint_limit (struct ui_file *file, int from_tty,
struct cmd_list_element *c,
const char *value)
{
gdb_printf (file, _("The maximum number of target hardware "
"watchpoints is %s.\n"), value);
}
/* Show the length limit (in bytes) for hardware watchpoints. */
static void
show_hardware_watchpoint_length_limit (struct ui_file *file, int from_tty,
struct cmd_list_element *c,
const char *value)
{
gdb_printf (file, _("The maximum length (in bytes) of a target "
"hardware watchpoint is %s.\n"), value);
}
/* Show the number of hardware breakpoints that can be used. */
static void
show_hardware_breakpoint_limit (struct ui_file *file, int from_tty,
struct cmd_list_element *c,
const char *value)
{
gdb_printf (file, _("The maximum number of target hardware "
"breakpoints is %s.\n"), value);
}
/* Controls the maximum number of characters to display in the debug output
for each remote packet. The remaining characters are omitted. */
static int remote_packet_max_chars = 512;
/* Show the maximum number of characters to display for each remote packet
when remote debugging is enabled. */
static void
show_remote_packet_max_chars (struct ui_file *file, int from_tty,
struct cmd_list_element *c,
const char *value)
{
gdb_printf (file, _("Number of remote packet characters to "
"display is %s.\n"), value);
}
long
remote_target::get_memory_write_packet_size ()
{
return get_memory_packet_size (&m_features.m_memory_write_packet_config);
}
/* Configure the memory-read-packet size of the currently selected target. If
no target is available, the default configuration for future remote targets
is adapted. */
static void
set_memory_read_packet_size (const char *args, int from_tty)
{
remote_target *remote = get_current_remote_target ();
if (remote != nullptr)
set_memory_packet_size
(args, &remote->m_features.m_memory_read_packet_config, true);
else
{
memory_packet_config* config = &memory_read_packet_config;
set_memory_packet_size (args, config, false);
}
}
/* Display the memory-read-packet size of the currently selected target. If
no target is available, the default configuration for future remote targets
is shown. */
static void
show_memory_read_packet_size (const char *args, int from_tty)
{
remote_target *remote = get_current_remote_target ();
if (remote != nullptr)
show_memory_packet_size (&remote->m_features.m_memory_read_packet_config,
remote);
else
show_memory_packet_size (&memory_read_packet_config, nullptr);
}
long
remote_target::get_memory_read_packet_size ()
{
long size = get_memory_packet_size (&m_features.m_memory_read_packet_config);
/* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
extra buffer size argument before the memory read size can be
increased beyond this. */
if (size > get_remote_packet_size ())
size = get_remote_packet_size ();
return size;
}
static enum packet_support packet_config_support (const packet_config *config);
static void
set_remote_protocol_packet_cmd (const char *args, int from_tty,
cmd_list_element *c)
{
remote_target *remote = get_current_remote_target ();
gdb_assert (c->var.has_value ());
auto *default_config = static_cast<packet_config *> (c->context ());
const int packet_idx = std::distance (remote_protocol_packets,
default_config);
if (packet_idx >= 0 && packet_idx < PACKET_MAX)
{
const char *name = packets_descriptions[packet_idx].name;
const auto_boolean value = c->var->get<auto_boolean> ();
const char *support = get_packet_support_name (value);
const char *target_type = get_target_type_name (remote != nullptr);
if (remote != nullptr)
remote->m_features.m_protocol_packets[packet_idx].detect = value;
else
remote_protocol_packets[packet_idx].detect = value;
gdb_printf (_("Support for the '%s' packet %s is set to \"%s\".\n"), name,
target_type, support);
return;
}
internal_error (_("Could not find config for %s"), c->name);
}
static void
show_packet_config_cmd (ui_file *file, const unsigned int which_packet,
remote_target *remote)
{
const char *support = "internal-error";
const char *target_type = get_target_type_name (remote != nullptr);
packet_config *config;
if (remote != nullptr)
config = &remote->m_features.m_protocol_packets[which_packet];
else
config = &remote_protocol_packets[which_packet];
switch (packet_config_support (config))
{
case PACKET_ENABLE:
support = "enabled";
break;
case PACKET_DISABLE:
support = "disabled";
break;
case PACKET_SUPPORT_UNKNOWN:
support = "unknown";
break;
}
switch (config->detect)
{
case AUTO_BOOLEAN_AUTO:
gdb_printf (file,
_("Support for the '%s' packet %s is \"auto\", "
"currently %s.\n"),
packets_descriptions[which_packet].name, target_type,
support);
break;
case AUTO_BOOLEAN_TRUE:
case AUTO_BOOLEAN_FALSE:
gdb_printf (file,
_("Support for the '%s' packet %s is \"%s\".\n"),
packets_descriptions[which_packet].name, target_type,
get_packet_support_name (config->detect));
break;
}
}
static void
add_packet_config_cmd (const unsigned int which_packet, const char *name,
const char *title, int legacy)
{
packets_descriptions[which_packet].name = name;
packets_descriptions[which_packet].title = title;
packet_config *config = &remote_protocol_packets[which_packet];
gdb::unique_xmalloc_ptr<char> set_doc
= xstrprintf ("Set use of remote protocol `%s' (%s) packet.",
name, title);
gdb::unique_xmalloc_ptr<char> show_doc
= xstrprintf ("Show current use of remote protocol `%s' (%s) packet.",
name, title);
/* set/show TITLE-packet {auto,on,off} */
gdb::unique_xmalloc_ptr<char> cmd_name = xstrprintf ("%s-packet", title);
set_show_commands cmds
= add_setshow_auto_boolean_cmd (cmd_name.release (), class_obscure,
&config->detect, set_doc.get (),
show_doc.get (), NULL, /* help_doc */
set_remote_protocol_packet_cmd,
show_remote_protocol_packet_cmd,
&remote_set_cmdlist, &remote_show_cmdlist);
cmds.show->set_context (config);
cmds.set->set_context (config);
/* set/show remote NAME-packet {auto,on,off} -- legacy. */
if (legacy)
{
/* It's not clear who should take ownership of the LEGACY_NAME string
created below, so, for now, place the string into a static vector
which ensures the strings is released when GDB exits. */
static std::vector<gdb::unique_xmalloc_ptr<char>> legacy_names;
gdb::unique_xmalloc_ptr<char> legacy_name
= xstrprintf ("%s-packet", name);
add_alias_cmd (legacy_name.get (), cmds.set, class_obscure, 0,
&remote_set_cmdlist);
add_alias_cmd (legacy_name.get (), cmds.show, class_obscure, 0,
&remote_show_cmdlist);
legacy_names.emplace_back (std::move (legacy_name));
}
}
/* Check GDBserver's reply packet. Return packet_result structure
which contains the packet_status enum and an error message for the
PACKET_ERROR case.
An error packet can always take the form Exx (where xx is a hex
code). */
static packet_result
packet_check_result (const char *buf)
{
if (buf[0] != '\0')
{
/* The stub recognized the packet request. Check that the
operation succeeded. */
if (buf[0] == 'E'
&& isxdigit (buf[1]) && isxdigit (buf[2])
&& buf[3] == '\0')
/* "Enn" - definitely an error. */
return packet_result::make_numeric_error (buf + 1);
/* Always treat "E." as an error. This will be used for
more verbose error messages, such as E.memtypes. */
if (buf[0] == 'E' && buf[1] == '.')
{
if (buf[2] != '\0')
return packet_result::make_textual_error (buf + 2);
else
return packet_result::make_textual_error ("no error provided");
}
/* The packet may or may not be OK. Just assume it is. */
return packet_result::make_ok ();
}
else
{
/* The stub does not support the packet. */
return packet_result::make_unknown ();
}
}
static packet_result
packet_check_result (const gdb::char_vector &buf)
{
return packet_check_result (buf.data ());
}
packet_result
remote_features::packet_ok (const char *buf, const int which_packet)
{
packet_config *config = &m_protocol_packets[which_packet];
packet_description *descr = &packets_descriptions[which_packet];
if (config->detect != AUTO_BOOLEAN_TRUE
&& config->support == PACKET_DISABLE)
internal_error (_("packet_ok: attempt to use a disabled packet"));
packet_result result = packet_check_result (buf);
switch (result.status ())
{
case PACKET_OK:
case PACKET_ERROR:
/* The stub recognized the packet request. */
if (config->support == PACKET_SUPPORT_UNKNOWN)
{
remote_debug_printf ("Packet %s (%s) is supported",
descr->name, descr->title);
config->support = PACKET_ENABLE;
}
break;
case PACKET_UNKNOWN:
/* The stub does not support the packet. */
if (config->detect == AUTO_BOOLEAN_AUTO
&& config->support == PACKET_ENABLE)
{
/* If the stub previously indicated that the packet was
supported then there is a protocol error. */
error (_("Protocol error: %s (%s) conflicting enabled responses."),
descr->name, descr->title);
}
else if (config->detect == AUTO_BOOLEAN_TRUE)
{
/* The user set it wrong. */
error (_("Enabled packet %s (%s) not recognized by stub"),
descr->name, descr->title);
}
remote_debug_printf ("Packet %s (%s) is NOT supported", descr->name,
descr->title);
config->support = PACKET_DISABLE;
break;
}
return result;
}
packet_result
remote_features::packet_ok (const gdb::char_vector &buf, const int which_packet)
{
return packet_ok (buf.data (), which_packet);
}
/* Returns whether a given packet or feature is supported. This takes
into account the state of the corresponding "set remote foo-packet"
command, which may be used to bypass auto-detection. */
static enum packet_support
packet_config_support (const packet_config *config)
{
switch (config->detect)
{
case AUTO_BOOLEAN_TRUE:
return PACKET_ENABLE;
case AUTO_BOOLEAN_FALSE:
return PACKET_DISABLE;
case AUTO_BOOLEAN_AUTO:
return config->support;
default:
gdb_assert_not_reached ("bad switch");
}
}
packet_support
remote_features::packet_support (int packet) const
{
const packet_config *config = &m_protocol_packets[packet];
return packet_config_support (config);
}
static void
show_remote_protocol_packet_cmd (struct ui_file *file, int from_tty,
struct cmd_list_element *c,
const char *value)
{
remote_target *remote = get_current_remote_target ();
gdb_assert (c->var.has_value ());
auto *default_config = static_cast<packet_config *> (c->context ());
const int packet_idx = std::distance (remote_protocol_packets,
default_config);
if (packet_idx >= 0 && packet_idx < PACKET_MAX)
{
show_packet_config_cmd (file, packet_idx, remote);
return;
}
internal_error (_("Could not find config for %s"), c->name);
}
/* Should we try one of the 'Z' requests? */
enum Z_packet_type
{
Z_PACKET_SOFTWARE_BP,
Z_PACKET_HARDWARE_BP,
Z_PACKET_WRITE_WP,
Z_PACKET_READ_WP,
Z_PACKET_ACCESS_WP,
NR_Z_PACKET_TYPES
};
/* For compatibility with older distributions. Provide a ``set remote
Z-packet ...'' command that updates all the Z packet types. */
static enum auto_boolean remote_Z_packet_detect;
static void
set_remote_protocol_Z_packet_cmd (const char *args, int from_tty,
struct cmd_list_element *c)
{
remote_target *remote = get_current_remote_target ();
int i;
for (i = 0; i < NR_Z_PACKET_TYPES; i++)
{
if (remote != nullptr)
remote->m_features.m_protocol_packets[PACKET_Z0 + i].detect
= remote_Z_packet_detect;
else
remote_protocol_packets[PACKET_Z0 + i].detect = remote_Z_packet_detect;
}
const char *support = get_packet_support_name (remote_Z_packet_detect);
const char *target_type = get_target_type_name (remote != nullptr);
gdb_printf (_("Use of Z packets %s is set to \"%s\".\n"), target_type,
support);
}
static void
show_remote_protocol_Z_packet_cmd (struct ui_file *file, int from_tty,
struct cmd_list_element *c,
const char *value)
{
remote_target *remote = get_current_remote_target ();
int i;
for (i = 0; i < NR_Z_PACKET_TYPES; i++)
show_packet_config_cmd (file, PACKET_Z0 + i, remote);
}
/* Insert fork catchpoint target routine. If fork events are enabled
then return success, nothing more to do. */
int
remote_target::insert_fork_catchpoint (int pid)
{
return !m_features.remote_fork_event_p ();
}
/* Remove fork catchpoint target routine. Nothing to do, just
return success. */
int
remote_target::remove_fork_catchpoint (int pid)
{
return 0;
}
/* Insert vfork catchpoint target routine. If vfork events are enabled
then return success, nothing more to do. */
int
remote_target::insert_vfork_catchpoint (int pid)
{
return !m_features.remote_vfork_event_p ();
}
/* Remove vfork catchpoint target routine. Nothing to do, just
return success. */
int
remote_target::remove_vfork_catchpoint (int pid)
{
return 0;
}
/* Insert exec catchpoint target routine. If exec events are
enabled, just return success. */
int
remote_target::insert_exec_catchpoint (int pid)
{
return !m_features.remote_exec_event_p ();
}
/* Remove exec catchpoint target routine. Nothing to do, just
return success. */
int
remote_target::remove_exec_catchpoint (int pid)
{
return 0;
}
/* Take advantage of the fact that the TID field is not used, to tag
special ptids with it set to != 0. */
static const ptid_t magic_null_ptid (42000, -1, 1);
static const ptid_t not_sent_ptid (42000, -2, 1);
static const ptid_t any_thread_ptid (42000, 0, 1);
/* Find out if the stub attached to PID (and hence GDB should offer to
detach instead of killing it when bailing out). */
int
remote_target::remote_query_attached (int pid)
{
struct remote_state *rs = get_remote_state ();
size_t size = get_remote_packet_size ();
if (m_features.packet_support (PACKET_qAttached) == PACKET_DISABLE)
return 0;
if (m_features.remote_multi_process_p ())
xsnprintf (rs->buf.data (), size, "qAttached:%x", pid);
else
xsnprintf (rs->buf.data (), size, "qAttached");
putpkt (rs->buf);
getpkt (&rs->buf);
packet_result result = m_features.packet_ok (rs->buf, PACKET_qAttached);
switch (result.status ())
{
case PACKET_OK:
if (strcmp (rs->buf.data (), "1") == 0)
return 1;
break;
case PACKET_ERROR:
warning (_("Remote failure reply: %s"), result.err_msg ());
break;
case PACKET_UNKNOWN:
break;
}
return 0;
}
/* Add PID to GDB's inferior table. If FAKE_PID_P is true, then PID
has been invented by GDB, instead of reported by the target. Since
we can be connected to a remote system before before knowing about
any inferior, mark the target with execution when we find the first
inferior. If ATTACHED is 1, then we had just attached to this
inferior. If it is 0, then we just created this inferior. If it
is -1, then try querying the remote stub to find out if it had
attached to the inferior or not. If TRY_OPEN_EXEC is true then
attempt to open this inferior's executable as the main executable
if no main executable is open already. */
inferior *
remote_target::remote_add_inferior (bool fake_pid_p, int pid, int attached,
int try_open_exec)
{
struct inferior *inf;
/* Check whether this process we're learning about is to be
considered attached, or if is to be considered to have been
spawned by the stub. */
if (attached == -1)
attached = remote_query_attached (pid);
if (gdbarch_has_global_solist (current_inferior ()->arch ()))
{
/* If the target shares code across all inferiors, then every
attach adds a new inferior. */
inf = add_inferior (pid);
/* ... and every inferior is bound to the same program space.
However, each inferior may still have its own address
space. */
inf->aspace = maybe_new_address_space ();
inf->pspace = current_program_space;
}
else
{
/* In the traditional debugging scenario, there's a 1-1 match
between program/address spaces. We simply bind the inferior
to the program space's address space. */
inf = current_inferior ();
/* However, if the current inferior is already bound to a
process, find some other empty inferior. */
if (inf->pid != 0)
{
inf = nullptr;
for (inferior *it : all_inferiors ())
if (it->pid == 0)
{
inf = it;
break;
}
}
if (inf == nullptr)
{
/* Since all inferiors were already bound to a process, add
a new inferior. */
inf = add_inferior_with_spaces ();
}
switch_to_inferior_no_thread (inf);
inf->push_target (this);
inferior_appeared (inf, pid);
}
inf->attach_flag = attached;
inf->fake_pid_p = fake_pid_p;
/* If no main executable is currently open then attempt to
open the file that was executed to create this inferior. */
if (try_open_exec && current_program_space->exec_filename () == nullptr)
exec_file_locate_attach (pid, 0, 1);
/* Check for exec file mismatch, and let the user solve it. */
validate_exec_file (1);
return inf;
}
static remote_thread_info *get_remote_thread_info (thread_info *thread);
static remote_thread_info *get_remote_thread_info (remote_target *target,
ptid_t ptid);
/* Add thread PTID to GDB's thread list. Tag it as executing/running
according to EXECUTING and RUNNING respectively. If SILENT_P (or the
remote_state::starting_up flag) is true then the new thread is added
silently, otherwise the new thread will be announced to the user. */
thread_info *
remote_target::remote_add_thread (ptid_t ptid, bool running, bool executing,
bool silent_p)
{
struct remote_state *rs = get_remote_state ();
struct thread_info *thread;
/* GDB historically didn't pull threads in the initial connection
setup. If the remote target doesn't even have a concept of
threads (e.g., a bare-metal target), even if internally we
consider that a single-threaded target, mentioning a new thread
might be confusing to the user. Be silent then, preserving the
age old behavior. */
if (rs->starting_up || silent_p)
thread = add_thread_silent (this, ptid);
else
thread = add_thread (this, ptid);
if (executing)
get_remote_thread_info (thread)->set_resumed ();
set_executing (this, ptid, executing);
set_running (this, ptid, running);
return thread;
}
/* Come here when we learn about a thread id from the remote target.
It may be the first time we hear about such thread, so take the
opportunity to add it to GDB's thread list. In case this is the
first time we're noticing its corresponding inferior, add it to
GDB's inferior list as well. EXECUTING indicates whether the
thread is (internally) executing or stopped. */
void
remote_target::remote_notice_new_inferior (ptid_t currthread, bool executing)
{
/* In non-stop mode, we assume new found threads are (externally)
running until proven otherwise with a stop reply. In all-stop,
we can only get here if all threads are stopped. */
bool running = target_is_non_stop_p ();
/* If this is a new thread, add it to GDB's thread list.
If we leave it up to WFI to do this, bad things will happen. */
thread_info *tp = this->find_thread (currthread);
if (tp != NULL && tp->state == THREAD_EXITED)
{
/* We're seeing an event on a thread id we knew had exited.
This has to be a new thread reusing the old id. Add it. */
remote_add_thread (currthread, running, executing, false);
return;
}
if (!in_thread_list (this, currthread))
{
struct inferior *inf = NULL;
int pid = currthread.pid ();
if (inferior_ptid.is_pid ()
&& pid == inferior_ptid.pid ())
{
/* inferior_ptid has no thread member yet. This can happen
with the vAttach -> remote_wait,"TAAthread:" path if the
stub doesn't support qC. This is the first stop reported
after an attach, so this is the main thread. Update the
ptid in the thread list. */
if (in_thread_list (this, ptid_t (pid)))
thread_change_ptid (this, inferior_ptid, currthread);
else
{
thread_info *thr
= remote_add_thread (currthread, running, executing, false);
switch_to_thread (thr);
}
return;
}
if (magic_null_ptid == inferior_ptid)
{
/* inferior_ptid is not set yet. This can happen with the
vRun -> remote_wait,"TAAthread:" path if the stub
doesn't support qC. This is the first stop reported
after an attach, so this is the main thread. Update the
ptid in the thread list. */
thread_change_ptid (this, inferior_ptid, currthread);
return;
}
/* When connecting to a target remote, or to a target
extended-remote which already was debugging an inferior, we
may not know about it yet. Add it before adding its child
thread, so notifications are emitted in a sensible order. */
if (find_inferior_pid (this, currthread.pid ()) == NULL)
{
bool fake_pid_p = !m_features.remote_multi_process_p ();
inf = remote_add_inferior (fake_pid_p,
currthread.pid (), -1, 1);
}
/* This is really a new thread. Add it. */
thread_info *new_thr
= remote_add_thread (currthread, running, executing, false);
/* If we found a new inferior, let the common code do whatever
it needs to with it (e.g., read shared libraries, insert
breakpoints), unless we're just setting up an all-stop
connection. */
if (inf != NULL)
{
struct remote_state *rs = get_remote_state ();
if (!rs->starting_up)
notice_new_inferior (new_thr, executing, 0);
}
}
}
/* Return THREAD's private thread data, creating it if necessary. */
static remote_thread_info *
get_remote_thread_info (thread_info *thread)
{
gdb_assert (thread != NULL);
if (thread->priv == NULL)
thread->priv.reset (new remote_thread_info);
return gdb::checked_static_cast<remote_thread_info *> (thread->priv.get ());
}
/* Return PTID's private thread data, creating it if necessary. */
static remote_thread_info *
get_remote_thread_info (remote_target *target, ptid_t ptid)
{
thread_info *thr = target->find_thread (ptid);
return get_remote_thread_info (thr);
}
/* Call this function as a result of
1) A halt indication (T packet) containing a thread id
2) A direct query of currthread
3) Successful execution of set thread */
static void
record_currthread (struct remote_state *rs, ptid_t currthread)
{
rs->general_thread = currthread;
}
/* If 'QPassSignals' is supported, tell the remote stub what signals
it can simply pass through to the inferior without reporting. */
void
remote_target::pass_signals (gdb::array_view<const unsigned char> pass_signals)
{
if (m_features.packet_support (PACKET_QPassSignals) != PACKET_DISABLE)
{
char *pass_packet, *p;
int count = 0;
struct remote_state *rs = get_remote_state ();
gdb_assert (pass_signals.size () < 256);
for (size_t i = 0; i < pass_signals.size (); i++)
{
if (pass_signals[i])
count++;
}
pass_packet = (char *) xmalloc (count * 3 + strlen ("QPassSignals:") + 1);
strcpy (pass_packet, "QPassSignals:");
p = pass_packet + strlen (pass_packet);
for (size_t i = 0; i < pass_signals.size (); i++)
{
if (pass_signals[i])
{
if (i >= 16)
*p++ = tohex (i >> 4);
*p++ = tohex (i & 15);
if (count)
*p++ = ';';
else
break;
count--;
}
}
*p = 0;
if (!rs->last_pass_packet || strcmp (rs->last_pass_packet, pass_packet))
{
putpkt (pass_packet);
getpkt (&rs->buf);
m_features.packet_ok (rs->buf, PACKET_QPassSignals);
xfree (rs->last_pass_packet);
rs->last_pass_packet = pass_packet;
}
else
xfree (pass_packet);
}
}
/* If 'QCatchSyscalls' is supported, tell the remote stub
to report syscalls to GDB. */
int
remote_target::set_syscall_catchpoint (int pid, bool needed, int any_count,
gdb::array_view<const int> syscall_counts)
{
const char *catch_packet;
int n_sysno = 0;
if (m_features.packet_support (PACKET_QCatchSyscalls) == PACKET_DISABLE)
{
/* Not supported. */
return 1;
}
if (needed && any_count == 0)
{
/* Count how many syscalls are to be caught. */
for (size_t i = 0; i < syscall_counts.size (); i++)
{
if (syscall_counts[i] != 0)
n_sysno++;
}
}
remote_debug_printf ("pid %d needed %d any_count %d n_sysno %d",
pid, needed, any_count, n_sysno);
std::string built_packet;
if (needed)
{
/* Prepare a packet with the sysno list, assuming max 8+1
characters for a sysno. If the resulting packet size is too
big, fallback on the non-selective packet. */
const int maxpktsz = strlen ("QCatchSyscalls:1") + n_sysno * 9 + 1;
built_packet.reserve (maxpktsz);
built_packet = "QCatchSyscalls:1";
if (any_count == 0)
{
/* Add in each syscall to be caught. */
for (size_t i = 0; i < syscall_counts.size (); i++)
{
if (syscall_counts[i] != 0)
string_appendf (built_packet, ";%zx", i);
}
}
if (built_packet.size () > get_remote_packet_size ())
{
/* catch_packet too big. Fallback to less efficient
non selective mode, with GDB doing the filtering. */
catch_packet = "QCatchSyscalls:1";
}
else
catch_packet = built_packet.c_str ();
}
else
catch_packet = "QCatchSyscalls:0";
struct remote_state *rs = get_remote_state ();
putpkt (catch_packet);
getpkt (&rs->buf);
packet_result result = m_features.packet_ok (rs->buf, PACKET_QCatchSyscalls);
if (result.status () == PACKET_OK)
return 0;
else
return -1;
}
/* If 'QProgramSignals' is supported, tell the remote stub what
signals it should pass through to the inferior when detaching. */
void
remote_target::program_signals (gdb::array_view<const unsigned char> signals)
{
if (m_features.packet_support (PACKET_QProgramSignals) != PACKET_DISABLE)
{
char *packet, *p;
int count = 0;
struct remote_state *rs = get_remote_state ();
gdb_assert (signals.size () < 256);
for (size_t i = 0; i < signals.size (); i++)
{
if (signals[i])
count++;
}
packet = (char *) xmalloc (count * 3 + strlen ("QProgramSignals:") + 1);
strcpy (packet, "QProgramSignals:");
p = packet + strlen (packet);
for (size_t i = 0; i < signals.size (); i++)
{
if (signal_pass_state (i))
{
if (i >= 16)
*p++ = tohex (i >> 4);
*p++ = tohex (i & 15);
if (count)
*p++ = ';';
else
break;
count--;
}
}
*p = 0;
if (!rs->last_program_signals_packet
|| strcmp (rs->last_program_signals_packet, packet) != 0)
{
putpkt (packet);
getpkt (&rs->buf);
m_features.packet_ok (rs->buf, PACKET_QProgramSignals);
xfree (rs->last_program_signals_packet);
rs->last_program_signals_packet = packet;
}
else
xfree (packet);
}
}
/* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
MINUS_ONE_PTID, set the thread to -1, so the stub returns the
thread. If GEN is set, set the general thread, if not, then set
the step/continue thread. */
void
remote_target::set_thread (ptid_t ptid, int gen)
{
struct remote_state *rs = get_remote_state ();
ptid_t state = gen ? rs->general_thread : rs->continue_thread;
char *buf = rs->buf.data ();
char *endbuf = buf + get_remote_packet_size ();
if (state == ptid)
return;
*buf++ = 'H';
*buf++ = gen ? 'g' : 'c';
if (ptid == magic_null_ptid)
xsnprintf (buf, endbuf - buf, "0");
else if (ptid == any_thread_ptid)
xsnprintf (buf, endbuf - buf, "0");
else if (ptid == minus_one_ptid)
xsnprintf (buf, endbuf - buf, "-1");
else
write_ptid (buf, endbuf, ptid);
putpkt (rs->buf);
getpkt (&rs->buf);
if (gen)
rs->general_thread = ptid;
else
rs->continue_thread = ptid;
}
void
remote_target::set_general_thread (ptid_t ptid)
{
set_thread (ptid, 1);
}
void
remote_target::set_continue_thread (ptid_t ptid)
{
set_thread (ptid, 0);
}
/* Change the remote current process. Which thread within the process
ends up selected isn't important, as long as it is the same process
as what INFERIOR_PTID points to.
This comes from that fact that there is no explicit notion of
"selected process" in the protocol. The selected process for
general operations is the process the selected general thread
belongs to. */
void
remote_target::set_general_process ()
{
/* If the remote can't handle multiple processes, don't bother. */
if (!m_features.remote_multi_process_p ())
return;
remote_state *rs = get_remote_state ();
/* We only need to change the remote current thread if it's pointing
at some other process. */
if (rs->general_thread.pid () != inferior_ptid.pid ())
set_general_thread (inferior_ptid);
}
/* Return nonzero if this is the main thread that we made up ourselves
to model non-threaded targets as single-threaded. */
static int
remote_thread_always_alive (ptid_t ptid)
{
if (ptid == magic_null_ptid)
/* The main thread is always alive. */
return 1;
if (ptid.pid () != 0 && ptid.lwp () == 0)
/* The main thread is always alive. This can happen after a
vAttach, if the remote side doesn't support
multi-threading. */
return 1;
return 0;
}
/* Return nonzero if the thread PTID is still alive on the remote
system. */